diff --git a/LICENSE b/LICENSE old mode 100644 new mode 100755 diff --git a/README.md b/README.md old mode 100644 new mode 100755 index 313b968d..be00d4d6 --- a/README.md +++ b/README.md @@ -1,75 +1,65 @@ -#Qt binding for Go +#Qt binding for Go (Windows / Mac OS X / Linux / Android) -##Windows (x86): +##Windows (x86) +(currently not working) -> https://support.microsoft.com/kb/830473 -1. Install Go >= 1.4 (x86) -> https://golang.org/dl/ +1. Install Go >= 1.5.1 +> https://storage.googleapis.com/golang/go1.5.1.windows-386.msi -2. Install Qt 5.4.0 -> https://download.qt-project.org/official_releases/qt/5.4/5.4.0/qt-opensource-windows-x86-mingw491_opengl-5.4.0.exe +2. Install Qt 5.5.1 ("C:\Qt\Qt5.5.1") +> https://download.qt.io/official_releases/qt/5.5/5.5.1/qt-opensource-windows-x86-android-5.5.1.exe 3. Add the directory that contains "gcc" to your PATH -> C:\Qt\Qt5.4.0\Tools\mingw491_32\bin +> C:\Qt\Qt5.5.1\Tools\mingw492_32\bin 4. Download the qt binding -> go get -d github.com/therecipe/qt +> go get github.com/therecipe/qt -5. Setup your build environment (edit the file if necessary) -> cgo_windows_386.go +5. Generate, install and test +> github.com/therecipe/qt/internal/binding/make.sh -6. Install the qt binding (failed ? -> go back to 5) -> go install github.com/therecipe/qt +##Mac OS X (x64) -7. Test the example (edit the file if necessary) -> example/windows/deploy_windows.bat +1. Install Go >= 1.5.1 +> https://storage.googleapis.com/golang/go1.5.1.darwin-amd64.pkg -##Mac OS X (x64): +2. Install Qt 5.5.1 ("/usr/local/Qt5.5.1") +> https://download.qt.io/official_releases/qt/5.5/5.5.1/qt-opensource-mac-x64-android-5.5.1.dmg -1. Install Go >= 1.4 -> https://golang.org/dl/ - -2. Install Qt 5.4.0 -> https://download.qt-project.org/official_releases/qt/5.4/5.4.0/qt-opensource-mac-x64-clang-5.4.0.dmg - -3. Install Xcode >= 6.1 +3. Install Xcode >= 7.0.1 4. Download the qt binding -> go get -d github.com/therecipe/qt +> go get github.com/therecipe/qt -5. Setup your build environment (edit the file if necessary) -> cgo_darwin_amd64.go +5. Generate, install and test +> github.com/therecipe/qt/internal/binding/make.sh -6. Install the qt binding (failed ? -> go back to 5) -> go install github.com/therecipe/qt +##Linux (x86/x64) -7. Test the example (edit the file if necessary) -> example/mac/deploy_mac.sh +1. Install Go >= 1.5.1 -##Linux (x86/x64): + >(x86) https://storage.googleapis.com/golang/go1.5.1.linux-386.tar.gz -1. Install Go >= 1.4 (x86/x64) -> https://golang.org/dl/ + >(x64) https://storage.googleapis.com/golang/go1.5.1.linux-amd64.tar.gz -2. Install Qt 5.4.0 +2. Install Qt 5.5.1 ("/usr/local/Qt5.5.1") + + >(x86) https://download.qt.io/official_releases/qt/5.5/5.5.1/qt-opensource-linux-x86-android-5.5.1.run + + >(x64) https://download.qt.io/official_releases/qt/5.5/5.5.1/qt-opensource-linux-x64-android-5.5.1.run - >(x86) https://download.qt-project.org/official_releases/qt/5.4/5.4.0/qt-opensource-linux-x86-5.4.0.run - - >(x64) https://download.qt-project.org/official_releases/qt/5.4/5.4.0/qt-opensource-linux-x64-5.4.0.run - 3. Install "g++" -> sudo apt-get install build-essential +> sudo apt-get install g++ -4. Install OpenGL libraries +4. Install OpenGL dependencies > sudo apt-get install mesa-common-dev 5. Download the qt binding -> go get -d github.com/therecipe/qt +> go get github.com/therecipe/qt -6. Setup your build environment (edit the file if necessary) -> cgo_linux_*.go +6. Generate, install and test +> github.com/therecipe/qt/internal/binding/make.bat -7. Install the qt binding (failed ? -> go back to 6) -> go install github.com/therecipe/qt +##Android (armv7) -8. Test the example (edit the file if necessary) -> example/linux/deploy_linux_*.sh \ No newline at end of file +TBA diff --git a/bluetooth/cgo_darwin_amd64.go b/bluetooth/cgo_darwin_amd64.go new file mode 100755 index 00000000..c5f28961 --- /dev/null +++ b/bluetooth/cgo_darwin_amd64.go @@ -0,0 +1,13 @@ +package bluetooth + +/* +#cgo CPPFLAGS: -pipe -O2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 -Wall -W +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_CONCURRENT_LIB -DQT_BLUETOOTH_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/mkspecs/macx-clang -F/usr/local/Qt5.5.1/5.5/clang_64/lib +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtCore.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtConcurrent.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtBluetooth.framework/Headers +#cgo CPPFLAGS: -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.framework/Headers + +#cgo LDFLAGS: -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 +#cgo LDFLAGS: -F/usr/local/Qt5.5.1/5.5/clang_64/lib -framework QtCore -framework QtConcurrent -framework QtBluetooth -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL +*/ +import "C" diff --git a/bluetooth/cgo_linux_386.go b/bluetooth/cgo_linux_386.go new file mode 100755 index 00000000..c633548c --- /dev/null +++ b/bluetooth/cgo_linux_386.go @@ -0,0 +1,12 @@ +package bluetooth + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_CONCURRENT_LIB -DQT_BLUETOOTH_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include -I/usr/local/Qt5.5.1/5.5/gcc/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc/include/QtConcurrent -I/usr/local/Qt5.5.1/5.5/gcc/include/QtBluetooth + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc/lib -L/usr/lib -lQt5Core -lQt5Concurrent -lQt5Bluetooth -lpthread +*/ +import "C" diff --git a/bluetooth/cgo_linux_amd64.go b/bluetooth/cgo_linux_amd64.go new file mode 100755 index 00000000..f80a1013 --- /dev/null +++ b/bluetooth/cgo_linux_amd64.go @@ -0,0 +1,12 @@ +package bluetooth + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_CONCURRENT_LIB -DQT_BLUETOOTH_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include -I/usr/local/Qt5.5.1/5.5/gcc_64/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtConcurrent -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtBluetooth + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc_64/lib -L/usr/lib64 -lQt5Core -lQt5Concurrent -lQt5Bluetooth -lpthread +*/ +import "C" diff --git a/bluetooth/cgo_windows_386.go b/bluetooth/cgo_windows_386.go new file mode 100755 index 00000000..ea34f8aa --- /dev/null +++ b/bluetooth/cgo_windows_386.go @@ -0,0 +1,12 @@ +package bluetooth + +/* +#cgo CPPFLAGS: -pipe -fno-keep-inline-dllexport -O2 -Wall -Wextra -fexceptions -mthreads +#cgo CPPFLAGS: -DUNICODE -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_CONCURRENT_LIB -DQT_BLUETOOTH_LIB +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include -IC:/Qt/Qt5.5.1/5.5/mingw492_32/mkspecs/win32-g++ +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtCore -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtConcurrent -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtBluetooth + +#cgo LDFLAGS: -Wl,-s -Wl,-subsystem,windows -mthreads +#cgo LDFLAGS: -LC:/Qt/Qt5.5.1/5.5/mingw492_32/bin -lQt5Core -lQt5Concurrent -lQt5Bluetooth +*/ +import "C" diff --git a/bluetooth/qbluetoothaddress.cpp b/bluetooth/qbluetoothaddress.cpp new file mode 100755 index 00000000..0cc84b9f --- /dev/null +++ b/bluetooth/qbluetoothaddress.cpp @@ -0,0 +1,40 @@ +#include "qbluetoothaddress.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQBluetoothAddress: public QBluetoothAddress { +public: +}; + +QtObjectPtr QBluetoothAddress_NewQBluetoothAddress(){ + return new QBluetoothAddress(); +} + +QtObjectPtr QBluetoothAddress_NewQBluetoothAddress4(QtObjectPtr other){ + return new QBluetoothAddress(*static_cast(other)); +} + +QtObjectPtr QBluetoothAddress_NewQBluetoothAddress3(char* address){ + return new QBluetoothAddress(QString(address)); +} + +void QBluetoothAddress_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +int QBluetoothAddress_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +char* QBluetoothAddress_ToString(QtObjectPtr ptr){ + return static_cast(ptr)->toString().toUtf8().data(); +} + +void QBluetoothAddress_DestroyQBluetoothAddress(QtObjectPtr ptr){ + static_cast(ptr)->~QBluetoothAddress(); +} + diff --git a/bluetooth/qbluetoothaddress.go b/bluetooth/qbluetoothaddress.go new file mode 100755 index 00000000..e72a8bd4 --- /dev/null +++ b/bluetooth/qbluetoothaddress.go @@ -0,0 +1,78 @@ +package bluetooth + +//#include "qbluetoothaddress.h" +import "C" +import ( + "unsafe" +) + +type QBluetoothAddress struct { + ptr unsafe.Pointer +} + +type QBluetoothAddressITF interface { + QBluetoothAddressPTR() *QBluetoothAddress +} + +func (p *QBluetoothAddress) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QBluetoothAddress) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQBluetoothAddress(ptr QBluetoothAddressITF) unsafe.Pointer { + if ptr != nil { + return ptr.QBluetoothAddressPTR().Pointer() + } + return nil +} + +func QBluetoothAddressFromPointer(ptr unsafe.Pointer) *QBluetoothAddress { + var n = new(QBluetoothAddress) + n.SetPointer(ptr) + return n +} + +func (ptr *QBluetoothAddress) QBluetoothAddressPTR() *QBluetoothAddress { + return ptr +} + +func NewQBluetoothAddress() *QBluetoothAddress { + return QBluetoothAddressFromPointer(unsafe.Pointer(C.QBluetoothAddress_NewQBluetoothAddress())) +} + +func NewQBluetoothAddress4(other QBluetoothAddressITF) *QBluetoothAddress { + return QBluetoothAddressFromPointer(unsafe.Pointer(C.QBluetoothAddress_NewQBluetoothAddress4(C.QtObjectPtr(PointerFromQBluetoothAddress(other))))) +} + +func NewQBluetoothAddress3(address string) *QBluetoothAddress { + return QBluetoothAddressFromPointer(unsafe.Pointer(C.QBluetoothAddress_NewQBluetoothAddress3(C.CString(address)))) +} + +func (ptr *QBluetoothAddress) Clear() { + if ptr.Pointer() != nil { + C.QBluetoothAddress_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QBluetoothAddress) IsNull() bool { + if ptr.Pointer() != nil { + return C.QBluetoothAddress_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QBluetoothAddress) ToString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QBluetoothAddress_ToString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QBluetoothAddress) DestroyQBluetoothAddress() { + if ptr.Pointer() != nil { + C.QBluetoothAddress_DestroyQBluetoothAddress(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/bluetooth/qbluetoothaddress.h b/bluetooth/qbluetoothaddress.h new file mode 100755 index 00000000..abd49e1a --- /dev/null +++ b/bluetooth/qbluetoothaddress.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QBluetoothAddress_NewQBluetoothAddress(); +QtObjectPtr QBluetoothAddress_NewQBluetoothAddress4(QtObjectPtr other); +QtObjectPtr QBluetoothAddress_NewQBluetoothAddress3(char* address); +void QBluetoothAddress_Clear(QtObjectPtr ptr); +int QBluetoothAddress_IsNull(QtObjectPtr ptr); +char* QBluetoothAddress_ToString(QtObjectPtr ptr); +void QBluetoothAddress_DestroyQBluetoothAddress(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/bluetooth/qbluetoothdevicediscoveryagent.cpp b/bluetooth/qbluetoothdevicediscoveryagent.cpp new file mode 100755 index 00000000..d1ca5f62 --- /dev/null +++ b/bluetooth/qbluetoothdevicediscoveryagent.cpp @@ -0,0 +1,73 @@ +#include "qbluetoothdevicediscoveryagent.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQBluetoothDeviceDiscoveryAgent: public QBluetoothDeviceDiscoveryAgent { +public: +void Signal_Canceled(){callbackQBluetoothDeviceDiscoveryAgentCanceled(this->objectName().toUtf8().data());}; +void Signal_Finished(){callbackQBluetoothDeviceDiscoveryAgentFinished(this->objectName().toUtf8().data());}; +}; + +void QBluetoothDeviceDiscoveryAgent_ConnectCanceled(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QBluetoothDeviceDiscoveryAgent::canceled), static_cast(ptr), static_cast(&MyQBluetoothDeviceDiscoveryAgent::Signal_Canceled));; +} + +void QBluetoothDeviceDiscoveryAgent_DisconnectCanceled(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QBluetoothDeviceDiscoveryAgent::canceled), static_cast(ptr), static_cast(&MyQBluetoothDeviceDiscoveryAgent::Signal_Canceled));; +} + +void QBluetoothDeviceDiscoveryAgent_ConnectFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QBluetoothDeviceDiscoveryAgent::finished), static_cast(ptr), static_cast(&MyQBluetoothDeviceDiscoveryAgent::Signal_Finished));; +} + +void QBluetoothDeviceDiscoveryAgent_DisconnectFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QBluetoothDeviceDiscoveryAgent::finished), static_cast(ptr), static_cast(&MyQBluetoothDeviceDiscoveryAgent::Signal_Finished));; +} + +QtObjectPtr QBluetoothDeviceDiscoveryAgent_NewQBluetoothDeviceDiscoveryAgent(QtObjectPtr parent){ + return new QBluetoothDeviceDiscoveryAgent(static_cast(parent)); +} + +QtObjectPtr QBluetoothDeviceDiscoveryAgent_NewQBluetoothDeviceDiscoveryAgent2(QtObjectPtr deviceAdapter, QtObjectPtr parent){ + return new QBluetoothDeviceDiscoveryAgent(*static_cast(deviceAdapter), static_cast(parent)); +} + +int QBluetoothDeviceDiscoveryAgent_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +char* QBluetoothDeviceDiscoveryAgent_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +int QBluetoothDeviceDiscoveryAgent_InquiryType(QtObjectPtr ptr){ + return static_cast(ptr)->inquiryType(); +} + +int QBluetoothDeviceDiscoveryAgent_IsActive(QtObjectPtr ptr){ + return static_cast(ptr)->isActive(); +} + +void QBluetoothDeviceDiscoveryAgent_SetInquiryType(QtObjectPtr ptr, int ty){ + static_cast(ptr)->setInquiryType(static_cast(ty)); +} + +void QBluetoothDeviceDiscoveryAgent_Start(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "start"); +} + +void QBluetoothDeviceDiscoveryAgent_Stop(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "stop"); +} + +void QBluetoothDeviceDiscoveryAgent_DestroyQBluetoothDeviceDiscoveryAgent(QtObjectPtr ptr){ + static_cast(ptr)->~QBluetoothDeviceDiscoveryAgent(); +} + diff --git a/bluetooth/qbluetoothdevicediscoveryagent.go b/bluetooth/qbluetoothdevicediscoveryagent.go new file mode 100755 index 00000000..4d99460d --- /dev/null +++ b/bluetooth/qbluetoothdevicediscoveryagent.go @@ -0,0 +1,157 @@ +package bluetooth + +//#include "qbluetoothdevicediscoveryagent.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QBluetoothDeviceDiscoveryAgent struct { + core.QObject +} + +type QBluetoothDeviceDiscoveryAgentITF interface { + core.QObjectITF + QBluetoothDeviceDiscoveryAgentPTR() *QBluetoothDeviceDiscoveryAgent +} + +func PointerFromQBluetoothDeviceDiscoveryAgent(ptr QBluetoothDeviceDiscoveryAgentITF) unsafe.Pointer { + if ptr != nil { + return ptr.QBluetoothDeviceDiscoveryAgentPTR().Pointer() + } + return nil +} + +func QBluetoothDeviceDiscoveryAgentFromPointer(ptr unsafe.Pointer) *QBluetoothDeviceDiscoveryAgent { + var n = new(QBluetoothDeviceDiscoveryAgent) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QBluetoothDeviceDiscoveryAgent_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QBluetoothDeviceDiscoveryAgent) QBluetoothDeviceDiscoveryAgentPTR() *QBluetoothDeviceDiscoveryAgent { + return ptr +} + +//QBluetoothDeviceDiscoveryAgent::Error +type QBluetoothDeviceDiscoveryAgent__Error int + +var ( + QBluetoothDeviceDiscoveryAgent__NoError = QBluetoothDeviceDiscoveryAgent__Error(0) + QBluetoothDeviceDiscoveryAgent__InputOutputError = QBluetoothDeviceDiscoveryAgent__Error(1) + QBluetoothDeviceDiscoveryAgent__PoweredOffError = QBluetoothDeviceDiscoveryAgent__Error(2) + QBluetoothDeviceDiscoveryAgent__InvalidBluetoothAdapterError = QBluetoothDeviceDiscoveryAgent__Error(3) + QBluetoothDeviceDiscoveryAgent__UnsupportedPlatformError = QBluetoothDeviceDiscoveryAgent__Error(4) + QBluetoothDeviceDiscoveryAgent__UnknownError = QBluetoothDeviceDiscoveryAgent__Error(100) +) + +//QBluetoothDeviceDiscoveryAgent::InquiryType +type QBluetoothDeviceDiscoveryAgent__InquiryType int + +var ( + QBluetoothDeviceDiscoveryAgent__GeneralUnlimitedInquiry = QBluetoothDeviceDiscoveryAgent__InquiryType(0) + QBluetoothDeviceDiscoveryAgent__LimitedInquiry = QBluetoothDeviceDiscoveryAgent__InquiryType(1) +) + +func (ptr *QBluetoothDeviceDiscoveryAgent) ConnectCanceled(f func()) { + if ptr.Pointer() != nil { + C.QBluetoothDeviceDiscoveryAgent_ConnectCanceled(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "canceled", f) + } +} + +func (ptr *QBluetoothDeviceDiscoveryAgent) DisconnectCanceled() { + if ptr.Pointer() != nil { + C.QBluetoothDeviceDiscoveryAgent_DisconnectCanceled(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "canceled") + } +} + +//export callbackQBluetoothDeviceDiscoveryAgentCanceled +func callbackQBluetoothDeviceDiscoveryAgentCanceled(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "canceled").(func())() +} + +func (ptr *QBluetoothDeviceDiscoveryAgent) ConnectFinished(f func()) { + if ptr.Pointer() != nil { + C.QBluetoothDeviceDiscoveryAgent_ConnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "finished", f) + } +} + +func (ptr *QBluetoothDeviceDiscoveryAgent) DisconnectFinished() { + if ptr.Pointer() != nil { + C.QBluetoothDeviceDiscoveryAgent_DisconnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "finished") + } +} + +//export callbackQBluetoothDeviceDiscoveryAgentFinished +func callbackQBluetoothDeviceDiscoveryAgentFinished(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "finished").(func())() +} + +func NewQBluetoothDeviceDiscoveryAgent(parent core.QObjectITF) *QBluetoothDeviceDiscoveryAgent { + return QBluetoothDeviceDiscoveryAgentFromPointer(unsafe.Pointer(C.QBluetoothDeviceDiscoveryAgent_NewQBluetoothDeviceDiscoveryAgent(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQBluetoothDeviceDiscoveryAgent2(deviceAdapter QBluetoothAddressITF, parent core.QObjectITF) *QBluetoothDeviceDiscoveryAgent { + return QBluetoothDeviceDiscoveryAgentFromPointer(unsafe.Pointer(C.QBluetoothDeviceDiscoveryAgent_NewQBluetoothDeviceDiscoveryAgent2(C.QtObjectPtr(PointerFromQBluetoothAddress(deviceAdapter)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QBluetoothDeviceDiscoveryAgent) Error() QBluetoothDeviceDiscoveryAgent__Error { + if ptr.Pointer() != nil { + return QBluetoothDeviceDiscoveryAgent__Error(C.QBluetoothDeviceDiscoveryAgent_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QBluetoothDeviceDiscoveryAgent) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QBluetoothDeviceDiscoveryAgent_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QBluetoothDeviceDiscoveryAgent) InquiryType() QBluetoothDeviceDiscoveryAgent__InquiryType { + if ptr.Pointer() != nil { + return QBluetoothDeviceDiscoveryAgent__InquiryType(C.QBluetoothDeviceDiscoveryAgent_InquiryType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QBluetoothDeviceDiscoveryAgent) IsActive() bool { + if ptr.Pointer() != nil { + return C.QBluetoothDeviceDiscoveryAgent_IsActive(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QBluetoothDeviceDiscoveryAgent) SetInquiryType(ty QBluetoothDeviceDiscoveryAgent__InquiryType) { + if ptr.Pointer() != nil { + C.QBluetoothDeviceDiscoveryAgent_SetInquiryType(C.QtObjectPtr(ptr.Pointer()), C.int(ty)) + } +} + +func (ptr *QBluetoothDeviceDiscoveryAgent) Start() { + if ptr.Pointer() != nil { + C.QBluetoothDeviceDiscoveryAgent_Start(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QBluetoothDeviceDiscoveryAgent) Stop() { + if ptr.Pointer() != nil { + C.QBluetoothDeviceDiscoveryAgent_Stop(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QBluetoothDeviceDiscoveryAgent) DestroyQBluetoothDeviceDiscoveryAgent() { + if ptr.Pointer() != nil { + C.QBluetoothDeviceDiscoveryAgent_DestroyQBluetoothDeviceDiscoveryAgent(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/bluetooth/qbluetoothdevicediscoveryagent.h b/bluetooth/qbluetoothdevicediscoveryagent.h new file mode 100755 index 00000000..a45a22bc --- /dev/null +++ b/bluetooth/qbluetoothdevicediscoveryagent.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QBluetoothDeviceDiscoveryAgent_ConnectCanceled(QtObjectPtr ptr); +void QBluetoothDeviceDiscoveryAgent_DisconnectCanceled(QtObjectPtr ptr); +void QBluetoothDeviceDiscoveryAgent_ConnectFinished(QtObjectPtr ptr); +void QBluetoothDeviceDiscoveryAgent_DisconnectFinished(QtObjectPtr ptr); +QtObjectPtr QBluetoothDeviceDiscoveryAgent_NewQBluetoothDeviceDiscoveryAgent(QtObjectPtr parent); +QtObjectPtr QBluetoothDeviceDiscoveryAgent_NewQBluetoothDeviceDiscoveryAgent2(QtObjectPtr deviceAdapter, QtObjectPtr parent); +int QBluetoothDeviceDiscoveryAgent_Error(QtObjectPtr ptr); +char* QBluetoothDeviceDiscoveryAgent_ErrorString(QtObjectPtr ptr); +int QBluetoothDeviceDiscoveryAgent_InquiryType(QtObjectPtr ptr); +int QBluetoothDeviceDiscoveryAgent_IsActive(QtObjectPtr ptr); +void QBluetoothDeviceDiscoveryAgent_SetInquiryType(QtObjectPtr ptr, int ty); +void QBluetoothDeviceDiscoveryAgent_Start(QtObjectPtr ptr); +void QBluetoothDeviceDiscoveryAgent_Stop(QtObjectPtr ptr); +void QBluetoothDeviceDiscoveryAgent_DestroyQBluetoothDeviceDiscoveryAgent(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/bluetooth/qbluetoothdeviceinfo.cpp b/bluetooth/qbluetoothdeviceinfo.cpp new file mode 100755 index 00000000..3e241472 --- /dev/null +++ b/bluetooth/qbluetoothdeviceinfo.cpp @@ -0,0 +1,65 @@ +#include "qbluetoothdeviceinfo.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQBluetoothDeviceInfo: public QBluetoothDeviceInfo { +public: +}; + +QtObjectPtr QBluetoothDeviceInfo_NewQBluetoothDeviceInfo(){ + return new QBluetoothDeviceInfo(); +} + +QtObjectPtr QBluetoothDeviceInfo_NewQBluetoothDeviceInfo4(QtObjectPtr other){ + return new QBluetoothDeviceInfo(*static_cast(other)); +} + +int QBluetoothDeviceInfo_CoreConfigurations(QtObjectPtr ptr){ + return static_cast(ptr)->coreConfigurations(); +} + +int QBluetoothDeviceInfo_IsCached(QtObjectPtr ptr){ + return static_cast(ptr)->isCached(); +} + +int QBluetoothDeviceInfo_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QBluetoothDeviceInfo_MajorDeviceClass(QtObjectPtr ptr){ + return static_cast(ptr)->majorDeviceClass(); +} + +char* QBluetoothDeviceInfo_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +int QBluetoothDeviceInfo_ServiceClasses(QtObjectPtr ptr){ + return static_cast(ptr)->serviceClasses(); +} + +int QBluetoothDeviceInfo_ServiceUuidsCompleteness(QtObjectPtr ptr){ + return static_cast(ptr)->serviceUuidsCompleteness(); +} + +void QBluetoothDeviceInfo_SetCached(QtObjectPtr ptr, int cached){ + static_cast(ptr)->setCached(cached != 0); +} + +void QBluetoothDeviceInfo_SetCoreConfigurations(QtObjectPtr ptr, int coreConfigs){ + static_cast(ptr)->setCoreConfigurations(static_cast(coreConfigs)); +} + +void QBluetoothDeviceInfo_SetDeviceUuid(QtObjectPtr ptr, QtObjectPtr uuid){ + static_cast(ptr)->setDeviceUuid(*static_cast(uuid)); +} + +void QBluetoothDeviceInfo_DestroyQBluetoothDeviceInfo(QtObjectPtr ptr){ + static_cast(ptr)->~QBluetoothDeviceInfo(); +} + diff --git a/bluetooth/qbluetoothdeviceinfo.go b/bluetooth/qbluetoothdeviceinfo.go new file mode 100755 index 00000000..37a74b96 --- /dev/null +++ b/bluetooth/qbluetoothdeviceinfo.go @@ -0,0 +1,308 @@ +package bluetooth + +//#include "qbluetoothdeviceinfo.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QBluetoothDeviceInfo struct { + ptr unsafe.Pointer +} + +type QBluetoothDeviceInfoITF interface { + QBluetoothDeviceInfoPTR() *QBluetoothDeviceInfo +} + +func (p *QBluetoothDeviceInfo) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QBluetoothDeviceInfo) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQBluetoothDeviceInfo(ptr QBluetoothDeviceInfoITF) unsafe.Pointer { + if ptr != nil { + return ptr.QBluetoothDeviceInfoPTR().Pointer() + } + return nil +} + +func QBluetoothDeviceInfoFromPointer(ptr unsafe.Pointer) *QBluetoothDeviceInfo { + var n = new(QBluetoothDeviceInfo) + n.SetPointer(ptr) + return n +} + +func (ptr *QBluetoothDeviceInfo) QBluetoothDeviceInfoPTR() *QBluetoothDeviceInfo { + return ptr +} + +//QBluetoothDeviceInfo::CoreConfiguration +type QBluetoothDeviceInfo__CoreConfiguration int + +var ( + QBluetoothDeviceInfo__UnknownCoreConfiguration = QBluetoothDeviceInfo__CoreConfiguration(0x0) + QBluetoothDeviceInfo__LowEnergyCoreConfiguration = QBluetoothDeviceInfo__CoreConfiguration(0x01) + QBluetoothDeviceInfo__BaseRateCoreConfiguration = QBluetoothDeviceInfo__CoreConfiguration(0x02) + QBluetoothDeviceInfo__BaseRateAndLowEnergyCoreConfiguration = QBluetoothDeviceInfo__CoreConfiguration(0x03) +) + +//QBluetoothDeviceInfo::DataCompleteness +type QBluetoothDeviceInfo__DataCompleteness int + +var ( + QBluetoothDeviceInfo__DataComplete = QBluetoothDeviceInfo__DataCompleteness(0) + QBluetoothDeviceInfo__DataIncomplete = QBluetoothDeviceInfo__DataCompleteness(1) + QBluetoothDeviceInfo__DataUnavailable = QBluetoothDeviceInfo__DataCompleteness(2) +) + +//QBluetoothDeviceInfo::MajorDeviceClass +type QBluetoothDeviceInfo__MajorDeviceClass int + +var ( + QBluetoothDeviceInfo__MiscellaneousDevice = QBluetoothDeviceInfo__MajorDeviceClass(0) + QBluetoothDeviceInfo__ComputerDevice = QBluetoothDeviceInfo__MajorDeviceClass(1) + QBluetoothDeviceInfo__PhoneDevice = QBluetoothDeviceInfo__MajorDeviceClass(2) + QBluetoothDeviceInfo__LANAccessDevice = QBluetoothDeviceInfo__MajorDeviceClass(3) + QBluetoothDeviceInfo__AudioVideoDevice = QBluetoothDeviceInfo__MajorDeviceClass(4) + QBluetoothDeviceInfo__PeripheralDevice = QBluetoothDeviceInfo__MajorDeviceClass(5) + QBluetoothDeviceInfo__ImagingDevice = QBluetoothDeviceInfo__MajorDeviceClass(6) + QBluetoothDeviceInfo__WearableDevice = QBluetoothDeviceInfo__MajorDeviceClass(7) + QBluetoothDeviceInfo__ToyDevice = QBluetoothDeviceInfo__MajorDeviceClass(8) + QBluetoothDeviceInfo__HealthDevice = QBluetoothDeviceInfo__MajorDeviceClass(9) + QBluetoothDeviceInfo__UncategorizedDevice = QBluetoothDeviceInfo__MajorDeviceClass(31) +) + +//QBluetoothDeviceInfo::MinorAudioVideoClass +type QBluetoothDeviceInfo__MinorAudioVideoClass int + +var ( + QBluetoothDeviceInfo__UncategorizedAudioVideoDevice = QBluetoothDeviceInfo__MinorAudioVideoClass(0) + QBluetoothDeviceInfo__WearableHeadsetDevice = QBluetoothDeviceInfo__MinorAudioVideoClass(1) + QBluetoothDeviceInfo__HandsFreeDevice = QBluetoothDeviceInfo__MinorAudioVideoClass(2) + QBluetoothDeviceInfo__Microphone = QBluetoothDeviceInfo__MinorAudioVideoClass(4) + QBluetoothDeviceInfo__Loudspeaker = QBluetoothDeviceInfo__MinorAudioVideoClass(5) + QBluetoothDeviceInfo__Headphones = QBluetoothDeviceInfo__MinorAudioVideoClass(6) + QBluetoothDeviceInfo__PortableAudioDevice = QBluetoothDeviceInfo__MinorAudioVideoClass(7) + QBluetoothDeviceInfo__CarAudio = QBluetoothDeviceInfo__MinorAudioVideoClass(8) + QBluetoothDeviceInfo__SetTopBox = QBluetoothDeviceInfo__MinorAudioVideoClass(9) + QBluetoothDeviceInfo__HiFiAudioDevice = QBluetoothDeviceInfo__MinorAudioVideoClass(10) + QBluetoothDeviceInfo__Vcr = QBluetoothDeviceInfo__MinorAudioVideoClass(11) + QBluetoothDeviceInfo__VideoCamera = QBluetoothDeviceInfo__MinorAudioVideoClass(12) + QBluetoothDeviceInfo__Camcorder = QBluetoothDeviceInfo__MinorAudioVideoClass(13) + QBluetoothDeviceInfo__VideoMonitor = QBluetoothDeviceInfo__MinorAudioVideoClass(14) + QBluetoothDeviceInfo__VideoDisplayAndLoudspeaker = QBluetoothDeviceInfo__MinorAudioVideoClass(15) + QBluetoothDeviceInfo__VideoConferencing = QBluetoothDeviceInfo__MinorAudioVideoClass(16) + QBluetoothDeviceInfo__GamingDevice = QBluetoothDeviceInfo__MinorAudioVideoClass(18) +) + +//QBluetoothDeviceInfo::MinorComputerClass +type QBluetoothDeviceInfo__MinorComputerClass int + +var ( + QBluetoothDeviceInfo__UncategorizedComputer = QBluetoothDeviceInfo__MinorComputerClass(0) + QBluetoothDeviceInfo__DesktopComputer = QBluetoothDeviceInfo__MinorComputerClass(1) + QBluetoothDeviceInfo__ServerComputer = QBluetoothDeviceInfo__MinorComputerClass(2) + QBluetoothDeviceInfo__LaptopComputer = QBluetoothDeviceInfo__MinorComputerClass(3) + QBluetoothDeviceInfo__HandheldClamShellComputer = QBluetoothDeviceInfo__MinorComputerClass(4) + QBluetoothDeviceInfo__HandheldComputer = QBluetoothDeviceInfo__MinorComputerClass(5) + QBluetoothDeviceInfo__WearableComputer = QBluetoothDeviceInfo__MinorComputerClass(6) +) + +//QBluetoothDeviceInfo::MinorHealthClass +type QBluetoothDeviceInfo__MinorHealthClass int + +var ( + QBluetoothDeviceInfo__UncategorizedHealthDevice = QBluetoothDeviceInfo__MinorHealthClass(0) + QBluetoothDeviceInfo__HealthBloodPressureMonitor = QBluetoothDeviceInfo__MinorHealthClass(0x1) + QBluetoothDeviceInfo__HealthThermometer = QBluetoothDeviceInfo__MinorHealthClass(0x2) + QBluetoothDeviceInfo__HealthWeightScale = QBluetoothDeviceInfo__MinorHealthClass(0x3) + QBluetoothDeviceInfo__HealthGlucoseMeter = QBluetoothDeviceInfo__MinorHealthClass(0x4) + QBluetoothDeviceInfo__HealthPulseOximeter = QBluetoothDeviceInfo__MinorHealthClass(0x5) + QBluetoothDeviceInfo__HealthDataDisplay = QBluetoothDeviceInfo__MinorHealthClass(0x7) + QBluetoothDeviceInfo__HealthStepCounter = QBluetoothDeviceInfo__MinorHealthClass(0x8) +) + +//QBluetoothDeviceInfo::MinorImagingClass +type QBluetoothDeviceInfo__MinorImagingClass int + +var ( + QBluetoothDeviceInfo__UncategorizedImagingDevice = QBluetoothDeviceInfo__MinorImagingClass(0) + QBluetoothDeviceInfo__ImageDisplay = QBluetoothDeviceInfo__MinorImagingClass(0x04) + QBluetoothDeviceInfo__ImageCamera = QBluetoothDeviceInfo__MinorImagingClass(0x08) + QBluetoothDeviceInfo__ImageScanner = QBluetoothDeviceInfo__MinorImagingClass(0x10) + QBluetoothDeviceInfo__ImagePrinter = QBluetoothDeviceInfo__MinorImagingClass(0x20) +) + +//QBluetoothDeviceInfo::MinorMiscellaneousClass +type QBluetoothDeviceInfo__MinorMiscellaneousClass int + +var ( + QBluetoothDeviceInfo__UncategorizedMiscellaneous = QBluetoothDeviceInfo__MinorMiscellaneousClass(0) +) + +//QBluetoothDeviceInfo::MinorNetworkClass +type QBluetoothDeviceInfo__MinorNetworkClass int + +var ( + QBluetoothDeviceInfo__NetworkFullService = QBluetoothDeviceInfo__MinorNetworkClass(0x00) + QBluetoothDeviceInfo__NetworkLoadFactorOne = QBluetoothDeviceInfo__MinorNetworkClass(0x08) + QBluetoothDeviceInfo__NetworkLoadFactorTwo = QBluetoothDeviceInfo__MinorNetworkClass(0x10) + QBluetoothDeviceInfo__NetworkLoadFactorThree = QBluetoothDeviceInfo__MinorNetworkClass(0x18) + QBluetoothDeviceInfo__NetworkLoadFactorFour = QBluetoothDeviceInfo__MinorNetworkClass(0x20) + QBluetoothDeviceInfo__NetworkLoadFactorFive = QBluetoothDeviceInfo__MinorNetworkClass(0x28) + QBluetoothDeviceInfo__NetworkLoadFactorSix = QBluetoothDeviceInfo__MinorNetworkClass(0x30) + QBluetoothDeviceInfo__NetworkNoService = QBluetoothDeviceInfo__MinorNetworkClass(0x38) +) + +//QBluetoothDeviceInfo::MinorPeripheralClass +type QBluetoothDeviceInfo__MinorPeripheralClass int + +var ( + QBluetoothDeviceInfo__UncategorizedPeripheral = QBluetoothDeviceInfo__MinorPeripheralClass(0) + QBluetoothDeviceInfo__KeyboardPeripheral = QBluetoothDeviceInfo__MinorPeripheralClass(0x10) + QBluetoothDeviceInfo__PointingDevicePeripheral = QBluetoothDeviceInfo__MinorPeripheralClass(0x20) + QBluetoothDeviceInfo__KeyboardWithPointingDevicePeripheral = QBluetoothDeviceInfo__MinorPeripheralClass(0x30) + QBluetoothDeviceInfo__JoystickPeripheral = QBluetoothDeviceInfo__MinorPeripheralClass(0x01) + QBluetoothDeviceInfo__GamepadPeripheral = QBluetoothDeviceInfo__MinorPeripheralClass(0x02) + QBluetoothDeviceInfo__RemoteControlPeripheral = QBluetoothDeviceInfo__MinorPeripheralClass(0x03) + QBluetoothDeviceInfo__SensingDevicePeripheral = QBluetoothDeviceInfo__MinorPeripheralClass(0x04) + QBluetoothDeviceInfo__DigitizerTabletPeripheral = QBluetoothDeviceInfo__MinorPeripheralClass(0x05) + QBluetoothDeviceInfo__CardReaderPeripheral = QBluetoothDeviceInfo__MinorPeripheralClass(0x06) +) + +//QBluetoothDeviceInfo::MinorPhoneClass +type QBluetoothDeviceInfo__MinorPhoneClass int + +var ( + QBluetoothDeviceInfo__UncategorizedPhone = QBluetoothDeviceInfo__MinorPhoneClass(0) + QBluetoothDeviceInfo__CellularPhone = QBluetoothDeviceInfo__MinorPhoneClass(1) + QBluetoothDeviceInfo__CordlessPhone = QBluetoothDeviceInfo__MinorPhoneClass(2) + QBluetoothDeviceInfo__SmartPhone = QBluetoothDeviceInfo__MinorPhoneClass(3) + QBluetoothDeviceInfo__WiredModemOrVoiceGatewayPhone = QBluetoothDeviceInfo__MinorPhoneClass(4) + QBluetoothDeviceInfo__CommonIsdnAccessPhone = QBluetoothDeviceInfo__MinorPhoneClass(5) +) + +//QBluetoothDeviceInfo::MinorToyClass +type QBluetoothDeviceInfo__MinorToyClass int + +var ( + QBluetoothDeviceInfo__UncategorizedToy = QBluetoothDeviceInfo__MinorToyClass(0) + QBluetoothDeviceInfo__ToyRobot = QBluetoothDeviceInfo__MinorToyClass(1) + QBluetoothDeviceInfo__ToyVehicle = QBluetoothDeviceInfo__MinorToyClass(2) + QBluetoothDeviceInfo__ToyDoll = QBluetoothDeviceInfo__MinorToyClass(3) + QBluetoothDeviceInfo__ToyController = QBluetoothDeviceInfo__MinorToyClass(4) + QBluetoothDeviceInfo__ToyGame = QBluetoothDeviceInfo__MinorToyClass(5) +) + +//QBluetoothDeviceInfo::MinorWearableClass +type QBluetoothDeviceInfo__MinorWearableClass int + +var ( + QBluetoothDeviceInfo__UncategorizedWearableDevice = QBluetoothDeviceInfo__MinorWearableClass(0) + QBluetoothDeviceInfo__WearableWristWatch = QBluetoothDeviceInfo__MinorWearableClass(1) + QBluetoothDeviceInfo__WearablePager = QBluetoothDeviceInfo__MinorWearableClass(2) + QBluetoothDeviceInfo__WearableJacket = QBluetoothDeviceInfo__MinorWearableClass(3) + QBluetoothDeviceInfo__WearableHelmet = QBluetoothDeviceInfo__MinorWearableClass(4) + QBluetoothDeviceInfo__WearableGlasses = QBluetoothDeviceInfo__MinorWearableClass(5) +) + +//QBluetoothDeviceInfo::ServiceClass +type QBluetoothDeviceInfo__ServiceClass int + +var ( + QBluetoothDeviceInfo__NoService = QBluetoothDeviceInfo__ServiceClass(0x0000) + QBluetoothDeviceInfo__PositioningService = QBluetoothDeviceInfo__ServiceClass(0x0001) + QBluetoothDeviceInfo__NetworkingService = QBluetoothDeviceInfo__ServiceClass(0x0002) + QBluetoothDeviceInfo__RenderingService = QBluetoothDeviceInfo__ServiceClass(0x0004) + QBluetoothDeviceInfo__CapturingService = QBluetoothDeviceInfo__ServiceClass(0x0008) + QBluetoothDeviceInfo__ObjectTransferService = QBluetoothDeviceInfo__ServiceClass(0x0010) + QBluetoothDeviceInfo__AudioService = QBluetoothDeviceInfo__ServiceClass(0x0020) + QBluetoothDeviceInfo__TelephonyService = QBluetoothDeviceInfo__ServiceClass(0x0040) + QBluetoothDeviceInfo__InformationService = QBluetoothDeviceInfo__ServiceClass(0x0080) + QBluetoothDeviceInfo__AllServices = QBluetoothDeviceInfo__ServiceClass(0x07ff) +) + +func NewQBluetoothDeviceInfo() *QBluetoothDeviceInfo { + return QBluetoothDeviceInfoFromPointer(unsafe.Pointer(C.QBluetoothDeviceInfo_NewQBluetoothDeviceInfo())) +} + +func NewQBluetoothDeviceInfo4(other QBluetoothDeviceInfoITF) *QBluetoothDeviceInfo { + return QBluetoothDeviceInfoFromPointer(unsafe.Pointer(C.QBluetoothDeviceInfo_NewQBluetoothDeviceInfo4(C.QtObjectPtr(PointerFromQBluetoothDeviceInfo(other))))) +} + +func (ptr *QBluetoothDeviceInfo) CoreConfigurations() QBluetoothDeviceInfo__CoreConfiguration { + if ptr.Pointer() != nil { + return QBluetoothDeviceInfo__CoreConfiguration(C.QBluetoothDeviceInfo_CoreConfigurations(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QBluetoothDeviceInfo) IsCached() bool { + if ptr.Pointer() != nil { + return C.QBluetoothDeviceInfo_IsCached(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QBluetoothDeviceInfo) IsValid() bool { + if ptr.Pointer() != nil { + return C.QBluetoothDeviceInfo_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QBluetoothDeviceInfo) MajorDeviceClass() QBluetoothDeviceInfo__MajorDeviceClass { + if ptr.Pointer() != nil { + return QBluetoothDeviceInfo__MajorDeviceClass(C.QBluetoothDeviceInfo_MajorDeviceClass(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QBluetoothDeviceInfo) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QBluetoothDeviceInfo_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QBluetoothDeviceInfo) ServiceClasses() QBluetoothDeviceInfo__ServiceClass { + if ptr.Pointer() != nil { + return QBluetoothDeviceInfo__ServiceClass(C.QBluetoothDeviceInfo_ServiceClasses(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QBluetoothDeviceInfo) ServiceUuidsCompleteness() QBluetoothDeviceInfo__DataCompleteness { + if ptr.Pointer() != nil { + return QBluetoothDeviceInfo__DataCompleteness(C.QBluetoothDeviceInfo_ServiceUuidsCompleteness(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QBluetoothDeviceInfo) SetCached(cached bool) { + if ptr.Pointer() != nil { + C.QBluetoothDeviceInfo_SetCached(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(cached))) + } +} + +func (ptr *QBluetoothDeviceInfo) SetCoreConfigurations(coreConfigs QBluetoothDeviceInfo__CoreConfiguration) { + if ptr.Pointer() != nil { + C.QBluetoothDeviceInfo_SetCoreConfigurations(C.QtObjectPtr(ptr.Pointer()), C.int(coreConfigs)) + } +} + +func (ptr *QBluetoothDeviceInfo) SetDeviceUuid(uuid QBluetoothUuidITF) { + if ptr.Pointer() != nil { + C.QBluetoothDeviceInfo_SetDeviceUuid(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQBluetoothUuid(uuid))) + } +} + +func (ptr *QBluetoothDeviceInfo) DestroyQBluetoothDeviceInfo() { + if ptr.Pointer() != nil { + C.QBluetoothDeviceInfo_DestroyQBluetoothDeviceInfo(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/bluetooth/qbluetoothdeviceinfo.h b/bluetooth/qbluetoothdeviceinfo.h new file mode 100755 index 00000000..c36f8e8c --- /dev/null +++ b/bluetooth/qbluetoothdeviceinfo.h @@ -0,0 +1,22 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QBluetoothDeviceInfo_NewQBluetoothDeviceInfo(); +QtObjectPtr QBluetoothDeviceInfo_NewQBluetoothDeviceInfo4(QtObjectPtr other); +int QBluetoothDeviceInfo_CoreConfigurations(QtObjectPtr ptr); +int QBluetoothDeviceInfo_IsCached(QtObjectPtr ptr); +int QBluetoothDeviceInfo_IsValid(QtObjectPtr ptr); +int QBluetoothDeviceInfo_MajorDeviceClass(QtObjectPtr ptr); +char* QBluetoothDeviceInfo_Name(QtObjectPtr ptr); +int QBluetoothDeviceInfo_ServiceClasses(QtObjectPtr ptr); +int QBluetoothDeviceInfo_ServiceUuidsCompleteness(QtObjectPtr ptr); +void QBluetoothDeviceInfo_SetCached(QtObjectPtr ptr, int cached); +void QBluetoothDeviceInfo_SetCoreConfigurations(QtObjectPtr ptr, int coreConfigs); +void QBluetoothDeviceInfo_SetDeviceUuid(QtObjectPtr ptr, QtObjectPtr uuid); +void QBluetoothDeviceInfo_DestroyQBluetoothDeviceInfo(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/bluetooth/qbluetoothhostinfo.cpp b/bluetooth/qbluetoothhostinfo.cpp new file mode 100755 index 00000000..102b95a1 --- /dev/null +++ b/bluetooth/qbluetoothhostinfo.cpp @@ -0,0 +1,37 @@ +#include "qbluetoothhostinfo.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQBluetoothHostInfo: public QBluetoothHostInfo { +public: +}; + +QtObjectPtr QBluetoothHostInfo_NewQBluetoothHostInfo(){ + return new QBluetoothHostInfo(); +} + +QtObjectPtr QBluetoothHostInfo_NewQBluetoothHostInfo2(QtObjectPtr other){ + return new QBluetoothHostInfo(*static_cast(other)); +} + +char* QBluetoothHostInfo_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +void QBluetoothHostInfo_SetAddress(QtObjectPtr ptr, QtObjectPtr address){ + static_cast(ptr)->setAddress(*static_cast(address)); +} + +void QBluetoothHostInfo_SetName(QtObjectPtr ptr, char* name){ + static_cast(ptr)->setName(QString(name)); +} + +void QBluetoothHostInfo_DestroyQBluetoothHostInfo(QtObjectPtr ptr){ + static_cast(ptr)->~QBluetoothHostInfo(); +} + diff --git a/bluetooth/qbluetoothhostinfo.go b/bluetooth/qbluetoothhostinfo.go new file mode 100755 index 00000000..33dfdbd2 --- /dev/null +++ b/bluetooth/qbluetoothhostinfo.go @@ -0,0 +1,73 @@ +package bluetooth + +//#include "qbluetoothhostinfo.h" +import "C" +import ( + "unsafe" +) + +type QBluetoothHostInfo struct { + ptr unsafe.Pointer +} + +type QBluetoothHostInfoITF interface { + QBluetoothHostInfoPTR() *QBluetoothHostInfo +} + +func (p *QBluetoothHostInfo) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QBluetoothHostInfo) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQBluetoothHostInfo(ptr QBluetoothHostInfoITF) unsafe.Pointer { + if ptr != nil { + return ptr.QBluetoothHostInfoPTR().Pointer() + } + return nil +} + +func QBluetoothHostInfoFromPointer(ptr unsafe.Pointer) *QBluetoothHostInfo { + var n = new(QBluetoothHostInfo) + n.SetPointer(ptr) + return n +} + +func (ptr *QBluetoothHostInfo) QBluetoothHostInfoPTR() *QBluetoothHostInfo { + return ptr +} + +func NewQBluetoothHostInfo() *QBluetoothHostInfo { + return QBluetoothHostInfoFromPointer(unsafe.Pointer(C.QBluetoothHostInfo_NewQBluetoothHostInfo())) +} + +func NewQBluetoothHostInfo2(other QBluetoothHostInfoITF) *QBluetoothHostInfo { + return QBluetoothHostInfoFromPointer(unsafe.Pointer(C.QBluetoothHostInfo_NewQBluetoothHostInfo2(C.QtObjectPtr(PointerFromQBluetoothHostInfo(other))))) +} + +func (ptr *QBluetoothHostInfo) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QBluetoothHostInfo_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QBluetoothHostInfo) SetAddress(address QBluetoothAddressITF) { + if ptr.Pointer() != nil { + C.QBluetoothHostInfo_SetAddress(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQBluetoothAddress(address))) + } +} + +func (ptr *QBluetoothHostInfo) SetName(name string) { + if ptr.Pointer() != nil { + C.QBluetoothHostInfo_SetName(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func (ptr *QBluetoothHostInfo) DestroyQBluetoothHostInfo() { + if ptr.Pointer() != nil { + C.QBluetoothHostInfo_DestroyQBluetoothHostInfo(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/bluetooth/qbluetoothhostinfo.h b/bluetooth/qbluetoothhostinfo.h new file mode 100755 index 00000000..22a3c2e6 --- /dev/null +++ b/bluetooth/qbluetoothhostinfo.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QBluetoothHostInfo_NewQBluetoothHostInfo(); +QtObjectPtr QBluetoothHostInfo_NewQBluetoothHostInfo2(QtObjectPtr other); +char* QBluetoothHostInfo_Name(QtObjectPtr ptr); +void QBluetoothHostInfo_SetAddress(QtObjectPtr ptr, QtObjectPtr address); +void QBluetoothHostInfo_SetName(QtObjectPtr ptr, char* name); +void QBluetoothHostInfo_DestroyQBluetoothHostInfo(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/bluetooth/qbluetoothlocaldevice.cpp b/bluetooth/qbluetoothlocaldevice.cpp new file mode 100755 index 00000000..2940cd79 --- /dev/null +++ b/bluetooth/qbluetoothlocaldevice.cpp @@ -0,0 +1,77 @@ +#include "qbluetoothlocaldevice.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQBluetoothLocalDevice: public QBluetoothLocalDevice { +public: +void Signal_Error(QBluetoothLocalDevice::Error error){callbackQBluetoothLocalDeviceError(this->objectName().toUtf8().data(), error);}; +void Signal_HostModeStateChanged(QBluetoothLocalDevice::HostMode state){callbackQBluetoothLocalDeviceHostModeStateChanged(this->objectName().toUtf8().data(), state);}; +}; + +void QBluetoothLocalDevice_ConnectError(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QBluetoothLocalDevice::error), static_cast(ptr), static_cast(&MyQBluetoothLocalDevice::Signal_Error));; +} + +void QBluetoothLocalDevice_DisconnectError(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QBluetoothLocalDevice::error), static_cast(ptr), static_cast(&MyQBluetoothLocalDevice::Signal_Error));; +} + +void QBluetoothLocalDevice_ConnectHostModeStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QBluetoothLocalDevice::hostModeStateChanged), static_cast(ptr), static_cast(&MyQBluetoothLocalDevice::Signal_HostModeStateChanged));; +} + +void QBluetoothLocalDevice_DisconnectHostModeStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QBluetoothLocalDevice::hostModeStateChanged), static_cast(ptr), static_cast(&MyQBluetoothLocalDevice::Signal_HostModeStateChanged));; +} + +int QBluetoothLocalDevice_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +void QBluetoothLocalDevice_DestroyQBluetoothLocalDevice(QtObjectPtr ptr){ + static_cast(ptr)->~QBluetoothLocalDevice(); +} + +QtObjectPtr QBluetoothLocalDevice_NewQBluetoothLocalDevice(QtObjectPtr parent){ + return new QBluetoothLocalDevice(static_cast(parent)); +} + +QtObjectPtr QBluetoothLocalDevice_NewQBluetoothLocalDevice2(QtObjectPtr address, QtObjectPtr parent){ + return new QBluetoothLocalDevice(*static_cast(address), static_cast(parent)); +} + +int QBluetoothLocalDevice_HostMode(QtObjectPtr ptr){ + return static_cast(ptr)->hostMode(); +} + +char* QBluetoothLocalDevice_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +void QBluetoothLocalDevice_PairingConfirmation(QtObjectPtr ptr, int accept){ + QMetaObject::invokeMethod(static_cast(ptr), "pairingConfirmation", Q_ARG(bool, accept != 0)); +} + +int QBluetoothLocalDevice_PairingStatus(QtObjectPtr ptr, QtObjectPtr address){ + return static_cast(ptr)->pairingStatus(*static_cast(address)); +} + +void QBluetoothLocalDevice_PowerOn(QtObjectPtr ptr){ + static_cast(ptr)->powerOn(); +} + +void QBluetoothLocalDevice_RequestPairing(QtObjectPtr ptr, QtObjectPtr address, int pairing){ + static_cast(ptr)->requestPairing(*static_cast(address), static_cast(pairing)); +} + +void QBluetoothLocalDevice_SetHostMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setHostMode(static_cast(mode)); +} + diff --git a/bluetooth/qbluetoothlocaldevice.go b/bluetooth/qbluetoothlocaldevice.go new file mode 100755 index 00000000..4aaebc1c --- /dev/null +++ b/bluetooth/qbluetoothlocaldevice.go @@ -0,0 +1,171 @@ +package bluetooth + +//#include "qbluetoothlocaldevice.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QBluetoothLocalDevice struct { + core.QObject +} + +type QBluetoothLocalDeviceITF interface { + core.QObjectITF + QBluetoothLocalDevicePTR() *QBluetoothLocalDevice +} + +func PointerFromQBluetoothLocalDevice(ptr QBluetoothLocalDeviceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QBluetoothLocalDevicePTR().Pointer() + } + return nil +} + +func QBluetoothLocalDeviceFromPointer(ptr unsafe.Pointer) *QBluetoothLocalDevice { + var n = new(QBluetoothLocalDevice) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QBluetoothLocalDevice_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QBluetoothLocalDevice) QBluetoothLocalDevicePTR() *QBluetoothLocalDevice { + return ptr +} + +//QBluetoothLocalDevice::Error +type QBluetoothLocalDevice__Error int + +var ( + QBluetoothLocalDevice__NoError = QBluetoothLocalDevice__Error(0) + QBluetoothLocalDevice__PairingError = QBluetoothLocalDevice__Error(1) + QBluetoothLocalDevice__UnknownError = QBluetoothLocalDevice__Error(100) +) + +//QBluetoothLocalDevice::HostMode +type QBluetoothLocalDevice__HostMode int + +var ( + QBluetoothLocalDevice__HostPoweredOff = QBluetoothLocalDevice__HostMode(0) + QBluetoothLocalDevice__HostConnectable = QBluetoothLocalDevice__HostMode(1) + QBluetoothLocalDevice__HostDiscoverable = QBluetoothLocalDevice__HostMode(2) + QBluetoothLocalDevice__HostDiscoverableLimitedInquiry = QBluetoothLocalDevice__HostMode(3) +) + +//QBluetoothLocalDevice::Pairing +type QBluetoothLocalDevice__Pairing int + +var ( + QBluetoothLocalDevice__Unpaired = QBluetoothLocalDevice__Pairing(0) + QBluetoothLocalDevice__Paired = QBluetoothLocalDevice__Pairing(1) + QBluetoothLocalDevice__AuthorizedPaired = QBluetoothLocalDevice__Pairing(2) +) + +func (ptr *QBluetoothLocalDevice) ConnectError(f func(error QBluetoothLocalDevice__Error)) { + if ptr.Pointer() != nil { + C.QBluetoothLocalDevice_ConnectError(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "error", f) + } +} + +func (ptr *QBluetoothLocalDevice) DisconnectError() { + if ptr.Pointer() != nil { + C.QBluetoothLocalDevice_DisconnectError(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "error") + } +} + +//export callbackQBluetoothLocalDeviceError +func callbackQBluetoothLocalDeviceError(ptrName *C.char, error C.int) { + qt.GetSignal(C.GoString(ptrName), "error").(func(QBluetoothLocalDevice__Error))(QBluetoothLocalDevice__Error(error)) +} + +func (ptr *QBluetoothLocalDevice) ConnectHostModeStateChanged(f func(state QBluetoothLocalDevice__HostMode)) { + if ptr.Pointer() != nil { + C.QBluetoothLocalDevice_ConnectHostModeStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "hostModeStateChanged", f) + } +} + +func (ptr *QBluetoothLocalDevice) DisconnectHostModeStateChanged() { + if ptr.Pointer() != nil { + C.QBluetoothLocalDevice_DisconnectHostModeStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "hostModeStateChanged") + } +} + +//export callbackQBluetoothLocalDeviceHostModeStateChanged +func callbackQBluetoothLocalDeviceHostModeStateChanged(ptrName *C.char, state C.int) { + qt.GetSignal(C.GoString(ptrName), "hostModeStateChanged").(func(QBluetoothLocalDevice__HostMode))(QBluetoothLocalDevice__HostMode(state)) +} + +func (ptr *QBluetoothLocalDevice) IsValid() bool { + if ptr.Pointer() != nil { + return C.QBluetoothLocalDevice_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QBluetoothLocalDevice) DestroyQBluetoothLocalDevice() { + if ptr.Pointer() != nil { + C.QBluetoothLocalDevice_DestroyQBluetoothLocalDevice(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} + +func NewQBluetoothLocalDevice(parent core.QObjectITF) *QBluetoothLocalDevice { + return QBluetoothLocalDeviceFromPointer(unsafe.Pointer(C.QBluetoothLocalDevice_NewQBluetoothLocalDevice(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQBluetoothLocalDevice2(address QBluetoothAddressITF, parent core.QObjectITF) *QBluetoothLocalDevice { + return QBluetoothLocalDeviceFromPointer(unsafe.Pointer(C.QBluetoothLocalDevice_NewQBluetoothLocalDevice2(C.QtObjectPtr(PointerFromQBluetoothAddress(address)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QBluetoothLocalDevice) HostMode() QBluetoothLocalDevice__HostMode { + if ptr.Pointer() != nil { + return QBluetoothLocalDevice__HostMode(C.QBluetoothLocalDevice_HostMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QBluetoothLocalDevice) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QBluetoothLocalDevice_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QBluetoothLocalDevice) PairingConfirmation(accept bool) { + if ptr.Pointer() != nil { + C.QBluetoothLocalDevice_PairingConfirmation(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(accept))) + } +} + +func (ptr *QBluetoothLocalDevice) PairingStatus(address QBluetoothAddressITF) QBluetoothLocalDevice__Pairing { + if ptr.Pointer() != nil { + return QBluetoothLocalDevice__Pairing(C.QBluetoothLocalDevice_PairingStatus(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQBluetoothAddress(address)))) + } + return 0 +} + +func (ptr *QBluetoothLocalDevice) PowerOn() { + if ptr.Pointer() != nil { + C.QBluetoothLocalDevice_PowerOn(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QBluetoothLocalDevice) RequestPairing(address QBluetoothAddressITF, pairing QBluetoothLocalDevice__Pairing) { + if ptr.Pointer() != nil { + C.QBluetoothLocalDevice_RequestPairing(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQBluetoothAddress(address)), C.int(pairing)) + } +} + +func (ptr *QBluetoothLocalDevice) SetHostMode(mode QBluetoothLocalDevice__HostMode) { + if ptr.Pointer() != nil { + C.QBluetoothLocalDevice_SetHostMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} diff --git a/bluetooth/qbluetoothlocaldevice.h b/bluetooth/qbluetoothlocaldevice.h new file mode 100755 index 00000000..29bda845 --- /dev/null +++ b/bluetooth/qbluetoothlocaldevice.h @@ -0,0 +1,24 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QBluetoothLocalDevice_ConnectError(QtObjectPtr ptr); +void QBluetoothLocalDevice_DisconnectError(QtObjectPtr ptr); +void QBluetoothLocalDevice_ConnectHostModeStateChanged(QtObjectPtr ptr); +void QBluetoothLocalDevice_DisconnectHostModeStateChanged(QtObjectPtr ptr); +int QBluetoothLocalDevice_IsValid(QtObjectPtr ptr); +void QBluetoothLocalDevice_DestroyQBluetoothLocalDevice(QtObjectPtr ptr); +QtObjectPtr QBluetoothLocalDevice_NewQBluetoothLocalDevice(QtObjectPtr parent); +QtObjectPtr QBluetoothLocalDevice_NewQBluetoothLocalDevice2(QtObjectPtr address, QtObjectPtr parent); +int QBluetoothLocalDevice_HostMode(QtObjectPtr ptr); +char* QBluetoothLocalDevice_Name(QtObjectPtr ptr); +void QBluetoothLocalDevice_PairingConfirmation(QtObjectPtr ptr, int accept); +int QBluetoothLocalDevice_PairingStatus(QtObjectPtr ptr, QtObjectPtr address); +void QBluetoothLocalDevice_PowerOn(QtObjectPtr ptr); +void QBluetoothLocalDevice_RequestPairing(QtObjectPtr ptr, QtObjectPtr address, int pairing); +void QBluetoothLocalDevice_SetHostMode(QtObjectPtr ptr, int mode); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/bluetooth/qbluetoothserver.cpp b/bluetooth/qbluetoothserver.cpp new file mode 100755 index 00000000..d1434649 --- /dev/null +++ b/bluetooth/qbluetoothserver.cpp @@ -0,0 +1,63 @@ +#include "qbluetoothserver.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQBluetoothServer: public QBluetoothServer { +public: +void Signal_NewConnection(){callbackQBluetoothServerNewConnection(this->objectName().toUtf8().data());}; +}; + +QtObjectPtr QBluetoothServer_NewQBluetoothServer(int serverType, QtObjectPtr parent){ + return new QBluetoothServer(static_cast(serverType), static_cast(parent)); +} + +void QBluetoothServer_ConnectNewConnection(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QBluetoothServer::newConnection), static_cast(ptr), static_cast(&MyQBluetoothServer::Signal_NewConnection));; +} + +void QBluetoothServer_DisconnectNewConnection(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QBluetoothServer::newConnection), static_cast(ptr), static_cast(&MyQBluetoothServer::Signal_NewConnection));; +} + +int QBluetoothServer_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +int QBluetoothServer_IsListening(QtObjectPtr ptr){ + return static_cast(ptr)->isListening(); +} + +int QBluetoothServer_MaxPendingConnections(QtObjectPtr ptr){ + return static_cast(ptr)->maxPendingConnections(); +} + +int QBluetoothServer_ServerType(QtObjectPtr ptr){ + return static_cast(ptr)->serverType(); +} + +void QBluetoothServer_DestroyQBluetoothServer(QtObjectPtr ptr){ + static_cast(ptr)->~QBluetoothServer(); +} + +void QBluetoothServer_Close(QtObjectPtr ptr){ + static_cast(ptr)->close(); +} + +int QBluetoothServer_HasPendingConnections(QtObjectPtr ptr){ + return static_cast(ptr)->hasPendingConnections(); +} + +QtObjectPtr QBluetoothServer_NextPendingConnection(QtObjectPtr ptr){ + return static_cast(ptr)->nextPendingConnection(); +} + +void QBluetoothServer_SetMaxPendingConnections(QtObjectPtr ptr, int numConnections){ + static_cast(ptr)->setMaxPendingConnections(numConnections); +} + diff --git a/bluetooth/qbluetoothserver.go b/bluetooth/qbluetoothserver.go new file mode 100755 index 00000000..7f17bc40 --- /dev/null +++ b/bluetooth/qbluetoothserver.go @@ -0,0 +1,134 @@ +package bluetooth + +//#include "qbluetoothserver.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QBluetoothServer struct { + core.QObject +} + +type QBluetoothServerITF interface { + core.QObjectITF + QBluetoothServerPTR() *QBluetoothServer +} + +func PointerFromQBluetoothServer(ptr QBluetoothServerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QBluetoothServerPTR().Pointer() + } + return nil +} + +func QBluetoothServerFromPointer(ptr unsafe.Pointer) *QBluetoothServer { + var n = new(QBluetoothServer) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QBluetoothServer_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QBluetoothServer) QBluetoothServerPTR() *QBluetoothServer { + return ptr +} + +//QBluetoothServer::Error +type QBluetoothServer__Error int + +var ( + QBluetoothServer__NoError = QBluetoothServer__Error(0) + QBluetoothServer__UnknownError = QBluetoothServer__Error(1) + QBluetoothServer__PoweredOffError = QBluetoothServer__Error(2) + QBluetoothServer__InputOutputError = QBluetoothServer__Error(3) + QBluetoothServer__ServiceAlreadyRegisteredError = QBluetoothServer__Error(4) + QBluetoothServer__UnsupportedProtocolError = QBluetoothServer__Error(5) +) + +func NewQBluetoothServer(serverType QBluetoothServiceInfo__Protocol, parent core.QObjectITF) *QBluetoothServer { + return QBluetoothServerFromPointer(unsafe.Pointer(C.QBluetoothServer_NewQBluetoothServer(C.int(serverType), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QBluetoothServer) ConnectNewConnection(f func()) { + if ptr.Pointer() != nil { + C.QBluetoothServer_ConnectNewConnection(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "newConnection", f) + } +} + +func (ptr *QBluetoothServer) DisconnectNewConnection() { + if ptr.Pointer() != nil { + C.QBluetoothServer_DisconnectNewConnection(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "newConnection") + } +} + +//export callbackQBluetoothServerNewConnection +func callbackQBluetoothServerNewConnection(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "newConnection").(func())() +} + +func (ptr *QBluetoothServer) Error() QBluetoothServer__Error { + if ptr.Pointer() != nil { + return QBluetoothServer__Error(C.QBluetoothServer_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QBluetoothServer) IsListening() bool { + if ptr.Pointer() != nil { + return C.QBluetoothServer_IsListening(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QBluetoothServer) MaxPendingConnections() int { + if ptr.Pointer() != nil { + return int(C.QBluetoothServer_MaxPendingConnections(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QBluetoothServer) ServerType() QBluetoothServiceInfo__Protocol { + if ptr.Pointer() != nil { + return QBluetoothServiceInfo__Protocol(C.QBluetoothServer_ServerType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QBluetoothServer) DestroyQBluetoothServer() { + if ptr.Pointer() != nil { + C.QBluetoothServer_DestroyQBluetoothServer(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} + +func (ptr *QBluetoothServer) Close() { + if ptr.Pointer() != nil { + C.QBluetoothServer_Close(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QBluetoothServer) HasPendingConnections() bool { + if ptr.Pointer() != nil { + return C.QBluetoothServer_HasPendingConnections(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QBluetoothServer) NextPendingConnection() *QBluetoothSocket { + if ptr.Pointer() != nil { + return QBluetoothSocketFromPointer(unsafe.Pointer(C.QBluetoothServer_NextPendingConnection(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QBluetoothServer) SetMaxPendingConnections(numConnections int) { + if ptr.Pointer() != nil { + C.QBluetoothServer_SetMaxPendingConnections(C.QtObjectPtr(ptr.Pointer()), C.int(numConnections)) + } +} diff --git a/bluetooth/qbluetoothserver.h b/bluetooth/qbluetoothserver.h new file mode 100755 index 00000000..8810af2a --- /dev/null +++ b/bluetooth/qbluetoothserver.h @@ -0,0 +1,21 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QBluetoothServer_NewQBluetoothServer(int serverType, QtObjectPtr parent); +void QBluetoothServer_ConnectNewConnection(QtObjectPtr ptr); +void QBluetoothServer_DisconnectNewConnection(QtObjectPtr ptr); +int QBluetoothServer_Error(QtObjectPtr ptr); +int QBluetoothServer_IsListening(QtObjectPtr ptr); +int QBluetoothServer_MaxPendingConnections(QtObjectPtr ptr); +int QBluetoothServer_ServerType(QtObjectPtr ptr); +void QBluetoothServer_DestroyQBluetoothServer(QtObjectPtr ptr); +void QBluetoothServer_Close(QtObjectPtr ptr); +int QBluetoothServer_HasPendingConnections(QtObjectPtr ptr); +QtObjectPtr QBluetoothServer_NextPendingConnection(QtObjectPtr ptr); +void QBluetoothServer_SetMaxPendingConnections(QtObjectPtr ptr, int numConnections); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/bluetooth/qbluetoothservicediscoveryagent.cpp b/bluetooth/qbluetoothservicediscoveryagent.cpp new file mode 100755 index 00000000..3dc7c54f --- /dev/null +++ b/bluetooth/qbluetoothservicediscoveryagent.cpp @@ -0,0 +1,78 @@ +#include "qbluetoothservicediscoveryagent.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQBluetoothServiceDiscoveryAgent: public QBluetoothServiceDiscoveryAgent { +public: +void Signal_Canceled(){callbackQBluetoothServiceDiscoveryAgentCanceled(this->objectName().toUtf8().data());}; +void Signal_Finished(){callbackQBluetoothServiceDiscoveryAgentFinished(this->objectName().toUtf8().data());}; +}; + +void QBluetoothServiceDiscoveryAgent_ConnectCanceled(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QBluetoothServiceDiscoveryAgent::canceled), static_cast(ptr), static_cast(&MyQBluetoothServiceDiscoveryAgent::Signal_Canceled));; +} + +void QBluetoothServiceDiscoveryAgent_DisconnectCanceled(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QBluetoothServiceDiscoveryAgent::canceled), static_cast(ptr), static_cast(&MyQBluetoothServiceDiscoveryAgent::Signal_Canceled));; +} + +void QBluetoothServiceDiscoveryAgent_ConnectFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QBluetoothServiceDiscoveryAgent::finished), static_cast(ptr), static_cast(&MyQBluetoothServiceDiscoveryAgent::Signal_Finished));; +} + +void QBluetoothServiceDiscoveryAgent_DisconnectFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QBluetoothServiceDiscoveryAgent::finished), static_cast(ptr), static_cast(&MyQBluetoothServiceDiscoveryAgent::Signal_Finished));; +} + +QtObjectPtr QBluetoothServiceDiscoveryAgent_NewQBluetoothServiceDiscoveryAgent(QtObjectPtr parent){ + return new QBluetoothServiceDiscoveryAgent(static_cast(parent)); +} + +QtObjectPtr QBluetoothServiceDiscoveryAgent_NewQBluetoothServiceDiscoveryAgent2(QtObjectPtr deviceAdapter, QtObjectPtr parent){ + return new QBluetoothServiceDiscoveryAgent(*static_cast(deviceAdapter), static_cast(parent)); +} + +void QBluetoothServiceDiscoveryAgent_Clear(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "clear"); +} + +int QBluetoothServiceDiscoveryAgent_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +char* QBluetoothServiceDiscoveryAgent_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +int QBluetoothServiceDiscoveryAgent_IsActive(QtObjectPtr ptr){ + return static_cast(ptr)->isActive(); +} + +int QBluetoothServiceDiscoveryAgent_SetRemoteAddress(QtObjectPtr ptr, QtObjectPtr address){ + return static_cast(ptr)->setRemoteAddress(*static_cast(address)); +} + +void QBluetoothServiceDiscoveryAgent_SetUuidFilter2(QtObjectPtr ptr, QtObjectPtr uuid){ + static_cast(ptr)->setUuidFilter(*static_cast(uuid)); +} + +void QBluetoothServiceDiscoveryAgent_Start(QtObjectPtr ptr, int mode){ + QMetaObject::invokeMethod(static_cast(ptr), "start", Q_ARG(QBluetoothServiceDiscoveryAgent::DiscoveryMode, static_cast(mode))); +} + +void QBluetoothServiceDiscoveryAgent_Stop(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "stop"); +} + +void QBluetoothServiceDiscoveryAgent_DestroyQBluetoothServiceDiscoveryAgent(QtObjectPtr ptr){ + static_cast(ptr)->~QBluetoothServiceDiscoveryAgent(); +} + diff --git a/bluetooth/qbluetoothservicediscoveryagent.go b/bluetooth/qbluetoothservicediscoveryagent.go new file mode 100755 index 00000000..11436118 --- /dev/null +++ b/bluetooth/qbluetoothservicediscoveryagent.go @@ -0,0 +1,162 @@ +package bluetooth + +//#include "qbluetoothservicediscoveryagent.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QBluetoothServiceDiscoveryAgent struct { + core.QObject +} + +type QBluetoothServiceDiscoveryAgentITF interface { + core.QObjectITF + QBluetoothServiceDiscoveryAgentPTR() *QBluetoothServiceDiscoveryAgent +} + +func PointerFromQBluetoothServiceDiscoveryAgent(ptr QBluetoothServiceDiscoveryAgentITF) unsafe.Pointer { + if ptr != nil { + return ptr.QBluetoothServiceDiscoveryAgentPTR().Pointer() + } + return nil +} + +func QBluetoothServiceDiscoveryAgentFromPointer(ptr unsafe.Pointer) *QBluetoothServiceDiscoveryAgent { + var n = new(QBluetoothServiceDiscoveryAgent) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QBluetoothServiceDiscoveryAgent_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QBluetoothServiceDiscoveryAgent) QBluetoothServiceDiscoveryAgentPTR() *QBluetoothServiceDiscoveryAgent { + return ptr +} + +//QBluetoothServiceDiscoveryAgent::DiscoveryMode +type QBluetoothServiceDiscoveryAgent__DiscoveryMode int + +var ( + QBluetoothServiceDiscoveryAgent__MinimalDiscovery = QBluetoothServiceDiscoveryAgent__DiscoveryMode(0) + QBluetoothServiceDiscoveryAgent__FullDiscovery = QBluetoothServiceDiscoveryAgent__DiscoveryMode(1) +) + +//QBluetoothServiceDiscoveryAgent::Error +type QBluetoothServiceDiscoveryAgent__Error int + +var ( + QBluetoothServiceDiscoveryAgent__NoError = QBluetoothServiceDiscoveryAgent__Error(QBluetoothDeviceDiscoveryAgent__NoError) + QBluetoothServiceDiscoveryAgent__InputOutputError = QBluetoothServiceDiscoveryAgent__Error(QBluetoothDeviceDiscoveryAgent__InputOutputError) + QBluetoothServiceDiscoveryAgent__PoweredOffError = QBluetoothServiceDiscoveryAgent__Error(QBluetoothDeviceDiscoveryAgent__PoweredOffError) + QBluetoothServiceDiscoveryAgent__InvalidBluetoothAdapterError = QBluetoothServiceDiscoveryAgent__Error(QBluetoothDeviceDiscoveryAgent__InvalidBluetoothAdapterError) + QBluetoothServiceDiscoveryAgent__UnknownError = QBluetoothServiceDiscoveryAgent__Error(QBluetoothDeviceDiscoveryAgent__UnknownError) +) + +func (ptr *QBluetoothServiceDiscoveryAgent) ConnectCanceled(f func()) { + if ptr.Pointer() != nil { + C.QBluetoothServiceDiscoveryAgent_ConnectCanceled(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "canceled", f) + } +} + +func (ptr *QBluetoothServiceDiscoveryAgent) DisconnectCanceled() { + if ptr.Pointer() != nil { + C.QBluetoothServiceDiscoveryAgent_DisconnectCanceled(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "canceled") + } +} + +//export callbackQBluetoothServiceDiscoveryAgentCanceled +func callbackQBluetoothServiceDiscoveryAgentCanceled(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "canceled").(func())() +} + +func (ptr *QBluetoothServiceDiscoveryAgent) ConnectFinished(f func()) { + if ptr.Pointer() != nil { + C.QBluetoothServiceDiscoveryAgent_ConnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "finished", f) + } +} + +func (ptr *QBluetoothServiceDiscoveryAgent) DisconnectFinished() { + if ptr.Pointer() != nil { + C.QBluetoothServiceDiscoveryAgent_DisconnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "finished") + } +} + +//export callbackQBluetoothServiceDiscoveryAgentFinished +func callbackQBluetoothServiceDiscoveryAgentFinished(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "finished").(func())() +} + +func NewQBluetoothServiceDiscoveryAgent(parent core.QObjectITF) *QBluetoothServiceDiscoveryAgent { + return QBluetoothServiceDiscoveryAgentFromPointer(unsafe.Pointer(C.QBluetoothServiceDiscoveryAgent_NewQBluetoothServiceDiscoveryAgent(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQBluetoothServiceDiscoveryAgent2(deviceAdapter QBluetoothAddressITF, parent core.QObjectITF) *QBluetoothServiceDiscoveryAgent { + return QBluetoothServiceDiscoveryAgentFromPointer(unsafe.Pointer(C.QBluetoothServiceDiscoveryAgent_NewQBluetoothServiceDiscoveryAgent2(C.QtObjectPtr(PointerFromQBluetoothAddress(deviceAdapter)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QBluetoothServiceDiscoveryAgent) Clear() { + if ptr.Pointer() != nil { + C.QBluetoothServiceDiscoveryAgent_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QBluetoothServiceDiscoveryAgent) Error() QBluetoothServiceDiscoveryAgent__Error { + if ptr.Pointer() != nil { + return QBluetoothServiceDiscoveryAgent__Error(C.QBluetoothServiceDiscoveryAgent_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QBluetoothServiceDiscoveryAgent) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QBluetoothServiceDiscoveryAgent_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QBluetoothServiceDiscoveryAgent) IsActive() bool { + if ptr.Pointer() != nil { + return C.QBluetoothServiceDiscoveryAgent_IsActive(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QBluetoothServiceDiscoveryAgent) SetRemoteAddress(address QBluetoothAddressITF) bool { + if ptr.Pointer() != nil { + return C.QBluetoothServiceDiscoveryAgent_SetRemoteAddress(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQBluetoothAddress(address))) != 0 + } + return false +} + +func (ptr *QBluetoothServiceDiscoveryAgent) SetUuidFilter2(uuid QBluetoothUuidITF) { + if ptr.Pointer() != nil { + C.QBluetoothServiceDiscoveryAgent_SetUuidFilter2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQBluetoothUuid(uuid))) + } +} + +func (ptr *QBluetoothServiceDiscoveryAgent) Start(mode QBluetoothServiceDiscoveryAgent__DiscoveryMode) { + if ptr.Pointer() != nil { + C.QBluetoothServiceDiscoveryAgent_Start(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QBluetoothServiceDiscoveryAgent) Stop() { + if ptr.Pointer() != nil { + C.QBluetoothServiceDiscoveryAgent_Stop(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QBluetoothServiceDiscoveryAgent) DestroyQBluetoothServiceDiscoveryAgent() { + if ptr.Pointer() != nil { + C.QBluetoothServiceDiscoveryAgent_DestroyQBluetoothServiceDiscoveryAgent(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/bluetooth/qbluetoothservicediscoveryagent.h b/bluetooth/qbluetoothservicediscoveryagent.h new file mode 100755 index 00000000..36413728 --- /dev/null +++ b/bluetooth/qbluetoothservicediscoveryagent.h @@ -0,0 +1,24 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QBluetoothServiceDiscoveryAgent_ConnectCanceled(QtObjectPtr ptr); +void QBluetoothServiceDiscoveryAgent_DisconnectCanceled(QtObjectPtr ptr); +void QBluetoothServiceDiscoveryAgent_ConnectFinished(QtObjectPtr ptr); +void QBluetoothServiceDiscoveryAgent_DisconnectFinished(QtObjectPtr ptr); +QtObjectPtr QBluetoothServiceDiscoveryAgent_NewQBluetoothServiceDiscoveryAgent(QtObjectPtr parent); +QtObjectPtr QBluetoothServiceDiscoveryAgent_NewQBluetoothServiceDiscoveryAgent2(QtObjectPtr deviceAdapter, QtObjectPtr parent); +void QBluetoothServiceDiscoveryAgent_Clear(QtObjectPtr ptr); +int QBluetoothServiceDiscoveryAgent_Error(QtObjectPtr ptr); +char* QBluetoothServiceDiscoveryAgent_ErrorString(QtObjectPtr ptr); +int QBluetoothServiceDiscoveryAgent_IsActive(QtObjectPtr ptr); +int QBluetoothServiceDiscoveryAgent_SetRemoteAddress(QtObjectPtr ptr, QtObjectPtr address); +void QBluetoothServiceDiscoveryAgent_SetUuidFilter2(QtObjectPtr ptr, QtObjectPtr uuid); +void QBluetoothServiceDiscoveryAgent_Start(QtObjectPtr ptr, int mode); +void QBluetoothServiceDiscoveryAgent_Stop(QtObjectPtr ptr); +void QBluetoothServiceDiscoveryAgent_DestroyQBluetoothServiceDiscoveryAgent(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/bluetooth/qbluetoothserviceinfo.cpp b/bluetooth/qbluetoothserviceinfo.cpp new file mode 100755 index 00000000..b532e795 --- /dev/null +++ b/bluetooth/qbluetoothserviceinfo.cpp @@ -0,0 +1,103 @@ +#include "qbluetoothserviceinfo.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQBluetoothServiceInfo: public QBluetoothServiceInfo { +public: +}; + +int QBluetoothServiceInfo_ServiceName_Type(){ + return QBluetoothServiceInfo::ServiceName; +} + +int QBluetoothServiceInfo_ServiceDescription_Type(){ + return QBluetoothServiceInfo::ServiceDescription; +} + +int QBluetoothServiceInfo_ServiceProvider_Type(){ + return QBluetoothServiceInfo::ServiceProvider; +} + +char* QBluetoothServiceInfo_ServiceDescription(QtObjectPtr ptr){ + return static_cast(ptr)->serviceDescription().toUtf8().data(); +} + +char* QBluetoothServiceInfo_ServiceName(QtObjectPtr ptr){ + return static_cast(ptr)->serviceName().toUtf8().data(); +} + +char* QBluetoothServiceInfo_ServiceProvider(QtObjectPtr ptr){ + return static_cast(ptr)->serviceProvider().toUtf8().data(); +} + +void QBluetoothServiceInfo_SetServiceDescription(QtObjectPtr ptr, char* description){ + static_cast(ptr)->setServiceDescription(QString(description)); +} + +void QBluetoothServiceInfo_SetServiceName(QtObjectPtr ptr, char* name){ + static_cast(ptr)->setServiceName(QString(name)); +} + +void QBluetoothServiceInfo_SetServiceProvider(QtObjectPtr ptr, char* provider){ + static_cast(ptr)->setServiceProvider(QString(provider)); +} + +void QBluetoothServiceInfo_SetServiceUuid(QtObjectPtr ptr, QtObjectPtr uuid){ + static_cast(ptr)->setServiceUuid(*static_cast(uuid)); +} + +QtObjectPtr QBluetoothServiceInfo_NewQBluetoothServiceInfo(){ + return new QBluetoothServiceInfo(); +} + +QtObjectPtr QBluetoothServiceInfo_NewQBluetoothServiceInfo2(QtObjectPtr other){ + return new QBluetoothServiceInfo(*static_cast(other)); +} + +int QBluetoothServiceInfo_IsComplete(QtObjectPtr ptr){ + return static_cast(ptr)->isComplete(); +} + +int QBluetoothServiceInfo_IsRegistered(QtObjectPtr ptr){ + return static_cast(ptr)->isRegistered(); +} + +int QBluetoothServiceInfo_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QBluetoothServiceInfo_ProtocolServiceMultiplexer(QtObjectPtr ptr){ + return static_cast(ptr)->protocolServiceMultiplexer(); +} + +int QBluetoothServiceInfo_RegisterService(QtObjectPtr ptr, QtObjectPtr localAdapter){ + return static_cast(ptr)->registerService(*static_cast(localAdapter)); +} + +int QBluetoothServiceInfo_ServerChannel(QtObjectPtr ptr){ + return static_cast(ptr)->serverChannel(); +} + +void QBluetoothServiceInfo_SetDevice(QtObjectPtr ptr, QtObjectPtr device){ + static_cast(ptr)->setDevice(*static_cast(device)); +} + +int QBluetoothServiceInfo_SocketProtocol(QtObjectPtr ptr){ + return static_cast(ptr)->socketProtocol(); +} + +int QBluetoothServiceInfo_UnregisterService(QtObjectPtr ptr){ + return static_cast(ptr)->unregisterService(); +} + +void QBluetoothServiceInfo_DestroyQBluetoothServiceInfo(QtObjectPtr ptr){ + static_cast(ptr)->~QBluetoothServiceInfo(); +} + diff --git a/bluetooth/qbluetoothserviceinfo.go b/bluetooth/qbluetoothserviceinfo.go new file mode 100755 index 00000000..75ee76e4 --- /dev/null +++ b/bluetooth/qbluetoothserviceinfo.go @@ -0,0 +1,194 @@ +package bluetooth + +//#include "qbluetoothserviceinfo.h" +import "C" +import ( + "unsafe" +) + +type QBluetoothServiceInfo struct { + ptr unsafe.Pointer +} + +type QBluetoothServiceInfoITF interface { + QBluetoothServiceInfoPTR() *QBluetoothServiceInfo +} + +func (p *QBluetoothServiceInfo) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QBluetoothServiceInfo) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQBluetoothServiceInfo(ptr QBluetoothServiceInfoITF) unsafe.Pointer { + if ptr != nil { + return ptr.QBluetoothServiceInfoPTR().Pointer() + } + return nil +} + +func QBluetoothServiceInfoFromPointer(ptr unsafe.Pointer) *QBluetoothServiceInfo { + var n = new(QBluetoothServiceInfo) + n.SetPointer(ptr) + return n +} + +func (ptr *QBluetoothServiceInfo) QBluetoothServiceInfoPTR() *QBluetoothServiceInfo { + return ptr +} + +//QBluetoothServiceInfo::AttributeId +type QBluetoothServiceInfo__AttributeId int + +var ( + QBluetoothServiceInfo__ServiceRecordHandle = QBluetoothServiceInfo__AttributeId(0x0000) + QBluetoothServiceInfo__ServiceClassIds = QBluetoothServiceInfo__AttributeId(0x0001) + QBluetoothServiceInfo__ServiceRecordState = QBluetoothServiceInfo__AttributeId(0x0002) + QBluetoothServiceInfo__ServiceId = QBluetoothServiceInfo__AttributeId(0x0003) + QBluetoothServiceInfo__ProtocolDescriptorList = QBluetoothServiceInfo__AttributeId(0x0004) + QBluetoothServiceInfo__BrowseGroupList = QBluetoothServiceInfo__AttributeId(0x0005) + QBluetoothServiceInfo__LanguageBaseAttributeIdList = QBluetoothServiceInfo__AttributeId(0x0006) + QBluetoothServiceInfo__ServiceInfoTimeToLive = QBluetoothServiceInfo__AttributeId(0x0007) + QBluetoothServiceInfo__ServiceAvailability = QBluetoothServiceInfo__AttributeId(0x0008) + QBluetoothServiceInfo__BluetoothProfileDescriptorList = QBluetoothServiceInfo__AttributeId(0x0009) + QBluetoothServiceInfo__DocumentationUrl = QBluetoothServiceInfo__AttributeId(0x000A) + QBluetoothServiceInfo__ClientExecutableUrl = QBluetoothServiceInfo__AttributeId(0x000B) + QBluetoothServiceInfo__IconUrl = QBluetoothServiceInfo__AttributeId(0x000C) + QBluetoothServiceInfo__AdditionalProtocolDescriptorList = QBluetoothServiceInfo__AttributeId(0x000D) + QBluetoothServiceInfo__PrimaryLanguageBase = QBluetoothServiceInfo__AttributeId(0x0100) + QBluetoothServiceInfo__ServiceName = QBluetoothServiceInfo__AttributeId(C.QBluetoothServiceInfo_ServiceName_Type()) + QBluetoothServiceInfo__ServiceDescription = QBluetoothServiceInfo__AttributeId(C.QBluetoothServiceInfo_ServiceDescription_Type()) + QBluetoothServiceInfo__ServiceProvider = QBluetoothServiceInfo__AttributeId(C.QBluetoothServiceInfo_ServiceProvider_Type()) +) + +//QBluetoothServiceInfo::Protocol +type QBluetoothServiceInfo__Protocol int + +var ( + QBluetoothServiceInfo__UnknownProtocol = QBluetoothServiceInfo__Protocol(0) + QBluetoothServiceInfo__L2capProtocol = QBluetoothServiceInfo__Protocol(1) + QBluetoothServiceInfo__RfcommProtocol = QBluetoothServiceInfo__Protocol(2) +) + +func (ptr *QBluetoothServiceInfo) ServiceDescription() string { + if ptr.Pointer() != nil { + return C.GoString(C.QBluetoothServiceInfo_ServiceDescription(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QBluetoothServiceInfo) ServiceName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QBluetoothServiceInfo_ServiceName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QBluetoothServiceInfo) ServiceProvider() string { + if ptr.Pointer() != nil { + return C.GoString(C.QBluetoothServiceInfo_ServiceProvider(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QBluetoothServiceInfo) SetServiceDescription(description string) { + if ptr.Pointer() != nil { + C.QBluetoothServiceInfo_SetServiceDescription(C.QtObjectPtr(ptr.Pointer()), C.CString(description)) + } +} + +func (ptr *QBluetoothServiceInfo) SetServiceName(name string) { + if ptr.Pointer() != nil { + C.QBluetoothServiceInfo_SetServiceName(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func (ptr *QBluetoothServiceInfo) SetServiceProvider(provider string) { + if ptr.Pointer() != nil { + C.QBluetoothServiceInfo_SetServiceProvider(C.QtObjectPtr(ptr.Pointer()), C.CString(provider)) + } +} + +func (ptr *QBluetoothServiceInfo) SetServiceUuid(uuid QBluetoothUuidITF) { + if ptr.Pointer() != nil { + C.QBluetoothServiceInfo_SetServiceUuid(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQBluetoothUuid(uuid))) + } +} + +func NewQBluetoothServiceInfo() *QBluetoothServiceInfo { + return QBluetoothServiceInfoFromPointer(unsafe.Pointer(C.QBluetoothServiceInfo_NewQBluetoothServiceInfo())) +} + +func NewQBluetoothServiceInfo2(other QBluetoothServiceInfoITF) *QBluetoothServiceInfo { + return QBluetoothServiceInfoFromPointer(unsafe.Pointer(C.QBluetoothServiceInfo_NewQBluetoothServiceInfo2(C.QtObjectPtr(PointerFromQBluetoothServiceInfo(other))))) +} + +func (ptr *QBluetoothServiceInfo) IsComplete() bool { + if ptr.Pointer() != nil { + return C.QBluetoothServiceInfo_IsComplete(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QBluetoothServiceInfo) IsRegistered() bool { + if ptr.Pointer() != nil { + return C.QBluetoothServiceInfo_IsRegistered(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QBluetoothServiceInfo) IsValid() bool { + if ptr.Pointer() != nil { + return C.QBluetoothServiceInfo_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QBluetoothServiceInfo) ProtocolServiceMultiplexer() int { + if ptr.Pointer() != nil { + return int(C.QBluetoothServiceInfo_ProtocolServiceMultiplexer(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QBluetoothServiceInfo) RegisterService(localAdapter QBluetoothAddressITF) bool { + if ptr.Pointer() != nil { + return C.QBluetoothServiceInfo_RegisterService(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQBluetoothAddress(localAdapter))) != 0 + } + return false +} + +func (ptr *QBluetoothServiceInfo) ServerChannel() int { + if ptr.Pointer() != nil { + return int(C.QBluetoothServiceInfo_ServerChannel(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QBluetoothServiceInfo) SetDevice(device QBluetoothDeviceInfoITF) { + if ptr.Pointer() != nil { + C.QBluetoothServiceInfo_SetDevice(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQBluetoothDeviceInfo(device))) + } +} + +func (ptr *QBluetoothServiceInfo) SocketProtocol() QBluetoothServiceInfo__Protocol { + if ptr.Pointer() != nil { + return QBluetoothServiceInfo__Protocol(C.QBluetoothServiceInfo_SocketProtocol(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QBluetoothServiceInfo) UnregisterService() bool { + if ptr.Pointer() != nil { + return C.QBluetoothServiceInfo_UnregisterService(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QBluetoothServiceInfo) DestroyQBluetoothServiceInfo() { + if ptr.Pointer() != nil { + C.QBluetoothServiceInfo_DestroyQBluetoothServiceInfo(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/bluetooth/qbluetoothserviceinfo.h b/bluetooth/qbluetoothserviceinfo.h new file mode 100755 index 00000000..15498eba --- /dev/null +++ b/bluetooth/qbluetoothserviceinfo.h @@ -0,0 +1,31 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QBluetoothServiceInfo_ServiceName_Type(); +int QBluetoothServiceInfo_ServiceDescription_Type(); +int QBluetoothServiceInfo_ServiceProvider_Type(); +char* QBluetoothServiceInfo_ServiceDescription(QtObjectPtr ptr); +char* QBluetoothServiceInfo_ServiceName(QtObjectPtr ptr); +char* QBluetoothServiceInfo_ServiceProvider(QtObjectPtr ptr); +void QBluetoothServiceInfo_SetServiceDescription(QtObjectPtr ptr, char* description); +void QBluetoothServiceInfo_SetServiceName(QtObjectPtr ptr, char* name); +void QBluetoothServiceInfo_SetServiceProvider(QtObjectPtr ptr, char* provider); +void QBluetoothServiceInfo_SetServiceUuid(QtObjectPtr ptr, QtObjectPtr uuid); +QtObjectPtr QBluetoothServiceInfo_NewQBluetoothServiceInfo(); +QtObjectPtr QBluetoothServiceInfo_NewQBluetoothServiceInfo2(QtObjectPtr other); +int QBluetoothServiceInfo_IsComplete(QtObjectPtr ptr); +int QBluetoothServiceInfo_IsRegistered(QtObjectPtr ptr); +int QBluetoothServiceInfo_IsValid(QtObjectPtr ptr); +int QBluetoothServiceInfo_ProtocolServiceMultiplexer(QtObjectPtr ptr); +int QBluetoothServiceInfo_RegisterService(QtObjectPtr ptr, QtObjectPtr localAdapter); +int QBluetoothServiceInfo_ServerChannel(QtObjectPtr ptr); +void QBluetoothServiceInfo_SetDevice(QtObjectPtr ptr, QtObjectPtr device); +int QBluetoothServiceInfo_SocketProtocol(QtObjectPtr ptr); +int QBluetoothServiceInfo_UnregisterService(QtObjectPtr ptr); +void QBluetoothServiceInfo_DestroyQBluetoothServiceInfo(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/bluetooth/qbluetoothsocket.cpp b/bluetooth/qbluetoothsocket.cpp new file mode 100755 index 00000000..f9ff9aa4 --- /dev/null +++ b/bluetooth/qbluetoothsocket.cpp @@ -0,0 +1,112 @@ +#include "qbluetoothsocket.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQBluetoothSocket: public QBluetoothSocket { +public: +void Signal_Connected(){callbackQBluetoothSocketConnected(this->objectName().toUtf8().data());}; +void Signal_Disconnected(){callbackQBluetoothSocketDisconnected(this->objectName().toUtf8().data());}; +void Signal_StateChanged(QBluetoothSocket::SocketState state){callbackQBluetoothSocketStateChanged(this->objectName().toUtf8().data(), state);}; +}; + +void QBluetoothSocket_ConnectConnected(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QBluetoothSocket::connected), static_cast(ptr), static_cast(&MyQBluetoothSocket::Signal_Connected));; +} + +void QBluetoothSocket_DisconnectConnected(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QBluetoothSocket::connected), static_cast(ptr), static_cast(&MyQBluetoothSocket::Signal_Connected));; +} + +void QBluetoothSocket_ConnectDisconnected(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QBluetoothSocket::disconnected), static_cast(ptr), static_cast(&MyQBluetoothSocket::Signal_Disconnected));; +} + +void QBluetoothSocket_DisconnectDisconnected(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QBluetoothSocket::disconnected), static_cast(ptr), static_cast(&MyQBluetoothSocket::Signal_Disconnected));; +} + +void QBluetoothSocket_ConnectStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QBluetoothSocket::stateChanged), static_cast(ptr), static_cast(&MyQBluetoothSocket::Signal_StateChanged));; +} + +void QBluetoothSocket_DisconnectStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QBluetoothSocket::stateChanged), static_cast(ptr), static_cast(&MyQBluetoothSocket::Signal_StateChanged));; +} + +QtObjectPtr QBluetoothSocket_NewQBluetoothSocket(int socketType, QtObjectPtr parent){ + return new QBluetoothSocket(static_cast(socketType), static_cast(parent)); +} + +QtObjectPtr QBluetoothSocket_NewQBluetoothSocket2(QtObjectPtr parent){ + return new QBluetoothSocket(static_cast(parent)); +} + +void QBluetoothSocket_Abort(QtObjectPtr ptr){ + static_cast(ptr)->abort(); +} + +int QBluetoothSocket_CanReadLine(QtObjectPtr ptr){ + return static_cast(ptr)->canReadLine(); +} + +void QBluetoothSocket_Close(QtObjectPtr ptr){ + static_cast(ptr)->close(); +} + +void QBluetoothSocket_ConnectToService2(QtObjectPtr ptr, QtObjectPtr address, QtObjectPtr uuid, int openMode){ + static_cast(ptr)->connectToService(*static_cast(address), *static_cast(uuid), static_cast(openMode)); +} + +void QBluetoothSocket_ConnectToService(QtObjectPtr ptr, QtObjectPtr service, int openMode){ + static_cast(ptr)->connectToService(*static_cast(service), static_cast(openMode)); +} + +void QBluetoothSocket_DisconnectFromService(QtObjectPtr ptr){ + static_cast(ptr)->disconnectFromService(); +} + +int QBluetoothSocket_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +char* QBluetoothSocket_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +int QBluetoothSocket_IsSequential(QtObjectPtr ptr){ + return static_cast(ptr)->isSequential(); +} + +char* QBluetoothSocket_LocalName(QtObjectPtr ptr){ + return static_cast(ptr)->localName().toUtf8().data(); +} + +char* QBluetoothSocket_PeerName(QtObjectPtr ptr){ + return static_cast(ptr)->peerName().toUtf8().data(); +} + +int QBluetoothSocket_SetSocketDescriptor(QtObjectPtr ptr, int socketDescriptor, int socketType, int socketState, int openMode){ + return static_cast(ptr)->setSocketDescriptor(socketDescriptor, static_cast(socketType), static_cast(socketState), static_cast(openMode)); +} + +int QBluetoothSocket_SocketDescriptor(QtObjectPtr ptr){ + return static_cast(ptr)->socketDescriptor(); +} + +int QBluetoothSocket_SocketType(QtObjectPtr ptr){ + return static_cast(ptr)->socketType(); +} + +void QBluetoothSocket_DestroyQBluetoothSocket(QtObjectPtr ptr){ + static_cast(ptr)->~QBluetoothSocket(); +} + diff --git a/bluetooth/qbluetoothsocket.go b/bluetooth/qbluetoothsocket.go new file mode 100755 index 00000000..e20ddaa0 --- /dev/null +++ b/bluetooth/qbluetoothsocket.go @@ -0,0 +1,230 @@ +package bluetooth + +//#include "qbluetoothsocket.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/network" + "unsafe" +) + +type QBluetoothSocket struct { + core.QIODevice +} + +type QBluetoothSocketITF interface { + core.QIODeviceITF + QBluetoothSocketPTR() *QBluetoothSocket +} + +func PointerFromQBluetoothSocket(ptr QBluetoothSocketITF) unsafe.Pointer { + if ptr != nil { + return ptr.QBluetoothSocketPTR().Pointer() + } + return nil +} + +func QBluetoothSocketFromPointer(ptr unsafe.Pointer) *QBluetoothSocket { + var n = new(QBluetoothSocket) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QBluetoothSocket_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QBluetoothSocket) QBluetoothSocketPTR() *QBluetoothSocket { + return ptr +} + +//QBluetoothSocket::SocketError +type QBluetoothSocket__SocketError int + +var ( + QBluetoothSocket__NoSocketError = QBluetoothSocket__SocketError(-2) + QBluetoothSocket__UnknownSocketError = QBluetoothSocket__SocketError(network.QAbstractSocket__UnknownSocketError) + QBluetoothSocket__HostNotFoundError = QBluetoothSocket__SocketError(network.QAbstractSocket__HostNotFoundError) + QBluetoothSocket__ServiceNotFoundError = QBluetoothSocket__SocketError(network.QAbstractSocket__SocketAddressNotAvailableError) + QBluetoothSocket__NetworkError = QBluetoothSocket__SocketError(network.QAbstractSocket__NetworkError) + QBluetoothSocket__UnsupportedProtocolError = QBluetoothSocket__SocketError(8) + QBluetoothSocket__OperationError = QBluetoothSocket__SocketError(network.QAbstractSocket__OperationError) +) + +//QBluetoothSocket::SocketState +type QBluetoothSocket__SocketState int + +var ( + QBluetoothSocket__UnconnectedState = QBluetoothSocket__SocketState(network.QAbstractSocket__UnconnectedState) + QBluetoothSocket__ServiceLookupState = QBluetoothSocket__SocketState(network.QAbstractSocket__HostLookupState) + QBluetoothSocket__ConnectingState = QBluetoothSocket__SocketState(network.QAbstractSocket__ConnectingState) + QBluetoothSocket__ConnectedState = QBluetoothSocket__SocketState(network.QAbstractSocket__ConnectedState) + QBluetoothSocket__BoundState = QBluetoothSocket__SocketState(network.QAbstractSocket__BoundState) + QBluetoothSocket__ClosingState = QBluetoothSocket__SocketState(network.QAbstractSocket__ClosingState) + QBluetoothSocket__ListeningState = QBluetoothSocket__SocketState(network.QAbstractSocket__ListeningState) +) + +func (ptr *QBluetoothSocket) ConnectConnected(f func()) { + if ptr.Pointer() != nil { + C.QBluetoothSocket_ConnectConnected(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "connected", f) + } +} + +func (ptr *QBluetoothSocket) DisconnectConnected() { + if ptr.Pointer() != nil { + C.QBluetoothSocket_DisconnectConnected(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "connected") + } +} + +//export callbackQBluetoothSocketConnected +func callbackQBluetoothSocketConnected(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "connected").(func())() +} + +func (ptr *QBluetoothSocket) ConnectDisconnected(f func()) { + if ptr.Pointer() != nil { + C.QBluetoothSocket_ConnectDisconnected(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "disconnected", f) + } +} + +func (ptr *QBluetoothSocket) DisconnectDisconnected() { + if ptr.Pointer() != nil { + C.QBluetoothSocket_DisconnectDisconnected(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "disconnected") + } +} + +//export callbackQBluetoothSocketDisconnected +func callbackQBluetoothSocketDisconnected(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "disconnected").(func())() +} + +func (ptr *QBluetoothSocket) ConnectStateChanged(f func(state QBluetoothSocket__SocketState)) { + if ptr.Pointer() != nil { + C.QBluetoothSocket_ConnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stateChanged", f) + } +} + +func (ptr *QBluetoothSocket) DisconnectStateChanged() { + if ptr.Pointer() != nil { + C.QBluetoothSocket_DisconnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stateChanged") + } +} + +//export callbackQBluetoothSocketStateChanged +func callbackQBluetoothSocketStateChanged(ptrName *C.char, state C.int) { + qt.GetSignal(C.GoString(ptrName), "stateChanged").(func(QBluetoothSocket__SocketState))(QBluetoothSocket__SocketState(state)) +} + +func NewQBluetoothSocket(socketType QBluetoothServiceInfo__Protocol, parent core.QObjectITF) *QBluetoothSocket { + return QBluetoothSocketFromPointer(unsafe.Pointer(C.QBluetoothSocket_NewQBluetoothSocket(C.int(socketType), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQBluetoothSocket2(parent core.QObjectITF) *QBluetoothSocket { + return QBluetoothSocketFromPointer(unsafe.Pointer(C.QBluetoothSocket_NewQBluetoothSocket2(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QBluetoothSocket) Abort() { + if ptr.Pointer() != nil { + C.QBluetoothSocket_Abort(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QBluetoothSocket) CanReadLine() bool { + if ptr.Pointer() != nil { + return C.QBluetoothSocket_CanReadLine(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QBluetoothSocket) Close() { + if ptr.Pointer() != nil { + C.QBluetoothSocket_Close(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QBluetoothSocket) ConnectToService2(address QBluetoothAddressITF, uuid QBluetoothUuidITF, openMode core.QIODevice__OpenModeFlag) { + if ptr.Pointer() != nil { + C.QBluetoothSocket_ConnectToService2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQBluetoothAddress(address)), C.QtObjectPtr(PointerFromQBluetoothUuid(uuid)), C.int(openMode)) + } +} + +func (ptr *QBluetoothSocket) ConnectToService(service QBluetoothServiceInfoITF, openMode core.QIODevice__OpenModeFlag) { + if ptr.Pointer() != nil { + C.QBluetoothSocket_ConnectToService(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQBluetoothServiceInfo(service)), C.int(openMode)) + } +} + +func (ptr *QBluetoothSocket) DisconnectFromService() { + if ptr.Pointer() != nil { + C.QBluetoothSocket_DisconnectFromService(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QBluetoothSocket) Error() QBluetoothSocket__SocketError { + if ptr.Pointer() != nil { + return QBluetoothSocket__SocketError(C.QBluetoothSocket_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QBluetoothSocket) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QBluetoothSocket_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QBluetoothSocket) IsSequential() bool { + if ptr.Pointer() != nil { + return C.QBluetoothSocket_IsSequential(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QBluetoothSocket) LocalName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QBluetoothSocket_LocalName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QBluetoothSocket) PeerName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QBluetoothSocket_PeerName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QBluetoothSocket) SetSocketDescriptor(socketDescriptor int, socketType QBluetoothServiceInfo__Protocol, socketState QBluetoothSocket__SocketState, openMode core.QIODevice__OpenModeFlag) bool { + if ptr.Pointer() != nil { + return C.QBluetoothSocket_SetSocketDescriptor(C.QtObjectPtr(ptr.Pointer()), C.int(socketDescriptor), C.int(socketType), C.int(socketState), C.int(openMode)) != 0 + } + return false +} + +func (ptr *QBluetoothSocket) SocketDescriptor() int { + if ptr.Pointer() != nil { + return int(C.QBluetoothSocket_SocketDescriptor(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QBluetoothSocket) SocketType() QBluetoothServiceInfo__Protocol { + if ptr.Pointer() != nil { + return QBluetoothServiceInfo__Protocol(C.QBluetoothSocket_SocketType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QBluetoothSocket) DestroyQBluetoothSocket() { + if ptr.Pointer() != nil { + C.QBluetoothSocket_DestroyQBluetoothSocket(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/bluetooth/qbluetoothsocket.h b/bluetooth/qbluetoothsocket.h new file mode 100755 index 00000000..922b0250 --- /dev/null +++ b/bluetooth/qbluetoothsocket.h @@ -0,0 +1,32 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QBluetoothSocket_ConnectConnected(QtObjectPtr ptr); +void QBluetoothSocket_DisconnectConnected(QtObjectPtr ptr); +void QBluetoothSocket_ConnectDisconnected(QtObjectPtr ptr); +void QBluetoothSocket_DisconnectDisconnected(QtObjectPtr ptr); +void QBluetoothSocket_ConnectStateChanged(QtObjectPtr ptr); +void QBluetoothSocket_DisconnectStateChanged(QtObjectPtr ptr); +QtObjectPtr QBluetoothSocket_NewQBluetoothSocket(int socketType, QtObjectPtr parent); +QtObjectPtr QBluetoothSocket_NewQBluetoothSocket2(QtObjectPtr parent); +void QBluetoothSocket_Abort(QtObjectPtr ptr); +int QBluetoothSocket_CanReadLine(QtObjectPtr ptr); +void QBluetoothSocket_Close(QtObjectPtr ptr); +void QBluetoothSocket_ConnectToService2(QtObjectPtr ptr, QtObjectPtr address, QtObjectPtr uuid, int openMode); +void QBluetoothSocket_ConnectToService(QtObjectPtr ptr, QtObjectPtr service, int openMode); +void QBluetoothSocket_DisconnectFromService(QtObjectPtr ptr); +int QBluetoothSocket_Error(QtObjectPtr ptr); +char* QBluetoothSocket_ErrorString(QtObjectPtr ptr); +int QBluetoothSocket_IsSequential(QtObjectPtr ptr); +char* QBluetoothSocket_LocalName(QtObjectPtr ptr); +char* QBluetoothSocket_PeerName(QtObjectPtr ptr); +int QBluetoothSocket_SetSocketDescriptor(QtObjectPtr ptr, int socketDescriptor, int socketType, int socketState, int openMode); +int QBluetoothSocket_SocketDescriptor(QtObjectPtr ptr); +int QBluetoothSocket_SocketType(QtObjectPtr ptr); +void QBluetoothSocket_DestroyQBluetoothSocket(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/bluetooth/qbluetoothtransfermanager.cpp b/bluetooth/qbluetoothtransfermanager.cpp new file mode 100755 index 00000000..de491abd --- /dev/null +++ b/bluetooth/qbluetoothtransfermanager.cpp @@ -0,0 +1,37 @@ +#include "qbluetoothtransfermanager.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQBluetoothTransferManager: public QBluetoothTransferManager { +public: +void Signal_Finished(QBluetoothTransferReply * reply){callbackQBluetoothTransferManagerFinished(this->objectName().toUtf8().data(), reply);}; +}; + +QtObjectPtr QBluetoothTransferManager_Put(QtObjectPtr ptr, QtObjectPtr request, QtObjectPtr data){ + return static_cast(ptr)->put(*static_cast(request), static_cast(data)); +} + +QtObjectPtr QBluetoothTransferManager_NewQBluetoothTransferManager(QtObjectPtr parent){ + return new QBluetoothTransferManager(static_cast(parent)); +} + +void QBluetoothTransferManager_ConnectFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QBluetoothTransferManager::finished), static_cast(ptr), static_cast(&MyQBluetoothTransferManager::Signal_Finished));; +} + +void QBluetoothTransferManager_DisconnectFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QBluetoothTransferManager::finished), static_cast(ptr), static_cast(&MyQBluetoothTransferManager::Signal_Finished));; +} + +void QBluetoothTransferManager_DestroyQBluetoothTransferManager(QtObjectPtr ptr){ + static_cast(ptr)->~QBluetoothTransferManager(); +} + diff --git a/bluetooth/qbluetoothtransfermanager.go b/bluetooth/qbluetoothtransfermanager.go new file mode 100755 index 00000000..2936603d --- /dev/null +++ b/bluetooth/qbluetoothtransfermanager.go @@ -0,0 +1,75 @@ +package bluetooth + +//#include "qbluetoothtransfermanager.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QBluetoothTransferManager struct { + core.QObject +} + +type QBluetoothTransferManagerITF interface { + core.QObjectITF + QBluetoothTransferManagerPTR() *QBluetoothTransferManager +} + +func PointerFromQBluetoothTransferManager(ptr QBluetoothTransferManagerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QBluetoothTransferManagerPTR().Pointer() + } + return nil +} + +func QBluetoothTransferManagerFromPointer(ptr unsafe.Pointer) *QBluetoothTransferManager { + var n = new(QBluetoothTransferManager) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QBluetoothTransferManager_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QBluetoothTransferManager) QBluetoothTransferManagerPTR() *QBluetoothTransferManager { + return ptr +} + +func (ptr *QBluetoothTransferManager) Put(request QBluetoothTransferRequestITF, data core.QIODeviceITF) *QBluetoothTransferReply { + if ptr.Pointer() != nil { + return QBluetoothTransferReplyFromPointer(unsafe.Pointer(C.QBluetoothTransferManager_Put(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQBluetoothTransferRequest(request)), C.QtObjectPtr(core.PointerFromQIODevice(data))))) + } + return nil +} + +func NewQBluetoothTransferManager(parent core.QObjectITF) *QBluetoothTransferManager { + return QBluetoothTransferManagerFromPointer(unsafe.Pointer(C.QBluetoothTransferManager_NewQBluetoothTransferManager(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QBluetoothTransferManager) ConnectFinished(f func(reply QBluetoothTransferReplyITF)) { + if ptr.Pointer() != nil { + C.QBluetoothTransferManager_ConnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "finished", f) + } +} + +func (ptr *QBluetoothTransferManager) DisconnectFinished() { + if ptr.Pointer() != nil { + C.QBluetoothTransferManager_DisconnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "finished") + } +} + +//export callbackQBluetoothTransferManagerFinished +func callbackQBluetoothTransferManagerFinished(ptrName *C.char, reply unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "finished").(func(*QBluetoothTransferReply))(QBluetoothTransferReplyFromPointer(reply)) +} + +func (ptr *QBluetoothTransferManager) DestroyQBluetoothTransferManager() { + if ptr.Pointer() != nil { + C.QBluetoothTransferManager_DestroyQBluetoothTransferManager(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/bluetooth/qbluetoothtransfermanager.h b/bluetooth/qbluetoothtransfermanager.h new file mode 100755 index 00000000..bc544222 --- /dev/null +++ b/bluetooth/qbluetoothtransfermanager.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QBluetoothTransferManager_Put(QtObjectPtr ptr, QtObjectPtr request, QtObjectPtr data); +QtObjectPtr QBluetoothTransferManager_NewQBluetoothTransferManager(QtObjectPtr parent); +void QBluetoothTransferManager_ConnectFinished(QtObjectPtr ptr); +void QBluetoothTransferManager_DisconnectFinished(QtObjectPtr ptr); +void QBluetoothTransferManager_DestroyQBluetoothTransferManager(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/bluetooth/qbluetoothtransferreply.cpp b/bluetooth/qbluetoothtransferreply.cpp new file mode 100755 index 00000000..db214316 --- /dev/null +++ b/bluetooth/qbluetoothtransferreply.cpp @@ -0,0 +1,51 @@ +#include "qbluetoothtransferreply.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQBluetoothTransferReply: public QBluetoothTransferReply { +public: +void Signal_Finished(QBluetoothTransferReply * reply){callbackQBluetoothTransferReplyFinished(this->objectName().toUtf8().data(), reply);}; +}; + +void QBluetoothTransferReply_Abort(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "abort"); +} + +int QBluetoothTransferReply_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +char* QBluetoothTransferReply_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +void QBluetoothTransferReply_ConnectFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QBluetoothTransferReply::finished), static_cast(ptr), static_cast(&MyQBluetoothTransferReply::Signal_Finished));; +} + +void QBluetoothTransferReply_DisconnectFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QBluetoothTransferReply::finished), static_cast(ptr), static_cast(&MyQBluetoothTransferReply::Signal_Finished));; +} + +int QBluetoothTransferReply_IsFinished(QtObjectPtr ptr){ + return static_cast(ptr)->isFinished(); +} + +int QBluetoothTransferReply_IsRunning(QtObjectPtr ptr){ + return static_cast(ptr)->isRunning(); +} + +QtObjectPtr QBluetoothTransferReply_Manager(QtObjectPtr ptr){ + return static_cast(ptr)->manager(); +} + +void QBluetoothTransferReply_DestroyQBluetoothTransferReply(QtObjectPtr ptr){ + static_cast(ptr)->~QBluetoothTransferReply(); +} + diff --git a/bluetooth/qbluetoothtransferreply.go b/bluetooth/qbluetoothtransferreply.go new file mode 100755 index 00000000..0a88d9c9 --- /dev/null +++ b/bluetooth/qbluetoothtransferreply.go @@ -0,0 +1,119 @@ +package bluetooth + +//#include "qbluetoothtransferreply.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QBluetoothTransferReply struct { + core.QObject +} + +type QBluetoothTransferReplyITF interface { + core.QObjectITF + QBluetoothTransferReplyPTR() *QBluetoothTransferReply +} + +func PointerFromQBluetoothTransferReply(ptr QBluetoothTransferReplyITF) unsafe.Pointer { + if ptr != nil { + return ptr.QBluetoothTransferReplyPTR().Pointer() + } + return nil +} + +func QBluetoothTransferReplyFromPointer(ptr unsafe.Pointer) *QBluetoothTransferReply { + var n = new(QBluetoothTransferReply) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QBluetoothTransferReply_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QBluetoothTransferReply) QBluetoothTransferReplyPTR() *QBluetoothTransferReply { + return ptr +} + +//QBluetoothTransferReply::TransferError +type QBluetoothTransferReply__TransferError int + +var ( + QBluetoothTransferReply__NoError = QBluetoothTransferReply__TransferError(0) + QBluetoothTransferReply__UnknownError = QBluetoothTransferReply__TransferError(1) + QBluetoothTransferReply__FileNotFoundError = QBluetoothTransferReply__TransferError(2) + QBluetoothTransferReply__HostNotFoundError = QBluetoothTransferReply__TransferError(3) + QBluetoothTransferReply__UserCanceledTransferError = QBluetoothTransferReply__TransferError(4) + QBluetoothTransferReply__IODeviceNotReadableError = QBluetoothTransferReply__TransferError(5) + QBluetoothTransferReply__ResourceBusyError = QBluetoothTransferReply__TransferError(6) + QBluetoothTransferReply__SessionError = QBluetoothTransferReply__TransferError(7) +) + +func (ptr *QBluetoothTransferReply) Abort() { + if ptr.Pointer() != nil { + C.QBluetoothTransferReply_Abort(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QBluetoothTransferReply) Error() QBluetoothTransferReply__TransferError { + if ptr.Pointer() != nil { + return QBluetoothTransferReply__TransferError(C.QBluetoothTransferReply_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QBluetoothTransferReply) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QBluetoothTransferReply_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QBluetoothTransferReply) ConnectFinished(f func(reply QBluetoothTransferReplyITF)) { + if ptr.Pointer() != nil { + C.QBluetoothTransferReply_ConnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "finished", f) + } +} + +func (ptr *QBluetoothTransferReply) DisconnectFinished() { + if ptr.Pointer() != nil { + C.QBluetoothTransferReply_DisconnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "finished") + } +} + +//export callbackQBluetoothTransferReplyFinished +func callbackQBluetoothTransferReplyFinished(ptrName *C.char, reply unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "finished").(func(*QBluetoothTransferReply))(QBluetoothTransferReplyFromPointer(reply)) +} + +func (ptr *QBluetoothTransferReply) IsFinished() bool { + if ptr.Pointer() != nil { + return C.QBluetoothTransferReply_IsFinished(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QBluetoothTransferReply) IsRunning() bool { + if ptr.Pointer() != nil { + return C.QBluetoothTransferReply_IsRunning(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QBluetoothTransferReply) Manager() *QBluetoothTransferManager { + if ptr.Pointer() != nil { + return QBluetoothTransferManagerFromPointer(unsafe.Pointer(C.QBluetoothTransferReply_Manager(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QBluetoothTransferReply) DestroyQBluetoothTransferReply() { + if ptr.Pointer() != nil { + C.QBluetoothTransferReply_DestroyQBluetoothTransferReply(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/bluetooth/qbluetoothtransferreply.h b/bluetooth/qbluetoothtransferreply.h new file mode 100755 index 00000000..da5be450 --- /dev/null +++ b/bluetooth/qbluetoothtransferreply.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QBluetoothTransferReply_Abort(QtObjectPtr ptr); +int QBluetoothTransferReply_Error(QtObjectPtr ptr); +char* QBluetoothTransferReply_ErrorString(QtObjectPtr ptr); +void QBluetoothTransferReply_ConnectFinished(QtObjectPtr ptr); +void QBluetoothTransferReply_DisconnectFinished(QtObjectPtr ptr); +int QBluetoothTransferReply_IsFinished(QtObjectPtr ptr); +int QBluetoothTransferReply_IsRunning(QtObjectPtr ptr); +QtObjectPtr QBluetoothTransferReply_Manager(QtObjectPtr ptr); +void QBluetoothTransferReply_DestroyQBluetoothTransferReply(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/bluetooth/qbluetoothtransferrequest.cpp b/bluetooth/qbluetoothtransferrequest.cpp new file mode 100755 index 00000000..f320cf00 --- /dev/null +++ b/bluetooth/qbluetoothtransferrequest.cpp @@ -0,0 +1,33 @@ +#include "qbluetoothtransferrequest.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQBluetoothTransferRequest: public QBluetoothTransferRequest { +public: +}; + +QtObjectPtr QBluetoothTransferRequest_NewQBluetoothTransferRequest(QtObjectPtr address){ + return new QBluetoothTransferRequest(*static_cast(address)); +} + +QtObjectPtr QBluetoothTransferRequest_NewQBluetoothTransferRequest2(QtObjectPtr other){ + return new QBluetoothTransferRequest(*static_cast(other)); +} + +char* QBluetoothTransferRequest_Attribute(QtObjectPtr ptr, int code, char* defaultValue){ + return static_cast(ptr)->attribute(static_cast(code), QVariant(defaultValue)).toString().toUtf8().data(); +} + +void QBluetoothTransferRequest_SetAttribute(QtObjectPtr ptr, int code, char* value){ + static_cast(ptr)->setAttribute(static_cast(code), QVariant(value)); +} + +void QBluetoothTransferRequest_DestroyQBluetoothTransferRequest(QtObjectPtr ptr){ + static_cast(ptr)->~QBluetoothTransferRequest(); +} + diff --git a/bluetooth/qbluetoothtransferrequest.go b/bluetooth/qbluetoothtransferrequest.go new file mode 100755 index 00000000..8117e857 --- /dev/null +++ b/bluetooth/qbluetoothtransferrequest.go @@ -0,0 +1,78 @@ +package bluetooth + +//#include "qbluetoothtransferrequest.h" +import "C" +import ( + "unsafe" +) + +type QBluetoothTransferRequest struct { + ptr unsafe.Pointer +} + +type QBluetoothTransferRequestITF interface { + QBluetoothTransferRequestPTR() *QBluetoothTransferRequest +} + +func (p *QBluetoothTransferRequest) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QBluetoothTransferRequest) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQBluetoothTransferRequest(ptr QBluetoothTransferRequestITF) unsafe.Pointer { + if ptr != nil { + return ptr.QBluetoothTransferRequestPTR().Pointer() + } + return nil +} + +func QBluetoothTransferRequestFromPointer(ptr unsafe.Pointer) *QBluetoothTransferRequest { + var n = new(QBluetoothTransferRequest) + n.SetPointer(ptr) + return n +} + +func (ptr *QBluetoothTransferRequest) QBluetoothTransferRequestPTR() *QBluetoothTransferRequest { + return ptr +} + +//QBluetoothTransferRequest::Attribute +type QBluetoothTransferRequest__Attribute int + +var ( + QBluetoothTransferRequest__DescriptionAttribute = QBluetoothTransferRequest__Attribute(0) + QBluetoothTransferRequest__TimeAttribute = QBluetoothTransferRequest__Attribute(1) + QBluetoothTransferRequest__TypeAttribute = QBluetoothTransferRequest__Attribute(2) + QBluetoothTransferRequest__LengthAttribute = QBluetoothTransferRequest__Attribute(3) + QBluetoothTransferRequest__NameAttribute = QBluetoothTransferRequest__Attribute(4) +) + +func NewQBluetoothTransferRequest(address QBluetoothAddressITF) *QBluetoothTransferRequest { + return QBluetoothTransferRequestFromPointer(unsafe.Pointer(C.QBluetoothTransferRequest_NewQBluetoothTransferRequest(C.QtObjectPtr(PointerFromQBluetoothAddress(address))))) +} + +func NewQBluetoothTransferRequest2(other QBluetoothTransferRequestITF) *QBluetoothTransferRequest { + return QBluetoothTransferRequestFromPointer(unsafe.Pointer(C.QBluetoothTransferRequest_NewQBluetoothTransferRequest2(C.QtObjectPtr(PointerFromQBluetoothTransferRequest(other))))) +} + +func (ptr *QBluetoothTransferRequest) Attribute(code QBluetoothTransferRequest__Attribute, defaultValue string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QBluetoothTransferRequest_Attribute(C.QtObjectPtr(ptr.Pointer()), C.int(code), C.CString(defaultValue))) + } + return "" +} + +func (ptr *QBluetoothTransferRequest) SetAttribute(code QBluetoothTransferRequest__Attribute, value string) { + if ptr.Pointer() != nil { + C.QBluetoothTransferRequest_SetAttribute(C.QtObjectPtr(ptr.Pointer()), C.int(code), C.CString(value)) + } +} + +func (ptr *QBluetoothTransferRequest) DestroyQBluetoothTransferRequest() { + if ptr.Pointer() != nil { + C.QBluetoothTransferRequest_DestroyQBluetoothTransferRequest(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/bluetooth/qbluetoothtransferrequest.h b/bluetooth/qbluetoothtransferrequest.h new file mode 100755 index 00000000..fd39833a --- /dev/null +++ b/bluetooth/qbluetoothtransferrequest.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QBluetoothTransferRequest_NewQBluetoothTransferRequest(QtObjectPtr address); +QtObjectPtr QBluetoothTransferRequest_NewQBluetoothTransferRequest2(QtObjectPtr other); +char* QBluetoothTransferRequest_Attribute(QtObjectPtr ptr, int code, char* defaultValue); +void QBluetoothTransferRequest_SetAttribute(QtObjectPtr ptr, int code, char* value); +void QBluetoothTransferRequest_DestroyQBluetoothTransferRequest(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/bluetooth/qbluetoothuuid.cpp b/bluetooth/qbluetoothuuid.cpp new file mode 100755 index 00000000..40a47f7e --- /dev/null +++ b/bluetooth/qbluetoothuuid.cpp @@ -0,0 +1,69 @@ +#include "qbluetoothuuid.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQBluetoothUuid: public QBluetoothUuid { +public: +}; + +QtObjectPtr QBluetoothUuid_NewQBluetoothUuid(){ + return new QBluetoothUuid(); +} + +QtObjectPtr QBluetoothUuid_NewQBluetoothUuid4(int uuid){ + return new QBluetoothUuid(static_cast(uuid)); +} + +QtObjectPtr QBluetoothUuid_NewQBluetoothUuid5(int uuid){ + return new QBluetoothUuid(static_cast(uuid)); +} + +QtObjectPtr QBluetoothUuid_NewQBluetoothUuid2(int uuid){ + return new QBluetoothUuid(static_cast(uuid)); +} + +QtObjectPtr QBluetoothUuid_NewQBluetoothUuid3(int uuid){ + return new QBluetoothUuid(static_cast(uuid)); +} + +QtObjectPtr QBluetoothUuid_NewQBluetoothUuid10(QtObjectPtr uuid){ + return new QBluetoothUuid(*static_cast(uuid)); +} + +QtObjectPtr QBluetoothUuid_NewQBluetoothUuid9(char* uuid){ + return new QBluetoothUuid(QString(uuid)); +} + +QtObjectPtr QBluetoothUuid_NewQBluetoothUuid11(QtObjectPtr uuid){ + return new QBluetoothUuid(*static_cast(uuid)); +} + +char* QBluetoothUuid_QBluetoothUuid_CharacteristicToString(int uuid){ + return QBluetoothUuid::characteristicToString(static_cast(uuid)).toUtf8().data(); +} + +char* QBluetoothUuid_QBluetoothUuid_DescriptorToString(int uuid){ + return QBluetoothUuid::descriptorToString(static_cast(uuid)).toUtf8().data(); +} + +int QBluetoothUuid_MinimumSize(QtObjectPtr ptr){ + return static_cast(ptr)->minimumSize(); +} + +char* QBluetoothUuid_QBluetoothUuid_ProtocolToString(int uuid){ + return QBluetoothUuid::protocolToString(static_cast(uuid)).toUtf8().data(); +} + +char* QBluetoothUuid_QBluetoothUuid_ServiceClassToString(int uuid){ + return QBluetoothUuid::serviceClassToString(static_cast(uuid)).toUtf8().data(); +} + +void QBluetoothUuid_DestroyQBluetoothUuid(QtObjectPtr ptr){ + static_cast(ptr)->~QBluetoothUuid(); +} + diff --git a/bluetooth/qbluetoothuuid.go b/bluetooth/qbluetoothuuid.go new file mode 100755 index 00000000..a63a7a12 --- /dev/null +++ b/bluetooth/qbluetoothuuid.go @@ -0,0 +1,385 @@ +package bluetooth + +//#include "qbluetoothuuid.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QBluetoothUuid struct { + core.QUuid +} + +type QBluetoothUuidITF interface { + core.QUuidITF + QBluetoothUuidPTR() *QBluetoothUuid +} + +func PointerFromQBluetoothUuid(ptr QBluetoothUuidITF) unsafe.Pointer { + if ptr != nil { + return ptr.QBluetoothUuidPTR().Pointer() + } + return nil +} + +func QBluetoothUuidFromPointer(ptr unsafe.Pointer) *QBluetoothUuid { + var n = new(QBluetoothUuid) + n.SetPointer(ptr) + return n +} + +func (ptr *QBluetoothUuid) QBluetoothUuidPTR() *QBluetoothUuid { + return ptr +} + +//QBluetoothUuid::CharacteristicType +type QBluetoothUuid__CharacteristicType int + +var ( + QBluetoothUuid__DeviceName = QBluetoothUuid__CharacteristicType(0x2a00) + QBluetoothUuid__Appearance = QBluetoothUuid__CharacteristicType(0x2a01) + QBluetoothUuid__PeripheralPrivacyFlag = QBluetoothUuid__CharacteristicType(0x2a02) + QBluetoothUuid__ReconnectionAddress = QBluetoothUuid__CharacteristicType(0x2a03) + QBluetoothUuid__PeripheralPreferredConnectionParameters = QBluetoothUuid__CharacteristicType(0x2a04) + QBluetoothUuid__ServiceChanged = QBluetoothUuid__CharacteristicType(0x2a05) + QBluetoothUuid__AlertLevel = QBluetoothUuid__CharacteristicType(0x2a06) + QBluetoothUuid__TxPowerLevel = QBluetoothUuid__CharacteristicType(0x2a07) + QBluetoothUuid__DateTime = QBluetoothUuid__CharacteristicType(0x2a08) + QBluetoothUuid__DayOfWeek = QBluetoothUuid__CharacteristicType(0x2a09) + QBluetoothUuid__DayDateTime = QBluetoothUuid__CharacteristicType(0x2a0a) + QBluetoothUuid__ExactTime256 = QBluetoothUuid__CharacteristicType(0x2a0c) + QBluetoothUuid__DSTOffset = QBluetoothUuid__CharacteristicType(0x2a0d) + QBluetoothUuid__TimeZone = QBluetoothUuid__CharacteristicType(0x2a0e) + QBluetoothUuid__LocalTimeInformation = QBluetoothUuid__CharacteristicType(0x2a0f) + QBluetoothUuid__TimeWithDST = QBluetoothUuid__CharacteristicType(0x2a11) + QBluetoothUuid__TimeAccuracy = QBluetoothUuid__CharacteristicType(0x2a12) + QBluetoothUuid__TimeSource = QBluetoothUuid__CharacteristicType(0x2a13) + QBluetoothUuid__ReferenceTimeInformation = QBluetoothUuid__CharacteristicType(0x2a14) + QBluetoothUuid__TimeUpdateControlPoint = QBluetoothUuid__CharacteristicType(0x2a16) + QBluetoothUuid__TimeUpdateState = QBluetoothUuid__CharacteristicType(0x2a17) + QBluetoothUuid__GlucoseMeasurement = QBluetoothUuid__CharacteristicType(0x2a18) + QBluetoothUuid__BatteryLevel = QBluetoothUuid__CharacteristicType(0x2a19) + QBluetoothUuid__TemperatureMeasurement = QBluetoothUuid__CharacteristicType(0x2a1c) + QBluetoothUuid__TemperatureType = QBluetoothUuid__CharacteristicType(0x2a1d) + QBluetoothUuid__IntermediateTemperature = QBluetoothUuid__CharacteristicType(0x2a1e) + QBluetoothUuid__MeasurementInterval = QBluetoothUuid__CharacteristicType(0x2a21) + QBluetoothUuid__BootKeyboardInputReport = QBluetoothUuid__CharacteristicType(0x2a22) + QBluetoothUuid__SystemID = QBluetoothUuid__CharacteristicType(0x2a23) + QBluetoothUuid__ModelNumberString = QBluetoothUuid__CharacteristicType(0x2a24) + QBluetoothUuid__SerialNumberString = QBluetoothUuid__CharacteristicType(0x2a25) + QBluetoothUuid__FirmwareRevisionString = QBluetoothUuid__CharacteristicType(0x2a26) + QBluetoothUuid__HardwareRevisionString = QBluetoothUuid__CharacteristicType(0x2a27) + QBluetoothUuid__SoftwareRevisionString = QBluetoothUuid__CharacteristicType(0x2a28) + QBluetoothUuid__ManufacturerNameString = QBluetoothUuid__CharacteristicType(0x2a29) + QBluetoothUuid__IEEE1107320601RegulatoryCertificationDataList = QBluetoothUuid__CharacteristicType(0x2a2a) + QBluetoothUuid__CurrentTime = QBluetoothUuid__CharacteristicType(0x2a2b) + QBluetoothUuid__MagneticDeclination = QBluetoothUuid__CharacteristicType(0x2a2c) + QBluetoothUuid__ScanRefresh = QBluetoothUuid__CharacteristicType(0x2a31) + QBluetoothUuid__BootKeyboardOutputReport = QBluetoothUuid__CharacteristicType(0x2a32) + QBluetoothUuid__BootMouseInputReport = QBluetoothUuid__CharacteristicType(0x2a33) + QBluetoothUuid__GlucoseMeasurementContext = QBluetoothUuid__CharacteristicType(0x2a34) + QBluetoothUuid__BloodPressureMeasurement = QBluetoothUuid__CharacteristicType(0x2a35) + QBluetoothUuid__IntermediateCuffPressure = QBluetoothUuid__CharacteristicType(0x2a36) + QBluetoothUuid__HeartRateMeasurement = QBluetoothUuid__CharacteristicType(0x2a37) + QBluetoothUuid__BodySensorLocation = QBluetoothUuid__CharacteristicType(0x2a38) + QBluetoothUuid__HeartRateControlPoint = QBluetoothUuid__CharacteristicType(0x2a39) + QBluetoothUuid__AlertStatus = QBluetoothUuid__CharacteristicType(0x2a3f) + QBluetoothUuid__RingerControlPoint = QBluetoothUuid__CharacteristicType(0x2a40) + QBluetoothUuid__RingerSetting = QBluetoothUuid__CharacteristicType(0x2a41) + QBluetoothUuid__AlertCategoryIDBitMask = QBluetoothUuid__CharacteristicType(0x2a42) + QBluetoothUuid__AlertCategoryID = QBluetoothUuid__CharacteristicType(0x2a43) + QBluetoothUuid__AlertNotificationControlPoint = QBluetoothUuid__CharacteristicType(0x2a44) + QBluetoothUuid__UnreadAlertStatus = QBluetoothUuid__CharacteristicType(0x2a45) + QBluetoothUuid__NewAlert = QBluetoothUuid__CharacteristicType(0x2a46) + QBluetoothUuid__SupportedNewAlertCategory = QBluetoothUuid__CharacteristicType(0x2a47) + QBluetoothUuid__SupportedUnreadAlertCategory = QBluetoothUuid__CharacteristicType(0x2a48) + QBluetoothUuid__BloodPressureFeature = QBluetoothUuid__CharacteristicType(0x2a49) + QBluetoothUuid__HIDInformation = QBluetoothUuid__CharacteristicType(0x2a4a) + QBluetoothUuid__ReportMap = QBluetoothUuid__CharacteristicType(0x2a4b) + QBluetoothUuid__HIDControlPoint = QBluetoothUuid__CharacteristicType(0x2a4c) + QBluetoothUuid__Report = QBluetoothUuid__CharacteristicType(0x2a4d) + QBluetoothUuid__ProtocolMode = QBluetoothUuid__CharacteristicType(0x2a4e) + QBluetoothUuid__ScanIntervalWindow = QBluetoothUuid__CharacteristicType(0x2a4f) + QBluetoothUuid__PnPID = QBluetoothUuid__CharacteristicType(0x2a50) + QBluetoothUuid__GlucoseFeature = QBluetoothUuid__CharacteristicType(0x2a51) + QBluetoothUuid__RecordAccessControlPoint = QBluetoothUuid__CharacteristicType(0x2a52) + QBluetoothUuid__RSCMeasurement = QBluetoothUuid__CharacteristicType(0x2a53) + QBluetoothUuid__RSCFeature = QBluetoothUuid__CharacteristicType(0x2a54) + QBluetoothUuid__SCControlPoint = QBluetoothUuid__CharacteristicType(0x2a55) + QBluetoothUuid__CSCMeasurement = QBluetoothUuid__CharacteristicType(0x2a5b) + QBluetoothUuid__CSCFeature = QBluetoothUuid__CharacteristicType(0x2a5c) + QBluetoothUuid__SensorLocation = QBluetoothUuid__CharacteristicType(0x2a5d) + QBluetoothUuid__CyclingPowerMeasurement = QBluetoothUuid__CharacteristicType(0x2a63) + QBluetoothUuid__CyclingPowerVector = QBluetoothUuid__CharacteristicType(0x2a64) + QBluetoothUuid__CyclingPowerFeature = QBluetoothUuid__CharacteristicType(0x2a65) + QBluetoothUuid__CyclingPowerControlPoint = QBluetoothUuid__CharacteristicType(0x2a66) + QBluetoothUuid__LocationAndSpeed = QBluetoothUuid__CharacteristicType(0x2a67) + QBluetoothUuid__Navigation = QBluetoothUuid__CharacteristicType(0x2a68) + QBluetoothUuid__PositionQuality = QBluetoothUuid__CharacteristicType(0x2a69) + QBluetoothUuid__LNFeature = QBluetoothUuid__CharacteristicType(0x2a6a) + QBluetoothUuid__LNControlPoint = QBluetoothUuid__CharacteristicType(0x2a6b) + QBluetoothUuid__Elevation = QBluetoothUuid__CharacteristicType(0x2a6c) + QBluetoothUuid__Pressure = QBluetoothUuid__CharacteristicType(0x2a6d) + QBluetoothUuid__Temperature = QBluetoothUuid__CharacteristicType(0x2a6e) + QBluetoothUuid__Humidity = QBluetoothUuid__CharacteristicType(0x2a6f) + QBluetoothUuid__TrueWindSpeed = QBluetoothUuid__CharacteristicType(0x2a70) + QBluetoothUuid__TrueWindDirection = QBluetoothUuid__CharacteristicType(0x2a71) + QBluetoothUuid__ApparentWindSpeed = QBluetoothUuid__CharacteristicType(0x2a72) + QBluetoothUuid__ApparentWindDirection = QBluetoothUuid__CharacteristicType(0x2a73) + QBluetoothUuid__GustFactor = QBluetoothUuid__CharacteristicType(0x2a74) + QBluetoothUuid__PollenConcentration = QBluetoothUuid__CharacteristicType(0x2a75) + QBluetoothUuid__UVIndex = QBluetoothUuid__CharacteristicType(0x2a76) + QBluetoothUuid__Irradiance = QBluetoothUuid__CharacteristicType(0x2a77) + QBluetoothUuid__Rainfall = QBluetoothUuid__CharacteristicType(0x2a78) + QBluetoothUuid__WindChill = QBluetoothUuid__CharacteristicType(0x2a79) + QBluetoothUuid__HeatIndex = QBluetoothUuid__CharacteristicType(0x2a7a) + QBluetoothUuid__DewPoint = QBluetoothUuid__CharacteristicType(0x2a7b) + QBluetoothUuid__DescriptorValueChanged = QBluetoothUuid__CharacteristicType(0x2a7d) + QBluetoothUuid__AerobicHeartRateLowerLimit = QBluetoothUuid__CharacteristicType(0x2a7e) + QBluetoothUuid__AerobicThreshold = QBluetoothUuid__CharacteristicType(0x2a7f) + QBluetoothUuid__Age = QBluetoothUuid__CharacteristicType(0x2a80) + QBluetoothUuid__AnaerobicHeartRateLowerLimit = QBluetoothUuid__CharacteristicType(0x2a81) + QBluetoothUuid__AnaerobicHeartRateUpperLimit = QBluetoothUuid__CharacteristicType(0x2a82) + QBluetoothUuid__AnaerobicThreshold = QBluetoothUuid__CharacteristicType(0x2a83) + QBluetoothUuid__AerobicHeartRateUpperLimit = QBluetoothUuid__CharacteristicType(0x2a84) + QBluetoothUuid__DateOfBirth = QBluetoothUuid__CharacteristicType(0x2a85) + QBluetoothUuid__DateOfThresholdAssessment = QBluetoothUuid__CharacteristicType(0x2a86) + QBluetoothUuid__EmailAddress = QBluetoothUuid__CharacteristicType(0x2a87) + QBluetoothUuid__FatBurnHeartRateLowerLimit = QBluetoothUuid__CharacteristicType(0x2a88) + QBluetoothUuid__FatBurnHeartRateUpperLimit = QBluetoothUuid__CharacteristicType(0x2a89) + QBluetoothUuid__FirstName = QBluetoothUuid__CharacteristicType(0x2a8a) + QBluetoothUuid__FiveZoneHeartRateLimits = QBluetoothUuid__CharacteristicType(0x2a8b) + QBluetoothUuid__Gender = QBluetoothUuid__CharacteristicType(0x2a8c) + QBluetoothUuid__HeartRateMax = QBluetoothUuid__CharacteristicType(0x2a8d) + QBluetoothUuid__Height = QBluetoothUuid__CharacteristicType(0x2a8e) + QBluetoothUuid__HipCircumference = QBluetoothUuid__CharacteristicType(0x2a8f) + QBluetoothUuid__LastName = QBluetoothUuid__CharacteristicType(0x2a90) + QBluetoothUuid__MaximumRecommendedHeartRate = QBluetoothUuid__CharacteristicType(0x2a91) + QBluetoothUuid__RestingHeartRate = QBluetoothUuid__CharacteristicType(0x2a92) + QBluetoothUuid__SportTypeForAerobicAnaerobicThresholds = QBluetoothUuid__CharacteristicType(0x2a93) + QBluetoothUuid__ThreeZoneHeartRateLimits = QBluetoothUuid__CharacteristicType(0x2a94) + QBluetoothUuid__TwoZoneHeartRateLimits = QBluetoothUuid__CharacteristicType(0x2a95) + QBluetoothUuid__VO2Max = QBluetoothUuid__CharacteristicType(0x2a96) + QBluetoothUuid__WaistCircumference = QBluetoothUuid__CharacteristicType(0x2a97) + QBluetoothUuid__Weight = QBluetoothUuid__CharacteristicType(0x2a98) + QBluetoothUuid__DatabaseChangeIncrement = QBluetoothUuid__CharacteristicType(0x2a99) + QBluetoothUuid__UserIndex = QBluetoothUuid__CharacteristicType(0x2a9a) + QBluetoothUuid__BodyCompositionFeature = QBluetoothUuid__CharacteristicType(0x2a9b) + QBluetoothUuid__BodyCompositionMeasurement = QBluetoothUuid__CharacteristicType(0x2a9c) + QBluetoothUuid__WeightMeasurement = QBluetoothUuid__CharacteristicType(0x2a9d) + QBluetoothUuid__WeightScaleFeature = QBluetoothUuid__CharacteristicType(0x2a9e) + QBluetoothUuid__UserControlPoint = QBluetoothUuid__CharacteristicType(0x2a9f) + QBluetoothUuid__MagneticFluxDensity2D = QBluetoothUuid__CharacteristicType(0x2aa0) + QBluetoothUuid__MagneticFluxDensity3D = QBluetoothUuid__CharacteristicType(0x2aa1) + QBluetoothUuid__Language = QBluetoothUuid__CharacteristicType(0x2aa2) + QBluetoothUuid__BarometricPressureTrend = QBluetoothUuid__CharacteristicType(0x2aa3) +) + +//QBluetoothUuid::DescriptorType +type QBluetoothUuid__DescriptorType int + +var ( + QBluetoothUuid__UnknownDescriptorType = QBluetoothUuid__DescriptorType(0x0) + QBluetoothUuid__CharacteristicExtendedProperties = QBluetoothUuid__DescriptorType(0x2900) + QBluetoothUuid__CharacteristicUserDescription = QBluetoothUuid__DescriptorType(0x2901) + QBluetoothUuid__ClientCharacteristicConfiguration = QBluetoothUuid__DescriptorType(0x2902) + QBluetoothUuid__ServerCharacteristicConfiguration = QBluetoothUuid__DescriptorType(0x2903) + QBluetoothUuid__CharacteristicPresentationFormat = QBluetoothUuid__DescriptorType(0x2904) + QBluetoothUuid__CharacteristicAggregateFormat = QBluetoothUuid__DescriptorType(0x2905) + QBluetoothUuid__ValidRange = QBluetoothUuid__DescriptorType(0x2906) + QBluetoothUuid__ExternalReportReference = QBluetoothUuid__DescriptorType(0x2907) + QBluetoothUuid__ReportReference = QBluetoothUuid__DescriptorType(0x2908) + QBluetoothUuid__EnvironmentalSensingConfiguration = QBluetoothUuid__DescriptorType(0x290b) + QBluetoothUuid__EnvironmentalSensingMeasurement = QBluetoothUuid__DescriptorType(0x290c) + QBluetoothUuid__EnvironmentalSensingTriggerSetting = QBluetoothUuid__DescriptorType(0x290d) +) + +//QBluetoothUuid::ProtocolUuid +type QBluetoothUuid__ProtocolUuid int + +var ( + QBluetoothUuid__Sdp = QBluetoothUuid__ProtocolUuid(0x0001) + QBluetoothUuid__Udp = QBluetoothUuid__ProtocolUuid(0x0002) + QBluetoothUuid__Rfcomm = QBluetoothUuid__ProtocolUuid(0x0003) + QBluetoothUuid__Tcp = QBluetoothUuid__ProtocolUuid(0x0004) + QBluetoothUuid__TcsBin = QBluetoothUuid__ProtocolUuid(0x0005) + QBluetoothUuid__TcsAt = QBluetoothUuid__ProtocolUuid(0x0006) + QBluetoothUuid__Att = QBluetoothUuid__ProtocolUuid(0x0007) + QBluetoothUuid__Obex = QBluetoothUuid__ProtocolUuid(0x0008) + QBluetoothUuid__Ip = QBluetoothUuid__ProtocolUuid(0x0009) + QBluetoothUuid__Ftp = QBluetoothUuid__ProtocolUuid(0x000A) + QBluetoothUuid__Http = QBluetoothUuid__ProtocolUuid(0x000C) + QBluetoothUuid__Wsp = QBluetoothUuid__ProtocolUuid(0x000E) + QBluetoothUuid__Bnep = QBluetoothUuid__ProtocolUuid(0x000F) + QBluetoothUuid__Upnp = QBluetoothUuid__ProtocolUuid(0x0010) + QBluetoothUuid__Hidp = QBluetoothUuid__ProtocolUuid(0x0011) + QBluetoothUuid__HardcopyControlChannel = QBluetoothUuid__ProtocolUuid(0x0012) + QBluetoothUuid__HardcopyDataChannel = QBluetoothUuid__ProtocolUuid(0x0014) + QBluetoothUuid__HardcopyNotification = QBluetoothUuid__ProtocolUuid(0x0016) + QBluetoothUuid__Avctp = QBluetoothUuid__ProtocolUuid(0x0017) + QBluetoothUuid__Avdtp = QBluetoothUuid__ProtocolUuid(0x0019) + QBluetoothUuid__Cmtp = QBluetoothUuid__ProtocolUuid(0x001B) + QBluetoothUuid__UdiCPlain = QBluetoothUuid__ProtocolUuid(0x001D) + QBluetoothUuid__McapControlChannel = QBluetoothUuid__ProtocolUuid(0x001E) + QBluetoothUuid__McapDataChannel = QBluetoothUuid__ProtocolUuid(0x001F) + QBluetoothUuid__L2cap = QBluetoothUuid__ProtocolUuid(0x0100) +) + +//QBluetoothUuid::ServiceClassUuid +type QBluetoothUuid__ServiceClassUuid int + +var ( + QBluetoothUuid__ServiceDiscoveryServer = QBluetoothUuid__ServiceClassUuid(0x1000) + QBluetoothUuid__BrowseGroupDescriptor = QBluetoothUuid__ServiceClassUuid(0x1001) + QBluetoothUuid__PublicBrowseGroup = QBluetoothUuid__ServiceClassUuid(0x1002) + QBluetoothUuid__SerialPort = QBluetoothUuid__ServiceClassUuid(0x1101) + QBluetoothUuid__LANAccessUsingPPP = QBluetoothUuid__ServiceClassUuid(0x1102) + QBluetoothUuid__DialupNetworking = QBluetoothUuid__ServiceClassUuid(0x1103) + QBluetoothUuid__IrMCSync = QBluetoothUuid__ServiceClassUuid(0x1104) + QBluetoothUuid__ObexObjectPush = QBluetoothUuid__ServiceClassUuid(0x1105) + QBluetoothUuid__OBEXFileTransfer = QBluetoothUuid__ServiceClassUuid(0x1106) + QBluetoothUuid__IrMCSyncCommand = QBluetoothUuid__ServiceClassUuid(0x1107) + QBluetoothUuid__Headset = QBluetoothUuid__ServiceClassUuid(0x1108) + QBluetoothUuid__AudioSource = QBluetoothUuid__ServiceClassUuid(0x110a) + QBluetoothUuid__AudioSink = QBluetoothUuid__ServiceClassUuid(0x110b) + QBluetoothUuid__AV_RemoteControlTarget = QBluetoothUuid__ServiceClassUuid(0x110c) + QBluetoothUuid__AdvancedAudioDistribution = QBluetoothUuid__ServiceClassUuid(0x110d) + QBluetoothUuid__AV_RemoteControl = QBluetoothUuid__ServiceClassUuid(0x110e) + QBluetoothUuid__AV_RemoteControlController = QBluetoothUuid__ServiceClassUuid(0x110f) + QBluetoothUuid__HeadsetAG = QBluetoothUuid__ServiceClassUuid(0x1112) + QBluetoothUuid__PANU = QBluetoothUuid__ServiceClassUuid(0x1115) + QBluetoothUuid__NAP = QBluetoothUuid__ServiceClassUuid(0x1116) + QBluetoothUuid__GN = QBluetoothUuid__ServiceClassUuid(0x1117) + QBluetoothUuid__DirectPrinting = QBluetoothUuid__ServiceClassUuid(0x1118) + QBluetoothUuid__ReferencePrinting = QBluetoothUuid__ServiceClassUuid(0x1119) + QBluetoothUuid__BasicImage = QBluetoothUuid__ServiceClassUuid(0x111a) + QBluetoothUuid__ImagingResponder = QBluetoothUuid__ServiceClassUuid(0x111b) + QBluetoothUuid__ImagingAutomaticArchive = QBluetoothUuid__ServiceClassUuid(0x111c) + QBluetoothUuid__ImagingReferenceObjects = QBluetoothUuid__ServiceClassUuid(0x111d) + QBluetoothUuid__Handsfree = QBluetoothUuid__ServiceClassUuid(0x111e) + QBluetoothUuid__HandsfreeAudioGateway = QBluetoothUuid__ServiceClassUuid(0x111f) + QBluetoothUuid__DirectPrintingReferenceObjectsService = QBluetoothUuid__ServiceClassUuid(0x1120) + QBluetoothUuid__ReflectedUI = QBluetoothUuid__ServiceClassUuid(0x1121) + QBluetoothUuid__BasicPrinting = QBluetoothUuid__ServiceClassUuid(0x1122) + QBluetoothUuid__PrintingStatus = QBluetoothUuid__ServiceClassUuid(0x1123) + QBluetoothUuid__HumanInterfaceDeviceService = QBluetoothUuid__ServiceClassUuid(0x1124) + QBluetoothUuid__HardcopyCableReplacement = QBluetoothUuid__ServiceClassUuid(0x1125) + QBluetoothUuid__HCRPrint = QBluetoothUuid__ServiceClassUuid(0x1126) + QBluetoothUuid__HCRScan = QBluetoothUuid__ServiceClassUuid(0x1127) + QBluetoothUuid__SIMAccess = QBluetoothUuid__ServiceClassUuid(0x112d) + QBluetoothUuid__PhonebookAccessPCE = QBluetoothUuid__ServiceClassUuid(0x112e) + QBluetoothUuid__PhonebookAccessPSE = QBluetoothUuid__ServiceClassUuid(0x112f) + QBluetoothUuid__PhonebookAccess = QBluetoothUuid__ServiceClassUuid(0x1130) + QBluetoothUuid__HeadsetHS = QBluetoothUuid__ServiceClassUuid(0x1131) + QBluetoothUuid__MessageAccessServer = QBluetoothUuid__ServiceClassUuid(0x1132) + QBluetoothUuid__MessageNotificationServer = QBluetoothUuid__ServiceClassUuid(0x1133) + QBluetoothUuid__MessageAccessProfile = QBluetoothUuid__ServiceClassUuid(0x1134) + QBluetoothUuid__GNSS = QBluetoothUuid__ServiceClassUuid(0x1135) + QBluetoothUuid__GNSSServer = QBluetoothUuid__ServiceClassUuid(0x1136) + QBluetoothUuid__Display3D = QBluetoothUuid__ServiceClassUuid(0x1137) + QBluetoothUuid__Glasses3D = QBluetoothUuid__ServiceClassUuid(0x1138) + QBluetoothUuid__Synchronization3D = QBluetoothUuid__ServiceClassUuid(0x1139) + QBluetoothUuid__MPSProfile = QBluetoothUuid__ServiceClassUuid(0x113a) + QBluetoothUuid__MPSService = QBluetoothUuid__ServiceClassUuid(0x113b) + QBluetoothUuid__PnPInformation = QBluetoothUuid__ServiceClassUuid(0x1200) + QBluetoothUuid__GenericNetworking = QBluetoothUuid__ServiceClassUuid(0x1201) + QBluetoothUuid__GenericFileTransfer = QBluetoothUuid__ServiceClassUuid(0x1202) + QBluetoothUuid__GenericAudio = QBluetoothUuid__ServiceClassUuid(0x1203) + QBluetoothUuid__GenericTelephony = QBluetoothUuid__ServiceClassUuid(0x1204) + QBluetoothUuid__VideoSource = QBluetoothUuid__ServiceClassUuid(0x1303) + QBluetoothUuid__VideoSink = QBluetoothUuid__ServiceClassUuid(0x1304) + QBluetoothUuid__VideoDistribution = QBluetoothUuid__ServiceClassUuid(0x1305) + QBluetoothUuid__HDP = QBluetoothUuid__ServiceClassUuid(0x1400) + QBluetoothUuid__HDPSource = QBluetoothUuid__ServiceClassUuid(0x1401) + QBluetoothUuid__HDPSink = QBluetoothUuid__ServiceClassUuid(0x1402) + QBluetoothUuid__GenericAccess = QBluetoothUuid__ServiceClassUuid(0x1800) + QBluetoothUuid__GenericAttribute = QBluetoothUuid__ServiceClassUuid(0x1801) + QBluetoothUuid__ImmediateAlert = QBluetoothUuid__ServiceClassUuid(0x1802) + QBluetoothUuid__LinkLoss = QBluetoothUuid__ServiceClassUuid(0x1803) + QBluetoothUuid__TxPower = QBluetoothUuid__ServiceClassUuid(0x1804) + QBluetoothUuid__CurrentTimeService = QBluetoothUuid__ServiceClassUuid(0x1805) + QBluetoothUuid__ReferenceTimeUpdateService = QBluetoothUuid__ServiceClassUuid(0x1806) + QBluetoothUuid__NextDSTChangeService = QBluetoothUuid__ServiceClassUuid(0x1807) + QBluetoothUuid__Glucose = QBluetoothUuid__ServiceClassUuid(0x1808) + QBluetoothUuid__HealthThermometer = QBluetoothUuid__ServiceClassUuid(0x1809) + QBluetoothUuid__DeviceInformation = QBluetoothUuid__ServiceClassUuid(0x180a) + QBluetoothUuid__HeartRate = QBluetoothUuid__ServiceClassUuid(0x180d) + QBluetoothUuid__PhoneAlertStatusService = QBluetoothUuid__ServiceClassUuid(0x180e) + QBluetoothUuid__BatteryService = QBluetoothUuid__ServiceClassUuid(0x180f) + QBluetoothUuid__BloodPressure = QBluetoothUuid__ServiceClassUuid(0x1810) + QBluetoothUuid__AlertNotificationService = QBluetoothUuid__ServiceClassUuid(0x1811) + QBluetoothUuid__HumanInterfaceDevice = QBluetoothUuid__ServiceClassUuid(0x1812) + QBluetoothUuid__ScanParameters = QBluetoothUuid__ServiceClassUuid(0x1813) + QBluetoothUuid__RunningSpeedAndCadence = QBluetoothUuid__ServiceClassUuid(0x1814) + QBluetoothUuid__CyclingSpeedAndCadence = QBluetoothUuid__ServiceClassUuid(0x1816) + QBluetoothUuid__CyclingPower = QBluetoothUuid__ServiceClassUuid(0x1818) + QBluetoothUuid__LocationAndNavigation = QBluetoothUuid__ServiceClassUuid(0x1819) + QBluetoothUuid__EnvironmentalSensing = QBluetoothUuid__ServiceClassUuid(0x181a) + QBluetoothUuid__BodyComposition = QBluetoothUuid__ServiceClassUuid(0x181b) + QBluetoothUuid__UserData = QBluetoothUuid__ServiceClassUuid(0x181c) + QBluetoothUuid__WeightScale = QBluetoothUuid__ServiceClassUuid(0x181d) + QBluetoothUuid__BondManagement = QBluetoothUuid__ServiceClassUuid(0x181e) + QBluetoothUuid__ContinuousGlucoseMonitoring = QBluetoothUuid__ServiceClassUuid(0x181f) +) + +func NewQBluetoothUuid() *QBluetoothUuid { + return QBluetoothUuidFromPointer(unsafe.Pointer(C.QBluetoothUuid_NewQBluetoothUuid())) +} + +func NewQBluetoothUuid4(uuid QBluetoothUuid__CharacteristicType) *QBluetoothUuid { + return QBluetoothUuidFromPointer(unsafe.Pointer(C.QBluetoothUuid_NewQBluetoothUuid4(C.int(uuid)))) +} + +func NewQBluetoothUuid5(uuid QBluetoothUuid__DescriptorType) *QBluetoothUuid { + return QBluetoothUuidFromPointer(unsafe.Pointer(C.QBluetoothUuid_NewQBluetoothUuid5(C.int(uuid)))) +} + +func NewQBluetoothUuid2(uuid QBluetoothUuid__ProtocolUuid) *QBluetoothUuid { + return QBluetoothUuidFromPointer(unsafe.Pointer(C.QBluetoothUuid_NewQBluetoothUuid2(C.int(uuid)))) +} + +func NewQBluetoothUuid3(uuid QBluetoothUuid__ServiceClassUuid) *QBluetoothUuid { + return QBluetoothUuidFromPointer(unsafe.Pointer(C.QBluetoothUuid_NewQBluetoothUuid3(C.int(uuid)))) +} + +func NewQBluetoothUuid10(uuid QBluetoothUuidITF) *QBluetoothUuid { + return QBluetoothUuidFromPointer(unsafe.Pointer(C.QBluetoothUuid_NewQBluetoothUuid10(C.QtObjectPtr(PointerFromQBluetoothUuid(uuid))))) +} + +func NewQBluetoothUuid9(uuid string) *QBluetoothUuid { + return QBluetoothUuidFromPointer(unsafe.Pointer(C.QBluetoothUuid_NewQBluetoothUuid9(C.CString(uuid)))) +} + +func NewQBluetoothUuid11(uuid core.QUuidITF) *QBluetoothUuid { + return QBluetoothUuidFromPointer(unsafe.Pointer(C.QBluetoothUuid_NewQBluetoothUuid11(C.QtObjectPtr(core.PointerFromQUuid(uuid))))) +} + +func QBluetoothUuid_CharacteristicToString(uuid QBluetoothUuid__CharacteristicType) string { + return C.GoString(C.QBluetoothUuid_QBluetoothUuid_CharacteristicToString(C.int(uuid))) +} + +func QBluetoothUuid_DescriptorToString(uuid QBluetoothUuid__DescriptorType) string { + return C.GoString(C.QBluetoothUuid_QBluetoothUuid_DescriptorToString(C.int(uuid))) +} + +func (ptr *QBluetoothUuid) MinimumSize() int { + if ptr.Pointer() != nil { + return int(C.QBluetoothUuid_MinimumSize(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QBluetoothUuid_ProtocolToString(uuid QBluetoothUuid__ProtocolUuid) string { + return C.GoString(C.QBluetoothUuid_QBluetoothUuid_ProtocolToString(C.int(uuid))) +} + +func QBluetoothUuid_ServiceClassToString(uuid QBluetoothUuid__ServiceClassUuid) string { + return C.GoString(C.QBluetoothUuid_QBluetoothUuid_ServiceClassToString(C.int(uuid))) +} + +func (ptr *QBluetoothUuid) DestroyQBluetoothUuid() { + if ptr.Pointer() != nil { + C.QBluetoothUuid_DestroyQBluetoothUuid(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/bluetooth/qbluetoothuuid.h b/bluetooth/qbluetoothuuid.h new file mode 100755 index 00000000..166c112c --- /dev/null +++ b/bluetooth/qbluetoothuuid.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QBluetoothUuid_NewQBluetoothUuid(); +QtObjectPtr QBluetoothUuid_NewQBluetoothUuid4(int uuid); +QtObjectPtr QBluetoothUuid_NewQBluetoothUuid5(int uuid); +QtObjectPtr QBluetoothUuid_NewQBluetoothUuid2(int uuid); +QtObjectPtr QBluetoothUuid_NewQBluetoothUuid3(int uuid); +QtObjectPtr QBluetoothUuid_NewQBluetoothUuid10(QtObjectPtr uuid); +QtObjectPtr QBluetoothUuid_NewQBluetoothUuid9(char* uuid); +QtObjectPtr QBluetoothUuid_NewQBluetoothUuid11(QtObjectPtr uuid); +char* QBluetoothUuid_QBluetoothUuid_CharacteristicToString(int uuid); +char* QBluetoothUuid_QBluetoothUuid_DescriptorToString(int uuid); +int QBluetoothUuid_MinimumSize(QtObjectPtr ptr); +char* QBluetoothUuid_QBluetoothUuid_ProtocolToString(int uuid); +char* QBluetoothUuid_QBluetoothUuid_ServiceClassToString(int uuid); +void QBluetoothUuid_DestroyQBluetoothUuid(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/bluetooth/qlowenergycharacteristic.cpp b/bluetooth/qlowenergycharacteristic.cpp new file mode 100755 index 00000000..644242c4 --- /dev/null +++ b/bluetooth/qlowenergycharacteristic.cpp @@ -0,0 +1,36 @@ +#include "qlowenergycharacteristic.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQLowEnergyCharacteristic: public QLowEnergyCharacteristic { +public: +}; + +QtObjectPtr QLowEnergyCharacteristic_NewQLowEnergyCharacteristic(){ + return new QLowEnergyCharacteristic(); +} + +QtObjectPtr QLowEnergyCharacteristic_NewQLowEnergyCharacteristic2(QtObjectPtr other){ + return new QLowEnergyCharacteristic(*static_cast(other)); +} + +int QLowEnergyCharacteristic_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +char* QLowEnergyCharacteristic_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +int QLowEnergyCharacteristic_Properties(QtObjectPtr ptr){ + return static_cast(ptr)->properties(); +} + +void QLowEnergyCharacteristic_DestroyQLowEnergyCharacteristic(QtObjectPtr ptr){ + static_cast(ptr)->~QLowEnergyCharacteristic(); +} + diff --git a/bluetooth/qlowenergycharacteristic.go b/bluetooth/qlowenergycharacteristic.go new file mode 100755 index 00000000..43d952ac --- /dev/null +++ b/bluetooth/qlowenergycharacteristic.go @@ -0,0 +1,90 @@ +package bluetooth + +//#include "qlowenergycharacteristic.h" +import "C" +import ( + "unsafe" +) + +type QLowEnergyCharacteristic struct { + ptr unsafe.Pointer +} + +type QLowEnergyCharacteristicITF interface { + QLowEnergyCharacteristicPTR() *QLowEnergyCharacteristic +} + +func (p *QLowEnergyCharacteristic) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QLowEnergyCharacteristic) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQLowEnergyCharacteristic(ptr QLowEnergyCharacteristicITF) unsafe.Pointer { + if ptr != nil { + return ptr.QLowEnergyCharacteristicPTR().Pointer() + } + return nil +} + +func QLowEnergyCharacteristicFromPointer(ptr unsafe.Pointer) *QLowEnergyCharacteristic { + var n = new(QLowEnergyCharacteristic) + n.SetPointer(ptr) + return n +} + +func (ptr *QLowEnergyCharacteristic) QLowEnergyCharacteristicPTR() *QLowEnergyCharacteristic { + return ptr +} + +//QLowEnergyCharacteristic::PropertyType +type QLowEnergyCharacteristic__PropertyType int + +var ( + QLowEnergyCharacteristic__Unknown = QLowEnergyCharacteristic__PropertyType(0x00) + QLowEnergyCharacteristic__Broadcasting = QLowEnergyCharacteristic__PropertyType(0x01) + QLowEnergyCharacteristic__Read = QLowEnergyCharacteristic__PropertyType(0x02) + QLowEnergyCharacteristic__WriteNoResponse = QLowEnergyCharacteristic__PropertyType(0x04) + QLowEnergyCharacteristic__Write = QLowEnergyCharacteristic__PropertyType(0x08) + QLowEnergyCharacteristic__Notify = QLowEnergyCharacteristic__PropertyType(0x10) + QLowEnergyCharacteristic__Indicate = QLowEnergyCharacteristic__PropertyType(0x20) + QLowEnergyCharacteristic__WriteSigned = QLowEnergyCharacteristic__PropertyType(0x40) + QLowEnergyCharacteristic__ExtendedProperty = QLowEnergyCharacteristic__PropertyType(0x80) +) + +func NewQLowEnergyCharacteristic() *QLowEnergyCharacteristic { + return QLowEnergyCharacteristicFromPointer(unsafe.Pointer(C.QLowEnergyCharacteristic_NewQLowEnergyCharacteristic())) +} + +func NewQLowEnergyCharacteristic2(other QLowEnergyCharacteristicITF) *QLowEnergyCharacteristic { + return QLowEnergyCharacteristicFromPointer(unsafe.Pointer(C.QLowEnergyCharacteristic_NewQLowEnergyCharacteristic2(C.QtObjectPtr(PointerFromQLowEnergyCharacteristic(other))))) +} + +func (ptr *QLowEnergyCharacteristic) IsValid() bool { + if ptr.Pointer() != nil { + return C.QLowEnergyCharacteristic_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLowEnergyCharacteristic) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QLowEnergyCharacteristic_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QLowEnergyCharacteristic) Properties() QLowEnergyCharacteristic__PropertyType { + if ptr.Pointer() != nil { + return QLowEnergyCharacteristic__PropertyType(C.QLowEnergyCharacteristic_Properties(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLowEnergyCharacteristic) DestroyQLowEnergyCharacteristic() { + if ptr.Pointer() != nil { + C.QLowEnergyCharacteristic_DestroyQLowEnergyCharacteristic(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/bluetooth/qlowenergycharacteristic.h b/bluetooth/qlowenergycharacteristic.h new file mode 100755 index 00000000..0ab1d42a --- /dev/null +++ b/bluetooth/qlowenergycharacteristic.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QLowEnergyCharacteristic_NewQLowEnergyCharacteristic(); +QtObjectPtr QLowEnergyCharacteristic_NewQLowEnergyCharacteristic2(QtObjectPtr other); +int QLowEnergyCharacteristic_IsValid(QtObjectPtr ptr); +char* QLowEnergyCharacteristic_Name(QtObjectPtr ptr); +int QLowEnergyCharacteristic_Properties(QtObjectPtr ptr); +void QLowEnergyCharacteristic_DestroyQLowEnergyCharacteristic(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/bluetooth/qlowenergycontroller.cpp b/bluetooth/qlowenergycontroller.cpp new file mode 100755 index 00000000..72e34607 --- /dev/null +++ b/bluetooth/qlowenergycontroller.cpp @@ -0,0 +1,95 @@ +#include "qlowenergycontroller.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQLowEnergyController: public QLowEnergyController { +public: +void Signal_Connected(){callbackQLowEnergyControllerConnected(this->objectName().toUtf8().data());}; +void Signal_Disconnected(){callbackQLowEnergyControllerDisconnected(this->objectName().toUtf8().data());}; +void Signal_DiscoveryFinished(){callbackQLowEnergyControllerDiscoveryFinished(this->objectName().toUtf8().data());}; +void Signal_StateChanged(QLowEnergyController::ControllerState state){callbackQLowEnergyControllerStateChanged(this->objectName().toUtf8().data(), state);}; +}; + +void QLowEnergyController_ConnectConnected(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QLowEnergyController::connected), static_cast(ptr), static_cast(&MyQLowEnergyController::Signal_Connected));; +} + +void QLowEnergyController_DisconnectConnected(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QLowEnergyController::connected), static_cast(ptr), static_cast(&MyQLowEnergyController::Signal_Connected));; +} + +void QLowEnergyController_ConnectDisconnected(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QLowEnergyController::disconnected), static_cast(ptr), static_cast(&MyQLowEnergyController::Signal_Disconnected));; +} + +void QLowEnergyController_DisconnectDisconnected(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QLowEnergyController::disconnected), static_cast(ptr), static_cast(&MyQLowEnergyController::Signal_Disconnected));; +} + +void QLowEnergyController_ConnectDiscoveryFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QLowEnergyController::discoveryFinished), static_cast(ptr), static_cast(&MyQLowEnergyController::Signal_DiscoveryFinished));; +} + +void QLowEnergyController_DisconnectDiscoveryFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QLowEnergyController::discoveryFinished), static_cast(ptr), static_cast(&MyQLowEnergyController::Signal_DiscoveryFinished));; +} + +void QLowEnergyController_ConnectStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QLowEnergyController::stateChanged), static_cast(ptr), static_cast(&MyQLowEnergyController::Signal_StateChanged));; +} + +void QLowEnergyController_DisconnectStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QLowEnergyController::stateChanged), static_cast(ptr), static_cast(&MyQLowEnergyController::Signal_StateChanged));; +} + +QtObjectPtr QLowEnergyController_NewQLowEnergyController(QtObjectPtr remoteDeviceInfo, QtObjectPtr parent){ + return new QLowEnergyController(*static_cast(remoteDeviceInfo), static_cast(parent)); +} + +void QLowEnergyController_ConnectToDevice(QtObjectPtr ptr){ + static_cast(ptr)->connectToDevice(); +} + +QtObjectPtr QLowEnergyController_CreateServiceObject(QtObjectPtr ptr, QtObjectPtr serviceUuid, QtObjectPtr parent){ + return static_cast(ptr)->createServiceObject(*static_cast(serviceUuid), static_cast(parent)); +} + +void QLowEnergyController_DisconnectFromDevice(QtObjectPtr ptr){ + static_cast(ptr)->disconnectFromDevice(); +} + +void QLowEnergyController_DiscoverServices(QtObjectPtr ptr){ + static_cast(ptr)->discoverServices(); +} + +int QLowEnergyController_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +char* QLowEnergyController_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +int QLowEnergyController_RemoteAddressType(QtObjectPtr ptr){ + return static_cast(ptr)->remoteAddressType(); +} + +char* QLowEnergyController_RemoteName(QtObjectPtr ptr){ + return static_cast(ptr)->remoteName().toUtf8().data(); +} + +void QLowEnergyController_SetRemoteAddressType(QtObjectPtr ptr, int ty){ + static_cast(ptr)->setRemoteAddressType(static_cast(ty)); +} + +void QLowEnergyController_DestroyQLowEnergyController(QtObjectPtr ptr){ + static_cast(ptr)->~QLowEnergyController(); +} + diff --git a/bluetooth/qlowenergycontroller.go b/bluetooth/qlowenergycontroller.go new file mode 100755 index 00000000..d3842f2b --- /dev/null +++ b/bluetooth/qlowenergycontroller.go @@ -0,0 +1,216 @@ +package bluetooth + +//#include "qlowenergycontroller.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QLowEnergyController struct { + core.QObject +} + +type QLowEnergyControllerITF interface { + core.QObjectITF + QLowEnergyControllerPTR() *QLowEnergyController +} + +func PointerFromQLowEnergyController(ptr QLowEnergyControllerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QLowEnergyControllerPTR().Pointer() + } + return nil +} + +func QLowEnergyControllerFromPointer(ptr unsafe.Pointer) *QLowEnergyController { + var n = new(QLowEnergyController) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QLowEnergyController_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QLowEnergyController) QLowEnergyControllerPTR() *QLowEnergyController { + return ptr +} + +//QLowEnergyController::ControllerState +type QLowEnergyController__ControllerState int + +var ( + QLowEnergyController__UnconnectedState = QLowEnergyController__ControllerState(0) + QLowEnergyController__ConnectingState = QLowEnergyController__ControllerState(1) + QLowEnergyController__ConnectedState = QLowEnergyController__ControllerState(2) + QLowEnergyController__DiscoveringState = QLowEnergyController__ControllerState(3) + QLowEnergyController__DiscoveredState = QLowEnergyController__ControllerState(4) + QLowEnergyController__ClosingState = QLowEnergyController__ControllerState(5) +) + +//QLowEnergyController::Error +type QLowEnergyController__Error int + +var ( + QLowEnergyController__NoError = QLowEnergyController__Error(0) + QLowEnergyController__UnknownError = QLowEnergyController__Error(1) + QLowEnergyController__UnknownRemoteDeviceError = QLowEnergyController__Error(2) + QLowEnergyController__NetworkError = QLowEnergyController__Error(3) + QLowEnergyController__InvalidBluetoothAdapterError = QLowEnergyController__Error(4) + QLowEnergyController__ConnectionError = QLowEnergyController__Error(5) +) + +//QLowEnergyController::RemoteAddressType +type QLowEnergyController__RemoteAddressType int + +var ( + QLowEnergyController__PublicAddress = QLowEnergyController__RemoteAddressType(0) + QLowEnergyController__RandomAddress = QLowEnergyController__RemoteAddressType(1) +) + +func (ptr *QLowEnergyController) ConnectConnected(f func()) { + if ptr.Pointer() != nil { + C.QLowEnergyController_ConnectConnected(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "connected", f) + } +} + +func (ptr *QLowEnergyController) DisconnectConnected() { + if ptr.Pointer() != nil { + C.QLowEnergyController_DisconnectConnected(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "connected") + } +} + +//export callbackQLowEnergyControllerConnected +func callbackQLowEnergyControllerConnected(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "connected").(func())() +} + +func (ptr *QLowEnergyController) ConnectDisconnected(f func()) { + if ptr.Pointer() != nil { + C.QLowEnergyController_ConnectDisconnected(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "disconnected", f) + } +} + +func (ptr *QLowEnergyController) DisconnectDisconnected() { + if ptr.Pointer() != nil { + C.QLowEnergyController_DisconnectDisconnected(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "disconnected") + } +} + +//export callbackQLowEnergyControllerDisconnected +func callbackQLowEnergyControllerDisconnected(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "disconnected").(func())() +} + +func (ptr *QLowEnergyController) ConnectDiscoveryFinished(f func()) { + if ptr.Pointer() != nil { + C.QLowEnergyController_ConnectDiscoveryFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "discoveryFinished", f) + } +} + +func (ptr *QLowEnergyController) DisconnectDiscoveryFinished() { + if ptr.Pointer() != nil { + C.QLowEnergyController_DisconnectDiscoveryFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "discoveryFinished") + } +} + +//export callbackQLowEnergyControllerDiscoveryFinished +func callbackQLowEnergyControllerDiscoveryFinished(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "discoveryFinished").(func())() +} + +func (ptr *QLowEnergyController) ConnectStateChanged(f func(state QLowEnergyController__ControllerState)) { + if ptr.Pointer() != nil { + C.QLowEnergyController_ConnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stateChanged", f) + } +} + +func (ptr *QLowEnergyController) DisconnectStateChanged() { + if ptr.Pointer() != nil { + C.QLowEnergyController_DisconnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stateChanged") + } +} + +//export callbackQLowEnergyControllerStateChanged +func callbackQLowEnergyControllerStateChanged(ptrName *C.char, state C.int) { + qt.GetSignal(C.GoString(ptrName), "stateChanged").(func(QLowEnergyController__ControllerState))(QLowEnergyController__ControllerState(state)) +} + +func NewQLowEnergyController(remoteDeviceInfo QBluetoothDeviceInfoITF, parent core.QObjectITF) *QLowEnergyController { + return QLowEnergyControllerFromPointer(unsafe.Pointer(C.QLowEnergyController_NewQLowEnergyController(C.QtObjectPtr(PointerFromQBluetoothDeviceInfo(remoteDeviceInfo)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QLowEnergyController) ConnectToDevice() { + if ptr.Pointer() != nil { + C.QLowEnergyController_ConnectToDevice(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QLowEnergyController) CreateServiceObject(serviceUuid QBluetoothUuidITF, parent core.QObjectITF) *QLowEnergyService { + if ptr.Pointer() != nil { + return QLowEnergyServiceFromPointer(unsafe.Pointer(C.QLowEnergyController_CreateServiceObject(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQBluetoothUuid(serviceUuid)), C.QtObjectPtr(core.PointerFromQObject(parent))))) + } + return nil +} + +func (ptr *QLowEnergyController) DisconnectFromDevice() { + if ptr.Pointer() != nil { + C.QLowEnergyController_DisconnectFromDevice(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QLowEnergyController) DiscoverServices() { + if ptr.Pointer() != nil { + C.QLowEnergyController_DiscoverServices(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QLowEnergyController) Error() QLowEnergyController__Error { + if ptr.Pointer() != nil { + return QLowEnergyController__Error(C.QLowEnergyController_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLowEnergyController) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QLowEnergyController_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QLowEnergyController) RemoteAddressType() QLowEnergyController__RemoteAddressType { + if ptr.Pointer() != nil { + return QLowEnergyController__RemoteAddressType(C.QLowEnergyController_RemoteAddressType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLowEnergyController) RemoteName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QLowEnergyController_RemoteName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QLowEnergyController) SetRemoteAddressType(ty QLowEnergyController__RemoteAddressType) { + if ptr.Pointer() != nil { + C.QLowEnergyController_SetRemoteAddressType(C.QtObjectPtr(ptr.Pointer()), C.int(ty)) + } +} + +func (ptr *QLowEnergyController) DestroyQLowEnergyController() { + if ptr.Pointer() != nil { + C.QLowEnergyController_DestroyQLowEnergyController(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/bluetooth/qlowenergycontroller.h b/bluetooth/qlowenergycontroller.h new file mode 100755 index 00000000..c656abf2 --- /dev/null +++ b/bluetooth/qlowenergycontroller.h @@ -0,0 +1,28 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QLowEnergyController_ConnectConnected(QtObjectPtr ptr); +void QLowEnergyController_DisconnectConnected(QtObjectPtr ptr); +void QLowEnergyController_ConnectDisconnected(QtObjectPtr ptr); +void QLowEnergyController_DisconnectDisconnected(QtObjectPtr ptr); +void QLowEnergyController_ConnectDiscoveryFinished(QtObjectPtr ptr); +void QLowEnergyController_DisconnectDiscoveryFinished(QtObjectPtr ptr); +void QLowEnergyController_ConnectStateChanged(QtObjectPtr ptr); +void QLowEnergyController_DisconnectStateChanged(QtObjectPtr ptr); +QtObjectPtr QLowEnergyController_NewQLowEnergyController(QtObjectPtr remoteDeviceInfo, QtObjectPtr parent); +void QLowEnergyController_ConnectToDevice(QtObjectPtr ptr); +QtObjectPtr QLowEnergyController_CreateServiceObject(QtObjectPtr ptr, QtObjectPtr serviceUuid, QtObjectPtr parent); +void QLowEnergyController_DisconnectFromDevice(QtObjectPtr ptr); +void QLowEnergyController_DiscoverServices(QtObjectPtr ptr); +int QLowEnergyController_Error(QtObjectPtr ptr); +char* QLowEnergyController_ErrorString(QtObjectPtr ptr); +int QLowEnergyController_RemoteAddressType(QtObjectPtr ptr); +char* QLowEnergyController_RemoteName(QtObjectPtr ptr); +void QLowEnergyController_SetRemoteAddressType(QtObjectPtr ptr, int ty); +void QLowEnergyController_DestroyQLowEnergyController(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/bluetooth/qlowenergydescriptor.cpp b/bluetooth/qlowenergydescriptor.cpp new file mode 100755 index 00000000..70cf248e --- /dev/null +++ b/bluetooth/qlowenergydescriptor.cpp @@ -0,0 +1,36 @@ +#include "qlowenergydescriptor.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQLowEnergyDescriptor: public QLowEnergyDescriptor { +public: +}; + +QtObjectPtr QLowEnergyDescriptor_NewQLowEnergyDescriptor(){ + return new QLowEnergyDescriptor(); +} + +QtObjectPtr QLowEnergyDescriptor_NewQLowEnergyDescriptor2(QtObjectPtr other){ + return new QLowEnergyDescriptor(*static_cast(other)); +} + +int QLowEnergyDescriptor_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +char* QLowEnergyDescriptor_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +int QLowEnergyDescriptor_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QLowEnergyDescriptor_DestroyQLowEnergyDescriptor(QtObjectPtr ptr){ + static_cast(ptr)->~QLowEnergyDescriptor(); +} + diff --git a/bluetooth/qlowenergydescriptor.go b/bluetooth/qlowenergydescriptor.go new file mode 100755 index 00000000..d46b7a0b --- /dev/null +++ b/bluetooth/qlowenergydescriptor.go @@ -0,0 +1,75 @@ +package bluetooth + +//#include "qlowenergydescriptor.h" +import "C" +import ( + "unsafe" +) + +type QLowEnergyDescriptor struct { + ptr unsafe.Pointer +} + +type QLowEnergyDescriptorITF interface { + QLowEnergyDescriptorPTR() *QLowEnergyDescriptor +} + +func (p *QLowEnergyDescriptor) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QLowEnergyDescriptor) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQLowEnergyDescriptor(ptr QLowEnergyDescriptorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QLowEnergyDescriptorPTR().Pointer() + } + return nil +} + +func QLowEnergyDescriptorFromPointer(ptr unsafe.Pointer) *QLowEnergyDescriptor { + var n = new(QLowEnergyDescriptor) + n.SetPointer(ptr) + return n +} + +func (ptr *QLowEnergyDescriptor) QLowEnergyDescriptorPTR() *QLowEnergyDescriptor { + return ptr +} + +func NewQLowEnergyDescriptor() *QLowEnergyDescriptor { + return QLowEnergyDescriptorFromPointer(unsafe.Pointer(C.QLowEnergyDescriptor_NewQLowEnergyDescriptor())) +} + +func NewQLowEnergyDescriptor2(other QLowEnergyDescriptorITF) *QLowEnergyDescriptor { + return QLowEnergyDescriptorFromPointer(unsafe.Pointer(C.QLowEnergyDescriptor_NewQLowEnergyDescriptor2(C.QtObjectPtr(PointerFromQLowEnergyDescriptor(other))))) +} + +func (ptr *QLowEnergyDescriptor) IsValid() bool { + if ptr.Pointer() != nil { + return C.QLowEnergyDescriptor_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLowEnergyDescriptor) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QLowEnergyDescriptor_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QLowEnergyDescriptor) Type() QBluetoothUuid__DescriptorType { + if ptr.Pointer() != nil { + return QBluetoothUuid__DescriptorType(C.QLowEnergyDescriptor_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLowEnergyDescriptor) DestroyQLowEnergyDescriptor() { + if ptr.Pointer() != nil { + C.QLowEnergyDescriptor_DestroyQLowEnergyDescriptor(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/bluetooth/qlowenergydescriptor.h b/bluetooth/qlowenergydescriptor.h new file mode 100755 index 00000000..cbb4c437 --- /dev/null +++ b/bluetooth/qlowenergydescriptor.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QLowEnergyDescriptor_NewQLowEnergyDescriptor(); +QtObjectPtr QLowEnergyDescriptor_NewQLowEnergyDescriptor2(QtObjectPtr other); +int QLowEnergyDescriptor_IsValid(QtObjectPtr ptr); +char* QLowEnergyDescriptor_Name(QtObjectPtr ptr); +int QLowEnergyDescriptor_Type(QtObjectPtr ptr); +void QLowEnergyDescriptor_DestroyQLowEnergyDescriptor(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/bluetooth/qlowenergyservice.cpp b/bluetooth/qlowenergyservice.cpp new file mode 100755 index 00000000..39f02438 --- /dev/null +++ b/bluetooth/qlowenergyservice.cpp @@ -0,0 +1,69 @@ +#include "qlowenergyservice.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQLowEnergyService: public QLowEnergyService { +public: +void Signal_StateChanged(QLowEnergyService::ServiceState newState){callbackQLowEnergyServiceStateChanged(this->objectName().toUtf8().data(), newState);}; +}; + +void QLowEnergyService_ConnectStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QLowEnergyService::stateChanged), static_cast(ptr), static_cast(&MyQLowEnergyService::Signal_StateChanged));; +} + +void QLowEnergyService_DisconnectStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QLowEnergyService::stateChanged), static_cast(ptr), static_cast(&MyQLowEnergyService::Signal_StateChanged));; +} + +int QLowEnergyService_Contains(QtObjectPtr ptr, QtObjectPtr characteristic){ + return static_cast(ptr)->contains(*static_cast(characteristic)); +} + +int QLowEnergyService_Contains2(QtObjectPtr ptr, QtObjectPtr descriptor){ + return static_cast(ptr)->contains(*static_cast(descriptor)); +} + +void QLowEnergyService_DiscoverDetails(QtObjectPtr ptr){ + static_cast(ptr)->discoverDetails(); +} + +int QLowEnergyService_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +void QLowEnergyService_ReadCharacteristic(QtObjectPtr ptr, QtObjectPtr characteristic){ + static_cast(ptr)->readCharacteristic(*static_cast(characteristic)); +} + +void QLowEnergyService_ReadDescriptor(QtObjectPtr ptr, QtObjectPtr descriptor){ + static_cast(ptr)->readDescriptor(*static_cast(descriptor)); +} + +char* QLowEnergyService_ServiceName(QtObjectPtr ptr){ + return static_cast(ptr)->serviceName().toUtf8().data(); +} + +int QLowEnergyService_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QLowEnergyService_WriteCharacteristic(QtObjectPtr ptr, QtObjectPtr characteristic, QtObjectPtr newValue, int mode){ + static_cast(ptr)->writeCharacteristic(*static_cast(characteristic), *static_cast(newValue), static_cast(mode)); +} + +void QLowEnergyService_WriteDescriptor(QtObjectPtr ptr, QtObjectPtr descriptor, QtObjectPtr newValue){ + static_cast(ptr)->writeDescriptor(*static_cast(descriptor), *static_cast(newValue)); +} + +void QLowEnergyService_DestroyQLowEnergyService(QtObjectPtr ptr){ + static_cast(ptr)->~QLowEnergyService(); +} + diff --git a/bluetooth/qlowenergyservice.go b/bluetooth/qlowenergyservice.go new file mode 100755 index 00000000..0aeb59ef --- /dev/null +++ b/bluetooth/qlowenergyservice.go @@ -0,0 +1,168 @@ +package bluetooth + +//#include "qlowenergyservice.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QLowEnergyService struct { + core.QObject +} + +type QLowEnergyServiceITF interface { + core.QObjectITF + QLowEnergyServicePTR() *QLowEnergyService +} + +func PointerFromQLowEnergyService(ptr QLowEnergyServiceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QLowEnergyServicePTR().Pointer() + } + return nil +} + +func QLowEnergyServiceFromPointer(ptr unsafe.Pointer) *QLowEnergyService { + var n = new(QLowEnergyService) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QLowEnergyService_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QLowEnergyService) QLowEnergyServicePTR() *QLowEnergyService { + return ptr +} + +//QLowEnergyService::ServiceError +type QLowEnergyService__ServiceError int + +var ( + QLowEnergyService__NoError = QLowEnergyService__ServiceError(0) + QLowEnergyService__OperationError = QLowEnergyService__ServiceError(1) + QLowEnergyService__CharacteristicWriteError = QLowEnergyService__ServiceError(2) + QLowEnergyService__DescriptorWriteError = QLowEnergyService__ServiceError(3) + QLowEnergyService__UnknownError = QLowEnergyService__ServiceError(4) + QLowEnergyService__CharacteristicReadError = QLowEnergyService__ServiceError(5) + QLowEnergyService__DescriptorReadError = QLowEnergyService__ServiceError(6) +) + +//QLowEnergyService::ServiceState +type QLowEnergyService__ServiceState int + +var ( + QLowEnergyService__InvalidService = QLowEnergyService__ServiceState(0) + QLowEnergyService__DiscoveryRequired = QLowEnergyService__ServiceState(1) + QLowEnergyService__DiscoveringServices = QLowEnergyService__ServiceState(2) + QLowEnergyService__ServiceDiscovered = QLowEnergyService__ServiceState(3) +) + +//QLowEnergyService::ServiceType +type QLowEnergyService__ServiceType int + +var ( + QLowEnergyService__PrimaryService = QLowEnergyService__ServiceType(0x0001) + QLowEnergyService__IncludedService = QLowEnergyService__ServiceType(0x0002) +) + +//QLowEnergyService::WriteMode +type QLowEnergyService__WriteMode int + +var ( + QLowEnergyService__WriteWithResponse = QLowEnergyService__WriteMode(0) + QLowEnergyService__WriteWithoutResponse = QLowEnergyService__WriteMode(1) +) + +func (ptr *QLowEnergyService) ConnectStateChanged(f func(newState QLowEnergyService__ServiceState)) { + if ptr.Pointer() != nil { + C.QLowEnergyService_ConnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stateChanged", f) + } +} + +func (ptr *QLowEnergyService) DisconnectStateChanged() { + if ptr.Pointer() != nil { + C.QLowEnergyService_DisconnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stateChanged") + } +} + +//export callbackQLowEnergyServiceStateChanged +func callbackQLowEnergyServiceStateChanged(ptrName *C.char, newState C.int) { + qt.GetSignal(C.GoString(ptrName), "stateChanged").(func(QLowEnergyService__ServiceState))(QLowEnergyService__ServiceState(newState)) +} + +func (ptr *QLowEnergyService) Contains(characteristic QLowEnergyCharacteristicITF) bool { + if ptr.Pointer() != nil { + return C.QLowEnergyService_Contains(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLowEnergyCharacteristic(characteristic))) != 0 + } + return false +} + +func (ptr *QLowEnergyService) Contains2(descriptor QLowEnergyDescriptorITF) bool { + if ptr.Pointer() != nil { + return C.QLowEnergyService_Contains2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLowEnergyDescriptor(descriptor))) != 0 + } + return false +} + +func (ptr *QLowEnergyService) DiscoverDetails() { + if ptr.Pointer() != nil { + C.QLowEnergyService_DiscoverDetails(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QLowEnergyService) Error() QLowEnergyService__ServiceError { + if ptr.Pointer() != nil { + return QLowEnergyService__ServiceError(C.QLowEnergyService_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLowEnergyService) ReadCharacteristic(characteristic QLowEnergyCharacteristicITF) { + if ptr.Pointer() != nil { + C.QLowEnergyService_ReadCharacteristic(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLowEnergyCharacteristic(characteristic))) + } +} + +func (ptr *QLowEnergyService) ReadDescriptor(descriptor QLowEnergyDescriptorITF) { + if ptr.Pointer() != nil { + C.QLowEnergyService_ReadDescriptor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLowEnergyDescriptor(descriptor))) + } +} + +func (ptr *QLowEnergyService) ServiceName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QLowEnergyService_ServiceName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QLowEnergyService) Type() QLowEnergyService__ServiceType { + if ptr.Pointer() != nil { + return QLowEnergyService__ServiceType(C.QLowEnergyService_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLowEnergyService) WriteCharacteristic(characteristic QLowEnergyCharacteristicITF, newValue core.QByteArrayITF, mode QLowEnergyService__WriteMode) { + if ptr.Pointer() != nil { + C.QLowEnergyService_WriteCharacteristic(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLowEnergyCharacteristic(characteristic)), C.QtObjectPtr(core.PointerFromQByteArray(newValue)), C.int(mode)) + } +} + +func (ptr *QLowEnergyService) WriteDescriptor(descriptor QLowEnergyDescriptorITF, newValue core.QByteArrayITF) { + if ptr.Pointer() != nil { + C.QLowEnergyService_WriteDescriptor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLowEnergyDescriptor(descriptor)), C.QtObjectPtr(core.PointerFromQByteArray(newValue))) + } +} + +func (ptr *QLowEnergyService) DestroyQLowEnergyService() { + if ptr.Pointer() != nil { + C.QLowEnergyService_DestroyQLowEnergyService(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/bluetooth/qlowenergyservice.h b/bluetooth/qlowenergyservice.h new file mode 100755 index 00000000..7b84c503 --- /dev/null +++ b/bluetooth/qlowenergyservice.h @@ -0,0 +1,22 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QLowEnergyService_ConnectStateChanged(QtObjectPtr ptr); +void QLowEnergyService_DisconnectStateChanged(QtObjectPtr ptr); +int QLowEnergyService_Contains(QtObjectPtr ptr, QtObjectPtr characteristic); +int QLowEnergyService_Contains2(QtObjectPtr ptr, QtObjectPtr descriptor); +void QLowEnergyService_DiscoverDetails(QtObjectPtr ptr); +int QLowEnergyService_Error(QtObjectPtr ptr); +void QLowEnergyService_ReadCharacteristic(QtObjectPtr ptr, QtObjectPtr characteristic); +void QLowEnergyService_ReadDescriptor(QtObjectPtr ptr, QtObjectPtr descriptor); +char* QLowEnergyService_ServiceName(QtObjectPtr ptr); +int QLowEnergyService_Type(QtObjectPtr ptr); +void QLowEnergyService_WriteCharacteristic(QtObjectPtr ptr, QtObjectPtr characteristic, QtObjectPtr newValue, int mode); +void QLowEnergyService_WriteDescriptor(QtObjectPtr ptr, QtObjectPtr descriptor, QtObjectPtr newValue); +void QLowEnergyService_DestroyQLowEnergyService(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/cgo_darwin_amd64.go b/cgo_darwin_amd64.go deleted file mode 100644 index d378f1b4..00000000 --- a/cgo_darwin_amd64.go +++ /dev/null @@ -1,13 +0,0 @@ -package qt - -/* -#cgo CPPFLAGS: -pipe -O2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk -mmacosx-version-min=10.6 -Wall -W -#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_WIDGETS_LIB -#cgo CPPFLAGS: -I/usr/local/qt/5.4/clang_64/mkspecs/macx-clang -F/usr/local/qt/5.4/clang_64/lib -#cgo CPPFLAGS: -I/usr/local/qt/5.4/clang_64/lib/QtGui.framework/Versions/5/Headers -I/usr/local/qt/5.4/clang_64/lib/QtCore.framework/Versions/5/Headers -I/usr/local/qt/5.4/clang_64/lib/QtWidgets.framework/Versions/5/Headers -#cgo CPPFLAGS: -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk/System/Library/Frameworks/OpenGL.framework/Versions/A/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk/System/Library/Frameworks/AGL.framework/Headers - -#cgo LDFLAGS: -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk -mmacosx-version-min=10.6 -#cgo LDFLAGS: -F/usr/local/qt/5.4/clang_64/lib -framework QtGui -framework QtCore -framework QtWidgets -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL -*/ -import "C" diff --git a/cgo_linux_386.go b/cgo_linux_386.go deleted file mode 100644 index cb05d2f3..00000000 --- a/cgo_linux_386.go +++ /dev/null @@ -1,12 +0,0 @@ -package qt - -/* -#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT -#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_WIDGETS_LIB -#cgo CPPFLAGS: -I/usr/local/Qt5.4.0/5.4/gcc/include -I/usr/local/Qt5.4.0/5.4/gcc/mkspecs/linux-g++ -#cgo CPPFLAGS: -I/usr/local/Qt5.4.0/5.4/gcc/include/QtGui -I/usr/local/Qt5.4.0/5.4/gcc/include/QtCore -I/usr/local/Qt5.4.0/5.4/gcc/include/QtWidgets - -#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.4.0/5.4/gcc -Wl,-rpath,/usr/local/Qt5.4.0/5.4/gcc/lib -#cgo LDFLAGS: -L/usr/local/Qt5.4.0/5.4/gcc/lib -lQt5Gui -lQt5Core -lQt5Widgets -lpthread -*/ -import "C" diff --git a/cgo_linux_amd64.go b/cgo_linux_amd64.go deleted file mode 100644 index 9c2fd977..00000000 --- a/cgo_linux_amd64.go +++ /dev/null @@ -1,12 +0,0 @@ -package qt - -/* -#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT -#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_WIDGETS_LIB -#cgo CPPFLAGS: -I/usr/local/Qt5.4.0/5.4/gcc_64/include -I/usr/local/Qt5.4.0/5.4/gcc_64/mkspecs/linux-g++ -#cgo CPPFLAGS: -I/usr/local/Qt5.4.0/5.4/gcc_64/include/QtGui -I/usr/local/Qt5.4.0/5.4/gcc_64/include/QtCore -I/usr/local/Qt5.4.0/5.4/gcc_64/include/QtWidgets - -#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.4.0/5.4/gcc_64 -Wl,-rpath,/usr/local/Qt5.4.0/5.4/gcc_64/lib -#cgo LDFLAGS: -L/usr/local/Qt5.4.0/5.4/gcc_64/lib -lQt5Gui -lQt5Core -lQt5Widgets -lpthread -*/ -import "C" diff --git a/cgo_windows_386.go b/cgo_windows_386.go deleted file mode 100644 index d95205ea..00000000 --- a/cgo_windows_386.go +++ /dev/null @@ -1,12 +0,0 @@ -package qt - -/* -#cgo CPPFLAGS: -pipe -fno-keep-inline-dllexport -O2 -Wall -Wextra -fexceptions -mthreads -#cgo CPPFLAGS: -DUNICODE -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_WIDGETS_LIB -#cgo CPPFLAGS: -IC:/Qt/Qt5.4.0/5.4/mingw491_32/include -IC:/Qt/Qt5.4.0/5.4/mingw491_32/mkspecs/win32-g++ -#cgo CPPFLAGS: -IC:/Qt/Qt5.4.0/5.4/mingw491_32/include/QtGui -IC:/Qt/Qt5.4.0/5.4/mingw491_32/include/QtCore -IC:/Qt/Qt5.4.0/5.4/mingw491_32/include/QtWidgets - -#cgo LDFLAGS: -Wl,-s -Wl,-subsystem,windows -mthreads -#cgo LDFLAGS: -LC:/Qt/Qt5.4.0/5.4/mingw491_32/bin -lQt5Gui -lQt5Core -lQt5Widgets -*/ -import "C" diff --git a/cgoexport.h b/cgoexport.h deleted file mode 100644 index 41cac94c..00000000 --- a/cgoexport.h +++ /dev/null @@ -1,3 +0,0 @@ -extern "C" { -#include "_cgo_export.h" -} \ No newline at end of file diff --git a/cgoutil.go b/cgoutil.go old mode 100644 new mode 100755 index 59889c6d..1f1d7f6c --- a/cgoutil.go +++ b/cgoutil.go @@ -9,27 +9,22 @@ import ( "strings" ) -var signalTable = make(map[string]func()) +var signalTable = make(map[string]interface{}) func init() { runtime.LockOSThread() } -func connectSignal(name string, signal string, function func()) { +func ConnectSignal(name string, signal string, function interface{}) { signalTable[name+":"+signal] = function } -func getSignal(name string, signal string) func() { +func GetSignal(name string, signal string) interface{} { if signal == "destroyed" { defer disconnectAllSignals(name) } - - var signalFunction = signalTable[name+":"+signal] - if signalFunction == nil { - return func() {} - } - return signalFunction + return signalTable[name+":"+signal] } -func disconnectSignal(name string, signal string) { +func DisconnectSignal(name string, signal string) { delete(signalTable, name+":"+signal) } @@ -41,7 +36,7 @@ func disconnectAllSignals(name string) { } } -func randomIdentifier() string { +func RandomIdentifier() string { var ( length = 15 b = make([]byte, length) @@ -58,9 +53,9 @@ func DumpSignalTable() { fmt.Println("************ DUMP-SIGNALTABLE ************") } -func goBoolToCInt(b bool) C.int { +func GoBoolToInt(b bool) int { if b { - return C.int(1) + return 1 } - return C.int(0) + return 0 } diff --git a/cgoutil.h b/cgoutil.h old mode 100644 new mode 100755 index bcc8c6ba..50460404 --- a/cgoutil.h +++ b/cgoutil.h @@ -11,4 +11,4 @@ typedef void* QtObjectPtr; } #endif -#endif //__QT_CGOUTIL_H__ \ No newline at end of file +#endif //__QT_CGOUTIL_H__ diff --git a/core/cgo_darwin_amd64.go b/core/cgo_darwin_amd64.go new file mode 100755 index 00000000..3e3cb476 --- /dev/null +++ b/core/cgo_darwin_amd64.go @@ -0,0 +1,13 @@ +package core + +/* +#cgo CPPFLAGS: -pipe -O2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 -Wall -W +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/mkspecs/macx-clang -F/usr/local/Qt5.5.1/5.5/clang_64/lib +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtCore.framework/Headers +#cgo CPPFLAGS: -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.framework/Headers + +#cgo LDFLAGS: -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 +#cgo LDFLAGS: -F/usr/local/Qt5.5.1/5.5/clang_64/lib -framework QtCore -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL +*/ +import "C" diff --git a/core/cgo_linux_386.go b/core/cgo_linux_386.go new file mode 100755 index 00000000..a51b233c --- /dev/null +++ b/core/cgo_linux_386.go @@ -0,0 +1,12 @@ +package core + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include -I/usr/local/Qt5.5.1/5.5/gcc/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include/QtCore + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc/lib -L/usr/lib -lQt5Core -lpthread +*/ +import "C" diff --git a/core/cgo_linux_amd64.go b/core/cgo_linux_amd64.go new file mode 100755 index 00000000..6a15a982 --- /dev/null +++ b/core/cgo_linux_amd64.go @@ -0,0 +1,12 @@ +package core + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include -I/usr/local/Qt5.5.1/5.5/gcc_64/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtCore + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc_64/lib -L/usr/lib64 -lQt5Core -lpthread +*/ +import "C" diff --git a/core/cgo_windows_386.go b/core/cgo_windows_386.go new file mode 100755 index 00000000..cade5251 --- /dev/null +++ b/core/cgo_windows_386.go @@ -0,0 +1,12 @@ +package core + +/* +#cgo CPPFLAGS: -pipe -fno-keep-inline-dllexport -O2 -Wall -Wextra -fexceptions -mthreads +#cgo CPPFLAGS: -DUNICODE -DQT_NO_DEBUG -DQT_CORE_LIB +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include -IC:/Qt/Qt5.5.1/5.5/mingw492_32/mkspecs/win32-g++ +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtCore + +#cgo LDFLAGS: -Wl,-s -Wl,-subsystem,windows -mthreads +#cgo LDFLAGS: -LC:/Qt/Qt5.5.1/5.5/mingw492_32/bin -lQt5Core +*/ +import "C" diff --git a/core/qabstractanimation.cpp b/core/qabstractanimation.cpp new file mode 100755 index 00000000..e4a854af --- /dev/null +++ b/core/qabstractanimation.cpp @@ -0,0 +1,118 @@ +#include "qabstractanimation.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAbstractAnimation: public QAbstractAnimation { +public: +void Signal_CurrentLoopChanged(int currentLoop){callbackQAbstractAnimationCurrentLoopChanged(this->objectName().toUtf8().data(), currentLoop);}; +void Signal_DirectionChanged(QAbstractAnimation::Direction newDirection){callbackQAbstractAnimationDirectionChanged(this->objectName().toUtf8().data(), newDirection);}; +void Signal_Finished(){callbackQAbstractAnimationFinished(this->objectName().toUtf8().data());}; +void Signal_StateChanged(QAbstractAnimation::State newState, QAbstractAnimation::State oldState){callbackQAbstractAnimationStateChanged(this->objectName().toUtf8().data(), newState, oldState);}; +}; + +int QAbstractAnimation_CurrentLoop(QtObjectPtr ptr){ + return static_cast(ptr)->currentLoop(); +} + +int QAbstractAnimation_CurrentTime(QtObjectPtr ptr){ + return static_cast(ptr)->currentTime(); +} + +int QAbstractAnimation_Direction(QtObjectPtr ptr){ + return static_cast(ptr)->direction(); +} + +int QAbstractAnimation_LoopCount(QtObjectPtr ptr){ + return static_cast(ptr)->loopCount(); +} + +void QAbstractAnimation_SetCurrentTime(QtObjectPtr ptr, int msecs){ + QMetaObject::invokeMethod(static_cast(ptr), "setCurrentTime", Q_ARG(int, msecs)); +} + +void QAbstractAnimation_SetDirection(QtObjectPtr ptr, int direction){ + static_cast(ptr)->setDirection(static_cast(direction)); +} + +void QAbstractAnimation_SetLoopCount(QtObjectPtr ptr, int loopCount){ + static_cast(ptr)->setLoopCount(loopCount); +} + +void QAbstractAnimation_ConnectCurrentLoopChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractAnimation::currentLoopChanged), static_cast(ptr), static_cast(&MyQAbstractAnimation::Signal_CurrentLoopChanged));; +} + +void QAbstractAnimation_DisconnectCurrentLoopChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractAnimation::currentLoopChanged), static_cast(ptr), static_cast(&MyQAbstractAnimation::Signal_CurrentLoopChanged));; +} + +int QAbstractAnimation_CurrentLoopTime(QtObjectPtr ptr){ + return static_cast(ptr)->currentLoopTime(); +} + +void QAbstractAnimation_ConnectDirectionChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractAnimation::directionChanged), static_cast(ptr), static_cast(&MyQAbstractAnimation::Signal_DirectionChanged));; +} + +void QAbstractAnimation_DisconnectDirectionChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractAnimation::directionChanged), static_cast(ptr), static_cast(&MyQAbstractAnimation::Signal_DirectionChanged));; +} + +int QAbstractAnimation_Duration(QtObjectPtr ptr){ + return static_cast(ptr)->duration(); +} + +void QAbstractAnimation_ConnectFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractAnimation::finished), static_cast(ptr), static_cast(&MyQAbstractAnimation::Signal_Finished));; +} + +void QAbstractAnimation_DisconnectFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractAnimation::finished), static_cast(ptr), static_cast(&MyQAbstractAnimation::Signal_Finished));; +} + +QtObjectPtr QAbstractAnimation_Group(QtObjectPtr ptr){ + return static_cast(ptr)->group(); +} + +void QAbstractAnimation_Pause(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "pause"); +} + +void QAbstractAnimation_Resume(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "resume"); +} + +void QAbstractAnimation_SetPaused(QtObjectPtr ptr, int paused){ + QMetaObject::invokeMethod(static_cast(ptr), "setPaused", Q_ARG(bool, paused != 0)); +} + +void QAbstractAnimation_Start(QtObjectPtr ptr, int policy){ + QMetaObject::invokeMethod(static_cast(ptr), "start", Q_ARG(QAbstractAnimation::DeletionPolicy, static_cast(policy))); +} + +void QAbstractAnimation_ConnectStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractAnimation::stateChanged), static_cast(ptr), static_cast(&MyQAbstractAnimation::Signal_StateChanged));; +} + +void QAbstractAnimation_DisconnectStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractAnimation::stateChanged), static_cast(ptr), static_cast(&MyQAbstractAnimation::Signal_StateChanged));; +} + +void QAbstractAnimation_Stop(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "stop"); +} + +int QAbstractAnimation_TotalDuration(QtObjectPtr ptr){ + return static_cast(ptr)->totalDuration(); +} + +void QAbstractAnimation_DestroyQAbstractAnimation(QtObjectPtr ptr){ + static_cast(ptr)->~QAbstractAnimation(); +} + diff --git a/core/qabstractanimation.go b/core/qabstractanimation.go new file mode 100755 index 00000000..12d5c815 --- /dev/null +++ b/core/qabstractanimation.go @@ -0,0 +1,249 @@ +package core + +//#include "qabstractanimation.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QAbstractAnimation struct { + QObject +} + +type QAbstractAnimationITF interface { + QObjectITF + QAbstractAnimationPTR() *QAbstractAnimation +} + +func PointerFromQAbstractAnimation(ptr QAbstractAnimationITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractAnimationPTR().Pointer() + } + return nil +} + +func QAbstractAnimationFromPointer(ptr unsafe.Pointer) *QAbstractAnimation { + var n = new(QAbstractAnimation) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAbstractAnimation_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAbstractAnimation) QAbstractAnimationPTR() *QAbstractAnimation { + return ptr +} + +//QAbstractAnimation::DeletionPolicy +type QAbstractAnimation__DeletionPolicy int + +var ( + QAbstractAnimation__KeepWhenStopped = QAbstractAnimation__DeletionPolicy(0) + QAbstractAnimation__DeleteWhenStopped = QAbstractAnimation__DeletionPolicy(1) +) + +//QAbstractAnimation::Direction +type QAbstractAnimation__Direction int + +var ( + QAbstractAnimation__Forward = QAbstractAnimation__Direction(0) + QAbstractAnimation__Backward = QAbstractAnimation__Direction(1) +) + +//QAbstractAnimation::State +type QAbstractAnimation__State int + +var ( + QAbstractAnimation__Stopped = QAbstractAnimation__State(0) + QAbstractAnimation__Paused = QAbstractAnimation__State(1) + QAbstractAnimation__Running = QAbstractAnimation__State(2) +) + +func (ptr *QAbstractAnimation) CurrentLoop() int { + if ptr.Pointer() != nil { + return int(C.QAbstractAnimation_CurrentLoop(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractAnimation) CurrentTime() int { + if ptr.Pointer() != nil { + return int(C.QAbstractAnimation_CurrentTime(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractAnimation) Direction() QAbstractAnimation__Direction { + if ptr.Pointer() != nil { + return QAbstractAnimation__Direction(C.QAbstractAnimation_Direction(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractAnimation) LoopCount() int { + if ptr.Pointer() != nil { + return int(C.QAbstractAnimation_LoopCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractAnimation) SetCurrentTime(msecs int) { + if ptr.Pointer() != nil { + C.QAbstractAnimation_SetCurrentTime(C.QtObjectPtr(ptr.Pointer()), C.int(msecs)) + } +} + +func (ptr *QAbstractAnimation) SetDirection(direction QAbstractAnimation__Direction) { + if ptr.Pointer() != nil { + C.QAbstractAnimation_SetDirection(C.QtObjectPtr(ptr.Pointer()), C.int(direction)) + } +} + +func (ptr *QAbstractAnimation) SetLoopCount(loopCount int) { + if ptr.Pointer() != nil { + C.QAbstractAnimation_SetLoopCount(C.QtObjectPtr(ptr.Pointer()), C.int(loopCount)) + } +} + +func (ptr *QAbstractAnimation) ConnectCurrentLoopChanged(f func(currentLoop int)) { + if ptr.Pointer() != nil { + C.QAbstractAnimation_ConnectCurrentLoopChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "currentLoopChanged", f) + } +} + +func (ptr *QAbstractAnimation) DisconnectCurrentLoopChanged() { + if ptr.Pointer() != nil { + C.QAbstractAnimation_DisconnectCurrentLoopChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "currentLoopChanged") + } +} + +//export callbackQAbstractAnimationCurrentLoopChanged +func callbackQAbstractAnimationCurrentLoopChanged(ptrName *C.char, currentLoop C.int) { + qt.GetSignal(C.GoString(ptrName), "currentLoopChanged").(func(int))(int(currentLoop)) +} + +func (ptr *QAbstractAnimation) CurrentLoopTime() int { + if ptr.Pointer() != nil { + return int(C.QAbstractAnimation_CurrentLoopTime(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractAnimation) ConnectDirectionChanged(f func(newDirection QAbstractAnimation__Direction)) { + if ptr.Pointer() != nil { + C.QAbstractAnimation_ConnectDirectionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "directionChanged", f) + } +} + +func (ptr *QAbstractAnimation) DisconnectDirectionChanged() { + if ptr.Pointer() != nil { + C.QAbstractAnimation_DisconnectDirectionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "directionChanged") + } +} + +//export callbackQAbstractAnimationDirectionChanged +func callbackQAbstractAnimationDirectionChanged(ptrName *C.char, newDirection C.int) { + qt.GetSignal(C.GoString(ptrName), "directionChanged").(func(QAbstractAnimation__Direction))(QAbstractAnimation__Direction(newDirection)) +} + +func (ptr *QAbstractAnimation) Duration() int { + if ptr.Pointer() != nil { + return int(C.QAbstractAnimation_Duration(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractAnimation) ConnectFinished(f func()) { + if ptr.Pointer() != nil { + C.QAbstractAnimation_ConnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "finished", f) + } +} + +func (ptr *QAbstractAnimation) DisconnectFinished() { + if ptr.Pointer() != nil { + C.QAbstractAnimation_DisconnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "finished") + } +} + +//export callbackQAbstractAnimationFinished +func callbackQAbstractAnimationFinished(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "finished").(func())() +} + +func (ptr *QAbstractAnimation) Group() *QAnimationGroup { + if ptr.Pointer() != nil { + return QAnimationGroupFromPointer(unsafe.Pointer(C.QAbstractAnimation_Group(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAbstractAnimation) Pause() { + if ptr.Pointer() != nil { + C.QAbstractAnimation_Pause(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractAnimation) Resume() { + if ptr.Pointer() != nil { + C.QAbstractAnimation_Resume(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractAnimation) SetPaused(paused bool) { + if ptr.Pointer() != nil { + C.QAbstractAnimation_SetPaused(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(paused))) + } +} + +func (ptr *QAbstractAnimation) Start(policy QAbstractAnimation__DeletionPolicy) { + if ptr.Pointer() != nil { + C.QAbstractAnimation_Start(C.QtObjectPtr(ptr.Pointer()), C.int(policy)) + } +} + +func (ptr *QAbstractAnimation) ConnectStateChanged(f func(newState QAbstractAnimation__State, oldState QAbstractAnimation__State)) { + if ptr.Pointer() != nil { + C.QAbstractAnimation_ConnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stateChanged", f) + } +} + +func (ptr *QAbstractAnimation) DisconnectStateChanged() { + if ptr.Pointer() != nil { + C.QAbstractAnimation_DisconnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stateChanged") + } +} + +//export callbackQAbstractAnimationStateChanged +func callbackQAbstractAnimationStateChanged(ptrName *C.char, newState C.int, oldState C.int) { + qt.GetSignal(C.GoString(ptrName), "stateChanged").(func(QAbstractAnimation__State, QAbstractAnimation__State))(QAbstractAnimation__State(newState), QAbstractAnimation__State(oldState)) +} + +func (ptr *QAbstractAnimation) Stop() { + if ptr.Pointer() != nil { + C.QAbstractAnimation_Stop(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractAnimation) TotalDuration() int { + if ptr.Pointer() != nil { + return int(C.QAbstractAnimation_TotalDuration(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractAnimation) DestroyQAbstractAnimation() { + if ptr.Pointer() != nil { + C.QAbstractAnimation_DestroyQAbstractAnimation(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qabstractanimation.h b/core/qabstractanimation.h new file mode 100755 index 00000000..3a39000c --- /dev/null +++ b/core/qabstractanimation.h @@ -0,0 +1,34 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QAbstractAnimation_CurrentLoop(QtObjectPtr ptr); +int QAbstractAnimation_CurrentTime(QtObjectPtr ptr); +int QAbstractAnimation_Direction(QtObjectPtr ptr); +int QAbstractAnimation_LoopCount(QtObjectPtr ptr); +void QAbstractAnimation_SetCurrentTime(QtObjectPtr ptr, int msecs); +void QAbstractAnimation_SetDirection(QtObjectPtr ptr, int direction); +void QAbstractAnimation_SetLoopCount(QtObjectPtr ptr, int loopCount); +void QAbstractAnimation_ConnectCurrentLoopChanged(QtObjectPtr ptr); +void QAbstractAnimation_DisconnectCurrentLoopChanged(QtObjectPtr ptr); +int QAbstractAnimation_CurrentLoopTime(QtObjectPtr ptr); +void QAbstractAnimation_ConnectDirectionChanged(QtObjectPtr ptr); +void QAbstractAnimation_DisconnectDirectionChanged(QtObjectPtr ptr); +int QAbstractAnimation_Duration(QtObjectPtr ptr); +void QAbstractAnimation_ConnectFinished(QtObjectPtr ptr); +void QAbstractAnimation_DisconnectFinished(QtObjectPtr ptr); +QtObjectPtr QAbstractAnimation_Group(QtObjectPtr ptr); +void QAbstractAnimation_Pause(QtObjectPtr ptr); +void QAbstractAnimation_Resume(QtObjectPtr ptr); +void QAbstractAnimation_SetPaused(QtObjectPtr ptr, int paused); +void QAbstractAnimation_Start(QtObjectPtr ptr, int policy); +void QAbstractAnimation_ConnectStateChanged(QtObjectPtr ptr); +void QAbstractAnimation_DisconnectStateChanged(QtObjectPtr ptr); +void QAbstractAnimation_Stop(QtObjectPtr ptr); +int QAbstractAnimation_TotalDuration(QtObjectPtr ptr); +void QAbstractAnimation_DestroyQAbstractAnimation(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qabstracteventdispatcher.cpp b/core/qabstracteventdispatcher.cpp new file mode 100755 index 00000000..a5ff3a8a --- /dev/null +++ b/core/qabstracteventdispatcher.cpp @@ -0,0 +1,88 @@ +#include "qabstracteventdispatcher.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAbstractEventDispatcher: public QAbstractEventDispatcher { +public: +void Signal_AboutToBlock(){callbackQAbstractEventDispatcherAboutToBlock(this->objectName().toUtf8().data());}; +void Signal_Awake(){callbackQAbstractEventDispatcherAwake(this->objectName().toUtf8().data());}; +}; + +void QAbstractEventDispatcher_ConnectAboutToBlock(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractEventDispatcher::aboutToBlock), static_cast(ptr), static_cast(&MyQAbstractEventDispatcher::Signal_AboutToBlock));; +} + +void QAbstractEventDispatcher_DisconnectAboutToBlock(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractEventDispatcher::aboutToBlock), static_cast(ptr), static_cast(&MyQAbstractEventDispatcher::Signal_AboutToBlock));; +} + +void QAbstractEventDispatcher_ConnectAwake(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractEventDispatcher::awake), static_cast(ptr), static_cast(&MyQAbstractEventDispatcher::Signal_Awake));; +} + +void QAbstractEventDispatcher_DisconnectAwake(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractEventDispatcher::awake), static_cast(ptr), static_cast(&MyQAbstractEventDispatcher::Signal_Awake));; +} + +void QAbstractEventDispatcher_Flush(QtObjectPtr ptr){ + static_cast(ptr)->flush(); +} + +void QAbstractEventDispatcher_InstallNativeEventFilter(QtObjectPtr ptr, QtObjectPtr filterObj){ + static_cast(ptr)->installNativeEventFilter(static_cast(filterObj)); +} + +QtObjectPtr QAbstractEventDispatcher_QAbstractEventDispatcher_Instance(QtObjectPtr thread){ + return QAbstractEventDispatcher::instance(static_cast(thread)); +} + +void QAbstractEventDispatcher_Interrupt(QtObjectPtr ptr){ + static_cast(ptr)->interrupt(); +} + +int QAbstractEventDispatcher_ProcessEvents(QtObjectPtr ptr, int flags){ + return static_cast(ptr)->processEvents(static_cast(flags)); +} + +void QAbstractEventDispatcher_RegisterSocketNotifier(QtObjectPtr ptr, QtObjectPtr notifier){ + static_cast(ptr)->registerSocketNotifier(static_cast(notifier)); +} + +int QAbstractEventDispatcher_RemainingTime(QtObjectPtr ptr, int timerId){ + return static_cast(ptr)->remainingTime(timerId); +} + +void QAbstractEventDispatcher_RemoveNativeEventFilter(QtObjectPtr ptr, QtObjectPtr filter){ + static_cast(ptr)->removeNativeEventFilter(static_cast(filter)); +} + +void QAbstractEventDispatcher_UnregisterSocketNotifier(QtObjectPtr ptr, QtObjectPtr notifier){ + static_cast(ptr)->unregisterSocketNotifier(static_cast(notifier)); +} + +int QAbstractEventDispatcher_UnregisterTimer(QtObjectPtr ptr, int timerId){ + return static_cast(ptr)->unregisterTimer(timerId); +} + +int QAbstractEventDispatcher_UnregisterTimers(QtObjectPtr ptr, QtObjectPtr object){ + return static_cast(ptr)->unregisterTimers(static_cast(object)); +} + +void QAbstractEventDispatcher_WakeUp(QtObjectPtr ptr){ + static_cast(ptr)->wakeUp(); +} + +void QAbstractEventDispatcher_DestroyQAbstractEventDispatcher(QtObjectPtr ptr){ + static_cast(ptr)->~QAbstractEventDispatcher(); +} + diff --git a/core/qabstracteventdispatcher.go b/core/qabstracteventdispatcher.go new file mode 100755 index 00000000..d8d54fbc --- /dev/null +++ b/core/qabstracteventdispatcher.go @@ -0,0 +1,156 @@ +package core + +//#include "qabstracteventdispatcher.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QAbstractEventDispatcher struct { + QObject +} + +type QAbstractEventDispatcherITF interface { + QObjectITF + QAbstractEventDispatcherPTR() *QAbstractEventDispatcher +} + +func PointerFromQAbstractEventDispatcher(ptr QAbstractEventDispatcherITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractEventDispatcherPTR().Pointer() + } + return nil +} + +func QAbstractEventDispatcherFromPointer(ptr unsafe.Pointer) *QAbstractEventDispatcher { + var n = new(QAbstractEventDispatcher) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAbstractEventDispatcher_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAbstractEventDispatcher) QAbstractEventDispatcherPTR() *QAbstractEventDispatcher { + return ptr +} + +func (ptr *QAbstractEventDispatcher) ConnectAboutToBlock(f func()) { + if ptr.Pointer() != nil { + C.QAbstractEventDispatcher_ConnectAboutToBlock(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "aboutToBlock", f) + } +} + +func (ptr *QAbstractEventDispatcher) DisconnectAboutToBlock() { + if ptr.Pointer() != nil { + C.QAbstractEventDispatcher_DisconnectAboutToBlock(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "aboutToBlock") + } +} + +//export callbackQAbstractEventDispatcherAboutToBlock +func callbackQAbstractEventDispatcherAboutToBlock(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "aboutToBlock").(func())() +} + +func (ptr *QAbstractEventDispatcher) ConnectAwake(f func()) { + if ptr.Pointer() != nil { + C.QAbstractEventDispatcher_ConnectAwake(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "awake", f) + } +} + +func (ptr *QAbstractEventDispatcher) DisconnectAwake() { + if ptr.Pointer() != nil { + C.QAbstractEventDispatcher_DisconnectAwake(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "awake") + } +} + +//export callbackQAbstractEventDispatcherAwake +func callbackQAbstractEventDispatcherAwake(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "awake").(func())() +} + +func (ptr *QAbstractEventDispatcher) Flush() { + if ptr.Pointer() != nil { + C.QAbstractEventDispatcher_Flush(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractEventDispatcher) InstallNativeEventFilter(filterObj QAbstractNativeEventFilterITF) { + if ptr.Pointer() != nil { + C.QAbstractEventDispatcher_InstallNativeEventFilter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractNativeEventFilter(filterObj))) + } +} + +func QAbstractEventDispatcher_Instance(thread QThreadITF) *QAbstractEventDispatcher { + return QAbstractEventDispatcherFromPointer(unsafe.Pointer(C.QAbstractEventDispatcher_QAbstractEventDispatcher_Instance(C.QtObjectPtr(PointerFromQThread(thread))))) +} + +func (ptr *QAbstractEventDispatcher) Interrupt() { + if ptr.Pointer() != nil { + C.QAbstractEventDispatcher_Interrupt(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractEventDispatcher) ProcessEvents(flags QEventLoop__ProcessEventsFlag) bool { + if ptr.Pointer() != nil { + return C.QAbstractEventDispatcher_ProcessEvents(C.QtObjectPtr(ptr.Pointer()), C.int(flags)) != 0 + } + return false +} + +func (ptr *QAbstractEventDispatcher) RegisterSocketNotifier(notifier QSocketNotifierITF) { + if ptr.Pointer() != nil { + C.QAbstractEventDispatcher_RegisterSocketNotifier(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSocketNotifier(notifier))) + } +} + +func (ptr *QAbstractEventDispatcher) RemainingTime(timerId int) int { + if ptr.Pointer() != nil { + return int(C.QAbstractEventDispatcher_RemainingTime(C.QtObjectPtr(ptr.Pointer()), C.int(timerId))) + } + return 0 +} + +func (ptr *QAbstractEventDispatcher) RemoveNativeEventFilter(filter QAbstractNativeEventFilterITF) { + if ptr.Pointer() != nil { + C.QAbstractEventDispatcher_RemoveNativeEventFilter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractNativeEventFilter(filter))) + } +} + +func (ptr *QAbstractEventDispatcher) UnregisterSocketNotifier(notifier QSocketNotifierITF) { + if ptr.Pointer() != nil { + C.QAbstractEventDispatcher_UnregisterSocketNotifier(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSocketNotifier(notifier))) + } +} + +func (ptr *QAbstractEventDispatcher) UnregisterTimer(timerId int) bool { + if ptr.Pointer() != nil { + return C.QAbstractEventDispatcher_UnregisterTimer(C.QtObjectPtr(ptr.Pointer()), C.int(timerId)) != 0 + } + return false +} + +func (ptr *QAbstractEventDispatcher) UnregisterTimers(object QObjectITF) bool { + if ptr.Pointer() != nil { + return C.QAbstractEventDispatcher_UnregisterTimers(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(object))) != 0 + } + return false +} + +func (ptr *QAbstractEventDispatcher) WakeUp() { + if ptr.Pointer() != nil { + C.QAbstractEventDispatcher_WakeUp(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractEventDispatcher) DestroyQAbstractEventDispatcher() { + if ptr.Pointer() != nil { + C.QAbstractEventDispatcher_DestroyQAbstractEventDispatcher(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qabstracteventdispatcher.h b/core/qabstracteventdispatcher.h new file mode 100755 index 00000000..460aaa47 --- /dev/null +++ b/core/qabstracteventdispatcher.h @@ -0,0 +1,26 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QAbstractEventDispatcher_ConnectAboutToBlock(QtObjectPtr ptr); +void QAbstractEventDispatcher_DisconnectAboutToBlock(QtObjectPtr ptr); +void QAbstractEventDispatcher_ConnectAwake(QtObjectPtr ptr); +void QAbstractEventDispatcher_DisconnectAwake(QtObjectPtr ptr); +void QAbstractEventDispatcher_Flush(QtObjectPtr ptr); +void QAbstractEventDispatcher_InstallNativeEventFilter(QtObjectPtr ptr, QtObjectPtr filterObj); +QtObjectPtr QAbstractEventDispatcher_QAbstractEventDispatcher_Instance(QtObjectPtr thread); +void QAbstractEventDispatcher_Interrupt(QtObjectPtr ptr); +int QAbstractEventDispatcher_ProcessEvents(QtObjectPtr ptr, int flags); +void QAbstractEventDispatcher_RegisterSocketNotifier(QtObjectPtr ptr, QtObjectPtr notifier); +int QAbstractEventDispatcher_RemainingTime(QtObjectPtr ptr, int timerId); +void QAbstractEventDispatcher_RemoveNativeEventFilter(QtObjectPtr ptr, QtObjectPtr filter); +void QAbstractEventDispatcher_UnregisterSocketNotifier(QtObjectPtr ptr, QtObjectPtr notifier); +int QAbstractEventDispatcher_UnregisterTimer(QtObjectPtr ptr, int timerId); +int QAbstractEventDispatcher_UnregisterTimers(QtObjectPtr ptr, QtObjectPtr object); +void QAbstractEventDispatcher_WakeUp(QtObjectPtr ptr); +void QAbstractEventDispatcher_DestroyQAbstractEventDispatcher(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qabstractitemmodel.cpp b/core/qabstractitemmodel.cpp new file mode 100755 index 00000000..63cce8a7 --- /dev/null +++ b/core/qabstractitemmodel.cpp @@ -0,0 +1,294 @@ +#include "qabstractitemmodel.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAbstractItemModel: public QAbstractItemModel { +public: +void Signal_ColumnsAboutToBeInserted(const QModelIndex & parent, int first, int last){callbackQAbstractItemModelColumnsAboutToBeInserted(this->objectName().toUtf8().data(), parent.internalPointer(), first, last);}; +void Signal_ColumnsAboutToBeMoved(const QModelIndex & sourceParent, int sourceStart, int sourceEnd, const QModelIndex & destinationParent, int destinationColumn){callbackQAbstractItemModelColumnsAboutToBeMoved(this->objectName().toUtf8().data(), sourceParent.internalPointer(), sourceStart, sourceEnd, destinationParent.internalPointer(), destinationColumn);}; +void Signal_ColumnsAboutToBeRemoved(const QModelIndex & parent, int first, int last){callbackQAbstractItemModelColumnsAboutToBeRemoved(this->objectName().toUtf8().data(), parent.internalPointer(), first, last);}; +void Signal_ColumnsInserted(const QModelIndex & parent, int first, int last){callbackQAbstractItemModelColumnsInserted(this->objectName().toUtf8().data(), parent.internalPointer(), first, last);}; +void Signal_ColumnsMoved(const QModelIndex & parent, int start, int end, const QModelIndex & destination, int column){callbackQAbstractItemModelColumnsMoved(this->objectName().toUtf8().data(), parent.internalPointer(), start, end, destination.internalPointer(), column);}; +void Signal_ColumnsRemoved(const QModelIndex & parent, int first, int last){callbackQAbstractItemModelColumnsRemoved(this->objectName().toUtf8().data(), parent.internalPointer(), first, last);}; +void Signal_HeaderDataChanged(Qt::Orientation orientation, int first, int last){callbackQAbstractItemModelHeaderDataChanged(this->objectName().toUtf8().data(), orientation, first, last);}; +void Signal_ModelAboutToBeReset(){callbackQAbstractItemModelModelAboutToBeReset(this->objectName().toUtf8().data());}; +void Signal_ModelReset(){callbackQAbstractItemModelModelReset(this->objectName().toUtf8().data());}; +void Signal_RowsAboutToBeInserted(const QModelIndex & parent, int start, int end){callbackQAbstractItemModelRowsAboutToBeInserted(this->objectName().toUtf8().data(), parent.internalPointer(), start, end);}; +void Signal_RowsAboutToBeMoved(const QModelIndex & sourceParent, int sourceStart, int sourceEnd, const QModelIndex & destinationParent, int destinationRow){callbackQAbstractItemModelRowsAboutToBeMoved(this->objectName().toUtf8().data(), sourceParent.internalPointer(), sourceStart, sourceEnd, destinationParent.internalPointer(), destinationRow);}; +void Signal_RowsAboutToBeRemoved(const QModelIndex & parent, int first, int last){callbackQAbstractItemModelRowsAboutToBeRemoved(this->objectName().toUtf8().data(), parent.internalPointer(), first, last);}; +void Signal_RowsInserted(const QModelIndex & parent, int first, int last){callbackQAbstractItemModelRowsInserted(this->objectName().toUtf8().data(), parent.internalPointer(), first, last);}; +void Signal_RowsMoved(const QModelIndex & parent, int start, int end, const QModelIndex & destination, int row){callbackQAbstractItemModelRowsMoved(this->objectName().toUtf8().data(), parent.internalPointer(), start, end, destination.internalPointer(), row);}; +void Signal_RowsRemoved(const QModelIndex & parent, int first, int last){callbackQAbstractItemModelRowsRemoved(this->objectName().toUtf8().data(), parent.internalPointer(), first, last);}; +}; + +QtObjectPtr QAbstractItemModel_Sibling(QtObjectPtr ptr, int row, int column, QtObjectPtr index){ + return static_cast(ptr)->sibling(row, column, *static_cast(index)).internalPointer(); +} + +QtObjectPtr QAbstractItemModel_Buddy(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->buddy(*static_cast(index)).internalPointer(); +} + +int QAbstractItemModel_CanDropMimeData(QtObjectPtr ptr, QtObjectPtr data, int action, int row, int column, QtObjectPtr parent){ + return static_cast(ptr)->canDropMimeData(static_cast(data), static_cast(action), row, column, *static_cast(parent)); +} + +int QAbstractItemModel_CanFetchMore(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->canFetchMore(*static_cast(parent)); +} + +int QAbstractItemModel_ColumnCount(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->columnCount(*static_cast(parent)); +} + +void QAbstractItemModel_ConnectColumnsAboutToBeInserted(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QAbstractItemModel::columnsAboutToBeInserted, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_ColumnsAboutToBeInserted));; +} + +void QAbstractItemModel_DisconnectColumnsAboutToBeInserted(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QAbstractItemModel::columnsAboutToBeInserted, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_ColumnsAboutToBeInserted));; +} + +void QAbstractItemModel_ConnectColumnsAboutToBeMoved(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QAbstractItemModel::columnsAboutToBeMoved, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_ColumnsAboutToBeMoved));; +} + +void QAbstractItemModel_DisconnectColumnsAboutToBeMoved(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QAbstractItemModel::columnsAboutToBeMoved, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_ColumnsAboutToBeMoved));; +} + +void QAbstractItemModel_ConnectColumnsAboutToBeRemoved(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QAbstractItemModel::columnsAboutToBeRemoved, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_ColumnsAboutToBeRemoved));; +} + +void QAbstractItemModel_DisconnectColumnsAboutToBeRemoved(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QAbstractItemModel::columnsAboutToBeRemoved, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_ColumnsAboutToBeRemoved));; +} + +void QAbstractItemModel_ConnectColumnsInserted(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QAbstractItemModel::columnsInserted, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_ColumnsInserted));; +} + +void QAbstractItemModel_DisconnectColumnsInserted(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QAbstractItemModel::columnsInserted, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_ColumnsInserted));; +} + +void QAbstractItemModel_ConnectColumnsMoved(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QAbstractItemModel::columnsMoved, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_ColumnsMoved));; +} + +void QAbstractItemModel_DisconnectColumnsMoved(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QAbstractItemModel::columnsMoved, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_ColumnsMoved));; +} + +void QAbstractItemModel_ConnectColumnsRemoved(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QAbstractItemModel::columnsRemoved, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_ColumnsRemoved));; +} + +void QAbstractItemModel_DisconnectColumnsRemoved(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QAbstractItemModel::columnsRemoved, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_ColumnsRemoved));; +} + +char* QAbstractItemModel_Data(QtObjectPtr ptr, QtObjectPtr index, int role){ + return static_cast(ptr)->data(*static_cast(index), role).toString().toUtf8().data(); +} + +int QAbstractItemModel_DropMimeData(QtObjectPtr ptr, QtObjectPtr data, int action, int row, int column, QtObjectPtr parent){ + return static_cast(ptr)->dropMimeData(static_cast(data), static_cast(action), row, column, *static_cast(parent)); +} + +void QAbstractItemModel_FetchMore(QtObjectPtr ptr, QtObjectPtr parent){ + static_cast(ptr)->fetchMore(*static_cast(parent)); +} + +int QAbstractItemModel_Flags(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->flags(*static_cast(index)); +} + +int QAbstractItemModel_HasChildren(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->hasChildren(*static_cast(parent)); +} + +int QAbstractItemModel_HasIndex(QtObjectPtr ptr, int row, int column, QtObjectPtr parent){ + return static_cast(ptr)->hasIndex(row, column, *static_cast(parent)); +} + +char* QAbstractItemModel_HeaderData(QtObjectPtr ptr, int section, int orientation, int role){ + return static_cast(ptr)->headerData(section, static_cast(orientation), role).toString().toUtf8().data(); +} + +void QAbstractItemModel_ConnectHeaderDataChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractItemModel::headerDataChanged), static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_HeaderDataChanged));; +} + +void QAbstractItemModel_DisconnectHeaderDataChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractItemModel::headerDataChanged), static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_HeaderDataChanged));; +} + +QtObjectPtr QAbstractItemModel_Index(QtObjectPtr ptr, int row, int column, QtObjectPtr parent){ + return static_cast(ptr)->index(row, column, *static_cast(parent)).internalPointer(); +} + +int QAbstractItemModel_InsertColumn(QtObjectPtr ptr, int column, QtObjectPtr parent){ + return static_cast(ptr)->insertColumn(column, *static_cast(parent)); +} + +int QAbstractItemModel_InsertColumns(QtObjectPtr ptr, int column, int count, QtObjectPtr parent){ + return static_cast(ptr)->insertColumns(column, count, *static_cast(parent)); +} + +int QAbstractItemModel_InsertRow(QtObjectPtr ptr, int row, QtObjectPtr parent){ + return static_cast(ptr)->insertRow(row, *static_cast(parent)); +} + +int QAbstractItemModel_InsertRows(QtObjectPtr ptr, int row, int count, QtObjectPtr parent){ + return static_cast(ptr)->insertRows(row, count, *static_cast(parent)); +} + +char* QAbstractItemModel_MimeTypes(QtObjectPtr ptr){ + return static_cast(ptr)->mimeTypes().join("|").toUtf8().data(); +} + +void QAbstractItemModel_ConnectModelAboutToBeReset(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QAbstractItemModel::modelAboutToBeReset, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_ModelAboutToBeReset));; +} + +void QAbstractItemModel_DisconnectModelAboutToBeReset(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QAbstractItemModel::modelAboutToBeReset, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_ModelAboutToBeReset));; +} + +void QAbstractItemModel_ConnectModelReset(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QAbstractItemModel::modelReset, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_ModelReset));; +} + +void QAbstractItemModel_DisconnectModelReset(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QAbstractItemModel::modelReset, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_ModelReset));; +} + +int QAbstractItemModel_MoveColumn(QtObjectPtr ptr, QtObjectPtr sourceParent, int sourceColumn, QtObjectPtr destinationParent, int destinationChild){ + return static_cast(ptr)->moveColumn(*static_cast(sourceParent), sourceColumn, *static_cast(destinationParent), destinationChild); +} + +int QAbstractItemModel_MoveColumns(QtObjectPtr ptr, QtObjectPtr sourceParent, int sourceColumn, int count, QtObjectPtr destinationParent, int destinationChild){ + return static_cast(ptr)->moveColumns(*static_cast(sourceParent), sourceColumn, count, *static_cast(destinationParent), destinationChild); +} + +int QAbstractItemModel_MoveRow(QtObjectPtr ptr, QtObjectPtr sourceParent, int sourceRow, QtObjectPtr destinationParent, int destinationChild){ + return static_cast(ptr)->moveRow(*static_cast(sourceParent), sourceRow, *static_cast(destinationParent), destinationChild); +} + +int QAbstractItemModel_MoveRows(QtObjectPtr ptr, QtObjectPtr sourceParent, int sourceRow, int count, QtObjectPtr destinationParent, int destinationChild){ + return static_cast(ptr)->moveRows(*static_cast(sourceParent), sourceRow, count, *static_cast(destinationParent), destinationChild); +} + +QtObjectPtr QAbstractItemModel_Parent(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->parent(*static_cast(index)).internalPointer(); +} + +int QAbstractItemModel_RemoveColumn(QtObjectPtr ptr, int column, QtObjectPtr parent){ + return static_cast(ptr)->removeColumn(column, *static_cast(parent)); +} + +int QAbstractItemModel_RemoveColumns(QtObjectPtr ptr, int column, int count, QtObjectPtr parent){ + return static_cast(ptr)->removeColumns(column, count, *static_cast(parent)); +} + +int QAbstractItemModel_RemoveRow(QtObjectPtr ptr, int row, QtObjectPtr parent){ + return static_cast(ptr)->removeRow(row, *static_cast(parent)); +} + +int QAbstractItemModel_RemoveRows(QtObjectPtr ptr, int row, int count, QtObjectPtr parent){ + return static_cast(ptr)->removeRows(row, count, *static_cast(parent)); +} + +void QAbstractItemModel_Revert(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "revert"); +} + +int QAbstractItemModel_RowCount(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->rowCount(*static_cast(parent)); +} + +void QAbstractItemModel_ConnectRowsAboutToBeInserted(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QAbstractItemModel::rowsAboutToBeInserted, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_RowsAboutToBeInserted));; +} + +void QAbstractItemModel_DisconnectRowsAboutToBeInserted(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QAbstractItemModel::rowsAboutToBeInserted, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_RowsAboutToBeInserted));; +} + +void QAbstractItemModel_ConnectRowsAboutToBeMoved(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QAbstractItemModel::rowsAboutToBeMoved, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_RowsAboutToBeMoved));; +} + +void QAbstractItemModel_DisconnectRowsAboutToBeMoved(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QAbstractItemModel::rowsAboutToBeMoved, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_RowsAboutToBeMoved));; +} + +void QAbstractItemModel_ConnectRowsAboutToBeRemoved(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QAbstractItemModel::rowsAboutToBeRemoved, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_RowsAboutToBeRemoved));; +} + +void QAbstractItemModel_DisconnectRowsAboutToBeRemoved(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QAbstractItemModel::rowsAboutToBeRemoved, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_RowsAboutToBeRemoved));; +} + +void QAbstractItemModel_ConnectRowsInserted(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QAbstractItemModel::rowsInserted, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_RowsInserted));; +} + +void QAbstractItemModel_DisconnectRowsInserted(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QAbstractItemModel::rowsInserted, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_RowsInserted));; +} + +void QAbstractItemModel_ConnectRowsMoved(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QAbstractItemModel::rowsMoved, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_RowsMoved));; +} + +void QAbstractItemModel_DisconnectRowsMoved(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QAbstractItemModel::rowsMoved, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_RowsMoved));; +} + +void QAbstractItemModel_ConnectRowsRemoved(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QAbstractItemModel::rowsRemoved, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_RowsRemoved));; +} + +void QAbstractItemModel_DisconnectRowsRemoved(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QAbstractItemModel::rowsRemoved, static_cast(ptr), static_cast(&MyQAbstractItemModel::Signal_RowsRemoved));; +} + +int QAbstractItemModel_SetData(QtObjectPtr ptr, QtObjectPtr index, char* value, int role){ + return static_cast(ptr)->setData(*static_cast(index), QVariant(value), role); +} + +int QAbstractItemModel_SetHeaderData(QtObjectPtr ptr, int section, int orientation, char* value, int role){ + return static_cast(ptr)->setHeaderData(section, static_cast(orientation), QVariant(value), role); +} + +void QAbstractItemModel_Sort(QtObjectPtr ptr, int column, int order){ + static_cast(ptr)->sort(column, static_cast(order)); +} + +int QAbstractItemModel_Submit(QtObjectPtr ptr){ + return QMetaObject::invokeMethod(static_cast(ptr), "submit"); +} + +int QAbstractItemModel_SupportedDragActions(QtObjectPtr ptr){ + return static_cast(ptr)->supportedDragActions(); +} + +int QAbstractItemModel_SupportedDropActions(QtObjectPtr ptr){ + return static_cast(ptr)->supportedDropActions(); +} + +void QAbstractItemModel_DestroyQAbstractItemModel(QtObjectPtr ptr){ + static_cast(ptr)->~QAbstractItemModel(); +} + diff --git a/core/qabstractitemmodel.go b/core/qabstractitemmodel.go new file mode 100755 index 00000000..7c0d53b6 --- /dev/null +++ b/core/qabstractitemmodel.go @@ -0,0 +1,581 @@ +package core + +//#include "qabstractitemmodel.h" +import "C" +import ( + "github.com/therecipe/qt" + "strings" + "unsafe" +) + +type QAbstractItemModel struct { + QObject +} + +type QAbstractItemModelITF interface { + QObjectITF + QAbstractItemModelPTR() *QAbstractItemModel +} + +func PointerFromQAbstractItemModel(ptr QAbstractItemModelITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractItemModelPTR().Pointer() + } + return nil +} + +func QAbstractItemModelFromPointer(ptr unsafe.Pointer) *QAbstractItemModel { + var n = new(QAbstractItemModel) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAbstractItemModel_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAbstractItemModel) QAbstractItemModelPTR() *QAbstractItemModel { + return ptr +} + +//QAbstractItemModel::LayoutChangeHint +type QAbstractItemModel__LayoutChangeHint int + +var ( + QAbstractItemModel__NoLayoutChangeHint = QAbstractItemModel__LayoutChangeHint(0) + QAbstractItemModel__VerticalSortHint = QAbstractItemModel__LayoutChangeHint(1) + QAbstractItemModel__HorizontalSortHint = QAbstractItemModel__LayoutChangeHint(2) +) + +func (ptr *QAbstractItemModel) Sibling(row int, column int, index QModelIndexITF) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QAbstractItemModel_Sibling(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column), C.QtObjectPtr(PointerFromQModelIndex(index))))) + } + return nil +} + +func (ptr *QAbstractItemModel) Buddy(index QModelIndexITF) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QAbstractItemModel_Buddy(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(index))))) + } + return nil +} + +func (ptr *QAbstractItemModel) CanDropMimeData(data QMimeDataITF, action Qt__DropAction, row int, column int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QAbstractItemModel_CanDropMimeData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMimeData(data)), C.int(action), C.int(row), C.int(column), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QAbstractItemModel) CanFetchMore(parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QAbstractItemModel_CanFetchMore(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QAbstractItemModel) ColumnCount(parent QModelIndexITF) int { + if ptr.Pointer() != nil { + return int(C.QAbstractItemModel_ColumnCount(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(parent)))) + } + return 0 +} + +func (ptr *QAbstractItemModel) ConnectColumnsAboutToBeInserted(f func(parent QModelIndexITF, first int, last int)) { + if ptr.Pointer() != nil { + C.QAbstractItemModel_ConnectColumnsAboutToBeInserted(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "columnsAboutToBeInserted", f) + } +} + +func (ptr *QAbstractItemModel) DisconnectColumnsAboutToBeInserted() { + if ptr.Pointer() != nil { + C.QAbstractItemModel_DisconnectColumnsAboutToBeInserted(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "columnsAboutToBeInserted") + } +} + +//export callbackQAbstractItemModelColumnsAboutToBeInserted +func callbackQAbstractItemModelColumnsAboutToBeInserted(ptrName *C.char, parent unsafe.Pointer, first C.int, last C.int) { + qt.GetSignal(C.GoString(ptrName), "columnsAboutToBeInserted").(func(*QModelIndex, int, int))(QModelIndexFromPointer(parent), int(first), int(last)) +} + +func (ptr *QAbstractItemModel) ConnectColumnsAboutToBeMoved(f func(sourceParent QModelIndexITF, sourceStart int, sourceEnd int, destinationParent QModelIndexITF, destinationColumn int)) { + if ptr.Pointer() != nil { + C.QAbstractItemModel_ConnectColumnsAboutToBeMoved(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "columnsAboutToBeMoved", f) + } +} + +func (ptr *QAbstractItemModel) DisconnectColumnsAboutToBeMoved() { + if ptr.Pointer() != nil { + C.QAbstractItemModel_DisconnectColumnsAboutToBeMoved(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "columnsAboutToBeMoved") + } +} + +//export callbackQAbstractItemModelColumnsAboutToBeMoved +func callbackQAbstractItemModelColumnsAboutToBeMoved(ptrName *C.char, sourceParent unsafe.Pointer, sourceStart C.int, sourceEnd C.int, destinationParent unsafe.Pointer, destinationColumn C.int) { + qt.GetSignal(C.GoString(ptrName), "columnsAboutToBeMoved").(func(*QModelIndex, int, int, *QModelIndex, int))(QModelIndexFromPointer(sourceParent), int(sourceStart), int(sourceEnd), QModelIndexFromPointer(destinationParent), int(destinationColumn)) +} + +func (ptr *QAbstractItemModel) ConnectColumnsAboutToBeRemoved(f func(parent QModelIndexITF, first int, last int)) { + if ptr.Pointer() != nil { + C.QAbstractItemModel_ConnectColumnsAboutToBeRemoved(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "columnsAboutToBeRemoved", f) + } +} + +func (ptr *QAbstractItemModel) DisconnectColumnsAboutToBeRemoved() { + if ptr.Pointer() != nil { + C.QAbstractItemModel_DisconnectColumnsAboutToBeRemoved(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "columnsAboutToBeRemoved") + } +} + +//export callbackQAbstractItemModelColumnsAboutToBeRemoved +func callbackQAbstractItemModelColumnsAboutToBeRemoved(ptrName *C.char, parent unsafe.Pointer, first C.int, last C.int) { + qt.GetSignal(C.GoString(ptrName), "columnsAboutToBeRemoved").(func(*QModelIndex, int, int))(QModelIndexFromPointer(parent), int(first), int(last)) +} + +func (ptr *QAbstractItemModel) ConnectColumnsInserted(f func(parent QModelIndexITF, first int, last int)) { + if ptr.Pointer() != nil { + C.QAbstractItemModel_ConnectColumnsInserted(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "columnsInserted", f) + } +} + +func (ptr *QAbstractItemModel) DisconnectColumnsInserted() { + if ptr.Pointer() != nil { + C.QAbstractItemModel_DisconnectColumnsInserted(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "columnsInserted") + } +} + +//export callbackQAbstractItemModelColumnsInserted +func callbackQAbstractItemModelColumnsInserted(ptrName *C.char, parent unsafe.Pointer, first C.int, last C.int) { + qt.GetSignal(C.GoString(ptrName), "columnsInserted").(func(*QModelIndex, int, int))(QModelIndexFromPointer(parent), int(first), int(last)) +} + +func (ptr *QAbstractItemModel) ConnectColumnsMoved(f func(parent QModelIndexITF, start int, end int, destination QModelIndexITF, column int)) { + if ptr.Pointer() != nil { + C.QAbstractItemModel_ConnectColumnsMoved(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "columnsMoved", f) + } +} + +func (ptr *QAbstractItemModel) DisconnectColumnsMoved() { + if ptr.Pointer() != nil { + C.QAbstractItemModel_DisconnectColumnsMoved(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "columnsMoved") + } +} + +//export callbackQAbstractItemModelColumnsMoved +func callbackQAbstractItemModelColumnsMoved(ptrName *C.char, parent unsafe.Pointer, start C.int, end C.int, destination unsafe.Pointer, column C.int) { + qt.GetSignal(C.GoString(ptrName), "columnsMoved").(func(*QModelIndex, int, int, *QModelIndex, int))(QModelIndexFromPointer(parent), int(start), int(end), QModelIndexFromPointer(destination), int(column)) +} + +func (ptr *QAbstractItemModel) ConnectColumnsRemoved(f func(parent QModelIndexITF, first int, last int)) { + if ptr.Pointer() != nil { + C.QAbstractItemModel_ConnectColumnsRemoved(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "columnsRemoved", f) + } +} + +func (ptr *QAbstractItemModel) DisconnectColumnsRemoved() { + if ptr.Pointer() != nil { + C.QAbstractItemModel_DisconnectColumnsRemoved(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "columnsRemoved") + } +} + +//export callbackQAbstractItemModelColumnsRemoved +func callbackQAbstractItemModelColumnsRemoved(ptrName *C.char, parent unsafe.Pointer, first C.int, last C.int) { + qt.GetSignal(C.GoString(ptrName), "columnsRemoved").(func(*QModelIndex, int, int))(QModelIndexFromPointer(parent), int(first), int(last)) +} + +func (ptr *QAbstractItemModel) Data(index QModelIndexITF, role int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAbstractItemModel_Data(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(index)), C.int(role))) + } + return "" +} + +func (ptr *QAbstractItemModel) DropMimeData(data QMimeDataITF, action Qt__DropAction, row int, column int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QAbstractItemModel_DropMimeData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMimeData(data)), C.int(action), C.int(row), C.int(column), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QAbstractItemModel) FetchMore(parent QModelIndexITF) { + if ptr.Pointer() != nil { + C.QAbstractItemModel_FetchMore(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(parent))) + } +} + +func (ptr *QAbstractItemModel) Flags(index QModelIndexITF) Qt__ItemFlag { + if ptr.Pointer() != nil { + return Qt__ItemFlag(C.QAbstractItemModel_Flags(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(index)))) + } + return 0 +} + +func (ptr *QAbstractItemModel) HasChildren(parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QAbstractItemModel_HasChildren(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QAbstractItemModel) HasIndex(row int, column int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QAbstractItemModel_HasIndex(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QAbstractItemModel) HeaderData(section int, orientation Qt__Orientation, role int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAbstractItemModel_HeaderData(C.QtObjectPtr(ptr.Pointer()), C.int(section), C.int(orientation), C.int(role))) + } + return "" +} + +func (ptr *QAbstractItemModel) ConnectHeaderDataChanged(f func(orientation Qt__Orientation, first int, last int)) { + if ptr.Pointer() != nil { + C.QAbstractItemModel_ConnectHeaderDataChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "headerDataChanged", f) + } +} + +func (ptr *QAbstractItemModel) DisconnectHeaderDataChanged() { + if ptr.Pointer() != nil { + C.QAbstractItemModel_DisconnectHeaderDataChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "headerDataChanged") + } +} + +//export callbackQAbstractItemModelHeaderDataChanged +func callbackQAbstractItemModelHeaderDataChanged(ptrName *C.char, orientation C.int, first C.int, last C.int) { + qt.GetSignal(C.GoString(ptrName), "headerDataChanged").(func(Qt__Orientation, int, int))(Qt__Orientation(orientation), int(first), int(last)) +} + +func (ptr *QAbstractItemModel) Index(row int, column int, parent QModelIndexITF) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QAbstractItemModel_Index(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column), C.QtObjectPtr(PointerFromQModelIndex(parent))))) + } + return nil +} + +func (ptr *QAbstractItemModel) InsertColumn(column int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QAbstractItemModel_InsertColumn(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QAbstractItemModel) InsertColumns(column int, count int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QAbstractItemModel_InsertColumns(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(count), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QAbstractItemModel) InsertRow(row int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QAbstractItemModel_InsertRow(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QAbstractItemModel) InsertRows(row int, count int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QAbstractItemModel_InsertRows(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(count), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QAbstractItemModel) MimeTypes() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QAbstractItemModel_MimeTypes(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QAbstractItemModel) ConnectModelAboutToBeReset(f func()) { + if ptr.Pointer() != nil { + C.QAbstractItemModel_ConnectModelAboutToBeReset(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "modelAboutToBeReset", f) + } +} + +func (ptr *QAbstractItemModel) DisconnectModelAboutToBeReset() { + if ptr.Pointer() != nil { + C.QAbstractItemModel_DisconnectModelAboutToBeReset(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "modelAboutToBeReset") + } +} + +//export callbackQAbstractItemModelModelAboutToBeReset +func callbackQAbstractItemModelModelAboutToBeReset(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "modelAboutToBeReset").(func())() +} + +func (ptr *QAbstractItemModel) ConnectModelReset(f func()) { + if ptr.Pointer() != nil { + C.QAbstractItemModel_ConnectModelReset(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "modelReset", f) + } +} + +func (ptr *QAbstractItemModel) DisconnectModelReset() { + if ptr.Pointer() != nil { + C.QAbstractItemModel_DisconnectModelReset(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "modelReset") + } +} + +//export callbackQAbstractItemModelModelReset +func callbackQAbstractItemModelModelReset(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "modelReset").(func())() +} + +func (ptr *QAbstractItemModel) MoveColumn(sourceParent QModelIndexITF, sourceColumn int, destinationParent QModelIndexITF, destinationChild int) bool { + if ptr.Pointer() != nil { + return C.QAbstractItemModel_MoveColumn(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(sourceParent)), C.int(sourceColumn), C.QtObjectPtr(PointerFromQModelIndex(destinationParent)), C.int(destinationChild)) != 0 + } + return false +} + +func (ptr *QAbstractItemModel) MoveColumns(sourceParent QModelIndexITF, sourceColumn int, count int, destinationParent QModelIndexITF, destinationChild int) bool { + if ptr.Pointer() != nil { + return C.QAbstractItemModel_MoveColumns(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(sourceParent)), C.int(sourceColumn), C.int(count), C.QtObjectPtr(PointerFromQModelIndex(destinationParent)), C.int(destinationChild)) != 0 + } + return false +} + +func (ptr *QAbstractItemModel) MoveRow(sourceParent QModelIndexITF, sourceRow int, destinationParent QModelIndexITF, destinationChild int) bool { + if ptr.Pointer() != nil { + return C.QAbstractItemModel_MoveRow(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(sourceParent)), C.int(sourceRow), C.QtObjectPtr(PointerFromQModelIndex(destinationParent)), C.int(destinationChild)) != 0 + } + return false +} + +func (ptr *QAbstractItemModel) MoveRows(sourceParent QModelIndexITF, sourceRow int, count int, destinationParent QModelIndexITF, destinationChild int) bool { + if ptr.Pointer() != nil { + return C.QAbstractItemModel_MoveRows(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(sourceParent)), C.int(sourceRow), C.int(count), C.QtObjectPtr(PointerFromQModelIndex(destinationParent)), C.int(destinationChild)) != 0 + } + return false +} + +func (ptr *QAbstractItemModel) Parent(index QModelIndexITF) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QAbstractItemModel_Parent(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(index))))) + } + return nil +} + +func (ptr *QAbstractItemModel) RemoveColumn(column int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QAbstractItemModel_RemoveColumn(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QAbstractItemModel) RemoveColumns(column int, count int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QAbstractItemModel_RemoveColumns(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(count), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QAbstractItemModel) RemoveRow(row int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QAbstractItemModel_RemoveRow(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QAbstractItemModel) RemoveRows(row int, count int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QAbstractItemModel_RemoveRows(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(count), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QAbstractItemModel) Revert() { + if ptr.Pointer() != nil { + C.QAbstractItemModel_Revert(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractItemModel) RowCount(parent QModelIndexITF) int { + if ptr.Pointer() != nil { + return int(C.QAbstractItemModel_RowCount(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(parent)))) + } + return 0 +} + +func (ptr *QAbstractItemModel) ConnectRowsAboutToBeInserted(f func(parent QModelIndexITF, start int, end int)) { + if ptr.Pointer() != nil { + C.QAbstractItemModel_ConnectRowsAboutToBeInserted(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "rowsAboutToBeInserted", f) + } +} + +func (ptr *QAbstractItemModel) DisconnectRowsAboutToBeInserted() { + if ptr.Pointer() != nil { + C.QAbstractItemModel_DisconnectRowsAboutToBeInserted(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "rowsAboutToBeInserted") + } +} + +//export callbackQAbstractItemModelRowsAboutToBeInserted +func callbackQAbstractItemModelRowsAboutToBeInserted(ptrName *C.char, parent unsafe.Pointer, start C.int, end C.int) { + qt.GetSignal(C.GoString(ptrName), "rowsAboutToBeInserted").(func(*QModelIndex, int, int))(QModelIndexFromPointer(parent), int(start), int(end)) +} + +func (ptr *QAbstractItemModel) ConnectRowsAboutToBeMoved(f func(sourceParent QModelIndexITF, sourceStart int, sourceEnd int, destinationParent QModelIndexITF, destinationRow int)) { + if ptr.Pointer() != nil { + C.QAbstractItemModel_ConnectRowsAboutToBeMoved(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "rowsAboutToBeMoved", f) + } +} + +func (ptr *QAbstractItemModel) DisconnectRowsAboutToBeMoved() { + if ptr.Pointer() != nil { + C.QAbstractItemModel_DisconnectRowsAboutToBeMoved(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "rowsAboutToBeMoved") + } +} + +//export callbackQAbstractItemModelRowsAboutToBeMoved +func callbackQAbstractItemModelRowsAboutToBeMoved(ptrName *C.char, sourceParent unsafe.Pointer, sourceStart C.int, sourceEnd C.int, destinationParent unsafe.Pointer, destinationRow C.int) { + qt.GetSignal(C.GoString(ptrName), "rowsAboutToBeMoved").(func(*QModelIndex, int, int, *QModelIndex, int))(QModelIndexFromPointer(sourceParent), int(sourceStart), int(sourceEnd), QModelIndexFromPointer(destinationParent), int(destinationRow)) +} + +func (ptr *QAbstractItemModel) ConnectRowsAboutToBeRemoved(f func(parent QModelIndexITF, first int, last int)) { + if ptr.Pointer() != nil { + C.QAbstractItemModel_ConnectRowsAboutToBeRemoved(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "rowsAboutToBeRemoved", f) + } +} + +func (ptr *QAbstractItemModel) DisconnectRowsAboutToBeRemoved() { + if ptr.Pointer() != nil { + C.QAbstractItemModel_DisconnectRowsAboutToBeRemoved(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "rowsAboutToBeRemoved") + } +} + +//export callbackQAbstractItemModelRowsAboutToBeRemoved +func callbackQAbstractItemModelRowsAboutToBeRemoved(ptrName *C.char, parent unsafe.Pointer, first C.int, last C.int) { + qt.GetSignal(C.GoString(ptrName), "rowsAboutToBeRemoved").(func(*QModelIndex, int, int))(QModelIndexFromPointer(parent), int(first), int(last)) +} + +func (ptr *QAbstractItemModel) ConnectRowsInserted(f func(parent QModelIndexITF, first int, last int)) { + if ptr.Pointer() != nil { + C.QAbstractItemModel_ConnectRowsInserted(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "rowsInserted", f) + } +} + +func (ptr *QAbstractItemModel) DisconnectRowsInserted() { + if ptr.Pointer() != nil { + C.QAbstractItemModel_DisconnectRowsInserted(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "rowsInserted") + } +} + +//export callbackQAbstractItemModelRowsInserted +func callbackQAbstractItemModelRowsInserted(ptrName *C.char, parent unsafe.Pointer, first C.int, last C.int) { + qt.GetSignal(C.GoString(ptrName), "rowsInserted").(func(*QModelIndex, int, int))(QModelIndexFromPointer(parent), int(first), int(last)) +} + +func (ptr *QAbstractItemModel) ConnectRowsMoved(f func(parent QModelIndexITF, start int, end int, destination QModelIndexITF, row int)) { + if ptr.Pointer() != nil { + C.QAbstractItemModel_ConnectRowsMoved(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "rowsMoved", f) + } +} + +func (ptr *QAbstractItemModel) DisconnectRowsMoved() { + if ptr.Pointer() != nil { + C.QAbstractItemModel_DisconnectRowsMoved(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "rowsMoved") + } +} + +//export callbackQAbstractItemModelRowsMoved +func callbackQAbstractItemModelRowsMoved(ptrName *C.char, parent unsafe.Pointer, start C.int, end C.int, destination unsafe.Pointer, row C.int) { + qt.GetSignal(C.GoString(ptrName), "rowsMoved").(func(*QModelIndex, int, int, *QModelIndex, int))(QModelIndexFromPointer(parent), int(start), int(end), QModelIndexFromPointer(destination), int(row)) +} + +func (ptr *QAbstractItemModel) ConnectRowsRemoved(f func(parent QModelIndexITF, first int, last int)) { + if ptr.Pointer() != nil { + C.QAbstractItemModel_ConnectRowsRemoved(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "rowsRemoved", f) + } +} + +func (ptr *QAbstractItemModel) DisconnectRowsRemoved() { + if ptr.Pointer() != nil { + C.QAbstractItemModel_DisconnectRowsRemoved(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "rowsRemoved") + } +} + +//export callbackQAbstractItemModelRowsRemoved +func callbackQAbstractItemModelRowsRemoved(ptrName *C.char, parent unsafe.Pointer, first C.int, last C.int) { + qt.GetSignal(C.GoString(ptrName), "rowsRemoved").(func(*QModelIndex, int, int))(QModelIndexFromPointer(parent), int(first), int(last)) +} + +func (ptr *QAbstractItemModel) SetData(index QModelIndexITF, value string, role int) bool { + if ptr.Pointer() != nil { + return C.QAbstractItemModel_SetData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(index)), C.CString(value), C.int(role)) != 0 + } + return false +} + +func (ptr *QAbstractItemModel) SetHeaderData(section int, orientation Qt__Orientation, value string, role int) bool { + if ptr.Pointer() != nil { + return C.QAbstractItemModel_SetHeaderData(C.QtObjectPtr(ptr.Pointer()), C.int(section), C.int(orientation), C.CString(value), C.int(role)) != 0 + } + return false +} + +func (ptr *QAbstractItemModel) Sort(column int, order Qt__SortOrder) { + if ptr.Pointer() != nil { + C.QAbstractItemModel_Sort(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(order)) + } +} + +func (ptr *QAbstractItemModel) Submit() bool { + if ptr.Pointer() != nil { + return C.QAbstractItemModel_Submit(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractItemModel) SupportedDragActions() Qt__DropAction { + if ptr.Pointer() != nil { + return Qt__DropAction(C.QAbstractItemModel_SupportedDragActions(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractItemModel) SupportedDropActions() Qt__DropAction { + if ptr.Pointer() != nil { + return Qt__DropAction(C.QAbstractItemModel_SupportedDropActions(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractItemModel) DestroyQAbstractItemModel() { + if ptr.Pointer() != nil { + C.QAbstractItemModel_DestroyQAbstractItemModel(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qabstractitemmodel.h b/core/qabstractitemmodel.h new file mode 100755 index 00000000..559a68b6 --- /dev/null +++ b/core/qabstractitemmodel.h @@ -0,0 +1,75 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAbstractItemModel_Sibling(QtObjectPtr ptr, int row, int column, QtObjectPtr index); +QtObjectPtr QAbstractItemModel_Buddy(QtObjectPtr ptr, QtObjectPtr index); +int QAbstractItemModel_CanDropMimeData(QtObjectPtr ptr, QtObjectPtr data, int action, int row, int column, QtObjectPtr parent); +int QAbstractItemModel_CanFetchMore(QtObjectPtr ptr, QtObjectPtr parent); +int QAbstractItemModel_ColumnCount(QtObjectPtr ptr, QtObjectPtr parent); +void QAbstractItemModel_ConnectColumnsAboutToBeInserted(QtObjectPtr ptr); +void QAbstractItemModel_DisconnectColumnsAboutToBeInserted(QtObjectPtr ptr); +void QAbstractItemModel_ConnectColumnsAboutToBeMoved(QtObjectPtr ptr); +void QAbstractItemModel_DisconnectColumnsAboutToBeMoved(QtObjectPtr ptr); +void QAbstractItemModel_ConnectColumnsAboutToBeRemoved(QtObjectPtr ptr); +void QAbstractItemModel_DisconnectColumnsAboutToBeRemoved(QtObjectPtr ptr); +void QAbstractItemModel_ConnectColumnsInserted(QtObjectPtr ptr); +void QAbstractItemModel_DisconnectColumnsInserted(QtObjectPtr ptr); +void QAbstractItemModel_ConnectColumnsMoved(QtObjectPtr ptr); +void QAbstractItemModel_DisconnectColumnsMoved(QtObjectPtr ptr); +void QAbstractItemModel_ConnectColumnsRemoved(QtObjectPtr ptr); +void QAbstractItemModel_DisconnectColumnsRemoved(QtObjectPtr ptr); +char* QAbstractItemModel_Data(QtObjectPtr ptr, QtObjectPtr index, int role); +int QAbstractItemModel_DropMimeData(QtObjectPtr ptr, QtObjectPtr data, int action, int row, int column, QtObjectPtr parent); +void QAbstractItemModel_FetchMore(QtObjectPtr ptr, QtObjectPtr parent); +int QAbstractItemModel_Flags(QtObjectPtr ptr, QtObjectPtr index); +int QAbstractItemModel_HasChildren(QtObjectPtr ptr, QtObjectPtr parent); +int QAbstractItemModel_HasIndex(QtObjectPtr ptr, int row, int column, QtObjectPtr parent); +char* QAbstractItemModel_HeaderData(QtObjectPtr ptr, int section, int orientation, int role); +void QAbstractItemModel_ConnectHeaderDataChanged(QtObjectPtr ptr); +void QAbstractItemModel_DisconnectHeaderDataChanged(QtObjectPtr ptr); +QtObjectPtr QAbstractItemModel_Index(QtObjectPtr ptr, int row, int column, QtObjectPtr parent); +int QAbstractItemModel_InsertColumn(QtObjectPtr ptr, int column, QtObjectPtr parent); +int QAbstractItemModel_InsertColumns(QtObjectPtr ptr, int column, int count, QtObjectPtr parent); +int QAbstractItemModel_InsertRow(QtObjectPtr ptr, int row, QtObjectPtr parent); +int QAbstractItemModel_InsertRows(QtObjectPtr ptr, int row, int count, QtObjectPtr parent); +char* QAbstractItemModel_MimeTypes(QtObjectPtr ptr); +void QAbstractItemModel_ConnectModelAboutToBeReset(QtObjectPtr ptr); +void QAbstractItemModel_DisconnectModelAboutToBeReset(QtObjectPtr ptr); +void QAbstractItemModel_ConnectModelReset(QtObjectPtr ptr); +void QAbstractItemModel_DisconnectModelReset(QtObjectPtr ptr); +int QAbstractItemModel_MoveColumn(QtObjectPtr ptr, QtObjectPtr sourceParent, int sourceColumn, QtObjectPtr destinationParent, int destinationChild); +int QAbstractItemModel_MoveColumns(QtObjectPtr ptr, QtObjectPtr sourceParent, int sourceColumn, int count, QtObjectPtr destinationParent, int destinationChild); +int QAbstractItemModel_MoveRow(QtObjectPtr ptr, QtObjectPtr sourceParent, int sourceRow, QtObjectPtr destinationParent, int destinationChild); +int QAbstractItemModel_MoveRows(QtObjectPtr ptr, QtObjectPtr sourceParent, int sourceRow, int count, QtObjectPtr destinationParent, int destinationChild); +QtObjectPtr QAbstractItemModel_Parent(QtObjectPtr ptr, QtObjectPtr index); +int QAbstractItemModel_RemoveColumn(QtObjectPtr ptr, int column, QtObjectPtr parent); +int QAbstractItemModel_RemoveColumns(QtObjectPtr ptr, int column, int count, QtObjectPtr parent); +int QAbstractItemModel_RemoveRow(QtObjectPtr ptr, int row, QtObjectPtr parent); +int QAbstractItemModel_RemoveRows(QtObjectPtr ptr, int row, int count, QtObjectPtr parent); +void QAbstractItemModel_Revert(QtObjectPtr ptr); +int QAbstractItemModel_RowCount(QtObjectPtr ptr, QtObjectPtr parent); +void QAbstractItemModel_ConnectRowsAboutToBeInserted(QtObjectPtr ptr); +void QAbstractItemModel_DisconnectRowsAboutToBeInserted(QtObjectPtr ptr); +void QAbstractItemModel_ConnectRowsAboutToBeMoved(QtObjectPtr ptr); +void QAbstractItemModel_DisconnectRowsAboutToBeMoved(QtObjectPtr ptr); +void QAbstractItemModel_ConnectRowsAboutToBeRemoved(QtObjectPtr ptr); +void QAbstractItemModel_DisconnectRowsAboutToBeRemoved(QtObjectPtr ptr); +void QAbstractItemModel_ConnectRowsInserted(QtObjectPtr ptr); +void QAbstractItemModel_DisconnectRowsInserted(QtObjectPtr ptr); +void QAbstractItemModel_ConnectRowsMoved(QtObjectPtr ptr); +void QAbstractItemModel_DisconnectRowsMoved(QtObjectPtr ptr); +void QAbstractItemModel_ConnectRowsRemoved(QtObjectPtr ptr); +void QAbstractItemModel_DisconnectRowsRemoved(QtObjectPtr ptr); +int QAbstractItemModel_SetData(QtObjectPtr ptr, QtObjectPtr index, char* value, int role); +int QAbstractItemModel_SetHeaderData(QtObjectPtr ptr, int section, int orientation, char* value, int role); +void QAbstractItemModel_Sort(QtObjectPtr ptr, int column, int order); +int QAbstractItemModel_Submit(QtObjectPtr ptr); +int QAbstractItemModel_SupportedDragActions(QtObjectPtr ptr); +int QAbstractItemModel_SupportedDropActions(QtObjectPtr ptr); +void QAbstractItemModel_DestroyQAbstractItemModel(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qabstractlistmodel.cpp b/core/qabstractlistmodel.cpp new file mode 100755 index 00000000..e31b060e --- /dev/null +++ b/core/qabstractlistmodel.cpp @@ -0,0 +1,35 @@ +#include "qabstractlistmodel.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAbstractListModel: public QAbstractListModel { +public: +}; + +QtObjectPtr QAbstractListModel_Index(QtObjectPtr ptr, int row, int column, QtObjectPtr parent){ + return static_cast(ptr)->index(row, column, *static_cast(parent)).internalPointer(); +} + +int QAbstractListModel_DropMimeData(QtObjectPtr ptr, QtObjectPtr data, int action, int row, int column, QtObjectPtr parent){ + return static_cast(ptr)->dropMimeData(static_cast(data), static_cast(action), row, column, *static_cast(parent)); +} + +int QAbstractListModel_Flags(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->flags(*static_cast(index)); +} + +QtObjectPtr QAbstractListModel_Sibling(QtObjectPtr ptr, int row, int column, QtObjectPtr idx){ + return static_cast(ptr)->sibling(row, column, *static_cast(idx)).internalPointer(); +} + +void QAbstractListModel_DestroyQAbstractListModel(QtObjectPtr ptr){ + static_cast(ptr)->~QAbstractListModel(); +} + diff --git a/core/qabstractlistmodel.go b/core/qabstractlistmodel.go new file mode 100755 index 00000000..ddf092ad --- /dev/null +++ b/core/qabstractlistmodel.go @@ -0,0 +1,72 @@ +package core + +//#include "qabstractlistmodel.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QAbstractListModel struct { + QAbstractItemModel +} + +type QAbstractListModelITF interface { + QAbstractItemModelITF + QAbstractListModelPTR() *QAbstractListModel +} + +func PointerFromQAbstractListModel(ptr QAbstractListModelITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractListModelPTR().Pointer() + } + return nil +} + +func QAbstractListModelFromPointer(ptr unsafe.Pointer) *QAbstractListModel { + var n = new(QAbstractListModel) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAbstractListModel_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAbstractListModel) QAbstractListModelPTR() *QAbstractListModel { + return ptr +} + +func (ptr *QAbstractListModel) Index(row int, column int, parent QModelIndexITF) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QAbstractListModel_Index(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column), C.QtObjectPtr(PointerFromQModelIndex(parent))))) + } + return nil +} + +func (ptr *QAbstractListModel) DropMimeData(data QMimeDataITF, action Qt__DropAction, row int, column int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QAbstractListModel_DropMimeData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMimeData(data)), C.int(action), C.int(row), C.int(column), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QAbstractListModel) Flags(index QModelIndexITF) Qt__ItemFlag { + if ptr.Pointer() != nil { + return Qt__ItemFlag(C.QAbstractListModel_Flags(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(index)))) + } + return 0 +} + +func (ptr *QAbstractListModel) Sibling(row int, column int, idx QModelIndexITF) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QAbstractListModel_Sibling(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column), C.QtObjectPtr(PointerFromQModelIndex(idx))))) + } + return nil +} + +func (ptr *QAbstractListModel) DestroyQAbstractListModel() { + if ptr.Pointer() != nil { + C.QAbstractListModel_DestroyQAbstractListModel(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qabstractlistmodel.h b/core/qabstractlistmodel.h new file mode 100755 index 00000000..344a5a06 --- /dev/null +++ b/core/qabstractlistmodel.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAbstractListModel_Index(QtObjectPtr ptr, int row, int column, QtObjectPtr parent); +int QAbstractListModel_DropMimeData(QtObjectPtr ptr, QtObjectPtr data, int action, int row, int column, QtObjectPtr parent); +int QAbstractListModel_Flags(QtObjectPtr ptr, QtObjectPtr index); +QtObjectPtr QAbstractListModel_Sibling(QtObjectPtr ptr, int row, int column, QtObjectPtr idx); +void QAbstractListModel_DestroyQAbstractListModel(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qabstractnativeeventfilter.cpp b/core/qabstractnativeeventfilter.cpp new file mode 100755 index 00000000..b9253678 --- /dev/null +++ b/core/qabstractnativeeventfilter.cpp @@ -0,0 +1,16 @@ +#include "qabstractnativeeventfilter.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAbstractNativeEventFilter: public QAbstractNativeEventFilter { +public: +}; + +void QAbstractNativeEventFilter_DestroyQAbstractNativeEventFilter(QtObjectPtr ptr){ + static_cast(ptr)->~QAbstractNativeEventFilter(); +} + diff --git a/core/qabstractnativeeventfilter.go b/core/qabstractnativeeventfilter.go new file mode 100755 index 00000000..53e6976d --- /dev/null +++ b/core/qabstractnativeeventfilter.go @@ -0,0 +1,46 @@ +package core + +//#include "qabstractnativeeventfilter.h" +import "C" +import ( + "unsafe" +) + +type QAbstractNativeEventFilter struct { + ptr unsafe.Pointer +} + +type QAbstractNativeEventFilterITF interface { + QAbstractNativeEventFilterPTR() *QAbstractNativeEventFilter +} + +func (p *QAbstractNativeEventFilter) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QAbstractNativeEventFilter) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQAbstractNativeEventFilter(ptr QAbstractNativeEventFilterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractNativeEventFilterPTR().Pointer() + } + return nil +} + +func QAbstractNativeEventFilterFromPointer(ptr unsafe.Pointer) *QAbstractNativeEventFilter { + var n = new(QAbstractNativeEventFilter) + n.SetPointer(ptr) + return n +} + +func (ptr *QAbstractNativeEventFilter) QAbstractNativeEventFilterPTR() *QAbstractNativeEventFilter { + return ptr +} + +func (ptr *QAbstractNativeEventFilter) DestroyQAbstractNativeEventFilter() { + if ptr.Pointer() != nil { + C.QAbstractNativeEventFilter_DestroyQAbstractNativeEventFilter(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qabstractnativeeventfilter.h b/core/qabstractnativeeventfilter.h new file mode 100755 index 00000000..e27b815b --- /dev/null +++ b/core/qabstractnativeeventfilter.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QAbstractNativeEventFilter_DestroyQAbstractNativeEventFilter(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qabstractproxymodel.cpp b/core/qabstractproxymodel.cpp new file mode 100755 index 00000000..19e3d4da --- /dev/null +++ b/core/qabstractproxymodel.cpp @@ -0,0 +1,116 @@ +#include "qabstractproxymodel.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAbstractProxyModel: public QAbstractProxyModel { +public: +void Signal_SourceModelChanged(){callbackQAbstractProxyModelSourceModelChanged(this->objectName().toUtf8().data());}; +}; + +QtObjectPtr QAbstractProxyModel_Buddy(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->buddy(*static_cast(index)).internalPointer(); +} + +int QAbstractProxyModel_CanDropMimeData(QtObjectPtr ptr, QtObjectPtr data, int action, int row, int column, QtObjectPtr parent){ + return static_cast(ptr)->canDropMimeData(static_cast(data), static_cast(action), row, column, *static_cast(parent)); +} + +int QAbstractProxyModel_CanFetchMore(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->canFetchMore(*static_cast(parent)); +} + +char* QAbstractProxyModel_Data(QtObjectPtr ptr, QtObjectPtr proxyIndex, int role){ + return static_cast(ptr)->data(*static_cast(proxyIndex), role).toString().toUtf8().data(); +} + +int QAbstractProxyModel_DropMimeData(QtObjectPtr ptr, QtObjectPtr data, int action, int row, int column, QtObjectPtr parent){ + return static_cast(ptr)->dropMimeData(static_cast(data), static_cast(action), row, column, *static_cast(parent)); +} + +void QAbstractProxyModel_FetchMore(QtObjectPtr ptr, QtObjectPtr parent){ + static_cast(ptr)->fetchMore(*static_cast(parent)); +} + +int QAbstractProxyModel_Flags(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->flags(*static_cast(index)); +} + +int QAbstractProxyModel_HasChildren(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->hasChildren(*static_cast(parent)); +} + +char* QAbstractProxyModel_HeaderData(QtObjectPtr ptr, int section, int orientation, int role){ + return static_cast(ptr)->headerData(section, static_cast(orientation), role).toString().toUtf8().data(); +} + +QtObjectPtr QAbstractProxyModel_MapFromSource(QtObjectPtr ptr, QtObjectPtr sourceIndex){ + return static_cast(ptr)->mapFromSource(*static_cast(sourceIndex)).internalPointer(); +} + +QtObjectPtr QAbstractProxyModel_MapToSource(QtObjectPtr ptr, QtObjectPtr proxyIndex){ + return static_cast(ptr)->mapToSource(*static_cast(proxyIndex)).internalPointer(); +} + +char* QAbstractProxyModel_MimeTypes(QtObjectPtr ptr){ + return static_cast(ptr)->mimeTypes().join("|").toUtf8().data(); +} + +void QAbstractProxyModel_Revert(QtObjectPtr ptr){ + static_cast(ptr)->revert(); +} + +int QAbstractProxyModel_SetData(QtObjectPtr ptr, QtObjectPtr index, char* value, int role){ + return static_cast(ptr)->setData(*static_cast(index), QVariant(value), role); +} + +int QAbstractProxyModel_SetHeaderData(QtObjectPtr ptr, int section, int orientation, char* value, int role){ + return static_cast(ptr)->setHeaderData(section, static_cast(orientation), QVariant(value), role); +} + +void QAbstractProxyModel_SetSourceModel(QtObjectPtr ptr, QtObjectPtr sourceModel){ + static_cast(ptr)->setSourceModel(static_cast(sourceModel)); +} + +QtObjectPtr QAbstractProxyModel_Sibling(QtObjectPtr ptr, int row, int column, QtObjectPtr idx){ + return static_cast(ptr)->sibling(row, column, *static_cast(idx)).internalPointer(); +} + +void QAbstractProxyModel_Sort(QtObjectPtr ptr, int column, int order){ + static_cast(ptr)->sort(column, static_cast(order)); +} + +QtObjectPtr QAbstractProxyModel_SourceModel(QtObjectPtr ptr){ + return static_cast(ptr)->sourceModel(); +} + +void QAbstractProxyModel_ConnectSourceModelChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QAbstractProxyModel::sourceModelChanged, static_cast(ptr), static_cast(&MyQAbstractProxyModel::Signal_SourceModelChanged));; +} + +void QAbstractProxyModel_DisconnectSourceModelChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QAbstractProxyModel::sourceModelChanged, static_cast(ptr), static_cast(&MyQAbstractProxyModel::Signal_SourceModelChanged));; +} + +int QAbstractProxyModel_Submit(QtObjectPtr ptr){ + return static_cast(ptr)->submit(); +} + +int QAbstractProxyModel_SupportedDragActions(QtObjectPtr ptr){ + return static_cast(ptr)->supportedDragActions(); +} + +int QAbstractProxyModel_SupportedDropActions(QtObjectPtr ptr){ + return static_cast(ptr)->supportedDropActions(); +} + +void QAbstractProxyModel_DestroyQAbstractProxyModel(QtObjectPtr ptr){ + static_cast(ptr)->~QAbstractProxyModel(); +} + diff --git a/core/qabstractproxymodel.go b/core/qabstractproxymodel.go new file mode 100755 index 00000000..39c801dd --- /dev/null +++ b/core/qabstractproxymodel.go @@ -0,0 +1,214 @@ +package core + +//#include "qabstractproxymodel.h" +import "C" +import ( + "github.com/therecipe/qt" + "strings" + "unsafe" +) + +type QAbstractProxyModel struct { + QAbstractItemModel +} + +type QAbstractProxyModelITF interface { + QAbstractItemModelITF + QAbstractProxyModelPTR() *QAbstractProxyModel +} + +func PointerFromQAbstractProxyModel(ptr QAbstractProxyModelITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractProxyModelPTR().Pointer() + } + return nil +} + +func QAbstractProxyModelFromPointer(ptr unsafe.Pointer) *QAbstractProxyModel { + var n = new(QAbstractProxyModel) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAbstractProxyModel_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAbstractProxyModel) QAbstractProxyModelPTR() *QAbstractProxyModel { + return ptr +} + +func (ptr *QAbstractProxyModel) Buddy(index QModelIndexITF) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QAbstractProxyModel_Buddy(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(index))))) + } + return nil +} + +func (ptr *QAbstractProxyModel) CanDropMimeData(data QMimeDataITF, action Qt__DropAction, row int, column int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QAbstractProxyModel_CanDropMimeData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMimeData(data)), C.int(action), C.int(row), C.int(column), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QAbstractProxyModel) CanFetchMore(parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QAbstractProxyModel_CanFetchMore(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QAbstractProxyModel) Data(proxyIndex QModelIndexITF, role int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAbstractProxyModel_Data(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(proxyIndex)), C.int(role))) + } + return "" +} + +func (ptr *QAbstractProxyModel) DropMimeData(data QMimeDataITF, action Qt__DropAction, row int, column int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QAbstractProxyModel_DropMimeData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMimeData(data)), C.int(action), C.int(row), C.int(column), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QAbstractProxyModel) FetchMore(parent QModelIndexITF) { + if ptr.Pointer() != nil { + C.QAbstractProxyModel_FetchMore(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(parent))) + } +} + +func (ptr *QAbstractProxyModel) Flags(index QModelIndexITF) Qt__ItemFlag { + if ptr.Pointer() != nil { + return Qt__ItemFlag(C.QAbstractProxyModel_Flags(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(index)))) + } + return 0 +} + +func (ptr *QAbstractProxyModel) HasChildren(parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QAbstractProxyModel_HasChildren(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QAbstractProxyModel) HeaderData(section int, orientation Qt__Orientation, role int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAbstractProxyModel_HeaderData(C.QtObjectPtr(ptr.Pointer()), C.int(section), C.int(orientation), C.int(role))) + } + return "" +} + +func (ptr *QAbstractProxyModel) MapFromSource(sourceIndex QModelIndexITF) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QAbstractProxyModel_MapFromSource(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(sourceIndex))))) + } + return nil +} + +func (ptr *QAbstractProxyModel) MapToSource(proxyIndex QModelIndexITF) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QAbstractProxyModel_MapToSource(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(proxyIndex))))) + } + return nil +} + +func (ptr *QAbstractProxyModel) MimeTypes() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QAbstractProxyModel_MimeTypes(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QAbstractProxyModel) Revert() { + if ptr.Pointer() != nil { + C.QAbstractProxyModel_Revert(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractProxyModel) SetData(index QModelIndexITF, value string, role int) bool { + if ptr.Pointer() != nil { + return C.QAbstractProxyModel_SetData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(index)), C.CString(value), C.int(role)) != 0 + } + return false +} + +func (ptr *QAbstractProxyModel) SetHeaderData(section int, orientation Qt__Orientation, value string, role int) bool { + if ptr.Pointer() != nil { + return C.QAbstractProxyModel_SetHeaderData(C.QtObjectPtr(ptr.Pointer()), C.int(section), C.int(orientation), C.CString(value), C.int(role)) != 0 + } + return false +} + +func (ptr *QAbstractProxyModel) SetSourceModel(sourceModel QAbstractItemModelITF) { + if ptr.Pointer() != nil { + C.QAbstractProxyModel_SetSourceModel(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractItemModel(sourceModel))) + } +} + +func (ptr *QAbstractProxyModel) Sibling(row int, column int, idx QModelIndexITF) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QAbstractProxyModel_Sibling(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column), C.QtObjectPtr(PointerFromQModelIndex(idx))))) + } + return nil +} + +func (ptr *QAbstractProxyModel) Sort(column int, order Qt__SortOrder) { + if ptr.Pointer() != nil { + C.QAbstractProxyModel_Sort(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(order)) + } +} + +func (ptr *QAbstractProxyModel) SourceModel() *QAbstractItemModel { + if ptr.Pointer() != nil { + return QAbstractItemModelFromPointer(unsafe.Pointer(C.QAbstractProxyModel_SourceModel(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAbstractProxyModel) ConnectSourceModelChanged(f func()) { + if ptr.Pointer() != nil { + C.QAbstractProxyModel_ConnectSourceModelChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "sourceModelChanged", f) + } +} + +func (ptr *QAbstractProxyModel) DisconnectSourceModelChanged() { + if ptr.Pointer() != nil { + C.QAbstractProxyModel_DisconnectSourceModelChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "sourceModelChanged") + } +} + +//export callbackQAbstractProxyModelSourceModelChanged +func callbackQAbstractProxyModelSourceModelChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "sourceModelChanged").(func())() +} + +func (ptr *QAbstractProxyModel) Submit() bool { + if ptr.Pointer() != nil { + return C.QAbstractProxyModel_Submit(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractProxyModel) SupportedDragActions() Qt__DropAction { + if ptr.Pointer() != nil { + return Qt__DropAction(C.QAbstractProxyModel_SupportedDragActions(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractProxyModel) SupportedDropActions() Qt__DropAction { + if ptr.Pointer() != nil { + return Qt__DropAction(C.QAbstractProxyModel_SupportedDropActions(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractProxyModel) DestroyQAbstractProxyModel() { + if ptr.Pointer() != nil { + C.QAbstractProxyModel_DestroyQAbstractProxyModel(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qabstractproxymodel.h b/core/qabstractproxymodel.h new file mode 100755 index 00000000..a47e991b --- /dev/null +++ b/core/qabstractproxymodel.h @@ -0,0 +1,34 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAbstractProxyModel_Buddy(QtObjectPtr ptr, QtObjectPtr index); +int QAbstractProxyModel_CanDropMimeData(QtObjectPtr ptr, QtObjectPtr data, int action, int row, int column, QtObjectPtr parent); +int QAbstractProxyModel_CanFetchMore(QtObjectPtr ptr, QtObjectPtr parent); +char* QAbstractProxyModel_Data(QtObjectPtr ptr, QtObjectPtr proxyIndex, int role); +int QAbstractProxyModel_DropMimeData(QtObjectPtr ptr, QtObjectPtr data, int action, int row, int column, QtObjectPtr parent); +void QAbstractProxyModel_FetchMore(QtObjectPtr ptr, QtObjectPtr parent); +int QAbstractProxyModel_Flags(QtObjectPtr ptr, QtObjectPtr index); +int QAbstractProxyModel_HasChildren(QtObjectPtr ptr, QtObjectPtr parent); +char* QAbstractProxyModel_HeaderData(QtObjectPtr ptr, int section, int orientation, int role); +QtObjectPtr QAbstractProxyModel_MapFromSource(QtObjectPtr ptr, QtObjectPtr sourceIndex); +QtObjectPtr QAbstractProxyModel_MapToSource(QtObjectPtr ptr, QtObjectPtr proxyIndex); +char* QAbstractProxyModel_MimeTypes(QtObjectPtr ptr); +void QAbstractProxyModel_Revert(QtObjectPtr ptr); +int QAbstractProxyModel_SetData(QtObjectPtr ptr, QtObjectPtr index, char* value, int role); +int QAbstractProxyModel_SetHeaderData(QtObjectPtr ptr, int section, int orientation, char* value, int role); +void QAbstractProxyModel_SetSourceModel(QtObjectPtr ptr, QtObjectPtr sourceModel); +QtObjectPtr QAbstractProxyModel_Sibling(QtObjectPtr ptr, int row, int column, QtObjectPtr idx); +void QAbstractProxyModel_Sort(QtObjectPtr ptr, int column, int order); +QtObjectPtr QAbstractProxyModel_SourceModel(QtObjectPtr ptr); +void QAbstractProxyModel_ConnectSourceModelChanged(QtObjectPtr ptr); +void QAbstractProxyModel_DisconnectSourceModelChanged(QtObjectPtr ptr); +int QAbstractProxyModel_Submit(QtObjectPtr ptr); +int QAbstractProxyModel_SupportedDragActions(QtObjectPtr ptr); +int QAbstractProxyModel_SupportedDropActions(QtObjectPtr ptr); +void QAbstractProxyModel_DestroyQAbstractProxyModel(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qabstractstate.cpp b/core/qabstractstate.cpp new file mode 100755 index 00000000..695242a6 --- /dev/null +++ b/core/qabstractstate.cpp @@ -0,0 +1,56 @@ +#include "qabstractstate.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAbstractState: public QAbstractState { +public: +void Signal_ActiveChanged(bool active){callbackQAbstractStateActiveChanged(this->objectName().toUtf8().data(), active);}; +void Signal_Entered(){callbackQAbstractStateEntered(this->objectName().toUtf8().data());}; +void Signal_Exited(){callbackQAbstractStateExited(this->objectName().toUtf8().data());}; +}; + +int QAbstractState_Active(QtObjectPtr ptr){ + return static_cast(ptr)->active(); +} + +void QAbstractState_ConnectActiveChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractState::activeChanged), static_cast(ptr), static_cast(&MyQAbstractState::Signal_ActiveChanged));; +} + +void QAbstractState_DisconnectActiveChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractState::activeChanged), static_cast(ptr), static_cast(&MyQAbstractState::Signal_ActiveChanged));; +} + +void QAbstractState_ConnectEntered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QAbstractState::entered, static_cast(ptr), static_cast(&MyQAbstractState::Signal_Entered));; +} + +void QAbstractState_DisconnectEntered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QAbstractState::entered, static_cast(ptr), static_cast(&MyQAbstractState::Signal_Entered));; +} + +void QAbstractState_ConnectExited(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QAbstractState::exited, static_cast(ptr), static_cast(&MyQAbstractState::Signal_Exited));; +} + +void QAbstractState_DisconnectExited(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QAbstractState::exited, static_cast(ptr), static_cast(&MyQAbstractState::Signal_Exited));; +} + +QtObjectPtr QAbstractState_Machine(QtObjectPtr ptr){ + return static_cast(ptr)->machine(); +} + +QtObjectPtr QAbstractState_ParentState(QtObjectPtr ptr){ + return static_cast(ptr)->parentState(); +} + +void QAbstractState_DestroyQAbstractState(QtObjectPtr ptr){ + static_cast(ptr)->~QAbstractState(); +} + diff --git a/core/qabstractstate.go b/core/qabstractstate.go new file mode 100755 index 00000000..8db5cddb --- /dev/null +++ b/core/qabstractstate.go @@ -0,0 +1,122 @@ +package core + +//#include "qabstractstate.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QAbstractState struct { + QObject +} + +type QAbstractStateITF interface { + QObjectITF + QAbstractStatePTR() *QAbstractState +} + +func PointerFromQAbstractState(ptr QAbstractStateITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractStatePTR().Pointer() + } + return nil +} + +func QAbstractStateFromPointer(ptr unsafe.Pointer) *QAbstractState { + var n = new(QAbstractState) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAbstractState_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAbstractState) QAbstractStatePTR() *QAbstractState { + return ptr +} + +func (ptr *QAbstractState) Active() bool { + if ptr.Pointer() != nil { + return C.QAbstractState_Active(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractState) ConnectActiveChanged(f func(active bool)) { + if ptr.Pointer() != nil { + C.QAbstractState_ConnectActiveChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "activeChanged", f) + } +} + +func (ptr *QAbstractState) DisconnectActiveChanged() { + if ptr.Pointer() != nil { + C.QAbstractState_DisconnectActiveChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "activeChanged") + } +} + +//export callbackQAbstractStateActiveChanged +func callbackQAbstractStateActiveChanged(ptrName *C.char, active C.int) { + qt.GetSignal(C.GoString(ptrName), "activeChanged").(func(bool))(int(active) != 0) +} + +func (ptr *QAbstractState) ConnectEntered(f func()) { + if ptr.Pointer() != nil { + C.QAbstractState_ConnectEntered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "entered", f) + } +} + +func (ptr *QAbstractState) DisconnectEntered() { + if ptr.Pointer() != nil { + C.QAbstractState_DisconnectEntered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "entered") + } +} + +//export callbackQAbstractStateEntered +func callbackQAbstractStateEntered(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "entered").(func())() +} + +func (ptr *QAbstractState) ConnectExited(f func()) { + if ptr.Pointer() != nil { + C.QAbstractState_ConnectExited(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "exited", f) + } +} + +func (ptr *QAbstractState) DisconnectExited() { + if ptr.Pointer() != nil { + C.QAbstractState_DisconnectExited(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "exited") + } +} + +//export callbackQAbstractStateExited +func callbackQAbstractStateExited(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "exited").(func())() +} + +func (ptr *QAbstractState) Machine() *QStateMachine { + if ptr.Pointer() != nil { + return QStateMachineFromPointer(unsafe.Pointer(C.QAbstractState_Machine(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAbstractState) ParentState() *QState { + if ptr.Pointer() != nil { + return QStateFromPointer(unsafe.Pointer(C.QAbstractState_ParentState(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAbstractState) DestroyQAbstractState() { + if ptr.Pointer() != nil { + C.QAbstractState_DestroyQAbstractState(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qabstractstate.h b/core/qabstractstate.h new file mode 100755 index 00000000..1919cdef --- /dev/null +++ b/core/qabstractstate.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QAbstractState_Active(QtObjectPtr ptr); +void QAbstractState_ConnectActiveChanged(QtObjectPtr ptr); +void QAbstractState_DisconnectActiveChanged(QtObjectPtr ptr); +void QAbstractState_ConnectEntered(QtObjectPtr ptr); +void QAbstractState_DisconnectEntered(QtObjectPtr ptr); +void QAbstractState_ConnectExited(QtObjectPtr ptr); +void QAbstractState_DisconnectExited(QtObjectPtr ptr); +QtObjectPtr QAbstractState_Machine(QtObjectPtr ptr); +QtObjectPtr QAbstractState_ParentState(QtObjectPtr ptr); +void QAbstractState_DestroyQAbstractState(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qabstracttablemodel.cpp b/core/qabstracttablemodel.cpp new file mode 100755 index 00000000..c5608361 --- /dev/null +++ b/core/qabstracttablemodel.cpp @@ -0,0 +1,33 @@ +#include "qabstracttablemodel.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAbstractTableModel: public QAbstractTableModel { +public: +}; + +QtObjectPtr QAbstractTableModel_Index(QtObjectPtr ptr, int row, int column, QtObjectPtr parent){ + return static_cast(ptr)->index(row, column, *static_cast(parent)).internalPointer(); +} + +int QAbstractTableModel_DropMimeData(QtObjectPtr ptr, QtObjectPtr data, int action, int row, int column, QtObjectPtr parent){ + return static_cast(ptr)->dropMimeData(static_cast(data), static_cast(action), row, column, *static_cast(parent)); +} + +int QAbstractTableModel_Flags(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->flags(*static_cast(index)); +} + +QtObjectPtr QAbstractTableModel_Sibling(QtObjectPtr ptr, int row, int column, QtObjectPtr idx){ + return static_cast(ptr)->sibling(row, column, *static_cast(idx)).internalPointer(); +} + +void QAbstractTableModel_DestroyQAbstractTableModel(QtObjectPtr ptr){ + static_cast(ptr)->~QAbstractTableModel(); +} + diff --git a/core/qabstracttablemodel.go b/core/qabstracttablemodel.go new file mode 100755 index 00000000..31308edb --- /dev/null +++ b/core/qabstracttablemodel.go @@ -0,0 +1,72 @@ +package core + +//#include "qabstracttablemodel.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QAbstractTableModel struct { + QAbstractItemModel +} + +type QAbstractTableModelITF interface { + QAbstractItemModelITF + QAbstractTableModelPTR() *QAbstractTableModel +} + +func PointerFromQAbstractTableModel(ptr QAbstractTableModelITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractTableModelPTR().Pointer() + } + return nil +} + +func QAbstractTableModelFromPointer(ptr unsafe.Pointer) *QAbstractTableModel { + var n = new(QAbstractTableModel) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAbstractTableModel_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAbstractTableModel) QAbstractTableModelPTR() *QAbstractTableModel { + return ptr +} + +func (ptr *QAbstractTableModel) Index(row int, column int, parent QModelIndexITF) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QAbstractTableModel_Index(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column), C.QtObjectPtr(PointerFromQModelIndex(parent))))) + } + return nil +} + +func (ptr *QAbstractTableModel) DropMimeData(data QMimeDataITF, action Qt__DropAction, row int, column int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QAbstractTableModel_DropMimeData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMimeData(data)), C.int(action), C.int(row), C.int(column), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QAbstractTableModel) Flags(index QModelIndexITF) Qt__ItemFlag { + if ptr.Pointer() != nil { + return Qt__ItemFlag(C.QAbstractTableModel_Flags(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(index)))) + } + return 0 +} + +func (ptr *QAbstractTableModel) Sibling(row int, column int, idx QModelIndexITF) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QAbstractTableModel_Sibling(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column), C.QtObjectPtr(PointerFromQModelIndex(idx))))) + } + return nil +} + +func (ptr *QAbstractTableModel) DestroyQAbstractTableModel() { + if ptr.Pointer() != nil { + C.QAbstractTableModel_DestroyQAbstractTableModel(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qabstracttablemodel.h b/core/qabstracttablemodel.h new file mode 100755 index 00000000..4c775e8e --- /dev/null +++ b/core/qabstracttablemodel.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAbstractTableModel_Index(QtObjectPtr ptr, int row, int column, QtObjectPtr parent); +int QAbstractTableModel_DropMimeData(QtObjectPtr ptr, QtObjectPtr data, int action, int row, int column, QtObjectPtr parent); +int QAbstractTableModel_Flags(QtObjectPtr ptr, QtObjectPtr index); +QtObjectPtr QAbstractTableModel_Sibling(QtObjectPtr ptr, int row, int column, QtObjectPtr idx); +void QAbstractTableModel_DestroyQAbstractTableModel(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qabstracttransition.cpp b/core/qabstracttransition.cpp new file mode 100755 index 00000000..82cd11b6 --- /dev/null +++ b/core/qabstracttransition.cpp @@ -0,0 +1,78 @@ +#include "qabstracttransition.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAbstractTransition: public QAbstractTransition { +public: +void Signal_TargetStateChanged(){callbackQAbstractTransitionTargetStateChanged(this->objectName().toUtf8().data());}; +void Signal_TargetStatesChanged(){callbackQAbstractTransitionTargetStatesChanged(this->objectName().toUtf8().data());}; +void Signal_Triggered(){callbackQAbstractTransitionTriggered(this->objectName().toUtf8().data());}; +}; + +void QAbstractTransition_AddAnimation(QtObjectPtr ptr, QtObjectPtr animation){ + static_cast(ptr)->addAnimation(static_cast(animation)); +} + +QtObjectPtr QAbstractTransition_Machine(QtObjectPtr ptr){ + return static_cast(ptr)->machine(); +} + +void QAbstractTransition_RemoveAnimation(QtObjectPtr ptr, QtObjectPtr animation){ + static_cast(ptr)->removeAnimation(static_cast(animation)); +} + +void QAbstractTransition_SetTargetState(QtObjectPtr ptr, QtObjectPtr target){ + static_cast(ptr)->setTargetState(static_cast(target)); +} + +void QAbstractTransition_SetTransitionType(QtObjectPtr ptr, int ty){ + static_cast(ptr)->setTransitionType(static_cast(ty)); +} + +QtObjectPtr QAbstractTransition_SourceState(QtObjectPtr ptr){ + return static_cast(ptr)->sourceState(); +} + +QtObjectPtr QAbstractTransition_TargetState(QtObjectPtr ptr){ + return static_cast(ptr)->targetState(); +} + +void QAbstractTransition_ConnectTargetStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QAbstractTransition::targetStateChanged, static_cast(ptr), static_cast(&MyQAbstractTransition::Signal_TargetStateChanged));; +} + +void QAbstractTransition_DisconnectTargetStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QAbstractTransition::targetStateChanged, static_cast(ptr), static_cast(&MyQAbstractTransition::Signal_TargetStateChanged));; +} + +void QAbstractTransition_ConnectTargetStatesChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QAbstractTransition::targetStatesChanged, static_cast(ptr), static_cast(&MyQAbstractTransition::Signal_TargetStatesChanged));; +} + +void QAbstractTransition_DisconnectTargetStatesChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QAbstractTransition::targetStatesChanged, static_cast(ptr), static_cast(&MyQAbstractTransition::Signal_TargetStatesChanged));; +} + +int QAbstractTransition_TransitionType(QtObjectPtr ptr){ + return static_cast(ptr)->transitionType(); +} + +void QAbstractTransition_ConnectTriggered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QAbstractTransition::triggered, static_cast(ptr), static_cast(&MyQAbstractTransition::Signal_Triggered));; +} + +void QAbstractTransition_DisconnectTriggered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QAbstractTransition::triggered, static_cast(ptr), static_cast(&MyQAbstractTransition::Signal_Triggered));; +} + +void QAbstractTransition_DestroyQAbstractTransition(QtObjectPtr ptr){ + static_cast(ptr)->~QAbstractTransition(); +} + diff --git a/core/qabstracttransition.go b/core/qabstracttransition.go new file mode 100755 index 00000000..ab0c5879 --- /dev/null +++ b/core/qabstracttransition.go @@ -0,0 +1,161 @@ +package core + +//#include "qabstracttransition.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QAbstractTransition struct { + QObject +} + +type QAbstractTransitionITF interface { + QObjectITF + QAbstractTransitionPTR() *QAbstractTransition +} + +func PointerFromQAbstractTransition(ptr QAbstractTransitionITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractTransitionPTR().Pointer() + } + return nil +} + +func QAbstractTransitionFromPointer(ptr unsafe.Pointer) *QAbstractTransition { + var n = new(QAbstractTransition) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAbstractTransition_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAbstractTransition) QAbstractTransitionPTR() *QAbstractTransition { + return ptr +} + +//QAbstractTransition::TransitionType +type QAbstractTransition__TransitionType int + +var ( + QAbstractTransition__ExternalTransition = QAbstractTransition__TransitionType(0) + QAbstractTransition__InternalTransition = QAbstractTransition__TransitionType(1) +) + +func (ptr *QAbstractTransition) AddAnimation(animation QAbstractAnimationITF) { + if ptr.Pointer() != nil { + C.QAbstractTransition_AddAnimation(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractAnimation(animation))) + } +} + +func (ptr *QAbstractTransition) Machine() *QStateMachine { + if ptr.Pointer() != nil { + return QStateMachineFromPointer(unsafe.Pointer(C.QAbstractTransition_Machine(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAbstractTransition) RemoveAnimation(animation QAbstractAnimationITF) { + if ptr.Pointer() != nil { + C.QAbstractTransition_RemoveAnimation(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractAnimation(animation))) + } +} + +func (ptr *QAbstractTransition) SetTargetState(target QAbstractStateITF) { + if ptr.Pointer() != nil { + C.QAbstractTransition_SetTargetState(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractState(target))) + } +} + +func (ptr *QAbstractTransition) SetTransitionType(ty QAbstractTransition__TransitionType) { + if ptr.Pointer() != nil { + C.QAbstractTransition_SetTransitionType(C.QtObjectPtr(ptr.Pointer()), C.int(ty)) + } +} + +func (ptr *QAbstractTransition) SourceState() *QState { + if ptr.Pointer() != nil { + return QStateFromPointer(unsafe.Pointer(C.QAbstractTransition_SourceState(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAbstractTransition) TargetState() *QAbstractState { + if ptr.Pointer() != nil { + return QAbstractStateFromPointer(unsafe.Pointer(C.QAbstractTransition_TargetState(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAbstractTransition) ConnectTargetStateChanged(f func()) { + if ptr.Pointer() != nil { + C.QAbstractTransition_ConnectTargetStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "targetStateChanged", f) + } +} + +func (ptr *QAbstractTransition) DisconnectTargetStateChanged() { + if ptr.Pointer() != nil { + C.QAbstractTransition_DisconnectTargetStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "targetStateChanged") + } +} + +//export callbackQAbstractTransitionTargetStateChanged +func callbackQAbstractTransitionTargetStateChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "targetStateChanged").(func())() +} + +func (ptr *QAbstractTransition) ConnectTargetStatesChanged(f func()) { + if ptr.Pointer() != nil { + C.QAbstractTransition_ConnectTargetStatesChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "targetStatesChanged", f) + } +} + +func (ptr *QAbstractTransition) DisconnectTargetStatesChanged() { + if ptr.Pointer() != nil { + C.QAbstractTransition_DisconnectTargetStatesChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "targetStatesChanged") + } +} + +//export callbackQAbstractTransitionTargetStatesChanged +func callbackQAbstractTransitionTargetStatesChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "targetStatesChanged").(func())() +} + +func (ptr *QAbstractTransition) TransitionType() QAbstractTransition__TransitionType { + if ptr.Pointer() != nil { + return QAbstractTransition__TransitionType(C.QAbstractTransition_TransitionType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractTransition) ConnectTriggered(f func()) { + if ptr.Pointer() != nil { + C.QAbstractTransition_ConnectTriggered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "triggered", f) + } +} + +func (ptr *QAbstractTransition) DisconnectTriggered() { + if ptr.Pointer() != nil { + C.QAbstractTransition_DisconnectTriggered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "triggered") + } +} + +//export callbackQAbstractTransitionTriggered +func callbackQAbstractTransitionTriggered(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "triggered").(func())() +} + +func (ptr *QAbstractTransition) DestroyQAbstractTransition() { + if ptr.Pointer() != nil { + C.QAbstractTransition_DestroyQAbstractTransition(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qabstracttransition.h b/core/qabstracttransition.h new file mode 100755 index 00000000..8f389412 --- /dev/null +++ b/core/qabstracttransition.h @@ -0,0 +1,24 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QAbstractTransition_AddAnimation(QtObjectPtr ptr, QtObjectPtr animation); +QtObjectPtr QAbstractTransition_Machine(QtObjectPtr ptr); +void QAbstractTransition_RemoveAnimation(QtObjectPtr ptr, QtObjectPtr animation); +void QAbstractTransition_SetTargetState(QtObjectPtr ptr, QtObjectPtr target); +void QAbstractTransition_SetTransitionType(QtObjectPtr ptr, int ty); +QtObjectPtr QAbstractTransition_SourceState(QtObjectPtr ptr); +QtObjectPtr QAbstractTransition_TargetState(QtObjectPtr ptr); +void QAbstractTransition_ConnectTargetStateChanged(QtObjectPtr ptr); +void QAbstractTransition_DisconnectTargetStateChanged(QtObjectPtr ptr); +void QAbstractTransition_ConnectTargetStatesChanged(QtObjectPtr ptr); +void QAbstractTransition_DisconnectTargetStatesChanged(QtObjectPtr ptr); +int QAbstractTransition_TransitionType(QtObjectPtr ptr); +void QAbstractTransition_ConnectTriggered(QtObjectPtr ptr); +void QAbstractTransition_DisconnectTriggered(QtObjectPtr ptr); +void QAbstractTransition_DestroyQAbstractTransition(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qanimationgroup.cpp b/core/qanimationgroup.cpp new file mode 100755 index 00000000..83b1815a --- /dev/null +++ b/core/qanimationgroup.cpp @@ -0,0 +1,8 @@ +#include "qanimationgroup.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qanimationgroup.go b/core/qanimationgroup.go new file mode 100755 index 00000000..a5ccf3c2 --- /dev/null +++ b/core/qanimationgroup.go @@ -0,0 +1,37 @@ +package core + +//#include "qanimationgroup.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QAnimationGroup struct { + QAbstractAnimation +} + +type QAnimationGroupITF interface { + QAbstractAnimationITF + QAnimationGroupPTR() *QAnimationGroup +} + +func PointerFromQAnimationGroup(ptr QAnimationGroupITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAnimationGroupPTR().Pointer() + } + return nil +} + +func QAnimationGroupFromPointer(ptr unsafe.Pointer) *QAnimationGroup { + var n = new(QAnimationGroup) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAnimationGroup_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAnimationGroup) QAnimationGroupPTR() *QAnimationGroup { + return ptr +} diff --git a/core/qanimationgroup.h b/core/qanimationgroup.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qanimationgroup.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qassociativeiterable.cpp b/core/qassociativeiterable.cpp new file mode 100755 index 00000000..4d06b147 --- /dev/null +++ b/core/qassociativeiterable.cpp @@ -0,0 +1,20 @@ +#include "qassociativeiterable.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAssociativeIterable: public QAssociativeIterable { +public: +}; + +int QAssociativeIterable_Size(QtObjectPtr ptr){ + return static_cast(ptr)->size(); +} + +char* QAssociativeIterable_Value(QtObjectPtr ptr, char* key){ + return static_cast(ptr)->value(QVariant(key)).toString().toUtf8().data(); +} + diff --git a/core/qassociativeiterable.go b/core/qassociativeiterable.go new file mode 100755 index 00000000..761ed60d --- /dev/null +++ b/core/qassociativeiterable.go @@ -0,0 +1,54 @@ +package core + +//#include "qassociativeiterable.h" +import "C" +import ( + "unsafe" +) + +type QAssociativeIterable struct { + ptr unsafe.Pointer +} + +type QAssociativeIterableITF interface { + QAssociativeIterablePTR() *QAssociativeIterable +} + +func (p *QAssociativeIterable) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QAssociativeIterable) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQAssociativeIterable(ptr QAssociativeIterableITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAssociativeIterablePTR().Pointer() + } + return nil +} + +func QAssociativeIterableFromPointer(ptr unsafe.Pointer) *QAssociativeIterable { + var n = new(QAssociativeIterable) + n.SetPointer(ptr) + return n +} + +func (ptr *QAssociativeIterable) QAssociativeIterablePTR() *QAssociativeIterable { + return ptr +} + +func (ptr *QAssociativeIterable) Size() int { + if ptr.Pointer() != nil { + return int(C.QAssociativeIterable_Size(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAssociativeIterable) Value(key string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAssociativeIterable_Value(C.QtObjectPtr(ptr.Pointer()), C.CString(key))) + } + return "" +} diff --git a/core/qassociativeiterable.h b/core/qassociativeiterable.h new file mode 100755 index 00000000..a9c98946 --- /dev/null +++ b/core/qassociativeiterable.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QAssociativeIterable_Size(QtObjectPtr ptr); +char* QAssociativeIterable_Value(QtObjectPtr ptr, char* key); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qatomicint.cpp b/core/qatomicint.cpp new file mode 100755 index 00000000..88b2b3b2 --- /dev/null +++ b/core/qatomicint.cpp @@ -0,0 +1,8 @@ +#include "qatomicint.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qatomicint.go b/core/qatomicint.go new file mode 100755 index 00000000..e40636ef --- /dev/null +++ b/core/qatomicint.go @@ -0,0 +1,33 @@ +package core + +//#include "qatomicint.h" +import "C" +import ( + "unsafe" +) + +type QAtomicInt struct { + QAtomicInteger +} + +type QAtomicIntITF interface { + QAtomicIntegerITF + QAtomicIntPTR() *QAtomicInt +} + +func PointerFromQAtomicInt(ptr QAtomicIntITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAtomicIntPTR().Pointer() + } + return nil +} + +func QAtomicIntFromPointer(ptr unsafe.Pointer) *QAtomicInt { + var n = new(QAtomicInt) + n.SetPointer(ptr) + return n +} + +func (ptr *QAtomicInt) QAtomicIntPTR() *QAtomicInt { + return ptr +} diff --git a/core/qatomicint.h b/core/qatomicint.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qatomicint.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qatomicinteger.cpp b/core/qatomicinteger.cpp new file mode 100755 index 00000000..f13b4764 --- /dev/null +++ b/core/qatomicinteger.cpp @@ -0,0 +1,9 @@ +#include "qatomicinteger.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qatomicinteger.go b/core/qatomicinteger.go new file mode 100755 index 00000000..f52f0b02 --- /dev/null +++ b/core/qatomicinteger.go @@ -0,0 +1,40 @@ +package core + +//#include "qatomicinteger.h" +import "C" +import ( + "unsafe" +) + +type QAtomicInteger struct { + ptr unsafe.Pointer +} + +type QAtomicIntegerITF interface { + QAtomicIntegerPTR() *QAtomicInteger +} + +func (p *QAtomicInteger) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QAtomicInteger) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQAtomicInteger(ptr QAtomicIntegerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAtomicIntegerPTR().Pointer() + } + return nil +} + +func QAtomicIntegerFromPointer(ptr unsafe.Pointer) *QAtomicInteger { + var n = new(QAtomicInteger) + n.SetPointer(ptr) + return n +} + +func (ptr *QAtomicInteger) QAtomicIntegerPTR() *QAtomicInteger { + return ptr +} diff --git a/core/qatomicinteger.h b/core/qatomicinteger.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qatomicinteger.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qatomicpointer.cpp b/core/qatomicpointer.cpp new file mode 100755 index 00000000..dc71ca46 --- /dev/null +++ b/core/qatomicpointer.cpp @@ -0,0 +1,8 @@ +#include "qatomicpointer.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qatomicpointer.go b/core/qatomicpointer.go new file mode 100755 index 00000000..e1d99ce8 --- /dev/null +++ b/core/qatomicpointer.go @@ -0,0 +1,40 @@ +package core + +//#include "qatomicpointer.h" +import "C" +import ( + "unsafe" +) + +type QAtomicPointer struct { + ptr unsafe.Pointer +} + +type QAtomicPointerITF interface { + QAtomicPointerPTR() *QAtomicPointer +} + +func (p *QAtomicPointer) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QAtomicPointer) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQAtomicPointer(ptr QAtomicPointerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAtomicPointerPTR().Pointer() + } + return nil +} + +func QAtomicPointerFromPointer(ptr unsafe.Pointer) *QAtomicPointer { + var n = new(QAtomicPointer) + n.SetPointer(ptr) + return n +} + +func (ptr *QAtomicPointer) QAtomicPointerPTR() *QAtomicPointer { + return ptr +} diff --git a/core/qatomicpointer.h b/core/qatomicpointer.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qatomicpointer.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qbasictimer.cpp b/core/qbasictimer.cpp new file mode 100755 index 00000000..01e1dfec --- /dev/null +++ b/core/qbasictimer.cpp @@ -0,0 +1,41 @@ +#include "qbasictimer.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQBasicTimer: public QBasicTimer { +public: +}; + +void QBasicTimer_Start(QtObjectPtr ptr, int msec, QtObjectPtr object){ + static_cast(ptr)->start(msec, static_cast(object)); +} + +QtObjectPtr QBasicTimer_NewQBasicTimer(){ + return new QBasicTimer(); +} + +int QBasicTimer_IsActive(QtObjectPtr ptr){ + return static_cast(ptr)->isActive(); +} + +void QBasicTimer_Start2(QtObjectPtr ptr, int msec, int timerType, QtObjectPtr obj){ + static_cast(ptr)->start(msec, static_cast(timerType), static_cast(obj)); +} + +void QBasicTimer_Stop(QtObjectPtr ptr){ + static_cast(ptr)->stop(); +} + +int QBasicTimer_TimerId(QtObjectPtr ptr){ + return static_cast(ptr)->timerId(); +} + +void QBasicTimer_DestroyQBasicTimer(QtObjectPtr ptr){ + static_cast(ptr)->~QBasicTimer(); +} + diff --git a/core/qbasictimer.go b/core/qbasictimer.go new file mode 100755 index 00000000..4ddd0b10 --- /dev/null +++ b/core/qbasictimer.go @@ -0,0 +1,82 @@ +package core + +//#include "qbasictimer.h" +import "C" +import ( + "unsafe" +) + +type QBasicTimer struct { + ptr unsafe.Pointer +} + +type QBasicTimerITF interface { + QBasicTimerPTR() *QBasicTimer +} + +func (p *QBasicTimer) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QBasicTimer) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQBasicTimer(ptr QBasicTimerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QBasicTimerPTR().Pointer() + } + return nil +} + +func QBasicTimerFromPointer(ptr unsafe.Pointer) *QBasicTimer { + var n = new(QBasicTimer) + n.SetPointer(ptr) + return n +} + +func (ptr *QBasicTimer) QBasicTimerPTR() *QBasicTimer { + return ptr +} + +func (ptr *QBasicTimer) Start(msec int, object QObjectITF) { + if ptr.Pointer() != nil { + C.QBasicTimer_Start(C.QtObjectPtr(ptr.Pointer()), C.int(msec), C.QtObjectPtr(PointerFromQObject(object))) + } +} + +func NewQBasicTimer() *QBasicTimer { + return QBasicTimerFromPointer(unsafe.Pointer(C.QBasicTimer_NewQBasicTimer())) +} + +func (ptr *QBasicTimer) IsActive() bool { + if ptr.Pointer() != nil { + return C.QBasicTimer_IsActive(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QBasicTimer) Start2(msec int, timerType Qt__TimerType, obj QObjectITF) { + if ptr.Pointer() != nil { + C.QBasicTimer_Start2(C.QtObjectPtr(ptr.Pointer()), C.int(msec), C.int(timerType), C.QtObjectPtr(PointerFromQObject(obj))) + } +} + +func (ptr *QBasicTimer) Stop() { + if ptr.Pointer() != nil { + C.QBasicTimer_Stop(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QBasicTimer) TimerId() int { + if ptr.Pointer() != nil { + return int(C.QBasicTimer_TimerId(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QBasicTimer) DestroyQBasicTimer() { + if ptr.Pointer() != nil { + C.QBasicTimer_DestroyQBasicTimer(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qbasictimer.h b/core/qbasictimer.h new file mode 100755 index 00000000..4d95c35a --- /dev/null +++ b/core/qbasictimer.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QBasicTimer_Start(QtObjectPtr ptr, int msec, QtObjectPtr object); +QtObjectPtr QBasicTimer_NewQBasicTimer(); +int QBasicTimer_IsActive(QtObjectPtr ptr); +void QBasicTimer_Start2(QtObjectPtr ptr, int msec, int timerType, QtObjectPtr obj); +void QBasicTimer_Stop(QtObjectPtr ptr); +int QBasicTimer_TimerId(QtObjectPtr ptr); +void QBasicTimer_DestroyQBasicTimer(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qbitarray.cpp b/core/qbitarray.cpp new file mode 100755 index 00000000..0ae4beb2 --- /dev/null +++ b/core/qbitarray.cpp @@ -0,0 +1,96 @@ +#include "qbitarray.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQBitArray: public QBitArray { +public: +}; + +QtObjectPtr QBitArray_NewQBitArray(){ + return new QBitArray(); +} + +QtObjectPtr QBitArray_NewQBitArray4(QtObjectPtr other){ + return new QBitArray(*static_cast(other)); +} + +QtObjectPtr QBitArray_NewQBitArray3(QtObjectPtr other){ + return new QBitArray(*static_cast(other)); +} + +QtObjectPtr QBitArray_NewQBitArray2(int size, int value){ + return new QBitArray(size, value != 0); +} + +int QBitArray_At(QtObjectPtr ptr, int i){ + return static_cast(ptr)->at(i); +} + +void QBitArray_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +void QBitArray_ClearBit(QtObjectPtr ptr, int i){ + static_cast(ptr)->clearBit(i); +} + +int QBitArray_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +int QBitArray_Count2(QtObjectPtr ptr, int on){ + return static_cast(ptr)->count(on != 0); +} + +int QBitArray_Fill(QtObjectPtr ptr, int value, int size){ + return static_cast(ptr)->fill(value != 0, size); +} + +void QBitArray_Fill2(QtObjectPtr ptr, int value, int begin, int end){ + static_cast(ptr)->fill(value != 0, begin, end); +} + +int QBitArray_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +int QBitArray_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +void QBitArray_Resize(QtObjectPtr ptr, int size){ + static_cast(ptr)->resize(size); +} + +void QBitArray_SetBit(QtObjectPtr ptr, int i){ + static_cast(ptr)->setBit(i); +} + +void QBitArray_SetBit2(QtObjectPtr ptr, int i, int value){ + static_cast(ptr)->setBit(i, value != 0); +} + +int QBitArray_Size(QtObjectPtr ptr){ + return static_cast(ptr)->size(); +} + +void QBitArray_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +int QBitArray_TestBit(QtObjectPtr ptr, int i){ + return static_cast(ptr)->testBit(i); +} + +int QBitArray_ToggleBit(QtObjectPtr ptr, int i){ + return static_cast(ptr)->toggleBit(i); +} + +void QBitArray_Truncate(QtObjectPtr ptr, int pos){ + static_cast(ptr)->truncate(pos); +} + diff --git a/core/qbitarray.go b/core/qbitarray.go new file mode 100755 index 00000000..4923c87b --- /dev/null +++ b/core/qbitarray.go @@ -0,0 +1,168 @@ +package core + +//#include "qbitarray.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QBitArray struct { + ptr unsafe.Pointer +} + +type QBitArrayITF interface { + QBitArrayPTR() *QBitArray +} + +func (p *QBitArray) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QBitArray) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQBitArray(ptr QBitArrayITF) unsafe.Pointer { + if ptr != nil { + return ptr.QBitArrayPTR().Pointer() + } + return nil +} + +func QBitArrayFromPointer(ptr unsafe.Pointer) *QBitArray { + var n = new(QBitArray) + n.SetPointer(ptr) + return n +} + +func (ptr *QBitArray) QBitArrayPTR() *QBitArray { + return ptr +} + +func NewQBitArray() *QBitArray { + return QBitArrayFromPointer(unsafe.Pointer(C.QBitArray_NewQBitArray())) +} + +func NewQBitArray4(other QBitArrayITF) *QBitArray { + return QBitArrayFromPointer(unsafe.Pointer(C.QBitArray_NewQBitArray4(C.QtObjectPtr(PointerFromQBitArray(other))))) +} + +func NewQBitArray3(other QBitArrayITF) *QBitArray { + return QBitArrayFromPointer(unsafe.Pointer(C.QBitArray_NewQBitArray3(C.QtObjectPtr(PointerFromQBitArray(other))))) +} + +func NewQBitArray2(size int, value bool) *QBitArray { + return QBitArrayFromPointer(unsafe.Pointer(C.QBitArray_NewQBitArray2(C.int(size), C.int(qt.GoBoolToInt(value))))) +} + +func (ptr *QBitArray) At(i int) bool { + if ptr.Pointer() != nil { + return C.QBitArray_At(C.QtObjectPtr(ptr.Pointer()), C.int(i)) != 0 + } + return false +} + +func (ptr *QBitArray) Clear() { + if ptr.Pointer() != nil { + C.QBitArray_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QBitArray) ClearBit(i int) { + if ptr.Pointer() != nil { + C.QBitArray_ClearBit(C.QtObjectPtr(ptr.Pointer()), C.int(i)) + } +} + +func (ptr *QBitArray) Count() int { + if ptr.Pointer() != nil { + return int(C.QBitArray_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QBitArray) Count2(on bool) int { + if ptr.Pointer() != nil { + return int(C.QBitArray_Count2(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(on)))) + } + return 0 +} + +func (ptr *QBitArray) Fill(value bool, size int) bool { + if ptr.Pointer() != nil { + return C.QBitArray_Fill(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(value)), C.int(size)) != 0 + } + return false +} + +func (ptr *QBitArray) Fill2(value bool, begin int, end int) { + if ptr.Pointer() != nil { + C.QBitArray_Fill2(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(value)), C.int(begin), C.int(end)) + } +} + +func (ptr *QBitArray) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QBitArray_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QBitArray) IsNull() bool { + if ptr.Pointer() != nil { + return C.QBitArray_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QBitArray) Resize(size int) { + if ptr.Pointer() != nil { + C.QBitArray_Resize(C.QtObjectPtr(ptr.Pointer()), C.int(size)) + } +} + +func (ptr *QBitArray) SetBit(i int) { + if ptr.Pointer() != nil { + C.QBitArray_SetBit(C.QtObjectPtr(ptr.Pointer()), C.int(i)) + } +} + +func (ptr *QBitArray) SetBit2(i int, value bool) { + if ptr.Pointer() != nil { + C.QBitArray_SetBit2(C.QtObjectPtr(ptr.Pointer()), C.int(i), C.int(qt.GoBoolToInt(value))) + } +} + +func (ptr *QBitArray) Size() int { + if ptr.Pointer() != nil { + return int(C.QBitArray_Size(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QBitArray) Swap(other QBitArrayITF) { + if ptr.Pointer() != nil { + C.QBitArray_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQBitArray(other))) + } +} + +func (ptr *QBitArray) TestBit(i int) bool { + if ptr.Pointer() != nil { + return C.QBitArray_TestBit(C.QtObjectPtr(ptr.Pointer()), C.int(i)) != 0 + } + return false +} + +func (ptr *QBitArray) ToggleBit(i int) bool { + if ptr.Pointer() != nil { + return C.QBitArray_ToggleBit(C.QtObjectPtr(ptr.Pointer()), C.int(i)) != 0 + } + return false +} + +func (ptr *QBitArray) Truncate(pos int) { + if ptr.Pointer() != nil { + C.QBitArray_Truncate(C.QtObjectPtr(ptr.Pointer()), C.int(pos)) + } +} diff --git a/core/qbitarray.h b/core/qbitarray.h new file mode 100755 index 00000000..0f10899f --- /dev/null +++ b/core/qbitarray.h @@ -0,0 +1,30 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QBitArray_NewQBitArray(); +QtObjectPtr QBitArray_NewQBitArray4(QtObjectPtr other); +QtObjectPtr QBitArray_NewQBitArray3(QtObjectPtr other); +QtObjectPtr QBitArray_NewQBitArray2(int size, int value); +int QBitArray_At(QtObjectPtr ptr, int i); +void QBitArray_Clear(QtObjectPtr ptr); +void QBitArray_ClearBit(QtObjectPtr ptr, int i); +int QBitArray_Count(QtObjectPtr ptr); +int QBitArray_Count2(QtObjectPtr ptr, int on); +int QBitArray_Fill(QtObjectPtr ptr, int value, int size); +void QBitArray_Fill2(QtObjectPtr ptr, int value, int begin, int end); +int QBitArray_IsEmpty(QtObjectPtr ptr); +int QBitArray_IsNull(QtObjectPtr ptr); +void QBitArray_Resize(QtObjectPtr ptr, int size); +void QBitArray_SetBit(QtObjectPtr ptr, int i); +void QBitArray_SetBit2(QtObjectPtr ptr, int i, int value); +int QBitArray_Size(QtObjectPtr ptr); +void QBitArray_Swap(QtObjectPtr ptr, QtObjectPtr other); +int QBitArray_TestBit(QtObjectPtr ptr, int i); +int QBitArray_ToggleBit(QtObjectPtr ptr, int i); +void QBitArray_Truncate(QtObjectPtr ptr, int pos); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qbuffer.cpp b/core/qbuffer.cpp new file mode 100755 index 00000000..04b809ae --- /dev/null +++ b/core/qbuffer.cpp @@ -0,0 +1,55 @@ +#include "qbuffer.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQBuffer: public QBuffer { +public: +}; + +QtObjectPtr QBuffer_NewQBuffer2(QtObjectPtr byteArray, QtObjectPtr parent){ + return new QBuffer(static_cast(byteArray), static_cast(parent)); +} + +QtObjectPtr QBuffer_NewQBuffer(QtObjectPtr parent){ + return new QBuffer(static_cast(parent)); +} + +int QBuffer_AtEnd(QtObjectPtr ptr){ + return static_cast(ptr)->atEnd(); +} + +int QBuffer_CanReadLine(QtObjectPtr ptr){ + return static_cast(ptr)->canReadLine(); +} + +void QBuffer_Close(QtObjectPtr ptr){ + static_cast(ptr)->close(); +} + +int QBuffer_Open(QtObjectPtr ptr, int flags){ + return static_cast(ptr)->open(static_cast(flags)); +} + +void QBuffer_SetBuffer(QtObjectPtr ptr, QtObjectPtr byteArray){ + static_cast(ptr)->setBuffer(static_cast(byteArray)); +} + +void QBuffer_SetData(QtObjectPtr ptr, QtObjectPtr data){ + static_cast(ptr)->setData(*static_cast(data)); +} + +void QBuffer_SetData2(QtObjectPtr ptr, char* data, int size){ + static_cast(ptr)->setData(const_cast(data), size); +} + +void QBuffer_DestroyQBuffer(QtObjectPtr ptr){ + static_cast(ptr)->~QBuffer(); +} + diff --git a/core/qbuffer.go b/core/qbuffer.go new file mode 100755 index 00000000..2456728d --- /dev/null +++ b/core/qbuffer.go @@ -0,0 +1,97 @@ +package core + +//#include "qbuffer.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QBuffer struct { + QIODevice +} + +type QBufferITF interface { + QIODeviceITF + QBufferPTR() *QBuffer +} + +func PointerFromQBuffer(ptr QBufferITF) unsafe.Pointer { + if ptr != nil { + return ptr.QBufferPTR().Pointer() + } + return nil +} + +func QBufferFromPointer(ptr unsafe.Pointer) *QBuffer { + var n = new(QBuffer) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QBuffer_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QBuffer) QBufferPTR() *QBuffer { + return ptr +} + +func NewQBuffer2(byteArray QByteArrayITF, parent QObjectITF) *QBuffer { + return QBufferFromPointer(unsafe.Pointer(C.QBuffer_NewQBuffer2(C.QtObjectPtr(PointerFromQByteArray(byteArray)), C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func NewQBuffer(parent QObjectITF) *QBuffer { + return QBufferFromPointer(unsafe.Pointer(C.QBuffer_NewQBuffer(C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func (ptr *QBuffer) AtEnd() bool { + if ptr.Pointer() != nil { + return C.QBuffer_AtEnd(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QBuffer) CanReadLine() bool { + if ptr.Pointer() != nil { + return C.QBuffer_CanReadLine(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QBuffer) Close() { + if ptr.Pointer() != nil { + C.QBuffer_Close(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QBuffer) Open(flags QIODevice__OpenModeFlag) bool { + if ptr.Pointer() != nil { + return C.QBuffer_Open(C.QtObjectPtr(ptr.Pointer()), C.int(flags)) != 0 + } + return false +} + +func (ptr *QBuffer) SetBuffer(byteArray QByteArrayITF) { + if ptr.Pointer() != nil { + C.QBuffer_SetBuffer(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQByteArray(byteArray))) + } +} + +func (ptr *QBuffer) SetData(data QByteArrayITF) { + if ptr.Pointer() != nil { + C.QBuffer_SetData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQByteArray(data))) + } +} + +func (ptr *QBuffer) SetData2(data string, size int) { + if ptr.Pointer() != nil { + C.QBuffer_SetData2(C.QtObjectPtr(ptr.Pointer()), C.CString(data), C.int(size)) + } +} + +func (ptr *QBuffer) DestroyQBuffer() { + if ptr.Pointer() != nil { + C.QBuffer_DestroyQBuffer(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qbuffer.h b/core/qbuffer.h new file mode 100755 index 00000000..3c951f38 --- /dev/null +++ b/core/qbuffer.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QBuffer_NewQBuffer2(QtObjectPtr byteArray, QtObjectPtr parent); +QtObjectPtr QBuffer_NewQBuffer(QtObjectPtr parent); +int QBuffer_AtEnd(QtObjectPtr ptr); +int QBuffer_CanReadLine(QtObjectPtr ptr); +void QBuffer_Close(QtObjectPtr ptr); +int QBuffer_Open(QtObjectPtr ptr, int flags); +void QBuffer_SetBuffer(QtObjectPtr ptr, QtObjectPtr byteArray); +void QBuffer_SetData(QtObjectPtr ptr, QtObjectPtr data); +void QBuffer_SetData2(QtObjectPtr ptr, char* data, int size); +void QBuffer_DestroyQBuffer(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qbytearray.cpp b/core/qbytearray.cpp new file mode 100755 index 00000000..e89909a9 --- /dev/null +++ b/core/qbytearray.cpp @@ -0,0 +1,196 @@ +#include "qbytearray.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQByteArray: public QByteArray { +public: +}; + +void QByteArray_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +int QByteArray_IndexOf3(QtObjectPtr ptr, char* str, int from){ + return static_cast(ptr)->indexOf(const_cast(str), from); +} + +int QByteArray_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QByteArray_LastIndexOf(QtObjectPtr ptr, QtObjectPtr ba, int from){ + return static_cast(ptr)->lastIndexOf(*static_cast(ba), from); +} + +int QByteArray_LastIndexOf3(QtObjectPtr ptr, char* str, int from){ + return static_cast(ptr)->lastIndexOf(const_cast(str), from); +} + +QtObjectPtr QByteArray_NewQByteArray(){ + return new QByteArray(); +} + +QtObjectPtr QByteArray_NewQByteArray6(QtObjectPtr other){ + return new QByteArray(*static_cast(other)); +} + +QtObjectPtr QByteArray_NewQByteArray5(QtObjectPtr other){ + return new QByteArray(*static_cast(other)); +} + +QtObjectPtr QByteArray_NewQByteArray2(char* data, int size){ + return new QByteArray(const_cast(data), size); +} + +QtObjectPtr QByteArray_NewQByteArray3(int size, char* ch){ + return new QByteArray(size, *ch); +} + +int QByteArray_Capacity(QtObjectPtr ptr){ + return static_cast(ptr)->capacity(); +} + +void QByteArray_Chop(QtObjectPtr ptr, int n){ + static_cast(ptr)->chop(n); +} + +int QByteArray_Contains3(QtObjectPtr ptr, char* ch){ + return static_cast(ptr)->contains(*ch); +} + +int QByteArray_Contains(QtObjectPtr ptr, QtObjectPtr ba){ + return static_cast(ptr)->contains(*static_cast(ba)); +} + +int QByteArray_Contains2(QtObjectPtr ptr, char* str){ + return static_cast(ptr)->contains(const_cast(str)); +} + +int QByteArray_Count4(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +int QByteArray_Count3(QtObjectPtr ptr, char* ch){ + return static_cast(ptr)->count(*ch); +} + +int QByteArray_Count(QtObjectPtr ptr, QtObjectPtr ba){ + return static_cast(ptr)->count(*static_cast(ba)); +} + +int QByteArray_Count2(QtObjectPtr ptr, char* str){ + return static_cast(ptr)->count(const_cast(str)); +} + +int QByteArray_EndsWith3(QtObjectPtr ptr, char* ch){ + return static_cast(ptr)->endsWith(*ch); +} + +int QByteArray_EndsWith(QtObjectPtr ptr, QtObjectPtr ba){ + return static_cast(ptr)->endsWith(*static_cast(ba)); +} + +int QByteArray_EndsWith2(QtObjectPtr ptr, char* str){ + return static_cast(ptr)->endsWith(const_cast(str)); +} + +int QByteArray_IndexOf4(QtObjectPtr ptr, char* ch, int from){ + return static_cast(ptr)->indexOf(*ch, from); +} + +int QByteArray_IndexOf(QtObjectPtr ptr, QtObjectPtr ba, int from){ + return static_cast(ptr)->indexOf(*static_cast(ba), from); +} + +int QByteArray_IndexOf2(QtObjectPtr ptr, char* str, int from){ + return static_cast(ptr)->indexOf(QString(str), from); +} + +int QByteArray_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +int QByteArray_LastIndexOf4(QtObjectPtr ptr, char* ch, int from){ + return static_cast(ptr)->lastIndexOf(*ch, from); +} + +int QByteArray_LastIndexOf2(QtObjectPtr ptr, char* str, int from){ + return static_cast(ptr)->lastIndexOf(QString(str), from); +} + +int QByteArray_Length(QtObjectPtr ptr){ + return static_cast(ptr)->length(); +} + +void QByteArray_Push_back3(QtObjectPtr ptr, char* ch){ + static_cast(ptr)->push_back(*ch); +} + +void QByteArray_Push_back(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->push_back(*static_cast(other)); +} + +void QByteArray_Push_back2(QtObjectPtr ptr, char* str){ + static_cast(ptr)->push_back(const_cast(str)); +} + +void QByteArray_Push_front3(QtObjectPtr ptr, char* ch){ + static_cast(ptr)->push_front(*ch); +} + +void QByteArray_Push_front(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->push_front(*static_cast(other)); +} + +void QByteArray_Push_front2(QtObjectPtr ptr, char* str){ + static_cast(ptr)->push_front(const_cast(str)); +} + +void QByteArray_Reserve(QtObjectPtr ptr, int size){ + static_cast(ptr)->reserve(size); +} + +void QByteArray_Resize(QtObjectPtr ptr, int size){ + static_cast(ptr)->resize(size); +} + +int QByteArray_Size(QtObjectPtr ptr){ + return static_cast(ptr)->size(); +} + +void QByteArray_Squeeze(QtObjectPtr ptr){ + static_cast(ptr)->squeeze(); +} + +int QByteArray_StartsWith3(QtObjectPtr ptr, char* ch){ + return static_cast(ptr)->startsWith(*ch); +} + +int QByteArray_StartsWith(QtObjectPtr ptr, QtObjectPtr ba){ + return static_cast(ptr)->startsWith(*static_cast(ba)); +} + +int QByteArray_StartsWith2(QtObjectPtr ptr, char* str){ + return static_cast(ptr)->startsWith(const_cast(str)); +} + +void QByteArray_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +int QByteArray_ToInt(QtObjectPtr ptr, int ok, int base){ + return static_cast(ptr)->toInt(NULL, base); +} + +void QByteArray_Truncate(QtObjectPtr ptr, int pos){ + static_cast(ptr)->truncate(pos); +} + +void QByteArray_DestroyQByteArray(QtObjectPtr ptr){ + static_cast(ptr)->~QByteArray(); +} + diff --git a/core/qbytearray.go b/core/qbytearray.go new file mode 100755 index 00000000..88c2ba26 --- /dev/null +++ b/core/qbytearray.go @@ -0,0 +1,344 @@ +package core + +//#include "qbytearray.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QByteArray struct { + ptr unsafe.Pointer +} + +type QByteArrayITF interface { + QByteArrayPTR() *QByteArray +} + +func (p *QByteArray) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QByteArray) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQByteArray(ptr QByteArrayITF) unsafe.Pointer { + if ptr != nil { + return ptr.QByteArrayPTR().Pointer() + } + return nil +} + +func QByteArrayFromPointer(ptr unsafe.Pointer) *QByteArray { + var n = new(QByteArray) + n.SetPointer(ptr) + return n +} + +func (ptr *QByteArray) QByteArrayPTR() *QByteArray { + return ptr +} + +//QByteArray::Base64Option +type QByteArray__Base64Option int + +var ( + QByteArray__Base64Encoding = QByteArray__Base64Option(0) + QByteArray__Base64UrlEncoding = QByteArray__Base64Option(1) + QByteArray__KeepTrailingEquals = QByteArray__Base64Option(0) + QByteArray__OmitTrailingEquals = QByteArray__Base64Option(2) +) + +func (ptr *QByteArray) Clear() { + if ptr.Pointer() != nil { + C.QByteArray_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QByteArray) IndexOf3(str string, from int) int { + if ptr.Pointer() != nil { + return int(C.QByteArray_IndexOf3(C.QtObjectPtr(ptr.Pointer()), C.CString(str), C.int(from))) + } + return 0 +} + +func (ptr *QByteArray) IsNull() bool { + if ptr.Pointer() != nil { + return C.QByteArray_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QByteArray) LastIndexOf(ba QByteArrayITF, from int) int { + if ptr.Pointer() != nil { + return int(C.QByteArray_LastIndexOf(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQByteArray(ba)), C.int(from))) + } + return 0 +} + +func (ptr *QByteArray) LastIndexOf3(str string, from int) int { + if ptr.Pointer() != nil { + return int(C.QByteArray_LastIndexOf3(C.QtObjectPtr(ptr.Pointer()), C.CString(str), C.int(from))) + } + return 0 +} + +func NewQByteArray() *QByteArray { + return QByteArrayFromPointer(unsafe.Pointer(C.QByteArray_NewQByteArray())) +} + +func NewQByteArray6(other QByteArrayITF) *QByteArray { + return QByteArrayFromPointer(unsafe.Pointer(C.QByteArray_NewQByteArray6(C.QtObjectPtr(PointerFromQByteArray(other))))) +} + +func NewQByteArray5(other QByteArrayITF) *QByteArray { + return QByteArrayFromPointer(unsafe.Pointer(C.QByteArray_NewQByteArray5(C.QtObjectPtr(PointerFromQByteArray(other))))) +} + +func NewQByteArray2(data string, size int) *QByteArray { + return QByteArrayFromPointer(unsafe.Pointer(C.QByteArray_NewQByteArray2(C.CString(data), C.int(size)))) +} + +func NewQByteArray3(size int, ch string) *QByteArray { + return QByteArrayFromPointer(unsafe.Pointer(C.QByteArray_NewQByteArray3(C.int(size), C.CString(ch)))) +} + +func (ptr *QByteArray) Capacity() int { + if ptr.Pointer() != nil { + return int(C.QByteArray_Capacity(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QByteArray) Chop(n int) { + if ptr.Pointer() != nil { + C.QByteArray_Chop(C.QtObjectPtr(ptr.Pointer()), C.int(n)) + } +} + +func (ptr *QByteArray) Contains3(ch string) bool { + if ptr.Pointer() != nil { + return C.QByteArray_Contains3(C.QtObjectPtr(ptr.Pointer()), C.CString(ch)) != 0 + } + return false +} + +func (ptr *QByteArray) Contains(ba QByteArrayITF) bool { + if ptr.Pointer() != nil { + return C.QByteArray_Contains(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQByteArray(ba))) != 0 + } + return false +} + +func (ptr *QByteArray) Contains2(str string) bool { + if ptr.Pointer() != nil { + return C.QByteArray_Contains2(C.QtObjectPtr(ptr.Pointer()), C.CString(str)) != 0 + } + return false +} + +func (ptr *QByteArray) Count4() int { + if ptr.Pointer() != nil { + return int(C.QByteArray_Count4(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QByteArray) Count3(ch string) int { + if ptr.Pointer() != nil { + return int(C.QByteArray_Count3(C.QtObjectPtr(ptr.Pointer()), C.CString(ch))) + } + return 0 +} + +func (ptr *QByteArray) Count(ba QByteArrayITF) int { + if ptr.Pointer() != nil { + return int(C.QByteArray_Count(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQByteArray(ba)))) + } + return 0 +} + +func (ptr *QByteArray) Count2(str string) int { + if ptr.Pointer() != nil { + return int(C.QByteArray_Count2(C.QtObjectPtr(ptr.Pointer()), C.CString(str))) + } + return 0 +} + +func (ptr *QByteArray) EndsWith3(ch string) bool { + if ptr.Pointer() != nil { + return C.QByteArray_EndsWith3(C.QtObjectPtr(ptr.Pointer()), C.CString(ch)) != 0 + } + return false +} + +func (ptr *QByteArray) EndsWith(ba QByteArrayITF) bool { + if ptr.Pointer() != nil { + return C.QByteArray_EndsWith(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQByteArray(ba))) != 0 + } + return false +} + +func (ptr *QByteArray) EndsWith2(str string) bool { + if ptr.Pointer() != nil { + return C.QByteArray_EndsWith2(C.QtObjectPtr(ptr.Pointer()), C.CString(str)) != 0 + } + return false +} + +func (ptr *QByteArray) IndexOf4(ch string, from int) int { + if ptr.Pointer() != nil { + return int(C.QByteArray_IndexOf4(C.QtObjectPtr(ptr.Pointer()), C.CString(ch), C.int(from))) + } + return 0 +} + +func (ptr *QByteArray) IndexOf(ba QByteArrayITF, from int) int { + if ptr.Pointer() != nil { + return int(C.QByteArray_IndexOf(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQByteArray(ba)), C.int(from))) + } + return 0 +} + +func (ptr *QByteArray) IndexOf2(str string, from int) int { + if ptr.Pointer() != nil { + return int(C.QByteArray_IndexOf2(C.QtObjectPtr(ptr.Pointer()), C.CString(str), C.int(from))) + } + return 0 +} + +func (ptr *QByteArray) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QByteArray_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QByteArray) LastIndexOf4(ch string, from int) int { + if ptr.Pointer() != nil { + return int(C.QByteArray_LastIndexOf4(C.QtObjectPtr(ptr.Pointer()), C.CString(ch), C.int(from))) + } + return 0 +} + +func (ptr *QByteArray) LastIndexOf2(str string, from int) int { + if ptr.Pointer() != nil { + return int(C.QByteArray_LastIndexOf2(C.QtObjectPtr(ptr.Pointer()), C.CString(str), C.int(from))) + } + return 0 +} + +func (ptr *QByteArray) Length() int { + if ptr.Pointer() != nil { + return int(C.QByteArray_Length(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QByteArray) Push_back3(ch string) { + if ptr.Pointer() != nil { + C.QByteArray_Push_back3(C.QtObjectPtr(ptr.Pointer()), C.CString(ch)) + } +} + +func (ptr *QByteArray) Push_back(other QByteArrayITF) { + if ptr.Pointer() != nil { + C.QByteArray_Push_back(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQByteArray(other))) + } +} + +func (ptr *QByteArray) Push_back2(str string) { + if ptr.Pointer() != nil { + C.QByteArray_Push_back2(C.QtObjectPtr(ptr.Pointer()), C.CString(str)) + } +} + +func (ptr *QByteArray) Push_front3(ch string) { + if ptr.Pointer() != nil { + C.QByteArray_Push_front3(C.QtObjectPtr(ptr.Pointer()), C.CString(ch)) + } +} + +func (ptr *QByteArray) Push_front(other QByteArrayITF) { + if ptr.Pointer() != nil { + C.QByteArray_Push_front(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQByteArray(other))) + } +} + +func (ptr *QByteArray) Push_front2(str string) { + if ptr.Pointer() != nil { + C.QByteArray_Push_front2(C.QtObjectPtr(ptr.Pointer()), C.CString(str)) + } +} + +func (ptr *QByteArray) Reserve(size int) { + if ptr.Pointer() != nil { + C.QByteArray_Reserve(C.QtObjectPtr(ptr.Pointer()), C.int(size)) + } +} + +func (ptr *QByteArray) Resize(size int) { + if ptr.Pointer() != nil { + C.QByteArray_Resize(C.QtObjectPtr(ptr.Pointer()), C.int(size)) + } +} + +func (ptr *QByteArray) Size() int { + if ptr.Pointer() != nil { + return int(C.QByteArray_Size(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QByteArray) Squeeze() { + if ptr.Pointer() != nil { + C.QByteArray_Squeeze(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QByteArray) StartsWith3(ch string) bool { + if ptr.Pointer() != nil { + return C.QByteArray_StartsWith3(C.QtObjectPtr(ptr.Pointer()), C.CString(ch)) != 0 + } + return false +} + +func (ptr *QByteArray) StartsWith(ba QByteArrayITF) bool { + if ptr.Pointer() != nil { + return C.QByteArray_StartsWith(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQByteArray(ba))) != 0 + } + return false +} + +func (ptr *QByteArray) StartsWith2(str string) bool { + if ptr.Pointer() != nil { + return C.QByteArray_StartsWith2(C.QtObjectPtr(ptr.Pointer()), C.CString(str)) != 0 + } + return false +} + +func (ptr *QByteArray) Swap(other QByteArrayITF) { + if ptr.Pointer() != nil { + C.QByteArray_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQByteArray(other))) + } +} + +func (ptr *QByteArray) ToInt(ok bool, base int) int { + if ptr.Pointer() != nil { + return int(C.QByteArray_ToInt(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(ok)), C.int(base))) + } + return 0 +} + +func (ptr *QByteArray) Truncate(pos int) { + if ptr.Pointer() != nil { + C.QByteArray_Truncate(C.QtObjectPtr(ptr.Pointer()), C.int(pos)) + } +} + +func (ptr *QByteArray) DestroyQByteArray() { + if ptr.Pointer() != nil { + C.QByteArray_DestroyQByteArray(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qbytearray.h b/core/qbytearray.h new file mode 100755 index 00000000..39972d84 --- /dev/null +++ b/core/qbytearray.h @@ -0,0 +1,55 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QByteArray_Clear(QtObjectPtr ptr); +int QByteArray_IndexOf3(QtObjectPtr ptr, char* str, int from); +int QByteArray_IsNull(QtObjectPtr ptr); +int QByteArray_LastIndexOf(QtObjectPtr ptr, QtObjectPtr ba, int from); +int QByteArray_LastIndexOf3(QtObjectPtr ptr, char* str, int from); +QtObjectPtr QByteArray_NewQByteArray(); +QtObjectPtr QByteArray_NewQByteArray6(QtObjectPtr other); +QtObjectPtr QByteArray_NewQByteArray5(QtObjectPtr other); +QtObjectPtr QByteArray_NewQByteArray2(char* data, int size); +QtObjectPtr QByteArray_NewQByteArray3(int size, char* ch); +int QByteArray_Capacity(QtObjectPtr ptr); +void QByteArray_Chop(QtObjectPtr ptr, int n); +int QByteArray_Contains3(QtObjectPtr ptr, char* ch); +int QByteArray_Contains(QtObjectPtr ptr, QtObjectPtr ba); +int QByteArray_Contains2(QtObjectPtr ptr, char* str); +int QByteArray_Count4(QtObjectPtr ptr); +int QByteArray_Count3(QtObjectPtr ptr, char* ch); +int QByteArray_Count(QtObjectPtr ptr, QtObjectPtr ba); +int QByteArray_Count2(QtObjectPtr ptr, char* str); +int QByteArray_EndsWith3(QtObjectPtr ptr, char* ch); +int QByteArray_EndsWith(QtObjectPtr ptr, QtObjectPtr ba); +int QByteArray_EndsWith2(QtObjectPtr ptr, char* str); +int QByteArray_IndexOf4(QtObjectPtr ptr, char* ch, int from); +int QByteArray_IndexOf(QtObjectPtr ptr, QtObjectPtr ba, int from); +int QByteArray_IndexOf2(QtObjectPtr ptr, char* str, int from); +int QByteArray_IsEmpty(QtObjectPtr ptr); +int QByteArray_LastIndexOf4(QtObjectPtr ptr, char* ch, int from); +int QByteArray_LastIndexOf2(QtObjectPtr ptr, char* str, int from); +int QByteArray_Length(QtObjectPtr ptr); +void QByteArray_Push_back3(QtObjectPtr ptr, char* ch); +void QByteArray_Push_back(QtObjectPtr ptr, QtObjectPtr other); +void QByteArray_Push_back2(QtObjectPtr ptr, char* str); +void QByteArray_Push_front3(QtObjectPtr ptr, char* ch); +void QByteArray_Push_front(QtObjectPtr ptr, QtObjectPtr other); +void QByteArray_Push_front2(QtObjectPtr ptr, char* str); +void QByteArray_Reserve(QtObjectPtr ptr, int size); +void QByteArray_Resize(QtObjectPtr ptr, int size); +int QByteArray_Size(QtObjectPtr ptr); +void QByteArray_Squeeze(QtObjectPtr ptr); +int QByteArray_StartsWith3(QtObjectPtr ptr, char* ch); +int QByteArray_StartsWith(QtObjectPtr ptr, QtObjectPtr ba); +int QByteArray_StartsWith2(QtObjectPtr ptr, char* str); +void QByteArray_Swap(QtObjectPtr ptr, QtObjectPtr other); +int QByteArray_ToInt(QtObjectPtr ptr, int ok, int base); +void QByteArray_Truncate(QtObjectPtr ptr, int pos); +void QByteArray_DestroyQByteArray(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qbytearraylist.cpp b/core/qbytearraylist.cpp new file mode 100755 index 00000000..c438e983 --- /dev/null +++ b/core/qbytearraylist.cpp @@ -0,0 +1,15 @@ +#include "qbytearraylist.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQByteArrayList: public QByteArrayList { +public: +}; + diff --git a/core/qbytearraylist.go b/core/qbytearraylist.go new file mode 100755 index 00000000..181be52a --- /dev/null +++ b/core/qbytearraylist.go @@ -0,0 +1,33 @@ +package core + +//#include "qbytearraylist.h" +import "C" +import ( + "unsafe" +) + +type QByteArrayList struct { + QList +} + +type QByteArrayListITF interface { + QListITF + QByteArrayListPTR() *QByteArrayList +} + +func PointerFromQByteArrayList(ptr QByteArrayListITF) unsafe.Pointer { + if ptr != nil { + return ptr.QByteArrayListPTR().Pointer() + } + return nil +} + +func QByteArrayListFromPointer(ptr unsafe.Pointer) *QByteArrayList { + var n = new(QByteArrayList) + n.SetPointer(ptr) + return n +} + +func (ptr *QByteArrayList) QByteArrayListPTR() *QByteArrayList { + return ptr +} diff --git a/core/qbytearraylist.h b/core/qbytearraylist.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qbytearraylist.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qbytearraymatcher.cpp b/core/qbytearraymatcher.cpp new file mode 100755 index 00000000..1bcfb194 --- /dev/null +++ b/core/qbytearraymatcher.cpp @@ -0,0 +1,45 @@ +#include "qbytearraymatcher.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQByteArrayMatcher: public QByteArrayMatcher { +public: +}; + +QtObjectPtr QByteArrayMatcher_NewQByteArrayMatcher(){ + return new QByteArrayMatcher(); +} + +QtObjectPtr QByteArrayMatcher_NewQByteArrayMatcher2(QtObjectPtr pattern){ + return new QByteArrayMatcher(*static_cast(pattern)); +} + +QtObjectPtr QByteArrayMatcher_NewQByteArrayMatcher4(QtObjectPtr other){ + return new QByteArrayMatcher(*static_cast(other)); +} + +QtObjectPtr QByteArrayMatcher_NewQByteArrayMatcher3(char* pattern, int length){ + return new QByteArrayMatcher(const_cast(pattern), length); +} + +int QByteArrayMatcher_IndexIn(QtObjectPtr ptr, QtObjectPtr ba, int from){ + return static_cast(ptr)->indexIn(*static_cast(ba), from); +} + +int QByteArrayMatcher_IndexIn2(QtObjectPtr ptr, char* str, int len, int from){ + return static_cast(ptr)->indexIn(const_cast(str), len, from); +} + +void QByteArrayMatcher_SetPattern(QtObjectPtr ptr, QtObjectPtr pattern){ + static_cast(ptr)->setPattern(*static_cast(pattern)); +} + +void QByteArrayMatcher_DestroyQByteArrayMatcher(QtObjectPtr ptr){ + static_cast(ptr)->~QByteArrayMatcher(); +} + diff --git a/core/qbytearraymatcher.go b/core/qbytearraymatcher.go new file mode 100755 index 00000000..6982561f --- /dev/null +++ b/core/qbytearraymatcher.go @@ -0,0 +1,82 @@ +package core + +//#include "qbytearraymatcher.h" +import "C" +import ( + "unsafe" +) + +type QByteArrayMatcher struct { + ptr unsafe.Pointer +} + +type QByteArrayMatcherITF interface { + QByteArrayMatcherPTR() *QByteArrayMatcher +} + +func (p *QByteArrayMatcher) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QByteArrayMatcher) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQByteArrayMatcher(ptr QByteArrayMatcherITF) unsafe.Pointer { + if ptr != nil { + return ptr.QByteArrayMatcherPTR().Pointer() + } + return nil +} + +func QByteArrayMatcherFromPointer(ptr unsafe.Pointer) *QByteArrayMatcher { + var n = new(QByteArrayMatcher) + n.SetPointer(ptr) + return n +} + +func (ptr *QByteArrayMatcher) QByteArrayMatcherPTR() *QByteArrayMatcher { + return ptr +} + +func NewQByteArrayMatcher() *QByteArrayMatcher { + return QByteArrayMatcherFromPointer(unsafe.Pointer(C.QByteArrayMatcher_NewQByteArrayMatcher())) +} + +func NewQByteArrayMatcher2(pattern QByteArrayITF) *QByteArrayMatcher { + return QByteArrayMatcherFromPointer(unsafe.Pointer(C.QByteArrayMatcher_NewQByteArrayMatcher2(C.QtObjectPtr(PointerFromQByteArray(pattern))))) +} + +func NewQByteArrayMatcher4(other QByteArrayMatcherITF) *QByteArrayMatcher { + return QByteArrayMatcherFromPointer(unsafe.Pointer(C.QByteArrayMatcher_NewQByteArrayMatcher4(C.QtObjectPtr(PointerFromQByteArrayMatcher(other))))) +} + +func NewQByteArrayMatcher3(pattern string, length int) *QByteArrayMatcher { + return QByteArrayMatcherFromPointer(unsafe.Pointer(C.QByteArrayMatcher_NewQByteArrayMatcher3(C.CString(pattern), C.int(length)))) +} + +func (ptr *QByteArrayMatcher) IndexIn(ba QByteArrayITF, from int) int { + if ptr.Pointer() != nil { + return int(C.QByteArrayMatcher_IndexIn(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQByteArray(ba)), C.int(from))) + } + return 0 +} + +func (ptr *QByteArrayMatcher) IndexIn2(str string, len int, from int) int { + if ptr.Pointer() != nil { + return int(C.QByteArrayMatcher_IndexIn2(C.QtObjectPtr(ptr.Pointer()), C.CString(str), C.int(len), C.int(from))) + } + return 0 +} + +func (ptr *QByteArrayMatcher) SetPattern(pattern QByteArrayITF) { + if ptr.Pointer() != nil { + C.QByteArrayMatcher_SetPattern(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQByteArray(pattern))) + } +} + +func (ptr *QByteArrayMatcher) DestroyQByteArrayMatcher() { + if ptr.Pointer() != nil { + C.QByteArrayMatcher_DestroyQByteArrayMatcher(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qbytearraymatcher.h b/core/qbytearraymatcher.h new file mode 100755 index 00000000..ff09f6e2 --- /dev/null +++ b/core/qbytearraymatcher.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QByteArrayMatcher_NewQByteArrayMatcher(); +QtObjectPtr QByteArrayMatcher_NewQByteArrayMatcher2(QtObjectPtr pattern); +QtObjectPtr QByteArrayMatcher_NewQByteArrayMatcher4(QtObjectPtr other); +QtObjectPtr QByteArrayMatcher_NewQByteArrayMatcher3(char* pattern, int length); +int QByteArrayMatcher_IndexIn(QtObjectPtr ptr, QtObjectPtr ba, int from); +int QByteArrayMatcher_IndexIn2(QtObjectPtr ptr, char* str, int len, int from); +void QByteArrayMatcher_SetPattern(QtObjectPtr ptr, QtObjectPtr pattern); +void QByteArrayMatcher_DestroyQByteArrayMatcher(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qcache.cpp b/core/qcache.cpp new file mode 100755 index 00000000..403ccd13 --- /dev/null +++ b/core/qcache.cpp @@ -0,0 +1,8 @@ +#include "qcache.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qcache.go b/core/qcache.go new file mode 100755 index 00000000..c31ac0d8 --- /dev/null +++ b/core/qcache.go @@ -0,0 +1,40 @@ +package core + +//#include "qcache.h" +import "C" +import ( + "unsafe" +) + +type QCache struct { + ptr unsafe.Pointer +} + +type QCacheITF interface { + QCachePTR() *QCache +} + +func (p *QCache) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QCache) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQCache(ptr QCacheITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCachePTR().Pointer() + } + return nil +} + +func QCacheFromPointer(ptr unsafe.Pointer) *QCache { + var n = new(QCache) + n.SetPointer(ptr) + return n +} + +func (ptr *QCache) QCachePTR() *QCache { + return ptr +} diff --git a/core/qcache.h b/core/qcache.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qcache.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qchar.cpp b/core/qchar.cpp new file mode 100755 index 00000000..3092da0e --- /dev/null +++ b/core/qchar.cpp @@ -0,0 +1,141 @@ +#include "qchar.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQChar: public QChar { +public: +}; + +QtObjectPtr QChar_NewQChar(){ + return new QChar(); +} + +QtObjectPtr QChar_NewQChar8(QtObjectPtr ch){ + return new QChar(*static_cast(ch)); +} + +QtObjectPtr QChar_NewQChar7(int ch){ + return new QChar(static_cast(ch)); +} + +QtObjectPtr QChar_NewQChar9(char* ch){ + return new QChar(*ch); +} + +QtObjectPtr QChar_NewQChar6(int code){ + return new QChar(code); +} + +int QChar_Category(QtObjectPtr ptr){ + return static_cast(ptr)->category(); +} + +int QChar_QChar_CurrentUnicodeVersion(){ + return QChar::currentUnicodeVersion(); +} + +char* QChar_Decomposition(QtObjectPtr ptr){ + return static_cast(ptr)->decomposition().toUtf8().data(); +} + +int QChar_DecompositionTag(QtObjectPtr ptr){ + return static_cast(ptr)->decompositionTag(); +} + +int QChar_DigitValue(QtObjectPtr ptr){ + return static_cast(ptr)->digitValue(); +} + +int QChar_Direction(QtObjectPtr ptr){ + return static_cast(ptr)->direction(); +} + +int QChar_HasMirrored(QtObjectPtr ptr){ + return static_cast(ptr)->hasMirrored(); +} + +int QChar_IsDigit(QtObjectPtr ptr){ + return static_cast(ptr)->isDigit(); +} + +int QChar_IsHighSurrogate(QtObjectPtr ptr){ + return static_cast(ptr)->isHighSurrogate(); +} + +int QChar_IsLetter(QtObjectPtr ptr){ + return static_cast(ptr)->isLetter(); +} + +int QChar_IsLetterOrNumber(QtObjectPtr ptr){ + return static_cast(ptr)->isLetterOrNumber(); +} + +int QChar_IsLower(QtObjectPtr ptr){ + return static_cast(ptr)->isLower(); +} + +int QChar_IsLowSurrogate(QtObjectPtr ptr){ + return static_cast(ptr)->isLowSurrogate(); +} + +int QChar_IsMark(QtObjectPtr ptr){ + return static_cast(ptr)->isMark(); +} + +int QChar_IsNonCharacter(QtObjectPtr ptr){ + return static_cast(ptr)->isNonCharacter(); +} + +int QChar_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QChar_IsNumber(QtObjectPtr ptr){ + return static_cast(ptr)->isNumber(); +} + +int QChar_IsPrint(QtObjectPtr ptr){ + return static_cast(ptr)->isPrint(); +} + +int QChar_IsPunct(QtObjectPtr ptr){ + return static_cast(ptr)->isPunct(); +} + +int QChar_IsSpace(QtObjectPtr ptr){ + return static_cast(ptr)->isSpace(); +} + +int QChar_IsSurrogate(QtObjectPtr ptr){ + return static_cast(ptr)->isSurrogate(); +} + +int QChar_IsSymbol(QtObjectPtr ptr){ + return static_cast(ptr)->isSymbol(); +} + +int QChar_IsTitleCase(QtObjectPtr ptr){ + return static_cast(ptr)->isTitleCase(); +} + +int QChar_IsUpper(QtObjectPtr ptr){ + return static_cast(ptr)->isUpper(); +} + +int QChar_JoiningType(QtObjectPtr ptr){ + return static_cast(ptr)->joiningType(); +} + +int QChar_Script(QtObjectPtr ptr){ + return static_cast(ptr)->script(); +} + +int QChar_UnicodeVersion(QtObjectPtr ptr){ + return static_cast(ptr)->unicodeVersion(); +} + diff --git a/core/qchar.go b/core/qchar.go new file mode 100755 index 00000000..0e9c307a --- /dev/null +++ b/core/qchar.go @@ -0,0 +1,523 @@ +package core + +//#include "qchar.h" +import "C" +import ( + "unsafe" +) + +type QChar struct { + ptr unsafe.Pointer +} + +type QCharITF interface { + QCharPTR() *QChar +} + +func (p *QChar) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QChar) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQChar(ptr QCharITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCharPTR().Pointer() + } + return nil +} + +func QCharFromPointer(ptr unsafe.Pointer) *QChar { + var n = new(QChar) + n.SetPointer(ptr) + return n +} + +func (ptr *QChar) QCharPTR() *QChar { + return ptr +} + +//QChar::Category +type QChar__Category int + +var ( + QChar__Mark_NonSpacing = QChar__Category(0) + QChar__Mark_SpacingCombining = QChar__Category(1) + QChar__Mark_Enclosing = QChar__Category(2) + QChar__Number_DecimalDigit = QChar__Category(3) + QChar__Number_Letter = QChar__Category(4) + QChar__Number_Other = QChar__Category(5) + QChar__Separator_Space = QChar__Category(6) + QChar__Separator_Line = QChar__Category(7) + QChar__Separator_Paragraph = QChar__Category(8) + QChar__Other_Control = QChar__Category(9) + QChar__Other_Format = QChar__Category(10) + QChar__Other_Surrogate = QChar__Category(11) + QChar__Other_PrivateUse = QChar__Category(12) + QChar__Other_NotAssigned = QChar__Category(13) + QChar__Letter_Uppercase = QChar__Category(14) + QChar__Letter_Lowercase = QChar__Category(15) + QChar__Letter_Titlecase = QChar__Category(16) + QChar__Letter_Modifier = QChar__Category(17) + QChar__Letter_Other = QChar__Category(18) + QChar__Punctuation_Connector = QChar__Category(19) + QChar__Punctuation_Dash = QChar__Category(20) + QChar__Punctuation_Open = QChar__Category(21) + QChar__Punctuation_Close = QChar__Category(22) + QChar__Punctuation_InitialQuote = QChar__Category(23) + QChar__Punctuation_FinalQuote = QChar__Category(24) + QChar__Punctuation_Other = QChar__Category(25) + QChar__Symbol_Math = QChar__Category(26) + QChar__Symbol_Currency = QChar__Category(27) + QChar__Symbol_Modifier = QChar__Category(28) + QChar__Symbol_Other = QChar__Category(29) +) + +//QChar::Decomposition +type QChar__Decomposition int + +var ( + QChar__NoDecomposition = QChar__Decomposition(0) + QChar__Canonical = QChar__Decomposition(1) + QChar__Font = QChar__Decomposition(2) + QChar__NoBreak = QChar__Decomposition(3) + QChar__Initial = QChar__Decomposition(4) + QChar__Medial = QChar__Decomposition(5) + QChar__Final = QChar__Decomposition(6) + QChar__Isolated = QChar__Decomposition(7) + QChar__Circle = QChar__Decomposition(8) + QChar__Super = QChar__Decomposition(9) + QChar__Sub = QChar__Decomposition(10) + QChar__Vertical = QChar__Decomposition(11) + QChar__Wide = QChar__Decomposition(12) + QChar__Narrow = QChar__Decomposition(13) + QChar__Small = QChar__Decomposition(14) + QChar__Square = QChar__Decomposition(15) + QChar__Compat = QChar__Decomposition(16) + QChar__Fraction = QChar__Decomposition(17) +) + +//QChar::Direction +type QChar__Direction int + +var ( + QChar__DirL = QChar__Direction(0) + QChar__DirR = QChar__Direction(1) + QChar__DirEN = QChar__Direction(2) + QChar__DirES = QChar__Direction(3) + QChar__DirET = QChar__Direction(4) + QChar__DirAN = QChar__Direction(5) + QChar__DirCS = QChar__Direction(6) + QChar__DirB = QChar__Direction(7) + QChar__DirS = QChar__Direction(8) + QChar__DirWS = QChar__Direction(9) + QChar__DirON = QChar__Direction(10) + QChar__DirLRE = QChar__Direction(11) + QChar__DirLRO = QChar__Direction(12) + QChar__DirAL = QChar__Direction(13) + QChar__DirRLE = QChar__Direction(14) + QChar__DirRLO = QChar__Direction(15) + QChar__DirPDF = QChar__Direction(16) + QChar__DirNSM = QChar__Direction(17) + QChar__DirBN = QChar__Direction(18) + QChar__DirLRI = QChar__Direction(19) + QChar__DirRLI = QChar__Direction(20) + QChar__DirFSI = QChar__Direction(21) + QChar__DirPDI = QChar__Direction(22) +) + +//QChar::JoiningType +type QChar__JoiningType int + +var ( + QChar__Joining_None = QChar__JoiningType(0) + QChar__Joining_Causing = QChar__JoiningType(1) + QChar__Joining_Dual = QChar__JoiningType(2) + QChar__Joining_Right = QChar__JoiningType(3) + QChar__Joining_Left = QChar__JoiningType(4) + QChar__Joining_Transparent = QChar__JoiningType(5) +) + +//QChar::Script +type QChar__Script int + +var ( + QChar__Script_Unknown = QChar__Script(0) + QChar__Script_Inherited = QChar__Script(1) + QChar__Script_Common = QChar__Script(2) + QChar__Script_Latin = QChar__Script(3) + QChar__Script_Greek = QChar__Script(4) + QChar__Script_Cyrillic = QChar__Script(5) + QChar__Script_Armenian = QChar__Script(6) + QChar__Script_Hebrew = QChar__Script(7) + QChar__Script_Arabic = QChar__Script(8) + QChar__Script_Syriac = QChar__Script(9) + QChar__Script_Thaana = QChar__Script(10) + QChar__Script_Devanagari = QChar__Script(11) + QChar__Script_Bengali = QChar__Script(12) + QChar__Script_Gurmukhi = QChar__Script(13) + QChar__Script_Gujarati = QChar__Script(14) + QChar__Script_Oriya = QChar__Script(15) + QChar__Script_Tamil = QChar__Script(16) + QChar__Script_Telugu = QChar__Script(17) + QChar__Script_Kannada = QChar__Script(18) + QChar__Script_Malayalam = QChar__Script(19) + QChar__Script_Sinhala = QChar__Script(20) + QChar__Script_Thai = QChar__Script(21) + QChar__Script_Lao = QChar__Script(22) + QChar__Script_Tibetan = QChar__Script(23) + QChar__Script_Myanmar = QChar__Script(24) + QChar__Script_Georgian = QChar__Script(25) + QChar__Script_Hangul = QChar__Script(26) + QChar__Script_Ethiopic = QChar__Script(27) + QChar__Script_Cherokee = QChar__Script(28) + QChar__Script_CanadianAboriginal = QChar__Script(29) + QChar__Script_Ogham = QChar__Script(30) + QChar__Script_Runic = QChar__Script(31) + QChar__Script_Khmer = QChar__Script(32) + QChar__Script_Mongolian = QChar__Script(33) + QChar__Script_Hiragana = QChar__Script(34) + QChar__Script_Katakana = QChar__Script(35) + QChar__Script_Bopomofo = QChar__Script(36) + QChar__Script_Han = QChar__Script(37) + QChar__Script_Yi = QChar__Script(38) + QChar__Script_OldItalic = QChar__Script(39) + QChar__Script_Gothic = QChar__Script(40) + QChar__Script_Deseret = QChar__Script(41) + QChar__Script_Tagalog = QChar__Script(42) + QChar__Script_Hanunoo = QChar__Script(43) + QChar__Script_Buhid = QChar__Script(44) + QChar__Script_Tagbanwa = QChar__Script(45) + QChar__Script_Coptic = QChar__Script(46) + QChar__Script_Limbu = QChar__Script(47) + QChar__Script_TaiLe = QChar__Script(48) + QChar__Script_LinearB = QChar__Script(49) + QChar__Script_Ugaritic = QChar__Script(50) + QChar__Script_Shavian = QChar__Script(51) + QChar__Script_Osmanya = QChar__Script(52) + QChar__Script_Cypriot = QChar__Script(53) + QChar__Script_Braille = QChar__Script(54) + QChar__Script_Buginese = QChar__Script(55) + QChar__Script_NewTaiLue = QChar__Script(56) + QChar__Script_Glagolitic = QChar__Script(57) + QChar__Script_Tifinagh = QChar__Script(58) + QChar__Script_SylotiNagri = QChar__Script(59) + QChar__Script_OldPersian = QChar__Script(60) + QChar__Script_Kharoshthi = QChar__Script(61) + QChar__Script_Balinese = QChar__Script(62) + QChar__Script_Cuneiform = QChar__Script(63) + QChar__Script_Phoenician = QChar__Script(64) + QChar__Script_PhagsPa = QChar__Script(65) + QChar__Script_Nko = QChar__Script(66) + QChar__Script_Sundanese = QChar__Script(67) + QChar__Script_Lepcha = QChar__Script(68) + QChar__Script_OlChiki = QChar__Script(69) + QChar__Script_Vai = QChar__Script(70) + QChar__Script_Saurashtra = QChar__Script(71) + QChar__Script_KayahLi = QChar__Script(72) + QChar__Script_Rejang = QChar__Script(73) + QChar__Script_Lycian = QChar__Script(74) + QChar__Script_Carian = QChar__Script(75) + QChar__Script_Lydian = QChar__Script(76) + QChar__Script_Cham = QChar__Script(77) + QChar__Script_TaiTham = QChar__Script(78) + QChar__Script_TaiViet = QChar__Script(79) + QChar__Script_Avestan = QChar__Script(80) + QChar__Script_EgyptianHieroglyphs = QChar__Script(81) + QChar__Script_Samaritan = QChar__Script(82) + QChar__Script_Lisu = QChar__Script(83) + QChar__Script_Bamum = QChar__Script(84) + QChar__Script_Javanese = QChar__Script(85) + QChar__Script_MeeteiMayek = QChar__Script(86) + QChar__Script_ImperialAramaic = QChar__Script(87) + QChar__Script_OldSouthArabian = QChar__Script(88) + QChar__Script_InscriptionalParthian = QChar__Script(89) + QChar__Script_InscriptionalPahlavi = QChar__Script(90) + QChar__Script_OldTurkic = QChar__Script(91) + QChar__Script_Kaithi = QChar__Script(92) + QChar__Script_Batak = QChar__Script(93) + QChar__Script_Brahmi = QChar__Script(94) + QChar__Script_Mandaic = QChar__Script(95) + QChar__Script_Chakma = QChar__Script(96) + QChar__Script_MeroiticCursive = QChar__Script(97) + QChar__Script_MeroiticHieroglyphs = QChar__Script(98) + QChar__Script_Miao = QChar__Script(99) + QChar__Script_Sharada = QChar__Script(100) + QChar__Script_SoraSompeng = QChar__Script(101) + QChar__Script_Takri = QChar__Script(102) + QChar__Script_CaucasianAlbanian = QChar__Script(103) + QChar__Script_BassaVah = QChar__Script(104) + QChar__Script_Duployan = QChar__Script(105) + QChar__Script_Elbasan = QChar__Script(106) + QChar__Script_Grantha = QChar__Script(107) + QChar__Script_PahawhHmong = QChar__Script(108) + QChar__Script_Khojki = QChar__Script(109) + QChar__Script_LinearA = QChar__Script(110) + QChar__Script_Mahajani = QChar__Script(111) + QChar__Script_Manichaean = QChar__Script(112) + QChar__Script_MendeKikakui = QChar__Script(113) + QChar__Script_Modi = QChar__Script(114) + QChar__Script_Mro = QChar__Script(115) + QChar__Script_OldNorthArabian = QChar__Script(116) + QChar__Script_Nabataean = QChar__Script(117) + QChar__Script_Palmyrene = QChar__Script(118) + QChar__Script_PauCinHau = QChar__Script(119) + QChar__Script_OldPermic = QChar__Script(120) + QChar__Script_PsalterPahlavi = QChar__Script(121) + QChar__Script_Siddham = QChar__Script(122) + QChar__Script_Khudawadi = QChar__Script(123) + QChar__Script_Tirhuta = QChar__Script(124) + QChar__Script_WarangCiti = QChar__Script(125) + QChar__ScriptCount = QChar__Script(126) +) + +//QChar::SpecialCharacter +type QChar__SpecialCharacter int + +var ( + QChar__Null = QChar__SpecialCharacter(0x0000) + QChar__Tabulation = QChar__SpecialCharacter(0x0009) + QChar__LineFeed = QChar__SpecialCharacter(0x000a) + QChar__CarriageReturn = QChar__SpecialCharacter(0x000d) + QChar__Space = QChar__SpecialCharacter(0x0020) + QChar__Nbsp = QChar__SpecialCharacter(0x00a0) + QChar__SoftHyphen = QChar__SpecialCharacter(0x00ad) + QChar__ReplacementCharacter = QChar__SpecialCharacter(0xfffd) + QChar__ObjectReplacementCharacter = QChar__SpecialCharacter(0xfffc) + QChar__ByteOrderMark = QChar__SpecialCharacter(0xfeff) + QChar__ByteOrderSwapped = QChar__SpecialCharacter(0xfffe) + QChar__ParagraphSeparator = QChar__SpecialCharacter(0x2029) + QChar__LineSeparator = QChar__SpecialCharacter(0x2028) + QChar__LastValidCodePoint = QChar__SpecialCharacter(0x10ffff) +) + +//QChar::UnicodeVersion +type QChar__UnicodeVersion int + +var ( + QChar__Unicode_Unassigned = QChar__UnicodeVersion(0) + QChar__Unicode_1_1 = QChar__UnicodeVersion(1) + QChar__Unicode_2_0 = QChar__UnicodeVersion(2) + QChar__Unicode_2_1_2 = QChar__UnicodeVersion(3) + QChar__Unicode_3_0 = QChar__UnicodeVersion(4) + QChar__Unicode_3_1 = QChar__UnicodeVersion(5) + QChar__Unicode_3_2 = QChar__UnicodeVersion(6) + QChar__Unicode_4_0 = QChar__UnicodeVersion(7) + QChar__Unicode_4_1 = QChar__UnicodeVersion(8) + QChar__Unicode_5_0 = QChar__UnicodeVersion(9) + QChar__Unicode_5_1 = QChar__UnicodeVersion(10) + QChar__Unicode_5_2 = QChar__UnicodeVersion(11) + QChar__Unicode_6_0 = QChar__UnicodeVersion(12) + QChar__Unicode_6_1 = QChar__UnicodeVersion(13) + QChar__Unicode_6_2 = QChar__UnicodeVersion(14) + QChar__Unicode_6_3 = QChar__UnicodeVersion(15) + QChar__Unicode_7_0 = QChar__UnicodeVersion(16) +) + +func NewQChar() *QChar { + return QCharFromPointer(unsafe.Pointer(C.QChar_NewQChar())) +} + +func NewQChar8(ch QLatin1CharITF) *QChar { + return QCharFromPointer(unsafe.Pointer(C.QChar_NewQChar8(C.QtObjectPtr(PointerFromQLatin1Char(ch))))) +} + +func NewQChar7(ch QChar__SpecialCharacter) *QChar { + return QCharFromPointer(unsafe.Pointer(C.QChar_NewQChar7(C.int(ch)))) +} + +func NewQChar9(ch string) *QChar { + return QCharFromPointer(unsafe.Pointer(C.QChar_NewQChar9(C.CString(ch)))) +} + +func NewQChar6(code int) *QChar { + return QCharFromPointer(unsafe.Pointer(C.QChar_NewQChar6(C.int(code)))) +} + +func (ptr *QChar) Category() QChar__Category { + if ptr.Pointer() != nil { + return QChar__Category(C.QChar_Category(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QChar_CurrentUnicodeVersion() QChar__UnicodeVersion { + return QChar__UnicodeVersion(C.QChar_QChar_CurrentUnicodeVersion()) +} + +func (ptr *QChar) Decomposition() string { + if ptr.Pointer() != nil { + return C.GoString(C.QChar_Decomposition(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QChar) DecompositionTag() QChar__Decomposition { + if ptr.Pointer() != nil { + return QChar__Decomposition(C.QChar_DecompositionTag(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QChar) DigitValue() int { + if ptr.Pointer() != nil { + return int(C.QChar_DigitValue(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QChar) Direction() QChar__Direction { + if ptr.Pointer() != nil { + return QChar__Direction(C.QChar_Direction(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QChar) HasMirrored() bool { + if ptr.Pointer() != nil { + return C.QChar_HasMirrored(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QChar) IsDigit() bool { + if ptr.Pointer() != nil { + return C.QChar_IsDigit(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QChar) IsHighSurrogate() bool { + if ptr.Pointer() != nil { + return C.QChar_IsHighSurrogate(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QChar) IsLetter() bool { + if ptr.Pointer() != nil { + return C.QChar_IsLetter(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QChar) IsLetterOrNumber() bool { + if ptr.Pointer() != nil { + return C.QChar_IsLetterOrNumber(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QChar) IsLower() bool { + if ptr.Pointer() != nil { + return C.QChar_IsLower(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QChar) IsLowSurrogate() bool { + if ptr.Pointer() != nil { + return C.QChar_IsLowSurrogate(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QChar) IsMark() bool { + if ptr.Pointer() != nil { + return C.QChar_IsMark(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QChar) IsNonCharacter() bool { + if ptr.Pointer() != nil { + return C.QChar_IsNonCharacter(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QChar) IsNull() bool { + if ptr.Pointer() != nil { + return C.QChar_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QChar) IsNumber() bool { + if ptr.Pointer() != nil { + return C.QChar_IsNumber(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QChar) IsPrint() bool { + if ptr.Pointer() != nil { + return C.QChar_IsPrint(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QChar) IsPunct() bool { + if ptr.Pointer() != nil { + return C.QChar_IsPunct(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QChar) IsSpace() bool { + if ptr.Pointer() != nil { + return C.QChar_IsSpace(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QChar) IsSurrogate() bool { + if ptr.Pointer() != nil { + return C.QChar_IsSurrogate(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QChar) IsSymbol() bool { + if ptr.Pointer() != nil { + return C.QChar_IsSymbol(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QChar) IsTitleCase() bool { + if ptr.Pointer() != nil { + return C.QChar_IsTitleCase(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QChar) IsUpper() bool { + if ptr.Pointer() != nil { + return C.QChar_IsUpper(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QChar) JoiningType() QChar__JoiningType { + if ptr.Pointer() != nil { + return QChar__JoiningType(C.QChar_JoiningType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QChar) Script() QChar__Script { + if ptr.Pointer() != nil { + return QChar__Script(C.QChar_Script(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QChar) UnicodeVersion() QChar__UnicodeVersion { + if ptr.Pointer() != nil { + return QChar__UnicodeVersion(C.QChar_UnicodeVersion(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/core/qchar.h b/core/qchar.h new file mode 100755 index 00000000..93fb698e --- /dev/null +++ b/core/qchar.h @@ -0,0 +1,41 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QChar_NewQChar(); +QtObjectPtr QChar_NewQChar8(QtObjectPtr ch); +QtObjectPtr QChar_NewQChar7(int ch); +QtObjectPtr QChar_NewQChar9(char* ch); +QtObjectPtr QChar_NewQChar6(int code); +int QChar_Category(QtObjectPtr ptr); +int QChar_QChar_CurrentUnicodeVersion(); +char* QChar_Decomposition(QtObjectPtr ptr); +int QChar_DecompositionTag(QtObjectPtr ptr); +int QChar_DigitValue(QtObjectPtr ptr); +int QChar_Direction(QtObjectPtr ptr); +int QChar_HasMirrored(QtObjectPtr ptr); +int QChar_IsDigit(QtObjectPtr ptr); +int QChar_IsHighSurrogate(QtObjectPtr ptr); +int QChar_IsLetter(QtObjectPtr ptr); +int QChar_IsLetterOrNumber(QtObjectPtr ptr); +int QChar_IsLower(QtObjectPtr ptr); +int QChar_IsLowSurrogate(QtObjectPtr ptr); +int QChar_IsMark(QtObjectPtr ptr); +int QChar_IsNonCharacter(QtObjectPtr ptr); +int QChar_IsNull(QtObjectPtr ptr); +int QChar_IsNumber(QtObjectPtr ptr); +int QChar_IsPrint(QtObjectPtr ptr); +int QChar_IsPunct(QtObjectPtr ptr); +int QChar_IsSpace(QtObjectPtr ptr); +int QChar_IsSurrogate(QtObjectPtr ptr); +int QChar_IsSymbol(QtObjectPtr ptr); +int QChar_IsTitleCase(QtObjectPtr ptr); +int QChar_IsUpper(QtObjectPtr ptr); +int QChar_JoiningType(QtObjectPtr ptr); +int QChar_Script(QtObjectPtr ptr); +int QChar_UnicodeVersion(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qchildevent.cpp b/core/qchildevent.cpp new file mode 100755 index 00000000..ded0bb5b --- /dev/null +++ b/core/qchildevent.cpp @@ -0,0 +1,34 @@ +#include "qchildevent.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQChildEvent: public QChildEvent { +public: +}; + +QtObjectPtr QChildEvent_NewQChildEvent(int ty, QtObjectPtr child){ + return new QChildEvent(static_cast(ty), static_cast(child)); +} + +int QChildEvent_Added(QtObjectPtr ptr){ + return static_cast(ptr)->added(); +} + +QtObjectPtr QChildEvent_Child(QtObjectPtr ptr){ + return static_cast(ptr)->child(); +} + +int QChildEvent_Polished(QtObjectPtr ptr){ + return static_cast(ptr)->polished(); +} + +int QChildEvent_Removed(QtObjectPtr ptr){ + return static_cast(ptr)->removed(); +} + diff --git a/core/qchildevent.go b/core/qchildevent.go new file mode 100755 index 00000000..5e1a5fa1 --- /dev/null +++ b/core/qchildevent.go @@ -0,0 +1,65 @@ +package core + +//#include "qchildevent.h" +import "C" +import ( + "unsafe" +) + +type QChildEvent struct { + QEvent +} + +type QChildEventITF interface { + QEventITF + QChildEventPTR() *QChildEvent +} + +func PointerFromQChildEvent(ptr QChildEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QChildEventPTR().Pointer() + } + return nil +} + +func QChildEventFromPointer(ptr unsafe.Pointer) *QChildEvent { + var n = new(QChildEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QChildEvent) QChildEventPTR() *QChildEvent { + return ptr +} + +func NewQChildEvent(ty QEvent__Type, child QObjectITF) *QChildEvent { + return QChildEventFromPointer(unsafe.Pointer(C.QChildEvent_NewQChildEvent(C.int(ty), C.QtObjectPtr(PointerFromQObject(child))))) +} + +func (ptr *QChildEvent) Added() bool { + if ptr.Pointer() != nil { + return C.QChildEvent_Added(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QChildEvent) Child() *QObject { + if ptr.Pointer() != nil { + return QObjectFromPointer(unsafe.Pointer(C.QChildEvent_Child(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QChildEvent) Polished() bool { + if ptr.Pointer() != nil { + return C.QChildEvent_Polished(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QChildEvent) Removed() bool { + if ptr.Pointer() != nil { + return C.QChildEvent_Removed(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} diff --git a/core/qchildevent.h b/core/qchildevent.h new file mode 100755 index 00000000..c3e7fdba --- /dev/null +++ b/core/qchildevent.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QChildEvent_NewQChildEvent(int ty, QtObjectPtr child); +int QChildEvent_Added(QtObjectPtr ptr); +QtObjectPtr QChildEvent_Child(QtObjectPtr ptr); +int QChildEvent_Polished(QtObjectPtr ptr); +int QChildEvent_Removed(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qcollator.cpp b/core/qcollator.cpp new file mode 100755 index 00000000..c6f82328 --- /dev/null +++ b/core/qcollator.cpp @@ -0,0 +1,75 @@ +#include "qcollator.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCollator: public QCollator { +public: +}; + +int QCollator_CaseSensitivity(QtObjectPtr ptr){ + return static_cast(ptr)->caseSensitivity(); +} + +int QCollator_IgnorePunctuation(QtObjectPtr ptr){ + return static_cast(ptr)->ignorePunctuation(); +} + +int QCollator_NumericMode(QtObjectPtr ptr){ + return static_cast(ptr)->numericMode(); +} + +void QCollator_SetCaseSensitivity(QtObjectPtr ptr, int sensitivity){ + static_cast(ptr)->setCaseSensitivity(static_cast(sensitivity)); +} + +void QCollator_SetIgnorePunctuation(QtObjectPtr ptr, int on){ + static_cast(ptr)->setIgnorePunctuation(on != 0); +} + +void QCollator_SetNumericMode(QtObjectPtr ptr, int on){ + static_cast(ptr)->setNumericMode(on != 0); +} + +QtObjectPtr QCollator_NewQCollator3(QtObjectPtr other){ + return new QCollator(*static_cast(other)); +} + +QtObjectPtr QCollator_NewQCollator2(QtObjectPtr other){ + return new QCollator(*static_cast(other)); +} + +QtObjectPtr QCollator_NewQCollator(QtObjectPtr locale){ + return new QCollator(*static_cast(locale)); +} + +void QCollator_SetLocale(QtObjectPtr ptr, QtObjectPtr locale){ + static_cast(ptr)->setLocale(*static_cast(locale)); +} + +void QCollator_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QCollator_DestroyQCollator(QtObjectPtr ptr){ + static_cast(ptr)->~QCollator(); +} + +int QCollator_Compare3(QtObjectPtr ptr, QtObjectPtr s1, int len1, QtObjectPtr s2, int len2){ + return static_cast(ptr)->compare(static_cast(s1), len1, static_cast(s2), len2); +} + +int QCollator_Compare(QtObjectPtr ptr, char* s1, char* s2){ + return static_cast(ptr)->compare(QString(s1), QString(s2)); +} + +int QCollator_Compare2(QtObjectPtr ptr, QtObjectPtr s1, QtObjectPtr s2){ + return static_cast(ptr)->compare(*static_cast(s1), *static_cast(s2)); +} + diff --git a/core/qcollator.go b/core/qcollator.go new file mode 100755 index 00000000..d07aaa28 --- /dev/null +++ b/core/qcollator.go @@ -0,0 +1,131 @@ +package core + +//#include "qcollator.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QCollator struct { + ptr unsafe.Pointer +} + +type QCollatorITF interface { + QCollatorPTR() *QCollator +} + +func (p *QCollator) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QCollator) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQCollator(ptr QCollatorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCollatorPTR().Pointer() + } + return nil +} + +func QCollatorFromPointer(ptr unsafe.Pointer) *QCollator { + var n = new(QCollator) + n.SetPointer(ptr) + return n +} + +func (ptr *QCollator) QCollatorPTR() *QCollator { + return ptr +} + +func (ptr *QCollator) CaseSensitivity() Qt__CaseSensitivity { + if ptr.Pointer() != nil { + return Qt__CaseSensitivity(C.QCollator_CaseSensitivity(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCollator) IgnorePunctuation() bool { + if ptr.Pointer() != nil { + return C.QCollator_IgnorePunctuation(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QCollator) NumericMode() bool { + if ptr.Pointer() != nil { + return C.QCollator_NumericMode(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QCollator) SetCaseSensitivity(sensitivity Qt__CaseSensitivity) { + if ptr.Pointer() != nil { + C.QCollator_SetCaseSensitivity(C.QtObjectPtr(ptr.Pointer()), C.int(sensitivity)) + } +} + +func (ptr *QCollator) SetIgnorePunctuation(on bool) { + if ptr.Pointer() != nil { + C.QCollator_SetIgnorePunctuation(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(on))) + } +} + +func (ptr *QCollator) SetNumericMode(on bool) { + if ptr.Pointer() != nil { + C.QCollator_SetNumericMode(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(on))) + } +} + +func NewQCollator3(other QCollatorITF) *QCollator { + return QCollatorFromPointer(unsafe.Pointer(C.QCollator_NewQCollator3(C.QtObjectPtr(PointerFromQCollator(other))))) +} + +func NewQCollator2(other QCollatorITF) *QCollator { + return QCollatorFromPointer(unsafe.Pointer(C.QCollator_NewQCollator2(C.QtObjectPtr(PointerFromQCollator(other))))) +} + +func NewQCollator(locale QLocaleITF) *QCollator { + return QCollatorFromPointer(unsafe.Pointer(C.QCollator_NewQCollator(C.QtObjectPtr(PointerFromQLocale(locale))))) +} + +func (ptr *QCollator) SetLocale(locale QLocaleITF) { + if ptr.Pointer() != nil { + C.QCollator_SetLocale(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLocale(locale))) + } +} + +func (ptr *QCollator) Swap(other QCollatorITF) { + if ptr.Pointer() != nil { + C.QCollator_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQCollator(other))) + } +} + +func (ptr *QCollator) DestroyQCollator() { + if ptr.Pointer() != nil { + C.QCollator_DestroyQCollator(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QCollator) Compare3(s1 QCharITF, len1 int, s2 QCharITF, len2 int) int { + if ptr.Pointer() != nil { + return int(C.QCollator_Compare3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQChar(s1)), C.int(len1), C.QtObjectPtr(PointerFromQChar(s2)), C.int(len2))) + } + return 0 +} + +func (ptr *QCollator) Compare(s1 string, s2 string) int { + if ptr.Pointer() != nil { + return int(C.QCollator_Compare(C.QtObjectPtr(ptr.Pointer()), C.CString(s1), C.CString(s2))) + } + return 0 +} + +func (ptr *QCollator) Compare2(s1 QStringRefITF, s2 QStringRefITF) int { + if ptr.Pointer() != nil { + return int(C.QCollator_Compare2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQStringRef(s1)), C.QtObjectPtr(PointerFromQStringRef(s2)))) + } + return 0 +} diff --git a/core/qcollator.h b/core/qcollator.h new file mode 100755 index 00000000..ff9c271e --- /dev/null +++ b/core/qcollator.h @@ -0,0 +1,24 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QCollator_CaseSensitivity(QtObjectPtr ptr); +int QCollator_IgnorePunctuation(QtObjectPtr ptr); +int QCollator_NumericMode(QtObjectPtr ptr); +void QCollator_SetCaseSensitivity(QtObjectPtr ptr, int sensitivity); +void QCollator_SetIgnorePunctuation(QtObjectPtr ptr, int on); +void QCollator_SetNumericMode(QtObjectPtr ptr, int on); +QtObjectPtr QCollator_NewQCollator3(QtObjectPtr other); +QtObjectPtr QCollator_NewQCollator2(QtObjectPtr other); +QtObjectPtr QCollator_NewQCollator(QtObjectPtr locale); +void QCollator_SetLocale(QtObjectPtr ptr, QtObjectPtr locale); +void QCollator_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QCollator_DestroyQCollator(QtObjectPtr ptr); +int QCollator_Compare3(QtObjectPtr ptr, QtObjectPtr s1, int len1, QtObjectPtr s2, int len2); +int QCollator_Compare(QtObjectPtr ptr, char* s1, char* s2); +int QCollator_Compare2(QtObjectPtr ptr, QtObjectPtr s1, QtObjectPtr s2); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qcollatorsortkey.cpp b/core/qcollatorsortkey.cpp new file mode 100755 index 00000000..8358db19 --- /dev/null +++ b/core/qcollatorsortkey.cpp @@ -0,0 +1,29 @@ +#include "qcollatorsortkey.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCollatorSortKey: public QCollatorSortKey { +public: +}; + +QtObjectPtr QCollatorSortKey_NewQCollatorSortKey(QtObjectPtr other){ + return new QCollatorSortKey(*static_cast(other)); +} + +void QCollatorSortKey_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QCollatorSortKey_DestroyQCollatorSortKey(QtObjectPtr ptr){ + static_cast(ptr)->~QCollatorSortKey(); +} + +int QCollatorSortKey_Compare(QtObjectPtr ptr, QtObjectPtr otherKey){ + return static_cast(ptr)->compare(*static_cast(otherKey)); +} + diff --git a/core/qcollatorsortkey.go b/core/qcollatorsortkey.go new file mode 100755 index 00000000..06d9fb7e --- /dev/null +++ b/core/qcollatorsortkey.go @@ -0,0 +1,63 @@ +package core + +//#include "qcollatorsortkey.h" +import "C" +import ( + "unsafe" +) + +type QCollatorSortKey struct { + ptr unsafe.Pointer +} + +type QCollatorSortKeyITF interface { + QCollatorSortKeyPTR() *QCollatorSortKey +} + +func (p *QCollatorSortKey) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QCollatorSortKey) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQCollatorSortKey(ptr QCollatorSortKeyITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCollatorSortKeyPTR().Pointer() + } + return nil +} + +func QCollatorSortKeyFromPointer(ptr unsafe.Pointer) *QCollatorSortKey { + var n = new(QCollatorSortKey) + n.SetPointer(ptr) + return n +} + +func (ptr *QCollatorSortKey) QCollatorSortKeyPTR() *QCollatorSortKey { + return ptr +} + +func NewQCollatorSortKey(other QCollatorSortKeyITF) *QCollatorSortKey { + return QCollatorSortKeyFromPointer(unsafe.Pointer(C.QCollatorSortKey_NewQCollatorSortKey(C.QtObjectPtr(PointerFromQCollatorSortKey(other))))) +} + +func (ptr *QCollatorSortKey) Swap(other QCollatorSortKeyITF) { + if ptr.Pointer() != nil { + C.QCollatorSortKey_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQCollatorSortKey(other))) + } +} + +func (ptr *QCollatorSortKey) DestroyQCollatorSortKey() { + if ptr.Pointer() != nil { + C.QCollatorSortKey_DestroyQCollatorSortKey(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QCollatorSortKey) Compare(otherKey QCollatorSortKeyITF) int { + if ptr.Pointer() != nil { + return int(C.QCollatorSortKey_Compare(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQCollatorSortKey(otherKey)))) + } + return 0 +} diff --git a/core/qcollatorsortkey.h b/core/qcollatorsortkey.h new file mode 100755 index 00000000..16a7e8c6 --- /dev/null +++ b/core/qcollatorsortkey.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QCollatorSortKey_NewQCollatorSortKey(QtObjectPtr other); +void QCollatorSortKey_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QCollatorSortKey_DestroyQCollatorSortKey(QtObjectPtr ptr); +int QCollatorSortKey_Compare(QtObjectPtr ptr, QtObjectPtr otherKey); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qcommandlineoption.cpp b/core/qcommandlineoption.cpp new file mode 100755 index 00000000..15c173f5 --- /dev/null +++ b/core/qcommandlineoption.cpp @@ -0,0 +1,72 @@ +#include "qcommandlineoption.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCommandLineOption: public QCommandLineOption { +public: +}; + +QtObjectPtr QCommandLineOption_NewQCommandLineOption5(QtObjectPtr other){ + return new QCommandLineOption(*static_cast(other)); +} + +QtObjectPtr QCommandLineOption_NewQCommandLineOption(char* name){ + return new QCommandLineOption(QString(name)); +} + +QtObjectPtr QCommandLineOption_NewQCommandLineOption3(char* name, char* description, char* valueName, char* defaultValue){ + return new QCommandLineOption(QString(name), QString(description), QString(valueName), QString(defaultValue)); +} + +QtObjectPtr QCommandLineOption_NewQCommandLineOption2(char* names){ + return new QCommandLineOption(QString(names).split("|", QString::SkipEmptyParts)); +} + +QtObjectPtr QCommandLineOption_NewQCommandLineOption4(char* names, char* description, char* valueName, char* defaultValue){ + return new QCommandLineOption(QString(names).split("|", QString::SkipEmptyParts), QString(description), QString(valueName), QString(defaultValue)); +} + +char* QCommandLineOption_DefaultValues(QtObjectPtr ptr){ + return static_cast(ptr)->defaultValues().join("|").toUtf8().data(); +} + +char* QCommandLineOption_Description(QtObjectPtr ptr){ + return static_cast(ptr)->description().toUtf8().data(); +} + +char* QCommandLineOption_Names(QtObjectPtr ptr){ + return static_cast(ptr)->names().join("|").toUtf8().data(); +} + +void QCommandLineOption_SetDefaultValue(QtObjectPtr ptr, char* defaultValue){ + static_cast(ptr)->setDefaultValue(QString(defaultValue)); +} + +void QCommandLineOption_SetDefaultValues(QtObjectPtr ptr, char* defaultValues){ + static_cast(ptr)->setDefaultValues(QString(defaultValues).split("|", QString::SkipEmptyParts)); +} + +void QCommandLineOption_SetDescription(QtObjectPtr ptr, char* description){ + static_cast(ptr)->setDescription(QString(description)); +} + +void QCommandLineOption_SetValueName(QtObjectPtr ptr, char* valueName){ + static_cast(ptr)->setValueName(QString(valueName)); +} + +void QCommandLineOption_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +char* QCommandLineOption_ValueName(QtObjectPtr ptr){ + return static_cast(ptr)->valueName().toUtf8().data(); +} + +void QCommandLineOption_DestroyQCommandLineOption(QtObjectPtr ptr){ + static_cast(ptr)->~QCommandLineOption(); +} + diff --git a/core/qcommandlineoption.go b/core/qcommandlineoption.go new file mode 100755 index 00000000..991fe574 --- /dev/null +++ b/core/qcommandlineoption.go @@ -0,0 +1,125 @@ +package core + +//#include "qcommandlineoption.h" +import "C" +import ( + "strings" + "unsafe" +) + +type QCommandLineOption struct { + ptr unsafe.Pointer +} + +type QCommandLineOptionITF interface { + QCommandLineOptionPTR() *QCommandLineOption +} + +func (p *QCommandLineOption) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QCommandLineOption) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQCommandLineOption(ptr QCommandLineOptionITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCommandLineOptionPTR().Pointer() + } + return nil +} + +func QCommandLineOptionFromPointer(ptr unsafe.Pointer) *QCommandLineOption { + var n = new(QCommandLineOption) + n.SetPointer(ptr) + return n +} + +func (ptr *QCommandLineOption) QCommandLineOptionPTR() *QCommandLineOption { + return ptr +} + +func NewQCommandLineOption5(other QCommandLineOptionITF) *QCommandLineOption { + return QCommandLineOptionFromPointer(unsafe.Pointer(C.QCommandLineOption_NewQCommandLineOption5(C.QtObjectPtr(PointerFromQCommandLineOption(other))))) +} + +func NewQCommandLineOption(name string) *QCommandLineOption { + return QCommandLineOptionFromPointer(unsafe.Pointer(C.QCommandLineOption_NewQCommandLineOption(C.CString(name)))) +} + +func NewQCommandLineOption3(name string, description string, valueName string, defaultValue string) *QCommandLineOption { + return QCommandLineOptionFromPointer(unsafe.Pointer(C.QCommandLineOption_NewQCommandLineOption3(C.CString(name), C.CString(description), C.CString(valueName), C.CString(defaultValue)))) +} + +func NewQCommandLineOption2(names []string) *QCommandLineOption { + return QCommandLineOptionFromPointer(unsafe.Pointer(C.QCommandLineOption_NewQCommandLineOption2(C.CString(strings.Join(names, "|"))))) +} + +func NewQCommandLineOption4(names []string, description string, valueName string, defaultValue string) *QCommandLineOption { + return QCommandLineOptionFromPointer(unsafe.Pointer(C.QCommandLineOption_NewQCommandLineOption4(C.CString(strings.Join(names, "|")), C.CString(description), C.CString(valueName), C.CString(defaultValue)))) +} + +func (ptr *QCommandLineOption) DefaultValues() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QCommandLineOption_DefaultValues(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QCommandLineOption) Description() string { + if ptr.Pointer() != nil { + return C.GoString(C.QCommandLineOption_Description(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QCommandLineOption) Names() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QCommandLineOption_Names(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QCommandLineOption) SetDefaultValue(defaultValue string) { + if ptr.Pointer() != nil { + C.QCommandLineOption_SetDefaultValue(C.QtObjectPtr(ptr.Pointer()), C.CString(defaultValue)) + } +} + +func (ptr *QCommandLineOption) SetDefaultValues(defaultValues []string) { + if ptr.Pointer() != nil { + C.QCommandLineOption_SetDefaultValues(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(defaultValues, "|"))) + } +} + +func (ptr *QCommandLineOption) SetDescription(description string) { + if ptr.Pointer() != nil { + C.QCommandLineOption_SetDescription(C.QtObjectPtr(ptr.Pointer()), C.CString(description)) + } +} + +func (ptr *QCommandLineOption) SetValueName(valueName string) { + if ptr.Pointer() != nil { + C.QCommandLineOption_SetValueName(C.QtObjectPtr(ptr.Pointer()), C.CString(valueName)) + } +} + +func (ptr *QCommandLineOption) Swap(other QCommandLineOptionITF) { + if ptr.Pointer() != nil { + C.QCommandLineOption_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQCommandLineOption(other))) + } +} + +func (ptr *QCommandLineOption) ValueName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QCommandLineOption_ValueName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QCommandLineOption) DestroyQCommandLineOption() { + if ptr.Pointer() != nil { + C.QCommandLineOption_DestroyQCommandLineOption(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qcommandlineoption.h b/core/qcommandlineoption.h new file mode 100755 index 00000000..b1a32588 --- /dev/null +++ b/core/qcommandlineoption.h @@ -0,0 +1,24 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QCommandLineOption_NewQCommandLineOption5(QtObjectPtr other); +QtObjectPtr QCommandLineOption_NewQCommandLineOption(char* name); +QtObjectPtr QCommandLineOption_NewQCommandLineOption3(char* name, char* description, char* valueName, char* defaultValue); +QtObjectPtr QCommandLineOption_NewQCommandLineOption2(char* names); +QtObjectPtr QCommandLineOption_NewQCommandLineOption4(char* names, char* description, char* valueName, char* defaultValue); +char* QCommandLineOption_DefaultValues(QtObjectPtr ptr); +char* QCommandLineOption_Description(QtObjectPtr ptr); +char* QCommandLineOption_Names(QtObjectPtr ptr); +void QCommandLineOption_SetDefaultValue(QtObjectPtr ptr, char* defaultValue); +void QCommandLineOption_SetDefaultValues(QtObjectPtr ptr, char* defaultValues); +void QCommandLineOption_SetDescription(QtObjectPtr ptr, char* description); +void QCommandLineOption_SetValueName(QtObjectPtr ptr, char* valueName); +void QCommandLineOption_Swap(QtObjectPtr ptr, QtObjectPtr other); +char* QCommandLineOption_ValueName(QtObjectPtr ptr); +void QCommandLineOption_DestroyQCommandLineOption(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qcommandlineparser.cpp b/core/qcommandlineparser.cpp new file mode 100755 index 00000000..fc19db21 --- /dev/null +++ b/core/qcommandlineparser.cpp @@ -0,0 +1,110 @@ +#include "qcommandlineparser.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCommandLineParser: public QCommandLineParser { +public: +}; + +QtObjectPtr QCommandLineParser_NewQCommandLineParser(){ + return new QCommandLineParser(); +} + +int QCommandLineParser_AddOption(QtObjectPtr ptr, QtObjectPtr option){ + return static_cast(ptr)->addOption(*static_cast(option)); +} + +void QCommandLineParser_AddPositionalArgument(QtObjectPtr ptr, char* name, char* description, char* syntax){ + static_cast(ptr)->addPositionalArgument(QString(name), QString(description), QString(syntax)); +} + +char* QCommandLineParser_ApplicationDescription(QtObjectPtr ptr){ + return static_cast(ptr)->applicationDescription().toUtf8().data(); +} + +void QCommandLineParser_ClearPositionalArguments(QtObjectPtr ptr){ + static_cast(ptr)->clearPositionalArguments(); +} + +char* QCommandLineParser_ErrorText(QtObjectPtr ptr){ + return static_cast(ptr)->errorText().toUtf8().data(); +} + +char* QCommandLineParser_HelpText(QtObjectPtr ptr){ + return static_cast(ptr)->helpText().toUtf8().data(); +} + +int QCommandLineParser_IsSet2(QtObjectPtr ptr, QtObjectPtr option){ + return static_cast(ptr)->isSet(*static_cast(option)); +} + +int QCommandLineParser_IsSet(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->isSet(QString(name)); +} + +char* QCommandLineParser_OptionNames(QtObjectPtr ptr){ + return static_cast(ptr)->optionNames().join("|").toUtf8().data(); +} + +int QCommandLineParser_Parse(QtObjectPtr ptr, char* arguments){ + return static_cast(ptr)->parse(QString(arguments).split("|", QString::SkipEmptyParts)); +} + +char* QCommandLineParser_PositionalArguments(QtObjectPtr ptr){ + return static_cast(ptr)->positionalArguments().join("|").toUtf8().data(); +} + +void QCommandLineParser_Process2(QtObjectPtr ptr, QtObjectPtr app){ + static_cast(ptr)->process(*static_cast(app)); +} + +void QCommandLineParser_Process(QtObjectPtr ptr, char* arguments){ + static_cast(ptr)->process(QString(arguments).split("|", QString::SkipEmptyParts)); +} + +void QCommandLineParser_SetApplicationDescription(QtObjectPtr ptr, char* description){ + static_cast(ptr)->setApplicationDescription(QString(description)); +} + +void QCommandLineParser_SetSingleDashWordOptionMode(QtObjectPtr ptr, int singleDashWordOptionMode){ + static_cast(ptr)->setSingleDashWordOptionMode(static_cast(singleDashWordOptionMode)); +} + +void QCommandLineParser_ShowHelp(QtObjectPtr ptr, int exitCode){ + static_cast(ptr)->showHelp(exitCode); +} + +void QCommandLineParser_ShowVersion(QtObjectPtr ptr){ + static_cast(ptr)->showVersion(); +} + +char* QCommandLineParser_UnknownOptionNames(QtObjectPtr ptr){ + return static_cast(ptr)->unknownOptionNames().join("|").toUtf8().data(); +} + +char* QCommandLineParser_Value2(QtObjectPtr ptr, QtObjectPtr option){ + return static_cast(ptr)->value(*static_cast(option)).toUtf8().data(); +} + +char* QCommandLineParser_Value(QtObjectPtr ptr, char* optionName){ + return static_cast(ptr)->value(QString(optionName)).toUtf8().data(); +} + +char* QCommandLineParser_Values2(QtObjectPtr ptr, QtObjectPtr option){ + return static_cast(ptr)->values(*static_cast(option)).join("|").toUtf8().data(); +} + +char* QCommandLineParser_Values(QtObjectPtr ptr, char* optionName){ + return static_cast(ptr)->values(QString(optionName)).join("|").toUtf8().data(); +} + +void QCommandLineParser_DestroyQCommandLineParser(QtObjectPtr ptr){ + static_cast(ptr)->~QCommandLineParser(); +} + diff --git a/core/qcommandlineparser.go b/core/qcommandlineparser.go new file mode 100755 index 00000000..8f0365bb --- /dev/null +++ b/core/qcommandlineparser.go @@ -0,0 +1,205 @@ +package core + +//#include "qcommandlineparser.h" +import "C" +import ( + "strings" + "unsafe" +) + +type QCommandLineParser struct { + ptr unsafe.Pointer +} + +type QCommandLineParserITF interface { + QCommandLineParserPTR() *QCommandLineParser +} + +func (p *QCommandLineParser) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QCommandLineParser) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQCommandLineParser(ptr QCommandLineParserITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCommandLineParserPTR().Pointer() + } + return nil +} + +func QCommandLineParserFromPointer(ptr unsafe.Pointer) *QCommandLineParser { + var n = new(QCommandLineParser) + n.SetPointer(ptr) + return n +} + +func (ptr *QCommandLineParser) QCommandLineParserPTR() *QCommandLineParser { + return ptr +} + +//QCommandLineParser::SingleDashWordOptionMode +type QCommandLineParser__SingleDashWordOptionMode int + +var ( + QCommandLineParser__ParseAsCompactedShortOptions = QCommandLineParser__SingleDashWordOptionMode(0) + QCommandLineParser__ParseAsLongOptions = QCommandLineParser__SingleDashWordOptionMode(1) +) + +func NewQCommandLineParser() *QCommandLineParser { + return QCommandLineParserFromPointer(unsafe.Pointer(C.QCommandLineParser_NewQCommandLineParser())) +} + +func (ptr *QCommandLineParser) AddOption(option QCommandLineOptionITF) bool { + if ptr.Pointer() != nil { + return C.QCommandLineParser_AddOption(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQCommandLineOption(option))) != 0 + } + return false +} + +func (ptr *QCommandLineParser) AddPositionalArgument(name string, description string, syntax string) { + if ptr.Pointer() != nil { + C.QCommandLineParser_AddPositionalArgument(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.CString(description), C.CString(syntax)) + } +} + +func (ptr *QCommandLineParser) ApplicationDescription() string { + if ptr.Pointer() != nil { + return C.GoString(C.QCommandLineParser_ApplicationDescription(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QCommandLineParser) ClearPositionalArguments() { + if ptr.Pointer() != nil { + C.QCommandLineParser_ClearPositionalArguments(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QCommandLineParser) ErrorText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QCommandLineParser_ErrorText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QCommandLineParser) HelpText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QCommandLineParser_HelpText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QCommandLineParser) IsSet2(option QCommandLineOptionITF) bool { + if ptr.Pointer() != nil { + return C.QCommandLineParser_IsSet2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQCommandLineOption(option))) != 0 + } + return false +} + +func (ptr *QCommandLineParser) IsSet(name string) bool { + if ptr.Pointer() != nil { + return C.QCommandLineParser_IsSet(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) != 0 + } + return false +} + +func (ptr *QCommandLineParser) OptionNames() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QCommandLineParser_OptionNames(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QCommandLineParser) Parse(arguments []string) bool { + if ptr.Pointer() != nil { + return C.QCommandLineParser_Parse(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(arguments, "|"))) != 0 + } + return false +} + +func (ptr *QCommandLineParser) PositionalArguments() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QCommandLineParser_PositionalArguments(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QCommandLineParser) Process2(app QCoreApplicationITF) { + if ptr.Pointer() != nil { + C.QCommandLineParser_Process2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQCoreApplication(app))) + } +} + +func (ptr *QCommandLineParser) Process(arguments []string) { + if ptr.Pointer() != nil { + C.QCommandLineParser_Process(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(arguments, "|"))) + } +} + +func (ptr *QCommandLineParser) SetApplicationDescription(description string) { + if ptr.Pointer() != nil { + C.QCommandLineParser_SetApplicationDescription(C.QtObjectPtr(ptr.Pointer()), C.CString(description)) + } +} + +func (ptr *QCommandLineParser) SetSingleDashWordOptionMode(singleDashWordOptionMode QCommandLineParser__SingleDashWordOptionMode) { + if ptr.Pointer() != nil { + C.QCommandLineParser_SetSingleDashWordOptionMode(C.QtObjectPtr(ptr.Pointer()), C.int(singleDashWordOptionMode)) + } +} + +func (ptr *QCommandLineParser) ShowHelp(exitCode int) { + if ptr.Pointer() != nil { + C.QCommandLineParser_ShowHelp(C.QtObjectPtr(ptr.Pointer()), C.int(exitCode)) + } +} + +func (ptr *QCommandLineParser) ShowVersion() { + if ptr.Pointer() != nil { + C.QCommandLineParser_ShowVersion(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QCommandLineParser) UnknownOptionNames() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QCommandLineParser_UnknownOptionNames(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QCommandLineParser) Value2(option QCommandLineOptionITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QCommandLineParser_Value2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQCommandLineOption(option)))) + } + return "" +} + +func (ptr *QCommandLineParser) Value(optionName string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QCommandLineParser_Value(C.QtObjectPtr(ptr.Pointer()), C.CString(optionName))) + } + return "" +} + +func (ptr *QCommandLineParser) Values2(option QCommandLineOptionITF) []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QCommandLineParser_Values2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQCommandLineOption(option)))), "|") + } + return make([]string, 0) +} + +func (ptr *QCommandLineParser) Values(optionName string) []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QCommandLineParser_Values(C.QtObjectPtr(ptr.Pointer()), C.CString(optionName))), "|") + } + return make([]string, 0) +} + +func (ptr *QCommandLineParser) DestroyQCommandLineParser() { + if ptr.Pointer() != nil { + C.QCommandLineParser_DestroyQCommandLineParser(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qcommandlineparser.h b/core/qcommandlineparser.h new file mode 100755 index 00000000..e2640d89 --- /dev/null +++ b/core/qcommandlineparser.h @@ -0,0 +1,33 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QCommandLineParser_NewQCommandLineParser(); +int QCommandLineParser_AddOption(QtObjectPtr ptr, QtObjectPtr option); +void QCommandLineParser_AddPositionalArgument(QtObjectPtr ptr, char* name, char* description, char* syntax); +char* QCommandLineParser_ApplicationDescription(QtObjectPtr ptr); +void QCommandLineParser_ClearPositionalArguments(QtObjectPtr ptr); +char* QCommandLineParser_ErrorText(QtObjectPtr ptr); +char* QCommandLineParser_HelpText(QtObjectPtr ptr); +int QCommandLineParser_IsSet2(QtObjectPtr ptr, QtObjectPtr option); +int QCommandLineParser_IsSet(QtObjectPtr ptr, char* name); +char* QCommandLineParser_OptionNames(QtObjectPtr ptr); +int QCommandLineParser_Parse(QtObjectPtr ptr, char* arguments); +char* QCommandLineParser_PositionalArguments(QtObjectPtr ptr); +void QCommandLineParser_Process2(QtObjectPtr ptr, QtObjectPtr app); +void QCommandLineParser_Process(QtObjectPtr ptr, char* arguments); +void QCommandLineParser_SetApplicationDescription(QtObjectPtr ptr, char* description); +void QCommandLineParser_SetSingleDashWordOptionMode(QtObjectPtr ptr, int singleDashWordOptionMode); +void QCommandLineParser_ShowHelp(QtObjectPtr ptr, int exitCode); +void QCommandLineParser_ShowVersion(QtObjectPtr ptr); +char* QCommandLineParser_UnknownOptionNames(QtObjectPtr ptr); +char* QCommandLineParser_Value2(QtObjectPtr ptr, QtObjectPtr option); +char* QCommandLineParser_Value(QtObjectPtr ptr, char* optionName); +char* QCommandLineParser_Values2(QtObjectPtr ptr, QtObjectPtr option); +char* QCommandLineParser_Values(QtObjectPtr ptr, char* optionName); +void QCommandLineParser_DestroyQCommandLineParser(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qcontiguouscache.cpp b/core/qcontiguouscache.cpp new file mode 100755 index 00000000..fa2e0358 --- /dev/null +++ b/core/qcontiguouscache.cpp @@ -0,0 +1,8 @@ +#include "qcontiguouscache.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qcontiguouscache.go b/core/qcontiguouscache.go new file mode 100755 index 00000000..c03bf033 --- /dev/null +++ b/core/qcontiguouscache.go @@ -0,0 +1,40 @@ +package core + +//#include "qcontiguouscache.h" +import "C" +import ( + "unsafe" +) + +type QContiguousCache struct { + ptr unsafe.Pointer +} + +type QContiguousCacheITF interface { + QContiguousCachePTR() *QContiguousCache +} + +func (p *QContiguousCache) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QContiguousCache) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQContiguousCache(ptr QContiguousCacheITF) unsafe.Pointer { + if ptr != nil { + return ptr.QContiguousCachePTR().Pointer() + } + return nil +} + +func QContiguousCacheFromPointer(ptr unsafe.Pointer) *QContiguousCache { + var n = new(QContiguousCache) + n.SetPointer(ptr) + return n +} + +func (ptr *QContiguousCache) QContiguousCachePTR() *QContiguousCache { + return ptr +} diff --git a/core/qcontiguouscache.h b/core/qcontiguouscache.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qcontiguouscache.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qcoreapplication.cpp b/core/qcoreapplication.cpp new file mode 100755 index 00000000..96967e21 --- /dev/null +++ b/core/qcoreapplication.cpp @@ -0,0 +1,204 @@ +#include "qcoreapplication.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCoreApplication: public QCoreApplication { +public: +void Signal_AboutToQuit(){callbackQCoreApplicationAboutToQuit(this->objectName().toUtf8().data());}; +}; + +char* QCoreApplication_QCoreApplication_ApplicationName(){ + return QCoreApplication::applicationName().toUtf8().data(); +} + +char* QCoreApplication_QCoreApplication_ApplicationVersion(){ + return QCoreApplication::applicationVersion().toUtf8().data(); +} + +char* QCoreApplication_QCoreApplication_OrganizationDomain(){ + return QCoreApplication::organizationDomain().toUtf8().data(); +} + +char* QCoreApplication_QCoreApplication_OrganizationName(){ + return QCoreApplication::organizationName().toUtf8().data(); +} + +void QCoreApplication_QCoreApplication_SetApplicationName(char* application){ + QCoreApplication::setApplicationName(QString(application)); +} + +void QCoreApplication_QCoreApplication_SetApplicationVersion(char* version){ + QCoreApplication::setApplicationVersion(QString(version)); +} + +void QCoreApplication_QCoreApplication_SetOrganizationDomain(char* orgDomain){ + QCoreApplication::setOrganizationDomain(QString(orgDomain)); +} + +void QCoreApplication_QCoreApplication_SetOrganizationName(char* orgName){ + QCoreApplication::setOrganizationName(QString(orgName)); +} + +QtObjectPtr QCoreApplication_NewQCoreApplication(int argc, char* argv){ + return new QCoreApplication(argc, &argv); +} + +void QCoreApplication_ConnectAboutToQuit(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QCoreApplication::aboutToQuit, static_cast(ptr), static_cast(&MyQCoreApplication::Signal_AboutToQuit));; +} + +void QCoreApplication_DisconnectAboutToQuit(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QCoreApplication::aboutToQuit, static_cast(ptr), static_cast(&MyQCoreApplication::Signal_AboutToQuit));; +} + +void QCoreApplication_QCoreApplication_AddLibraryPath(char* path){ + QCoreApplication::addLibraryPath(QString(path)); +} + +char* QCoreApplication_QCoreApplication_ApplicationDirPath(){ + return QCoreApplication::applicationDirPath().toUtf8().data(); +} + +char* QCoreApplication_QCoreApplication_ApplicationFilePath(){ + return QCoreApplication::applicationFilePath().toUtf8().data(); +} + +char* QCoreApplication_QCoreApplication_Arguments(){ + return QCoreApplication::arguments().join("|").toUtf8().data(); +} + +int QCoreApplication_QCoreApplication_ClosingDown(){ + return QCoreApplication::closingDown(); +} + +QtObjectPtr QCoreApplication_QCoreApplication_EventDispatcher(){ + return QCoreApplication::eventDispatcher(); +} + +int QCoreApplication_QCoreApplication_Exec(){ + return QCoreApplication::exec(); +} + +void QCoreApplication_QCoreApplication_Exit(int returnCode){ + QCoreApplication::exit(returnCode); +} + +void QCoreApplication_QCoreApplication_Flush(){ + QCoreApplication::flush(); +} + +void QCoreApplication_InstallNativeEventFilter(QtObjectPtr ptr, QtObjectPtr filterObj){ + static_cast(ptr)->installNativeEventFilter(static_cast(filterObj)); +} + +int QCoreApplication_QCoreApplication_InstallTranslator(QtObjectPtr translationFile){ + return QCoreApplication::installTranslator(static_cast(translationFile)); +} + +QtObjectPtr QCoreApplication_QCoreApplication_Instance(){ + return QCoreApplication::instance(); +} + +int QCoreApplication_QCoreApplication_IsQuitLockEnabled(){ + return QCoreApplication::isQuitLockEnabled(); +} + +int QCoreApplication_QCoreApplication_IsSetuidAllowed(){ + return QCoreApplication::isSetuidAllowed(); +} + +char* QCoreApplication_QCoreApplication_LibraryPaths(){ + return QCoreApplication::libraryPaths().join("|").toUtf8().data(); +} + +int QCoreApplication_Notify(QtObjectPtr ptr, QtObjectPtr receiver, QtObjectPtr event){ + return static_cast(ptr)->notify(static_cast(receiver), static_cast(event)); +} + +void QCoreApplication_QCoreApplication_PostEvent(QtObjectPtr receiver, QtObjectPtr event, int priority){ + QCoreApplication::postEvent(static_cast(receiver), static_cast(event), priority); +} + +void QCoreApplication_QCoreApplication_ProcessEvents(int flags){ + QCoreApplication::processEvents(static_cast(flags)); +} + +void QCoreApplication_QCoreApplication_ProcessEvents2(int flags, int maxtime){ + QCoreApplication::processEvents(static_cast(flags), maxtime); +} + +void QCoreApplication_QCoreApplication_Quit(){ + QMetaObject::invokeMethod(QCoreApplication::instance(), "quit"); +} + +void QCoreApplication_QCoreApplication_RemoveLibraryPath(char* path){ + QCoreApplication::removeLibraryPath(QString(path)); +} + +void QCoreApplication_RemoveNativeEventFilter(QtObjectPtr ptr, QtObjectPtr filterObject){ + static_cast(ptr)->removeNativeEventFilter(static_cast(filterObject)); +} + +void QCoreApplication_QCoreApplication_RemovePostedEvents(QtObjectPtr receiver, int eventType){ + QCoreApplication::removePostedEvents(static_cast(receiver), eventType); +} + +int QCoreApplication_QCoreApplication_RemoveTranslator(QtObjectPtr translationFile){ + return QCoreApplication::removeTranslator(static_cast(translationFile)); +} + +int QCoreApplication_QCoreApplication_SendEvent(QtObjectPtr receiver, QtObjectPtr event){ + return QCoreApplication::sendEvent(static_cast(receiver), static_cast(event)); +} + +void QCoreApplication_QCoreApplication_SendPostedEvents(QtObjectPtr receiver, int event_type){ + QCoreApplication::sendPostedEvents(static_cast(receiver), event_type); +} + +void QCoreApplication_QCoreApplication_SetAttribute(int attribute, int on){ + QCoreApplication::setAttribute(static_cast(attribute), on != 0); +} + +void QCoreApplication_QCoreApplication_SetEventDispatcher(QtObjectPtr eventDispatcher){ + QCoreApplication::setEventDispatcher(static_cast(eventDispatcher)); +} + +void QCoreApplication_QCoreApplication_SetLibraryPaths(char* paths){ + QCoreApplication::setLibraryPaths(QString(paths).split("|", QString::SkipEmptyParts)); +} + +void QCoreApplication_QCoreApplication_SetQuitLockEnabled(int enabled){ + QCoreApplication::setQuitLockEnabled(enabled != 0); +} + +void QCoreApplication_QCoreApplication_SetSetuidAllowed(int allow){ + QCoreApplication::setSetuidAllowed(allow != 0); +} + +int QCoreApplication_QCoreApplication_StartingUp(){ + return QCoreApplication::startingUp(); +} + +int QCoreApplication_QCoreApplication_TestAttribute(int attribute){ + return QCoreApplication::testAttribute(static_cast(attribute)); +} + +char* QCoreApplication_QCoreApplication_Translate(char* context, char* sourceText, char* disambiguation, int n){ + return QCoreApplication::translate(const_cast(context), const_cast(sourceText), const_cast(disambiguation), n).toUtf8().data(); +} + +void QCoreApplication_DestroyQCoreApplication(QtObjectPtr ptr){ + static_cast(ptr)->~QCoreApplication(); +} + diff --git a/core/qcoreapplication.go b/core/qcoreapplication.go new file mode 100755 index 00000000..b24d9348 --- /dev/null +++ b/core/qcoreapplication.go @@ -0,0 +1,243 @@ +package core + +//#include "qcoreapplication.h" +import "C" +import ( + "github.com/therecipe/qt" + "strings" + "unsafe" +) + +type QCoreApplication struct { + QObject +} + +type QCoreApplicationITF interface { + QObjectITF + QCoreApplicationPTR() *QCoreApplication +} + +func PointerFromQCoreApplication(ptr QCoreApplicationITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCoreApplicationPTR().Pointer() + } + return nil +} + +func QCoreApplicationFromPointer(ptr unsafe.Pointer) *QCoreApplication { + var n = new(QCoreApplication) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCoreApplication_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCoreApplication) QCoreApplicationPTR() *QCoreApplication { + return ptr +} + +func QCoreApplication_ApplicationName() string { + return C.GoString(C.QCoreApplication_QCoreApplication_ApplicationName()) +} + +func QCoreApplication_ApplicationVersion() string { + return C.GoString(C.QCoreApplication_QCoreApplication_ApplicationVersion()) +} + +func QCoreApplication_OrganizationDomain() string { + return C.GoString(C.QCoreApplication_QCoreApplication_OrganizationDomain()) +} + +func QCoreApplication_OrganizationName() string { + return C.GoString(C.QCoreApplication_QCoreApplication_OrganizationName()) +} + +func QCoreApplication_SetApplicationName(application string) { + C.QCoreApplication_QCoreApplication_SetApplicationName(C.CString(application)) +} + +func QCoreApplication_SetApplicationVersion(version string) { + C.QCoreApplication_QCoreApplication_SetApplicationVersion(C.CString(version)) +} + +func QCoreApplication_SetOrganizationDomain(orgDomain string) { + C.QCoreApplication_QCoreApplication_SetOrganizationDomain(C.CString(orgDomain)) +} + +func QCoreApplication_SetOrganizationName(orgName string) { + C.QCoreApplication_QCoreApplication_SetOrganizationName(C.CString(orgName)) +} + +func NewQCoreApplication(argc int, argv string) *QCoreApplication { + return QCoreApplicationFromPointer(unsafe.Pointer(C.QCoreApplication_NewQCoreApplication(C.int(argc), C.CString(argv)))) +} + +func (ptr *QCoreApplication) ConnectAboutToQuit(f func()) { + if ptr.Pointer() != nil { + C.QCoreApplication_ConnectAboutToQuit(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "aboutToQuit", f) + } +} + +func (ptr *QCoreApplication) DisconnectAboutToQuit() { + if ptr.Pointer() != nil { + C.QCoreApplication_DisconnectAboutToQuit(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "aboutToQuit") + } +} + +//export callbackQCoreApplicationAboutToQuit +func callbackQCoreApplicationAboutToQuit(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "aboutToQuit").(func())() +} + +func QCoreApplication_AddLibraryPath(path string) { + C.QCoreApplication_QCoreApplication_AddLibraryPath(C.CString(path)) +} + +func QCoreApplication_ApplicationDirPath() string { + return C.GoString(C.QCoreApplication_QCoreApplication_ApplicationDirPath()) +} + +func QCoreApplication_ApplicationFilePath() string { + return C.GoString(C.QCoreApplication_QCoreApplication_ApplicationFilePath()) +} + +func QCoreApplication_Arguments() []string { + return strings.Split(C.GoString(C.QCoreApplication_QCoreApplication_Arguments()), "|") +} + +func QCoreApplication_ClosingDown() bool { + return C.QCoreApplication_QCoreApplication_ClosingDown() != 0 +} + +func QCoreApplication_EventDispatcher() *QAbstractEventDispatcher { + return QAbstractEventDispatcherFromPointer(unsafe.Pointer(C.QCoreApplication_QCoreApplication_EventDispatcher())) +} + +func QCoreApplication_Exec() int { + return int(C.QCoreApplication_QCoreApplication_Exec()) +} + +func QCoreApplication_Exit(returnCode int) { + C.QCoreApplication_QCoreApplication_Exit(C.int(returnCode)) +} + +func QCoreApplication_Flush() { + C.QCoreApplication_QCoreApplication_Flush() +} + +func (ptr *QCoreApplication) InstallNativeEventFilter(filterObj QAbstractNativeEventFilterITF) { + if ptr.Pointer() != nil { + C.QCoreApplication_InstallNativeEventFilter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractNativeEventFilter(filterObj))) + } +} + +func QCoreApplication_InstallTranslator(translationFile QTranslatorITF) bool { + return C.QCoreApplication_QCoreApplication_InstallTranslator(C.QtObjectPtr(PointerFromQTranslator(translationFile))) != 0 +} + +func QCoreApplication_Instance() *QCoreApplication { + return QCoreApplicationFromPointer(unsafe.Pointer(C.QCoreApplication_QCoreApplication_Instance())) +} + +func QCoreApplication_IsQuitLockEnabled() bool { + return C.QCoreApplication_QCoreApplication_IsQuitLockEnabled() != 0 +} + +func QCoreApplication_IsSetuidAllowed() bool { + return C.QCoreApplication_QCoreApplication_IsSetuidAllowed() != 0 +} + +func QCoreApplication_LibraryPaths() []string { + return strings.Split(C.GoString(C.QCoreApplication_QCoreApplication_LibraryPaths()), "|") +} + +func (ptr *QCoreApplication) Notify(receiver QObjectITF, event QEventITF) bool { + if ptr.Pointer() != nil { + return C.QCoreApplication_Notify(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(receiver)), C.QtObjectPtr(PointerFromQEvent(event))) != 0 + } + return false +} + +func QCoreApplication_PostEvent(receiver QObjectITF, event QEventITF, priority int) { + C.QCoreApplication_QCoreApplication_PostEvent(C.QtObjectPtr(PointerFromQObject(receiver)), C.QtObjectPtr(PointerFromQEvent(event)), C.int(priority)) +} + +func QCoreApplication_ProcessEvents(flags QEventLoop__ProcessEventsFlag) { + C.QCoreApplication_QCoreApplication_ProcessEvents(C.int(flags)) +} + +func QCoreApplication_ProcessEvents2(flags QEventLoop__ProcessEventsFlag, maxtime int) { + C.QCoreApplication_QCoreApplication_ProcessEvents2(C.int(flags), C.int(maxtime)) +} + +func QCoreApplication_Quit() { + C.QCoreApplication_QCoreApplication_Quit() +} + +func QCoreApplication_RemoveLibraryPath(path string) { + C.QCoreApplication_QCoreApplication_RemoveLibraryPath(C.CString(path)) +} + +func (ptr *QCoreApplication) RemoveNativeEventFilter(filterObject QAbstractNativeEventFilterITF) { + if ptr.Pointer() != nil { + C.QCoreApplication_RemoveNativeEventFilter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractNativeEventFilter(filterObject))) + } +} + +func QCoreApplication_RemovePostedEvents(receiver QObjectITF, eventType int) { + C.QCoreApplication_QCoreApplication_RemovePostedEvents(C.QtObjectPtr(PointerFromQObject(receiver)), C.int(eventType)) +} + +func QCoreApplication_RemoveTranslator(translationFile QTranslatorITF) bool { + return C.QCoreApplication_QCoreApplication_RemoveTranslator(C.QtObjectPtr(PointerFromQTranslator(translationFile))) != 0 +} + +func QCoreApplication_SendEvent(receiver QObjectITF, event QEventITF) bool { + return C.QCoreApplication_QCoreApplication_SendEvent(C.QtObjectPtr(PointerFromQObject(receiver)), C.QtObjectPtr(PointerFromQEvent(event))) != 0 +} + +func QCoreApplication_SendPostedEvents(receiver QObjectITF, event_type int) { + C.QCoreApplication_QCoreApplication_SendPostedEvents(C.QtObjectPtr(PointerFromQObject(receiver)), C.int(event_type)) +} + +func QCoreApplication_SetAttribute(attribute Qt__ApplicationAttribute, on bool) { + C.QCoreApplication_QCoreApplication_SetAttribute(C.int(attribute), C.int(qt.GoBoolToInt(on))) +} + +func QCoreApplication_SetEventDispatcher(eventDispatcher QAbstractEventDispatcherITF) { + C.QCoreApplication_QCoreApplication_SetEventDispatcher(C.QtObjectPtr(PointerFromQAbstractEventDispatcher(eventDispatcher))) +} + +func QCoreApplication_SetLibraryPaths(paths []string) { + C.QCoreApplication_QCoreApplication_SetLibraryPaths(C.CString(strings.Join(paths, "|"))) +} + +func QCoreApplication_SetQuitLockEnabled(enabled bool) { + C.QCoreApplication_QCoreApplication_SetQuitLockEnabled(C.int(qt.GoBoolToInt(enabled))) +} + +func QCoreApplication_SetSetuidAllowed(allow bool) { + C.QCoreApplication_QCoreApplication_SetSetuidAllowed(C.int(qt.GoBoolToInt(allow))) +} + +func QCoreApplication_StartingUp() bool { + return C.QCoreApplication_QCoreApplication_StartingUp() != 0 +} + +func QCoreApplication_TestAttribute(attribute Qt__ApplicationAttribute) bool { + return C.QCoreApplication_QCoreApplication_TestAttribute(C.int(attribute)) != 0 +} + +func QCoreApplication_Translate(context string, sourceText string, disambiguation string, n int) string { + return C.GoString(C.QCoreApplication_QCoreApplication_Translate(C.CString(context), C.CString(sourceText), C.CString(disambiguation), C.int(n))) +} + +func (ptr *QCoreApplication) DestroyQCoreApplication() { + if ptr.Pointer() != nil { + C.QCoreApplication_DestroyQCoreApplication(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qcoreapplication.h b/core/qcoreapplication.h new file mode 100755 index 00000000..40bac8f5 --- /dev/null +++ b/core/qcoreapplication.h @@ -0,0 +1,55 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QCoreApplication_QCoreApplication_ApplicationName(); +char* QCoreApplication_QCoreApplication_ApplicationVersion(); +char* QCoreApplication_QCoreApplication_OrganizationDomain(); +char* QCoreApplication_QCoreApplication_OrganizationName(); +void QCoreApplication_QCoreApplication_SetApplicationName(char* application); +void QCoreApplication_QCoreApplication_SetApplicationVersion(char* version); +void QCoreApplication_QCoreApplication_SetOrganizationDomain(char* orgDomain); +void QCoreApplication_QCoreApplication_SetOrganizationName(char* orgName); +QtObjectPtr QCoreApplication_NewQCoreApplication(int argc, char* argv); +void QCoreApplication_ConnectAboutToQuit(QtObjectPtr ptr); +void QCoreApplication_DisconnectAboutToQuit(QtObjectPtr ptr); +void QCoreApplication_QCoreApplication_AddLibraryPath(char* path); +char* QCoreApplication_QCoreApplication_ApplicationDirPath(); +char* QCoreApplication_QCoreApplication_ApplicationFilePath(); +char* QCoreApplication_QCoreApplication_Arguments(); +int QCoreApplication_QCoreApplication_ClosingDown(); +QtObjectPtr QCoreApplication_QCoreApplication_EventDispatcher(); +int QCoreApplication_QCoreApplication_Exec(); +void QCoreApplication_QCoreApplication_Exit(int returnCode); +void QCoreApplication_QCoreApplication_Flush(); +void QCoreApplication_InstallNativeEventFilter(QtObjectPtr ptr, QtObjectPtr filterObj); +int QCoreApplication_QCoreApplication_InstallTranslator(QtObjectPtr translationFile); +QtObjectPtr QCoreApplication_QCoreApplication_Instance(); +int QCoreApplication_QCoreApplication_IsQuitLockEnabled(); +int QCoreApplication_QCoreApplication_IsSetuidAllowed(); +char* QCoreApplication_QCoreApplication_LibraryPaths(); +int QCoreApplication_Notify(QtObjectPtr ptr, QtObjectPtr receiver, QtObjectPtr event); +void QCoreApplication_QCoreApplication_PostEvent(QtObjectPtr receiver, QtObjectPtr event, int priority); +void QCoreApplication_QCoreApplication_ProcessEvents(int flags); +void QCoreApplication_QCoreApplication_ProcessEvents2(int flags, int maxtime); +void QCoreApplication_QCoreApplication_Quit(); +void QCoreApplication_QCoreApplication_RemoveLibraryPath(char* path); +void QCoreApplication_RemoveNativeEventFilter(QtObjectPtr ptr, QtObjectPtr filterObject); +void QCoreApplication_QCoreApplication_RemovePostedEvents(QtObjectPtr receiver, int eventType); +int QCoreApplication_QCoreApplication_RemoveTranslator(QtObjectPtr translationFile); +int QCoreApplication_QCoreApplication_SendEvent(QtObjectPtr receiver, QtObjectPtr event); +void QCoreApplication_QCoreApplication_SendPostedEvents(QtObjectPtr receiver, int event_type); +void QCoreApplication_QCoreApplication_SetAttribute(int attribute, int on); +void QCoreApplication_QCoreApplication_SetEventDispatcher(QtObjectPtr eventDispatcher); +void QCoreApplication_QCoreApplication_SetLibraryPaths(char* paths); +void QCoreApplication_QCoreApplication_SetQuitLockEnabled(int enabled); +void QCoreApplication_QCoreApplication_SetSetuidAllowed(int allow); +int QCoreApplication_QCoreApplication_StartingUp(); +int QCoreApplication_QCoreApplication_TestAttribute(int attribute); +char* QCoreApplication_QCoreApplication_Translate(char* context, char* sourceText, char* disambiguation, int n); +void QCoreApplication_DestroyQCoreApplication(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qcryptographichash.cpp b/core/qcryptographichash.cpp new file mode 100755 index 00000000..b9014f71 --- /dev/null +++ b/core/qcryptographichash.cpp @@ -0,0 +1,38 @@ +#include "qcryptographichash.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCryptographicHash: public QCryptographicHash { +public: +}; + +QtObjectPtr QCryptographicHash_NewQCryptographicHash(int method){ + return new QCryptographicHash(static_cast(method)); +} + +int QCryptographicHash_AddData2(QtObjectPtr ptr, QtObjectPtr device){ + return static_cast(ptr)->addData(static_cast(device)); +} + +void QCryptographicHash_AddData3(QtObjectPtr ptr, QtObjectPtr data){ + static_cast(ptr)->addData(*static_cast(data)); +} + +void QCryptographicHash_AddData(QtObjectPtr ptr, char* data, int length){ + static_cast(ptr)->addData(const_cast(data), length); +} + +void QCryptographicHash_Reset(QtObjectPtr ptr){ + static_cast(ptr)->reset(); +} + +void QCryptographicHash_DestroyQCryptographicHash(QtObjectPtr ptr){ + static_cast(ptr)->~QCryptographicHash(); +} + diff --git a/core/qcryptographichash.go b/core/qcryptographichash.go new file mode 100755 index 00000000..dae39dbb --- /dev/null +++ b/core/qcryptographichash.go @@ -0,0 +1,92 @@ +package core + +//#include "qcryptographichash.h" +import "C" +import ( + "unsafe" +) + +type QCryptographicHash struct { + ptr unsafe.Pointer +} + +type QCryptographicHashITF interface { + QCryptographicHashPTR() *QCryptographicHash +} + +func (p *QCryptographicHash) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QCryptographicHash) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQCryptographicHash(ptr QCryptographicHashITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCryptographicHashPTR().Pointer() + } + return nil +} + +func QCryptographicHashFromPointer(ptr unsafe.Pointer) *QCryptographicHash { + var n = new(QCryptographicHash) + n.SetPointer(ptr) + return n +} + +func (ptr *QCryptographicHash) QCryptographicHashPTR() *QCryptographicHash { + return ptr +} + +//QCryptographicHash::Algorithm +type QCryptographicHash__Algorithm int + +var ( + QCryptographicHash__Md4 = QCryptographicHash__Algorithm(0) + QCryptographicHash__Md5 = QCryptographicHash__Algorithm(1) + QCryptographicHash__Sha1 = QCryptographicHash__Algorithm(2) + QCryptographicHash__Sha224 = QCryptographicHash__Algorithm(3) + QCryptographicHash__Sha256 = QCryptographicHash__Algorithm(4) + QCryptographicHash__Sha384 = QCryptographicHash__Algorithm(5) + QCryptographicHash__Sha512 = QCryptographicHash__Algorithm(6) + QCryptographicHash__Sha3_224 = QCryptographicHash__Algorithm(7) + QCryptographicHash__Sha3_256 = QCryptographicHash__Algorithm(8) + QCryptographicHash__Sha3_384 = QCryptographicHash__Algorithm(9) + QCryptographicHash__Sha3_512 = QCryptographicHash__Algorithm(10) +) + +func NewQCryptographicHash(method QCryptographicHash__Algorithm) *QCryptographicHash { + return QCryptographicHashFromPointer(unsafe.Pointer(C.QCryptographicHash_NewQCryptographicHash(C.int(method)))) +} + +func (ptr *QCryptographicHash) AddData2(device QIODeviceITF) bool { + if ptr.Pointer() != nil { + return C.QCryptographicHash_AddData2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQIODevice(device))) != 0 + } + return false +} + +func (ptr *QCryptographicHash) AddData3(data QByteArrayITF) { + if ptr.Pointer() != nil { + C.QCryptographicHash_AddData3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQByteArray(data))) + } +} + +func (ptr *QCryptographicHash) AddData(data string, length int) { + if ptr.Pointer() != nil { + C.QCryptographicHash_AddData(C.QtObjectPtr(ptr.Pointer()), C.CString(data), C.int(length)) + } +} + +func (ptr *QCryptographicHash) Reset() { + if ptr.Pointer() != nil { + C.QCryptographicHash_Reset(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QCryptographicHash) DestroyQCryptographicHash() { + if ptr.Pointer() != nil { + C.QCryptographicHash_DestroyQCryptographicHash(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qcryptographichash.h b/core/qcryptographichash.h new file mode 100755 index 00000000..7a1ab9bf --- /dev/null +++ b/core/qcryptographichash.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QCryptographicHash_NewQCryptographicHash(int method); +int QCryptographicHash_AddData2(QtObjectPtr ptr, QtObjectPtr device); +void QCryptographicHash_AddData3(QtObjectPtr ptr, QtObjectPtr data); +void QCryptographicHash_AddData(QtObjectPtr ptr, char* data, int length); +void QCryptographicHash_Reset(QtObjectPtr ptr); +void QCryptographicHash_DestroyQCryptographicHash(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qdatastream.cpp b/core/qdatastream.cpp new file mode 100755 index 00000000..c32703a3 --- /dev/null +++ b/core/qdatastream.cpp @@ -0,0 +1,94 @@ +#include "qdatastream.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDataStream: public QDataStream { +public: +}; + +QtObjectPtr QDataStream_NewQDataStream3(QtObjectPtr a, int mode){ + return new QDataStream(static_cast(a), static_cast(mode)); +} + +int QDataStream_AtEnd(QtObjectPtr ptr){ + return static_cast(ptr)->atEnd(); +} + +QtObjectPtr QDataStream_NewQDataStream(){ + return new QDataStream(); +} + +QtObjectPtr QDataStream_NewQDataStream2(QtObjectPtr d){ + return new QDataStream(static_cast(d)); +} + +QtObjectPtr QDataStream_NewQDataStream4(QtObjectPtr a){ + return new QDataStream(*static_cast(a)); +} + +int QDataStream_ByteOrder(QtObjectPtr ptr){ + return static_cast(ptr)->byteOrder(); +} + +QtObjectPtr QDataStream_Device(QtObjectPtr ptr){ + return static_cast(ptr)->device(); +} + +int QDataStream_FloatingPointPrecision(QtObjectPtr ptr){ + return static_cast(ptr)->floatingPointPrecision(); +} + +int QDataStream_ReadRawData(QtObjectPtr ptr, char* s, int len){ + return static_cast(ptr)->readRawData(s, len); +} + +void QDataStream_ResetStatus(QtObjectPtr ptr){ + static_cast(ptr)->resetStatus(); +} + +void QDataStream_SetByteOrder(QtObjectPtr ptr, int bo){ + static_cast(ptr)->setByteOrder(static_cast(bo)); +} + +void QDataStream_SetDevice(QtObjectPtr ptr, QtObjectPtr d){ + static_cast(ptr)->setDevice(static_cast(d)); +} + +void QDataStream_SetFloatingPointPrecision(QtObjectPtr ptr, int precision){ + static_cast(ptr)->setFloatingPointPrecision(static_cast(precision)); +} + +void QDataStream_SetStatus(QtObjectPtr ptr, int status){ + static_cast(ptr)->setStatus(static_cast(status)); +} + +void QDataStream_SetVersion(QtObjectPtr ptr, int v){ + static_cast(ptr)->setVersion(v); +} + +int QDataStream_SkipRawData(QtObjectPtr ptr, int len){ + return static_cast(ptr)->skipRawData(len); +} + +int QDataStream_Status(QtObjectPtr ptr){ + return static_cast(ptr)->status(); +} + +int QDataStream_Version(QtObjectPtr ptr){ + return static_cast(ptr)->version(); +} + +int QDataStream_WriteRawData(QtObjectPtr ptr, char* s, int len){ + return static_cast(ptr)->writeRawData(const_cast(s), len); +} + +void QDataStream_DestroyQDataStream(QtObjectPtr ptr){ + static_cast(ptr)->~QDataStream(); +} + diff --git a/core/qdatastream.go b/core/qdatastream.go new file mode 100755 index 00000000..7e18f6b4 --- /dev/null +++ b/core/qdatastream.go @@ -0,0 +1,216 @@ +package core + +//#include "qdatastream.h" +import "C" +import ( + "unsafe" +) + +type QDataStream struct { + ptr unsafe.Pointer +} + +type QDataStreamITF interface { + QDataStreamPTR() *QDataStream +} + +func (p *QDataStream) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDataStream) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDataStream(ptr QDataStreamITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDataStreamPTR().Pointer() + } + return nil +} + +func QDataStreamFromPointer(ptr unsafe.Pointer) *QDataStream { + var n = new(QDataStream) + n.SetPointer(ptr) + return n +} + +func (ptr *QDataStream) QDataStreamPTR() *QDataStream { + return ptr +} + +//QDataStream::ByteOrder +type QDataStream__ByteOrder int + +var ( + QDataStream__BigEndian = QDataStream__ByteOrder(QSysInfo__BigEndian) + QDataStream__LittleEndian = QDataStream__ByteOrder(QSysInfo__LittleEndian) +) + +//QDataStream::FloatingPointPrecision +type QDataStream__FloatingPointPrecision int + +var ( + QDataStream__SinglePrecision = QDataStream__FloatingPointPrecision(0) + QDataStream__DoublePrecision = QDataStream__FloatingPointPrecision(1) +) + +//QDataStream::Status +type QDataStream__Status int + +var ( + QDataStream__Ok = QDataStream__Status(0) + QDataStream__ReadPastEnd = QDataStream__Status(1) + QDataStream__ReadCorruptData = QDataStream__Status(2) + QDataStream__WriteFailed = QDataStream__Status(3) +) + +//QDataStream::Version +type QDataStream__Version int + +var ( + QDataStream__Qt_1_0 = QDataStream__Version(1) + QDataStream__Qt_2_0 = QDataStream__Version(2) + QDataStream__Qt_2_1 = QDataStream__Version(3) + QDataStream__Qt_3_0 = QDataStream__Version(4) + QDataStream__Qt_3_1 = QDataStream__Version(5) + QDataStream__Qt_3_3 = QDataStream__Version(6) + QDataStream__Qt_4_0 = QDataStream__Version(7) + QDataStream__Qt_4_1 = QDataStream__Version(QDataStream__Qt_4_0) + QDataStream__Qt_4_2 = QDataStream__Version(8) + QDataStream__Qt_4_3 = QDataStream__Version(9) + QDataStream__Qt_4_4 = QDataStream__Version(10) + QDataStream__Qt_4_5 = QDataStream__Version(11) + QDataStream__Qt_4_6 = QDataStream__Version(12) + QDataStream__Qt_4_7 = QDataStream__Version(QDataStream__Qt_4_6) + QDataStream__Qt_4_8 = QDataStream__Version(QDataStream__Qt_4_7) + QDataStream__Qt_4_9 = QDataStream__Version(QDataStream__Qt_4_8) + QDataStream__Qt_5_0 = QDataStream__Version(13) + QDataStream__Qt_5_1 = QDataStream__Version(14) + QDataStream__Qt_5_2 = QDataStream__Version(15) + QDataStream__Qt_5_3 = QDataStream__Version(QDataStream__Qt_5_2) + QDataStream__Qt_5_4 = QDataStream__Version(16) + QDataStream__Qt_5_5 = QDataStream__Version(QDataStream__Qt_5_4) + QDataStream__Qt_DefaultCompiledVersion = QDataStream__Version(QDataStream__Qt_5_5) +) + +func NewQDataStream3(a QByteArrayITF, mode QIODevice__OpenModeFlag) *QDataStream { + return QDataStreamFromPointer(unsafe.Pointer(C.QDataStream_NewQDataStream3(C.QtObjectPtr(PointerFromQByteArray(a)), C.int(mode)))) +} + +func (ptr *QDataStream) AtEnd() bool { + if ptr.Pointer() != nil { + return C.QDataStream_AtEnd(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func NewQDataStream() *QDataStream { + return QDataStreamFromPointer(unsafe.Pointer(C.QDataStream_NewQDataStream())) +} + +func NewQDataStream2(d QIODeviceITF) *QDataStream { + return QDataStreamFromPointer(unsafe.Pointer(C.QDataStream_NewQDataStream2(C.QtObjectPtr(PointerFromQIODevice(d))))) +} + +func NewQDataStream4(a QByteArrayITF) *QDataStream { + return QDataStreamFromPointer(unsafe.Pointer(C.QDataStream_NewQDataStream4(C.QtObjectPtr(PointerFromQByteArray(a))))) +} + +func (ptr *QDataStream) ByteOrder() QDataStream__ByteOrder { + if ptr.Pointer() != nil { + return QDataStream__ByteOrder(C.QDataStream_ByteOrder(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDataStream) Device() *QIODevice { + if ptr.Pointer() != nil { + return QIODeviceFromPointer(unsafe.Pointer(C.QDataStream_Device(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QDataStream) FloatingPointPrecision() QDataStream__FloatingPointPrecision { + if ptr.Pointer() != nil { + return QDataStream__FloatingPointPrecision(C.QDataStream_FloatingPointPrecision(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDataStream) ReadRawData(s string, len int) int { + if ptr.Pointer() != nil { + return int(C.QDataStream_ReadRawData(C.QtObjectPtr(ptr.Pointer()), C.CString(s), C.int(len))) + } + return 0 +} + +func (ptr *QDataStream) ResetStatus() { + if ptr.Pointer() != nil { + C.QDataStream_ResetStatus(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDataStream) SetByteOrder(bo QDataStream__ByteOrder) { + if ptr.Pointer() != nil { + C.QDataStream_SetByteOrder(C.QtObjectPtr(ptr.Pointer()), C.int(bo)) + } +} + +func (ptr *QDataStream) SetDevice(d QIODeviceITF) { + if ptr.Pointer() != nil { + C.QDataStream_SetDevice(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQIODevice(d))) + } +} + +func (ptr *QDataStream) SetFloatingPointPrecision(precision QDataStream__FloatingPointPrecision) { + if ptr.Pointer() != nil { + C.QDataStream_SetFloatingPointPrecision(C.QtObjectPtr(ptr.Pointer()), C.int(precision)) + } +} + +func (ptr *QDataStream) SetStatus(status QDataStream__Status) { + if ptr.Pointer() != nil { + C.QDataStream_SetStatus(C.QtObjectPtr(ptr.Pointer()), C.int(status)) + } +} + +func (ptr *QDataStream) SetVersion(v int) { + if ptr.Pointer() != nil { + C.QDataStream_SetVersion(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QDataStream) SkipRawData(len int) int { + if ptr.Pointer() != nil { + return int(C.QDataStream_SkipRawData(C.QtObjectPtr(ptr.Pointer()), C.int(len))) + } + return 0 +} + +func (ptr *QDataStream) Status() QDataStream__Status { + if ptr.Pointer() != nil { + return QDataStream__Status(C.QDataStream_Status(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDataStream) Version() int { + if ptr.Pointer() != nil { + return int(C.QDataStream_Version(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDataStream) WriteRawData(s string, len int) int { + if ptr.Pointer() != nil { + return int(C.QDataStream_WriteRawData(C.QtObjectPtr(ptr.Pointer()), C.CString(s), C.int(len))) + } + return 0 +} + +func (ptr *QDataStream) DestroyQDataStream() { + if ptr.Pointer() != nil { + C.QDataStream_DestroyQDataStream(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qdatastream.h b/core/qdatastream.h new file mode 100755 index 00000000..3e94b7a9 --- /dev/null +++ b/core/qdatastream.h @@ -0,0 +1,29 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDataStream_NewQDataStream3(QtObjectPtr a, int mode); +int QDataStream_AtEnd(QtObjectPtr ptr); +QtObjectPtr QDataStream_NewQDataStream(); +QtObjectPtr QDataStream_NewQDataStream2(QtObjectPtr d); +QtObjectPtr QDataStream_NewQDataStream4(QtObjectPtr a); +int QDataStream_ByteOrder(QtObjectPtr ptr); +QtObjectPtr QDataStream_Device(QtObjectPtr ptr); +int QDataStream_FloatingPointPrecision(QtObjectPtr ptr); +int QDataStream_ReadRawData(QtObjectPtr ptr, char* s, int len); +void QDataStream_ResetStatus(QtObjectPtr ptr); +void QDataStream_SetByteOrder(QtObjectPtr ptr, int bo); +void QDataStream_SetDevice(QtObjectPtr ptr, QtObjectPtr d); +void QDataStream_SetFloatingPointPrecision(QtObjectPtr ptr, int precision); +void QDataStream_SetStatus(QtObjectPtr ptr, int status); +void QDataStream_SetVersion(QtObjectPtr ptr, int v); +int QDataStream_SkipRawData(QtObjectPtr ptr, int len); +int QDataStream_Status(QtObjectPtr ptr); +int QDataStream_Version(QtObjectPtr ptr); +int QDataStream_WriteRawData(QtObjectPtr ptr, char* s, int len); +void QDataStream_DestroyQDataStream(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qdate.cpp b/core/qdate.cpp new file mode 100755 index 00000000..a9763feb --- /dev/null +++ b/core/qdate.cpp @@ -0,0 +1,100 @@ +#include "qdate.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDate: public QDate { +public: +}; + +int QDate_QDate_IsLeapYear(int year){ + return QDate::isLeapYear(year); +} + +char* QDate_ToString2(QtObjectPtr ptr, int format){ + return static_cast(ptr)->toString(static_cast(format)).toUtf8().data(); +} + +QtObjectPtr QDate_NewQDate(){ + return new QDate(); +} + +QtObjectPtr QDate_NewQDate3(int y, int m, int d){ + return new QDate(y, m, d); +} + +int QDate_Day(QtObjectPtr ptr){ + return static_cast(ptr)->day(); +} + +int QDate_DayOfWeek(QtObjectPtr ptr){ + return static_cast(ptr)->dayOfWeek(); +} + +int QDate_DayOfYear(QtObjectPtr ptr){ + return static_cast(ptr)->dayOfYear(); +} + +int QDate_DaysInMonth(QtObjectPtr ptr){ + return static_cast(ptr)->daysInMonth(); +} + +int QDate_DaysInYear(QtObjectPtr ptr){ + return static_cast(ptr)->daysInYear(); +} + +void QDate_GetDate(QtObjectPtr ptr, int year, int month, int day){ + static_cast(ptr)->getDate(&year, &month, &day); +} + +int QDate_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QDate_QDate_IsValid2(int year, int month, int day){ + return QDate::isValid(year, month, day); +} + +int QDate_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +char* QDate_QDate_LongDayName(int weekday, int ty){ + return QDate::longDayName(weekday, static_cast(ty)).toUtf8().data(); +} + +char* QDate_QDate_LongMonthName(int month, int ty){ + return QDate::longMonthName(month, static_cast(ty)).toUtf8().data(); +} + +int QDate_Month(QtObjectPtr ptr){ + return static_cast(ptr)->month(); +} + +int QDate_SetDate(QtObjectPtr ptr, int year, int month, int day){ + return static_cast(ptr)->setDate(year, month, day); +} + +char* QDate_QDate_ShortDayName(int weekday, int ty){ + return QDate::shortDayName(weekday, static_cast(ty)).toUtf8().data(); +} + +char* QDate_QDate_ShortMonthName(int month, int ty){ + return QDate::shortMonthName(month, static_cast(ty)).toUtf8().data(); +} + +char* QDate_ToString(QtObjectPtr ptr, char* format){ + return static_cast(ptr)->toString(QString(format)).toUtf8().data(); +} + +int QDate_WeekNumber(QtObjectPtr ptr, int yearNumber){ + return static_cast(ptr)->weekNumber(&yearNumber); +} + +int QDate_Year(QtObjectPtr ptr){ + return static_cast(ptr)->year(); +} + diff --git a/core/qdate.go b/core/qdate.go new file mode 100755 index 00000000..90bcc977 --- /dev/null +++ b/core/qdate.go @@ -0,0 +1,177 @@ +package core + +//#include "qdate.h" +import "C" +import ( + "unsafe" +) + +type QDate struct { + ptr unsafe.Pointer +} + +type QDateITF interface { + QDatePTR() *QDate +} + +func (p *QDate) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDate) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDate(ptr QDateITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDatePTR().Pointer() + } + return nil +} + +func QDateFromPointer(ptr unsafe.Pointer) *QDate { + var n = new(QDate) + n.SetPointer(ptr) + return n +} + +func (ptr *QDate) QDatePTR() *QDate { + return ptr +} + +//QDate::MonthNameType +type QDate__MonthNameType int + +var ( + QDate__DateFormat = QDate__MonthNameType(0) + QDate__StandaloneFormat = QDate__MonthNameType(1) +) + +func QDate_IsLeapYear(year int) bool { + return C.QDate_QDate_IsLeapYear(C.int(year)) != 0 +} + +func (ptr *QDate) ToString2(format Qt__DateFormat) string { + if ptr.Pointer() != nil { + return C.GoString(C.QDate_ToString2(C.QtObjectPtr(ptr.Pointer()), C.int(format))) + } + return "" +} + +func NewQDate() *QDate { + return QDateFromPointer(unsafe.Pointer(C.QDate_NewQDate())) +} + +func NewQDate3(y int, m int, d int) *QDate { + return QDateFromPointer(unsafe.Pointer(C.QDate_NewQDate3(C.int(y), C.int(m), C.int(d)))) +} + +func (ptr *QDate) Day() int { + if ptr.Pointer() != nil { + return int(C.QDate_Day(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDate) DayOfWeek() int { + if ptr.Pointer() != nil { + return int(C.QDate_DayOfWeek(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDate) DayOfYear() int { + if ptr.Pointer() != nil { + return int(C.QDate_DayOfYear(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDate) DaysInMonth() int { + if ptr.Pointer() != nil { + return int(C.QDate_DaysInMonth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDate) DaysInYear() int { + if ptr.Pointer() != nil { + return int(C.QDate_DaysInYear(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDate) GetDate(year int, month int, day int) { + if ptr.Pointer() != nil { + C.QDate_GetDate(C.QtObjectPtr(ptr.Pointer()), C.int(year), C.int(month), C.int(day)) + } +} + +func (ptr *QDate) IsNull() bool { + if ptr.Pointer() != nil { + return C.QDate_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func QDate_IsValid2(year int, month int, day int) bool { + return C.QDate_QDate_IsValid2(C.int(year), C.int(month), C.int(day)) != 0 +} + +func (ptr *QDate) IsValid() bool { + if ptr.Pointer() != nil { + return C.QDate_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func QDate_LongDayName(weekday int, ty QDate__MonthNameType) string { + return C.GoString(C.QDate_QDate_LongDayName(C.int(weekday), C.int(ty))) +} + +func QDate_LongMonthName(month int, ty QDate__MonthNameType) string { + return C.GoString(C.QDate_QDate_LongMonthName(C.int(month), C.int(ty))) +} + +func (ptr *QDate) Month() int { + if ptr.Pointer() != nil { + return int(C.QDate_Month(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDate) SetDate(year int, month int, day int) bool { + if ptr.Pointer() != nil { + return C.QDate_SetDate(C.QtObjectPtr(ptr.Pointer()), C.int(year), C.int(month), C.int(day)) != 0 + } + return false +} + +func QDate_ShortDayName(weekday int, ty QDate__MonthNameType) string { + return C.GoString(C.QDate_QDate_ShortDayName(C.int(weekday), C.int(ty))) +} + +func QDate_ShortMonthName(month int, ty QDate__MonthNameType) string { + return C.GoString(C.QDate_QDate_ShortMonthName(C.int(month), C.int(ty))) +} + +func (ptr *QDate) ToString(format string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QDate_ToString(C.QtObjectPtr(ptr.Pointer()), C.CString(format))) + } + return "" +} + +func (ptr *QDate) WeekNumber(yearNumber int) int { + if ptr.Pointer() != nil { + return int(C.QDate_WeekNumber(C.QtObjectPtr(ptr.Pointer()), C.int(yearNumber))) + } + return 0 +} + +func (ptr *QDate) Year() int { + if ptr.Pointer() != nil { + return int(C.QDate_Year(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/core/qdate.h b/core/qdate.h new file mode 100755 index 00000000..32cb90f4 --- /dev/null +++ b/core/qdate.h @@ -0,0 +1,31 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QDate_QDate_IsLeapYear(int year); +char* QDate_ToString2(QtObjectPtr ptr, int format); +QtObjectPtr QDate_NewQDate(); +QtObjectPtr QDate_NewQDate3(int y, int m, int d); +int QDate_Day(QtObjectPtr ptr); +int QDate_DayOfWeek(QtObjectPtr ptr); +int QDate_DayOfYear(QtObjectPtr ptr); +int QDate_DaysInMonth(QtObjectPtr ptr); +int QDate_DaysInYear(QtObjectPtr ptr); +void QDate_GetDate(QtObjectPtr ptr, int year, int month, int day); +int QDate_IsNull(QtObjectPtr ptr); +int QDate_QDate_IsValid2(int year, int month, int day); +int QDate_IsValid(QtObjectPtr ptr); +char* QDate_QDate_LongDayName(int weekday, int ty); +char* QDate_QDate_LongMonthName(int month, int ty); +int QDate_Month(QtObjectPtr ptr); +int QDate_SetDate(QtObjectPtr ptr, int year, int month, int day); +char* QDate_QDate_ShortDayName(int weekday, int ty); +char* QDate_QDate_ShortMonthName(int month, int ty); +char* QDate_ToString(QtObjectPtr ptr, char* format); +int QDate_WeekNumber(QtObjectPtr ptr, int yearNumber); +int QDate_Year(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qdatetime.cpp b/core/qdatetime.cpp new file mode 100755 index 00000000..e6a451aa --- /dev/null +++ b/core/qdatetime.cpp @@ -0,0 +1,99 @@ +#include "qdatetime.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDateTime: public QDateTime { +public: +}; + +char* QDateTime_ToString2(QtObjectPtr ptr, int format){ + return static_cast(ptr)->toString(static_cast(format)).toUtf8().data(); +} + +QtObjectPtr QDateTime_NewQDateTime(){ + return new QDateTime(); +} + +QtObjectPtr QDateTime_NewQDateTime2(QtObjectPtr date){ + return new QDateTime(*static_cast(date)); +} + +QtObjectPtr QDateTime_NewQDateTime3(QtObjectPtr date, QtObjectPtr time, int spec){ + return new QDateTime(*static_cast(date), *static_cast(time), static_cast(spec)); +} + +QtObjectPtr QDateTime_NewQDateTime4(QtObjectPtr date, QtObjectPtr time, int spec, int offsetSeconds){ + return new QDateTime(*static_cast(date), *static_cast(time), static_cast(spec), offsetSeconds); +} + +QtObjectPtr QDateTime_NewQDateTime5(QtObjectPtr date, QtObjectPtr time, QtObjectPtr timeZone){ + return new QDateTime(*static_cast(date), *static_cast(time), *static_cast(timeZone)); +} + +QtObjectPtr QDateTime_NewQDateTime6(QtObjectPtr other){ + return new QDateTime(*static_cast(other)); +} + +int QDateTime_IsDaylightTime(QtObjectPtr ptr){ + return static_cast(ptr)->isDaylightTime(); +} + +int QDateTime_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QDateTime_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QDateTime_OffsetFromUtc(QtObjectPtr ptr){ + return static_cast(ptr)->offsetFromUtc(); +} + +void QDateTime_SetDate(QtObjectPtr ptr, QtObjectPtr date){ + static_cast(ptr)->setDate(*static_cast(date)); +} + +void QDateTime_SetOffsetFromUtc(QtObjectPtr ptr, int offsetSeconds){ + static_cast(ptr)->setOffsetFromUtc(offsetSeconds); +} + +void QDateTime_SetTime(QtObjectPtr ptr, QtObjectPtr time){ + static_cast(ptr)->setTime(*static_cast(time)); +} + +void QDateTime_SetTimeSpec(QtObjectPtr ptr, int spec){ + static_cast(ptr)->setTimeSpec(static_cast(spec)); +} + +void QDateTime_SetTimeZone(QtObjectPtr ptr, QtObjectPtr toZone){ + static_cast(ptr)->setTimeZone(*static_cast(toZone)); +} + +void QDateTime_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +int QDateTime_TimeSpec(QtObjectPtr ptr){ + return static_cast(ptr)->timeSpec(); +} + +char* QDateTime_TimeZoneAbbreviation(QtObjectPtr ptr){ + return static_cast(ptr)->timeZoneAbbreviation().toUtf8().data(); +} + +char* QDateTime_ToString(QtObjectPtr ptr, char* format){ + return static_cast(ptr)->toString(QString(format)).toUtf8().data(); +} + +void QDateTime_DestroyQDateTime(QtObjectPtr ptr){ + static_cast(ptr)->~QDateTime(); +} + diff --git a/core/qdatetime.go b/core/qdatetime.go new file mode 100755 index 00000000..6b17973c --- /dev/null +++ b/core/qdatetime.go @@ -0,0 +1,162 @@ +package core + +//#include "qdatetime.h" +import "C" +import ( + "unsafe" +) + +type QDateTime struct { + ptr unsafe.Pointer +} + +type QDateTimeITF interface { + QDateTimePTR() *QDateTime +} + +func (p *QDateTime) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDateTime) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDateTime(ptr QDateTimeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDateTimePTR().Pointer() + } + return nil +} + +func QDateTimeFromPointer(ptr unsafe.Pointer) *QDateTime { + var n = new(QDateTime) + n.SetPointer(ptr) + return n +} + +func (ptr *QDateTime) QDateTimePTR() *QDateTime { + return ptr +} + +func (ptr *QDateTime) ToString2(format Qt__DateFormat) string { + if ptr.Pointer() != nil { + return C.GoString(C.QDateTime_ToString2(C.QtObjectPtr(ptr.Pointer()), C.int(format))) + } + return "" +} + +func NewQDateTime() *QDateTime { + return QDateTimeFromPointer(unsafe.Pointer(C.QDateTime_NewQDateTime())) +} + +func NewQDateTime2(date QDateITF) *QDateTime { + return QDateTimeFromPointer(unsafe.Pointer(C.QDateTime_NewQDateTime2(C.QtObjectPtr(PointerFromQDate(date))))) +} + +func NewQDateTime3(date QDateITF, time QTimeITF, spec Qt__TimeSpec) *QDateTime { + return QDateTimeFromPointer(unsafe.Pointer(C.QDateTime_NewQDateTime3(C.QtObjectPtr(PointerFromQDate(date)), C.QtObjectPtr(PointerFromQTime(time)), C.int(spec)))) +} + +func NewQDateTime4(date QDateITF, time QTimeITF, spec Qt__TimeSpec, offsetSeconds int) *QDateTime { + return QDateTimeFromPointer(unsafe.Pointer(C.QDateTime_NewQDateTime4(C.QtObjectPtr(PointerFromQDate(date)), C.QtObjectPtr(PointerFromQTime(time)), C.int(spec), C.int(offsetSeconds)))) +} + +func NewQDateTime5(date QDateITF, time QTimeITF, timeZone QTimeZoneITF) *QDateTime { + return QDateTimeFromPointer(unsafe.Pointer(C.QDateTime_NewQDateTime5(C.QtObjectPtr(PointerFromQDate(date)), C.QtObjectPtr(PointerFromQTime(time)), C.QtObjectPtr(PointerFromQTimeZone(timeZone))))) +} + +func NewQDateTime6(other QDateTimeITF) *QDateTime { + return QDateTimeFromPointer(unsafe.Pointer(C.QDateTime_NewQDateTime6(C.QtObjectPtr(PointerFromQDateTime(other))))) +} + +func (ptr *QDateTime) IsDaylightTime() bool { + if ptr.Pointer() != nil { + return C.QDateTime_IsDaylightTime(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDateTime) IsNull() bool { + if ptr.Pointer() != nil { + return C.QDateTime_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDateTime) IsValid() bool { + if ptr.Pointer() != nil { + return C.QDateTime_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDateTime) OffsetFromUtc() int { + if ptr.Pointer() != nil { + return int(C.QDateTime_OffsetFromUtc(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDateTime) SetDate(date QDateITF) { + if ptr.Pointer() != nil { + C.QDateTime_SetDate(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDate(date))) + } +} + +func (ptr *QDateTime) SetOffsetFromUtc(offsetSeconds int) { + if ptr.Pointer() != nil { + C.QDateTime_SetOffsetFromUtc(C.QtObjectPtr(ptr.Pointer()), C.int(offsetSeconds)) + } +} + +func (ptr *QDateTime) SetTime(time QTimeITF) { + if ptr.Pointer() != nil { + C.QDateTime_SetTime(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTime(time))) + } +} + +func (ptr *QDateTime) SetTimeSpec(spec Qt__TimeSpec) { + if ptr.Pointer() != nil { + C.QDateTime_SetTimeSpec(C.QtObjectPtr(ptr.Pointer()), C.int(spec)) + } +} + +func (ptr *QDateTime) SetTimeZone(toZone QTimeZoneITF) { + if ptr.Pointer() != nil { + C.QDateTime_SetTimeZone(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTimeZone(toZone))) + } +} + +func (ptr *QDateTime) Swap(other QDateTimeITF) { + if ptr.Pointer() != nil { + C.QDateTime_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDateTime(other))) + } +} + +func (ptr *QDateTime) TimeSpec() Qt__TimeSpec { + if ptr.Pointer() != nil { + return Qt__TimeSpec(C.QDateTime_TimeSpec(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDateTime) TimeZoneAbbreviation() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDateTime_TimeZoneAbbreviation(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDateTime) ToString(format string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QDateTime_ToString(C.QtObjectPtr(ptr.Pointer()), C.CString(format))) + } + return "" +} + +func (ptr *QDateTime) DestroyQDateTime() { + if ptr.Pointer() != nil { + C.QDateTime_DestroyQDateTime(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qdatetime.h b/core/qdatetime.h new file mode 100755 index 00000000..1d503d73 --- /dev/null +++ b/core/qdatetime.h @@ -0,0 +1,30 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QDateTime_ToString2(QtObjectPtr ptr, int format); +QtObjectPtr QDateTime_NewQDateTime(); +QtObjectPtr QDateTime_NewQDateTime2(QtObjectPtr date); +QtObjectPtr QDateTime_NewQDateTime3(QtObjectPtr date, QtObjectPtr time, int spec); +QtObjectPtr QDateTime_NewQDateTime4(QtObjectPtr date, QtObjectPtr time, int spec, int offsetSeconds); +QtObjectPtr QDateTime_NewQDateTime5(QtObjectPtr date, QtObjectPtr time, QtObjectPtr timeZone); +QtObjectPtr QDateTime_NewQDateTime6(QtObjectPtr other); +int QDateTime_IsDaylightTime(QtObjectPtr ptr); +int QDateTime_IsNull(QtObjectPtr ptr); +int QDateTime_IsValid(QtObjectPtr ptr); +int QDateTime_OffsetFromUtc(QtObjectPtr ptr); +void QDateTime_SetDate(QtObjectPtr ptr, QtObjectPtr date); +void QDateTime_SetOffsetFromUtc(QtObjectPtr ptr, int offsetSeconds); +void QDateTime_SetTime(QtObjectPtr ptr, QtObjectPtr time); +void QDateTime_SetTimeSpec(QtObjectPtr ptr, int spec); +void QDateTime_SetTimeZone(QtObjectPtr ptr, QtObjectPtr toZone); +void QDateTime_Swap(QtObjectPtr ptr, QtObjectPtr other); +int QDateTime_TimeSpec(QtObjectPtr ptr); +char* QDateTime_TimeZoneAbbreviation(QtObjectPtr ptr); +char* QDateTime_ToString(QtObjectPtr ptr, char* format); +void QDateTime_DestroyQDateTime(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qdebug.cpp b/core/qdebug.cpp new file mode 100755 index 00000000..a53abca9 --- /dev/null +++ b/core/qdebug.cpp @@ -0,0 +1,8 @@ +#include "qdebug.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qdebug.go b/core/qdebug.go new file mode 100755 index 00000000..5e3716ee --- /dev/null +++ b/core/qdebug.go @@ -0,0 +1,40 @@ +package core + +//#include "qdebug.h" +import "C" +import ( + "unsafe" +) + +type QDebug struct { + ptr unsafe.Pointer +} + +type QDebugITF interface { + QDebugPTR() *QDebug +} + +func (p *QDebug) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDebug) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDebug(ptr QDebugITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDebugPTR().Pointer() + } + return nil +} + +func QDebugFromPointer(ptr unsafe.Pointer) *QDebug { + var n = new(QDebug) + n.SetPointer(ptr) + return n +} + +func (ptr *QDebug) QDebugPTR() *QDebug { + return ptr +} diff --git a/core/qdebug.h b/core/qdebug.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qdebug.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qdebugstatesaver.cpp b/core/qdebugstatesaver.cpp new file mode 100755 index 00000000..d3e938d6 --- /dev/null +++ b/core/qdebugstatesaver.cpp @@ -0,0 +1,21 @@ +#include "qdebugstatesaver.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDebugStateSaver: public QDebugStateSaver { +public: +}; + +QtObjectPtr QDebugStateSaver_NewQDebugStateSaver(QtObjectPtr dbg){ + return new QDebugStateSaver(*static_cast(dbg)); +} + +void QDebugStateSaver_DestroyQDebugStateSaver(QtObjectPtr ptr){ + static_cast(ptr)->~QDebugStateSaver(); +} + diff --git a/core/qdebugstatesaver.go b/core/qdebugstatesaver.go new file mode 100755 index 00000000..21e4ac6a --- /dev/null +++ b/core/qdebugstatesaver.go @@ -0,0 +1,50 @@ +package core + +//#include "qdebugstatesaver.h" +import "C" +import ( + "unsafe" +) + +type QDebugStateSaver struct { + ptr unsafe.Pointer +} + +type QDebugStateSaverITF interface { + QDebugStateSaverPTR() *QDebugStateSaver +} + +func (p *QDebugStateSaver) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDebugStateSaver) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDebugStateSaver(ptr QDebugStateSaverITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDebugStateSaverPTR().Pointer() + } + return nil +} + +func QDebugStateSaverFromPointer(ptr unsafe.Pointer) *QDebugStateSaver { + var n = new(QDebugStateSaver) + n.SetPointer(ptr) + return n +} + +func (ptr *QDebugStateSaver) QDebugStateSaverPTR() *QDebugStateSaver { + return ptr +} + +func NewQDebugStateSaver(dbg QDebugITF) *QDebugStateSaver { + return QDebugStateSaverFromPointer(unsafe.Pointer(C.QDebugStateSaver_NewQDebugStateSaver(C.QtObjectPtr(PointerFromQDebug(dbg))))) +} + +func (ptr *QDebugStateSaver) DestroyQDebugStateSaver() { + if ptr.Pointer() != nil { + C.QDebugStateSaver_DestroyQDebugStateSaver(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qdebugstatesaver.h b/core/qdebugstatesaver.h new file mode 100755 index 00000000..40ac3604 --- /dev/null +++ b/core/qdebugstatesaver.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDebugStateSaver_NewQDebugStateSaver(QtObjectPtr dbg); +void QDebugStateSaver_DestroyQDebugStateSaver(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qdir.cpp b/core/qdir.cpp new file mode 100755 index 00000000..5557dace --- /dev/null +++ b/core/qdir.cpp @@ -0,0 +1,220 @@ +#include "qdir.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDir: public QDir { +public: +}; + +QtObjectPtr QDir_NewQDir(QtObjectPtr dir){ + return new QDir(*static_cast(dir)); +} + +QtObjectPtr QDir_NewQDir2(char* path){ + return new QDir(QString(path)); +} + +QtObjectPtr QDir_NewQDir3(char* path, char* nameFilter, int sort, int filters){ + return new QDir(QString(path), QString(nameFilter), static_cast(sort), static_cast(filters)); +} + +char* QDir_AbsoluteFilePath(QtObjectPtr ptr, char* fileName){ + return static_cast(ptr)->absoluteFilePath(QString(fileName)).toUtf8().data(); +} + +char* QDir_AbsolutePath(QtObjectPtr ptr){ + return static_cast(ptr)->absolutePath().toUtf8().data(); +} + +void QDir_QDir_AddSearchPath(char* prefix, char* path){ + QDir::addSearchPath(QString(prefix), QString(path)); +} + +char* QDir_CanonicalPath(QtObjectPtr ptr){ + return static_cast(ptr)->canonicalPath().toUtf8().data(); +} + +int QDir_Cd(QtObjectPtr ptr, char* dirName){ + return static_cast(ptr)->cd(QString(dirName)); +} + +int QDir_CdUp(QtObjectPtr ptr){ + return static_cast(ptr)->cdUp(); +} + +char* QDir_QDir_CleanPath(char* path){ + return QDir::cleanPath(QString(path)).toUtf8().data(); +} + +char* QDir_QDir_CurrentPath(){ + return QDir::currentPath().toUtf8().data(); +} + +char* QDir_DirName(QtObjectPtr ptr){ + return static_cast(ptr)->dirName().toUtf8().data(); +} + +char* QDir_EntryList2(QtObjectPtr ptr, int filters, int sort){ + return static_cast(ptr)->entryList(static_cast(filters), static_cast(sort)).join("|").toUtf8().data(); +} + +char* QDir_EntryList(QtObjectPtr ptr, char* nameFilters, int filters, int sort){ + return static_cast(ptr)->entryList(QString(nameFilters).split("|", QString::SkipEmptyParts), static_cast(filters), static_cast(sort)).join("|").toUtf8().data(); +} + +int QDir_Exists2(QtObjectPtr ptr){ + return static_cast(ptr)->exists(); +} + +int QDir_Exists(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->exists(QString(name)); +} + +char* QDir_FilePath(QtObjectPtr ptr, char* fileName){ + return static_cast(ptr)->filePath(QString(fileName)).toUtf8().data(); +} + +int QDir_Filter(QtObjectPtr ptr){ + return static_cast(ptr)->filter(); +} + +char* QDir_QDir_FromNativeSeparators(char* pathName){ + return QDir::fromNativeSeparators(QString(pathName)).toUtf8().data(); +} + +char* QDir_QDir_HomePath(){ + return QDir::homePath().toUtf8().data(); +} + +int QDir_IsAbsolute(QtObjectPtr ptr){ + return static_cast(ptr)->isAbsolute(); +} + +int QDir_QDir_IsAbsolutePath(char* path){ + return QDir::isAbsolutePath(QString(path)); +} + +int QDir_IsReadable(QtObjectPtr ptr){ + return static_cast(ptr)->isReadable(); +} + +int QDir_IsRelative(QtObjectPtr ptr){ + return static_cast(ptr)->isRelative(); +} + +int QDir_QDir_IsRelativePath(char* path){ + return QDir::isRelativePath(QString(path)); +} + +int QDir_IsRoot(QtObjectPtr ptr){ + return static_cast(ptr)->isRoot(); +} + +int QDir_MakeAbsolute(QtObjectPtr ptr){ + return static_cast(ptr)->makeAbsolute(); +} + +int QDir_QDir_Match(char* filter, char* fileName){ + return QDir::match(QString(filter), QString(fileName)); +} + +int QDir_QDir_Match2(char* filters, char* fileName){ + return QDir::match(QString(filters).split("|", QString::SkipEmptyParts), QString(fileName)); +} + +int QDir_Mkdir(QtObjectPtr ptr, char* dirName){ + return static_cast(ptr)->mkdir(QString(dirName)); +} + +int QDir_Mkpath(QtObjectPtr ptr, char* dirPath){ + return static_cast(ptr)->mkpath(QString(dirPath)); +} + +char* QDir_NameFilters(QtObjectPtr ptr){ + return static_cast(ptr)->nameFilters().join("|").toUtf8().data(); +} + +char* QDir_Path(QtObjectPtr ptr){ + return static_cast(ptr)->path().toUtf8().data(); +} + +void QDir_Refresh(QtObjectPtr ptr){ + static_cast(ptr)->refresh(); +} + +char* QDir_RelativeFilePath(QtObjectPtr ptr, char* fileName){ + return static_cast(ptr)->relativeFilePath(QString(fileName)).toUtf8().data(); +} + +int QDir_RemoveRecursively(QtObjectPtr ptr){ + return static_cast(ptr)->removeRecursively(); +} + +int QDir_Rename(QtObjectPtr ptr, char* oldName, char* newName){ + return static_cast(ptr)->rename(QString(oldName), QString(newName)); +} + +int QDir_Rmdir(QtObjectPtr ptr, char* dirName){ + return static_cast(ptr)->rmdir(QString(dirName)); +} + +int QDir_Rmpath(QtObjectPtr ptr, char* dirPath){ + return static_cast(ptr)->rmpath(QString(dirPath)); +} + +char* QDir_QDir_RootPath(){ + return QDir::rootPath().toUtf8().data(); +} + +char* QDir_QDir_SearchPaths(char* prefix){ + return QDir::searchPaths(QString(prefix)).join("|").toUtf8().data(); +} + +int QDir_QDir_SetCurrent(char* path){ + return QDir::setCurrent(QString(path)); +} + +void QDir_SetFilter(QtObjectPtr ptr, int filters){ + static_cast(ptr)->setFilter(static_cast(filters)); +} + +void QDir_SetNameFilters(QtObjectPtr ptr, char* nameFilters){ + static_cast(ptr)->setNameFilters(QString(nameFilters).split("|", QString::SkipEmptyParts)); +} + +void QDir_SetPath(QtObjectPtr ptr, char* path){ + static_cast(ptr)->setPath(QString(path)); +} + +void QDir_QDir_SetSearchPaths(char* prefix, char* searchPaths){ + QDir::setSearchPaths(QString(prefix), QString(searchPaths).split("|", QString::SkipEmptyParts)); +} + +void QDir_SetSorting(QtObjectPtr ptr, int sort){ + static_cast(ptr)->setSorting(static_cast(sort)); +} + +int QDir_Sorting(QtObjectPtr ptr){ + return static_cast(ptr)->sorting(); +} + +void QDir_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +char* QDir_QDir_TempPath(){ + return QDir::tempPath().toUtf8().data(); +} + +char* QDir_QDir_ToNativeSeparators(char* pathName){ + return QDir::toNativeSeparators(QString(pathName)).toUtf8().data(); +} + +void QDir_DestroyQDir(QtObjectPtr ptr){ + static_cast(ptr)->~QDir(); +} + diff --git a/core/qdir.go b/core/qdir.go new file mode 100755 index 00000000..299b616c --- /dev/null +++ b/core/qdir.go @@ -0,0 +1,388 @@ +package core + +//#include "qdir.h" +import "C" +import ( + "strings" + "unsafe" +) + +type QDir struct { + ptr unsafe.Pointer +} + +type QDirITF interface { + QDirPTR() *QDir +} + +func (p *QDir) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDir) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDir(ptr QDirITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDirPTR().Pointer() + } + return nil +} + +func QDirFromPointer(ptr unsafe.Pointer) *QDir { + var n = new(QDir) + n.SetPointer(ptr) + return n +} + +func (ptr *QDir) QDirPTR() *QDir { + return ptr +} + +//QDir::Filter +type QDir__Filter int + +var ( + QDir__Dirs = QDir__Filter(0x001) + QDir__Files = QDir__Filter(0x002) + QDir__Drives = QDir__Filter(0x004) + QDir__NoSymLinks = QDir__Filter(0x008) + QDir__AllEntries = QDir__Filter(QDir__Dirs | QDir__Files | QDir__Drives) + QDir__TypeMask = QDir__Filter(0x00f) + QDir__Readable = QDir__Filter(0x010) + QDir__Writable = QDir__Filter(0x020) + QDir__Executable = QDir__Filter(0x040) + QDir__PermissionMask = QDir__Filter(0x070) + QDir__Modified = QDir__Filter(0x080) + QDir__Hidden = QDir__Filter(0x100) + QDir__System = QDir__Filter(0x200) + QDir__AccessMask = QDir__Filter(0x3F0) + QDir__AllDirs = QDir__Filter(0x400) + QDir__CaseSensitive = QDir__Filter(0x800) + QDir__NoDot = QDir__Filter(0x2000) + QDir__NoDotDot = QDir__Filter(0x4000) + QDir__NoDotAndDotDot = QDir__Filter(QDir__NoDot | QDir__NoDotDot) + QDir__NoFilter = QDir__Filter(-1) +) + +//QDir::SortFlag +type QDir__SortFlag int + +var ( + QDir__Name = QDir__SortFlag(0x00) + QDir__Time = QDir__SortFlag(0x01) + QDir__Size = QDir__SortFlag(0x02) + QDir__Unsorted = QDir__SortFlag(0x03) + QDir__SortByMask = QDir__SortFlag(0x03) + QDir__DirsFirst = QDir__SortFlag(0x04) + QDir__Reversed = QDir__SortFlag(0x08) + QDir__IgnoreCase = QDir__SortFlag(0x10) + QDir__DirsLast = QDir__SortFlag(0x20) + QDir__LocaleAware = QDir__SortFlag(0x40) + QDir__Type = QDir__SortFlag(0x80) + QDir__NoSort = QDir__SortFlag(-1) +) + +func NewQDir(dir QDirITF) *QDir { + return QDirFromPointer(unsafe.Pointer(C.QDir_NewQDir(C.QtObjectPtr(PointerFromQDir(dir))))) +} + +func NewQDir2(path string) *QDir { + return QDirFromPointer(unsafe.Pointer(C.QDir_NewQDir2(C.CString(path)))) +} + +func NewQDir3(path string, nameFilter string, sort QDir__SortFlag, filters QDir__Filter) *QDir { + return QDirFromPointer(unsafe.Pointer(C.QDir_NewQDir3(C.CString(path), C.CString(nameFilter), C.int(sort), C.int(filters)))) +} + +func (ptr *QDir) AbsoluteFilePath(fileName string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QDir_AbsoluteFilePath(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName))) + } + return "" +} + +func (ptr *QDir) AbsolutePath() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDir_AbsolutePath(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func QDir_AddSearchPath(prefix string, path string) { + C.QDir_QDir_AddSearchPath(C.CString(prefix), C.CString(path)) +} + +func (ptr *QDir) CanonicalPath() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDir_CanonicalPath(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDir) Cd(dirName string) bool { + if ptr.Pointer() != nil { + return C.QDir_Cd(C.QtObjectPtr(ptr.Pointer()), C.CString(dirName)) != 0 + } + return false +} + +func (ptr *QDir) CdUp() bool { + if ptr.Pointer() != nil { + return C.QDir_CdUp(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func QDir_CleanPath(path string) string { + return C.GoString(C.QDir_QDir_CleanPath(C.CString(path))) +} + +func QDir_CurrentPath() string { + return C.GoString(C.QDir_QDir_CurrentPath()) +} + +func (ptr *QDir) DirName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDir_DirName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDir) EntryList2(filters QDir__Filter, sort QDir__SortFlag) []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QDir_EntryList2(C.QtObjectPtr(ptr.Pointer()), C.int(filters), C.int(sort))), "|") + } + return make([]string, 0) +} + +func (ptr *QDir) EntryList(nameFilters []string, filters QDir__Filter, sort QDir__SortFlag) []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QDir_EntryList(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(nameFilters, "|")), C.int(filters), C.int(sort))), "|") + } + return make([]string, 0) +} + +func (ptr *QDir) Exists2() bool { + if ptr.Pointer() != nil { + return C.QDir_Exists2(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDir) Exists(name string) bool { + if ptr.Pointer() != nil { + return C.QDir_Exists(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) != 0 + } + return false +} + +func (ptr *QDir) FilePath(fileName string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QDir_FilePath(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName))) + } + return "" +} + +func (ptr *QDir) Filter() QDir__Filter { + if ptr.Pointer() != nil { + return QDir__Filter(C.QDir_Filter(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QDir_FromNativeSeparators(pathName string) string { + return C.GoString(C.QDir_QDir_FromNativeSeparators(C.CString(pathName))) +} + +func QDir_HomePath() string { + return C.GoString(C.QDir_QDir_HomePath()) +} + +func (ptr *QDir) IsAbsolute() bool { + if ptr.Pointer() != nil { + return C.QDir_IsAbsolute(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func QDir_IsAbsolutePath(path string) bool { + return C.QDir_QDir_IsAbsolutePath(C.CString(path)) != 0 +} + +func (ptr *QDir) IsReadable() bool { + if ptr.Pointer() != nil { + return C.QDir_IsReadable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDir) IsRelative() bool { + if ptr.Pointer() != nil { + return C.QDir_IsRelative(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func QDir_IsRelativePath(path string) bool { + return C.QDir_QDir_IsRelativePath(C.CString(path)) != 0 +} + +func (ptr *QDir) IsRoot() bool { + if ptr.Pointer() != nil { + return C.QDir_IsRoot(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDir) MakeAbsolute() bool { + if ptr.Pointer() != nil { + return C.QDir_MakeAbsolute(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func QDir_Match(filter string, fileName string) bool { + return C.QDir_QDir_Match(C.CString(filter), C.CString(fileName)) != 0 +} + +func QDir_Match2(filters []string, fileName string) bool { + return C.QDir_QDir_Match2(C.CString(strings.Join(filters, "|")), C.CString(fileName)) != 0 +} + +func (ptr *QDir) Mkdir(dirName string) bool { + if ptr.Pointer() != nil { + return C.QDir_Mkdir(C.QtObjectPtr(ptr.Pointer()), C.CString(dirName)) != 0 + } + return false +} + +func (ptr *QDir) Mkpath(dirPath string) bool { + if ptr.Pointer() != nil { + return C.QDir_Mkpath(C.QtObjectPtr(ptr.Pointer()), C.CString(dirPath)) != 0 + } + return false +} + +func (ptr *QDir) NameFilters() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QDir_NameFilters(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QDir) Path() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDir_Path(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDir) Refresh() { + if ptr.Pointer() != nil { + C.QDir_Refresh(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDir) RelativeFilePath(fileName string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QDir_RelativeFilePath(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName))) + } + return "" +} + +func (ptr *QDir) RemoveRecursively() bool { + if ptr.Pointer() != nil { + return C.QDir_RemoveRecursively(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDir) Rename(oldName string, newName string) bool { + if ptr.Pointer() != nil { + return C.QDir_Rename(C.QtObjectPtr(ptr.Pointer()), C.CString(oldName), C.CString(newName)) != 0 + } + return false +} + +func (ptr *QDir) Rmdir(dirName string) bool { + if ptr.Pointer() != nil { + return C.QDir_Rmdir(C.QtObjectPtr(ptr.Pointer()), C.CString(dirName)) != 0 + } + return false +} + +func (ptr *QDir) Rmpath(dirPath string) bool { + if ptr.Pointer() != nil { + return C.QDir_Rmpath(C.QtObjectPtr(ptr.Pointer()), C.CString(dirPath)) != 0 + } + return false +} + +func QDir_RootPath() string { + return C.GoString(C.QDir_QDir_RootPath()) +} + +func QDir_SearchPaths(prefix string) []string { + return strings.Split(C.GoString(C.QDir_QDir_SearchPaths(C.CString(prefix))), "|") +} + +func QDir_SetCurrent(path string) bool { + return C.QDir_QDir_SetCurrent(C.CString(path)) != 0 +} + +func (ptr *QDir) SetFilter(filters QDir__Filter) { + if ptr.Pointer() != nil { + C.QDir_SetFilter(C.QtObjectPtr(ptr.Pointer()), C.int(filters)) + } +} + +func (ptr *QDir) SetNameFilters(nameFilters []string) { + if ptr.Pointer() != nil { + C.QDir_SetNameFilters(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(nameFilters, "|"))) + } +} + +func (ptr *QDir) SetPath(path string) { + if ptr.Pointer() != nil { + C.QDir_SetPath(C.QtObjectPtr(ptr.Pointer()), C.CString(path)) + } +} + +func QDir_SetSearchPaths(prefix string, searchPaths []string) { + C.QDir_QDir_SetSearchPaths(C.CString(prefix), C.CString(strings.Join(searchPaths, "|"))) +} + +func (ptr *QDir) SetSorting(sort QDir__SortFlag) { + if ptr.Pointer() != nil { + C.QDir_SetSorting(C.QtObjectPtr(ptr.Pointer()), C.int(sort)) + } +} + +func (ptr *QDir) Sorting() QDir__SortFlag { + if ptr.Pointer() != nil { + return QDir__SortFlag(C.QDir_Sorting(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDir) Swap(other QDirITF) { + if ptr.Pointer() != nil { + C.QDir_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDir(other))) + } +} + +func QDir_TempPath() string { + return C.GoString(C.QDir_QDir_TempPath()) +} + +func QDir_ToNativeSeparators(pathName string) string { + return C.GoString(C.QDir_QDir_ToNativeSeparators(C.CString(pathName))) +} + +func (ptr *QDir) DestroyQDir() { + if ptr.Pointer() != nil { + C.QDir_DestroyQDir(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qdir.h b/core/qdir.h new file mode 100755 index 00000000..bdf48c83 --- /dev/null +++ b/core/qdir.h @@ -0,0 +1,61 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDir_NewQDir(QtObjectPtr dir); +QtObjectPtr QDir_NewQDir2(char* path); +QtObjectPtr QDir_NewQDir3(char* path, char* nameFilter, int sort, int filters); +char* QDir_AbsoluteFilePath(QtObjectPtr ptr, char* fileName); +char* QDir_AbsolutePath(QtObjectPtr ptr); +void QDir_QDir_AddSearchPath(char* prefix, char* path); +char* QDir_CanonicalPath(QtObjectPtr ptr); +int QDir_Cd(QtObjectPtr ptr, char* dirName); +int QDir_CdUp(QtObjectPtr ptr); +char* QDir_QDir_CleanPath(char* path); +char* QDir_QDir_CurrentPath(); +char* QDir_DirName(QtObjectPtr ptr); +char* QDir_EntryList2(QtObjectPtr ptr, int filters, int sort); +char* QDir_EntryList(QtObjectPtr ptr, char* nameFilters, int filters, int sort); +int QDir_Exists2(QtObjectPtr ptr); +int QDir_Exists(QtObjectPtr ptr, char* name); +char* QDir_FilePath(QtObjectPtr ptr, char* fileName); +int QDir_Filter(QtObjectPtr ptr); +char* QDir_QDir_FromNativeSeparators(char* pathName); +char* QDir_QDir_HomePath(); +int QDir_IsAbsolute(QtObjectPtr ptr); +int QDir_QDir_IsAbsolutePath(char* path); +int QDir_IsReadable(QtObjectPtr ptr); +int QDir_IsRelative(QtObjectPtr ptr); +int QDir_QDir_IsRelativePath(char* path); +int QDir_IsRoot(QtObjectPtr ptr); +int QDir_MakeAbsolute(QtObjectPtr ptr); +int QDir_QDir_Match(char* filter, char* fileName); +int QDir_QDir_Match2(char* filters, char* fileName); +int QDir_Mkdir(QtObjectPtr ptr, char* dirName); +int QDir_Mkpath(QtObjectPtr ptr, char* dirPath); +char* QDir_NameFilters(QtObjectPtr ptr); +char* QDir_Path(QtObjectPtr ptr); +void QDir_Refresh(QtObjectPtr ptr); +char* QDir_RelativeFilePath(QtObjectPtr ptr, char* fileName); +int QDir_RemoveRecursively(QtObjectPtr ptr); +int QDir_Rename(QtObjectPtr ptr, char* oldName, char* newName); +int QDir_Rmdir(QtObjectPtr ptr, char* dirName); +int QDir_Rmpath(QtObjectPtr ptr, char* dirPath); +char* QDir_QDir_RootPath(); +char* QDir_QDir_SearchPaths(char* prefix); +int QDir_QDir_SetCurrent(char* path); +void QDir_SetFilter(QtObjectPtr ptr, int filters); +void QDir_SetNameFilters(QtObjectPtr ptr, char* nameFilters); +void QDir_SetPath(QtObjectPtr ptr, char* path); +void QDir_QDir_SetSearchPaths(char* prefix, char* searchPaths); +void QDir_SetSorting(QtObjectPtr ptr, int sort); +int QDir_Sorting(QtObjectPtr ptr); +void QDir_Swap(QtObjectPtr ptr, QtObjectPtr other); +char* QDir_QDir_TempPath(); +char* QDir_QDir_ToNativeSeparators(char* pathName); +void QDir_DestroyQDir(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qdiriterator.cpp b/core/qdiriterator.cpp new file mode 100755 index 00000000..3543e12a --- /dev/null +++ b/core/qdiriterator.cpp @@ -0,0 +1,9 @@ +#include "qdiriterator.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qdiriterator.go b/core/qdiriterator.go new file mode 100755 index 00000000..7305fa3c --- /dev/null +++ b/core/qdiriterator.go @@ -0,0 +1,49 @@ +package core + +//#include "qdiriterator.h" +import "C" +import ( + "unsafe" +) + +type QDirIterator struct { + ptr unsafe.Pointer +} + +type QDirIteratorITF interface { + QDirIteratorPTR() *QDirIterator +} + +func (p *QDirIterator) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDirIterator) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDirIterator(ptr QDirIteratorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDirIteratorPTR().Pointer() + } + return nil +} + +func QDirIteratorFromPointer(ptr unsafe.Pointer) *QDirIterator { + var n = new(QDirIterator) + n.SetPointer(ptr) + return n +} + +func (ptr *QDirIterator) QDirIteratorPTR() *QDirIterator { + return ptr +} + +//QDirIterator::IteratorFlag +type QDirIterator__IteratorFlag int + +var ( + QDirIterator__NoIteratorFlags = QDirIterator__IteratorFlag(0x0) + QDirIterator__FollowSymlinks = QDirIterator__IteratorFlag(0x1) + QDirIterator__Subdirectories = QDirIterator__IteratorFlag(0x2) +) diff --git a/core/qdiriterator.h b/core/qdiriterator.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qdiriterator.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qdynamicpropertychangeevent.cpp b/core/qdynamicpropertychangeevent.cpp new file mode 100755 index 00000000..34cf4e8c --- /dev/null +++ b/core/qdynamicpropertychangeevent.cpp @@ -0,0 +1,17 @@ +#include "qdynamicpropertychangeevent.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDynamicPropertyChangeEvent: public QDynamicPropertyChangeEvent { +public: +}; + +QtObjectPtr QDynamicPropertyChangeEvent_NewQDynamicPropertyChangeEvent(QtObjectPtr name){ + return new QDynamicPropertyChangeEvent(*static_cast(name)); +} + diff --git a/core/qdynamicpropertychangeevent.go b/core/qdynamicpropertychangeevent.go new file mode 100755 index 00000000..70a85b75 --- /dev/null +++ b/core/qdynamicpropertychangeevent.go @@ -0,0 +1,37 @@ +package core + +//#include "qdynamicpropertychangeevent.h" +import "C" +import ( + "unsafe" +) + +type QDynamicPropertyChangeEvent struct { + QEvent +} + +type QDynamicPropertyChangeEventITF interface { + QEventITF + QDynamicPropertyChangeEventPTR() *QDynamicPropertyChangeEvent +} + +func PointerFromQDynamicPropertyChangeEvent(ptr QDynamicPropertyChangeEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDynamicPropertyChangeEventPTR().Pointer() + } + return nil +} + +func QDynamicPropertyChangeEventFromPointer(ptr unsafe.Pointer) *QDynamicPropertyChangeEvent { + var n = new(QDynamicPropertyChangeEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QDynamicPropertyChangeEvent) QDynamicPropertyChangeEventPTR() *QDynamicPropertyChangeEvent { + return ptr +} + +func NewQDynamicPropertyChangeEvent(name QByteArrayITF) *QDynamicPropertyChangeEvent { + return QDynamicPropertyChangeEventFromPointer(unsafe.Pointer(C.QDynamicPropertyChangeEvent_NewQDynamicPropertyChangeEvent(C.QtObjectPtr(PointerFromQByteArray(name))))) +} diff --git a/core/qdynamicpropertychangeevent.h b/core/qdynamicpropertychangeevent.h new file mode 100755 index 00000000..9bfba47e --- /dev/null +++ b/core/qdynamicpropertychangeevent.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDynamicPropertyChangeEvent_NewQDynamicPropertyChangeEvent(QtObjectPtr name); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qeasingcurve.cpp b/core/qeasingcurve.cpp new file mode 100755 index 00000000..744e5798 --- /dev/null +++ b/core/qeasingcurve.cpp @@ -0,0 +1,46 @@ +#include "qeasingcurve.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQEasingCurve: public QEasingCurve { +public: +}; + +QtObjectPtr QEasingCurve_NewQEasingCurve3(QtObjectPtr other){ + return new QEasingCurve(*static_cast(other)); +} + +QtObjectPtr QEasingCurve_NewQEasingCurve(int ty){ + return new QEasingCurve(static_cast(ty)); +} + +QtObjectPtr QEasingCurve_NewQEasingCurve2(QtObjectPtr other){ + return new QEasingCurve(*static_cast(other)); +} + +void QEasingCurve_AddCubicBezierSegment(QtObjectPtr ptr, QtObjectPtr c1, QtObjectPtr c2, QtObjectPtr endPoint){ + static_cast(ptr)->addCubicBezierSegment(*static_cast(c1), *static_cast(c2), *static_cast(endPoint)); +} + +void QEasingCurve_SetType(QtObjectPtr ptr, int ty){ + static_cast(ptr)->setType(static_cast(ty)); +} + +void QEasingCurve_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +int QEasingCurve_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QEasingCurve_DestroyQEasingCurve(QtObjectPtr ptr){ + static_cast(ptr)->~QEasingCurve(); +} + diff --git a/core/qeasingcurve.go b/core/qeasingcurve.go new file mode 100755 index 00000000..df03d3e6 --- /dev/null +++ b/core/qeasingcurve.go @@ -0,0 +1,138 @@ +package core + +//#include "qeasingcurve.h" +import "C" +import ( + "unsafe" +) + +type QEasingCurve struct { + ptr unsafe.Pointer +} + +type QEasingCurveITF interface { + QEasingCurvePTR() *QEasingCurve +} + +func (p *QEasingCurve) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QEasingCurve) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQEasingCurve(ptr QEasingCurveITF) unsafe.Pointer { + if ptr != nil { + return ptr.QEasingCurvePTR().Pointer() + } + return nil +} + +func QEasingCurveFromPointer(ptr unsafe.Pointer) *QEasingCurve { + var n = new(QEasingCurve) + n.SetPointer(ptr) + return n +} + +func (ptr *QEasingCurve) QEasingCurvePTR() *QEasingCurve { + return ptr +} + +//QEasingCurve::Type +type QEasingCurve__Type int + +var ( + QEasingCurve__Linear = QEasingCurve__Type(0) + QEasingCurve__InQuad = QEasingCurve__Type(1) + QEasingCurve__OutQuad = QEasingCurve__Type(2) + QEasingCurve__InOutQuad = QEasingCurve__Type(3) + QEasingCurve__OutInQuad = QEasingCurve__Type(4) + QEasingCurve__InCubic = QEasingCurve__Type(5) + QEasingCurve__OutCubic = QEasingCurve__Type(6) + QEasingCurve__InOutCubic = QEasingCurve__Type(7) + QEasingCurve__OutInCubic = QEasingCurve__Type(8) + QEasingCurve__InQuart = QEasingCurve__Type(9) + QEasingCurve__OutQuart = QEasingCurve__Type(10) + QEasingCurve__InOutQuart = QEasingCurve__Type(11) + QEasingCurve__OutInQuart = QEasingCurve__Type(12) + QEasingCurve__InQuint = QEasingCurve__Type(13) + QEasingCurve__OutQuint = QEasingCurve__Type(14) + QEasingCurve__InOutQuint = QEasingCurve__Type(15) + QEasingCurve__OutInQuint = QEasingCurve__Type(16) + QEasingCurve__InSine = QEasingCurve__Type(17) + QEasingCurve__OutSine = QEasingCurve__Type(18) + QEasingCurve__InOutSine = QEasingCurve__Type(19) + QEasingCurve__OutInSine = QEasingCurve__Type(20) + QEasingCurve__InExpo = QEasingCurve__Type(21) + QEasingCurve__OutExpo = QEasingCurve__Type(22) + QEasingCurve__InOutExpo = QEasingCurve__Type(23) + QEasingCurve__OutInExpo = QEasingCurve__Type(24) + QEasingCurve__InCirc = QEasingCurve__Type(25) + QEasingCurve__OutCirc = QEasingCurve__Type(26) + QEasingCurve__InOutCirc = QEasingCurve__Type(27) + QEasingCurve__OutInCirc = QEasingCurve__Type(28) + QEasingCurve__InElastic = QEasingCurve__Type(29) + QEasingCurve__OutElastic = QEasingCurve__Type(30) + QEasingCurve__InOutElastic = QEasingCurve__Type(31) + QEasingCurve__OutInElastic = QEasingCurve__Type(32) + QEasingCurve__InBack = QEasingCurve__Type(33) + QEasingCurve__OutBack = QEasingCurve__Type(34) + QEasingCurve__InOutBack = QEasingCurve__Type(35) + QEasingCurve__OutInBack = QEasingCurve__Type(36) + QEasingCurve__InBounce = QEasingCurve__Type(37) + QEasingCurve__OutBounce = QEasingCurve__Type(38) + QEasingCurve__InOutBounce = QEasingCurve__Type(39) + QEasingCurve__OutInBounce = QEasingCurve__Type(40) + QEasingCurve__InCurve = QEasingCurve__Type(41) + QEasingCurve__OutCurve = QEasingCurve__Type(42) + QEasingCurve__SineCurve = QEasingCurve__Type(43) + QEasingCurve__CosineCurve = QEasingCurve__Type(44) + QEasingCurve__BezierSpline = QEasingCurve__Type(45) + QEasingCurve__TCBSpline = QEasingCurve__Type(46) + QEasingCurve__Custom = QEasingCurve__Type(47) + QEasingCurve__NCurveTypes = QEasingCurve__Type(48) +) + +func NewQEasingCurve3(other QEasingCurveITF) *QEasingCurve { + return QEasingCurveFromPointer(unsafe.Pointer(C.QEasingCurve_NewQEasingCurve3(C.QtObjectPtr(PointerFromQEasingCurve(other))))) +} + +func NewQEasingCurve(ty QEasingCurve__Type) *QEasingCurve { + return QEasingCurveFromPointer(unsafe.Pointer(C.QEasingCurve_NewQEasingCurve(C.int(ty)))) +} + +func NewQEasingCurve2(other QEasingCurveITF) *QEasingCurve { + return QEasingCurveFromPointer(unsafe.Pointer(C.QEasingCurve_NewQEasingCurve2(C.QtObjectPtr(PointerFromQEasingCurve(other))))) +} + +func (ptr *QEasingCurve) AddCubicBezierSegment(c1 QPointFITF, c2 QPointFITF, endPoint QPointFITF) { + if ptr.Pointer() != nil { + C.QEasingCurve_AddCubicBezierSegment(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPointF(c1)), C.QtObjectPtr(PointerFromQPointF(c2)), C.QtObjectPtr(PointerFromQPointF(endPoint))) + } +} + +func (ptr *QEasingCurve) SetType(ty QEasingCurve__Type) { + if ptr.Pointer() != nil { + C.QEasingCurve_SetType(C.QtObjectPtr(ptr.Pointer()), C.int(ty)) + } +} + +func (ptr *QEasingCurve) Swap(other QEasingCurveITF) { + if ptr.Pointer() != nil { + C.QEasingCurve_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQEasingCurve(other))) + } +} + +func (ptr *QEasingCurve) Type() QEasingCurve__Type { + if ptr.Pointer() != nil { + return QEasingCurve__Type(C.QEasingCurve_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QEasingCurve) DestroyQEasingCurve() { + if ptr.Pointer() != nil { + C.QEasingCurve_DestroyQEasingCurve(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qeasingcurve.h b/core/qeasingcurve.h new file mode 100755 index 00000000..8cfb8caa --- /dev/null +++ b/core/qeasingcurve.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QEasingCurve_NewQEasingCurve3(QtObjectPtr other); +QtObjectPtr QEasingCurve_NewQEasingCurve(int ty); +QtObjectPtr QEasingCurve_NewQEasingCurve2(QtObjectPtr other); +void QEasingCurve_AddCubicBezierSegment(QtObjectPtr ptr, QtObjectPtr c1, QtObjectPtr c2, QtObjectPtr endPoint); +void QEasingCurve_SetType(QtObjectPtr ptr, int ty); +void QEasingCurve_Swap(QtObjectPtr ptr, QtObjectPtr other); +int QEasingCurve_Type(QtObjectPtr ptr); +void QEasingCurve_DestroyQEasingCurve(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qelapsedtimer.cpp b/core/qelapsedtimer.cpp new file mode 100755 index 00000000..f2222807 --- /dev/null +++ b/core/qelapsedtimer.cpp @@ -0,0 +1,36 @@ +#include "qelapsedtimer.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQElapsedTimer: public QElapsedTimer { +public: +}; + +QtObjectPtr QElapsedTimer_NewQElapsedTimer(){ + return new QElapsedTimer(); +} + +void QElapsedTimer_Invalidate(QtObjectPtr ptr){ + static_cast(ptr)->invalidate(); +} + +int QElapsedTimer_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QElapsedTimer_QElapsedTimer_ClockType(){ + return QElapsedTimer::clockType(); +} + +int QElapsedTimer_QElapsedTimer_IsMonotonic(){ + return QElapsedTimer::isMonotonic(); +} + +void QElapsedTimer_Start(QtObjectPtr ptr){ + static_cast(ptr)->start(); +} + diff --git a/core/qelapsedtimer.go b/core/qelapsedtimer.go new file mode 100755 index 00000000..b7984083 --- /dev/null +++ b/core/qelapsedtimer.go @@ -0,0 +1,82 @@ +package core + +//#include "qelapsedtimer.h" +import "C" +import ( + "unsafe" +) + +type QElapsedTimer struct { + ptr unsafe.Pointer +} + +type QElapsedTimerITF interface { + QElapsedTimerPTR() *QElapsedTimer +} + +func (p *QElapsedTimer) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QElapsedTimer) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQElapsedTimer(ptr QElapsedTimerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QElapsedTimerPTR().Pointer() + } + return nil +} + +func QElapsedTimerFromPointer(ptr unsafe.Pointer) *QElapsedTimer { + var n = new(QElapsedTimer) + n.SetPointer(ptr) + return n +} + +func (ptr *QElapsedTimer) QElapsedTimerPTR() *QElapsedTimer { + return ptr +} + +//QElapsedTimer::ClockType +type QElapsedTimer__ClockType int + +var ( + QElapsedTimer__SystemTime = QElapsedTimer__ClockType(0) + QElapsedTimer__MonotonicClock = QElapsedTimer__ClockType(1) + QElapsedTimer__TickCounter = QElapsedTimer__ClockType(2) + QElapsedTimer__MachAbsoluteTime = QElapsedTimer__ClockType(3) + QElapsedTimer__PerformanceCounter = QElapsedTimer__ClockType(4) +) + +func NewQElapsedTimer() *QElapsedTimer { + return QElapsedTimerFromPointer(unsafe.Pointer(C.QElapsedTimer_NewQElapsedTimer())) +} + +func (ptr *QElapsedTimer) Invalidate() { + if ptr.Pointer() != nil { + C.QElapsedTimer_Invalidate(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QElapsedTimer) IsValid() bool { + if ptr.Pointer() != nil { + return C.QElapsedTimer_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func QElapsedTimer_ClockType() QElapsedTimer__ClockType { + return QElapsedTimer__ClockType(C.QElapsedTimer_QElapsedTimer_ClockType()) +} + +func QElapsedTimer_IsMonotonic() bool { + return C.QElapsedTimer_QElapsedTimer_IsMonotonic() != 0 +} + +func (ptr *QElapsedTimer) Start() { + if ptr.Pointer() != nil { + C.QElapsedTimer_Start(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qelapsedtimer.h b/core/qelapsedtimer.h new file mode 100755 index 00000000..6c06bdf1 --- /dev/null +++ b/core/qelapsedtimer.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QElapsedTimer_NewQElapsedTimer(); +void QElapsedTimer_Invalidate(QtObjectPtr ptr); +int QElapsedTimer_IsValid(QtObjectPtr ptr); +int QElapsedTimer_QElapsedTimer_ClockType(); +int QElapsedTimer_QElapsedTimer_IsMonotonic(); +void QElapsedTimer_Start(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qenablesharedfromthis.cpp b/core/qenablesharedfromthis.cpp new file mode 100755 index 00000000..641499f3 --- /dev/null +++ b/core/qenablesharedfromthis.cpp @@ -0,0 +1,8 @@ +#include "qenablesharedfromthis.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qenablesharedfromthis.go b/core/qenablesharedfromthis.go new file mode 100755 index 00000000..3884be93 --- /dev/null +++ b/core/qenablesharedfromthis.go @@ -0,0 +1,40 @@ +package core + +//#include "qenablesharedfromthis.h" +import "C" +import ( + "unsafe" +) + +type QEnableSharedFromThis struct { + ptr unsafe.Pointer +} + +type QEnableSharedFromThisITF interface { + QEnableSharedFromThisPTR() *QEnableSharedFromThis +} + +func (p *QEnableSharedFromThis) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QEnableSharedFromThis) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQEnableSharedFromThis(ptr QEnableSharedFromThisITF) unsafe.Pointer { + if ptr != nil { + return ptr.QEnableSharedFromThisPTR().Pointer() + } + return nil +} + +func QEnableSharedFromThisFromPointer(ptr unsafe.Pointer) *QEnableSharedFromThis { + var n = new(QEnableSharedFromThis) + n.SetPointer(ptr) + return n +} + +func (ptr *QEnableSharedFromThis) QEnableSharedFromThisPTR() *QEnableSharedFromThis { + return ptr +} diff --git a/core/qenablesharedfromthis.h b/core/qenablesharedfromthis.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qenablesharedfromthis.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qevent.cpp b/core/qevent.cpp new file mode 100755 index 00000000..a0369419 --- /dev/null +++ b/core/qevent.cpp @@ -0,0 +1,48 @@ +#include "qevent.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQEvent: public QEvent { +public: +}; + +QtObjectPtr QEvent_NewQEvent(int ty){ + return new QEvent(static_cast(ty)); +} + +void QEvent_Accept(QtObjectPtr ptr){ + static_cast(ptr)->accept(); +} + +void QEvent_Ignore(QtObjectPtr ptr){ + static_cast(ptr)->ignore(); +} + +int QEvent_IsAccepted(QtObjectPtr ptr){ + return static_cast(ptr)->isAccepted(); +} + +int QEvent_QEvent_RegisterEventType(int hint){ + return QEvent::registerEventType(hint); +} + +void QEvent_SetAccepted(QtObjectPtr ptr, int accepted){ + static_cast(ptr)->setAccepted(accepted != 0); +} + +int QEvent_Spontaneous(QtObjectPtr ptr){ + return static_cast(ptr)->spontaneous(); +} + +int QEvent_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QEvent_DestroyQEvent(QtObjectPtr ptr){ + static_cast(ptr)->~QEvent(); +} + diff --git a/core/qevent.go b/core/qevent.go new file mode 100755 index 00000000..3a90b85c --- /dev/null +++ b/core/qevent.go @@ -0,0 +1,272 @@ +package core + +//#include "qevent.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QEvent struct { + ptr unsafe.Pointer +} + +type QEventITF interface { + QEventPTR() *QEvent +} + +func (p *QEvent) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QEvent) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQEvent(ptr QEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QEventPTR().Pointer() + } + return nil +} + +func QEventFromPointer(ptr unsafe.Pointer) *QEvent { + var n = new(QEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QEvent) QEventPTR() *QEvent { + return ptr +} + +//QEvent::Type +type QEvent__Type int + +var ( + QEvent__None = QEvent__Type(0) + QEvent__Timer = QEvent__Type(1) + QEvent__MouseButtonPress = QEvent__Type(2) + QEvent__MouseButtonRelease = QEvent__Type(3) + QEvent__MouseButtonDblClick = QEvent__Type(4) + QEvent__MouseMove = QEvent__Type(5) + QEvent__KeyPress = QEvent__Type(6) + QEvent__KeyRelease = QEvent__Type(7) + QEvent__FocusIn = QEvent__Type(8) + QEvent__FocusOut = QEvent__Type(9) + QEvent__FocusAboutToChange = QEvent__Type(23) + QEvent__Enter = QEvent__Type(10) + QEvent__Leave = QEvent__Type(11) + QEvent__Paint = QEvent__Type(12) + QEvent__Move = QEvent__Type(13) + QEvent__Resize = QEvent__Type(14) + QEvent__Create = QEvent__Type(15) + QEvent__Destroy = QEvent__Type(16) + QEvent__Show = QEvent__Type(17) + QEvent__Hide = QEvent__Type(18) + QEvent__Close = QEvent__Type(19) + QEvent__Quit = QEvent__Type(20) + QEvent__ParentChange = QEvent__Type(21) + QEvent__ParentAboutToChange = QEvent__Type(131) + QEvent__ThreadChange = QEvent__Type(22) + QEvent__WindowActivate = QEvent__Type(24) + QEvent__WindowDeactivate = QEvent__Type(25) + QEvent__ShowToParent = QEvent__Type(26) + QEvent__HideToParent = QEvent__Type(27) + QEvent__Wheel = QEvent__Type(31) + QEvent__WindowTitleChange = QEvent__Type(33) + QEvent__WindowIconChange = QEvent__Type(34) + QEvent__ApplicationWindowIconChange = QEvent__Type(35) + QEvent__ApplicationFontChange = QEvent__Type(36) + QEvent__ApplicationLayoutDirectionChange = QEvent__Type(37) + QEvent__ApplicationPaletteChange = QEvent__Type(38) + QEvent__PaletteChange = QEvent__Type(39) + QEvent__Clipboard = QEvent__Type(40) + QEvent__Speech = QEvent__Type(42) + QEvent__MetaCall = QEvent__Type(43) + QEvent__SockAct = QEvent__Type(50) + QEvent__WinEventAct = QEvent__Type(132) + QEvent__DeferredDelete = QEvent__Type(52) + QEvent__DragEnter = QEvent__Type(60) + QEvent__DragMove = QEvent__Type(61) + QEvent__DragLeave = QEvent__Type(62) + QEvent__Drop = QEvent__Type(63) + QEvent__DragResponse = QEvent__Type(64) + QEvent__ChildAdded = QEvent__Type(68) + QEvent__ChildPolished = QEvent__Type(69) + QEvent__ChildRemoved = QEvent__Type(71) + QEvent__ShowWindowRequest = QEvent__Type(73) + QEvent__PolishRequest = QEvent__Type(74) + QEvent__Polish = QEvent__Type(75) + QEvent__LayoutRequest = QEvent__Type(76) + QEvent__UpdateRequest = QEvent__Type(77) + QEvent__UpdateLater = QEvent__Type(78) + QEvent__EmbeddingControl = QEvent__Type(79) + QEvent__ActivateControl = QEvent__Type(80) + QEvent__DeactivateControl = QEvent__Type(81) + QEvent__ContextMenu = QEvent__Type(82) + QEvent__InputMethod = QEvent__Type(83) + QEvent__TabletMove = QEvent__Type(87) + QEvent__LocaleChange = QEvent__Type(88) + QEvent__LanguageChange = QEvent__Type(89) + QEvent__LayoutDirectionChange = QEvent__Type(90) + QEvent__Style = QEvent__Type(91) + QEvent__TabletPress = QEvent__Type(92) + QEvent__TabletRelease = QEvent__Type(93) + QEvent__OkRequest = QEvent__Type(94) + QEvent__HelpRequest = QEvent__Type(95) + QEvent__IconDrag = QEvent__Type(96) + QEvent__FontChange = QEvent__Type(97) + QEvent__EnabledChange = QEvent__Type(98) + QEvent__ActivationChange = QEvent__Type(99) + QEvent__StyleChange = QEvent__Type(100) + QEvent__IconTextChange = QEvent__Type(101) + QEvent__ModifiedChange = QEvent__Type(102) + QEvent__MouseTrackingChange = QEvent__Type(109) + QEvent__WindowBlocked = QEvent__Type(103) + QEvent__WindowUnblocked = QEvent__Type(104) + QEvent__WindowStateChange = QEvent__Type(105) + QEvent__ReadOnlyChange = QEvent__Type(106) + QEvent__ToolTip = QEvent__Type(110) + QEvent__WhatsThis = QEvent__Type(111) + QEvent__StatusTip = QEvent__Type(112) + QEvent__ActionChanged = QEvent__Type(113) + QEvent__ActionAdded = QEvent__Type(114) + QEvent__ActionRemoved = QEvent__Type(115) + QEvent__FileOpen = QEvent__Type(116) + QEvent__Shortcut = QEvent__Type(117) + QEvent__ShortcutOverride = QEvent__Type(51) + QEvent__WhatsThisClicked = QEvent__Type(118) + QEvent__ToolBarChange = QEvent__Type(120) + QEvent__ApplicationActivate = QEvent__Type(121) + QEvent__ApplicationActivated = QEvent__Type(QEvent__ApplicationActivate) + QEvent__ApplicationDeactivate = QEvent__Type(122) + QEvent__ApplicationDeactivated = QEvent__Type(QEvent__ApplicationDeactivate) + QEvent__QueryWhatsThis = QEvent__Type(123) + QEvent__EnterWhatsThisMode = QEvent__Type(124) + QEvent__LeaveWhatsThisMode = QEvent__Type(125) + QEvent__ZOrderChange = QEvent__Type(126) + QEvent__HoverEnter = QEvent__Type(127) + QEvent__HoverLeave = QEvent__Type(128) + QEvent__HoverMove = QEvent__Type(129) + QEvent__EnterEditFocus = QEvent__Type(150) + QEvent__LeaveEditFocus = QEvent__Type(151) + QEvent__AcceptDropsChange = QEvent__Type(152) + QEvent__ZeroTimerEvent = QEvent__Type(154) + QEvent__GraphicsSceneMouseMove = QEvent__Type(155) + QEvent__GraphicsSceneMousePress = QEvent__Type(156) + QEvent__GraphicsSceneMouseRelease = QEvent__Type(157) + QEvent__GraphicsSceneMouseDoubleClick = QEvent__Type(158) + QEvent__GraphicsSceneContextMenu = QEvent__Type(159) + QEvent__GraphicsSceneHoverEnter = QEvent__Type(160) + QEvent__GraphicsSceneHoverMove = QEvent__Type(161) + QEvent__GraphicsSceneHoverLeave = QEvent__Type(162) + QEvent__GraphicsSceneHelp = QEvent__Type(163) + QEvent__GraphicsSceneDragEnter = QEvent__Type(164) + QEvent__GraphicsSceneDragMove = QEvent__Type(165) + QEvent__GraphicsSceneDragLeave = QEvent__Type(166) + QEvent__GraphicsSceneDrop = QEvent__Type(167) + QEvent__GraphicsSceneWheel = QEvent__Type(168) + QEvent__KeyboardLayoutChange = QEvent__Type(169) + QEvent__DynamicPropertyChange = QEvent__Type(170) + QEvent__TabletEnterProximity = QEvent__Type(171) + QEvent__TabletLeaveProximity = QEvent__Type(172) + QEvent__NonClientAreaMouseMove = QEvent__Type(173) + QEvent__NonClientAreaMouseButtonPress = QEvent__Type(174) + QEvent__NonClientAreaMouseButtonRelease = QEvent__Type(175) + QEvent__NonClientAreaMouseButtonDblClick = QEvent__Type(176) + QEvent__MacSizeChange = QEvent__Type(177) + QEvent__ContentsRectChange = QEvent__Type(178) + QEvent__MacGLWindowChange = QEvent__Type(179) + QEvent__FutureCallOut = QEvent__Type(180) + QEvent__GraphicsSceneResize = QEvent__Type(181) + QEvent__GraphicsSceneMove = QEvent__Type(182) + QEvent__CursorChange = QEvent__Type(183) + QEvent__ToolTipChange = QEvent__Type(184) + QEvent__NetworkReplyUpdated = QEvent__Type(185) + QEvent__GrabMouse = QEvent__Type(186) + QEvent__UngrabMouse = QEvent__Type(187) + QEvent__GrabKeyboard = QEvent__Type(188) + QEvent__UngrabKeyboard = QEvent__Type(189) + QEvent__MacGLClearDrawable = QEvent__Type(191) + QEvent__StateMachineSignal = QEvent__Type(192) + QEvent__StateMachineWrapped = QEvent__Type(193) + QEvent__TouchBegin = QEvent__Type(194) + QEvent__TouchUpdate = QEvent__Type(195) + QEvent__TouchEnd = QEvent__Type(196) + QEvent__NativeGesture = QEvent__Type(197) + QEvent__RequestSoftwareInputPanel = QEvent__Type(199) + QEvent__CloseSoftwareInputPanel = QEvent__Type(200) + QEvent__WinIdChange = QEvent__Type(203) + QEvent__Gesture = QEvent__Type(198) + QEvent__GestureOverride = QEvent__Type(202) + QEvent__ScrollPrepare = QEvent__Type(204) + QEvent__Scroll = QEvent__Type(205) + QEvent__Expose = QEvent__Type(206) + QEvent__InputMethodQuery = QEvent__Type(207) + QEvent__OrientationChange = QEvent__Type(208) + QEvent__TouchCancel = QEvent__Type(209) + QEvent__ThemeChange = QEvent__Type(210) + QEvent__SockClose = QEvent__Type(211) + QEvent__PlatformPanel = QEvent__Type(212) + QEvent__StyleAnimationUpdate = QEvent__Type(213) + QEvent__ApplicationStateChange = QEvent__Type(214) + QEvent__WindowChangeInternal = QEvent__Type(215) + QEvent__ScreenChangeInternal = QEvent__Type(216) + QEvent__PlatformSurface = QEvent__Type(217) + QEvent__User = QEvent__Type(1000) + QEvent__MaxUser = QEvent__Type(65535) +) + +func NewQEvent(ty QEvent__Type) *QEvent { + return QEventFromPointer(unsafe.Pointer(C.QEvent_NewQEvent(C.int(ty)))) +} + +func (ptr *QEvent) Accept() { + if ptr.Pointer() != nil { + C.QEvent_Accept(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QEvent) Ignore() { + if ptr.Pointer() != nil { + C.QEvent_Ignore(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QEvent) IsAccepted() bool { + if ptr.Pointer() != nil { + return C.QEvent_IsAccepted(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func QEvent_RegisterEventType(hint int) int { + return int(C.QEvent_QEvent_RegisterEventType(C.int(hint))) +} + +func (ptr *QEvent) SetAccepted(accepted bool) { + if ptr.Pointer() != nil { + C.QEvent_SetAccepted(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(accepted))) + } +} + +func (ptr *QEvent) Spontaneous() bool { + if ptr.Pointer() != nil { + return C.QEvent_Spontaneous(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QEvent) Type() QEvent__Type { + if ptr.Pointer() != nil { + return QEvent__Type(C.QEvent_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QEvent) DestroyQEvent() { + if ptr.Pointer() != nil { + C.QEvent_DestroyQEvent(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qevent.h b/core/qevent.h new file mode 100755 index 00000000..f9e8a3ee --- /dev/null +++ b/core/qevent.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QEvent_NewQEvent(int ty); +void QEvent_Accept(QtObjectPtr ptr); +void QEvent_Ignore(QtObjectPtr ptr); +int QEvent_IsAccepted(QtObjectPtr ptr); +int QEvent_QEvent_RegisterEventType(int hint); +void QEvent_SetAccepted(QtObjectPtr ptr, int accepted); +int QEvent_Spontaneous(QtObjectPtr ptr); +int QEvent_Type(QtObjectPtr ptr); +void QEvent_DestroyQEvent(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qeventloop.cpp b/core/qeventloop.cpp new file mode 100755 index 00000000..886c2b92 --- /dev/null +++ b/core/qeventloop.cpp @@ -0,0 +1,55 @@ +#include "qeventloop.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQEventLoop: public QEventLoop { +public: +}; + +QtObjectPtr QEventLoop_NewQEventLoop(QtObjectPtr parent){ + return new QEventLoop(static_cast(parent)); +} + +int QEventLoop_Event(QtObjectPtr ptr, QtObjectPtr event){ + return static_cast(ptr)->event(static_cast(event)); +} + +int QEventLoop_Exec(QtObjectPtr ptr, int flags){ + return static_cast(ptr)->exec(static_cast(flags)); +} + +void QEventLoop_Exit(QtObjectPtr ptr, int returnCode){ + static_cast(ptr)->exit(returnCode); +} + +int QEventLoop_IsRunning(QtObjectPtr ptr){ + return static_cast(ptr)->isRunning(); +} + +int QEventLoop_ProcessEvents(QtObjectPtr ptr, int flags){ + return static_cast(ptr)->processEvents(static_cast(flags)); +} + +void QEventLoop_ProcessEvents2(QtObjectPtr ptr, int flags, int maxTime){ + static_cast(ptr)->processEvents(static_cast(flags), maxTime); +} + +void QEventLoop_Quit(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "quit"); +} + +void QEventLoop_WakeUp(QtObjectPtr ptr){ + static_cast(ptr)->wakeUp(); +} + +void QEventLoop_DestroyQEventLoop(QtObjectPtr ptr){ + static_cast(ptr)->~QEventLoop(); +} + diff --git a/core/qeventloop.go b/core/qeventloop.go new file mode 100755 index 00000000..dba9df5a --- /dev/null +++ b/core/qeventloop.go @@ -0,0 +1,113 @@ +package core + +//#include "qeventloop.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QEventLoop struct { + QObject +} + +type QEventLoopITF interface { + QObjectITF + QEventLoopPTR() *QEventLoop +} + +func PointerFromQEventLoop(ptr QEventLoopITF) unsafe.Pointer { + if ptr != nil { + return ptr.QEventLoopPTR().Pointer() + } + return nil +} + +func QEventLoopFromPointer(ptr unsafe.Pointer) *QEventLoop { + var n = new(QEventLoop) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QEventLoop_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QEventLoop) QEventLoopPTR() *QEventLoop { + return ptr +} + +//QEventLoop::ProcessEventsFlag +type QEventLoop__ProcessEventsFlag int + +var ( + QEventLoop__AllEvents = QEventLoop__ProcessEventsFlag(0x00) + QEventLoop__ExcludeUserInputEvents = QEventLoop__ProcessEventsFlag(0x01) + QEventLoop__ExcludeSocketNotifiers = QEventLoop__ProcessEventsFlag(0x02) + QEventLoop__WaitForMoreEvents = QEventLoop__ProcessEventsFlag(0x04) + QEventLoop__X11ExcludeTimers = QEventLoop__ProcessEventsFlag(0x08) + QEventLoop__EventLoopExec = QEventLoop__ProcessEventsFlag(0x20) + QEventLoop__DialogExec = QEventLoop__ProcessEventsFlag(0x40) +) + +func NewQEventLoop(parent QObjectITF) *QEventLoop { + return QEventLoopFromPointer(unsafe.Pointer(C.QEventLoop_NewQEventLoop(C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func (ptr *QEventLoop) Event(event QEventITF) bool { + if ptr.Pointer() != nil { + return C.QEventLoop_Event(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQEvent(event))) != 0 + } + return false +} + +func (ptr *QEventLoop) Exec(flags QEventLoop__ProcessEventsFlag) int { + if ptr.Pointer() != nil { + return int(C.QEventLoop_Exec(C.QtObjectPtr(ptr.Pointer()), C.int(flags))) + } + return 0 +} + +func (ptr *QEventLoop) Exit(returnCode int) { + if ptr.Pointer() != nil { + C.QEventLoop_Exit(C.QtObjectPtr(ptr.Pointer()), C.int(returnCode)) + } +} + +func (ptr *QEventLoop) IsRunning() bool { + if ptr.Pointer() != nil { + return C.QEventLoop_IsRunning(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QEventLoop) ProcessEvents(flags QEventLoop__ProcessEventsFlag) bool { + if ptr.Pointer() != nil { + return C.QEventLoop_ProcessEvents(C.QtObjectPtr(ptr.Pointer()), C.int(flags)) != 0 + } + return false +} + +func (ptr *QEventLoop) ProcessEvents2(flags QEventLoop__ProcessEventsFlag, maxTime int) { + if ptr.Pointer() != nil { + C.QEventLoop_ProcessEvents2(C.QtObjectPtr(ptr.Pointer()), C.int(flags), C.int(maxTime)) + } +} + +func (ptr *QEventLoop) Quit() { + if ptr.Pointer() != nil { + C.QEventLoop_Quit(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QEventLoop) WakeUp() { + if ptr.Pointer() != nil { + C.QEventLoop_WakeUp(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QEventLoop) DestroyQEventLoop() { + if ptr.Pointer() != nil { + C.QEventLoop_DestroyQEventLoop(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qeventloop.h b/core/qeventloop.h new file mode 100755 index 00000000..83b35f1b --- /dev/null +++ b/core/qeventloop.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QEventLoop_NewQEventLoop(QtObjectPtr parent); +int QEventLoop_Event(QtObjectPtr ptr, QtObjectPtr event); +int QEventLoop_Exec(QtObjectPtr ptr, int flags); +void QEventLoop_Exit(QtObjectPtr ptr, int returnCode); +int QEventLoop_IsRunning(QtObjectPtr ptr); +int QEventLoop_ProcessEvents(QtObjectPtr ptr, int flags); +void QEventLoop_ProcessEvents2(QtObjectPtr ptr, int flags, int maxTime); +void QEventLoop_Quit(QtObjectPtr ptr); +void QEventLoop_WakeUp(QtObjectPtr ptr); +void QEventLoop_DestroyQEventLoop(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qeventlooplocker.cpp b/core/qeventlooplocker.cpp new file mode 100755 index 00000000..3a70ccc0 --- /dev/null +++ b/core/qeventlooplocker.cpp @@ -0,0 +1,31 @@ +#include "qeventlooplocker.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQEventLoopLocker: public QEventLoopLocker { +public: +}; + +QtObjectPtr QEventLoopLocker_NewQEventLoopLocker(){ + return new QEventLoopLocker(); +} + +QtObjectPtr QEventLoopLocker_NewQEventLoopLocker2(QtObjectPtr loop){ + return new QEventLoopLocker(static_cast(loop)); +} + +QtObjectPtr QEventLoopLocker_NewQEventLoopLocker3(QtObjectPtr thread){ + return new QEventLoopLocker(static_cast(thread)); +} + +void QEventLoopLocker_DestroyQEventLoopLocker(QtObjectPtr ptr){ + static_cast(ptr)->~QEventLoopLocker(); +} + diff --git a/core/qeventlooplocker.go b/core/qeventlooplocker.go new file mode 100755 index 00000000..e24d7fc8 --- /dev/null +++ b/core/qeventlooplocker.go @@ -0,0 +1,58 @@ +package core + +//#include "qeventlooplocker.h" +import "C" +import ( + "unsafe" +) + +type QEventLoopLocker struct { + ptr unsafe.Pointer +} + +type QEventLoopLockerITF interface { + QEventLoopLockerPTR() *QEventLoopLocker +} + +func (p *QEventLoopLocker) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QEventLoopLocker) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQEventLoopLocker(ptr QEventLoopLockerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QEventLoopLockerPTR().Pointer() + } + return nil +} + +func QEventLoopLockerFromPointer(ptr unsafe.Pointer) *QEventLoopLocker { + var n = new(QEventLoopLocker) + n.SetPointer(ptr) + return n +} + +func (ptr *QEventLoopLocker) QEventLoopLockerPTR() *QEventLoopLocker { + return ptr +} + +func NewQEventLoopLocker() *QEventLoopLocker { + return QEventLoopLockerFromPointer(unsafe.Pointer(C.QEventLoopLocker_NewQEventLoopLocker())) +} + +func NewQEventLoopLocker2(loop QEventLoopITF) *QEventLoopLocker { + return QEventLoopLockerFromPointer(unsafe.Pointer(C.QEventLoopLocker_NewQEventLoopLocker2(C.QtObjectPtr(PointerFromQEventLoop(loop))))) +} + +func NewQEventLoopLocker3(thread QThreadITF) *QEventLoopLocker { + return QEventLoopLockerFromPointer(unsafe.Pointer(C.QEventLoopLocker_NewQEventLoopLocker3(C.QtObjectPtr(PointerFromQThread(thread))))) +} + +func (ptr *QEventLoopLocker) DestroyQEventLoopLocker() { + if ptr.Pointer() != nil { + C.QEventLoopLocker_DestroyQEventLoopLocker(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qeventlooplocker.h b/core/qeventlooplocker.h new file mode 100755 index 00000000..e711ef0a --- /dev/null +++ b/core/qeventlooplocker.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QEventLoopLocker_NewQEventLoopLocker(); +QtObjectPtr QEventLoopLocker_NewQEventLoopLocker2(QtObjectPtr loop); +QtObjectPtr QEventLoopLocker_NewQEventLoopLocker3(QtObjectPtr thread); +void QEventLoopLocker_DestroyQEventLoopLocker(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qeventtransition.cpp b/core/qeventtransition.cpp new file mode 100755 index 00000000..883fce04 --- /dev/null +++ b/core/qeventtransition.cpp @@ -0,0 +1,43 @@ +#include "qeventtransition.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQEventTransition: public QEventTransition { +public: +}; + +QtObjectPtr QEventTransition_NewQEventTransition2(QtObjectPtr object, int ty, QtObjectPtr sourceState){ + return new QEventTransition(static_cast(object), static_cast(ty), static_cast(sourceState)); +} + +QtObjectPtr QEventTransition_NewQEventTransition(QtObjectPtr sourceState){ + return new QEventTransition(static_cast(sourceState)); +} + +QtObjectPtr QEventTransition_EventSource(QtObjectPtr ptr){ + return static_cast(ptr)->eventSource(); +} + +int QEventTransition_EventType(QtObjectPtr ptr){ + return static_cast(ptr)->eventType(); +} + +void QEventTransition_SetEventSource(QtObjectPtr ptr, QtObjectPtr object){ + static_cast(ptr)->setEventSource(static_cast(object)); +} + +void QEventTransition_SetEventType(QtObjectPtr ptr, int ty){ + static_cast(ptr)->setEventType(static_cast(ty)); +} + +void QEventTransition_DestroyQEventTransition(QtObjectPtr ptr){ + static_cast(ptr)->~QEventTransition(); +} + diff --git a/core/qeventtransition.go b/core/qeventtransition.go new file mode 100755 index 00000000..e9261bad --- /dev/null +++ b/core/qeventtransition.go @@ -0,0 +1,78 @@ +package core + +//#include "qeventtransition.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QEventTransition struct { + QAbstractTransition +} + +type QEventTransitionITF interface { + QAbstractTransitionITF + QEventTransitionPTR() *QEventTransition +} + +func PointerFromQEventTransition(ptr QEventTransitionITF) unsafe.Pointer { + if ptr != nil { + return ptr.QEventTransitionPTR().Pointer() + } + return nil +} + +func QEventTransitionFromPointer(ptr unsafe.Pointer) *QEventTransition { + var n = new(QEventTransition) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QEventTransition_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QEventTransition) QEventTransitionPTR() *QEventTransition { + return ptr +} + +func NewQEventTransition2(object QObjectITF, ty QEvent__Type, sourceState QStateITF) *QEventTransition { + return QEventTransitionFromPointer(unsafe.Pointer(C.QEventTransition_NewQEventTransition2(C.QtObjectPtr(PointerFromQObject(object)), C.int(ty), C.QtObjectPtr(PointerFromQState(sourceState))))) +} + +func NewQEventTransition(sourceState QStateITF) *QEventTransition { + return QEventTransitionFromPointer(unsafe.Pointer(C.QEventTransition_NewQEventTransition(C.QtObjectPtr(PointerFromQState(sourceState))))) +} + +func (ptr *QEventTransition) EventSource() *QObject { + if ptr.Pointer() != nil { + return QObjectFromPointer(unsafe.Pointer(C.QEventTransition_EventSource(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QEventTransition) EventType() QEvent__Type { + if ptr.Pointer() != nil { + return QEvent__Type(C.QEventTransition_EventType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QEventTransition) SetEventSource(object QObjectITF) { + if ptr.Pointer() != nil { + C.QEventTransition_SetEventSource(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(object))) + } +} + +func (ptr *QEventTransition) SetEventType(ty QEvent__Type) { + if ptr.Pointer() != nil { + C.QEventTransition_SetEventType(C.QtObjectPtr(ptr.Pointer()), C.int(ty)) + } +} + +func (ptr *QEventTransition) DestroyQEventTransition() { + if ptr.Pointer() != nil { + C.QEventTransition_DestroyQEventTransition(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qeventtransition.h b/core/qeventtransition.h new file mode 100755 index 00000000..324960da --- /dev/null +++ b/core/qeventtransition.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QEventTransition_NewQEventTransition2(QtObjectPtr object, int ty, QtObjectPtr sourceState); +QtObjectPtr QEventTransition_NewQEventTransition(QtObjectPtr sourceState); +QtObjectPtr QEventTransition_EventSource(QtObjectPtr ptr); +int QEventTransition_EventType(QtObjectPtr ptr); +void QEventTransition_SetEventSource(QtObjectPtr ptr, QtObjectPtr object); +void QEventTransition_SetEventType(QtObjectPtr ptr, int ty); +void QEventTransition_DestroyQEventTransition(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qexception.cpp b/core/qexception.cpp new file mode 100755 index 00000000..9423d224 --- /dev/null +++ b/core/qexception.cpp @@ -0,0 +1,20 @@ +#include "qexception.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQException: public QException { +public: +}; + +QtObjectPtr QException_Clone(QtObjectPtr ptr){ + return static_cast(ptr)->clone(); +} + +void QException_Raise(QtObjectPtr ptr){ + static_cast(ptr)->raise(); +} + diff --git a/core/qexception.go b/core/qexception.go new file mode 100755 index 00000000..825a2f1d --- /dev/null +++ b/core/qexception.go @@ -0,0 +1,53 @@ +package core + +//#include "qexception.h" +import "C" +import ( + "unsafe" +) + +type QException struct { + ptr unsafe.Pointer +} + +type QExceptionITF interface { + QExceptionPTR() *QException +} + +func (p *QException) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QException) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQException(ptr QExceptionITF) unsafe.Pointer { + if ptr != nil { + return ptr.QExceptionPTR().Pointer() + } + return nil +} + +func QExceptionFromPointer(ptr unsafe.Pointer) *QException { + var n = new(QException) + n.SetPointer(ptr) + return n +} + +func (ptr *QException) QExceptionPTR() *QException { + return ptr +} + +func (ptr *QException) Clone() *QException { + if ptr.Pointer() != nil { + return QExceptionFromPointer(unsafe.Pointer(C.QException_Clone(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QException) Raise() { + if ptr.Pointer() != nil { + C.QException_Raise(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qexception.h b/core/qexception.h new file mode 100755 index 00000000..b56656e4 --- /dev/null +++ b/core/qexception.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QException_Clone(QtObjectPtr ptr); +void QException_Raise(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qexplicitlyshareddatapointer.cpp b/core/qexplicitlyshareddatapointer.cpp new file mode 100755 index 00000000..da6d3e11 --- /dev/null +++ b/core/qexplicitlyshareddatapointer.cpp @@ -0,0 +1,8 @@ +#include "qexplicitlyshareddatapointer.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qexplicitlyshareddatapointer.go b/core/qexplicitlyshareddatapointer.go new file mode 100755 index 00000000..d856088d --- /dev/null +++ b/core/qexplicitlyshareddatapointer.go @@ -0,0 +1,40 @@ +package core + +//#include "qexplicitlyshareddatapointer.h" +import "C" +import ( + "unsafe" +) + +type QExplicitlySharedDataPointer struct { + ptr unsafe.Pointer +} + +type QExplicitlySharedDataPointerITF interface { + QExplicitlySharedDataPointerPTR() *QExplicitlySharedDataPointer +} + +func (p *QExplicitlySharedDataPointer) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QExplicitlySharedDataPointer) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQExplicitlySharedDataPointer(ptr QExplicitlySharedDataPointerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QExplicitlySharedDataPointerPTR().Pointer() + } + return nil +} + +func QExplicitlySharedDataPointerFromPointer(ptr unsafe.Pointer) *QExplicitlySharedDataPointer { + var n = new(QExplicitlySharedDataPointer) + n.SetPointer(ptr) + return n +} + +func (ptr *QExplicitlySharedDataPointer) QExplicitlySharedDataPointerPTR() *QExplicitlySharedDataPointer { + return ptr +} diff --git a/core/qexplicitlyshareddatapointer.h b/core/qexplicitlyshareddatapointer.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qexplicitlyshareddatapointer.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qfile.cpp b/core/qfile.cpp new file mode 100755 index 00000000..3782fcc0 --- /dev/null +++ b/core/qfile.cpp @@ -0,0 +1,112 @@ +#include "qfile.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQFile: public QFile { +public: +}; + +QtObjectPtr QFile_NewQFile3(QtObjectPtr parent){ + return new QFile(static_cast(parent)); +} + +QtObjectPtr QFile_NewQFile(char* name){ + return new QFile(QString(name)); +} + +QtObjectPtr QFile_NewQFile4(char* name, QtObjectPtr parent){ + return new QFile(QString(name), static_cast(parent)); +} + +int QFile_QFile_Copy2(char* fileName, char* newName){ + return QFile::copy(QString(fileName), QString(newName)); +} + +int QFile_Copy(QtObjectPtr ptr, char* newName){ + return static_cast(ptr)->copy(QString(newName)); +} + +char* QFile_QFile_DecodeName(QtObjectPtr localFileName){ + return QFile::decodeName(*static_cast(localFileName)).toUtf8().data(); +} + +char* QFile_QFile_DecodeName2(char* localFileName){ + return QFile::decodeName(const_cast(localFileName)).toUtf8().data(); +} + +int QFile_QFile_Exists(char* fileName){ + return QFile::exists(QString(fileName)); +} + +int QFile_Exists2(QtObjectPtr ptr){ + return static_cast(ptr)->exists(); +} + +char* QFile_FileName(QtObjectPtr ptr){ + return static_cast(ptr)->fileName().toUtf8().data(); +} + +int QFile_QFile_Link2(char* fileName, char* linkName){ + return QFile::link(QString(fileName), QString(linkName)); +} + +int QFile_Link(QtObjectPtr ptr, char* linkName){ + return static_cast(ptr)->link(QString(linkName)); +} + +int QFile_Open(QtObjectPtr ptr, int mode){ + return static_cast(ptr)->open(static_cast(mode)); +} + +int QFile_Open3(QtObjectPtr ptr, int fd, int mode, int handleFlags){ + return static_cast(ptr)->open(fd, static_cast(mode), static_cast(handleFlags)); +} + +int QFile_QFile_Permissions2(char* fileName){ + return QFile::permissions(QString(fileName)); +} + +int QFile_Permissions(QtObjectPtr ptr){ + return static_cast(ptr)->permissions(); +} + +int QFile_Rename(QtObjectPtr ptr, char* newName){ + return static_cast(ptr)->rename(QString(newName)); +} + +int QFile_QFile_Rename2(char* oldName, char* newName){ + return QFile::rename(QString(oldName), QString(newName)); +} + +void QFile_SetFileName(QtObjectPtr ptr, char* name){ + static_cast(ptr)->setFileName(QString(name)); +} + +int QFile_SetPermissions(QtObjectPtr ptr, int permissions){ + return static_cast(ptr)->setPermissions(static_cast(permissions)); +} + +int QFile_QFile_SetPermissions2(char* fileName, int permissions){ + return QFile::setPermissions(QString(fileName), static_cast(permissions)); +} + +char* QFile_QFile_SymLinkTarget(char* fileName){ + return QFile::symLinkTarget(QString(fileName)).toUtf8().data(); +} + +char* QFile_SymLinkTarget2(QtObjectPtr ptr){ + return static_cast(ptr)->symLinkTarget().toUtf8().data(); +} + +void QFile_DestroyQFile(QtObjectPtr ptr){ + static_cast(ptr)->~QFile(); +} + diff --git a/core/qfile.go b/core/qfile.go new file mode 100755 index 00000000..29788652 --- /dev/null +++ b/core/qfile.go @@ -0,0 +1,168 @@ +package core + +//#include "qfile.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QFile struct { + QFileDevice +} + +type QFileITF interface { + QFileDeviceITF + QFilePTR() *QFile +} + +func PointerFromQFile(ptr QFileITF) unsafe.Pointer { + if ptr != nil { + return ptr.QFilePTR().Pointer() + } + return nil +} + +func QFileFromPointer(ptr unsafe.Pointer) *QFile { + var n = new(QFile) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QFile_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QFile) QFilePTR() *QFile { + return ptr +} + +func NewQFile3(parent QObjectITF) *QFile { + return QFileFromPointer(unsafe.Pointer(C.QFile_NewQFile3(C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func NewQFile(name string) *QFile { + return QFileFromPointer(unsafe.Pointer(C.QFile_NewQFile(C.CString(name)))) +} + +func NewQFile4(name string, parent QObjectITF) *QFile { + return QFileFromPointer(unsafe.Pointer(C.QFile_NewQFile4(C.CString(name), C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func QFile_Copy2(fileName string, newName string) bool { + return C.QFile_QFile_Copy2(C.CString(fileName), C.CString(newName)) != 0 +} + +func (ptr *QFile) Copy(newName string) bool { + if ptr.Pointer() != nil { + return C.QFile_Copy(C.QtObjectPtr(ptr.Pointer()), C.CString(newName)) != 0 + } + return false +} + +func QFile_DecodeName(localFileName QByteArrayITF) string { + return C.GoString(C.QFile_QFile_DecodeName(C.QtObjectPtr(PointerFromQByteArray(localFileName)))) +} + +func QFile_DecodeName2(localFileName string) string { + return C.GoString(C.QFile_QFile_DecodeName2(C.CString(localFileName))) +} + +func QFile_Exists(fileName string) bool { + return C.QFile_QFile_Exists(C.CString(fileName)) != 0 +} + +func (ptr *QFile) Exists2() bool { + if ptr.Pointer() != nil { + return C.QFile_Exists2(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFile) FileName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFile_FileName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func QFile_Link2(fileName string, linkName string) bool { + return C.QFile_QFile_Link2(C.CString(fileName), C.CString(linkName)) != 0 +} + +func (ptr *QFile) Link(linkName string) bool { + if ptr.Pointer() != nil { + return C.QFile_Link(C.QtObjectPtr(ptr.Pointer()), C.CString(linkName)) != 0 + } + return false +} + +func (ptr *QFile) Open(mode QIODevice__OpenModeFlag) bool { + if ptr.Pointer() != nil { + return C.QFile_Open(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) != 0 + } + return false +} + +func (ptr *QFile) Open3(fd int, mode QIODevice__OpenModeFlag, handleFlags QFileDevice__FileHandleFlag) bool { + if ptr.Pointer() != nil { + return C.QFile_Open3(C.QtObjectPtr(ptr.Pointer()), C.int(fd), C.int(mode), C.int(handleFlags)) != 0 + } + return false +} + +func QFile_Permissions2(fileName string) QFileDevice__Permission { + return QFileDevice__Permission(C.QFile_QFile_Permissions2(C.CString(fileName))) +} + +func (ptr *QFile) Permissions() QFileDevice__Permission { + if ptr.Pointer() != nil { + return QFileDevice__Permission(C.QFile_Permissions(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFile) Rename(newName string) bool { + if ptr.Pointer() != nil { + return C.QFile_Rename(C.QtObjectPtr(ptr.Pointer()), C.CString(newName)) != 0 + } + return false +} + +func QFile_Rename2(oldName string, newName string) bool { + return C.QFile_QFile_Rename2(C.CString(oldName), C.CString(newName)) != 0 +} + +func (ptr *QFile) SetFileName(name string) { + if ptr.Pointer() != nil { + C.QFile_SetFileName(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func (ptr *QFile) SetPermissions(permissions QFileDevice__Permission) bool { + if ptr.Pointer() != nil { + return C.QFile_SetPermissions(C.QtObjectPtr(ptr.Pointer()), C.int(permissions)) != 0 + } + return false +} + +func QFile_SetPermissions2(fileName string, permissions QFileDevice__Permission) bool { + return C.QFile_QFile_SetPermissions2(C.CString(fileName), C.int(permissions)) != 0 +} + +func QFile_SymLinkTarget(fileName string) string { + return C.GoString(C.QFile_QFile_SymLinkTarget(C.CString(fileName))) +} + +func (ptr *QFile) SymLinkTarget2() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFile_SymLinkTarget2(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFile) DestroyQFile() { + if ptr.Pointer() != nil { + C.QFile_DestroyQFile(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qfile.h b/core/qfile.h new file mode 100755 index 00000000..51fb806b --- /dev/null +++ b/core/qfile.h @@ -0,0 +1,33 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QFile_NewQFile3(QtObjectPtr parent); +QtObjectPtr QFile_NewQFile(char* name); +QtObjectPtr QFile_NewQFile4(char* name, QtObjectPtr parent); +int QFile_QFile_Copy2(char* fileName, char* newName); +int QFile_Copy(QtObjectPtr ptr, char* newName); +char* QFile_QFile_DecodeName(QtObjectPtr localFileName); +char* QFile_QFile_DecodeName2(char* localFileName); +int QFile_QFile_Exists(char* fileName); +int QFile_Exists2(QtObjectPtr ptr); +char* QFile_FileName(QtObjectPtr ptr); +int QFile_QFile_Link2(char* fileName, char* linkName); +int QFile_Link(QtObjectPtr ptr, char* linkName); +int QFile_Open(QtObjectPtr ptr, int mode); +int QFile_Open3(QtObjectPtr ptr, int fd, int mode, int handleFlags); +int QFile_QFile_Permissions2(char* fileName); +int QFile_Permissions(QtObjectPtr ptr); +int QFile_Rename(QtObjectPtr ptr, char* newName); +int QFile_QFile_Rename2(char* oldName, char* newName); +void QFile_SetFileName(QtObjectPtr ptr, char* name); +int QFile_SetPermissions(QtObjectPtr ptr, int permissions); +int QFile_QFile_SetPermissions2(char* fileName, int permissions); +char* QFile_QFile_SymLinkTarget(char* fileName); +char* QFile_SymLinkTarget2(QtObjectPtr ptr); +void QFile_DestroyQFile(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qfiledevice.cpp b/core/qfiledevice.cpp new file mode 100755 index 00000000..91eb3d8c --- /dev/null +++ b/core/qfiledevice.cpp @@ -0,0 +1,57 @@ +#include "qfiledevice.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQFileDevice: public QFileDevice { +public: +}; + +int QFileDevice_AtEnd(QtObjectPtr ptr){ + return static_cast(ptr)->atEnd(); +} + +void QFileDevice_Close(QtObjectPtr ptr){ + static_cast(ptr)->close(); +} + +int QFileDevice_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +char* QFileDevice_FileName(QtObjectPtr ptr){ + return static_cast(ptr)->fileName().toUtf8().data(); +} + +int QFileDevice_Flush(QtObjectPtr ptr){ + return static_cast(ptr)->flush(); +} + +int QFileDevice_Handle(QtObjectPtr ptr){ + return static_cast(ptr)->handle(); +} + +int QFileDevice_IsSequential(QtObjectPtr ptr){ + return static_cast(ptr)->isSequential(); +} + +int QFileDevice_Permissions(QtObjectPtr ptr){ + return static_cast(ptr)->permissions(); +} + +int QFileDevice_SetPermissions(QtObjectPtr ptr, int permissions){ + return static_cast(ptr)->setPermissions(static_cast(permissions)); +} + +void QFileDevice_UnsetError(QtObjectPtr ptr){ + static_cast(ptr)->unsetError(); +} + +void QFileDevice_DestroyQFileDevice(QtObjectPtr ptr){ + static_cast(ptr)->~QFileDevice(); +} + diff --git a/core/qfiledevice.go b/core/qfiledevice.go new file mode 100755 index 00000000..b17d55a5 --- /dev/null +++ b/core/qfiledevice.go @@ -0,0 +1,167 @@ +package core + +//#include "qfiledevice.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QFileDevice struct { + QIODevice +} + +type QFileDeviceITF interface { + QIODeviceITF + QFileDevicePTR() *QFileDevice +} + +func PointerFromQFileDevice(ptr QFileDeviceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QFileDevicePTR().Pointer() + } + return nil +} + +func QFileDeviceFromPointer(ptr unsafe.Pointer) *QFileDevice { + var n = new(QFileDevice) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QFileDevice_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QFileDevice) QFileDevicePTR() *QFileDevice { + return ptr +} + +//QFileDevice::FileError +type QFileDevice__FileError int + +var ( + QFileDevice__NoError = QFileDevice__FileError(0) + QFileDevice__ReadError = QFileDevice__FileError(1) + QFileDevice__WriteError = QFileDevice__FileError(2) + QFileDevice__FatalError = QFileDevice__FileError(3) + QFileDevice__ResourceError = QFileDevice__FileError(4) + QFileDevice__OpenError = QFileDevice__FileError(5) + QFileDevice__AbortError = QFileDevice__FileError(6) + QFileDevice__TimeOutError = QFileDevice__FileError(7) + QFileDevice__UnspecifiedError = QFileDevice__FileError(8) + QFileDevice__RemoveError = QFileDevice__FileError(9) + QFileDevice__RenameError = QFileDevice__FileError(10) + QFileDevice__PositionError = QFileDevice__FileError(11) + QFileDevice__ResizeError = QFileDevice__FileError(12) + QFileDevice__PermissionsError = QFileDevice__FileError(13) + QFileDevice__CopyError = QFileDevice__FileError(14) +) + +//QFileDevice::FileHandleFlag +type QFileDevice__FileHandleFlag int + +var ( + QFileDevice__AutoCloseHandle = QFileDevice__FileHandleFlag(0x0001) + QFileDevice__DontCloseHandle = QFileDevice__FileHandleFlag(0) +) + +//QFileDevice::MemoryMapFlags +type QFileDevice__MemoryMapFlags int + +var ( + QFileDevice__NoOptions = QFileDevice__MemoryMapFlags(0) + QFileDevice__MapPrivateOption = QFileDevice__MemoryMapFlags(0x0001) +) + +//QFileDevice::Permission +type QFileDevice__Permission int + +var ( + QFileDevice__ReadOwner = QFileDevice__Permission(0x4000) + QFileDevice__WriteOwner = QFileDevice__Permission(0x2000) + QFileDevice__ExeOwner = QFileDevice__Permission(0x1000) + QFileDevice__ReadUser = QFileDevice__Permission(0x0400) + QFileDevice__WriteUser = QFileDevice__Permission(0x0200) + QFileDevice__ExeUser = QFileDevice__Permission(0x0100) + QFileDevice__ReadGroup = QFileDevice__Permission(0x0040) + QFileDevice__WriteGroup = QFileDevice__Permission(0x0020) + QFileDevice__ExeGroup = QFileDevice__Permission(0x0010) + QFileDevice__ReadOther = QFileDevice__Permission(0x0004) + QFileDevice__WriteOther = QFileDevice__Permission(0x0002) + QFileDevice__ExeOther = QFileDevice__Permission(0x0001) +) + +func (ptr *QFileDevice) AtEnd() bool { + if ptr.Pointer() != nil { + return C.QFileDevice_AtEnd(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFileDevice) Close() { + if ptr.Pointer() != nil { + C.QFileDevice_Close(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QFileDevice) Error() QFileDevice__FileError { + if ptr.Pointer() != nil { + return QFileDevice__FileError(C.QFileDevice_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFileDevice) FileName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileDevice_FileName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFileDevice) Flush() bool { + if ptr.Pointer() != nil { + return C.QFileDevice_Flush(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFileDevice) Handle() int { + if ptr.Pointer() != nil { + return int(C.QFileDevice_Handle(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFileDevice) IsSequential() bool { + if ptr.Pointer() != nil { + return C.QFileDevice_IsSequential(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFileDevice) Permissions() QFileDevice__Permission { + if ptr.Pointer() != nil { + return QFileDevice__Permission(C.QFileDevice_Permissions(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFileDevice) SetPermissions(permissions QFileDevice__Permission) bool { + if ptr.Pointer() != nil { + return C.QFileDevice_SetPermissions(C.QtObjectPtr(ptr.Pointer()), C.int(permissions)) != 0 + } + return false +} + +func (ptr *QFileDevice) UnsetError() { + if ptr.Pointer() != nil { + C.QFileDevice_UnsetError(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QFileDevice) DestroyQFileDevice() { + if ptr.Pointer() != nil { + C.QFileDevice_DestroyQFileDevice(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qfiledevice.h b/core/qfiledevice.h new file mode 100755 index 00000000..799d7746 --- /dev/null +++ b/core/qfiledevice.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QFileDevice_AtEnd(QtObjectPtr ptr); +void QFileDevice_Close(QtObjectPtr ptr); +int QFileDevice_Error(QtObjectPtr ptr); +char* QFileDevice_FileName(QtObjectPtr ptr); +int QFileDevice_Flush(QtObjectPtr ptr); +int QFileDevice_Handle(QtObjectPtr ptr); +int QFileDevice_IsSequential(QtObjectPtr ptr); +int QFileDevice_Permissions(QtObjectPtr ptr); +int QFileDevice_SetPermissions(QtObjectPtr ptr, int permissions); +void QFileDevice_UnsetError(QtObjectPtr ptr); +void QFileDevice_DestroyQFileDevice(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qfileinfo.cpp b/core/qfileinfo.cpp new file mode 100755 index 00000000..8be901ed --- /dev/null +++ b/core/qfileinfo.cpp @@ -0,0 +1,186 @@ +#include "qfileinfo.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQFileInfo: public QFileInfo { +public: +}; + +QtObjectPtr QFileInfo_NewQFileInfo(){ + return new QFileInfo(); +} + +QtObjectPtr QFileInfo_NewQFileInfo5(QtObjectPtr dir, char* file){ + return new QFileInfo(*static_cast(dir), QString(file)); +} + +QtObjectPtr QFileInfo_NewQFileInfo4(QtObjectPtr file){ + return new QFileInfo(*static_cast(file)); +} + +QtObjectPtr QFileInfo_NewQFileInfo6(QtObjectPtr fileinfo){ + return new QFileInfo(*static_cast(fileinfo)); +} + +QtObjectPtr QFileInfo_NewQFileInfo3(char* file){ + return new QFileInfo(QString(file)); +} + +char* QFileInfo_AbsoluteFilePath(QtObjectPtr ptr){ + return static_cast(ptr)->absoluteFilePath().toUtf8().data(); +} + +char* QFileInfo_AbsolutePath(QtObjectPtr ptr){ + return static_cast(ptr)->absolutePath().toUtf8().data(); +} + +char* QFileInfo_BaseName(QtObjectPtr ptr){ + return static_cast(ptr)->baseName().toUtf8().data(); +} + +char* QFileInfo_BundleName(QtObjectPtr ptr){ + return static_cast(ptr)->bundleName().toUtf8().data(); +} + +int QFileInfo_Caching(QtObjectPtr ptr){ + return static_cast(ptr)->caching(); +} + +char* QFileInfo_CanonicalFilePath(QtObjectPtr ptr){ + return static_cast(ptr)->canonicalFilePath().toUtf8().data(); +} + +char* QFileInfo_CanonicalPath(QtObjectPtr ptr){ + return static_cast(ptr)->canonicalPath().toUtf8().data(); +} + +char* QFileInfo_CompleteBaseName(QtObjectPtr ptr){ + return static_cast(ptr)->completeBaseName().toUtf8().data(); +} + +char* QFileInfo_CompleteSuffix(QtObjectPtr ptr){ + return static_cast(ptr)->completeSuffix().toUtf8().data(); +} + +int QFileInfo_QFileInfo_Exists2(char* file){ + return QFileInfo::exists(QString(file)); +} + +int QFileInfo_Exists(QtObjectPtr ptr){ + return static_cast(ptr)->exists(); +} + +char* QFileInfo_FileName(QtObjectPtr ptr){ + return static_cast(ptr)->fileName().toUtf8().data(); +} + +char* QFileInfo_FilePath(QtObjectPtr ptr){ + return static_cast(ptr)->filePath().toUtf8().data(); +} + +char* QFileInfo_Group(QtObjectPtr ptr){ + return static_cast(ptr)->group().toUtf8().data(); +} + +int QFileInfo_IsAbsolute(QtObjectPtr ptr){ + return static_cast(ptr)->isAbsolute(); +} + +int QFileInfo_IsBundle(QtObjectPtr ptr){ + return static_cast(ptr)->isBundle(); +} + +int QFileInfo_IsDir(QtObjectPtr ptr){ + return static_cast(ptr)->isDir(); +} + +int QFileInfo_IsExecutable(QtObjectPtr ptr){ + return static_cast(ptr)->isExecutable(); +} + +int QFileInfo_IsFile(QtObjectPtr ptr){ + return static_cast(ptr)->isFile(); +} + +int QFileInfo_IsHidden(QtObjectPtr ptr){ + return static_cast(ptr)->isHidden(); +} + +int QFileInfo_IsNativePath(QtObjectPtr ptr){ + return static_cast(ptr)->isNativePath(); +} + +int QFileInfo_IsReadable(QtObjectPtr ptr){ + return static_cast(ptr)->isReadable(); +} + +int QFileInfo_IsRelative(QtObjectPtr ptr){ + return static_cast(ptr)->isRelative(); +} + +int QFileInfo_IsRoot(QtObjectPtr ptr){ + return static_cast(ptr)->isRoot(); +} + +int QFileInfo_IsSymLink(QtObjectPtr ptr){ + return static_cast(ptr)->isSymLink(); +} + +int QFileInfo_IsWritable(QtObjectPtr ptr){ + return static_cast(ptr)->isWritable(); +} + +int QFileInfo_MakeAbsolute(QtObjectPtr ptr){ + return static_cast(ptr)->makeAbsolute(); +} + +char* QFileInfo_Owner(QtObjectPtr ptr){ + return static_cast(ptr)->owner().toUtf8().data(); +} + +char* QFileInfo_Path(QtObjectPtr ptr){ + return static_cast(ptr)->path().toUtf8().data(); +} + +void QFileInfo_Refresh(QtObjectPtr ptr){ + static_cast(ptr)->refresh(); +} + +void QFileInfo_SetCaching(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setCaching(enable != 0); +} + +void QFileInfo_SetFile3(QtObjectPtr ptr, QtObjectPtr dir, char* file){ + static_cast(ptr)->setFile(*static_cast(dir), QString(file)); +} + +void QFileInfo_SetFile2(QtObjectPtr ptr, QtObjectPtr file){ + static_cast(ptr)->setFile(*static_cast(file)); +} + +void QFileInfo_SetFile(QtObjectPtr ptr, char* file){ + static_cast(ptr)->setFile(QString(file)); +} + +char* QFileInfo_Suffix(QtObjectPtr ptr){ + return static_cast(ptr)->suffix().toUtf8().data(); +} + +void QFileInfo_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +char* QFileInfo_SymLinkTarget(QtObjectPtr ptr){ + return static_cast(ptr)->symLinkTarget().toUtf8().data(); +} + +void QFileInfo_DestroyQFileInfo(QtObjectPtr ptr){ + static_cast(ptr)->~QFileInfo(); +} + diff --git a/core/qfileinfo.go b/core/qfileinfo.go new file mode 100755 index 00000000..25e58d1f --- /dev/null +++ b/core/qfileinfo.go @@ -0,0 +1,317 @@ +package core + +//#include "qfileinfo.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QFileInfo struct { + ptr unsafe.Pointer +} + +type QFileInfoITF interface { + QFileInfoPTR() *QFileInfo +} + +func (p *QFileInfo) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QFileInfo) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQFileInfo(ptr QFileInfoITF) unsafe.Pointer { + if ptr != nil { + return ptr.QFileInfoPTR().Pointer() + } + return nil +} + +func QFileInfoFromPointer(ptr unsafe.Pointer) *QFileInfo { + var n = new(QFileInfo) + n.SetPointer(ptr) + return n +} + +func (ptr *QFileInfo) QFileInfoPTR() *QFileInfo { + return ptr +} + +func NewQFileInfo() *QFileInfo { + return QFileInfoFromPointer(unsafe.Pointer(C.QFileInfo_NewQFileInfo())) +} + +func NewQFileInfo5(dir QDirITF, file string) *QFileInfo { + return QFileInfoFromPointer(unsafe.Pointer(C.QFileInfo_NewQFileInfo5(C.QtObjectPtr(PointerFromQDir(dir)), C.CString(file)))) +} + +func NewQFileInfo4(file QFileITF) *QFileInfo { + return QFileInfoFromPointer(unsafe.Pointer(C.QFileInfo_NewQFileInfo4(C.QtObjectPtr(PointerFromQFile(file))))) +} + +func NewQFileInfo6(fileinfo QFileInfoITF) *QFileInfo { + return QFileInfoFromPointer(unsafe.Pointer(C.QFileInfo_NewQFileInfo6(C.QtObjectPtr(PointerFromQFileInfo(fileinfo))))) +} + +func NewQFileInfo3(file string) *QFileInfo { + return QFileInfoFromPointer(unsafe.Pointer(C.QFileInfo_NewQFileInfo3(C.CString(file)))) +} + +func (ptr *QFileInfo) AbsoluteFilePath() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileInfo_AbsoluteFilePath(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFileInfo) AbsolutePath() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileInfo_AbsolutePath(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFileInfo) BaseName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileInfo_BaseName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFileInfo) BundleName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileInfo_BundleName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFileInfo) Caching() bool { + if ptr.Pointer() != nil { + return C.QFileInfo_Caching(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFileInfo) CanonicalFilePath() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileInfo_CanonicalFilePath(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFileInfo) CanonicalPath() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileInfo_CanonicalPath(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFileInfo) CompleteBaseName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileInfo_CompleteBaseName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFileInfo) CompleteSuffix() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileInfo_CompleteSuffix(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func QFileInfo_Exists2(file string) bool { + return C.QFileInfo_QFileInfo_Exists2(C.CString(file)) != 0 +} + +func (ptr *QFileInfo) Exists() bool { + if ptr.Pointer() != nil { + return C.QFileInfo_Exists(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFileInfo) FileName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileInfo_FileName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFileInfo) FilePath() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileInfo_FilePath(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFileInfo) Group() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileInfo_Group(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFileInfo) IsAbsolute() bool { + if ptr.Pointer() != nil { + return C.QFileInfo_IsAbsolute(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFileInfo) IsBundle() bool { + if ptr.Pointer() != nil { + return C.QFileInfo_IsBundle(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFileInfo) IsDir() bool { + if ptr.Pointer() != nil { + return C.QFileInfo_IsDir(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFileInfo) IsExecutable() bool { + if ptr.Pointer() != nil { + return C.QFileInfo_IsExecutable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFileInfo) IsFile() bool { + if ptr.Pointer() != nil { + return C.QFileInfo_IsFile(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFileInfo) IsHidden() bool { + if ptr.Pointer() != nil { + return C.QFileInfo_IsHidden(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFileInfo) IsNativePath() bool { + if ptr.Pointer() != nil { + return C.QFileInfo_IsNativePath(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFileInfo) IsReadable() bool { + if ptr.Pointer() != nil { + return C.QFileInfo_IsReadable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFileInfo) IsRelative() bool { + if ptr.Pointer() != nil { + return C.QFileInfo_IsRelative(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFileInfo) IsRoot() bool { + if ptr.Pointer() != nil { + return C.QFileInfo_IsRoot(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFileInfo) IsSymLink() bool { + if ptr.Pointer() != nil { + return C.QFileInfo_IsSymLink(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFileInfo) IsWritable() bool { + if ptr.Pointer() != nil { + return C.QFileInfo_IsWritable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFileInfo) MakeAbsolute() bool { + if ptr.Pointer() != nil { + return C.QFileInfo_MakeAbsolute(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFileInfo) Owner() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileInfo_Owner(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFileInfo) Path() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileInfo_Path(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFileInfo) Refresh() { + if ptr.Pointer() != nil { + C.QFileInfo_Refresh(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QFileInfo) SetCaching(enable bool) { + if ptr.Pointer() != nil { + C.QFileInfo_SetCaching(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QFileInfo) SetFile3(dir QDirITF, file string) { + if ptr.Pointer() != nil { + C.QFileInfo_SetFile3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDir(dir)), C.CString(file)) + } +} + +func (ptr *QFileInfo) SetFile2(file QFileITF) { + if ptr.Pointer() != nil { + C.QFileInfo_SetFile2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQFile(file))) + } +} + +func (ptr *QFileInfo) SetFile(file string) { + if ptr.Pointer() != nil { + C.QFileInfo_SetFile(C.QtObjectPtr(ptr.Pointer()), C.CString(file)) + } +} + +func (ptr *QFileInfo) Suffix() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileInfo_Suffix(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFileInfo) Swap(other QFileInfoITF) { + if ptr.Pointer() != nil { + C.QFileInfo_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQFileInfo(other))) + } +} + +func (ptr *QFileInfo) SymLinkTarget() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileInfo_SymLinkTarget(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFileInfo) DestroyQFileInfo() { + if ptr.Pointer() != nil { + C.QFileInfo_DestroyQFileInfo(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qfileinfo.h b/core/qfileinfo.h new file mode 100755 index 00000000..32612002 --- /dev/null +++ b/core/qfileinfo.h @@ -0,0 +1,52 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QFileInfo_NewQFileInfo(); +QtObjectPtr QFileInfo_NewQFileInfo5(QtObjectPtr dir, char* file); +QtObjectPtr QFileInfo_NewQFileInfo4(QtObjectPtr file); +QtObjectPtr QFileInfo_NewQFileInfo6(QtObjectPtr fileinfo); +QtObjectPtr QFileInfo_NewQFileInfo3(char* file); +char* QFileInfo_AbsoluteFilePath(QtObjectPtr ptr); +char* QFileInfo_AbsolutePath(QtObjectPtr ptr); +char* QFileInfo_BaseName(QtObjectPtr ptr); +char* QFileInfo_BundleName(QtObjectPtr ptr); +int QFileInfo_Caching(QtObjectPtr ptr); +char* QFileInfo_CanonicalFilePath(QtObjectPtr ptr); +char* QFileInfo_CanonicalPath(QtObjectPtr ptr); +char* QFileInfo_CompleteBaseName(QtObjectPtr ptr); +char* QFileInfo_CompleteSuffix(QtObjectPtr ptr); +int QFileInfo_QFileInfo_Exists2(char* file); +int QFileInfo_Exists(QtObjectPtr ptr); +char* QFileInfo_FileName(QtObjectPtr ptr); +char* QFileInfo_FilePath(QtObjectPtr ptr); +char* QFileInfo_Group(QtObjectPtr ptr); +int QFileInfo_IsAbsolute(QtObjectPtr ptr); +int QFileInfo_IsBundle(QtObjectPtr ptr); +int QFileInfo_IsDir(QtObjectPtr ptr); +int QFileInfo_IsExecutable(QtObjectPtr ptr); +int QFileInfo_IsFile(QtObjectPtr ptr); +int QFileInfo_IsHidden(QtObjectPtr ptr); +int QFileInfo_IsNativePath(QtObjectPtr ptr); +int QFileInfo_IsReadable(QtObjectPtr ptr); +int QFileInfo_IsRelative(QtObjectPtr ptr); +int QFileInfo_IsRoot(QtObjectPtr ptr); +int QFileInfo_IsSymLink(QtObjectPtr ptr); +int QFileInfo_IsWritable(QtObjectPtr ptr); +int QFileInfo_MakeAbsolute(QtObjectPtr ptr); +char* QFileInfo_Owner(QtObjectPtr ptr); +char* QFileInfo_Path(QtObjectPtr ptr); +void QFileInfo_Refresh(QtObjectPtr ptr); +void QFileInfo_SetCaching(QtObjectPtr ptr, int enable); +void QFileInfo_SetFile3(QtObjectPtr ptr, QtObjectPtr dir, char* file); +void QFileInfo_SetFile2(QtObjectPtr ptr, QtObjectPtr file); +void QFileInfo_SetFile(QtObjectPtr ptr, char* file); +char* QFileInfo_Suffix(QtObjectPtr ptr); +void QFileInfo_Swap(QtObjectPtr ptr, QtObjectPtr other); +char* QFileInfo_SymLinkTarget(QtObjectPtr ptr); +void QFileInfo_DestroyQFileInfo(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qfileselector.cpp b/core/qfileselector.cpp new file mode 100755 index 00000000..b8ab1b87 --- /dev/null +++ b/core/qfileselector.cpp @@ -0,0 +1,42 @@ +#include "qfileselector.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQFileSelector: public QFileSelector { +public: +}; + +QtObjectPtr QFileSelector_NewQFileSelector(QtObjectPtr parent){ + return new QFileSelector(static_cast(parent)); +} + +char* QFileSelector_AllSelectors(QtObjectPtr ptr){ + return static_cast(ptr)->allSelectors().join("|").toUtf8().data(); +} + +char* QFileSelector_ExtraSelectors(QtObjectPtr ptr){ + return static_cast(ptr)->extraSelectors().join("|").toUtf8().data(); +} + +char* QFileSelector_Select(QtObjectPtr ptr, char* filePath){ + return static_cast(ptr)->select(QString(filePath)).toUtf8().data(); +} + +char* QFileSelector_Select2(QtObjectPtr ptr, char* filePath){ + return static_cast(ptr)->select(QUrl(QString(filePath))).toString().toUtf8().data(); +} + +void QFileSelector_SetExtraSelectors(QtObjectPtr ptr, char* list){ + static_cast(ptr)->setExtraSelectors(QString(list).split("|", QString::SkipEmptyParts)); +} + +void QFileSelector_DestroyQFileSelector(QtObjectPtr ptr){ + static_cast(ptr)->~QFileSelector(); +} + diff --git a/core/qfileselector.go b/core/qfileselector.go new file mode 100755 index 00000000..c032f3be --- /dev/null +++ b/core/qfileselector.go @@ -0,0 +1,83 @@ +package core + +//#include "qfileselector.h" +import "C" +import ( + "github.com/therecipe/qt" + "strings" + "unsafe" +) + +type QFileSelector struct { + QObject +} + +type QFileSelectorITF interface { + QObjectITF + QFileSelectorPTR() *QFileSelector +} + +func PointerFromQFileSelector(ptr QFileSelectorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QFileSelectorPTR().Pointer() + } + return nil +} + +func QFileSelectorFromPointer(ptr unsafe.Pointer) *QFileSelector { + var n = new(QFileSelector) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QFileSelector_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QFileSelector) QFileSelectorPTR() *QFileSelector { + return ptr +} + +func NewQFileSelector(parent QObjectITF) *QFileSelector { + return QFileSelectorFromPointer(unsafe.Pointer(C.QFileSelector_NewQFileSelector(C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func (ptr *QFileSelector) AllSelectors() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QFileSelector_AllSelectors(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QFileSelector) ExtraSelectors() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QFileSelector_ExtraSelectors(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QFileSelector) Select(filePath string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileSelector_Select(C.QtObjectPtr(ptr.Pointer()), C.CString(filePath))) + } + return "" +} + +func (ptr *QFileSelector) Select2(filePath string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileSelector_Select2(C.QtObjectPtr(ptr.Pointer()), C.CString(filePath))) + } + return "" +} + +func (ptr *QFileSelector) SetExtraSelectors(list []string) { + if ptr.Pointer() != nil { + C.QFileSelector_SetExtraSelectors(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(list, "|"))) + } +} + +func (ptr *QFileSelector) DestroyQFileSelector() { + if ptr.Pointer() != nil { + C.QFileSelector_DestroyQFileSelector(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qfileselector.h b/core/qfileselector.h new file mode 100755 index 00000000..656aa573 --- /dev/null +++ b/core/qfileselector.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QFileSelector_NewQFileSelector(QtObjectPtr parent); +char* QFileSelector_AllSelectors(QtObjectPtr ptr); +char* QFileSelector_ExtraSelectors(QtObjectPtr ptr); +char* QFileSelector_Select(QtObjectPtr ptr, char* filePath); +char* QFileSelector_Select2(QtObjectPtr ptr, char* filePath); +void QFileSelector_SetExtraSelectors(QtObjectPtr ptr, char* list); +void QFileSelector_DestroyQFileSelector(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qfilesystemwatcher.cpp b/core/qfilesystemwatcher.cpp new file mode 100755 index 00000000..40890db6 --- /dev/null +++ b/core/qfilesystemwatcher.cpp @@ -0,0 +1,68 @@ +#include "qfilesystemwatcher.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQFileSystemWatcher: public QFileSystemWatcher { +public: +void Signal_DirectoryChanged(const QString & path){callbackQFileSystemWatcherDirectoryChanged(this->objectName().toUtf8().data(), path.toUtf8().data());}; +void Signal_FileChanged(const QString & path){callbackQFileSystemWatcherFileChanged(this->objectName().toUtf8().data(), path.toUtf8().data());}; +}; + +char* QFileSystemWatcher_Directories(QtObjectPtr ptr){ + return static_cast(ptr)->directories().join("|").toUtf8().data(); +} + +char* QFileSystemWatcher_Files(QtObjectPtr ptr){ + return static_cast(ptr)->files().join("|").toUtf8().data(); +} + +QtObjectPtr QFileSystemWatcher_NewQFileSystemWatcher(QtObjectPtr parent){ + return new QFileSystemWatcher(static_cast(parent)); +} + +QtObjectPtr QFileSystemWatcher_NewQFileSystemWatcher2(char* paths, QtObjectPtr parent){ + return new QFileSystemWatcher(QString(paths).split("|", QString::SkipEmptyParts), static_cast(parent)); +} + +int QFileSystemWatcher_AddPath(QtObjectPtr ptr, char* path){ + return static_cast(ptr)->addPath(QString(path)); +} + +char* QFileSystemWatcher_AddPaths(QtObjectPtr ptr, char* paths){ + return static_cast(ptr)->addPaths(QString(paths).split("|", QString::SkipEmptyParts)).join("|").toUtf8().data(); +} + +void QFileSystemWatcher_ConnectDirectoryChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QFileSystemWatcher::directoryChanged, static_cast(ptr), static_cast(&MyQFileSystemWatcher::Signal_DirectoryChanged));; +} + +void QFileSystemWatcher_DisconnectDirectoryChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QFileSystemWatcher::directoryChanged, static_cast(ptr), static_cast(&MyQFileSystemWatcher::Signal_DirectoryChanged));; +} + +void QFileSystemWatcher_ConnectFileChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QFileSystemWatcher::fileChanged, static_cast(ptr), static_cast(&MyQFileSystemWatcher::Signal_FileChanged));; +} + +void QFileSystemWatcher_DisconnectFileChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QFileSystemWatcher::fileChanged, static_cast(ptr), static_cast(&MyQFileSystemWatcher::Signal_FileChanged));; +} + +int QFileSystemWatcher_RemovePath(QtObjectPtr ptr, char* path){ + return static_cast(ptr)->removePath(QString(path)); +} + +char* QFileSystemWatcher_RemovePaths(QtObjectPtr ptr, char* paths){ + return static_cast(ptr)->removePaths(QString(paths).split("|", QString::SkipEmptyParts)).join("|").toUtf8().data(); +} + +void QFileSystemWatcher_DestroyQFileSystemWatcher(QtObjectPtr ptr){ + static_cast(ptr)->~QFileSystemWatcher(); +} + diff --git a/core/qfilesystemwatcher.go b/core/qfilesystemwatcher.go new file mode 100755 index 00000000..25bdb1e8 --- /dev/null +++ b/core/qfilesystemwatcher.go @@ -0,0 +1,133 @@ +package core + +//#include "qfilesystemwatcher.h" +import "C" +import ( + "github.com/therecipe/qt" + "strings" + "unsafe" +) + +type QFileSystemWatcher struct { + QObject +} + +type QFileSystemWatcherITF interface { + QObjectITF + QFileSystemWatcherPTR() *QFileSystemWatcher +} + +func PointerFromQFileSystemWatcher(ptr QFileSystemWatcherITF) unsafe.Pointer { + if ptr != nil { + return ptr.QFileSystemWatcherPTR().Pointer() + } + return nil +} + +func QFileSystemWatcherFromPointer(ptr unsafe.Pointer) *QFileSystemWatcher { + var n = new(QFileSystemWatcher) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QFileSystemWatcher_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QFileSystemWatcher) QFileSystemWatcherPTR() *QFileSystemWatcher { + return ptr +} + +func (ptr *QFileSystemWatcher) Directories() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QFileSystemWatcher_Directories(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QFileSystemWatcher) Files() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QFileSystemWatcher_Files(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func NewQFileSystemWatcher(parent QObjectITF) *QFileSystemWatcher { + return QFileSystemWatcherFromPointer(unsafe.Pointer(C.QFileSystemWatcher_NewQFileSystemWatcher(C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func NewQFileSystemWatcher2(paths []string, parent QObjectITF) *QFileSystemWatcher { + return QFileSystemWatcherFromPointer(unsafe.Pointer(C.QFileSystemWatcher_NewQFileSystemWatcher2(C.CString(strings.Join(paths, "|")), C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func (ptr *QFileSystemWatcher) AddPath(path string) bool { + if ptr.Pointer() != nil { + return C.QFileSystemWatcher_AddPath(C.QtObjectPtr(ptr.Pointer()), C.CString(path)) != 0 + } + return false +} + +func (ptr *QFileSystemWatcher) AddPaths(paths []string) []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QFileSystemWatcher_AddPaths(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(paths, "|")))), "|") + } + return make([]string, 0) +} + +func (ptr *QFileSystemWatcher) ConnectDirectoryChanged(f func(path string)) { + if ptr.Pointer() != nil { + C.QFileSystemWatcher_ConnectDirectoryChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "directoryChanged", f) + } +} + +func (ptr *QFileSystemWatcher) DisconnectDirectoryChanged() { + if ptr.Pointer() != nil { + C.QFileSystemWatcher_DisconnectDirectoryChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "directoryChanged") + } +} + +//export callbackQFileSystemWatcherDirectoryChanged +func callbackQFileSystemWatcherDirectoryChanged(ptrName *C.char, path *C.char) { + qt.GetSignal(C.GoString(ptrName), "directoryChanged").(func(string))(C.GoString(path)) +} + +func (ptr *QFileSystemWatcher) ConnectFileChanged(f func(path string)) { + if ptr.Pointer() != nil { + C.QFileSystemWatcher_ConnectFileChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "fileChanged", f) + } +} + +func (ptr *QFileSystemWatcher) DisconnectFileChanged() { + if ptr.Pointer() != nil { + C.QFileSystemWatcher_DisconnectFileChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "fileChanged") + } +} + +//export callbackQFileSystemWatcherFileChanged +func callbackQFileSystemWatcherFileChanged(ptrName *C.char, path *C.char) { + qt.GetSignal(C.GoString(ptrName), "fileChanged").(func(string))(C.GoString(path)) +} + +func (ptr *QFileSystemWatcher) RemovePath(path string) bool { + if ptr.Pointer() != nil { + return C.QFileSystemWatcher_RemovePath(C.QtObjectPtr(ptr.Pointer()), C.CString(path)) != 0 + } + return false +} + +func (ptr *QFileSystemWatcher) RemovePaths(paths []string) []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QFileSystemWatcher_RemovePaths(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(paths, "|")))), "|") + } + return make([]string, 0) +} + +func (ptr *QFileSystemWatcher) DestroyQFileSystemWatcher() { + if ptr.Pointer() != nil { + C.QFileSystemWatcher_DestroyQFileSystemWatcher(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qfilesystemwatcher.h b/core/qfilesystemwatcher.h new file mode 100755 index 00000000..e6e983f6 --- /dev/null +++ b/core/qfilesystemwatcher.h @@ -0,0 +1,22 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QFileSystemWatcher_Directories(QtObjectPtr ptr); +char* QFileSystemWatcher_Files(QtObjectPtr ptr); +QtObjectPtr QFileSystemWatcher_NewQFileSystemWatcher(QtObjectPtr parent); +QtObjectPtr QFileSystemWatcher_NewQFileSystemWatcher2(char* paths, QtObjectPtr parent); +int QFileSystemWatcher_AddPath(QtObjectPtr ptr, char* path); +char* QFileSystemWatcher_AddPaths(QtObjectPtr ptr, char* paths); +void QFileSystemWatcher_ConnectDirectoryChanged(QtObjectPtr ptr); +void QFileSystemWatcher_DisconnectDirectoryChanged(QtObjectPtr ptr); +void QFileSystemWatcher_ConnectFileChanged(QtObjectPtr ptr); +void QFileSystemWatcher_DisconnectFileChanged(QtObjectPtr ptr); +int QFileSystemWatcher_RemovePath(QtObjectPtr ptr, char* path); +char* QFileSystemWatcher_RemovePaths(QtObjectPtr ptr, char* paths); +void QFileSystemWatcher_DestroyQFileSystemWatcher(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qfinalstate.cpp b/core/qfinalstate.cpp new file mode 100755 index 00000000..5e9e1a34 --- /dev/null +++ b/core/qfinalstate.cpp @@ -0,0 +1,21 @@ +#include "qfinalstate.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQFinalState: public QFinalState { +public: +}; + +QtObjectPtr QFinalState_NewQFinalState(QtObjectPtr parent){ + return new QFinalState(static_cast(parent)); +} + +void QFinalState_DestroyQFinalState(QtObjectPtr ptr){ + static_cast(ptr)->~QFinalState(); +} + diff --git a/core/qfinalstate.go b/core/qfinalstate.go new file mode 100755 index 00000000..ba09a582 --- /dev/null +++ b/core/qfinalstate.go @@ -0,0 +1,48 @@ +package core + +//#include "qfinalstate.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QFinalState struct { + QAbstractState +} + +type QFinalStateITF interface { + QAbstractStateITF + QFinalStatePTR() *QFinalState +} + +func PointerFromQFinalState(ptr QFinalStateITF) unsafe.Pointer { + if ptr != nil { + return ptr.QFinalStatePTR().Pointer() + } + return nil +} + +func QFinalStateFromPointer(ptr unsafe.Pointer) *QFinalState { + var n = new(QFinalState) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QFinalState_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QFinalState) QFinalStatePTR() *QFinalState { + return ptr +} + +func NewQFinalState(parent QStateITF) *QFinalState { + return QFinalStateFromPointer(unsafe.Pointer(C.QFinalState_NewQFinalState(C.QtObjectPtr(PointerFromQState(parent))))) +} + +func (ptr *QFinalState) DestroyQFinalState() { + if ptr.Pointer() != nil { + C.QFinalState_DestroyQFinalState(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qfinalstate.h b/core/qfinalstate.h new file mode 100755 index 00000000..5734c7f9 --- /dev/null +++ b/core/qfinalstate.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QFinalState_NewQFinalState(QtObjectPtr parent); +void QFinalState_DestroyQFinalState(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qflag.cpp b/core/qflag.cpp new file mode 100755 index 00000000..9ebfa84e --- /dev/null +++ b/core/qflag.cpp @@ -0,0 +1,16 @@ +#include "qflag.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQFlag: public QFlag { +public: +}; + +QtObjectPtr QFlag_NewQFlag(int value){ + return new QFlag(value); +} + diff --git a/core/qflag.go b/core/qflag.go new file mode 100755 index 00000000..1b9335f0 --- /dev/null +++ b/core/qflag.go @@ -0,0 +1,44 @@ +package core + +//#include "qflag.h" +import "C" +import ( + "unsafe" +) + +type QFlag struct { + ptr unsafe.Pointer +} + +type QFlagITF interface { + QFlagPTR() *QFlag +} + +func (p *QFlag) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QFlag) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQFlag(ptr QFlagITF) unsafe.Pointer { + if ptr != nil { + return ptr.QFlagPTR().Pointer() + } + return nil +} + +func QFlagFromPointer(ptr unsafe.Pointer) *QFlag { + var n = new(QFlag) + n.SetPointer(ptr) + return n +} + +func (ptr *QFlag) QFlagPTR() *QFlag { + return ptr +} + +func NewQFlag(value int) *QFlag { + return QFlagFromPointer(unsafe.Pointer(C.QFlag_NewQFlag(C.int(value)))) +} diff --git a/core/qflag.h b/core/qflag.h new file mode 100755 index 00000000..d0500819 --- /dev/null +++ b/core/qflag.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QFlag_NewQFlag(int value); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qflags.cpp b/core/qflags.cpp new file mode 100755 index 00000000..63d0a9a7 --- /dev/null +++ b/core/qflags.cpp @@ -0,0 +1,9 @@ +#include "qflags.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qflags.go b/core/qflags.go new file mode 100755 index 00000000..cca626e5 --- /dev/null +++ b/core/qflags.go @@ -0,0 +1,40 @@ +package core + +//#include "qflags.h" +import "C" +import ( + "unsafe" +) + +type QFlags struct { + ptr unsafe.Pointer +} + +type QFlagsITF interface { + QFlagsPTR() *QFlags +} + +func (p *QFlags) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QFlags) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQFlags(ptr QFlagsITF) unsafe.Pointer { + if ptr != nil { + return ptr.QFlagsPTR().Pointer() + } + return nil +} + +func QFlagsFromPointer(ptr unsafe.Pointer) *QFlags { + var n = new(QFlags) + n.SetPointer(ptr) + return n +} + +func (ptr *QFlags) QFlagsPTR() *QFlags { + return ptr +} diff --git a/core/qflags.h b/core/qflags.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qflags.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qfuture.cpp b/core/qfuture.cpp new file mode 100755 index 00000000..cbbb7f51 --- /dev/null +++ b/core/qfuture.cpp @@ -0,0 +1,8 @@ +#include "qfuture.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qfuture.go b/core/qfuture.go new file mode 100755 index 00000000..f46787c9 --- /dev/null +++ b/core/qfuture.go @@ -0,0 +1,40 @@ +package core + +//#include "qfuture.h" +import "C" +import ( + "unsafe" +) + +type QFuture struct { + ptr unsafe.Pointer +} + +type QFutureITF interface { + QFuturePTR() *QFuture +} + +func (p *QFuture) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QFuture) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQFuture(ptr QFutureITF) unsafe.Pointer { + if ptr != nil { + return ptr.QFuturePTR().Pointer() + } + return nil +} + +func QFutureFromPointer(ptr unsafe.Pointer) *QFuture { + var n = new(QFuture) + n.SetPointer(ptr) + return n +} + +func (ptr *QFuture) QFuturePTR() *QFuture { + return ptr +} diff --git a/core/qfuture.h b/core/qfuture.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qfuture.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qfutureiterator.cpp b/core/qfutureiterator.cpp new file mode 100755 index 00000000..aa54e22c --- /dev/null +++ b/core/qfutureiterator.cpp @@ -0,0 +1,9 @@ +#include "qfutureiterator.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qfutureiterator.go b/core/qfutureiterator.go new file mode 100755 index 00000000..f773c451 --- /dev/null +++ b/core/qfutureiterator.go @@ -0,0 +1,40 @@ +package core + +//#include "qfutureiterator.h" +import "C" +import ( + "unsafe" +) + +type QFutureIterator struct { + ptr unsafe.Pointer +} + +type QFutureIteratorITF interface { + QFutureIteratorPTR() *QFutureIterator +} + +func (p *QFutureIterator) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QFutureIterator) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQFutureIterator(ptr QFutureIteratorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QFutureIteratorPTR().Pointer() + } + return nil +} + +func QFutureIteratorFromPointer(ptr unsafe.Pointer) *QFutureIterator { + var n = new(QFutureIterator) + n.SetPointer(ptr) + return n +} + +func (ptr *QFutureIterator) QFutureIteratorPTR() *QFutureIterator { + return ptr +} diff --git a/core/qfutureiterator.h b/core/qfutureiterator.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qfutureiterator.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qfuturesynchronizer.cpp b/core/qfuturesynchronizer.cpp new file mode 100755 index 00000000..491d1b66 --- /dev/null +++ b/core/qfuturesynchronizer.cpp @@ -0,0 +1,9 @@ +#include "qfuturesynchronizer.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qfuturesynchronizer.go b/core/qfuturesynchronizer.go new file mode 100755 index 00000000..cfe3f158 --- /dev/null +++ b/core/qfuturesynchronizer.go @@ -0,0 +1,40 @@ +package core + +//#include "qfuturesynchronizer.h" +import "C" +import ( + "unsafe" +) + +type QFutureSynchronizer struct { + ptr unsafe.Pointer +} + +type QFutureSynchronizerITF interface { + QFutureSynchronizerPTR() *QFutureSynchronizer +} + +func (p *QFutureSynchronizer) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QFutureSynchronizer) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQFutureSynchronizer(ptr QFutureSynchronizerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QFutureSynchronizerPTR().Pointer() + } + return nil +} + +func QFutureSynchronizerFromPointer(ptr unsafe.Pointer) *QFutureSynchronizer { + var n = new(QFutureSynchronizer) + n.SetPointer(ptr) + return n +} + +func (ptr *QFutureSynchronizer) QFutureSynchronizerPTR() *QFutureSynchronizer { + return ptr +} diff --git a/core/qfuturesynchronizer.h b/core/qfuturesynchronizer.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qfuturesynchronizer.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qfuturewatcher.cpp b/core/qfuturewatcher.cpp new file mode 100755 index 00000000..48254f92 --- /dev/null +++ b/core/qfuturewatcher.cpp @@ -0,0 +1,9 @@ +#include "qfuturewatcher.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qfuturewatcher.go b/core/qfuturewatcher.go new file mode 100755 index 00000000..eb73ba01 --- /dev/null +++ b/core/qfuturewatcher.go @@ -0,0 +1,37 @@ +package core + +//#include "qfuturewatcher.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QFutureWatcher struct { + QObject +} + +type QFutureWatcherITF interface { + QObjectITF + QFutureWatcherPTR() *QFutureWatcher +} + +func PointerFromQFutureWatcher(ptr QFutureWatcherITF) unsafe.Pointer { + if ptr != nil { + return ptr.QFutureWatcherPTR().Pointer() + } + return nil +} + +func QFutureWatcherFromPointer(ptr unsafe.Pointer) *QFutureWatcher { + var n = new(QFutureWatcher) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QFutureWatcher_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QFutureWatcher) QFutureWatcherPTR() *QFutureWatcher { + return ptr +} diff --git a/core/qfuturewatcher.h b/core/qfuturewatcher.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qfuturewatcher.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qgenericargument.cpp b/core/qgenericargument.cpp new file mode 100755 index 00000000..93adad83 --- /dev/null +++ b/core/qgenericargument.cpp @@ -0,0 +1,16 @@ +#include "qgenericargument.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGenericArgument: public QGenericArgument { +public: +}; + +void QGenericArgument_Data(QtObjectPtr ptr){ + static_cast(ptr)->data(); +} + diff --git a/core/qgenericargument.go b/core/qgenericargument.go new file mode 100755 index 00000000..6fe2eeba --- /dev/null +++ b/core/qgenericargument.go @@ -0,0 +1,46 @@ +package core + +//#include "qgenericargument.h" +import "C" +import ( + "unsafe" +) + +type QGenericArgument struct { + ptr unsafe.Pointer +} + +type QGenericArgumentITF interface { + QGenericArgumentPTR() *QGenericArgument +} + +func (p *QGenericArgument) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QGenericArgument) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQGenericArgument(ptr QGenericArgumentITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGenericArgumentPTR().Pointer() + } + return nil +} + +func QGenericArgumentFromPointer(ptr unsafe.Pointer) *QGenericArgument { + var n = new(QGenericArgument) + n.SetPointer(ptr) + return n +} + +func (ptr *QGenericArgument) QGenericArgumentPTR() *QGenericArgument { + return ptr +} + +func (ptr *QGenericArgument) Data() { + if ptr.Pointer() != nil { + C.QGenericArgument_Data(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qgenericargument.h b/core/qgenericargument.h new file mode 100755 index 00000000..44e3e7bf --- /dev/null +++ b/core/qgenericargument.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QGenericArgument_Data(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qgenericreturnargument.cpp b/core/qgenericreturnargument.cpp new file mode 100755 index 00000000..c7734cab --- /dev/null +++ b/core/qgenericreturnargument.cpp @@ -0,0 +1,12 @@ +#include "qgenericreturnargument.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGenericReturnArgument: public QGenericReturnArgument { +public: +}; + diff --git a/core/qgenericreturnargument.go b/core/qgenericreturnargument.go new file mode 100755 index 00000000..4a058ebf --- /dev/null +++ b/core/qgenericreturnargument.go @@ -0,0 +1,33 @@ +package core + +//#include "qgenericreturnargument.h" +import "C" +import ( + "unsafe" +) + +type QGenericReturnArgument struct { + QGenericArgument +} + +type QGenericReturnArgumentITF interface { + QGenericArgumentITF + QGenericReturnArgumentPTR() *QGenericReturnArgument +} + +func PointerFromQGenericReturnArgument(ptr QGenericReturnArgumentITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGenericReturnArgumentPTR().Pointer() + } + return nil +} + +func QGenericReturnArgumentFromPointer(ptr unsafe.Pointer) *QGenericReturnArgument { + var n = new(QGenericReturnArgument) + n.SetPointer(ptr) + return n +} + +func (ptr *QGenericReturnArgument) QGenericReturnArgumentPTR() *QGenericReturnArgument { + return ptr +} diff --git a/core/qgenericreturnargument.h b/core/qgenericreturnargument.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qgenericreturnargument.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qglobalstatic.cpp b/core/qglobalstatic.cpp new file mode 100755 index 00000000..3a8511eb --- /dev/null +++ b/core/qglobalstatic.cpp @@ -0,0 +1,8 @@ +#include "qglobalstatic.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qglobalstatic.go b/core/qglobalstatic.go new file mode 100755 index 00000000..8d44f15c --- /dev/null +++ b/core/qglobalstatic.go @@ -0,0 +1,40 @@ +package core + +//#include "qglobalstatic.h" +import "C" +import ( + "unsafe" +) + +type QGlobalStatic struct { + ptr unsafe.Pointer +} + +type QGlobalStaticITF interface { + QGlobalStaticPTR() *QGlobalStatic +} + +func (p *QGlobalStatic) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QGlobalStatic) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQGlobalStatic(ptr QGlobalStaticITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGlobalStaticPTR().Pointer() + } + return nil +} + +func QGlobalStaticFromPointer(ptr unsafe.Pointer) *QGlobalStatic { + var n = new(QGlobalStatic) + n.SetPointer(ptr) + return n +} + +func (ptr *QGlobalStatic) QGlobalStaticPTR() *QGlobalStatic { + return ptr +} diff --git a/core/qglobalstatic.h b/core/qglobalstatic.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qglobalstatic.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qhash.cpp b/core/qhash.cpp new file mode 100755 index 00000000..db6b17bd --- /dev/null +++ b/core/qhash.cpp @@ -0,0 +1,8 @@ +#include "qhash.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qhash.go b/core/qhash.go new file mode 100755 index 00000000..a8275d60 --- /dev/null +++ b/core/qhash.go @@ -0,0 +1,40 @@ +package core + +//#include "qhash.h" +import "C" +import ( + "unsafe" +) + +type QHash struct { + ptr unsafe.Pointer +} + +type QHashITF interface { + QHashPTR() *QHash +} + +func (p *QHash) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QHash) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQHash(ptr QHashITF) unsafe.Pointer { + if ptr != nil { + return ptr.QHashPTR().Pointer() + } + return nil +} + +func QHashFromPointer(ptr unsafe.Pointer) *QHash { + var n = new(QHash) + n.SetPointer(ptr) + return n +} + +func (ptr *QHash) QHashPTR() *QHash { + return ptr +} diff --git a/core/qhash.h b/core/qhash.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qhash.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qhashiterator.cpp b/core/qhashiterator.cpp new file mode 100755 index 00000000..4e62e42a --- /dev/null +++ b/core/qhashiterator.cpp @@ -0,0 +1,9 @@ +#include "qhashiterator.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qhashiterator.go b/core/qhashiterator.go new file mode 100755 index 00000000..8d40995c --- /dev/null +++ b/core/qhashiterator.go @@ -0,0 +1,40 @@ +package core + +//#include "qhashiterator.h" +import "C" +import ( + "unsafe" +) + +type QHashIterator struct { + ptr unsafe.Pointer +} + +type QHashIteratorITF interface { + QHashIteratorPTR() *QHashIterator +} + +func (p *QHashIterator) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QHashIterator) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQHashIterator(ptr QHashIteratorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QHashIteratorPTR().Pointer() + } + return nil +} + +func QHashIteratorFromPointer(ptr unsafe.Pointer) *QHashIterator { + var n = new(QHashIterator) + n.SetPointer(ptr) + return n +} + +func (ptr *QHashIterator) QHashIteratorPTR() *QHashIterator { + return ptr +} diff --git a/core/qhashiterator.h b/core/qhashiterator.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qhashiterator.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qhistorystate.cpp b/core/qhistorystate.cpp new file mode 100755 index 00000000..65bad6b5 --- /dev/null +++ b/core/qhistorystate.cpp @@ -0,0 +1,61 @@ +#include "qhistorystate.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQHistoryState: public QHistoryState { +public: +void Signal_DefaultStateChanged(){callbackQHistoryStateDefaultStateChanged(this->objectName().toUtf8().data());}; +void Signal_HistoryTypeChanged(){callbackQHistoryStateHistoryTypeChanged(this->objectName().toUtf8().data());}; +}; + +QtObjectPtr QHistoryState_NewQHistoryState2(int ty, QtObjectPtr parent){ + return new QHistoryState(static_cast(ty), static_cast(parent)); +} + +QtObjectPtr QHistoryState_NewQHistoryState(QtObjectPtr parent){ + return new QHistoryState(static_cast(parent)); +} + +QtObjectPtr QHistoryState_DefaultState(QtObjectPtr ptr){ + return static_cast(ptr)->defaultState(); +} + +void QHistoryState_ConnectDefaultStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QHistoryState::defaultStateChanged, static_cast(ptr), static_cast(&MyQHistoryState::Signal_DefaultStateChanged));; +} + +void QHistoryState_DisconnectDefaultStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QHistoryState::defaultStateChanged, static_cast(ptr), static_cast(&MyQHistoryState::Signal_DefaultStateChanged));; +} + +int QHistoryState_HistoryType(QtObjectPtr ptr){ + return static_cast(ptr)->historyType(); +} + +void QHistoryState_ConnectHistoryTypeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QHistoryState::historyTypeChanged, static_cast(ptr), static_cast(&MyQHistoryState::Signal_HistoryTypeChanged));; +} + +void QHistoryState_DisconnectHistoryTypeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QHistoryState::historyTypeChanged, static_cast(ptr), static_cast(&MyQHistoryState::Signal_HistoryTypeChanged));; +} + +void QHistoryState_SetDefaultState(QtObjectPtr ptr, QtObjectPtr state){ + static_cast(ptr)->setDefaultState(static_cast(state)); +} + +void QHistoryState_SetHistoryType(QtObjectPtr ptr, int ty){ + static_cast(ptr)->setHistoryType(static_cast(ty)); +} + +void QHistoryState_DestroyQHistoryState(QtObjectPtr ptr){ + static_cast(ptr)->~QHistoryState(); +} + diff --git a/core/qhistorystate.go b/core/qhistorystate.go new file mode 100755 index 00000000..f3907df4 --- /dev/null +++ b/core/qhistorystate.go @@ -0,0 +1,124 @@ +package core + +//#include "qhistorystate.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QHistoryState struct { + QAbstractState +} + +type QHistoryStateITF interface { + QAbstractStateITF + QHistoryStatePTR() *QHistoryState +} + +func PointerFromQHistoryState(ptr QHistoryStateITF) unsafe.Pointer { + if ptr != nil { + return ptr.QHistoryStatePTR().Pointer() + } + return nil +} + +func QHistoryStateFromPointer(ptr unsafe.Pointer) *QHistoryState { + var n = new(QHistoryState) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QHistoryState_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QHistoryState) QHistoryStatePTR() *QHistoryState { + return ptr +} + +//QHistoryState::HistoryType +type QHistoryState__HistoryType int + +var ( + QHistoryState__ShallowHistory = QHistoryState__HistoryType(0) + QHistoryState__DeepHistory = QHistoryState__HistoryType(1) +) + +func NewQHistoryState2(ty QHistoryState__HistoryType, parent QStateITF) *QHistoryState { + return QHistoryStateFromPointer(unsafe.Pointer(C.QHistoryState_NewQHistoryState2(C.int(ty), C.QtObjectPtr(PointerFromQState(parent))))) +} + +func NewQHistoryState(parent QStateITF) *QHistoryState { + return QHistoryStateFromPointer(unsafe.Pointer(C.QHistoryState_NewQHistoryState(C.QtObjectPtr(PointerFromQState(parent))))) +} + +func (ptr *QHistoryState) DefaultState() *QAbstractState { + if ptr.Pointer() != nil { + return QAbstractStateFromPointer(unsafe.Pointer(C.QHistoryState_DefaultState(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QHistoryState) ConnectDefaultStateChanged(f func()) { + if ptr.Pointer() != nil { + C.QHistoryState_ConnectDefaultStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "defaultStateChanged", f) + } +} + +func (ptr *QHistoryState) DisconnectDefaultStateChanged() { + if ptr.Pointer() != nil { + C.QHistoryState_DisconnectDefaultStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "defaultStateChanged") + } +} + +//export callbackQHistoryStateDefaultStateChanged +func callbackQHistoryStateDefaultStateChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "defaultStateChanged").(func())() +} + +func (ptr *QHistoryState) HistoryType() QHistoryState__HistoryType { + if ptr.Pointer() != nil { + return QHistoryState__HistoryType(C.QHistoryState_HistoryType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QHistoryState) ConnectHistoryTypeChanged(f func()) { + if ptr.Pointer() != nil { + C.QHistoryState_ConnectHistoryTypeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "historyTypeChanged", f) + } +} + +func (ptr *QHistoryState) DisconnectHistoryTypeChanged() { + if ptr.Pointer() != nil { + C.QHistoryState_DisconnectHistoryTypeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "historyTypeChanged") + } +} + +//export callbackQHistoryStateHistoryTypeChanged +func callbackQHistoryStateHistoryTypeChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "historyTypeChanged").(func())() +} + +func (ptr *QHistoryState) SetDefaultState(state QAbstractStateITF) { + if ptr.Pointer() != nil { + C.QHistoryState_SetDefaultState(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractState(state))) + } +} + +func (ptr *QHistoryState) SetHistoryType(ty QHistoryState__HistoryType) { + if ptr.Pointer() != nil { + C.QHistoryState_SetHistoryType(C.QtObjectPtr(ptr.Pointer()), C.int(ty)) + } +} + +func (ptr *QHistoryState) DestroyQHistoryState() { + if ptr.Pointer() != nil { + C.QHistoryState_DestroyQHistoryState(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qhistorystate.h b/core/qhistorystate.h new file mode 100755 index 00000000..720d61cf --- /dev/null +++ b/core/qhistorystate.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QHistoryState_NewQHistoryState2(int ty, QtObjectPtr parent); +QtObjectPtr QHistoryState_NewQHistoryState(QtObjectPtr parent); +QtObjectPtr QHistoryState_DefaultState(QtObjectPtr ptr); +void QHistoryState_ConnectDefaultStateChanged(QtObjectPtr ptr); +void QHistoryState_DisconnectDefaultStateChanged(QtObjectPtr ptr); +int QHistoryState_HistoryType(QtObjectPtr ptr); +void QHistoryState_ConnectHistoryTypeChanged(QtObjectPtr ptr); +void QHistoryState_DisconnectHistoryTypeChanged(QtObjectPtr ptr); +void QHistoryState_SetDefaultState(QtObjectPtr ptr, QtObjectPtr state); +void QHistoryState_SetHistoryType(QtObjectPtr ptr, int ty); +void QHistoryState_DestroyQHistoryState(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qhooks.cpp b/core/qhooks.cpp new file mode 100755 index 00000000..f531e888 --- /dev/null +++ b/core/qhooks.cpp @@ -0,0 +1,7 @@ +#include "qhooks.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qhooks.go b/core/qhooks.go new file mode 100755 index 00000000..b3a99d93 --- /dev/null +++ b/core/qhooks.go @@ -0,0 +1,53 @@ +package core + +//#include "qhooks.h" +import "C" +import ( + "unsafe" +) + +type QHooks struct { + ptr unsafe.Pointer +} + +type QHooksITF interface { + QHooksPTR() *QHooks +} + +func (p *QHooks) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QHooks) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQHooks(ptr QHooksITF) unsafe.Pointer { + if ptr != nil { + return ptr.QHooksPTR().Pointer() + } + return nil +} + +func QHooksFromPointer(ptr unsafe.Pointer) *QHooks { + var n = new(QHooks) + n.SetPointer(ptr) + return n +} + +func (ptr *QHooks) QHooksPTR() *QHooks { + return ptr +} + +//QHooks::HookIndex +type QHooks__HookIndex int + +var ( + QHooks__HookDataVersion = QHooks__HookIndex(0) + QHooks__HookDataSize = QHooks__HookIndex(1) + QHooks__QtVersion = QHooks__HookIndex(2) + QHooks__AddQObject = QHooks__HookIndex(3) + QHooks__RemoveQObject = QHooks__HookIndex(4) + QHooks__Startup = QHooks__HookIndex(5) + QHooks__LastHookIndex = QHooks__HookIndex(6) +) diff --git a/core/qhooks.h b/core/qhooks.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qhooks.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qidentityproxymodel.cpp b/core/qidentityproxymodel.cpp new file mode 100755 index 00000000..eb179a60 --- /dev/null +++ b/core/qidentityproxymodel.cpp @@ -0,0 +1,79 @@ +#include "qidentityproxymodel.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQIdentityProxyModel: public QIdentityProxyModel { +public: +}; + +QtObjectPtr QIdentityProxyModel_NewQIdentityProxyModel(QtObjectPtr parent){ + return new QIdentityProxyModel(static_cast(parent)); +} + +int QIdentityProxyModel_ColumnCount(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->columnCount(*static_cast(parent)); +} + +int QIdentityProxyModel_DropMimeData(QtObjectPtr ptr, QtObjectPtr data, int action, int row, int column, QtObjectPtr parent){ + return static_cast(ptr)->dropMimeData(static_cast(data), static_cast(action), row, column, *static_cast(parent)); +} + +char* QIdentityProxyModel_HeaderData(QtObjectPtr ptr, int section, int orientation, int role){ + return static_cast(ptr)->headerData(section, static_cast(orientation), role).toString().toUtf8().data(); +} + +QtObjectPtr QIdentityProxyModel_Index(QtObjectPtr ptr, int row, int column, QtObjectPtr parent){ + return static_cast(ptr)->index(row, column, *static_cast(parent)).internalPointer(); +} + +int QIdentityProxyModel_InsertColumns(QtObjectPtr ptr, int column, int count, QtObjectPtr parent){ + return static_cast(ptr)->insertColumns(column, count, *static_cast(parent)); +} + +int QIdentityProxyModel_InsertRows(QtObjectPtr ptr, int row, int count, QtObjectPtr parent){ + return static_cast(ptr)->insertRows(row, count, *static_cast(parent)); +} + +QtObjectPtr QIdentityProxyModel_MapFromSource(QtObjectPtr ptr, QtObjectPtr sourceIndex){ + return static_cast(ptr)->mapFromSource(*static_cast(sourceIndex)).internalPointer(); +} + +QtObjectPtr QIdentityProxyModel_MapToSource(QtObjectPtr ptr, QtObjectPtr proxyIndex){ + return static_cast(ptr)->mapToSource(*static_cast(proxyIndex)).internalPointer(); +} + +QtObjectPtr QIdentityProxyModel_Parent(QtObjectPtr ptr, QtObjectPtr child){ + return static_cast(ptr)->parent(*static_cast(child)).internalPointer(); +} + +int QIdentityProxyModel_RemoveColumns(QtObjectPtr ptr, int column, int count, QtObjectPtr parent){ + return static_cast(ptr)->removeColumns(column, count, *static_cast(parent)); +} + +int QIdentityProxyModel_RemoveRows(QtObjectPtr ptr, int row, int count, QtObjectPtr parent){ + return static_cast(ptr)->removeRows(row, count, *static_cast(parent)); +} + +int QIdentityProxyModel_RowCount(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->rowCount(*static_cast(parent)); +} + +void QIdentityProxyModel_SetSourceModel(QtObjectPtr ptr, QtObjectPtr newSourceModel){ + static_cast(ptr)->setSourceModel(static_cast(newSourceModel)); +} + +QtObjectPtr QIdentityProxyModel_Sibling(QtObjectPtr ptr, int row, int column, QtObjectPtr idx){ + return static_cast(ptr)->sibling(row, column, *static_cast(idx)).internalPointer(); +} + +void QIdentityProxyModel_DestroyQIdentityProxyModel(QtObjectPtr ptr){ + static_cast(ptr)->~QIdentityProxyModel(); +} + diff --git a/core/qidentityproxymodel.go b/core/qidentityproxymodel.go new file mode 100755 index 00000000..6705c29d --- /dev/null +++ b/core/qidentityproxymodel.go @@ -0,0 +1,145 @@ +package core + +//#include "qidentityproxymodel.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QIdentityProxyModel struct { + QAbstractProxyModel +} + +type QIdentityProxyModelITF interface { + QAbstractProxyModelITF + QIdentityProxyModelPTR() *QIdentityProxyModel +} + +func PointerFromQIdentityProxyModel(ptr QIdentityProxyModelITF) unsafe.Pointer { + if ptr != nil { + return ptr.QIdentityProxyModelPTR().Pointer() + } + return nil +} + +func QIdentityProxyModelFromPointer(ptr unsafe.Pointer) *QIdentityProxyModel { + var n = new(QIdentityProxyModel) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QIdentityProxyModel_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QIdentityProxyModel) QIdentityProxyModelPTR() *QIdentityProxyModel { + return ptr +} + +func NewQIdentityProxyModel(parent QObjectITF) *QIdentityProxyModel { + return QIdentityProxyModelFromPointer(unsafe.Pointer(C.QIdentityProxyModel_NewQIdentityProxyModel(C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func (ptr *QIdentityProxyModel) ColumnCount(parent QModelIndexITF) int { + if ptr.Pointer() != nil { + return int(C.QIdentityProxyModel_ColumnCount(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(parent)))) + } + return 0 +} + +func (ptr *QIdentityProxyModel) DropMimeData(data QMimeDataITF, action Qt__DropAction, row int, column int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QIdentityProxyModel_DropMimeData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMimeData(data)), C.int(action), C.int(row), C.int(column), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QIdentityProxyModel) HeaderData(section int, orientation Qt__Orientation, role int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QIdentityProxyModel_HeaderData(C.QtObjectPtr(ptr.Pointer()), C.int(section), C.int(orientation), C.int(role))) + } + return "" +} + +func (ptr *QIdentityProxyModel) Index(row int, column int, parent QModelIndexITF) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QIdentityProxyModel_Index(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column), C.QtObjectPtr(PointerFromQModelIndex(parent))))) + } + return nil +} + +func (ptr *QIdentityProxyModel) InsertColumns(column int, count int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QIdentityProxyModel_InsertColumns(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(count), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QIdentityProxyModel) InsertRows(row int, count int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QIdentityProxyModel_InsertRows(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(count), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QIdentityProxyModel) MapFromSource(sourceIndex QModelIndexITF) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QIdentityProxyModel_MapFromSource(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(sourceIndex))))) + } + return nil +} + +func (ptr *QIdentityProxyModel) MapToSource(proxyIndex QModelIndexITF) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QIdentityProxyModel_MapToSource(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(proxyIndex))))) + } + return nil +} + +func (ptr *QIdentityProxyModel) Parent(child QModelIndexITF) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QIdentityProxyModel_Parent(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(child))))) + } + return nil +} + +func (ptr *QIdentityProxyModel) RemoveColumns(column int, count int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QIdentityProxyModel_RemoveColumns(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(count), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QIdentityProxyModel) RemoveRows(row int, count int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QIdentityProxyModel_RemoveRows(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(count), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QIdentityProxyModel) RowCount(parent QModelIndexITF) int { + if ptr.Pointer() != nil { + return int(C.QIdentityProxyModel_RowCount(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(parent)))) + } + return 0 +} + +func (ptr *QIdentityProxyModel) SetSourceModel(newSourceModel QAbstractItemModelITF) { + if ptr.Pointer() != nil { + C.QIdentityProxyModel_SetSourceModel(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractItemModel(newSourceModel))) + } +} + +func (ptr *QIdentityProxyModel) Sibling(row int, column int, idx QModelIndexITF) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QIdentityProxyModel_Sibling(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column), C.QtObjectPtr(PointerFromQModelIndex(idx))))) + } + return nil +} + +func (ptr *QIdentityProxyModel) DestroyQIdentityProxyModel() { + if ptr.Pointer() != nil { + C.QIdentityProxyModel_DestroyQIdentityProxyModel(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qidentityproxymodel.h b/core/qidentityproxymodel.h new file mode 100755 index 00000000..97c01c29 --- /dev/null +++ b/core/qidentityproxymodel.h @@ -0,0 +1,25 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QIdentityProxyModel_NewQIdentityProxyModel(QtObjectPtr parent); +int QIdentityProxyModel_ColumnCount(QtObjectPtr ptr, QtObjectPtr parent); +int QIdentityProxyModel_DropMimeData(QtObjectPtr ptr, QtObjectPtr data, int action, int row, int column, QtObjectPtr parent); +char* QIdentityProxyModel_HeaderData(QtObjectPtr ptr, int section, int orientation, int role); +QtObjectPtr QIdentityProxyModel_Index(QtObjectPtr ptr, int row, int column, QtObjectPtr parent); +int QIdentityProxyModel_InsertColumns(QtObjectPtr ptr, int column, int count, QtObjectPtr parent); +int QIdentityProxyModel_InsertRows(QtObjectPtr ptr, int row, int count, QtObjectPtr parent); +QtObjectPtr QIdentityProxyModel_MapFromSource(QtObjectPtr ptr, QtObjectPtr sourceIndex); +QtObjectPtr QIdentityProxyModel_MapToSource(QtObjectPtr ptr, QtObjectPtr proxyIndex); +QtObjectPtr QIdentityProxyModel_Parent(QtObjectPtr ptr, QtObjectPtr child); +int QIdentityProxyModel_RemoveColumns(QtObjectPtr ptr, int column, int count, QtObjectPtr parent); +int QIdentityProxyModel_RemoveRows(QtObjectPtr ptr, int row, int count, QtObjectPtr parent); +int QIdentityProxyModel_RowCount(QtObjectPtr ptr, QtObjectPtr parent); +void QIdentityProxyModel_SetSourceModel(QtObjectPtr ptr, QtObjectPtr newSourceModel); +QtObjectPtr QIdentityProxyModel_Sibling(QtObjectPtr ptr, int row, int column, QtObjectPtr idx); +void QIdentityProxyModel_DestroyQIdentityProxyModel(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qiodevice.cpp b/core/qiodevice.cpp new file mode 100755 index 00000000..c771d528 --- /dev/null +++ b/core/qiodevice.cpp @@ -0,0 +1,8 @@ +#include "qiodevice.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qiodevice.go b/core/qiodevice.go new file mode 100755 index 00000000..ed32dc35 --- /dev/null +++ b/core/qiodevice.go @@ -0,0 +1,51 @@ +package core + +//#include "qiodevice.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QIODevice struct { + QObject +} + +type QIODeviceITF interface { + QObjectITF + QIODevicePTR() *QIODevice +} + +func PointerFromQIODevice(ptr QIODeviceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QIODevicePTR().Pointer() + } + return nil +} + +func QIODeviceFromPointer(ptr unsafe.Pointer) *QIODevice { + var n = new(QIODevice) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QIODevice_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QIODevice) QIODevicePTR() *QIODevice { + return ptr +} + +//QIODevice::OpenModeFlag +type QIODevice__OpenModeFlag int + +var ( + QIODevice__NotOpen = QIODevice__OpenModeFlag(0x0000) + QIODevice__ReadOnly = QIODevice__OpenModeFlag(0x0001) + QIODevice__WriteOnly = QIODevice__OpenModeFlag(0x0002) + QIODevice__ReadWrite = QIODevice__OpenModeFlag(QIODevice__ReadOnly | QIODevice__WriteOnly) + QIODevice__Append = QIODevice__OpenModeFlag(0x0004) + QIODevice__Truncate = QIODevice__OpenModeFlag(0x0008) + QIODevice__Text = QIODevice__OpenModeFlag(0x0010) + QIODevice__Unbuffered = QIODevice__OpenModeFlag(0x0020) +) diff --git a/core/qiodevice.h b/core/qiodevice.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qiodevice.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qitemselection.cpp b/core/qitemselection.cpp new file mode 100755 index 00000000..c49cc074 --- /dev/null +++ b/core/qitemselection.cpp @@ -0,0 +1,38 @@ +#include "qitemselection.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQItemSelection: public QItemSelection { +public: +}; + +QtObjectPtr QItemSelection_NewQItemSelection(){ + return new QItemSelection(); +} + +QtObjectPtr QItemSelection_NewQItemSelection2(QtObjectPtr topLeft, QtObjectPtr bottomRight){ + return new QItemSelection(*static_cast(topLeft), *static_cast(bottomRight)); +} + +int QItemSelection_Contains(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->contains(*static_cast(index)); +} + +void QItemSelection_Merge(QtObjectPtr ptr, QtObjectPtr other, int command){ + static_cast(ptr)->merge(*static_cast(other), static_cast(command)); +} + +void QItemSelection_Select(QtObjectPtr ptr, QtObjectPtr topLeft, QtObjectPtr bottomRight){ + static_cast(ptr)->select(*static_cast(topLeft), *static_cast(bottomRight)); +} + +void QItemSelection_QItemSelection_Split(QtObjectPtr ran, QtObjectPtr other, QtObjectPtr result){ + QItemSelection::split(*static_cast(ran), *static_cast(other), static_cast(result)); +} + diff --git a/core/qitemselection.go b/core/qitemselection.go new file mode 100755 index 00000000..cb495a44 --- /dev/null +++ b/core/qitemselection.go @@ -0,0 +1,64 @@ +package core + +//#include "qitemselection.h" +import "C" +import ( + "unsafe" +) + +type QItemSelection struct { + QList +} + +type QItemSelectionITF interface { + QListITF + QItemSelectionPTR() *QItemSelection +} + +func PointerFromQItemSelection(ptr QItemSelectionITF) unsafe.Pointer { + if ptr != nil { + return ptr.QItemSelectionPTR().Pointer() + } + return nil +} + +func QItemSelectionFromPointer(ptr unsafe.Pointer) *QItemSelection { + var n = new(QItemSelection) + n.SetPointer(ptr) + return n +} + +func (ptr *QItemSelection) QItemSelectionPTR() *QItemSelection { + return ptr +} + +func NewQItemSelection() *QItemSelection { + return QItemSelectionFromPointer(unsafe.Pointer(C.QItemSelection_NewQItemSelection())) +} + +func NewQItemSelection2(topLeft QModelIndexITF, bottomRight QModelIndexITF) *QItemSelection { + return QItemSelectionFromPointer(unsafe.Pointer(C.QItemSelection_NewQItemSelection2(C.QtObjectPtr(PointerFromQModelIndex(topLeft)), C.QtObjectPtr(PointerFromQModelIndex(bottomRight))))) +} + +func (ptr *QItemSelection) Contains(index QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QItemSelection_Contains(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(index))) != 0 + } + return false +} + +func (ptr *QItemSelection) Merge(other QItemSelectionITF, command QItemSelectionModel__SelectionFlag) { + if ptr.Pointer() != nil { + C.QItemSelection_Merge(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQItemSelection(other)), C.int(command)) + } +} + +func (ptr *QItemSelection) Select(topLeft QModelIndexITF, bottomRight QModelIndexITF) { + if ptr.Pointer() != nil { + C.QItemSelection_Select(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(topLeft)), C.QtObjectPtr(PointerFromQModelIndex(bottomRight))) + } +} + +func QItemSelection_Split(ran QItemSelectionRangeITF, other QItemSelectionRangeITF, result QItemSelectionITF) { + C.QItemSelection_QItemSelection_Split(C.QtObjectPtr(PointerFromQItemSelectionRange(ran)), C.QtObjectPtr(PointerFromQItemSelectionRange(other)), C.QtObjectPtr(PointerFromQItemSelection(result))) +} diff --git a/core/qitemselection.h b/core/qitemselection.h new file mode 100755 index 00000000..0f47ca7b --- /dev/null +++ b/core/qitemselection.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QItemSelection_NewQItemSelection(); +QtObjectPtr QItemSelection_NewQItemSelection2(QtObjectPtr topLeft, QtObjectPtr bottomRight); +int QItemSelection_Contains(QtObjectPtr ptr, QtObjectPtr index); +void QItemSelection_Merge(QtObjectPtr ptr, QtObjectPtr other, int command); +void QItemSelection_Select(QtObjectPtr ptr, QtObjectPtr topLeft, QtObjectPtr bottomRight); +void QItemSelection_QItemSelection_Split(QtObjectPtr ran, QtObjectPtr other, QtObjectPtr result); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qitemselectionmodel.cpp b/core/qitemselectionmodel.cpp new file mode 100755 index 00000000..5af99b0d --- /dev/null +++ b/core/qitemselectionmodel.cpp @@ -0,0 +1,132 @@ +#include "qitemselectionmodel.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQItemSelectionModel: public QItemSelectionModel { +public: +void Signal_CurrentChanged(const QModelIndex & current, const QModelIndex & previous){callbackQItemSelectionModelCurrentChanged(this->objectName().toUtf8().data(), current.internalPointer(), previous.internalPointer());}; +void Signal_CurrentColumnChanged(const QModelIndex & current, const QModelIndex & previous){callbackQItemSelectionModelCurrentColumnChanged(this->objectName().toUtf8().data(), current.internalPointer(), previous.internalPointer());}; +void Signal_CurrentRowChanged(const QModelIndex & current, const QModelIndex & previous){callbackQItemSelectionModelCurrentRowChanged(this->objectName().toUtf8().data(), current.internalPointer(), previous.internalPointer());}; +void Signal_ModelChanged(QAbstractItemModel * model){callbackQItemSelectionModelModelChanged(this->objectName().toUtf8().data(), model);}; +}; + +QtObjectPtr QItemSelectionModel_NewQItemSelectionModel(QtObjectPtr model){ + return new QItemSelectionModel(static_cast(model)); +} + +QtObjectPtr QItemSelectionModel_NewQItemSelectionModel2(QtObjectPtr model, QtObjectPtr parent){ + return new QItemSelectionModel(static_cast(model), static_cast(parent)); +} + +void QItemSelectionModel_Clear(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "clear"); +} + +void QItemSelectionModel_ClearCurrentIndex(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "clearCurrentIndex"); +} + +void QItemSelectionModel_ClearSelection(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "clearSelection"); +} + +int QItemSelectionModel_ColumnIntersectsSelection(QtObjectPtr ptr, int column, QtObjectPtr parent){ + return static_cast(ptr)->columnIntersectsSelection(column, *static_cast(parent)); +} + +void QItemSelectionModel_ConnectCurrentChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QItemSelectionModel::currentChanged), static_cast(ptr), static_cast(&MyQItemSelectionModel::Signal_CurrentChanged));; +} + +void QItemSelectionModel_DisconnectCurrentChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QItemSelectionModel::currentChanged), static_cast(ptr), static_cast(&MyQItemSelectionModel::Signal_CurrentChanged));; +} + +void QItemSelectionModel_ConnectCurrentColumnChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QItemSelectionModel::currentColumnChanged), static_cast(ptr), static_cast(&MyQItemSelectionModel::Signal_CurrentColumnChanged));; +} + +void QItemSelectionModel_DisconnectCurrentColumnChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QItemSelectionModel::currentColumnChanged), static_cast(ptr), static_cast(&MyQItemSelectionModel::Signal_CurrentColumnChanged));; +} + +QtObjectPtr QItemSelectionModel_CurrentIndex(QtObjectPtr ptr){ + return static_cast(ptr)->currentIndex().internalPointer(); +} + +void QItemSelectionModel_ConnectCurrentRowChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QItemSelectionModel::currentRowChanged), static_cast(ptr), static_cast(&MyQItemSelectionModel::Signal_CurrentRowChanged));; +} + +void QItemSelectionModel_DisconnectCurrentRowChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QItemSelectionModel::currentRowChanged), static_cast(ptr), static_cast(&MyQItemSelectionModel::Signal_CurrentRowChanged));; +} + +int QItemSelectionModel_HasSelection(QtObjectPtr ptr){ + return static_cast(ptr)->hasSelection(); +} + +int QItemSelectionModel_IsColumnSelected(QtObjectPtr ptr, int column, QtObjectPtr parent){ + return static_cast(ptr)->isColumnSelected(column, *static_cast(parent)); +} + +int QItemSelectionModel_IsRowSelected(QtObjectPtr ptr, int row, QtObjectPtr parent){ + return static_cast(ptr)->isRowSelected(row, *static_cast(parent)); +} + +int QItemSelectionModel_IsSelected(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->isSelected(*static_cast(index)); +} + +QtObjectPtr QItemSelectionModel_Model2(QtObjectPtr ptr){ + return static_cast(ptr)->model(); +} + +QtObjectPtr QItemSelectionModel_Model(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->model()); +} + +void QItemSelectionModel_ConnectModelChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QItemSelectionModel::modelChanged), static_cast(ptr), static_cast(&MyQItemSelectionModel::Signal_ModelChanged));; +} + +void QItemSelectionModel_DisconnectModelChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QItemSelectionModel::modelChanged), static_cast(ptr), static_cast(&MyQItemSelectionModel::Signal_ModelChanged));; +} + +void QItemSelectionModel_Reset(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "reset"); +} + +int QItemSelectionModel_RowIntersectsSelection(QtObjectPtr ptr, int row, QtObjectPtr parent){ + return static_cast(ptr)->rowIntersectsSelection(row, *static_cast(parent)); +} + +void QItemSelectionModel_Select2(QtObjectPtr ptr, QtObjectPtr selection, int command){ + QMetaObject::invokeMethod(static_cast(ptr), "select", Q_ARG(QItemSelection, *static_cast(selection)), Q_ARG(QItemSelectionModel::SelectionFlag, static_cast(command))); +} + +void QItemSelectionModel_Select(QtObjectPtr ptr, QtObjectPtr index, int command){ + QMetaObject::invokeMethod(static_cast(ptr), "select", Q_ARG(QModelIndex, *static_cast(index)), Q_ARG(QItemSelectionModel::SelectionFlag, static_cast(command))); +} + +void QItemSelectionModel_SetCurrentIndex(QtObjectPtr ptr, QtObjectPtr index, int command){ + QMetaObject::invokeMethod(static_cast(ptr), "setCurrentIndex", Q_ARG(QModelIndex, *static_cast(index)), Q_ARG(QItemSelectionModel::SelectionFlag, static_cast(command))); +} + +void QItemSelectionModel_SetModel(QtObjectPtr ptr, QtObjectPtr model){ + static_cast(ptr)->setModel(static_cast(model)); +} + +void QItemSelectionModel_DestroyQItemSelectionModel(QtObjectPtr ptr){ + static_cast(ptr)->~QItemSelectionModel(); +} + diff --git a/core/qitemselectionmodel.go b/core/qitemselectionmodel.go new file mode 100755 index 00000000..ee531c34 --- /dev/null +++ b/core/qitemselectionmodel.go @@ -0,0 +1,256 @@ +package core + +//#include "qitemselectionmodel.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QItemSelectionModel struct { + QObject +} + +type QItemSelectionModelITF interface { + QObjectITF + QItemSelectionModelPTR() *QItemSelectionModel +} + +func PointerFromQItemSelectionModel(ptr QItemSelectionModelITF) unsafe.Pointer { + if ptr != nil { + return ptr.QItemSelectionModelPTR().Pointer() + } + return nil +} + +func QItemSelectionModelFromPointer(ptr unsafe.Pointer) *QItemSelectionModel { + var n = new(QItemSelectionModel) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QItemSelectionModel_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QItemSelectionModel) QItemSelectionModelPTR() *QItemSelectionModel { + return ptr +} + +//QItemSelectionModel::SelectionFlag +type QItemSelectionModel__SelectionFlag int + +var ( + QItemSelectionModel__NoUpdate = QItemSelectionModel__SelectionFlag(0x0000) + QItemSelectionModel__Clear = QItemSelectionModel__SelectionFlag(0x0001) + QItemSelectionModel__Select = QItemSelectionModel__SelectionFlag(0x0002) + QItemSelectionModel__Deselect = QItemSelectionModel__SelectionFlag(0x0004) + QItemSelectionModel__Toggle = QItemSelectionModel__SelectionFlag(0x0008) + QItemSelectionModel__Current = QItemSelectionModel__SelectionFlag(0x0010) + QItemSelectionModel__Rows = QItemSelectionModel__SelectionFlag(0x0020) + QItemSelectionModel__Columns = QItemSelectionModel__SelectionFlag(0x0040) + QItemSelectionModel__SelectCurrent = QItemSelectionModel__SelectionFlag(QItemSelectionModel__Select | QItemSelectionModel__Current) + QItemSelectionModel__ToggleCurrent = QItemSelectionModel__SelectionFlag(QItemSelectionModel__Toggle | QItemSelectionModel__Current) + QItemSelectionModel__ClearAndSelect = QItemSelectionModel__SelectionFlag(QItemSelectionModel__Clear | QItemSelectionModel__Select) +) + +func NewQItemSelectionModel(model QAbstractItemModelITF) *QItemSelectionModel { + return QItemSelectionModelFromPointer(unsafe.Pointer(C.QItemSelectionModel_NewQItemSelectionModel(C.QtObjectPtr(PointerFromQAbstractItemModel(model))))) +} + +func NewQItemSelectionModel2(model QAbstractItemModelITF, parent QObjectITF) *QItemSelectionModel { + return QItemSelectionModelFromPointer(unsafe.Pointer(C.QItemSelectionModel_NewQItemSelectionModel2(C.QtObjectPtr(PointerFromQAbstractItemModel(model)), C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func (ptr *QItemSelectionModel) Clear() { + if ptr.Pointer() != nil { + C.QItemSelectionModel_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QItemSelectionModel) ClearCurrentIndex() { + if ptr.Pointer() != nil { + C.QItemSelectionModel_ClearCurrentIndex(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QItemSelectionModel) ClearSelection() { + if ptr.Pointer() != nil { + C.QItemSelectionModel_ClearSelection(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QItemSelectionModel) ColumnIntersectsSelection(column int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QItemSelectionModel_ColumnIntersectsSelection(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QItemSelectionModel) ConnectCurrentChanged(f func(current QModelIndexITF, previous QModelIndexITF)) { + if ptr.Pointer() != nil { + C.QItemSelectionModel_ConnectCurrentChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "currentChanged", f) + } +} + +func (ptr *QItemSelectionModel) DisconnectCurrentChanged() { + if ptr.Pointer() != nil { + C.QItemSelectionModel_DisconnectCurrentChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "currentChanged") + } +} + +//export callbackQItemSelectionModelCurrentChanged +func callbackQItemSelectionModelCurrentChanged(ptrName *C.char, current unsafe.Pointer, previous unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "currentChanged").(func(*QModelIndex, *QModelIndex))(QModelIndexFromPointer(current), QModelIndexFromPointer(previous)) +} + +func (ptr *QItemSelectionModel) ConnectCurrentColumnChanged(f func(current QModelIndexITF, previous QModelIndexITF)) { + if ptr.Pointer() != nil { + C.QItemSelectionModel_ConnectCurrentColumnChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "currentColumnChanged", f) + } +} + +func (ptr *QItemSelectionModel) DisconnectCurrentColumnChanged() { + if ptr.Pointer() != nil { + C.QItemSelectionModel_DisconnectCurrentColumnChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "currentColumnChanged") + } +} + +//export callbackQItemSelectionModelCurrentColumnChanged +func callbackQItemSelectionModelCurrentColumnChanged(ptrName *C.char, current unsafe.Pointer, previous unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "currentColumnChanged").(func(*QModelIndex, *QModelIndex))(QModelIndexFromPointer(current), QModelIndexFromPointer(previous)) +} + +func (ptr *QItemSelectionModel) CurrentIndex() *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QItemSelectionModel_CurrentIndex(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QItemSelectionModel) ConnectCurrentRowChanged(f func(current QModelIndexITF, previous QModelIndexITF)) { + if ptr.Pointer() != nil { + C.QItemSelectionModel_ConnectCurrentRowChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "currentRowChanged", f) + } +} + +func (ptr *QItemSelectionModel) DisconnectCurrentRowChanged() { + if ptr.Pointer() != nil { + C.QItemSelectionModel_DisconnectCurrentRowChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "currentRowChanged") + } +} + +//export callbackQItemSelectionModelCurrentRowChanged +func callbackQItemSelectionModelCurrentRowChanged(ptrName *C.char, current unsafe.Pointer, previous unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "currentRowChanged").(func(*QModelIndex, *QModelIndex))(QModelIndexFromPointer(current), QModelIndexFromPointer(previous)) +} + +func (ptr *QItemSelectionModel) HasSelection() bool { + if ptr.Pointer() != nil { + return C.QItemSelectionModel_HasSelection(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QItemSelectionModel) IsColumnSelected(column int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QItemSelectionModel_IsColumnSelected(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QItemSelectionModel) IsRowSelected(row int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QItemSelectionModel_IsRowSelected(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QItemSelectionModel) IsSelected(index QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QItemSelectionModel_IsSelected(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(index))) != 0 + } + return false +} + +func (ptr *QItemSelectionModel) Model2() *QAbstractItemModel { + if ptr.Pointer() != nil { + return QAbstractItemModelFromPointer(unsafe.Pointer(C.QItemSelectionModel_Model2(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QItemSelectionModel) Model() *QAbstractItemModel { + if ptr.Pointer() != nil { + return QAbstractItemModelFromPointer(unsafe.Pointer(C.QItemSelectionModel_Model(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QItemSelectionModel) ConnectModelChanged(f func(model QAbstractItemModelITF)) { + if ptr.Pointer() != nil { + C.QItemSelectionModel_ConnectModelChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "modelChanged", f) + } +} + +func (ptr *QItemSelectionModel) DisconnectModelChanged() { + if ptr.Pointer() != nil { + C.QItemSelectionModel_DisconnectModelChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "modelChanged") + } +} + +//export callbackQItemSelectionModelModelChanged +func callbackQItemSelectionModelModelChanged(ptrName *C.char, model unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "modelChanged").(func(*QAbstractItemModel))(QAbstractItemModelFromPointer(model)) +} + +func (ptr *QItemSelectionModel) Reset() { + if ptr.Pointer() != nil { + C.QItemSelectionModel_Reset(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QItemSelectionModel) RowIntersectsSelection(row int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QItemSelectionModel_RowIntersectsSelection(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QItemSelectionModel) Select2(selection QItemSelectionITF, command QItemSelectionModel__SelectionFlag) { + if ptr.Pointer() != nil { + C.QItemSelectionModel_Select2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQItemSelection(selection)), C.int(command)) + } +} + +func (ptr *QItemSelectionModel) Select(index QModelIndexITF, command QItemSelectionModel__SelectionFlag) { + if ptr.Pointer() != nil { + C.QItemSelectionModel_Select(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(index)), C.int(command)) + } +} + +func (ptr *QItemSelectionModel) SetCurrentIndex(index QModelIndexITF, command QItemSelectionModel__SelectionFlag) { + if ptr.Pointer() != nil { + C.QItemSelectionModel_SetCurrentIndex(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(index)), C.int(command)) + } +} + +func (ptr *QItemSelectionModel) SetModel(model QAbstractItemModelITF) { + if ptr.Pointer() != nil { + C.QItemSelectionModel_SetModel(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractItemModel(model))) + } +} + +func (ptr *QItemSelectionModel) DestroyQItemSelectionModel() { + if ptr.Pointer() != nil { + C.QItemSelectionModel_DestroyQItemSelectionModel(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qitemselectionmodel.h b/core/qitemselectionmodel.h new file mode 100755 index 00000000..b6e07130 --- /dev/null +++ b/core/qitemselectionmodel.h @@ -0,0 +1,37 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QItemSelectionModel_NewQItemSelectionModel(QtObjectPtr model); +QtObjectPtr QItemSelectionModel_NewQItemSelectionModel2(QtObjectPtr model, QtObjectPtr parent); +void QItemSelectionModel_Clear(QtObjectPtr ptr); +void QItemSelectionModel_ClearCurrentIndex(QtObjectPtr ptr); +void QItemSelectionModel_ClearSelection(QtObjectPtr ptr); +int QItemSelectionModel_ColumnIntersectsSelection(QtObjectPtr ptr, int column, QtObjectPtr parent); +void QItemSelectionModel_ConnectCurrentChanged(QtObjectPtr ptr); +void QItemSelectionModel_DisconnectCurrentChanged(QtObjectPtr ptr); +void QItemSelectionModel_ConnectCurrentColumnChanged(QtObjectPtr ptr); +void QItemSelectionModel_DisconnectCurrentColumnChanged(QtObjectPtr ptr); +QtObjectPtr QItemSelectionModel_CurrentIndex(QtObjectPtr ptr); +void QItemSelectionModel_ConnectCurrentRowChanged(QtObjectPtr ptr); +void QItemSelectionModel_DisconnectCurrentRowChanged(QtObjectPtr ptr); +int QItemSelectionModel_HasSelection(QtObjectPtr ptr); +int QItemSelectionModel_IsColumnSelected(QtObjectPtr ptr, int column, QtObjectPtr parent); +int QItemSelectionModel_IsRowSelected(QtObjectPtr ptr, int row, QtObjectPtr parent); +int QItemSelectionModel_IsSelected(QtObjectPtr ptr, QtObjectPtr index); +QtObjectPtr QItemSelectionModel_Model2(QtObjectPtr ptr); +QtObjectPtr QItemSelectionModel_Model(QtObjectPtr ptr); +void QItemSelectionModel_ConnectModelChanged(QtObjectPtr ptr); +void QItemSelectionModel_DisconnectModelChanged(QtObjectPtr ptr); +void QItemSelectionModel_Reset(QtObjectPtr ptr); +int QItemSelectionModel_RowIntersectsSelection(QtObjectPtr ptr, int row, QtObjectPtr parent); +void QItemSelectionModel_Select2(QtObjectPtr ptr, QtObjectPtr selection, int command); +void QItemSelectionModel_Select(QtObjectPtr ptr, QtObjectPtr index, int command); +void QItemSelectionModel_SetCurrentIndex(QtObjectPtr ptr, QtObjectPtr index, int command); +void QItemSelectionModel_SetModel(QtObjectPtr ptr, QtObjectPtr model); +void QItemSelectionModel_DestroyQItemSelectionModel(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qitemselectionrange.cpp b/core/qitemselectionrange.cpp new file mode 100755 index 00000000..67542783 --- /dev/null +++ b/core/qitemselectionrange.cpp @@ -0,0 +1,82 @@ +#include "qitemselectionrange.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQItemSelectionRange: public QItemSelectionRange { +public: +}; + +int QItemSelectionRange_Intersects(QtObjectPtr ptr, QtObjectPtr other){ + return static_cast(ptr)->intersects(*static_cast(other)); +} + +QtObjectPtr QItemSelectionRange_NewQItemSelectionRange(){ + return new QItemSelectionRange(); +} + +QtObjectPtr QItemSelectionRange_NewQItemSelectionRange2(QtObjectPtr other){ + return new QItemSelectionRange(*static_cast(other)); +} + +QtObjectPtr QItemSelectionRange_NewQItemSelectionRange4(QtObjectPtr index){ + return new QItemSelectionRange(*static_cast(index)); +} + +QtObjectPtr QItemSelectionRange_NewQItemSelectionRange3(QtObjectPtr topLeft, QtObjectPtr bottomRight){ + return new QItemSelectionRange(*static_cast(topLeft), *static_cast(bottomRight)); +} + +int QItemSelectionRange_Bottom(QtObjectPtr ptr){ + return static_cast(ptr)->bottom(); +} + +int QItemSelectionRange_Contains(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->contains(*static_cast(index)); +} + +int QItemSelectionRange_Contains2(QtObjectPtr ptr, int row, int column, QtObjectPtr parentIndex){ + return static_cast(ptr)->contains(row, column, *static_cast(parentIndex)); +} + +int QItemSelectionRange_Height(QtObjectPtr ptr){ + return static_cast(ptr)->height(); +} + +int QItemSelectionRange_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +int QItemSelectionRange_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QItemSelectionRange_Left(QtObjectPtr ptr){ + return static_cast(ptr)->left(); +} + +QtObjectPtr QItemSelectionRange_Model(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->model()); +} + +QtObjectPtr QItemSelectionRange_Parent(QtObjectPtr ptr){ + return static_cast(ptr)->parent().internalPointer(); +} + +int QItemSelectionRange_Right(QtObjectPtr ptr){ + return static_cast(ptr)->right(); +} + +int QItemSelectionRange_Top(QtObjectPtr ptr){ + return static_cast(ptr)->top(); +} + +int QItemSelectionRange_Width(QtObjectPtr ptr){ + return static_cast(ptr)->width(); +} + diff --git a/core/qitemselectionrange.go b/core/qitemselectionrange.go new file mode 100755 index 00000000..6fdbd03d --- /dev/null +++ b/core/qitemselectionrange.go @@ -0,0 +1,147 @@ +package core + +//#include "qitemselectionrange.h" +import "C" +import ( + "unsafe" +) + +type QItemSelectionRange struct { + ptr unsafe.Pointer +} + +type QItemSelectionRangeITF interface { + QItemSelectionRangePTR() *QItemSelectionRange +} + +func (p *QItemSelectionRange) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QItemSelectionRange) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQItemSelectionRange(ptr QItemSelectionRangeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QItemSelectionRangePTR().Pointer() + } + return nil +} + +func QItemSelectionRangeFromPointer(ptr unsafe.Pointer) *QItemSelectionRange { + var n = new(QItemSelectionRange) + n.SetPointer(ptr) + return n +} + +func (ptr *QItemSelectionRange) QItemSelectionRangePTR() *QItemSelectionRange { + return ptr +} + +func (ptr *QItemSelectionRange) Intersects(other QItemSelectionRangeITF) bool { + if ptr.Pointer() != nil { + return C.QItemSelectionRange_Intersects(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQItemSelectionRange(other))) != 0 + } + return false +} + +func NewQItemSelectionRange() *QItemSelectionRange { + return QItemSelectionRangeFromPointer(unsafe.Pointer(C.QItemSelectionRange_NewQItemSelectionRange())) +} + +func NewQItemSelectionRange2(other QItemSelectionRangeITF) *QItemSelectionRange { + return QItemSelectionRangeFromPointer(unsafe.Pointer(C.QItemSelectionRange_NewQItemSelectionRange2(C.QtObjectPtr(PointerFromQItemSelectionRange(other))))) +} + +func NewQItemSelectionRange4(index QModelIndexITF) *QItemSelectionRange { + return QItemSelectionRangeFromPointer(unsafe.Pointer(C.QItemSelectionRange_NewQItemSelectionRange4(C.QtObjectPtr(PointerFromQModelIndex(index))))) +} + +func NewQItemSelectionRange3(topLeft QModelIndexITF, bottomRight QModelIndexITF) *QItemSelectionRange { + return QItemSelectionRangeFromPointer(unsafe.Pointer(C.QItemSelectionRange_NewQItemSelectionRange3(C.QtObjectPtr(PointerFromQModelIndex(topLeft)), C.QtObjectPtr(PointerFromQModelIndex(bottomRight))))) +} + +func (ptr *QItemSelectionRange) Bottom() int { + if ptr.Pointer() != nil { + return int(C.QItemSelectionRange_Bottom(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QItemSelectionRange) Contains(index QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QItemSelectionRange_Contains(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(index))) != 0 + } + return false +} + +func (ptr *QItemSelectionRange) Contains2(row int, column int, parentIndex QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QItemSelectionRange_Contains2(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column), C.QtObjectPtr(PointerFromQModelIndex(parentIndex))) != 0 + } + return false +} + +func (ptr *QItemSelectionRange) Height() int { + if ptr.Pointer() != nil { + return int(C.QItemSelectionRange_Height(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QItemSelectionRange) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QItemSelectionRange_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QItemSelectionRange) IsValid() bool { + if ptr.Pointer() != nil { + return C.QItemSelectionRange_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QItemSelectionRange) Left() int { + if ptr.Pointer() != nil { + return int(C.QItemSelectionRange_Left(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QItemSelectionRange) Model() *QAbstractItemModel { + if ptr.Pointer() != nil { + return QAbstractItemModelFromPointer(unsafe.Pointer(C.QItemSelectionRange_Model(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QItemSelectionRange) Parent() *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QItemSelectionRange_Parent(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QItemSelectionRange) Right() int { + if ptr.Pointer() != nil { + return int(C.QItemSelectionRange_Right(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QItemSelectionRange) Top() int { + if ptr.Pointer() != nil { + return int(C.QItemSelectionRange_Top(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QItemSelectionRange) Width() int { + if ptr.Pointer() != nil { + return int(C.QItemSelectionRange_Width(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/core/qitemselectionrange.h b/core/qitemselectionrange.h new file mode 100755 index 00000000..d7f37f65 --- /dev/null +++ b/core/qitemselectionrange.h @@ -0,0 +1,26 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QItemSelectionRange_Intersects(QtObjectPtr ptr, QtObjectPtr other); +QtObjectPtr QItemSelectionRange_NewQItemSelectionRange(); +QtObjectPtr QItemSelectionRange_NewQItemSelectionRange2(QtObjectPtr other); +QtObjectPtr QItemSelectionRange_NewQItemSelectionRange4(QtObjectPtr index); +QtObjectPtr QItemSelectionRange_NewQItemSelectionRange3(QtObjectPtr topLeft, QtObjectPtr bottomRight); +int QItemSelectionRange_Bottom(QtObjectPtr ptr); +int QItemSelectionRange_Contains(QtObjectPtr ptr, QtObjectPtr index); +int QItemSelectionRange_Contains2(QtObjectPtr ptr, int row, int column, QtObjectPtr parentIndex); +int QItemSelectionRange_Height(QtObjectPtr ptr); +int QItemSelectionRange_IsEmpty(QtObjectPtr ptr); +int QItemSelectionRange_IsValid(QtObjectPtr ptr); +int QItemSelectionRange_Left(QtObjectPtr ptr); +QtObjectPtr QItemSelectionRange_Model(QtObjectPtr ptr); +QtObjectPtr QItemSelectionRange_Parent(QtObjectPtr ptr); +int QItemSelectionRange_Right(QtObjectPtr ptr); +int QItemSelectionRange_Top(QtObjectPtr ptr); +int QItemSelectionRange_Width(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qjsonarray.cpp b/core/qjsonarray.cpp new file mode 100755 index 00000000..b20db609 --- /dev/null +++ b/core/qjsonarray.cpp @@ -0,0 +1,73 @@ +#include "qjsonarray.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQJsonArray: public QJsonArray { +public: +}; + +void QJsonArray_Append(QtObjectPtr ptr, QtObjectPtr value){ + static_cast(ptr)->append(*static_cast(value)); +} + +int QJsonArray_Contains(QtObjectPtr ptr, QtObjectPtr value){ + return static_cast(ptr)->contains(*static_cast(value)); +} + +int QJsonArray_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +int QJsonArray_Empty(QtObjectPtr ptr){ + return static_cast(ptr)->empty(); +} + +int QJsonArray_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +void QJsonArray_Pop_back(QtObjectPtr ptr){ + static_cast(ptr)->pop_back(); +} + +void QJsonArray_Pop_front(QtObjectPtr ptr){ + static_cast(ptr)->pop_front(); +} + +void QJsonArray_Prepend(QtObjectPtr ptr, QtObjectPtr value){ + static_cast(ptr)->prepend(*static_cast(value)); +} + +void QJsonArray_Push_back(QtObjectPtr ptr, QtObjectPtr value){ + static_cast(ptr)->push_back(*static_cast(value)); +} + +void QJsonArray_Push_front(QtObjectPtr ptr, QtObjectPtr value){ + static_cast(ptr)->push_front(*static_cast(value)); +} + +void QJsonArray_RemoveAt(QtObjectPtr ptr, int i){ + static_cast(ptr)->removeAt(i); +} + +void QJsonArray_RemoveFirst(QtObjectPtr ptr){ + static_cast(ptr)->removeFirst(); +} + +void QJsonArray_RemoveLast(QtObjectPtr ptr){ + static_cast(ptr)->removeLast(); +} + +int QJsonArray_Size(QtObjectPtr ptr){ + return static_cast(ptr)->size(); +} + +void QJsonArray_DestroyQJsonArray(QtObjectPtr ptr){ + static_cast(ptr)->~QJsonArray(); +} + diff --git a/core/qjsonarray.go b/core/qjsonarray.go new file mode 100755 index 00000000..0c447041 --- /dev/null +++ b/core/qjsonarray.go @@ -0,0 +1,135 @@ +package core + +//#include "qjsonarray.h" +import "C" +import ( + "unsafe" +) + +type QJsonArray struct { + ptr unsafe.Pointer +} + +type QJsonArrayITF interface { + QJsonArrayPTR() *QJsonArray +} + +func (p *QJsonArray) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QJsonArray) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQJsonArray(ptr QJsonArrayITF) unsafe.Pointer { + if ptr != nil { + return ptr.QJsonArrayPTR().Pointer() + } + return nil +} + +func QJsonArrayFromPointer(ptr unsafe.Pointer) *QJsonArray { + var n = new(QJsonArray) + n.SetPointer(ptr) + return n +} + +func (ptr *QJsonArray) QJsonArrayPTR() *QJsonArray { + return ptr +} + +func (ptr *QJsonArray) Append(value QJsonValueITF) { + if ptr.Pointer() != nil { + C.QJsonArray_Append(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQJsonValue(value))) + } +} + +func (ptr *QJsonArray) Contains(value QJsonValueITF) bool { + if ptr.Pointer() != nil { + return C.QJsonArray_Contains(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQJsonValue(value))) != 0 + } + return false +} + +func (ptr *QJsonArray) Count() int { + if ptr.Pointer() != nil { + return int(C.QJsonArray_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QJsonArray) Empty() bool { + if ptr.Pointer() != nil { + return C.QJsonArray_Empty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJsonArray) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QJsonArray_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJsonArray) Pop_back() { + if ptr.Pointer() != nil { + C.QJsonArray_Pop_back(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QJsonArray) Pop_front() { + if ptr.Pointer() != nil { + C.QJsonArray_Pop_front(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QJsonArray) Prepend(value QJsonValueITF) { + if ptr.Pointer() != nil { + C.QJsonArray_Prepend(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQJsonValue(value))) + } +} + +func (ptr *QJsonArray) Push_back(value QJsonValueITF) { + if ptr.Pointer() != nil { + C.QJsonArray_Push_back(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQJsonValue(value))) + } +} + +func (ptr *QJsonArray) Push_front(value QJsonValueITF) { + if ptr.Pointer() != nil { + C.QJsonArray_Push_front(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQJsonValue(value))) + } +} + +func (ptr *QJsonArray) RemoveAt(i int) { + if ptr.Pointer() != nil { + C.QJsonArray_RemoveAt(C.QtObjectPtr(ptr.Pointer()), C.int(i)) + } +} + +func (ptr *QJsonArray) RemoveFirst() { + if ptr.Pointer() != nil { + C.QJsonArray_RemoveFirst(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QJsonArray) RemoveLast() { + if ptr.Pointer() != nil { + C.QJsonArray_RemoveLast(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QJsonArray) Size() int { + if ptr.Pointer() != nil { + return int(C.QJsonArray_Size(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QJsonArray) DestroyQJsonArray() { + if ptr.Pointer() != nil { + C.QJsonArray_DestroyQJsonArray(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qjsonarray.h b/core/qjsonarray.h new file mode 100755 index 00000000..8e37724a --- /dev/null +++ b/core/qjsonarray.h @@ -0,0 +1,24 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QJsonArray_Append(QtObjectPtr ptr, QtObjectPtr value); +int QJsonArray_Contains(QtObjectPtr ptr, QtObjectPtr value); +int QJsonArray_Count(QtObjectPtr ptr); +int QJsonArray_Empty(QtObjectPtr ptr); +int QJsonArray_IsEmpty(QtObjectPtr ptr); +void QJsonArray_Pop_back(QtObjectPtr ptr); +void QJsonArray_Pop_front(QtObjectPtr ptr); +void QJsonArray_Prepend(QtObjectPtr ptr, QtObjectPtr value); +void QJsonArray_Push_back(QtObjectPtr ptr, QtObjectPtr value); +void QJsonArray_Push_front(QtObjectPtr ptr, QtObjectPtr value); +void QJsonArray_RemoveAt(QtObjectPtr ptr, int i); +void QJsonArray_RemoveFirst(QtObjectPtr ptr); +void QJsonArray_RemoveLast(QtObjectPtr ptr); +int QJsonArray_Size(QtObjectPtr ptr); +void QJsonArray_DestroyQJsonArray(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qjsondocument.cpp b/core/qjsondocument.cpp new file mode 100755 index 00000000..363023c3 --- /dev/null +++ b/core/qjsondocument.cpp @@ -0,0 +1,62 @@ +#include "qjsondocument.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQJsonDocument: public QJsonDocument { +public: +}; + +QtObjectPtr QJsonDocument_NewQJsonDocument(){ + return new QJsonDocument(); +} + +QtObjectPtr QJsonDocument_NewQJsonDocument3(QtObjectPtr array){ + return new QJsonDocument(*static_cast(array)); +} + +QtObjectPtr QJsonDocument_NewQJsonDocument4(QtObjectPtr other){ + return new QJsonDocument(*static_cast(other)); +} + +QtObjectPtr QJsonDocument_NewQJsonDocument2(QtObjectPtr object){ + return new QJsonDocument(*static_cast(object)); +} + +int QJsonDocument_IsArray(QtObjectPtr ptr){ + return static_cast(ptr)->isArray(); +} + +int QJsonDocument_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +int QJsonDocument_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QJsonDocument_IsObject(QtObjectPtr ptr){ + return static_cast(ptr)->isObject(); +} + +void QJsonDocument_SetArray(QtObjectPtr ptr, QtObjectPtr array){ + static_cast(ptr)->setArray(*static_cast(array)); +} + +void QJsonDocument_SetObject(QtObjectPtr ptr, QtObjectPtr object){ + static_cast(ptr)->setObject(*static_cast(object)); +} + +char* QJsonDocument_ToVariant(QtObjectPtr ptr){ + return static_cast(ptr)->toVariant().toString().toUtf8().data(); +} + +void QJsonDocument_DestroyQJsonDocument(QtObjectPtr ptr){ + static_cast(ptr)->~QJsonDocument(); +} + diff --git a/core/qjsondocument.go b/core/qjsondocument.go new file mode 100755 index 00000000..491a54b7 --- /dev/null +++ b/core/qjsondocument.go @@ -0,0 +1,125 @@ +package core + +//#include "qjsondocument.h" +import "C" +import ( + "unsafe" +) + +type QJsonDocument struct { + ptr unsafe.Pointer +} + +type QJsonDocumentITF interface { + QJsonDocumentPTR() *QJsonDocument +} + +func (p *QJsonDocument) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QJsonDocument) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQJsonDocument(ptr QJsonDocumentITF) unsafe.Pointer { + if ptr != nil { + return ptr.QJsonDocumentPTR().Pointer() + } + return nil +} + +func QJsonDocumentFromPointer(ptr unsafe.Pointer) *QJsonDocument { + var n = new(QJsonDocument) + n.SetPointer(ptr) + return n +} + +func (ptr *QJsonDocument) QJsonDocumentPTR() *QJsonDocument { + return ptr +} + +//QJsonDocument::DataValidation +type QJsonDocument__DataValidation int + +var ( + QJsonDocument__Validate = QJsonDocument__DataValidation(0) + QJsonDocument__BypassValidation = QJsonDocument__DataValidation(1) +) + +//QJsonDocument::JsonFormat +type QJsonDocument__JsonFormat int + +var ( + QJsonDocument__Indented = QJsonDocument__JsonFormat(0) + QJsonDocument__Compact = QJsonDocument__JsonFormat(1) +) + +func NewQJsonDocument() *QJsonDocument { + return QJsonDocumentFromPointer(unsafe.Pointer(C.QJsonDocument_NewQJsonDocument())) +} + +func NewQJsonDocument3(array QJsonArrayITF) *QJsonDocument { + return QJsonDocumentFromPointer(unsafe.Pointer(C.QJsonDocument_NewQJsonDocument3(C.QtObjectPtr(PointerFromQJsonArray(array))))) +} + +func NewQJsonDocument4(other QJsonDocumentITF) *QJsonDocument { + return QJsonDocumentFromPointer(unsafe.Pointer(C.QJsonDocument_NewQJsonDocument4(C.QtObjectPtr(PointerFromQJsonDocument(other))))) +} + +func NewQJsonDocument2(object QJsonObjectITF) *QJsonDocument { + return QJsonDocumentFromPointer(unsafe.Pointer(C.QJsonDocument_NewQJsonDocument2(C.QtObjectPtr(PointerFromQJsonObject(object))))) +} + +func (ptr *QJsonDocument) IsArray() bool { + if ptr.Pointer() != nil { + return C.QJsonDocument_IsArray(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJsonDocument) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QJsonDocument_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJsonDocument) IsNull() bool { + if ptr.Pointer() != nil { + return C.QJsonDocument_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJsonDocument) IsObject() bool { + if ptr.Pointer() != nil { + return C.QJsonDocument_IsObject(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJsonDocument) SetArray(array QJsonArrayITF) { + if ptr.Pointer() != nil { + C.QJsonDocument_SetArray(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQJsonArray(array))) + } +} + +func (ptr *QJsonDocument) SetObject(object QJsonObjectITF) { + if ptr.Pointer() != nil { + C.QJsonDocument_SetObject(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQJsonObject(object))) + } +} + +func (ptr *QJsonDocument) ToVariant() string { + if ptr.Pointer() != nil { + return C.GoString(C.QJsonDocument_ToVariant(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QJsonDocument) DestroyQJsonDocument() { + if ptr.Pointer() != nil { + C.QJsonDocument_DestroyQJsonDocument(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qjsondocument.h b/core/qjsondocument.h new file mode 100755 index 00000000..138c2edd --- /dev/null +++ b/core/qjsondocument.h @@ -0,0 +1,21 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QJsonDocument_NewQJsonDocument(); +QtObjectPtr QJsonDocument_NewQJsonDocument3(QtObjectPtr array); +QtObjectPtr QJsonDocument_NewQJsonDocument4(QtObjectPtr other); +QtObjectPtr QJsonDocument_NewQJsonDocument2(QtObjectPtr object); +int QJsonDocument_IsArray(QtObjectPtr ptr); +int QJsonDocument_IsEmpty(QtObjectPtr ptr); +int QJsonDocument_IsNull(QtObjectPtr ptr); +int QJsonDocument_IsObject(QtObjectPtr ptr); +void QJsonDocument_SetArray(QtObjectPtr ptr, QtObjectPtr array); +void QJsonDocument_SetObject(QtObjectPtr ptr, QtObjectPtr object); +char* QJsonDocument_ToVariant(QtObjectPtr ptr); +void QJsonDocument_DestroyQJsonDocument(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qjsonobject.cpp b/core/qjsonobject.cpp new file mode 100755 index 00000000..075de75b --- /dev/null +++ b/core/qjsonobject.cpp @@ -0,0 +1,44 @@ +#include "qjsonobject.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQJsonObject: public QJsonObject { +public: +}; + +int QJsonObject_Contains(QtObjectPtr ptr, char* key){ + return static_cast(ptr)->contains(QString(key)); +} + +int QJsonObject_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +int QJsonObject_Empty(QtObjectPtr ptr){ + return static_cast(ptr)->empty(); +} + +int QJsonObject_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +char* QJsonObject_Keys(QtObjectPtr ptr){ + return static_cast(ptr)->keys().join("|").toUtf8().data(); +} + +int QJsonObject_Length(QtObjectPtr ptr){ + return static_cast(ptr)->length(); +} + +int QJsonObject_Size(QtObjectPtr ptr){ + return static_cast(ptr)->size(); +} + +void QJsonObject_DestroyQJsonObject(QtObjectPtr ptr){ + static_cast(ptr)->~QJsonObject(); +} + diff --git a/core/qjsonobject.go b/core/qjsonobject.go new file mode 100755 index 00000000..fe29ef7f --- /dev/null +++ b/core/qjsonobject.go @@ -0,0 +1,96 @@ +package core + +//#include "qjsonobject.h" +import "C" +import ( + "strings" + "unsafe" +) + +type QJsonObject struct { + ptr unsafe.Pointer +} + +type QJsonObjectITF interface { + QJsonObjectPTR() *QJsonObject +} + +func (p *QJsonObject) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QJsonObject) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQJsonObject(ptr QJsonObjectITF) unsafe.Pointer { + if ptr != nil { + return ptr.QJsonObjectPTR().Pointer() + } + return nil +} + +func QJsonObjectFromPointer(ptr unsafe.Pointer) *QJsonObject { + var n = new(QJsonObject) + n.SetPointer(ptr) + return n +} + +func (ptr *QJsonObject) QJsonObjectPTR() *QJsonObject { + return ptr +} + +func (ptr *QJsonObject) Contains(key string) bool { + if ptr.Pointer() != nil { + return C.QJsonObject_Contains(C.QtObjectPtr(ptr.Pointer()), C.CString(key)) != 0 + } + return false +} + +func (ptr *QJsonObject) Count() int { + if ptr.Pointer() != nil { + return int(C.QJsonObject_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QJsonObject) Empty() bool { + if ptr.Pointer() != nil { + return C.QJsonObject_Empty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJsonObject) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QJsonObject_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJsonObject) Keys() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QJsonObject_Keys(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QJsonObject) Length() int { + if ptr.Pointer() != nil { + return int(C.QJsonObject_Length(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QJsonObject) Size() int { + if ptr.Pointer() != nil { + return int(C.QJsonObject_Size(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QJsonObject) DestroyQJsonObject() { + if ptr.Pointer() != nil { + C.QJsonObject_DestroyQJsonObject(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qjsonobject.h b/core/qjsonobject.h new file mode 100755 index 00000000..5ff7303c --- /dev/null +++ b/core/qjsonobject.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QJsonObject_Contains(QtObjectPtr ptr, char* key); +int QJsonObject_Count(QtObjectPtr ptr); +int QJsonObject_Empty(QtObjectPtr ptr); +int QJsonObject_IsEmpty(QtObjectPtr ptr); +char* QJsonObject_Keys(QtObjectPtr ptr); +int QJsonObject_Length(QtObjectPtr ptr); +int QJsonObject_Size(QtObjectPtr ptr); +void QJsonObject_DestroyQJsonObject(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qjsonparseerror.cpp b/core/qjsonparseerror.cpp new file mode 100755 index 00000000..67461963 --- /dev/null +++ b/core/qjsonparseerror.cpp @@ -0,0 +1,16 @@ +#include "qjsonparseerror.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQJsonParseError: public QJsonParseError { +public: +}; + +char* QJsonParseError_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + diff --git a/core/qjsonparseerror.go b/core/qjsonparseerror.go new file mode 100755 index 00000000..9dc97f54 --- /dev/null +++ b/core/qjsonparseerror.go @@ -0,0 +1,68 @@ +package core + +//#include "qjsonparseerror.h" +import "C" +import ( + "unsafe" +) + +type QJsonParseError struct { + ptr unsafe.Pointer +} + +type QJsonParseErrorITF interface { + QJsonParseErrorPTR() *QJsonParseError +} + +func (p *QJsonParseError) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QJsonParseError) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQJsonParseError(ptr QJsonParseErrorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QJsonParseErrorPTR().Pointer() + } + return nil +} + +func QJsonParseErrorFromPointer(ptr unsafe.Pointer) *QJsonParseError { + var n = new(QJsonParseError) + n.SetPointer(ptr) + return n +} + +func (ptr *QJsonParseError) QJsonParseErrorPTR() *QJsonParseError { + return ptr +} + +//QJsonParseError::ParseError +type QJsonParseError__ParseError int + +var ( + QJsonParseError__NoError = QJsonParseError__ParseError(0) + QJsonParseError__UnterminatedObject = QJsonParseError__ParseError(1) + QJsonParseError__MissingNameSeparator = QJsonParseError__ParseError(2) + QJsonParseError__UnterminatedArray = QJsonParseError__ParseError(3) + QJsonParseError__MissingValueSeparator = QJsonParseError__ParseError(4) + QJsonParseError__IllegalValue = QJsonParseError__ParseError(5) + QJsonParseError__TerminationByNumber = QJsonParseError__ParseError(6) + QJsonParseError__IllegalNumber = QJsonParseError__ParseError(7) + QJsonParseError__IllegalEscapeSequence = QJsonParseError__ParseError(8) + QJsonParseError__IllegalUTF8String = QJsonParseError__ParseError(9) + QJsonParseError__UnterminatedString = QJsonParseError__ParseError(10) + QJsonParseError__MissingObject = QJsonParseError__ParseError(11) + QJsonParseError__DeepNesting = QJsonParseError__ParseError(12) + QJsonParseError__DocumentTooLarge = QJsonParseError__ParseError(13) + QJsonParseError__GarbageAtEnd = QJsonParseError__ParseError(14) +) + +func (ptr *QJsonParseError) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QJsonParseError_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/core/qjsonparseerror.h b/core/qjsonparseerror.h new file mode 100755 index 00000000..9047d9f2 --- /dev/null +++ b/core/qjsonparseerror.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QJsonParseError_ErrorString(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qjsonvalue.cpp b/core/qjsonvalue.cpp new file mode 100755 index 00000000..e7a711ac --- /dev/null +++ b/core/qjsonvalue.cpp @@ -0,0 +1,103 @@ +#include "qjsonvalue.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQJsonValue: public QJsonValue { +public: +}; + +QtObjectPtr QJsonValue_NewQJsonValue5(QtObjectPtr s){ + return new QJsonValue(*static_cast(s)); +} + +QtObjectPtr QJsonValue_NewQJsonValue(int ty){ + return new QJsonValue(static_cast(ty)); +} + +QtObjectPtr QJsonValue_NewQJsonValue2(int b){ + return new QJsonValue(b != 0); +} + +QtObjectPtr QJsonValue_NewQJsonValue7(QtObjectPtr a){ + return new QJsonValue(*static_cast(a)); +} + +QtObjectPtr QJsonValue_NewQJsonValue8(QtObjectPtr o){ + return new QJsonValue(*static_cast(o)); +} + +QtObjectPtr QJsonValue_NewQJsonValue9(QtObjectPtr other){ + return new QJsonValue(*static_cast(other)); +} + +QtObjectPtr QJsonValue_NewQJsonValue4(char* s){ + return new QJsonValue(QString(s)); +} + +QtObjectPtr QJsonValue_NewQJsonValue6(char* s){ + return new QJsonValue(const_cast(s)); +} + +QtObjectPtr QJsonValue_NewQJsonValue12(int n){ + return new QJsonValue(n); +} + +int QJsonValue_IsArray(QtObjectPtr ptr){ + return static_cast(ptr)->isArray(); +} + +int QJsonValue_IsBool(QtObjectPtr ptr){ + return static_cast(ptr)->isBool(); +} + +int QJsonValue_IsDouble(QtObjectPtr ptr){ + return static_cast(ptr)->isDouble(); +} + +int QJsonValue_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QJsonValue_IsObject(QtObjectPtr ptr){ + return static_cast(ptr)->isObject(); +} + +int QJsonValue_IsString(QtObjectPtr ptr){ + return static_cast(ptr)->isString(); +} + +int QJsonValue_IsUndefined(QtObjectPtr ptr){ + return static_cast(ptr)->isUndefined(); +} + +int QJsonValue_ToBool(QtObjectPtr ptr, int defaultValue){ + return static_cast(ptr)->toBool(defaultValue != 0); +} + +int QJsonValue_ToInt(QtObjectPtr ptr, int defaultValue){ + return static_cast(ptr)->toInt(defaultValue); +} + +char* QJsonValue_ToString(QtObjectPtr ptr, char* defaultValue){ + return static_cast(ptr)->toString(QString(defaultValue)).toUtf8().data(); +} + +char* QJsonValue_ToVariant(QtObjectPtr ptr){ + return static_cast(ptr)->toVariant().toString().toUtf8().data(); +} + +int QJsonValue_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QJsonValue_DestroyQJsonValue(QtObjectPtr ptr){ + static_cast(ptr)->~QJsonValue(); +} + diff --git a/core/qjsonvalue.go b/core/qjsonvalue.go new file mode 100755 index 00000000..57801d67 --- /dev/null +++ b/core/qjsonvalue.go @@ -0,0 +1,180 @@ +package core + +//#include "qjsonvalue.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QJsonValue struct { + ptr unsafe.Pointer +} + +type QJsonValueITF interface { + QJsonValuePTR() *QJsonValue +} + +func (p *QJsonValue) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QJsonValue) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQJsonValue(ptr QJsonValueITF) unsafe.Pointer { + if ptr != nil { + return ptr.QJsonValuePTR().Pointer() + } + return nil +} + +func QJsonValueFromPointer(ptr unsafe.Pointer) *QJsonValue { + var n = new(QJsonValue) + n.SetPointer(ptr) + return n +} + +func (ptr *QJsonValue) QJsonValuePTR() *QJsonValue { + return ptr +} + +//QJsonValue::Type +type QJsonValue__Type int + +var ( + QJsonValue__Null = QJsonValue__Type(0x0) + QJsonValue__Bool = QJsonValue__Type(0x1) + QJsonValue__Double = QJsonValue__Type(0x2) + QJsonValue__String = QJsonValue__Type(0x3) + QJsonValue__Array = QJsonValue__Type(0x4) + QJsonValue__Object = QJsonValue__Type(0x5) + QJsonValue__Undefined = QJsonValue__Type(0x80) +) + +func NewQJsonValue5(s QLatin1StringITF) *QJsonValue { + return QJsonValueFromPointer(unsafe.Pointer(C.QJsonValue_NewQJsonValue5(C.QtObjectPtr(PointerFromQLatin1String(s))))) +} + +func NewQJsonValue(ty QJsonValue__Type) *QJsonValue { + return QJsonValueFromPointer(unsafe.Pointer(C.QJsonValue_NewQJsonValue(C.int(ty)))) +} + +func NewQJsonValue2(b bool) *QJsonValue { + return QJsonValueFromPointer(unsafe.Pointer(C.QJsonValue_NewQJsonValue2(C.int(qt.GoBoolToInt(b))))) +} + +func NewQJsonValue7(a QJsonArrayITF) *QJsonValue { + return QJsonValueFromPointer(unsafe.Pointer(C.QJsonValue_NewQJsonValue7(C.QtObjectPtr(PointerFromQJsonArray(a))))) +} + +func NewQJsonValue8(o QJsonObjectITF) *QJsonValue { + return QJsonValueFromPointer(unsafe.Pointer(C.QJsonValue_NewQJsonValue8(C.QtObjectPtr(PointerFromQJsonObject(o))))) +} + +func NewQJsonValue9(other QJsonValueITF) *QJsonValue { + return QJsonValueFromPointer(unsafe.Pointer(C.QJsonValue_NewQJsonValue9(C.QtObjectPtr(PointerFromQJsonValue(other))))) +} + +func NewQJsonValue4(s string) *QJsonValue { + return QJsonValueFromPointer(unsafe.Pointer(C.QJsonValue_NewQJsonValue4(C.CString(s)))) +} + +func NewQJsonValue6(s string) *QJsonValue { + return QJsonValueFromPointer(unsafe.Pointer(C.QJsonValue_NewQJsonValue6(C.CString(s)))) +} + +func NewQJsonValue12(n int) *QJsonValue { + return QJsonValueFromPointer(unsafe.Pointer(C.QJsonValue_NewQJsonValue12(C.int(n)))) +} + +func (ptr *QJsonValue) IsArray() bool { + if ptr.Pointer() != nil { + return C.QJsonValue_IsArray(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJsonValue) IsBool() bool { + if ptr.Pointer() != nil { + return C.QJsonValue_IsBool(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJsonValue) IsDouble() bool { + if ptr.Pointer() != nil { + return C.QJsonValue_IsDouble(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJsonValue) IsNull() bool { + if ptr.Pointer() != nil { + return C.QJsonValue_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJsonValue) IsObject() bool { + if ptr.Pointer() != nil { + return C.QJsonValue_IsObject(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJsonValue) IsString() bool { + if ptr.Pointer() != nil { + return C.QJsonValue_IsString(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJsonValue) IsUndefined() bool { + if ptr.Pointer() != nil { + return C.QJsonValue_IsUndefined(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJsonValue) ToBool(defaultValue bool) bool { + if ptr.Pointer() != nil { + return C.QJsonValue_ToBool(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(defaultValue))) != 0 + } + return false +} + +func (ptr *QJsonValue) ToInt(defaultValue int) int { + if ptr.Pointer() != nil { + return int(C.QJsonValue_ToInt(C.QtObjectPtr(ptr.Pointer()), C.int(defaultValue))) + } + return 0 +} + +func (ptr *QJsonValue) ToString(defaultValue string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QJsonValue_ToString(C.QtObjectPtr(ptr.Pointer()), C.CString(defaultValue))) + } + return "" +} + +func (ptr *QJsonValue) ToVariant() string { + if ptr.Pointer() != nil { + return C.GoString(C.QJsonValue_ToVariant(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QJsonValue) Type() QJsonValue__Type { + if ptr.Pointer() != nil { + return QJsonValue__Type(C.QJsonValue_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QJsonValue) DestroyQJsonValue() { + if ptr.Pointer() != nil { + C.QJsonValue_DestroyQJsonValue(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qjsonvalue.h b/core/qjsonvalue.h new file mode 100755 index 00000000..6ab05c08 --- /dev/null +++ b/core/qjsonvalue.h @@ -0,0 +1,31 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QJsonValue_NewQJsonValue5(QtObjectPtr s); +QtObjectPtr QJsonValue_NewQJsonValue(int ty); +QtObjectPtr QJsonValue_NewQJsonValue2(int b); +QtObjectPtr QJsonValue_NewQJsonValue7(QtObjectPtr a); +QtObjectPtr QJsonValue_NewQJsonValue8(QtObjectPtr o); +QtObjectPtr QJsonValue_NewQJsonValue9(QtObjectPtr other); +QtObjectPtr QJsonValue_NewQJsonValue4(char* s); +QtObjectPtr QJsonValue_NewQJsonValue6(char* s); +QtObjectPtr QJsonValue_NewQJsonValue12(int n); +int QJsonValue_IsArray(QtObjectPtr ptr); +int QJsonValue_IsBool(QtObjectPtr ptr); +int QJsonValue_IsDouble(QtObjectPtr ptr); +int QJsonValue_IsNull(QtObjectPtr ptr); +int QJsonValue_IsObject(QtObjectPtr ptr); +int QJsonValue_IsString(QtObjectPtr ptr); +int QJsonValue_IsUndefined(QtObjectPtr ptr); +int QJsonValue_ToBool(QtObjectPtr ptr, int defaultValue); +int QJsonValue_ToInt(QtObjectPtr ptr, int defaultValue); +char* QJsonValue_ToString(QtObjectPtr ptr, char* defaultValue); +char* QJsonValue_ToVariant(QtObjectPtr ptr); +int QJsonValue_Type(QtObjectPtr ptr); +void QJsonValue_DestroyQJsonValue(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qlatin1char.cpp b/core/qlatin1char.cpp new file mode 100755 index 00000000..8fd18785 --- /dev/null +++ b/core/qlatin1char.cpp @@ -0,0 +1,16 @@ +#include "qlatin1char.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQLatin1Char: public QLatin1Char { +public: +}; + +QtObjectPtr QLatin1Char_NewQLatin1Char(char* c){ + return new QLatin1Char(*c); +} + diff --git a/core/qlatin1char.go b/core/qlatin1char.go new file mode 100755 index 00000000..af015098 --- /dev/null +++ b/core/qlatin1char.go @@ -0,0 +1,44 @@ +package core + +//#include "qlatin1char.h" +import "C" +import ( + "unsafe" +) + +type QLatin1Char struct { + ptr unsafe.Pointer +} + +type QLatin1CharITF interface { + QLatin1CharPTR() *QLatin1Char +} + +func (p *QLatin1Char) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QLatin1Char) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQLatin1Char(ptr QLatin1CharITF) unsafe.Pointer { + if ptr != nil { + return ptr.QLatin1CharPTR().Pointer() + } + return nil +} + +func QLatin1CharFromPointer(ptr unsafe.Pointer) *QLatin1Char { + var n = new(QLatin1Char) + n.SetPointer(ptr) + return n +} + +func (ptr *QLatin1Char) QLatin1CharPTR() *QLatin1Char { + return ptr +} + +func NewQLatin1Char(c string) *QLatin1Char { + return QLatin1CharFromPointer(unsafe.Pointer(C.QLatin1Char_NewQLatin1Char(C.CString(c)))) +} diff --git a/core/qlatin1char.h b/core/qlatin1char.h new file mode 100755 index 00000000..25a8cb40 --- /dev/null +++ b/core/qlatin1char.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QLatin1Char_NewQLatin1Char(char* c); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qlatin1string.cpp b/core/qlatin1string.cpp new file mode 100755 index 00000000..524d927d --- /dev/null +++ b/core/qlatin1string.cpp @@ -0,0 +1,29 @@ +#include "qlatin1string.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQLatin1String: public QLatin1String { +public: +}; + +QtObjectPtr QLatin1String_NewQLatin1String3(QtObjectPtr str){ + return new QLatin1String(*static_cast(str)); +} + +QtObjectPtr QLatin1String_NewQLatin1String(char* str){ + return new QLatin1String(const_cast(str)); +} + +QtObjectPtr QLatin1String_NewQLatin1String2(char* str, int size){ + return new QLatin1String(const_cast(str), size); +} + +int QLatin1String_Size(QtObjectPtr ptr){ + return static_cast(ptr)->size(); +} + diff --git a/core/qlatin1string.go b/core/qlatin1string.go new file mode 100755 index 00000000..53a2fdb2 --- /dev/null +++ b/core/qlatin1string.go @@ -0,0 +1,59 @@ +package core + +//#include "qlatin1string.h" +import "C" +import ( + "unsafe" +) + +type QLatin1String struct { + ptr unsafe.Pointer +} + +type QLatin1StringITF interface { + QLatin1StringPTR() *QLatin1String +} + +func (p *QLatin1String) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QLatin1String) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQLatin1String(ptr QLatin1StringITF) unsafe.Pointer { + if ptr != nil { + return ptr.QLatin1StringPTR().Pointer() + } + return nil +} + +func QLatin1StringFromPointer(ptr unsafe.Pointer) *QLatin1String { + var n = new(QLatin1String) + n.SetPointer(ptr) + return n +} + +func (ptr *QLatin1String) QLatin1StringPTR() *QLatin1String { + return ptr +} + +func NewQLatin1String3(str QByteArrayITF) *QLatin1String { + return QLatin1StringFromPointer(unsafe.Pointer(C.QLatin1String_NewQLatin1String3(C.QtObjectPtr(PointerFromQByteArray(str))))) +} + +func NewQLatin1String(str string) *QLatin1String { + return QLatin1StringFromPointer(unsafe.Pointer(C.QLatin1String_NewQLatin1String(C.CString(str)))) +} + +func NewQLatin1String2(str string, size int) *QLatin1String { + return QLatin1StringFromPointer(unsafe.Pointer(C.QLatin1String_NewQLatin1String2(C.CString(str), C.int(size)))) +} + +func (ptr *QLatin1String) Size() int { + if ptr.Pointer() != nil { + return int(C.QLatin1String_Size(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/core/qlatin1string.h b/core/qlatin1string.h new file mode 100755 index 00000000..b05ded6e --- /dev/null +++ b/core/qlatin1string.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QLatin1String_NewQLatin1String3(QtObjectPtr str); +QtObjectPtr QLatin1String_NewQLatin1String(char* str); +QtObjectPtr QLatin1String_NewQLatin1String2(char* str, int size); +int QLatin1String_Size(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qlibrary.cpp b/core/qlibrary.cpp new file mode 100755 index 00000000..a98b21fd --- /dev/null +++ b/core/qlibrary.cpp @@ -0,0 +1,77 @@ +#include "qlibrary.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQLibrary: public QLibrary { +public: +}; + +char* QLibrary_FileName(QtObjectPtr ptr){ + return static_cast(ptr)->fileName().toUtf8().data(); +} + +int QLibrary_LoadHints(QtObjectPtr ptr){ + return static_cast(ptr)->loadHints(); +} + +void QLibrary_SetFileName(QtObjectPtr ptr, char* fileName){ + static_cast(ptr)->setFileName(QString(fileName)); +} + +void QLibrary_SetFileNameAndVersion(QtObjectPtr ptr, char* fileName, int versionNumber){ + static_cast(ptr)->setFileNameAndVersion(QString(fileName), versionNumber); +} + +void QLibrary_SetLoadHints(QtObjectPtr ptr, int hints){ + static_cast(ptr)->setLoadHints(static_cast(hints)); +} + +QtObjectPtr QLibrary_NewQLibrary(QtObjectPtr parent){ + return new QLibrary(static_cast(parent)); +} + +QtObjectPtr QLibrary_NewQLibrary2(char* fileName, QtObjectPtr parent){ + return new QLibrary(QString(fileName), static_cast(parent)); +} + +QtObjectPtr QLibrary_NewQLibrary4(char* fileName, char* version, QtObjectPtr parent){ + return new QLibrary(QString(fileName), QString(version), static_cast(parent)); +} + +QtObjectPtr QLibrary_NewQLibrary3(char* fileName, int verNum, QtObjectPtr parent){ + return new QLibrary(QString(fileName), verNum, static_cast(parent)); +} + +char* QLibrary_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +int QLibrary_QLibrary_IsLibrary(char* fileName){ + return QLibrary::isLibrary(QString(fileName)); +} + +int QLibrary_IsLoaded(QtObjectPtr ptr){ + return static_cast(ptr)->isLoaded(); +} + +int QLibrary_Load(QtObjectPtr ptr){ + return static_cast(ptr)->load(); +} + +void QLibrary_SetFileNameAndVersion2(QtObjectPtr ptr, char* fileName, char* version){ + static_cast(ptr)->setFileNameAndVersion(QString(fileName), QString(version)); +} + +int QLibrary_Unload(QtObjectPtr ptr){ + return static_cast(ptr)->unload(); +} + +void QLibrary_DestroyQLibrary(QtObjectPtr ptr){ + static_cast(ptr)->~QLibrary(); +} + diff --git a/core/qlibrary.go b/core/qlibrary.go new file mode 100755 index 00000000..65fb2c61 --- /dev/null +++ b/core/qlibrary.go @@ -0,0 +1,141 @@ +package core + +//#include "qlibrary.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QLibrary struct { + QObject +} + +type QLibraryITF interface { + QObjectITF + QLibraryPTR() *QLibrary +} + +func PointerFromQLibrary(ptr QLibraryITF) unsafe.Pointer { + if ptr != nil { + return ptr.QLibraryPTR().Pointer() + } + return nil +} + +func QLibraryFromPointer(ptr unsafe.Pointer) *QLibrary { + var n = new(QLibrary) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QLibrary_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QLibrary) QLibraryPTR() *QLibrary { + return ptr +} + +//QLibrary::LoadHint +type QLibrary__LoadHint int + +var ( + QLibrary__ResolveAllSymbolsHint = QLibrary__LoadHint(0x01) + QLibrary__ExportExternalSymbolsHint = QLibrary__LoadHint(0x02) + QLibrary__LoadArchiveMemberHint = QLibrary__LoadHint(0x04) + QLibrary__PreventUnloadHint = QLibrary__LoadHint(0x08) + QLibrary__DeepBindHint = QLibrary__LoadHint(0x10) +) + +func (ptr *QLibrary) FileName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QLibrary_FileName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QLibrary) LoadHints() QLibrary__LoadHint { + if ptr.Pointer() != nil { + return QLibrary__LoadHint(C.QLibrary_LoadHints(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLibrary) SetFileName(fileName string) { + if ptr.Pointer() != nil { + C.QLibrary_SetFileName(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName)) + } +} + +func (ptr *QLibrary) SetFileNameAndVersion(fileName string, versionNumber int) { + if ptr.Pointer() != nil { + C.QLibrary_SetFileNameAndVersion(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName), C.int(versionNumber)) + } +} + +func (ptr *QLibrary) SetLoadHints(hints QLibrary__LoadHint) { + if ptr.Pointer() != nil { + C.QLibrary_SetLoadHints(C.QtObjectPtr(ptr.Pointer()), C.int(hints)) + } +} + +func NewQLibrary(parent QObjectITF) *QLibrary { + return QLibraryFromPointer(unsafe.Pointer(C.QLibrary_NewQLibrary(C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func NewQLibrary2(fileName string, parent QObjectITF) *QLibrary { + return QLibraryFromPointer(unsafe.Pointer(C.QLibrary_NewQLibrary2(C.CString(fileName), C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func NewQLibrary4(fileName string, version string, parent QObjectITF) *QLibrary { + return QLibraryFromPointer(unsafe.Pointer(C.QLibrary_NewQLibrary4(C.CString(fileName), C.CString(version), C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func NewQLibrary3(fileName string, verNum int, parent QObjectITF) *QLibrary { + return QLibraryFromPointer(unsafe.Pointer(C.QLibrary_NewQLibrary3(C.CString(fileName), C.int(verNum), C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func (ptr *QLibrary) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QLibrary_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func QLibrary_IsLibrary(fileName string) bool { + return C.QLibrary_QLibrary_IsLibrary(C.CString(fileName)) != 0 +} + +func (ptr *QLibrary) IsLoaded() bool { + if ptr.Pointer() != nil { + return C.QLibrary_IsLoaded(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLibrary) Load() bool { + if ptr.Pointer() != nil { + return C.QLibrary_Load(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLibrary) SetFileNameAndVersion2(fileName string, version string) { + if ptr.Pointer() != nil { + C.QLibrary_SetFileNameAndVersion2(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName), C.CString(version)) + } +} + +func (ptr *QLibrary) Unload() bool { + if ptr.Pointer() != nil { + return C.QLibrary_Unload(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLibrary) DestroyQLibrary() { + if ptr.Pointer() != nil { + C.QLibrary_DestroyQLibrary(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qlibrary.h b/core/qlibrary.h new file mode 100755 index 00000000..c2d3e369 --- /dev/null +++ b/core/qlibrary.h @@ -0,0 +1,25 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QLibrary_FileName(QtObjectPtr ptr); +int QLibrary_LoadHints(QtObjectPtr ptr); +void QLibrary_SetFileName(QtObjectPtr ptr, char* fileName); +void QLibrary_SetFileNameAndVersion(QtObjectPtr ptr, char* fileName, int versionNumber); +void QLibrary_SetLoadHints(QtObjectPtr ptr, int hints); +QtObjectPtr QLibrary_NewQLibrary(QtObjectPtr parent); +QtObjectPtr QLibrary_NewQLibrary2(char* fileName, QtObjectPtr parent); +QtObjectPtr QLibrary_NewQLibrary4(char* fileName, char* version, QtObjectPtr parent); +QtObjectPtr QLibrary_NewQLibrary3(char* fileName, int verNum, QtObjectPtr parent); +char* QLibrary_ErrorString(QtObjectPtr ptr); +int QLibrary_QLibrary_IsLibrary(char* fileName); +int QLibrary_IsLoaded(QtObjectPtr ptr); +int QLibrary_Load(QtObjectPtr ptr); +void QLibrary_SetFileNameAndVersion2(QtObjectPtr ptr, char* fileName, char* version); +int QLibrary_Unload(QtObjectPtr ptr); +void QLibrary_DestroyQLibrary(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qlibraryinfo.cpp b/core/qlibraryinfo.cpp new file mode 100755 index 00000000..6198cb26 --- /dev/null +++ b/core/qlibraryinfo.cpp @@ -0,0 +1,29 @@ +#include "qlibraryinfo.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQLibraryInfo: public QLibraryInfo { +public: +}; + +int QLibraryInfo_QLibraryInfo_IsDebugBuild(){ + return QLibraryInfo::isDebugBuild(); +} + +char* QLibraryInfo_QLibraryInfo_LicensedProducts(){ + return QLibraryInfo::licensedProducts().toUtf8().data(); +} + +char* QLibraryInfo_QLibraryInfo_Licensee(){ + return QLibraryInfo::licensee().toUtf8().data(); +} + +char* QLibraryInfo_QLibraryInfo_Location(int loc){ + return QLibraryInfo::location(static_cast(loc)).toUtf8().data(); +} + diff --git a/core/qlibraryinfo.go b/core/qlibraryinfo.go new file mode 100755 index 00000000..760c8fde --- /dev/null +++ b/core/qlibraryinfo.go @@ -0,0 +1,77 @@ +package core + +//#include "qlibraryinfo.h" +import "C" +import ( + "unsafe" +) + +type QLibraryInfo struct { + ptr unsafe.Pointer +} + +type QLibraryInfoITF interface { + QLibraryInfoPTR() *QLibraryInfo +} + +func (p *QLibraryInfo) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QLibraryInfo) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQLibraryInfo(ptr QLibraryInfoITF) unsafe.Pointer { + if ptr != nil { + return ptr.QLibraryInfoPTR().Pointer() + } + return nil +} + +func QLibraryInfoFromPointer(ptr unsafe.Pointer) *QLibraryInfo { + var n = new(QLibraryInfo) + n.SetPointer(ptr) + return n +} + +func (ptr *QLibraryInfo) QLibraryInfoPTR() *QLibraryInfo { + return ptr +} + +//QLibraryInfo::LibraryLocation +type QLibraryInfo__LibraryLocation int + +var ( + QLibraryInfo__PrefixPath = QLibraryInfo__LibraryLocation(0) + QLibraryInfo__DocumentationPath = QLibraryInfo__LibraryLocation(1) + QLibraryInfo__HeadersPath = QLibraryInfo__LibraryLocation(2) + QLibraryInfo__LibrariesPath = QLibraryInfo__LibraryLocation(3) + QLibraryInfo__LibraryExecutablesPath = QLibraryInfo__LibraryLocation(4) + QLibraryInfo__BinariesPath = QLibraryInfo__LibraryLocation(5) + QLibraryInfo__PluginsPath = QLibraryInfo__LibraryLocation(6) + QLibraryInfo__ImportsPath = QLibraryInfo__LibraryLocation(7) + QLibraryInfo__Qml2ImportsPath = QLibraryInfo__LibraryLocation(8) + QLibraryInfo__ArchDataPath = QLibraryInfo__LibraryLocation(9) + QLibraryInfo__DataPath = QLibraryInfo__LibraryLocation(10) + QLibraryInfo__TranslationsPath = QLibraryInfo__LibraryLocation(11) + QLibraryInfo__ExamplesPath = QLibraryInfo__LibraryLocation(12) + QLibraryInfo__TestsPath = QLibraryInfo__LibraryLocation(13) + QLibraryInfo__SettingsPath = QLibraryInfo__LibraryLocation(100) +) + +func QLibraryInfo_IsDebugBuild() bool { + return C.QLibraryInfo_QLibraryInfo_IsDebugBuild() != 0 +} + +func QLibraryInfo_LicensedProducts() string { + return C.GoString(C.QLibraryInfo_QLibraryInfo_LicensedProducts()) +} + +func QLibraryInfo_Licensee() string { + return C.GoString(C.QLibraryInfo_QLibraryInfo_Licensee()) +} + +func QLibraryInfo_Location(loc QLibraryInfo__LibraryLocation) string { + return C.GoString(C.QLibraryInfo_QLibraryInfo_Location(C.int(loc))) +} diff --git a/core/qlibraryinfo.h b/core/qlibraryinfo.h new file mode 100755 index 00000000..257ce203 --- /dev/null +++ b/core/qlibraryinfo.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QLibraryInfo_QLibraryInfo_IsDebugBuild(); +char* QLibraryInfo_QLibraryInfo_LicensedProducts(); +char* QLibraryInfo_QLibraryInfo_Licensee(); +char* QLibraryInfo_QLibraryInfo_Location(int loc); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qline.cpp b/core/qline.cpp new file mode 100755 index 00000000..4718701a --- /dev/null +++ b/core/qline.cpp @@ -0,0 +1,77 @@ +#include "qline.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQLine: public QLine { +public: +}; + +QtObjectPtr QLine_NewQLine(){ + return new QLine(); +} + +QtObjectPtr QLine_NewQLine2(QtObjectPtr p1, QtObjectPtr p2){ + return new QLine(*static_cast(p1), *static_cast(p2)); +} + +QtObjectPtr QLine_NewQLine3(int x1, int y1, int x2, int y2){ + return new QLine(x1, y1, x2, y2); +} + +int QLine_Dx(QtObjectPtr ptr){ + return static_cast(ptr)->dx(); +} + +int QLine_Dy(QtObjectPtr ptr){ + return static_cast(ptr)->dy(); +} + +int QLine_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +void QLine_SetLine(QtObjectPtr ptr, int x1, int y1, int x2, int y2){ + static_cast(ptr)->setLine(x1, y1, x2, y2); +} + +void QLine_SetP1(QtObjectPtr ptr, QtObjectPtr p1){ + static_cast(ptr)->setP1(*static_cast(p1)); +} + +void QLine_SetP2(QtObjectPtr ptr, QtObjectPtr p2){ + static_cast(ptr)->setP2(*static_cast(p2)); +} + +void QLine_SetPoints(QtObjectPtr ptr, QtObjectPtr p1, QtObjectPtr p2){ + static_cast(ptr)->setPoints(*static_cast(p1), *static_cast(p2)); +} + +void QLine_Translate(QtObjectPtr ptr, QtObjectPtr offset){ + static_cast(ptr)->translate(*static_cast(offset)); +} + +void QLine_Translate2(QtObjectPtr ptr, int dx, int dy){ + static_cast(ptr)->translate(dx, dy); +} + +int QLine_X1(QtObjectPtr ptr){ + return static_cast(ptr)->x1(); +} + +int QLine_X2(QtObjectPtr ptr){ + return static_cast(ptr)->x2(); +} + +int QLine_Y1(QtObjectPtr ptr){ + return static_cast(ptr)->y1(); +} + +int QLine_Y2(QtObjectPtr ptr){ + return static_cast(ptr)->y2(); +} + diff --git a/core/qline.go b/core/qline.go new file mode 100755 index 00000000..6026ea0b --- /dev/null +++ b/core/qline.go @@ -0,0 +1,137 @@ +package core + +//#include "qline.h" +import "C" +import ( + "unsafe" +) + +type QLine struct { + ptr unsafe.Pointer +} + +type QLineITF interface { + QLinePTR() *QLine +} + +func (p *QLine) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QLine) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQLine(ptr QLineITF) unsafe.Pointer { + if ptr != nil { + return ptr.QLinePTR().Pointer() + } + return nil +} + +func QLineFromPointer(ptr unsafe.Pointer) *QLine { + var n = new(QLine) + n.SetPointer(ptr) + return n +} + +func (ptr *QLine) QLinePTR() *QLine { + return ptr +} + +func NewQLine() *QLine { + return QLineFromPointer(unsafe.Pointer(C.QLine_NewQLine())) +} + +func NewQLine2(p1 QPointITF, p2 QPointITF) *QLine { + return QLineFromPointer(unsafe.Pointer(C.QLine_NewQLine2(C.QtObjectPtr(PointerFromQPoint(p1)), C.QtObjectPtr(PointerFromQPoint(p2))))) +} + +func NewQLine3(x1 int, y1 int, x2 int, y2 int) *QLine { + return QLineFromPointer(unsafe.Pointer(C.QLine_NewQLine3(C.int(x1), C.int(y1), C.int(x2), C.int(y2)))) +} + +func (ptr *QLine) Dx() int { + if ptr.Pointer() != nil { + return int(C.QLine_Dx(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLine) Dy() int { + if ptr.Pointer() != nil { + return int(C.QLine_Dy(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLine) IsNull() bool { + if ptr.Pointer() != nil { + return C.QLine_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLine) SetLine(x1 int, y1 int, x2 int, y2 int) { + if ptr.Pointer() != nil { + C.QLine_SetLine(C.QtObjectPtr(ptr.Pointer()), C.int(x1), C.int(y1), C.int(x2), C.int(y2)) + } +} + +func (ptr *QLine) SetP1(p1 QPointITF) { + if ptr.Pointer() != nil { + C.QLine_SetP1(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPoint(p1))) + } +} + +func (ptr *QLine) SetP2(p2 QPointITF) { + if ptr.Pointer() != nil { + C.QLine_SetP2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPoint(p2))) + } +} + +func (ptr *QLine) SetPoints(p1 QPointITF, p2 QPointITF) { + if ptr.Pointer() != nil { + C.QLine_SetPoints(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPoint(p1)), C.QtObjectPtr(PointerFromQPoint(p2))) + } +} + +func (ptr *QLine) Translate(offset QPointITF) { + if ptr.Pointer() != nil { + C.QLine_Translate(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPoint(offset))) + } +} + +func (ptr *QLine) Translate2(dx int, dy int) { + if ptr.Pointer() != nil { + C.QLine_Translate2(C.QtObjectPtr(ptr.Pointer()), C.int(dx), C.int(dy)) + } +} + +func (ptr *QLine) X1() int { + if ptr.Pointer() != nil { + return int(C.QLine_X1(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLine) X2() int { + if ptr.Pointer() != nil { + return int(C.QLine_X2(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLine) Y1() int { + if ptr.Pointer() != nil { + return int(C.QLine_Y1(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLine) Y2() int { + if ptr.Pointer() != nil { + return int(C.QLine_Y2(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/core/qline.h b/core/qline.h new file mode 100755 index 00000000..a97c9aeb --- /dev/null +++ b/core/qline.h @@ -0,0 +1,25 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QLine_NewQLine(); +QtObjectPtr QLine_NewQLine2(QtObjectPtr p1, QtObjectPtr p2); +QtObjectPtr QLine_NewQLine3(int x1, int y1, int x2, int y2); +int QLine_Dx(QtObjectPtr ptr); +int QLine_Dy(QtObjectPtr ptr); +int QLine_IsNull(QtObjectPtr ptr); +void QLine_SetLine(QtObjectPtr ptr, int x1, int y1, int x2, int y2); +void QLine_SetP1(QtObjectPtr ptr, QtObjectPtr p1); +void QLine_SetP2(QtObjectPtr ptr, QtObjectPtr p2); +void QLine_SetPoints(QtObjectPtr ptr, QtObjectPtr p1, QtObjectPtr p2); +void QLine_Translate(QtObjectPtr ptr, QtObjectPtr offset); +void QLine_Translate2(QtObjectPtr ptr, int dx, int dy); +int QLine_X1(QtObjectPtr ptr); +int QLine_X2(QtObjectPtr ptr); +int QLine_Y1(QtObjectPtr ptr); +int QLine_Y2(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qlinef.cpp b/core/qlinef.cpp new file mode 100755 index 00000000..24708f13 --- /dev/null +++ b/core/qlinef.cpp @@ -0,0 +1,51 @@ +#include "qlinef.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQLineF: public QLineF { +public: +}; + +int QLineF_Intersect(QtObjectPtr ptr, QtObjectPtr line, QtObjectPtr intersectionPoint){ + return static_cast(ptr)->intersect(*static_cast(line), static_cast(intersectionPoint)); +} + +QtObjectPtr QLineF_NewQLineF(){ + return new QLineF(); +} + +QtObjectPtr QLineF_NewQLineF4(QtObjectPtr line){ + return new QLineF(*static_cast(line)); +} + +QtObjectPtr QLineF_NewQLineF2(QtObjectPtr p1, QtObjectPtr p2){ + return new QLineF(*static_cast(p1), *static_cast(p2)); +} + +int QLineF_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +void QLineF_SetP1(QtObjectPtr ptr, QtObjectPtr p1){ + static_cast(ptr)->setP1(*static_cast(p1)); +} + +void QLineF_SetP2(QtObjectPtr ptr, QtObjectPtr p2){ + static_cast(ptr)->setP2(*static_cast(p2)); +} + +void QLineF_SetPoints(QtObjectPtr ptr, QtObjectPtr p1, QtObjectPtr p2){ + static_cast(ptr)->setPoints(*static_cast(p1), *static_cast(p2)); +} + +void QLineF_Translate(QtObjectPtr ptr, QtObjectPtr offset){ + static_cast(ptr)->translate(*static_cast(offset)); +} + diff --git a/core/qlinef.go b/core/qlinef.go new file mode 100755 index 00000000..21e9f2d6 --- /dev/null +++ b/core/qlinef.go @@ -0,0 +1,99 @@ +package core + +//#include "qlinef.h" +import "C" +import ( + "unsafe" +) + +type QLineF struct { + ptr unsafe.Pointer +} + +type QLineFITF interface { + QLineFPTR() *QLineF +} + +func (p *QLineF) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QLineF) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQLineF(ptr QLineFITF) unsafe.Pointer { + if ptr != nil { + return ptr.QLineFPTR().Pointer() + } + return nil +} + +func QLineFFromPointer(ptr unsafe.Pointer) *QLineF { + var n = new(QLineF) + n.SetPointer(ptr) + return n +} + +func (ptr *QLineF) QLineFPTR() *QLineF { + return ptr +} + +//QLineF::IntersectType +type QLineF__IntersectType int + +var ( + QLineF__NoIntersection = QLineF__IntersectType(0) + QLineF__BoundedIntersection = QLineF__IntersectType(1) + QLineF__UnboundedIntersection = QLineF__IntersectType(2) +) + +func (ptr *QLineF) Intersect(line QLineFITF, intersectionPoint QPointFITF) QLineF__IntersectType { + if ptr.Pointer() != nil { + return QLineF__IntersectType(C.QLineF_Intersect(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLineF(line)), C.QtObjectPtr(PointerFromQPointF(intersectionPoint)))) + } + return 0 +} + +func NewQLineF() *QLineF { + return QLineFFromPointer(unsafe.Pointer(C.QLineF_NewQLineF())) +} + +func NewQLineF4(line QLineITF) *QLineF { + return QLineFFromPointer(unsafe.Pointer(C.QLineF_NewQLineF4(C.QtObjectPtr(PointerFromQLine(line))))) +} + +func NewQLineF2(p1 QPointFITF, p2 QPointFITF) *QLineF { + return QLineFFromPointer(unsafe.Pointer(C.QLineF_NewQLineF2(C.QtObjectPtr(PointerFromQPointF(p1)), C.QtObjectPtr(PointerFromQPointF(p2))))) +} + +func (ptr *QLineF) IsNull() bool { + if ptr.Pointer() != nil { + return C.QLineF_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLineF) SetP1(p1 QPointFITF) { + if ptr.Pointer() != nil { + C.QLineF_SetP1(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPointF(p1))) + } +} + +func (ptr *QLineF) SetP2(p2 QPointFITF) { + if ptr.Pointer() != nil { + C.QLineF_SetP2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPointF(p2))) + } +} + +func (ptr *QLineF) SetPoints(p1 QPointFITF, p2 QPointFITF) { + if ptr.Pointer() != nil { + C.QLineF_SetPoints(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPointF(p1)), C.QtObjectPtr(PointerFromQPointF(p2))) + } +} + +func (ptr *QLineF) Translate(offset QPointFITF) { + if ptr.Pointer() != nil { + C.QLineF_Translate(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPointF(offset))) + } +} diff --git a/core/qlinef.h b/core/qlinef.h new file mode 100755 index 00000000..ccac83bd --- /dev/null +++ b/core/qlinef.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QLineF_Intersect(QtObjectPtr ptr, QtObjectPtr line, QtObjectPtr intersectionPoint); +QtObjectPtr QLineF_NewQLineF(); +QtObjectPtr QLineF_NewQLineF4(QtObjectPtr line); +QtObjectPtr QLineF_NewQLineF2(QtObjectPtr p1, QtObjectPtr p2); +int QLineF_IsNull(QtObjectPtr ptr); +void QLineF_SetP1(QtObjectPtr ptr, QtObjectPtr p1); +void QLineF_SetP2(QtObjectPtr ptr, QtObjectPtr p2); +void QLineF_SetPoints(QtObjectPtr ptr, QtObjectPtr p1, QtObjectPtr p2); +void QLineF_Translate(QtObjectPtr ptr, QtObjectPtr offset); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qlinkedlist.cpp b/core/qlinkedlist.cpp new file mode 100755 index 00000000..64c58643 --- /dev/null +++ b/core/qlinkedlist.cpp @@ -0,0 +1,10 @@ +#include "qlinkedlist.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qlinkedlist.go b/core/qlinkedlist.go new file mode 100755 index 00000000..d980cddc --- /dev/null +++ b/core/qlinkedlist.go @@ -0,0 +1,40 @@ +package core + +//#include "qlinkedlist.h" +import "C" +import ( + "unsafe" +) + +type QLinkedList struct { + ptr unsafe.Pointer +} + +type QLinkedListITF interface { + QLinkedListPTR() *QLinkedList +} + +func (p *QLinkedList) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QLinkedList) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQLinkedList(ptr QLinkedListITF) unsafe.Pointer { + if ptr != nil { + return ptr.QLinkedListPTR().Pointer() + } + return nil +} + +func QLinkedListFromPointer(ptr unsafe.Pointer) *QLinkedList { + var n = new(QLinkedList) + n.SetPointer(ptr) + return n +} + +func (ptr *QLinkedList) QLinkedListPTR() *QLinkedList { + return ptr +} diff --git a/core/qlinkedlist.h b/core/qlinkedlist.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qlinkedlist.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qlinkedlistiterator.cpp b/core/qlinkedlistiterator.cpp new file mode 100755 index 00000000..8d06577e --- /dev/null +++ b/core/qlinkedlistiterator.cpp @@ -0,0 +1,11 @@ +#include "qlinkedlistiterator.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qlinkedlistiterator.go b/core/qlinkedlistiterator.go new file mode 100755 index 00000000..40799370 --- /dev/null +++ b/core/qlinkedlistiterator.go @@ -0,0 +1,40 @@ +package core + +//#include "qlinkedlistiterator.h" +import "C" +import ( + "unsafe" +) + +type QLinkedListIterator struct { + ptr unsafe.Pointer +} + +type QLinkedListIteratorITF interface { + QLinkedListIteratorPTR() *QLinkedListIterator +} + +func (p *QLinkedListIterator) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QLinkedListIterator) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQLinkedListIterator(ptr QLinkedListIteratorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QLinkedListIteratorPTR().Pointer() + } + return nil +} + +func QLinkedListIteratorFromPointer(ptr unsafe.Pointer) *QLinkedListIterator { + var n = new(QLinkedListIterator) + n.SetPointer(ptr) + return n +} + +func (ptr *QLinkedListIterator) QLinkedListIteratorPTR() *QLinkedListIterator { + return ptr +} diff --git a/core/qlinkedlistiterator.h b/core/qlinkedlistiterator.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qlinkedlistiterator.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qlist.cpp b/core/qlist.cpp new file mode 100755 index 00000000..9092acdc --- /dev/null +++ b/core/qlist.cpp @@ -0,0 +1,9 @@ +#include "qlist.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qlist.go b/core/qlist.go new file mode 100755 index 00000000..4d2fc079 --- /dev/null +++ b/core/qlist.go @@ -0,0 +1,40 @@ +package core + +//#include "qlist.h" +import "C" +import ( + "unsafe" +) + +type QList struct { + ptr unsafe.Pointer +} + +type QListITF interface { + QListPTR() *QList +} + +func (p *QList) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QList) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQList(ptr QListITF) unsafe.Pointer { + if ptr != nil { + return ptr.QListPTR().Pointer() + } + return nil +} + +func QListFromPointer(ptr unsafe.Pointer) *QList { + var n = new(QList) + n.SetPointer(ptr) + return n +} + +func (ptr *QList) QListPTR() *QList { + return ptr +} diff --git a/core/qlist.h b/core/qlist.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qlist.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qlistiterator.cpp b/core/qlistiterator.cpp new file mode 100755 index 00000000..d61a592d --- /dev/null +++ b/core/qlistiterator.cpp @@ -0,0 +1,10 @@ +#include "qlistiterator.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qlistiterator.go b/core/qlistiterator.go new file mode 100755 index 00000000..d8b3987d --- /dev/null +++ b/core/qlistiterator.go @@ -0,0 +1,40 @@ +package core + +//#include "qlistiterator.h" +import "C" +import ( + "unsafe" +) + +type QListIterator struct { + ptr unsafe.Pointer +} + +type QListIteratorITF interface { + QListIteratorPTR() *QListIterator +} + +func (p *QListIterator) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QListIterator) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQListIterator(ptr QListIteratorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QListIteratorPTR().Pointer() + } + return nil +} + +func QListIteratorFromPointer(ptr unsafe.Pointer) *QListIterator { + var n = new(QListIterator) + n.SetPointer(ptr) + return n +} + +func (ptr *QListIterator) QListIteratorPTR() *QListIterator { + return ptr +} diff --git a/core/qlistiterator.h b/core/qlistiterator.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qlistiterator.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qlocale.cpp b/core/qlocale.cpp new file mode 100755 index 00000000..2c10dc31 --- /dev/null +++ b/core/qlocale.cpp @@ -0,0 +1,208 @@ +#include "qlocale.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQLocale: public QLocale { +public: +}; + +QtObjectPtr QLocale_NewQLocale(){ + return new QLocale(); +} + +QtObjectPtr QLocale_NewQLocale3(int language, int country){ + return new QLocale(static_cast(language), static_cast(country)); +} + +QtObjectPtr QLocale_NewQLocale4(int language, int script, int country){ + return new QLocale(static_cast(language), static_cast(script), static_cast(country)); +} + +QtObjectPtr QLocale_NewQLocale5(QtObjectPtr other){ + return new QLocale(*static_cast(other)); +} + +QtObjectPtr QLocale_NewQLocale2(char* name){ + return new QLocale(QString(name)); +} + +char* QLocale_AmText(QtObjectPtr ptr){ + return static_cast(ptr)->amText().toUtf8().data(); +} + +char* QLocale_Bcp47Name(QtObjectPtr ptr){ + return static_cast(ptr)->bcp47Name().toUtf8().data(); +} + +int QLocale_Country(QtObjectPtr ptr){ + return static_cast(ptr)->country(); +} + +char* QLocale_QLocale_CountryToString(int country){ + return QLocale::countryToString(static_cast(country)).toUtf8().data(); +} + +char* QLocale_CreateSeparatedList(QtObjectPtr ptr, char* list){ + return static_cast(ptr)->createSeparatedList(QString(list).split("|", QString::SkipEmptyParts)).toUtf8().data(); +} + +char* QLocale_CurrencySymbol(QtObjectPtr ptr, int format){ + return static_cast(ptr)->currencySymbol(static_cast(format)).toUtf8().data(); +} + +char* QLocale_DateFormat(QtObjectPtr ptr, int format){ + return static_cast(ptr)->dateFormat(static_cast(format)).toUtf8().data(); +} + +char* QLocale_DateTimeFormat(QtObjectPtr ptr, int format){ + return static_cast(ptr)->dateTimeFormat(static_cast(format)).toUtf8().data(); +} + +char* QLocale_DayName(QtObjectPtr ptr, int day, int ty){ + return static_cast(ptr)->dayName(day, static_cast(ty)).toUtf8().data(); +} + +int QLocale_FirstDayOfWeek(QtObjectPtr ptr){ + return static_cast(ptr)->firstDayOfWeek(); +} + +int QLocale_Language(QtObjectPtr ptr){ + return static_cast(ptr)->language(); +} + +char* QLocale_QLocale_LanguageToString(int language){ + return QLocale::languageToString(static_cast(language)).toUtf8().data(); +} + +int QLocale_MeasurementSystem(QtObjectPtr ptr){ + return static_cast(ptr)->measurementSystem(); +} + +char* QLocale_MonthName(QtObjectPtr ptr, int month, int ty){ + return static_cast(ptr)->monthName(month, static_cast(ty)).toUtf8().data(); +} + +char* QLocale_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +char* QLocale_NativeCountryName(QtObjectPtr ptr){ + return static_cast(ptr)->nativeCountryName().toUtf8().data(); +} + +char* QLocale_NativeLanguageName(QtObjectPtr ptr){ + return static_cast(ptr)->nativeLanguageName().toUtf8().data(); +} + +int QLocale_NumberOptions(QtObjectPtr ptr){ + return static_cast(ptr)->numberOptions(); +} + +char* QLocale_PmText(QtObjectPtr ptr){ + return static_cast(ptr)->pmText().toUtf8().data(); +} + +char* QLocale_QuoteString(QtObjectPtr ptr, char* str, int style){ + return static_cast(ptr)->quoteString(QString(str), static_cast(style)).toUtf8().data(); +} + +char* QLocale_QuoteString2(QtObjectPtr ptr, QtObjectPtr str, int style){ + return static_cast(ptr)->quoteString(*static_cast(str), static_cast(style)).toUtf8().data(); +} + +int QLocale_Script(QtObjectPtr ptr){ + return static_cast(ptr)->script(); +} + +char* QLocale_QLocale_ScriptToString(int script){ + return QLocale::scriptToString(static_cast(script)).toUtf8().data(); +} + +void QLocale_QLocale_SetDefault(QtObjectPtr locale){ + QLocale::setDefault(*static_cast(locale)); +} + +void QLocale_SetNumberOptions(QtObjectPtr ptr, int options){ + static_cast(ptr)->setNumberOptions(static_cast(options)); +} + +char* QLocale_StandaloneDayName(QtObjectPtr ptr, int day, int ty){ + return static_cast(ptr)->standaloneDayName(day, static_cast(ty)).toUtf8().data(); +} + +char* QLocale_StandaloneMonthName(QtObjectPtr ptr, int month, int ty){ + return static_cast(ptr)->standaloneMonthName(month, static_cast(ty)).toUtf8().data(); +} + +int QLocale_TextDirection(QtObjectPtr ptr){ + return static_cast(ptr)->textDirection(); +} + +char* QLocale_TimeFormat(QtObjectPtr ptr, int format){ + return static_cast(ptr)->timeFormat(static_cast(format)).toUtf8().data(); +} + +char* QLocale_ToCurrencyString6(QtObjectPtr ptr, int value, char* symbol){ + return static_cast(ptr)->toCurrencyString(value, QString(symbol)).toUtf8().data(); +} + +int QLocale_ToInt(QtObjectPtr ptr, char* s, int ok){ + return static_cast(ptr)->toInt(QString(s), NULL); +} + +int QLocale_ToInt2(QtObjectPtr ptr, QtObjectPtr s, int ok){ + return static_cast(ptr)->toInt(*static_cast(s), NULL); +} + +char* QLocale_ToLower(QtObjectPtr ptr, char* str){ + return static_cast(ptr)->toLower(QString(str)).toUtf8().data(); +} + +char* QLocale_ToString3(QtObjectPtr ptr, QtObjectPtr date, int format){ + return static_cast(ptr)->toString(*static_cast(date), static_cast(format)).toUtf8().data(); +} + +char* QLocale_ToString2(QtObjectPtr ptr, QtObjectPtr date, char* format){ + return static_cast(ptr)->toString(*static_cast(date), QString(format)).toUtf8().data(); +} + +char* QLocale_ToString6(QtObjectPtr ptr, QtObjectPtr dateTime, int format){ + return static_cast(ptr)->toString(*static_cast(dateTime), static_cast(format)).toUtf8().data(); +} + +char* QLocale_ToString7(QtObjectPtr ptr, QtObjectPtr dateTime, char* format){ + return static_cast(ptr)->toString(*static_cast(dateTime), QString(format)).toUtf8().data(); +} + +char* QLocale_ToString5(QtObjectPtr ptr, QtObjectPtr time, int format){ + return static_cast(ptr)->toString(*static_cast(time), static_cast(format)).toUtf8().data(); +} + +char* QLocale_ToString4(QtObjectPtr ptr, QtObjectPtr time, char* format){ + return static_cast(ptr)->toString(*static_cast(time), QString(format)).toUtf8().data(); +} + +char* QLocale_ToString12(QtObjectPtr ptr, int i){ + return static_cast(ptr)->toString(i).toUtf8().data(); +} + +char* QLocale_ToUpper(QtObjectPtr ptr, char* str){ + return static_cast(ptr)->toUpper(QString(str)).toUtf8().data(); +} + +char* QLocale_UiLanguages(QtObjectPtr ptr){ + return static_cast(ptr)->uiLanguages().join("|").toUtf8().data(); +} + +void QLocale_DestroyQLocale(QtObjectPtr ptr){ + static_cast(ptr)->~QLocale(); +} + diff --git a/core/qlocale.go b/core/qlocale.go new file mode 100755 index 00000000..dd154757 --- /dev/null +++ b/core/qlocale.go @@ -0,0 +1,1162 @@ +package core + +//#include "qlocale.h" +import "C" +import ( + "github.com/therecipe/qt" + "strings" + "unsafe" +) + +type QLocale struct { + ptr unsafe.Pointer +} + +type QLocaleITF interface { + QLocalePTR() *QLocale +} + +func (p *QLocale) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QLocale) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQLocale(ptr QLocaleITF) unsafe.Pointer { + if ptr != nil { + return ptr.QLocalePTR().Pointer() + } + return nil +} + +func QLocaleFromPointer(ptr unsafe.Pointer) *QLocale { + var n = new(QLocale) + n.SetPointer(ptr) + return n +} + +func (ptr *QLocale) QLocalePTR() *QLocale { + return ptr +} + +//QLocale::Country +type QLocale__Country int + +var ( + QLocale__AnyCountry = QLocale__Country(0) + QLocale__Afghanistan = QLocale__Country(1) + QLocale__Albania = QLocale__Country(2) + QLocale__Algeria = QLocale__Country(3) + QLocale__AmericanSamoa = QLocale__Country(4) + QLocale__Andorra = QLocale__Country(5) + QLocale__Angola = QLocale__Country(6) + QLocale__Anguilla = QLocale__Country(7) + QLocale__Antarctica = QLocale__Country(8) + QLocale__AntiguaAndBarbuda = QLocale__Country(9) + QLocale__Argentina = QLocale__Country(10) + QLocale__Armenia = QLocale__Country(11) + QLocale__Aruba = QLocale__Country(12) + QLocale__Australia = QLocale__Country(13) + QLocale__Austria = QLocale__Country(14) + QLocale__Azerbaijan = QLocale__Country(15) + QLocale__Bahamas = QLocale__Country(16) + QLocale__Bahrain = QLocale__Country(17) + QLocale__Bangladesh = QLocale__Country(18) + QLocale__Barbados = QLocale__Country(19) + QLocale__Belarus = QLocale__Country(20) + QLocale__Belgium = QLocale__Country(21) + QLocale__Belize = QLocale__Country(22) + QLocale__Benin = QLocale__Country(23) + QLocale__Bermuda = QLocale__Country(24) + QLocale__Bhutan = QLocale__Country(25) + QLocale__Bolivia = QLocale__Country(26) + QLocale__BosniaAndHerzegowina = QLocale__Country(27) + QLocale__Botswana = QLocale__Country(28) + QLocale__BouvetIsland = QLocale__Country(29) + QLocale__Brazil = QLocale__Country(30) + QLocale__BritishIndianOceanTerritory = QLocale__Country(31) + QLocale__Brunei = QLocale__Country(32) + QLocale__Bulgaria = QLocale__Country(33) + QLocale__BurkinaFaso = QLocale__Country(34) + QLocale__Burundi = QLocale__Country(35) + QLocale__Cambodia = QLocale__Country(36) + QLocale__Cameroon = QLocale__Country(37) + QLocale__Canada = QLocale__Country(38) + QLocale__CapeVerde = QLocale__Country(39) + QLocale__CaymanIslands = QLocale__Country(40) + QLocale__CentralAfricanRepublic = QLocale__Country(41) + QLocale__Chad = QLocale__Country(42) + QLocale__Chile = QLocale__Country(43) + QLocale__China = QLocale__Country(44) + QLocale__ChristmasIsland = QLocale__Country(45) + QLocale__CocosIslands = QLocale__Country(46) + QLocale__Colombia = QLocale__Country(47) + QLocale__Comoros = QLocale__Country(48) + QLocale__CongoKinshasa = QLocale__Country(49) + QLocale__CongoBrazzaville = QLocale__Country(50) + QLocale__CookIslands = QLocale__Country(51) + QLocale__CostaRica = QLocale__Country(52) + QLocale__IvoryCoast = QLocale__Country(53) + QLocale__Croatia = QLocale__Country(54) + QLocale__Cuba = QLocale__Country(55) + QLocale__Cyprus = QLocale__Country(56) + QLocale__CzechRepublic = QLocale__Country(57) + QLocale__Denmark = QLocale__Country(58) + QLocale__Djibouti = QLocale__Country(59) + QLocale__Dominica = QLocale__Country(60) + QLocale__DominicanRepublic = QLocale__Country(61) + QLocale__EastTimor = QLocale__Country(62) + QLocale__Ecuador = QLocale__Country(63) + QLocale__Egypt = QLocale__Country(64) + QLocale__ElSalvador = QLocale__Country(65) + QLocale__EquatorialGuinea = QLocale__Country(66) + QLocale__Eritrea = QLocale__Country(67) + QLocale__Estonia = QLocale__Country(68) + QLocale__Ethiopia = QLocale__Country(69) + QLocale__FalklandIslands = QLocale__Country(70) + QLocale__FaroeIslands = QLocale__Country(71) + QLocale__Fiji = QLocale__Country(72) + QLocale__Finland = QLocale__Country(73) + QLocale__France = QLocale__Country(74) + QLocale__Guernsey = QLocale__Country(75) + QLocale__FrenchGuiana = QLocale__Country(76) + QLocale__FrenchPolynesia = QLocale__Country(77) + QLocale__FrenchSouthernTerritories = QLocale__Country(78) + QLocale__Gabon = QLocale__Country(79) + QLocale__Gambia = QLocale__Country(80) + QLocale__Georgia = QLocale__Country(81) + QLocale__Germany = QLocale__Country(82) + QLocale__Ghana = QLocale__Country(83) + QLocale__Gibraltar = QLocale__Country(84) + QLocale__Greece = QLocale__Country(85) + QLocale__Greenland = QLocale__Country(86) + QLocale__Grenada = QLocale__Country(87) + QLocale__Guadeloupe = QLocale__Country(88) + QLocale__Guam = QLocale__Country(89) + QLocale__Guatemala = QLocale__Country(90) + QLocale__Guinea = QLocale__Country(91) + QLocale__GuineaBissau = QLocale__Country(92) + QLocale__Guyana = QLocale__Country(93) + QLocale__Haiti = QLocale__Country(94) + QLocale__HeardAndMcDonaldIslands = QLocale__Country(95) + QLocale__Honduras = QLocale__Country(96) + QLocale__HongKong = QLocale__Country(97) + QLocale__Hungary = QLocale__Country(98) + QLocale__Iceland = QLocale__Country(99) + QLocale__India = QLocale__Country(100) + QLocale__Indonesia = QLocale__Country(101) + QLocale__Iran = QLocale__Country(102) + QLocale__Iraq = QLocale__Country(103) + QLocale__Ireland = QLocale__Country(104) + QLocale__Israel = QLocale__Country(105) + QLocale__Italy = QLocale__Country(106) + QLocale__Jamaica = QLocale__Country(107) + QLocale__Japan = QLocale__Country(108) + QLocale__Jordan = QLocale__Country(109) + QLocale__Kazakhstan = QLocale__Country(110) + QLocale__Kenya = QLocale__Country(111) + QLocale__Kiribati = QLocale__Country(112) + QLocale__NorthKorea = QLocale__Country(113) + QLocale__SouthKorea = QLocale__Country(114) + QLocale__Kuwait = QLocale__Country(115) + QLocale__Kyrgyzstan = QLocale__Country(116) + QLocale__Laos = QLocale__Country(117) + QLocale__Latvia = QLocale__Country(118) + QLocale__Lebanon = QLocale__Country(119) + QLocale__Lesotho = QLocale__Country(120) + QLocale__Liberia = QLocale__Country(121) + QLocale__Libya = QLocale__Country(122) + QLocale__Liechtenstein = QLocale__Country(123) + QLocale__Lithuania = QLocale__Country(124) + QLocale__Luxembourg = QLocale__Country(125) + QLocale__Macau = QLocale__Country(126) + QLocale__Macedonia = QLocale__Country(127) + QLocale__Madagascar = QLocale__Country(128) + QLocale__Malawi = QLocale__Country(129) + QLocale__Malaysia = QLocale__Country(130) + QLocale__Maldives = QLocale__Country(131) + QLocale__Mali = QLocale__Country(132) + QLocale__Malta = QLocale__Country(133) + QLocale__MarshallIslands = QLocale__Country(134) + QLocale__Martinique = QLocale__Country(135) + QLocale__Mauritania = QLocale__Country(136) + QLocale__Mauritius = QLocale__Country(137) + QLocale__Mayotte = QLocale__Country(138) + QLocale__Mexico = QLocale__Country(139) + QLocale__Micronesia = QLocale__Country(140) + QLocale__Moldova = QLocale__Country(141) + QLocale__Monaco = QLocale__Country(142) + QLocale__Mongolia = QLocale__Country(143) + QLocale__Montserrat = QLocale__Country(144) + QLocale__Morocco = QLocale__Country(145) + QLocale__Mozambique = QLocale__Country(146) + QLocale__Myanmar = QLocale__Country(147) + QLocale__Namibia = QLocale__Country(148) + QLocale__NauruCountry = QLocale__Country(149) + QLocale__Nepal = QLocale__Country(150) + QLocale__Netherlands = QLocale__Country(151) + QLocale__CuraSao = QLocale__Country(152) + QLocale__NewCaledonia = QLocale__Country(153) + QLocale__NewZealand = QLocale__Country(154) + QLocale__Nicaragua = QLocale__Country(155) + QLocale__Niger = QLocale__Country(156) + QLocale__Nigeria = QLocale__Country(157) + QLocale__Niue = QLocale__Country(158) + QLocale__NorfolkIsland = QLocale__Country(159) + QLocale__NorthernMarianaIslands = QLocale__Country(160) + QLocale__Norway = QLocale__Country(161) + QLocale__Oman = QLocale__Country(162) + QLocale__Pakistan = QLocale__Country(163) + QLocale__Palau = QLocale__Country(164) + QLocale__PalestinianTerritories = QLocale__Country(165) + QLocale__Panama = QLocale__Country(166) + QLocale__PapuaNewGuinea = QLocale__Country(167) + QLocale__Paraguay = QLocale__Country(168) + QLocale__Peru = QLocale__Country(169) + QLocale__Philippines = QLocale__Country(170) + QLocale__Pitcairn = QLocale__Country(171) + QLocale__Poland = QLocale__Country(172) + QLocale__Portugal = QLocale__Country(173) + QLocale__PuertoRico = QLocale__Country(174) + QLocale__Qatar = QLocale__Country(175) + QLocale__Reunion = QLocale__Country(176) + QLocale__Romania = QLocale__Country(177) + QLocale__Russia = QLocale__Country(178) + QLocale__Rwanda = QLocale__Country(179) + QLocale__SaintKittsAndNevis = QLocale__Country(180) + QLocale__SaintLucia = QLocale__Country(181) + QLocale__SaintVincentAndTheGrenadines = QLocale__Country(182) + QLocale__Samoa = QLocale__Country(183) + QLocale__SanMarino = QLocale__Country(184) + QLocale__SaoTomeAndPrincipe = QLocale__Country(185) + QLocale__SaudiArabia = QLocale__Country(186) + QLocale__Senegal = QLocale__Country(187) + QLocale__Seychelles = QLocale__Country(188) + QLocale__SierraLeone = QLocale__Country(189) + QLocale__Singapore = QLocale__Country(190) + QLocale__Slovakia = QLocale__Country(191) + QLocale__Slovenia = QLocale__Country(192) + QLocale__SolomonIslands = QLocale__Country(193) + QLocale__Somalia = QLocale__Country(194) + QLocale__SouthAfrica = QLocale__Country(195) + QLocale__SouthGeorgiaAndTheSouthSandwichIslands = QLocale__Country(196) + QLocale__Spain = QLocale__Country(197) + QLocale__SriLanka = QLocale__Country(198) + QLocale__SaintHelena = QLocale__Country(199) + QLocale__SaintPierreAndMiquelon = QLocale__Country(200) + QLocale__Sudan = QLocale__Country(201) + QLocale__Suriname = QLocale__Country(202) + QLocale__SvalbardAndJanMayenIslands = QLocale__Country(203) + QLocale__Swaziland = QLocale__Country(204) + QLocale__Sweden = QLocale__Country(205) + QLocale__Switzerland = QLocale__Country(206) + QLocale__Syria = QLocale__Country(207) + QLocale__Taiwan = QLocale__Country(208) + QLocale__Tajikistan = QLocale__Country(209) + QLocale__Tanzania = QLocale__Country(210) + QLocale__Thailand = QLocale__Country(211) + QLocale__Togo = QLocale__Country(212) + QLocale__Tokelau = QLocale__Country(213) + QLocale__Tonga = QLocale__Country(214) + QLocale__TrinidadAndTobago = QLocale__Country(215) + QLocale__Tunisia = QLocale__Country(216) + QLocale__Turkey = QLocale__Country(217) + QLocale__Turkmenistan = QLocale__Country(218) + QLocale__TurksAndCaicosIslands = QLocale__Country(219) + QLocale__Tuvalu = QLocale__Country(220) + QLocale__Uganda = QLocale__Country(221) + QLocale__Ukraine = QLocale__Country(222) + QLocale__UnitedArabEmirates = QLocale__Country(223) + QLocale__UnitedKingdom = QLocale__Country(224) + QLocale__UnitedStates = QLocale__Country(225) + QLocale__UnitedStatesMinorOutlyingIslands = QLocale__Country(226) + QLocale__Uruguay = QLocale__Country(227) + QLocale__Uzbekistan = QLocale__Country(228) + QLocale__Vanuatu = QLocale__Country(229) + QLocale__VaticanCityState = QLocale__Country(230) + QLocale__Venezuela = QLocale__Country(231) + QLocale__Vietnam = QLocale__Country(232) + QLocale__BritishVirginIslands = QLocale__Country(233) + QLocale__UnitedStatesVirginIslands = QLocale__Country(234) + QLocale__WallisAndFutunaIslands = QLocale__Country(235) + QLocale__WesternSahara = QLocale__Country(236) + QLocale__Yemen = QLocale__Country(237) + QLocale__CanaryIslands = QLocale__Country(238) + QLocale__Zambia = QLocale__Country(239) + QLocale__Zimbabwe = QLocale__Country(240) + QLocale__ClippertonIsland = QLocale__Country(241) + QLocale__Montenegro = QLocale__Country(242) + QLocale__Serbia = QLocale__Country(243) + QLocale__SaintBarthelemy = QLocale__Country(244) + QLocale__SaintMartin = QLocale__Country(245) + QLocale__LatinAmericaAndTheCaribbean = QLocale__Country(246) + QLocale__AscensionIsland = QLocale__Country(247) + QLocale__AlandIslands = QLocale__Country(248) + QLocale__DiegoGarcia = QLocale__Country(249) + QLocale__CeutaAndMelilla = QLocale__Country(250) + QLocale__IsleOfMan = QLocale__Country(251) + QLocale__Jersey = QLocale__Country(252) + QLocale__TristanDaCunha = QLocale__Country(253) + QLocale__SouthSudan = QLocale__Country(254) + QLocale__Bonaire = QLocale__Country(255) + QLocale__SintMaarten = QLocale__Country(256) + QLocale__Kosovo = QLocale__Country(257) + QLocale__DemocraticRepublicOfCongo = QLocale__Country(QLocale__CongoKinshasa) + QLocale__PeoplesRepublicOfCongo = QLocale__Country(QLocale__CongoBrazzaville) + QLocale__DemocraticRepublicOfKorea = QLocale__Country(QLocale__NorthKorea) + QLocale__RepublicOfKorea = QLocale__Country(QLocale__SouthKorea) + QLocale__RussianFederation = QLocale__Country(QLocale__Russia) + QLocale__SyrianArabRepublic = QLocale__Country(QLocale__Syria) + QLocale__LastCountry = QLocale__Country(QLocale__Kosovo) +) + +//QLocale::CurrencySymbolFormat +type QLocale__CurrencySymbolFormat int + +var ( + QLocale__CurrencyIsoCode = QLocale__CurrencySymbolFormat(0) + QLocale__CurrencySymbol = QLocale__CurrencySymbolFormat(1) + QLocale__CurrencyDisplayName = QLocale__CurrencySymbolFormat(2) +) + +//QLocale::FormatType +type QLocale__FormatType int + +var ( + QLocale__LongFormat = QLocale__FormatType(0) + QLocale__ShortFormat = QLocale__FormatType(1) + QLocale__NarrowFormat = QLocale__FormatType(2) +) + +//QLocale::Language +type QLocale__Language int + +var ( + QLocale__AnyLanguage = QLocale__Language(0) + QLocale__C = QLocale__Language(1) + QLocale__Abkhazian = QLocale__Language(2) + QLocale__Oromo = QLocale__Language(3) + QLocale__Afar = QLocale__Language(4) + QLocale__Afrikaans = QLocale__Language(5) + QLocale__Albanian = QLocale__Language(6) + QLocale__Amharic = QLocale__Language(7) + QLocale__Arabic = QLocale__Language(8) + QLocale__Armenian = QLocale__Language(9) + QLocale__Assamese = QLocale__Language(10) + QLocale__Aymara = QLocale__Language(11) + QLocale__Azerbaijani = QLocale__Language(12) + QLocale__Bashkir = QLocale__Language(13) + QLocale__Basque = QLocale__Language(14) + QLocale__Bengali = QLocale__Language(15) + QLocale__Dzongkha = QLocale__Language(16) + QLocale__Bihari = QLocale__Language(17) + QLocale__Bislama = QLocale__Language(18) + QLocale__Breton = QLocale__Language(19) + QLocale__Bulgarian = QLocale__Language(20) + QLocale__Burmese = QLocale__Language(21) + QLocale__Belarusian = QLocale__Language(22) + QLocale__Khmer = QLocale__Language(23) + QLocale__Catalan = QLocale__Language(24) + QLocale__Chinese = QLocale__Language(25) + QLocale__Corsican = QLocale__Language(26) + QLocale__Croatian = QLocale__Language(27) + QLocale__Czech = QLocale__Language(28) + QLocale__Danish = QLocale__Language(29) + QLocale__Dutch = QLocale__Language(30) + QLocale__English = QLocale__Language(31) + QLocale__Esperanto = QLocale__Language(32) + QLocale__Estonian = QLocale__Language(33) + QLocale__Faroese = QLocale__Language(34) + QLocale__Fijian = QLocale__Language(35) + QLocale__Finnish = QLocale__Language(36) + QLocale__French = QLocale__Language(37) + QLocale__WesternFrisian = QLocale__Language(38) + QLocale__Gaelic = QLocale__Language(39) + QLocale__Galician = QLocale__Language(40) + QLocale__Georgian = QLocale__Language(41) + QLocale__German = QLocale__Language(42) + QLocale__Greek = QLocale__Language(43) + QLocale__Greenlandic = QLocale__Language(44) + QLocale__Guarani = QLocale__Language(45) + QLocale__Gujarati = QLocale__Language(46) + QLocale__Hausa = QLocale__Language(47) + QLocale__Hebrew = QLocale__Language(48) + QLocale__Hindi = QLocale__Language(49) + QLocale__Hungarian = QLocale__Language(50) + QLocale__Icelandic = QLocale__Language(51) + QLocale__Indonesian = QLocale__Language(52) + QLocale__Interlingua = QLocale__Language(53) + QLocale__Interlingue = QLocale__Language(54) + QLocale__Inuktitut = QLocale__Language(55) + QLocale__Inupiak = QLocale__Language(56) + QLocale__Irish = QLocale__Language(57) + QLocale__Italian = QLocale__Language(58) + QLocale__Japanese = QLocale__Language(59) + QLocale__Javanese = QLocale__Language(60) + QLocale__Kannada = QLocale__Language(61) + QLocale__Kashmiri = QLocale__Language(62) + QLocale__Kazakh = QLocale__Language(63) + QLocale__Kinyarwanda = QLocale__Language(64) + QLocale__Kirghiz = QLocale__Language(65) + QLocale__Korean = QLocale__Language(66) + QLocale__Kurdish = QLocale__Language(67) + QLocale__Rundi = QLocale__Language(68) + QLocale__Lao = QLocale__Language(69) + QLocale__Latin = QLocale__Language(70) + QLocale__Latvian = QLocale__Language(71) + QLocale__Lingala = QLocale__Language(72) + QLocale__Lithuanian = QLocale__Language(73) + QLocale__Macedonian = QLocale__Language(74) + QLocale__Malagasy = QLocale__Language(75) + QLocale__Malay = QLocale__Language(76) + QLocale__Malayalam = QLocale__Language(77) + QLocale__Maltese = QLocale__Language(78) + QLocale__Maori = QLocale__Language(79) + QLocale__Marathi = QLocale__Language(80) + QLocale__Marshallese = QLocale__Language(81) + QLocale__Mongolian = QLocale__Language(82) + QLocale__NauruLanguage = QLocale__Language(83) + QLocale__Nepali = QLocale__Language(84) + QLocale__NorwegianBokmal = QLocale__Language(85) + QLocale__Occitan = QLocale__Language(86) + QLocale__Oriya = QLocale__Language(87) + QLocale__Pashto = QLocale__Language(88) + QLocale__Persian = QLocale__Language(89) + QLocale__Polish = QLocale__Language(90) + QLocale__Portuguese = QLocale__Language(91) + QLocale__Punjabi = QLocale__Language(92) + QLocale__Quechua = QLocale__Language(93) + QLocale__Romansh = QLocale__Language(94) + QLocale__Romanian = QLocale__Language(95) + QLocale__Russian = QLocale__Language(96) + QLocale__Samoan = QLocale__Language(97) + QLocale__Sango = QLocale__Language(98) + QLocale__Sanskrit = QLocale__Language(99) + QLocale__Serbian = QLocale__Language(100) + QLocale__Ossetic = QLocale__Language(101) + QLocale__SouthernSotho = QLocale__Language(102) + QLocale__Tswana = QLocale__Language(103) + QLocale__Shona = QLocale__Language(104) + QLocale__Sindhi = QLocale__Language(105) + QLocale__Sinhala = QLocale__Language(106) + QLocale__Swati = QLocale__Language(107) + QLocale__Slovak = QLocale__Language(108) + QLocale__Slovenian = QLocale__Language(109) + QLocale__Somali = QLocale__Language(110) + QLocale__Spanish = QLocale__Language(111) + QLocale__Sundanese = QLocale__Language(112) + QLocale__Swahili = QLocale__Language(113) + QLocale__Swedish = QLocale__Language(114) + QLocale__Sardinian = QLocale__Language(115) + QLocale__Tajik = QLocale__Language(116) + QLocale__Tamil = QLocale__Language(117) + QLocale__Tatar = QLocale__Language(118) + QLocale__Telugu = QLocale__Language(119) + QLocale__Thai = QLocale__Language(120) + QLocale__Tibetan = QLocale__Language(121) + QLocale__Tigrinya = QLocale__Language(122) + QLocale__Tongan = QLocale__Language(123) + QLocale__Tsonga = QLocale__Language(124) + QLocale__Turkish = QLocale__Language(125) + QLocale__Turkmen = QLocale__Language(126) + QLocale__Tahitian = QLocale__Language(127) + QLocale__Uighur = QLocale__Language(128) + QLocale__Ukrainian = QLocale__Language(129) + QLocale__Urdu = QLocale__Language(130) + QLocale__Uzbek = QLocale__Language(131) + QLocale__Vietnamese = QLocale__Language(132) + QLocale__Volapuk = QLocale__Language(133) + QLocale__Welsh = QLocale__Language(134) + QLocale__Wolof = QLocale__Language(135) + QLocale__Xhosa = QLocale__Language(136) + QLocale__Yiddish = QLocale__Language(137) + QLocale__Yoruba = QLocale__Language(138) + QLocale__Zhuang = QLocale__Language(139) + QLocale__Zulu = QLocale__Language(140) + QLocale__NorwegianNynorsk = QLocale__Language(141) + QLocale__Bosnian = QLocale__Language(142) + QLocale__Divehi = QLocale__Language(143) + QLocale__Manx = QLocale__Language(144) + QLocale__Cornish = QLocale__Language(145) + QLocale__Akan = QLocale__Language(146) + QLocale__Konkani = QLocale__Language(147) + QLocale__Ga = QLocale__Language(148) + QLocale__Igbo = QLocale__Language(149) + QLocale__Kamba = QLocale__Language(150) + QLocale__Syriac = QLocale__Language(151) + QLocale__Blin = QLocale__Language(152) + QLocale__Geez = QLocale__Language(153) + QLocale__Koro = QLocale__Language(154) + QLocale__Sidamo = QLocale__Language(155) + QLocale__Atsam = QLocale__Language(156) + QLocale__Tigre = QLocale__Language(157) + QLocale__Jju = QLocale__Language(158) + QLocale__Friulian = QLocale__Language(159) + QLocale__Venda = QLocale__Language(160) + QLocale__Ewe = QLocale__Language(161) + QLocale__Walamo = QLocale__Language(162) + QLocale__Hawaiian = QLocale__Language(163) + QLocale__Tyap = QLocale__Language(164) + QLocale__Nyanja = QLocale__Language(165) + QLocale__Filipino = QLocale__Language(166) + QLocale__SwissGerman = QLocale__Language(167) + QLocale__SichuanYi = QLocale__Language(168) + QLocale__Kpelle = QLocale__Language(169) + QLocale__LowGerman = QLocale__Language(170) + QLocale__SouthNdebele = QLocale__Language(171) + QLocale__NorthernSotho = QLocale__Language(172) + QLocale__NorthernSami = QLocale__Language(173) + QLocale__Taroko = QLocale__Language(174) + QLocale__Gusii = QLocale__Language(175) + QLocale__Taita = QLocale__Language(176) + QLocale__Fulah = QLocale__Language(177) + QLocale__Kikuyu = QLocale__Language(178) + QLocale__Samburu = QLocale__Language(179) + QLocale__Sena = QLocale__Language(180) + QLocale__NorthNdebele = QLocale__Language(181) + QLocale__Rombo = QLocale__Language(182) + QLocale__Tachelhit = QLocale__Language(183) + QLocale__Kabyle = QLocale__Language(184) + QLocale__Nyankole = QLocale__Language(185) + QLocale__Bena = QLocale__Language(186) + QLocale__Vunjo = QLocale__Language(187) + QLocale__Bambara = QLocale__Language(188) + QLocale__Embu = QLocale__Language(189) + QLocale__Cherokee = QLocale__Language(190) + QLocale__Morisyen = QLocale__Language(191) + QLocale__Makonde = QLocale__Language(192) + QLocale__Langi = QLocale__Language(193) + QLocale__Ganda = QLocale__Language(194) + QLocale__Bemba = QLocale__Language(195) + QLocale__Kabuverdianu = QLocale__Language(196) + QLocale__Meru = QLocale__Language(197) + QLocale__Kalenjin = QLocale__Language(198) + QLocale__Nama = QLocale__Language(199) + QLocale__Machame = QLocale__Language(200) + QLocale__Colognian = QLocale__Language(201) + QLocale__Masai = QLocale__Language(202) + QLocale__Soga = QLocale__Language(203) + QLocale__Luyia = QLocale__Language(204) + QLocale__Asu = QLocale__Language(205) + QLocale__Teso = QLocale__Language(206) + QLocale__Saho = QLocale__Language(207) + QLocale__KoyraChiini = QLocale__Language(208) + QLocale__Rwa = QLocale__Language(209) + QLocale__Luo = QLocale__Language(210) + QLocale__Chiga = QLocale__Language(211) + QLocale__CentralMoroccoTamazight = QLocale__Language(212) + QLocale__KoyraboroSenni = QLocale__Language(213) + QLocale__Shambala = QLocale__Language(214) + QLocale__Bodo = QLocale__Language(215) + QLocale__Avaric = QLocale__Language(216) + QLocale__Chamorro = QLocale__Language(217) + QLocale__Chechen = QLocale__Language(218) + QLocale__Church = QLocale__Language(219) + QLocale__Chuvash = QLocale__Language(220) + QLocale__Cree = QLocale__Language(221) + QLocale__Haitian = QLocale__Language(222) + QLocale__Herero = QLocale__Language(223) + QLocale__HiriMotu = QLocale__Language(224) + QLocale__Kanuri = QLocale__Language(225) + QLocale__Komi = QLocale__Language(226) + QLocale__Kongo = QLocale__Language(227) + QLocale__Kwanyama = QLocale__Language(228) + QLocale__Limburgish = QLocale__Language(229) + QLocale__LubaKatanga = QLocale__Language(230) + QLocale__Luxembourgish = QLocale__Language(231) + QLocale__Navaho = QLocale__Language(232) + QLocale__Ndonga = QLocale__Language(233) + QLocale__Ojibwa = QLocale__Language(234) + QLocale__Pali = QLocale__Language(235) + QLocale__Walloon = QLocale__Language(236) + QLocale__Aghem = QLocale__Language(237) + QLocale__Basaa = QLocale__Language(238) + QLocale__Zarma = QLocale__Language(239) + QLocale__Duala = QLocale__Language(240) + QLocale__JolaFonyi = QLocale__Language(241) + QLocale__Ewondo = QLocale__Language(242) + QLocale__Bafia = QLocale__Language(243) + QLocale__MakhuwaMeetto = QLocale__Language(244) + QLocale__Mundang = QLocale__Language(245) + QLocale__Kwasio = QLocale__Language(246) + QLocale__Nuer = QLocale__Language(247) + QLocale__Sakha = QLocale__Language(248) + QLocale__Sangu = QLocale__Language(249) + QLocale__CongoSwahili = QLocale__Language(250) + QLocale__Tasawaq = QLocale__Language(251) + QLocale__Vai = QLocale__Language(252) + QLocale__Walser = QLocale__Language(253) + QLocale__Yangben = QLocale__Language(254) + QLocale__Avestan = QLocale__Language(255) + QLocale__Asturian = QLocale__Language(256) + QLocale__Ngomba = QLocale__Language(257) + QLocale__Kako = QLocale__Language(258) + QLocale__Meta = QLocale__Language(259) + QLocale__Ngiemboon = QLocale__Language(260) + QLocale__Aragonese = QLocale__Language(261) + QLocale__Akkadian = QLocale__Language(262) + QLocale__AncientEgyptian = QLocale__Language(263) + QLocale__AncientGreek = QLocale__Language(264) + QLocale__Aramaic = QLocale__Language(265) + QLocale__Balinese = QLocale__Language(266) + QLocale__Bamun = QLocale__Language(267) + QLocale__BatakToba = QLocale__Language(268) + QLocale__Buginese = QLocale__Language(269) + QLocale__Buhid = QLocale__Language(270) + QLocale__Carian = QLocale__Language(271) + QLocale__Chakma = QLocale__Language(272) + QLocale__ClassicalMandaic = QLocale__Language(273) + QLocale__Coptic = QLocale__Language(274) + QLocale__Dogri = QLocale__Language(275) + QLocale__EasternCham = QLocale__Language(276) + QLocale__EasternKayah = QLocale__Language(277) + QLocale__Etruscan = QLocale__Language(278) + QLocale__Gothic = QLocale__Language(279) + QLocale__Hanunoo = QLocale__Language(280) + QLocale__Ingush = QLocale__Language(281) + QLocale__LargeFloweryMiao = QLocale__Language(282) + QLocale__Lepcha = QLocale__Language(283) + QLocale__Limbu = QLocale__Language(284) + QLocale__Lisu = QLocale__Language(285) + QLocale__Lu = QLocale__Language(286) + QLocale__Lycian = QLocale__Language(287) + QLocale__Lydian = QLocale__Language(288) + QLocale__Mandingo = QLocale__Language(289) + QLocale__Manipuri = QLocale__Language(290) + QLocale__Meroitic = QLocale__Language(291) + QLocale__NorthernThai = QLocale__Language(292) + QLocale__OldIrish = QLocale__Language(293) + QLocale__OldNorse = QLocale__Language(294) + QLocale__OldPersian = QLocale__Language(295) + QLocale__OldTurkish = QLocale__Language(296) + QLocale__Pahlavi = QLocale__Language(297) + QLocale__Parthian = QLocale__Language(298) + QLocale__Phoenician = QLocale__Language(299) + QLocale__PrakritLanguage = QLocale__Language(300) + QLocale__Rejang = QLocale__Language(301) + QLocale__Sabaean = QLocale__Language(302) + QLocale__Samaritan = QLocale__Language(303) + QLocale__Santali = QLocale__Language(304) + QLocale__Saurashtra = QLocale__Language(305) + QLocale__Sora = QLocale__Language(306) + QLocale__Sylheti = QLocale__Language(307) + QLocale__Tagbanwa = QLocale__Language(308) + QLocale__TaiDam = QLocale__Language(309) + QLocale__TaiNua = QLocale__Language(310) + QLocale__Ugaritic = QLocale__Language(311) + QLocale__Akoose = QLocale__Language(312) + QLocale__Lakota = QLocale__Language(313) + QLocale__StandardMoroccanTamazight = QLocale__Language(314) + QLocale__Mapuche = QLocale__Language(315) + QLocale__CentralKurdish = QLocale__Language(316) + QLocale__LowerSorbian = QLocale__Language(317) + QLocale__UpperSorbian = QLocale__Language(318) + QLocale__Kenyang = QLocale__Language(319) + QLocale__Mohawk = QLocale__Language(320) + QLocale__Nko = QLocale__Language(321) + QLocale__Prussian = QLocale__Language(322) + QLocale__Kiche = QLocale__Language(323) + QLocale__SouthernSami = QLocale__Language(324) + QLocale__LuleSami = QLocale__Language(325) + QLocale__InariSami = QLocale__Language(326) + QLocale__SkoltSami = QLocale__Language(327) + QLocale__Warlpiri = QLocale__Language(328) + QLocale__ManichaeanMiddlePersian = QLocale__Language(329) + QLocale__Mende = QLocale__Language(330) + QLocale__AncientNorthArabian = QLocale__Language(331) + QLocale__LinearA = QLocale__Language(332) + QLocale__HmongNjua = QLocale__Language(333) + QLocale__Ho = QLocale__Language(334) + QLocale__Lezghian = QLocale__Language(335) + QLocale__Bassa = QLocale__Language(336) + QLocale__Mono = QLocale__Language(337) + QLocale__TedimChin = QLocale__Language(338) + QLocale__Maithili = QLocale__Language(339) + QLocale__Norwegian = QLocale__Language(QLocale__NorwegianBokmal) + QLocale__Moldavian = QLocale__Language(QLocale__Romanian) + QLocale__SerboCroatian = QLocale__Language(QLocale__Serbian) + QLocale__Tagalog = QLocale__Language(QLocale__Filipino) + QLocale__Twi = QLocale__Language(QLocale__Akan) + QLocale__Afan = QLocale__Language(QLocale__Oromo) + QLocale__Byelorussian = QLocale__Language(QLocale__Belarusian) + QLocale__Bhutani = QLocale__Language(QLocale__Dzongkha) + QLocale__Cambodian = QLocale__Language(QLocale__Khmer) + QLocale__Kurundi = QLocale__Language(QLocale__Rundi) + QLocale__RhaetoRomance = QLocale__Language(QLocale__Romansh) + QLocale__Chewa = QLocale__Language(QLocale__Nyanja) + QLocale__Frisian = QLocale__Language(QLocale__WesternFrisian) + QLocale__Uigur = QLocale__Language(QLocale__Uighur) + QLocale__LastLanguage = QLocale__Language(QLocale__Maithili) +) + +//QLocale::MeasurementSystem +type QLocale__MeasurementSystem int + +var ( + QLocale__MetricSystem = QLocale__MeasurementSystem(0) + QLocale__ImperialUSSystem = QLocale__MeasurementSystem(1) + QLocale__ImperialUKSystem = QLocale__MeasurementSystem(2) + QLocale__ImperialSystem = QLocale__MeasurementSystem(QLocale__ImperialUSSystem) +) + +//QLocale::NumberOption +type QLocale__NumberOption int + +var ( + QLocale__OmitGroupSeparator = QLocale__NumberOption(0x01) + QLocale__RejectGroupSeparator = QLocale__NumberOption(0x02) +) + +//QLocale::QuotationStyle +type QLocale__QuotationStyle int + +var ( + QLocale__StandardQuotation = QLocale__QuotationStyle(0) + QLocale__AlternateQuotation = QLocale__QuotationStyle(1) +) + +//QLocale::Script +type QLocale__Script int + +var ( + QLocale__AnyScript = QLocale__Script(0) + QLocale__ArabicScript = QLocale__Script(1) + QLocale__CyrillicScript = QLocale__Script(2) + QLocale__DeseretScript = QLocale__Script(3) + QLocale__GurmukhiScript = QLocale__Script(4) + QLocale__SimplifiedHanScript = QLocale__Script(5) + QLocale__TraditionalHanScript = QLocale__Script(6) + QLocale__LatinScript = QLocale__Script(7) + QLocale__MongolianScript = QLocale__Script(8) + QLocale__TifinaghScript = QLocale__Script(9) + QLocale__ArmenianScript = QLocale__Script(10) + QLocale__BengaliScript = QLocale__Script(11) + QLocale__CherokeeScript = QLocale__Script(12) + QLocale__DevanagariScript = QLocale__Script(13) + QLocale__EthiopicScript = QLocale__Script(14) + QLocale__GeorgianScript = QLocale__Script(15) + QLocale__GreekScript = QLocale__Script(16) + QLocale__GujaratiScript = QLocale__Script(17) + QLocale__HebrewScript = QLocale__Script(18) + QLocale__JapaneseScript = QLocale__Script(19) + QLocale__KhmerScript = QLocale__Script(20) + QLocale__KannadaScript = QLocale__Script(21) + QLocale__KoreanScript = QLocale__Script(22) + QLocale__LaoScript = QLocale__Script(23) + QLocale__MalayalamScript = QLocale__Script(24) + QLocale__MyanmarScript = QLocale__Script(25) + QLocale__OriyaScript = QLocale__Script(26) + QLocale__TamilScript = QLocale__Script(27) + QLocale__TeluguScript = QLocale__Script(28) + QLocale__ThaanaScript = QLocale__Script(29) + QLocale__ThaiScript = QLocale__Script(30) + QLocale__TibetanScript = QLocale__Script(31) + QLocale__SinhalaScript = QLocale__Script(32) + QLocale__SyriacScript = QLocale__Script(33) + QLocale__YiScript = QLocale__Script(34) + QLocale__VaiScript = QLocale__Script(35) + QLocale__AvestanScript = QLocale__Script(36) + QLocale__BalineseScript = QLocale__Script(37) + QLocale__BamumScript = QLocale__Script(38) + QLocale__BatakScript = QLocale__Script(39) + QLocale__BopomofoScript = QLocale__Script(40) + QLocale__BrahmiScript = QLocale__Script(41) + QLocale__BugineseScript = QLocale__Script(42) + QLocale__BuhidScript = QLocale__Script(43) + QLocale__CanadianAboriginalScript = QLocale__Script(44) + QLocale__CarianScript = QLocale__Script(45) + QLocale__ChakmaScript = QLocale__Script(46) + QLocale__ChamScript = QLocale__Script(47) + QLocale__CopticScript = QLocale__Script(48) + QLocale__CypriotScript = QLocale__Script(49) + QLocale__EgyptianHieroglyphsScript = QLocale__Script(50) + QLocale__FraserScript = QLocale__Script(51) + QLocale__GlagoliticScript = QLocale__Script(52) + QLocale__GothicScript = QLocale__Script(53) + QLocale__HanScript = QLocale__Script(54) + QLocale__HangulScript = QLocale__Script(55) + QLocale__HanunooScript = QLocale__Script(56) + QLocale__ImperialAramaicScript = QLocale__Script(57) + QLocale__InscriptionalPahlaviScript = QLocale__Script(58) + QLocale__InscriptionalParthianScript = QLocale__Script(59) + QLocale__JavaneseScript = QLocale__Script(60) + QLocale__KaithiScript = QLocale__Script(61) + QLocale__KatakanaScript = QLocale__Script(62) + QLocale__KayahLiScript = QLocale__Script(63) + QLocale__KharoshthiScript = QLocale__Script(64) + QLocale__LannaScript = QLocale__Script(65) + QLocale__LepchaScript = QLocale__Script(66) + QLocale__LimbuScript = QLocale__Script(67) + QLocale__LinearBScript = QLocale__Script(68) + QLocale__LycianScript = QLocale__Script(69) + QLocale__LydianScript = QLocale__Script(70) + QLocale__MandaeanScript = QLocale__Script(71) + QLocale__MeiteiMayekScript = QLocale__Script(72) + QLocale__MeroiticScript = QLocale__Script(73) + QLocale__MeroiticCursiveScript = QLocale__Script(74) + QLocale__NkoScript = QLocale__Script(75) + QLocale__NewTaiLueScript = QLocale__Script(76) + QLocale__OghamScript = QLocale__Script(77) + QLocale__OlChikiScript = QLocale__Script(78) + QLocale__OldItalicScript = QLocale__Script(79) + QLocale__OldPersianScript = QLocale__Script(80) + QLocale__OldSouthArabianScript = QLocale__Script(81) + QLocale__OrkhonScript = QLocale__Script(82) + QLocale__OsmanyaScript = QLocale__Script(83) + QLocale__PhagsPaScript = QLocale__Script(84) + QLocale__PhoenicianScript = QLocale__Script(85) + QLocale__PollardPhoneticScript = QLocale__Script(86) + QLocale__RejangScript = QLocale__Script(87) + QLocale__RunicScript = QLocale__Script(88) + QLocale__SamaritanScript = QLocale__Script(89) + QLocale__SaurashtraScript = QLocale__Script(90) + QLocale__SharadaScript = QLocale__Script(91) + QLocale__ShavianScript = QLocale__Script(92) + QLocale__SoraSompengScript = QLocale__Script(93) + QLocale__CuneiformScript = QLocale__Script(94) + QLocale__SundaneseScript = QLocale__Script(95) + QLocale__SylotiNagriScript = QLocale__Script(96) + QLocale__TagalogScript = QLocale__Script(97) + QLocale__TagbanwaScript = QLocale__Script(98) + QLocale__TaiLeScript = QLocale__Script(99) + QLocale__TaiVietScript = QLocale__Script(100) + QLocale__TakriScript = QLocale__Script(101) + QLocale__UgariticScript = QLocale__Script(102) + QLocale__BrailleScript = QLocale__Script(103) + QLocale__HiraganaScript = QLocale__Script(104) + QLocale__CaucasianAlbanianScript = QLocale__Script(105) + QLocale__BassaVahScript = QLocale__Script(106) + QLocale__DuployanScript = QLocale__Script(107) + QLocale__ElbasanScript = QLocale__Script(108) + QLocale__GranthaScript = QLocale__Script(109) + QLocale__PahawhHmongScript = QLocale__Script(110) + QLocale__KhojkiScript = QLocale__Script(111) + QLocale__LinearAScript = QLocale__Script(112) + QLocale__MahajaniScript = QLocale__Script(113) + QLocale__ManichaeanScript = QLocale__Script(114) + QLocale__MendeKikakuiScript = QLocale__Script(115) + QLocale__ModiScript = QLocale__Script(116) + QLocale__MroScript = QLocale__Script(117) + QLocale__OldNorthArabianScript = QLocale__Script(118) + QLocale__NabataeanScript = QLocale__Script(119) + QLocale__PalmyreneScript = QLocale__Script(120) + QLocale__PauCinHauScript = QLocale__Script(121) + QLocale__OldPermicScript = QLocale__Script(122) + QLocale__PsalterPahlaviScript = QLocale__Script(123) + QLocale__SiddhamScript = QLocale__Script(124) + QLocale__KhudawadiScript = QLocale__Script(125) + QLocale__TirhutaScript = QLocale__Script(126) + QLocale__VarangKshitiScript = QLocale__Script(127) + QLocale__SimplifiedChineseScript = QLocale__Script(QLocale__SimplifiedHanScript) + QLocale__TraditionalChineseScript = QLocale__Script(QLocale__TraditionalHanScript) + QLocale__LastScript = QLocale__Script(QLocale__VarangKshitiScript) +) + +func NewQLocale() *QLocale { + return QLocaleFromPointer(unsafe.Pointer(C.QLocale_NewQLocale())) +} + +func NewQLocale3(language QLocale__Language, country QLocale__Country) *QLocale { + return QLocaleFromPointer(unsafe.Pointer(C.QLocale_NewQLocale3(C.int(language), C.int(country)))) +} + +func NewQLocale4(language QLocale__Language, script QLocale__Script, country QLocale__Country) *QLocale { + return QLocaleFromPointer(unsafe.Pointer(C.QLocale_NewQLocale4(C.int(language), C.int(script), C.int(country)))) +} + +func NewQLocale5(other QLocaleITF) *QLocale { + return QLocaleFromPointer(unsafe.Pointer(C.QLocale_NewQLocale5(C.QtObjectPtr(PointerFromQLocale(other))))) +} + +func NewQLocale2(name string) *QLocale { + return QLocaleFromPointer(unsafe.Pointer(C.QLocale_NewQLocale2(C.CString(name)))) +} + +func (ptr *QLocale) AmText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocale_AmText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QLocale) Bcp47Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocale_Bcp47Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QLocale) Country() QLocale__Country { + if ptr.Pointer() != nil { + return QLocale__Country(C.QLocale_Country(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QLocale_CountryToString(country QLocale__Country) string { + return C.GoString(C.QLocale_QLocale_CountryToString(C.int(country))) +} + +func (ptr *QLocale) CreateSeparatedList(list []string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocale_CreateSeparatedList(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(list, "|")))) + } + return "" +} + +func (ptr *QLocale) CurrencySymbol(format QLocale__CurrencySymbolFormat) string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocale_CurrencySymbol(C.QtObjectPtr(ptr.Pointer()), C.int(format))) + } + return "" +} + +func (ptr *QLocale) DateFormat(format QLocale__FormatType) string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocale_DateFormat(C.QtObjectPtr(ptr.Pointer()), C.int(format))) + } + return "" +} + +func (ptr *QLocale) DateTimeFormat(format QLocale__FormatType) string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocale_DateTimeFormat(C.QtObjectPtr(ptr.Pointer()), C.int(format))) + } + return "" +} + +func (ptr *QLocale) DayName(day int, ty QLocale__FormatType) string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocale_DayName(C.QtObjectPtr(ptr.Pointer()), C.int(day), C.int(ty))) + } + return "" +} + +func (ptr *QLocale) FirstDayOfWeek() Qt__DayOfWeek { + if ptr.Pointer() != nil { + return Qt__DayOfWeek(C.QLocale_FirstDayOfWeek(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLocale) Language() QLocale__Language { + if ptr.Pointer() != nil { + return QLocale__Language(C.QLocale_Language(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QLocale_LanguageToString(language QLocale__Language) string { + return C.GoString(C.QLocale_QLocale_LanguageToString(C.int(language))) +} + +func (ptr *QLocale) MeasurementSystem() QLocale__MeasurementSystem { + if ptr.Pointer() != nil { + return QLocale__MeasurementSystem(C.QLocale_MeasurementSystem(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLocale) MonthName(month int, ty QLocale__FormatType) string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocale_MonthName(C.QtObjectPtr(ptr.Pointer()), C.int(month), C.int(ty))) + } + return "" +} + +func (ptr *QLocale) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocale_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QLocale) NativeCountryName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocale_NativeCountryName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QLocale) NativeLanguageName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocale_NativeLanguageName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QLocale) NumberOptions() QLocale__NumberOption { + if ptr.Pointer() != nil { + return QLocale__NumberOption(C.QLocale_NumberOptions(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLocale) PmText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocale_PmText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QLocale) QuoteString(str string, style QLocale__QuotationStyle) string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocale_QuoteString(C.QtObjectPtr(ptr.Pointer()), C.CString(str), C.int(style))) + } + return "" +} + +func (ptr *QLocale) QuoteString2(str QStringRefITF, style QLocale__QuotationStyle) string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocale_QuoteString2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQStringRef(str)), C.int(style))) + } + return "" +} + +func (ptr *QLocale) Script() QLocale__Script { + if ptr.Pointer() != nil { + return QLocale__Script(C.QLocale_Script(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QLocale_ScriptToString(script QLocale__Script) string { + return C.GoString(C.QLocale_QLocale_ScriptToString(C.int(script))) +} + +func QLocale_SetDefault(locale QLocaleITF) { + C.QLocale_QLocale_SetDefault(C.QtObjectPtr(PointerFromQLocale(locale))) +} + +func (ptr *QLocale) SetNumberOptions(options QLocale__NumberOption) { + if ptr.Pointer() != nil { + C.QLocale_SetNumberOptions(C.QtObjectPtr(ptr.Pointer()), C.int(options)) + } +} + +func (ptr *QLocale) StandaloneDayName(day int, ty QLocale__FormatType) string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocale_StandaloneDayName(C.QtObjectPtr(ptr.Pointer()), C.int(day), C.int(ty))) + } + return "" +} + +func (ptr *QLocale) StandaloneMonthName(month int, ty QLocale__FormatType) string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocale_StandaloneMonthName(C.QtObjectPtr(ptr.Pointer()), C.int(month), C.int(ty))) + } + return "" +} + +func (ptr *QLocale) TextDirection() Qt__LayoutDirection { + if ptr.Pointer() != nil { + return Qt__LayoutDirection(C.QLocale_TextDirection(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLocale) TimeFormat(format QLocale__FormatType) string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocale_TimeFormat(C.QtObjectPtr(ptr.Pointer()), C.int(format))) + } + return "" +} + +func (ptr *QLocale) ToCurrencyString6(value int, symbol string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocale_ToCurrencyString6(C.QtObjectPtr(ptr.Pointer()), C.int(value), C.CString(symbol))) + } + return "" +} + +func (ptr *QLocale) ToInt(s string, ok bool) int { + if ptr.Pointer() != nil { + return int(C.QLocale_ToInt(C.QtObjectPtr(ptr.Pointer()), C.CString(s), C.int(qt.GoBoolToInt(ok)))) + } + return 0 +} + +func (ptr *QLocale) ToInt2(s QStringRefITF, ok bool) int { + if ptr.Pointer() != nil { + return int(C.QLocale_ToInt2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQStringRef(s)), C.int(qt.GoBoolToInt(ok)))) + } + return 0 +} + +func (ptr *QLocale) ToLower(str string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocale_ToLower(C.QtObjectPtr(ptr.Pointer()), C.CString(str))) + } + return "" +} + +func (ptr *QLocale) ToString3(date QDateITF, format QLocale__FormatType) string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocale_ToString3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDate(date)), C.int(format))) + } + return "" +} + +func (ptr *QLocale) ToString2(date QDateITF, format string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocale_ToString2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDate(date)), C.CString(format))) + } + return "" +} + +func (ptr *QLocale) ToString6(dateTime QDateTimeITF, format QLocale__FormatType) string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocale_ToString6(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDateTime(dateTime)), C.int(format))) + } + return "" +} + +func (ptr *QLocale) ToString7(dateTime QDateTimeITF, format string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocale_ToString7(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDateTime(dateTime)), C.CString(format))) + } + return "" +} + +func (ptr *QLocale) ToString5(time QTimeITF, format QLocale__FormatType) string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocale_ToString5(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTime(time)), C.int(format))) + } + return "" +} + +func (ptr *QLocale) ToString4(time QTimeITF, format string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocale_ToString4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTime(time)), C.CString(format))) + } + return "" +} + +func (ptr *QLocale) ToString12(i int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocale_ToString12(C.QtObjectPtr(ptr.Pointer()), C.int(i))) + } + return "" +} + +func (ptr *QLocale) ToUpper(str string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocale_ToUpper(C.QtObjectPtr(ptr.Pointer()), C.CString(str))) + } + return "" +} + +func (ptr *QLocale) UiLanguages() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QLocale_UiLanguages(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QLocale) DestroyQLocale() { + if ptr.Pointer() != nil { + C.QLocale_DestroyQLocale(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qlocale.h b/core/qlocale.h new file mode 100755 index 00000000..18dbca3b --- /dev/null +++ b/core/qlocale.h @@ -0,0 +1,57 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QLocale_NewQLocale(); +QtObjectPtr QLocale_NewQLocale3(int language, int country); +QtObjectPtr QLocale_NewQLocale4(int language, int script, int country); +QtObjectPtr QLocale_NewQLocale5(QtObjectPtr other); +QtObjectPtr QLocale_NewQLocale2(char* name); +char* QLocale_AmText(QtObjectPtr ptr); +char* QLocale_Bcp47Name(QtObjectPtr ptr); +int QLocale_Country(QtObjectPtr ptr); +char* QLocale_QLocale_CountryToString(int country); +char* QLocale_CreateSeparatedList(QtObjectPtr ptr, char* list); +char* QLocale_CurrencySymbol(QtObjectPtr ptr, int format); +char* QLocale_DateFormat(QtObjectPtr ptr, int format); +char* QLocale_DateTimeFormat(QtObjectPtr ptr, int format); +char* QLocale_DayName(QtObjectPtr ptr, int day, int ty); +int QLocale_FirstDayOfWeek(QtObjectPtr ptr); +int QLocale_Language(QtObjectPtr ptr); +char* QLocale_QLocale_LanguageToString(int language); +int QLocale_MeasurementSystem(QtObjectPtr ptr); +char* QLocale_MonthName(QtObjectPtr ptr, int month, int ty); +char* QLocale_Name(QtObjectPtr ptr); +char* QLocale_NativeCountryName(QtObjectPtr ptr); +char* QLocale_NativeLanguageName(QtObjectPtr ptr); +int QLocale_NumberOptions(QtObjectPtr ptr); +char* QLocale_PmText(QtObjectPtr ptr); +char* QLocale_QuoteString(QtObjectPtr ptr, char* str, int style); +char* QLocale_QuoteString2(QtObjectPtr ptr, QtObjectPtr str, int style); +int QLocale_Script(QtObjectPtr ptr); +char* QLocale_QLocale_ScriptToString(int script); +void QLocale_QLocale_SetDefault(QtObjectPtr locale); +void QLocale_SetNumberOptions(QtObjectPtr ptr, int options); +char* QLocale_StandaloneDayName(QtObjectPtr ptr, int day, int ty); +char* QLocale_StandaloneMonthName(QtObjectPtr ptr, int month, int ty); +int QLocale_TextDirection(QtObjectPtr ptr); +char* QLocale_TimeFormat(QtObjectPtr ptr, int format); +char* QLocale_ToCurrencyString6(QtObjectPtr ptr, int value, char* symbol); +int QLocale_ToInt(QtObjectPtr ptr, char* s, int ok); +int QLocale_ToInt2(QtObjectPtr ptr, QtObjectPtr s, int ok); +char* QLocale_ToLower(QtObjectPtr ptr, char* str); +char* QLocale_ToString3(QtObjectPtr ptr, QtObjectPtr date, int format); +char* QLocale_ToString2(QtObjectPtr ptr, QtObjectPtr date, char* format); +char* QLocale_ToString6(QtObjectPtr ptr, QtObjectPtr dateTime, int format); +char* QLocale_ToString7(QtObjectPtr ptr, QtObjectPtr dateTime, char* format); +char* QLocale_ToString5(QtObjectPtr ptr, QtObjectPtr time, int format); +char* QLocale_ToString4(QtObjectPtr ptr, QtObjectPtr time, char* format); +char* QLocale_ToString12(QtObjectPtr ptr, int i); +char* QLocale_ToUpper(QtObjectPtr ptr, char* str); +char* QLocale_UiLanguages(QtObjectPtr ptr); +void QLocale_DestroyQLocale(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qlockfile.cpp b/core/qlockfile.cpp new file mode 100755 index 00000000..5fd8bd44 --- /dev/null +++ b/core/qlockfile.cpp @@ -0,0 +1,52 @@ +#include "qlockfile.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQLockFile: public QLockFile { +public: +}; + +QtObjectPtr QLockFile_NewQLockFile(char* fileName){ + return new QLockFile(QString(fileName)); +} + +int QLockFile_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +int QLockFile_IsLocked(QtObjectPtr ptr){ + return static_cast(ptr)->isLocked(); +} + +int QLockFile_Lock(QtObjectPtr ptr){ + return static_cast(ptr)->lock(); +} + +int QLockFile_RemoveStaleLockFile(QtObjectPtr ptr){ + return static_cast(ptr)->removeStaleLockFile(); +} + +void QLockFile_SetStaleLockTime(QtObjectPtr ptr, int staleLockTime){ + static_cast(ptr)->setStaleLockTime(staleLockTime); +} + +int QLockFile_StaleLockTime(QtObjectPtr ptr){ + return static_cast(ptr)->staleLockTime(); +} + +int QLockFile_TryLock(QtObjectPtr ptr, int timeout){ + return static_cast(ptr)->tryLock(timeout); +} + +void QLockFile_DestroyQLockFile(QtObjectPtr ptr){ + static_cast(ptr)->~QLockFile(); +} + +void QLockFile_Unlock(QtObjectPtr ptr){ + static_cast(ptr)->unlock(); +} + diff --git a/core/qlockfile.go b/core/qlockfile.go new file mode 100755 index 00000000..6f4cf13b --- /dev/null +++ b/core/qlockfile.go @@ -0,0 +1,114 @@ +package core + +//#include "qlockfile.h" +import "C" +import ( + "unsafe" +) + +type QLockFile struct { + ptr unsafe.Pointer +} + +type QLockFileITF interface { + QLockFilePTR() *QLockFile +} + +func (p *QLockFile) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QLockFile) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQLockFile(ptr QLockFileITF) unsafe.Pointer { + if ptr != nil { + return ptr.QLockFilePTR().Pointer() + } + return nil +} + +func QLockFileFromPointer(ptr unsafe.Pointer) *QLockFile { + var n = new(QLockFile) + n.SetPointer(ptr) + return n +} + +func (ptr *QLockFile) QLockFilePTR() *QLockFile { + return ptr +} + +//QLockFile::LockError +type QLockFile__LockError int + +var ( + QLockFile__NoError = QLockFile__LockError(0) + QLockFile__LockFailedError = QLockFile__LockError(1) + QLockFile__PermissionError = QLockFile__LockError(2) + QLockFile__UnknownError = QLockFile__LockError(3) +) + +func NewQLockFile(fileName string) *QLockFile { + return QLockFileFromPointer(unsafe.Pointer(C.QLockFile_NewQLockFile(C.CString(fileName)))) +} + +func (ptr *QLockFile) Error() QLockFile__LockError { + if ptr.Pointer() != nil { + return QLockFile__LockError(C.QLockFile_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLockFile) IsLocked() bool { + if ptr.Pointer() != nil { + return C.QLockFile_IsLocked(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLockFile) Lock() bool { + if ptr.Pointer() != nil { + return C.QLockFile_Lock(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLockFile) RemoveStaleLockFile() bool { + if ptr.Pointer() != nil { + return C.QLockFile_RemoveStaleLockFile(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLockFile) SetStaleLockTime(staleLockTime int) { + if ptr.Pointer() != nil { + C.QLockFile_SetStaleLockTime(C.QtObjectPtr(ptr.Pointer()), C.int(staleLockTime)) + } +} + +func (ptr *QLockFile) StaleLockTime() int { + if ptr.Pointer() != nil { + return int(C.QLockFile_StaleLockTime(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLockFile) TryLock(timeout int) bool { + if ptr.Pointer() != nil { + return C.QLockFile_TryLock(C.QtObjectPtr(ptr.Pointer()), C.int(timeout)) != 0 + } + return false +} + +func (ptr *QLockFile) DestroyQLockFile() { + if ptr.Pointer() != nil { + C.QLockFile_DestroyQLockFile(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QLockFile) Unlock() { + if ptr.Pointer() != nil { + C.QLockFile_Unlock(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qlockfile.h b/core/qlockfile.h new file mode 100755 index 00000000..7715d719 --- /dev/null +++ b/core/qlockfile.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QLockFile_NewQLockFile(char* fileName); +int QLockFile_Error(QtObjectPtr ptr); +int QLockFile_IsLocked(QtObjectPtr ptr); +int QLockFile_Lock(QtObjectPtr ptr); +int QLockFile_RemoveStaleLockFile(QtObjectPtr ptr); +void QLockFile_SetStaleLockTime(QtObjectPtr ptr, int staleLockTime); +int QLockFile_StaleLockTime(QtObjectPtr ptr); +int QLockFile_TryLock(QtObjectPtr ptr, int timeout); +void QLockFile_DestroyQLockFile(QtObjectPtr ptr); +void QLockFile_Unlock(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qloggingcategory.cpp b/core/qloggingcategory.cpp new file mode 100755 index 00000000..defd46c2 --- /dev/null +++ b/core/qloggingcategory.cpp @@ -0,0 +1,44 @@ +#include "qloggingcategory.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQLoggingCategory: public QLoggingCategory { +public: +}; + +QtObjectPtr QLoggingCategory_NewQLoggingCategory(char* category){ + return new QLoggingCategory(const_cast(category)); +} + +QtObjectPtr QLoggingCategory_QLoggingCategory_DefaultCategory(){ + return QLoggingCategory::defaultCategory(); +} + +int QLoggingCategory_IsCriticalEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isCriticalEnabled(); +} + +int QLoggingCategory_IsDebugEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isDebugEnabled(); +} + +int QLoggingCategory_IsInfoEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isInfoEnabled(); +} + +int QLoggingCategory_IsWarningEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isWarningEnabled(); +} + +void QLoggingCategory_QLoggingCategory_SetFilterRules(char* rules){ + QLoggingCategory::setFilterRules(QString(rules)); +} + +void QLoggingCategory_DestroyQLoggingCategory(QtObjectPtr ptr){ + static_cast(ptr)->~QLoggingCategory(); +} + diff --git a/core/qloggingcategory.go b/core/qloggingcategory.go new file mode 100755 index 00000000..93a1be9a --- /dev/null +++ b/core/qloggingcategory.go @@ -0,0 +1,86 @@ +package core + +//#include "qloggingcategory.h" +import "C" +import ( + "unsafe" +) + +type QLoggingCategory struct { + ptr unsafe.Pointer +} + +type QLoggingCategoryITF interface { + QLoggingCategoryPTR() *QLoggingCategory +} + +func (p *QLoggingCategory) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QLoggingCategory) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQLoggingCategory(ptr QLoggingCategoryITF) unsafe.Pointer { + if ptr != nil { + return ptr.QLoggingCategoryPTR().Pointer() + } + return nil +} + +func QLoggingCategoryFromPointer(ptr unsafe.Pointer) *QLoggingCategory { + var n = new(QLoggingCategory) + n.SetPointer(ptr) + return n +} + +func (ptr *QLoggingCategory) QLoggingCategoryPTR() *QLoggingCategory { + return ptr +} + +func NewQLoggingCategory(category string) *QLoggingCategory { + return QLoggingCategoryFromPointer(unsafe.Pointer(C.QLoggingCategory_NewQLoggingCategory(C.CString(category)))) +} + +func QLoggingCategory_DefaultCategory() *QLoggingCategory { + return QLoggingCategoryFromPointer(unsafe.Pointer(C.QLoggingCategory_QLoggingCategory_DefaultCategory())) +} + +func (ptr *QLoggingCategory) IsCriticalEnabled() bool { + if ptr.Pointer() != nil { + return C.QLoggingCategory_IsCriticalEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLoggingCategory) IsDebugEnabled() bool { + if ptr.Pointer() != nil { + return C.QLoggingCategory_IsDebugEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLoggingCategory) IsInfoEnabled() bool { + if ptr.Pointer() != nil { + return C.QLoggingCategory_IsInfoEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLoggingCategory) IsWarningEnabled() bool { + if ptr.Pointer() != nil { + return C.QLoggingCategory_IsWarningEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func QLoggingCategory_SetFilterRules(rules string) { + C.QLoggingCategory_QLoggingCategory_SetFilterRules(C.CString(rules)) +} + +func (ptr *QLoggingCategory) DestroyQLoggingCategory() { + if ptr.Pointer() != nil { + C.QLoggingCategory_DestroyQLoggingCategory(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qloggingcategory.h b/core/qloggingcategory.h new file mode 100755 index 00000000..a1bc21eb --- /dev/null +++ b/core/qloggingcategory.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QLoggingCategory_NewQLoggingCategory(char* category); +QtObjectPtr QLoggingCategory_QLoggingCategory_DefaultCategory(); +int QLoggingCategory_IsCriticalEnabled(QtObjectPtr ptr); +int QLoggingCategory_IsDebugEnabled(QtObjectPtr ptr); +int QLoggingCategory_IsInfoEnabled(QtObjectPtr ptr); +int QLoggingCategory_IsWarningEnabled(QtObjectPtr ptr); +void QLoggingCategory_QLoggingCategory_SetFilterRules(char* rules); +void QLoggingCategory_DestroyQLoggingCategory(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmap.cpp b/core/qmap.cpp new file mode 100755 index 00000000..b6266698 --- /dev/null +++ b/core/qmap.cpp @@ -0,0 +1,8 @@ +#include "qmap.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qmap.go b/core/qmap.go new file mode 100755 index 00000000..e28825cd --- /dev/null +++ b/core/qmap.go @@ -0,0 +1,40 @@ +package core + +//#include "qmap.h" +import "C" +import ( + "unsafe" +) + +type QMap struct { + ptr unsafe.Pointer +} + +type QMapITF interface { + QMapPTR() *QMap +} + +func (p *QMap) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMap) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMap(ptr QMapITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMapPTR().Pointer() + } + return nil +} + +func QMapFromPointer(ptr unsafe.Pointer) *QMap { + var n = new(QMap) + n.SetPointer(ptr) + return n +} + +func (ptr *QMap) QMapPTR() *QMap { + return ptr +} diff --git a/core/qmap.h b/core/qmap.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qmap.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmapiterator.cpp b/core/qmapiterator.cpp new file mode 100755 index 00000000..b069572c --- /dev/null +++ b/core/qmapiterator.cpp @@ -0,0 +1,9 @@ +#include "qmapiterator.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qmapiterator.go b/core/qmapiterator.go new file mode 100755 index 00000000..44fab29d --- /dev/null +++ b/core/qmapiterator.go @@ -0,0 +1,40 @@ +package core + +//#include "qmapiterator.h" +import "C" +import ( + "unsafe" +) + +type QMapIterator struct { + ptr unsafe.Pointer +} + +type QMapIteratorITF interface { + QMapIteratorPTR() *QMapIterator +} + +func (p *QMapIterator) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMapIterator) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMapIterator(ptr QMapIteratorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMapIteratorPTR().Pointer() + } + return nil +} + +func QMapIteratorFromPointer(ptr unsafe.Pointer) *QMapIterator { + var n = new(QMapIterator) + n.SetPointer(ptr) + return n +} + +func (ptr *QMapIterator) QMapIteratorPTR() *QMapIterator { + return ptr +} diff --git a/core/qmapiterator.h b/core/qmapiterator.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qmapiterator.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmargins.cpp b/core/qmargins.cpp new file mode 100755 index 00000000..68871c37 --- /dev/null +++ b/core/qmargins.cpp @@ -0,0 +1,56 @@ +#include "qmargins.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMargins: public QMargins { +public: +}; + +QtObjectPtr QMargins_NewQMargins(){ + return new QMargins(); +} + +QtObjectPtr QMargins_NewQMargins2(int left, int top, int right, int bottom){ + return new QMargins(left, top, right, bottom); +} + +int QMargins_Bottom(QtObjectPtr ptr){ + return static_cast(ptr)->bottom(); +} + +int QMargins_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QMargins_Left(QtObjectPtr ptr){ + return static_cast(ptr)->left(); +} + +int QMargins_Right(QtObjectPtr ptr){ + return static_cast(ptr)->right(); +} + +void QMargins_SetBottom(QtObjectPtr ptr, int bottom){ + static_cast(ptr)->setBottom(bottom); +} + +void QMargins_SetLeft(QtObjectPtr ptr, int left){ + static_cast(ptr)->setLeft(left); +} + +void QMargins_SetRight(QtObjectPtr ptr, int right){ + static_cast(ptr)->setRight(right); +} + +void QMargins_SetTop(QtObjectPtr ptr, int Top){ + static_cast(ptr)->setTop(Top); +} + +int QMargins_Top(QtObjectPtr ptr){ + return static_cast(ptr)->top(); +} + diff --git a/core/qmargins.go b/core/qmargins.go new file mode 100755 index 00000000..944bd355 --- /dev/null +++ b/core/qmargins.go @@ -0,0 +1,107 @@ +package core + +//#include "qmargins.h" +import "C" +import ( + "unsafe" +) + +type QMargins struct { + ptr unsafe.Pointer +} + +type QMarginsITF interface { + QMarginsPTR() *QMargins +} + +func (p *QMargins) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMargins) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMargins(ptr QMarginsITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMarginsPTR().Pointer() + } + return nil +} + +func QMarginsFromPointer(ptr unsafe.Pointer) *QMargins { + var n = new(QMargins) + n.SetPointer(ptr) + return n +} + +func (ptr *QMargins) QMarginsPTR() *QMargins { + return ptr +} + +func NewQMargins() *QMargins { + return QMarginsFromPointer(unsafe.Pointer(C.QMargins_NewQMargins())) +} + +func NewQMargins2(left int, top int, right int, bottom int) *QMargins { + return QMarginsFromPointer(unsafe.Pointer(C.QMargins_NewQMargins2(C.int(left), C.int(top), C.int(right), C.int(bottom)))) +} + +func (ptr *QMargins) Bottom() int { + if ptr.Pointer() != nil { + return int(C.QMargins_Bottom(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMargins) IsNull() bool { + if ptr.Pointer() != nil { + return C.QMargins_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMargins) Left() int { + if ptr.Pointer() != nil { + return int(C.QMargins_Left(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMargins) Right() int { + if ptr.Pointer() != nil { + return int(C.QMargins_Right(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMargins) SetBottom(bottom int) { + if ptr.Pointer() != nil { + C.QMargins_SetBottom(C.QtObjectPtr(ptr.Pointer()), C.int(bottom)) + } +} + +func (ptr *QMargins) SetLeft(left int) { + if ptr.Pointer() != nil { + C.QMargins_SetLeft(C.QtObjectPtr(ptr.Pointer()), C.int(left)) + } +} + +func (ptr *QMargins) SetRight(right int) { + if ptr.Pointer() != nil { + C.QMargins_SetRight(C.QtObjectPtr(ptr.Pointer()), C.int(right)) + } +} + +func (ptr *QMargins) SetTop(Top int) { + if ptr.Pointer() != nil { + C.QMargins_SetTop(C.QtObjectPtr(ptr.Pointer()), C.int(Top)) + } +} + +func (ptr *QMargins) Top() int { + if ptr.Pointer() != nil { + return int(C.QMargins_Top(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/core/qmargins.h b/core/qmargins.h new file mode 100755 index 00000000..747fdb59 --- /dev/null +++ b/core/qmargins.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QMargins_NewQMargins(); +QtObjectPtr QMargins_NewQMargins2(int left, int top, int right, int bottom); +int QMargins_Bottom(QtObjectPtr ptr); +int QMargins_IsNull(QtObjectPtr ptr); +int QMargins_Left(QtObjectPtr ptr); +int QMargins_Right(QtObjectPtr ptr); +void QMargins_SetBottom(QtObjectPtr ptr, int bottom); +void QMargins_SetLeft(QtObjectPtr ptr, int left); +void QMargins_SetRight(QtObjectPtr ptr, int right); +void QMargins_SetTop(QtObjectPtr ptr, int Top); +int QMargins_Top(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmarginsf.cpp b/core/qmarginsf.cpp new file mode 100755 index 00000000..202f18a5 --- /dev/null +++ b/core/qmarginsf.cpp @@ -0,0 +1,25 @@ +#include "qmarginsf.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMarginsF: public QMarginsF { +public: +}; + +QtObjectPtr QMarginsF_NewQMarginsF(){ + return new QMarginsF(); +} + +QtObjectPtr QMarginsF_NewQMarginsF3(QtObjectPtr margins){ + return new QMarginsF(*static_cast(margins)); +} + +int QMarginsF_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + diff --git a/core/qmarginsf.go b/core/qmarginsf.go new file mode 100755 index 00000000..2bcd6c6f --- /dev/null +++ b/core/qmarginsf.go @@ -0,0 +1,55 @@ +package core + +//#include "qmarginsf.h" +import "C" +import ( + "unsafe" +) + +type QMarginsF struct { + ptr unsafe.Pointer +} + +type QMarginsFITF interface { + QMarginsFPTR() *QMarginsF +} + +func (p *QMarginsF) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMarginsF) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMarginsF(ptr QMarginsFITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMarginsFPTR().Pointer() + } + return nil +} + +func QMarginsFFromPointer(ptr unsafe.Pointer) *QMarginsF { + var n = new(QMarginsF) + n.SetPointer(ptr) + return n +} + +func (ptr *QMarginsF) QMarginsFPTR() *QMarginsF { + return ptr +} + +func NewQMarginsF() *QMarginsF { + return QMarginsFFromPointer(unsafe.Pointer(C.QMarginsF_NewQMarginsF())) +} + +func NewQMarginsF3(margins QMarginsITF) *QMarginsF { + return QMarginsFFromPointer(unsafe.Pointer(C.QMarginsF_NewQMarginsF3(C.QtObjectPtr(PointerFromQMargins(margins))))) +} + +func (ptr *QMarginsF) IsNull() bool { + if ptr.Pointer() != nil { + return C.QMarginsF_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} diff --git a/core/qmarginsf.h b/core/qmarginsf.h new file mode 100755 index 00000000..4e349dbb --- /dev/null +++ b/core/qmarginsf.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QMarginsF_NewQMarginsF(); +QtObjectPtr QMarginsF_NewQMarginsF3(QtObjectPtr margins); +int QMarginsF_IsNull(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmessageauthenticationcode.cpp b/core/qmessageauthenticationcode.cpp new file mode 100755 index 00000000..4039f9ea --- /dev/null +++ b/core/qmessageauthenticationcode.cpp @@ -0,0 +1,43 @@ +#include "qmessageauthenticationcode.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMessageAuthenticationCode: public QMessageAuthenticationCode { +public: +}; + +QtObjectPtr QMessageAuthenticationCode_NewQMessageAuthenticationCode(int method, QtObjectPtr key){ + return new QMessageAuthenticationCode(static_cast(method), *static_cast(key)); +} + +int QMessageAuthenticationCode_AddData2(QtObjectPtr ptr, QtObjectPtr device){ + return static_cast(ptr)->addData(static_cast(device)); +} + +void QMessageAuthenticationCode_AddData3(QtObjectPtr ptr, QtObjectPtr data){ + static_cast(ptr)->addData(*static_cast(data)); +} + +void QMessageAuthenticationCode_AddData(QtObjectPtr ptr, char* data, int length){ + static_cast(ptr)->addData(const_cast(data), length); +} + +void QMessageAuthenticationCode_Reset(QtObjectPtr ptr){ + static_cast(ptr)->reset(); +} + +void QMessageAuthenticationCode_SetKey(QtObjectPtr ptr, QtObjectPtr key){ + static_cast(ptr)->setKey(*static_cast(key)); +} + +void QMessageAuthenticationCode_DestroyQMessageAuthenticationCode(QtObjectPtr ptr){ + static_cast(ptr)->~QMessageAuthenticationCode(); +} + diff --git a/core/qmessageauthenticationcode.go b/core/qmessageauthenticationcode.go new file mode 100755 index 00000000..cb4203cb --- /dev/null +++ b/core/qmessageauthenticationcode.go @@ -0,0 +1,81 @@ +package core + +//#include "qmessageauthenticationcode.h" +import "C" +import ( + "unsafe" +) + +type QMessageAuthenticationCode struct { + ptr unsafe.Pointer +} + +type QMessageAuthenticationCodeITF interface { + QMessageAuthenticationCodePTR() *QMessageAuthenticationCode +} + +func (p *QMessageAuthenticationCode) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMessageAuthenticationCode) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMessageAuthenticationCode(ptr QMessageAuthenticationCodeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMessageAuthenticationCodePTR().Pointer() + } + return nil +} + +func QMessageAuthenticationCodeFromPointer(ptr unsafe.Pointer) *QMessageAuthenticationCode { + var n = new(QMessageAuthenticationCode) + n.SetPointer(ptr) + return n +} + +func (ptr *QMessageAuthenticationCode) QMessageAuthenticationCodePTR() *QMessageAuthenticationCode { + return ptr +} + +func NewQMessageAuthenticationCode(method QCryptographicHash__Algorithm, key QByteArrayITF) *QMessageAuthenticationCode { + return QMessageAuthenticationCodeFromPointer(unsafe.Pointer(C.QMessageAuthenticationCode_NewQMessageAuthenticationCode(C.int(method), C.QtObjectPtr(PointerFromQByteArray(key))))) +} + +func (ptr *QMessageAuthenticationCode) AddData2(device QIODeviceITF) bool { + if ptr.Pointer() != nil { + return C.QMessageAuthenticationCode_AddData2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQIODevice(device))) != 0 + } + return false +} + +func (ptr *QMessageAuthenticationCode) AddData3(data QByteArrayITF) { + if ptr.Pointer() != nil { + C.QMessageAuthenticationCode_AddData3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQByteArray(data))) + } +} + +func (ptr *QMessageAuthenticationCode) AddData(data string, length int) { + if ptr.Pointer() != nil { + C.QMessageAuthenticationCode_AddData(C.QtObjectPtr(ptr.Pointer()), C.CString(data), C.int(length)) + } +} + +func (ptr *QMessageAuthenticationCode) Reset() { + if ptr.Pointer() != nil { + C.QMessageAuthenticationCode_Reset(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMessageAuthenticationCode) SetKey(key QByteArrayITF) { + if ptr.Pointer() != nil { + C.QMessageAuthenticationCode_SetKey(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQByteArray(key))) + } +} + +func (ptr *QMessageAuthenticationCode) DestroyQMessageAuthenticationCode() { + if ptr.Pointer() != nil { + C.QMessageAuthenticationCode_DestroyQMessageAuthenticationCode(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qmessageauthenticationcode.h b/core/qmessageauthenticationcode.h new file mode 100755 index 00000000..319dfa0f --- /dev/null +++ b/core/qmessageauthenticationcode.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QMessageAuthenticationCode_NewQMessageAuthenticationCode(int method, QtObjectPtr key); +int QMessageAuthenticationCode_AddData2(QtObjectPtr ptr, QtObjectPtr device); +void QMessageAuthenticationCode_AddData3(QtObjectPtr ptr, QtObjectPtr data); +void QMessageAuthenticationCode_AddData(QtObjectPtr ptr, char* data, int length); +void QMessageAuthenticationCode_Reset(QtObjectPtr ptr); +void QMessageAuthenticationCode_SetKey(QtObjectPtr ptr, QtObjectPtr key); +void QMessageAuthenticationCode_DestroyQMessageAuthenticationCode(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmessagelogcontext.cpp b/core/qmessagelogcontext.cpp new file mode 100755 index 00000000..55e7a201 --- /dev/null +++ b/core/qmessagelogcontext.cpp @@ -0,0 +1,12 @@ +#include "qmessagelogcontext.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMessageLogContext: public QMessageLogContext { +public: +}; + diff --git a/core/qmessagelogcontext.go b/core/qmessagelogcontext.go new file mode 100755 index 00000000..09a6c688 --- /dev/null +++ b/core/qmessagelogcontext.go @@ -0,0 +1,40 @@ +package core + +//#include "qmessagelogcontext.h" +import "C" +import ( + "unsafe" +) + +type QMessageLogContext struct { + ptr unsafe.Pointer +} + +type QMessageLogContextITF interface { + QMessageLogContextPTR() *QMessageLogContext +} + +func (p *QMessageLogContext) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMessageLogContext) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMessageLogContext(ptr QMessageLogContextITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMessageLogContextPTR().Pointer() + } + return nil +} + +func QMessageLogContextFromPointer(ptr unsafe.Pointer) *QMessageLogContext { + var n = new(QMessageLogContext) + n.SetPointer(ptr) + return n +} + +func (ptr *QMessageLogContext) QMessageLogContextPTR() *QMessageLogContext { + return ptr +} diff --git a/core/qmessagelogcontext.h b/core/qmessagelogcontext.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qmessagelogcontext.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmessagelogger.cpp b/core/qmessagelogger.cpp new file mode 100755 index 00000000..2b3ab3b7 --- /dev/null +++ b/core/qmessagelogger.cpp @@ -0,0 +1,24 @@ +#include "qmessagelogger.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMessageLogger: public QMessageLogger { +public: +}; + +QtObjectPtr QMessageLogger_NewQMessageLogger(){ + return new QMessageLogger(); +} + +QtObjectPtr QMessageLogger_NewQMessageLogger2(char* file, int line, char* function){ + return new QMessageLogger(const_cast(file), line, const_cast(function)); +} + +QtObjectPtr QMessageLogger_NewQMessageLogger3(char* file, int line, char* function, char* category){ + return new QMessageLogger(const_cast(file), line, const_cast(function), const_cast(category)); +} + diff --git a/core/qmessagelogger.go b/core/qmessagelogger.go new file mode 100755 index 00000000..f3ee995d --- /dev/null +++ b/core/qmessagelogger.go @@ -0,0 +1,52 @@ +package core + +//#include "qmessagelogger.h" +import "C" +import ( + "unsafe" +) + +type QMessageLogger struct { + ptr unsafe.Pointer +} + +type QMessageLoggerITF interface { + QMessageLoggerPTR() *QMessageLogger +} + +func (p *QMessageLogger) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMessageLogger) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMessageLogger(ptr QMessageLoggerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMessageLoggerPTR().Pointer() + } + return nil +} + +func QMessageLoggerFromPointer(ptr unsafe.Pointer) *QMessageLogger { + var n = new(QMessageLogger) + n.SetPointer(ptr) + return n +} + +func (ptr *QMessageLogger) QMessageLoggerPTR() *QMessageLogger { + return ptr +} + +func NewQMessageLogger() *QMessageLogger { + return QMessageLoggerFromPointer(unsafe.Pointer(C.QMessageLogger_NewQMessageLogger())) +} + +func NewQMessageLogger2(file string, line int, function string) *QMessageLogger { + return QMessageLoggerFromPointer(unsafe.Pointer(C.QMessageLogger_NewQMessageLogger2(C.CString(file), C.int(line), C.CString(function)))) +} + +func NewQMessageLogger3(file string, line int, function string, category string) *QMessageLogger { + return QMessageLoggerFromPointer(unsafe.Pointer(C.QMessageLogger_NewQMessageLogger3(C.CString(file), C.int(line), C.CString(function), C.CString(category)))) +} diff --git a/core/qmessagelogger.h b/core/qmessagelogger.h new file mode 100755 index 00000000..17e2f419 --- /dev/null +++ b/core/qmessagelogger.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QMessageLogger_NewQMessageLogger(); +QtObjectPtr QMessageLogger_NewQMessageLogger2(char* file, int line, char* function); +QtObjectPtr QMessageLogger_NewQMessageLogger3(char* file, int line, char* function, char* category); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmetaclassinfo.cpp b/core/qmetaclassinfo.cpp new file mode 100755 index 00000000..8851e6c9 --- /dev/null +++ b/core/qmetaclassinfo.cpp @@ -0,0 +1,12 @@ +#include "qmetaclassinfo.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMetaClassInfo: public QMetaClassInfo { +public: +}; + diff --git a/core/qmetaclassinfo.go b/core/qmetaclassinfo.go new file mode 100755 index 00000000..b8de066e --- /dev/null +++ b/core/qmetaclassinfo.go @@ -0,0 +1,40 @@ +package core + +//#include "qmetaclassinfo.h" +import "C" +import ( + "unsafe" +) + +type QMetaClassInfo struct { + ptr unsafe.Pointer +} + +type QMetaClassInfoITF interface { + QMetaClassInfoPTR() *QMetaClassInfo +} + +func (p *QMetaClassInfo) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMetaClassInfo) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMetaClassInfo(ptr QMetaClassInfoITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMetaClassInfoPTR().Pointer() + } + return nil +} + +func QMetaClassInfoFromPointer(ptr unsafe.Pointer) *QMetaClassInfo { + var n = new(QMetaClassInfo) + n.SetPointer(ptr) + return n +} + +func (ptr *QMetaClassInfo) QMetaClassInfoPTR() *QMetaClassInfo { + return ptr +} diff --git a/core/qmetaclassinfo.h b/core/qmetaclassinfo.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qmetaclassinfo.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmetaenum.cpp b/core/qmetaenum.cpp new file mode 100755 index 00000000..03021a72 --- /dev/null +++ b/core/qmetaenum.cpp @@ -0,0 +1,36 @@ +#include "qmetaenum.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMetaEnum: public QMetaEnum { +public: +}; + +int QMetaEnum_IsFlag(QtObjectPtr ptr){ + return static_cast(ptr)->isFlag(); +} + +int QMetaEnum_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QMetaEnum_KeyCount(QtObjectPtr ptr){ + return static_cast(ptr)->keyCount(); +} + +int QMetaEnum_KeyToValue(QtObjectPtr ptr, char* key, int ok){ + return static_cast(ptr)->keyToValue(const_cast(key), NULL); +} + +int QMetaEnum_KeysToValue(QtObjectPtr ptr, char* keys, int ok){ + return static_cast(ptr)->keysToValue(const_cast(keys), NULL); +} + +int QMetaEnum_Value(QtObjectPtr ptr, int index){ + return static_cast(ptr)->value(index); +} + diff --git a/core/qmetaenum.go b/core/qmetaenum.go new file mode 100755 index 00000000..c90edf68 --- /dev/null +++ b/core/qmetaenum.go @@ -0,0 +1,83 @@ +package core + +//#include "qmetaenum.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QMetaEnum struct { + ptr unsafe.Pointer +} + +type QMetaEnumITF interface { + QMetaEnumPTR() *QMetaEnum +} + +func (p *QMetaEnum) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMetaEnum) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMetaEnum(ptr QMetaEnumITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMetaEnumPTR().Pointer() + } + return nil +} + +func QMetaEnumFromPointer(ptr unsafe.Pointer) *QMetaEnum { + var n = new(QMetaEnum) + n.SetPointer(ptr) + return n +} + +func (ptr *QMetaEnum) QMetaEnumPTR() *QMetaEnum { + return ptr +} + +func (ptr *QMetaEnum) IsFlag() bool { + if ptr.Pointer() != nil { + return C.QMetaEnum_IsFlag(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMetaEnum) IsValid() bool { + if ptr.Pointer() != nil { + return C.QMetaEnum_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMetaEnum) KeyCount() int { + if ptr.Pointer() != nil { + return int(C.QMetaEnum_KeyCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMetaEnum) KeyToValue(key string, ok bool) int { + if ptr.Pointer() != nil { + return int(C.QMetaEnum_KeyToValue(C.QtObjectPtr(ptr.Pointer()), C.CString(key), C.int(qt.GoBoolToInt(ok)))) + } + return 0 +} + +func (ptr *QMetaEnum) KeysToValue(keys string, ok bool) int { + if ptr.Pointer() != nil { + return int(C.QMetaEnum_KeysToValue(C.QtObjectPtr(ptr.Pointer()), C.CString(keys), C.int(qt.GoBoolToInt(ok)))) + } + return 0 +} + +func (ptr *QMetaEnum) Value(index int) int { + if ptr.Pointer() != nil { + return int(C.QMetaEnum_Value(C.QtObjectPtr(ptr.Pointer()), C.int(index))) + } + return 0 +} diff --git a/core/qmetaenum.h b/core/qmetaenum.h new file mode 100755 index 00000000..ffeb6cef --- /dev/null +++ b/core/qmetaenum.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QMetaEnum_IsFlag(QtObjectPtr ptr); +int QMetaEnum_IsValid(QtObjectPtr ptr); +int QMetaEnum_KeyCount(QtObjectPtr ptr); +int QMetaEnum_KeyToValue(QtObjectPtr ptr, char* key, int ok); +int QMetaEnum_KeysToValue(QtObjectPtr ptr, char* keys, int ok); +int QMetaEnum_Value(QtObjectPtr ptr, int index); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmetamethod.cpp b/core/qmetamethod.cpp new file mode 100755 index 00000000..5cc2cc64 --- /dev/null +++ b/core/qmetamethod.cpp @@ -0,0 +1,63 @@ +#include "qmetamethod.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMetaMethod: public QMetaMethod { +public: +}; + +int QMetaMethod_Access(QtObjectPtr ptr){ + return static_cast(ptr)->access(); +} + +int QMetaMethod_Invoke4(QtObjectPtr ptr, QtObjectPtr object, QtObjectPtr val0, QtObjectPtr val1, QtObjectPtr val2, QtObjectPtr val3, QtObjectPtr val4, QtObjectPtr val5, QtObjectPtr val6, QtObjectPtr val7, QtObjectPtr val8, QtObjectPtr val9){ + return static_cast(ptr)->invoke(static_cast(object), *static_cast(val0), *static_cast(val1), *static_cast(val2), *static_cast(val3), *static_cast(val4), *static_cast(val5), *static_cast(val6), *static_cast(val7), *static_cast(val8), *static_cast(val9)); +} + +int QMetaMethod_Invoke2(QtObjectPtr ptr, QtObjectPtr object, QtObjectPtr returnValue, QtObjectPtr val0, QtObjectPtr val1, QtObjectPtr val2, QtObjectPtr val3, QtObjectPtr val4, QtObjectPtr val5, QtObjectPtr val6, QtObjectPtr val7, QtObjectPtr val8, QtObjectPtr val9){ + return static_cast(ptr)->invoke(static_cast(object), *static_cast(returnValue), *static_cast(val0), *static_cast(val1), *static_cast(val2), *static_cast(val3), *static_cast(val4), *static_cast(val5), *static_cast(val6), *static_cast(val7), *static_cast(val8), *static_cast(val9)); +} + +int QMetaMethod_Invoke3(QtObjectPtr ptr, QtObjectPtr object, int connectionType, QtObjectPtr val0, QtObjectPtr val1, QtObjectPtr val2, QtObjectPtr val3, QtObjectPtr val4, QtObjectPtr val5, QtObjectPtr val6, QtObjectPtr val7, QtObjectPtr val8, QtObjectPtr val9){ + return static_cast(ptr)->invoke(static_cast(object), static_cast(connectionType), *static_cast(val0), *static_cast(val1), *static_cast(val2), *static_cast(val3), *static_cast(val4), *static_cast(val5), *static_cast(val6), *static_cast(val7), *static_cast(val8), *static_cast(val9)); +} + +int QMetaMethod_Invoke(QtObjectPtr ptr, QtObjectPtr object, int connectionType, QtObjectPtr returnValue, QtObjectPtr val0, QtObjectPtr val1, QtObjectPtr val2, QtObjectPtr val3, QtObjectPtr val4, QtObjectPtr val5, QtObjectPtr val6, QtObjectPtr val7, QtObjectPtr val8, QtObjectPtr val9){ + return static_cast(ptr)->invoke(static_cast(object), static_cast(connectionType), *static_cast(returnValue), *static_cast(val0), *static_cast(val1), *static_cast(val2), *static_cast(val3), *static_cast(val4), *static_cast(val5), *static_cast(val6), *static_cast(val7), *static_cast(val8), *static_cast(val9)); +} + +int QMetaMethod_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QMetaMethod_MethodIndex(QtObjectPtr ptr){ + return static_cast(ptr)->methodIndex(); +} + +int QMetaMethod_MethodType(QtObjectPtr ptr){ + return static_cast(ptr)->methodType(); +} + +int QMetaMethod_ParameterCount(QtObjectPtr ptr){ + return static_cast(ptr)->parameterCount(); +} + +int QMetaMethod_ParameterType(QtObjectPtr ptr, int index){ + return static_cast(ptr)->parameterType(index); +} + +int QMetaMethod_ReturnType(QtObjectPtr ptr){ + return static_cast(ptr)->returnType(); +} + +int QMetaMethod_Revision(QtObjectPtr ptr){ + return static_cast(ptr)->revision(); +} + diff --git a/core/qmetamethod.go b/core/qmetamethod.go new file mode 100755 index 00000000..19e82b03 --- /dev/null +++ b/core/qmetamethod.go @@ -0,0 +1,143 @@ +package core + +//#include "qmetamethod.h" +import "C" +import ( + "unsafe" +) + +type QMetaMethod struct { + ptr unsafe.Pointer +} + +type QMetaMethodITF interface { + QMetaMethodPTR() *QMetaMethod +} + +func (p *QMetaMethod) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMetaMethod) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMetaMethod(ptr QMetaMethodITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMetaMethodPTR().Pointer() + } + return nil +} + +func QMetaMethodFromPointer(ptr unsafe.Pointer) *QMetaMethod { + var n = new(QMetaMethod) + n.SetPointer(ptr) + return n +} + +func (ptr *QMetaMethod) QMetaMethodPTR() *QMetaMethod { + return ptr +} + +//QMetaMethod::Access +type QMetaMethod__Access int + +var ( + QMetaMethod__Private = QMetaMethod__Access(0) + QMetaMethod__Protected = QMetaMethod__Access(1) + QMetaMethod__Public = QMetaMethod__Access(2) +) + +//QMetaMethod::MethodType +type QMetaMethod__MethodType int + +var ( + QMetaMethod__Method = QMetaMethod__MethodType(0) + QMetaMethod__Signal = QMetaMethod__MethodType(1) + QMetaMethod__Slot = QMetaMethod__MethodType(2) + QMetaMethod__Constructor = QMetaMethod__MethodType(3) +) + +func (ptr *QMetaMethod) Access() QMetaMethod__Access { + if ptr.Pointer() != nil { + return QMetaMethod__Access(C.QMetaMethod_Access(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMetaMethod) Invoke4(object QObjectITF, val0 QGenericArgumentITF, val1 QGenericArgumentITF, val2 QGenericArgumentITF, val3 QGenericArgumentITF, val4 QGenericArgumentITF, val5 QGenericArgumentITF, val6 QGenericArgumentITF, val7 QGenericArgumentITF, val8 QGenericArgumentITF, val9 QGenericArgumentITF) bool { + if ptr.Pointer() != nil { + return C.QMetaMethod_Invoke4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(object)), C.QtObjectPtr(PointerFromQGenericArgument(val0)), C.QtObjectPtr(PointerFromQGenericArgument(val1)), C.QtObjectPtr(PointerFromQGenericArgument(val2)), C.QtObjectPtr(PointerFromQGenericArgument(val3)), C.QtObjectPtr(PointerFromQGenericArgument(val4)), C.QtObjectPtr(PointerFromQGenericArgument(val5)), C.QtObjectPtr(PointerFromQGenericArgument(val6)), C.QtObjectPtr(PointerFromQGenericArgument(val7)), C.QtObjectPtr(PointerFromQGenericArgument(val8)), C.QtObjectPtr(PointerFromQGenericArgument(val9))) != 0 + } + return false +} + +func (ptr *QMetaMethod) Invoke2(object QObjectITF, returnValue QGenericReturnArgumentITF, val0 QGenericArgumentITF, val1 QGenericArgumentITF, val2 QGenericArgumentITF, val3 QGenericArgumentITF, val4 QGenericArgumentITF, val5 QGenericArgumentITF, val6 QGenericArgumentITF, val7 QGenericArgumentITF, val8 QGenericArgumentITF, val9 QGenericArgumentITF) bool { + if ptr.Pointer() != nil { + return C.QMetaMethod_Invoke2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(object)), C.QtObjectPtr(PointerFromQGenericReturnArgument(returnValue)), C.QtObjectPtr(PointerFromQGenericArgument(val0)), C.QtObjectPtr(PointerFromQGenericArgument(val1)), C.QtObjectPtr(PointerFromQGenericArgument(val2)), C.QtObjectPtr(PointerFromQGenericArgument(val3)), C.QtObjectPtr(PointerFromQGenericArgument(val4)), C.QtObjectPtr(PointerFromQGenericArgument(val5)), C.QtObjectPtr(PointerFromQGenericArgument(val6)), C.QtObjectPtr(PointerFromQGenericArgument(val7)), C.QtObjectPtr(PointerFromQGenericArgument(val8)), C.QtObjectPtr(PointerFromQGenericArgument(val9))) != 0 + } + return false +} + +func (ptr *QMetaMethod) Invoke3(object QObjectITF, connectionType Qt__ConnectionType, val0 QGenericArgumentITF, val1 QGenericArgumentITF, val2 QGenericArgumentITF, val3 QGenericArgumentITF, val4 QGenericArgumentITF, val5 QGenericArgumentITF, val6 QGenericArgumentITF, val7 QGenericArgumentITF, val8 QGenericArgumentITF, val9 QGenericArgumentITF) bool { + if ptr.Pointer() != nil { + return C.QMetaMethod_Invoke3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(object)), C.int(connectionType), C.QtObjectPtr(PointerFromQGenericArgument(val0)), C.QtObjectPtr(PointerFromQGenericArgument(val1)), C.QtObjectPtr(PointerFromQGenericArgument(val2)), C.QtObjectPtr(PointerFromQGenericArgument(val3)), C.QtObjectPtr(PointerFromQGenericArgument(val4)), C.QtObjectPtr(PointerFromQGenericArgument(val5)), C.QtObjectPtr(PointerFromQGenericArgument(val6)), C.QtObjectPtr(PointerFromQGenericArgument(val7)), C.QtObjectPtr(PointerFromQGenericArgument(val8)), C.QtObjectPtr(PointerFromQGenericArgument(val9))) != 0 + } + return false +} + +func (ptr *QMetaMethod) Invoke(object QObjectITF, connectionType Qt__ConnectionType, returnValue QGenericReturnArgumentITF, val0 QGenericArgumentITF, val1 QGenericArgumentITF, val2 QGenericArgumentITF, val3 QGenericArgumentITF, val4 QGenericArgumentITF, val5 QGenericArgumentITF, val6 QGenericArgumentITF, val7 QGenericArgumentITF, val8 QGenericArgumentITF, val9 QGenericArgumentITF) bool { + if ptr.Pointer() != nil { + return C.QMetaMethod_Invoke(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(object)), C.int(connectionType), C.QtObjectPtr(PointerFromQGenericReturnArgument(returnValue)), C.QtObjectPtr(PointerFromQGenericArgument(val0)), C.QtObjectPtr(PointerFromQGenericArgument(val1)), C.QtObjectPtr(PointerFromQGenericArgument(val2)), C.QtObjectPtr(PointerFromQGenericArgument(val3)), C.QtObjectPtr(PointerFromQGenericArgument(val4)), C.QtObjectPtr(PointerFromQGenericArgument(val5)), C.QtObjectPtr(PointerFromQGenericArgument(val6)), C.QtObjectPtr(PointerFromQGenericArgument(val7)), C.QtObjectPtr(PointerFromQGenericArgument(val8)), C.QtObjectPtr(PointerFromQGenericArgument(val9))) != 0 + } + return false +} + +func (ptr *QMetaMethod) IsValid() bool { + if ptr.Pointer() != nil { + return C.QMetaMethod_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMetaMethod) MethodIndex() int { + if ptr.Pointer() != nil { + return int(C.QMetaMethod_MethodIndex(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMetaMethod) MethodType() QMetaMethod__MethodType { + if ptr.Pointer() != nil { + return QMetaMethod__MethodType(C.QMetaMethod_MethodType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMetaMethod) ParameterCount() int { + if ptr.Pointer() != nil { + return int(C.QMetaMethod_ParameterCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMetaMethod) ParameterType(index int) int { + if ptr.Pointer() != nil { + return int(C.QMetaMethod_ParameterType(C.QtObjectPtr(ptr.Pointer()), C.int(index))) + } + return 0 +} + +func (ptr *QMetaMethod) ReturnType() int { + if ptr.Pointer() != nil { + return int(C.QMetaMethod_ReturnType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMetaMethod) Revision() int { + if ptr.Pointer() != nil { + return int(C.QMetaMethod_Revision(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/core/qmetamethod.h b/core/qmetamethod.h new file mode 100755 index 00000000..1329e6fc --- /dev/null +++ b/core/qmetamethod.h @@ -0,0 +1,21 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QMetaMethod_Access(QtObjectPtr ptr); +int QMetaMethod_Invoke4(QtObjectPtr ptr, QtObjectPtr object, QtObjectPtr val0, QtObjectPtr val1, QtObjectPtr val2, QtObjectPtr val3, QtObjectPtr val4, QtObjectPtr val5, QtObjectPtr val6, QtObjectPtr val7, QtObjectPtr val8, QtObjectPtr val9); +int QMetaMethod_Invoke2(QtObjectPtr ptr, QtObjectPtr object, QtObjectPtr returnValue, QtObjectPtr val0, QtObjectPtr val1, QtObjectPtr val2, QtObjectPtr val3, QtObjectPtr val4, QtObjectPtr val5, QtObjectPtr val6, QtObjectPtr val7, QtObjectPtr val8, QtObjectPtr val9); +int QMetaMethod_Invoke3(QtObjectPtr ptr, QtObjectPtr object, int connectionType, QtObjectPtr val0, QtObjectPtr val1, QtObjectPtr val2, QtObjectPtr val3, QtObjectPtr val4, QtObjectPtr val5, QtObjectPtr val6, QtObjectPtr val7, QtObjectPtr val8, QtObjectPtr val9); +int QMetaMethod_Invoke(QtObjectPtr ptr, QtObjectPtr object, int connectionType, QtObjectPtr returnValue, QtObjectPtr val0, QtObjectPtr val1, QtObjectPtr val2, QtObjectPtr val3, QtObjectPtr val4, QtObjectPtr val5, QtObjectPtr val6, QtObjectPtr val7, QtObjectPtr val8, QtObjectPtr val9); +int QMetaMethod_IsValid(QtObjectPtr ptr); +int QMetaMethod_MethodIndex(QtObjectPtr ptr); +int QMetaMethod_MethodType(QtObjectPtr ptr); +int QMetaMethod_ParameterCount(QtObjectPtr ptr); +int QMetaMethod_ParameterType(QtObjectPtr ptr, int index); +int QMetaMethod_ReturnType(QtObjectPtr ptr); +int QMetaMethod_Revision(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmetaobject.cpp b/core/qmetaobject.cpp new file mode 100755 index 00000000..25bb217b --- /dev/null +++ b/core/qmetaobject.cpp @@ -0,0 +1,116 @@ +#include "qmetaobject.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMetaObject: public QMetaObject { +public: +}; + +void QMetaObject_QMetaObject_ConnectSlotsByName(QtObjectPtr object){ + QMetaObject::connectSlotsByName(static_cast(object)); +} + +int QMetaObject_QMetaObject_CheckConnectArgs2(QtObjectPtr signal, QtObjectPtr method){ + return QMetaObject::checkConnectArgs(*static_cast(signal), *static_cast(method)); +} + +int QMetaObject_QMetaObject_CheckConnectArgs(char* signal, char* method){ + return QMetaObject::checkConnectArgs(const_cast(signal), const_cast(method)); +} + +int QMetaObject_ClassInfoCount(QtObjectPtr ptr){ + return static_cast(ptr)->classInfoCount(); +} + +int QMetaObject_ClassInfoOffset(QtObjectPtr ptr){ + return static_cast(ptr)->classInfoOffset(); +} + +int QMetaObject_ConstructorCount(QtObjectPtr ptr){ + return static_cast(ptr)->constructorCount(); +} + +int QMetaObject_EnumeratorCount(QtObjectPtr ptr){ + return static_cast(ptr)->enumeratorCount(); +} + +int QMetaObject_EnumeratorOffset(QtObjectPtr ptr){ + return static_cast(ptr)->enumeratorOffset(); +} + +int QMetaObject_IndexOfClassInfo(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->indexOfClassInfo(const_cast(name)); +} + +int QMetaObject_IndexOfConstructor(QtObjectPtr ptr, char* constructor){ + return static_cast(ptr)->indexOfConstructor(const_cast(constructor)); +} + +int QMetaObject_IndexOfEnumerator(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->indexOfEnumerator(const_cast(name)); +} + +int QMetaObject_IndexOfMethod(QtObjectPtr ptr, char* method){ + return static_cast(ptr)->indexOfMethod(const_cast(method)); +} + +int QMetaObject_IndexOfProperty(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->indexOfProperty(const_cast(name)); +} + +int QMetaObject_IndexOfSignal(QtObjectPtr ptr, char* signal){ + return static_cast(ptr)->indexOfSignal(const_cast(signal)); +} + +int QMetaObject_IndexOfSlot(QtObjectPtr ptr, char* slot){ + return static_cast(ptr)->indexOfSlot(const_cast(slot)); +} + +int QMetaObject_QMetaObject_InvokeMethod4(QtObjectPtr obj, char* member, QtObjectPtr val0, QtObjectPtr val1, QtObjectPtr val2, QtObjectPtr val3, QtObjectPtr val4, QtObjectPtr val5, QtObjectPtr val6, QtObjectPtr val7, QtObjectPtr val8, QtObjectPtr val9){ + return QMetaObject::invokeMethod(static_cast(obj), const_cast(member), *static_cast(val0), *static_cast(val1), *static_cast(val2), *static_cast(val3), *static_cast(val4), *static_cast(val5), *static_cast(val6), *static_cast(val7), *static_cast(val8), *static_cast(val9)); +} + +int QMetaObject_QMetaObject_InvokeMethod2(QtObjectPtr obj, char* member, QtObjectPtr ret, QtObjectPtr val0, QtObjectPtr val1, QtObjectPtr val2, QtObjectPtr val3, QtObjectPtr val4, QtObjectPtr val5, QtObjectPtr val6, QtObjectPtr val7, QtObjectPtr val8, QtObjectPtr val9){ + return QMetaObject::invokeMethod(static_cast(obj), const_cast(member), *static_cast(ret), *static_cast(val0), *static_cast(val1), *static_cast(val2), *static_cast(val3), *static_cast(val4), *static_cast(val5), *static_cast(val6), *static_cast(val7), *static_cast(val8), *static_cast(val9)); +} + +int QMetaObject_QMetaObject_InvokeMethod3(QtObjectPtr obj, char* member, int ty, QtObjectPtr val0, QtObjectPtr val1, QtObjectPtr val2, QtObjectPtr val3, QtObjectPtr val4, QtObjectPtr val5, QtObjectPtr val6, QtObjectPtr val7, QtObjectPtr val8, QtObjectPtr val9){ + return QMetaObject::invokeMethod(static_cast(obj), const_cast(member), static_cast(ty), *static_cast(val0), *static_cast(val1), *static_cast(val2), *static_cast(val3), *static_cast(val4), *static_cast(val5), *static_cast(val6), *static_cast(val7), *static_cast(val8), *static_cast(val9)); +} + +int QMetaObject_QMetaObject_InvokeMethod(QtObjectPtr obj, char* member, int ty, QtObjectPtr ret, QtObjectPtr val0, QtObjectPtr val1, QtObjectPtr val2, QtObjectPtr val3, QtObjectPtr val4, QtObjectPtr val5, QtObjectPtr val6, QtObjectPtr val7, QtObjectPtr val8, QtObjectPtr val9){ + return QMetaObject::invokeMethod(static_cast(obj), const_cast(member), static_cast(ty), *static_cast(ret), *static_cast(val0), *static_cast(val1), *static_cast(val2), *static_cast(val3), *static_cast(val4), *static_cast(val5), *static_cast(val6), *static_cast(val7), *static_cast(val8), *static_cast(val9)); +} + +int QMetaObject_MethodCount(QtObjectPtr ptr){ + return static_cast(ptr)->methodCount(); +} + +int QMetaObject_MethodOffset(QtObjectPtr ptr){ + return static_cast(ptr)->methodOffset(); +} + +QtObjectPtr QMetaObject_NewInstance(QtObjectPtr ptr, QtObjectPtr val0, QtObjectPtr val1, QtObjectPtr val2, QtObjectPtr val3, QtObjectPtr val4, QtObjectPtr val5, QtObjectPtr val6, QtObjectPtr val7, QtObjectPtr val8, QtObjectPtr val9){ + return static_cast(ptr)->newInstance(*static_cast(val0), *static_cast(val1), *static_cast(val2), *static_cast(val3), *static_cast(val4), *static_cast(val5), *static_cast(val6), *static_cast(val7), *static_cast(val8), *static_cast(val9)); +} + +int QMetaObject_PropertyCount(QtObjectPtr ptr){ + return static_cast(ptr)->propertyCount(); +} + +int QMetaObject_PropertyOffset(QtObjectPtr ptr){ + return static_cast(ptr)->propertyOffset(); +} + +QtObjectPtr QMetaObject_SuperClass(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->superClass()); +} + diff --git a/core/qmetaobject.go b/core/qmetaobject.go new file mode 100755 index 00000000..df8295b3 --- /dev/null +++ b/core/qmetaobject.go @@ -0,0 +1,194 @@ +package core + +//#include "qmetaobject.h" +import "C" +import ( + "unsafe" +) + +type QMetaObject struct { + ptr unsafe.Pointer +} + +type QMetaObjectITF interface { + QMetaObjectPTR() *QMetaObject +} + +func (p *QMetaObject) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMetaObject) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMetaObject(ptr QMetaObjectITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMetaObjectPTR().Pointer() + } + return nil +} + +func QMetaObjectFromPointer(ptr unsafe.Pointer) *QMetaObject { + var n = new(QMetaObject) + n.SetPointer(ptr) + return n +} + +func (ptr *QMetaObject) QMetaObjectPTR() *QMetaObject { + return ptr +} + +func QMetaObject_ConnectSlotsByName(object QObjectITF) { + C.QMetaObject_QMetaObject_ConnectSlotsByName(C.QtObjectPtr(PointerFromQObject(object))) +} + +func QMetaObject_CheckConnectArgs2(signal QMetaMethodITF, method QMetaMethodITF) bool { + return C.QMetaObject_QMetaObject_CheckConnectArgs2(C.QtObjectPtr(PointerFromQMetaMethod(signal)), C.QtObjectPtr(PointerFromQMetaMethod(method))) != 0 +} + +func QMetaObject_CheckConnectArgs(signal string, method string) bool { + return C.QMetaObject_QMetaObject_CheckConnectArgs(C.CString(signal), C.CString(method)) != 0 +} + +func (ptr *QMetaObject) ClassInfoCount() int { + if ptr.Pointer() != nil { + return int(C.QMetaObject_ClassInfoCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMetaObject) ClassInfoOffset() int { + if ptr.Pointer() != nil { + return int(C.QMetaObject_ClassInfoOffset(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMetaObject) ConstructorCount() int { + if ptr.Pointer() != nil { + return int(C.QMetaObject_ConstructorCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMetaObject) EnumeratorCount() int { + if ptr.Pointer() != nil { + return int(C.QMetaObject_EnumeratorCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMetaObject) EnumeratorOffset() int { + if ptr.Pointer() != nil { + return int(C.QMetaObject_EnumeratorOffset(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMetaObject) IndexOfClassInfo(name string) int { + if ptr.Pointer() != nil { + return int(C.QMetaObject_IndexOfClassInfo(C.QtObjectPtr(ptr.Pointer()), C.CString(name))) + } + return 0 +} + +func (ptr *QMetaObject) IndexOfConstructor(constructor string) int { + if ptr.Pointer() != nil { + return int(C.QMetaObject_IndexOfConstructor(C.QtObjectPtr(ptr.Pointer()), C.CString(constructor))) + } + return 0 +} + +func (ptr *QMetaObject) IndexOfEnumerator(name string) int { + if ptr.Pointer() != nil { + return int(C.QMetaObject_IndexOfEnumerator(C.QtObjectPtr(ptr.Pointer()), C.CString(name))) + } + return 0 +} + +func (ptr *QMetaObject) IndexOfMethod(method string) int { + if ptr.Pointer() != nil { + return int(C.QMetaObject_IndexOfMethod(C.QtObjectPtr(ptr.Pointer()), C.CString(method))) + } + return 0 +} + +func (ptr *QMetaObject) IndexOfProperty(name string) int { + if ptr.Pointer() != nil { + return int(C.QMetaObject_IndexOfProperty(C.QtObjectPtr(ptr.Pointer()), C.CString(name))) + } + return 0 +} + +func (ptr *QMetaObject) IndexOfSignal(signal string) int { + if ptr.Pointer() != nil { + return int(C.QMetaObject_IndexOfSignal(C.QtObjectPtr(ptr.Pointer()), C.CString(signal))) + } + return 0 +} + +func (ptr *QMetaObject) IndexOfSlot(slot string) int { + if ptr.Pointer() != nil { + return int(C.QMetaObject_IndexOfSlot(C.QtObjectPtr(ptr.Pointer()), C.CString(slot))) + } + return 0 +} + +func QMetaObject_InvokeMethod4(obj QObjectITF, member string, val0 QGenericArgumentITF, val1 QGenericArgumentITF, val2 QGenericArgumentITF, val3 QGenericArgumentITF, val4 QGenericArgumentITF, val5 QGenericArgumentITF, val6 QGenericArgumentITF, val7 QGenericArgumentITF, val8 QGenericArgumentITF, val9 QGenericArgumentITF) bool { + return C.QMetaObject_QMetaObject_InvokeMethod4(C.QtObjectPtr(PointerFromQObject(obj)), C.CString(member), C.QtObjectPtr(PointerFromQGenericArgument(val0)), C.QtObjectPtr(PointerFromQGenericArgument(val1)), C.QtObjectPtr(PointerFromQGenericArgument(val2)), C.QtObjectPtr(PointerFromQGenericArgument(val3)), C.QtObjectPtr(PointerFromQGenericArgument(val4)), C.QtObjectPtr(PointerFromQGenericArgument(val5)), C.QtObjectPtr(PointerFromQGenericArgument(val6)), C.QtObjectPtr(PointerFromQGenericArgument(val7)), C.QtObjectPtr(PointerFromQGenericArgument(val8)), C.QtObjectPtr(PointerFromQGenericArgument(val9))) != 0 +} + +func QMetaObject_InvokeMethod2(obj QObjectITF, member string, ret QGenericReturnArgumentITF, val0 QGenericArgumentITF, val1 QGenericArgumentITF, val2 QGenericArgumentITF, val3 QGenericArgumentITF, val4 QGenericArgumentITF, val5 QGenericArgumentITF, val6 QGenericArgumentITF, val7 QGenericArgumentITF, val8 QGenericArgumentITF, val9 QGenericArgumentITF) bool { + return C.QMetaObject_QMetaObject_InvokeMethod2(C.QtObjectPtr(PointerFromQObject(obj)), C.CString(member), C.QtObjectPtr(PointerFromQGenericReturnArgument(ret)), C.QtObjectPtr(PointerFromQGenericArgument(val0)), C.QtObjectPtr(PointerFromQGenericArgument(val1)), C.QtObjectPtr(PointerFromQGenericArgument(val2)), C.QtObjectPtr(PointerFromQGenericArgument(val3)), C.QtObjectPtr(PointerFromQGenericArgument(val4)), C.QtObjectPtr(PointerFromQGenericArgument(val5)), C.QtObjectPtr(PointerFromQGenericArgument(val6)), C.QtObjectPtr(PointerFromQGenericArgument(val7)), C.QtObjectPtr(PointerFromQGenericArgument(val8)), C.QtObjectPtr(PointerFromQGenericArgument(val9))) != 0 +} + +func QMetaObject_InvokeMethod3(obj QObjectITF, member string, ty Qt__ConnectionType, val0 QGenericArgumentITF, val1 QGenericArgumentITF, val2 QGenericArgumentITF, val3 QGenericArgumentITF, val4 QGenericArgumentITF, val5 QGenericArgumentITF, val6 QGenericArgumentITF, val7 QGenericArgumentITF, val8 QGenericArgumentITF, val9 QGenericArgumentITF) bool { + return C.QMetaObject_QMetaObject_InvokeMethod3(C.QtObjectPtr(PointerFromQObject(obj)), C.CString(member), C.int(ty), C.QtObjectPtr(PointerFromQGenericArgument(val0)), C.QtObjectPtr(PointerFromQGenericArgument(val1)), C.QtObjectPtr(PointerFromQGenericArgument(val2)), C.QtObjectPtr(PointerFromQGenericArgument(val3)), C.QtObjectPtr(PointerFromQGenericArgument(val4)), C.QtObjectPtr(PointerFromQGenericArgument(val5)), C.QtObjectPtr(PointerFromQGenericArgument(val6)), C.QtObjectPtr(PointerFromQGenericArgument(val7)), C.QtObjectPtr(PointerFromQGenericArgument(val8)), C.QtObjectPtr(PointerFromQGenericArgument(val9))) != 0 +} + +func QMetaObject_InvokeMethod(obj QObjectITF, member string, ty Qt__ConnectionType, ret QGenericReturnArgumentITF, val0 QGenericArgumentITF, val1 QGenericArgumentITF, val2 QGenericArgumentITF, val3 QGenericArgumentITF, val4 QGenericArgumentITF, val5 QGenericArgumentITF, val6 QGenericArgumentITF, val7 QGenericArgumentITF, val8 QGenericArgumentITF, val9 QGenericArgumentITF) bool { + return C.QMetaObject_QMetaObject_InvokeMethod(C.QtObjectPtr(PointerFromQObject(obj)), C.CString(member), C.int(ty), C.QtObjectPtr(PointerFromQGenericReturnArgument(ret)), C.QtObjectPtr(PointerFromQGenericArgument(val0)), C.QtObjectPtr(PointerFromQGenericArgument(val1)), C.QtObjectPtr(PointerFromQGenericArgument(val2)), C.QtObjectPtr(PointerFromQGenericArgument(val3)), C.QtObjectPtr(PointerFromQGenericArgument(val4)), C.QtObjectPtr(PointerFromQGenericArgument(val5)), C.QtObjectPtr(PointerFromQGenericArgument(val6)), C.QtObjectPtr(PointerFromQGenericArgument(val7)), C.QtObjectPtr(PointerFromQGenericArgument(val8)), C.QtObjectPtr(PointerFromQGenericArgument(val9))) != 0 +} + +func (ptr *QMetaObject) MethodCount() int { + if ptr.Pointer() != nil { + return int(C.QMetaObject_MethodCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMetaObject) MethodOffset() int { + if ptr.Pointer() != nil { + return int(C.QMetaObject_MethodOffset(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMetaObject) NewInstance(val0 QGenericArgumentITF, val1 QGenericArgumentITF, val2 QGenericArgumentITF, val3 QGenericArgumentITF, val4 QGenericArgumentITF, val5 QGenericArgumentITF, val6 QGenericArgumentITF, val7 QGenericArgumentITF, val8 QGenericArgumentITF, val9 QGenericArgumentITF) *QObject { + if ptr.Pointer() != nil { + return QObjectFromPointer(unsafe.Pointer(C.QMetaObject_NewInstance(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGenericArgument(val0)), C.QtObjectPtr(PointerFromQGenericArgument(val1)), C.QtObjectPtr(PointerFromQGenericArgument(val2)), C.QtObjectPtr(PointerFromQGenericArgument(val3)), C.QtObjectPtr(PointerFromQGenericArgument(val4)), C.QtObjectPtr(PointerFromQGenericArgument(val5)), C.QtObjectPtr(PointerFromQGenericArgument(val6)), C.QtObjectPtr(PointerFromQGenericArgument(val7)), C.QtObjectPtr(PointerFromQGenericArgument(val8)), C.QtObjectPtr(PointerFromQGenericArgument(val9))))) + } + return nil +} + +func (ptr *QMetaObject) PropertyCount() int { + if ptr.Pointer() != nil { + return int(C.QMetaObject_PropertyCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMetaObject) PropertyOffset() int { + if ptr.Pointer() != nil { + return int(C.QMetaObject_PropertyOffset(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMetaObject) SuperClass() *QMetaObject { + if ptr.Pointer() != nil { + return QMetaObjectFromPointer(unsafe.Pointer(C.QMetaObject_SuperClass(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} diff --git a/core/qmetaobject.h b/core/qmetaobject.h new file mode 100755 index 00000000..41e583a4 --- /dev/null +++ b/core/qmetaobject.h @@ -0,0 +1,34 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QMetaObject_QMetaObject_ConnectSlotsByName(QtObjectPtr object); +int QMetaObject_QMetaObject_CheckConnectArgs2(QtObjectPtr signal, QtObjectPtr method); +int QMetaObject_QMetaObject_CheckConnectArgs(char* signal, char* method); +int QMetaObject_ClassInfoCount(QtObjectPtr ptr); +int QMetaObject_ClassInfoOffset(QtObjectPtr ptr); +int QMetaObject_ConstructorCount(QtObjectPtr ptr); +int QMetaObject_EnumeratorCount(QtObjectPtr ptr); +int QMetaObject_EnumeratorOffset(QtObjectPtr ptr); +int QMetaObject_IndexOfClassInfo(QtObjectPtr ptr, char* name); +int QMetaObject_IndexOfConstructor(QtObjectPtr ptr, char* constructor); +int QMetaObject_IndexOfEnumerator(QtObjectPtr ptr, char* name); +int QMetaObject_IndexOfMethod(QtObjectPtr ptr, char* method); +int QMetaObject_IndexOfProperty(QtObjectPtr ptr, char* name); +int QMetaObject_IndexOfSignal(QtObjectPtr ptr, char* signal); +int QMetaObject_IndexOfSlot(QtObjectPtr ptr, char* slot); +int QMetaObject_QMetaObject_InvokeMethod4(QtObjectPtr obj, char* member, QtObjectPtr val0, QtObjectPtr val1, QtObjectPtr val2, QtObjectPtr val3, QtObjectPtr val4, QtObjectPtr val5, QtObjectPtr val6, QtObjectPtr val7, QtObjectPtr val8, QtObjectPtr val9); +int QMetaObject_QMetaObject_InvokeMethod2(QtObjectPtr obj, char* member, QtObjectPtr ret, QtObjectPtr val0, QtObjectPtr val1, QtObjectPtr val2, QtObjectPtr val3, QtObjectPtr val4, QtObjectPtr val5, QtObjectPtr val6, QtObjectPtr val7, QtObjectPtr val8, QtObjectPtr val9); +int QMetaObject_QMetaObject_InvokeMethod3(QtObjectPtr obj, char* member, int ty, QtObjectPtr val0, QtObjectPtr val1, QtObjectPtr val2, QtObjectPtr val3, QtObjectPtr val4, QtObjectPtr val5, QtObjectPtr val6, QtObjectPtr val7, QtObjectPtr val8, QtObjectPtr val9); +int QMetaObject_QMetaObject_InvokeMethod(QtObjectPtr obj, char* member, int ty, QtObjectPtr ret, QtObjectPtr val0, QtObjectPtr val1, QtObjectPtr val2, QtObjectPtr val3, QtObjectPtr val4, QtObjectPtr val5, QtObjectPtr val6, QtObjectPtr val7, QtObjectPtr val8, QtObjectPtr val9); +int QMetaObject_MethodCount(QtObjectPtr ptr); +int QMetaObject_MethodOffset(QtObjectPtr ptr); +QtObjectPtr QMetaObject_NewInstance(QtObjectPtr ptr, QtObjectPtr val0, QtObjectPtr val1, QtObjectPtr val2, QtObjectPtr val3, QtObjectPtr val4, QtObjectPtr val5, QtObjectPtr val6, QtObjectPtr val7, QtObjectPtr val8, QtObjectPtr val9); +int QMetaObject_PropertyCount(QtObjectPtr ptr); +int QMetaObject_PropertyOffset(QtObjectPtr ptr); +QtObjectPtr QMetaObject_SuperClass(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmetaproperty.cpp b/core/qmetaproperty.cpp new file mode 100755 index 00000000..2dc6d26e --- /dev/null +++ b/core/qmetaproperty.cpp @@ -0,0 +1,93 @@ +#include "qmetaproperty.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMetaProperty: public QMetaProperty { +public: +}; + +int QMetaProperty_HasNotifySignal(QtObjectPtr ptr){ + return static_cast(ptr)->hasNotifySignal(); +} + +int QMetaProperty_IsConstant(QtObjectPtr ptr){ + return static_cast(ptr)->isConstant(); +} + +int QMetaProperty_IsDesignable(QtObjectPtr ptr, QtObjectPtr object){ + return static_cast(ptr)->isDesignable(static_cast(object)); +} + +int QMetaProperty_IsEnumType(QtObjectPtr ptr){ + return static_cast(ptr)->isEnumType(); +} + +int QMetaProperty_IsFinal(QtObjectPtr ptr){ + return static_cast(ptr)->isFinal(); +} + +int QMetaProperty_IsFlagType(QtObjectPtr ptr){ + return static_cast(ptr)->isFlagType(); +} + +int QMetaProperty_IsReadable(QtObjectPtr ptr){ + return static_cast(ptr)->isReadable(); +} + +int QMetaProperty_IsResettable(QtObjectPtr ptr){ + return static_cast(ptr)->isResettable(); +} + +int QMetaProperty_IsScriptable(QtObjectPtr ptr, QtObjectPtr object){ + return static_cast(ptr)->isScriptable(static_cast(object)); +} + +int QMetaProperty_IsStored(QtObjectPtr ptr, QtObjectPtr object){ + return static_cast(ptr)->isStored(static_cast(object)); +} + +int QMetaProperty_IsUser(QtObjectPtr ptr, QtObjectPtr object){ + return static_cast(ptr)->isUser(static_cast(object)); +} + +int QMetaProperty_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QMetaProperty_IsWritable(QtObjectPtr ptr){ + return static_cast(ptr)->isWritable(); +} + +int QMetaProperty_NotifySignalIndex(QtObjectPtr ptr){ + return static_cast(ptr)->notifySignalIndex(); +} + +int QMetaProperty_PropertyIndex(QtObjectPtr ptr){ + return static_cast(ptr)->propertyIndex(); +} + +char* QMetaProperty_Read(QtObjectPtr ptr, QtObjectPtr object){ + return static_cast(ptr)->read(static_cast(object)).toString().toUtf8().data(); +} + +int QMetaProperty_Reset(QtObjectPtr ptr, QtObjectPtr object){ + return static_cast(ptr)->reset(static_cast(object)); +} + +int QMetaProperty_Revision(QtObjectPtr ptr){ + return static_cast(ptr)->revision(); +} + +int QMetaProperty_UserType(QtObjectPtr ptr){ + return static_cast(ptr)->userType(); +} + +int QMetaProperty_Write(QtObjectPtr ptr, QtObjectPtr object, char* value){ + return static_cast(ptr)->write(static_cast(object), QVariant(value)); +} + diff --git a/core/qmetaproperty.go b/core/qmetaproperty.go new file mode 100755 index 00000000..54dcee6d --- /dev/null +++ b/core/qmetaproperty.go @@ -0,0 +1,180 @@ +package core + +//#include "qmetaproperty.h" +import "C" +import ( + "unsafe" +) + +type QMetaProperty struct { + ptr unsafe.Pointer +} + +type QMetaPropertyITF interface { + QMetaPropertyPTR() *QMetaProperty +} + +func (p *QMetaProperty) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMetaProperty) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMetaProperty(ptr QMetaPropertyITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMetaPropertyPTR().Pointer() + } + return nil +} + +func QMetaPropertyFromPointer(ptr unsafe.Pointer) *QMetaProperty { + var n = new(QMetaProperty) + n.SetPointer(ptr) + return n +} + +func (ptr *QMetaProperty) QMetaPropertyPTR() *QMetaProperty { + return ptr +} + +func (ptr *QMetaProperty) HasNotifySignal() bool { + if ptr.Pointer() != nil { + return C.QMetaProperty_HasNotifySignal(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMetaProperty) IsConstant() bool { + if ptr.Pointer() != nil { + return C.QMetaProperty_IsConstant(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMetaProperty) IsDesignable(object QObjectITF) bool { + if ptr.Pointer() != nil { + return C.QMetaProperty_IsDesignable(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(object))) != 0 + } + return false +} + +func (ptr *QMetaProperty) IsEnumType() bool { + if ptr.Pointer() != nil { + return C.QMetaProperty_IsEnumType(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMetaProperty) IsFinal() bool { + if ptr.Pointer() != nil { + return C.QMetaProperty_IsFinal(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMetaProperty) IsFlagType() bool { + if ptr.Pointer() != nil { + return C.QMetaProperty_IsFlagType(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMetaProperty) IsReadable() bool { + if ptr.Pointer() != nil { + return C.QMetaProperty_IsReadable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMetaProperty) IsResettable() bool { + if ptr.Pointer() != nil { + return C.QMetaProperty_IsResettable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMetaProperty) IsScriptable(object QObjectITF) bool { + if ptr.Pointer() != nil { + return C.QMetaProperty_IsScriptable(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(object))) != 0 + } + return false +} + +func (ptr *QMetaProperty) IsStored(object QObjectITF) bool { + if ptr.Pointer() != nil { + return C.QMetaProperty_IsStored(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(object))) != 0 + } + return false +} + +func (ptr *QMetaProperty) IsUser(object QObjectITF) bool { + if ptr.Pointer() != nil { + return C.QMetaProperty_IsUser(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(object))) != 0 + } + return false +} + +func (ptr *QMetaProperty) IsValid() bool { + if ptr.Pointer() != nil { + return C.QMetaProperty_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMetaProperty) IsWritable() bool { + if ptr.Pointer() != nil { + return C.QMetaProperty_IsWritable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMetaProperty) NotifySignalIndex() int { + if ptr.Pointer() != nil { + return int(C.QMetaProperty_NotifySignalIndex(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMetaProperty) PropertyIndex() int { + if ptr.Pointer() != nil { + return int(C.QMetaProperty_PropertyIndex(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMetaProperty) Read(object QObjectITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QMetaProperty_Read(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(object)))) + } + return "" +} + +func (ptr *QMetaProperty) Reset(object QObjectITF) bool { + if ptr.Pointer() != nil { + return C.QMetaProperty_Reset(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(object))) != 0 + } + return false +} + +func (ptr *QMetaProperty) Revision() int { + if ptr.Pointer() != nil { + return int(C.QMetaProperty_Revision(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMetaProperty) UserType() int { + if ptr.Pointer() != nil { + return int(C.QMetaProperty_UserType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMetaProperty) Write(object QObjectITF, value string) bool { + if ptr.Pointer() != nil { + return C.QMetaProperty_Write(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(object)), C.CString(value)) != 0 + } + return false +} diff --git a/core/qmetaproperty.h b/core/qmetaproperty.h new file mode 100755 index 00000000..a990116d --- /dev/null +++ b/core/qmetaproperty.h @@ -0,0 +1,29 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QMetaProperty_HasNotifySignal(QtObjectPtr ptr); +int QMetaProperty_IsConstant(QtObjectPtr ptr); +int QMetaProperty_IsDesignable(QtObjectPtr ptr, QtObjectPtr object); +int QMetaProperty_IsEnumType(QtObjectPtr ptr); +int QMetaProperty_IsFinal(QtObjectPtr ptr); +int QMetaProperty_IsFlagType(QtObjectPtr ptr); +int QMetaProperty_IsReadable(QtObjectPtr ptr); +int QMetaProperty_IsResettable(QtObjectPtr ptr); +int QMetaProperty_IsScriptable(QtObjectPtr ptr, QtObjectPtr object); +int QMetaProperty_IsStored(QtObjectPtr ptr, QtObjectPtr object); +int QMetaProperty_IsUser(QtObjectPtr ptr, QtObjectPtr object); +int QMetaProperty_IsValid(QtObjectPtr ptr); +int QMetaProperty_IsWritable(QtObjectPtr ptr); +int QMetaProperty_NotifySignalIndex(QtObjectPtr ptr); +int QMetaProperty_PropertyIndex(QtObjectPtr ptr); +char* QMetaProperty_Read(QtObjectPtr ptr, QtObjectPtr object); +int QMetaProperty_Reset(QtObjectPtr ptr, QtObjectPtr object); +int QMetaProperty_Revision(QtObjectPtr ptr); +int QMetaProperty_UserType(QtObjectPtr ptr); +int QMetaProperty_Write(QtObjectPtr ptr, QtObjectPtr object, char* value); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmetatype.cpp b/core/qmetatype.cpp new file mode 100755 index 00000000..f73c4354 --- /dev/null +++ b/core/qmetatype.cpp @@ -0,0 +1,66 @@ +#include "qmetatype.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMetaType: public QMetaType { +public: +}; + +QtObjectPtr QMetaType_NewQMetaType(int typeId){ + return new QMetaType(typeId); +} + +int QMetaType_Flags(QtObjectPtr ptr){ + return static_cast(ptr)->flags(); +} + +int QMetaType_QMetaType_IsRegistered(int ty){ + return QMetaType::isRegistered(ty); +} + +int QMetaType_IsRegistered2(QtObjectPtr ptr){ + return static_cast(ptr)->isRegistered(); +} + +int QMetaType_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +QtObjectPtr QMetaType_MetaObject(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->metaObject()); +} + +QtObjectPtr QMetaType_QMetaType_MetaObjectForType(int ty){ + return const_cast(QMetaType::metaObjectForType(ty)); +} + +int QMetaType_QMetaType_SizeOf(int ty){ + return QMetaType::sizeOf(ty); +} + +int QMetaType_SizeOf2(QtObjectPtr ptr){ + return static_cast(ptr)->sizeOf(); +} + +int QMetaType_QMetaType_Type2(QtObjectPtr typeName){ + return QMetaType::type(*static_cast(typeName)); +} + +int QMetaType_QMetaType_Type(char* typeName){ + return QMetaType::type(const_cast(typeName)); +} + +int QMetaType_QMetaType_TypeFlags(int ty){ + return QMetaType::typeFlags(ty); +} + +void QMetaType_DestroyQMetaType(QtObjectPtr ptr){ + static_cast(ptr)->~QMetaType(); +} + diff --git a/core/qmetatype.go b/core/qmetatype.go new file mode 100755 index 00000000..1440da0c --- /dev/null +++ b/core/qmetatype.go @@ -0,0 +1,207 @@ +package core + +//#include "qmetatype.h" +import "C" +import ( + "unsafe" +) + +type QMetaType struct { + ptr unsafe.Pointer +} + +type QMetaTypeITF interface { + QMetaTypePTR() *QMetaType +} + +func (p *QMetaType) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMetaType) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMetaType(ptr QMetaTypeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMetaTypePTR().Pointer() + } + return nil +} + +func QMetaTypeFromPointer(ptr unsafe.Pointer) *QMetaType { + var n = new(QMetaType) + n.SetPointer(ptr) + return n +} + +func (ptr *QMetaType) QMetaTypePTR() *QMetaType { + return ptr +} + +//QMetaType::Type +type QMetaType__Type int + +var ( + QMetaType__UnknownType = QMetaType__Type(0) + QMetaType__Bool = QMetaType__Type(1) + QMetaType__Int = QMetaType__Type(2) + QMetaType__UInt = QMetaType__Type(3) + QMetaType__LongLong = QMetaType__Type(4) + QMetaType__ULongLong = QMetaType__Type(5) + QMetaType__Double = QMetaType__Type(6) + QMetaType__Long = QMetaType__Type(32) + QMetaType__Short = QMetaType__Type(33) + QMetaType__Char = QMetaType__Type(34) + QMetaType__ULong = QMetaType__Type(35) + QMetaType__UShort = QMetaType__Type(36) + QMetaType__UChar = QMetaType__Type(37) + QMetaType__Float = QMetaType__Type(38) + QMetaType__VoidStar = QMetaType__Type(31) + QMetaType__QChar = QMetaType__Type(7) + QMetaType__QString = QMetaType__Type(10) + QMetaType__QStringList = QMetaType__Type(11) + QMetaType__QByteArray = QMetaType__Type(12) + QMetaType__QBitArray = QMetaType__Type(13) + QMetaType__QDate = QMetaType__Type(14) + QMetaType__QTime = QMetaType__Type(15) + QMetaType__QDateTime = QMetaType__Type(16) + QMetaType__QUrl = QMetaType__Type(17) + QMetaType__QLocale = QMetaType__Type(18) + QMetaType__QRect = QMetaType__Type(19) + QMetaType__QRectF = QMetaType__Type(20) + QMetaType__QSize = QMetaType__Type(21) + QMetaType__QSizeF = QMetaType__Type(22) + QMetaType__QLine = QMetaType__Type(23) + QMetaType__QLineF = QMetaType__Type(24) + QMetaType__QPoint = QMetaType__Type(25) + QMetaType__QPointF = QMetaType__Type(26) + QMetaType__QRegExp = QMetaType__Type(27) + QMetaType__QEasingCurve = QMetaType__Type(29) + QMetaType__QUuid = QMetaType__Type(30) + QMetaType__QVariant = QMetaType__Type(41) + QMetaType__QModelIndex = QMetaType__Type(42) + QMetaType__QPersistentModelIndex = QMetaType__Type(50) + QMetaType__QRegularExpression = QMetaType__Type(44) + QMetaType__QJsonValue = QMetaType__Type(45) + QMetaType__QJsonObject = QMetaType__Type(46) + QMetaType__QJsonArray = QMetaType__Type(47) + QMetaType__QJsonDocument = QMetaType__Type(48) + QMetaType__QByteArrayList = QMetaType__Type(49) + QMetaType__QObjectStar = QMetaType__Type(39) + QMetaType__SChar = QMetaType__Type(40) + QMetaType__Void = QMetaType__Type(43) + QMetaType__QVariantMap = QMetaType__Type(8) + QMetaType__QVariantList = QMetaType__Type(9) + QMetaType__QVariantHash = QMetaType__Type(28) + QMetaType__QFont = QMetaType__Type(64) + QMetaType__QPixmap = QMetaType__Type(65) + QMetaType__QBrush = QMetaType__Type(66) + QMetaType__QColor = QMetaType__Type(67) + QMetaType__QPalette = QMetaType__Type(68) + QMetaType__QIcon = QMetaType__Type(69) + QMetaType__QImage = QMetaType__Type(70) + QMetaType__QPolygon = QMetaType__Type(71) + QMetaType__QRegion = QMetaType__Type(72) + QMetaType__QBitmap = QMetaType__Type(73) + QMetaType__QCursor = QMetaType__Type(74) + QMetaType__QKeySequence = QMetaType__Type(75) + QMetaType__QPen = QMetaType__Type(76) + QMetaType__QTextLength = QMetaType__Type(77) + QMetaType__QTextFormat = QMetaType__Type(78) + QMetaType__QMatrix = QMetaType__Type(79) + QMetaType__QTransform = QMetaType__Type(80) + QMetaType__QMatrix4x4 = QMetaType__Type(81) + QMetaType__QVector2D = QMetaType__Type(82) + QMetaType__QVector3D = QMetaType__Type(83) + QMetaType__QVector4D = QMetaType__Type(84) + QMetaType__QQuaternion = QMetaType__Type(85) + QMetaType__QPolygonF = QMetaType__Type(86) + QMetaType__QSizePolicy = QMetaType__Type(121) + QMetaType__User = QMetaType__Type(1024) +) + +//QMetaType::TypeFlag +type QMetaType__TypeFlag int + +var ( + QMetaType__NeedsConstruction = QMetaType__TypeFlag(0x1) + QMetaType__NeedsDestruction = QMetaType__TypeFlag(0x2) + QMetaType__MovableType = QMetaType__TypeFlag(0x4) + QMetaType__PointerToQObject = QMetaType__TypeFlag(0x8) + QMetaType__IsEnumeration = QMetaType__TypeFlag(0x10) + QMetaType__SharedPointerToQObject = QMetaType__TypeFlag(0x20) + QMetaType__WeakPointerToQObject = QMetaType__TypeFlag(0x40) + QMetaType__TrackingPointerToQObject = QMetaType__TypeFlag(0x80) + QMetaType__WasDeclaredAsMetaType = QMetaType__TypeFlag(0x100) + QMetaType__IsGadget = QMetaType__TypeFlag(0x200) +) + +func NewQMetaType(typeId int) *QMetaType { + return QMetaTypeFromPointer(unsafe.Pointer(C.QMetaType_NewQMetaType(C.int(typeId)))) +} + +func (ptr *QMetaType) Flags() QMetaType__TypeFlag { + if ptr.Pointer() != nil { + return QMetaType__TypeFlag(C.QMetaType_Flags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QMetaType_IsRegistered(ty int) bool { + return C.QMetaType_QMetaType_IsRegistered(C.int(ty)) != 0 +} + +func (ptr *QMetaType) IsRegistered2() bool { + if ptr.Pointer() != nil { + return C.QMetaType_IsRegistered2(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMetaType) IsValid() bool { + if ptr.Pointer() != nil { + return C.QMetaType_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMetaType) MetaObject() *QMetaObject { + if ptr.Pointer() != nil { + return QMetaObjectFromPointer(unsafe.Pointer(C.QMetaType_MetaObject(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func QMetaType_MetaObjectForType(ty int) *QMetaObject { + return QMetaObjectFromPointer(unsafe.Pointer(C.QMetaType_QMetaType_MetaObjectForType(C.int(ty)))) +} + +func QMetaType_SizeOf(ty int) int { + return int(C.QMetaType_QMetaType_SizeOf(C.int(ty))) +} + +func (ptr *QMetaType) SizeOf2() int { + if ptr.Pointer() != nil { + return int(C.QMetaType_SizeOf2(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QMetaType_Type2(typeName QByteArrayITF) int { + return int(C.QMetaType_QMetaType_Type2(C.QtObjectPtr(PointerFromQByteArray(typeName)))) +} + +func QMetaType_Type(typeName string) int { + return int(C.QMetaType_QMetaType_Type(C.CString(typeName))) +} + +func QMetaType_TypeFlags(ty int) QMetaType__TypeFlag { + return QMetaType__TypeFlag(C.QMetaType_QMetaType_TypeFlags(C.int(ty))) +} + +func (ptr *QMetaType) DestroyQMetaType() { + if ptr.Pointer() != nil { + C.QMetaType_DestroyQMetaType(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qmetatype.h b/core/qmetatype.h new file mode 100755 index 00000000..679cc7be --- /dev/null +++ b/core/qmetatype.h @@ -0,0 +1,22 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QMetaType_NewQMetaType(int typeId); +int QMetaType_Flags(QtObjectPtr ptr); +int QMetaType_QMetaType_IsRegistered(int ty); +int QMetaType_IsRegistered2(QtObjectPtr ptr); +int QMetaType_IsValid(QtObjectPtr ptr); +QtObjectPtr QMetaType_MetaObject(QtObjectPtr ptr); +QtObjectPtr QMetaType_QMetaType_MetaObjectForType(int ty); +int QMetaType_QMetaType_SizeOf(int ty); +int QMetaType_SizeOf2(QtObjectPtr ptr); +int QMetaType_QMetaType_Type2(QtObjectPtr typeName); +int QMetaType_QMetaType_Type(char* typeName); +int QMetaType_QMetaType_TypeFlags(int ty); +void QMetaType_DestroyQMetaType(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmimedata.cpp b/core/qmimedata.cpp new file mode 100755 index 00000000..271d90d8 --- /dev/null +++ b/core/qmimedata.cpp @@ -0,0 +1,93 @@ +#include "qmimedata.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMimeData: public QMimeData { +public: +}; + +QtObjectPtr QMimeData_NewQMimeData(){ + return new QMimeData(); +} + +void QMimeData_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +char* QMimeData_ColorData(QtObjectPtr ptr){ + return static_cast(ptr)->colorData().toString().toUtf8().data(); +} + +char* QMimeData_Formats(QtObjectPtr ptr){ + return static_cast(ptr)->formats().join("|").toUtf8().data(); +} + +int QMimeData_HasColor(QtObjectPtr ptr){ + return static_cast(ptr)->hasColor(); +} + +int QMimeData_HasFormat(QtObjectPtr ptr, char* mimeType){ + return static_cast(ptr)->hasFormat(QString(mimeType)); +} + +int QMimeData_HasHtml(QtObjectPtr ptr){ + return static_cast(ptr)->hasHtml(); +} + +int QMimeData_HasImage(QtObjectPtr ptr){ + return static_cast(ptr)->hasImage(); +} + +int QMimeData_HasText(QtObjectPtr ptr){ + return static_cast(ptr)->hasText(); +} + +int QMimeData_HasUrls(QtObjectPtr ptr){ + return static_cast(ptr)->hasUrls(); +} + +char* QMimeData_Html(QtObjectPtr ptr){ + return static_cast(ptr)->html().toUtf8().data(); +} + +char* QMimeData_ImageData(QtObjectPtr ptr){ + return static_cast(ptr)->imageData().toString().toUtf8().data(); +} + +void QMimeData_RemoveFormat(QtObjectPtr ptr, char* mimeType){ + static_cast(ptr)->removeFormat(QString(mimeType)); +} + +void QMimeData_SetColorData(QtObjectPtr ptr, char* color){ + static_cast(ptr)->setColorData(QVariant(color)); +} + +void QMimeData_SetData(QtObjectPtr ptr, char* mimeType, QtObjectPtr data){ + static_cast(ptr)->setData(QString(mimeType), *static_cast(data)); +} + +void QMimeData_SetHtml(QtObjectPtr ptr, char* html){ + static_cast(ptr)->setHtml(QString(html)); +} + +void QMimeData_SetImageData(QtObjectPtr ptr, char* image){ + static_cast(ptr)->setImageData(QVariant(image)); +} + +void QMimeData_SetText(QtObjectPtr ptr, char* text){ + static_cast(ptr)->setText(QString(text)); +} + +char* QMimeData_Text(QtObjectPtr ptr){ + return static_cast(ptr)->text().toUtf8().data(); +} + +void QMimeData_DestroyQMimeData(QtObjectPtr ptr){ + static_cast(ptr)->~QMimeData(); +} + diff --git a/core/qmimedata.go b/core/qmimedata.go new file mode 100755 index 00000000..9a52da8d --- /dev/null +++ b/core/qmimedata.go @@ -0,0 +1,168 @@ +package core + +//#include "qmimedata.h" +import "C" +import ( + "github.com/therecipe/qt" + "strings" + "unsafe" +) + +type QMimeData struct { + QObject +} + +type QMimeDataITF interface { + QObjectITF + QMimeDataPTR() *QMimeData +} + +func PointerFromQMimeData(ptr QMimeDataITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMimeDataPTR().Pointer() + } + return nil +} + +func QMimeDataFromPointer(ptr unsafe.Pointer) *QMimeData { + var n = new(QMimeData) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMimeData_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMimeData) QMimeDataPTR() *QMimeData { + return ptr +} + +func NewQMimeData() *QMimeData { + return QMimeDataFromPointer(unsafe.Pointer(C.QMimeData_NewQMimeData())) +} + +func (ptr *QMimeData) Clear() { + if ptr.Pointer() != nil { + C.QMimeData_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMimeData) ColorData() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMimeData_ColorData(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMimeData) Formats() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QMimeData_Formats(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QMimeData) HasColor() bool { + if ptr.Pointer() != nil { + return C.QMimeData_HasColor(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMimeData) HasFormat(mimeType string) bool { + if ptr.Pointer() != nil { + return C.QMimeData_HasFormat(C.QtObjectPtr(ptr.Pointer()), C.CString(mimeType)) != 0 + } + return false +} + +func (ptr *QMimeData) HasHtml() bool { + if ptr.Pointer() != nil { + return C.QMimeData_HasHtml(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMimeData) HasImage() bool { + if ptr.Pointer() != nil { + return C.QMimeData_HasImage(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMimeData) HasText() bool { + if ptr.Pointer() != nil { + return C.QMimeData_HasText(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMimeData) HasUrls() bool { + if ptr.Pointer() != nil { + return C.QMimeData_HasUrls(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMimeData) Html() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMimeData_Html(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMimeData) ImageData() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMimeData_ImageData(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMimeData) RemoveFormat(mimeType string) { + if ptr.Pointer() != nil { + C.QMimeData_RemoveFormat(C.QtObjectPtr(ptr.Pointer()), C.CString(mimeType)) + } +} + +func (ptr *QMimeData) SetColorData(color string) { + if ptr.Pointer() != nil { + C.QMimeData_SetColorData(C.QtObjectPtr(ptr.Pointer()), C.CString(color)) + } +} + +func (ptr *QMimeData) SetData(mimeType string, data QByteArrayITF) { + if ptr.Pointer() != nil { + C.QMimeData_SetData(C.QtObjectPtr(ptr.Pointer()), C.CString(mimeType), C.QtObjectPtr(PointerFromQByteArray(data))) + } +} + +func (ptr *QMimeData) SetHtml(html string) { + if ptr.Pointer() != nil { + C.QMimeData_SetHtml(C.QtObjectPtr(ptr.Pointer()), C.CString(html)) + } +} + +func (ptr *QMimeData) SetImageData(image string) { + if ptr.Pointer() != nil { + C.QMimeData_SetImageData(C.QtObjectPtr(ptr.Pointer()), C.CString(image)) + } +} + +func (ptr *QMimeData) SetText(text string) { + if ptr.Pointer() != nil { + C.QMimeData_SetText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QMimeData) Text() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMimeData_Text(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMimeData) DestroyQMimeData() { + if ptr.Pointer() != nil { + C.QMimeData_DestroyQMimeData(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qmimedata.h b/core/qmimedata.h new file mode 100755 index 00000000..14e3db5e --- /dev/null +++ b/core/qmimedata.h @@ -0,0 +1,29 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QMimeData_NewQMimeData(); +void QMimeData_Clear(QtObjectPtr ptr); +char* QMimeData_ColorData(QtObjectPtr ptr); +char* QMimeData_Formats(QtObjectPtr ptr); +int QMimeData_HasColor(QtObjectPtr ptr); +int QMimeData_HasFormat(QtObjectPtr ptr, char* mimeType); +int QMimeData_HasHtml(QtObjectPtr ptr); +int QMimeData_HasImage(QtObjectPtr ptr); +int QMimeData_HasText(QtObjectPtr ptr); +int QMimeData_HasUrls(QtObjectPtr ptr); +char* QMimeData_Html(QtObjectPtr ptr); +char* QMimeData_ImageData(QtObjectPtr ptr); +void QMimeData_RemoveFormat(QtObjectPtr ptr, char* mimeType); +void QMimeData_SetColorData(QtObjectPtr ptr, char* color); +void QMimeData_SetData(QtObjectPtr ptr, char* mimeType, QtObjectPtr data); +void QMimeData_SetHtml(QtObjectPtr ptr, char* html); +void QMimeData_SetImageData(QtObjectPtr ptr, char* image); +void QMimeData_SetText(QtObjectPtr ptr, char* text); +char* QMimeData_Text(QtObjectPtr ptr); +void QMimeData_DestroyQMimeData(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmimedatabase.cpp b/core/qmimedatabase.cpp new file mode 100755 index 00000000..1fc78ddd --- /dev/null +++ b/core/qmimedatabase.cpp @@ -0,0 +1,25 @@ +#include "qmimedatabase.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMimeDatabase: public QMimeDatabase { +public: +}; + +QtObjectPtr QMimeDatabase_NewQMimeDatabase(){ + return new QMimeDatabase(); +} + +void QMimeDatabase_DestroyQMimeDatabase(QtObjectPtr ptr){ + static_cast(ptr)->~QMimeDatabase(); +} + +char* QMimeDatabase_SuffixForFileName(QtObjectPtr ptr, char* fileName){ + return static_cast(ptr)->suffixForFileName(QString(fileName)).toUtf8().data(); +} + diff --git a/core/qmimedatabase.go b/core/qmimedatabase.go new file mode 100755 index 00000000..ce7a6c43 --- /dev/null +++ b/core/qmimedatabase.go @@ -0,0 +1,66 @@ +package core + +//#include "qmimedatabase.h" +import "C" +import ( + "unsafe" +) + +type QMimeDatabase struct { + ptr unsafe.Pointer +} + +type QMimeDatabaseITF interface { + QMimeDatabasePTR() *QMimeDatabase +} + +func (p *QMimeDatabase) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMimeDatabase) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMimeDatabase(ptr QMimeDatabaseITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMimeDatabasePTR().Pointer() + } + return nil +} + +func QMimeDatabaseFromPointer(ptr unsafe.Pointer) *QMimeDatabase { + var n = new(QMimeDatabase) + n.SetPointer(ptr) + return n +} + +func (ptr *QMimeDatabase) QMimeDatabasePTR() *QMimeDatabase { + return ptr +} + +//QMimeDatabase::MatchMode +type QMimeDatabase__MatchMode int + +var ( + QMimeDatabase__MatchDefault = QMimeDatabase__MatchMode(0x0) + QMimeDatabase__MatchExtension = QMimeDatabase__MatchMode(0x1) + QMimeDatabase__MatchContent = QMimeDatabase__MatchMode(0x2) +) + +func NewQMimeDatabase() *QMimeDatabase { + return QMimeDatabaseFromPointer(unsafe.Pointer(C.QMimeDatabase_NewQMimeDatabase())) +} + +func (ptr *QMimeDatabase) DestroyQMimeDatabase() { + if ptr.Pointer() != nil { + C.QMimeDatabase_DestroyQMimeDatabase(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMimeDatabase) SuffixForFileName(fileName string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QMimeDatabase_SuffixForFileName(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName))) + } + return "" +} diff --git a/core/qmimedatabase.h b/core/qmimedatabase.h new file mode 100755 index 00000000..6fe46c4f --- /dev/null +++ b/core/qmimedatabase.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QMimeDatabase_NewQMimeDatabase(); +void QMimeDatabase_DestroyQMimeDatabase(QtObjectPtr ptr); +char* QMimeDatabase_SuffixForFileName(QtObjectPtr ptr, char* fileName); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmimetype.cpp b/core/qmimetype.cpp new file mode 100755 index 00000000..bb3906cf --- /dev/null +++ b/core/qmimetype.cpp @@ -0,0 +1,84 @@ +#include "qmimetype.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMimeType: public QMimeType { +public: +}; + +QtObjectPtr QMimeType_NewQMimeType(){ + return new QMimeType(); +} + +QtObjectPtr QMimeType_NewQMimeType2(QtObjectPtr other){ + return new QMimeType(*static_cast(other)); +} + +char* QMimeType_FilterString(QtObjectPtr ptr){ + return static_cast(ptr)->filterString().toUtf8().data(); +} + +char* QMimeType_GenericIconName(QtObjectPtr ptr){ + return static_cast(ptr)->genericIconName().toUtf8().data(); +} + +char* QMimeType_GlobPatterns(QtObjectPtr ptr){ + return static_cast(ptr)->globPatterns().join("|").toUtf8().data(); +} + +char* QMimeType_IconName(QtObjectPtr ptr){ + return static_cast(ptr)->iconName().toUtf8().data(); +} + +int QMimeType_Inherits(QtObjectPtr ptr, char* mimeTypeName){ + return static_cast(ptr)->inherits(QString(mimeTypeName)); +} + +int QMimeType_IsDefault(QtObjectPtr ptr){ + return static_cast(ptr)->isDefault(); +} + +int QMimeType_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +char* QMimeType_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +void QMimeType_DestroyQMimeType(QtObjectPtr ptr){ + static_cast(ptr)->~QMimeType(); +} + +char* QMimeType_Aliases(QtObjectPtr ptr){ + return static_cast(ptr)->aliases().join("|").toUtf8().data(); +} + +char* QMimeType_AllAncestors(QtObjectPtr ptr){ + return static_cast(ptr)->allAncestors().join("|").toUtf8().data(); +} + +char* QMimeType_Comment(QtObjectPtr ptr){ + return static_cast(ptr)->comment().toUtf8().data(); +} + +char* QMimeType_ParentMimeTypes(QtObjectPtr ptr){ + return static_cast(ptr)->parentMimeTypes().join("|").toUtf8().data(); +} + +char* QMimeType_PreferredSuffix(QtObjectPtr ptr){ + return static_cast(ptr)->preferredSuffix().toUtf8().data(); +} + +char* QMimeType_Suffixes(QtObjectPtr ptr){ + return static_cast(ptr)->suffixes().join("|").toUtf8().data(); +} + +void QMimeType_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + diff --git a/core/qmimetype.go b/core/qmimetype.go new file mode 100755 index 00000000..0ac629f5 --- /dev/null +++ b/core/qmimetype.go @@ -0,0 +1,159 @@ +package core + +//#include "qmimetype.h" +import "C" +import ( + "strings" + "unsafe" +) + +type QMimeType struct { + ptr unsafe.Pointer +} + +type QMimeTypeITF interface { + QMimeTypePTR() *QMimeType +} + +func (p *QMimeType) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMimeType) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMimeType(ptr QMimeTypeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMimeTypePTR().Pointer() + } + return nil +} + +func QMimeTypeFromPointer(ptr unsafe.Pointer) *QMimeType { + var n = new(QMimeType) + n.SetPointer(ptr) + return n +} + +func (ptr *QMimeType) QMimeTypePTR() *QMimeType { + return ptr +} + +func NewQMimeType() *QMimeType { + return QMimeTypeFromPointer(unsafe.Pointer(C.QMimeType_NewQMimeType())) +} + +func NewQMimeType2(other QMimeTypeITF) *QMimeType { + return QMimeTypeFromPointer(unsafe.Pointer(C.QMimeType_NewQMimeType2(C.QtObjectPtr(PointerFromQMimeType(other))))) +} + +func (ptr *QMimeType) FilterString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMimeType_FilterString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMimeType) GenericIconName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMimeType_GenericIconName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMimeType) GlobPatterns() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QMimeType_GlobPatterns(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QMimeType) IconName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMimeType_IconName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMimeType) Inherits(mimeTypeName string) bool { + if ptr.Pointer() != nil { + return C.QMimeType_Inherits(C.QtObjectPtr(ptr.Pointer()), C.CString(mimeTypeName)) != 0 + } + return false +} + +func (ptr *QMimeType) IsDefault() bool { + if ptr.Pointer() != nil { + return C.QMimeType_IsDefault(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMimeType) IsValid() bool { + if ptr.Pointer() != nil { + return C.QMimeType_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMimeType) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMimeType_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMimeType) DestroyQMimeType() { + if ptr.Pointer() != nil { + C.QMimeType_DestroyQMimeType(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMimeType) Aliases() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QMimeType_Aliases(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QMimeType) AllAncestors() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QMimeType_AllAncestors(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QMimeType) Comment() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMimeType_Comment(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMimeType) ParentMimeTypes() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QMimeType_ParentMimeTypes(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QMimeType) PreferredSuffix() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMimeType_PreferredSuffix(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMimeType) Suffixes() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QMimeType_Suffixes(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QMimeType) Swap(other QMimeTypeITF) { + if ptr.Pointer() != nil { + C.QMimeType_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMimeType(other))) + } +} diff --git a/core/qmimetype.h b/core/qmimetype.h new file mode 100755 index 00000000..c3c2fd94 --- /dev/null +++ b/core/qmimetype.h @@ -0,0 +1,27 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QMimeType_NewQMimeType(); +QtObjectPtr QMimeType_NewQMimeType2(QtObjectPtr other); +char* QMimeType_FilterString(QtObjectPtr ptr); +char* QMimeType_GenericIconName(QtObjectPtr ptr); +char* QMimeType_GlobPatterns(QtObjectPtr ptr); +char* QMimeType_IconName(QtObjectPtr ptr); +int QMimeType_Inherits(QtObjectPtr ptr, char* mimeTypeName); +int QMimeType_IsDefault(QtObjectPtr ptr); +int QMimeType_IsValid(QtObjectPtr ptr); +char* QMimeType_Name(QtObjectPtr ptr); +void QMimeType_DestroyQMimeType(QtObjectPtr ptr); +char* QMimeType_Aliases(QtObjectPtr ptr); +char* QMimeType_AllAncestors(QtObjectPtr ptr); +char* QMimeType_Comment(QtObjectPtr ptr); +char* QMimeType_ParentMimeTypes(QtObjectPtr ptr); +char* QMimeType_PreferredSuffix(QtObjectPtr ptr); +char* QMimeType_Suffixes(QtObjectPtr ptr); +void QMimeType_Swap(QtObjectPtr ptr, QtObjectPtr other); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmodelindex.cpp b/core/qmodelindex.cpp new file mode 100755 index 00000000..a061a2c4 --- /dev/null +++ b/core/qmodelindex.cpp @@ -0,0 +1,57 @@ +#include "qmodelindex.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQModelIndex: public QModelIndex { +public: +}; + +QtObjectPtr QModelIndex_NewQModelIndex(){ + return new QModelIndex(); +} + +QtObjectPtr QModelIndex_Child(QtObjectPtr ptr, int row, int column){ + return static_cast(ptr)->child(row, column).internalPointer(); +} + +int QModelIndex_Column(QtObjectPtr ptr){ + return static_cast(ptr)->column(); +} + +char* QModelIndex_Data(QtObjectPtr ptr, int role){ + return static_cast(ptr)->data(role).toString().toUtf8().data(); +} + +int QModelIndex_Flags(QtObjectPtr ptr){ + return static_cast(ptr)->flags(); +} + +void QModelIndex_InternalPointer(QtObjectPtr ptr){ + static_cast(ptr)->internalPointer(); +} + +int QModelIndex_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +QtObjectPtr QModelIndex_Model(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->model()); +} + +QtObjectPtr QModelIndex_Parent(QtObjectPtr ptr){ + return static_cast(ptr)->parent().internalPointer(); +} + +int QModelIndex_Row(QtObjectPtr ptr){ + return static_cast(ptr)->row(); +} + +QtObjectPtr QModelIndex_Sibling(QtObjectPtr ptr, int row, int column){ + return static_cast(ptr)->sibling(row, column).internalPointer(); +} + diff --git a/core/qmodelindex.go b/core/qmodelindex.go new file mode 100755 index 00000000..38fbb49f --- /dev/null +++ b/core/qmodelindex.go @@ -0,0 +1,113 @@ +package core + +//#include "qmodelindex.h" +import "C" +import ( + "unsafe" +) + +type QModelIndex struct { + ptr unsafe.Pointer +} + +type QModelIndexITF interface { + QModelIndexPTR() *QModelIndex +} + +func (p *QModelIndex) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QModelIndex) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQModelIndex(ptr QModelIndexITF) unsafe.Pointer { + if ptr != nil { + return ptr.QModelIndexPTR().Pointer() + } + return nil +} + +func QModelIndexFromPointer(ptr unsafe.Pointer) *QModelIndex { + var n = new(QModelIndex) + n.SetPointer(ptr) + return n +} + +func (ptr *QModelIndex) QModelIndexPTR() *QModelIndex { + return ptr +} + +func NewQModelIndex() *QModelIndex { + return QModelIndexFromPointer(unsafe.Pointer(C.QModelIndex_NewQModelIndex())) +} + +func (ptr *QModelIndex) Child(row int, column int) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QModelIndex_Child(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column)))) + } + return nil +} + +func (ptr *QModelIndex) Column() int { + if ptr.Pointer() != nil { + return int(C.QModelIndex_Column(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QModelIndex) Data(role int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QModelIndex_Data(C.QtObjectPtr(ptr.Pointer()), C.int(role))) + } + return "" +} + +func (ptr *QModelIndex) Flags() Qt__ItemFlag { + if ptr.Pointer() != nil { + return Qt__ItemFlag(C.QModelIndex_Flags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QModelIndex) InternalPointer() { + if ptr.Pointer() != nil { + C.QModelIndex_InternalPointer(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QModelIndex) IsValid() bool { + if ptr.Pointer() != nil { + return C.QModelIndex_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QModelIndex) Model() *QAbstractItemModel { + if ptr.Pointer() != nil { + return QAbstractItemModelFromPointer(unsafe.Pointer(C.QModelIndex_Model(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QModelIndex) Parent() *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QModelIndex_Parent(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QModelIndex) Row() int { + if ptr.Pointer() != nil { + return int(C.QModelIndex_Row(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QModelIndex) Sibling(row int, column int) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QModelIndex_Sibling(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column)))) + } + return nil +} diff --git a/core/qmodelindex.h b/core/qmodelindex.h new file mode 100755 index 00000000..36d477e8 --- /dev/null +++ b/core/qmodelindex.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QModelIndex_NewQModelIndex(); +QtObjectPtr QModelIndex_Child(QtObjectPtr ptr, int row, int column); +int QModelIndex_Column(QtObjectPtr ptr); +char* QModelIndex_Data(QtObjectPtr ptr, int role); +int QModelIndex_Flags(QtObjectPtr ptr); +void QModelIndex_InternalPointer(QtObjectPtr ptr); +int QModelIndex_IsValid(QtObjectPtr ptr); +QtObjectPtr QModelIndex_Model(QtObjectPtr ptr); +QtObjectPtr QModelIndex_Parent(QtObjectPtr ptr); +int QModelIndex_Row(QtObjectPtr ptr); +QtObjectPtr QModelIndex_Sibling(QtObjectPtr ptr, int row, int column); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmodulesprivate.cpp b/core/qmodulesprivate.cpp new file mode 100755 index 00000000..e67b8a03 --- /dev/null +++ b/core/qmodulesprivate.cpp @@ -0,0 +1,7 @@ +#include "qmodulesprivate.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qmodulesprivate.go b/core/qmodulesprivate.go new file mode 100755 index 00000000..69d32686 --- /dev/null +++ b/core/qmodulesprivate.go @@ -0,0 +1,51 @@ +package core + +//#include "qmodulesprivate.h" +import "C" +import ( + "unsafe" +) + +type QModulesPrivate struct { + ptr unsafe.Pointer +} + +type QModulesPrivateITF interface { + QModulesPrivatePTR() *QModulesPrivate +} + +func (p *QModulesPrivate) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QModulesPrivate) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQModulesPrivate(ptr QModulesPrivateITF) unsafe.Pointer { + if ptr != nil { + return ptr.QModulesPrivatePTR().Pointer() + } + return nil +} + +func QModulesPrivateFromPointer(ptr unsafe.Pointer) *QModulesPrivate { + var n = new(QModulesPrivate) + n.SetPointer(ptr) + return n +} + +func (ptr *QModulesPrivate) QModulesPrivatePTR() *QModulesPrivate { + return ptr +} + +//QModulesPrivate::Names +type QModulesPrivate__Names int + +var ( + QModulesPrivate__Core = QModulesPrivate__Names(0) + QModulesPrivate__Gui = QModulesPrivate__Names(1) + QModulesPrivate__Widgets = QModulesPrivate__Names(2) + QModulesPrivate__Unknown = QModulesPrivate__Names(3) + QModulesPrivate__ModulesCount = QModulesPrivate__Names(4) +) diff --git a/core/qmodulesprivate.h b/core/qmodulesprivate.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qmodulesprivate.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmultihash.cpp b/core/qmultihash.cpp new file mode 100755 index 00000000..af9b737c --- /dev/null +++ b/core/qmultihash.cpp @@ -0,0 +1,8 @@ +#include "qmultihash.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qmultihash.go b/core/qmultihash.go new file mode 100755 index 00000000..b7b25400 --- /dev/null +++ b/core/qmultihash.go @@ -0,0 +1,33 @@ +package core + +//#include "qmultihash.h" +import "C" +import ( + "unsafe" +) + +type QMultiHash struct { + QHash +} + +type QMultiHashITF interface { + QHashITF + QMultiHashPTR() *QMultiHash +} + +func PointerFromQMultiHash(ptr QMultiHashITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMultiHashPTR().Pointer() + } + return nil +} + +func QMultiHashFromPointer(ptr unsafe.Pointer) *QMultiHash { + var n = new(QMultiHash) + n.SetPointer(ptr) + return n +} + +func (ptr *QMultiHash) QMultiHashPTR() *QMultiHash { + return ptr +} diff --git a/core/qmultihash.h b/core/qmultihash.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qmultihash.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmultimap.cpp b/core/qmultimap.cpp new file mode 100755 index 00000000..ac54a2bb --- /dev/null +++ b/core/qmultimap.cpp @@ -0,0 +1,8 @@ +#include "qmultimap.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qmultimap.go b/core/qmultimap.go new file mode 100755 index 00000000..6e19dd36 --- /dev/null +++ b/core/qmultimap.go @@ -0,0 +1,33 @@ +package core + +//#include "qmultimap.h" +import "C" +import ( + "unsafe" +) + +type QMultiMap struct { + QMap +} + +type QMultiMapITF interface { + QMapITF + QMultiMapPTR() *QMultiMap +} + +func PointerFromQMultiMap(ptr QMultiMapITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMultiMapPTR().Pointer() + } + return nil +} + +func QMultiMapFromPointer(ptr unsafe.Pointer) *QMultiMap { + var n = new(QMultiMap) + n.SetPointer(ptr) + return n +} + +func (ptr *QMultiMap) QMultiMapPTR() *QMultiMap { + return ptr +} diff --git a/core/qmultimap.h b/core/qmultimap.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qmultimap.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmutablehashiterator.cpp b/core/qmutablehashiterator.cpp new file mode 100755 index 00000000..6e4d72f5 --- /dev/null +++ b/core/qmutablehashiterator.cpp @@ -0,0 +1,8 @@ +#include "qmutablehashiterator.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qmutablehashiterator.go b/core/qmutablehashiterator.go new file mode 100755 index 00000000..76ffd036 --- /dev/null +++ b/core/qmutablehashiterator.go @@ -0,0 +1,40 @@ +package core + +//#include "qmutablehashiterator.h" +import "C" +import ( + "unsafe" +) + +type QMutableHashIterator struct { + ptr unsafe.Pointer +} + +type QMutableHashIteratorITF interface { + QMutableHashIteratorPTR() *QMutableHashIterator +} + +func (p *QMutableHashIterator) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMutableHashIterator) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMutableHashIterator(ptr QMutableHashIteratorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMutableHashIteratorPTR().Pointer() + } + return nil +} + +func QMutableHashIteratorFromPointer(ptr unsafe.Pointer) *QMutableHashIterator { + var n = new(QMutableHashIterator) + n.SetPointer(ptr) + return n +} + +func (ptr *QMutableHashIterator) QMutableHashIteratorPTR() *QMutableHashIterator { + return ptr +} diff --git a/core/qmutablehashiterator.h b/core/qmutablehashiterator.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qmutablehashiterator.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmutablelinkedlistiterator.cpp b/core/qmutablelinkedlistiterator.cpp new file mode 100755 index 00000000..88bd5983 --- /dev/null +++ b/core/qmutablelinkedlistiterator.cpp @@ -0,0 +1,10 @@ +#include "qmutablelinkedlistiterator.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qmutablelinkedlistiterator.go b/core/qmutablelinkedlistiterator.go new file mode 100755 index 00000000..417b0959 --- /dev/null +++ b/core/qmutablelinkedlistiterator.go @@ -0,0 +1,40 @@ +package core + +//#include "qmutablelinkedlistiterator.h" +import "C" +import ( + "unsafe" +) + +type QMutableLinkedListIterator struct { + ptr unsafe.Pointer +} + +type QMutableLinkedListIteratorITF interface { + QMutableLinkedListIteratorPTR() *QMutableLinkedListIterator +} + +func (p *QMutableLinkedListIterator) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMutableLinkedListIterator) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMutableLinkedListIterator(ptr QMutableLinkedListIteratorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMutableLinkedListIteratorPTR().Pointer() + } + return nil +} + +func QMutableLinkedListIteratorFromPointer(ptr unsafe.Pointer) *QMutableLinkedListIterator { + var n = new(QMutableLinkedListIterator) + n.SetPointer(ptr) + return n +} + +func (ptr *QMutableLinkedListIterator) QMutableLinkedListIteratorPTR() *QMutableLinkedListIterator { + return ptr +} diff --git a/core/qmutablelinkedlistiterator.h b/core/qmutablelinkedlistiterator.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qmutablelinkedlistiterator.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmutablelistiterator.cpp b/core/qmutablelistiterator.cpp new file mode 100755 index 00000000..faef237f --- /dev/null +++ b/core/qmutablelistiterator.cpp @@ -0,0 +1,10 @@ +#include "qmutablelistiterator.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qmutablelistiterator.go b/core/qmutablelistiterator.go new file mode 100755 index 00000000..7293fcdc --- /dev/null +++ b/core/qmutablelistiterator.go @@ -0,0 +1,40 @@ +package core + +//#include "qmutablelistiterator.h" +import "C" +import ( + "unsafe" +) + +type QMutableListIterator struct { + ptr unsafe.Pointer +} + +type QMutableListIteratorITF interface { + QMutableListIteratorPTR() *QMutableListIterator +} + +func (p *QMutableListIterator) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMutableListIterator) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMutableListIterator(ptr QMutableListIteratorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMutableListIteratorPTR().Pointer() + } + return nil +} + +func QMutableListIteratorFromPointer(ptr unsafe.Pointer) *QMutableListIterator { + var n = new(QMutableListIterator) + n.SetPointer(ptr) + return n +} + +func (ptr *QMutableListIterator) QMutableListIteratorPTR() *QMutableListIterator { + return ptr +} diff --git a/core/qmutablelistiterator.h b/core/qmutablelistiterator.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qmutablelistiterator.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmutablemapiterator.cpp b/core/qmutablemapiterator.cpp new file mode 100755 index 00000000..bf58b054 --- /dev/null +++ b/core/qmutablemapiterator.cpp @@ -0,0 +1,8 @@ +#include "qmutablemapiterator.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qmutablemapiterator.go b/core/qmutablemapiterator.go new file mode 100755 index 00000000..0b396700 --- /dev/null +++ b/core/qmutablemapiterator.go @@ -0,0 +1,40 @@ +package core + +//#include "qmutablemapiterator.h" +import "C" +import ( + "unsafe" +) + +type QMutableMapIterator struct { + ptr unsafe.Pointer +} + +type QMutableMapIteratorITF interface { + QMutableMapIteratorPTR() *QMutableMapIterator +} + +func (p *QMutableMapIterator) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMutableMapIterator) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMutableMapIterator(ptr QMutableMapIteratorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMutableMapIteratorPTR().Pointer() + } + return nil +} + +func QMutableMapIteratorFromPointer(ptr unsafe.Pointer) *QMutableMapIterator { + var n = new(QMutableMapIterator) + n.SetPointer(ptr) + return n +} + +func (ptr *QMutableMapIterator) QMutableMapIteratorPTR() *QMutableMapIterator { + return ptr +} diff --git a/core/qmutablemapiterator.h b/core/qmutablemapiterator.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qmutablemapiterator.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmutablesetiterator.cpp b/core/qmutablesetiterator.cpp new file mode 100755 index 00000000..d0ab58b7 --- /dev/null +++ b/core/qmutablesetiterator.cpp @@ -0,0 +1,8 @@ +#include "qmutablesetiterator.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qmutablesetiterator.go b/core/qmutablesetiterator.go new file mode 100755 index 00000000..592227ae --- /dev/null +++ b/core/qmutablesetiterator.go @@ -0,0 +1,40 @@ +package core + +//#include "qmutablesetiterator.h" +import "C" +import ( + "unsafe" +) + +type QMutableSetIterator struct { + ptr unsafe.Pointer +} + +type QMutableSetIteratorITF interface { + QMutableSetIteratorPTR() *QMutableSetIterator +} + +func (p *QMutableSetIterator) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMutableSetIterator) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMutableSetIterator(ptr QMutableSetIteratorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMutableSetIteratorPTR().Pointer() + } + return nil +} + +func QMutableSetIteratorFromPointer(ptr unsafe.Pointer) *QMutableSetIterator { + var n = new(QMutableSetIterator) + n.SetPointer(ptr) + return n +} + +func (ptr *QMutableSetIterator) QMutableSetIteratorPTR() *QMutableSetIterator { + return ptr +} diff --git a/core/qmutablesetiterator.h b/core/qmutablesetiterator.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qmutablesetiterator.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmutablevectoriterator.cpp b/core/qmutablevectoriterator.cpp new file mode 100755 index 00000000..d2749af1 --- /dev/null +++ b/core/qmutablevectoriterator.cpp @@ -0,0 +1,8 @@ +#include "qmutablevectoriterator.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qmutablevectoriterator.go b/core/qmutablevectoriterator.go new file mode 100755 index 00000000..68316b08 --- /dev/null +++ b/core/qmutablevectoriterator.go @@ -0,0 +1,40 @@ +package core + +//#include "qmutablevectoriterator.h" +import "C" +import ( + "unsafe" +) + +type QMutableVectorIterator struct { + ptr unsafe.Pointer +} + +type QMutableVectorIteratorITF interface { + QMutableVectorIteratorPTR() *QMutableVectorIterator +} + +func (p *QMutableVectorIterator) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMutableVectorIterator) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMutableVectorIterator(ptr QMutableVectorIteratorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMutableVectorIteratorPTR().Pointer() + } + return nil +} + +func QMutableVectorIteratorFromPointer(ptr unsafe.Pointer) *QMutableVectorIterator { + var n = new(QMutableVectorIterator) + n.SetPointer(ptr) + return n +} + +func (ptr *QMutableVectorIterator) QMutableVectorIteratorPTR() *QMutableVectorIterator { + return ptr +} diff --git a/core/qmutablevectoriterator.h b/core/qmutablevectoriterator.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qmutablevectoriterator.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmutex.cpp b/core/qmutex.cpp new file mode 100755 index 00000000..076cf844 --- /dev/null +++ b/core/qmutex.cpp @@ -0,0 +1,32 @@ +#include "qmutex.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMutex: public QMutex { +public: +}; + +void QMutex_Lock(QtObjectPtr ptr){ + static_cast(ptr)->lock(); +} + +int QMutex_TryLock(QtObjectPtr ptr, int timeout){ + return static_cast(ptr)->tryLock(timeout); +} + +void QMutex_Unlock(QtObjectPtr ptr){ + static_cast(ptr)->unlock(); +} + +QtObjectPtr QMutex_NewQMutex(int mode){ + return new QMutex(static_cast(mode)); +} + +int QMutex_IsRecursive(QtObjectPtr ptr){ + return static_cast(ptr)->isRecursive(); +} + diff --git a/core/qmutex.go b/core/qmutex.go new file mode 100755 index 00000000..44570f72 --- /dev/null +++ b/core/qmutex.go @@ -0,0 +1,78 @@ +package core + +//#include "qmutex.h" +import "C" +import ( + "unsafe" +) + +type QMutex struct { + ptr unsafe.Pointer +} + +type QMutexITF interface { + QMutexPTR() *QMutex +} + +func (p *QMutex) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMutex) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMutex(ptr QMutexITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMutexPTR().Pointer() + } + return nil +} + +func QMutexFromPointer(ptr unsafe.Pointer) *QMutex { + var n = new(QMutex) + n.SetPointer(ptr) + return n +} + +func (ptr *QMutex) QMutexPTR() *QMutex { + return ptr +} + +//QMutex::RecursionMode +type QMutex__RecursionMode int + +var ( + QMutex__NonRecursive = QMutex__RecursionMode(0) + QMutex__Recursive = QMutex__RecursionMode(1) +) + +func (ptr *QMutex) Lock() { + if ptr.Pointer() != nil { + C.QMutex_Lock(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMutex) TryLock(timeout int) bool { + if ptr.Pointer() != nil { + return C.QMutex_TryLock(C.QtObjectPtr(ptr.Pointer()), C.int(timeout)) != 0 + } + return false +} + +func (ptr *QMutex) Unlock() { + if ptr.Pointer() != nil { + C.QMutex_Unlock(C.QtObjectPtr(ptr.Pointer())) + } +} + +func NewQMutex(mode QMutex__RecursionMode) *QMutex { + return QMutexFromPointer(unsafe.Pointer(C.QMutex_NewQMutex(C.int(mode)))) +} + +func (ptr *QMutex) IsRecursive() bool { + if ptr.Pointer() != nil { + return C.QMutex_IsRecursive(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} diff --git a/core/qmutex.h b/core/qmutex.h new file mode 100755 index 00000000..65db9063 --- /dev/null +++ b/core/qmutex.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QMutex_Lock(QtObjectPtr ptr); +int QMutex_TryLock(QtObjectPtr ptr, int timeout); +void QMutex_Unlock(QtObjectPtr ptr); +QtObjectPtr QMutex_NewQMutex(int mode); +int QMutex_IsRecursive(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qmutexlocker.cpp b/core/qmutexlocker.cpp new file mode 100755 index 00000000..264010c9 --- /dev/null +++ b/core/qmutexlocker.cpp @@ -0,0 +1,33 @@ +#include "qmutexlocker.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMutexLocker: public QMutexLocker { +public: +}; + +QtObjectPtr QMutexLocker_NewQMutexLocker(QtObjectPtr mutex){ + return new QMutexLocker(static_cast(mutex)); +} + +QtObjectPtr QMutexLocker_Mutex(QtObjectPtr ptr){ + return static_cast(ptr)->mutex(); +} + +void QMutexLocker_Relock(QtObjectPtr ptr){ + static_cast(ptr)->relock(); +} + +void QMutexLocker_Unlock(QtObjectPtr ptr){ + static_cast(ptr)->unlock(); +} + +void QMutexLocker_DestroyQMutexLocker(QtObjectPtr ptr){ + static_cast(ptr)->~QMutexLocker(); +} + diff --git a/core/qmutexlocker.go b/core/qmutexlocker.go new file mode 100755 index 00000000..35bb75c9 --- /dev/null +++ b/core/qmutexlocker.go @@ -0,0 +1,69 @@ +package core + +//#include "qmutexlocker.h" +import "C" +import ( + "unsafe" +) + +type QMutexLocker struct { + ptr unsafe.Pointer +} + +type QMutexLockerITF interface { + QMutexLockerPTR() *QMutexLocker +} + +func (p *QMutexLocker) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMutexLocker) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMutexLocker(ptr QMutexLockerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMutexLockerPTR().Pointer() + } + return nil +} + +func QMutexLockerFromPointer(ptr unsafe.Pointer) *QMutexLocker { + var n = new(QMutexLocker) + n.SetPointer(ptr) + return n +} + +func (ptr *QMutexLocker) QMutexLockerPTR() *QMutexLocker { + return ptr +} + +func NewQMutexLocker(mutex QMutexITF) *QMutexLocker { + return QMutexLockerFromPointer(unsafe.Pointer(C.QMutexLocker_NewQMutexLocker(C.QtObjectPtr(PointerFromQMutex(mutex))))) +} + +func (ptr *QMutexLocker) Mutex() *QMutex { + if ptr.Pointer() != nil { + return QMutexFromPointer(unsafe.Pointer(C.QMutexLocker_Mutex(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMutexLocker) Relock() { + if ptr.Pointer() != nil { + C.QMutexLocker_Relock(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMutexLocker) Unlock() { + if ptr.Pointer() != nil { + C.QMutexLocker_Unlock(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMutexLocker) DestroyQMutexLocker() { + if ptr.Pointer() != nil { + C.QMutexLocker_DestroyQMutexLocker(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qmutexlocker.h b/core/qmutexlocker.h new file mode 100755 index 00000000..76e7b4d8 --- /dev/null +++ b/core/qmutexlocker.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QMutexLocker_NewQMutexLocker(QtObjectPtr mutex); +QtObjectPtr QMutexLocker_Mutex(QtObjectPtr ptr); +void QMutexLocker_Relock(QtObjectPtr ptr); +void QMutexLocker_Unlock(QtObjectPtr ptr); +void QMutexLocker_DestroyQMutexLocker(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qobject.cpp b/core/qobject.cpp new file mode 100755 index 00000000..531945f7 --- /dev/null +++ b/core/qobject.cpp @@ -0,0 +1,137 @@ +#include "qobject.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQObject: public QObject { +public: +void Signal_Destroyed(QObject * obj){callbackQObjectDestroyed(this->objectName().toUtf8().data(), obj);}; +void Signal_ObjectNameChanged(const QString & objectName){callbackQObjectObjectNameChanged(this->objectName().toUtf8().data(), objectName.toUtf8().data());}; +}; + +void QObject_InstallEventFilter(QtObjectPtr ptr, QtObjectPtr filterObj){ + static_cast(ptr)->installEventFilter(static_cast(filterObj)); +} + +char* QObject_ObjectName(QtObjectPtr ptr){ + return static_cast(ptr)->objectName().toUtf8().data(); +} + +void QObject_SetObjectName(QtObjectPtr ptr, char* name){ + static_cast(ptr)->setObjectName(QString(name)); +} + +QtObjectPtr QObject_NewQObject(QtObjectPtr parent){ + return new QObject(static_cast(parent)); +} + +int QObject_BlockSignals(QtObjectPtr ptr, int block){ + return static_cast(ptr)->blockSignals(block != 0); +} + +void QObject_DeleteLater(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "deleteLater"); +} + +void QObject_ConnectDestroyed(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QObject::destroyed), static_cast(ptr), static_cast(&MyQObject::Signal_Destroyed));; +} + +void QObject_DisconnectDestroyed(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QObject::destroyed), static_cast(ptr), static_cast(&MyQObject::Signal_Destroyed));; +} + +void QObject_DumpObjectInfo(QtObjectPtr ptr){ + static_cast(ptr)->dumpObjectInfo(); +} + +void QObject_DumpObjectTree(QtObjectPtr ptr){ + static_cast(ptr)->dumpObjectTree(); +} + +int QObject_Event(QtObjectPtr ptr, QtObjectPtr e){ + return static_cast(ptr)->event(static_cast(e)); +} + +int QObject_EventFilter(QtObjectPtr ptr, QtObjectPtr watched, QtObjectPtr event){ + return static_cast(ptr)->eventFilter(static_cast(watched), static_cast(event)); +} + +int QObject_Inherits(QtObjectPtr ptr, char* className){ + return static_cast(ptr)->inherits(const_cast(className)); +} + +int QObject_IsWidgetType(QtObjectPtr ptr){ + return static_cast(ptr)->isWidgetType(); +} + +int QObject_IsWindowType(QtObjectPtr ptr){ + return static_cast(ptr)->isWindowType(); +} + +void QObject_KillTimer(QtObjectPtr ptr, int id){ + static_cast(ptr)->killTimer(id); +} + +QtObjectPtr QObject_MetaObject(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->metaObject()); +} + +void QObject_MoveToThread(QtObjectPtr ptr, QtObjectPtr targetThread){ + static_cast(ptr)->moveToThread(static_cast(targetThread)); +} + +void QObject_ConnectObjectNameChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QObject::objectNameChanged, static_cast(ptr), static_cast(&MyQObject::Signal_ObjectNameChanged));; +} + +void QObject_DisconnectObjectNameChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QObject::objectNameChanged, static_cast(ptr), static_cast(&MyQObject::Signal_ObjectNameChanged));; +} + +QtObjectPtr QObject_Parent(QtObjectPtr ptr){ + return static_cast(ptr)->parent(); +} + +char* QObject_Property(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->property(const_cast(name)).toString().toUtf8().data(); +} + +void QObject_RemoveEventFilter(QtObjectPtr ptr, QtObjectPtr obj){ + static_cast(ptr)->removeEventFilter(static_cast(obj)); +} + +void QObject_SetParent(QtObjectPtr ptr, QtObjectPtr parent){ + static_cast(ptr)->setParent(static_cast(parent)); +} + +int QObject_SetProperty(QtObjectPtr ptr, char* name, char* value){ + return static_cast(ptr)->setProperty(const_cast(name), QVariant(value)); +} + +int QObject_StartTimer(QtObjectPtr ptr, int interval, int timerType){ + return static_cast(ptr)->startTimer(interval, static_cast(timerType)); +} + +int QObject_SignalsBlocked(QtObjectPtr ptr){ + return static_cast(ptr)->signalsBlocked(); +} + +QtObjectPtr QObject_Thread(QtObjectPtr ptr){ + return static_cast(ptr)->thread(); +} + +char* QObject_QObject_Tr(char* sourceText, char* disambiguation, int n){ + return QObject::tr(const_cast(sourceText), const_cast(disambiguation), n).toUtf8().data(); +} + +void QObject_DestroyQObject(QtObjectPtr ptr){ + static_cast(ptr)->~QObject(); +} + diff --git a/core/qobject.go b/core/qobject.go new file mode 100755 index 00000000..384bfed2 --- /dev/null +++ b/core/qobject.go @@ -0,0 +1,250 @@ +package core + +//#include "qobject.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QObject struct { + ptr unsafe.Pointer +} + +type QObjectITF interface { + QObjectPTR() *QObject +} + +func (p *QObject) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QObject) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQObject(ptr QObjectITF) unsafe.Pointer { + if ptr != nil { + return ptr.QObjectPTR().Pointer() + } + return nil +} + +func QObjectFromPointer(ptr unsafe.Pointer) *QObject { + var n = new(QObject) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QObject_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QObject) QObjectPTR() *QObject { + return ptr +} + +func (ptr *QObject) InstallEventFilter(filterObj QObjectITF) { + if ptr.Pointer() != nil { + C.QObject_InstallEventFilter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(filterObj))) + } +} + +func (ptr *QObject) ObjectName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QObject_ObjectName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QObject) SetObjectName(name string) { + if ptr.Pointer() != nil { + C.QObject_SetObjectName(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func NewQObject(parent QObjectITF) *QObject { + return QObjectFromPointer(unsafe.Pointer(C.QObject_NewQObject(C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func (ptr *QObject) BlockSignals(block bool) bool { + if ptr.Pointer() != nil { + return C.QObject_BlockSignals(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(block))) != 0 + } + return false +} + +func (ptr *QObject) DeleteLater() { + if ptr.Pointer() != nil { + C.QObject_DeleteLater(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} + +func (ptr *QObject) ConnectDestroyed(f func(obj QObjectITF)) { + if ptr.Pointer() != nil { + C.QObject_ConnectDestroyed(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "destroyed", f) + } +} + +func (ptr *QObject) DisconnectDestroyed() { + if ptr.Pointer() != nil { + C.QObject_DisconnectDestroyed(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "destroyed") + } +} + +//export callbackQObjectDestroyed +func callbackQObjectDestroyed(ptrName *C.char, obj unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "destroyed").(func(*QObject))(QObjectFromPointer(obj)) +} + +func (ptr *QObject) DumpObjectInfo() { + if ptr.Pointer() != nil { + C.QObject_DumpObjectInfo(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QObject) DumpObjectTree() { + if ptr.Pointer() != nil { + C.QObject_DumpObjectTree(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QObject) Event(e QEventITF) bool { + if ptr.Pointer() != nil { + return C.QObject_Event(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQEvent(e))) != 0 + } + return false +} + +func (ptr *QObject) EventFilter(watched QObjectITF, event QEventITF) bool { + if ptr.Pointer() != nil { + return C.QObject_EventFilter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(watched)), C.QtObjectPtr(PointerFromQEvent(event))) != 0 + } + return false +} + +func (ptr *QObject) Inherits(className string) bool { + if ptr.Pointer() != nil { + return C.QObject_Inherits(C.QtObjectPtr(ptr.Pointer()), C.CString(className)) != 0 + } + return false +} + +func (ptr *QObject) IsWidgetType() bool { + if ptr.Pointer() != nil { + return C.QObject_IsWidgetType(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QObject) IsWindowType() bool { + if ptr.Pointer() != nil { + return C.QObject_IsWindowType(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QObject) KillTimer(id int) { + if ptr.Pointer() != nil { + C.QObject_KillTimer(C.QtObjectPtr(ptr.Pointer()), C.int(id)) + } +} + +func (ptr *QObject) MetaObject() *QMetaObject { + if ptr.Pointer() != nil { + return QMetaObjectFromPointer(unsafe.Pointer(C.QObject_MetaObject(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QObject) MoveToThread(targetThread QThreadITF) { + if ptr.Pointer() != nil { + C.QObject_MoveToThread(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQThread(targetThread))) + } +} + +func (ptr *QObject) ConnectObjectNameChanged(f func(objectName string)) { + if ptr.Pointer() != nil { + C.QObject_ConnectObjectNameChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "objectNameChanged", f) + } +} + +func (ptr *QObject) DisconnectObjectNameChanged() { + if ptr.Pointer() != nil { + C.QObject_DisconnectObjectNameChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "objectNameChanged") + } +} + +//export callbackQObjectObjectNameChanged +func callbackQObjectObjectNameChanged(ptrName *C.char, objectName *C.char) { + qt.GetSignal(C.GoString(ptrName), "objectNameChanged").(func(string))(C.GoString(objectName)) +} + +func (ptr *QObject) Parent() *QObject { + if ptr.Pointer() != nil { + return QObjectFromPointer(unsafe.Pointer(C.QObject_Parent(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QObject) Property(name string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QObject_Property(C.QtObjectPtr(ptr.Pointer()), C.CString(name))) + } + return "" +} + +func (ptr *QObject) RemoveEventFilter(obj QObjectITF) { + if ptr.Pointer() != nil { + C.QObject_RemoveEventFilter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(obj))) + } +} + +func (ptr *QObject) SetParent(parent QObjectITF) { + if ptr.Pointer() != nil { + C.QObject_SetParent(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(parent))) + } +} + +func (ptr *QObject) SetProperty(name string, value string) bool { + if ptr.Pointer() != nil { + return C.QObject_SetProperty(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.CString(value)) != 0 + } + return false +} + +func (ptr *QObject) StartTimer(interval int, timerType Qt__TimerType) int { + if ptr.Pointer() != nil { + return int(C.QObject_StartTimer(C.QtObjectPtr(ptr.Pointer()), C.int(interval), C.int(timerType))) + } + return 0 +} + +func (ptr *QObject) SignalsBlocked() bool { + if ptr.Pointer() != nil { + return C.QObject_SignalsBlocked(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QObject) Thread() *QThread { + if ptr.Pointer() != nil { + return QThreadFromPointer(unsafe.Pointer(C.QObject_Thread(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func QObject_Tr(sourceText string, disambiguation string, n int) string { + return C.GoString(C.QObject_QObject_Tr(C.CString(sourceText), C.CString(disambiguation), C.int(n))) +} + +func (ptr *QObject) DestroyQObject() { + if ptr.Pointer() != nil { + C.QObject_DestroyQObject(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qobject.h b/core/qobject.h new file mode 100755 index 00000000..ab852336 --- /dev/null +++ b/core/qobject.h @@ -0,0 +1,39 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QObject_InstallEventFilter(QtObjectPtr ptr, QtObjectPtr filterObj); +char* QObject_ObjectName(QtObjectPtr ptr); +void QObject_SetObjectName(QtObjectPtr ptr, char* name); +QtObjectPtr QObject_NewQObject(QtObjectPtr parent); +int QObject_BlockSignals(QtObjectPtr ptr, int block); +void QObject_DeleteLater(QtObjectPtr ptr); +void QObject_ConnectDestroyed(QtObjectPtr ptr); +void QObject_DisconnectDestroyed(QtObjectPtr ptr); +void QObject_DumpObjectInfo(QtObjectPtr ptr); +void QObject_DumpObjectTree(QtObjectPtr ptr); +int QObject_Event(QtObjectPtr ptr, QtObjectPtr e); +int QObject_EventFilter(QtObjectPtr ptr, QtObjectPtr watched, QtObjectPtr event); +int QObject_Inherits(QtObjectPtr ptr, char* className); +int QObject_IsWidgetType(QtObjectPtr ptr); +int QObject_IsWindowType(QtObjectPtr ptr); +void QObject_KillTimer(QtObjectPtr ptr, int id); +QtObjectPtr QObject_MetaObject(QtObjectPtr ptr); +void QObject_MoveToThread(QtObjectPtr ptr, QtObjectPtr targetThread); +void QObject_ConnectObjectNameChanged(QtObjectPtr ptr); +void QObject_DisconnectObjectNameChanged(QtObjectPtr ptr); +QtObjectPtr QObject_Parent(QtObjectPtr ptr); +char* QObject_Property(QtObjectPtr ptr, char* name); +void QObject_RemoveEventFilter(QtObjectPtr ptr, QtObjectPtr obj); +void QObject_SetParent(QtObjectPtr ptr, QtObjectPtr parent); +int QObject_SetProperty(QtObjectPtr ptr, char* name, char* value); +int QObject_StartTimer(QtObjectPtr ptr, int interval, int timerType); +int QObject_SignalsBlocked(QtObjectPtr ptr); +QtObjectPtr QObject_Thread(QtObjectPtr ptr); +char* QObject_QObject_Tr(char* sourceText, char* disambiguation, int n); +void QObject_DestroyQObject(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qobjectcleanuphandler.cpp b/core/qobjectcleanuphandler.cpp new file mode 100755 index 00000000..51bb86b2 --- /dev/null +++ b/core/qobjectcleanuphandler.cpp @@ -0,0 +1,33 @@ +#include "qobjectcleanuphandler.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQObjectCleanupHandler: public QObjectCleanupHandler { +public: +}; + +QtObjectPtr QObjectCleanupHandler_NewQObjectCleanupHandler(){ + return new QObjectCleanupHandler(); +} + +QtObjectPtr QObjectCleanupHandler_Add(QtObjectPtr ptr, QtObjectPtr object){ + return static_cast(ptr)->add(static_cast(object)); +} + +void QObjectCleanupHandler_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +int QObjectCleanupHandler_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +void QObjectCleanupHandler_DestroyQObjectCleanupHandler(QtObjectPtr ptr){ + static_cast(ptr)->~QObjectCleanupHandler(); +} + diff --git a/core/qobjectcleanuphandler.go b/core/qobjectcleanuphandler.go new file mode 100755 index 00000000..c201107b --- /dev/null +++ b/core/qobjectcleanuphandler.go @@ -0,0 +1,68 @@ +package core + +//#include "qobjectcleanuphandler.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QObjectCleanupHandler struct { + QObject +} + +type QObjectCleanupHandlerITF interface { + QObjectITF + QObjectCleanupHandlerPTR() *QObjectCleanupHandler +} + +func PointerFromQObjectCleanupHandler(ptr QObjectCleanupHandlerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QObjectCleanupHandlerPTR().Pointer() + } + return nil +} + +func QObjectCleanupHandlerFromPointer(ptr unsafe.Pointer) *QObjectCleanupHandler { + var n = new(QObjectCleanupHandler) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QObjectCleanupHandler_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QObjectCleanupHandler) QObjectCleanupHandlerPTR() *QObjectCleanupHandler { + return ptr +} + +func NewQObjectCleanupHandler() *QObjectCleanupHandler { + return QObjectCleanupHandlerFromPointer(unsafe.Pointer(C.QObjectCleanupHandler_NewQObjectCleanupHandler())) +} + +func (ptr *QObjectCleanupHandler) Add(object QObjectITF) *QObject { + if ptr.Pointer() != nil { + return QObjectFromPointer(unsafe.Pointer(C.QObjectCleanupHandler_Add(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(object))))) + } + return nil +} + +func (ptr *QObjectCleanupHandler) Clear() { + if ptr.Pointer() != nil { + C.QObjectCleanupHandler_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QObjectCleanupHandler) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QObjectCleanupHandler_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QObjectCleanupHandler) DestroyQObjectCleanupHandler() { + if ptr.Pointer() != nil { + C.QObjectCleanupHandler_DestroyQObjectCleanupHandler(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qobjectcleanuphandler.h b/core/qobjectcleanuphandler.h new file mode 100755 index 00000000..1d25d368 --- /dev/null +++ b/core/qobjectcleanuphandler.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QObjectCleanupHandler_NewQObjectCleanupHandler(); +QtObjectPtr QObjectCleanupHandler_Add(QtObjectPtr ptr, QtObjectPtr object); +void QObjectCleanupHandler_Clear(QtObjectPtr ptr); +int QObjectCleanupHandler_IsEmpty(QtObjectPtr ptr); +void QObjectCleanupHandler_DestroyQObjectCleanupHandler(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qpair.cpp b/core/qpair.cpp new file mode 100755 index 00000000..66299711 --- /dev/null +++ b/core/qpair.cpp @@ -0,0 +1,8 @@ +#include "qpair.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qpair.go b/core/qpair.go new file mode 100755 index 00000000..bbd29a6c --- /dev/null +++ b/core/qpair.go @@ -0,0 +1,40 @@ +package core + +//#include "qpair.h" +import "C" +import ( + "unsafe" +) + +type QPair struct { + ptr unsafe.Pointer +} + +type QPairITF interface { + QPairPTR() *QPair +} + +func (p *QPair) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPair) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPair(ptr QPairITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPairPTR().Pointer() + } + return nil +} + +func QPairFromPointer(ptr unsafe.Pointer) *QPair { + var n = new(QPair) + n.SetPointer(ptr) + return n +} + +func (ptr *QPair) QPairPTR() *QPair { + return ptr +} diff --git a/core/qpair.h b/core/qpair.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qpair.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qparallelanimationgroup.cpp b/core/qparallelanimationgroup.cpp new file mode 100755 index 00000000..6903da84 --- /dev/null +++ b/core/qparallelanimationgroup.cpp @@ -0,0 +1,20 @@ +#include "qparallelanimationgroup.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQParallelAnimationGroup: public QParallelAnimationGroup { +public: +}; + +int QParallelAnimationGroup_Duration(QtObjectPtr ptr){ + return static_cast(ptr)->duration(); +} + +void QParallelAnimationGroup_DestroyQParallelAnimationGroup(QtObjectPtr ptr){ + static_cast(ptr)->~QParallelAnimationGroup(); +} + diff --git a/core/qparallelanimationgroup.go b/core/qparallelanimationgroup.go new file mode 100755 index 00000000..d9991237 --- /dev/null +++ b/core/qparallelanimationgroup.go @@ -0,0 +1,51 @@ +package core + +//#include "qparallelanimationgroup.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QParallelAnimationGroup struct { + QAnimationGroup +} + +type QParallelAnimationGroupITF interface { + QAnimationGroupITF + QParallelAnimationGroupPTR() *QParallelAnimationGroup +} + +func PointerFromQParallelAnimationGroup(ptr QParallelAnimationGroupITF) unsafe.Pointer { + if ptr != nil { + return ptr.QParallelAnimationGroupPTR().Pointer() + } + return nil +} + +func QParallelAnimationGroupFromPointer(ptr unsafe.Pointer) *QParallelAnimationGroup { + var n = new(QParallelAnimationGroup) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QParallelAnimationGroup_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QParallelAnimationGroup) QParallelAnimationGroupPTR() *QParallelAnimationGroup { + return ptr +} + +func (ptr *QParallelAnimationGroup) Duration() int { + if ptr.Pointer() != nil { + return int(C.QParallelAnimationGroup_Duration(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QParallelAnimationGroup) DestroyQParallelAnimationGroup() { + if ptr.Pointer() != nil { + C.QParallelAnimationGroup_DestroyQParallelAnimationGroup(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qparallelanimationgroup.h b/core/qparallelanimationgroup.h new file mode 100755 index 00000000..f51c30de --- /dev/null +++ b/core/qparallelanimationgroup.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QParallelAnimationGroup_Duration(QtObjectPtr ptr); +void QParallelAnimationGroup_DestroyQParallelAnimationGroup(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qpauseanimation.cpp b/core/qpauseanimation.cpp new file mode 100755 index 00000000..73fb38ce --- /dev/null +++ b/core/qpauseanimation.cpp @@ -0,0 +1,33 @@ +#include "qpauseanimation.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPauseAnimation: public QPauseAnimation { +public: +}; + +int QPauseAnimation_Duration(QtObjectPtr ptr){ + return static_cast(ptr)->duration(); +} + +void QPauseAnimation_SetDuration(QtObjectPtr ptr, int msecs){ + static_cast(ptr)->setDuration(msecs); +} + +QtObjectPtr QPauseAnimation_NewQPauseAnimation(QtObjectPtr parent){ + return new QPauseAnimation(static_cast(parent)); +} + +QtObjectPtr QPauseAnimation_NewQPauseAnimation2(int msecs, QtObjectPtr parent){ + return new QPauseAnimation(msecs, static_cast(parent)); +} + +void QPauseAnimation_DestroyQPauseAnimation(QtObjectPtr ptr){ + static_cast(ptr)->~QPauseAnimation(); +} + diff --git a/core/qpauseanimation.go b/core/qpauseanimation.go new file mode 100755 index 00000000..971751b3 --- /dev/null +++ b/core/qpauseanimation.go @@ -0,0 +1,65 @@ +package core + +//#include "qpauseanimation.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QPauseAnimation struct { + QAbstractAnimation +} + +type QPauseAnimationITF interface { + QAbstractAnimationITF + QPauseAnimationPTR() *QPauseAnimation +} + +func PointerFromQPauseAnimation(ptr QPauseAnimationITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPauseAnimationPTR().Pointer() + } + return nil +} + +func QPauseAnimationFromPointer(ptr unsafe.Pointer) *QPauseAnimation { + var n = new(QPauseAnimation) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QPauseAnimation_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QPauseAnimation) QPauseAnimationPTR() *QPauseAnimation { + return ptr +} + +func (ptr *QPauseAnimation) Duration() int { + if ptr.Pointer() != nil { + return int(C.QPauseAnimation_Duration(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPauseAnimation) SetDuration(msecs int) { + if ptr.Pointer() != nil { + C.QPauseAnimation_SetDuration(C.QtObjectPtr(ptr.Pointer()), C.int(msecs)) + } +} + +func NewQPauseAnimation(parent QObjectITF) *QPauseAnimation { + return QPauseAnimationFromPointer(unsafe.Pointer(C.QPauseAnimation_NewQPauseAnimation(C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func NewQPauseAnimation2(msecs int, parent QObjectITF) *QPauseAnimation { + return QPauseAnimationFromPointer(unsafe.Pointer(C.QPauseAnimation_NewQPauseAnimation2(C.int(msecs), C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func (ptr *QPauseAnimation) DestroyQPauseAnimation() { + if ptr.Pointer() != nil { + C.QPauseAnimation_DestroyQPauseAnimation(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qpauseanimation.h b/core/qpauseanimation.h new file mode 100755 index 00000000..79c80b50 --- /dev/null +++ b/core/qpauseanimation.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QPauseAnimation_Duration(QtObjectPtr ptr); +void QPauseAnimation_SetDuration(QtObjectPtr ptr, int msecs); +QtObjectPtr QPauseAnimation_NewQPauseAnimation(QtObjectPtr parent); +QtObjectPtr QPauseAnimation_NewQPauseAnimation2(int msecs, QtObjectPtr parent); +void QPauseAnimation_DestroyQPauseAnimation(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qpersistentmodelindex.cpp b/core/qpersistentmodelindex.cpp new file mode 100755 index 00000000..308ba556 --- /dev/null +++ b/core/qpersistentmodelindex.cpp @@ -0,0 +1,65 @@ +#include "qpersistentmodelindex.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPersistentModelIndex: public QPersistentModelIndex { +public: +}; + +QtObjectPtr QPersistentModelIndex_NewQPersistentModelIndex3(QtObjectPtr other){ + return new QPersistentModelIndex(*static_cast(other)); +} + +int QPersistentModelIndex_Column(QtObjectPtr ptr){ + return static_cast(ptr)->column(); +} + +int QPersistentModelIndex_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QPersistentModelIndex_Row(QtObjectPtr ptr){ + return static_cast(ptr)->row(); +} + +QtObjectPtr QPersistentModelIndex_NewQPersistentModelIndex4(QtObjectPtr other){ + return new QPersistentModelIndex(*static_cast(other)); +} + +QtObjectPtr QPersistentModelIndex_NewQPersistentModelIndex(QtObjectPtr index){ + return new QPersistentModelIndex(*static_cast(index)); +} + +QtObjectPtr QPersistentModelIndex_Child(QtObjectPtr ptr, int row, int column){ + return static_cast(ptr)->child(row, column).internalPointer(); +} + +char* QPersistentModelIndex_Data(QtObjectPtr ptr, int role){ + return static_cast(ptr)->data(role).toString().toUtf8().data(); +} + +int QPersistentModelIndex_Flags(QtObjectPtr ptr){ + return static_cast(ptr)->flags(); +} + +QtObjectPtr QPersistentModelIndex_Model(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->model()); +} + +QtObjectPtr QPersistentModelIndex_Parent(QtObjectPtr ptr){ + return static_cast(ptr)->parent().internalPointer(); +} + +QtObjectPtr QPersistentModelIndex_Sibling(QtObjectPtr ptr, int row, int column){ + return static_cast(ptr)->sibling(row, column).internalPointer(); +} + +void QPersistentModelIndex_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + diff --git a/core/qpersistentmodelindex.go b/core/qpersistentmodelindex.go new file mode 100755 index 00000000..d6099cb0 --- /dev/null +++ b/core/qpersistentmodelindex.go @@ -0,0 +1,121 @@ +package core + +//#include "qpersistentmodelindex.h" +import "C" +import ( + "unsafe" +) + +type QPersistentModelIndex struct { + ptr unsafe.Pointer +} + +type QPersistentModelIndexITF interface { + QPersistentModelIndexPTR() *QPersistentModelIndex +} + +func (p *QPersistentModelIndex) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPersistentModelIndex) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPersistentModelIndex(ptr QPersistentModelIndexITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPersistentModelIndexPTR().Pointer() + } + return nil +} + +func QPersistentModelIndexFromPointer(ptr unsafe.Pointer) *QPersistentModelIndex { + var n = new(QPersistentModelIndex) + n.SetPointer(ptr) + return n +} + +func (ptr *QPersistentModelIndex) QPersistentModelIndexPTR() *QPersistentModelIndex { + return ptr +} + +func NewQPersistentModelIndex3(other QPersistentModelIndexITF) *QPersistentModelIndex { + return QPersistentModelIndexFromPointer(unsafe.Pointer(C.QPersistentModelIndex_NewQPersistentModelIndex3(C.QtObjectPtr(PointerFromQPersistentModelIndex(other))))) +} + +func (ptr *QPersistentModelIndex) Column() int { + if ptr.Pointer() != nil { + return int(C.QPersistentModelIndex_Column(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPersistentModelIndex) IsValid() bool { + if ptr.Pointer() != nil { + return C.QPersistentModelIndex_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPersistentModelIndex) Row() int { + if ptr.Pointer() != nil { + return int(C.QPersistentModelIndex_Row(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQPersistentModelIndex4(other QPersistentModelIndexITF) *QPersistentModelIndex { + return QPersistentModelIndexFromPointer(unsafe.Pointer(C.QPersistentModelIndex_NewQPersistentModelIndex4(C.QtObjectPtr(PointerFromQPersistentModelIndex(other))))) +} + +func NewQPersistentModelIndex(index QModelIndexITF) *QPersistentModelIndex { + return QPersistentModelIndexFromPointer(unsafe.Pointer(C.QPersistentModelIndex_NewQPersistentModelIndex(C.QtObjectPtr(PointerFromQModelIndex(index))))) +} + +func (ptr *QPersistentModelIndex) Child(row int, column int) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QPersistentModelIndex_Child(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column)))) + } + return nil +} + +func (ptr *QPersistentModelIndex) Data(role int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QPersistentModelIndex_Data(C.QtObjectPtr(ptr.Pointer()), C.int(role))) + } + return "" +} + +func (ptr *QPersistentModelIndex) Flags() Qt__ItemFlag { + if ptr.Pointer() != nil { + return Qt__ItemFlag(C.QPersistentModelIndex_Flags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPersistentModelIndex) Model() *QAbstractItemModel { + if ptr.Pointer() != nil { + return QAbstractItemModelFromPointer(unsafe.Pointer(C.QPersistentModelIndex_Model(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QPersistentModelIndex) Parent() *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QPersistentModelIndex_Parent(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QPersistentModelIndex) Sibling(row int, column int) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QPersistentModelIndex_Sibling(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column)))) + } + return nil +} + +func (ptr *QPersistentModelIndex) Swap(other QPersistentModelIndexITF) { + if ptr.Pointer() != nil { + C.QPersistentModelIndex_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPersistentModelIndex(other))) + } +} diff --git a/core/qpersistentmodelindex.h b/core/qpersistentmodelindex.h new file mode 100755 index 00000000..66495a1d --- /dev/null +++ b/core/qpersistentmodelindex.h @@ -0,0 +1,22 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QPersistentModelIndex_NewQPersistentModelIndex3(QtObjectPtr other); +int QPersistentModelIndex_Column(QtObjectPtr ptr); +int QPersistentModelIndex_IsValid(QtObjectPtr ptr); +int QPersistentModelIndex_Row(QtObjectPtr ptr); +QtObjectPtr QPersistentModelIndex_NewQPersistentModelIndex4(QtObjectPtr other); +QtObjectPtr QPersistentModelIndex_NewQPersistentModelIndex(QtObjectPtr index); +QtObjectPtr QPersistentModelIndex_Child(QtObjectPtr ptr, int row, int column); +char* QPersistentModelIndex_Data(QtObjectPtr ptr, int role); +int QPersistentModelIndex_Flags(QtObjectPtr ptr); +QtObjectPtr QPersistentModelIndex_Model(QtObjectPtr ptr); +QtObjectPtr QPersistentModelIndex_Parent(QtObjectPtr ptr); +QtObjectPtr QPersistentModelIndex_Sibling(QtObjectPtr ptr, int row, int column); +void QPersistentModelIndex_Swap(QtObjectPtr ptr, QtObjectPtr other); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qpluginloader.cpp b/core/qpluginloader.cpp new file mode 100755 index 00000000..d01d610e --- /dev/null +++ b/core/qpluginloader.cpp @@ -0,0 +1,62 @@ +#include "qpluginloader.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPluginLoader: public QPluginLoader { +public: +}; + +char* QPluginLoader_FileName(QtObjectPtr ptr){ + return static_cast(ptr)->fileName().toUtf8().data(); +} + +int QPluginLoader_LoadHints(QtObjectPtr ptr){ + return static_cast(ptr)->loadHints(); +} + +void QPluginLoader_SetFileName(QtObjectPtr ptr, char* fileName){ + static_cast(ptr)->setFileName(QString(fileName)); +} + +void QPluginLoader_SetLoadHints(QtObjectPtr ptr, int loadHints){ + static_cast(ptr)->setLoadHints(static_cast(loadHints)); +} + +QtObjectPtr QPluginLoader_NewQPluginLoader(QtObjectPtr parent){ + return new QPluginLoader(static_cast(parent)); +} + +QtObjectPtr QPluginLoader_NewQPluginLoader2(char* fileName, QtObjectPtr parent){ + return new QPluginLoader(QString(fileName), static_cast(parent)); +} + +char* QPluginLoader_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +QtObjectPtr QPluginLoader_Instance(QtObjectPtr ptr){ + return static_cast(ptr)->instance(); +} + +int QPluginLoader_IsLoaded(QtObjectPtr ptr){ + return static_cast(ptr)->isLoaded(); +} + +int QPluginLoader_Load(QtObjectPtr ptr){ + return static_cast(ptr)->load(); +} + +int QPluginLoader_Unload(QtObjectPtr ptr){ + return static_cast(ptr)->unload(); +} + +void QPluginLoader_DestroyQPluginLoader(QtObjectPtr ptr){ + static_cast(ptr)->~QPluginLoader(); +} + diff --git a/core/qpluginloader.go b/core/qpluginloader.go new file mode 100755 index 00000000..2cd4f8e9 --- /dev/null +++ b/core/qpluginloader.go @@ -0,0 +1,113 @@ +package core + +//#include "qpluginloader.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QPluginLoader struct { + QObject +} + +type QPluginLoaderITF interface { + QObjectITF + QPluginLoaderPTR() *QPluginLoader +} + +func PointerFromQPluginLoader(ptr QPluginLoaderITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPluginLoaderPTR().Pointer() + } + return nil +} + +func QPluginLoaderFromPointer(ptr unsafe.Pointer) *QPluginLoader { + var n = new(QPluginLoader) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QPluginLoader_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QPluginLoader) QPluginLoaderPTR() *QPluginLoader { + return ptr +} + +func (ptr *QPluginLoader) FileName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QPluginLoader_FileName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QPluginLoader) LoadHints() QLibrary__LoadHint { + if ptr.Pointer() != nil { + return QLibrary__LoadHint(C.QPluginLoader_LoadHints(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPluginLoader) SetFileName(fileName string) { + if ptr.Pointer() != nil { + C.QPluginLoader_SetFileName(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName)) + } +} + +func (ptr *QPluginLoader) SetLoadHints(loadHints QLibrary__LoadHint) { + if ptr.Pointer() != nil { + C.QPluginLoader_SetLoadHints(C.QtObjectPtr(ptr.Pointer()), C.int(loadHints)) + } +} + +func NewQPluginLoader(parent QObjectITF) *QPluginLoader { + return QPluginLoaderFromPointer(unsafe.Pointer(C.QPluginLoader_NewQPluginLoader(C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func NewQPluginLoader2(fileName string, parent QObjectITF) *QPluginLoader { + return QPluginLoaderFromPointer(unsafe.Pointer(C.QPluginLoader_NewQPluginLoader2(C.CString(fileName), C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func (ptr *QPluginLoader) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QPluginLoader_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QPluginLoader) Instance() *QObject { + if ptr.Pointer() != nil { + return QObjectFromPointer(unsafe.Pointer(C.QPluginLoader_Instance(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QPluginLoader) IsLoaded() bool { + if ptr.Pointer() != nil { + return C.QPluginLoader_IsLoaded(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPluginLoader) Load() bool { + if ptr.Pointer() != nil { + return C.QPluginLoader_Load(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPluginLoader) Unload() bool { + if ptr.Pointer() != nil { + return C.QPluginLoader_Unload(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPluginLoader) DestroyQPluginLoader() { + if ptr.Pointer() != nil { + C.QPluginLoader_DestroyQPluginLoader(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qpluginloader.h b/core/qpluginloader.h new file mode 100755 index 00000000..9ee50aa9 --- /dev/null +++ b/core/qpluginloader.h @@ -0,0 +1,21 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QPluginLoader_FileName(QtObjectPtr ptr); +int QPluginLoader_LoadHints(QtObjectPtr ptr); +void QPluginLoader_SetFileName(QtObjectPtr ptr, char* fileName); +void QPluginLoader_SetLoadHints(QtObjectPtr ptr, int loadHints); +QtObjectPtr QPluginLoader_NewQPluginLoader(QtObjectPtr parent); +QtObjectPtr QPluginLoader_NewQPluginLoader2(char* fileName, QtObjectPtr parent); +char* QPluginLoader_ErrorString(QtObjectPtr ptr); +QtObjectPtr QPluginLoader_Instance(QtObjectPtr ptr); +int QPluginLoader_IsLoaded(QtObjectPtr ptr); +int QPluginLoader_Load(QtObjectPtr ptr); +int QPluginLoader_Unload(QtObjectPtr ptr); +void QPluginLoader_DestroyQPluginLoader(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qpoint.cpp b/core/qpoint.cpp new file mode 100755 index 00000000..30cb278b --- /dev/null +++ b/core/qpoint.cpp @@ -0,0 +1,56 @@ +#include "qpoint.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPoint: public QPoint { +public: +}; + +QtObjectPtr QPoint_NewQPoint(){ + return new QPoint(); +} + +QtObjectPtr QPoint_NewQPoint2(int xpos, int ypos){ + return new QPoint(xpos, ypos); +} + +int QPoint_QPoint_DotProduct(QtObjectPtr p1, QtObjectPtr p2){ + return QPoint::dotProduct(*static_cast(p1), *static_cast(p2)); +} + +int QPoint_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QPoint_ManhattanLength(QtObjectPtr ptr){ + return static_cast(ptr)->manhattanLength(); +} + +int QPoint_Rx(QtObjectPtr ptr){ + return static_cast(ptr)->rx(); +} + +int QPoint_Ry(QtObjectPtr ptr){ + return static_cast(ptr)->ry(); +} + +void QPoint_SetX(QtObjectPtr ptr, int x){ + static_cast(ptr)->setX(x); +} + +void QPoint_SetY(QtObjectPtr ptr, int y){ + static_cast(ptr)->setY(y); +} + +int QPoint_X(QtObjectPtr ptr){ + return static_cast(ptr)->x(); +} + +int QPoint_Y(QtObjectPtr ptr){ + return static_cast(ptr)->y(); +} + diff --git a/core/qpoint.go b/core/qpoint.go new file mode 100755 index 00000000..63062bdd --- /dev/null +++ b/core/qpoint.go @@ -0,0 +1,106 @@ +package core + +//#include "qpoint.h" +import "C" +import ( + "unsafe" +) + +type QPoint struct { + ptr unsafe.Pointer +} + +type QPointITF interface { + QPointPTR() *QPoint +} + +func (p *QPoint) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPoint) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPoint(ptr QPointITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPointPTR().Pointer() + } + return nil +} + +func QPointFromPointer(ptr unsafe.Pointer) *QPoint { + var n = new(QPoint) + n.SetPointer(ptr) + return n +} + +func (ptr *QPoint) QPointPTR() *QPoint { + return ptr +} + +func NewQPoint() *QPoint { + return QPointFromPointer(unsafe.Pointer(C.QPoint_NewQPoint())) +} + +func NewQPoint2(xpos int, ypos int) *QPoint { + return QPointFromPointer(unsafe.Pointer(C.QPoint_NewQPoint2(C.int(xpos), C.int(ypos)))) +} + +func QPoint_DotProduct(p1 QPointITF, p2 QPointITF) int { + return int(C.QPoint_QPoint_DotProduct(C.QtObjectPtr(PointerFromQPoint(p1)), C.QtObjectPtr(PointerFromQPoint(p2)))) +} + +func (ptr *QPoint) IsNull() bool { + if ptr.Pointer() != nil { + return C.QPoint_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPoint) ManhattanLength() int { + if ptr.Pointer() != nil { + return int(C.QPoint_ManhattanLength(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPoint) Rx() int { + if ptr.Pointer() != nil { + return int(C.QPoint_Rx(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPoint) Ry() int { + if ptr.Pointer() != nil { + return int(C.QPoint_Ry(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPoint) SetX(x int) { + if ptr.Pointer() != nil { + C.QPoint_SetX(C.QtObjectPtr(ptr.Pointer()), C.int(x)) + } +} + +func (ptr *QPoint) SetY(y int) { + if ptr.Pointer() != nil { + C.QPoint_SetY(C.QtObjectPtr(ptr.Pointer()), C.int(y)) + } +} + +func (ptr *QPoint) X() int { + if ptr.Pointer() != nil { + return int(C.QPoint_X(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPoint) Y() int { + if ptr.Pointer() != nil { + return int(C.QPoint_Y(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/core/qpoint.h b/core/qpoint.h new file mode 100755 index 00000000..cc2d0052 --- /dev/null +++ b/core/qpoint.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QPoint_NewQPoint(); +QtObjectPtr QPoint_NewQPoint2(int xpos, int ypos); +int QPoint_QPoint_DotProduct(QtObjectPtr p1, QtObjectPtr p2); +int QPoint_IsNull(QtObjectPtr ptr); +int QPoint_ManhattanLength(QtObjectPtr ptr); +int QPoint_Rx(QtObjectPtr ptr); +int QPoint_Ry(QtObjectPtr ptr); +void QPoint_SetX(QtObjectPtr ptr, int x); +void QPoint_SetY(QtObjectPtr ptr, int y); +int QPoint_X(QtObjectPtr ptr); +int QPoint_Y(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qpointer.cpp b/core/qpointer.cpp new file mode 100755 index 00000000..d0b17600 --- /dev/null +++ b/core/qpointer.cpp @@ -0,0 +1,9 @@ +#include "qpointer.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qpointer.go b/core/qpointer.go new file mode 100755 index 00000000..d81f20b2 --- /dev/null +++ b/core/qpointer.go @@ -0,0 +1,40 @@ +package core + +//#include "qpointer.h" +import "C" +import ( + "unsafe" +) + +type QPointer struct { + ptr unsafe.Pointer +} + +type QPointerITF interface { + QPointerPTR() *QPointer +} + +func (p *QPointer) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPointer) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPointer(ptr QPointerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPointerPTR().Pointer() + } + return nil +} + +func QPointerFromPointer(ptr unsafe.Pointer) *QPointer { + var n = new(QPointer) + n.SetPointer(ptr) + return n +} + +func (ptr *QPointer) QPointerPTR() *QPointer { + return ptr +} diff --git a/core/qpointer.h b/core/qpointer.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qpointer.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qpointf.cpp b/core/qpointf.cpp new file mode 100755 index 00000000..78fa8857 --- /dev/null +++ b/core/qpointf.cpp @@ -0,0 +1,25 @@ +#include "qpointf.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPointF: public QPointF { +public: +}; + +QtObjectPtr QPointF_NewQPointF(){ + return new QPointF(); +} + +QtObjectPtr QPointF_NewQPointF2(QtObjectPtr point){ + return new QPointF(*static_cast(point)); +} + +int QPointF_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + diff --git a/core/qpointf.go b/core/qpointf.go new file mode 100755 index 00000000..37a5edf3 --- /dev/null +++ b/core/qpointf.go @@ -0,0 +1,55 @@ +package core + +//#include "qpointf.h" +import "C" +import ( + "unsafe" +) + +type QPointF struct { + ptr unsafe.Pointer +} + +type QPointFITF interface { + QPointFPTR() *QPointF +} + +func (p *QPointF) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPointF) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPointF(ptr QPointFITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPointFPTR().Pointer() + } + return nil +} + +func QPointFFromPointer(ptr unsafe.Pointer) *QPointF { + var n = new(QPointF) + n.SetPointer(ptr) + return n +} + +func (ptr *QPointF) QPointFPTR() *QPointF { + return ptr +} + +func NewQPointF() *QPointF { + return QPointFFromPointer(unsafe.Pointer(C.QPointF_NewQPointF())) +} + +func NewQPointF2(point QPointITF) *QPointF { + return QPointFFromPointer(unsafe.Pointer(C.QPointF_NewQPointF2(C.QtObjectPtr(PointerFromQPoint(point))))) +} + +func (ptr *QPointF) IsNull() bool { + if ptr.Pointer() != nil { + return C.QPointF_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} diff --git a/core/qpointf.h b/core/qpointf.h new file mode 100755 index 00000000..ffea95f6 --- /dev/null +++ b/core/qpointf.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QPointF_NewQPointF(); +QtObjectPtr QPointF_NewQPointF2(QtObjectPtr point); +int QPointF_IsNull(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qprocess.cpp b/core/qprocess.cpp new file mode 100755 index 00000000..e7a781bf --- /dev/null +++ b/core/qprocess.cpp @@ -0,0 +1,233 @@ +#include "qprocess.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQProcess: public QProcess { +public: +void Signal_Finished(int exitCode, QProcess::ExitStatus exitStatus){callbackQProcessFinished(this->objectName().toUtf8().data(), exitCode, exitStatus);}; +void Signal_ReadyReadStandardError(){callbackQProcessReadyReadStandardError(this->objectName().toUtf8().data());}; +void Signal_ReadyReadStandardOutput(){callbackQProcessReadyReadStandardOutput(this->objectName().toUtf8().data());}; +void Signal_Started(){callbackQProcessStarted(this->objectName().toUtf8().data());}; +void Signal_StateChanged(QProcess::ProcessState newState){callbackQProcessStateChanged(this->objectName().toUtf8().data(), newState);}; +}; + +QtObjectPtr QProcess_NewQProcess(QtObjectPtr parent){ + return new QProcess(static_cast(parent)); +} + +char* QProcess_Arguments(QtObjectPtr ptr){ + return static_cast(ptr)->arguments().join("|").toUtf8().data(); +} + +int QProcess_AtEnd(QtObjectPtr ptr){ + return static_cast(ptr)->atEnd(); +} + +int QProcess_CanReadLine(QtObjectPtr ptr){ + return static_cast(ptr)->canReadLine(); +} + +void QProcess_Close(QtObjectPtr ptr){ + static_cast(ptr)->close(); +} + +void QProcess_CloseReadChannel(QtObjectPtr ptr, int channel){ + static_cast(ptr)->closeReadChannel(static_cast(channel)); +} + +void QProcess_CloseWriteChannel(QtObjectPtr ptr){ + static_cast(ptr)->closeWriteChannel(); +} + +int QProcess_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +int QProcess_QProcess_Execute2(char* command){ + return QProcess::execute(QString(command)); +} + +int QProcess_QProcess_Execute(char* program, char* arguments){ + return QProcess::execute(QString(program), QString(arguments).split("|", QString::SkipEmptyParts)); +} + +int QProcess_ExitCode(QtObjectPtr ptr){ + return static_cast(ptr)->exitCode(); +} + +int QProcess_ExitStatus(QtObjectPtr ptr){ + return static_cast(ptr)->exitStatus(); +} + +void QProcess_ConnectFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QProcess::finished), static_cast(ptr), static_cast(&MyQProcess::Signal_Finished));; +} + +void QProcess_DisconnectFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QProcess::finished), static_cast(ptr), static_cast(&MyQProcess::Signal_Finished));; +} + +int QProcess_InputChannelMode(QtObjectPtr ptr){ + return static_cast(ptr)->inputChannelMode(); +} + +int QProcess_IsSequential(QtObjectPtr ptr){ + return static_cast(ptr)->isSequential(); +} + +void QProcess_Kill(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "kill"); +} + +char* QProcess_QProcess_NullDevice(){ + return QProcess::nullDevice().toUtf8().data(); +} + +int QProcess_Open(QtObjectPtr ptr, int mode){ + return static_cast(ptr)->open(static_cast(mode)); +} + +int QProcess_ProcessChannelMode(QtObjectPtr ptr){ + return static_cast(ptr)->processChannelMode(); +} + +char* QProcess_Program(QtObjectPtr ptr){ + return static_cast(ptr)->program().toUtf8().data(); +} + +int QProcess_ReadChannel(QtObjectPtr ptr){ + return static_cast(ptr)->readChannel(); +} + +void QProcess_ConnectReadyReadStandardError(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QProcess::readyReadStandardError, static_cast(ptr), static_cast(&MyQProcess::Signal_ReadyReadStandardError));; +} + +void QProcess_DisconnectReadyReadStandardError(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QProcess::readyReadStandardError, static_cast(ptr), static_cast(&MyQProcess::Signal_ReadyReadStandardError));; +} + +void QProcess_ConnectReadyReadStandardOutput(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QProcess::readyReadStandardOutput, static_cast(ptr), static_cast(&MyQProcess::Signal_ReadyReadStandardOutput));; +} + +void QProcess_DisconnectReadyReadStandardOutput(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QProcess::readyReadStandardOutput, static_cast(ptr), static_cast(&MyQProcess::Signal_ReadyReadStandardOutput));; +} + +void QProcess_SetArguments(QtObjectPtr ptr, char* arguments){ + static_cast(ptr)->setArguments(QString(arguments).split("|", QString::SkipEmptyParts)); +} + +void QProcess_SetInputChannelMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setInputChannelMode(static_cast(mode)); +} + +void QProcess_SetProcessChannelMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setProcessChannelMode(static_cast(mode)); +} + +void QProcess_SetProcessEnvironment(QtObjectPtr ptr, QtObjectPtr environment){ + static_cast(ptr)->setProcessEnvironment(*static_cast(environment)); +} + +void QProcess_SetProgram(QtObjectPtr ptr, char* program){ + static_cast(ptr)->setProgram(QString(program)); +} + +void QProcess_SetReadChannel(QtObjectPtr ptr, int channel){ + static_cast(ptr)->setReadChannel(static_cast(channel)); +} + +void QProcess_SetStandardErrorFile(QtObjectPtr ptr, char* fileName, int mode){ + static_cast(ptr)->setStandardErrorFile(QString(fileName), static_cast(mode)); +} + +void QProcess_SetStandardInputFile(QtObjectPtr ptr, char* fileName){ + static_cast(ptr)->setStandardInputFile(QString(fileName)); +} + +void QProcess_SetStandardOutputFile(QtObjectPtr ptr, char* fileName, int mode){ + static_cast(ptr)->setStandardOutputFile(QString(fileName), static_cast(mode)); +} + +void QProcess_SetStandardOutputProcess(QtObjectPtr ptr, QtObjectPtr destination){ + static_cast(ptr)->setStandardOutputProcess(static_cast(destination)); +} + +void QProcess_SetWorkingDirectory(QtObjectPtr ptr, char* dir){ + static_cast(ptr)->setWorkingDirectory(QString(dir)); +} + +void QProcess_Start2(QtObjectPtr ptr, int mode){ + static_cast(ptr)->start(static_cast(mode)); +} + +void QProcess_Start3(QtObjectPtr ptr, char* command, int mode){ + static_cast(ptr)->start(QString(command), static_cast(mode)); +} + +void QProcess_Start(QtObjectPtr ptr, char* program, char* arguments, int mode){ + static_cast(ptr)->start(QString(program), QString(arguments).split("|", QString::SkipEmptyParts), static_cast(mode)); +} + +int QProcess_QProcess_StartDetached2(char* command){ + return QProcess::startDetached(QString(command)); +} + +void QProcess_ConnectStarted(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QProcess::started, static_cast(ptr), static_cast(&MyQProcess::Signal_Started));; +} + +void QProcess_DisconnectStarted(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QProcess::started, static_cast(ptr), static_cast(&MyQProcess::Signal_Started));; +} + +void QProcess_ConnectStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QProcess::stateChanged, static_cast(ptr), static_cast(&MyQProcess::Signal_StateChanged));; +} + +void QProcess_DisconnectStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QProcess::stateChanged, static_cast(ptr), static_cast(&MyQProcess::Signal_StateChanged));; +} + +char* QProcess_QProcess_SystemEnvironment(){ + return QProcess::systemEnvironment().join("|").toUtf8().data(); +} + +void QProcess_Terminate(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "terminate"); +} + +int QProcess_WaitForBytesWritten(QtObjectPtr ptr, int msecs){ + return static_cast(ptr)->waitForBytesWritten(msecs); +} + +int QProcess_WaitForFinished(QtObjectPtr ptr, int msecs){ + return static_cast(ptr)->waitForFinished(msecs); +} + +int QProcess_WaitForReadyRead(QtObjectPtr ptr, int msecs){ + return static_cast(ptr)->waitForReadyRead(msecs); +} + +int QProcess_WaitForStarted(QtObjectPtr ptr, int msecs){ + return static_cast(ptr)->waitForStarted(msecs); +} + +char* QProcess_WorkingDirectory(QtObjectPtr ptr){ + return static_cast(ptr)->workingDirectory().toUtf8().data(); +} + +void QProcess_DestroyQProcess(QtObjectPtr ptr){ + static_cast(ptr)->~QProcess(); +} + diff --git a/core/qprocess.go b/core/qprocess.go new file mode 100755 index 00000000..6612bf81 --- /dev/null +++ b/core/qprocess.go @@ -0,0 +1,453 @@ +package core + +//#include "qprocess.h" +import "C" +import ( + "github.com/therecipe/qt" + "strings" + "unsafe" +) + +type QProcess struct { + QIODevice +} + +type QProcessITF interface { + QIODeviceITF + QProcessPTR() *QProcess +} + +func PointerFromQProcess(ptr QProcessITF) unsafe.Pointer { + if ptr != nil { + return ptr.QProcessPTR().Pointer() + } + return nil +} + +func QProcessFromPointer(ptr unsafe.Pointer) *QProcess { + var n = new(QProcess) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QProcess_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QProcess) QProcessPTR() *QProcess { + return ptr +} + +//QProcess::ExitStatus +type QProcess__ExitStatus int + +var ( + QProcess__NormalExit = QProcess__ExitStatus(0) + QProcess__CrashExit = QProcess__ExitStatus(1) +) + +//QProcess::InputChannelMode +type QProcess__InputChannelMode int + +var ( + QProcess__ManagedInputChannel = QProcess__InputChannelMode(0) + QProcess__ForwardedInputChannel = QProcess__InputChannelMode(1) +) + +//QProcess::ProcessChannel +type QProcess__ProcessChannel int + +var ( + QProcess__StandardOutput = QProcess__ProcessChannel(0) + QProcess__StandardError = QProcess__ProcessChannel(1) +) + +//QProcess::ProcessChannelMode +type QProcess__ProcessChannelMode int + +var ( + QProcess__SeparateChannels = QProcess__ProcessChannelMode(0) + QProcess__MergedChannels = QProcess__ProcessChannelMode(1) + QProcess__ForwardedChannels = QProcess__ProcessChannelMode(2) + QProcess__ForwardedOutputChannel = QProcess__ProcessChannelMode(3) + QProcess__ForwardedErrorChannel = QProcess__ProcessChannelMode(4) +) + +//QProcess::ProcessError +type QProcess__ProcessError int + +var ( + QProcess__FailedToStart = QProcess__ProcessError(0) + QProcess__Crashed = QProcess__ProcessError(1) + QProcess__Timedout = QProcess__ProcessError(2) + QProcess__ReadError = QProcess__ProcessError(3) + QProcess__WriteError = QProcess__ProcessError(4) + QProcess__UnknownError = QProcess__ProcessError(5) +) + +//QProcess::ProcessState +type QProcess__ProcessState int + +var ( + QProcess__NotRunning = QProcess__ProcessState(0) + QProcess__Starting = QProcess__ProcessState(1) + QProcess__Running = QProcess__ProcessState(2) +) + +func NewQProcess(parent QObjectITF) *QProcess { + return QProcessFromPointer(unsafe.Pointer(C.QProcess_NewQProcess(C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func (ptr *QProcess) Arguments() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QProcess_Arguments(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QProcess) AtEnd() bool { + if ptr.Pointer() != nil { + return C.QProcess_AtEnd(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QProcess) CanReadLine() bool { + if ptr.Pointer() != nil { + return C.QProcess_CanReadLine(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QProcess) Close() { + if ptr.Pointer() != nil { + C.QProcess_Close(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QProcess) CloseReadChannel(channel QProcess__ProcessChannel) { + if ptr.Pointer() != nil { + C.QProcess_CloseReadChannel(C.QtObjectPtr(ptr.Pointer()), C.int(channel)) + } +} + +func (ptr *QProcess) CloseWriteChannel() { + if ptr.Pointer() != nil { + C.QProcess_CloseWriteChannel(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QProcess) Error() QProcess__ProcessError { + if ptr.Pointer() != nil { + return QProcess__ProcessError(C.QProcess_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QProcess_Execute2(command string) int { + return int(C.QProcess_QProcess_Execute2(C.CString(command))) +} + +func QProcess_Execute(program string, arguments []string) int { + return int(C.QProcess_QProcess_Execute(C.CString(program), C.CString(strings.Join(arguments, "|")))) +} + +func (ptr *QProcess) ExitCode() int { + if ptr.Pointer() != nil { + return int(C.QProcess_ExitCode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QProcess) ExitStatus() QProcess__ExitStatus { + if ptr.Pointer() != nil { + return QProcess__ExitStatus(C.QProcess_ExitStatus(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QProcess) ConnectFinished(f func(exitCode int, exitStatus QProcess__ExitStatus)) { + if ptr.Pointer() != nil { + C.QProcess_ConnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "finished", f) + } +} + +func (ptr *QProcess) DisconnectFinished() { + if ptr.Pointer() != nil { + C.QProcess_DisconnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "finished") + } +} + +//export callbackQProcessFinished +func callbackQProcessFinished(ptrName *C.char, exitCode C.int, exitStatus C.int) { + qt.GetSignal(C.GoString(ptrName), "finished").(func(int, QProcess__ExitStatus))(int(exitCode), QProcess__ExitStatus(exitStatus)) +} + +func (ptr *QProcess) InputChannelMode() QProcess__InputChannelMode { + if ptr.Pointer() != nil { + return QProcess__InputChannelMode(C.QProcess_InputChannelMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QProcess) IsSequential() bool { + if ptr.Pointer() != nil { + return C.QProcess_IsSequential(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QProcess) Kill() { + if ptr.Pointer() != nil { + C.QProcess_Kill(C.QtObjectPtr(ptr.Pointer())) + } +} + +func QProcess_NullDevice() string { + return C.GoString(C.QProcess_QProcess_NullDevice()) +} + +func (ptr *QProcess) Open(mode QIODevice__OpenModeFlag) bool { + if ptr.Pointer() != nil { + return C.QProcess_Open(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) != 0 + } + return false +} + +func (ptr *QProcess) ProcessChannelMode() QProcess__ProcessChannelMode { + if ptr.Pointer() != nil { + return QProcess__ProcessChannelMode(C.QProcess_ProcessChannelMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QProcess) Program() string { + if ptr.Pointer() != nil { + return C.GoString(C.QProcess_Program(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QProcess) ReadChannel() QProcess__ProcessChannel { + if ptr.Pointer() != nil { + return QProcess__ProcessChannel(C.QProcess_ReadChannel(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QProcess) ConnectReadyReadStandardError(f func()) { + if ptr.Pointer() != nil { + C.QProcess_ConnectReadyReadStandardError(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "readyReadStandardError", f) + } +} + +func (ptr *QProcess) DisconnectReadyReadStandardError() { + if ptr.Pointer() != nil { + C.QProcess_DisconnectReadyReadStandardError(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "readyReadStandardError") + } +} + +//export callbackQProcessReadyReadStandardError +func callbackQProcessReadyReadStandardError(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "readyReadStandardError").(func())() +} + +func (ptr *QProcess) ConnectReadyReadStandardOutput(f func()) { + if ptr.Pointer() != nil { + C.QProcess_ConnectReadyReadStandardOutput(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "readyReadStandardOutput", f) + } +} + +func (ptr *QProcess) DisconnectReadyReadStandardOutput() { + if ptr.Pointer() != nil { + C.QProcess_DisconnectReadyReadStandardOutput(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "readyReadStandardOutput") + } +} + +//export callbackQProcessReadyReadStandardOutput +func callbackQProcessReadyReadStandardOutput(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "readyReadStandardOutput").(func())() +} + +func (ptr *QProcess) SetArguments(arguments []string) { + if ptr.Pointer() != nil { + C.QProcess_SetArguments(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(arguments, "|"))) + } +} + +func (ptr *QProcess) SetInputChannelMode(mode QProcess__InputChannelMode) { + if ptr.Pointer() != nil { + C.QProcess_SetInputChannelMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QProcess) SetProcessChannelMode(mode QProcess__ProcessChannelMode) { + if ptr.Pointer() != nil { + C.QProcess_SetProcessChannelMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QProcess) SetProcessEnvironment(environment QProcessEnvironmentITF) { + if ptr.Pointer() != nil { + C.QProcess_SetProcessEnvironment(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQProcessEnvironment(environment))) + } +} + +func (ptr *QProcess) SetProgram(program string) { + if ptr.Pointer() != nil { + C.QProcess_SetProgram(C.QtObjectPtr(ptr.Pointer()), C.CString(program)) + } +} + +func (ptr *QProcess) SetReadChannel(channel QProcess__ProcessChannel) { + if ptr.Pointer() != nil { + C.QProcess_SetReadChannel(C.QtObjectPtr(ptr.Pointer()), C.int(channel)) + } +} + +func (ptr *QProcess) SetStandardErrorFile(fileName string, mode QIODevice__OpenModeFlag) { + if ptr.Pointer() != nil { + C.QProcess_SetStandardErrorFile(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName), C.int(mode)) + } +} + +func (ptr *QProcess) SetStandardInputFile(fileName string) { + if ptr.Pointer() != nil { + C.QProcess_SetStandardInputFile(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName)) + } +} + +func (ptr *QProcess) SetStandardOutputFile(fileName string, mode QIODevice__OpenModeFlag) { + if ptr.Pointer() != nil { + C.QProcess_SetStandardOutputFile(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName), C.int(mode)) + } +} + +func (ptr *QProcess) SetStandardOutputProcess(destination QProcessITF) { + if ptr.Pointer() != nil { + C.QProcess_SetStandardOutputProcess(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQProcess(destination))) + } +} + +func (ptr *QProcess) SetWorkingDirectory(dir string) { + if ptr.Pointer() != nil { + C.QProcess_SetWorkingDirectory(C.QtObjectPtr(ptr.Pointer()), C.CString(dir)) + } +} + +func (ptr *QProcess) Start2(mode QIODevice__OpenModeFlag) { + if ptr.Pointer() != nil { + C.QProcess_Start2(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QProcess) Start3(command string, mode QIODevice__OpenModeFlag) { + if ptr.Pointer() != nil { + C.QProcess_Start3(C.QtObjectPtr(ptr.Pointer()), C.CString(command), C.int(mode)) + } +} + +func (ptr *QProcess) Start(program string, arguments []string, mode QIODevice__OpenModeFlag) { + if ptr.Pointer() != nil { + C.QProcess_Start(C.QtObjectPtr(ptr.Pointer()), C.CString(program), C.CString(strings.Join(arguments, "|")), C.int(mode)) + } +} + +func QProcess_StartDetached2(command string) bool { + return C.QProcess_QProcess_StartDetached2(C.CString(command)) != 0 +} + +func (ptr *QProcess) ConnectStarted(f func()) { + if ptr.Pointer() != nil { + C.QProcess_ConnectStarted(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "started", f) + } +} + +func (ptr *QProcess) DisconnectStarted() { + if ptr.Pointer() != nil { + C.QProcess_DisconnectStarted(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "started") + } +} + +//export callbackQProcessStarted +func callbackQProcessStarted(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "started").(func())() +} + +func (ptr *QProcess) ConnectStateChanged(f func(newState QProcess__ProcessState)) { + if ptr.Pointer() != nil { + C.QProcess_ConnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stateChanged", f) + } +} + +func (ptr *QProcess) DisconnectStateChanged() { + if ptr.Pointer() != nil { + C.QProcess_DisconnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stateChanged") + } +} + +//export callbackQProcessStateChanged +func callbackQProcessStateChanged(ptrName *C.char, newState C.int) { + qt.GetSignal(C.GoString(ptrName), "stateChanged").(func(QProcess__ProcessState))(QProcess__ProcessState(newState)) +} + +func QProcess_SystemEnvironment() []string { + return strings.Split(C.GoString(C.QProcess_QProcess_SystemEnvironment()), "|") +} + +func (ptr *QProcess) Terminate() { + if ptr.Pointer() != nil { + C.QProcess_Terminate(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QProcess) WaitForBytesWritten(msecs int) bool { + if ptr.Pointer() != nil { + return C.QProcess_WaitForBytesWritten(C.QtObjectPtr(ptr.Pointer()), C.int(msecs)) != 0 + } + return false +} + +func (ptr *QProcess) WaitForFinished(msecs int) bool { + if ptr.Pointer() != nil { + return C.QProcess_WaitForFinished(C.QtObjectPtr(ptr.Pointer()), C.int(msecs)) != 0 + } + return false +} + +func (ptr *QProcess) WaitForReadyRead(msecs int) bool { + if ptr.Pointer() != nil { + return C.QProcess_WaitForReadyRead(C.QtObjectPtr(ptr.Pointer()), C.int(msecs)) != 0 + } + return false +} + +func (ptr *QProcess) WaitForStarted(msecs int) bool { + if ptr.Pointer() != nil { + return C.QProcess_WaitForStarted(C.QtObjectPtr(ptr.Pointer()), C.int(msecs)) != 0 + } + return false +} + +func (ptr *QProcess) WorkingDirectory() string { + if ptr.Pointer() != nil { + return C.GoString(C.QProcess_WorkingDirectory(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QProcess) DestroyQProcess() { + if ptr.Pointer() != nil { + C.QProcess_DestroyQProcess(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qprocess.h b/core/qprocess.h new file mode 100755 index 00000000..68b2bb71 --- /dev/null +++ b/core/qprocess.h @@ -0,0 +1,62 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QProcess_NewQProcess(QtObjectPtr parent); +char* QProcess_Arguments(QtObjectPtr ptr); +int QProcess_AtEnd(QtObjectPtr ptr); +int QProcess_CanReadLine(QtObjectPtr ptr); +void QProcess_Close(QtObjectPtr ptr); +void QProcess_CloseReadChannel(QtObjectPtr ptr, int channel); +void QProcess_CloseWriteChannel(QtObjectPtr ptr); +int QProcess_Error(QtObjectPtr ptr); +int QProcess_QProcess_Execute2(char* command); +int QProcess_QProcess_Execute(char* program, char* arguments); +int QProcess_ExitCode(QtObjectPtr ptr); +int QProcess_ExitStatus(QtObjectPtr ptr); +void QProcess_ConnectFinished(QtObjectPtr ptr); +void QProcess_DisconnectFinished(QtObjectPtr ptr); +int QProcess_InputChannelMode(QtObjectPtr ptr); +int QProcess_IsSequential(QtObjectPtr ptr); +void QProcess_Kill(QtObjectPtr ptr); +char* QProcess_QProcess_NullDevice(); +int QProcess_Open(QtObjectPtr ptr, int mode); +int QProcess_ProcessChannelMode(QtObjectPtr ptr); +char* QProcess_Program(QtObjectPtr ptr); +int QProcess_ReadChannel(QtObjectPtr ptr); +void QProcess_ConnectReadyReadStandardError(QtObjectPtr ptr); +void QProcess_DisconnectReadyReadStandardError(QtObjectPtr ptr); +void QProcess_ConnectReadyReadStandardOutput(QtObjectPtr ptr); +void QProcess_DisconnectReadyReadStandardOutput(QtObjectPtr ptr); +void QProcess_SetArguments(QtObjectPtr ptr, char* arguments); +void QProcess_SetInputChannelMode(QtObjectPtr ptr, int mode); +void QProcess_SetProcessChannelMode(QtObjectPtr ptr, int mode); +void QProcess_SetProcessEnvironment(QtObjectPtr ptr, QtObjectPtr environment); +void QProcess_SetProgram(QtObjectPtr ptr, char* program); +void QProcess_SetReadChannel(QtObjectPtr ptr, int channel); +void QProcess_SetStandardErrorFile(QtObjectPtr ptr, char* fileName, int mode); +void QProcess_SetStandardInputFile(QtObjectPtr ptr, char* fileName); +void QProcess_SetStandardOutputFile(QtObjectPtr ptr, char* fileName, int mode); +void QProcess_SetStandardOutputProcess(QtObjectPtr ptr, QtObjectPtr destination); +void QProcess_SetWorkingDirectory(QtObjectPtr ptr, char* dir); +void QProcess_Start2(QtObjectPtr ptr, int mode); +void QProcess_Start3(QtObjectPtr ptr, char* command, int mode); +void QProcess_Start(QtObjectPtr ptr, char* program, char* arguments, int mode); +int QProcess_QProcess_StartDetached2(char* command); +void QProcess_ConnectStarted(QtObjectPtr ptr); +void QProcess_DisconnectStarted(QtObjectPtr ptr); +void QProcess_ConnectStateChanged(QtObjectPtr ptr); +void QProcess_DisconnectStateChanged(QtObjectPtr ptr); +char* QProcess_QProcess_SystemEnvironment(); +void QProcess_Terminate(QtObjectPtr ptr); +int QProcess_WaitForBytesWritten(QtObjectPtr ptr, int msecs); +int QProcess_WaitForFinished(QtObjectPtr ptr, int msecs); +int QProcess_WaitForReadyRead(QtObjectPtr ptr, int msecs); +int QProcess_WaitForStarted(QtObjectPtr ptr, int msecs); +char* QProcess_WorkingDirectory(QtObjectPtr ptr); +void QProcess_DestroyQProcess(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qprocessenvironment.cpp b/core/qprocessenvironment.cpp new file mode 100755 index 00000000..dc55bad6 --- /dev/null +++ b/core/qprocessenvironment.cpp @@ -0,0 +1,53 @@ +#include "qprocessenvironment.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQProcessEnvironment: public QProcessEnvironment { +public: +}; + +QtObjectPtr QProcessEnvironment_NewQProcessEnvironment(){ + return new QProcessEnvironment(); +} + +QtObjectPtr QProcessEnvironment_NewQProcessEnvironment2(QtObjectPtr other){ + return new QProcessEnvironment(*static_cast(other)); +} + +void QProcessEnvironment_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +int QProcessEnvironment_Contains(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->contains(QString(name)); +} + +int QProcessEnvironment_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +char* QProcessEnvironment_Keys(QtObjectPtr ptr){ + return static_cast(ptr)->keys().join("|").toUtf8().data(); +} + +void QProcessEnvironment_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +char* QProcessEnvironment_ToStringList(QtObjectPtr ptr){ + return static_cast(ptr)->toStringList().join("|").toUtf8().data(); +} + +char* QProcessEnvironment_Value(QtObjectPtr ptr, char* name, char* defaultValue){ + return static_cast(ptr)->value(QString(name), QString(defaultValue)).toUtf8().data(); +} + +void QProcessEnvironment_DestroyQProcessEnvironment(QtObjectPtr ptr){ + static_cast(ptr)->~QProcessEnvironment(); +} + diff --git a/core/qprocessenvironment.go b/core/qprocessenvironment.go new file mode 100755 index 00000000..d026a115 --- /dev/null +++ b/core/qprocessenvironment.go @@ -0,0 +1,102 @@ +package core + +//#include "qprocessenvironment.h" +import "C" +import ( + "strings" + "unsafe" +) + +type QProcessEnvironment struct { + ptr unsafe.Pointer +} + +type QProcessEnvironmentITF interface { + QProcessEnvironmentPTR() *QProcessEnvironment +} + +func (p *QProcessEnvironment) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QProcessEnvironment) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQProcessEnvironment(ptr QProcessEnvironmentITF) unsafe.Pointer { + if ptr != nil { + return ptr.QProcessEnvironmentPTR().Pointer() + } + return nil +} + +func QProcessEnvironmentFromPointer(ptr unsafe.Pointer) *QProcessEnvironment { + var n = new(QProcessEnvironment) + n.SetPointer(ptr) + return n +} + +func (ptr *QProcessEnvironment) QProcessEnvironmentPTR() *QProcessEnvironment { + return ptr +} + +func NewQProcessEnvironment() *QProcessEnvironment { + return QProcessEnvironmentFromPointer(unsafe.Pointer(C.QProcessEnvironment_NewQProcessEnvironment())) +} + +func NewQProcessEnvironment2(other QProcessEnvironmentITF) *QProcessEnvironment { + return QProcessEnvironmentFromPointer(unsafe.Pointer(C.QProcessEnvironment_NewQProcessEnvironment2(C.QtObjectPtr(PointerFromQProcessEnvironment(other))))) +} + +func (ptr *QProcessEnvironment) Clear() { + if ptr.Pointer() != nil { + C.QProcessEnvironment_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QProcessEnvironment) Contains(name string) bool { + if ptr.Pointer() != nil { + return C.QProcessEnvironment_Contains(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) != 0 + } + return false +} + +func (ptr *QProcessEnvironment) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QProcessEnvironment_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QProcessEnvironment) Keys() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QProcessEnvironment_Keys(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QProcessEnvironment) Swap(other QProcessEnvironmentITF) { + if ptr.Pointer() != nil { + C.QProcessEnvironment_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQProcessEnvironment(other))) + } +} + +func (ptr *QProcessEnvironment) ToStringList() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QProcessEnvironment_ToStringList(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QProcessEnvironment) Value(name string, defaultValue string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QProcessEnvironment_Value(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.CString(defaultValue))) + } + return "" +} + +func (ptr *QProcessEnvironment) DestroyQProcessEnvironment() { + if ptr.Pointer() != nil { + C.QProcessEnvironment_DestroyQProcessEnvironment(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qprocessenvironment.h b/core/qprocessenvironment.h new file mode 100755 index 00000000..2cab4ba4 --- /dev/null +++ b/core/qprocessenvironment.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QProcessEnvironment_NewQProcessEnvironment(); +QtObjectPtr QProcessEnvironment_NewQProcessEnvironment2(QtObjectPtr other); +void QProcessEnvironment_Clear(QtObjectPtr ptr); +int QProcessEnvironment_Contains(QtObjectPtr ptr, char* name); +int QProcessEnvironment_IsEmpty(QtObjectPtr ptr); +char* QProcessEnvironment_Keys(QtObjectPtr ptr); +void QProcessEnvironment_Swap(QtObjectPtr ptr, QtObjectPtr other); +char* QProcessEnvironment_ToStringList(QtObjectPtr ptr); +char* QProcessEnvironment_Value(QtObjectPtr ptr, char* name, char* defaultValue); +void QProcessEnvironment_DestroyQProcessEnvironment(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qpropertyanimation.cpp b/core/qpropertyanimation.cpp new file mode 100755 index 00000000..d12f30d1 --- /dev/null +++ b/core/qpropertyanimation.cpp @@ -0,0 +1,38 @@ +#include "qpropertyanimation.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPropertyAnimation: public QPropertyAnimation { +public: +}; + +void QPropertyAnimation_SetPropertyName(QtObjectPtr ptr, QtObjectPtr propertyName){ + static_cast(ptr)->setPropertyName(*static_cast(propertyName)); +} + +void QPropertyAnimation_SetTargetObject(QtObjectPtr ptr, QtObjectPtr target){ + static_cast(ptr)->setTargetObject(static_cast(target)); +} + +QtObjectPtr QPropertyAnimation_TargetObject(QtObjectPtr ptr){ + return static_cast(ptr)->targetObject(); +} + +QtObjectPtr QPropertyAnimation_NewQPropertyAnimation(QtObjectPtr parent){ + return new QPropertyAnimation(static_cast(parent)); +} + +QtObjectPtr QPropertyAnimation_NewQPropertyAnimation2(QtObjectPtr target, QtObjectPtr propertyName, QtObjectPtr parent){ + return new QPropertyAnimation(static_cast(target), *static_cast(propertyName), static_cast(parent)); +} + +void QPropertyAnimation_DestroyQPropertyAnimation(QtObjectPtr ptr){ + static_cast(ptr)->~QPropertyAnimation(); +} + diff --git a/core/qpropertyanimation.go b/core/qpropertyanimation.go new file mode 100755 index 00000000..aad96414 --- /dev/null +++ b/core/qpropertyanimation.go @@ -0,0 +1,71 @@ +package core + +//#include "qpropertyanimation.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QPropertyAnimation struct { + QVariantAnimation +} + +type QPropertyAnimationITF interface { + QVariantAnimationITF + QPropertyAnimationPTR() *QPropertyAnimation +} + +func PointerFromQPropertyAnimation(ptr QPropertyAnimationITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPropertyAnimationPTR().Pointer() + } + return nil +} + +func QPropertyAnimationFromPointer(ptr unsafe.Pointer) *QPropertyAnimation { + var n = new(QPropertyAnimation) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QPropertyAnimation_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QPropertyAnimation) QPropertyAnimationPTR() *QPropertyAnimation { + return ptr +} + +func (ptr *QPropertyAnimation) SetPropertyName(propertyName QByteArrayITF) { + if ptr.Pointer() != nil { + C.QPropertyAnimation_SetPropertyName(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQByteArray(propertyName))) + } +} + +func (ptr *QPropertyAnimation) SetTargetObject(target QObjectITF) { + if ptr.Pointer() != nil { + C.QPropertyAnimation_SetTargetObject(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(target))) + } +} + +func (ptr *QPropertyAnimation) TargetObject() *QObject { + if ptr.Pointer() != nil { + return QObjectFromPointer(unsafe.Pointer(C.QPropertyAnimation_TargetObject(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func NewQPropertyAnimation(parent QObjectITF) *QPropertyAnimation { + return QPropertyAnimationFromPointer(unsafe.Pointer(C.QPropertyAnimation_NewQPropertyAnimation(C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func NewQPropertyAnimation2(target QObjectITF, propertyName QByteArrayITF, parent QObjectITF) *QPropertyAnimation { + return QPropertyAnimationFromPointer(unsafe.Pointer(C.QPropertyAnimation_NewQPropertyAnimation2(C.QtObjectPtr(PointerFromQObject(target)), C.QtObjectPtr(PointerFromQByteArray(propertyName)), C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func (ptr *QPropertyAnimation) DestroyQPropertyAnimation() { + if ptr.Pointer() != nil { + C.QPropertyAnimation_DestroyQPropertyAnimation(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qpropertyanimation.h b/core/qpropertyanimation.h new file mode 100755 index 00000000..5ac70901 --- /dev/null +++ b/core/qpropertyanimation.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QPropertyAnimation_SetPropertyName(QtObjectPtr ptr, QtObjectPtr propertyName); +void QPropertyAnimation_SetTargetObject(QtObjectPtr ptr, QtObjectPtr target); +QtObjectPtr QPropertyAnimation_TargetObject(QtObjectPtr ptr); +QtObjectPtr QPropertyAnimation_NewQPropertyAnimation(QtObjectPtr parent); +QtObjectPtr QPropertyAnimation_NewQPropertyAnimation2(QtObjectPtr target, QtObjectPtr propertyName, QtObjectPtr parent); +void QPropertyAnimation_DestroyQPropertyAnimation(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qqueue.cpp b/core/qqueue.cpp new file mode 100755 index 00000000..931cbf2a --- /dev/null +++ b/core/qqueue.cpp @@ -0,0 +1,8 @@ +#include "qqueue.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qqueue.go b/core/qqueue.go new file mode 100755 index 00000000..f1e30c73 --- /dev/null +++ b/core/qqueue.go @@ -0,0 +1,33 @@ +package core + +//#include "qqueue.h" +import "C" +import ( + "unsafe" +) + +type QQueue struct { + QList +} + +type QQueueITF interface { + QListITF + QQueuePTR() *QQueue +} + +func PointerFromQQueue(ptr QQueueITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQueuePTR().Pointer() + } + return nil +} + +func QQueueFromPointer(ptr unsafe.Pointer) *QQueue { + var n = new(QQueue) + n.SetPointer(ptr) + return n +} + +func (ptr *QQueue) QQueuePTR() *QQueue { + return ptr +} diff --git a/core/qqueue.h b/core/qqueue.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qqueue.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qreadlocker.cpp b/core/qreadlocker.cpp new file mode 100755 index 00000000..b71627e4 --- /dev/null +++ b/core/qreadlocker.cpp @@ -0,0 +1,33 @@ +#include "qreadlocker.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQReadLocker: public QReadLocker { +public: +}; + +QtObjectPtr QReadLocker_NewQReadLocker(QtObjectPtr lock){ + return new QReadLocker(static_cast(lock)); +} + +QtObjectPtr QReadLocker_ReadWriteLock(QtObjectPtr ptr){ + return static_cast(ptr)->readWriteLock(); +} + +void QReadLocker_Relock(QtObjectPtr ptr){ + static_cast(ptr)->relock(); +} + +void QReadLocker_Unlock(QtObjectPtr ptr){ + static_cast(ptr)->unlock(); +} + +void QReadLocker_DestroyQReadLocker(QtObjectPtr ptr){ + static_cast(ptr)->~QReadLocker(); +} + diff --git a/core/qreadlocker.go b/core/qreadlocker.go new file mode 100755 index 00000000..a6dac6dc --- /dev/null +++ b/core/qreadlocker.go @@ -0,0 +1,69 @@ +package core + +//#include "qreadlocker.h" +import "C" +import ( + "unsafe" +) + +type QReadLocker struct { + ptr unsafe.Pointer +} + +type QReadLockerITF interface { + QReadLockerPTR() *QReadLocker +} + +func (p *QReadLocker) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QReadLocker) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQReadLocker(ptr QReadLockerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QReadLockerPTR().Pointer() + } + return nil +} + +func QReadLockerFromPointer(ptr unsafe.Pointer) *QReadLocker { + var n = new(QReadLocker) + n.SetPointer(ptr) + return n +} + +func (ptr *QReadLocker) QReadLockerPTR() *QReadLocker { + return ptr +} + +func NewQReadLocker(lock QReadWriteLockITF) *QReadLocker { + return QReadLockerFromPointer(unsafe.Pointer(C.QReadLocker_NewQReadLocker(C.QtObjectPtr(PointerFromQReadWriteLock(lock))))) +} + +func (ptr *QReadLocker) ReadWriteLock() *QReadWriteLock { + if ptr.Pointer() != nil { + return QReadWriteLockFromPointer(unsafe.Pointer(C.QReadLocker_ReadWriteLock(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QReadLocker) Relock() { + if ptr.Pointer() != nil { + C.QReadLocker_Relock(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QReadLocker) Unlock() { + if ptr.Pointer() != nil { + C.QReadLocker_Unlock(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QReadLocker) DestroyQReadLocker() { + if ptr.Pointer() != nil { + C.QReadLocker_DestroyQReadLocker(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qreadlocker.h b/core/qreadlocker.h new file mode 100755 index 00000000..4e7b3b0c --- /dev/null +++ b/core/qreadlocker.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QReadLocker_NewQReadLocker(QtObjectPtr lock); +QtObjectPtr QReadLocker_ReadWriteLock(QtObjectPtr ptr); +void QReadLocker_Relock(QtObjectPtr ptr); +void QReadLocker_Unlock(QtObjectPtr ptr); +void QReadLocker_DestroyQReadLocker(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qreadwritelock.cpp b/core/qreadwritelock.cpp new file mode 100755 index 00000000..865ca02c --- /dev/null +++ b/core/qreadwritelock.cpp @@ -0,0 +1,48 @@ +#include "qreadwritelock.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQReadWriteLock: public QReadWriteLock { +public: +}; + +QtObjectPtr QReadWriteLock_NewQReadWriteLock(int recursionMode){ + return new QReadWriteLock(static_cast(recursionMode)); +} + +void QReadWriteLock_LockForRead(QtObjectPtr ptr){ + static_cast(ptr)->lockForRead(); +} + +void QReadWriteLock_LockForWrite(QtObjectPtr ptr){ + static_cast(ptr)->lockForWrite(); +} + +int QReadWriteLock_TryLockForRead(QtObjectPtr ptr){ + return static_cast(ptr)->tryLockForRead(); +} + +int QReadWriteLock_TryLockForRead2(QtObjectPtr ptr, int timeout){ + return static_cast(ptr)->tryLockForRead(timeout); +} + +int QReadWriteLock_TryLockForWrite(QtObjectPtr ptr){ + return static_cast(ptr)->tryLockForWrite(); +} + +int QReadWriteLock_TryLockForWrite2(QtObjectPtr ptr, int timeout){ + return static_cast(ptr)->tryLockForWrite(timeout); +} + +void QReadWriteLock_Unlock(QtObjectPtr ptr){ + static_cast(ptr)->unlock(); +} + +void QReadWriteLock_DestroyQReadWriteLock(QtObjectPtr ptr){ + static_cast(ptr)->~QReadWriteLock(); +} + diff --git a/core/qreadwritelock.go b/core/qreadwritelock.go new file mode 100755 index 00000000..471ebba6 --- /dev/null +++ b/core/qreadwritelock.go @@ -0,0 +1,104 @@ +package core + +//#include "qreadwritelock.h" +import "C" +import ( + "unsafe" +) + +type QReadWriteLock struct { + ptr unsafe.Pointer +} + +type QReadWriteLockITF interface { + QReadWriteLockPTR() *QReadWriteLock +} + +func (p *QReadWriteLock) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QReadWriteLock) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQReadWriteLock(ptr QReadWriteLockITF) unsafe.Pointer { + if ptr != nil { + return ptr.QReadWriteLockPTR().Pointer() + } + return nil +} + +func QReadWriteLockFromPointer(ptr unsafe.Pointer) *QReadWriteLock { + var n = new(QReadWriteLock) + n.SetPointer(ptr) + return n +} + +func (ptr *QReadWriteLock) QReadWriteLockPTR() *QReadWriteLock { + return ptr +} + +//QReadWriteLock::RecursionMode +type QReadWriteLock__RecursionMode int + +var ( + QReadWriteLock__NonRecursive = QReadWriteLock__RecursionMode(0) + QReadWriteLock__Recursive = QReadWriteLock__RecursionMode(1) +) + +func NewQReadWriteLock(recursionMode QReadWriteLock__RecursionMode) *QReadWriteLock { + return QReadWriteLockFromPointer(unsafe.Pointer(C.QReadWriteLock_NewQReadWriteLock(C.int(recursionMode)))) +} + +func (ptr *QReadWriteLock) LockForRead() { + if ptr.Pointer() != nil { + C.QReadWriteLock_LockForRead(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QReadWriteLock) LockForWrite() { + if ptr.Pointer() != nil { + C.QReadWriteLock_LockForWrite(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QReadWriteLock) TryLockForRead() bool { + if ptr.Pointer() != nil { + return C.QReadWriteLock_TryLockForRead(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QReadWriteLock) TryLockForRead2(timeout int) bool { + if ptr.Pointer() != nil { + return C.QReadWriteLock_TryLockForRead2(C.QtObjectPtr(ptr.Pointer()), C.int(timeout)) != 0 + } + return false +} + +func (ptr *QReadWriteLock) TryLockForWrite() bool { + if ptr.Pointer() != nil { + return C.QReadWriteLock_TryLockForWrite(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QReadWriteLock) TryLockForWrite2(timeout int) bool { + if ptr.Pointer() != nil { + return C.QReadWriteLock_TryLockForWrite2(C.QtObjectPtr(ptr.Pointer()), C.int(timeout)) != 0 + } + return false +} + +func (ptr *QReadWriteLock) Unlock() { + if ptr.Pointer() != nil { + C.QReadWriteLock_Unlock(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QReadWriteLock) DestroyQReadWriteLock() { + if ptr.Pointer() != nil { + C.QReadWriteLock_DestroyQReadWriteLock(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qreadwritelock.h b/core/qreadwritelock.h new file mode 100755 index 00000000..e91a84d1 --- /dev/null +++ b/core/qreadwritelock.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QReadWriteLock_NewQReadWriteLock(int recursionMode); +void QReadWriteLock_LockForRead(QtObjectPtr ptr); +void QReadWriteLock_LockForWrite(QtObjectPtr ptr); +int QReadWriteLock_TryLockForRead(QtObjectPtr ptr); +int QReadWriteLock_TryLockForRead2(QtObjectPtr ptr, int timeout); +int QReadWriteLock_TryLockForWrite(QtObjectPtr ptr); +int QReadWriteLock_TryLockForWrite2(QtObjectPtr ptr, int timeout); +void QReadWriteLock_Unlock(QtObjectPtr ptr); +void QReadWriteLock_DestroyQReadWriteLock(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qrect.cpp b/core/qrect.cpp new file mode 100755 index 00000000..a08f0220 --- /dev/null +++ b/core/qrect.cpp @@ -0,0 +1,218 @@ +#include "qrect.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQRect: public QRect { +public: +}; + +int QRect_Contains(QtObjectPtr ptr, QtObjectPtr point, int proper){ + return static_cast(ptr)->contains(*static_cast(point), proper != 0); +} + +int QRect_Contains4(QtObjectPtr ptr, QtObjectPtr rectangle, int proper){ + return static_cast(ptr)->contains(*static_cast(rectangle), proper != 0); +} + +int QRect_Intersects(QtObjectPtr ptr, QtObjectPtr rectangle){ + return static_cast(ptr)->intersects(*static_cast(rectangle)); +} + +QtObjectPtr QRect_NewQRect(){ + return new QRect(); +} + +QtObjectPtr QRect_NewQRect2(QtObjectPtr topLeft, QtObjectPtr bottomRight){ + return new QRect(*static_cast(topLeft), *static_cast(bottomRight)); +} + +QtObjectPtr QRect_NewQRect3(QtObjectPtr topLeft, QtObjectPtr size){ + return new QRect(*static_cast(topLeft), *static_cast(size)); +} + +QtObjectPtr QRect_NewQRect4(int x, int y, int width, int height){ + return new QRect(x, y, width, height); +} + +void QRect_Adjust(QtObjectPtr ptr, int dx1, int dy1, int dx2, int dy2){ + static_cast(ptr)->adjust(dx1, dy1, dx2, dy2); +} + +int QRect_Bottom(QtObjectPtr ptr){ + return static_cast(ptr)->bottom(); +} + +int QRect_Contains3(QtObjectPtr ptr, int x, int y){ + return static_cast(ptr)->contains(x, y); +} + +int QRect_Contains2(QtObjectPtr ptr, int x, int y, int proper){ + return static_cast(ptr)->contains(x, y, proper != 0); +} + +void QRect_GetCoords(QtObjectPtr ptr, int x1, int y1, int x2, int y2){ + static_cast(ptr)->getCoords(&x1, &y1, &x2, &y2); +} + +void QRect_GetRect(QtObjectPtr ptr, int x, int y, int width, int height){ + static_cast(ptr)->getRect(&x, &y, &width, &height); +} + +int QRect_Height(QtObjectPtr ptr){ + return static_cast(ptr)->height(); +} + +int QRect_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +int QRect_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QRect_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QRect_Left(QtObjectPtr ptr){ + return static_cast(ptr)->left(); +} + +void QRect_MoveBottom(QtObjectPtr ptr, int y){ + static_cast(ptr)->moveBottom(y); +} + +void QRect_MoveBottomLeft(QtObjectPtr ptr, QtObjectPtr position){ + static_cast(ptr)->moveBottomLeft(*static_cast(position)); +} + +void QRect_MoveBottomRight(QtObjectPtr ptr, QtObjectPtr position){ + static_cast(ptr)->moveBottomRight(*static_cast(position)); +} + +void QRect_MoveCenter(QtObjectPtr ptr, QtObjectPtr position){ + static_cast(ptr)->moveCenter(*static_cast(position)); +} + +void QRect_MoveLeft(QtObjectPtr ptr, int x){ + static_cast(ptr)->moveLeft(x); +} + +void QRect_MoveRight(QtObjectPtr ptr, int x){ + static_cast(ptr)->moveRight(x); +} + +void QRect_MoveTo2(QtObjectPtr ptr, QtObjectPtr position){ + static_cast(ptr)->moveTo(*static_cast(position)); +} + +void QRect_MoveTo(QtObjectPtr ptr, int x, int y){ + static_cast(ptr)->moveTo(x, y); +} + +void QRect_MoveTop(QtObjectPtr ptr, int y){ + static_cast(ptr)->moveTop(y); +} + +void QRect_MoveTopLeft(QtObjectPtr ptr, QtObjectPtr position){ + static_cast(ptr)->moveTopLeft(*static_cast(position)); +} + +void QRect_MoveTopRight(QtObjectPtr ptr, QtObjectPtr position){ + static_cast(ptr)->moveTopRight(*static_cast(position)); +} + +int QRect_Right(QtObjectPtr ptr){ + return static_cast(ptr)->right(); +} + +void QRect_SetBottom(QtObjectPtr ptr, int y){ + static_cast(ptr)->setBottom(y); +} + +void QRect_SetBottomLeft(QtObjectPtr ptr, QtObjectPtr position){ + static_cast(ptr)->setBottomLeft(*static_cast(position)); +} + +void QRect_SetBottomRight(QtObjectPtr ptr, QtObjectPtr position){ + static_cast(ptr)->setBottomRight(*static_cast(position)); +} + +void QRect_SetCoords(QtObjectPtr ptr, int x1, int y1, int x2, int y2){ + static_cast(ptr)->setCoords(x1, y1, x2, y2); +} + +void QRect_SetHeight(QtObjectPtr ptr, int height){ + static_cast(ptr)->setHeight(height); +} + +void QRect_SetLeft(QtObjectPtr ptr, int x){ + static_cast(ptr)->setLeft(x); +} + +void QRect_SetRect(QtObjectPtr ptr, int x, int y, int width, int height){ + static_cast(ptr)->setRect(x, y, width, height); +} + +void QRect_SetRight(QtObjectPtr ptr, int x){ + static_cast(ptr)->setRight(x); +} + +void QRect_SetSize(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->setSize(*static_cast(size)); +} + +void QRect_SetTop(QtObjectPtr ptr, int y){ + static_cast(ptr)->setTop(y); +} + +void QRect_SetTopLeft(QtObjectPtr ptr, QtObjectPtr position){ + static_cast(ptr)->setTopLeft(*static_cast(position)); +} + +void QRect_SetTopRight(QtObjectPtr ptr, QtObjectPtr position){ + static_cast(ptr)->setTopRight(*static_cast(position)); +} + +void QRect_SetWidth(QtObjectPtr ptr, int width){ + static_cast(ptr)->setWidth(width); +} + +void QRect_SetX(QtObjectPtr ptr, int x){ + static_cast(ptr)->setX(x); +} + +void QRect_SetY(QtObjectPtr ptr, int y){ + static_cast(ptr)->setY(y); +} + +int QRect_Top(QtObjectPtr ptr){ + return static_cast(ptr)->top(); +} + +void QRect_Translate2(QtObjectPtr ptr, QtObjectPtr offset){ + static_cast(ptr)->translate(*static_cast(offset)); +} + +void QRect_Translate(QtObjectPtr ptr, int dx, int dy){ + static_cast(ptr)->translate(dx, dy); +} + +int QRect_Width(QtObjectPtr ptr){ + return static_cast(ptr)->width(); +} + +int QRect_X(QtObjectPtr ptr){ + return static_cast(ptr)->x(); +} + +int QRect_Y(QtObjectPtr ptr){ + return static_cast(ptr)->y(); +} + diff --git a/core/qrect.go b/core/qrect.go new file mode 100755 index 00000000..b8c953a3 --- /dev/null +++ b/core/qrect.go @@ -0,0 +1,355 @@ +package core + +//#include "qrect.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QRect struct { + ptr unsafe.Pointer +} + +type QRectITF interface { + QRectPTR() *QRect +} + +func (p *QRect) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QRect) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQRect(ptr QRectITF) unsafe.Pointer { + if ptr != nil { + return ptr.QRectPTR().Pointer() + } + return nil +} + +func QRectFromPointer(ptr unsafe.Pointer) *QRect { + var n = new(QRect) + n.SetPointer(ptr) + return n +} + +func (ptr *QRect) QRectPTR() *QRect { + return ptr +} + +func (ptr *QRect) Contains(point QPointITF, proper bool) bool { + if ptr.Pointer() != nil { + return C.QRect_Contains(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPoint(point)), C.int(qt.GoBoolToInt(proper))) != 0 + } + return false +} + +func (ptr *QRect) Contains4(rectangle QRectITF, proper bool) bool { + if ptr.Pointer() != nil { + return C.QRect_Contains4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQRect(rectangle)), C.int(qt.GoBoolToInt(proper))) != 0 + } + return false +} + +func (ptr *QRect) Intersects(rectangle QRectITF) bool { + if ptr.Pointer() != nil { + return C.QRect_Intersects(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQRect(rectangle))) != 0 + } + return false +} + +func NewQRect() *QRect { + return QRectFromPointer(unsafe.Pointer(C.QRect_NewQRect())) +} + +func NewQRect2(topLeft QPointITF, bottomRight QPointITF) *QRect { + return QRectFromPointer(unsafe.Pointer(C.QRect_NewQRect2(C.QtObjectPtr(PointerFromQPoint(topLeft)), C.QtObjectPtr(PointerFromQPoint(bottomRight))))) +} + +func NewQRect3(topLeft QPointITF, size QSizeITF) *QRect { + return QRectFromPointer(unsafe.Pointer(C.QRect_NewQRect3(C.QtObjectPtr(PointerFromQPoint(topLeft)), C.QtObjectPtr(PointerFromQSize(size))))) +} + +func NewQRect4(x int, y int, width int, height int) *QRect { + return QRectFromPointer(unsafe.Pointer(C.QRect_NewQRect4(C.int(x), C.int(y), C.int(width), C.int(height)))) +} + +func (ptr *QRect) Adjust(dx1 int, dy1 int, dx2 int, dy2 int) { + if ptr.Pointer() != nil { + C.QRect_Adjust(C.QtObjectPtr(ptr.Pointer()), C.int(dx1), C.int(dy1), C.int(dx2), C.int(dy2)) + } +} + +func (ptr *QRect) Bottom() int { + if ptr.Pointer() != nil { + return int(C.QRect_Bottom(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRect) Contains3(x int, y int) bool { + if ptr.Pointer() != nil { + return C.QRect_Contains3(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y)) != 0 + } + return false +} + +func (ptr *QRect) Contains2(x int, y int, proper bool) bool { + if ptr.Pointer() != nil { + return C.QRect_Contains2(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.int(qt.GoBoolToInt(proper))) != 0 + } + return false +} + +func (ptr *QRect) GetCoords(x1 int, y1 int, x2 int, y2 int) { + if ptr.Pointer() != nil { + C.QRect_GetCoords(C.QtObjectPtr(ptr.Pointer()), C.int(x1), C.int(y1), C.int(x2), C.int(y2)) + } +} + +func (ptr *QRect) GetRect(x int, y int, width int, height int) { + if ptr.Pointer() != nil { + C.QRect_GetRect(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.int(width), C.int(height)) + } +} + +func (ptr *QRect) Height() int { + if ptr.Pointer() != nil { + return int(C.QRect_Height(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRect) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QRect_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRect) IsNull() bool { + if ptr.Pointer() != nil { + return C.QRect_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRect) IsValid() bool { + if ptr.Pointer() != nil { + return C.QRect_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRect) Left() int { + if ptr.Pointer() != nil { + return int(C.QRect_Left(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRect) MoveBottom(y int) { + if ptr.Pointer() != nil { + C.QRect_MoveBottom(C.QtObjectPtr(ptr.Pointer()), C.int(y)) + } +} + +func (ptr *QRect) MoveBottomLeft(position QPointITF) { + if ptr.Pointer() != nil { + C.QRect_MoveBottomLeft(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPoint(position))) + } +} + +func (ptr *QRect) MoveBottomRight(position QPointITF) { + if ptr.Pointer() != nil { + C.QRect_MoveBottomRight(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPoint(position))) + } +} + +func (ptr *QRect) MoveCenter(position QPointITF) { + if ptr.Pointer() != nil { + C.QRect_MoveCenter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPoint(position))) + } +} + +func (ptr *QRect) MoveLeft(x int) { + if ptr.Pointer() != nil { + C.QRect_MoveLeft(C.QtObjectPtr(ptr.Pointer()), C.int(x)) + } +} + +func (ptr *QRect) MoveRight(x int) { + if ptr.Pointer() != nil { + C.QRect_MoveRight(C.QtObjectPtr(ptr.Pointer()), C.int(x)) + } +} + +func (ptr *QRect) MoveTo2(position QPointITF) { + if ptr.Pointer() != nil { + C.QRect_MoveTo2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPoint(position))) + } +} + +func (ptr *QRect) MoveTo(x int, y int) { + if ptr.Pointer() != nil { + C.QRect_MoveTo(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y)) + } +} + +func (ptr *QRect) MoveTop(y int) { + if ptr.Pointer() != nil { + C.QRect_MoveTop(C.QtObjectPtr(ptr.Pointer()), C.int(y)) + } +} + +func (ptr *QRect) MoveTopLeft(position QPointITF) { + if ptr.Pointer() != nil { + C.QRect_MoveTopLeft(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPoint(position))) + } +} + +func (ptr *QRect) MoveTopRight(position QPointITF) { + if ptr.Pointer() != nil { + C.QRect_MoveTopRight(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPoint(position))) + } +} + +func (ptr *QRect) Right() int { + if ptr.Pointer() != nil { + return int(C.QRect_Right(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRect) SetBottom(y int) { + if ptr.Pointer() != nil { + C.QRect_SetBottom(C.QtObjectPtr(ptr.Pointer()), C.int(y)) + } +} + +func (ptr *QRect) SetBottomLeft(position QPointITF) { + if ptr.Pointer() != nil { + C.QRect_SetBottomLeft(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPoint(position))) + } +} + +func (ptr *QRect) SetBottomRight(position QPointITF) { + if ptr.Pointer() != nil { + C.QRect_SetBottomRight(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPoint(position))) + } +} + +func (ptr *QRect) SetCoords(x1 int, y1 int, x2 int, y2 int) { + if ptr.Pointer() != nil { + C.QRect_SetCoords(C.QtObjectPtr(ptr.Pointer()), C.int(x1), C.int(y1), C.int(x2), C.int(y2)) + } +} + +func (ptr *QRect) SetHeight(height int) { + if ptr.Pointer() != nil { + C.QRect_SetHeight(C.QtObjectPtr(ptr.Pointer()), C.int(height)) + } +} + +func (ptr *QRect) SetLeft(x int) { + if ptr.Pointer() != nil { + C.QRect_SetLeft(C.QtObjectPtr(ptr.Pointer()), C.int(x)) + } +} + +func (ptr *QRect) SetRect(x int, y int, width int, height int) { + if ptr.Pointer() != nil { + C.QRect_SetRect(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.int(width), C.int(height)) + } +} + +func (ptr *QRect) SetRight(x int) { + if ptr.Pointer() != nil { + C.QRect_SetRight(C.QtObjectPtr(ptr.Pointer()), C.int(x)) + } +} + +func (ptr *QRect) SetSize(size QSizeITF) { + if ptr.Pointer() != nil { + C.QRect_SetSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSize(size))) + } +} + +func (ptr *QRect) SetTop(y int) { + if ptr.Pointer() != nil { + C.QRect_SetTop(C.QtObjectPtr(ptr.Pointer()), C.int(y)) + } +} + +func (ptr *QRect) SetTopLeft(position QPointITF) { + if ptr.Pointer() != nil { + C.QRect_SetTopLeft(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPoint(position))) + } +} + +func (ptr *QRect) SetTopRight(position QPointITF) { + if ptr.Pointer() != nil { + C.QRect_SetTopRight(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPoint(position))) + } +} + +func (ptr *QRect) SetWidth(width int) { + if ptr.Pointer() != nil { + C.QRect_SetWidth(C.QtObjectPtr(ptr.Pointer()), C.int(width)) + } +} + +func (ptr *QRect) SetX(x int) { + if ptr.Pointer() != nil { + C.QRect_SetX(C.QtObjectPtr(ptr.Pointer()), C.int(x)) + } +} + +func (ptr *QRect) SetY(y int) { + if ptr.Pointer() != nil { + C.QRect_SetY(C.QtObjectPtr(ptr.Pointer()), C.int(y)) + } +} + +func (ptr *QRect) Top() int { + if ptr.Pointer() != nil { + return int(C.QRect_Top(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRect) Translate2(offset QPointITF) { + if ptr.Pointer() != nil { + C.QRect_Translate2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPoint(offset))) + } +} + +func (ptr *QRect) Translate(dx int, dy int) { + if ptr.Pointer() != nil { + C.QRect_Translate(C.QtObjectPtr(ptr.Pointer()), C.int(dx), C.int(dy)) + } +} + +func (ptr *QRect) Width() int { + if ptr.Pointer() != nil { + return int(C.QRect_Width(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRect) X() int { + if ptr.Pointer() != nil { + return int(C.QRect_X(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRect) Y() int { + if ptr.Pointer() != nil { + return int(C.QRect_Y(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/core/qrect.h b/core/qrect.h new file mode 100755 index 00000000..f2f57f5e --- /dev/null +++ b/core/qrect.h @@ -0,0 +1,60 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QRect_Contains(QtObjectPtr ptr, QtObjectPtr point, int proper); +int QRect_Contains4(QtObjectPtr ptr, QtObjectPtr rectangle, int proper); +int QRect_Intersects(QtObjectPtr ptr, QtObjectPtr rectangle); +QtObjectPtr QRect_NewQRect(); +QtObjectPtr QRect_NewQRect2(QtObjectPtr topLeft, QtObjectPtr bottomRight); +QtObjectPtr QRect_NewQRect3(QtObjectPtr topLeft, QtObjectPtr size); +QtObjectPtr QRect_NewQRect4(int x, int y, int width, int height); +void QRect_Adjust(QtObjectPtr ptr, int dx1, int dy1, int dx2, int dy2); +int QRect_Bottom(QtObjectPtr ptr); +int QRect_Contains3(QtObjectPtr ptr, int x, int y); +int QRect_Contains2(QtObjectPtr ptr, int x, int y, int proper); +void QRect_GetCoords(QtObjectPtr ptr, int x1, int y1, int x2, int y2); +void QRect_GetRect(QtObjectPtr ptr, int x, int y, int width, int height); +int QRect_Height(QtObjectPtr ptr); +int QRect_IsEmpty(QtObjectPtr ptr); +int QRect_IsNull(QtObjectPtr ptr); +int QRect_IsValid(QtObjectPtr ptr); +int QRect_Left(QtObjectPtr ptr); +void QRect_MoveBottom(QtObjectPtr ptr, int y); +void QRect_MoveBottomLeft(QtObjectPtr ptr, QtObjectPtr position); +void QRect_MoveBottomRight(QtObjectPtr ptr, QtObjectPtr position); +void QRect_MoveCenter(QtObjectPtr ptr, QtObjectPtr position); +void QRect_MoveLeft(QtObjectPtr ptr, int x); +void QRect_MoveRight(QtObjectPtr ptr, int x); +void QRect_MoveTo2(QtObjectPtr ptr, QtObjectPtr position); +void QRect_MoveTo(QtObjectPtr ptr, int x, int y); +void QRect_MoveTop(QtObjectPtr ptr, int y); +void QRect_MoveTopLeft(QtObjectPtr ptr, QtObjectPtr position); +void QRect_MoveTopRight(QtObjectPtr ptr, QtObjectPtr position); +int QRect_Right(QtObjectPtr ptr); +void QRect_SetBottom(QtObjectPtr ptr, int y); +void QRect_SetBottomLeft(QtObjectPtr ptr, QtObjectPtr position); +void QRect_SetBottomRight(QtObjectPtr ptr, QtObjectPtr position); +void QRect_SetCoords(QtObjectPtr ptr, int x1, int y1, int x2, int y2); +void QRect_SetHeight(QtObjectPtr ptr, int height); +void QRect_SetLeft(QtObjectPtr ptr, int x); +void QRect_SetRect(QtObjectPtr ptr, int x, int y, int width, int height); +void QRect_SetRight(QtObjectPtr ptr, int x); +void QRect_SetSize(QtObjectPtr ptr, QtObjectPtr size); +void QRect_SetTop(QtObjectPtr ptr, int y); +void QRect_SetTopLeft(QtObjectPtr ptr, QtObjectPtr position); +void QRect_SetTopRight(QtObjectPtr ptr, QtObjectPtr position); +void QRect_SetWidth(QtObjectPtr ptr, int width); +void QRect_SetX(QtObjectPtr ptr, int x); +void QRect_SetY(QtObjectPtr ptr, int y); +int QRect_Top(QtObjectPtr ptr); +void QRect_Translate2(QtObjectPtr ptr, QtObjectPtr offset); +void QRect_Translate(QtObjectPtr ptr, int dx, int dy); +int QRect_Width(QtObjectPtr ptr); +int QRect_X(QtObjectPtr ptr); +int QRect_Y(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qrectf.cpp b/core/qrectf.cpp new file mode 100755 index 00000000..cb447b69 --- /dev/null +++ b/core/qrectf.cpp @@ -0,0 +1,105 @@ +#include "qrectf.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQRectF: public QRectF { +public: +}; + +int QRectF_Contains(QtObjectPtr ptr, QtObjectPtr point){ + return static_cast(ptr)->contains(*static_cast(point)); +} + +int QRectF_Contains3(QtObjectPtr ptr, QtObjectPtr rectangle){ + return static_cast(ptr)->contains(*static_cast(rectangle)); +} + +int QRectF_Intersects(QtObjectPtr ptr, QtObjectPtr rectangle){ + return static_cast(ptr)->intersects(*static_cast(rectangle)); +} + +QtObjectPtr QRectF_NewQRectF(){ + return new QRectF(); +} + +QtObjectPtr QRectF_NewQRectF3(QtObjectPtr topLeft, QtObjectPtr bottomRight){ + return new QRectF(*static_cast(topLeft), *static_cast(bottomRight)); +} + +QtObjectPtr QRectF_NewQRectF2(QtObjectPtr topLeft, QtObjectPtr size){ + return new QRectF(*static_cast(topLeft), *static_cast(size)); +} + +QtObjectPtr QRectF_NewQRectF5(QtObjectPtr rectangle){ + return new QRectF(*static_cast(rectangle)); +} + +int QRectF_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +int QRectF_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QRectF_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +void QRectF_MoveBottomLeft(QtObjectPtr ptr, QtObjectPtr position){ + static_cast(ptr)->moveBottomLeft(*static_cast(position)); +} + +void QRectF_MoveBottomRight(QtObjectPtr ptr, QtObjectPtr position){ + static_cast(ptr)->moveBottomRight(*static_cast(position)); +} + +void QRectF_MoveCenter(QtObjectPtr ptr, QtObjectPtr position){ + static_cast(ptr)->moveCenter(*static_cast(position)); +} + +void QRectF_MoveTo2(QtObjectPtr ptr, QtObjectPtr position){ + static_cast(ptr)->moveTo(*static_cast(position)); +} + +void QRectF_MoveTopLeft(QtObjectPtr ptr, QtObjectPtr position){ + static_cast(ptr)->moveTopLeft(*static_cast(position)); +} + +void QRectF_MoveTopRight(QtObjectPtr ptr, QtObjectPtr position){ + static_cast(ptr)->moveTopRight(*static_cast(position)); +} + +void QRectF_SetBottomLeft(QtObjectPtr ptr, QtObjectPtr position){ + static_cast(ptr)->setBottomLeft(*static_cast(position)); +} + +void QRectF_SetBottomRight(QtObjectPtr ptr, QtObjectPtr position){ + static_cast(ptr)->setBottomRight(*static_cast(position)); +} + +void QRectF_SetSize(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->setSize(*static_cast(size)); +} + +void QRectF_SetTopLeft(QtObjectPtr ptr, QtObjectPtr position){ + static_cast(ptr)->setTopLeft(*static_cast(position)); +} + +void QRectF_SetTopRight(QtObjectPtr ptr, QtObjectPtr position){ + static_cast(ptr)->setTopRight(*static_cast(position)); +} + +void QRectF_Translate2(QtObjectPtr ptr, QtObjectPtr offset){ + static_cast(ptr)->translate(*static_cast(offset)); +} + diff --git a/core/qrectf.go b/core/qrectf.go new file mode 100755 index 00000000..c9bf8e63 --- /dev/null +++ b/core/qrectf.go @@ -0,0 +1,170 @@ +package core + +//#include "qrectf.h" +import "C" +import ( + "unsafe" +) + +type QRectF struct { + ptr unsafe.Pointer +} + +type QRectFITF interface { + QRectFPTR() *QRectF +} + +func (p *QRectF) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QRectF) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQRectF(ptr QRectFITF) unsafe.Pointer { + if ptr != nil { + return ptr.QRectFPTR().Pointer() + } + return nil +} + +func QRectFFromPointer(ptr unsafe.Pointer) *QRectF { + var n = new(QRectF) + n.SetPointer(ptr) + return n +} + +func (ptr *QRectF) QRectFPTR() *QRectF { + return ptr +} + +func (ptr *QRectF) Contains(point QPointFITF) bool { + if ptr.Pointer() != nil { + return C.QRectF_Contains(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPointF(point))) != 0 + } + return false +} + +func (ptr *QRectF) Contains3(rectangle QRectFITF) bool { + if ptr.Pointer() != nil { + return C.QRectF_Contains3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQRectF(rectangle))) != 0 + } + return false +} + +func (ptr *QRectF) Intersects(rectangle QRectFITF) bool { + if ptr.Pointer() != nil { + return C.QRectF_Intersects(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQRectF(rectangle))) != 0 + } + return false +} + +func NewQRectF() *QRectF { + return QRectFFromPointer(unsafe.Pointer(C.QRectF_NewQRectF())) +} + +func NewQRectF3(topLeft QPointFITF, bottomRight QPointFITF) *QRectF { + return QRectFFromPointer(unsafe.Pointer(C.QRectF_NewQRectF3(C.QtObjectPtr(PointerFromQPointF(topLeft)), C.QtObjectPtr(PointerFromQPointF(bottomRight))))) +} + +func NewQRectF2(topLeft QPointFITF, size QSizeFITF) *QRectF { + return QRectFFromPointer(unsafe.Pointer(C.QRectF_NewQRectF2(C.QtObjectPtr(PointerFromQPointF(topLeft)), C.QtObjectPtr(PointerFromQSizeF(size))))) +} + +func NewQRectF5(rectangle QRectITF) *QRectF { + return QRectFFromPointer(unsafe.Pointer(C.QRectF_NewQRectF5(C.QtObjectPtr(PointerFromQRect(rectangle))))) +} + +func (ptr *QRectF) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QRectF_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRectF) IsNull() bool { + if ptr.Pointer() != nil { + return C.QRectF_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRectF) IsValid() bool { + if ptr.Pointer() != nil { + return C.QRectF_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRectF) MoveBottomLeft(position QPointFITF) { + if ptr.Pointer() != nil { + C.QRectF_MoveBottomLeft(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPointF(position))) + } +} + +func (ptr *QRectF) MoveBottomRight(position QPointFITF) { + if ptr.Pointer() != nil { + C.QRectF_MoveBottomRight(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPointF(position))) + } +} + +func (ptr *QRectF) MoveCenter(position QPointFITF) { + if ptr.Pointer() != nil { + C.QRectF_MoveCenter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPointF(position))) + } +} + +func (ptr *QRectF) MoveTo2(position QPointFITF) { + if ptr.Pointer() != nil { + C.QRectF_MoveTo2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPointF(position))) + } +} + +func (ptr *QRectF) MoveTopLeft(position QPointFITF) { + if ptr.Pointer() != nil { + C.QRectF_MoveTopLeft(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPointF(position))) + } +} + +func (ptr *QRectF) MoveTopRight(position QPointFITF) { + if ptr.Pointer() != nil { + C.QRectF_MoveTopRight(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPointF(position))) + } +} + +func (ptr *QRectF) SetBottomLeft(position QPointFITF) { + if ptr.Pointer() != nil { + C.QRectF_SetBottomLeft(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPointF(position))) + } +} + +func (ptr *QRectF) SetBottomRight(position QPointFITF) { + if ptr.Pointer() != nil { + C.QRectF_SetBottomRight(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPointF(position))) + } +} + +func (ptr *QRectF) SetSize(size QSizeFITF) { + if ptr.Pointer() != nil { + C.QRectF_SetSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSizeF(size))) + } +} + +func (ptr *QRectF) SetTopLeft(position QPointFITF) { + if ptr.Pointer() != nil { + C.QRectF_SetTopLeft(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPointF(position))) + } +} + +func (ptr *QRectF) SetTopRight(position QPointFITF) { + if ptr.Pointer() != nil { + C.QRectF_SetTopRight(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPointF(position))) + } +} + +func (ptr *QRectF) Translate2(offset QPointFITF) { + if ptr.Pointer() != nil { + C.QRectF_Translate2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPointF(offset))) + } +} diff --git a/core/qrectf.h b/core/qrectf.h new file mode 100755 index 00000000..c960cf97 --- /dev/null +++ b/core/qrectf.h @@ -0,0 +1,31 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QRectF_Contains(QtObjectPtr ptr, QtObjectPtr point); +int QRectF_Contains3(QtObjectPtr ptr, QtObjectPtr rectangle); +int QRectF_Intersects(QtObjectPtr ptr, QtObjectPtr rectangle); +QtObjectPtr QRectF_NewQRectF(); +QtObjectPtr QRectF_NewQRectF3(QtObjectPtr topLeft, QtObjectPtr bottomRight); +QtObjectPtr QRectF_NewQRectF2(QtObjectPtr topLeft, QtObjectPtr size); +QtObjectPtr QRectF_NewQRectF5(QtObjectPtr rectangle); +int QRectF_IsEmpty(QtObjectPtr ptr); +int QRectF_IsNull(QtObjectPtr ptr); +int QRectF_IsValid(QtObjectPtr ptr); +void QRectF_MoveBottomLeft(QtObjectPtr ptr, QtObjectPtr position); +void QRectF_MoveBottomRight(QtObjectPtr ptr, QtObjectPtr position); +void QRectF_MoveCenter(QtObjectPtr ptr, QtObjectPtr position); +void QRectF_MoveTo2(QtObjectPtr ptr, QtObjectPtr position); +void QRectF_MoveTopLeft(QtObjectPtr ptr, QtObjectPtr position); +void QRectF_MoveTopRight(QtObjectPtr ptr, QtObjectPtr position); +void QRectF_SetBottomLeft(QtObjectPtr ptr, QtObjectPtr position); +void QRectF_SetBottomRight(QtObjectPtr ptr, QtObjectPtr position); +void QRectF_SetSize(QtObjectPtr ptr, QtObjectPtr size); +void QRectF_SetTopLeft(QtObjectPtr ptr, QtObjectPtr position); +void QRectF_SetTopRight(QtObjectPtr ptr, QtObjectPtr position); +void QRectF_Translate2(QtObjectPtr ptr, QtObjectPtr offset); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qregexp.cpp b/core/qregexp.cpp new file mode 100755 index 00000000..be56fcb3 --- /dev/null +++ b/core/qregexp.cpp @@ -0,0 +1,112 @@ +#include "qregexp.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQRegExp: public QRegExp { +public: +}; + +QtObjectPtr QRegExp_NewQRegExp(){ + return new QRegExp(); +} + +QtObjectPtr QRegExp_NewQRegExp3(QtObjectPtr rx){ + return new QRegExp(*static_cast(rx)); +} + +QtObjectPtr QRegExp_NewQRegExp2(char* pattern, int cs, int syntax){ + return new QRegExp(QString(pattern), static_cast(cs), static_cast(syntax)); +} + +char* QRegExp_Cap(QtObjectPtr ptr, int nth){ + return static_cast(ptr)->cap(nth).toUtf8().data(); +} + +char* QRegExp_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +int QRegExp_CaptureCount(QtObjectPtr ptr){ + return static_cast(ptr)->captureCount(); +} + +char* QRegExp_CapturedTexts(QtObjectPtr ptr){ + return static_cast(ptr)->capturedTexts().join("|").toUtf8().data(); +} + +int QRegExp_CaseSensitivity(QtObjectPtr ptr){ + return static_cast(ptr)->caseSensitivity(); +} + +char* QRegExp_QRegExp_Escape(char* str){ + return QRegExp::escape(QString(str)).toUtf8().data(); +} + +int QRegExp_ExactMatch(QtObjectPtr ptr, char* str){ + return static_cast(ptr)->exactMatch(QString(str)); +} + +int QRegExp_IndexIn(QtObjectPtr ptr, char* str, int offset, int caretMode){ + return static_cast(ptr)->indexIn(QString(str), offset, static_cast(caretMode)); +} + +int QRegExp_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +int QRegExp_IsMinimal(QtObjectPtr ptr){ + return static_cast(ptr)->isMinimal(); +} + +int QRegExp_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QRegExp_LastIndexIn(QtObjectPtr ptr, char* str, int offset, int caretMode){ + return static_cast(ptr)->lastIndexIn(QString(str), offset, static_cast(caretMode)); +} + +int QRegExp_MatchedLength(QtObjectPtr ptr){ + return static_cast(ptr)->matchedLength(); +} + +char* QRegExp_Pattern(QtObjectPtr ptr){ + return static_cast(ptr)->pattern().toUtf8().data(); +} + +int QRegExp_PatternSyntax(QtObjectPtr ptr){ + return static_cast(ptr)->patternSyntax(); +} + +int QRegExp_Pos(QtObjectPtr ptr, int nth){ + return static_cast(ptr)->pos(nth); +} + +void QRegExp_SetCaseSensitivity(QtObjectPtr ptr, int cs){ + static_cast(ptr)->setCaseSensitivity(static_cast(cs)); +} + +void QRegExp_SetMinimal(QtObjectPtr ptr, int minimal){ + static_cast(ptr)->setMinimal(minimal != 0); +} + +void QRegExp_SetPattern(QtObjectPtr ptr, char* pattern){ + static_cast(ptr)->setPattern(QString(pattern)); +} + +void QRegExp_SetPatternSyntax(QtObjectPtr ptr, int syntax){ + static_cast(ptr)->setPatternSyntax(static_cast(syntax)); +} + +void QRegExp_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QRegExp_DestroyQRegExp(QtObjectPtr ptr){ + static_cast(ptr)->~QRegExp(); +} + diff --git a/core/qregexp.go b/core/qregexp.go new file mode 100755 index 00000000..37f50756 --- /dev/null +++ b/core/qregexp.go @@ -0,0 +1,220 @@ +package core + +//#include "qregexp.h" +import "C" +import ( + "github.com/therecipe/qt" + "strings" + "unsafe" +) + +type QRegExp struct { + ptr unsafe.Pointer +} + +type QRegExpITF interface { + QRegExpPTR() *QRegExp +} + +func (p *QRegExp) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QRegExp) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQRegExp(ptr QRegExpITF) unsafe.Pointer { + if ptr != nil { + return ptr.QRegExpPTR().Pointer() + } + return nil +} + +func QRegExpFromPointer(ptr unsafe.Pointer) *QRegExp { + var n = new(QRegExp) + n.SetPointer(ptr) + return n +} + +func (ptr *QRegExp) QRegExpPTR() *QRegExp { + return ptr +} + +//QRegExp::CaretMode +type QRegExp__CaretMode int + +var ( + QRegExp__CaretAtZero = QRegExp__CaretMode(0) + QRegExp__CaretAtOffset = QRegExp__CaretMode(1) + QRegExp__CaretWontMatch = QRegExp__CaretMode(2) +) + +//QRegExp::PatternSyntax +type QRegExp__PatternSyntax int + +var ( + QRegExp__RegExp = QRegExp__PatternSyntax(0) + QRegExp__Wildcard = QRegExp__PatternSyntax(1) + QRegExp__FixedString = QRegExp__PatternSyntax(2) + QRegExp__RegExp2 = QRegExp__PatternSyntax(3) + QRegExp__WildcardUnix = QRegExp__PatternSyntax(4) + QRegExp__W3CXmlSchema11 = QRegExp__PatternSyntax(5) +) + +func NewQRegExp() *QRegExp { + return QRegExpFromPointer(unsafe.Pointer(C.QRegExp_NewQRegExp())) +} + +func NewQRegExp3(rx QRegExpITF) *QRegExp { + return QRegExpFromPointer(unsafe.Pointer(C.QRegExp_NewQRegExp3(C.QtObjectPtr(PointerFromQRegExp(rx))))) +} + +func NewQRegExp2(pattern string, cs Qt__CaseSensitivity, syntax QRegExp__PatternSyntax) *QRegExp { + return QRegExpFromPointer(unsafe.Pointer(C.QRegExp_NewQRegExp2(C.CString(pattern), C.int(cs), C.int(syntax)))) +} + +func (ptr *QRegExp) Cap(nth int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QRegExp_Cap(C.QtObjectPtr(ptr.Pointer()), C.int(nth))) + } + return "" +} + +func (ptr *QRegExp) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QRegExp_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QRegExp) CaptureCount() int { + if ptr.Pointer() != nil { + return int(C.QRegExp_CaptureCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRegExp) CapturedTexts() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QRegExp_CapturedTexts(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QRegExp) CaseSensitivity() Qt__CaseSensitivity { + if ptr.Pointer() != nil { + return Qt__CaseSensitivity(C.QRegExp_CaseSensitivity(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QRegExp_Escape(str string) string { + return C.GoString(C.QRegExp_QRegExp_Escape(C.CString(str))) +} + +func (ptr *QRegExp) ExactMatch(str string) bool { + if ptr.Pointer() != nil { + return C.QRegExp_ExactMatch(C.QtObjectPtr(ptr.Pointer()), C.CString(str)) != 0 + } + return false +} + +func (ptr *QRegExp) IndexIn(str string, offset int, caretMode QRegExp__CaretMode) int { + if ptr.Pointer() != nil { + return int(C.QRegExp_IndexIn(C.QtObjectPtr(ptr.Pointer()), C.CString(str), C.int(offset), C.int(caretMode))) + } + return 0 +} + +func (ptr *QRegExp) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QRegExp_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRegExp) IsMinimal() bool { + if ptr.Pointer() != nil { + return C.QRegExp_IsMinimal(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRegExp) IsValid() bool { + if ptr.Pointer() != nil { + return C.QRegExp_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRegExp) LastIndexIn(str string, offset int, caretMode QRegExp__CaretMode) int { + if ptr.Pointer() != nil { + return int(C.QRegExp_LastIndexIn(C.QtObjectPtr(ptr.Pointer()), C.CString(str), C.int(offset), C.int(caretMode))) + } + return 0 +} + +func (ptr *QRegExp) MatchedLength() int { + if ptr.Pointer() != nil { + return int(C.QRegExp_MatchedLength(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRegExp) Pattern() string { + if ptr.Pointer() != nil { + return C.GoString(C.QRegExp_Pattern(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QRegExp) PatternSyntax() QRegExp__PatternSyntax { + if ptr.Pointer() != nil { + return QRegExp__PatternSyntax(C.QRegExp_PatternSyntax(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRegExp) Pos(nth int) int { + if ptr.Pointer() != nil { + return int(C.QRegExp_Pos(C.QtObjectPtr(ptr.Pointer()), C.int(nth))) + } + return 0 +} + +func (ptr *QRegExp) SetCaseSensitivity(cs Qt__CaseSensitivity) { + if ptr.Pointer() != nil { + C.QRegExp_SetCaseSensitivity(C.QtObjectPtr(ptr.Pointer()), C.int(cs)) + } +} + +func (ptr *QRegExp) SetMinimal(minimal bool) { + if ptr.Pointer() != nil { + C.QRegExp_SetMinimal(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(minimal))) + } +} + +func (ptr *QRegExp) SetPattern(pattern string) { + if ptr.Pointer() != nil { + C.QRegExp_SetPattern(C.QtObjectPtr(ptr.Pointer()), C.CString(pattern)) + } +} + +func (ptr *QRegExp) SetPatternSyntax(syntax QRegExp__PatternSyntax) { + if ptr.Pointer() != nil { + C.QRegExp_SetPatternSyntax(C.QtObjectPtr(ptr.Pointer()), C.int(syntax)) + } +} + +func (ptr *QRegExp) Swap(other QRegExpITF) { + if ptr.Pointer() != nil { + C.QRegExp_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQRegExp(other))) + } +} + +func (ptr *QRegExp) DestroyQRegExp() { + if ptr.Pointer() != nil { + C.QRegExp_DestroyQRegExp(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qregexp.h b/core/qregexp.h new file mode 100755 index 00000000..0ecc3725 --- /dev/null +++ b/core/qregexp.h @@ -0,0 +1,34 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QRegExp_NewQRegExp(); +QtObjectPtr QRegExp_NewQRegExp3(QtObjectPtr rx); +QtObjectPtr QRegExp_NewQRegExp2(char* pattern, int cs, int syntax); +char* QRegExp_Cap(QtObjectPtr ptr, int nth); +char* QRegExp_ErrorString(QtObjectPtr ptr); +int QRegExp_CaptureCount(QtObjectPtr ptr); +char* QRegExp_CapturedTexts(QtObjectPtr ptr); +int QRegExp_CaseSensitivity(QtObjectPtr ptr); +char* QRegExp_QRegExp_Escape(char* str); +int QRegExp_ExactMatch(QtObjectPtr ptr, char* str); +int QRegExp_IndexIn(QtObjectPtr ptr, char* str, int offset, int caretMode); +int QRegExp_IsEmpty(QtObjectPtr ptr); +int QRegExp_IsMinimal(QtObjectPtr ptr); +int QRegExp_IsValid(QtObjectPtr ptr); +int QRegExp_LastIndexIn(QtObjectPtr ptr, char* str, int offset, int caretMode); +int QRegExp_MatchedLength(QtObjectPtr ptr); +char* QRegExp_Pattern(QtObjectPtr ptr); +int QRegExp_PatternSyntax(QtObjectPtr ptr); +int QRegExp_Pos(QtObjectPtr ptr, int nth); +void QRegExp_SetCaseSensitivity(QtObjectPtr ptr, int cs); +void QRegExp_SetMinimal(QtObjectPtr ptr, int minimal); +void QRegExp_SetPattern(QtObjectPtr ptr, char* pattern); +void QRegExp_SetPatternSyntax(QtObjectPtr ptr, int syntax); +void QRegExp_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QRegExp_DestroyQRegExp(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qregularexpression.cpp b/core/qregularexpression.cpp new file mode 100755 index 00000000..b83161a3 --- /dev/null +++ b/core/qregularexpression.cpp @@ -0,0 +1,76 @@ +#include "qregularexpression.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQRegularExpression: public QRegularExpression { +public: +}; + +QtObjectPtr QRegularExpression_NewQRegularExpression(){ + return new QRegularExpression(); +} + +QtObjectPtr QRegularExpression_NewQRegularExpression3(QtObjectPtr re){ + return new QRegularExpression(*static_cast(re)); +} + +QtObjectPtr QRegularExpression_NewQRegularExpression2(char* pattern, int options){ + return new QRegularExpression(QString(pattern), static_cast(options)); +} + +int QRegularExpression_CaptureCount(QtObjectPtr ptr){ + return static_cast(ptr)->captureCount(); +} + +char* QRegularExpression_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +char* QRegularExpression_QRegularExpression_Escape(char* str){ + return QRegularExpression::escape(QString(str)).toUtf8().data(); +} + +int QRegularExpression_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +char* QRegularExpression_NamedCaptureGroups(QtObjectPtr ptr){ + return static_cast(ptr)->namedCaptureGroups().join("|").toUtf8().data(); +} + +void QRegularExpression_Optimize(QtObjectPtr ptr){ + static_cast(ptr)->optimize(); +} + +char* QRegularExpression_Pattern(QtObjectPtr ptr){ + return static_cast(ptr)->pattern().toUtf8().data(); +} + +int QRegularExpression_PatternErrorOffset(QtObjectPtr ptr){ + return static_cast(ptr)->patternErrorOffset(); +} + +int QRegularExpression_PatternOptions(QtObjectPtr ptr){ + return static_cast(ptr)->patternOptions(); +} + +void QRegularExpression_SetPattern(QtObjectPtr ptr, char* pattern){ + static_cast(ptr)->setPattern(QString(pattern)); +} + +void QRegularExpression_SetPatternOptions(QtObjectPtr ptr, int options){ + static_cast(ptr)->setPatternOptions(static_cast(options)); +} + +void QRegularExpression_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QRegularExpression_DestroyQRegularExpression(QtObjectPtr ptr){ + static_cast(ptr)->~QRegularExpression(); +} + diff --git a/core/qregularexpression.go b/core/qregularexpression.go new file mode 100755 index 00000000..ed81790d --- /dev/null +++ b/core/qregularexpression.go @@ -0,0 +1,171 @@ +package core + +//#include "qregularexpression.h" +import "C" +import ( + "strings" + "unsafe" +) + +type QRegularExpression struct { + ptr unsafe.Pointer +} + +type QRegularExpressionITF interface { + QRegularExpressionPTR() *QRegularExpression +} + +func (p *QRegularExpression) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QRegularExpression) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQRegularExpression(ptr QRegularExpressionITF) unsafe.Pointer { + if ptr != nil { + return ptr.QRegularExpressionPTR().Pointer() + } + return nil +} + +func QRegularExpressionFromPointer(ptr unsafe.Pointer) *QRegularExpression { + var n = new(QRegularExpression) + n.SetPointer(ptr) + return n +} + +func (ptr *QRegularExpression) QRegularExpressionPTR() *QRegularExpression { + return ptr +} + +//QRegularExpression::MatchOption +type QRegularExpression__MatchOption int + +var ( + QRegularExpression__NoMatchOption = QRegularExpression__MatchOption(0x0000) + QRegularExpression__AnchoredMatchOption = QRegularExpression__MatchOption(0x0001) + QRegularExpression__DontCheckSubjectStringMatchOption = QRegularExpression__MatchOption(0x0002) +) + +//QRegularExpression::MatchType +type QRegularExpression__MatchType int + +var ( + QRegularExpression__NormalMatch = QRegularExpression__MatchType(0) + QRegularExpression__PartialPreferCompleteMatch = QRegularExpression__MatchType(1) + QRegularExpression__PartialPreferFirstMatch = QRegularExpression__MatchType(2) + QRegularExpression__NoMatch = QRegularExpression__MatchType(3) +) + +//QRegularExpression::PatternOption +type QRegularExpression__PatternOption int + +var ( + QRegularExpression__NoPatternOption = QRegularExpression__PatternOption(0x0000) + QRegularExpression__CaseInsensitiveOption = QRegularExpression__PatternOption(0x0001) + QRegularExpression__DotMatchesEverythingOption = QRegularExpression__PatternOption(0x0002) + QRegularExpression__MultilineOption = QRegularExpression__PatternOption(0x0004) + QRegularExpression__ExtendedPatternSyntaxOption = QRegularExpression__PatternOption(0x0008) + QRegularExpression__InvertedGreedinessOption = QRegularExpression__PatternOption(0x0010) + QRegularExpression__DontCaptureOption = QRegularExpression__PatternOption(0x0020) + QRegularExpression__UseUnicodePropertiesOption = QRegularExpression__PatternOption(0x0040) + QRegularExpression__OptimizeOnFirstUsageOption = QRegularExpression__PatternOption(0x0080) + QRegularExpression__DontAutomaticallyOptimizeOption = QRegularExpression__PatternOption(0x0100) +) + +func NewQRegularExpression() *QRegularExpression { + return QRegularExpressionFromPointer(unsafe.Pointer(C.QRegularExpression_NewQRegularExpression())) +} + +func NewQRegularExpression3(re QRegularExpressionITF) *QRegularExpression { + return QRegularExpressionFromPointer(unsafe.Pointer(C.QRegularExpression_NewQRegularExpression3(C.QtObjectPtr(PointerFromQRegularExpression(re))))) +} + +func NewQRegularExpression2(pattern string, options QRegularExpression__PatternOption) *QRegularExpression { + return QRegularExpressionFromPointer(unsafe.Pointer(C.QRegularExpression_NewQRegularExpression2(C.CString(pattern), C.int(options)))) +} + +func (ptr *QRegularExpression) CaptureCount() int { + if ptr.Pointer() != nil { + return int(C.QRegularExpression_CaptureCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRegularExpression) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QRegularExpression_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func QRegularExpression_Escape(str string) string { + return C.GoString(C.QRegularExpression_QRegularExpression_Escape(C.CString(str))) +} + +func (ptr *QRegularExpression) IsValid() bool { + if ptr.Pointer() != nil { + return C.QRegularExpression_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRegularExpression) NamedCaptureGroups() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QRegularExpression_NamedCaptureGroups(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QRegularExpression) Optimize() { + if ptr.Pointer() != nil { + C.QRegularExpression_Optimize(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QRegularExpression) Pattern() string { + if ptr.Pointer() != nil { + return C.GoString(C.QRegularExpression_Pattern(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QRegularExpression) PatternErrorOffset() int { + if ptr.Pointer() != nil { + return int(C.QRegularExpression_PatternErrorOffset(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRegularExpression) PatternOptions() QRegularExpression__PatternOption { + if ptr.Pointer() != nil { + return QRegularExpression__PatternOption(C.QRegularExpression_PatternOptions(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRegularExpression) SetPattern(pattern string) { + if ptr.Pointer() != nil { + C.QRegularExpression_SetPattern(C.QtObjectPtr(ptr.Pointer()), C.CString(pattern)) + } +} + +func (ptr *QRegularExpression) SetPatternOptions(options QRegularExpression__PatternOption) { + if ptr.Pointer() != nil { + C.QRegularExpression_SetPatternOptions(C.QtObjectPtr(ptr.Pointer()), C.int(options)) + } +} + +func (ptr *QRegularExpression) Swap(other QRegularExpressionITF) { + if ptr.Pointer() != nil { + C.QRegularExpression_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQRegularExpression(other))) + } +} + +func (ptr *QRegularExpression) DestroyQRegularExpression() { + if ptr.Pointer() != nil { + C.QRegularExpression_DestroyQRegularExpression(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qregularexpression.h b/core/qregularexpression.h new file mode 100755 index 00000000..ae2534c4 --- /dev/null +++ b/core/qregularexpression.h @@ -0,0 +1,25 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QRegularExpression_NewQRegularExpression(); +QtObjectPtr QRegularExpression_NewQRegularExpression3(QtObjectPtr re); +QtObjectPtr QRegularExpression_NewQRegularExpression2(char* pattern, int options); +int QRegularExpression_CaptureCount(QtObjectPtr ptr); +char* QRegularExpression_ErrorString(QtObjectPtr ptr); +char* QRegularExpression_QRegularExpression_Escape(char* str); +int QRegularExpression_IsValid(QtObjectPtr ptr); +char* QRegularExpression_NamedCaptureGroups(QtObjectPtr ptr); +void QRegularExpression_Optimize(QtObjectPtr ptr); +char* QRegularExpression_Pattern(QtObjectPtr ptr); +int QRegularExpression_PatternErrorOffset(QtObjectPtr ptr); +int QRegularExpression_PatternOptions(QtObjectPtr ptr); +void QRegularExpression_SetPattern(QtObjectPtr ptr, char* pattern); +void QRegularExpression_SetPatternOptions(QtObjectPtr ptr, int options); +void QRegularExpression_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QRegularExpression_DestroyQRegularExpression(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qregularexpressionmatch.cpp b/core/qregularexpressionmatch.cpp new file mode 100755 index 00000000..55371746 --- /dev/null +++ b/core/qregularexpressionmatch.cpp @@ -0,0 +1,89 @@ +#include "qregularexpressionmatch.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQRegularExpressionMatch: public QRegularExpressionMatch { +public: +}; + +QtObjectPtr QRegularExpressionMatch_NewQRegularExpressionMatch(){ + return new QRegularExpressionMatch(); +} + +QtObjectPtr QRegularExpressionMatch_NewQRegularExpressionMatch2(QtObjectPtr match){ + return new QRegularExpressionMatch(*static_cast(match)); +} + +char* QRegularExpressionMatch_Captured2(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->captured(QString(name)).toUtf8().data(); +} + +char* QRegularExpressionMatch_Captured(QtObjectPtr ptr, int nth){ + return static_cast(ptr)->captured(nth).toUtf8().data(); +} + +int QRegularExpressionMatch_CapturedEnd2(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->capturedEnd(QString(name)); +} + +int QRegularExpressionMatch_CapturedEnd(QtObjectPtr ptr, int nth){ + return static_cast(ptr)->capturedEnd(nth); +} + +int QRegularExpressionMatch_CapturedLength2(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->capturedLength(QString(name)); +} + +int QRegularExpressionMatch_CapturedLength(QtObjectPtr ptr, int nth){ + return static_cast(ptr)->capturedLength(nth); +} + +int QRegularExpressionMatch_CapturedStart2(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->capturedStart(QString(name)); +} + +int QRegularExpressionMatch_CapturedStart(QtObjectPtr ptr, int nth){ + return static_cast(ptr)->capturedStart(nth); +} + +char* QRegularExpressionMatch_CapturedTexts(QtObjectPtr ptr){ + return static_cast(ptr)->capturedTexts().join("|").toUtf8().data(); +} + +int QRegularExpressionMatch_HasMatch(QtObjectPtr ptr){ + return static_cast(ptr)->hasMatch(); +} + +int QRegularExpressionMatch_HasPartialMatch(QtObjectPtr ptr){ + return static_cast(ptr)->hasPartialMatch(); +} + +int QRegularExpressionMatch_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QRegularExpressionMatch_LastCapturedIndex(QtObjectPtr ptr){ + return static_cast(ptr)->lastCapturedIndex(); +} + +int QRegularExpressionMatch_MatchOptions(QtObjectPtr ptr){ + return static_cast(ptr)->matchOptions(); +} + +int QRegularExpressionMatch_MatchType(QtObjectPtr ptr){ + return static_cast(ptr)->matchType(); +} + +void QRegularExpressionMatch_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QRegularExpressionMatch_DestroyQRegularExpressionMatch(QtObjectPtr ptr){ + static_cast(ptr)->~QRegularExpressionMatch(); +} + diff --git a/core/qregularexpressionmatch.go b/core/qregularexpressionmatch.go new file mode 100755 index 00000000..ecee9403 --- /dev/null +++ b/core/qregularexpressionmatch.go @@ -0,0 +1,166 @@ +package core + +//#include "qregularexpressionmatch.h" +import "C" +import ( + "strings" + "unsafe" +) + +type QRegularExpressionMatch struct { + ptr unsafe.Pointer +} + +type QRegularExpressionMatchITF interface { + QRegularExpressionMatchPTR() *QRegularExpressionMatch +} + +func (p *QRegularExpressionMatch) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QRegularExpressionMatch) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQRegularExpressionMatch(ptr QRegularExpressionMatchITF) unsafe.Pointer { + if ptr != nil { + return ptr.QRegularExpressionMatchPTR().Pointer() + } + return nil +} + +func QRegularExpressionMatchFromPointer(ptr unsafe.Pointer) *QRegularExpressionMatch { + var n = new(QRegularExpressionMatch) + n.SetPointer(ptr) + return n +} + +func (ptr *QRegularExpressionMatch) QRegularExpressionMatchPTR() *QRegularExpressionMatch { + return ptr +} + +func NewQRegularExpressionMatch() *QRegularExpressionMatch { + return QRegularExpressionMatchFromPointer(unsafe.Pointer(C.QRegularExpressionMatch_NewQRegularExpressionMatch())) +} + +func NewQRegularExpressionMatch2(match QRegularExpressionMatchITF) *QRegularExpressionMatch { + return QRegularExpressionMatchFromPointer(unsafe.Pointer(C.QRegularExpressionMatch_NewQRegularExpressionMatch2(C.QtObjectPtr(PointerFromQRegularExpressionMatch(match))))) +} + +func (ptr *QRegularExpressionMatch) Captured2(name string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QRegularExpressionMatch_Captured2(C.QtObjectPtr(ptr.Pointer()), C.CString(name))) + } + return "" +} + +func (ptr *QRegularExpressionMatch) Captured(nth int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QRegularExpressionMatch_Captured(C.QtObjectPtr(ptr.Pointer()), C.int(nth))) + } + return "" +} + +func (ptr *QRegularExpressionMatch) CapturedEnd2(name string) int { + if ptr.Pointer() != nil { + return int(C.QRegularExpressionMatch_CapturedEnd2(C.QtObjectPtr(ptr.Pointer()), C.CString(name))) + } + return 0 +} + +func (ptr *QRegularExpressionMatch) CapturedEnd(nth int) int { + if ptr.Pointer() != nil { + return int(C.QRegularExpressionMatch_CapturedEnd(C.QtObjectPtr(ptr.Pointer()), C.int(nth))) + } + return 0 +} + +func (ptr *QRegularExpressionMatch) CapturedLength2(name string) int { + if ptr.Pointer() != nil { + return int(C.QRegularExpressionMatch_CapturedLength2(C.QtObjectPtr(ptr.Pointer()), C.CString(name))) + } + return 0 +} + +func (ptr *QRegularExpressionMatch) CapturedLength(nth int) int { + if ptr.Pointer() != nil { + return int(C.QRegularExpressionMatch_CapturedLength(C.QtObjectPtr(ptr.Pointer()), C.int(nth))) + } + return 0 +} + +func (ptr *QRegularExpressionMatch) CapturedStart2(name string) int { + if ptr.Pointer() != nil { + return int(C.QRegularExpressionMatch_CapturedStart2(C.QtObjectPtr(ptr.Pointer()), C.CString(name))) + } + return 0 +} + +func (ptr *QRegularExpressionMatch) CapturedStart(nth int) int { + if ptr.Pointer() != nil { + return int(C.QRegularExpressionMatch_CapturedStart(C.QtObjectPtr(ptr.Pointer()), C.int(nth))) + } + return 0 +} + +func (ptr *QRegularExpressionMatch) CapturedTexts() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QRegularExpressionMatch_CapturedTexts(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QRegularExpressionMatch) HasMatch() bool { + if ptr.Pointer() != nil { + return C.QRegularExpressionMatch_HasMatch(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRegularExpressionMatch) HasPartialMatch() bool { + if ptr.Pointer() != nil { + return C.QRegularExpressionMatch_HasPartialMatch(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRegularExpressionMatch) IsValid() bool { + if ptr.Pointer() != nil { + return C.QRegularExpressionMatch_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRegularExpressionMatch) LastCapturedIndex() int { + if ptr.Pointer() != nil { + return int(C.QRegularExpressionMatch_LastCapturedIndex(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRegularExpressionMatch) MatchOptions() QRegularExpression__MatchOption { + if ptr.Pointer() != nil { + return QRegularExpression__MatchOption(C.QRegularExpressionMatch_MatchOptions(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRegularExpressionMatch) MatchType() QRegularExpression__MatchType { + if ptr.Pointer() != nil { + return QRegularExpression__MatchType(C.QRegularExpressionMatch_MatchType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRegularExpressionMatch) Swap(other QRegularExpressionMatchITF) { + if ptr.Pointer() != nil { + C.QRegularExpressionMatch_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQRegularExpressionMatch(other))) + } +} + +func (ptr *QRegularExpressionMatch) DestroyQRegularExpressionMatch() { + if ptr.Pointer() != nil { + C.QRegularExpressionMatch_DestroyQRegularExpressionMatch(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qregularexpressionmatch.h b/core/qregularexpressionmatch.h new file mode 100755 index 00000000..11dbd4cd --- /dev/null +++ b/core/qregularexpressionmatch.h @@ -0,0 +1,28 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QRegularExpressionMatch_NewQRegularExpressionMatch(); +QtObjectPtr QRegularExpressionMatch_NewQRegularExpressionMatch2(QtObjectPtr match); +char* QRegularExpressionMatch_Captured2(QtObjectPtr ptr, char* name); +char* QRegularExpressionMatch_Captured(QtObjectPtr ptr, int nth); +int QRegularExpressionMatch_CapturedEnd2(QtObjectPtr ptr, char* name); +int QRegularExpressionMatch_CapturedEnd(QtObjectPtr ptr, int nth); +int QRegularExpressionMatch_CapturedLength2(QtObjectPtr ptr, char* name); +int QRegularExpressionMatch_CapturedLength(QtObjectPtr ptr, int nth); +int QRegularExpressionMatch_CapturedStart2(QtObjectPtr ptr, char* name); +int QRegularExpressionMatch_CapturedStart(QtObjectPtr ptr, int nth); +char* QRegularExpressionMatch_CapturedTexts(QtObjectPtr ptr); +int QRegularExpressionMatch_HasMatch(QtObjectPtr ptr); +int QRegularExpressionMatch_HasPartialMatch(QtObjectPtr ptr); +int QRegularExpressionMatch_IsValid(QtObjectPtr ptr); +int QRegularExpressionMatch_LastCapturedIndex(QtObjectPtr ptr); +int QRegularExpressionMatch_MatchOptions(QtObjectPtr ptr); +int QRegularExpressionMatch_MatchType(QtObjectPtr ptr); +void QRegularExpressionMatch_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QRegularExpressionMatch_DestroyQRegularExpressionMatch(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qregularexpressionmatchiterator.cpp b/core/qregularexpressionmatchiterator.cpp new file mode 100755 index 00000000..5b15b804 --- /dev/null +++ b/core/qregularexpressionmatchiterator.cpp @@ -0,0 +1,10 @@ +#include "qregularexpressionmatchiterator.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qregularexpressionmatchiterator.go b/core/qregularexpressionmatchiterator.go new file mode 100755 index 00000000..031b9af2 --- /dev/null +++ b/core/qregularexpressionmatchiterator.go @@ -0,0 +1,40 @@ +package core + +//#include "qregularexpressionmatchiterator.h" +import "C" +import ( + "unsafe" +) + +type QRegularExpressionMatchIterator struct { + ptr unsafe.Pointer +} + +type QRegularExpressionMatchIteratorITF interface { + QRegularExpressionMatchIteratorPTR() *QRegularExpressionMatchIterator +} + +func (p *QRegularExpressionMatchIterator) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QRegularExpressionMatchIterator) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQRegularExpressionMatchIterator(ptr QRegularExpressionMatchIteratorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QRegularExpressionMatchIteratorPTR().Pointer() + } + return nil +} + +func QRegularExpressionMatchIteratorFromPointer(ptr unsafe.Pointer) *QRegularExpressionMatchIterator { + var n = new(QRegularExpressionMatchIterator) + n.SetPointer(ptr) + return n +} + +func (ptr *QRegularExpressionMatchIterator) QRegularExpressionMatchIteratorPTR() *QRegularExpressionMatchIterator { + return ptr +} diff --git a/core/qregularexpressionmatchiterator.h b/core/qregularexpressionmatchiterator.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qregularexpressionmatchiterator.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qresource.cpp b/core/qresource.cpp new file mode 100755 index 00000000..97a4622b --- /dev/null +++ b/core/qresource.cpp @@ -0,0 +1,53 @@ +#include "qresource.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQResource: public QResource { +public: +}; + +int QResource_QResource_RegisterResource(char* rccFileName, char* mapRoot){ + return QResource::registerResource(QString(rccFileName), QString(mapRoot)); +} + +int QResource_QResource_UnregisterResource(char* rccFileName, char* mapRoot){ + return QResource::unregisterResource(QString(rccFileName), QString(mapRoot)); +} + +QtObjectPtr QResource_NewQResource(char* file, QtObjectPtr locale){ + return new QResource(QString(file), *static_cast(locale)); +} + +char* QResource_AbsoluteFilePath(QtObjectPtr ptr){ + return static_cast(ptr)->absoluteFilePath().toUtf8().data(); +} + +char* QResource_FileName(QtObjectPtr ptr){ + return static_cast(ptr)->fileName().toUtf8().data(); +} + +int QResource_IsCompressed(QtObjectPtr ptr){ + return static_cast(ptr)->isCompressed(); +} + +int QResource_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +void QResource_SetFileName(QtObjectPtr ptr, char* file){ + static_cast(ptr)->setFileName(QString(file)); +} + +void QResource_SetLocale(QtObjectPtr ptr, QtObjectPtr locale){ + static_cast(ptr)->setLocale(*static_cast(locale)); +} + +void QResource_DestroyQResource(QtObjectPtr ptr){ + static_cast(ptr)->~QResource(); +} + diff --git a/core/qresource.go b/core/qresource.go new file mode 100755 index 00000000..ec958e58 --- /dev/null +++ b/core/qresource.go @@ -0,0 +1,98 @@ +package core + +//#include "qresource.h" +import "C" +import ( + "unsafe" +) + +type QResource struct { + ptr unsafe.Pointer +} + +type QResourceITF interface { + QResourcePTR() *QResource +} + +func (p *QResource) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QResource) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQResource(ptr QResourceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QResourcePTR().Pointer() + } + return nil +} + +func QResourceFromPointer(ptr unsafe.Pointer) *QResource { + var n = new(QResource) + n.SetPointer(ptr) + return n +} + +func (ptr *QResource) QResourcePTR() *QResource { + return ptr +} + +func QResource_RegisterResource(rccFileName string, mapRoot string) bool { + return C.QResource_QResource_RegisterResource(C.CString(rccFileName), C.CString(mapRoot)) != 0 +} + +func QResource_UnregisterResource(rccFileName string, mapRoot string) bool { + return C.QResource_QResource_UnregisterResource(C.CString(rccFileName), C.CString(mapRoot)) != 0 +} + +func NewQResource(file string, locale QLocaleITF) *QResource { + return QResourceFromPointer(unsafe.Pointer(C.QResource_NewQResource(C.CString(file), C.QtObjectPtr(PointerFromQLocale(locale))))) +} + +func (ptr *QResource) AbsoluteFilePath() string { + if ptr.Pointer() != nil { + return C.GoString(C.QResource_AbsoluteFilePath(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QResource) FileName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QResource_FileName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QResource) IsCompressed() bool { + if ptr.Pointer() != nil { + return C.QResource_IsCompressed(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QResource) IsValid() bool { + if ptr.Pointer() != nil { + return C.QResource_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QResource) SetFileName(file string) { + if ptr.Pointer() != nil { + C.QResource_SetFileName(C.QtObjectPtr(ptr.Pointer()), C.CString(file)) + } +} + +func (ptr *QResource) SetLocale(locale QLocaleITF) { + if ptr.Pointer() != nil { + C.QResource_SetLocale(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLocale(locale))) + } +} + +func (ptr *QResource) DestroyQResource() { + if ptr.Pointer() != nil { + C.QResource_DestroyQResource(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qresource.h b/core/qresource.h new file mode 100755 index 00000000..383335b6 --- /dev/null +++ b/core/qresource.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QResource_QResource_RegisterResource(char* rccFileName, char* mapRoot); +int QResource_QResource_UnregisterResource(char* rccFileName, char* mapRoot); +QtObjectPtr QResource_NewQResource(char* file, QtObjectPtr locale); +char* QResource_AbsoluteFilePath(QtObjectPtr ptr); +char* QResource_FileName(QtObjectPtr ptr); +int QResource_IsCompressed(QtObjectPtr ptr); +int QResource_IsValid(QtObjectPtr ptr); +void QResource_SetFileName(QtObjectPtr ptr, char* file); +void QResource_SetLocale(QtObjectPtr ptr, QtObjectPtr locale); +void QResource_DestroyQResource(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qrunnable.cpp b/core/qrunnable.cpp new file mode 100755 index 00000000..94d943cf --- /dev/null +++ b/core/qrunnable.cpp @@ -0,0 +1,28 @@ +#include "qrunnable.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQRunnable: public QRunnable { +public: +}; + +int QRunnable_AutoDelete(QtObjectPtr ptr){ + return static_cast(ptr)->autoDelete(); +} + +void QRunnable_Run(QtObjectPtr ptr){ + static_cast(ptr)->run(); +} + +void QRunnable_SetAutoDelete(QtObjectPtr ptr, int autoDelete){ + static_cast(ptr)->setAutoDelete(autoDelete != 0); +} + +void QRunnable_DestroyQRunnable(QtObjectPtr ptr){ + static_cast(ptr)->~QRunnable(); +} + diff --git a/core/qrunnable.go b/core/qrunnable.go new file mode 100755 index 00000000..0a689b95 --- /dev/null +++ b/core/qrunnable.go @@ -0,0 +1,66 @@ +package core + +//#include "qrunnable.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QRunnable struct { + ptr unsafe.Pointer +} + +type QRunnableITF interface { + QRunnablePTR() *QRunnable +} + +func (p *QRunnable) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QRunnable) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQRunnable(ptr QRunnableITF) unsafe.Pointer { + if ptr != nil { + return ptr.QRunnablePTR().Pointer() + } + return nil +} + +func QRunnableFromPointer(ptr unsafe.Pointer) *QRunnable { + var n = new(QRunnable) + n.SetPointer(ptr) + return n +} + +func (ptr *QRunnable) QRunnablePTR() *QRunnable { + return ptr +} + +func (ptr *QRunnable) AutoDelete() bool { + if ptr.Pointer() != nil { + return C.QRunnable_AutoDelete(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRunnable) Run() { + if ptr.Pointer() != nil { + C.QRunnable_Run(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QRunnable) SetAutoDelete(autoDelete bool) { + if ptr.Pointer() != nil { + C.QRunnable_SetAutoDelete(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(autoDelete))) + } +} + +func (ptr *QRunnable) DestroyQRunnable() { + if ptr.Pointer() != nil { + C.QRunnable_DestroyQRunnable(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qrunnable.h b/core/qrunnable.h new file mode 100755 index 00000000..ebcbb0cc --- /dev/null +++ b/core/qrunnable.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QRunnable_AutoDelete(QtObjectPtr ptr); +void QRunnable_Run(QtObjectPtr ptr); +void QRunnable_SetAutoDelete(QtObjectPtr ptr, int autoDelete); +void QRunnable_DestroyQRunnable(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qsavefile.cpp b/core/qsavefile.cpp new file mode 100755 index 00000000..de5a77dc --- /dev/null +++ b/core/qsavefile.cpp @@ -0,0 +1,58 @@ +#include "qsavefile.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSaveFile: public QSaveFile { +public: +}; + +QtObjectPtr QSaveFile_NewQSaveFile2(QtObjectPtr parent){ + return new QSaveFile(static_cast(parent)); +} + +QtObjectPtr QSaveFile_NewQSaveFile(char* name){ + return new QSaveFile(QString(name)); +} + +QtObjectPtr QSaveFile_NewQSaveFile3(char* name, QtObjectPtr parent){ + return new QSaveFile(QString(name), static_cast(parent)); +} + +void QSaveFile_CancelWriting(QtObjectPtr ptr){ + static_cast(ptr)->cancelWriting(); +} + +int QSaveFile_Commit(QtObjectPtr ptr){ + return static_cast(ptr)->commit(); +} + +int QSaveFile_DirectWriteFallback(QtObjectPtr ptr){ + return static_cast(ptr)->directWriteFallback(); +} + +char* QSaveFile_FileName(QtObjectPtr ptr){ + return static_cast(ptr)->fileName().toUtf8().data(); +} + +int QSaveFile_Open(QtObjectPtr ptr, int mode){ + return static_cast(ptr)->open(static_cast(mode)); +} + +void QSaveFile_SetDirectWriteFallback(QtObjectPtr ptr, int enabled){ + static_cast(ptr)->setDirectWriteFallback(enabled != 0); +} + +void QSaveFile_SetFileName(QtObjectPtr ptr, char* name){ + static_cast(ptr)->setFileName(QString(name)); +} + +void QSaveFile_DestroyQSaveFile(QtObjectPtr ptr){ + static_cast(ptr)->~QSaveFile(); +} + diff --git a/core/qsavefile.go b/core/qsavefile.go new file mode 100755 index 00000000..9f1a667a --- /dev/null +++ b/core/qsavefile.go @@ -0,0 +1,102 @@ +package core + +//#include "qsavefile.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QSaveFile struct { + QFileDevice +} + +type QSaveFileITF interface { + QFileDeviceITF + QSaveFilePTR() *QSaveFile +} + +func PointerFromQSaveFile(ptr QSaveFileITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSaveFilePTR().Pointer() + } + return nil +} + +func QSaveFileFromPointer(ptr unsafe.Pointer) *QSaveFile { + var n = new(QSaveFile) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSaveFile_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSaveFile) QSaveFilePTR() *QSaveFile { + return ptr +} + +func NewQSaveFile2(parent QObjectITF) *QSaveFile { + return QSaveFileFromPointer(unsafe.Pointer(C.QSaveFile_NewQSaveFile2(C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func NewQSaveFile(name string) *QSaveFile { + return QSaveFileFromPointer(unsafe.Pointer(C.QSaveFile_NewQSaveFile(C.CString(name)))) +} + +func NewQSaveFile3(name string, parent QObjectITF) *QSaveFile { + return QSaveFileFromPointer(unsafe.Pointer(C.QSaveFile_NewQSaveFile3(C.CString(name), C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func (ptr *QSaveFile) CancelWriting() { + if ptr.Pointer() != nil { + C.QSaveFile_CancelWriting(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSaveFile) Commit() bool { + if ptr.Pointer() != nil { + return C.QSaveFile_Commit(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSaveFile) DirectWriteFallback() bool { + if ptr.Pointer() != nil { + return C.QSaveFile_DirectWriteFallback(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSaveFile) FileName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSaveFile_FileName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSaveFile) Open(mode QIODevice__OpenModeFlag) bool { + if ptr.Pointer() != nil { + return C.QSaveFile_Open(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) != 0 + } + return false +} + +func (ptr *QSaveFile) SetDirectWriteFallback(enabled bool) { + if ptr.Pointer() != nil { + C.QSaveFile_SetDirectWriteFallback(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QSaveFile) SetFileName(name string) { + if ptr.Pointer() != nil { + C.QSaveFile_SetFileName(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func (ptr *QSaveFile) DestroyQSaveFile() { + if ptr.Pointer() != nil { + C.QSaveFile_DestroyQSaveFile(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qsavefile.h b/core/qsavefile.h new file mode 100755 index 00000000..79d496a9 --- /dev/null +++ b/core/qsavefile.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSaveFile_NewQSaveFile2(QtObjectPtr parent); +QtObjectPtr QSaveFile_NewQSaveFile(char* name); +QtObjectPtr QSaveFile_NewQSaveFile3(char* name, QtObjectPtr parent); +void QSaveFile_CancelWriting(QtObjectPtr ptr); +int QSaveFile_Commit(QtObjectPtr ptr); +int QSaveFile_DirectWriteFallback(QtObjectPtr ptr); +char* QSaveFile_FileName(QtObjectPtr ptr); +int QSaveFile_Open(QtObjectPtr ptr, int mode); +void QSaveFile_SetDirectWriteFallback(QtObjectPtr ptr, int enabled); +void QSaveFile_SetFileName(QtObjectPtr ptr, char* name); +void QSaveFile_DestroyQSaveFile(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qscopedarraypointer.cpp b/core/qscopedarraypointer.cpp new file mode 100755 index 00000000..d8bc5474 --- /dev/null +++ b/core/qscopedarraypointer.cpp @@ -0,0 +1,8 @@ +#include "qscopedarraypointer.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qscopedarraypointer.go b/core/qscopedarraypointer.go new file mode 100755 index 00000000..b2ea03e9 --- /dev/null +++ b/core/qscopedarraypointer.go @@ -0,0 +1,33 @@ +package core + +//#include "qscopedarraypointer.h" +import "C" +import ( + "unsafe" +) + +type QScopedArrayPointer struct { + QScopedPointer +} + +type QScopedArrayPointerITF interface { + QScopedPointerITF + QScopedArrayPointerPTR() *QScopedArrayPointer +} + +func PointerFromQScopedArrayPointer(ptr QScopedArrayPointerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QScopedArrayPointerPTR().Pointer() + } + return nil +} + +func QScopedArrayPointerFromPointer(ptr unsafe.Pointer) *QScopedArrayPointer { + var n = new(QScopedArrayPointer) + n.SetPointer(ptr) + return n +} + +func (ptr *QScopedArrayPointer) QScopedArrayPointerPTR() *QScopedArrayPointer { + return ptr +} diff --git a/core/qscopedarraypointer.h b/core/qscopedarraypointer.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qscopedarraypointer.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qscopedpointer.cpp b/core/qscopedpointer.cpp new file mode 100755 index 00000000..b06324f2 --- /dev/null +++ b/core/qscopedpointer.cpp @@ -0,0 +1,8 @@ +#include "qscopedpointer.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qscopedpointer.go b/core/qscopedpointer.go new file mode 100755 index 00000000..91ed3663 --- /dev/null +++ b/core/qscopedpointer.go @@ -0,0 +1,40 @@ +package core + +//#include "qscopedpointer.h" +import "C" +import ( + "unsafe" +) + +type QScopedPointer struct { + ptr unsafe.Pointer +} + +type QScopedPointerITF interface { + QScopedPointerPTR() *QScopedPointer +} + +func (p *QScopedPointer) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QScopedPointer) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQScopedPointer(ptr QScopedPointerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QScopedPointerPTR().Pointer() + } + return nil +} + +func QScopedPointerFromPointer(ptr unsafe.Pointer) *QScopedPointer { + var n = new(QScopedPointer) + n.SetPointer(ptr) + return n +} + +func (ptr *QScopedPointer) QScopedPointerPTR() *QScopedPointer { + return ptr +} diff --git a/core/qscopedpointer.h b/core/qscopedpointer.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qscopedpointer.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qscopedvaluerollback.cpp b/core/qscopedvaluerollback.cpp new file mode 100755 index 00000000..f29accca --- /dev/null +++ b/core/qscopedvaluerollback.cpp @@ -0,0 +1,8 @@ +#include "qscopedvaluerollback.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qscopedvaluerollback.go b/core/qscopedvaluerollback.go new file mode 100755 index 00000000..d376f182 --- /dev/null +++ b/core/qscopedvaluerollback.go @@ -0,0 +1,40 @@ +package core + +//#include "qscopedvaluerollback.h" +import "C" +import ( + "unsafe" +) + +type QScopedValueRollback struct { + ptr unsafe.Pointer +} + +type QScopedValueRollbackITF interface { + QScopedValueRollbackPTR() *QScopedValueRollback +} + +func (p *QScopedValueRollback) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QScopedValueRollback) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQScopedValueRollback(ptr QScopedValueRollbackITF) unsafe.Pointer { + if ptr != nil { + return ptr.QScopedValueRollbackPTR().Pointer() + } + return nil +} + +func QScopedValueRollbackFromPointer(ptr unsafe.Pointer) *QScopedValueRollback { + var n = new(QScopedValueRollback) + n.SetPointer(ptr) + return n +} + +func (ptr *QScopedValueRollback) QScopedValueRollbackPTR() *QScopedValueRollback { + return ptr +} diff --git a/core/qscopedvaluerollback.h b/core/qscopedvaluerollback.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qscopedvaluerollback.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qsemaphore.cpp b/core/qsemaphore.cpp new file mode 100755 index 00000000..85fadab7 --- /dev/null +++ b/core/qsemaphore.cpp @@ -0,0 +1,40 @@ +#include "qsemaphore.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSemaphore: public QSemaphore { +public: +}; + +QtObjectPtr QSemaphore_NewQSemaphore(int n){ + return new QSemaphore(n); +} + +void QSemaphore_Acquire(QtObjectPtr ptr, int n){ + static_cast(ptr)->acquire(n); +} + +int QSemaphore_Available(QtObjectPtr ptr){ + return static_cast(ptr)->available(); +} + +void QSemaphore_Release(QtObjectPtr ptr, int n){ + static_cast(ptr)->release(n); +} + +int QSemaphore_TryAcquire(QtObjectPtr ptr, int n){ + return static_cast(ptr)->tryAcquire(n); +} + +int QSemaphore_TryAcquire2(QtObjectPtr ptr, int n, int timeout){ + return static_cast(ptr)->tryAcquire(n, timeout); +} + +void QSemaphore_DestroyQSemaphore(QtObjectPtr ptr){ + static_cast(ptr)->~QSemaphore(); +} + diff --git a/core/qsemaphore.go b/core/qsemaphore.go new file mode 100755 index 00000000..f78a3817 --- /dev/null +++ b/core/qsemaphore.go @@ -0,0 +1,83 @@ +package core + +//#include "qsemaphore.h" +import "C" +import ( + "unsafe" +) + +type QSemaphore struct { + ptr unsafe.Pointer +} + +type QSemaphoreITF interface { + QSemaphorePTR() *QSemaphore +} + +func (p *QSemaphore) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSemaphore) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSemaphore(ptr QSemaphoreITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSemaphorePTR().Pointer() + } + return nil +} + +func QSemaphoreFromPointer(ptr unsafe.Pointer) *QSemaphore { + var n = new(QSemaphore) + n.SetPointer(ptr) + return n +} + +func (ptr *QSemaphore) QSemaphorePTR() *QSemaphore { + return ptr +} + +func NewQSemaphore(n int) *QSemaphore { + return QSemaphoreFromPointer(unsafe.Pointer(C.QSemaphore_NewQSemaphore(C.int(n)))) +} + +func (ptr *QSemaphore) Acquire(n int) { + if ptr.Pointer() != nil { + C.QSemaphore_Acquire(C.QtObjectPtr(ptr.Pointer()), C.int(n)) + } +} + +func (ptr *QSemaphore) Available() int { + if ptr.Pointer() != nil { + return int(C.QSemaphore_Available(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSemaphore) Release(n int) { + if ptr.Pointer() != nil { + C.QSemaphore_Release(C.QtObjectPtr(ptr.Pointer()), C.int(n)) + } +} + +func (ptr *QSemaphore) TryAcquire(n int) bool { + if ptr.Pointer() != nil { + return C.QSemaphore_TryAcquire(C.QtObjectPtr(ptr.Pointer()), C.int(n)) != 0 + } + return false +} + +func (ptr *QSemaphore) TryAcquire2(n int, timeout int) bool { + if ptr.Pointer() != nil { + return C.QSemaphore_TryAcquire2(C.QtObjectPtr(ptr.Pointer()), C.int(n), C.int(timeout)) != 0 + } + return false +} + +func (ptr *QSemaphore) DestroyQSemaphore() { + if ptr.Pointer() != nil { + C.QSemaphore_DestroyQSemaphore(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qsemaphore.h b/core/qsemaphore.h new file mode 100755 index 00000000..c051c020 --- /dev/null +++ b/core/qsemaphore.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSemaphore_NewQSemaphore(int n); +void QSemaphore_Acquire(QtObjectPtr ptr, int n); +int QSemaphore_Available(QtObjectPtr ptr); +void QSemaphore_Release(QtObjectPtr ptr, int n); +int QSemaphore_TryAcquire(QtObjectPtr ptr, int n); +int QSemaphore_TryAcquire2(QtObjectPtr ptr, int n, int timeout); +void QSemaphore_DestroyQSemaphore(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qsequentialanimationgroup.cpp b/core/qsequentialanimationgroup.cpp new file mode 100755 index 00000000..4ba14433 --- /dev/null +++ b/core/qsequentialanimationgroup.cpp @@ -0,0 +1,43 @@ +#include "qsequentialanimationgroup.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSequentialAnimationGroup: public QSequentialAnimationGroup { +public: +void Signal_CurrentAnimationChanged(QAbstractAnimation * current){callbackQSequentialAnimationGroupCurrentAnimationChanged(this->objectName().toUtf8().data(), current);}; +}; + +QtObjectPtr QSequentialAnimationGroup_CurrentAnimation(QtObjectPtr ptr){ + return static_cast(ptr)->currentAnimation(); +} + +QtObjectPtr QSequentialAnimationGroup_AddPause(QtObjectPtr ptr, int msecs){ + return static_cast(ptr)->addPause(msecs); +} + +void QSequentialAnimationGroup_ConnectCurrentAnimationChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSequentialAnimationGroup::currentAnimationChanged), static_cast(ptr), static_cast(&MyQSequentialAnimationGroup::Signal_CurrentAnimationChanged));; +} + +void QSequentialAnimationGroup_DisconnectCurrentAnimationChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSequentialAnimationGroup::currentAnimationChanged), static_cast(ptr), static_cast(&MyQSequentialAnimationGroup::Signal_CurrentAnimationChanged));; +} + +int QSequentialAnimationGroup_Duration(QtObjectPtr ptr){ + return static_cast(ptr)->duration(); +} + +QtObjectPtr QSequentialAnimationGroup_InsertPause(QtObjectPtr ptr, int index, int msecs){ + return static_cast(ptr)->insertPause(index, msecs); +} + +void QSequentialAnimationGroup_DestroyQSequentialAnimationGroup(QtObjectPtr ptr){ + static_cast(ptr)->~QSequentialAnimationGroup(); +} + diff --git a/core/qsequentialanimationgroup.go b/core/qsequentialanimationgroup.go new file mode 100755 index 00000000..3c6ac5aa --- /dev/null +++ b/core/qsequentialanimationgroup.go @@ -0,0 +1,91 @@ +package core + +//#include "qsequentialanimationgroup.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QSequentialAnimationGroup struct { + QAnimationGroup +} + +type QSequentialAnimationGroupITF interface { + QAnimationGroupITF + QSequentialAnimationGroupPTR() *QSequentialAnimationGroup +} + +func PointerFromQSequentialAnimationGroup(ptr QSequentialAnimationGroupITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSequentialAnimationGroupPTR().Pointer() + } + return nil +} + +func QSequentialAnimationGroupFromPointer(ptr unsafe.Pointer) *QSequentialAnimationGroup { + var n = new(QSequentialAnimationGroup) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSequentialAnimationGroup_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSequentialAnimationGroup) QSequentialAnimationGroupPTR() *QSequentialAnimationGroup { + return ptr +} + +func (ptr *QSequentialAnimationGroup) CurrentAnimation() *QAbstractAnimation { + if ptr.Pointer() != nil { + return QAbstractAnimationFromPointer(unsafe.Pointer(C.QSequentialAnimationGroup_CurrentAnimation(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSequentialAnimationGroup) AddPause(msecs int) *QPauseAnimation { + if ptr.Pointer() != nil { + return QPauseAnimationFromPointer(unsafe.Pointer(C.QSequentialAnimationGroup_AddPause(C.QtObjectPtr(ptr.Pointer()), C.int(msecs)))) + } + return nil +} + +func (ptr *QSequentialAnimationGroup) ConnectCurrentAnimationChanged(f func(current QAbstractAnimationITF)) { + if ptr.Pointer() != nil { + C.QSequentialAnimationGroup_ConnectCurrentAnimationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "currentAnimationChanged", f) + } +} + +func (ptr *QSequentialAnimationGroup) DisconnectCurrentAnimationChanged() { + if ptr.Pointer() != nil { + C.QSequentialAnimationGroup_DisconnectCurrentAnimationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "currentAnimationChanged") + } +} + +//export callbackQSequentialAnimationGroupCurrentAnimationChanged +func callbackQSequentialAnimationGroupCurrentAnimationChanged(ptrName *C.char, current unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "currentAnimationChanged").(func(*QAbstractAnimation))(QAbstractAnimationFromPointer(current)) +} + +func (ptr *QSequentialAnimationGroup) Duration() int { + if ptr.Pointer() != nil { + return int(C.QSequentialAnimationGroup_Duration(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSequentialAnimationGroup) InsertPause(index int, msecs int) *QPauseAnimation { + if ptr.Pointer() != nil { + return QPauseAnimationFromPointer(unsafe.Pointer(C.QSequentialAnimationGroup_InsertPause(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.int(msecs)))) + } + return nil +} + +func (ptr *QSequentialAnimationGroup) DestroyQSequentialAnimationGroup() { + if ptr.Pointer() != nil { + C.QSequentialAnimationGroup_DestroyQSequentialAnimationGroup(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qsequentialanimationgroup.h b/core/qsequentialanimationgroup.h new file mode 100755 index 00000000..be320fb0 --- /dev/null +++ b/core/qsequentialanimationgroup.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSequentialAnimationGroup_CurrentAnimation(QtObjectPtr ptr); +QtObjectPtr QSequentialAnimationGroup_AddPause(QtObjectPtr ptr, int msecs); +void QSequentialAnimationGroup_ConnectCurrentAnimationChanged(QtObjectPtr ptr); +void QSequentialAnimationGroup_DisconnectCurrentAnimationChanged(QtObjectPtr ptr); +int QSequentialAnimationGroup_Duration(QtObjectPtr ptr); +QtObjectPtr QSequentialAnimationGroup_InsertPause(QtObjectPtr ptr, int index, int msecs); +void QSequentialAnimationGroup_DestroyQSequentialAnimationGroup(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qsequentialiterable.cpp b/core/qsequentialiterable.cpp new file mode 100755 index 00000000..fc478cab --- /dev/null +++ b/core/qsequentialiterable.cpp @@ -0,0 +1,24 @@ +#include "qsequentialiterable.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSequentialIterable: public QSequentialIterable { +public: +}; + +char* QSequentialIterable_At(QtObjectPtr ptr, int idx){ + return static_cast(ptr)->at(idx).toString().toUtf8().data(); +} + +int QSequentialIterable_CanReverseIterate(QtObjectPtr ptr){ + return static_cast(ptr)->canReverseIterate(); +} + +int QSequentialIterable_Size(QtObjectPtr ptr){ + return static_cast(ptr)->size(); +} + diff --git a/core/qsequentialiterable.go b/core/qsequentialiterable.go new file mode 100755 index 00000000..1432e99e --- /dev/null +++ b/core/qsequentialiterable.go @@ -0,0 +1,61 @@ +package core + +//#include "qsequentialiterable.h" +import "C" +import ( + "unsafe" +) + +type QSequentialIterable struct { + ptr unsafe.Pointer +} + +type QSequentialIterableITF interface { + QSequentialIterablePTR() *QSequentialIterable +} + +func (p *QSequentialIterable) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSequentialIterable) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSequentialIterable(ptr QSequentialIterableITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSequentialIterablePTR().Pointer() + } + return nil +} + +func QSequentialIterableFromPointer(ptr unsafe.Pointer) *QSequentialIterable { + var n = new(QSequentialIterable) + n.SetPointer(ptr) + return n +} + +func (ptr *QSequentialIterable) QSequentialIterablePTR() *QSequentialIterable { + return ptr +} + +func (ptr *QSequentialIterable) At(idx int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QSequentialIterable_At(C.QtObjectPtr(ptr.Pointer()), C.int(idx))) + } + return "" +} + +func (ptr *QSequentialIterable) CanReverseIterate() bool { + if ptr.Pointer() != nil { + return C.QSequentialIterable_CanReverseIterate(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSequentialIterable) Size() int { + if ptr.Pointer() != nil { + return int(C.QSequentialIterable_Size(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/core/qsequentialiterable.h b/core/qsequentialiterable.h new file mode 100755 index 00000000..aade7ea3 --- /dev/null +++ b/core/qsequentialiterable.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QSequentialIterable_At(QtObjectPtr ptr, int idx); +int QSequentialIterable_CanReverseIterate(QtObjectPtr ptr); +int QSequentialIterable_Size(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qset.cpp b/core/qset.cpp new file mode 100755 index 00000000..22852817 --- /dev/null +++ b/core/qset.cpp @@ -0,0 +1,8 @@ +#include "qset.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qset.go b/core/qset.go new file mode 100755 index 00000000..b18aa9bf --- /dev/null +++ b/core/qset.go @@ -0,0 +1,40 @@ +package core + +//#include "qset.h" +import "C" +import ( + "unsafe" +) + +type QSet struct { + ptr unsafe.Pointer +} + +type QSetITF interface { + QSetPTR() *QSet +} + +func (p *QSet) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSet) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSet(ptr QSetITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSetPTR().Pointer() + } + return nil +} + +func QSetFromPointer(ptr unsafe.Pointer) *QSet { + var n = new(QSet) + n.SetPointer(ptr) + return n +} + +func (ptr *QSet) QSetPTR() *QSet { + return ptr +} diff --git a/core/qset.h b/core/qset.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qset.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qsetiterator.cpp b/core/qsetiterator.cpp new file mode 100755 index 00000000..0434a6d0 --- /dev/null +++ b/core/qsetiterator.cpp @@ -0,0 +1,9 @@ +#include "qsetiterator.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qsetiterator.go b/core/qsetiterator.go new file mode 100755 index 00000000..54980321 --- /dev/null +++ b/core/qsetiterator.go @@ -0,0 +1,40 @@ +package core + +//#include "qsetiterator.h" +import "C" +import ( + "unsafe" +) + +type QSetIterator struct { + ptr unsafe.Pointer +} + +type QSetIteratorITF interface { + QSetIteratorPTR() *QSetIterator +} + +func (p *QSetIterator) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSetIterator) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSetIterator(ptr QSetIteratorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSetIteratorPTR().Pointer() + } + return nil +} + +func QSetIteratorFromPointer(ptr unsafe.Pointer) *QSetIterator { + var n = new(QSetIterator) + n.SetPointer(ptr) + return n +} + +func (ptr *QSetIterator) QSetIteratorPTR() *QSetIterator { + return ptr +} diff --git a/core/qsetiterator.h b/core/qsetiterator.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qsetiterator.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qsettings.cpp b/core/qsettings.cpp new file mode 100755 index 00000000..0bf4b5ae --- /dev/null +++ b/core/qsettings.cpp @@ -0,0 +1,159 @@ +#include "qsettings.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSettings: public QSettings { +public: +}; + +QtObjectPtr QSettings_NewQSettings3(int format, int scope, char* organization, char* application, QtObjectPtr parent){ + return new QSettings(static_cast(format), static_cast(scope), QString(organization), QString(application), static_cast(parent)); +} + +QtObjectPtr QSettings_NewQSettings5(QtObjectPtr parent){ + return new QSettings(static_cast(parent)); +} + +QtObjectPtr QSettings_NewQSettings2(int scope, char* organization, char* application, QtObjectPtr parent){ + return new QSettings(static_cast(scope), QString(organization), QString(application), static_cast(parent)); +} + +QtObjectPtr QSettings_NewQSettings4(char* fileName, int format, QtObjectPtr parent){ + return new QSettings(QString(fileName), static_cast(format), static_cast(parent)); +} + +QtObjectPtr QSettings_NewQSettings(char* organization, char* application, QtObjectPtr parent){ + return new QSettings(QString(organization), QString(application), static_cast(parent)); +} + +char* QSettings_AllKeys(QtObjectPtr ptr){ + return static_cast(ptr)->allKeys().join("|").toUtf8().data(); +} + +char* QSettings_ApplicationName(QtObjectPtr ptr){ + return static_cast(ptr)->applicationName().toUtf8().data(); +} + +void QSettings_BeginGroup(QtObjectPtr ptr, char* prefix){ + static_cast(ptr)->beginGroup(QString(prefix)); +} + +int QSettings_BeginReadArray(QtObjectPtr ptr, char* prefix){ + return static_cast(ptr)->beginReadArray(QString(prefix)); +} + +void QSettings_BeginWriteArray(QtObjectPtr ptr, char* prefix, int size){ + static_cast(ptr)->beginWriteArray(QString(prefix), size); +} + +char* QSettings_ChildGroups(QtObjectPtr ptr){ + return static_cast(ptr)->childGroups().join("|").toUtf8().data(); +} + +char* QSettings_ChildKeys(QtObjectPtr ptr){ + return static_cast(ptr)->childKeys().join("|").toUtf8().data(); +} + +void QSettings_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +int QSettings_Contains(QtObjectPtr ptr, char* key){ + return static_cast(ptr)->contains(QString(key)); +} + +int QSettings_QSettings_DefaultFormat(){ + return QSettings::defaultFormat(); +} + +void QSettings_EndArray(QtObjectPtr ptr){ + static_cast(ptr)->endArray(); +} + +void QSettings_EndGroup(QtObjectPtr ptr){ + static_cast(ptr)->endGroup(); +} + +int QSettings_FallbacksEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->fallbacksEnabled(); +} + +char* QSettings_FileName(QtObjectPtr ptr){ + return static_cast(ptr)->fileName().toUtf8().data(); +} + +int QSettings_Format(QtObjectPtr ptr){ + return static_cast(ptr)->format(); +} + +char* QSettings_Group(QtObjectPtr ptr){ + return static_cast(ptr)->group().toUtf8().data(); +} + +QtObjectPtr QSettings_IniCodec(QtObjectPtr ptr){ + return static_cast(ptr)->iniCodec(); +} + +int QSettings_IsWritable(QtObjectPtr ptr){ + return static_cast(ptr)->isWritable(); +} + +char* QSettings_OrganizationName(QtObjectPtr ptr){ + return static_cast(ptr)->organizationName().toUtf8().data(); +} + +int QSettings_Scope(QtObjectPtr ptr){ + return static_cast(ptr)->scope(); +} + +void QSettings_SetArrayIndex(QtObjectPtr ptr, int i){ + static_cast(ptr)->setArrayIndex(i); +} + +void QSettings_QSettings_SetDefaultFormat(int format){ + QSettings::setDefaultFormat(static_cast(format)); +} + +void QSettings_SetFallbacksEnabled(QtObjectPtr ptr, int b){ + static_cast(ptr)->setFallbacksEnabled(b != 0); +} + +void QSettings_SetIniCodec(QtObjectPtr ptr, QtObjectPtr codec){ + static_cast(ptr)->setIniCodec(static_cast(codec)); +} + +void QSettings_SetIniCodec2(QtObjectPtr ptr, char* codecName){ + static_cast(ptr)->setIniCodec(const_cast(codecName)); +} + +void QSettings_QSettings_SetPath(int format, int scope, char* path){ + QSettings::setPath(static_cast(format), static_cast(scope), QString(path)); +} + +void QSettings_SetValue(QtObjectPtr ptr, char* key, char* value){ + static_cast(ptr)->setValue(QString(key), QVariant(value)); +} + +int QSettings_Status(QtObjectPtr ptr){ + return static_cast(ptr)->status(); +} + +void QSettings_Sync(QtObjectPtr ptr){ + static_cast(ptr)->sync(); +} + +char* QSettings_Value(QtObjectPtr ptr, char* key, char* defaultValue){ + return static_cast(ptr)->value(QString(key), QVariant(defaultValue)).toString().toUtf8().data(); +} + +void QSettings_DestroyQSettings(QtObjectPtr ptr){ + static_cast(ptr)->~QSettings(); +} + diff --git a/core/qsettings.go b/core/qsettings.go new file mode 100755 index 00000000..4b1170cd --- /dev/null +++ b/core/qsettings.go @@ -0,0 +1,297 @@ +package core + +//#include "qsettings.h" +import "C" +import ( + "github.com/therecipe/qt" + "strings" + "unsafe" +) + +type QSettings struct { + QObject +} + +type QSettingsITF interface { + QObjectITF + QSettingsPTR() *QSettings +} + +func PointerFromQSettings(ptr QSettingsITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSettingsPTR().Pointer() + } + return nil +} + +func QSettingsFromPointer(ptr unsafe.Pointer) *QSettings { + var n = new(QSettings) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSettings_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSettings) QSettingsPTR() *QSettings { + return ptr +} + +//QSettings::Format +type QSettings__Format int + +var ( + QSettings__NativeFormat = QSettings__Format(0) + QSettings__IniFormat = QSettings__Format(1) + QSettings__InvalidFormat = QSettings__Format(16) + QSettings__CustomFormat1 = QSettings__Format(17) + QSettings__CustomFormat2 = QSettings__Format(18) + QSettings__CustomFormat3 = QSettings__Format(19) + QSettings__CustomFormat4 = QSettings__Format(20) + QSettings__CustomFormat5 = QSettings__Format(21) + QSettings__CustomFormat6 = QSettings__Format(22) + QSettings__CustomFormat7 = QSettings__Format(23) + QSettings__CustomFormat8 = QSettings__Format(24) + QSettings__CustomFormat9 = QSettings__Format(25) + QSettings__CustomFormat10 = QSettings__Format(26) + QSettings__CustomFormat11 = QSettings__Format(27) + QSettings__CustomFormat12 = QSettings__Format(28) + QSettings__CustomFormat13 = QSettings__Format(29) + QSettings__CustomFormat14 = QSettings__Format(30) + QSettings__CustomFormat15 = QSettings__Format(31) + QSettings__CustomFormat16 = QSettings__Format(32) +) + +//QSettings::Scope +type QSettings__Scope int + +var ( + QSettings__UserScope = QSettings__Scope(0) + QSettings__SystemScope = QSettings__Scope(1) +) + +//QSettings::Status +type QSettings__Status int + +var ( + QSettings__NoError = QSettings__Status(0) + QSettings__AccessError = QSettings__Status(1) + QSettings__FormatError = QSettings__Status(2) +) + +func NewQSettings3(format QSettings__Format, scope QSettings__Scope, organization string, application string, parent QObjectITF) *QSettings { + return QSettingsFromPointer(unsafe.Pointer(C.QSettings_NewQSettings3(C.int(format), C.int(scope), C.CString(organization), C.CString(application), C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func NewQSettings5(parent QObjectITF) *QSettings { + return QSettingsFromPointer(unsafe.Pointer(C.QSettings_NewQSettings5(C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func NewQSettings2(scope QSettings__Scope, organization string, application string, parent QObjectITF) *QSettings { + return QSettingsFromPointer(unsafe.Pointer(C.QSettings_NewQSettings2(C.int(scope), C.CString(organization), C.CString(application), C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func NewQSettings4(fileName string, format QSettings__Format, parent QObjectITF) *QSettings { + return QSettingsFromPointer(unsafe.Pointer(C.QSettings_NewQSettings4(C.CString(fileName), C.int(format), C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func NewQSettings(organization string, application string, parent QObjectITF) *QSettings { + return QSettingsFromPointer(unsafe.Pointer(C.QSettings_NewQSettings(C.CString(organization), C.CString(application), C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func (ptr *QSettings) AllKeys() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QSettings_AllKeys(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QSettings) ApplicationName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSettings_ApplicationName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSettings) BeginGroup(prefix string) { + if ptr.Pointer() != nil { + C.QSettings_BeginGroup(C.QtObjectPtr(ptr.Pointer()), C.CString(prefix)) + } +} + +func (ptr *QSettings) BeginReadArray(prefix string) int { + if ptr.Pointer() != nil { + return int(C.QSettings_BeginReadArray(C.QtObjectPtr(ptr.Pointer()), C.CString(prefix))) + } + return 0 +} + +func (ptr *QSettings) BeginWriteArray(prefix string, size int) { + if ptr.Pointer() != nil { + C.QSettings_BeginWriteArray(C.QtObjectPtr(ptr.Pointer()), C.CString(prefix), C.int(size)) + } +} + +func (ptr *QSettings) ChildGroups() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QSettings_ChildGroups(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QSettings) ChildKeys() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QSettings_ChildKeys(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QSettings) Clear() { + if ptr.Pointer() != nil { + C.QSettings_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSettings) Contains(key string) bool { + if ptr.Pointer() != nil { + return C.QSettings_Contains(C.QtObjectPtr(ptr.Pointer()), C.CString(key)) != 0 + } + return false +} + +func QSettings_DefaultFormat() QSettings__Format { + return QSettings__Format(C.QSettings_QSettings_DefaultFormat()) +} + +func (ptr *QSettings) EndArray() { + if ptr.Pointer() != nil { + C.QSettings_EndArray(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSettings) EndGroup() { + if ptr.Pointer() != nil { + C.QSettings_EndGroup(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSettings) FallbacksEnabled() bool { + if ptr.Pointer() != nil { + return C.QSettings_FallbacksEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSettings) FileName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSettings_FileName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSettings) Format() QSettings__Format { + if ptr.Pointer() != nil { + return QSettings__Format(C.QSettings_Format(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSettings) Group() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSettings_Group(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSettings) IniCodec() *QTextCodec { + if ptr.Pointer() != nil { + return QTextCodecFromPointer(unsafe.Pointer(C.QSettings_IniCodec(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSettings) IsWritable() bool { + if ptr.Pointer() != nil { + return C.QSettings_IsWritable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSettings) OrganizationName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSettings_OrganizationName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSettings) Scope() QSettings__Scope { + if ptr.Pointer() != nil { + return QSettings__Scope(C.QSettings_Scope(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSettings) SetArrayIndex(i int) { + if ptr.Pointer() != nil { + C.QSettings_SetArrayIndex(C.QtObjectPtr(ptr.Pointer()), C.int(i)) + } +} + +func QSettings_SetDefaultFormat(format QSettings__Format) { + C.QSettings_QSettings_SetDefaultFormat(C.int(format)) +} + +func (ptr *QSettings) SetFallbacksEnabled(b bool) { + if ptr.Pointer() != nil { + C.QSettings_SetFallbacksEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(b))) + } +} + +func (ptr *QSettings) SetIniCodec(codec QTextCodecITF) { + if ptr.Pointer() != nil { + C.QSettings_SetIniCodec(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextCodec(codec))) + } +} + +func (ptr *QSettings) SetIniCodec2(codecName string) { + if ptr.Pointer() != nil { + C.QSettings_SetIniCodec2(C.QtObjectPtr(ptr.Pointer()), C.CString(codecName)) + } +} + +func QSettings_SetPath(format QSettings__Format, scope QSettings__Scope, path string) { + C.QSettings_QSettings_SetPath(C.int(format), C.int(scope), C.CString(path)) +} + +func (ptr *QSettings) SetValue(key string, value string) { + if ptr.Pointer() != nil { + C.QSettings_SetValue(C.QtObjectPtr(ptr.Pointer()), C.CString(key), C.CString(value)) + } +} + +func (ptr *QSettings) Status() QSettings__Status { + if ptr.Pointer() != nil { + return QSettings__Status(C.QSettings_Status(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSettings) Sync() { + if ptr.Pointer() != nil { + C.QSettings_Sync(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSettings) Value(key string, defaultValue string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QSettings_Value(C.QtObjectPtr(ptr.Pointer()), C.CString(key), C.CString(defaultValue))) + } + return "" +} + +func (ptr *QSettings) DestroyQSettings() { + if ptr.Pointer() != nil { + C.QSettings_DestroyQSettings(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qsettings.h b/core/qsettings.h new file mode 100755 index 00000000..4e3ac3c3 --- /dev/null +++ b/core/qsettings.h @@ -0,0 +1,45 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSettings_NewQSettings3(int format, int scope, char* organization, char* application, QtObjectPtr parent); +QtObjectPtr QSettings_NewQSettings5(QtObjectPtr parent); +QtObjectPtr QSettings_NewQSettings2(int scope, char* organization, char* application, QtObjectPtr parent); +QtObjectPtr QSettings_NewQSettings4(char* fileName, int format, QtObjectPtr parent); +QtObjectPtr QSettings_NewQSettings(char* organization, char* application, QtObjectPtr parent); +char* QSettings_AllKeys(QtObjectPtr ptr); +char* QSettings_ApplicationName(QtObjectPtr ptr); +void QSettings_BeginGroup(QtObjectPtr ptr, char* prefix); +int QSettings_BeginReadArray(QtObjectPtr ptr, char* prefix); +void QSettings_BeginWriteArray(QtObjectPtr ptr, char* prefix, int size); +char* QSettings_ChildGroups(QtObjectPtr ptr); +char* QSettings_ChildKeys(QtObjectPtr ptr); +void QSettings_Clear(QtObjectPtr ptr); +int QSettings_Contains(QtObjectPtr ptr, char* key); +int QSettings_QSettings_DefaultFormat(); +void QSettings_EndArray(QtObjectPtr ptr); +void QSettings_EndGroup(QtObjectPtr ptr); +int QSettings_FallbacksEnabled(QtObjectPtr ptr); +char* QSettings_FileName(QtObjectPtr ptr); +int QSettings_Format(QtObjectPtr ptr); +char* QSettings_Group(QtObjectPtr ptr); +QtObjectPtr QSettings_IniCodec(QtObjectPtr ptr); +int QSettings_IsWritable(QtObjectPtr ptr); +char* QSettings_OrganizationName(QtObjectPtr ptr); +int QSettings_Scope(QtObjectPtr ptr); +void QSettings_SetArrayIndex(QtObjectPtr ptr, int i); +void QSettings_QSettings_SetDefaultFormat(int format); +void QSettings_SetFallbacksEnabled(QtObjectPtr ptr, int b); +void QSettings_SetIniCodec(QtObjectPtr ptr, QtObjectPtr codec); +void QSettings_SetIniCodec2(QtObjectPtr ptr, char* codecName); +void QSettings_QSettings_SetPath(int format, int scope, char* path); +void QSettings_SetValue(QtObjectPtr ptr, char* key, char* value); +int QSettings_Status(QtObjectPtr ptr); +void QSettings_Sync(QtObjectPtr ptr); +char* QSettings_Value(QtObjectPtr ptr, char* key, char* defaultValue); +void QSettings_DestroyQSettings(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qshareddata.cpp b/core/qshareddata.cpp new file mode 100755 index 00000000..ecc19bcb --- /dev/null +++ b/core/qshareddata.cpp @@ -0,0 +1,20 @@ +#include "qshareddata.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSharedData: public QSharedData { +public: +}; + +QtObjectPtr QSharedData_NewQSharedData(){ + return new QSharedData(); +} + +QtObjectPtr QSharedData_NewQSharedData2(QtObjectPtr other){ + return new QSharedData(*static_cast(other)); +} + diff --git a/core/qshareddata.go b/core/qshareddata.go new file mode 100755 index 00000000..e9850273 --- /dev/null +++ b/core/qshareddata.go @@ -0,0 +1,48 @@ +package core + +//#include "qshareddata.h" +import "C" +import ( + "unsafe" +) + +type QSharedData struct { + ptr unsafe.Pointer +} + +type QSharedDataITF interface { + QSharedDataPTR() *QSharedData +} + +func (p *QSharedData) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSharedData) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSharedData(ptr QSharedDataITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSharedDataPTR().Pointer() + } + return nil +} + +func QSharedDataFromPointer(ptr unsafe.Pointer) *QSharedData { + var n = new(QSharedData) + n.SetPointer(ptr) + return n +} + +func (ptr *QSharedData) QSharedDataPTR() *QSharedData { + return ptr +} + +func NewQSharedData() *QSharedData { + return QSharedDataFromPointer(unsafe.Pointer(C.QSharedData_NewQSharedData())) +} + +func NewQSharedData2(other QSharedDataITF) *QSharedData { + return QSharedDataFromPointer(unsafe.Pointer(C.QSharedData_NewQSharedData2(C.QtObjectPtr(PointerFromQSharedData(other))))) +} diff --git a/core/qshareddata.h b/core/qshareddata.h new file mode 100755 index 00000000..3c8e4872 --- /dev/null +++ b/core/qshareddata.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSharedData_NewQSharedData(); +QtObjectPtr QSharedData_NewQSharedData2(QtObjectPtr other); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qshareddatapointer.cpp b/core/qshareddatapointer.cpp new file mode 100755 index 00000000..54ba8d6b --- /dev/null +++ b/core/qshareddatapointer.cpp @@ -0,0 +1,9 @@ +#include "qshareddatapointer.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qshareddatapointer.go b/core/qshareddatapointer.go new file mode 100755 index 00000000..62e8547f --- /dev/null +++ b/core/qshareddatapointer.go @@ -0,0 +1,40 @@ +package core + +//#include "qshareddatapointer.h" +import "C" +import ( + "unsafe" +) + +type QSharedDataPointer struct { + ptr unsafe.Pointer +} + +type QSharedDataPointerITF interface { + QSharedDataPointerPTR() *QSharedDataPointer +} + +func (p *QSharedDataPointer) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSharedDataPointer) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSharedDataPointer(ptr QSharedDataPointerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSharedDataPointerPTR().Pointer() + } + return nil +} + +func QSharedDataPointerFromPointer(ptr unsafe.Pointer) *QSharedDataPointer { + var n = new(QSharedDataPointer) + n.SetPointer(ptr) + return n +} + +func (ptr *QSharedDataPointer) QSharedDataPointerPTR() *QSharedDataPointer { + return ptr +} diff --git a/core/qshareddatapointer.h b/core/qshareddatapointer.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qshareddatapointer.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qsharedmemory.cpp b/core/qsharedmemory.cpp new file mode 100755 index 00000000..8e234447 --- /dev/null +++ b/core/qsharedmemory.cpp @@ -0,0 +1,89 @@ +#include "qsharedmemory.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSharedMemory: public QSharedMemory { +public: +}; + +QtObjectPtr QSharedMemory_NewQSharedMemory2(QtObjectPtr parent){ + return new QSharedMemory(static_cast(parent)); +} + +QtObjectPtr QSharedMemory_NewQSharedMemory(char* key, QtObjectPtr parent){ + return new QSharedMemory(QString(key), static_cast(parent)); +} + +int QSharedMemory_Attach(QtObjectPtr ptr, int mode){ + return static_cast(ptr)->attach(static_cast(mode)); +} + +void QSharedMemory_ConstData(QtObjectPtr ptr){ + static_cast(ptr)->constData(); +} + +int QSharedMemory_Create(QtObjectPtr ptr, int size, int mode){ + return static_cast(ptr)->create(size, static_cast(mode)); +} + +void QSharedMemory_Data(QtObjectPtr ptr){ + static_cast(ptr)->data(); +} + +void QSharedMemory_Data2(QtObjectPtr ptr){ + static_cast(ptr)->data(); +} + +int QSharedMemory_Detach(QtObjectPtr ptr){ + return static_cast(ptr)->detach(); +} + +int QSharedMemory_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +char* QSharedMemory_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +int QSharedMemory_IsAttached(QtObjectPtr ptr){ + return static_cast(ptr)->isAttached(); +} + +char* QSharedMemory_Key(QtObjectPtr ptr){ + return static_cast(ptr)->key().toUtf8().data(); +} + +int QSharedMemory_Lock(QtObjectPtr ptr){ + return static_cast(ptr)->lock(); +} + +char* QSharedMemory_NativeKey(QtObjectPtr ptr){ + return static_cast(ptr)->nativeKey().toUtf8().data(); +} + +void QSharedMemory_SetKey(QtObjectPtr ptr, char* key){ + static_cast(ptr)->setKey(QString(key)); +} + +void QSharedMemory_SetNativeKey(QtObjectPtr ptr, char* key){ + static_cast(ptr)->setNativeKey(QString(key)); +} + +int QSharedMemory_Size(QtObjectPtr ptr){ + return static_cast(ptr)->size(); +} + +int QSharedMemory_Unlock(QtObjectPtr ptr){ + return static_cast(ptr)->unlock(); +} + +void QSharedMemory_DestroyQSharedMemory(QtObjectPtr ptr){ + static_cast(ptr)->~QSharedMemory(); +} + diff --git a/core/qsharedmemory.go b/core/qsharedmemory.go new file mode 100755 index 00000000..a23cd0d6 --- /dev/null +++ b/core/qsharedmemory.go @@ -0,0 +1,182 @@ +package core + +//#include "qsharedmemory.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QSharedMemory struct { + QObject +} + +type QSharedMemoryITF interface { + QObjectITF + QSharedMemoryPTR() *QSharedMemory +} + +func PointerFromQSharedMemory(ptr QSharedMemoryITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSharedMemoryPTR().Pointer() + } + return nil +} + +func QSharedMemoryFromPointer(ptr unsafe.Pointer) *QSharedMemory { + var n = new(QSharedMemory) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSharedMemory_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSharedMemory) QSharedMemoryPTR() *QSharedMemory { + return ptr +} + +//QSharedMemory::AccessMode +type QSharedMemory__AccessMode int + +var ( + QSharedMemory__ReadOnly = QSharedMemory__AccessMode(0) + QSharedMemory__ReadWrite = QSharedMemory__AccessMode(1) +) + +//QSharedMemory::SharedMemoryError +type QSharedMemory__SharedMemoryError int + +var ( + QSharedMemory__NoError = QSharedMemory__SharedMemoryError(0) + QSharedMemory__PermissionDenied = QSharedMemory__SharedMemoryError(1) + QSharedMemory__InvalidSize = QSharedMemory__SharedMemoryError(2) + QSharedMemory__KeyError = QSharedMemory__SharedMemoryError(3) + QSharedMemory__AlreadyExists = QSharedMemory__SharedMemoryError(4) + QSharedMemory__NotFound = QSharedMemory__SharedMemoryError(5) + QSharedMemory__LockError = QSharedMemory__SharedMemoryError(6) + QSharedMemory__OutOfResources = QSharedMemory__SharedMemoryError(7) + QSharedMemory__UnknownError = QSharedMemory__SharedMemoryError(8) +) + +func NewQSharedMemory2(parent QObjectITF) *QSharedMemory { + return QSharedMemoryFromPointer(unsafe.Pointer(C.QSharedMemory_NewQSharedMemory2(C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func NewQSharedMemory(key string, parent QObjectITF) *QSharedMemory { + return QSharedMemoryFromPointer(unsafe.Pointer(C.QSharedMemory_NewQSharedMemory(C.CString(key), C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func (ptr *QSharedMemory) Attach(mode QSharedMemory__AccessMode) bool { + if ptr.Pointer() != nil { + return C.QSharedMemory_Attach(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) != 0 + } + return false +} + +func (ptr *QSharedMemory) ConstData() { + if ptr.Pointer() != nil { + C.QSharedMemory_ConstData(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSharedMemory) Create(size int, mode QSharedMemory__AccessMode) bool { + if ptr.Pointer() != nil { + return C.QSharedMemory_Create(C.QtObjectPtr(ptr.Pointer()), C.int(size), C.int(mode)) != 0 + } + return false +} + +func (ptr *QSharedMemory) Data() { + if ptr.Pointer() != nil { + C.QSharedMemory_Data(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSharedMemory) Data2() { + if ptr.Pointer() != nil { + C.QSharedMemory_Data2(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSharedMemory) Detach() bool { + if ptr.Pointer() != nil { + return C.QSharedMemory_Detach(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSharedMemory) Error() QSharedMemory__SharedMemoryError { + if ptr.Pointer() != nil { + return QSharedMemory__SharedMemoryError(C.QSharedMemory_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSharedMemory) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSharedMemory_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSharedMemory) IsAttached() bool { + if ptr.Pointer() != nil { + return C.QSharedMemory_IsAttached(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSharedMemory) Key() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSharedMemory_Key(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSharedMemory) Lock() bool { + if ptr.Pointer() != nil { + return C.QSharedMemory_Lock(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSharedMemory) NativeKey() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSharedMemory_NativeKey(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSharedMemory) SetKey(key string) { + if ptr.Pointer() != nil { + C.QSharedMemory_SetKey(C.QtObjectPtr(ptr.Pointer()), C.CString(key)) + } +} + +func (ptr *QSharedMemory) SetNativeKey(key string) { + if ptr.Pointer() != nil { + C.QSharedMemory_SetNativeKey(C.QtObjectPtr(ptr.Pointer()), C.CString(key)) + } +} + +func (ptr *QSharedMemory) Size() int { + if ptr.Pointer() != nil { + return int(C.QSharedMemory_Size(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSharedMemory) Unlock() bool { + if ptr.Pointer() != nil { + return C.QSharedMemory_Unlock(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSharedMemory) DestroyQSharedMemory() { + if ptr.Pointer() != nil { + C.QSharedMemory_DestroyQSharedMemory(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qsharedmemory.h b/core/qsharedmemory.h new file mode 100755 index 00000000..aa8bbe06 --- /dev/null +++ b/core/qsharedmemory.h @@ -0,0 +1,28 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSharedMemory_NewQSharedMemory2(QtObjectPtr parent); +QtObjectPtr QSharedMemory_NewQSharedMemory(char* key, QtObjectPtr parent); +int QSharedMemory_Attach(QtObjectPtr ptr, int mode); +void QSharedMemory_ConstData(QtObjectPtr ptr); +int QSharedMemory_Create(QtObjectPtr ptr, int size, int mode); +void QSharedMemory_Data(QtObjectPtr ptr); +void QSharedMemory_Data2(QtObjectPtr ptr); +int QSharedMemory_Detach(QtObjectPtr ptr); +int QSharedMemory_Error(QtObjectPtr ptr); +char* QSharedMemory_ErrorString(QtObjectPtr ptr); +int QSharedMemory_IsAttached(QtObjectPtr ptr); +char* QSharedMemory_Key(QtObjectPtr ptr); +int QSharedMemory_Lock(QtObjectPtr ptr); +char* QSharedMemory_NativeKey(QtObjectPtr ptr); +void QSharedMemory_SetKey(QtObjectPtr ptr, char* key); +void QSharedMemory_SetNativeKey(QtObjectPtr ptr, char* key); +int QSharedMemory_Size(QtObjectPtr ptr); +int QSharedMemory_Unlock(QtObjectPtr ptr); +void QSharedMemory_DestroyQSharedMemory(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qsharedpointer.cpp b/core/qsharedpointer.cpp new file mode 100755 index 00000000..b7e9bc04 --- /dev/null +++ b/core/qsharedpointer.cpp @@ -0,0 +1,8 @@ +#include "qsharedpointer.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qsharedpointer.go b/core/qsharedpointer.go new file mode 100755 index 00000000..2e5d9b6b --- /dev/null +++ b/core/qsharedpointer.go @@ -0,0 +1,40 @@ +package core + +//#include "qsharedpointer.h" +import "C" +import ( + "unsafe" +) + +type QSharedPointer struct { + ptr unsafe.Pointer +} + +type QSharedPointerITF interface { + QSharedPointerPTR() *QSharedPointer +} + +func (p *QSharedPointer) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSharedPointer) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSharedPointer(ptr QSharedPointerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSharedPointerPTR().Pointer() + } + return nil +} + +func QSharedPointerFromPointer(ptr unsafe.Pointer) *QSharedPointer { + var n = new(QSharedPointer) + n.SetPointer(ptr) + return n +} + +func (ptr *QSharedPointer) QSharedPointerPTR() *QSharedPointer { + return ptr +} diff --git a/core/qsharedpointer.h b/core/qsharedpointer.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qsharedpointer.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qsignalblocker.cpp b/core/qsignalblocker.cpp new file mode 100755 index 00000000..b98810c3 --- /dev/null +++ b/core/qsignalblocker.cpp @@ -0,0 +1,24 @@ +#include "qsignalblocker.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSignalBlocker: public QSignalBlocker { +public: +}; + +void QSignalBlocker_Reblock(QtObjectPtr ptr){ + static_cast(ptr)->reblock(); +} + +void QSignalBlocker_Unblock(QtObjectPtr ptr){ + static_cast(ptr)->unblock(); +} + +void QSignalBlocker_DestroyQSignalBlocker(QtObjectPtr ptr){ + static_cast(ptr)->~QSignalBlocker(); +} + diff --git a/core/qsignalblocker.go b/core/qsignalblocker.go new file mode 100755 index 00000000..5a188103 --- /dev/null +++ b/core/qsignalblocker.go @@ -0,0 +1,58 @@ +package core + +//#include "qsignalblocker.h" +import "C" +import ( + "unsafe" +) + +type QSignalBlocker struct { + ptr unsafe.Pointer +} + +type QSignalBlockerITF interface { + QSignalBlockerPTR() *QSignalBlocker +} + +func (p *QSignalBlocker) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSignalBlocker) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSignalBlocker(ptr QSignalBlockerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSignalBlockerPTR().Pointer() + } + return nil +} + +func QSignalBlockerFromPointer(ptr unsafe.Pointer) *QSignalBlocker { + var n = new(QSignalBlocker) + n.SetPointer(ptr) + return n +} + +func (ptr *QSignalBlocker) QSignalBlockerPTR() *QSignalBlocker { + return ptr +} + +func (ptr *QSignalBlocker) Reblock() { + if ptr.Pointer() != nil { + C.QSignalBlocker_Reblock(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSignalBlocker) Unblock() { + if ptr.Pointer() != nil { + C.QSignalBlocker_Unblock(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSignalBlocker) DestroyQSignalBlocker() { + if ptr.Pointer() != nil { + C.QSignalBlocker_DestroyQSignalBlocker(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qsignalblocker.h b/core/qsignalblocker.h new file mode 100755 index 00000000..afbe59dc --- /dev/null +++ b/core/qsignalblocker.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QSignalBlocker_Reblock(QtObjectPtr ptr); +void QSignalBlocker_Unblock(QtObjectPtr ptr); +void QSignalBlocker_DestroyQSignalBlocker(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qsignalmapper.cpp b/core/qsignalmapper.cpp new file mode 100755 index 00000000..59cd3a7d --- /dev/null +++ b/core/qsignalmapper.cpp @@ -0,0 +1,67 @@ +#include "qsignalmapper.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSignalMapper: public QSignalMapper { +public: +void Signal_Mapped(int i){callbackQSignalMapperMapped(this->objectName().toUtf8().data(), i);}; +}; + +QtObjectPtr QSignalMapper_NewQSignalMapper(QtObjectPtr parent){ + return new QSignalMapper(static_cast(parent)); +} + +void QSignalMapper_Map(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "map"); +} + +void QSignalMapper_Map2(QtObjectPtr ptr, QtObjectPtr sender){ + QMetaObject::invokeMethod(static_cast(ptr), "map", Q_ARG(QObject*, static_cast(sender))); +} + +void QSignalMapper_ConnectMapped(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSignalMapper::mapped), static_cast(ptr), static_cast(&MyQSignalMapper::Signal_Mapped));; +} + +void QSignalMapper_DisconnectMapped(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSignalMapper::mapped), static_cast(ptr), static_cast(&MyQSignalMapper::Signal_Mapped));; +} + +QtObjectPtr QSignalMapper_Mapping4(QtObjectPtr ptr, QtObjectPtr object){ + return static_cast(ptr)->mapping(static_cast(object)); +} + +QtObjectPtr QSignalMapper_Mapping2(QtObjectPtr ptr, char* id){ + return static_cast(ptr)->mapping(QString(id)); +} + +QtObjectPtr QSignalMapper_Mapping(QtObjectPtr ptr, int id){ + return static_cast(ptr)->mapping(id); +} + +void QSignalMapper_RemoveMappings(QtObjectPtr ptr, QtObjectPtr sender){ + static_cast(ptr)->removeMappings(static_cast(sender)); +} + +void QSignalMapper_SetMapping4(QtObjectPtr ptr, QtObjectPtr sender, QtObjectPtr object){ + static_cast(ptr)->setMapping(static_cast(sender), static_cast(object)); +} + +void QSignalMapper_SetMapping2(QtObjectPtr ptr, QtObjectPtr sender, char* text){ + static_cast(ptr)->setMapping(static_cast(sender), QString(text)); +} + +void QSignalMapper_SetMapping(QtObjectPtr ptr, QtObjectPtr sender, int id){ + static_cast(ptr)->setMapping(static_cast(sender), id); +} + +void QSignalMapper_DestroyQSignalMapper(QtObjectPtr ptr){ + static_cast(ptr)->~QSignalMapper(); +} + diff --git a/core/qsignalmapper.go b/core/qsignalmapper.go new file mode 100755 index 00000000..08b5f71e --- /dev/null +++ b/core/qsignalmapper.go @@ -0,0 +1,124 @@ +package core + +//#include "qsignalmapper.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QSignalMapper struct { + QObject +} + +type QSignalMapperITF interface { + QObjectITF + QSignalMapperPTR() *QSignalMapper +} + +func PointerFromQSignalMapper(ptr QSignalMapperITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSignalMapperPTR().Pointer() + } + return nil +} + +func QSignalMapperFromPointer(ptr unsafe.Pointer) *QSignalMapper { + var n = new(QSignalMapper) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSignalMapper_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSignalMapper) QSignalMapperPTR() *QSignalMapper { + return ptr +} + +func NewQSignalMapper(parent QObjectITF) *QSignalMapper { + return QSignalMapperFromPointer(unsafe.Pointer(C.QSignalMapper_NewQSignalMapper(C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func (ptr *QSignalMapper) Map() { + if ptr.Pointer() != nil { + C.QSignalMapper_Map(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSignalMapper) Map2(sender QObjectITF) { + if ptr.Pointer() != nil { + C.QSignalMapper_Map2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(sender))) + } +} + +func (ptr *QSignalMapper) ConnectMapped(f func(i int)) { + if ptr.Pointer() != nil { + C.QSignalMapper_ConnectMapped(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "mapped", f) + } +} + +func (ptr *QSignalMapper) DisconnectMapped() { + if ptr.Pointer() != nil { + C.QSignalMapper_DisconnectMapped(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "mapped") + } +} + +//export callbackQSignalMapperMapped +func callbackQSignalMapperMapped(ptrName *C.char, i C.int) { + qt.GetSignal(C.GoString(ptrName), "mapped").(func(int))(int(i)) +} + +func (ptr *QSignalMapper) Mapping4(object QObjectITF) *QObject { + if ptr.Pointer() != nil { + return QObjectFromPointer(unsafe.Pointer(C.QSignalMapper_Mapping4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(object))))) + } + return nil +} + +func (ptr *QSignalMapper) Mapping2(id string) *QObject { + if ptr.Pointer() != nil { + return QObjectFromPointer(unsafe.Pointer(C.QSignalMapper_Mapping2(C.QtObjectPtr(ptr.Pointer()), C.CString(id)))) + } + return nil +} + +func (ptr *QSignalMapper) Mapping(id int) *QObject { + if ptr.Pointer() != nil { + return QObjectFromPointer(unsafe.Pointer(C.QSignalMapper_Mapping(C.QtObjectPtr(ptr.Pointer()), C.int(id)))) + } + return nil +} + +func (ptr *QSignalMapper) RemoveMappings(sender QObjectITF) { + if ptr.Pointer() != nil { + C.QSignalMapper_RemoveMappings(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(sender))) + } +} + +func (ptr *QSignalMapper) SetMapping4(sender QObjectITF, object QObjectITF) { + if ptr.Pointer() != nil { + C.QSignalMapper_SetMapping4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(sender)), C.QtObjectPtr(PointerFromQObject(object))) + } +} + +func (ptr *QSignalMapper) SetMapping2(sender QObjectITF, text string) { + if ptr.Pointer() != nil { + C.QSignalMapper_SetMapping2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(sender)), C.CString(text)) + } +} + +func (ptr *QSignalMapper) SetMapping(sender QObjectITF, id int) { + if ptr.Pointer() != nil { + C.QSignalMapper_SetMapping(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(sender)), C.int(id)) + } +} + +func (ptr *QSignalMapper) DestroyQSignalMapper() { + if ptr.Pointer() != nil { + C.QSignalMapper_DestroyQSignalMapper(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qsignalmapper.h b/core/qsignalmapper.h new file mode 100755 index 00000000..beaa20b3 --- /dev/null +++ b/core/qsignalmapper.h @@ -0,0 +1,22 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSignalMapper_NewQSignalMapper(QtObjectPtr parent); +void QSignalMapper_Map(QtObjectPtr ptr); +void QSignalMapper_Map2(QtObjectPtr ptr, QtObjectPtr sender); +void QSignalMapper_ConnectMapped(QtObjectPtr ptr); +void QSignalMapper_DisconnectMapped(QtObjectPtr ptr); +QtObjectPtr QSignalMapper_Mapping4(QtObjectPtr ptr, QtObjectPtr object); +QtObjectPtr QSignalMapper_Mapping2(QtObjectPtr ptr, char* id); +QtObjectPtr QSignalMapper_Mapping(QtObjectPtr ptr, int id); +void QSignalMapper_RemoveMappings(QtObjectPtr ptr, QtObjectPtr sender); +void QSignalMapper_SetMapping4(QtObjectPtr ptr, QtObjectPtr sender, QtObjectPtr object); +void QSignalMapper_SetMapping2(QtObjectPtr ptr, QtObjectPtr sender, char* text); +void QSignalMapper_SetMapping(QtObjectPtr ptr, QtObjectPtr sender, int id); +void QSignalMapper_DestroyQSignalMapper(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qsignaltransition.cpp b/core/qsignaltransition.cpp new file mode 100755 index 00000000..3020cd90 --- /dev/null +++ b/core/qsignaltransition.cpp @@ -0,0 +1,57 @@ +#include "qsignaltransition.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSignalTransition: public QSignalTransition { +public: +void Signal_SenderObjectChanged(){callbackQSignalTransitionSenderObjectChanged(this->objectName().toUtf8().data());}; +void Signal_SignalChanged(){callbackQSignalTransitionSignalChanged(this->objectName().toUtf8().data());}; +}; + +QtObjectPtr QSignalTransition_NewQSignalTransition(QtObjectPtr sourceState){ + return new QSignalTransition(static_cast(sourceState)); +} + +QtObjectPtr QSignalTransition_NewQSignalTransition2(QtObjectPtr sender, char* signal, QtObjectPtr sourceState){ + return new QSignalTransition(static_cast(sender), const_cast(signal), static_cast(sourceState)); +} + +QtObjectPtr QSignalTransition_SenderObject(QtObjectPtr ptr){ + return static_cast(ptr)->senderObject(); +} + +void QSignalTransition_ConnectSenderObjectChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QSignalTransition::senderObjectChanged, static_cast(ptr), static_cast(&MyQSignalTransition::Signal_SenderObjectChanged));; +} + +void QSignalTransition_DisconnectSenderObjectChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QSignalTransition::senderObjectChanged, static_cast(ptr), static_cast(&MyQSignalTransition::Signal_SenderObjectChanged));; +} + +void QSignalTransition_SetSenderObject(QtObjectPtr ptr, QtObjectPtr sender){ + static_cast(ptr)->setSenderObject(static_cast(sender)); +} + +void QSignalTransition_SetSignal(QtObjectPtr ptr, QtObjectPtr signal){ + static_cast(ptr)->setSignal(*static_cast(signal)); +} + +void QSignalTransition_ConnectSignalChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QSignalTransition::signalChanged, static_cast(ptr), static_cast(&MyQSignalTransition::Signal_SignalChanged));; +} + +void QSignalTransition_DisconnectSignalChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QSignalTransition::signalChanged, static_cast(ptr), static_cast(&MyQSignalTransition::Signal_SignalChanged));; +} + +void QSignalTransition_DestroyQSignalTransition(QtObjectPtr ptr){ + static_cast(ptr)->~QSignalTransition(); +} + diff --git a/core/qsignaltransition.go b/core/qsignaltransition.go new file mode 100755 index 00000000..61dc33b0 --- /dev/null +++ b/core/qsignaltransition.go @@ -0,0 +1,109 @@ +package core + +//#include "qsignaltransition.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QSignalTransition struct { + QAbstractTransition +} + +type QSignalTransitionITF interface { + QAbstractTransitionITF + QSignalTransitionPTR() *QSignalTransition +} + +func PointerFromQSignalTransition(ptr QSignalTransitionITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSignalTransitionPTR().Pointer() + } + return nil +} + +func QSignalTransitionFromPointer(ptr unsafe.Pointer) *QSignalTransition { + var n = new(QSignalTransition) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSignalTransition_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSignalTransition) QSignalTransitionPTR() *QSignalTransition { + return ptr +} + +func NewQSignalTransition(sourceState QStateITF) *QSignalTransition { + return QSignalTransitionFromPointer(unsafe.Pointer(C.QSignalTransition_NewQSignalTransition(C.QtObjectPtr(PointerFromQState(sourceState))))) +} + +func NewQSignalTransition2(sender QObjectITF, signal string, sourceState QStateITF) *QSignalTransition { + return QSignalTransitionFromPointer(unsafe.Pointer(C.QSignalTransition_NewQSignalTransition2(C.QtObjectPtr(PointerFromQObject(sender)), C.CString(signal), C.QtObjectPtr(PointerFromQState(sourceState))))) +} + +func (ptr *QSignalTransition) SenderObject() *QObject { + if ptr.Pointer() != nil { + return QObjectFromPointer(unsafe.Pointer(C.QSignalTransition_SenderObject(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSignalTransition) ConnectSenderObjectChanged(f func()) { + if ptr.Pointer() != nil { + C.QSignalTransition_ConnectSenderObjectChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "senderObjectChanged", f) + } +} + +func (ptr *QSignalTransition) DisconnectSenderObjectChanged() { + if ptr.Pointer() != nil { + C.QSignalTransition_DisconnectSenderObjectChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "senderObjectChanged") + } +} + +//export callbackQSignalTransitionSenderObjectChanged +func callbackQSignalTransitionSenderObjectChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "senderObjectChanged").(func())() +} + +func (ptr *QSignalTransition) SetSenderObject(sender QObjectITF) { + if ptr.Pointer() != nil { + C.QSignalTransition_SetSenderObject(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(sender))) + } +} + +func (ptr *QSignalTransition) SetSignal(signal QByteArrayITF) { + if ptr.Pointer() != nil { + C.QSignalTransition_SetSignal(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQByteArray(signal))) + } +} + +func (ptr *QSignalTransition) ConnectSignalChanged(f func()) { + if ptr.Pointer() != nil { + C.QSignalTransition_ConnectSignalChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "signalChanged", f) + } +} + +func (ptr *QSignalTransition) DisconnectSignalChanged() { + if ptr.Pointer() != nil { + C.QSignalTransition_DisconnectSignalChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "signalChanged") + } +} + +//export callbackQSignalTransitionSignalChanged +func callbackQSignalTransitionSignalChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "signalChanged").(func())() +} + +func (ptr *QSignalTransition) DestroyQSignalTransition() { + if ptr.Pointer() != nil { + C.QSignalTransition_DestroyQSignalTransition(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qsignaltransition.h b/core/qsignaltransition.h new file mode 100755 index 00000000..bbb8e75c --- /dev/null +++ b/core/qsignaltransition.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSignalTransition_NewQSignalTransition(QtObjectPtr sourceState); +QtObjectPtr QSignalTransition_NewQSignalTransition2(QtObjectPtr sender, char* signal, QtObjectPtr sourceState); +QtObjectPtr QSignalTransition_SenderObject(QtObjectPtr ptr); +void QSignalTransition_ConnectSenderObjectChanged(QtObjectPtr ptr); +void QSignalTransition_DisconnectSenderObjectChanged(QtObjectPtr ptr); +void QSignalTransition_SetSenderObject(QtObjectPtr ptr, QtObjectPtr sender); +void QSignalTransition_SetSignal(QtObjectPtr ptr, QtObjectPtr signal); +void QSignalTransition_ConnectSignalChanged(QtObjectPtr ptr); +void QSignalTransition_DisconnectSignalChanged(QtObjectPtr ptr); +void QSignalTransition_DestroyQSignalTransition(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qsize.cpp b/core/qsize.cpp new file mode 100755 index 00000000..6dfba199 --- /dev/null +++ b/core/qsize.cpp @@ -0,0 +1,68 @@ +#include "qsize.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSize: public QSize { +public: +}; + +QtObjectPtr QSize_NewQSize(){ + return new QSize(); +} + +QtObjectPtr QSize_NewQSize2(int width, int height){ + return new QSize(width, height); +} + +int QSize_Height(QtObjectPtr ptr){ + return static_cast(ptr)->height(); +} + +int QSize_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +int QSize_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QSize_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QSize_Rheight(QtObjectPtr ptr){ + return static_cast(ptr)->rheight(); +} + +int QSize_Rwidth(QtObjectPtr ptr){ + return static_cast(ptr)->rwidth(); +} + +void QSize_Scale2(QtObjectPtr ptr, QtObjectPtr size, int mode){ + static_cast(ptr)->scale(*static_cast(size), static_cast(mode)); +} + +void QSize_Scale(QtObjectPtr ptr, int width, int height, int mode){ + static_cast(ptr)->scale(width, height, static_cast(mode)); +} + +void QSize_SetHeight(QtObjectPtr ptr, int height){ + static_cast(ptr)->setHeight(height); +} + +void QSize_SetWidth(QtObjectPtr ptr, int width){ + static_cast(ptr)->setWidth(width); +} + +void QSize_Transpose(QtObjectPtr ptr){ + static_cast(ptr)->transpose(); +} + +int QSize_Width(QtObjectPtr ptr){ + return static_cast(ptr)->width(); +} + diff --git a/core/qsize.go b/core/qsize.go new file mode 100755 index 00000000..4f7f8fc1 --- /dev/null +++ b/core/qsize.go @@ -0,0 +1,127 @@ +package core + +//#include "qsize.h" +import "C" +import ( + "unsafe" +) + +type QSize struct { + ptr unsafe.Pointer +} + +type QSizeITF interface { + QSizePTR() *QSize +} + +func (p *QSize) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSize) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSize(ptr QSizeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSizePTR().Pointer() + } + return nil +} + +func QSizeFromPointer(ptr unsafe.Pointer) *QSize { + var n = new(QSize) + n.SetPointer(ptr) + return n +} + +func (ptr *QSize) QSizePTR() *QSize { + return ptr +} + +func NewQSize() *QSize { + return QSizeFromPointer(unsafe.Pointer(C.QSize_NewQSize())) +} + +func NewQSize2(width int, height int) *QSize { + return QSizeFromPointer(unsafe.Pointer(C.QSize_NewQSize2(C.int(width), C.int(height)))) +} + +func (ptr *QSize) Height() int { + if ptr.Pointer() != nil { + return int(C.QSize_Height(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSize) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QSize_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSize) IsNull() bool { + if ptr.Pointer() != nil { + return C.QSize_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSize) IsValid() bool { + if ptr.Pointer() != nil { + return C.QSize_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSize) Rheight() int { + if ptr.Pointer() != nil { + return int(C.QSize_Rheight(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSize) Rwidth() int { + if ptr.Pointer() != nil { + return int(C.QSize_Rwidth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSize) Scale2(size QSizeITF, mode Qt__AspectRatioMode) { + if ptr.Pointer() != nil { + C.QSize_Scale2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSize(size)), C.int(mode)) + } +} + +func (ptr *QSize) Scale(width int, height int, mode Qt__AspectRatioMode) { + if ptr.Pointer() != nil { + C.QSize_Scale(C.QtObjectPtr(ptr.Pointer()), C.int(width), C.int(height), C.int(mode)) + } +} + +func (ptr *QSize) SetHeight(height int) { + if ptr.Pointer() != nil { + C.QSize_SetHeight(C.QtObjectPtr(ptr.Pointer()), C.int(height)) + } +} + +func (ptr *QSize) SetWidth(width int) { + if ptr.Pointer() != nil { + C.QSize_SetWidth(C.QtObjectPtr(ptr.Pointer()), C.int(width)) + } +} + +func (ptr *QSize) Transpose() { + if ptr.Pointer() != nil { + C.QSize_Transpose(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSize) Width() int { + if ptr.Pointer() != nil { + return int(C.QSize_Width(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/core/qsize.h b/core/qsize.h new file mode 100755 index 00000000..fdb74408 --- /dev/null +++ b/core/qsize.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSize_NewQSize(); +QtObjectPtr QSize_NewQSize2(int width, int height); +int QSize_Height(QtObjectPtr ptr); +int QSize_IsEmpty(QtObjectPtr ptr); +int QSize_IsNull(QtObjectPtr ptr); +int QSize_IsValid(QtObjectPtr ptr); +int QSize_Rheight(QtObjectPtr ptr); +int QSize_Rwidth(QtObjectPtr ptr); +void QSize_Scale2(QtObjectPtr ptr, QtObjectPtr size, int mode); +void QSize_Scale(QtObjectPtr ptr, int width, int height, int mode); +void QSize_SetHeight(QtObjectPtr ptr, int height); +void QSize_SetWidth(QtObjectPtr ptr, int width); +void QSize_Transpose(QtObjectPtr ptr); +int QSize_Width(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qsizef.cpp b/core/qsizef.cpp new file mode 100755 index 00000000..dc375019 --- /dev/null +++ b/core/qsizef.cpp @@ -0,0 +1,41 @@ +#include "qsizef.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSizeF: public QSizeF { +public: +}; + +QtObjectPtr QSizeF_NewQSizeF(){ + return new QSizeF(); +} + +QtObjectPtr QSizeF_NewQSizeF2(QtObjectPtr size){ + return new QSizeF(*static_cast(size)); +} + +int QSizeF_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +int QSizeF_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QSizeF_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +void QSizeF_Scale2(QtObjectPtr ptr, QtObjectPtr size, int mode){ + static_cast(ptr)->scale(*static_cast(size), static_cast(mode)); +} + +void QSizeF_Transpose(QtObjectPtr ptr){ + static_cast(ptr)->transpose(); +} + diff --git a/core/qsizef.go b/core/qsizef.go new file mode 100755 index 00000000..2692c96e --- /dev/null +++ b/core/qsizef.go @@ -0,0 +1,81 @@ +package core + +//#include "qsizef.h" +import "C" +import ( + "unsafe" +) + +type QSizeF struct { + ptr unsafe.Pointer +} + +type QSizeFITF interface { + QSizeFPTR() *QSizeF +} + +func (p *QSizeF) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSizeF) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSizeF(ptr QSizeFITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSizeFPTR().Pointer() + } + return nil +} + +func QSizeFFromPointer(ptr unsafe.Pointer) *QSizeF { + var n = new(QSizeF) + n.SetPointer(ptr) + return n +} + +func (ptr *QSizeF) QSizeFPTR() *QSizeF { + return ptr +} + +func NewQSizeF() *QSizeF { + return QSizeFFromPointer(unsafe.Pointer(C.QSizeF_NewQSizeF())) +} + +func NewQSizeF2(size QSizeITF) *QSizeF { + return QSizeFFromPointer(unsafe.Pointer(C.QSizeF_NewQSizeF2(C.QtObjectPtr(PointerFromQSize(size))))) +} + +func (ptr *QSizeF) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QSizeF_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSizeF) IsNull() bool { + if ptr.Pointer() != nil { + return C.QSizeF_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSizeF) IsValid() bool { + if ptr.Pointer() != nil { + return C.QSizeF_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSizeF) Scale2(size QSizeFITF, mode Qt__AspectRatioMode) { + if ptr.Pointer() != nil { + C.QSizeF_Scale2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSizeF(size)), C.int(mode)) + } +} + +func (ptr *QSizeF) Transpose() { + if ptr.Pointer() != nil { + C.QSizeF_Transpose(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qsizef.h b/core/qsizef.h new file mode 100755 index 00000000..3196393d --- /dev/null +++ b/core/qsizef.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSizeF_NewQSizeF(); +QtObjectPtr QSizeF_NewQSizeF2(QtObjectPtr size); +int QSizeF_IsEmpty(QtObjectPtr ptr); +int QSizeF_IsNull(QtObjectPtr ptr); +int QSizeF_IsValid(QtObjectPtr ptr); +void QSizeF_Scale2(QtObjectPtr ptr, QtObjectPtr size, int mode); +void QSizeF_Transpose(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qsocketnotifier.cpp b/core/qsocketnotifier.cpp new file mode 100755 index 00000000..ec2f90eb --- /dev/null +++ b/core/qsocketnotifier.cpp @@ -0,0 +1,39 @@ +#include "qsocketnotifier.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSocketNotifier: public QSocketNotifier { +public: +void Signal_Activated(int socket){callbackQSocketNotifierActivated(this->objectName().toUtf8().data(), socket);}; +}; + +void QSocketNotifier_ConnectActivated(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QSocketNotifier::activated, static_cast(ptr), static_cast(&MyQSocketNotifier::Signal_Activated));; +} + +void QSocketNotifier_DisconnectActivated(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QSocketNotifier::activated, static_cast(ptr), static_cast(&MyQSocketNotifier::Signal_Activated));; +} + +int QSocketNotifier_IsEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isEnabled(); +} + +void QSocketNotifier_SetEnabled(QtObjectPtr ptr, int enable){ + QMetaObject::invokeMethod(static_cast(ptr), "setEnabled", Q_ARG(bool, enable != 0)); +} + +int QSocketNotifier_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QSocketNotifier_DestroyQSocketNotifier(QtObjectPtr ptr){ + static_cast(ptr)->~QSocketNotifier(); +} + diff --git a/core/qsocketnotifier.go b/core/qsocketnotifier.go new file mode 100755 index 00000000..6a708e0c --- /dev/null +++ b/core/qsocketnotifier.go @@ -0,0 +1,92 @@ +package core + +//#include "qsocketnotifier.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QSocketNotifier struct { + QObject +} + +type QSocketNotifierITF interface { + QObjectITF + QSocketNotifierPTR() *QSocketNotifier +} + +func PointerFromQSocketNotifier(ptr QSocketNotifierITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSocketNotifierPTR().Pointer() + } + return nil +} + +func QSocketNotifierFromPointer(ptr unsafe.Pointer) *QSocketNotifier { + var n = new(QSocketNotifier) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSocketNotifier_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSocketNotifier) QSocketNotifierPTR() *QSocketNotifier { + return ptr +} + +//QSocketNotifier::Type +type QSocketNotifier__Type int + +var ( + QSocketNotifier__Read = QSocketNotifier__Type(0) + QSocketNotifier__Write = QSocketNotifier__Type(1) + QSocketNotifier__Exception = QSocketNotifier__Type(2) +) + +func (ptr *QSocketNotifier) ConnectActivated(f func(socket int)) { + if ptr.Pointer() != nil { + C.QSocketNotifier_ConnectActivated(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "activated", f) + } +} + +func (ptr *QSocketNotifier) DisconnectActivated() { + if ptr.Pointer() != nil { + C.QSocketNotifier_DisconnectActivated(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "activated") + } +} + +//export callbackQSocketNotifierActivated +func callbackQSocketNotifierActivated(ptrName *C.char, socket C.int) { + qt.GetSignal(C.GoString(ptrName), "activated").(func(int))(int(socket)) +} + +func (ptr *QSocketNotifier) IsEnabled() bool { + if ptr.Pointer() != nil { + return C.QSocketNotifier_IsEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSocketNotifier) SetEnabled(enable bool) { + if ptr.Pointer() != nil { + C.QSocketNotifier_SetEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QSocketNotifier) Type() QSocketNotifier__Type { + if ptr.Pointer() != nil { + return QSocketNotifier__Type(C.QSocketNotifier_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSocketNotifier) DestroyQSocketNotifier() { + if ptr.Pointer() != nil { + C.QSocketNotifier_DestroyQSocketNotifier(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qsocketnotifier.h b/core/qsocketnotifier.h new file mode 100755 index 00000000..7fed5679 --- /dev/null +++ b/core/qsocketnotifier.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QSocketNotifier_ConnectActivated(QtObjectPtr ptr); +void QSocketNotifier_DisconnectActivated(QtObjectPtr ptr); +int QSocketNotifier_IsEnabled(QtObjectPtr ptr); +void QSocketNotifier_SetEnabled(QtObjectPtr ptr, int enable); +int QSocketNotifier_Type(QtObjectPtr ptr); +void QSocketNotifier_DestroyQSocketNotifier(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qsortfilterproxymodel.cpp b/core/qsortfilterproxymodel.cpp new file mode 100755 index 00000000..0af73959 --- /dev/null +++ b/core/qsortfilterproxymodel.cpp @@ -0,0 +1,209 @@ +#include "qsortfilterproxymodel.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSortFilterProxyModel: public QSortFilterProxyModel { +public: +}; + +int QSortFilterProxyModel_DynamicSortFilter(QtObjectPtr ptr){ + return static_cast(ptr)->dynamicSortFilter(); +} + +int QSortFilterProxyModel_FilterCaseSensitivity(QtObjectPtr ptr){ + return static_cast(ptr)->filterCaseSensitivity(); +} + +int QSortFilterProxyModel_FilterKeyColumn(QtObjectPtr ptr){ + return static_cast(ptr)->filterKeyColumn(); +} + +int QSortFilterProxyModel_FilterRole(QtObjectPtr ptr){ + return static_cast(ptr)->filterRole(); +} + +int QSortFilterProxyModel_IsSortLocaleAware(QtObjectPtr ptr){ + return static_cast(ptr)->isSortLocaleAware(); +} + +void QSortFilterProxyModel_SetDynamicSortFilter(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setDynamicSortFilter(enable != 0); +} + +void QSortFilterProxyModel_SetFilterCaseSensitivity(QtObjectPtr ptr, int cs){ + static_cast(ptr)->setFilterCaseSensitivity(static_cast(cs)); +} + +void QSortFilterProxyModel_SetFilterKeyColumn(QtObjectPtr ptr, int column){ + static_cast(ptr)->setFilterKeyColumn(column); +} + +void QSortFilterProxyModel_SetFilterRegExp(QtObjectPtr ptr, QtObjectPtr regExp){ + static_cast(ptr)->setFilterRegExp(*static_cast(regExp)); +} + +void QSortFilterProxyModel_SetFilterRole(QtObjectPtr ptr, int role){ + static_cast(ptr)->setFilterRole(role); +} + +void QSortFilterProxyModel_SetSortCaseSensitivity(QtObjectPtr ptr, int cs){ + static_cast(ptr)->setSortCaseSensitivity(static_cast(cs)); +} + +void QSortFilterProxyModel_SetSortLocaleAware(QtObjectPtr ptr, int on){ + static_cast(ptr)->setSortLocaleAware(on != 0); +} + +void QSortFilterProxyModel_SetSortRole(QtObjectPtr ptr, int role){ + static_cast(ptr)->setSortRole(role); +} + +int QSortFilterProxyModel_SortCaseSensitivity(QtObjectPtr ptr){ + return static_cast(ptr)->sortCaseSensitivity(); +} + +int QSortFilterProxyModel_SortRole(QtObjectPtr ptr){ + return static_cast(ptr)->sortRole(); +} + +QtObjectPtr QSortFilterProxyModel_NewQSortFilterProxyModel(QtObjectPtr parent){ + return new QSortFilterProxyModel(static_cast(parent)); +} + +QtObjectPtr QSortFilterProxyModel_Buddy(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->buddy(*static_cast(index)).internalPointer(); +} + +int QSortFilterProxyModel_CanFetchMore(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->canFetchMore(*static_cast(parent)); +} + +int QSortFilterProxyModel_ColumnCount(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->columnCount(*static_cast(parent)); +} + +char* QSortFilterProxyModel_Data(QtObjectPtr ptr, QtObjectPtr index, int role){ + return static_cast(ptr)->data(*static_cast(index), role).toString().toUtf8().data(); +} + +int QSortFilterProxyModel_DropMimeData(QtObjectPtr ptr, QtObjectPtr data, int action, int row, int column, QtObjectPtr parent){ + return static_cast(ptr)->dropMimeData(static_cast(data), static_cast(action), row, column, *static_cast(parent)); +} + +void QSortFilterProxyModel_FetchMore(QtObjectPtr ptr, QtObjectPtr parent){ + static_cast(ptr)->fetchMore(*static_cast(parent)); +} + +int QSortFilterProxyModel_Flags(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->flags(*static_cast(index)); +} + +int QSortFilterProxyModel_HasChildren(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->hasChildren(*static_cast(parent)); +} + +char* QSortFilterProxyModel_HeaderData(QtObjectPtr ptr, int section, int orientation, int role){ + return static_cast(ptr)->headerData(section, static_cast(orientation), role).toString().toUtf8().data(); +} + +QtObjectPtr QSortFilterProxyModel_Index(QtObjectPtr ptr, int row, int column, QtObjectPtr parent){ + return static_cast(ptr)->index(row, column, *static_cast(parent)).internalPointer(); +} + +int QSortFilterProxyModel_InsertColumns(QtObjectPtr ptr, int column, int count, QtObjectPtr parent){ + return static_cast(ptr)->insertColumns(column, count, *static_cast(parent)); +} + +int QSortFilterProxyModel_InsertRows(QtObjectPtr ptr, int row, int count, QtObjectPtr parent){ + return static_cast(ptr)->insertRows(row, count, *static_cast(parent)); +} + +void QSortFilterProxyModel_Invalidate(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "invalidate"); +} + +QtObjectPtr QSortFilterProxyModel_MapFromSource(QtObjectPtr ptr, QtObjectPtr sourceIndex){ + return static_cast(ptr)->mapFromSource(*static_cast(sourceIndex)).internalPointer(); +} + +QtObjectPtr QSortFilterProxyModel_MapToSource(QtObjectPtr ptr, QtObjectPtr proxyIndex){ + return static_cast(ptr)->mapToSource(*static_cast(proxyIndex)).internalPointer(); +} + +char* QSortFilterProxyModel_MimeTypes(QtObjectPtr ptr){ + return static_cast(ptr)->mimeTypes().join("|").toUtf8().data(); +} + +QtObjectPtr QSortFilterProxyModel_Parent(QtObjectPtr ptr, QtObjectPtr child){ + return static_cast(ptr)->parent(*static_cast(child)).internalPointer(); +} + +int QSortFilterProxyModel_RemoveColumns(QtObjectPtr ptr, int column, int count, QtObjectPtr parent){ + return static_cast(ptr)->removeColumns(column, count, *static_cast(parent)); +} + +int QSortFilterProxyModel_RemoveRows(QtObjectPtr ptr, int row, int count, QtObjectPtr parent){ + return static_cast(ptr)->removeRows(row, count, *static_cast(parent)); +} + +int QSortFilterProxyModel_RowCount(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->rowCount(*static_cast(parent)); +} + +int QSortFilterProxyModel_SetData(QtObjectPtr ptr, QtObjectPtr index, char* value, int role){ + return static_cast(ptr)->setData(*static_cast(index), QVariant(value), role); +} + +void QSortFilterProxyModel_SetFilterFixedString(QtObjectPtr ptr, char* pattern){ + QMetaObject::invokeMethod(static_cast(ptr), "setFilterFixedString", Q_ARG(QString, QString(pattern))); +} + +void QSortFilterProxyModel_SetFilterRegExp2(QtObjectPtr ptr, char* pattern){ + QMetaObject::invokeMethod(static_cast(ptr), "setFilterRegExp", Q_ARG(QString, QString(pattern))); +} + +void QSortFilterProxyModel_SetFilterWildcard(QtObjectPtr ptr, char* pattern){ + QMetaObject::invokeMethod(static_cast(ptr), "setFilterWildcard", Q_ARG(QString, QString(pattern))); +} + +int QSortFilterProxyModel_SetHeaderData(QtObjectPtr ptr, int section, int orientation, char* value, int role){ + return static_cast(ptr)->setHeaderData(section, static_cast(orientation), QVariant(value), role); +} + +void QSortFilterProxyModel_SetSourceModel(QtObjectPtr ptr, QtObjectPtr sourceModel){ + static_cast(ptr)->setSourceModel(static_cast(sourceModel)); +} + +QtObjectPtr QSortFilterProxyModel_Sibling(QtObjectPtr ptr, int row, int column, QtObjectPtr idx){ + return static_cast(ptr)->sibling(row, column, *static_cast(idx)).internalPointer(); +} + +void QSortFilterProxyModel_Sort(QtObjectPtr ptr, int column, int order){ + static_cast(ptr)->sort(column, static_cast(order)); +} + +int QSortFilterProxyModel_SortColumn(QtObjectPtr ptr){ + return static_cast(ptr)->sortColumn(); +} + +int QSortFilterProxyModel_SortOrder(QtObjectPtr ptr){ + return static_cast(ptr)->sortOrder(); +} + +int QSortFilterProxyModel_SupportedDropActions(QtObjectPtr ptr){ + return static_cast(ptr)->supportedDropActions(); +} + +void QSortFilterProxyModel_DestroyQSortFilterProxyModel(QtObjectPtr ptr){ + static_cast(ptr)->~QSortFilterProxyModel(); +} + diff --git a/core/qsortfilterproxymodel.go b/core/qsortfilterproxymodel.go new file mode 100755 index 00000000..ecb898f6 --- /dev/null +++ b/core/qsortfilterproxymodel.go @@ -0,0 +1,356 @@ +package core + +//#include "qsortfilterproxymodel.h" +import "C" +import ( + "github.com/therecipe/qt" + "strings" + "unsafe" +) + +type QSortFilterProxyModel struct { + QAbstractProxyModel +} + +type QSortFilterProxyModelITF interface { + QAbstractProxyModelITF + QSortFilterProxyModelPTR() *QSortFilterProxyModel +} + +func PointerFromQSortFilterProxyModel(ptr QSortFilterProxyModelITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSortFilterProxyModelPTR().Pointer() + } + return nil +} + +func QSortFilterProxyModelFromPointer(ptr unsafe.Pointer) *QSortFilterProxyModel { + var n = new(QSortFilterProxyModel) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSortFilterProxyModel_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSortFilterProxyModel) QSortFilterProxyModelPTR() *QSortFilterProxyModel { + return ptr +} + +func (ptr *QSortFilterProxyModel) DynamicSortFilter() bool { + if ptr.Pointer() != nil { + return C.QSortFilterProxyModel_DynamicSortFilter(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSortFilterProxyModel) FilterCaseSensitivity() Qt__CaseSensitivity { + if ptr.Pointer() != nil { + return Qt__CaseSensitivity(C.QSortFilterProxyModel_FilterCaseSensitivity(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSortFilterProxyModel) FilterKeyColumn() int { + if ptr.Pointer() != nil { + return int(C.QSortFilterProxyModel_FilterKeyColumn(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSortFilterProxyModel) FilterRole() int { + if ptr.Pointer() != nil { + return int(C.QSortFilterProxyModel_FilterRole(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSortFilterProxyModel) IsSortLocaleAware() bool { + if ptr.Pointer() != nil { + return C.QSortFilterProxyModel_IsSortLocaleAware(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSortFilterProxyModel) SetDynamicSortFilter(enable bool) { + if ptr.Pointer() != nil { + C.QSortFilterProxyModel_SetDynamicSortFilter(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QSortFilterProxyModel) SetFilterCaseSensitivity(cs Qt__CaseSensitivity) { + if ptr.Pointer() != nil { + C.QSortFilterProxyModel_SetFilterCaseSensitivity(C.QtObjectPtr(ptr.Pointer()), C.int(cs)) + } +} + +func (ptr *QSortFilterProxyModel) SetFilterKeyColumn(column int) { + if ptr.Pointer() != nil { + C.QSortFilterProxyModel_SetFilterKeyColumn(C.QtObjectPtr(ptr.Pointer()), C.int(column)) + } +} + +func (ptr *QSortFilterProxyModel) SetFilterRegExp(regExp QRegExpITF) { + if ptr.Pointer() != nil { + C.QSortFilterProxyModel_SetFilterRegExp(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQRegExp(regExp))) + } +} + +func (ptr *QSortFilterProxyModel) SetFilterRole(role int) { + if ptr.Pointer() != nil { + C.QSortFilterProxyModel_SetFilterRole(C.QtObjectPtr(ptr.Pointer()), C.int(role)) + } +} + +func (ptr *QSortFilterProxyModel) SetSortCaseSensitivity(cs Qt__CaseSensitivity) { + if ptr.Pointer() != nil { + C.QSortFilterProxyModel_SetSortCaseSensitivity(C.QtObjectPtr(ptr.Pointer()), C.int(cs)) + } +} + +func (ptr *QSortFilterProxyModel) SetSortLocaleAware(on bool) { + if ptr.Pointer() != nil { + C.QSortFilterProxyModel_SetSortLocaleAware(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(on))) + } +} + +func (ptr *QSortFilterProxyModel) SetSortRole(role int) { + if ptr.Pointer() != nil { + C.QSortFilterProxyModel_SetSortRole(C.QtObjectPtr(ptr.Pointer()), C.int(role)) + } +} + +func (ptr *QSortFilterProxyModel) SortCaseSensitivity() Qt__CaseSensitivity { + if ptr.Pointer() != nil { + return Qt__CaseSensitivity(C.QSortFilterProxyModel_SortCaseSensitivity(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSortFilterProxyModel) SortRole() int { + if ptr.Pointer() != nil { + return int(C.QSortFilterProxyModel_SortRole(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQSortFilterProxyModel(parent QObjectITF) *QSortFilterProxyModel { + return QSortFilterProxyModelFromPointer(unsafe.Pointer(C.QSortFilterProxyModel_NewQSortFilterProxyModel(C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func (ptr *QSortFilterProxyModel) Buddy(index QModelIndexITF) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QSortFilterProxyModel_Buddy(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(index))))) + } + return nil +} + +func (ptr *QSortFilterProxyModel) CanFetchMore(parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QSortFilterProxyModel_CanFetchMore(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QSortFilterProxyModel) ColumnCount(parent QModelIndexITF) int { + if ptr.Pointer() != nil { + return int(C.QSortFilterProxyModel_ColumnCount(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(parent)))) + } + return 0 +} + +func (ptr *QSortFilterProxyModel) Data(index QModelIndexITF, role int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QSortFilterProxyModel_Data(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(index)), C.int(role))) + } + return "" +} + +func (ptr *QSortFilterProxyModel) DropMimeData(data QMimeDataITF, action Qt__DropAction, row int, column int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QSortFilterProxyModel_DropMimeData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMimeData(data)), C.int(action), C.int(row), C.int(column), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QSortFilterProxyModel) FetchMore(parent QModelIndexITF) { + if ptr.Pointer() != nil { + C.QSortFilterProxyModel_FetchMore(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(parent))) + } +} + +func (ptr *QSortFilterProxyModel) Flags(index QModelIndexITF) Qt__ItemFlag { + if ptr.Pointer() != nil { + return Qt__ItemFlag(C.QSortFilterProxyModel_Flags(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(index)))) + } + return 0 +} + +func (ptr *QSortFilterProxyModel) HasChildren(parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QSortFilterProxyModel_HasChildren(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QSortFilterProxyModel) HeaderData(section int, orientation Qt__Orientation, role int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QSortFilterProxyModel_HeaderData(C.QtObjectPtr(ptr.Pointer()), C.int(section), C.int(orientation), C.int(role))) + } + return "" +} + +func (ptr *QSortFilterProxyModel) Index(row int, column int, parent QModelIndexITF) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QSortFilterProxyModel_Index(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column), C.QtObjectPtr(PointerFromQModelIndex(parent))))) + } + return nil +} + +func (ptr *QSortFilterProxyModel) InsertColumns(column int, count int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QSortFilterProxyModel_InsertColumns(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(count), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QSortFilterProxyModel) InsertRows(row int, count int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QSortFilterProxyModel_InsertRows(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(count), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QSortFilterProxyModel) Invalidate() { + if ptr.Pointer() != nil { + C.QSortFilterProxyModel_Invalidate(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSortFilterProxyModel) MapFromSource(sourceIndex QModelIndexITF) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QSortFilterProxyModel_MapFromSource(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(sourceIndex))))) + } + return nil +} + +func (ptr *QSortFilterProxyModel) MapToSource(proxyIndex QModelIndexITF) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QSortFilterProxyModel_MapToSource(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(proxyIndex))))) + } + return nil +} + +func (ptr *QSortFilterProxyModel) MimeTypes() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QSortFilterProxyModel_MimeTypes(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QSortFilterProxyModel) Parent(child QModelIndexITF) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QSortFilterProxyModel_Parent(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(child))))) + } + return nil +} + +func (ptr *QSortFilterProxyModel) RemoveColumns(column int, count int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QSortFilterProxyModel_RemoveColumns(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(count), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QSortFilterProxyModel) RemoveRows(row int, count int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QSortFilterProxyModel_RemoveRows(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(count), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QSortFilterProxyModel) RowCount(parent QModelIndexITF) int { + if ptr.Pointer() != nil { + return int(C.QSortFilterProxyModel_RowCount(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(parent)))) + } + return 0 +} + +func (ptr *QSortFilterProxyModel) SetData(index QModelIndexITF, value string, role int) bool { + if ptr.Pointer() != nil { + return C.QSortFilterProxyModel_SetData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(index)), C.CString(value), C.int(role)) != 0 + } + return false +} + +func (ptr *QSortFilterProxyModel) SetFilterFixedString(pattern string) { + if ptr.Pointer() != nil { + C.QSortFilterProxyModel_SetFilterFixedString(C.QtObjectPtr(ptr.Pointer()), C.CString(pattern)) + } +} + +func (ptr *QSortFilterProxyModel) SetFilterRegExp2(pattern string) { + if ptr.Pointer() != nil { + C.QSortFilterProxyModel_SetFilterRegExp2(C.QtObjectPtr(ptr.Pointer()), C.CString(pattern)) + } +} + +func (ptr *QSortFilterProxyModel) SetFilterWildcard(pattern string) { + if ptr.Pointer() != nil { + C.QSortFilterProxyModel_SetFilterWildcard(C.QtObjectPtr(ptr.Pointer()), C.CString(pattern)) + } +} + +func (ptr *QSortFilterProxyModel) SetHeaderData(section int, orientation Qt__Orientation, value string, role int) bool { + if ptr.Pointer() != nil { + return C.QSortFilterProxyModel_SetHeaderData(C.QtObjectPtr(ptr.Pointer()), C.int(section), C.int(orientation), C.CString(value), C.int(role)) != 0 + } + return false +} + +func (ptr *QSortFilterProxyModel) SetSourceModel(sourceModel QAbstractItemModelITF) { + if ptr.Pointer() != nil { + C.QSortFilterProxyModel_SetSourceModel(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractItemModel(sourceModel))) + } +} + +func (ptr *QSortFilterProxyModel) Sibling(row int, column int, idx QModelIndexITF) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QSortFilterProxyModel_Sibling(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column), C.QtObjectPtr(PointerFromQModelIndex(idx))))) + } + return nil +} + +func (ptr *QSortFilterProxyModel) Sort(column int, order Qt__SortOrder) { + if ptr.Pointer() != nil { + C.QSortFilterProxyModel_Sort(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(order)) + } +} + +func (ptr *QSortFilterProxyModel) SortColumn() int { + if ptr.Pointer() != nil { + return int(C.QSortFilterProxyModel_SortColumn(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSortFilterProxyModel) SortOrder() Qt__SortOrder { + if ptr.Pointer() != nil { + return Qt__SortOrder(C.QSortFilterProxyModel_SortOrder(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSortFilterProxyModel) SupportedDropActions() Qt__DropAction { + if ptr.Pointer() != nil { + return Qt__DropAction(C.QSortFilterProxyModel_SupportedDropActions(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSortFilterProxyModel) DestroyQSortFilterProxyModel() { + if ptr.Pointer() != nil { + C.QSortFilterProxyModel_DestroyQSortFilterProxyModel(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qsortfilterproxymodel.h b/core/qsortfilterproxymodel.h new file mode 100755 index 00000000..02e40ab6 --- /dev/null +++ b/core/qsortfilterproxymodel.h @@ -0,0 +1,57 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QSortFilterProxyModel_DynamicSortFilter(QtObjectPtr ptr); +int QSortFilterProxyModel_FilterCaseSensitivity(QtObjectPtr ptr); +int QSortFilterProxyModel_FilterKeyColumn(QtObjectPtr ptr); +int QSortFilterProxyModel_FilterRole(QtObjectPtr ptr); +int QSortFilterProxyModel_IsSortLocaleAware(QtObjectPtr ptr); +void QSortFilterProxyModel_SetDynamicSortFilter(QtObjectPtr ptr, int enable); +void QSortFilterProxyModel_SetFilterCaseSensitivity(QtObjectPtr ptr, int cs); +void QSortFilterProxyModel_SetFilterKeyColumn(QtObjectPtr ptr, int column); +void QSortFilterProxyModel_SetFilterRegExp(QtObjectPtr ptr, QtObjectPtr regExp); +void QSortFilterProxyModel_SetFilterRole(QtObjectPtr ptr, int role); +void QSortFilterProxyModel_SetSortCaseSensitivity(QtObjectPtr ptr, int cs); +void QSortFilterProxyModel_SetSortLocaleAware(QtObjectPtr ptr, int on); +void QSortFilterProxyModel_SetSortRole(QtObjectPtr ptr, int role); +int QSortFilterProxyModel_SortCaseSensitivity(QtObjectPtr ptr); +int QSortFilterProxyModel_SortRole(QtObjectPtr ptr); +QtObjectPtr QSortFilterProxyModel_NewQSortFilterProxyModel(QtObjectPtr parent); +QtObjectPtr QSortFilterProxyModel_Buddy(QtObjectPtr ptr, QtObjectPtr index); +int QSortFilterProxyModel_CanFetchMore(QtObjectPtr ptr, QtObjectPtr parent); +int QSortFilterProxyModel_ColumnCount(QtObjectPtr ptr, QtObjectPtr parent); +char* QSortFilterProxyModel_Data(QtObjectPtr ptr, QtObjectPtr index, int role); +int QSortFilterProxyModel_DropMimeData(QtObjectPtr ptr, QtObjectPtr data, int action, int row, int column, QtObjectPtr parent); +void QSortFilterProxyModel_FetchMore(QtObjectPtr ptr, QtObjectPtr parent); +int QSortFilterProxyModel_Flags(QtObjectPtr ptr, QtObjectPtr index); +int QSortFilterProxyModel_HasChildren(QtObjectPtr ptr, QtObjectPtr parent); +char* QSortFilterProxyModel_HeaderData(QtObjectPtr ptr, int section, int orientation, int role); +QtObjectPtr QSortFilterProxyModel_Index(QtObjectPtr ptr, int row, int column, QtObjectPtr parent); +int QSortFilterProxyModel_InsertColumns(QtObjectPtr ptr, int column, int count, QtObjectPtr parent); +int QSortFilterProxyModel_InsertRows(QtObjectPtr ptr, int row, int count, QtObjectPtr parent); +void QSortFilterProxyModel_Invalidate(QtObjectPtr ptr); +QtObjectPtr QSortFilterProxyModel_MapFromSource(QtObjectPtr ptr, QtObjectPtr sourceIndex); +QtObjectPtr QSortFilterProxyModel_MapToSource(QtObjectPtr ptr, QtObjectPtr proxyIndex); +char* QSortFilterProxyModel_MimeTypes(QtObjectPtr ptr); +QtObjectPtr QSortFilterProxyModel_Parent(QtObjectPtr ptr, QtObjectPtr child); +int QSortFilterProxyModel_RemoveColumns(QtObjectPtr ptr, int column, int count, QtObjectPtr parent); +int QSortFilterProxyModel_RemoveRows(QtObjectPtr ptr, int row, int count, QtObjectPtr parent); +int QSortFilterProxyModel_RowCount(QtObjectPtr ptr, QtObjectPtr parent); +int QSortFilterProxyModel_SetData(QtObjectPtr ptr, QtObjectPtr index, char* value, int role); +void QSortFilterProxyModel_SetFilterFixedString(QtObjectPtr ptr, char* pattern); +void QSortFilterProxyModel_SetFilterRegExp2(QtObjectPtr ptr, char* pattern); +void QSortFilterProxyModel_SetFilterWildcard(QtObjectPtr ptr, char* pattern); +int QSortFilterProxyModel_SetHeaderData(QtObjectPtr ptr, int section, int orientation, char* value, int role); +void QSortFilterProxyModel_SetSourceModel(QtObjectPtr ptr, QtObjectPtr sourceModel); +QtObjectPtr QSortFilterProxyModel_Sibling(QtObjectPtr ptr, int row, int column, QtObjectPtr idx); +void QSortFilterProxyModel_Sort(QtObjectPtr ptr, int column, int order); +int QSortFilterProxyModel_SortColumn(QtObjectPtr ptr); +int QSortFilterProxyModel_SortOrder(QtObjectPtr ptr); +int QSortFilterProxyModel_SupportedDropActions(QtObjectPtr ptr); +void QSortFilterProxyModel_DestroyQSortFilterProxyModel(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qstack.cpp b/core/qstack.cpp new file mode 100755 index 00000000..6296203e --- /dev/null +++ b/core/qstack.cpp @@ -0,0 +1,8 @@ +#include "qstack.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qstack.go b/core/qstack.go new file mode 100755 index 00000000..f5b45f6c --- /dev/null +++ b/core/qstack.go @@ -0,0 +1,33 @@ +package core + +//#include "qstack.h" +import "C" +import ( + "unsafe" +) + +type QStack struct { + QVector +} + +type QStackITF interface { + QVectorITF + QStackPTR() *QStack +} + +func PointerFromQStack(ptr QStackITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStackPTR().Pointer() + } + return nil +} + +func QStackFromPointer(ptr unsafe.Pointer) *QStack { + var n = new(QStack) + n.SetPointer(ptr) + return n +} + +func (ptr *QStack) QStackPTR() *QStack { + return ptr +} diff --git a/core/qstack.h b/core/qstack.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qstack.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qstandardpaths.cpp b/core/qstandardpaths.cpp new file mode 100755 index 00000000..79d85e85 --- /dev/null +++ b/core/qstandardpaths.cpp @@ -0,0 +1,40 @@ +#include "qstandardpaths.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStandardPaths: public QStandardPaths { +public: +}; + +void QStandardPaths_QStandardPaths_SetTestModeEnabled(int testMode){ + QStandardPaths::setTestModeEnabled(testMode != 0); +} + +char* QStandardPaths_QStandardPaths_FindExecutable(char* executableName, char* paths){ + return QStandardPaths::findExecutable(QString(executableName), QString(paths).split("|", QString::SkipEmptyParts)).toUtf8().data(); +} + +char* QStandardPaths_QStandardPaths_Locate(int ty, char* fileName, int options){ + return QStandardPaths::locate(static_cast(ty), QString(fileName), static_cast(options)).toUtf8().data(); +} + +char* QStandardPaths_QStandardPaths_LocateAll(int ty, char* fileName, int options){ + return QStandardPaths::locateAll(static_cast(ty), QString(fileName), static_cast(options)).join("|").toUtf8().data(); +} + +char* QStandardPaths_QStandardPaths_DisplayName(int ty){ + return QStandardPaths::displayName(static_cast(ty)).toUtf8().data(); +} + +char* QStandardPaths_QStandardPaths_StandardLocations(int ty){ + return QStandardPaths::standardLocations(static_cast(ty)).join("|").toUtf8().data(); +} + +char* QStandardPaths_QStandardPaths_WritableLocation(int ty){ + return QStandardPaths::writableLocation(static_cast(ty)).toUtf8().data(); +} + diff --git a/core/qstandardpaths.go b/core/qstandardpaths.go new file mode 100755 index 00000000..ec0d87c0 --- /dev/null +++ b/core/qstandardpaths.go @@ -0,0 +1,104 @@ +package core + +//#include "qstandardpaths.h" +import "C" +import ( + "github.com/therecipe/qt" + "strings" + "unsafe" +) + +type QStandardPaths struct { + ptr unsafe.Pointer +} + +type QStandardPathsITF interface { + QStandardPathsPTR() *QStandardPaths +} + +func (p *QStandardPaths) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QStandardPaths) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQStandardPaths(ptr QStandardPathsITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStandardPathsPTR().Pointer() + } + return nil +} + +func QStandardPathsFromPointer(ptr unsafe.Pointer) *QStandardPaths { + var n = new(QStandardPaths) + n.SetPointer(ptr) + return n +} + +func (ptr *QStandardPaths) QStandardPathsPTR() *QStandardPaths { + return ptr +} + +//QStandardPaths::LocateOption +type QStandardPaths__LocateOption int + +var ( + QStandardPaths__LocateFile = QStandardPaths__LocateOption(0x0) + QStandardPaths__LocateDirectory = QStandardPaths__LocateOption(0x1) +) + +//QStandardPaths::StandardLocation +type QStandardPaths__StandardLocation int + +var ( + QStandardPaths__DesktopLocation = QStandardPaths__StandardLocation(0) + QStandardPaths__DocumentsLocation = QStandardPaths__StandardLocation(1) + QStandardPaths__FontsLocation = QStandardPaths__StandardLocation(2) + QStandardPaths__ApplicationsLocation = QStandardPaths__StandardLocation(3) + QStandardPaths__MusicLocation = QStandardPaths__StandardLocation(4) + QStandardPaths__MoviesLocation = QStandardPaths__StandardLocation(5) + QStandardPaths__PicturesLocation = QStandardPaths__StandardLocation(6) + QStandardPaths__TempLocation = QStandardPaths__StandardLocation(7) + QStandardPaths__HomeLocation = QStandardPaths__StandardLocation(8) + QStandardPaths__DataLocation = QStandardPaths__StandardLocation(9) + QStandardPaths__CacheLocation = QStandardPaths__StandardLocation(10) + QStandardPaths__GenericDataLocation = QStandardPaths__StandardLocation(11) + QStandardPaths__RuntimeLocation = QStandardPaths__StandardLocation(12) + QStandardPaths__ConfigLocation = QStandardPaths__StandardLocation(13) + QStandardPaths__DownloadLocation = QStandardPaths__StandardLocation(14) + QStandardPaths__GenericCacheLocation = QStandardPaths__StandardLocation(15) + QStandardPaths__GenericConfigLocation = QStandardPaths__StandardLocation(16) + QStandardPaths__AppDataLocation = QStandardPaths__StandardLocation(17) + QStandardPaths__AppConfigLocation = QStandardPaths__StandardLocation(18) + QStandardPaths__AppLocalDataLocation = QStandardPaths__StandardLocation(QStandardPaths__DataLocation) +) + +func QStandardPaths_SetTestModeEnabled(testMode bool) { + C.QStandardPaths_QStandardPaths_SetTestModeEnabled(C.int(qt.GoBoolToInt(testMode))) +} + +func QStandardPaths_FindExecutable(executableName string, paths []string) string { + return C.GoString(C.QStandardPaths_QStandardPaths_FindExecutable(C.CString(executableName), C.CString(strings.Join(paths, "|")))) +} + +func QStandardPaths_Locate(ty QStandardPaths__StandardLocation, fileName string, options QStandardPaths__LocateOption) string { + return C.GoString(C.QStandardPaths_QStandardPaths_Locate(C.int(ty), C.CString(fileName), C.int(options))) +} + +func QStandardPaths_LocateAll(ty QStandardPaths__StandardLocation, fileName string, options QStandardPaths__LocateOption) []string { + return strings.Split(C.GoString(C.QStandardPaths_QStandardPaths_LocateAll(C.int(ty), C.CString(fileName), C.int(options))), "|") +} + +func QStandardPaths_DisplayName(ty QStandardPaths__StandardLocation) string { + return C.GoString(C.QStandardPaths_QStandardPaths_DisplayName(C.int(ty))) +} + +func QStandardPaths_StandardLocations(ty QStandardPaths__StandardLocation) []string { + return strings.Split(C.GoString(C.QStandardPaths_QStandardPaths_StandardLocations(C.int(ty))), "|") +} + +func QStandardPaths_WritableLocation(ty QStandardPaths__StandardLocation) string { + return C.GoString(C.QStandardPaths_QStandardPaths_WritableLocation(C.int(ty))) +} diff --git a/core/qstandardpaths.h b/core/qstandardpaths.h new file mode 100755 index 00000000..b650ab69 --- /dev/null +++ b/core/qstandardpaths.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QStandardPaths_QStandardPaths_SetTestModeEnabled(int testMode); +char* QStandardPaths_QStandardPaths_FindExecutable(char* executableName, char* paths); +char* QStandardPaths_QStandardPaths_Locate(int ty, char* fileName, int options); +char* QStandardPaths_QStandardPaths_LocateAll(int ty, char* fileName, int options); +char* QStandardPaths_QStandardPaths_DisplayName(int ty); +char* QStandardPaths_QStandardPaths_StandardLocations(int ty); +char* QStandardPaths_QStandardPaths_WritableLocation(int ty); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qstate.cpp b/core/qstate.cpp new file mode 100755 index 00000000..407fce81 --- /dev/null +++ b/core/qstate.cpp @@ -0,0 +1,116 @@ +#include "qstate.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQState: public QState { +public: +void Signal_ChildModeChanged(){callbackQStateChildModeChanged(this->objectName().toUtf8().data());}; +void Signal_ErrorStateChanged(){callbackQStateErrorStateChanged(this->objectName().toUtf8().data());}; +void Signal_Finished(){callbackQStateFinished(this->objectName().toUtf8().data());}; +void Signal_InitialStateChanged(){callbackQStateInitialStateChanged(this->objectName().toUtf8().data());}; +void Signal_PropertiesAssigned(){callbackQStatePropertiesAssigned(this->objectName().toUtf8().data());}; +}; + +QtObjectPtr QState_NewQState2(int childMode, QtObjectPtr parent){ + return new QState(static_cast(childMode), static_cast(parent)); +} + +QtObjectPtr QState_NewQState(QtObjectPtr parent){ + return new QState(static_cast(parent)); +} + +QtObjectPtr QState_AddTransition3(QtObjectPtr ptr, QtObjectPtr target){ + return static_cast(ptr)->addTransition(static_cast(target)); +} + +QtObjectPtr QState_AddTransition2(QtObjectPtr ptr, QtObjectPtr sender, char* signal, QtObjectPtr target){ + return static_cast(ptr)->addTransition(static_cast(sender), const_cast(signal), static_cast(target)); +} + +void QState_AddTransition(QtObjectPtr ptr, QtObjectPtr transition){ + static_cast(ptr)->addTransition(static_cast(transition)); +} + +void QState_AssignProperty(QtObjectPtr ptr, QtObjectPtr object, char* name, char* value){ + static_cast(ptr)->assignProperty(static_cast(object), const_cast(name), QVariant(value)); +} + +int QState_ChildMode(QtObjectPtr ptr){ + return static_cast(ptr)->childMode(); +} + +void QState_ConnectChildModeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QState::childModeChanged, static_cast(ptr), static_cast(&MyQState::Signal_ChildModeChanged));; +} + +void QState_DisconnectChildModeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QState::childModeChanged, static_cast(ptr), static_cast(&MyQState::Signal_ChildModeChanged));; +} + +QtObjectPtr QState_ErrorState(QtObjectPtr ptr){ + return static_cast(ptr)->errorState(); +} + +void QState_ConnectErrorStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QState::errorStateChanged, static_cast(ptr), static_cast(&MyQState::Signal_ErrorStateChanged));; +} + +void QState_DisconnectErrorStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QState::errorStateChanged, static_cast(ptr), static_cast(&MyQState::Signal_ErrorStateChanged));; +} + +void QState_ConnectFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QState::finished, static_cast(ptr), static_cast(&MyQState::Signal_Finished));; +} + +void QState_DisconnectFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QState::finished, static_cast(ptr), static_cast(&MyQState::Signal_Finished));; +} + +QtObjectPtr QState_InitialState(QtObjectPtr ptr){ + return static_cast(ptr)->initialState(); +} + +void QState_ConnectInitialStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QState::initialStateChanged, static_cast(ptr), static_cast(&MyQState::Signal_InitialStateChanged));; +} + +void QState_DisconnectInitialStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QState::initialStateChanged, static_cast(ptr), static_cast(&MyQState::Signal_InitialStateChanged));; +} + +void QState_ConnectPropertiesAssigned(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QState::propertiesAssigned, static_cast(ptr), static_cast(&MyQState::Signal_PropertiesAssigned));; +} + +void QState_DisconnectPropertiesAssigned(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QState::propertiesAssigned, static_cast(ptr), static_cast(&MyQState::Signal_PropertiesAssigned));; +} + +void QState_RemoveTransition(QtObjectPtr ptr, QtObjectPtr transition){ + static_cast(ptr)->removeTransition(static_cast(transition)); +} + +void QState_SetChildMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setChildMode(static_cast(mode)); +} + +void QState_SetErrorState(QtObjectPtr ptr, QtObjectPtr state){ + static_cast(ptr)->setErrorState(static_cast(state)); +} + +void QState_SetInitialState(QtObjectPtr ptr, QtObjectPtr state){ + static_cast(ptr)->setInitialState(static_cast(state)); +} + +void QState_DestroyQState(QtObjectPtr ptr){ + static_cast(ptr)->~QState(); +} + diff --git a/core/qstate.go b/core/qstate.go new file mode 100755 index 00000000..4e2e4a9f --- /dev/null +++ b/core/qstate.go @@ -0,0 +1,234 @@ +package core + +//#include "qstate.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QState struct { + QAbstractState +} + +type QStateITF interface { + QAbstractStateITF + QStatePTR() *QState +} + +func PointerFromQState(ptr QStateITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStatePTR().Pointer() + } + return nil +} + +func QStateFromPointer(ptr unsafe.Pointer) *QState { + var n = new(QState) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QState_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QState) QStatePTR() *QState { + return ptr +} + +//QState::ChildMode +type QState__ChildMode int + +var ( + QState__ExclusiveStates = QState__ChildMode(0) + QState__ParallelStates = QState__ChildMode(1) +) + +//QState::RestorePolicy +type QState__RestorePolicy int + +var ( + QState__DontRestoreProperties = QState__RestorePolicy(0) + QState__RestoreProperties = QState__RestorePolicy(1) +) + +func NewQState2(childMode QState__ChildMode, parent QStateITF) *QState { + return QStateFromPointer(unsafe.Pointer(C.QState_NewQState2(C.int(childMode), C.QtObjectPtr(PointerFromQState(parent))))) +} + +func NewQState(parent QStateITF) *QState { + return QStateFromPointer(unsafe.Pointer(C.QState_NewQState(C.QtObjectPtr(PointerFromQState(parent))))) +} + +func (ptr *QState) AddTransition3(target QAbstractStateITF) *QAbstractTransition { + if ptr.Pointer() != nil { + return QAbstractTransitionFromPointer(unsafe.Pointer(C.QState_AddTransition3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractState(target))))) + } + return nil +} + +func (ptr *QState) AddTransition2(sender QObjectITF, signal string, target QAbstractStateITF) *QSignalTransition { + if ptr.Pointer() != nil { + return QSignalTransitionFromPointer(unsafe.Pointer(C.QState_AddTransition2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(sender)), C.CString(signal), C.QtObjectPtr(PointerFromQAbstractState(target))))) + } + return nil +} + +func (ptr *QState) AddTransition(transition QAbstractTransitionITF) { + if ptr.Pointer() != nil { + C.QState_AddTransition(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractTransition(transition))) + } +} + +func (ptr *QState) AssignProperty(object QObjectITF, name string, value string) { + if ptr.Pointer() != nil { + C.QState_AssignProperty(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(object)), C.CString(name), C.CString(value)) + } +} + +func (ptr *QState) ChildMode() QState__ChildMode { + if ptr.Pointer() != nil { + return QState__ChildMode(C.QState_ChildMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QState) ConnectChildModeChanged(f func()) { + if ptr.Pointer() != nil { + C.QState_ConnectChildModeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "childModeChanged", f) + } +} + +func (ptr *QState) DisconnectChildModeChanged() { + if ptr.Pointer() != nil { + C.QState_DisconnectChildModeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "childModeChanged") + } +} + +//export callbackQStateChildModeChanged +func callbackQStateChildModeChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "childModeChanged").(func())() +} + +func (ptr *QState) ErrorState() *QAbstractState { + if ptr.Pointer() != nil { + return QAbstractStateFromPointer(unsafe.Pointer(C.QState_ErrorState(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QState) ConnectErrorStateChanged(f func()) { + if ptr.Pointer() != nil { + C.QState_ConnectErrorStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "errorStateChanged", f) + } +} + +func (ptr *QState) DisconnectErrorStateChanged() { + if ptr.Pointer() != nil { + C.QState_DisconnectErrorStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "errorStateChanged") + } +} + +//export callbackQStateErrorStateChanged +func callbackQStateErrorStateChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "errorStateChanged").(func())() +} + +func (ptr *QState) ConnectFinished(f func()) { + if ptr.Pointer() != nil { + C.QState_ConnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "finished", f) + } +} + +func (ptr *QState) DisconnectFinished() { + if ptr.Pointer() != nil { + C.QState_DisconnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "finished") + } +} + +//export callbackQStateFinished +func callbackQStateFinished(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "finished").(func())() +} + +func (ptr *QState) InitialState() *QAbstractState { + if ptr.Pointer() != nil { + return QAbstractStateFromPointer(unsafe.Pointer(C.QState_InitialState(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QState) ConnectInitialStateChanged(f func()) { + if ptr.Pointer() != nil { + C.QState_ConnectInitialStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "initialStateChanged", f) + } +} + +func (ptr *QState) DisconnectInitialStateChanged() { + if ptr.Pointer() != nil { + C.QState_DisconnectInitialStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "initialStateChanged") + } +} + +//export callbackQStateInitialStateChanged +func callbackQStateInitialStateChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "initialStateChanged").(func())() +} + +func (ptr *QState) ConnectPropertiesAssigned(f func()) { + if ptr.Pointer() != nil { + C.QState_ConnectPropertiesAssigned(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "propertiesAssigned", f) + } +} + +func (ptr *QState) DisconnectPropertiesAssigned() { + if ptr.Pointer() != nil { + C.QState_DisconnectPropertiesAssigned(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "propertiesAssigned") + } +} + +//export callbackQStatePropertiesAssigned +func callbackQStatePropertiesAssigned(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "propertiesAssigned").(func())() +} + +func (ptr *QState) RemoveTransition(transition QAbstractTransitionITF) { + if ptr.Pointer() != nil { + C.QState_RemoveTransition(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractTransition(transition))) + } +} + +func (ptr *QState) SetChildMode(mode QState__ChildMode) { + if ptr.Pointer() != nil { + C.QState_SetChildMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QState) SetErrorState(state QAbstractStateITF) { + if ptr.Pointer() != nil { + C.QState_SetErrorState(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractState(state))) + } +} + +func (ptr *QState) SetInitialState(state QAbstractStateITF) { + if ptr.Pointer() != nil { + C.QState_SetInitialState(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractState(state))) + } +} + +func (ptr *QState) DestroyQState() { + if ptr.Pointer() != nil { + C.QState_DestroyQState(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qstate.h b/core/qstate.h new file mode 100755 index 00000000..d093f778 --- /dev/null +++ b/core/qstate.h @@ -0,0 +1,33 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QState_NewQState2(int childMode, QtObjectPtr parent); +QtObjectPtr QState_NewQState(QtObjectPtr parent); +QtObjectPtr QState_AddTransition3(QtObjectPtr ptr, QtObjectPtr target); +QtObjectPtr QState_AddTransition2(QtObjectPtr ptr, QtObjectPtr sender, char* signal, QtObjectPtr target); +void QState_AddTransition(QtObjectPtr ptr, QtObjectPtr transition); +void QState_AssignProperty(QtObjectPtr ptr, QtObjectPtr object, char* name, char* value); +int QState_ChildMode(QtObjectPtr ptr); +void QState_ConnectChildModeChanged(QtObjectPtr ptr); +void QState_DisconnectChildModeChanged(QtObjectPtr ptr); +QtObjectPtr QState_ErrorState(QtObjectPtr ptr); +void QState_ConnectErrorStateChanged(QtObjectPtr ptr); +void QState_DisconnectErrorStateChanged(QtObjectPtr ptr); +void QState_ConnectFinished(QtObjectPtr ptr); +void QState_DisconnectFinished(QtObjectPtr ptr); +QtObjectPtr QState_InitialState(QtObjectPtr ptr); +void QState_ConnectInitialStateChanged(QtObjectPtr ptr); +void QState_DisconnectInitialStateChanged(QtObjectPtr ptr); +void QState_ConnectPropertiesAssigned(QtObjectPtr ptr); +void QState_DisconnectPropertiesAssigned(QtObjectPtr ptr); +void QState_RemoveTransition(QtObjectPtr ptr, QtObjectPtr transition); +void QState_SetChildMode(QtObjectPtr ptr, int mode); +void QState_SetErrorState(QtObjectPtr ptr, QtObjectPtr state); +void QState_SetInitialState(QtObjectPtr ptr, QtObjectPtr state); +void QState_DestroyQState(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qstatemachine.cpp b/core/qstatemachine.cpp new file mode 100755 index 00000000..4475288b --- /dev/null +++ b/core/qstatemachine.cpp @@ -0,0 +1,133 @@ +#include "qstatemachine.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStateMachine: public QStateMachine { +public: +void Signal_RunningChanged(bool running){callbackQStateMachineRunningChanged(this->objectName().toUtf8().data(), running);}; +void Signal_Started(){callbackQStateMachineStarted(this->objectName().toUtf8().data());}; +void Signal_Stopped(){callbackQStateMachineStopped(this->objectName().toUtf8().data());}; +}; + +QtObjectPtr QStateMachine_NewQStateMachine(QtObjectPtr parent){ + return new QStateMachine(static_cast(parent)); +} + +QtObjectPtr QStateMachine_NewQStateMachine2(int childMode, QtObjectPtr parent){ + return new QStateMachine(static_cast(childMode), static_cast(parent)); +} + +void QStateMachine_AddDefaultAnimation(QtObjectPtr ptr, QtObjectPtr animation){ + static_cast(ptr)->addDefaultAnimation(static_cast(animation)); +} + +void QStateMachine_AddState(QtObjectPtr ptr, QtObjectPtr state){ + static_cast(ptr)->addState(static_cast(state)); +} + +void QStateMachine_ClearError(QtObjectPtr ptr){ + static_cast(ptr)->clearError(); +} + +int QStateMachine_CancelDelayedEvent(QtObjectPtr ptr, int id){ + return static_cast(ptr)->cancelDelayedEvent(id); +} + +int QStateMachine_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +char* QStateMachine_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +int QStateMachine_EventFilter(QtObjectPtr ptr, QtObjectPtr watched, QtObjectPtr event){ + return static_cast(ptr)->eventFilter(static_cast(watched), static_cast(event)); +} + +int QStateMachine_GlobalRestorePolicy(QtObjectPtr ptr){ + return static_cast(ptr)->globalRestorePolicy(); +} + +int QStateMachine_IsAnimated(QtObjectPtr ptr){ + return static_cast(ptr)->isAnimated(); +} + +int QStateMachine_IsRunning(QtObjectPtr ptr){ + return static_cast(ptr)->isRunning(); +} + +int QStateMachine_PostDelayedEvent(QtObjectPtr ptr, QtObjectPtr event, int delay){ + return static_cast(ptr)->postDelayedEvent(static_cast(event), delay); +} + +void QStateMachine_PostEvent(QtObjectPtr ptr, QtObjectPtr event, int priority){ + static_cast(ptr)->postEvent(static_cast(event), static_cast(priority)); +} + +void QStateMachine_RemoveDefaultAnimation(QtObjectPtr ptr, QtObjectPtr animation){ + static_cast(ptr)->removeDefaultAnimation(static_cast(animation)); +} + +void QStateMachine_RemoveState(QtObjectPtr ptr, QtObjectPtr state){ + static_cast(ptr)->removeState(static_cast(state)); +} + +void QStateMachine_ConnectRunningChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QStateMachine::runningChanged), static_cast(ptr), static_cast(&MyQStateMachine::Signal_RunningChanged));; +} + +void QStateMachine_DisconnectRunningChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QStateMachine::runningChanged), static_cast(ptr), static_cast(&MyQStateMachine::Signal_RunningChanged));; +} + +void QStateMachine_SetAnimated(QtObjectPtr ptr, int enabled){ + static_cast(ptr)->setAnimated(enabled != 0); +} + +void QStateMachine_SetGlobalRestorePolicy(QtObjectPtr ptr, int restorePolicy){ + static_cast(ptr)->setGlobalRestorePolicy(static_cast(restorePolicy)); +} + +void QStateMachine_SetRunning(QtObjectPtr ptr, int running){ + QMetaObject::invokeMethod(static_cast(ptr), "setRunning", Q_ARG(bool, running != 0)); +} + +void QStateMachine_Start(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "start"); +} + +void QStateMachine_ConnectStarted(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QStateMachine::started, static_cast(ptr), static_cast(&MyQStateMachine::Signal_Started));; +} + +void QStateMachine_DisconnectStarted(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QStateMachine::started, static_cast(ptr), static_cast(&MyQStateMachine::Signal_Started));; +} + +void QStateMachine_Stop(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "stop"); +} + +void QStateMachine_ConnectStopped(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QStateMachine::stopped, static_cast(ptr), static_cast(&MyQStateMachine::Signal_Stopped));; +} + +void QStateMachine_DisconnectStopped(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QStateMachine::stopped, static_cast(ptr), static_cast(&MyQStateMachine::Signal_Stopped));; +} + +void QStateMachine_DestroyQStateMachine(QtObjectPtr ptr){ + static_cast(ptr)->~QStateMachine(); +} + diff --git a/core/qstatemachine.go b/core/qstatemachine.go new file mode 100755 index 00000000..eaad164d --- /dev/null +++ b/core/qstatemachine.go @@ -0,0 +1,249 @@ +package core + +//#include "qstatemachine.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QStateMachine struct { + QState +} + +type QStateMachineITF interface { + QStateITF + QStateMachinePTR() *QStateMachine +} + +func PointerFromQStateMachine(ptr QStateMachineITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStateMachinePTR().Pointer() + } + return nil +} + +func QStateMachineFromPointer(ptr unsafe.Pointer) *QStateMachine { + var n = new(QStateMachine) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QStateMachine_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QStateMachine) QStateMachinePTR() *QStateMachine { + return ptr +} + +//QStateMachine::Error +type QStateMachine__Error int + +var ( + QStateMachine__NoError = QStateMachine__Error(0) + QStateMachine__NoInitialStateError = QStateMachine__Error(1) + QStateMachine__NoDefaultStateInHistoryStateError = QStateMachine__Error(2) + QStateMachine__NoCommonAncestorForTransitionError = QStateMachine__Error(3) +) + +//QStateMachine::EventPriority +type QStateMachine__EventPriority int + +var ( + QStateMachine__NormalPriority = QStateMachine__EventPriority(0) + QStateMachine__HighPriority = QStateMachine__EventPriority(1) +) + +func NewQStateMachine(parent QObjectITF) *QStateMachine { + return QStateMachineFromPointer(unsafe.Pointer(C.QStateMachine_NewQStateMachine(C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func NewQStateMachine2(childMode QState__ChildMode, parent QObjectITF) *QStateMachine { + return QStateMachineFromPointer(unsafe.Pointer(C.QStateMachine_NewQStateMachine2(C.int(childMode), C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func (ptr *QStateMachine) AddDefaultAnimation(animation QAbstractAnimationITF) { + if ptr.Pointer() != nil { + C.QStateMachine_AddDefaultAnimation(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractAnimation(animation))) + } +} + +func (ptr *QStateMachine) AddState(state QAbstractStateITF) { + if ptr.Pointer() != nil { + C.QStateMachine_AddState(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractState(state))) + } +} + +func (ptr *QStateMachine) ClearError() { + if ptr.Pointer() != nil { + C.QStateMachine_ClearError(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QStateMachine) CancelDelayedEvent(id int) bool { + if ptr.Pointer() != nil { + return C.QStateMachine_CancelDelayedEvent(C.QtObjectPtr(ptr.Pointer()), C.int(id)) != 0 + } + return false +} + +func (ptr *QStateMachine) Error() QStateMachine__Error { + if ptr.Pointer() != nil { + return QStateMachine__Error(C.QStateMachine_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStateMachine) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QStateMachine_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QStateMachine) EventFilter(watched QObjectITF, event QEventITF) bool { + if ptr.Pointer() != nil { + return C.QStateMachine_EventFilter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQObject(watched)), C.QtObjectPtr(PointerFromQEvent(event))) != 0 + } + return false +} + +func (ptr *QStateMachine) GlobalRestorePolicy() QState__RestorePolicy { + if ptr.Pointer() != nil { + return QState__RestorePolicy(C.QStateMachine_GlobalRestorePolicy(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStateMachine) IsAnimated() bool { + if ptr.Pointer() != nil { + return C.QStateMachine_IsAnimated(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QStateMachine) IsRunning() bool { + if ptr.Pointer() != nil { + return C.QStateMachine_IsRunning(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QStateMachine) PostDelayedEvent(event QEventITF, delay int) int { + if ptr.Pointer() != nil { + return int(C.QStateMachine_PostDelayedEvent(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQEvent(event)), C.int(delay))) + } + return 0 +} + +func (ptr *QStateMachine) PostEvent(event QEventITF, priority QStateMachine__EventPriority) { + if ptr.Pointer() != nil { + C.QStateMachine_PostEvent(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQEvent(event)), C.int(priority)) + } +} + +func (ptr *QStateMachine) RemoveDefaultAnimation(animation QAbstractAnimationITF) { + if ptr.Pointer() != nil { + C.QStateMachine_RemoveDefaultAnimation(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractAnimation(animation))) + } +} + +func (ptr *QStateMachine) RemoveState(state QAbstractStateITF) { + if ptr.Pointer() != nil { + C.QStateMachine_RemoveState(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractState(state))) + } +} + +func (ptr *QStateMachine) ConnectRunningChanged(f func(running bool)) { + if ptr.Pointer() != nil { + C.QStateMachine_ConnectRunningChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "runningChanged", f) + } +} + +func (ptr *QStateMachine) DisconnectRunningChanged() { + if ptr.Pointer() != nil { + C.QStateMachine_DisconnectRunningChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "runningChanged") + } +} + +//export callbackQStateMachineRunningChanged +func callbackQStateMachineRunningChanged(ptrName *C.char, running C.int) { + qt.GetSignal(C.GoString(ptrName), "runningChanged").(func(bool))(int(running) != 0) +} + +func (ptr *QStateMachine) SetAnimated(enabled bool) { + if ptr.Pointer() != nil { + C.QStateMachine_SetAnimated(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QStateMachine) SetGlobalRestorePolicy(restorePolicy QState__RestorePolicy) { + if ptr.Pointer() != nil { + C.QStateMachine_SetGlobalRestorePolicy(C.QtObjectPtr(ptr.Pointer()), C.int(restorePolicy)) + } +} + +func (ptr *QStateMachine) SetRunning(running bool) { + if ptr.Pointer() != nil { + C.QStateMachine_SetRunning(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(running))) + } +} + +func (ptr *QStateMachine) Start() { + if ptr.Pointer() != nil { + C.QStateMachine_Start(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QStateMachine) ConnectStarted(f func()) { + if ptr.Pointer() != nil { + C.QStateMachine_ConnectStarted(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "started", f) + } +} + +func (ptr *QStateMachine) DisconnectStarted() { + if ptr.Pointer() != nil { + C.QStateMachine_DisconnectStarted(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "started") + } +} + +//export callbackQStateMachineStarted +func callbackQStateMachineStarted(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "started").(func())() +} + +func (ptr *QStateMachine) Stop() { + if ptr.Pointer() != nil { + C.QStateMachine_Stop(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QStateMachine) ConnectStopped(f func()) { + if ptr.Pointer() != nil { + C.QStateMachine_ConnectStopped(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stopped", f) + } +} + +func (ptr *QStateMachine) DisconnectStopped() { + if ptr.Pointer() != nil { + C.QStateMachine_DisconnectStopped(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stopped") + } +} + +//export callbackQStateMachineStopped +func callbackQStateMachineStopped(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "stopped").(func())() +} + +func (ptr *QStateMachine) DestroyQStateMachine() { + if ptr.Pointer() != nil { + C.QStateMachine_DestroyQStateMachine(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qstatemachine.h b/core/qstatemachine.h new file mode 100755 index 00000000..32282a0b --- /dev/null +++ b/core/qstatemachine.h @@ -0,0 +1,37 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStateMachine_NewQStateMachine(QtObjectPtr parent); +QtObjectPtr QStateMachine_NewQStateMachine2(int childMode, QtObjectPtr parent); +void QStateMachine_AddDefaultAnimation(QtObjectPtr ptr, QtObjectPtr animation); +void QStateMachine_AddState(QtObjectPtr ptr, QtObjectPtr state); +void QStateMachine_ClearError(QtObjectPtr ptr); +int QStateMachine_CancelDelayedEvent(QtObjectPtr ptr, int id); +int QStateMachine_Error(QtObjectPtr ptr); +char* QStateMachine_ErrorString(QtObjectPtr ptr); +int QStateMachine_EventFilter(QtObjectPtr ptr, QtObjectPtr watched, QtObjectPtr event); +int QStateMachine_GlobalRestorePolicy(QtObjectPtr ptr); +int QStateMachine_IsAnimated(QtObjectPtr ptr); +int QStateMachine_IsRunning(QtObjectPtr ptr); +int QStateMachine_PostDelayedEvent(QtObjectPtr ptr, QtObjectPtr event, int delay); +void QStateMachine_PostEvent(QtObjectPtr ptr, QtObjectPtr event, int priority); +void QStateMachine_RemoveDefaultAnimation(QtObjectPtr ptr, QtObjectPtr animation); +void QStateMachine_RemoveState(QtObjectPtr ptr, QtObjectPtr state); +void QStateMachine_ConnectRunningChanged(QtObjectPtr ptr); +void QStateMachine_DisconnectRunningChanged(QtObjectPtr ptr); +void QStateMachine_SetAnimated(QtObjectPtr ptr, int enabled); +void QStateMachine_SetGlobalRestorePolicy(QtObjectPtr ptr, int restorePolicy); +void QStateMachine_SetRunning(QtObjectPtr ptr, int running); +void QStateMachine_Start(QtObjectPtr ptr); +void QStateMachine_ConnectStarted(QtObjectPtr ptr); +void QStateMachine_DisconnectStarted(QtObjectPtr ptr); +void QStateMachine_Stop(QtObjectPtr ptr); +void QStateMachine_ConnectStopped(QtObjectPtr ptr); +void QStateMachine_DisconnectStopped(QtObjectPtr ptr); +void QStateMachine_DestroyQStateMachine(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qstaticplugin.cpp b/core/qstaticplugin.cpp new file mode 100755 index 00000000..491148c0 --- /dev/null +++ b/core/qstaticplugin.cpp @@ -0,0 +1,16 @@ +#include "qstaticplugin.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStaticPlugin: public QStaticPlugin { +public: +}; + +QtObjectPtr QStaticPlugin_Instance(QtObjectPtr ptr){ + return static_cast(ptr)->instance(); +} + diff --git a/core/qstaticplugin.go b/core/qstaticplugin.go new file mode 100755 index 00000000..58f90683 --- /dev/null +++ b/core/qstaticplugin.go @@ -0,0 +1,47 @@ +package core + +//#include "qstaticplugin.h" +import "C" +import ( + "unsafe" +) + +type QStaticPlugin struct { + ptr unsafe.Pointer +} + +type QStaticPluginITF interface { + QStaticPluginPTR() *QStaticPlugin +} + +func (p *QStaticPlugin) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QStaticPlugin) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQStaticPlugin(ptr QStaticPluginITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStaticPluginPTR().Pointer() + } + return nil +} + +func QStaticPluginFromPointer(ptr unsafe.Pointer) *QStaticPlugin { + var n = new(QStaticPlugin) + n.SetPointer(ptr) + return n +} + +func (ptr *QStaticPlugin) QStaticPluginPTR() *QStaticPlugin { + return ptr +} + +func (ptr *QStaticPlugin) Instance() *QObject { + if ptr.Pointer() != nil { + return QObjectFromPointer(unsafe.Pointer(C.QStaticPlugin_Instance(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} diff --git a/core/qstaticplugin.h b/core/qstaticplugin.h new file mode 100755 index 00000000..25d7f5a3 --- /dev/null +++ b/core/qstaticplugin.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStaticPlugin_Instance(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qstorageinfo.cpp b/core/qstorageinfo.cpp new file mode 100755 index 00000000..050f7ad6 --- /dev/null +++ b/core/qstorageinfo.cpp @@ -0,0 +1,73 @@ +#include "qstorageinfo.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStorageInfo: public QStorageInfo { +public: +}; + +QtObjectPtr QStorageInfo_NewQStorageInfo(){ + return new QStorageInfo(); +} + +QtObjectPtr QStorageInfo_NewQStorageInfo3(QtObjectPtr dir){ + return new QStorageInfo(*static_cast(dir)); +} + +QtObjectPtr QStorageInfo_NewQStorageInfo4(QtObjectPtr other){ + return new QStorageInfo(*static_cast(other)); +} + +QtObjectPtr QStorageInfo_NewQStorageInfo2(char* path){ + return new QStorageInfo(QString(path)); +} + +char* QStorageInfo_DisplayName(QtObjectPtr ptr){ + return static_cast(ptr)->displayName().toUtf8().data(); +} + +int QStorageInfo_IsReadOnly(QtObjectPtr ptr){ + return static_cast(ptr)->isReadOnly(); +} + +int QStorageInfo_IsReady(QtObjectPtr ptr){ + return static_cast(ptr)->isReady(); +} + +int QStorageInfo_IsRoot(QtObjectPtr ptr){ + return static_cast(ptr)->isRoot(); +} + +int QStorageInfo_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +char* QStorageInfo_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +void QStorageInfo_Refresh(QtObjectPtr ptr){ + static_cast(ptr)->refresh(); +} + +char* QStorageInfo_RootPath(QtObjectPtr ptr){ + return static_cast(ptr)->rootPath().toUtf8().data(); +} + +void QStorageInfo_SetPath(QtObjectPtr ptr, char* path){ + static_cast(ptr)->setPath(QString(path)); +} + +void QStorageInfo_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QStorageInfo_DestroyQStorageInfo(QtObjectPtr ptr){ + static_cast(ptr)->~QStorageInfo(); +} + diff --git a/core/qstorageinfo.go b/core/qstorageinfo.go new file mode 100755 index 00000000..5db4402d --- /dev/null +++ b/core/qstorageinfo.go @@ -0,0 +1,129 @@ +package core + +//#include "qstorageinfo.h" +import "C" +import ( + "unsafe" +) + +type QStorageInfo struct { + ptr unsafe.Pointer +} + +type QStorageInfoITF interface { + QStorageInfoPTR() *QStorageInfo +} + +func (p *QStorageInfo) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QStorageInfo) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQStorageInfo(ptr QStorageInfoITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStorageInfoPTR().Pointer() + } + return nil +} + +func QStorageInfoFromPointer(ptr unsafe.Pointer) *QStorageInfo { + var n = new(QStorageInfo) + n.SetPointer(ptr) + return n +} + +func (ptr *QStorageInfo) QStorageInfoPTR() *QStorageInfo { + return ptr +} + +func NewQStorageInfo() *QStorageInfo { + return QStorageInfoFromPointer(unsafe.Pointer(C.QStorageInfo_NewQStorageInfo())) +} + +func NewQStorageInfo3(dir QDirITF) *QStorageInfo { + return QStorageInfoFromPointer(unsafe.Pointer(C.QStorageInfo_NewQStorageInfo3(C.QtObjectPtr(PointerFromQDir(dir))))) +} + +func NewQStorageInfo4(other QStorageInfoITF) *QStorageInfo { + return QStorageInfoFromPointer(unsafe.Pointer(C.QStorageInfo_NewQStorageInfo4(C.QtObjectPtr(PointerFromQStorageInfo(other))))) +} + +func NewQStorageInfo2(path string) *QStorageInfo { + return QStorageInfoFromPointer(unsafe.Pointer(C.QStorageInfo_NewQStorageInfo2(C.CString(path)))) +} + +func (ptr *QStorageInfo) DisplayName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QStorageInfo_DisplayName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QStorageInfo) IsReadOnly() bool { + if ptr.Pointer() != nil { + return C.QStorageInfo_IsReadOnly(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QStorageInfo) IsReady() bool { + if ptr.Pointer() != nil { + return C.QStorageInfo_IsReady(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QStorageInfo) IsRoot() bool { + if ptr.Pointer() != nil { + return C.QStorageInfo_IsRoot(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QStorageInfo) IsValid() bool { + if ptr.Pointer() != nil { + return C.QStorageInfo_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QStorageInfo) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QStorageInfo_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QStorageInfo) Refresh() { + if ptr.Pointer() != nil { + C.QStorageInfo_Refresh(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QStorageInfo) RootPath() string { + if ptr.Pointer() != nil { + return C.GoString(C.QStorageInfo_RootPath(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QStorageInfo) SetPath(path string) { + if ptr.Pointer() != nil { + C.QStorageInfo_SetPath(C.QtObjectPtr(ptr.Pointer()), C.CString(path)) + } +} + +func (ptr *QStorageInfo) Swap(other QStorageInfoITF) { + if ptr.Pointer() != nil { + C.QStorageInfo_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQStorageInfo(other))) + } +} + +func (ptr *QStorageInfo) DestroyQStorageInfo() { + if ptr.Pointer() != nil { + C.QStorageInfo_DestroyQStorageInfo(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qstorageinfo.h b/core/qstorageinfo.h new file mode 100755 index 00000000..e844141c --- /dev/null +++ b/core/qstorageinfo.h @@ -0,0 +1,24 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStorageInfo_NewQStorageInfo(); +QtObjectPtr QStorageInfo_NewQStorageInfo3(QtObjectPtr dir); +QtObjectPtr QStorageInfo_NewQStorageInfo4(QtObjectPtr other); +QtObjectPtr QStorageInfo_NewQStorageInfo2(char* path); +char* QStorageInfo_DisplayName(QtObjectPtr ptr); +int QStorageInfo_IsReadOnly(QtObjectPtr ptr); +int QStorageInfo_IsReady(QtObjectPtr ptr); +int QStorageInfo_IsRoot(QtObjectPtr ptr); +int QStorageInfo_IsValid(QtObjectPtr ptr); +char* QStorageInfo_Name(QtObjectPtr ptr); +void QStorageInfo_Refresh(QtObjectPtr ptr); +char* QStorageInfo_RootPath(QtObjectPtr ptr); +void QStorageInfo_SetPath(QtObjectPtr ptr, char* path); +void QStorageInfo_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QStorageInfo_DestroyQStorageInfo(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qstring.cpp b/core/qstring.cpp new file mode 100755 index 00000000..7b3942cc --- /dev/null +++ b/core/qstring.cpp @@ -0,0 +1,8 @@ +#include "qstring.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qstring.go b/core/qstring.go new file mode 100755 index 00000000..3455f1fc --- /dev/null +++ b/core/qstring.go @@ -0,0 +1,69 @@ +package core + +//#include "qstring.h" +import "C" +import ( + "unsafe" +) + +type QString struct { + ptr unsafe.Pointer +} + +type QStringITF interface { + QStringPTR() *QString +} + +func (p *QString) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QString) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQString(ptr QStringITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStringPTR().Pointer() + } + return nil +} + +func QStringFromPointer(ptr unsafe.Pointer) *QString { + var n = new(QString) + n.SetPointer(ptr) + return n +} + +func (ptr *QString) QStringPTR() *QString { + return ptr +} + +//QString::NormalizationForm +type QString__NormalizationForm int + +var ( + QString__NormalizationForm_D = QString__NormalizationForm(0) + QString__NormalizationForm_C = QString__NormalizationForm(1) + QString__NormalizationForm_KD = QString__NormalizationForm(2) + QString__NormalizationForm_KC = QString__NormalizationForm(3) +) + +//QString::SectionFlag +type QString__SectionFlag int + +var ( + QString__SectionDefault = QString__SectionFlag(0x00) + QString__SectionSkipEmpty = QString__SectionFlag(0x01) + QString__SectionIncludeLeadingSep = QString__SectionFlag(0x02) + QString__SectionIncludeTrailingSep = QString__SectionFlag(0x04) + QString__SectionCaseInsensitiveSeps = QString__SectionFlag(0x08) +) + +//QString::SplitBehavior +type QString__SplitBehavior int + +var ( + QString__KeepEmptyParts = QString__SplitBehavior(0) + QString__SkipEmptyParts = QString__SplitBehavior(1) +) diff --git a/core/qstring.h b/core/qstring.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qstring.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qstringlist.cpp b/core/qstringlist.cpp new file mode 100755 index 00000000..d7bd4493 --- /dev/null +++ b/core/qstringlist.cpp @@ -0,0 +1,10 @@ +#include "qstringlist.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qstringlist.go b/core/qstringlist.go new file mode 100755 index 00000000..764879e6 --- /dev/null +++ b/core/qstringlist.go @@ -0,0 +1,33 @@ +package core + +//#include "qstringlist.h" +import "C" +import ( + "unsafe" +) + +type QStringList struct { + QList +} + +type QStringListITF interface { + QListITF + QStringListPTR() *QStringList +} + +func PointerFromQStringList(ptr QStringListITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStringListPTR().Pointer() + } + return nil +} + +func QStringListFromPointer(ptr unsafe.Pointer) *QStringList { + var n = new(QStringList) + n.SetPointer(ptr) + return n +} + +func (ptr *QStringList) QStringListPTR() *QStringList { + return ptr +} diff --git a/core/qstringlist.h b/core/qstringlist.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qstringlist.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qstringlistmodel.cpp b/core/qstringlistmodel.cpp new file mode 100755 index 00000000..d6b435a6 --- /dev/null +++ b/core/qstringlistmodel.cpp @@ -0,0 +1,59 @@ +#include "qstringlistmodel.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStringListModel: public QStringListModel { +public: +}; + +char* QStringListModel_Data(QtObjectPtr ptr, QtObjectPtr index, int role){ + return static_cast(ptr)->data(*static_cast(index), role).toString().toUtf8().data(); +} + +int QStringListModel_Flags(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->flags(*static_cast(index)); +} + +int QStringListModel_InsertRows(QtObjectPtr ptr, int row, int count, QtObjectPtr parent){ + return static_cast(ptr)->insertRows(row, count, *static_cast(parent)); +} + +int QStringListModel_RemoveRows(QtObjectPtr ptr, int row, int count, QtObjectPtr parent){ + return static_cast(ptr)->removeRows(row, count, *static_cast(parent)); +} + +int QStringListModel_RowCount(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->rowCount(*static_cast(parent)); +} + +int QStringListModel_SetData(QtObjectPtr ptr, QtObjectPtr index, char* value, int role){ + return static_cast(ptr)->setData(*static_cast(index), QVariant(value), role); +} + +void QStringListModel_SetStringList(QtObjectPtr ptr, char* strin){ + static_cast(ptr)->setStringList(QString(strin).split("|", QString::SkipEmptyParts)); +} + +QtObjectPtr QStringListModel_Sibling(QtObjectPtr ptr, int row, int column, QtObjectPtr idx){ + return static_cast(ptr)->sibling(row, column, *static_cast(idx)).internalPointer(); +} + +void QStringListModel_Sort(QtObjectPtr ptr, int column, int order){ + static_cast(ptr)->sort(column, static_cast(order)); +} + +char* QStringListModel_StringList(QtObjectPtr ptr){ + return static_cast(ptr)->stringList().join("|").toUtf8().data(); +} + +int QStringListModel_SupportedDropActions(QtObjectPtr ptr){ + return static_cast(ptr)->supportedDropActions(); +} + diff --git a/core/qstringlistmodel.go b/core/qstringlistmodel.go new file mode 100755 index 00000000..c26198c4 --- /dev/null +++ b/core/qstringlistmodel.go @@ -0,0 +1,113 @@ +package core + +//#include "qstringlistmodel.h" +import "C" +import ( + "github.com/therecipe/qt" + "strings" + "unsafe" +) + +type QStringListModel struct { + QAbstractListModel +} + +type QStringListModelITF interface { + QAbstractListModelITF + QStringListModelPTR() *QStringListModel +} + +func PointerFromQStringListModel(ptr QStringListModelITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStringListModelPTR().Pointer() + } + return nil +} + +func QStringListModelFromPointer(ptr unsafe.Pointer) *QStringListModel { + var n = new(QStringListModel) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QStringListModel_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QStringListModel) QStringListModelPTR() *QStringListModel { + return ptr +} + +func (ptr *QStringListModel) Data(index QModelIndexITF, role int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QStringListModel_Data(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(index)), C.int(role))) + } + return "" +} + +func (ptr *QStringListModel) Flags(index QModelIndexITF) Qt__ItemFlag { + if ptr.Pointer() != nil { + return Qt__ItemFlag(C.QStringListModel_Flags(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(index)))) + } + return 0 +} + +func (ptr *QStringListModel) InsertRows(row int, count int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QStringListModel_InsertRows(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(count), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QStringListModel) RemoveRows(row int, count int, parent QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QStringListModel_RemoveRows(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(count), C.QtObjectPtr(PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QStringListModel) RowCount(parent QModelIndexITF) int { + if ptr.Pointer() != nil { + return int(C.QStringListModel_RowCount(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(parent)))) + } + return 0 +} + +func (ptr *QStringListModel) SetData(index QModelIndexITF, value string, role int) bool { + if ptr.Pointer() != nil { + return C.QStringListModel_SetData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQModelIndex(index)), C.CString(value), C.int(role)) != 0 + } + return false +} + +func (ptr *QStringListModel) SetStringList(strin []string) { + if ptr.Pointer() != nil { + C.QStringListModel_SetStringList(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(strin, "|"))) + } +} + +func (ptr *QStringListModel) Sibling(row int, column int, idx QModelIndexITF) *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QStringListModel_Sibling(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column), C.QtObjectPtr(PointerFromQModelIndex(idx))))) + } + return nil +} + +func (ptr *QStringListModel) Sort(column int, order Qt__SortOrder) { + if ptr.Pointer() != nil { + C.QStringListModel_Sort(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(order)) + } +} + +func (ptr *QStringListModel) StringList() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QStringListModel_StringList(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QStringListModel) SupportedDropActions() Qt__DropAction { + if ptr.Pointer() != nil { + return Qt__DropAction(C.QStringListModel_SupportedDropActions(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/core/qstringlistmodel.h b/core/qstringlistmodel.h new file mode 100755 index 00000000..dacff1b6 --- /dev/null +++ b/core/qstringlistmodel.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QStringListModel_Data(QtObjectPtr ptr, QtObjectPtr index, int role); +int QStringListModel_Flags(QtObjectPtr ptr, QtObjectPtr index); +int QStringListModel_InsertRows(QtObjectPtr ptr, int row, int count, QtObjectPtr parent); +int QStringListModel_RemoveRows(QtObjectPtr ptr, int row, int count, QtObjectPtr parent); +int QStringListModel_RowCount(QtObjectPtr ptr, QtObjectPtr parent); +int QStringListModel_SetData(QtObjectPtr ptr, QtObjectPtr index, char* value, int role); +void QStringListModel_SetStringList(QtObjectPtr ptr, char* strin); +QtObjectPtr QStringListModel_Sibling(QtObjectPtr ptr, int row, int column, QtObjectPtr idx); +void QStringListModel_Sort(QtObjectPtr ptr, int column, int order); +char* QStringListModel_StringList(QtObjectPtr ptr); +int QStringListModel_SupportedDropActions(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qstringmatcher.cpp b/core/qstringmatcher.cpp new file mode 100755 index 00000000..055d402b --- /dev/null +++ b/core/qstringmatcher.cpp @@ -0,0 +1,57 @@ +#include "qstringmatcher.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStringMatcher: public QStringMatcher { +public: +}; + +QtObjectPtr QStringMatcher_NewQStringMatcher3(QtObjectPtr uc, int length, int cs){ + return new QStringMatcher(static_cast(uc), length, static_cast(cs)); +} + +char* QStringMatcher_Pattern(QtObjectPtr ptr){ + return static_cast(ptr)->pattern().toUtf8().data(); +} + +QtObjectPtr QStringMatcher_NewQStringMatcher(){ + return new QStringMatcher(); +} + +QtObjectPtr QStringMatcher_NewQStringMatcher2(char* pattern, int cs){ + return new QStringMatcher(QString(pattern), static_cast(cs)); +} + +QtObjectPtr QStringMatcher_NewQStringMatcher4(QtObjectPtr other){ + return new QStringMatcher(*static_cast(other)); +} + +int QStringMatcher_CaseSensitivity(QtObjectPtr ptr){ + return static_cast(ptr)->caseSensitivity(); +} + +int QStringMatcher_IndexIn2(QtObjectPtr ptr, QtObjectPtr str, int length, int from){ + return static_cast(ptr)->indexIn(static_cast(str), length, from); +} + +int QStringMatcher_IndexIn(QtObjectPtr ptr, char* str, int from){ + return static_cast(ptr)->indexIn(QString(str), from); +} + +void QStringMatcher_SetCaseSensitivity(QtObjectPtr ptr, int cs){ + static_cast(ptr)->setCaseSensitivity(static_cast(cs)); +} + +void QStringMatcher_SetPattern(QtObjectPtr ptr, char* pattern){ + static_cast(ptr)->setPattern(QString(pattern)); +} + +void QStringMatcher_DestroyQStringMatcher(QtObjectPtr ptr){ + static_cast(ptr)->~QStringMatcher(); +} + diff --git a/core/qstringmatcher.go b/core/qstringmatcher.go new file mode 100755 index 00000000..96f26fa8 --- /dev/null +++ b/core/qstringmatcher.go @@ -0,0 +1,102 @@ +package core + +//#include "qstringmatcher.h" +import "C" +import ( + "unsafe" +) + +type QStringMatcher struct { + ptr unsafe.Pointer +} + +type QStringMatcherITF interface { + QStringMatcherPTR() *QStringMatcher +} + +func (p *QStringMatcher) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QStringMatcher) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQStringMatcher(ptr QStringMatcherITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStringMatcherPTR().Pointer() + } + return nil +} + +func QStringMatcherFromPointer(ptr unsafe.Pointer) *QStringMatcher { + var n = new(QStringMatcher) + n.SetPointer(ptr) + return n +} + +func (ptr *QStringMatcher) QStringMatcherPTR() *QStringMatcher { + return ptr +} + +func NewQStringMatcher3(uc QCharITF, length int, cs Qt__CaseSensitivity) *QStringMatcher { + return QStringMatcherFromPointer(unsafe.Pointer(C.QStringMatcher_NewQStringMatcher3(C.QtObjectPtr(PointerFromQChar(uc)), C.int(length), C.int(cs)))) +} + +func (ptr *QStringMatcher) Pattern() string { + if ptr.Pointer() != nil { + return C.GoString(C.QStringMatcher_Pattern(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func NewQStringMatcher() *QStringMatcher { + return QStringMatcherFromPointer(unsafe.Pointer(C.QStringMatcher_NewQStringMatcher())) +} + +func NewQStringMatcher2(pattern string, cs Qt__CaseSensitivity) *QStringMatcher { + return QStringMatcherFromPointer(unsafe.Pointer(C.QStringMatcher_NewQStringMatcher2(C.CString(pattern), C.int(cs)))) +} + +func NewQStringMatcher4(other QStringMatcherITF) *QStringMatcher { + return QStringMatcherFromPointer(unsafe.Pointer(C.QStringMatcher_NewQStringMatcher4(C.QtObjectPtr(PointerFromQStringMatcher(other))))) +} + +func (ptr *QStringMatcher) CaseSensitivity() Qt__CaseSensitivity { + if ptr.Pointer() != nil { + return Qt__CaseSensitivity(C.QStringMatcher_CaseSensitivity(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStringMatcher) IndexIn2(str QCharITF, length int, from int) int { + if ptr.Pointer() != nil { + return int(C.QStringMatcher_IndexIn2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQChar(str)), C.int(length), C.int(from))) + } + return 0 +} + +func (ptr *QStringMatcher) IndexIn(str string, from int) int { + if ptr.Pointer() != nil { + return int(C.QStringMatcher_IndexIn(C.QtObjectPtr(ptr.Pointer()), C.CString(str), C.int(from))) + } + return 0 +} + +func (ptr *QStringMatcher) SetCaseSensitivity(cs Qt__CaseSensitivity) { + if ptr.Pointer() != nil { + C.QStringMatcher_SetCaseSensitivity(C.QtObjectPtr(ptr.Pointer()), C.int(cs)) + } +} + +func (ptr *QStringMatcher) SetPattern(pattern string) { + if ptr.Pointer() != nil { + C.QStringMatcher_SetPattern(C.QtObjectPtr(ptr.Pointer()), C.CString(pattern)) + } +} + +func (ptr *QStringMatcher) DestroyQStringMatcher() { + if ptr.Pointer() != nil { + C.QStringMatcher_DestroyQStringMatcher(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qstringmatcher.h b/core/qstringmatcher.h new file mode 100755 index 00000000..9cf55a5b --- /dev/null +++ b/core/qstringmatcher.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStringMatcher_NewQStringMatcher3(QtObjectPtr uc, int length, int cs); +char* QStringMatcher_Pattern(QtObjectPtr ptr); +QtObjectPtr QStringMatcher_NewQStringMatcher(); +QtObjectPtr QStringMatcher_NewQStringMatcher2(char* pattern, int cs); +QtObjectPtr QStringMatcher_NewQStringMatcher4(QtObjectPtr other); +int QStringMatcher_CaseSensitivity(QtObjectPtr ptr); +int QStringMatcher_IndexIn2(QtObjectPtr ptr, QtObjectPtr str, int length, int from); +int QStringMatcher_IndexIn(QtObjectPtr ptr, char* str, int from); +void QStringMatcher_SetCaseSensitivity(QtObjectPtr ptr, int cs); +void QStringMatcher_SetPattern(QtObjectPtr ptr, char* pattern); +void QStringMatcher_DestroyQStringMatcher(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qstringref.cpp b/core/qstringref.cpp new file mode 100755 index 00000000..c5d6053a --- /dev/null +++ b/core/qstringref.cpp @@ -0,0 +1,218 @@ +#include "qstringref.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStringRef: public QStringRef { +public: +}; + +QtObjectPtr QStringRef_Begin(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->begin()); +} + +QtObjectPtr QStringRef_Cbegin(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->cbegin()); +} + +QtObjectPtr QStringRef_Cend(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->cend()); +} + +void QStringRef_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +int QStringRef_QStringRef_Compare3(QtObjectPtr s1, QtObjectPtr s2, int cs){ + return QStringRef::compare(*static_cast(s1), *static_cast(s2), static_cast(cs)); +} + +int QStringRef_QStringRef_Compare(QtObjectPtr s1, char* s2, int cs){ + return QStringRef::compare(*static_cast(s1), QString(s2), static_cast(cs)); +} + +int QStringRef_QStringRef_Compare2(QtObjectPtr s1, QtObjectPtr s2, int cs){ + return QStringRef::compare(*static_cast(s1), *static_cast(s2), static_cast(cs)); +} + +int QStringRef_Compare6(QtObjectPtr ptr, QtObjectPtr other, int cs){ + return static_cast(ptr)->compare(*static_cast(other), static_cast(cs)); +} + +int QStringRef_Compare4(QtObjectPtr ptr, char* other, int cs){ + return static_cast(ptr)->compare(QString(other), static_cast(cs)); +} + +int QStringRef_Compare5(QtObjectPtr ptr, QtObjectPtr other, int cs){ + return static_cast(ptr)->compare(*static_cast(other), static_cast(cs)); +} + +QtObjectPtr QStringRef_ConstData(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->constData()); +} + +int QStringRef_Contains2(QtObjectPtr ptr, QtObjectPtr ch, int cs){ + return static_cast(ptr)->contains(*static_cast(ch), static_cast(cs)); +} + +int QStringRef_Contains4(QtObjectPtr ptr, QtObjectPtr str, int cs){ + return static_cast(ptr)->contains(*static_cast(str), static_cast(cs)); +} + +int QStringRef_Contains(QtObjectPtr ptr, char* str, int cs){ + return static_cast(ptr)->contains(QString(str), static_cast(cs)); +} + +int QStringRef_Contains3(QtObjectPtr ptr, QtObjectPtr str, int cs){ + return static_cast(ptr)->contains(*static_cast(str), static_cast(cs)); +} + +int QStringRef_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +int QStringRef_Count3(QtObjectPtr ptr, QtObjectPtr ch, int cs){ + return static_cast(ptr)->count(*static_cast(ch), static_cast(cs)); +} + +int QStringRef_Count2(QtObjectPtr ptr, char* str, int cs){ + return static_cast(ptr)->count(QString(str), static_cast(cs)); +} + +int QStringRef_Count4(QtObjectPtr ptr, QtObjectPtr str, int cs){ + return static_cast(ptr)->count(*static_cast(str), static_cast(cs)); +} + +QtObjectPtr QStringRef_Data(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->data()); +} + +QtObjectPtr QStringRef_End(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->end()); +} + +int QStringRef_EndsWith2(QtObjectPtr ptr, QtObjectPtr ch, int cs){ + return static_cast(ptr)->endsWith(*static_cast(ch), static_cast(cs)); +} + +int QStringRef_EndsWith3(QtObjectPtr ptr, QtObjectPtr str, int cs){ + return static_cast(ptr)->endsWith(*static_cast(str), static_cast(cs)); +} + +int QStringRef_EndsWith(QtObjectPtr ptr, char* str, int cs){ + return static_cast(ptr)->endsWith(QString(str), static_cast(cs)); +} + +int QStringRef_EndsWith4(QtObjectPtr ptr, QtObjectPtr str, int cs){ + return static_cast(ptr)->endsWith(*static_cast(str), static_cast(cs)); +} + +int QStringRef_IndexOf3(QtObjectPtr ptr, QtObjectPtr ch, int from, int cs){ + return static_cast(ptr)->indexOf(*static_cast(ch), from, static_cast(cs)); +} + +int QStringRef_IndexOf2(QtObjectPtr ptr, QtObjectPtr str, int from, int cs){ + return static_cast(ptr)->indexOf(*static_cast(str), from, static_cast(cs)); +} + +int QStringRef_IndexOf(QtObjectPtr ptr, char* str, int from, int cs){ + return static_cast(ptr)->indexOf(QString(str), from, static_cast(cs)); +} + +int QStringRef_IndexOf4(QtObjectPtr ptr, QtObjectPtr str, int from, int cs){ + return static_cast(ptr)->indexOf(*static_cast(str), from, static_cast(cs)); +} + +int QStringRef_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +int QStringRef_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QStringRef_LastIndexOf2(QtObjectPtr ptr, QtObjectPtr ch, int from, int cs){ + return static_cast(ptr)->lastIndexOf(*static_cast(ch), from, static_cast(cs)); +} + +int QStringRef_LastIndexOf3(QtObjectPtr ptr, QtObjectPtr str, int from, int cs){ + return static_cast(ptr)->lastIndexOf(*static_cast(str), from, static_cast(cs)); +} + +int QStringRef_LastIndexOf(QtObjectPtr ptr, char* str, int from, int cs){ + return static_cast(ptr)->lastIndexOf(QString(str), from, static_cast(cs)); +} + +int QStringRef_LastIndexOf4(QtObjectPtr ptr, QtObjectPtr str, int from, int cs){ + return static_cast(ptr)->lastIndexOf(*static_cast(str), from, static_cast(cs)); +} + +int QStringRef_Length(QtObjectPtr ptr){ + return static_cast(ptr)->length(); +} + +int QStringRef_QStringRef_LocaleAwareCompare(QtObjectPtr s1, char* s2){ + return QStringRef::localeAwareCompare(*static_cast(s1), QString(s2)); +} + +int QStringRef_QStringRef_LocaleAwareCompare2(QtObjectPtr s1, QtObjectPtr s2){ + return QStringRef::localeAwareCompare(*static_cast(s1), *static_cast(s2)); +} + +int QStringRef_LocaleAwareCompare3(QtObjectPtr ptr, char* other){ + return static_cast(ptr)->localeAwareCompare(QString(other)); +} + +int QStringRef_LocaleAwareCompare4(QtObjectPtr ptr, QtObjectPtr other){ + return static_cast(ptr)->localeAwareCompare(*static_cast(other)); +} + +int QStringRef_Position(QtObjectPtr ptr){ + return static_cast(ptr)->position(); +} + +int QStringRef_Size(QtObjectPtr ptr){ + return static_cast(ptr)->size(); +} + +int QStringRef_StartsWith4(QtObjectPtr ptr, QtObjectPtr ch, int cs){ + return static_cast(ptr)->startsWith(*static_cast(ch), static_cast(cs)); +} + +int QStringRef_StartsWith2(QtObjectPtr ptr, QtObjectPtr str, int cs){ + return static_cast(ptr)->startsWith(*static_cast(str), static_cast(cs)); +} + +int QStringRef_StartsWith(QtObjectPtr ptr, char* str, int cs){ + return static_cast(ptr)->startsWith(QString(str), static_cast(cs)); +} + +int QStringRef_StartsWith3(QtObjectPtr ptr, QtObjectPtr str, int cs){ + return static_cast(ptr)->startsWith(*static_cast(str), static_cast(cs)); +} + +char* QStringRef_String(QtObjectPtr ptr){ + return static_cast(ptr)->string()->toUtf8().data(); +} + +int QStringRef_ToInt(QtObjectPtr ptr, int ok, int base){ + return static_cast(ptr)->toInt(NULL, base); +} + +char* QStringRef_ToString(QtObjectPtr ptr){ + return static_cast(ptr)->toString().toUtf8().data(); +} + +QtObjectPtr QStringRef_Unicode(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->unicode()); +} + +void QStringRef_DestroyQStringRef(QtObjectPtr ptr){ + static_cast(ptr)->~QStringRef(); +} + diff --git a/core/qstringref.go b/core/qstringref.go new file mode 100755 index 00000000..95aeb8f8 --- /dev/null +++ b/core/qstringref.go @@ -0,0 +1,381 @@ +package core + +//#include "qstringref.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QStringRef struct { + ptr unsafe.Pointer +} + +type QStringRefITF interface { + QStringRefPTR() *QStringRef +} + +func (p *QStringRef) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QStringRef) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQStringRef(ptr QStringRefITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStringRefPTR().Pointer() + } + return nil +} + +func QStringRefFromPointer(ptr unsafe.Pointer) *QStringRef { + var n = new(QStringRef) + n.SetPointer(ptr) + return n +} + +func (ptr *QStringRef) QStringRefPTR() *QStringRef { + return ptr +} + +func (ptr *QStringRef) Begin() *QChar { + if ptr.Pointer() != nil { + return QCharFromPointer(unsafe.Pointer(C.QStringRef_Begin(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QStringRef) Cbegin() *QChar { + if ptr.Pointer() != nil { + return QCharFromPointer(unsafe.Pointer(C.QStringRef_Cbegin(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QStringRef) Cend() *QChar { + if ptr.Pointer() != nil { + return QCharFromPointer(unsafe.Pointer(C.QStringRef_Cend(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QStringRef) Clear() { + if ptr.Pointer() != nil { + C.QStringRef_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func QStringRef_Compare3(s1 QStringRefITF, s2 QLatin1StringITF, cs Qt__CaseSensitivity) int { + return int(C.QStringRef_QStringRef_Compare3(C.QtObjectPtr(PointerFromQStringRef(s1)), C.QtObjectPtr(PointerFromQLatin1String(s2)), C.int(cs))) +} + +func QStringRef_Compare(s1 QStringRefITF, s2 string, cs Qt__CaseSensitivity) int { + return int(C.QStringRef_QStringRef_Compare(C.QtObjectPtr(PointerFromQStringRef(s1)), C.CString(s2), C.int(cs))) +} + +func QStringRef_Compare2(s1 QStringRefITF, s2 QStringRefITF, cs Qt__CaseSensitivity) int { + return int(C.QStringRef_QStringRef_Compare2(C.QtObjectPtr(PointerFromQStringRef(s1)), C.QtObjectPtr(PointerFromQStringRef(s2)), C.int(cs))) +} + +func (ptr *QStringRef) Compare6(other QLatin1StringITF, cs Qt__CaseSensitivity) int { + if ptr.Pointer() != nil { + return int(C.QStringRef_Compare6(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLatin1String(other)), C.int(cs))) + } + return 0 +} + +func (ptr *QStringRef) Compare4(other string, cs Qt__CaseSensitivity) int { + if ptr.Pointer() != nil { + return int(C.QStringRef_Compare4(C.QtObjectPtr(ptr.Pointer()), C.CString(other), C.int(cs))) + } + return 0 +} + +func (ptr *QStringRef) Compare5(other QStringRefITF, cs Qt__CaseSensitivity) int { + if ptr.Pointer() != nil { + return int(C.QStringRef_Compare5(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQStringRef(other)), C.int(cs))) + } + return 0 +} + +func (ptr *QStringRef) ConstData() *QChar { + if ptr.Pointer() != nil { + return QCharFromPointer(unsafe.Pointer(C.QStringRef_ConstData(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QStringRef) Contains2(ch QCharITF, cs Qt__CaseSensitivity) bool { + if ptr.Pointer() != nil { + return C.QStringRef_Contains2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQChar(ch)), C.int(cs)) != 0 + } + return false +} + +func (ptr *QStringRef) Contains4(str QLatin1StringITF, cs Qt__CaseSensitivity) bool { + if ptr.Pointer() != nil { + return C.QStringRef_Contains4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLatin1String(str)), C.int(cs)) != 0 + } + return false +} + +func (ptr *QStringRef) Contains(str string, cs Qt__CaseSensitivity) bool { + if ptr.Pointer() != nil { + return C.QStringRef_Contains(C.QtObjectPtr(ptr.Pointer()), C.CString(str), C.int(cs)) != 0 + } + return false +} + +func (ptr *QStringRef) Contains3(str QStringRefITF, cs Qt__CaseSensitivity) bool { + if ptr.Pointer() != nil { + return C.QStringRef_Contains3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQStringRef(str)), C.int(cs)) != 0 + } + return false +} + +func (ptr *QStringRef) Count() int { + if ptr.Pointer() != nil { + return int(C.QStringRef_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStringRef) Count3(ch QCharITF, cs Qt__CaseSensitivity) int { + if ptr.Pointer() != nil { + return int(C.QStringRef_Count3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQChar(ch)), C.int(cs))) + } + return 0 +} + +func (ptr *QStringRef) Count2(str string, cs Qt__CaseSensitivity) int { + if ptr.Pointer() != nil { + return int(C.QStringRef_Count2(C.QtObjectPtr(ptr.Pointer()), C.CString(str), C.int(cs))) + } + return 0 +} + +func (ptr *QStringRef) Count4(str QStringRefITF, cs Qt__CaseSensitivity) int { + if ptr.Pointer() != nil { + return int(C.QStringRef_Count4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQStringRef(str)), C.int(cs))) + } + return 0 +} + +func (ptr *QStringRef) Data() *QChar { + if ptr.Pointer() != nil { + return QCharFromPointer(unsafe.Pointer(C.QStringRef_Data(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QStringRef) End() *QChar { + if ptr.Pointer() != nil { + return QCharFromPointer(unsafe.Pointer(C.QStringRef_End(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QStringRef) EndsWith2(ch QCharITF, cs Qt__CaseSensitivity) bool { + if ptr.Pointer() != nil { + return C.QStringRef_EndsWith2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQChar(ch)), C.int(cs)) != 0 + } + return false +} + +func (ptr *QStringRef) EndsWith3(str QLatin1StringITF, cs Qt__CaseSensitivity) bool { + if ptr.Pointer() != nil { + return C.QStringRef_EndsWith3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLatin1String(str)), C.int(cs)) != 0 + } + return false +} + +func (ptr *QStringRef) EndsWith(str string, cs Qt__CaseSensitivity) bool { + if ptr.Pointer() != nil { + return C.QStringRef_EndsWith(C.QtObjectPtr(ptr.Pointer()), C.CString(str), C.int(cs)) != 0 + } + return false +} + +func (ptr *QStringRef) EndsWith4(str QStringRefITF, cs Qt__CaseSensitivity) bool { + if ptr.Pointer() != nil { + return C.QStringRef_EndsWith4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQStringRef(str)), C.int(cs)) != 0 + } + return false +} + +func (ptr *QStringRef) IndexOf3(ch QCharITF, from int, cs Qt__CaseSensitivity) int { + if ptr.Pointer() != nil { + return int(C.QStringRef_IndexOf3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQChar(ch)), C.int(from), C.int(cs))) + } + return 0 +} + +func (ptr *QStringRef) IndexOf2(str QLatin1StringITF, from int, cs Qt__CaseSensitivity) int { + if ptr.Pointer() != nil { + return int(C.QStringRef_IndexOf2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLatin1String(str)), C.int(from), C.int(cs))) + } + return 0 +} + +func (ptr *QStringRef) IndexOf(str string, from int, cs Qt__CaseSensitivity) int { + if ptr.Pointer() != nil { + return int(C.QStringRef_IndexOf(C.QtObjectPtr(ptr.Pointer()), C.CString(str), C.int(from), C.int(cs))) + } + return 0 +} + +func (ptr *QStringRef) IndexOf4(str QStringRefITF, from int, cs Qt__CaseSensitivity) int { + if ptr.Pointer() != nil { + return int(C.QStringRef_IndexOf4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQStringRef(str)), C.int(from), C.int(cs))) + } + return 0 +} + +func (ptr *QStringRef) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QStringRef_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QStringRef) IsNull() bool { + if ptr.Pointer() != nil { + return C.QStringRef_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QStringRef) LastIndexOf2(ch QCharITF, from int, cs Qt__CaseSensitivity) int { + if ptr.Pointer() != nil { + return int(C.QStringRef_LastIndexOf2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQChar(ch)), C.int(from), C.int(cs))) + } + return 0 +} + +func (ptr *QStringRef) LastIndexOf3(str QLatin1StringITF, from int, cs Qt__CaseSensitivity) int { + if ptr.Pointer() != nil { + return int(C.QStringRef_LastIndexOf3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLatin1String(str)), C.int(from), C.int(cs))) + } + return 0 +} + +func (ptr *QStringRef) LastIndexOf(str string, from int, cs Qt__CaseSensitivity) int { + if ptr.Pointer() != nil { + return int(C.QStringRef_LastIndexOf(C.QtObjectPtr(ptr.Pointer()), C.CString(str), C.int(from), C.int(cs))) + } + return 0 +} + +func (ptr *QStringRef) LastIndexOf4(str QStringRefITF, from int, cs Qt__CaseSensitivity) int { + if ptr.Pointer() != nil { + return int(C.QStringRef_LastIndexOf4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQStringRef(str)), C.int(from), C.int(cs))) + } + return 0 +} + +func (ptr *QStringRef) Length() int { + if ptr.Pointer() != nil { + return int(C.QStringRef_Length(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QStringRef_LocaleAwareCompare(s1 QStringRefITF, s2 string) int { + return int(C.QStringRef_QStringRef_LocaleAwareCompare(C.QtObjectPtr(PointerFromQStringRef(s1)), C.CString(s2))) +} + +func QStringRef_LocaleAwareCompare2(s1 QStringRefITF, s2 QStringRefITF) int { + return int(C.QStringRef_QStringRef_LocaleAwareCompare2(C.QtObjectPtr(PointerFromQStringRef(s1)), C.QtObjectPtr(PointerFromQStringRef(s2)))) +} + +func (ptr *QStringRef) LocaleAwareCompare3(other string) int { + if ptr.Pointer() != nil { + return int(C.QStringRef_LocaleAwareCompare3(C.QtObjectPtr(ptr.Pointer()), C.CString(other))) + } + return 0 +} + +func (ptr *QStringRef) LocaleAwareCompare4(other QStringRefITF) int { + if ptr.Pointer() != nil { + return int(C.QStringRef_LocaleAwareCompare4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQStringRef(other)))) + } + return 0 +} + +func (ptr *QStringRef) Position() int { + if ptr.Pointer() != nil { + return int(C.QStringRef_Position(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStringRef) Size() int { + if ptr.Pointer() != nil { + return int(C.QStringRef_Size(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStringRef) StartsWith4(ch QCharITF, cs Qt__CaseSensitivity) bool { + if ptr.Pointer() != nil { + return C.QStringRef_StartsWith4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQChar(ch)), C.int(cs)) != 0 + } + return false +} + +func (ptr *QStringRef) StartsWith2(str QLatin1StringITF, cs Qt__CaseSensitivity) bool { + if ptr.Pointer() != nil { + return C.QStringRef_StartsWith2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLatin1String(str)), C.int(cs)) != 0 + } + return false +} + +func (ptr *QStringRef) StartsWith(str string, cs Qt__CaseSensitivity) bool { + if ptr.Pointer() != nil { + return C.QStringRef_StartsWith(C.QtObjectPtr(ptr.Pointer()), C.CString(str), C.int(cs)) != 0 + } + return false +} + +func (ptr *QStringRef) StartsWith3(str QStringRefITF, cs Qt__CaseSensitivity) bool { + if ptr.Pointer() != nil { + return C.QStringRef_StartsWith3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQStringRef(str)), C.int(cs)) != 0 + } + return false +} + +func (ptr *QStringRef) String() string { + if ptr.Pointer() != nil { + return C.GoString(C.QStringRef_String(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QStringRef) ToInt(ok bool, base int) int { + if ptr.Pointer() != nil { + return int(C.QStringRef_ToInt(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(ok)), C.int(base))) + } + return 0 +} + +func (ptr *QStringRef) ToString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QStringRef_ToString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QStringRef) Unicode() *QChar { + if ptr.Pointer() != nil { + return QCharFromPointer(unsafe.Pointer(C.QStringRef_Unicode(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QStringRef) DestroyQStringRef() { + if ptr.Pointer() != nil { + C.QStringRef_DestroyQStringRef(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qstringref.h b/core/qstringref.h new file mode 100755 index 00000000..4314b1a6 --- /dev/null +++ b/core/qstringref.h @@ -0,0 +1,60 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStringRef_Begin(QtObjectPtr ptr); +QtObjectPtr QStringRef_Cbegin(QtObjectPtr ptr); +QtObjectPtr QStringRef_Cend(QtObjectPtr ptr); +void QStringRef_Clear(QtObjectPtr ptr); +int QStringRef_QStringRef_Compare3(QtObjectPtr s1, QtObjectPtr s2, int cs); +int QStringRef_QStringRef_Compare(QtObjectPtr s1, char* s2, int cs); +int QStringRef_QStringRef_Compare2(QtObjectPtr s1, QtObjectPtr s2, int cs); +int QStringRef_Compare6(QtObjectPtr ptr, QtObjectPtr other, int cs); +int QStringRef_Compare4(QtObjectPtr ptr, char* other, int cs); +int QStringRef_Compare5(QtObjectPtr ptr, QtObjectPtr other, int cs); +QtObjectPtr QStringRef_ConstData(QtObjectPtr ptr); +int QStringRef_Contains2(QtObjectPtr ptr, QtObjectPtr ch, int cs); +int QStringRef_Contains4(QtObjectPtr ptr, QtObjectPtr str, int cs); +int QStringRef_Contains(QtObjectPtr ptr, char* str, int cs); +int QStringRef_Contains3(QtObjectPtr ptr, QtObjectPtr str, int cs); +int QStringRef_Count(QtObjectPtr ptr); +int QStringRef_Count3(QtObjectPtr ptr, QtObjectPtr ch, int cs); +int QStringRef_Count2(QtObjectPtr ptr, char* str, int cs); +int QStringRef_Count4(QtObjectPtr ptr, QtObjectPtr str, int cs); +QtObjectPtr QStringRef_Data(QtObjectPtr ptr); +QtObjectPtr QStringRef_End(QtObjectPtr ptr); +int QStringRef_EndsWith2(QtObjectPtr ptr, QtObjectPtr ch, int cs); +int QStringRef_EndsWith3(QtObjectPtr ptr, QtObjectPtr str, int cs); +int QStringRef_EndsWith(QtObjectPtr ptr, char* str, int cs); +int QStringRef_EndsWith4(QtObjectPtr ptr, QtObjectPtr str, int cs); +int QStringRef_IndexOf3(QtObjectPtr ptr, QtObjectPtr ch, int from, int cs); +int QStringRef_IndexOf2(QtObjectPtr ptr, QtObjectPtr str, int from, int cs); +int QStringRef_IndexOf(QtObjectPtr ptr, char* str, int from, int cs); +int QStringRef_IndexOf4(QtObjectPtr ptr, QtObjectPtr str, int from, int cs); +int QStringRef_IsEmpty(QtObjectPtr ptr); +int QStringRef_IsNull(QtObjectPtr ptr); +int QStringRef_LastIndexOf2(QtObjectPtr ptr, QtObjectPtr ch, int from, int cs); +int QStringRef_LastIndexOf3(QtObjectPtr ptr, QtObjectPtr str, int from, int cs); +int QStringRef_LastIndexOf(QtObjectPtr ptr, char* str, int from, int cs); +int QStringRef_LastIndexOf4(QtObjectPtr ptr, QtObjectPtr str, int from, int cs); +int QStringRef_Length(QtObjectPtr ptr); +int QStringRef_QStringRef_LocaleAwareCompare(QtObjectPtr s1, char* s2); +int QStringRef_QStringRef_LocaleAwareCompare2(QtObjectPtr s1, QtObjectPtr s2); +int QStringRef_LocaleAwareCompare3(QtObjectPtr ptr, char* other); +int QStringRef_LocaleAwareCompare4(QtObjectPtr ptr, QtObjectPtr other); +int QStringRef_Position(QtObjectPtr ptr); +int QStringRef_Size(QtObjectPtr ptr); +int QStringRef_StartsWith4(QtObjectPtr ptr, QtObjectPtr ch, int cs); +int QStringRef_StartsWith2(QtObjectPtr ptr, QtObjectPtr str, int cs); +int QStringRef_StartsWith(QtObjectPtr ptr, char* str, int cs); +int QStringRef_StartsWith3(QtObjectPtr ptr, QtObjectPtr str, int cs); +char* QStringRef_String(QtObjectPtr ptr); +int QStringRef_ToInt(QtObjectPtr ptr, int ok, int base); +char* QStringRef_ToString(QtObjectPtr ptr); +QtObjectPtr QStringRef_Unicode(QtObjectPtr ptr); +void QStringRef_DestroyQStringRef(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qsysinfo.cpp b/core/qsysinfo.cpp new file mode 100755 index 00000000..f52dcf2c --- /dev/null +++ b/core/qsysinfo.cpp @@ -0,0 +1,116 @@ +#include "qsysinfo.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSysInfo: public QSysInfo { +public: +}; + +int QSysInfo_ByteOrder_Type(){ + return QSysInfo::ByteOrder; +} + +int QSysInfo_MV_IOS_Type(){ + return QSysInfo::MV_IOS; +} + +int QSysInfo_MV_IOS_4_3_Type(){ + return QSysInfo::MV_IOS_4_3; +} + +int QSysInfo_MV_IOS_5_0_Type(){ + return QSysInfo::MV_IOS_5_0; +} + +int QSysInfo_MV_IOS_5_1_Type(){ + return QSysInfo::MV_IOS_5_1; +} + +int QSysInfo_MV_IOS_6_0_Type(){ + return QSysInfo::MV_IOS_6_0; +} + +int QSysInfo_MV_IOS_6_1_Type(){ + return QSysInfo::MV_IOS_6_1; +} + +int QSysInfo_MV_IOS_7_0_Type(){ + return QSysInfo::MV_IOS_7_0; +} + +int QSysInfo_MV_IOS_7_1_Type(){ + return QSysInfo::MV_IOS_7_1; +} + +int QSysInfo_MV_IOS_8_0_Type(){ + return QSysInfo::MV_IOS_8_0; +} + +int QSysInfo_MV_IOS_8_1_Type(){ + return QSysInfo::MV_IOS_8_1; +} + +int QSysInfo_MV_IOS_8_2_Type(){ + return QSysInfo::MV_IOS_8_2; +} + +int QSysInfo_MV_IOS_8_3_Type(){ + return QSysInfo::MV_IOS_8_3; +} + +int QSysInfo_MV_IOS_8_4_Type(){ + return QSysInfo::MV_IOS_8_4; +} + +int QSysInfo_MV_IOS_9_0_Type(){ + return QSysInfo::MV_IOS_9_0; +} + +int QSysInfo_WordSize_Type(){ + return QSysInfo::WordSize; +} + +int QSysInfo_QSysInfo_MacVersion(){ + return QSysInfo::macVersion(); +} + +char* QSysInfo_QSysInfo_BuildAbi(){ + return QSysInfo::buildAbi().toUtf8().data(); +} + +char* QSysInfo_QSysInfo_BuildCpuArchitecture(){ + return QSysInfo::buildCpuArchitecture().toUtf8().data(); +} + +char* QSysInfo_QSysInfo_CurrentCpuArchitecture(){ + return QSysInfo::currentCpuArchitecture().toUtf8().data(); +} + +char* QSysInfo_QSysInfo_KernelType(){ + return QSysInfo::kernelType().toUtf8().data(); +} + +char* QSysInfo_QSysInfo_KernelVersion(){ + return QSysInfo::kernelVersion().toUtf8().data(); +} + +char* QSysInfo_QSysInfo_PrettyProductName(){ + return QSysInfo::prettyProductName().toUtf8().data(); +} + +char* QSysInfo_QSysInfo_ProductType(){ + return QSysInfo::productType().toUtf8().data(); +} + +char* QSysInfo_QSysInfo_ProductVersion(){ + return QSysInfo::productVersion().toUtf8().data(); +} + +int QSysInfo_QSysInfo_WindowsVersion(){ + return QSysInfo::windowsVersion(); +} + diff --git a/core/qsysinfo.go b/core/qsysinfo.go new file mode 100755 index 00000000..136a5657 --- /dev/null +++ b/core/qsysinfo.go @@ -0,0 +1,178 @@ +package core + +//#include "qsysinfo.h" +import "C" +import ( + "unsafe" +) + +type QSysInfo struct { + ptr unsafe.Pointer +} + +type QSysInfoITF interface { + QSysInfoPTR() *QSysInfo +} + +func (p *QSysInfo) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSysInfo) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSysInfo(ptr QSysInfoITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSysInfoPTR().Pointer() + } + return nil +} + +func QSysInfoFromPointer(ptr unsafe.Pointer) *QSysInfo { + var n = new(QSysInfo) + n.SetPointer(ptr) + return n +} + +func (ptr *QSysInfo) QSysInfoPTR() *QSysInfo { + return ptr +} + +//QSysInfo::Endian +type QSysInfo__Endian int + +var ( + QSysInfo__BigEndian = QSysInfo__Endian(0) + QSysInfo__LittleEndian = QSysInfo__Endian(1) +) + +//QSysInfo::MacVersion +type QSysInfo__MacVersion int + +var ( + QSysInfo__MV_None = QSysInfo__MacVersion(0xffff) + QSysInfo__MV_Unknown = QSysInfo__MacVersion(0x0000) + QSysInfo__MV_9 = QSysInfo__MacVersion(0x0001) + QSysInfo__MV_10_0 = QSysInfo__MacVersion(0x0002) + QSysInfo__MV_10_1 = QSysInfo__MacVersion(0x0003) + QSysInfo__MV_10_2 = QSysInfo__MacVersion(0x0004) + QSysInfo__MV_10_3 = QSysInfo__MacVersion(0x0005) + QSysInfo__MV_10_4 = QSysInfo__MacVersion(0x0006) + QSysInfo__MV_10_5 = QSysInfo__MacVersion(0x0007) + QSysInfo__MV_10_6 = QSysInfo__MacVersion(0x0008) + QSysInfo__MV_10_7 = QSysInfo__MacVersion(0x0009) + QSysInfo__MV_10_8 = QSysInfo__MacVersion(0x000A) + QSysInfo__MV_10_9 = QSysInfo__MacVersion(0x000B) + QSysInfo__MV_10_10 = QSysInfo__MacVersion(0x000C) + QSysInfo__MV_10_11 = QSysInfo__MacVersion(0x000D) + QSysInfo__MV_CHEETAH = QSysInfo__MacVersion(QSysInfo__MV_10_0) + QSysInfo__MV_PUMA = QSysInfo__MacVersion(QSysInfo__MV_10_1) + QSysInfo__MV_JAGUAR = QSysInfo__MacVersion(QSysInfo__MV_10_2) + QSysInfo__MV_PANTHER = QSysInfo__MacVersion(QSysInfo__MV_10_3) + QSysInfo__MV_TIGER = QSysInfo__MacVersion(QSysInfo__MV_10_4) + QSysInfo__MV_LEOPARD = QSysInfo__MacVersion(QSysInfo__MV_10_5) + QSysInfo__MV_SNOWLEOPARD = QSysInfo__MacVersion(QSysInfo__MV_10_6) + QSysInfo__MV_LION = QSysInfo__MacVersion(QSysInfo__MV_10_7) + QSysInfo__MV_MOUNTAINLION = QSysInfo__MacVersion(QSysInfo__MV_10_8) + QSysInfo__MV_MAVERICKS = QSysInfo__MacVersion(QSysInfo__MV_10_9) + QSysInfo__MV_YOSEMITE = QSysInfo__MacVersion(QSysInfo__MV_10_10) + QSysInfo__MV_ELCAPITAN = QSysInfo__MacVersion(QSysInfo__MV_10_11) + QSysInfo__MV_IOS = QSysInfo__MacVersion(C.QSysInfo_MV_IOS_Type()) + QSysInfo__MV_IOS_4_3 = QSysInfo__MacVersion(C.QSysInfo_MV_IOS_4_3_Type()) + QSysInfo__MV_IOS_5_0 = QSysInfo__MacVersion(C.QSysInfo_MV_IOS_5_0_Type()) + QSysInfo__MV_IOS_5_1 = QSysInfo__MacVersion(C.QSysInfo_MV_IOS_5_1_Type()) + QSysInfo__MV_IOS_6_0 = QSysInfo__MacVersion(C.QSysInfo_MV_IOS_6_0_Type()) + QSysInfo__MV_IOS_6_1 = QSysInfo__MacVersion(C.QSysInfo_MV_IOS_6_1_Type()) + QSysInfo__MV_IOS_7_0 = QSysInfo__MacVersion(C.QSysInfo_MV_IOS_7_0_Type()) + QSysInfo__MV_IOS_7_1 = QSysInfo__MacVersion(C.QSysInfo_MV_IOS_7_1_Type()) + QSysInfo__MV_IOS_8_0 = QSysInfo__MacVersion(C.QSysInfo_MV_IOS_8_0_Type()) + QSysInfo__MV_IOS_8_1 = QSysInfo__MacVersion(C.QSysInfo_MV_IOS_8_1_Type()) + QSysInfo__MV_IOS_8_2 = QSysInfo__MacVersion(C.QSysInfo_MV_IOS_8_2_Type()) + QSysInfo__MV_IOS_8_3 = QSysInfo__MacVersion(C.QSysInfo_MV_IOS_8_3_Type()) + QSysInfo__MV_IOS_8_4 = QSysInfo__MacVersion(C.QSysInfo_MV_IOS_8_4_Type()) + QSysInfo__MV_IOS_9_0 = QSysInfo__MacVersion(C.QSysInfo_MV_IOS_9_0_Type()) +) + +//QSysInfo::Sizes +type QSysInfo__Sizes int + +var ( + QSysInfo__WordSize = QSysInfo__Sizes(C.QSysInfo_WordSize_Type()) +) + +//QSysInfo::WinVersion +type QSysInfo__WinVersion int + +var ( + QSysInfo__WV_None = QSysInfo__WinVersion(0x0000) + QSysInfo__WV_32s = QSysInfo__WinVersion(0x0001) + QSysInfo__WV_95 = QSysInfo__WinVersion(0x0002) + QSysInfo__WV_98 = QSysInfo__WinVersion(0x0003) + QSysInfo__WV_Me = QSysInfo__WinVersion(0x0004) + QSysInfo__WV_DOS_based = QSysInfo__WinVersion(0x000f) + QSysInfo__WV_NT = QSysInfo__WinVersion(0x0010) + QSysInfo__WV_2000 = QSysInfo__WinVersion(0x0020) + QSysInfo__WV_XP = QSysInfo__WinVersion(0x0030) + QSysInfo__WV_2003 = QSysInfo__WinVersion(0x0040) + QSysInfo__WV_VISTA = QSysInfo__WinVersion(0x0080) + QSysInfo__WV_WINDOWS7 = QSysInfo__WinVersion(0x0090) + QSysInfo__WV_WINDOWS8 = QSysInfo__WinVersion(0x00a0) + QSysInfo__WV_WINDOWS8_1 = QSysInfo__WinVersion(0x00b0) + QSysInfo__WV_WINDOWS10 = QSysInfo__WinVersion(0x00c0) + QSysInfo__WV_NT_based = QSysInfo__WinVersion(0x00f0) + QSysInfo__WV_4_0 = QSysInfo__WinVersion(QSysInfo__WV_NT) + QSysInfo__WV_5_0 = QSysInfo__WinVersion(QSysInfo__WV_2000) + QSysInfo__WV_5_1 = QSysInfo__WinVersion(QSysInfo__WV_XP) + QSysInfo__WV_5_2 = QSysInfo__WinVersion(QSysInfo__WV_2003) + QSysInfo__WV_6_0 = QSysInfo__WinVersion(QSysInfo__WV_VISTA) + QSysInfo__WV_6_1 = QSysInfo__WinVersion(QSysInfo__WV_WINDOWS7) + QSysInfo__WV_6_2 = QSysInfo__WinVersion(QSysInfo__WV_WINDOWS8) + QSysInfo__WV_6_3 = QSysInfo__WinVersion(QSysInfo__WV_WINDOWS8_1) + QSysInfo__WV_10_0 = QSysInfo__WinVersion(QSysInfo__WV_WINDOWS10) + QSysInfo__WV_CE = QSysInfo__WinVersion(0x0100) + QSysInfo__WV_CENET = QSysInfo__WinVersion(0x0200) + QSysInfo__WV_CE_5 = QSysInfo__WinVersion(0x0300) + QSysInfo__WV_CE_6 = QSysInfo__WinVersion(0x0400) + QSysInfo__WV_CE_based = QSysInfo__WinVersion(0x0f00) +) + +func QSysInfo_MacVersion() QSysInfo__MacVersion { + return QSysInfo__MacVersion(C.QSysInfo_QSysInfo_MacVersion()) +} + +func QSysInfo_BuildAbi() string { + return C.GoString(C.QSysInfo_QSysInfo_BuildAbi()) +} + +func QSysInfo_BuildCpuArchitecture() string { + return C.GoString(C.QSysInfo_QSysInfo_BuildCpuArchitecture()) +} + +func QSysInfo_CurrentCpuArchitecture() string { + return C.GoString(C.QSysInfo_QSysInfo_CurrentCpuArchitecture()) +} + +func QSysInfo_KernelType() string { + return C.GoString(C.QSysInfo_QSysInfo_KernelType()) +} + +func QSysInfo_KernelVersion() string { + return C.GoString(C.QSysInfo_QSysInfo_KernelVersion()) +} + +func QSysInfo_PrettyProductName() string { + return C.GoString(C.QSysInfo_QSysInfo_PrettyProductName()) +} + +func QSysInfo_ProductType() string { + return C.GoString(C.QSysInfo_QSysInfo_ProductType()) +} + +func QSysInfo_ProductVersion() string { + return C.GoString(C.QSysInfo_QSysInfo_ProductVersion()) +} + +func QSysInfo_WindowsVersion() QSysInfo__WinVersion { + return QSysInfo__WinVersion(C.QSysInfo_QSysInfo_WindowsVersion()) +} diff --git a/core/qsysinfo.h b/core/qsysinfo.h new file mode 100755 index 00000000..5de94ffd --- /dev/null +++ b/core/qsysinfo.h @@ -0,0 +1,35 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QSysInfo_ByteOrder_Type(); +int QSysInfo_MV_IOS_Type(); +int QSysInfo_MV_IOS_4_3_Type(); +int QSysInfo_MV_IOS_5_0_Type(); +int QSysInfo_MV_IOS_5_1_Type(); +int QSysInfo_MV_IOS_6_0_Type(); +int QSysInfo_MV_IOS_6_1_Type(); +int QSysInfo_MV_IOS_7_0_Type(); +int QSysInfo_MV_IOS_7_1_Type(); +int QSysInfo_MV_IOS_8_0_Type(); +int QSysInfo_MV_IOS_8_1_Type(); +int QSysInfo_MV_IOS_8_2_Type(); +int QSysInfo_MV_IOS_8_3_Type(); +int QSysInfo_MV_IOS_8_4_Type(); +int QSysInfo_MV_IOS_9_0_Type(); +int QSysInfo_WordSize_Type(); +int QSysInfo_QSysInfo_MacVersion(); +char* QSysInfo_QSysInfo_BuildAbi(); +char* QSysInfo_QSysInfo_BuildCpuArchitecture(); +char* QSysInfo_QSysInfo_CurrentCpuArchitecture(); +char* QSysInfo_QSysInfo_KernelType(); +char* QSysInfo_QSysInfo_KernelVersion(); +char* QSysInfo_QSysInfo_PrettyProductName(); +char* QSysInfo_QSysInfo_ProductType(); +char* QSysInfo_QSysInfo_ProductVersion(); +int QSysInfo_QSysInfo_WindowsVersion(); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qsystemsemaphore.cpp b/core/qsystemsemaphore.cpp new file mode 100755 index 00000000..abbdbef7 --- /dev/null +++ b/core/qsystemsemaphore.cpp @@ -0,0 +1,44 @@ +#include "qsystemsemaphore.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSystemSemaphore: public QSystemSemaphore { +public: +}; + +QtObjectPtr QSystemSemaphore_NewQSystemSemaphore(char* key, int initialValue, int mode){ + return new QSystemSemaphore(QString(key), initialValue, static_cast(mode)); +} + +int QSystemSemaphore_Acquire(QtObjectPtr ptr){ + return static_cast(ptr)->acquire(); +} + +int QSystemSemaphore_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +char* QSystemSemaphore_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +char* QSystemSemaphore_Key(QtObjectPtr ptr){ + return static_cast(ptr)->key().toUtf8().data(); +} + +int QSystemSemaphore_Release(QtObjectPtr ptr, int n){ + return static_cast(ptr)->release(n); +} + +void QSystemSemaphore_SetKey(QtObjectPtr ptr, char* key, int initialValue, int mode){ + static_cast(ptr)->setKey(QString(key), initialValue, static_cast(mode)); +} + +void QSystemSemaphore_DestroyQSystemSemaphore(QtObjectPtr ptr){ + static_cast(ptr)->~QSystemSemaphore(); +} + diff --git a/core/qsystemsemaphore.go b/core/qsystemsemaphore.go new file mode 100755 index 00000000..799ebca9 --- /dev/null +++ b/core/qsystemsemaphore.go @@ -0,0 +1,112 @@ +package core + +//#include "qsystemsemaphore.h" +import "C" +import ( + "unsafe" +) + +type QSystemSemaphore struct { + ptr unsafe.Pointer +} + +type QSystemSemaphoreITF interface { + QSystemSemaphorePTR() *QSystemSemaphore +} + +func (p *QSystemSemaphore) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSystemSemaphore) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSystemSemaphore(ptr QSystemSemaphoreITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSystemSemaphorePTR().Pointer() + } + return nil +} + +func QSystemSemaphoreFromPointer(ptr unsafe.Pointer) *QSystemSemaphore { + var n = new(QSystemSemaphore) + n.SetPointer(ptr) + return n +} + +func (ptr *QSystemSemaphore) QSystemSemaphorePTR() *QSystemSemaphore { + return ptr +} + +//QSystemSemaphore::AccessMode +type QSystemSemaphore__AccessMode int + +var ( + QSystemSemaphore__Open = QSystemSemaphore__AccessMode(0) + QSystemSemaphore__Create = QSystemSemaphore__AccessMode(1) +) + +//QSystemSemaphore::SystemSemaphoreError +type QSystemSemaphore__SystemSemaphoreError int + +var ( + QSystemSemaphore__NoError = QSystemSemaphore__SystemSemaphoreError(0) + QSystemSemaphore__PermissionDenied = QSystemSemaphore__SystemSemaphoreError(1) + QSystemSemaphore__KeyError = QSystemSemaphore__SystemSemaphoreError(2) + QSystemSemaphore__AlreadyExists = QSystemSemaphore__SystemSemaphoreError(3) + QSystemSemaphore__NotFound = QSystemSemaphore__SystemSemaphoreError(4) + QSystemSemaphore__OutOfResources = QSystemSemaphore__SystemSemaphoreError(5) + QSystemSemaphore__UnknownError = QSystemSemaphore__SystemSemaphoreError(6) +) + +func NewQSystemSemaphore(key string, initialValue int, mode QSystemSemaphore__AccessMode) *QSystemSemaphore { + return QSystemSemaphoreFromPointer(unsafe.Pointer(C.QSystemSemaphore_NewQSystemSemaphore(C.CString(key), C.int(initialValue), C.int(mode)))) +} + +func (ptr *QSystemSemaphore) Acquire() bool { + if ptr.Pointer() != nil { + return C.QSystemSemaphore_Acquire(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSystemSemaphore) Error() QSystemSemaphore__SystemSemaphoreError { + if ptr.Pointer() != nil { + return QSystemSemaphore__SystemSemaphoreError(C.QSystemSemaphore_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSystemSemaphore) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSystemSemaphore_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSystemSemaphore) Key() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSystemSemaphore_Key(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSystemSemaphore) Release(n int) bool { + if ptr.Pointer() != nil { + return C.QSystemSemaphore_Release(C.QtObjectPtr(ptr.Pointer()), C.int(n)) != 0 + } + return false +} + +func (ptr *QSystemSemaphore) SetKey(key string, initialValue int, mode QSystemSemaphore__AccessMode) { + if ptr.Pointer() != nil { + C.QSystemSemaphore_SetKey(C.QtObjectPtr(ptr.Pointer()), C.CString(key), C.int(initialValue), C.int(mode)) + } +} + +func (ptr *QSystemSemaphore) DestroyQSystemSemaphore() { + if ptr.Pointer() != nil { + C.QSystemSemaphore_DestroyQSystemSemaphore(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qsystemsemaphore.h b/core/qsystemsemaphore.h new file mode 100755 index 00000000..16bc201a --- /dev/null +++ b/core/qsystemsemaphore.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSystemSemaphore_NewQSystemSemaphore(char* key, int initialValue, int mode); +int QSystemSemaphore_Acquire(QtObjectPtr ptr); +int QSystemSemaphore_Error(QtObjectPtr ptr); +char* QSystemSemaphore_ErrorString(QtObjectPtr ptr); +char* QSystemSemaphore_Key(QtObjectPtr ptr); +int QSystemSemaphore_Release(QtObjectPtr ptr, int n); +void QSystemSemaphore_SetKey(QtObjectPtr ptr, char* key, int initialValue, int mode); +void QSystemSemaphore_DestroyQSystemSemaphore(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qt.cpp b/core/qt.cpp new file mode 100755 index 00000000..2c5e1d30 --- /dev/null +++ b/core/qt.cpp @@ -0,0 +1,35 @@ +#include "qt.h" +#include +#include +#include +#include +#include "_cgo_export.h" + +int Qt_LocaleDate_Type(){ + return Qt::LocaleDate; +} + +int Qt_SystemLocaleShortDate_Type(){ + return Qt::SystemLocaleShortDate; +} + +int Qt_SystemLocaleLongDate_Type(){ + return Qt::SystemLocaleLongDate; +} + +int Qt_DefaultLocaleShortDate_Type(){ + return Qt::DefaultLocaleShortDate; +} + +int Qt_DefaultLocaleLongDate_Type(){ + return Qt::DefaultLocaleLongDate; +} + +int Qt_RFC2822Date_Type(){ + return Qt::RFC2822Date; +} + +int Qt_LastGestureType_Type(){ + return Qt::LastGestureType; +} + diff --git a/core/qt.go b/core/qt.go new file mode 100755 index 00000000..1f87fc54 --- /dev/null +++ b/core/qt.go @@ -0,0 +1,1613 @@ +package core + +//#include "qt.h" +import "C" +import () + +//Qt::AlignmentFlag +type Qt__AlignmentFlag int + +var ( + Qt__AlignLeft = Qt__AlignmentFlag(0x0001) + Qt__AlignLeading = Qt__AlignmentFlag(Qt__AlignLeft) + Qt__AlignRight = Qt__AlignmentFlag(0x0002) + Qt__AlignTrailing = Qt__AlignmentFlag(Qt__AlignRight) + Qt__AlignHCenter = Qt__AlignmentFlag(0x0004) + Qt__AlignJustify = Qt__AlignmentFlag(0x0008) + Qt__AlignAbsolute = Qt__AlignmentFlag(0x0010) + Qt__AlignHorizontal_Mask = Qt__AlignmentFlag(Qt__AlignLeft | Qt__AlignRight | Qt__AlignHCenter | Qt__AlignJustify | Qt__AlignAbsolute) + Qt__AlignTop = Qt__AlignmentFlag(0x0020) + Qt__AlignBottom = Qt__AlignmentFlag(0x0040) + Qt__AlignVCenter = Qt__AlignmentFlag(0x0080) + Qt__AlignBaseline = Qt__AlignmentFlag(0x0100) + Qt__AlignVertical_Mask = Qt__AlignmentFlag(Qt__AlignTop | Qt__AlignBottom | Qt__AlignVCenter | Qt__AlignBaseline) + Qt__AlignCenter = Qt__AlignmentFlag(Qt__AlignVCenter | Qt__AlignHCenter) +) + +//Qt::AnchorPoint +type Qt__AnchorPoint int + +var ( + Qt__AnchorLeft = Qt__AnchorPoint(0) + Qt__AnchorHorizontalCenter = Qt__AnchorPoint(1) + Qt__AnchorRight = Qt__AnchorPoint(2) + Qt__AnchorTop = Qt__AnchorPoint(3) + Qt__AnchorVerticalCenter = Qt__AnchorPoint(4) + Qt__AnchorBottom = Qt__AnchorPoint(5) +) + +//Qt::ApplicationAttribute +type Qt__ApplicationAttribute int + +var ( + Qt__AA_ImmediateWidgetCreation = Qt__ApplicationAttribute(0) + Qt__AA_MSWindowsUseDirect3DByDefault = Qt__ApplicationAttribute(1) + Qt__AA_DontShowIconsInMenus = Qt__ApplicationAttribute(2) + Qt__AA_NativeWindows = Qt__ApplicationAttribute(3) + Qt__AA_DontCreateNativeWidgetSiblings = Qt__ApplicationAttribute(4) + Qt__AA_MacPluginApplication = Qt__ApplicationAttribute(5) + Qt__AA_DontUseNativeMenuBar = Qt__ApplicationAttribute(6) + Qt__AA_MacDontSwapCtrlAndMeta = Qt__ApplicationAttribute(7) + Qt__AA_Use96Dpi = Qt__ApplicationAttribute(8) + Qt__AA_X11InitThreads = Qt__ApplicationAttribute(10) + Qt__AA_SynthesizeTouchForUnhandledMouseEvents = Qt__ApplicationAttribute(11) + Qt__AA_SynthesizeMouseForUnhandledTouchEvents = Qt__ApplicationAttribute(12) + Qt__AA_UseHighDpiPixmaps = Qt__ApplicationAttribute(13) + Qt__AA_ForceRasterWidgets = Qt__ApplicationAttribute(14) + Qt__AA_UseDesktopOpenGL = Qt__ApplicationAttribute(15) + Qt__AA_UseOpenGLES = Qt__ApplicationAttribute(16) + Qt__AA_UseSoftwareOpenGL = Qt__ApplicationAttribute(17) + Qt__AA_ShareOpenGLContexts = Qt__ApplicationAttribute(18) + Qt__AA_SetPalette = Qt__ApplicationAttribute(19) + Qt__AA_AttributeCount = Qt__ApplicationAttribute(20) +) + +//Qt::ApplicationState +type Qt__ApplicationState int + +var ( + Qt__ApplicationSuspended = Qt__ApplicationState(0x00000000) + Qt__ApplicationHidden = Qt__ApplicationState(0x00000001) + Qt__ApplicationInactive = Qt__ApplicationState(0x00000002) + Qt__ApplicationActive = Qt__ApplicationState(0x00000004) +) + +//Qt::ArrowType +type Qt__ArrowType int + +var ( + Qt__NoArrow = Qt__ArrowType(0) + Qt__UpArrow = Qt__ArrowType(1) + Qt__DownArrow = Qt__ArrowType(2) + Qt__LeftArrow = Qt__ArrowType(3) + Qt__RightArrow = Qt__ArrowType(4) +) + +//Qt::AspectRatioMode +type Qt__AspectRatioMode int + +var ( + Qt__IgnoreAspectRatio = Qt__AspectRatioMode(0) + Qt__KeepAspectRatio = Qt__AspectRatioMode(1) + Qt__KeepAspectRatioByExpanding = Qt__AspectRatioMode(2) +) + +//Qt::Axis +type Qt__Axis int + +var ( + Qt__XAxis = Qt__Axis(0) + Qt__YAxis = Qt__Axis(1) + Qt__ZAxis = Qt__Axis(2) +) + +//Qt::BGMode +type Qt__BGMode int + +var ( + Qt__TransparentMode = Qt__BGMode(0) + Qt__OpaqueMode = Qt__BGMode(1) +) + +//Qt::BrushStyle +type Qt__BrushStyle int + +var ( + Qt__NoBrush = Qt__BrushStyle(0) + Qt__SolidPattern = Qt__BrushStyle(1) + Qt__Dense1Pattern = Qt__BrushStyle(2) + Qt__Dense2Pattern = Qt__BrushStyle(3) + Qt__Dense3Pattern = Qt__BrushStyle(4) + Qt__Dense4Pattern = Qt__BrushStyle(5) + Qt__Dense5Pattern = Qt__BrushStyle(6) + Qt__Dense6Pattern = Qt__BrushStyle(7) + Qt__Dense7Pattern = Qt__BrushStyle(8) + Qt__HorPattern = Qt__BrushStyle(9) + Qt__VerPattern = Qt__BrushStyle(10) + Qt__CrossPattern = Qt__BrushStyle(11) + Qt__BDiagPattern = Qt__BrushStyle(12) + Qt__FDiagPattern = Qt__BrushStyle(13) + Qt__DiagCrossPattern = Qt__BrushStyle(14) + Qt__LinearGradientPattern = Qt__BrushStyle(15) + Qt__RadialGradientPattern = Qt__BrushStyle(16) + Qt__ConicalGradientPattern = Qt__BrushStyle(17) + Qt__TexturePattern = Qt__BrushStyle(24) +) + +//Qt::CaseSensitivity +type Qt__CaseSensitivity int + +var ( + Qt__CaseInsensitive = Qt__CaseSensitivity(0) + Qt__CaseSensitive = Qt__CaseSensitivity(1) +) + +//Qt::CheckState +type Qt__CheckState int + +var ( + Qt__Unchecked = Qt__CheckState(0) + Qt__PartiallyChecked = Qt__CheckState(1) + Qt__Checked = Qt__CheckState(2) +) + +//Qt::ClipOperation +type Qt__ClipOperation int + +var ( + Qt__NoClip = Qt__ClipOperation(0) + Qt__ReplaceClip = Qt__ClipOperation(1) + Qt__IntersectClip = Qt__ClipOperation(2) +) + +//Qt::ConnectionType +type Qt__ConnectionType int + +var ( + Qt__AutoConnection = Qt__ConnectionType(0) + Qt__DirectConnection = Qt__ConnectionType(1) + Qt__QueuedConnection = Qt__ConnectionType(2) + Qt__BlockingQueuedConnection = Qt__ConnectionType(3) + Qt__UniqueConnection = Qt__ConnectionType(0x80) +) + +//Qt::ContextMenuPolicy +type Qt__ContextMenuPolicy int + +var ( + Qt__NoContextMenu = Qt__ContextMenuPolicy(0) + Qt__DefaultContextMenu = Qt__ContextMenuPolicy(1) + Qt__ActionsContextMenu = Qt__ContextMenuPolicy(2) + Qt__CustomContextMenu = Qt__ContextMenuPolicy(3) + Qt__PreventContextMenu = Qt__ContextMenuPolicy(4) +) + +//Qt::CoordinateSystem +type Qt__CoordinateSystem int + +var ( + Qt__DeviceCoordinates = Qt__CoordinateSystem(0) + Qt__LogicalCoordinates = Qt__CoordinateSystem(1) +) + +//Qt::Corner +type Qt__Corner int + +var ( + Qt__TopLeftCorner = Qt__Corner(0x00000) + Qt__TopRightCorner = Qt__Corner(0x00001) + Qt__BottomLeftCorner = Qt__Corner(0x00002) + Qt__BottomRightCorner = Qt__Corner(0x00003) +) + +//Qt::CursorMoveStyle +type Qt__CursorMoveStyle int + +var ( + Qt__LogicalMoveStyle = Qt__CursorMoveStyle(0) + Qt__VisualMoveStyle = Qt__CursorMoveStyle(1) +) + +//Qt::CursorShape +type Qt__CursorShape int + +var ( + Qt__ArrowCursor = Qt__CursorShape(0) + Qt__UpArrowCursor = Qt__CursorShape(1) + Qt__CrossCursor = Qt__CursorShape(2) + Qt__WaitCursor = Qt__CursorShape(3) + Qt__IBeamCursor = Qt__CursorShape(4) + Qt__SizeVerCursor = Qt__CursorShape(5) + Qt__SizeHorCursor = Qt__CursorShape(6) + Qt__SizeBDiagCursor = Qt__CursorShape(7) + Qt__SizeFDiagCursor = Qt__CursorShape(8) + Qt__SizeAllCursor = Qt__CursorShape(9) + Qt__BlankCursor = Qt__CursorShape(10) + Qt__SplitVCursor = Qt__CursorShape(11) + Qt__SplitHCursor = Qt__CursorShape(12) + Qt__PointingHandCursor = Qt__CursorShape(13) + Qt__ForbiddenCursor = Qt__CursorShape(14) + Qt__WhatsThisCursor = Qt__CursorShape(15) + Qt__BusyCursor = Qt__CursorShape(16) + Qt__OpenHandCursor = Qt__CursorShape(17) + Qt__ClosedHandCursor = Qt__CursorShape(18) + Qt__DragCopyCursor = Qt__CursorShape(19) + Qt__DragMoveCursor = Qt__CursorShape(20) + Qt__DragLinkCursor = Qt__CursorShape(21) + Qt__LastCursor = Qt__CursorShape(Qt__DragLinkCursor) + Qt__BitmapCursor = Qt__CursorShape(24) + Qt__CustomCursor = Qt__CursorShape(25) +) + +//Qt::DateFormat +type Qt__DateFormat int + +var ( + Qt__TextDate = Qt__DateFormat(0) + Qt__ISODate = Qt__DateFormat(1) + Qt__SystemLocaleDate = Qt__DateFormat(2) + Qt__LocalDate = Qt__DateFormat(Qt__SystemLocaleDate) + Qt__LocaleDate = Qt__DateFormat(C.Qt_LocaleDate_Type()) + Qt__SystemLocaleShortDate = Qt__DateFormat(C.Qt_SystemLocaleShortDate_Type()) + Qt__SystemLocaleLongDate = Qt__DateFormat(C.Qt_SystemLocaleLongDate_Type()) + Qt__DefaultLocaleShortDate = Qt__DateFormat(C.Qt_DefaultLocaleShortDate_Type()) + Qt__DefaultLocaleLongDate = Qt__DateFormat(C.Qt_DefaultLocaleLongDate_Type()) + Qt__RFC2822Date = Qt__DateFormat(C.Qt_RFC2822Date_Type()) +) + +//Qt::DayOfWeek +type Qt__DayOfWeek int + +var ( + Qt__Monday = Qt__DayOfWeek(1) + Qt__Tuesday = Qt__DayOfWeek(2) + Qt__Wednesday = Qt__DayOfWeek(3) + Qt__Thursday = Qt__DayOfWeek(4) + Qt__Friday = Qt__DayOfWeek(5) + Qt__Saturday = Qt__DayOfWeek(6) + Qt__Sunday = Qt__DayOfWeek(7) +) + +//Qt::DockWidgetArea +type Qt__DockWidgetArea int + +var ( + Qt__LeftDockWidgetArea = Qt__DockWidgetArea(0x1) + Qt__RightDockWidgetArea = Qt__DockWidgetArea(0x2) + Qt__TopDockWidgetArea = Qt__DockWidgetArea(0x4) + Qt__BottomDockWidgetArea = Qt__DockWidgetArea(0x8) + Qt__DockWidgetArea_Mask = Qt__DockWidgetArea(0xf) + Qt__AllDockWidgetAreas = Qt__DockWidgetArea(Qt__DockWidgetArea_Mask) + Qt__NoDockWidgetArea = Qt__DockWidgetArea(0) +) + +//Qt::DropAction +type Qt__DropAction int + +var ( + Qt__CopyAction = Qt__DropAction(0x1) + Qt__MoveAction = Qt__DropAction(0x2) + Qt__LinkAction = Qt__DropAction(0x4) + Qt__ActionMask = Qt__DropAction(0xff) + Qt__TargetMoveAction = Qt__DropAction(0x8002) + Qt__IgnoreAction = Qt__DropAction(0x0) +) + +//Qt::Edge +type Qt__Edge int + +var ( + Qt__TopEdge = Qt__Edge(0x00001) + Qt__LeftEdge = Qt__Edge(0x00002) + Qt__RightEdge = Qt__Edge(0x00004) + Qt__BottomEdge = Qt__Edge(0x00008) +) + +//Qt::EventPriority +type Qt__EventPriority int + +var ( + Qt__HighEventPriority = Qt__EventPriority(1) + Qt__NormalEventPriority = Qt__EventPriority(0) + Qt__LowEventPriority = Qt__EventPriority(-1) +) + +//Qt::FillRule +type Qt__FillRule int + +var ( + Qt__OddEvenFill = Qt__FillRule(0) + Qt__WindingFill = Qt__FillRule(1) +) + +//Qt::FindChildOption +type Qt__FindChildOption int + +var ( + Qt__FindDirectChildrenOnly = Qt__FindChildOption(0x0) + Qt__FindChildrenRecursively = Qt__FindChildOption(0x1) +) + +//Qt::FocusPolicy +type Qt__FocusPolicy int + +var ( + Qt__NoFocus = Qt__FocusPolicy(0) + Qt__TabFocus = Qt__FocusPolicy(0x1) + Qt__ClickFocus = Qt__FocusPolicy(0x2) + Qt__StrongFocus = Qt__FocusPolicy(Qt__TabFocus | Qt__ClickFocus | 0x8) + Qt__WheelFocus = Qt__FocusPolicy(Qt__StrongFocus | 0x4) +) + +//Qt::FocusReason +type Qt__FocusReason int + +var ( + Qt__MouseFocusReason = Qt__FocusReason(0) + Qt__TabFocusReason = Qt__FocusReason(1) + Qt__BacktabFocusReason = Qt__FocusReason(2) + Qt__ActiveWindowFocusReason = Qt__FocusReason(3) + Qt__PopupFocusReason = Qt__FocusReason(4) + Qt__ShortcutFocusReason = Qt__FocusReason(5) + Qt__MenuBarFocusReason = Qt__FocusReason(6) + Qt__OtherFocusReason = Qt__FocusReason(7) + Qt__NoFocusReason = Qt__FocusReason(8) +) + +//Qt::GestureFlag +type Qt__GestureFlag int + +var ( + Qt__DontStartGestureOnChildren = Qt__GestureFlag(0x01) + Qt__ReceivePartialGestures = Qt__GestureFlag(0x02) + Qt__IgnoredGesturesPropagateToParent = Qt__GestureFlag(0x04) +) + +//Qt::GestureState +type Qt__GestureState int + +var ( + Qt__NoGesture = Qt__GestureState(0) + Qt__GestureStarted = Qt__GestureState(1) + Qt__GestureUpdated = Qt__GestureState(2) + Qt__GestureFinished = Qt__GestureState(3) + Qt__GestureCanceled = Qt__GestureState(4) +) + +//Qt::GestureType +type Qt__GestureType int + +var ( + Qt__TapGesture = Qt__GestureType(1) + Qt__TapAndHoldGesture = Qt__GestureType(2) + Qt__PanGesture = Qt__GestureType(3) + Qt__PinchGesture = Qt__GestureType(4) + Qt__SwipeGesture = Qt__GestureType(5) + Qt__CustomGesture = Qt__GestureType(0x0100) + Qt__LastGestureType = Qt__GestureType(C.Qt_LastGestureType_Type()) +) + +//Qt::GlobalColor +type Qt__GlobalColor int + +var ( + Qt__color0 = Qt__GlobalColor(0) + Qt__color1 = Qt__GlobalColor(1) + Qt__black = Qt__GlobalColor(2) + Qt__white = Qt__GlobalColor(3) + Qt__darkGray = Qt__GlobalColor(4) + Qt__gray = Qt__GlobalColor(5) + Qt__lightGray = Qt__GlobalColor(6) + Qt__red = Qt__GlobalColor(7) + Qt__green = Qt__GlobalColor(8) + Qt__blue = Qt__GlobalColor(9) + Qt__cyan = Qt__GlobalColor(10) + Qt__magenta = Qt__GlobalColor(11) + Qt__yellow = Qt__GlobalColor(12) + Qt__darkRed = Qt__GlobalColor(13) + Qt__darkGreen = Qt__GlobalColor(14) + Qt__darkBlue = Qt__GlobalColor(15) + Qt__darkCyan = Qt__GlobalColor(16) + Qt__darkMagenta = Qt__GlobalColor(17) + Qt__darkYellow = Qt__GlobalColor(18) + Qt__transparent = Qt__GlobalColor(19) +) + +//Qt::HitTestAccuracy +type Qt__HitTestAccuracy int + +var ( + Qt__ExactHit = Qt__HitTestAccuracy(0) + Qt__FuzzyHit = Qt__HitTestAccuracy(1) +) + +//Qt::ImageConversionFlag +type Qt__ImageConversionFlag int + +var ( + Qt__ColorMode_Mask = Qt__ImageConversionFlag(0x00000003) + Qt__AutoColor = Qt__ImageConversionFlag(0x00000000) + Qt__ColorOnly = Qt__ImageConversionFlag(0x00000003) + Qt__MonoOnly = Qt__ImageConversionFlag(0x00000002) + Qt__AlphaDither_Mask = Qt__ImageConversionFlag(0x0000000c) + Qt__ThresholdAlphaDither = Qt__ImageConversionFlag(0x00000000) + Qt__OrderedAlphaDither = Qt__ImageConversionFlag(0x00000004) + Qt__DiffuseAlphaDither = Qt__ImageConversionFlag(0x00000008) + Qt__NoAlpha = Qt__ImageConversionFlag(0x0000000c) + Qt__Dither_Mask = Qt__ImageConversionFlag(0x00000030) + Qt__DiffuseDither = Qt__ImageConversionFlag(0x00000000) + Qt__OrderedDither = Qt__ImageConversionFlag(0x00000010) + Qt__ThresholdDither = Qt__ImageConversionFlag(0x00000020) + Qt__DitherMode_Mask = Qt__ImageConversionFlag(0x000000c0) + Qt__AutoDither = Qt__ImageConversionFlag(0x00000000) + Qt__PreferDither = Qt__ImageConversionFlag(0x00000040) + Qt__AvoidDither = Qt__ImageConversionFlag(0x00000080) + Qt__NoOpaqueDetection = Qt__ImageConversionFlag(0x00000100) + Qt__NoFormatConversion = Qt__ImageConversionFlag(0x00000200) +) + +//Qt::InputMethodHint +type Qt__InputMethodHint int + +var ( + Qt__ImhNone = Qt__InputMethodHint(0x0) + Qt__ImhHiddenText = Qt__InputMethodHint(0x1) + Qt__ImhSensitiveData = Qt__InputMethodHint(0x2) + Qt__ImhNoAutoUppercase = Qt__InputMethodHint(0x4) + Qt__ImhPreferNumbers = Qt__InputMethodHint(0x8) + Qt__ImhPreferUppercase = Qt__InputMethodHint(0x10) + Qt__ImhPreferLowercase = Qt__InputMethodHint(0x20) + Qt__ImhNoPredictiveText = Qt__InputMethodHint(0x40) + Qt__ImhDate = Qt__InputMethodHint(0x80) + Qt__ImhTime = Qt__InputMethodHint(0x100) + Qt__ImhPreferLatin = Qt__InputMethodHint(0x200) + Qt__ImhMultiLine = Qt__InputMethodHint(0x400) + Qt__ImhDigitsOnly = Qt__InputMethodHint(0x10000) + Qt__ImhFormattedNumbersOnly = Qt__InputMethodHint(0x20000) + Qt__ImhUppercaseOnly = Qt__InputMethodHint(0x40000) + Qt__ImhLowercaseOnly = Qt__InputMethodHint(0x80000) + Qt__ImhDialableCharactersOnly = Qt__InputMethodHint(0x100000) + Qt__ImhEmailCharactersOnly = Qt__InputMethodHint(0x200000) + Qt__ImhUrlCharactersOnly = Qt__InputMethodHint(0x400000) + Qt__ImhLatinOnly = Qt__InputMethodHint(0x800000) + Qt__ImhExclusiveInputMask = Qt__InputMethodHint(0xffff0000) +) + +//Qt::InputMethodQuery +type Qt__InputMethodQuery int + +var ( + Qt__ImEnabled = Qt__InputMethodQuery(0x1) + Qt__ImCursorRectangle = Qt__InputMethodQuery(0x2) + Qt__ImMicroFocus = Qt__InputMethodQuery(0x2) + Qt__ImFont = Qt__InputMethodQuery(0x4) + Qt__ImCursorPosition = Qt__InputMethodQuery(0x8) + Qt__ImSurroundingText = Qt__InputMethodQuery(0x10) + Qt__ImCurrentSelection = Qt__InputMethodQuery(0x20) + Qt__ImMaximumTextLength = Qt__InputMethodQuery(0x40) + Qt__ImAnchorPosition = Qt__InputMethodQuery(0x80) + Qt__ImHints = Qt__InputMethodQuery(0x100) + Qt__ImPreferredLanguage = Qt__InputMethodQuery(0x200) + Qt__ImAbsolutePosition = Qt__InputMethodQuery(0x400) + Qt__ImTextBeforeCursor = Qt__InputMethodQuery(0x800) + Qt__ImTextAfterCursor = Qt__InputMethodQuery(0x1000) + Qt__ImPlatformData = Qt__InputMethodQuery(0x80000000) + Qt__ImQueryInput = Qt__InputMethodQuery(Qt__ImCursorRectangle | Qt__ImCursorPosition | Qt__ImSurroundingText | Qt__ImCurrentSelection | Qt__ImAnchorPosition) + Qt__ImQueryAll = Qt__InputMethodQuery(0xffffffff) +) + +//Qt::ItemDataRole +type Qt__ItemDataRole int + +var ( + Qt__DisplayRole = Qt__ItemDataRole(0) + Qt__DecorationRole = Qt__ItemDataRole(1) + Qt__EditRole = Qt__ItemDataRole(2) + Qt__ToolTipRole = Qt__ItemDataRole(3) + Qt__StatusTipRole = Qt__ItemDataRole(4) + Qt__WhatsThisRole = Qt__ItemDataRole(5) + Qt__FontRole = Qt__ItemDataRole(6) + Qt__TextAlignmentRole = Qt__ItemDataRole(7) + Qt__BackgroundColorRole = Qt__ItemDataRole(8) + Qt__BackgroundRole = Qt__ItemDataRole(8) + Qt__TextColorRole = Qt__ItemDataRole(9) + Qt__ForegroundRole = Qt__ItemDataRole(9) + Qt__CheckStateRole = Qt__ItemDataRole(10) + Qt__AccessibleTextRole = Qt__ItemDataRole(11) + Qt__AccessibleDescriptionRole = Qt__ItemDataRole(12) + Qt__SizeHintRole = Qt__ItemDataRole(13) + Qt__InitialSortOrderRole = Qt__ItemDataRole(14) + Qt__DisplayPropertyRole = Qt__ItemDataRole(27) + Qt__DecorationPropertyRole = Qt__ItemDataRole(28) + Qt__ToolTipPropertyRole = Qt__ItemDataRole(29) + Qt__StatusTipPropertyRole = Qt__ItemDataRole(30) + Qt__WhatsThisPropertyRole = Qt__ItemDataRole(31) + Qt__UserRole = Qt__ItemDataRole(0x0100) +) + +//Qt::ItemFlag +type Qt__ItemFlag int + +var ( + Qt__NoItemFlags = Qt__ItemFlag(0) + Qt__ItemIsSelectable = Qt__ItemFlag(1) + Qt__ItemIsEditable = Qt__ItemFlag(2) + Qt__ItemIsDragEnabled = Qt__ItemFlag(4) + Qt__ItemIsDropEnabled = Qt__ItemFlag(8) + Qt__ItemIsUserCheckable = Qt__ItemFlag(16) + Qt__ItemIsEnabled = Qt__ItemFlag(32) + Qt__ItemIsTristate = Qt__ItemFlag(64) + Qt__ItemNeverHasChildren = Qt__ItemFlag(128) + Qt__ItemIsUserTristate = Qt__ItemFlag(256) +) + +//Qt::ItemSelectionMode +type Qt__ItemSelectionMode int + +var ( + Qt__ContainsItemShape = Qt__ItemSelectionMode(0x0) + Qt__IntersectsItemShape = Qt__ItemSelectionMode(0x1) + Qt__ContainsItemBoundingRect = Qt__ItemSelectionMode(0x2) + Qt__IntersectsItemBoundingRect = Qt__ItemSelectionMode(0x3) +) + +//Qt::ItemSelectionOperation +type Qt__ItemSelectionOperation int + +var ( + Qt__ReplaceSelection = Qt__ItemSelectionOperation(0) + Qt__AddToSelection = Qt__ItemSelectionOperation(1) +) + +//Qt::Key +type Qt__Key int + +var ( + Qt__Key_Escape = Qt__Key(0x01000000) + Qt__Key_Tab = Qt__Key(0x01000001) + Qt__Key_Backtab = Qt__Key(0x01000002) + Qt__Key_Backspace = Qt__Key(0x01000003) + Qt__Key_Return = Qt__Key(0x01000004) + Qt__Key_Enter = Qt__Key(0x01000005) + Qt__Key_Insert = Qt__Key(0x01000006) + Qt__Key_Delete = Qt__Key(0x01000007) + Qt__Key_Pause = Qt__Key(0x01000008) + Qt__Key_Print = Qt__Key(0x01000009) + Qt__Key_SysReq = Qt__Key(0x0100000a) + Qt__Key_Clear = Qt__Key(0x0100000b) + Qt__Key_Home = Qt__Key(0x01000010) + Qt__Key_End = Qt__Key(0x01000011) + Qt__Key_Left = Qt__Key(0x01000012) + Qt__Key_Up = Qt__Key(0x01000013) + Qt__Key_Right = Qt__Key(0x01000014) + Qt__Key_Down = Qt__Key(0x01000015) + Qt__Key_PageUp = Qt__Key(0x01000016) + Qt__Key_PageDown = Qt__Key(0x01000017) + Qt__Key_Shift = Qt__Key(0x01000020) + Qt__Key_Control = Qt__Key(0x01000021) + Qt__Key_Meta = Qt__Key(0x01000022) + Qt__Key_Alt = Qt__Key(0x01000023) + Qt__Key_CapsLock = Qt__Key(0x01000024) + Qt__Key_NumLock = Qt__Key(0x01000025) + Qt__Key_ScrollLock = Qt__Key(0x01000026) + Qt__Key_F1 = Qt__Key(0x01000030) + Qt__Key_F2 = Qt__Key(0x01000031) + Qt__Key_F3 = Qt__Key(0x01000032) + Qt__Key_F4 = Qt__Key(0x01000033) + Qt__Key_F5 = Qt__Key(0x01000034) + Qt__Key_F6 = Qt__Key(0x01000035) + Qt__Key_F7 = Qt__Key(0x01000036) + Qt__Key_F8 = Qt__Key(0x01000037) + Qt__Key_F9 = Qt__Key(0x01000038) + Qt__Key_F10 = Qt__Key(0x01000039) + Qt__Key_F11 = Qt__Key(0x0100003a) + Qt__Key_F12 = Qt__Key(0x0100003b) + Qt__Key_F13 = Qt__Key(0x0100003c) + Qt__Key_F14 = Qt__Key(0x0100003d) + Qt__Key_F15 = Qt__Key(0x0100003e) + Qt__Key_F16 = Qt__Key(0x0100003f) + Qt__Key_F17 = Qt__Key(0x01000040) + Qt__Key_F18 = Qt__Key(0x01000041) + Qt__Key_F19 = Qt__Key(0x01000042) + Qt__Key_F20 = Qt__Key(0x01000043) + Qt__Key_F21 = Qt__Key(0x01000044) + Qt__Key_F22 = Qt__Key(0x01000045) + Qt__Key_F23 = Qt__Key(0x01000046) + Qt__Key_F24 = Qt__Key(0x01000047) + Qt__Key_F25 = Qt__Key(0x01000048) + Qt__Key_F26 = Qt__Key(0x01000049) + Qt__Key_F27 = Qt__Key(0x0100004a) + Qt__Key_F28 = Qt__Key(0x0100004b) + Qt__Key_F29 = Qt__Key(0x0100004c) + Qt__Key_F30 = Qt__Key(0x0100004d) + Qt__Key_F31 = Qt__Key(0x0100004e) + Qt__Key_F32 = Qt__Key(0x0100004f) + Qt__Key_F33 = Qt__Key(0x01000050) + Qt__Key_F34 = Qt__Key(0x01000051) + Qt__Key_F35 = Qt__Key(0x01000052) + Qt__Key_Super_L = Qt__Key(0x01000053) + Qt__Key_Super_R = Qt__Key(0x01000054) + Qt__Key_Menu = Qt__Key(0x01000055) + Qt__Key_Hyper_L = Qt__Key(0x01000056) + Qt__Key_Hyper_R = Qt__Key(0x01000057) + Qt__Key_Help = Qt__Key(0x01000058) + Qt__Key_Direction_L = Qt__Key(0x01000059) + Qt__Key_Direction_R = Qt__Key(0x01000060) + Qt__Key_Space = Qt__Key(0x20) + Qt__Key_Any = Qt__Key(Qt__Key_Space) + Qt__Key_Exclam = Qt__Key(0x21) + Qt__Key_QuoteDbl = Qt__Key(0x22) + Qt__Key_NumberSign = Qt__Key(0x23) + Qt__Key_Dollar = Qt__Key(0x24) + Qt__Key_Percent = Qt__Key(0x25) + Qt__Key_Ampersand = Qt__Key(0x26) + Qt__Key_Apostrophe = Qt__Key(0x27) + Qt__Key_ParenLeft = Qt__Key(0x28) + Qt__Key_ParenRight = Qt__Key(0x29) + Qt__Key_Asterisk = Qt__Key(0x2a) + Qt__Key_Plus = Qt__Key(0x2b) + Qt__Key_Comma = Qt__Key(0x2c) + Qt__Key_Minus = Qt__Key(0x2d) + Qt__Key_Period = Qt__Key(0x2e) + Qt__Key_Slash = Qt__Key(0x2f) + Qt__Key_0 = Qt__Key(0x30) + Qt__Key_1 = Qt__Key(0x31) + Qt__Key_2 = Qt__Key(0x32) + Qt__Key_3 = Qt__Key(0x33) + Qt__Key_4 = Qt__Key(0x34) + Qt__Key_5 = Qt__Key(0x35) + Qt__Key_6 = Qt__Key(0x36) + Qt__Key_7 = Qt__Key(0x37) + Qt__Key_8 = Qt__Key(0x38) + Qt__Key_9 = Qt__Key(0x39) + Qt__Key_Colon = Qt__Key(0x3a) + Qt__Key_Semicolon = Qt__Key(0x3b) + Qt__Key_Less = Qt__Key(0x3c) + Qt__Key_Equal = Qt__Key(0x3d) + Qt__Key_Greater = Qt__Key(0x3e) + Qt__Key_Question = Qt__Key(0x3f) + Qt__Key_At = Qt__Key(0x40) + Qt__Key_A = Qt__Key(0x41) + Qt__Key_B = Qt__Key(0x42) + Qt__Key_C = Qt__Key(0x43) + Qt__Key_D = Qt__Key(0x44) + Qt__Key_E = Qt__Key(0x45) + Qt__Key_F = Qt__Key(0x46) + Qt__Key_G = Qt__Key(0x47) + Qt__Key_H = Qt__Key(0x48) + Qt__Key_I = Qt__Key(0x49) + Qt__Key_J = Qt__Key(0x4a) + Qt__Key_K = Qt__Key(0x4b) + Qt__Key_L = Qt__Key(0x4c) + Qt__Key_M = Qt__Key(0x4d) + Qt__Key_N = Qt__Key(0x4e) + Qt__Key_O = Qt__Key(0x4f) + Qt__Key_P = Qt__Key(0x50) + Qt__Key_Q = Qt__Key(0x51) + Qt__Key_R = Qt__Key(0x52) + Qt__Key_S = Qt__Key(0x53) + Qt__Key_T = Qt__Key(0x54) + Qt__Key_U = Qt__Key(0x55) + Qt__Key_V = Qt__Key(0x56) + Qt__Key_W = Qt__Key(0x57) + Qt__Key_X = Qt__Key(0x58) + Qt__Key_Y = Qt__Key(0x59) + Qt__Key_Z = Qt__Key(0x5a) + Qt__Key_BracketLeft = Qt__Key(0x5b) + Qt__Key_Backslash = Qt__Key(0x5c) + Qt__Key_BracketRight = Qt__Key(0x5d) + Qt__Key_AsciiCircum = Qt__Key(0x5e) + Qt__Key_Underscore = Qt__Key(0x5f) + Qt__Key_QuoteLeft = Qt__Key(0x60) + Qt__Key_BraceLeft = Qt__Key(0x7b) + Qt__Key_Bar = Qt__Key(0x7c) + Qt__Key_BraceRight = Qt__Key(0x7d) + Qt__Key_AsciiTilde = Qt__Key(0x7e) + Qt__Key_nobreakspace = Qt__Key(0x0a0) + Qt__Key_exclamdown = Qt__Key(0x0a1) + Qt__Key_cent = Qt__Key(0x0a2) + Qt__Key_sterling = Qt__Key(0x0a3) + Qt__Key_currency = Qt__Key(0x0a4) + Qt__Key_yen = Qt__Key(0x0a5) + Qt__Key_brokenbar = Qt__Key(0x0a6) + Qt__Key_section = Qt__Key(0x0a7) + Qt__Key_diaeresis = Qt__Key(0x0a8) + Qt__Key_copyright = Qt__Key(0x0a9) + Qt__Key_ordfeminine = Qt__Key(0x0aa) + Qt__Key_guillemotleft = Qt__Key(0x0ab) + Qt__Key_notsign = Qt__Key(0x0ac) + Qt__Key_hyphen = Qt__Key(0x0ad) + Qt__Key_registered = Qt__Key(0x0ae) + Qt__Key_macron = Qt__Key(0x0af) + Qt__Key_degree = Qt__Key(0x0b0) + Qt__Key_plusminus = Qt__Key(0x0b1) + Qt__Key_twosuperior = Qt__Key(0x0b2) + Qt__Key_threesuperior = Qt__Key(0x0b3) + Qt__Key_acute = Qt__Key(0x0b4) + Qt__Key_mu = Qt__Key(0x0b5) + Qt__Key_paragraph = Qt__Key(0x0b6) + Qt__Key_periodcentered = Qt__Key(0x0b7) + Qt__Key_cedilla = Qt__Key(0x0b8) + Qt__Key_onesuperior = Qt__Key(0x0b9) + Qt__Key_masculine = Qt__Key(0x0ba) + Qt__Key_guillemotright = Qt__Key(0x0bb) + Qt__Key_onequarter = Qt__Key(0x0bc) + Qt__Key_onehalf = Qt__Key(0x0bd) + Qt__Key_threequarters = Qt__Key(0x0be) + Qt__Key_questiondown = Qt__Key(0x0bf) + Qt__Key_Agrave = Qt__Key(0x0c0) + Qt__Key_Aacute = Qt__Key(0x0c1) + Qt__Key_Acircumflex = Qt__Key(0x0c2) + Qt__Key_Atilde = Qt__Key(0x0c3) + Qt__Key_Adiaeresis = Qt__Key(0x0c4) + Qt__Key_Aring = Qt__Key(0x0c5) + Qt__Key_AE = Qt__Key(0x0c6) + Qt__Key_Ccedilla = Qt__Key(0x0c7) + Qt__Key_Egrave = Qt__Key(0x0c8) + Qt__Key_Eacute = Qt__Key(0x0c9) + Qt__Key_Ecircumflex = Qt__Key(0x0ca) + Qt__Key_Ediaeresis = Qt__Key(0x0cb) + Qt__Key_Igrave = Qt__Key(0x0cc) + Qt__Key_Iacute = Qt__Key(0x0cd) + Qt__Key_Icircumflex = Qt__Key(0x0ce) + Qt__Key_Idiaeresis = Qt__Key(0x0cf) + Qt__Key_ETH = Qt__Key(0x0d0) + Qt__Key_Ntilde = Qt__Key(0x0d1) + Qt__Key_Ograve = Qt__Key(0x0d2) + Qt__Key_Oacute = Qt__Key(0x0d3) + Qt__Key_Ocircumflex = Qt__Key(0x0d4) + Qt__Key_Otilde = Qt__Key(0x0d5) + Qt__Key_Odiaeresis = Qt__Key(0x0d6) + Qt__Key_multiply = Qt__Key(0x0d7) + Qt__Key_Ooblique = Qt__Key(0x0d8) + Qt__Key_Ugrave = Qt__Key(0x0d9) + Qt__Key_Uacute = Qt__Key(0x0da) + Qt__Key_Ucircumflex = Qt__Key(0x0db) + Qt__Key_Udiaeresis = Qt__Key(0x0dc) + Qt__Key_Yacute = Qt__Key(0x0dd) + Qt__Key_THORN = Qt__Key(0x0de) + Qt__Key_ssharp = Qt__Key(0x0df) + Qt__Key_division = Qt__Key(0x0f7) + Qt__Key_ydiaeresis = Qt__Key(0x0ff) + Qt__Key_AltGr = Qt__Key(0x01001103) + Qt__Key_Multi_key = Qt__Key(0x01001120) + Qt__Key_Codeinput = Qt__Key(0x01001137) + Qt__Key_SingleCandidate = Qt__Key(0x0100113c) + Qt__Key_MultipleCandidate = Qt__Key(0x0100113d) + Qt__Key_PreviousCandidate = Qt__Key(0x0100113e) + Qt__Key_Mode_switch = Qt__Key(0x0100117e) + Qt__Key_Kanji = Qt__Key(0x01001121) + Qt__Key_Muhenkan = Qt__Key(0x01001122) + Qt__Key_Henkan = Qt__Key(0x01001123) + Qt__Key_Romaji = Qt__Key(0x01001124) + Qt__Key_Hiragana = Qt__Key(0x01001125) + Qt__Key_Katakana = Qt__Key(0x01001126) + Qt__Key_Hiragana_Katakana = Qt__Key(0x01001127) + Qt__Key_Zenkaku = Qt__Key(0x01001128) + Qt__Key_Hankaku = Qt__Key(0x01001129) + Qt__Key_Zenkaku_Hankaku = Qt__Key(0x0100112a) + Qt__Key_Touroku = Qt__Key(0x0100112b) + Qt__Key_Massyo = Qt__Key(0x0100112c) + Qt__Key_Kana_Lock = Qt__Key(0x0100112d) + Qt__Key_Kana_Shift = Qt__Key(0x0100112e) + Qt__Key_Eisu_Shift = Qt__Key(0x0100112f) + Qt__Key_Eisu_toggle = Qt__Key(0x01001130) + Qt__Key_Hangul = Qt__Key(0x01001131) + Qt__Key_Hangul_Start = Qt__Key(0x01001132) + Qt__Key_Hangul_End = Qt__Key(0x01001133) + Qt__Key_Hangul_Hanja = Qt__Key(0x01001134) + Qt__Key_Hangul_Jamo = Qt__Key(0x01001135) + Qt__Key_Hangul_Romaja = Qt__Key(0x01001136) + Qt__Key_Hangul_Jeonja = Qt__Key(0x01001138) + Qt__Key_Hangul_Banja = Qt__Key(0x01001139) + Qt__Key_Hangul_PreHanja = Qt__Key(0x0100113a) + Qt__Key_Hangul_PostHanja = Qt__Key(0x0100113b) + Qt__Key_Hangul_Special = Qt__Key(0x0100113f) + Qt__Key_Dead_Grave = Qt__Key(0x01001250) + Qt__Key_Dead_Acute = Qt__Key(0x01001251) + Qt__Key_Dead_Circumflex = Qt__Key(0x01001252) + Qt__Key_Dead_Tilde = Qt__Key(0x01001253) + Qt__Key_Dead_Macron = Qt__Key(0x01001254) + Qt__Key_Dead_Breve = Qt__Key(0x01001255) + Qt__Key_Dead_Abovedot = Qt__Key(0x01001256) + Qt__Key_Dead_Diaeresis = Qt__Key(0x01001257) + Qt__Key_Dead_Abovering = Qt__Key(0x01001258) + Qt__Key_Dead_Doubleacute = Qt__Key(0x01001259) + Qt__Key_Dead_Caron = Qt__Key(0x0100125a) + Qt__Key_Dead_Cedilla = Qt__Key(0x0100125b) + Qt__Key_Dead_Ogonek = Qt__Key(0x0100125c) + Qt__Key_Dead_Iota = Qt__Key(0x0100125d) + Qt__Key_Dead_Voiced_Sound = Qt__Key(0x0100125e) + Qt__Key_Dead_Semivoiced_Sound = Qt__Key(0x0100125f) + Qt__Key_Dead_Belowdot = Qt__Key(0x01001260) + Qt__Key_Dead_Hook = Qt__Key(0x01001261) + Qt__Key_Dead_Horn = Qt__Key(0x01001262) + Qt__Key_Back = Qt__Key(0x01000061) + Qt__Key_Forward = Qt__Key(0x01000062) + Qt__Key_Stop = Qt__Key(0x01000063) + Qt__Key_Refresh = Qt__Key(0x01000064) + Qt__Key_VolumeDown = Qt__Key(0x01000070) + Qt__Key_VolumeMute = Qt__Key(0x01000071) + Qt__Key_VolumeUp = Qt__Key(0x01000072) + Qt__Key_BassBoost = Qt__Key(0x01000073) + Qt__Key_BassUp = Qt__Key(0x01000074) + Qt__Key_BassDown = Qt__Key(0x01000075) + Qt__Key_TrebleUp = Qt__Key(0x01000076) + Qt__Key_TrebleDown = Qt__Key(0x01000077) + Qt__Key_MediaPlay = Qt__Key(0x01000080) + Qt__Key_MediaStop = Qt__Key(0x01000081) + Qt__Key_MediaPrevious = Qt__Key(0x01000082) + Qt__Key_MediaNext = Qt__Key(0x01000083) + Qt__Key_MediaRecord = Qt__Key(0x01000084) + Qt__Key_MediaPause = Qt__Key(0x1000085) + Qt__Key_MediaTogglePlayPause = Qt__Key(0x1000086) + Qt__Key_HomePage = Qt__Key(0x01000090) + Qt__Key_Favorites = Qt__Key(0x01000091) + Qt__Key_Search = Qt__Key(0x01000092) + Qt__Key_Standby = Qt__Key(0x01000093) + Qt__Key_OpenUrl = Qt__Key(0x01000094) + Qt__Key_LaunchMail = Qt__Key(0x010000a0) + Qt__Key_LaunchMedia = Qt__Key(0x010000a1) + Qt__Key_Launch0 = Qt__Key(0x010000a2) + Qt__Key_Launch1 = Qt__Key(0x010000a3) + Qt__Key_Launch2 = Qt__Key(0x010000a4) + Qt__Key_Launch3 = Qt__Key(0x010000a5) + Qt__Key_Launch4 = Qt__Key(0x010000a6) + Qt__Key_Launch5 = Qt__Key(0x010000a7) + Qt__Key_Launch6 = Qt__Key(0x010000a8) + Qt__Key_Launch7 = Qt__Key(0x010000a9) + Qt__Key_Launch8 = Qt__Key(0x010000aa) + Qt__Key_Launch9 = Qt__Key(0x010000ab) + Qt__Key_LaunchA = Qt__Key(0x010000ac) + Qt__Key_LaunchB = Qt__Key(0x010000ad) + Qt__Key_LaunchC = Qt__Key(0x010000ae) + Qt__Key_LaunchD = Qt__Key(0x010000af) + Qt__Key_LaunchE = Qt__Key(0x010000b0) + Qt__Key_LaunchF = Qt__Key(0x010000b1) + Qt__Key_MonBrightnessUp = Qt__Key(0x010000b2) + Qt__Key_MonBrightnessDown = Qt__Key(0x010000b3) + Qt__Key_KeyboardLightOnOff = Qt__Key(0x010000b4) + Qt__Key_KeyboardBrightnessUp = Qt__Key(0x010000b5) + Qt__Key_KeyboardBrightnessDown = Qt__Key(0x010000b6) + Qt__Key_PowerOff = Qt__Key(0x010000b7) + Qt__Key_WakeUp = Qt__Key(0x010000b8) + Qt__Key_Eject = Qt__Key(0x010000b9) + Qt__Key_ScreenSaver = Qt__Key(0x010000ba) + Qt__Key_WWW = Qt__Key(0x010000bb) + Qt__Key_Memo = Qt__Key(0x010000bc) + Qt__Key_LightBulb = Qt__Key(0x010000bd) + Qt__Key_Shop = Qt__Key(0x010000be) + Qt__Key_History = Qt__Key(0x010000bf) + Qt__Key_AddFavorite = Qt__Key(0x010000c0) + Qt__Key_HotLinks = Qt__Key(0x010000c1) + Qt__Key_BrightnessAdjust = Qt__Key(0x010000c2) + Qt__Key_Finance = Qt__Key(0x010000c3) + Qt__Key_Community = Qt__Key(0x010000c4) + Qt__Key_AudioRewind = Qt__Key(0x010000c5) + Qt__Key_BackForward = Qt__Key(0x010000c6) + Qt__Key_ApplicationLeft = Qt__Key(0x010000c7) + Qt__Key_ApplicationRight = Qt__Key(0x010000c8) + Qt__Key_Book = Qt__Key(0x010000c9) + Qt__Key_CD = Qt__Key(0x010000ca) + Qt__Key_Calculator = Qt__Key(0x010000cb) + Qt__Key_ToDoList = Qt__Key(0x010000cc) + Qt__Key_ClearGrab = Qt__Key(0x010000cd) + Qt__Key_Close = Qt__Key(0x010000ce) + Qt__Key_Copy = Qt__Key(0x010000cf) + Qt__Key_Cut = Qt__Key(0x010000d0) + Qt__Key_Display = Qt__Key(0x010000d1) + Qt__Key_DOS = Qt__Key(0x010000d2) + Qt__Key_Documents = Qt__Key(0x010000d3) + Qt__Key_Excel = Qt__Key(0x010000d4) + Qt__Key_Explorer = Qt__Key(0x010000d5) + Qt__Key_Game = Qt__Key(0x010000d6) + Qt__Key_Go = Qt__Key(0x010000d7) + Qt__Key_iTouch = Qt__Key(0x010000d8) + Qt__Key_LogOff = Qt__Key(0x010000d9) + Qt__Key_Market = Qt__Key(0x010000da) + Qt__Key_Meeting = Qt__Key(0x010000db) + Qt__Key_MenuKB = Qt__Key(0x010000dc) + Qt__Key_MenuPB = Qt__Key(0x010000dd) + Qt__Key_MySites = Qt__Key(0x010000de) + Qt__Key_News = Qt__Key(0x010000df) + Qt__Key_OfficeHome = Qt__Key(0x010000e0) + Qt__Key_Option = Qt__Key(0x010000e1) + Qt__Key_Paste = Qt__Key(0x010000e2) + Qt__Key_Phone = Qt__Key(0x010000e3) + Qt__Key_Calendar = Qt__Key(0x010000e4) + Qt__Key_Reply = Qt__Key(0x010000e5) + Qt__Key_Reload = Qt__Key(0x010000e6) + Qt__Key_RotateWindows = Qt__Key(0x010000e7) + Qt__Key_RotationPB = Qt__Key(0x010000e8) + Qt__Key_RotationKB = Qt__Key(0x010000e9) + Qt__Key_Save = Qt__Key(0x010000ea) + Qt__Key_Send = Qt__Key(0x010000eb) + Qt__Key_Spell = Qt__Key(0x010000ec) + Qt__Key_SplitScreen = Qt__Key(0x010000ed) + Qt__Key_Support = Qt__Key(0x010000ee) + Qt__Key_TaskPane = Qt__Key(0x010000ef) + Qt__Key_Terminal = Qt__Key(0x010000f0) + Qt__Key_Tools = Qt__Key(0x010000f1) + Qt__Key_Travel = Qt__Key(0x010000f2) + Qt__Key_Video = Qt__Key(0x010000f3) + Qt__Key_Word = Qt__Key(0x010000f4) + Qt__Key_Xfer = Qt__Key(0x010000f5) + Qt__Key_ZoomIn = Qt__Key(0x010000f6) + Qt__Key_ZoomOut = Qt__Key(0x010000f7) + Qt__Key_Away = Qt__Key(0x010000f8) + Qt__Key_Messenger = Qt__Key(0x010000f9) + Qt__Key_WebCam = Qt__Key(0x010000fa) + Qt__Key_MailForward = Qt__Key(0x010000fb) + Qt__Key_Pictures = Qt__Key(0x010000fc) + Qt__Key_Music = Qt__Key(0x010000fd) + Qt__Key_Battery = Qt__Key(0x010000fe) + Qt__Key_Bluetooth = Qt__Key(0x010000ff) + Qt__Key_WLAN = Qt__Key(0x01000100) + Qt__Key_UWB = Qt__Key(0x01000101) + Qt__Key_AudioForward = Qt__Key(0x01000102) + Qt__Key_AudioRepeat = Qt__Key(0x01000103) + Qt__Key_AudioRandomPlay = Qt__Key(0x01000104) + Qt__Key_Subtitle = Qt__Key(0x01000105) + Qt__Key_AudioCycleTrack = Qt__Key(0x01000106) + Qt__Key_Time = Qt__Key(0x01000107) + Qt__Key_Hibernate = Qt__Key(0x01000108) + Qt__Key_View = Qt__Key(0x01000109) + Qt__Key_TopMenu = Qt__Key(0x0100010a) + Qt__Key_PowerDown = Qt__Key(0x0100010b) + Qt__Key_Suspend = Qt__Key(0x0100010c) + Qt__Key_ContrastAdjust = Qt__Key(0x0100010d) + Qt__Key_LaunchG = Qt__Key(0x0100010e) + Qt__Key_LaunchH = Qt__Key(0x0100010f) + Qt__Key_TouchpadToggle = Qt__Key(0x01000110) + Qt__Key_TouchpadOn = Qt__Key(0x01000111) + Qt__Key_TouchpadOff = Qt__Key(0x01000112) + Qt__Key_MicMute = Qt__Key(0x01000113) + Qt__Key_Red = Qt__Key(0x01000114) + Qt__Key_Green = Qt__Key(0x01000115) + Qt__Key_Yellow = Qt__Key(0x01000116) + Qt__Key_Blue = Qt__Key(0x01000117) + Qt__Key_ChannelUp = Qt__Key(0x01000118) + Qt__Key_ChannelDown = Qt__Key(0x01000119) + Qt__Key_Guide = Qt__Key(0x0100011a) + Qt__Key_Info = Qt__Key(0x0100011b) + Qt__Key_Settings = Qt__Key(0x0100011c) + Qt__Key_MicVolumeUp = Qt__Key(0x0100011d) + Qt__Key_MicVolumeDown = Qt__Key(0x0100011e) + Qt__Key_New = Qt__Key(0x01000120) + Qt__Key_Open = Qt__Key(0x01000121) + Qt__Key_Find = Qt__Key(0x01000122) + Qt__Key_Undo = Qt__Key(0x01000123) + Qt__Key_Redo = Qt__Key(0x01000124) + Qt__Key_MediaLast = Qt__Key(0x0100ffff) + Qt__Key_Select = Qt__Key(0x01010000) + Qt__Key_Yes = Qt__Key(0x01010001) + Qt__Key_No = Qt__Key(0x01010002) + Qt__Key_Cancel = Qt__Key(0x01020001) + Qt__Key_Printer = Qt__Key(0x01020002) + Qt__Key_Execute = Qt__Key(0x01020003) + Qt__Key_Sleep = Qt__Key(0x01020004) + Qt__Key_Play = Qt__Key(0x01020005) + Qt__Key_Zoom = Qt__Key(0x01020006) + Qt__Key_Exit = Qt__Key(0x0102000a) + Qt__Key_Context1 = Qt__Key(0x01100000) + Qt__Key_Context2 = Qt__Key(0x01100001) + Qt__Key_Context3 = Qt__Key(0x01100002) + Qt__Key_Context4 = Qt__Key(0x01100003) + Qt__Key_Call = Qt__Key(0x01100004) + Qt__Key_Hangup = Qt__Key(0x01100005) + Qt__Key_Flip = Qt__Key(0x01100006) + Qt__Key_ToggleCallHangup = Qt__Key(0x01100007) + Qt__Key_VoiceDial = Qt__Key(0x01100008) + Qt__Key_LastNumberRedial = Qt__Key(0x01100009) + Qt__Key_Camera = Qt__Key(0x01100020) + Qt__Key_CameraFocus = Qt__Key(0x01100021) + Qt__Key_unknown = Qt__Key(0x01ffffff) +) + +//Qt::KeyboardModifier +type Qt__KeyboardModifier int + +var ( + Qt__NoModifier = Qt__KeyboardModifier(0x00000000) + Qt__ShiftModifier = Qt__KeyboardModifier(0x02000000) + Qt__ControlModifier = Qt__KeyboardModifier(0x04000000) + Qt__AltModifier = Qt__KeyboardModifier(0x08000000) + Qt__MetaModifier = Qt__KeyboardModifier(0x10000000) + Qt__KeypadModifier = Qt__KeyboardModifier(0x20000000) + Qt__GroupSwitchModifier = Qt__KeyboardModifier(0x40000000) + Qt__KeyboardModifierMask = Qt__KeyboardModifier(0xfe000000) +) + +//Qt::LayoutDirection +type Qt__LayoutDirection int + +var ( + Qt__LeftToRight = Qt__LayoutDirection(0) + Qt__RightToLeft = Qt__LayoutDirection(1) + Qt__LayoutDirectionAuto = Qt__LayoutDirection(2) +) + +//Qt::MaskMode +type Qt__MaskMode int + +var ( + Qt__MaskInColor = Qt__MaskMode(0) + Qt__MaskOutColor = Qt__MaskMode(1) +) + +//Qt::MatchFlag +type Qt__MatchFlag int + +var ( + Qt__MatchExactly = Qt__MatchFlag(0) + Qt__MatchContains = Qt__MatchFlag(1) + Qt__MatchStartsWith = Qt__MatchFlag(2) + Qt__MatchEndsWith = Qt__MatchFlag(3) + Qt__MatchRegExp = Qt__MatchFlag(4) + Qt__MatchWildcard = Qt__MatchFlag(5) + Qt__MatchFixedString = Qt__MatchFlag(8) + Qt__MatchCaseSensitive = Qt__MatchFlag(16) + Qt__MatchWrap = Qt__MatchFlag(32) + Qt__MatchRecursive = Qt__MatchFlag(64) +) + +//Qt::Modifier +type Qt__Modifier int + +var ( + Qt__META = Qt__Modifier(Qt__MetaModifier) + Qt__SHIFT = Qt__Modifier(Qt__ShiftModifier) + Qt__CTRL = Qt__Modifier(Qt__ControlModifier) + Qt__ALT = Qt__Modifier(Qt__AltModifier) + Qt__MODIFIER_MASK = Qt__Modifier(Qt__KeyboardModifierMask) + Qt__UNICODE_ACCEL = Qt__Modifier(0x00000000) +) + +//Qt::MouseButton +type Qt__MouseButton int + +var ( + Qt__NoButton = Qt__MouseButton(0x00000000) + Qt__LeftButton = Qt__MouseButton(0x00000001) + Qt__RightButton = Qt__MouseButton(0x00000002) + Qt__MidButton = Qt__MouseButton(0x00000004) + Qt__MiddleButton = Qt__MouseButton(Qt__MidButton) + Qt__BackButton = Qt__MouseButton(0x00000008) + Qt__XButton1 = Qt__MouseButton(Qt__BackButton) + Qt__ExtraButton1 = Qt__MouseButton(Qt__XButton1) + Qt__ForwardButton = Qt__MouseButton(0x00000010) + Qt__XButton2 = Qt__MouseButton(Qt__ForwardButton) + Qt__ExtraButton2 = Qt__MouseButton(Qt__ForwardButton) + Qt__TaskButton = Qt__MouseButton(0x00000020) + Qt__ExtraButton3 = Qt__MouseButton(Qt__TaskButton) + Qt__ExtraButton4 = Qt__MouseButton(0x00000040) + Qt__ExtraButton5 = Qt__MouseButton(0x00000080) + Qt__ExtraButton6 = Qt__MouseButton(0x00000100) + Qt__ExtraButton7 = Qt__MouseButton(0x00000200) + Qt__ExtraButton8 = Qt__MouseButton(0x00000400) + Qt__ExtraButton9 = Qt__MouseButton(0x00000800) + Qt__ExtraButton10 = Qt__MouseButton(0x00001000) + Qt__ExtraButton11 = Qt__MouseButton(0x00002000) + Qt__ExtraButton12 = Qt__MouseButton(0x00004000) + Qt__ExtraButton13 = Qt__MouseButton(0x00008000) + Qt__ExtraButton14 = Qt__MouseButton(0x00010000) + Qt__ExtraButton15 = Qt__MouseButton(0x00020000) + Qt__ExtraButton16 = Qt__MouseButton(0x00040000) + Qt__ExtraButton17 = Qt__MouseButton(0x00080000) + Qt__ExtraButton18 = Qt__MouseButton(0x00100000) + Qt__ExtraButton19 = Qt__MouseButton(0x00200000) + Qt__ExtraButton20 = Qt__MouseButton(0x00400000) + Qt__ExtraButton21 = Qt__MouseButton(0x00800000) + Qt__ExtraButton22 = Qt__MouseButton(0x01000000) + Qt__ExtraButton23 = Qt__MouseButton(0x02000000) + Qt__ExtraButton24 = Qt__MouseButton(0x04000000) + Qt__AllButtons = Qt__MouseButton(0x07ffffff) + Qt__MaxMouseButton = Qt__MouseButton(Qt__ExtraButton24) + Qt__MouseButtonMask = Qt__MouseButton(0xffffffff) +) + +//Qt::MouseEventFlag +type Qt__MouseEventFlag int + +var ( + Qt__MouseEventCreatedDoubleClick = Qt__MouseEventFlag(0x01) + Qt__MouseEventFlagMask = Qt__MouseEventFlag(0xFF) +) + +//Qt::MouseEventSource +type Qt__MouseEventSource int + +var ( + Qt__MouseEventNotSynthesized = Qt__MouseEventSource(0) + Qt__MouseEventSynthesizedBySystem = Qt__MouseEventSource(1) + Qt__MouseEventSynthesizedByQt = Qt__MouseEventSource(2) +) + +//Qt::NativeGestureType +type Qt__NativeGestureType int + +var ( + Qt__BeginNativeGesture = Qt__NativeGestureType(0) + Qt__EndNativeGesture = Qt__NativeGestureType(1) + Qt__PanNativeGesture = Qt__NativeGestureType(2) + Qt__ZoomNativeGesture = Qt__NativeGestureType(3) + Qt__SmartZoomNativeGesture = Qt__NativeGestureType(4) + Qt__RotateNativeGesture = Qt__NativeGestureType(5) + Qt__SwipeNativeGesture = Qt__NativeGestureType(6) +) + +//Qt::NavigationMode +type Qt__NavigationMode int + +var ( + Qt__NavigationModeNone = Qt__NavigationMode(0) + Qt__NavigationModeKeypadTabOrder = Qt__NavigationMode(1) + Qt__NavigationModeKeypadDirectional = Qt__NavigationMode(2) + Qt__NavigationModeCursorAuto = Qt__NavigationMode(3) + Qt__NavigationModeCursorForceVisible = Qt__NavigationMode(4) +) + +//Qt::Orientation +type Qt__Orientation int + +var ( + Qt__Horizontal = Qt__Orientation(0x1) + Qt__Vertical = Qt__Orientation(0x2) +) + +//Qt::PenCapStyle +type Qt__PenCapStyle int + +var ( + Qt__FlatCap = Qt__PenCapStyle(0x00) + Qt__SquareCap = Qt__PenCapStyle(0x10) + Qt__RoundCap = Qt__PenCapStyle(0x20) + Qt__MPenCapStyle = Qt__PenCapStyle(0x30) +) + +//Qt::PenJoinStyle +type Qt__PenJoinStyle int + +var ( + Qt__MiterJoin = Qt__PenJoinStyle(0x00) + Qt__BevelJoin = Qt__PenJoinStyle(0x40) + Qt__RoundJoin = Qt__PenJoinStyle(0x80) + Qt__SvgMiterJoin = Qt__PenJoinStyle(0x100) + Qt__MPenJoinStyle = Qt__PenJoinStyle(0x1c0) +) + +//Qt::PenStyle +type Qt__PenStyle int + +var ( + Qt__NoPen = Qt__PenStyle(0) + Qt__SolidLine = Qt__PenStyle(1) + Qt__DashLine = Qt__PenStyle(2) + Qt__DotLine = Qt__PenStyle(3) + Qt__DashDotLine = Qt__PenStyle(4) + Qt__DashDotDotLine = Qt__PenStyle(5) + Qt__CustomDashLine = Qt__PenStyle(6) + Qt__MPenStyle = Qt__PenStyle(0x0f) +) + +//Qt::ScreenOrientation +type Qt__ScreenOrientation int + +var ( + Qt__PrimaryOrientation = Qt__ScreenOrientation(0x00000000) + Qt__PortraitOrientation = Qt__ScreenOrientation(0x00000001) + Qt__LandscapeOrientation = Qt__ScreenOrientation(0x00000002) + Qt__InvertedPortraitOrientation = Qt__ScreenOrientation(0x00000004) + Qt__InvertedLandscapeOrientation = Qt__ScreenOrientation(0x00000008) +) + +//Qt::ScrollBarPolicy +type Qt__ScrollBarPolicy int + +var ( + Qt__ScrollBarAsNeeded = Qt__ScrollBarPolicy(0) + Qt__ScrollBarAlwaysOff = Qt__ScrollBarPolicy(1) + Qt__ScrollBarAlwaysOn = Qt__ScrollBarPolicy(2) +) + +//Qt::ScrollPhase +type Qt__ScrollPhase int + +var ( + Qt__ScrollBegin = Qt__ScrollPhase(1) + Qt__ScrollUpdate = Qt__ScrollPhase(2) + Qt__ScrollEnd = Qt__ScrollPhase(3) +) + +//Qt::ShortcutContext +type Qt__ShortcutContext int + +var ( + Qt__WidgetShortcut = Qt__ShortcutContext(0) + Qt__WindowShortcut = Qt__ShortcutContext(1) + Qt__ApplicationShortcut = Qt__ShortcutContext(2) + Qt__WidgetWithChildrenShortcut = Qt__ShortcutContext(3) +) + +//Qt::SizeHint +type Qt__SizeHint int + +var ( + Qt__MinimumSize = Qt__SizeHint(0) + Qt__PreferredSize = Qt__SizeHint(1) + Qt__MaximumSize = Qt__SizeHint(2) + Qt__MinimumDescent = Qt__SizeHint(3) + Qt__NSizeHints = Qt__SizeHint(4) +) + +//Qt::SizeMode +type Qt__SizeMode int + +var ( + Qt__AbsoluteSize = Qt__SizeMode(0) + Qt__RelativeSize = Qt__SizeMode(1) +) + +//Qt::SortOrder +type Qt__SortOrder int + +var ( + Qt__AscendingOrder = Qt__SortOrder(0) + Qt__DescendingOrder = Qt__SortOrder(1) +) + +//Qt::TabFocusBehavior +type Qt__TabFocusBehavior int + +var ( + Qt__NoTabFocus = Qt__TabFocusBehavior(0x00) + Qt__TabFocusTextControls = Qt__TabFocusBehavior(0x01) + Qt__TabFocusListControls = Qt__TabFocusBehavior(0x02) + Qt__TabFocusAllControls = Qt__TabFocusBehavior(0xff) +) + +//Qt::TextElideMode +type Qt__TextElideMode int + +var ( + Qt__ElideLeft = Qt__TextElideMode(0) + Qt__ElideRight = Qt__TextElideMode(1) + Qt__ElideMiddle = Qt__TextElideMode(2) + Qt__ElideNone = Qt__TextElideMode(3) +) + +//Qt::TextFlag +type Qt__TextFlag int + +var ( + Qt__TextSingleLine = Qt__TextFlag(0x0100) + Qt__TextDontClip = Qt__TextFlag(0x0200) + Qt__TextExpandTabs = Qt__TextFlag(0x0400) + Qt__TextShowMnemonic = Qt__TextFlag(0x0800) + Qt__TextWordWrap = Qt__TextFlag(0x1000) + Qt__TextWrapAnywhere = Qt__TextFlag(0x2000) + Qt__TextDontPrint = Qt__TextFlag(0x4000) + Qt__TextIncludeTrailingSpaces = Qt__TextFlag(0x08000000) + Qt__TextHideMnemonic = Qt__TextFlag(0x8000) + Qt__TextJustificationForced = Qt__TextFlag(0x10000) + Qt__TextForceLeftToRight = Qt__TextFlag(0x20000) + Qt__TextForceRightToLeft = Qt__TextFlag(0x40000) + Qt__TextLongestVariant = Qt__TextFlag(0x80000) + Qt__TextBypassShaping = Qt__TextFlag(0x100000) +) + +//Qt::TextFormat +type Qt__TextFormat int + +var ( + Qt__PlainText = Qt__TextFormat(0) + Qt__RichText = Qt__TextFormat(1) + Qt__AutoText = Qt__TextFormat(2) +) + +//Qt::TextInteractionFlag +type Qt__TextInteractionFlag int + +var ( + Qt__NoTextInteraction = Qt__TextInteractionFlag(0) + Qt__TextSelectableByMouse = Qt__TextInteractionFlag(1) + Qt__TextSelectableByKeyboard = Qt__TextInteractionFlag(2) + Qt__LinksAccessibleByMouse = Qt__TextInteractionFlag(4) + Qt__LinksAccessibleByKeyboard = Qt__TextInteractionFlag(8) + Qt__TextEditable = Qt__TextInteractionFlag(16) + Qt__TextEditorInteraction = Qt__TextInteractionFlag(Qt__TextSelectableByMouse | Qt__TextSelectableByKeyboard | Qt__TextEditable) + Qt__TextBrowserInteraction = Qt__TextInteractionFlag(Qt__TextSelectableByMouse | Qt__LinksAccessibleByMouse | Qt__LinksAccessibleByKeyboard) +) + +//Qt::TileRule +type Qt__TileRule int + +var ( + Qt__StretchTile = Qt__TileRule(0) + Qt__RepeatTile = Qt__TileRule(1) + Qt__RoundTile = Qt__TileRule(2) +) + +//Qt::TimeSpec +type Qt__TimeSpec int + +var ( + Qt__LocalTime = Qt__TimeSpec(0) + Qt__UTC = Qt__TimeSpec(1) + Qt__OffsetFromUTC = Qt__TimeSpec(2) + Qt__TimeZone = Qt__TimeSpec(3) +) + +//Qt::TimerType +type Qt__TimerType int + +var ( + Qt__PreciseTimer = Qt__TimerType(0) + Qt__CoarseTimer = Qt__TimerType(1) + Qt__VeryCoarseTimer = Qt__TimerType(2) +) + +//Qt::ToolBarArea +type Qt__ToolBarArea int + +var ( + Qt__LeftToolBarArea = Qt__ToolBarArea(0x1) + Qt__RightToolBarArea = Qt__ToolBarArea(0x2) + Qt__TopToolBarArea = Qt__ToolBarArea(0x4) + Qt__BottomToolBarArea = Qt__ToolBarArea(0x8) + Qt__ToolBarArea_Mask = Qt__ToolBarArea(0xf) + Qt__AllToolBarAreas = Qt__ToolBarArea(Qt__ToolBarArea_Mask) + Qt__NoToolBarArea = Qt__ToolBarArea(0) +) + +//Qt::ToolButtonStyle +type Qt__ToolButtonStyle int + +var ( + Qt__ToolButtonIconOnly = Qt__ToolButtonStyle(0) + Qt__ToolButtonTextOnly = Qt__ToolButtonStyle(1) + Qt__ToolButtonTextBesideIcon = Qt__ToolButtonStyle(2) + Qt__ToolButtonTextUnderIcon = Qt__ToolButtonStyle(3) + Qt__ToolButtonFollowStyle = Qt__ToolButtonStyle(4) +) + +//Qt::TouchPointState +type Qt__TouchPointState int + +var ( + Qt__TouchPointPressed = Qt__TouchPointState(0x01) + Qt__TouchPointMoved = Qt__TouchPointState(0x02) + Qt__TouchPointStationary = Qt__TouchPointState(0x04) + Qt__TouchPointReleased = Qt__TouchPointState(0x08) +) + +//Qt::TransformationMode +type Qt__TransformationMode int + +var ( + Qt__FastTransformation = Qt__TransformationMode(0) + Qt__SmoothTransformation = Qt__TransformationMode(1) +) + +//Qt::UIEffect +type Qt__UIEffect int + +var ( + Qt__UI_General = Qt__UIEffect(0) + Qt__UI_AnimateMenu = Qt__UIEffect(1) + Qt__UI_FadeMenu = Qt__UIEffect(2) + Qt__UI_AnimateCombo = Qt__UIEffect(3) + Qt__UI_AnimateTooltip = Qt__UIEffect(4) + Qt__UI_FadeTooltip = Qt__UIEffect(5) + Qt__UI_AnimateToolBox = Qt__UIEffect(6) +) + +//Qt::WhiteSpaceMode +type Qt__WhiteSpaceMode int + +var ( + Qt__WhiteSpaceNormal = Qt__WhiteSpaceMode(0) + Qt__WhiteSpacePre = Qt__WhiteSpaceMode(1) + Qt__WhiteSpaceNoWrap = Qt__WhiteSpaceMode(2) + Qt__WhiteSpaceModeUndefined = Qt__WhiteSpaceMode(-1) +) + +//Qt::WidgetAttribute +type Qt__WidgetAttribute int + +var ( + Qt__WA_Disabled = Qt__WidgetAttribute(0) + Qt__WA_UnderMouse = Qt__WidgetAttribute(1) + Qt__WA_MouseTracking = Qt__WidgetAttribute(2) + Qt__WA_ContentsPropagated = Qt__WidgetAttribute(3) + Qt__WA_OpaquePaintEvent = Qt__WidgetAttribute(4) + Qt__WA_NoBackground = Qt__WidgetAttribute(Qt__WA_OpaquePaintEvent) + Qt__WA_StaticContents = Qt__WidgetAttribute(5) + Qt__WA_LaidOut = Qt__WidgetAttribute(7) + Qt__WA_PaintOnScreen = Qt__WidgetAttribute(8) + Qt__WA_NoSystemBackground = Qt__WidgetAttribute(9) + Qt__WA_UpdatesDisabled = Qt__WidgetAttribute(10) + Qt__WA_Mapped = Qt__WidgetAttribute(11) + Qt__WA_MacNoClickThrough = Qt__WidgetAttribute(12) + Qt__WA_InputMethodEnabled = Qt__WidgetAttribute(14) + Qt__WA_WState_Visible = Qt__WidgetAttribute(15) + Qt__WA_WState_Hidden = Qt__WidgetAttribute(16) + Qt__WA_ForceDisabled = Qt__WidgetAttribute(32) + Qt__WA_KeyCompression = Qt__WidgetAttribute(33) + Qt__WA_PendingMoveEvent = Qt__WidgetAttribute(34) + Qt__WA_PendingResizeEvent = Qt__WidgetAttribute(35) + Qt__WA_SetPalette = Qt__WidgetAttribute(36) + Qt__WA_SetFont = Qt__WidgetAttribute(37) + Qt__WA_SetCursor = Qt__WidgetAttribute(38) + Qt__WA_NoChildEventsFromChildren = Qt__WidgetAttribute(39) + Qt__WA_WindowModified = Qt__WidgetAttribute(41) + Qt__WA_Resized = Qt__WidgetAttribute(42) + Qt__WA_Moved = Qt__WidgetAttribute(43) + Qt__WA_PendingUpdate = Qt__WidgetAttribute(44) + Qt__WA_InvalidSize = Qt__WidgetAttribute(45) + Qt__WA_MacBrushedMetal = Qt__WidgetAttribute(46) + Qt__WA_MacMetalStyle = Qt__WidgetAttribute(Qt__WA_MacBrushedMetal) + Qt__WA_CustomWhatsThis = Qt__WidgetAttribute(47) + Qt__WA_LayoutOnEntireRect = Qt__WidgetAttribute(48) + Qt__WA_OutsideWSRange = Qt__WidgetAttribute(49) + Qt__WA_GrabbedShortcut = Qt__WidgetAttribute(50) + Qt__WA_TransparentForMouseEvents = Qt__WidgetAttribute(51) + Qt__WA_PaintUnclipped = Qt__WidgetAttribute(52) + Qt__WA_SetWindowIcon = Qt__WidgetAttribute(53) + Qt__WA_NoMouseReplay = Qt__WidgetAttribute(54) + Qt__WA_DeleteOnClose = Qt__WidgetAttribute(55) + Qt__WA_RightToLeft = Qt__WidgetAttribute(56) + Qt__WA_SetLayoutDirection = Qt__WidgetAttribute(57) + Qt__WA_NoChildEventsForParent = Qt__WidgetAttribute(58) + Qt__WA_ForceUpdatesDisabled = Qt__WidgetAttribute(59) + Qt__WA_WState_Created = Qt__WidgetAttribute(60) + Qt__WA_WState_CompressKeys = Qt__WidgetAttribute(61) + Qt__WA_WState_InPaintEvent = Qt__WidgetAttribute(62) + Qt__WA_WState_Reparented = Qt__WidgetAttribute(63) + Qt__WA_WState_ConfigPending = Qt__WidgetAttribute(64) + Qt__WA_WState_Polished = Qt__WidgetAttribute(66) + Qt__WA_WState_DND = Qt__WidgetAttribute(67) + Qt__WA_WState_OwnSizePolicy = Qt__WidgetAttribute(68) + Qt__WA_WState_ExplicitShowHide = Qt__WidgetAttribute(69) + Qt__WA_ShowModal = Qt__WidgetAttribute(70) + Qt__WA_MouseNoMask = Qt__WidgetAttribute(71) + Qt__WA_GroupLeader = Qt__WidgetAttribute(72) + Qt__WA_NoMousePropagation = Qt__WidgetAttribute(73) + Qt__WA_Hover = Qt__WidgetAttribute(74) + Qt__WA_InputMethodTransparent = Qt__WidgetAttribute(75) + Qt__WA_QuitOnClose = Qt__WidgetAttribute(76) + Qt__WA_KeyboardFocusChange = Qt__WidgetAttribute(77) + Qt__WA_AcceptDrops = Qt__WidgetAttribute(78) + Qt__WA_DropSiteRegistered = Qt__WidgetAttribute(79) + Qt__WA_ForceAcceptDrops = Qt__WidgetAttribute(Qt__WA_DropSiteRegistered) + Qt__WA_WindowPropagation = Qt__WidgetAttribute(80) + Qt__WA_NoX11EventCompression = Qt__WidgetAttribute(81) + Qt__WA_TintedBackground = Qt__WidgetAttribute(82) + Qt__WA_X11OpenGLOverlay = Qt__WidgetAttribute(83) + Qt__WA_AlwaysShowToolTips = Qt__WidgetAttribute(84) + Qt__WA_MacOpaqueSizeGrip = Qt__WidgetAttribute(85) + Qt__WA_SetStyle = Qt__WidgetAttribute(86) + Qt__WA_SetLocale = Qt__WidgetAttribute(87) + Qt__WA_MacShowFocusRect = Qt__WidgetAttribute(88) + Qt__WA_MacNormalSize = Qt__WidgetAttribute(89) + Qt__WA_MacSmallSize = Qt__WidgetAttribute(90) + Qt__WA_MacMiniSize = Qt__WidgetAttribute(91) + Qt__WA_LayoutUsesWidgetRect = Qt__WidgetAttribute(92) + Qt__WA_StyledBackground = Qt__WidgetAttribute(93) + Qt__WA_MSWindowsUseDirect3D = Qt__WidgetAttribute(94) + Qt__WA_CanHostQMdiSubWindowTitleBar = Qt__WidgetAttribute(95) + Qt__WA_MacAlwaysShowToolWindow = Qt__WidgetAttribute(96) + Qt__WA_StyleSheet = Qt__WidgetAttribute(97) + Qt__WA_ShowWithoutActivating = Qt__WidgetAttribute(98) + Qt__WA_X11BypassTransientForHint = Qt__WidgetAttribute(99) + Qt__WA_NativeWindow = Qt__WidgetAttribute(100) + Qt__WA_DontCreateNativeAncestors = Qt__WidgetAttribute(101) + Qt__WA_MacVariableSize = Qt__WidgetAttribute(102) + Qt__WA_DontShowOnScreen = Qt__WidgetAttribute(103) + Qt__WA_X11NetWmWindowTypeDesktop = Qt__WidgetAttribute(104) + Qt__WA_X11NetWmWindowTypeDock = Qt__WidgetAttribute(105) + Qt__WA_X11NetWmWindowTypeToolBar = Qt__WidgetAttribute(106) + Qt__WA_X11NetWmWindowTypeMenu = Qt__WidgetAttribute(107) + Qt__WA_X11NetWmWindowTypeUtility = Qt__WidgetAttribute(108) + Qt__WA_X11NetWmWindowTypeSplash = Qt__WidgetAttribute(109) + Qt__WA_X11NetWmWindowTypeDialog = Qt__WidgetAttribute(110) + Qt__WA_X11NetWmWindowTypeDropDownMenu = Qt__WidgetAttribute(111) + Qt__WA_X11NetWmWindowTypePopupMenu = Qt__WidgetAttribute(112) + Qt__WA_X11NetWmWindowTypeToolTip = Qt__WidgetAttribute(113) + Qt__WA_X11NetWmWindowTypeNotification = Qt__WidgetAttribute(114) + Qt__WA_X11NetWmWindowTypeCombo = Qt__WidgetAttribute(115) + Qt__WA_X11NetWmWindowTypeDND = Qt__WidgetAttribute(116) + Qt__WA_MacFrameworkScaled = Qt__WidgetAttribute(117) + Qt__WA_SetWindowModality = Qt__WidgetAttribute(118) + Qt__WA_WState_WindowOpacitySet = Qt__WidgetAttribute(119) + Qt__WA_TranslucentBackground = Qt__WidgetAttribute(120) + Qt__WA_AcceptTouchEvents = Qt__WidgetAttribute(121) + Qt__WA_WState_AcceptedTouchBeginEvent = Qt__WidgetAttribute(122) + Qt__WA_TouchPadAcceptSingleTouchEvents = Qt__WidgetAttribute(123) + Qt__WA_X11DoNotAcceptFocus = Qt__WidgetAttribute(126) + Qt__WA_MacNoShadow = Qt__WidgetAttribute(127) + Qt__WA_AlwaysStackOnTop = Qt__WidgetAttribute(128) + Qt__WA_AttributeCount = Qt__WidgetAttribute(129) +) + +//Qt::WindowFrameSection +type Qt__WindowFrameSection int + +var ( + Qt__NoSection = Qt__WindowFrameSection(0) + Qt__LeftSection = Qt__WindowFrameSection(1) + Qt__TopLeftSection = Qt__WindowFrameSection(2) + Qt__TopSection = Qt__WindowFrameSection(3) + Qt__TopRightSection = Qt__WindowFrameSection(4) + Qt__RightSection = Qt__WindowFrameSection(5) + Qt__BottomRightSection = Qt__WindowFrameSection(6) + Qt__BottomSection = Qt__WindowFrameSection(7) + Qt__BottomLeftSection = Qt__WindowFrameSection(8) + Qt__TitleBarArea = Qt__WindowFrameSection(9) +) + +//Qt::WindowModality +type Qt__WindowModality int + +var ( + Qt__NonModal = Qt__WindowModality(0) + Qt__WindowModal = Qt__WindowModality(1) + Qt__ApplicationModal = Qt__WindowModality(2) +) + +//Qt::WindowState +type Qt__WindowState int + +var ( + Qt__WindowNoState = Qt__WindowState(0x00000000) + Qt__WindowMinimized = Qt__WindowState(0x00000001) + Qt__WindowMaximized = Qt__WindowState(0x00000002) + Qt__WindowFullScreen = Qt__WindowState(0x00000004) + Qt__WindowActive = Qt__WindowState(0x00000008) +) + +//Qt::WindowType +type Qt__WindowType int + +var ( + Qt__Widget = Qt__WindowType(0x00000000) + Qt__Window = Qt__WindowType(0x00000001) + Qt__Dialog = Qt__WindowType(0x00000002 | Qt__Window) + Qt__Sheet = Qt__WindowType(0x00000004 | Qt__Window) + Qt__Drawer = Qt__WindowType(Qt__Sheet | Qt__Dialog) + Qt__Popup = Qt__WindowType(0x00000008 | Qt__Window) + Qt__Tool = Qt__WindowType(Qt__Popup | Qt__Dialog) + Qt__ToolTip = Qt__WindowType(Qt__Popup | Qt__Sheet) + Qt__SplashScreen = Qt__WindowType(Qt__ToolTip | Qt__Dialog) + Qt__Desktop = Qt__WindowType(0x00000010 | Qt__Window) + Qt__SubWindow = Qt__WindowType(0x00000012) + Qt__ForeignWindow = Qt__WindowType(0x00000020 | Qt__Window) + Qt__CoverWindow = Qt__WindowType(0x00000040 | Qt__Window) + Qt__WindowType_Mask = Qt__WindowType(0x000000ff) + Qt__MSWindowsFixedSizeDialogHint = Qt__WindowType(0x00000100) + Qt__MSWindowsOwnDC = Qt__WindowType(0x00000200) + Qt__BypassWindowManagerHint = Qt__WindowType(0x00000400) + Qt__X11BypassWindowManagerHint = Qt__WindowType(Qt__BypassWindowManagerHint) + Qt__FramelessWindowHint = Qt__WindowType(0x00000800) + Qt__WindowTitleHint = Qt__WindowType(0x00001000) + Qt__WindowSystemMenuHint = Qt__WindowType(0x00002000) + Qt__WindowMinimizeButtonHint = Qt__WindowType(0x00004000) + Qt__WindowMaximizeButtonHint = Qt__WindowType(0x00008000) + Qt__WindowMinMaxButtonsHint = Qt__WindowType(Qt__WindowMinimizeButtonHint | Qt__WindowMaximizeButtonHint) + Qt__WindowContextHelpButtonHint = Qt__WindowType(0x00010000) + Qt__WindowShadeButtonHint = Qt__WindowType(0x00020000) + Qt__WindowStaysOnTopHint = Qt__WindowType(0x00040000) + Qt__WindowTransparentForInput = Qt__WindowType(0x00080000) + Qt__WindowOverridesSystemGestures = Qt__WindowType(0x00100000) + Qt__WindowDoesNotAcceptFocus = Qt__WindowType(0x00200000) + Qt__MaximizeUsingFullscreenGeometryHint = Qt__WindowType(0x00400000) + Qt__CustomizeWindowHint = Qt__WindowType(0x02000000) + Qt__WindowStaysOnBottomHint = Qt__WindowType(0x04000000) + Qt__WindowCloseButtonHint = Qt__WindowType(0x08000000) + Qt__MacWindowToolBarButtonHint = Qt__WindowType(0x10000000) + Qt__BypassGraphicsProxyWidget = Qt__WindowType(0x20000000) + Qt__NoDropShadowWindowHint = Qt__WindowType(0x40000000) + Qt__WindowFullscreenButtonHint = Qt__WindowType(0x80000000) + Qt__WindowOkButtonHint = Qt__WindowType(0x00080000) + Qt__WindowCancelButtonHint = Qt__WindowType(0x00100000) +) diff --git a/core/qt.h b/core/qt.h new file mode 100755 index 00000000..a948d0cd --- /dev/null +++ b/core/qt.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int Qt_LocaleDate_Type(); +int Qt_SystemLocaleShortDate_Type(); +int Qt_SystemLocaleLongDate_Type(); +int Qt_DefaultLocaleShortDate_Type(); +int Qt_DefaultLocaleLongDate_Type(); +int Qt_RFC2822Date_Type(); +int Qt_LastGestureType_Type(); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qtemporarydir.cpp b/core/qtemporarydir.cpp new file mode 100755 index 00000000..85e5ea38 --- /dev/null +++ b/core/qtemporarydir.cpp @@ -0,0 +1,40 @@ +#include "qtemporarydir.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTemporaryDir: public QTemporaryDir { +public: +}; + +QtObjectPtr QTemporaryDir_NewQTemporaryDir(){ + return new QTemporaryDir(); +} + +QtObjectPtr QTemporaryDir_NewQTemporaryDir2(char* templatePath){ + return new QTemporaryDir(QString(templatePath)); +} + +int QTemporaryDir_AutoRemove(QtObjectPtr ptr){ + return static_cast(ptr)->autoRemove(); +} + +int QTemporaryDir_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +char* QTemporaryDir_Path(QtObjectPtr ptr){ + return static_cast(ptr)->path().toUtf8().data(); +} + +void QTemporaryDir_SetAutoRemove(QtObjectPtr ptr, int b){ + static_cast(ptr)->setAutoRemove(b != 0); +} + +void QTemporaryDir_DestroyQTemporaryDir(QtObjectPtr ptr){ + static_cast(ptr)->~QTemporaryDir(); +} + diff --git a/core/qtemporarydir.go b/core/qtemporarydir.go new file mode 100755 index 00000000..ada359ad --- /dev/null +++ b/core/qtemporarydir.go @@ -0,0 +1,82 @@ +package core + +//#include "qtemporarydir.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QTemporaryDir struct { + ptr unsafe.Pointer +} + +type QTemporaryDirITF interface { + QTemporaryDirPTR() *QTemporaryDir +} + +func (p *QTemporaryDir) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTemporaryDir) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTemporaryDir(ptr QTemporaryDirITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTemporaryDirPTR().Pointer() + } + return nil +} + +func QTemporaryDirFromPointer(ptr unsafe.Pointer) *QTemporaryDir { + var n = new(QTemporaryDir) + n.SetPointer(ptr) + return n +} + +func (ptr *QTemporaryDir) QTemporaryDirPTR() *QTemporaryDir { + return ptr +} + +func NewQTemporaryDir() *QTemporaryDir { + return QTemporaryDirFromPointer(unsafe.Pointer(C.QTemporaryDir_NewQTemporaryDir())) +} + +func NewQTemporaryDir2(templatePath string) *QTemporaryDir { + return QTemporaryDirFromPointer(unsafe.Pointer(C.QTemporaryDir_NewQTemporaryDir2(C.CString(templatePath)))) +} + +func (ptr *QTemporaryDir) AutoRemove() bool { + if ptr.Pointer() != nil { + return C.QTemporaryDir_AutoRemove(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTemporaryDir) IsValid() bool { + if ptr.Pointer() != nil { + return C.QTemporaryDir_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTemporaryDir) Path() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTemporaryDir_Path(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTemporaryDir) SetAutoRemove(b bool) { + if ptr.Pointer() != nil { + C.QTemporaryDir_SetAutoRemove(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(b))) + } +} + +func (ptr *QTemporaryDir) DestroyQTemporaryDir() { + if ptr.Pointer() != nil { + C.QTemporaryDir_DestroyQTemporaryDir(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qtemporarydir.h b/core/qtemporarydir.h new file mode 100755 index 00000000..326168f6 --- /dev/null +++ b/core/qtemporarydir.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTemporaryDir_NewQTemporaryDir(); +QtObjectPtr QTemporaryDir_NewQTemporaryDir2(char* templatePath); +int QTemporaryDir_AutoRemove(QtObjectPtr ptr); +int QTemporaryDir_IsValid(QtObjectPtr ptr); +char* QTemporaryDir_Path(QtObjectPtr ptr); +void QTemporaryDir_SetAutoRemove(QtObjectPtr ptr, int b); +void QTemporaryDir_DestroyQTemporaryDir(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qtemporaryfile.cpp b/core/qtemporaryfile.cpp new file mode 100755 index 00000000..31f7a67b --- /dev/null +++ b/core/qtemporaryfile.cpp @@ -0,0 +1,66 @@ +#include "qtemporaryfile.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTemporaryFile: public QTemporaryFile { +public: +}; + +QtObjectPtr QTemporaryFile_NewQTemporaryFile(){ + return new QTemporaryFile(); +} + +QtObjectPtr QTemporaryFile_NewQTemporaryFile3(QtObjectPtr parent){ + return new QTemporaryFile(static_cast(parent)); +} + +QtObjectPtr QTemporaryFile_NewQTemporaryFile2(char* templateName){ + return new QTemporaryFile(QString(templateName)); +} + +QtObjectPtr QTemporaryFile_NewQTemporaryFile4(char* templateName, QtObjectPtr parent){ + return new QTemporaryFile(QString(templateName), static_cast(parent)); +} + +int QTemporaryFile_AutoRemove(QtObjectPtr ptr){ + return static_cast(ptr)->autoRemove(); +} + +QtObjectPtr QTemporaryFile_QTemporaryFile_CreateNativeFile(QtObjectPtr file){ + return QTemporaryFile::createNativeFile(*static_cast(file)); +} + +QtObjectPtr QTemporaryFile_QTemporaryFile_CreateNativeFile2(char* fileName){ + return QTemporaryFile::createNativeFile(QString(fileName)); +} + +char* QTemporaryFile_FileName(QtObjectPtr ptr){ + return static_cast(ptr)->fileName().toUtf8().data(); +} + +char* QTemporaryFile_FileTemplate(QtObjectPtr ptr){ + return static_cast(ptr)->fileTemplate().toUtf8().data(); +} + +int QTemporaryFile_Open(QtObjectPtr ptr){ + return static_cast(ptr)->open(); +} + +void QTemporaryFile_SetAutoRemove(QtObjectPtr ptr, int b){ + static_cast(ptr)->setAutoRemove(b != 0); +} + +void QTemporaryFile_SetFileTemplate(QtObjectPtr ptr, char* name){ + static_cast(ptr)->setFileTemplate(QString(name)); +} + +void QTemporaryFile_DestroyQTemporaryFile(QtObjectPtr ptr){ + static_cast(ptr)->~QTemporaryFile(); +} + diff --git a/core/qtemporaryfile.go b/core/qtemporaryfile.go new file mode 100755 index 00000000..c0e357ac --- /dev/null +++ b/core/qtemporaryfile.go @@ -0,0 +1,108 @@ +package core + +//#include "qtemporaryfile.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QTemporaryFile struct { + QFile +} + +type QTemporaryFileITF interface { + QFileITF + QTemporaryFilePTR() *QTemporaryFile +} + +func PointerFromQTemporaryFile(ptr QTemporaryFileITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTemporaryFilePTR().Pointer() + } + return nil +} + +func QTemporaryFileFromPointer(ptr unsafe.Pointer) *QTemporaryFile { + var n = new(QTemporaryFile) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QTemporaryFile_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QTemporaryFile) QTemporaryFilePTR() *QTemporaryFile { + return ptr +} + +func NewQTemporaryFile() *QTemporaryFile { + return QTemporaryFileFromPointer(unsafe.Pointer(C.QTemporaryFile_NewQTemporaryFile())) +} + +func NewQTemporaryFile3(parent QObjectITF) *QTemporaryFile { + return QTemporaryFileFromPointer(unsafe.Pointer(C.QTemporaryFile_NewQTemporaryFile3(C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func NewQTemporaryFile2(templateName string) *QTemporaryFile { + return QTemporaryFileFromPointer(unsafe.Pointer(C.QTemporaryFile_NewQTemporaryFile2(C.CString(templateName)))) +} + +func NewQTemporaryFile4(templateName string, parent QObjectITF) *QTemporaryFile { + return QTemporaryFileFromPointer(unsafe.Pointer(C.QTemporaryFile_NewQTemporaryFile4(C.CString(templateName), C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func (ptr *QTemporaryFile) AutoRemove() bool { + if ptr.Pointer() != nil { + return C.QTemporaryFile_AutoRemove(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func QTemporaryFile_CreateNativeFile(file QFileITF) *QTemporaryFile { + return QTemporaryFileFromPointer(unsafe.Pointer(C.QTemporaryFile_QTemporaryFile_CreateNativeFile(C.QtObjectPtr(PointerFromQFile(file))))) +} + +func QTemporaryFile_CreateNativeFile2(fileName string) *QTemporaryFile { + return QTemporaryFileFromPointer(unsafe.Pointer(C.QTemporaryFile_QTemporaryFile_CreateNativeFile2(C.CString(fileName)))) +} + +func (ptr *QTemporaryFile) FileName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTemporaryFile_FileName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTemporaryFile) FileTemplate() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTemporaryFile_FileTemplate(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTemporaryFile) Open() bool { + if ptr.Pointer() != nil { + return C.QTemporaryFile_Open(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTemporaryFile) SetAutoRemove(b bool) { + if ptr.Pointer() != nil { + C.QTemporaryFile_SetAutoRemove(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(b))) + } +} + +func (ptr *QTemporaryFile) SetFileTemplate(name string) { + if ptr.Pointer() != nil { + C.QTemporaryFile_SetFileTemplate(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func (ptr *QTemporaryFile) DestroyQTemporaryFile() { + if ptr.Pointer() != nil { + C.QTemporaryFile_DestroyQTemporaryFile(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qtemporaryfile.h b/core/qtemporaryfile.h new file mode 100755 index 00000000..71c8931d --- /dev/null +++ b/core/qtemporaryfile.h @@ -0,0 +1,22 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTemporaryFile_NewQTemporaryFile(); +QtObjectPtr QTemporaryFile_NewQTemporaryFile3(QtObjectPtr parent); +QtObjectPtr QTemporaryFile_NewQTemporaryFile2(char* templateName); +QtObjectPtr QTemporaryFile_NewQTemporaryFile4(char* templateName, QtObjectPtr parent); +int QTemporaryFile_AutoRemove(QtObjectPtr ptr); +QtObjectPtr QTemporaryFile_QTemporaryFile_CreateNativeFile(QtObjectPtr file); +QtObjectPtr QTemporaryFile_QTemporaryFile_CreateNativeFile2(char* fileName); +char* QTemporaryFile_FileName(QtObjectPtr ptr); +char* QTemporaryFile_FileTemplate(QtObjectPtr ptr); +int QTemporaryFile_Open(QtObjectPtr ptr); +void QTemporaryFile_SetAutoRemove(QtObjectPtr ptr, int b); +void QTemporaryFile_SetFileTemplate(QtObjectPtr ptr, char* name); +void QTemporaryFile_DestroyQTemporaryFile(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qtextboundaryfinder.cpp b/core/qtextboundaryfinder.cpp new file mode 100755 index 00000000..c1eb2199 --- /dev/null +++ b/core/qtextboundaryfinder.cpp @@ -0,0 +1,72 @@ +#include "qtextboundaryfinder.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextBoundaryFinder: public QTextBoundaryFinder { +public: +}; + +QtObjectPtr QTextBoundaryFinder_NewQTextBoundaryFinder(){ + return new QTextBoundaryFinder(); +} + +QtObjectPtr QTextBoundaryFinder_NewQTextBoundaryFinder3(int ty, char* stri){ + return new QTextBoundaryFinder(static_cast(ty), QString(stri)); +} + +QtObjectPtr QTextBoundaryFinder_NewQTextBoundaryFinder2(QtObjectPtr other){ + return new QTextBoundaryFinder(*static_cast(other)); +} + +int QTextBoundaryFinder_BoundaryReasons(QtObjectPtr ptr){ + return static_cast(ptr)->boundaryReasons(); +} + +int QTextBoundaryFinder_IsAtBoundary(QtObjectPtr ptr){ + return static_cast(ptr)->isAtBoundary(); +} + +int QTextBoundaryFinder_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QTextBoundaryFinder_Position(QtObjectPtr ptr){ + return static_cast(ptr)->position(); +} + +void QTextBoundaryFinder_SetPosition(QtObjectPtr ptr, int position){ + static_cast(ptr)->setPosition(position); +} + +char* QTextBoundaryFinder_String(QtObjectPtr ptr){ + return static_cast(ptr)->string().toUtf8().data(); +} + +void QTextBoundaryFinder_ToEnd(QtObjectPtr ptr){ + static_cast(ptr)->toEnd(); +} + +int QTextBoundaryFinder_ToNextBoundary(QtObjectPtr ptr){ + return static_cast(ptr)->toNextBoundary(); +} + +int QTextBoundaryFinder_ToPreviousBoundary(QtObjectPtr ptr){ + return static_cast(ptr)->toPreviousBoundary(); +} + +void QTextBoundaryFinder_ToStart(QtObjectPtr ptr){ + static_cast(ptr)->toStart(); +} + +int QTextBoundaryFinder_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QTextBoundaryFinder_DestroyQTextBoundaryFinder(QtObjectPtr ptr){ + static_cast(ptr)->~QTextBoundaryFinder(); +} + diff --git a/core/qtextboundaryfinder.go b/core/qtextboundaryfinder.go new file mode 100755 index 00000000..08e04756 --- /dev/null +++ b/core/qtextboundaryfinder.go @@ -0,0 +1,154 @@ +package core + +//#include "qtextboundaryfinder.h" +import "C" +import ( + "unsafe" +) + +type QTextBoundaryFinder struct { + ptr unsafe.Pointer +} + +type QTextBoundaryFinderITF interface { + QTextBoundaryFinderPTR() *QTextBoundaryFinder +} + +func (p *QTextBoundaryFinder) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTextBoundaryFinder) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTextBoundaryFinder(ptr QTextBoundaryFinderITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextBoundaryFinderPTR().Pointer() + } + return nil +} + +func QTextBoundaryFinderFromPointer(ptr unsafe.Pointer) *QTextBoundaryFinder { + var n = new(QTextBoundaryFinder) + n.SetPointer(ptr) + return n +} + +func (ptr *QTextBoundaryFinder) QTextBoundaryFinderPTR() *QTextBoundaryFinder { + return ptr +} + +//QTextBoundaryFinder::BoundaryReason +type QTextBoundaryFinder__BoundaryReason int + +var ( + QTextBoundaryFinder__NotAtBoundary = QTextBoundaryFinder__BoundaryReason(0) + QTextBoundaryFinder__BreakOpportunity = QTextBoundaryFinder__BoundaryReason(0x1f) + QTextBoundaryFinder__StartOfItem = QTextBoundaryFinder__BoundaryReason(0x20) + QTextBoundaryFinder__EndOfItem = QTextBoundaryFinder__BoundaryReason(0x40) + QTextBoundaryFinder__MandatoryBreak = QTextBoundaryFinder__BoundaryReason(0x80) + QTextBoundaryFinder__SoftHyphen = QTextBoundaryFinder__BoundaryReason(0x100) +) + +//QTextBoundaryFinder::BoundaryType +type QTextBoundaryFinder__BoundaryType int + +var ( + QTextBoundaryFinder__Grapheme = QTextBoundaryFinder__BoundaryType(0) + QTextBoundaryFinder__Word = QTextBoundaryFinder__BoundaryType(1) + QTextBoundaryFinder__Sentence = QTextBoundaryFinder__BoundaryType(2) + QTextBoundaryFinder__Line = QTextBoundaryFinder__BoundaryType(3) +) + +func NewQTextBoundaryFinder() *QTextBoundaryFinder { + return QTextBoundaryFinderFromPointer(unsafe.Pointer(C.QTextBoundaryFinder_NewQTextBoundaryFinder())) +} + +func NewQTextBoundaryFinder3(ty QTextBoundaryFinder__BoundaryType, stri string) *QTextBoundaryFinder { + return QTextBoundaryFinderFromPointer(unsafe.Pointer(C.QTextBoundaryFinder_NewQTextBoundaryFinder3(C.int(ty), C.CString(stri)))) +} + +func NewQTextBoundaryFinder2(other QTextBoundaryFinderITF) *QTextBoundaryFinder { + return QTextBoundaryFinderFromPointer(unsafe.Pointer(C.QTextBoundaryFinder_NewQTextBoundaryFinder2(C.QtObjectPtr(PointerFromQTextBoundaryFinder(other))))) +} + +func (ptr *QTextBoundaryFinder) BoundaryReasons() QTextBoundaryFinder__BoundaryReason { + if ptr.Pointer() != nil { + return QTextBoundaryFinder__BoundaryReason(C.QTextBoundaryFinder_BoundaryReasons(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextBoundaryFinder) IsAtBoundary() bool { + if ptr.Pointer() != nil { + return C.QTextBoundaryFinder_IsAtBoundary(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextBoundaryFinder) IsValid() bool { + if ptr.Pointer() != nil { + return C.QTextBoundaryFinder_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextBoundaryFinder) Position() int { + if ptr.Pointer() != nil { + return int(C.QTextBoundaryFinder_Position(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextBoundaryFinder) SetPosition(position int) { + if ptr.Pointer() != nil { + C.QTextBoundaryFinder_SetPosition(C.QtObjectPtr(ptr.Pointer()), C.int(position)) + } +} + +func (ptr *QTextBoundaryFinder) String() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextBoundaryFinder_String(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTextBoundaryFinder) ToEnd() { + if ptr.Pointer() != nil { + C.QTextBoundaryFinder_ToEnd(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextBoundaryFinder) ToNextBoundary() int { + if ptr.Pointer() != nil { + return int(C.QTextBoundaryFinder_ToNextBoundary(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextBoundaryFinder) ToPreviousBoundary() int { + if ptr.Pointer() != nil { + return int(C.QTextBoundaryFinder_ToPreviousBoundary(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextBoundaryFinder) ToStart() { + if ptr.Pointer() != nil { + C.QTextBoundaryFinder_ToStart(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextBoundaryFinder) Type() QTextBoundaryFinder__BoundaryType { + if ptr.Pointer() != nil { + return QTextBoundaryFinder__BoundaryType(C.QTextBoundaryFinder_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextBoundaryFinder) DestroyQTextBoundaryFinder() { + if ptr.Pointer() != nil { + C.QTextBoundaryFinder_DestroyQTextBoundaryFinder(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qtextboundaryfinder.h b/core/qtextboundaryfinder.h new file mode 100755 index 00000000..b9b266b4 --- /dev/null +++ b/core/qtextboundaryfinder.h @@ -0,0 +1,24 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTextBoundaryFinder_NewQTextBoundaryFinder(); +QtObjectPtr QTextBoundaryFinder_NewQTextBoundaryFinder3(int ty, char* stri); +QtObjectPtr QTextBoundaryFinder_NewQTextBoundaryFinder2(QtObjectPtr other); +int QTextBoundaryFinder_BoundaryReasons(QtObjectPtr ptr); +int QTextBoundaryFinder_IsAtBoundary(QtObjectPtr ptr); +int QTextBoundaryFinder_IsValid(QtObjectPtr ptr); +int QTextBoundaryFinder_Position(QtObjectPtr ptr); +void QTextBoundaryFinder_SetPosition(QtObjectPtr ptr, int position); +char* QTextBoundaryFinder_String(QtObjectPtr ptr); +void QTextBoundaryFinder_ToEnd(QtObjectPtr ptr); +int QTextBoundaryFinder_ToNextBoundary(QtObjectPtr ptr); +int QTextBoundaryFinder_ToPreviousBoundary(QtObjectPtr ptr); +void QTextBoundaryFinder_ToStart(QtObjectPtr ptr); +int QTextBoundaryFinder_Type(QtObjectPtr ptr); +void QTextBoundaryFinder_DestroyQTextBoundaryFinder(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qtextcodec.cpp b/core/qtextcodec.cpp new file mode 100755 index 00000000..01d0787a --- /dev/null +++ b/core/qtextcodec.cpp @@ -0,0 +1,70 @@ +#include "qtextcodec.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextCodec: public QTextCodec { +public: +}; + +int QTextCodec_CanEncode(QtObjectPtr ptr, QtObjectPtr ch){ + return static_cast(ptr)->canEncode(*static_cast(ch)); +} + +int QTextCodec_CanEncode2(QtObjectPtr ptr, char* s){ + return static_cast(ptr)->canEncode(QString(s)); +} + +QtObjectPtr QTextCodec_QTextCodec_CodecForHtml2(QtObjectPtr ba){ + return QTextCodec::codecForHtml(*static_cast(ba)); +} + +QtObjectPtr QTextCodec_QTextCodec_CodecForHtml(QtObjectPtr ba, QtObjectPtr defaultCodec){ + return QTextCodec::codecForHtml(*static_cast(ba), static_cast(defaultCodec)); +} + +QtObjectPtr QTextCodec_QTextCodec_CodecForLocale(){ + return QTextCodec::codecForLocale(); +} + +QtObjectPtr QTextCodec_QTextCodec_CodecForMib(int mib){ + return QTextCodec::codecForMib(mib); +} + +QtObjectPtr QTextCodec_QTextCodec_CodecForName(QtObjectPtr name){ + return QTextCodec::codecForName(*static_cast(name)); +} + +QtObjectPtr QTextCodec_QTextCodec_CodecForName2(char* name){ + return QTextCodec::codecForName(const_cast(name)); +} + +QtObjectPtr QTextCodec_QTextCodec_CodecForUtfText2(QtObjectPtr ba){ + return QTextCodec::codecForUtfText(*static_cast(ba)); +} + +QtObjectPtr QTextCodec_QTextCodec_CodecForUtfText(QtObjectPtr ba, QtObjectPtr defaultCodec){ + return QTextCodec::codecForUtfText(*static_cast(ba), static_cast(defaultCodec)); +} + +QtObjectPtr QTextCodec_MakeDecoder(QtObjectPtr ptr, int flags){ + return static_cast(ptr)->makeDecoder(static_cast(flags)); +} + +QtObjectPtr QTextCodec_MakeEncoder(QtObjectPtr ptr, int flags){ + return static_cast(ptr)->makeEncoder(static_cast(flags)); +} + +int QTextCodec_MibEnum(QtObjectPtr ptr){ + return static_cast(ptr)->mibEnum(); +} + +void QTextCodec_QTextCodec_SetCodecForLocale(QtObjectPtr c){ + QTextCodec::setCodecForLocale(static_cast(c)); +} + diff --git a/core/qtextcodec.go b/core/qtextcodec.go new file mode 100755 index 00000000..642ae353 --- /dev/null +++ b/core/qtextcodec.go @@ -0,0 +1,121 @@ +package core + +//#include "qtextcodec.h" +import "C" +import ( + "unsafe" +) + +type QTextCodec struct { + ptr unsafe.Pointer +} + +type QTextCodecITF interface { + QTextCodecPTR() *QTextCodec +} + +func (p *QTextCodec) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTextCodec) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTextCodec(ptr QTextCodecITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextCodecPTR().Pointer() + } + return nil +} + +func QTextCodecFromPointer(ptr unsafe.Pointer) *QTextCodec { + var n = new(QTextCodec) + n.SetPointer(ptr) + return n +} + +func (ptr *QTextCodec) QTextCodecPTR() *QTextCodec { + return ptr +} + +//QTextCodec::ConversionFlag +type QTextCodec__ConversionFlag int + +var ( + QTextCodec__DefaultConversion = QTextCodec__ConversionFlag(0) + QTextCodec__ConvertInvalidToNull = QTextCodec__ConversionFlag(0x80000000) + QTextCodec__IgnoreHeader = QTextCodec__ConversionFlag(0x1) + QTextCodec__FreeFunction = QTextCodec__ConversionFlag(0x2) +) + +func (ptr *QTextCodec) CanEncode(ch QCharITF) bool { + if ptr.Pointer() != nil { + return C.QTextCodec_CanEncode(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQChar(ch))) != 0 + } + return false +} + +func (ptr *QTextCodec) CanEncode2(s string) bool { + if ptr.Pointer() != nil { + return C.QTextCodec_CanEncode2(C.QtObjectPtr(ptr.Pointer()), C.CString(s)) != 0 + } + return false +} + +func QTextCodec_CodecForHtml2(ba QByteArrayITF) *QTextCodec { + return QTextCodecFromPointer(unsafe.Pointer(C.QTextCodec_QTextCodec_CodecForHtml2(C.QtObjectPtr(PointerFromQByteArray(ba))))) +} + +func QTextCodec_CodecForHtml(ba QByteArrayITF, defaultCodec QTextCodecITF) *QTextCodec { + return QTextCodecFromPointer(unsafe.Pointer(C.QTextCodec_QTextCodec_CodecForHtml(C.QtObjectPtr(PointerFromQByteArray(ba)), C.QtObjectPtr(PointerFromQTextCodec(defaultCodec))))) +} + +func QTextCodec_CodecForLocale() *QTextCodec { + return QTextCodecFromPointer(unsafe.Pointer(C.QTextCodec_QTextCodec_CodecForLocale())) +} + +func QTextCodec_CodecForMib(mib int) *QTextCodec { + return QTextCodecFromPointer(unsafe.Pointer(C.QTextCodec_QTextCodec_CodecForMib(C.int(mib)))) +} + +func QTextCodec_CodecForName(name QByteArrayITF) *QTextCodec { + return QTextCodecFromPointer(unsafe.Pointer(C.QTextCodec_QTextCodec_CodecForName(C.QtObjectPtr(PointerFromQByteArray(name))))) +} + +func QTextCodec_CodecForName2(name string) *QTextCodec { + return QTextCodecFromPointer(unsafe.Pointer(C.QTextCodec_QTextCodec_CodecForName2(C.CString(name)))) +} + +func QTextCodec_CodecForUtfText2(ba QByteArrayITF) *QTextCodec { + return QTextCodecFromPointer(unsafe.Pointer(C.QTextCodec_QTextCodec_CodecForUtfText2(C.QtObjectPtr(PointerFromQByteArray(ba))))) +} + +func QTextCodec_CodecForUtfText(ba QByteArrayITF, defaultCodec QTextCodecITF) *QTextCodec { + return QTextCodecFromPointer(unsafe.Pointer(C.QTextCodec_QTextCodec_CodecForUtfText(C.QtObjectPtr(PointerFromQByteArray(ba)), C.QtObjectPtr(PointerFromQTextCodec(defaultCodec))))) +} + +func (ptr *QTextCodec) MakeDecoder(flags QTextCodec__ConversionFlag) *QTextDecoder { + if ptr.Pointer() != nil { + return QTextDecoderFromPointer(unsafe.Pointer(C.QTextCodec_MakeDecoder(C.QtObjectPtr(ptr.Pointer()), C.int(flags)))) + } + return nil +} + +func (ptr *QTextCodec) MakeEncoder(flags QTextCodec__ConversionFlag) *QTextEncoder { + if ptr.Pointer() != nil { + return QTextEncoderFromPointer(unsafe.Pointer(C.QTextCodec_MakeEncoder(C.QtObjectPtr(ptr.Pointer()), C.int(flags)))) + } + return nil +} + +func (ptr *QTextCodec) MibEnum() int { + if ptr.Pointer() != nil { + return int(C.QTextCodec_MibEnum(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QTextCodec_SetCodecForLocale(c QTextCodecITF) { + C.QTextCodec_QTextCodec_SetCodecForLocale(C.QtObjectPtr(PointerFromQTextCodec(c))) +} diff --git a/core/qtextcodec.h b/core/qtextcodec.h new file mode 100755 index 00000000..f3033fb3 --- /dev/null +++ b/core/qtextcodec.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QTextCodec_CanEncode(QtObjectPtr ptr, QtObjectPtr ch); +int QTextCodec_CanEncode2(QtObjectPtr ptr, char* s); +QtObjectPtr QTextCodec_QTextCodec_CodecForHtml2(QtObjectPtr ba); +QtObjectPtr QTextCodec_QTextCodec_CodecForHtml(QtObjectPtr ba, QtObjectPtr defaultCodec); +QtObjectPtr QTextCodec_QTextCodec_CodecForLocale(); +QtObjectPtr QTextCodec_QTextCodec_CodecForMib(int mib); +QtObjectPtr QTextCodec_QTextCodec_CodecForName(QtObjectPtr name); +QtObjectPtr QTextCodec_QTextCodec_CodecForName2(char* name); +QtObjectPtr QTextCodec_QTextCodec_CodecForUtfText2(QtObjectPtr ba); +QtObjectPtr QTextCodec_QTextCodec_CodecForUtfText(QtObjectPtr ba, QtObjectPtr defaultCodec); +QtObjectPtr QTextCodec_MakeDecoder(QtObjectPtr ptr, int flags); +QtObjectPtr QTextCodec_MakeEncoder(QtObjectPtr ptr, int flags); +int QTextCodec_MibEnum(QtObjectPtr ptr); +void QTextCodec_QTextCodec_SetCodecForLocale(QtObjectPtr c); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qtextdecoder.cpp b/core/qtextdecoder.cpp new file mode 100755 index 00000000..29d94731 --- /dev/null +++ b/core/qtextdecoder.cpp @@ -0,0 +1,25 @@ +#include "qtextdecoder.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextDecoder: public QTextDecoder { +public: +}; + +QtObjectPtr QTextDecoder_NewQTextDecoder(QtObjectPtr codec){ + return new QTextDecoder(static_cast(codec)); +} + +QtObjectPtr QTextDecoder_NewQTextDecoder2(QtObjectPtr codec, int flags){ + return new QTextDecoder(static_cast(codec), static_cast(flags)); +} + +void QTextDecoder_DestroyQTextDecoder(QtObjectPtr ptr){ + static_cast(ptr)->~QTextDecoder(); +} + diff --git a/core/qtextdecoder.go b/core/qtextdecoder.go new file mode 100755 index 00000000..86887abc --- /dev/null +++ b/core/qtextdecoder.go @@ -0,0 +1,54 @@ +package core + +//#include "qtextdecoder.h" +import "C" +import ( + "unsafe" +) + +type QTextDecoder struct { + ptr unsafe.Pointer +} + +type QTextDecoderITF interface { + QTextDecoderPTR() *QTextDecoder +} + +func (p *QTextDecoder) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTextDecoder) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTextDecoder(ptr QTextDecoderITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextDecoderPTR().Pointer() + } + return nil +} + +func QTextDecoderFromPointer(ptr unsafe.Pointer) *QTextDecoder { + var n = new(QTextDecoder) + n.SetPointer(ptr) + return n +} + +func (ptr *QTextDecoder) QTextDecoderPTR() *QTextDecoder { + return ptr +} + +func NewQTextDecoder(codec QTextCodecITF) *QTextDecoder { + return QTextDecoderFromPointer(unsafe.Pointer(C.QTextDecoder_NewQTextDecoder(C.QtObjectPtr(PointerFromQTextCodec(codec))))) +} + +func NewQTextDecoder2(codec QTextCodecITF, flags QTextCodec__ConversionFlag) *QTextDecoder { + return QTextDecoderFromPointer(unsafe.Pointer(C.QTextDecoder_NewQTextDecoder2(C.QtObjectPtr(PointerFromQTextCodec(codec)), C.int(flags)))) +} + +func (ptr *QTextDecoder) DestroyQTextDecoder() { + if ptr.Pointer() != nil { + C.QTextDecoder_DestroyQTextDecoder(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qtextdecoder.h b/core/qtextdecoder.h new file mode 100755 index 00000000..741150d0 --- /dev/null +++ b/core/qtextdecoder.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTextDecoder_NewQTextDecoder(QtObjectPtr codec); +QtObjectPtr QTextDecoder_NewQTextDecoder2(QtObjectPtr codec, int flags); +void QTextDecoder_DestroyQTextDecoder(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qtextencoder.cpp b/core/qtextencoder.cpp new file mode 100755 index 00000000..b85713ca --- /dev/null +++ b/core/qtextencoder.cpp @@ -0,0 +1,25 @@ +#include "qtextencoder.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextEncoder: public QTextEncoder { +public: +}; + +QtObjectPtr QTextEncoder_NewQTextEncoder(QtObjectPtr codec){ + return new QTextEncoder(static_cast(codec)); +} + +QtObjectPtr QTextEncoder_NewQTextEncoder2(QtObjectPtr codec, int flags){ + return new QTextEncoder(static_cast(codec), static_cast(flags)); +} + +void QTextEncoder_DestroyQTextEncoder(QtObjectPtr ptr){ + static_cast(ptr)->~QTextEncoder(); +} + diff --git a/core/qtextencoder.go b/core/qtextencoder.go new file mode 100755 index 00000000..99201ae1 --- /dev/null +++ b/core/qtextencoder.go @@ -0,0 +1,54 @@ +package core + +//#include "qtextencoder.h" +import "C" +import ( + "unsafe" +) + +type QTextEncoder struct { + ptr unsafe.Pointer +} + +type QTextEncoderITF interface { + QTextEncoderPTR() *QTextEncoder +} + +func (p *QTextEncoder) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTextEncoder) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTextEncoder(ptr QTextEncoderITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextEncoderPTR().Pointer() + } + return nil +} + +func QTextEncoderFromPointer(ptr unsafe.Pointer) *QTextEncoder { + var n = new(QTextEncoder) + n.SetPointer(ptr) + return n +} + +func (ptr *QTextEncoder) QTextEncoderPTR() *QTextEncoder { + return ptr +} + +func NewQTextEncoder(codec QTextCodecITF) *QTextEncoder { + return QTextEncoderFromPointer(unsafe.Pointer(C.QTextEncoder_NewQTextEncoder(C.QtObjectPtr(PointerFromQTextCodec(codec))))) +} + +func NewQTextEncoder2(codec QTextCodecITF, flags QTextCodec__ConversionFlag) *QTextEncoder { + return QTextEncoderFromPointer(unsafe.Pointer(C.QTextEncoder_NewQTextEncoder2(C.QtObjectPtr(PointerFromQTextCodec(codec)), C.int(flags)))) +} + +func (ptr *QTextEncoder) DestroyQTextEncoder() { + if ptr.Pointer() != nil { + C.QTextEncoder_DestroyQTextEncoder(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qtextencoder.h b/core/qtextencoder.h new file mode 100755 index 00000000..ac526be9 --- /dev/null +++ b/core/qtextencoder.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTextEncoder_NewQTextEncoder(QtObjectPtr codec); +QtObjectPtr QTextEncoder_NewQTextEncoder2(QtObjectPtr codec, int flags); +void QTextEncoder_DestroyQTextEncoder(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qtextstream.cpp b/core/qtextstream.cpp new file mode 100755 index 00000000..6be574d0 --- /dev/null +++ b/core/qtextstream.cpp @@ -0,0 +1,152 @@ +#include "qtextstream.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextStream: public QTextStream { +public: +}; + +int QTextStream_AtEnd(QtObjectPtr ptr){ + return static_cast(ptr)->atEnd(); +} + +int QTextStream_AutoDetectUnicode(QtObjectPtr ptr){ + return static_cast(ptr)->autoDetectUnicode(); +} + +QtObjectPtr QTextStream_Codec(QtObjectPtr ptr){ + return static_cast(ptr)->codec(); +} + +QtObjectPtr QTextStream_Device(QtObjectPtr ptr){ + return static_cast(ptr)->device(); +} + +int QTextStream_FieldAlignment(QtObjectPtr ptr){ + return static_cast(ptr)->fieldAlignment(); +} + +int QTextStream_FieldWidth(QtObjectPtr ptr){ + return static_cast(ptr)->fieldWidth(); +} + +void QTextStream_Flush(QtObjectPtr ptr){ + static_cast(ptr)->flush(); +} + +int QTextStream_GenerateByteOrderMark(QtObjectPtr ptr){ + return static_cast(ptr)->generateByteOrderMark(); +} + +int QTextStream_IntegerBase(QtObjectPtr ptr){ + return static_cast(ptr)->integerBase(); +} + +int QTextStream_NumberFlags(QtObjectPtr ptr){ + return static_cast(ptr)->numberFlags(); +} + +char* QTextStream_ReadAll(QtObjectPtr ptr){ + return static_cast(ptr)->readAll().toUtf8().data(); +} + +int QTextStream_RealNumberNotation(QtObjectPtr ptr){ + return static_cast(ptr)->realNumberNotation(); +} + +int QTextStream_RealNumberPrecision(QtObjectPtr ptr){ + return static_cast(ptr)->realNumberPrecision(); +} + +void QTextStream_Reset(QtObjectPtr ptr){ + static_cast(ptr)->reset(); +} + +void QTextStream_ResetStatus(QtObjectPtr ptr){ + static_cast(ptr)->resetStatus(); +} + +void QTextStream_SetAutoDetectUnicode(QtObjectPtr ptr, int enabled){ + static_cast(ptr)->setAutoDetectUnicode(enabled != 0); +} + +void QTextStream_SetCodec(QtObjectPtr ptr, QtObjectPtr codec){ + static_cast(ptr)->setCodec(static_cast(codec)); +} + +void QTextStream_SetCodec2(QtObjectPtr ptr, char* codecName){ + static_cast(ptr)->setCodec(const_cast(codecName)); +} + +void QTextStream_SetDevice(QtObjectPtr ptr, QtObjectPtr device){ + static_cast(ptr)->setDevice(static_cast(device)); +} + +void QTextStream_SetFieldAlignment(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setFieldAlignment(static_cast(mode)); +} + +void QTextStream_SetFieldWidth(QtObjectPtr ptr, int width){ + static_cast(ptr)->setFieldWidth(width); +} + +void QTextStream_SetGenerateByteOrderMark(QtObjectPtr ptr, int generate){ + static_cast(ptr)->setGenerateByteOrderMark(generate != 0); +} + +void QTextStream_SetIntegerBase(QtObjectPtr ptr, int base){ + static_cast(ptr)->setIntegerBase(base); +} + +void QTextStream_SetLocale(QtObjectPtr ptr, QtObjectPtr locale){ + static_cast(ptr)->setLocale(*static_cast(locale)); +} + +void QTextStream_SetNumberFlags(QtObjectPtr ptr, int flags){ + static_cast(ptr)->setNumberFlags(static_cast(flags)); +} + +void QTextStream_SetPadChar(QtObjectPtr ptr, QtObjectPtr ch){ + static_cast(ptr)->setPadChar(*static_cast(ch)); +} + +void QTextStream_SetRealNumberNotation(QtObjectPtr ptr, int notation){ + static_cast(ptr)->setRealNumberNotation(static_cast(notation)); +} + +void QTextStream_SetRealNumberPrecision(QtObjectPtr ptr, int precision){ + static_cast(ptr)->setRealNumberPrecision(precision); +} + +void QTextStream_SetStatus(QtObjectPtr ptr, int status){ + static_cast(ptr)->setStatus(static_cast(status)); +} + +void QTextStream_SetString(QtObjectPtr ptr, char* stri, int openMode){ + static_cast(ptr)->setString(new QString(stri), static_cast(openMode)); +} + +void QTextStream_SkipWhiteSpace(QtObjectPtr ptr){ + static_cast(ptr)->skipWhiteSpace(); +} + +int QTextStream_Status(QtObjectPtr ptr){ + return static_cast(ptr)->status(); +} + +char* QTextStream_String(QtObjectPtr ptr){ + return static_cast(ptr)->string()->toUtf8().data(); +} + +void QTextStream_DestroyQTextStream(QtObjectPtr ptr){ + static_cast(ptr)->~QTextStream(); +} + diff --git a/core/qtextstream.go b/core/qtextstream.go new file mode 100755 index 00000000..8b1b5f31 --- /dev/null +++ b/core/qtextstream.go @@ -0,0 +1,299 @@ +package core + +//#include "qtextstream.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QTextStream struct { + ptr unsafe.Pointer +} + +type QTextStreamITF interface { + QTextStreamPTR() *QTextStream +} + +func (p *QTextStream) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTextStream) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTextStream(ptr QTextStreamITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextStreamPTR().Pointer() + } + return nil +} + +func QTextStreamFromPointer(ptr unsafe.Pointer) *QTextStream { + var n = new(QTextStream) + n.SetPointer(ptr) + return n +} + +func (ptr *QTextStream) QTextStreamPTR() *QTextStream { + return ptr +} + +//QTextStream::FieldAlignment +type QTextStream__FieldAlignment int + +var ( + QTextStream__AlignLeft = QTextStream__FieldAlignment(0) + QTextStream__AlignRight = QTextStream__FieldAlignment(1) + QTextStream__AlignCenter = QTextStream__FieldAlignment(2) + QTextStream__AlignAccountingStyle = QTextStream__FieldAlignment(3) +) + +//QTextStream::NumberFlag +type QTextStream__NumberFlag int + +var ( + QTextStream__ShowBase = QTextStream__NumberFlag(0x1) + QTextStream__ForcePoint = QTextStream__NumberFlag(0x2) + QTextStream__ForceSign = QTextStream__NumberFlag(0x4) + QTextStream__UppercaseBase = QTextStream__NumberFlag(0x8) + QTextStream__UppercaseDigits = QTextStream__NumberFlag(0x10) +) + +//QTextStream::RealNumberNotation +type QTextStream__RealNumberNotation int + +var ( + QTextStream__SmartNotation = QTextStream__RealNumberNotation(0) + QTextStream__FixedNotation = QTextStream__RealNumberNotation(1) + QTextStream__ScientificNotation = QTextStream__RealNumberNotation(2) +) + +//QTextStream::Status +type QTextStream__Status int + +var ( + QTextStream__Ok = QTextStream__Status(0) + QTextStream__ReadPastEnd = QTextStream__Status(1) + QTextStream__ReadCorruptData = QTextStream__Status(2) + QTextStream__WriteFailed = QTextStream__Status(3) +) + +func (ptr *QTextStream) AtEnd() bool { + if ptr.Pointer() != nil { + return C.QTextStream_AtEnd(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextStream) AutoDetectUnicode() bool { + if ptr.Pointer() != nil { + return C.QTextStream_AutoDetectUnicode(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextStream) Codec() *QTextCodec { + if ptr.Pointer() != nil { + return QTextCodecFromPointer(unsafe.Pointer(C.QTextStream_Codec(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTextStream) Device() *QIODevice { + if ptr.Pointer() != nil { + return QIODeviceFromPointer(unsafe.Pointer(C.QTextStream_Device(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTextStream) FieldAlignment() QTextStream__FieldAlignment { + if ptr.Pointer() != nil { + return QTextStream__FieldAlignment(C.QTextStream_FieldAlignment(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextStream) FieldWidth() int { + if ptr.Pointer() != nil { + return int(C.QTextStream_FieldWidth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextStream) Flush() { + if ptr.Pointer() != nil { + C.QTextStream_Flush(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextStream) GenerateByteOrderMark() bool { + if ptr.Pointer() != nil { + return C.QTextStream_GenerateByteOrderMark(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextStream) IntegerBase() int { + if ptr.Pointer() != nil { + return int(C.QTextStream_IntegerBase(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextStream) NumberFlags() QTextStream__NumberFlag { + if ptr.Pointer() != nil { + return QTextStream__NumberFlag(C.QTextStream_NumberFlags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextStream) ReadAll() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextStream_ReadAll(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTextStream) RealNumberNotation() QTextStream__RealNumberNotation { + if ptr.Pointer() != nil { + return QTextStream__RealNumberNotation(C.QTextStream_RealNumberNotation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextStream) RealNumberPrecision() int { + if ptr.Pointer() != nil { + return int(C.QTextStream_RealNumberPrecision(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextStream) Reset() { + if ptr.Pointer() != nil { + C.QTextStream_Reset(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextStream) ResetStatus() { + if ptr.Pointer() != nil { + C.QTextStream_ResetStatus(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextStream) SetAutoDetectUnicode(enabled bool) { + if ptr.Pointer() != nil { + C.QTextStream_SetAutoDetectUnicode(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QTextStream) SetCodec(codec QTextCodecITF) { + if ptr.Pointer() != nil { + C.QTextStream_SetCodec(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextCodec(codec))) + } +} + +func (ptr *QTextStream) SetCodec2(codecName string) { + if ptr.Pointer() != nil { + C.QTextStream_SetCodec2(C.QtObjectPtr(ptr.Pointer()), C.CString(codecName)) + } +} + +func (ptr *QTextStream) SetDevice(device QIODeviceITF) { + if ptr.Pointer() != nil { + C.QTextStream_SetDevice(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQIODevice(device))) + } +} + +func (ptr *QTextStream) SetFieldAlignment(mode QTextStream__FieldAlignment) { + if ptr.Pointer() != nil { + C.QTextStream_SetFieldAlignment(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QTextStream) SetFieldWidth(width int) { + if ptr.Pointer() != nil { + C.QTextStream_SetFieldWidth(C.QtObjectPtr(ptr.Pointer()), C.int(width)) + } +} + +func (ptr *QTextStream) SetGenerateByteOrderMark(generate bool) { + if ptr.Pointer() != nil { + C.QTextStream_SetGenerateByteOrderMark(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(generate))) + } +} + +func (ptr *QTextStream) SetIntegerBase(base int) { + if ptr.Pointer() != nil { + C.QTextStream_SetIntegerBase(C.QtObjectPtr(ptr.Pointer()), C.int(base)) + } +} + +func (ptr *QTextStream) SetLocale(locale QLocaleITF) { + if ptr.Pointer() != nil { + C.QTextStream_SetLocale(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLocale(locale))) + } +} + +func (ptr *QTextStream) SetNumberFlags(flags QTextStream__NumberFlag) { + if ptr.Pointer() != nil { + C.QTextStream_SetNumberFlags(C.QtObjectPtr(ptr.Pointer()), C.int(flags)) + } +} + +func (ptr *QTextStream) SetPadChar(ch QCharITF) { + if ptr.Pointer() != nil { + C.QTextStream_SetPadChar(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQChar(ch))) + } +} + +func (ptr *QTextStream) SetRealNumberNotation(notation QTextStream__RealNumberNotation) { + if ptr.Pointer() != nil { + C.QTextStream_SetRealNumberNotation(C.QtObjectPtr(ptr.Pointer()), C.int(notation)) + } +} + +func (ptr *QTextStream) SetRealNumberPrecision(precision int) { + if ptr.Pointer() != nil { + C.QTextStream_SetRealNumberPrecision(C.QtObjectPtr(ptr.Pointer()), C.int(precision)) + } +} + +func (ptr *QTextStream) SetStatus(status QTextStream__Status) { + if ptr.Pointer() != nil { + C.QTextStream_SetStatus(C.QtObjectPtr(ptr.Pointer()), C.int(status)) + } +} + +func (ptr *QTextStream) SetString(stri string, openMode QIODevice__OpenModeFlag) { + if ptr.Pointer() != nil { + C.QTextStream_SetString(C.QtObjectPtr(ptr.Pointer()), C.CString(stri), C.int(openMode)) + } +} + +func (ptr *QTextStream) SkipWhiteSpace() { + if ptr.Pointer() != nil { + C.QTextStream_SkipWhiteSpace(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextStream) Status() QTextStream__Status { + if ptr.Pointer() != nil { + return QTextStream__Status(C.QTextStream_Status(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextStream) String() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextStream_String(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTextStream) DestroyQTextStream() { + if ptr.Pointer() != nil { + C.QTextStream_DestroyQTextStream(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qtextstream.h b/core/qtextstream.h new file mode 100755 index 00000000..51666ed4 --- /dev/null +++ b/core/qtextstream.h @@ -0,0 +1,43 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QTextStream_AtEnd(QtObjectPtr ptr); +int QTextStream_AutoDetectUnicode(QtObjectPtr ptr); +QtObjectPtr QTextStream_Codec(QtObjectPtr ptr); +QtObjectPtr QTextStream_Device(QtObjectPtr ptr); +int QTextStream_FieldAlignment(QtObjectPtr ptr); +int QTextStream_FieldWidth(QtObjectPtr ptr); +void QTextStream_Flush(QtObjectPtr ptr); +int QTextStream_GenerateByteOrderMark(QtObjectPtr ptr); +int QTextStream_IntegerBase(QtObjectPtr ptr); +int QTextStream_NumberFlags(QtObjectPtr ptr); +char* QTextStream_ReadAll(QtObjectPtr ptr); +int QTextStream_RealNumberNotation(QtObjectPtr ptr); +int QTextStream_RealNumberPrecision(QtObjectPtr ptr); +void QTextStream_Reset(QtObjectPtr ptr); +void QTextStream_ResetStatus(QtObjectPtr ptr); +void QTextStream_SetAutoDetectUnicode(QtObjectPtr ptr, int enabled); +void QTextStream_SetCodec(QtObjectPtr ptr, QtObjectPtr codec); +void QTextStream_SetCodec2(QtObjectPtr ptr, char* codecName); +void QTextStream_SetDevice(QtObjectPtr ptr, QtObjectPtr device); +void QTextStream_SetFieldAlignment(QtObjectPtr ptr, int mode); +void QTextStream_SetFieldWidth(QtObjectPtr ptr, int width); +void QTextStream_SetGenerateByteOrderMark(QtObjectPtr ptr, int generate); +void QTextStream_SetIntegerBase(QtObjectPtr ptr, int base); +void QTextStream_SetLocale(QtObjectPtr ptr, QtObjectPtr locale); +void QTextStream_SetNumberFlags(QtObjectPtr ptr, int flags); +void QTextStream_SetPadChar(QtObjectPtr ptr, QtObjectPtr ch); +void QTextStream_SetRealNumberNotation(QtObjectPtr ptr, int notation); +void QTextStream_SetRealNumberPrecision(QtObjectPtr ptr, int precision); +void QTextStream_SetStatus(QtObjectPtr ptr, int status); +void QTextStream_SetString(QtObjectPtr ptr, char* stri, int openMode); +void QTextStream_SkipWhiteSpace(QtObjectPtr ptr); +int QTextStream_Status(QtObjectPtr ptr); +char* QTextStream_String(QtObjectPtr ptr); +void QTextStream_DestroyQTextStream(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qtglobalstatic.cpp b/core/qtglobalstatic.cpp new file mode 100755 index 00000000..0f56a84d --- /dev/null +++ b/core/qtglobalstatic.cpp @@ -0,0 +1,7 @@ +#include "qtglobalstatic.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qtglobalstatic.go b/core/qtglobalstatic.go new file mode 100755 index 00000000..e35461ca --- /dev/null +++ b/core/qtglobalstatic.go @@ -0,0 +1,50 @@ +package core + +//#include "qtglobalstatic.h" +import "C" +import ( + "unsafe" +) + +type QtGlobalStatic struct { + ptr unsafe.Pointer +} + +type QtGlobalStaticITF interface { + QtGlobalStaticPTR() *QtGlobalStatic +} + +func (p *QtGlobalStatic) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QtGlobalStatic) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQtGlobalStatic(ptr QtGlobalStaticITF) unsafe.Pointer { + if ptr != nil { + return ptr.QtGlobalStaticPTR().Pointer() + } + return nil +} + +func QtGlobalStaticFromPointer(ptr unsafe.Pointer) *QtGlobalStatic { + var n = new(QtGlobalStatic) + n.SetPointer(ptr) + return n +} + +func (ptr *QtGlobalStatic) QtGlobalStaticPTR() *QtGlobalStatic { + return ptr +} + +//QtGlobalStatic::GuardValues +type QtGlobalStatic__GuardValues int + +var ( + QtGlobalStatic__Destroyed = QtGlobalStatic__GuardValues(-2) + QtGlobalStatic__Initialized = QtGlobalStatic__GuardValues(-1) + QtGlobalStatic__Uninitialized = QtGlobalStatic__GuardValues(0) + QtGlobalStatic__Initializing = QtGlobalStatic__GuardValues(1) +) diff --git a/core/qtglobalstatic.h b/core/qtglobalstatic.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qtglobalstatic.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qthread.cpp b/core/qthread.cpp new file mode 100755 index 00000000..8fe0a20b --- /dev/null +++ b/core/qthread.cpp @@ -0,0 +1,110 @@ +#include "qthread.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQThread: public QThread { +public: +void Signal_Finished(){callbackQThreadFinished(this->objectName().toUtf8().data());}; +void Signal_Started(){callbackQThreadStarted(this->objectName().toUtf8().data());}; +}; + +void QThread_SetPriority(QtObjectPtr ptr, int priority){ + static_cast(ptr)->setPriority(static_cast(priority)); +} + +QtObjectPtr QThread_NewQThread(QtObjectPtr parent){ + return new QThread(static_cast(parent)); +} + +QtObjectPtr QThread_QThread_CurrentThread(){ + return QThread::currentThread(); +} + +int QThread_Event(QtObjectPtr ptr, QtObjectPtr event){ + return static_cast(ptr)->event(static_cast(event)); +} + +QtObjectPtr QThread_EventDispatcher(QtObjectPtr ptr){ + return static_cast(ptr)->eventDispatcher(); +} + +void QThread_Exit(QtObjectPtr ptr, int returnCode){ + static_cast(ptr)->exit(returnCode); +} + +void QThread_ConnectFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QThread::finished, static_cast(ptr), static_cast(&MyQThread::Signal_Finished));; +} + +void QThread_DisconnectFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QThread::finished, static_cast(ptr), static_cast(&MyQThread::Signal_Finished));; +} + +int QThread_IsFinished(QtObjectPtr ptr){ + return static_cast(ptr)->isFinished(); +} + +int QThread_IsInterruptionRequested(QtObjectPtr ptr){ + return static_cast(ptr)->isInterruptionRequested(); +} + +int QThread_IsRunning(QtObjectPtr ptr){ + return static_cast(ptr)->isRunning(); +} + +int QThread_LoopLevel(QtObjectPtr ptr){ + return static_cast(ptr)->loopLevel(); +} + +int QThread_Priority(QtObjectPtr ptr){ + return static_cast(ptr)->priority(); +} + +void QThread_Quit(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "quit"); +} + +void QThread_RequestInterruption(QtObjectPtr ptr){ + static_cast(ptr)->requestInterruption(); +} + +void QThread_SetEventDispatcher(QtObjectPtr ptr, QtObjectPtr eventDispatcher){ + static_cast(ptr)->setEventDispatcher(static_cast(eventDispatcher)); +} + +void QThread_ConnectStarted(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QThread::started, static_cast(ptr), static_cast(&MyQThread::Signal_Started));; +} + +void QThread_DisconnectStarted(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QThread::started, static_cast(ptr), static_cast(&MyQThread::Signal_Started));; +} + +void QThread_DestroyQThread(QtObjectPtr ptr){ + static_cast(ptr)->~QThread(); +} + +int QThread_QThread_IdealThreadCount(){ + return QThread::idealThreadCount(); +} + +void QThread_Start(QtObjectPtr ptr, int priority){ + QMetaObject::invokeMethod(static_cast(ptr), "start", Q_ARG(QThread::Priority, static_cast(priority))); +} + +void QThread_Terminate(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "terminate"); +} + +void QThread_QThread_YieldCurrentThread(){ + QThread::yieldCurrentThread(); +} + diff --git a/core/qthread.go b/core/qthread.go new file mode 100755 index 00000000..6ef4fa26 --- /dev/null +++ b/core/qthread.go @@ -0,0 +1,203 @@ +package core + +//#include "qthread.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QThread struct { + QObject +} + +type QThreadITF interface { + QObjectITF + QThreadPTR() *QThread +} + +func PointerFromQThread(ptr QThreadITF) unsafe.Pointer { + if ptr != nil { + return ptr.QThreadPTR().Pointer() + } + return nil +} + +func QThreadFromPointer(ptr unsafe.Pointer) *QThread { + var n = new(QThread) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QThread_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QThread) QThreadPTR() *QThread { + return ptr +} + +//QThread::Priority +type QThread__Priority int + +var ( + QThread__IdlePriority = QThread__Priority(0) + QThread__LowestPriority = QThread__Priority(1) + QThread__LowPriority = QThread__Priority(2) + QThread__NormalPriority = QThread__Priority(3) + QThread__HighPriority = QThread__Priority(4) + QThread__HighestPriority = QThread__Priority(5) + QThread__TimeCriticalPriority = QThread__Priority(6) + QThread__InheritPriority = QThread__Priority(7) +) + +func (ptr *QThread) SetPriority(priority QThread__Priority) { + if ptr.Pointer() != nil { + C.QThread_SetPriority(C.QtObjectPtr(ptr.Pointer()), C.int(priority)) + } +} + +func NewQThread(parent QObjectITF) *QThread { + return QThreadFromPointer(unsafe.Pointer(C.QThread_NewQThread(C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func QThread_CurrentThread() *QThread { + return QThreadFromPointer(unsafe.Pointer(C.QThread_QThread_CurrentThread())) +} + +func (ptr *QThread) Event(event QEventITF) bool { + if ptr.Pointer() != nil { + return C.QThread_Event(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQEvent(event))) != 0 + } + return false +} + +func (ptr *QThread) EventDispatcher() *QAbstractEventDispatcher { + if ptr.Pointer() != nil { + return QAbstractEventDispatcherFromPointer(unsafe.Pointer(C.QThread_EventDispatcher(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QThread) Exit(returnCode int) { + if ptr.Pointer() != nil { + C.QThread_Exit(C.QtObjectPtr(ptr.Pointer()), C.int(returnCode)) + } +} + +func (ptr *QThread) ConnectFinished(f func()) { + if ptr.Pointer() != nil { + C.QThread_ConnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "finished", f) + } +} + +func (ptr *QThread) DisconnectFinished() { + if ptr.Pointer() != nil { + C.QThread_DisconnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "finished") + } +} + +//export callbackQThreadFinished +func callbackQThreadFinished(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "finished").(func())() +} + +func (ptr *QThread) IsFinished() bool { + if ptr.Pointer() != nil { + return C.QThread_IsFinished(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QThread) IsInterruptionRequested() bool { + if ptr.Pointer() != nil { + return C.QThread_IsInterruptionRequested(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QThread) IsRunning() bool { + if ptr.Pointer() != nil { + return C.QThread_IsRunning(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QThread) LoopLevel() int { + if ptr.Pointer() != nil { + return int(C.QThread_LoopLevel(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QThread) Priority() QThread__Priority { + if ptr.Pointer() != nil { + return QThread__Priority(C.QThread_Priority(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QThread) Quit() { + if ptr.Pointer() != nil { + C.QThread_Quit(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QThread) RequestInterruption() { + if ptr.Pointer() != nil { + C.QThread_RequestInterruption(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QThread) SetEventDispatcher(eventDispatcher QAbstractEventDispatcherITF) { + if ptr.Pointer() != nil { + C.QThread_SetEventDispatcher(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractEventDispatcher(eventDispatcher))) + } +} + +func (ptr *QThread) ConnectStarted(f func()) { + if ptr.Pointer() != nil { + C.QThread_ConnectStarted(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "started", f) + } +} + +func (ptr *QThread) DisconnectStarted() { + if ptr.Pointer() != nil { + C.QThread_DisconnectStarted(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "started") + } +} + +//export callbackQThreadStarted +func callbackQThreadStarted(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "started").(func())() +} + +func (ptr *QThread) DestroyQThread() { + if ptr.Pointer() != nil { + C.QThread_DestroyQThread(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} + +func QThread_IdealThreadCount() int { + return int(C.QThread_QThread_IdealThreadCount()) +} + +func (ptr *QThread) Start(priority QThread__Priority) { + if ptr.Pointer() != nil { + C.QThread_Start(C.QtObjectPtr(ptr.Pointer()), C.int(priority)) + } +} + +func (ptr *QThread) Terminate() { + if ptr.Pointer() != nil { + C.QThread_Terminate(C.QtObjectPtr(ptr.Pointer())) + } +} + +func QThread_YieldCurrentThread() { + C.QThread_QThread_YieldCurrentThread() +} diff --git a/core/qthread.h b/core/qthread.h new file mode 100755 index 00000000..f3de61fe --- /dev/null +++ b/core/qthread.h @@ -0,0 +1,32 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QThread_SetPriority(QtObjectPtr ptr, int priority); +QtObjectPtr QThread_NewQThread(QtObjectPtr parent); +QtObjectPtr QThread_QThread_CurrentThread(); +int QThread_Event(QtObjectPtr ptr, QtObjectPtr event); +QtObjectPtr QThread_EventDispatcher(QtObjectPtr ptr); +void QThread_Exit(QtObjectPtr ptr, int returnCode); +void QThread_ConnectFinished(QtObjectPtr ptr); +void QThread_DisconnectFinished(QtObjectPtr ptr); +int QThread_IsFinished(QtObjectPtr ptr); +int QThread_IsInterruptionRequested(QtObjectPtr ptr); +int QThread_IsRunning(QtObjectPtr ptr); +int QThread_LoopLevel(QtObjectPtr ptr); +int QThread_Priority(QtObjectPtr ptr); +void QThread_Quit(QtObjectPtr ptr); +void QThread_RequestInterruption(QtObjectPtr ptr); +void QThread_SetEventDispatcher(QtObjectPtr ptr, QtObjectPtr eventDispatcher); +void QThread_ConnectStarted(QtObjectPtr ptr); +void QThread_DisconnectStarted(QtObjectPtr ptr); +void QThread_DestroyQThread(QtObjectPtr ptr); +int QThread_QThread_IdealThreadCount(); +void QThread_Start(QtObjectPtr ptr, int priority); +void QThread_Terminate(QtObjectPtr ptr); +void QThread_QThread_YieldCurrentThread(); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qthreadpool.cpp b/core/qthreadpool.cpp new file mode 100755 index 00000000..5b71c28f --- /dev/null +++ b/core/qthreadpool.cpp @@ -0,0 +1,75 @@ +#include "qthreadpool.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQThreadPool: public QThreadPool { +public: +}; + +int QThreadPool_ActiveThreadCount(QtObjectPtr ptr){ + return static_cast(ptr)->activeThreadCount(); +} + +int QThreadPool_ExpiryTimeout(QtObjectPtr ptr){ + return static_cast(ptr)->expiryTimeout(); +} + +int QThreadPool_MaxThreadCount(QtObjectPtr ptr){ + return static_cast(ptr)->maxThreadCount(); +} + +void QThreadPool_SetExpiryTimeout(QtObjectPtr ptr, int expiryTimeout){ + static_cast(ptr)->setExpiryTimeout(expiryTimeout); +} + +void QThreadPool_SetMaxThreadCount(QtObjectPtr ptr, int maxThreadCount){ + static_cast(ptr)->setMaxThreadCount(maxThreadCount); +} + +QtObjectPtr QThreadPool_NewQThreadPool(QtObjectPtr parent){ + return new QThreadPool(static_cast(parent)); +} + +void QThreadPool_Cancel(QtObjectPtr ptr, QtObjectPtr runnable){ + static_cast(ptr)->cancel(static_cast(runnable)); +} + +void QThreadPool_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +QtObjectPtr QThreadPool_QThreadPool_GlobalInstance(){ + return QThreadPool::globalInstance(); +} + +void QThreadPool_ReleaseThread(QtObjectPtr ptr){ + static_cast(ptr)->releaseThread(); +} + +void QThreadPool_ReserveThread(QtObjectPtr ptr){ + static_cast(ptr)->reserveThread(); +} + +void QThreadPool_Start(QtObjectPtr ptr, QtObjectPtr runnable, int priority){ + static_cast(ptr)->start(static_cast(runnable), priority); +} + +int QThreadPool_TryStart(QtObjectPtr ptr, QtObjectPtr runnable){ + return static_cast(ptr)->tryStart(static_cast(runnable)); +} + +int QThreadPool_WaitForDone(QtObjectPtr ptr, int msecs){ + return static_cast(ptr)->waitForDone(msecs); +} + +void QThreadPool_DestroyQThreadPool(QtObjectPtr ptr){ + static_cast(ptr)->~QThreadPool(); +} + diff --git a/core/qthreadpool.go b/core/qthreadpool.go new file mode 100755 index 00000000..713ac117 --- /dev/null +++ b/core/qthreadpool.go @@ -0,0 +1,129 @@ +package core + +//#include "qthreadpool.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QThreadPool struct { + QObject +} + +type QThreadPoolITF interface { + QObjectITF + QThreadPoolPTR() *QThreadPool +} + +func PointerFromQThreadPool(ptr QThreadPoolITF) unsafe.Pointer { + if ptr != nil { + return ptr.QThreadPoolPTR().Pointer() + } + return nil +} + +func QThreadPoolFromPointer(ptr unsafe.Pointer) *QThreadPool { + var n = new(QThreadPool) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QThreadPool_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QThreadPool) QThreadPoolPTR() *QThreadPool { + return ptr +} + +func (ptr *QThreadPool) ActiveThreadCount() int { + if ptr.Pointer() != nil { + return int(C.QThreadPool_ActiveThreadCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QThreadPool) ExpiryTimeout() int { + if ptr.Pointer() != nil { + return int(C.QThreadPool_ExpiryTimeout(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QThreadPool) MaxThreadCount() int { + if ptr.Pointer() != nil { + return int(C.QThreadPool_MaxThreadCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QThreadPool) SetExpiryTimeout(expiryTimeout int) { + if ptr.Pointer() != nil { + C.QThreadPool_SetExpiryTimeout(C.QtObjectPtr(ptr.Pointer()), C.int(expiryTimeout)) + } +} + +func (ptr *QThreadPool) SetMaxThreadCount(maxThreadCount int) { + if ptr.Pointer() != nil { + C.QThreadPool_SetMaxThreadCount(C.QtObjectPtr(ptr.Pointer()), C.int(maxThreadCount)) + } +} + +func NewQThreadPool(parent QObjectITF) *QThreadPool { + return QThreadPoolFromPointer(unsafe.Pointer(C.QThreadPool_NewQThreadPool(C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func (ptr *QThreadPool) Cancel(runnable QRunnableITF) { + if ptr.Pointer() != nil { + C.QThreadPool_Cancel(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQRunnable(runnable))) + } +} + +func (ptr *QThreadPool) Clear() { + if ptr.Pointer() != nil { + C.QThreadPool_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func QThreadPool_GlobalInstance() *QThreadPool { + return QThreadPoolFromPointer(unsafe.Pointer(C.QThreadPool_QThreadPool_GlobalInstance())) +} + +func (ptr *QThreadPool) ReleaseThread() { + if ptr.Pointer() != nil { + C.QThreadPool_ReleaseThread(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QThreadPool) ReserveThread() { + if ptr.Pointer() != nil { + C.QThreadPool_ReserveThread(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QThreadPool) Start(runnable QRunnableITF, priority int) { + if ptr.Pointer() != nil { + C.QThreadPool_Start(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQRunnable(runnable)), C.int(priority)) + } +} + +func (ptr *QThreadPool) TryStart(runnable QRunnableITF) bool { + if ptr.Pointer() != nil { + return C.QThreadPool_TryStart(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQRunnable(runnable))) != 0 + } + return false +} + +func (ptr *QThreadPool) WaitForDone(msecs int) bool { + if ptr.Pointer() != nil { + return C.QThreadPool_WaitForDone(C.QtObjectPtr(ptr.Pointer()), C.int(msecs)) != 0 + } + return false +} + +func (ptr *QThreadPool) DestroyQThreadPool() { + if ptr.Pointer() != nil { + C.QThreadPool_DestroyQThreadPool(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qthreadpool.h b/core/qthreadpool.h new file mode 100755 index 00000000..17425294 --- /dev/null +++ b/core/qthreadpool.h @@ -0,0 +1,24 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QThreadPool_ActiveThreadCount(QtObjectPtr ptr); +int QThreadPool_ExpiryTimeout(QtObjectPtr ptr); +int QThreadPool_MaxThreadCount(QtObjectPtr ptr); +void QThreadPool_SetExpiryTimeout(QtObjectPtr ptr, int expiryTimeout); +void QThreadPool_SetMaxThreadCount(QtObjectPtr ptr, int maxThreadCount); +QtObjectPtr QThreadPool_NewQThreadPool(QtObjectPtr parent); +void QThreadPool_Cancel(QtObjectPtr ptr, QtObjectPtr runnable); +void QThreadPool_Clear(QtObjectPtr ptr); +QtObjectPtr QThreadPool_QThreadPool_GlobalInstance(); +void QThreadPool_ReleaseThread(QtObjectPtr ptr); +void QThreadPool_ReserveThread(QtObjectPtr ptr); +void QThreadPool_Start(QtObjectPtr ptr, QtObjectPtr runnable, int priority); +int QThreadPool_TryStart(QtObjectPtr ptr, QtObjectPtr runnable); +int QThreadPool_WaitForDone(QtObjectPtr ptr, int msecs); +void QThreadPool_DestroyQThreadPool(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qthreadstorage.cpp b/core/qthreadstorage.cpp new file mode 100755 index 00000000..c186f9e2 --- /dev/null +++ b/core/qthreadstorage.cpp @@ -0,0 +1,9 @@ +#include "qthreadstorage.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qthreadstorage.go b/core/qthreadstorage.go new file mode 100755 index 00000000..41739ab4 --- /dev/null +++ b/core/qthreadstorage.go @@ -0,0 +1,40 @@ +package core + +//#include "qthreadstorage.h" +import "C" +import ( + "unsafe" +) + +type QThreadStorage struct { + ptr unsafe.Pointer +} + +type QThreadStorageITF interface { + QThreadStoragePTR() *QThreadStorage +} + +func (p *QThreadStorage) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QThreadStorage) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQThreadStorage(ptr QThreadStorageITF) unsafe.Pointer { + if ptr != nil { + return ptr.QThreadStoragePTR().Pointer() + } + return nil +} + +func QThreadStorageFromPointer(ptr unsafe.Pointer) *QThreadStorage { + var n = new(QThreadStorage) + n.SetPointer(ptr) + return n +} + +func (ptr *QThreadStorage) QThreadStoragePTR() *QThreadStorage { + return ptr +} diff --git a/core/qthreadstorage.h b/core/qthreadstorage.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qthreadstorage.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qtime.cpp b/core/qtime.cpp new file mode 100755 index 00000000..71b9a1b9 --- /dev/null +++ b/core/qtime.cpp @@ -0,0 +1,84 @@ +#include "qtime.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTime: public QTime { +public: +}; + +QtObjectPtr QTime_NewQTime(){ + return new QTime(); +} + +QtObjectPtr QTime_NewQTime3(int h, int m, int s, int ms){ + return new QTime(h, m, s, ms); +} + +int QTime_Elapsed(QtObjectPtr ptr){ + return static_cast(ptr)->elapsed(); +} + +int QTime_Hour(QtObjectPtr ptr){ + return static_cast(ptr)->hour(); +} + +int QTime_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QTime_QTime_IsValid2(int h, int m, int s, int ms){ + return QTime::isValid(h, m, s, ms); +} + +int QTime_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QTime_Minute(QtObjectPtr ptr){ + return static_cast(ptr)->minute(); +} + +int QTime_Msec(QtObjectPtr ptr){ + return static_cast(ptr)->msec(); +} + +int QTime_MsecsSinceStartOfDay(QtObjectPtr ptr){ + return static_cast(ptr)->msecsSinceStartOfDay(); +} + +int QTime_MsecsTo(QtObjectPtr ptr, QtObjectPtr t){ + return static_cast(ptr)->msecsTo(*static_cast(t)); +} + +int QTime_Restart(QtObjectPtr ptr){ + return static_cast(ptr)->restart(); +} + +int QTime_Second(QtObjectPtr ptr){ + return static_cast(ptr)->second(); +} + +int QTime_SecsTo(QtObjectPtr ptr, QtObjectPtr t){ + return static_cast(ptr)->secsTo(*static_cast(t)); +} + +int QTime_SetHMS(QtObjectPtr ptr, int h, int m, int s, int ms){ + return static_cast(ptr)->setHMS(h, m, s, ms); +} + +void QTime_Start(QtObjectPtr ptr){ + static_cast(ptr)->start(); +} + +char* QTime_ToString2(QtObjectPtr ptr, int format){ + return static_cast(ptr)->toString(static_cast(format)).toUtf8().data(); +} + +char* QTime_ToString(QtObjectPtr ptr, char* format){ + return static_cast(ptr)->toString(QString(format)).toUtf8().data(); +} + diff --git a/core/qtime.go b/core/qtime.go new file mode 100755 index 00000000..c68617b5 --- /dev/null +++ b/core/qtime.go @@ -0,0 +1,156 @@ +package core + +//#include "qtime.h" +import "C" +import ( + "unsafe" +) + +type QTime struct { + ptr unsafe.Pointer +} + +type QTimeITF interface { + QTimePTR() *QTime +} + +func (p *QTime) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTime) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTime(ptr QTimeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTimePTR().Pointer() + } + return nil +} + +func QTimeFromPointer(ptr unsafe.Pointer) *QTime { + var n = new(QTime) + n.SetPointer(ptr) + return n +} + +func (ptr *QTime) QTimePTR() *QTime { + return ptr +} + +func NewQTime() *QTime { + return QTimeFromPointer(unsafe.Pointer(C.QTime_NewQTime())) +} + +func NewQTime3(h int, m int, s int, ms int) *QTime { + return QTimeFromPointer(unsafe.Pointer(C.QTime_NewQTime3(C.int(h), C.int(m), C.int(s), C.int(ms)))) +} + +func (ptr *QTime) Elapsed() int { + if ptr.Pointer() != nil { + return int(C.QTime_Elapsed(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTime) Hour() int { + if ptr.Pointer() != nil { + return int(C.QTime_Hour(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTime) IsNull() bool { + if ptr.Pointer() != nil { + return C.QTime_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func QTime_IsValid2(h int, m int, s int, ms int) bool { + return C.QTime_QTime_IsValid2(C.int(h), C.int(m), C.int(s), C.int(ms)) != 0 +} + +func (ptr *QTime) IsValid() bool { + if ptr.Pointer() != nil { + return C.QTime_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTime) Minute() int { + if ptr.Pointer() != nil { + return int(C.QTime_Minute(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTime) Msec() int { + if ptr.Pointer() != nil { + return int(C.QTime_Msec(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTime) MsecsSinceStartOfDay() int { + if ptr.Pointer() != nil { + return int(C.QTime_MsecsSinceStartOfDay(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTime) MsecsTo(t QTimeITF) int { + if ptr.Pointer() != nil { + return int(C.QTime_MsecsTo(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTime(t)))) + } + return 0 +} + +func (ptr *QTime) Restart() int { + if ptr.Pointer() != nil { + return int(C.QTime_Restart(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTime) Second() int { + if ptr.Pointer() != nil { + return int(C.QTime_Second(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTime) SecsTo(t QTimeITF) int { + if ptr.Pointer() != nil { + return int(C.QTime_SecsTo(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTime(t)))) + } + return 0 +} + +func (ptr *QTime) SetHMS(h int, m int, s int, ms int) bool { + if ptr.Pointer() != nil { + return C.QTime_SetHMS(C.QtObjectPtr(ptr.Pointer()), C.int(h), C.int(m), C.int(s), C.int(ms)) != 0 + } + return false +} + +func (ptr *QTime) Start() { + if ptr.Pointer() != nil { + C.QTime_Start(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTime) ToString2(format Qt__DateFormat) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTime_ToString2(C.QtObjectPtr(ptr.Pointer()), C.int(format))) + } + return "" +} + +func (ptr *QTime) ToString(format string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTime_ToString(C.QtObjectPtr(ptr.Pointer()), C.CString(format))) + } + return "" +} diff --git a/core/qtime.h b/core/qtime.h new file mode 100755 index 00000000..3b9eb79f --- /dev/null +++ b/core/qtime.h @@ -0,0 +1,27 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTime_NewQTime(); +QtObjectPtr QTime_NewQTime3(int h, int m, int s, int ms); +int QTime_Elapsed(QtObjectPtr ptr); +int QTime_Hour(QtObjectPtr ptr); +int QTime_IsNull(QtObjectPtr ptr); +int QTime_QTime_IsValid2(int h, int m, int s, int ms); +int QTime_IsValid(QtObjectPtr ptr); +int QTime_Minute(QtObjectPtr ptr); +int QTime_Msec(QtObjectPtr ptr); +int QTime_MsecsSinceStartOfDay(QtObjectPtr ptr); +int QTime_MsecsTo(QtObjectPtr ptr, QtObjectPtr t); +int QTime_Restart(QtObjectPtr ptr); +int QTime_Second(QtObjectPtr ptr); +int QTime_SecsTo(QtObjectPtr ptr, QtObjectPtr t); +int QTime_SetHMS(QtObjectPtr ptr, int h, int m, int s, int ms); +void QTime_Start(QtObjectPtr ptr); +char* QTime_ToString2(QtObjectPtr ptr, int format); +char* QTime_ToString(QtObjectPtr ptr, char* format); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qtimeline.cpp b/core/qtimeline.cpp new file mode 100755 index 00000000..735c5d8d --- /dev/null +++ b/core/qtimeline.cpp @@ -0,0 +1,151 @@ +#include "qtimeline.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTimeLine: public QTimeLine { +public: +void Signal_Finished(){callbackQTimeLineFinished(this->objectName().toUtf8().data());}; +void Signal_FrameChanged(int frame){callbackQTimeLineFrameChanged(this->objectName().toUtf8().data(), frame);}; +void Signal_StateChanged(QTimeLine::State newState){callbackQTimeLineStateChanged(this->objectName().toUtf8().data(), newState);}; +}; + +int QTimeLine_CurrentTime(QtObjectPtr ptr){ + return static_cast(ptr)->currentTime(); +} + +int QTimeLine_CurveShape(QtObjectPtr ptr){ + return static_cast(ptr)->curveShape(); +} + +int QTimeLine_Direction(QtObjectPtr ptr){ + return static_cast(ptr)->direction(); +} + +int QTimeLine_Duration(QtObjectPtr ptr){ + return static_cast(ptr)->duration(); +} + +int QTimeLine_LoopCount(QtObjectPtr ptr){ + return static_cast(ptr)->loopCount(); +} + +void QTimeLine_SetCurrentTime(QtObjectPtr ptr, int msec){ + QMetaObject::invokeMethod(static_cast(ptr), "setCurrentTime", Q_ARG(int, msec)); +} + +void QTimeLine_SetCurveShape(QtObjectPtr ptr, int shape){ + static_cast(ptr)->setCurveShape(static_cast(shape)); +} + +void QTimeLine_SetDirection(QtObjectPtr ptr, int direction){ + static_cast(ptr)->setDirection(static_cast(direction)); +} + +void QTimeLine_SetDuration(QtObjectPtr ptr, int duration){ + static_cast(ptr)->setDuration(duration); +} + +void QTimeLine_SetEasingCurve(QtObjectPtr ptr, QtObjectPtr curve){ + static_cast(ptr)->setEasingCurve(*static_cast(curve)); +} + +void QTimeLine_SetLoopCount(QtObjectPtr ptr, int count){ + static_cast(ptr)->setLoopCount(count); +} + +void QTimeLine_SetUpdateInterval(QtObjectPtr ptr, int interval){ + static_cast(ptr)->setUpdateInterval(interval); +} + +int QTimeLine_UpdateInterval(QtObjectPtr ptr){ + return static_cast(ptr)->updateInterval(); +} + +QtObjectPtr QTimeLine_NewQTimeLine(int duration, QtObjectPtr parent){ + return new QTimeLine(duration, static_cast(parent)); +} + +int QTimeLine_CurrentFrame(QtObjectPtr ptr){ + return static_cast(ptr)->currentFrame(); +} + +int QTimeLine_EndFrame(QtObjectPtr ptr){ + return static_cast(ptr)->endFrame(); +} + +void QTimeLine_ConnectFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QTimeLine::finished, static_cast(ptr), static_cast(&MyQTimeLine::Signal_Finished));; +} + +void QTimeLine_DisconnectFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QTimeLine::finished, static_cast(ptr), static_cast(&MyQTimeLine::Signal_Finished));; +} + +void QTimeLine_ConnectFrameChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QTimeLine::frameChanged, static_cast(ptr), static_cast(&MyQTimeLine::Signal_FrameChanged));; +} + +void QTimeLine_DisconnectFrameChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QTimeLine::frameChanged, static_cast(ptr), static_cast(&MyQTimeLine::Signal_FrameChanged));; +} + +int QTimeLine_FrameForTime(QtObjectPtr ptr, int msec){ + return static_cast(ptr)->frameForTime(msec); +} + +void QTimeLine_Resume(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "resume"); +} + +void QTimeLine_SetEndFrame(QtObjectPtr ptr, int frame){ + static_cast(ptr)->setEndFrame(frame); +} + +void QTimeLine_SetFrameRange(QtObjectPtr ptr, int startFrame, int endFrame){ + static_cast(ptr)->setFrameRange(startFrame, endFrame); +} + +void QTimeLine_SetPaused(QtObjectPtr ptr, int paused){ + QMetaObject::invokeMethod(static_cast(ptr), "setPaused", Q_ARG(bool, paused != 0)); +} + +void QTimeLine_SetStartFrame(QtObjectPtr ptr, int frame){ + static_cast(ptr)->setStartFrame(frame); +} + +void QTimeLine_Start(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "start"); +} + +int QTimeLine_StartFrame(QtObjectPtr ptr){ + return static_cast(ptr)->startFrame(); +} + +void QTimeLine_ConnectStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QTimeLine::stateChanged, static_cast(ptr), static_cast(&MyQTimeLine::Signal_StateChanged));; +} + +void QTimeLine_DisconnectStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QTimeLine::stateChanged, static_cast(ptr), static_cast(&MyQTimeLine::Signal_StateChanged));; +} + +void QTimeLine_Stop(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "stop"); +} + +void QTimeLine_ToggleDirection(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "toggleDirection"); +} + +void QTimeLine_DestroyQTimeLine(QtObjectPtr ptr){ + static_cast(ptr)->~QTimeLine(); +} + diff --git a/core/qtimeline.go b/core/qtimeline.go new file mode 100755 index 00000000..f11f2ade --- /dev/null +++ b/core/qtimeline.go @@ -0,0 +1,294 @@ +package core + +//#include "qtimeline.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QTimeLine struct { + QObject +} + +type QTimeLineITF interface { + QObjectITF + QTimeLinePTR() *QTimeLine +} + +func PointerFromQTimeLine(ptr QTimeLineITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTimeLinePTR().Pointer() + } + return nil +} + +func QTimeLineFromPointer(ptr unsafe.Pointer) *QTimeLine { + var n = new(QTimeLine) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QTimeLine_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QTimeLine) QTimeLinePTR() *QTimeLine { + return ptr +} + +//QTimeLine::CurveShape +type QTimeLine__CurveShape int + +var ( + QTimeLine__EaseInCurve = QTimeLine__CurveShape(0) + QTimeLine__EaseOutCurve = QTimeLine__CurveShape(1) + QTimeLine__EaseInOutCurve = QTimeLine__CurveShape(2) + QTimeLine__LinearCurve = QTimeLine__CurveShape(3) + QTimeLine__SineCurve = QTimeLine__CurveShape(4) + QTimeLine__CosineCurve = QTimeLine__CurveShape(5) +) + +//QTimeLine::Direction +type QTimeLine__Direction int + +var ( + QTimeLine__Forward = QTimeLine__Direction(0) + QTimeLine__Backward = QTimeLine__Direction(1) +) + +//QTimeLine::State +type QTimeLine__State int + +var ( + QTimeLine__NotRunning = QTimeLine__State(0) + QTimeLine__Paused = QTimeLine__State(1) + QTimeLine__Running = QTimeLine__State(2) +) + +func (ptr *QTimeLine) CurrentTime() int { + if ptr.Pointer() != nil { + return int(C.QTimeLine_CurrentTime(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTimeLine) CurveShape() QTimeLine__CurveShape { + if ptr.Pointer() != nil { + return QTimeLine__CurveShape(C.QTimeLine_CurveShape(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTimeLine) Direction() QTimeLine__Direction { + if ptr.Pointer() != nil { + return QTimeLine__Direction(C.QTimeLine_Direction(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTimeLine) Duration() int { + if ptr.Pointer() != nil { + return int(C.QTimeLine_Duration(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTimeLine) LoopCount() int { + if ptr.Pointer() != nil { + return int(C.QTimeLine_LoopCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTimeLine) SetCurrentTime(msec int) { + if ptr.Pointer() != nil { + C.QTimeLine_SetCurrentTime(C.QtObjectPtr(ptr.Pointer()), C.int(msec)) + } +} + +func (ptr *QTimeLine) SetCurveShape(shape QTimeLine__CurveShape) { + if ptr.Pointer() != nil { + C.QTimeLine_SetCurveShape(C.QtObjectPtr(ptr.Pointer()), C.int(shape)) + } +} + +func (ptr *QTimeLine) SetDirection(direction QTimeLine__Direction) { + if ptr.Pointer() != nil { + C.QTimeLine_SetDirection(C.QtObjectPtr(ptr.Pointer()), C.int(direction)) + } +} + +func (ptr *QTimeLine) SetDuration(duration int) { + if ptr.Pointer() != nil { + C.QTimeLine_SetDuration(C.QtObjectPtr(ptr.Pointer()), C.int(duration)) + } +} + +func (ptr *QTimeLine) SetEasingCurve(curve QEasingCurveITF) { + if ptr.Pointer() != nil { + C.QTimeLine_SetEasingCurve(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQEasingCurve(curve))) + } +} + +func (ptr *QTimeLine) SetLoopCount(count int) { + if ptr.Pointer() != nil { + C.QTimeLine_SetLoopCount(C.QtObjectPtr(ptr.Pointer()), C.int(count)) + } +} + +func (ptr *QTimeLine) SetUpdateInterval(interval int) { + if ptr.Pointer() != nil { + C.QTimeLine_SetUpdateInterval(C.QtObjectPtr(ptr.Pointer()), C.int(interval)) + } +} + +func (ptr *QTimeLine) UpdateInterval() int { + if ptr.Pointer() != nil { + return int(C.QTimeLine_UpdateInterval(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQTimeLine(duration int, parent QObjectITF) *QTimeLine { + return QTimeLineFromPointer(unsafe.Pointer(C.QTimeLine_NewQTimeLine(C.int(duration), C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func (ptr *QTimeLine) CurrentFrame() int { + if ptr.Pointer() != nil { + return int(C.QTimeLine_CurrentFrame(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTimeLine) EndFrame() int { + if ptr.Pointer() != nil { + return int(C.QTimeLine_EndFrame(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTimeLine) ConnectFinished(f func()) { + if ptr.Pointer() != nil { + C.QTimeLine_ConnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "finished", f) + } +} + +func (ptr *QTimeLine) DisconnectFinished() { + if ptr.Pointer() != nil { + C.QTimeLine_DisconnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "finished") + } +} + +//export callbackQTimeLineFinished +func callbackQTimeLineFinished(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "finished").(func())() +} + +func (ptr *QTimeLine) ConnectFrameChanged(f func(frame int)) { + if ptr.Pointer() != nil { + C.QTimeLine_ConnectFrameChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "frameChanged", f) + } +} + +func (ptr *QTimeLine) DisconnectFrameChanged() { + if ptr.Pointer() != nil { + C.QTimeLine_DisconnectFrameChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "frameChanged") + } +} + +//export callbackQTimeLineFrameChanged +func callbackQTimeLineFrameChanged(ptrName *C.char, frame C.int) { + qt.GetSignal(C.GoString(ptrName), "frameChanged").(func(int))(int(frame)) +} + +func (ptr *QTimeLine) FrameForTime(msec int) int { + if ptr.Pointer() != nil { + return int(C.QTimeLine_FrameForTime(C.QtObjectPtr(ptr.Pointer()), C.int(msec))) + } + return 0 +} + +func (ptr *QTimeLine) Resume() { + if ptr.Pointer() != nil { + C.QTimeLine_Resume(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTimeLine) SetEndFrame(frame int) { + if ptr.Pointer() != nil { + C.QTimeLine_SetEndFrame(C.QtObjectPtr(ptr.Pointer()), C.int(frame)) + } +} + +func (ptr *QTimeLine) SetFrameRange(startFrame int, endFrame int) { + if ptr.Pointer() != nil { + C.QTimeLine_SetFrameRange(C.QtObjectPtr(ptr.Pointer()), C.int(startFrame), C.int(endFrame)) + } +} + +func (ptr *QTimeLine) SetPaused(paused bool) { + if ptr.Pointer() != nil { + C.QTimeLine_SetPaused(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(paused))) + } +} + +func (ptr *QTimeLine) SetStartFrame(frame int) { + if ptr.Pointer() != nil { + C.QTimeLine_SetStartFrame(C.QtObjectPtr(ptr.Pointer()), C.int(frame)) + } +} + +func (ptr *QTimeLine) Start() { + if ptr.Pointer() != nil { + C.QTimeLine_Start(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTimeLine) StartFrame() int { + if ptr.Pointer() != nil { + return int(C.QTimeLine_StartFrame(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTimeLine) ConnectStateChanged(f func(newState QTimeLine__State)) { + if ptr.Pointer() != nil { + C.QTimeLine_ConnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stateChanged", f) + } +} + +func (ptr *QTimeLine) DisconnectStateChanged() { + if ptr.Pointer() != nil { + C.QTimeLine_DisconnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stateChanged") + } +} + +//export callbackQTimeLineStateChanged +func callbackQTimeLineStateChanged(ptrName *C.char, newState C.int) { + qt.GetSignal(C.GoString(ptrName), "stateChanged").(func(QTimeLine__State))(QTimeLine__State(newState)) +} + +func (ptr *QTimeLine) Stop() { + if ptr.Pointer() != nil { + C.QTimeLine_Stop(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTimeLine) ToggleDirection() { + if ptr.Pointer() != nil { + C.QTimeLine_ToggleDirection(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTimeLine) DestroyQTimeLine() { + if ptr.Pointer() != nil { + C.QTimeLine_DestroyQTimeLine(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qtimeline.h b/core/qtimeline.h new file mode 100755 index 00000000..18ed1e4a --- /dev/null +++ b/core/qtimeline.h @@ -0,0 +1,42 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QTimeLine_CurrentTime(QtObjectPtr ptr); +int QTimeLine_CurveShape(QtObjectPtr ptr); +int QTimeLine_Direction(QtObjectPtr ptr); +int QTimeLine_Duration(QtObjectPtr ptr); +int QTimeLine_LoopCount(QtObjectPtr ptr); +void QTimeLine_SetCurrentTime(QtObjectPtr ptr, int msec); +void QTimeLine_SetCurveShape(QtObjectPtr ptr, int shape); +void QTimeLine_SetDirection(QtObjectPtr ptr, int direction); +void QTimeLine_SetDuration(QtObjectPtr ptr, int duration); +void QTimeLine_SetEasingCurve(QtObjectPtr ptr, QtObjectPtr curve); +void QTimeLine_SetLoopCount(QtObjectPtr ptr, int count); +void QTimeLine_SetUpdateInterval(QtObjectPtr ptr, int interval); +int QTimeLine_UpdateInterval(QtObjectPtr ptr); +QtObjectPtr QTimeLine_NewQTimeLine(int duration, QtObjectPtr parent); +int QTimeLine_CurrentFrame(QtObjectPtr ptr); +int QTimeLine_EndFrame(QtObjectPtr ptr); +void QTimeLine_ConnectFinished(QtObjectPtr ptr); +void QTimeLine_DisconnectFinished(QtObjectPtr ptr); +void QTimeLine_ConnectFrameChanged(QtObjectPtr ptr); +void QTimeLine_DisconnectFrameChanged(QtObjectPtr ptr); +int QTimeLine_FrameForTime(QtObjectPtr ptr, int msec); +void QTimeLine_Resume(QtObjectPtr ptr); +void QTimeLine_SetEndFrame(QtObjectPtr ptr, int frame); +void QTimeLine_SetFrameRange(QtObjectPtr ptr, int startFrame, int endFrame); +void QTimeLine_SetPaused(QtObjectPtr ptr, int paused); +void QTimeLine_SetStartFrame(QtObjectPtr ptr, int frame); +void QTimeLine_Start(QtObjectPtr ptr); +int QTimeLine_StartFrame(QtObjectPtr ptr); +void QTimeLine_ConnectStateChanged(QtObjectPtr ptr); +void QTimeLine_DisconnectStateChanged(QtObjectPtr ptr); +void QTimeLine_Stop(QtObjectPtr ptr); +void QTimeLine_ToggleDirection(QtObjectPtr ptr); +void QTimeLine_DestroyQTimeLine(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qtimer.cpp b/core/qtimer.cpp new file mode 100755 index 00000000..7eddfaa6 --- /dev/null +++ b/core/qtimer.cpp @@ -0,0 +1,88 @@ +#include "qtimer.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTimer: public QTimer { +public: +void Signal_Timeout(){callbackQTimerTimeout(this->objectName().toUtf8().data());}; +}; + +int QTimer_RemainingTime(QtObjectPtr ptr){ + return static_cast(ptr)->remainingTime(); +} + +void QTimer_SetInterval(QtObjectPtr ptr, int msec){ + static_cast(ptr)->setInterval(msec); +} + +QtObjectPtr QTimer_NewQTimer(QtObjectPtr parent){ + return new QTimer(static_cast(parent)); +} + +int QTimer_Interval(QtObjectPtr ptr){ + return static_cast(ptr)->interval(); +} + +int QTimer_IsActive(QtObjectPtr ptr){ + return static_cast(ptr)->isActive(); +} + +int QTimer_IsSingleShot(QtObjectPtr ptr){ + return static_cast(ptr)->isSingleShot(); +} + +void QTimer_SetSingleShot(QtObjectPtr ptr, int singleShot){ + static_cast(ptr)->setSingleShot(singleShot != 0); +} + +void QTimer_SetTimerType(QtObjectPtr ptr, int atype){ + static_cast(ptr)->setTimerType(static_cast(atype)); +} + +void QTimer_QTimer_SingleShot2(int msec, int timerType, QtObjectPtr receiver, char* member){ + QTimer::singleShot(msec, static_cast(timerType), static_cast(receiver), const_cast(member)); +} + +void QTimer_QTimer_SingleShot(int msec, QtObjectPtr receiver, char* member){ + QTimer::singleShot(msec, static_cast(receiver), const_cast(member)); +} + +void QTimer_Start2(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "start"); +} + +void QTimer_Start(QtObjectPtr ptr, int msec){ + QMetaObject::invokeMethod(static_cast(ptr), "start", Q_ARG(int, msec)); +} + +void QTimer_Stop(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "stop"); +} + +void QTimer_ConnectTimeout(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), &QTimer::timeout, static_cast(ptr), static_cast(&MyQTimer::Signal_Timeout));; +} + +void QTimer_DisconnectTimeout(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), &QTimer::timeout, static_cast(ptr), static_cast(&MyQTimer::Signal_Timeout));; +} + +int QTimer_TimerId(QtObjectPtr ptr){ + return static_cast(ptr)->timerId(); +} + +int QTimer_TimerType(QtObjectPtr ptr){ + return static_cast(ptr)->timerType(); +} + +void QTimer_DestroyQTimer(QtObjectPtr ptr){ + static_cast(ptr)->~QTimer(); +} + diff --git a/core/qtimer.go b/core/qtimer.go new file mode 100755 index 00000000..8e044281 --- /dev/null +++ b/core/qtimer.go @@ -0,0 +1,153 @@ +package core + +//#include "qtimer.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QTimer struct { + QObject +} + +type QTimerITF interface { + QObjectITF + QTimerPTR() *QTimer +} + +func PointerFromQTimer(ptr QTimerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTimerPTR().Pointer() + } + return nil +} + +func QTimerFromPointer(ptr unsafe.Pointer) *QTimer { + var n = new(QTimer) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QTimer_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QTimer) QTimerPTR() *QTimer { + return ptr +} + +func (ptr *QTimer) RemainingTime() int { + if ptr.Pointer() != nil { + return int(C.QTimer_RemainingTime(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTimer) SetInterval(msec int) { + if ptr.Pointer() != nil { + C.QTimer_SetInterval(C.QtObjectPtr(ptr.Pointer()), C.int(msec)) + } +} + +func NewQTimer(parent QObjectITF) *QTimer { + return QTimerFromPointer(unsafe.Pointer(C.QTimer_NewQTimer(C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func (ptr *QTimer) Interval() int { + if ptr.Pointer() != nil { + return int(C.QTimer_Interval(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTimer) IsActive() bool { + if ptr.Pointer() != nil { + return C.QTimer_IsActive(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTimer) IsSingleShot() bool { + if ptr.Pointer() != nil { + return C.QTimer_IsSingleShot(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTimer) SetSingleShot(singleShot bool) { + if ptr.Pointer() != nil { + C.QTimer_SetSingleShot(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(singleShot))) + } +} + +func (ptr *QTimer) SetTimerType(atype Qt__TimerType) { + if ptr.Pointer() != nil { + C.QTimer_SetTimerType(C.QtObjectPtr(ptr.Pointer()), C.int(atype)) + } +} + +func QTimer_SingleShot2(msec int, timerType Qt__TimerType, receiver QObjectITF, member string) { + C.QTimer_QTimer_SingleShot2(C.int(msec), C.int(timerType), C.QtObjectPtr(PointerFromQObject(receiver)), C.CString(member)) +} + +func QTimer_SingleShot(msec int, receiver QObjectITF, member string) { + C.QTimer_QTimer_SingleShot(C.int(msec), C.QtObjectPtr(PointerFromQObject(receiver)), C.CString(member)) +} + +func (ptr *QTimer) Start2() { + if ptr.Pointer() != nil { + C.QTimer_Start2(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTimer) Start(msec int) { + if ptr.Pointer() != nil { + C.QTimer_Start(C.QtObjectPtr(ptr.Pointer()), C.int(msec)) + } +} + +func (ptr *QTimer) Stop() { + if ptr.Pointer() != nil { + C.QTimer_Stop(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTimer) ConnectTimeout(f func()) { + if ptr.Pointer() != nil { + C.QTimer_ConnectTimeout(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "timeout", f) + } +} + +func (ptr *QTimer) DisconnectTimeout() { + if ptr.Pointer() != nil { + C.QTimer_DisconnectTimeout(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "timeout") + } +} + +//export callbackQTimerTimeout +func callbackQTimerTimeout(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "timeout").(func())() +} + +func (ptr *QTimer) TimerId() int { + if ptr.Pointer() != nil { + return int(C.QTimer_TimerId(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTimer) TimerType() Qt__TimerType { + if ptr.Pointer() != nil { + return Qt__TimerType(C.QTimer_TimerType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTimer) DestroyQTimer() { + if ptr.Pointer() != nil { + C.QTimer_DestroyQTimer(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qtimer.h b/core/qtimer.h new file mode 100755 index 00000000..23a7e471 --- /dev/null +++ b/core/qtimer.h @@ -0,0 +1,27 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QTimer_RemainingTime(QtObjectPtr ptr); +void QTimer_SetInterval(QtObjectPtr ptr, int msec); +QtObjectPtr QTimer_NewQTimer(QtObjectPtr parent); +int QTimer_Interval(QtObjectPtr ptr); +int QTimer_IsActive(QtObjectPtr ptr); +int QTimer_IsSingleShot(QtObjectPtr ptr); +void QTimer_SetSingleShot(QtObjectPtr ptr, int singleShot); +void QTimer_SetTimerType(QtObjectPtr ptr, int atype); +void QTimer_QTimer_SingleShot2(int msec, int timerType, QtObjectPtr receiver, char* member); +void QTimer_QTimer_SingleShot(int msec, QtObjectPtr receiver, char* member); +void QTimer_Start2(QtObjectPtr ptr); +void QTimer_Start(QtObjectPtr ptr, int msec); +void QTimer_Stop(QtObjectPtr ptr); +void QTimer_ConnectTimeout(QtObjectPtr ptr); +void QTimer_DisconnectTimeout(QtObjectPtr ptr); +int QTimer_TimerId(QtObjectPtr ptr); +int QTimer_TimerType(QtObjectPtr ptr); +void QTimer_DestroyQTimer(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qtimerevent.cpp b/core/qtimerevent.cpp new file mode 100755 index 00000000..64c396b6 --- /dev/null +++ b/core/qtimerevent.cpp @@ -0,0 +1,22 @@ +#include "qtimerevent.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTimerEvent: public QTimerEvent { +public: +}; + +QtObjectPtr QTimerEvent_NewQTimerEvent(int timerId){ + return new QTimerEvent(timerId); +} + +int QTimerEvent_TimerId(QtObjectPtr ptr){ + return static_cast(ptr)->timerId(); +} + diff --git a/core/qtimerevent.go b/core/qtimerevent.go new file mode 100755 index 00000000..6c7b2805 --- /dev/null +++ b/core/qtimerevent.go @@ -0,0 +1,44 @@ +package core + +//#include "qtimerevent.h" +import "C" +import ( + "unsafe" +) + +type QTimerEvent struct { + QEvent +} + +type QTimerEventITF interface { + QEventITF + QTimerEventPTR() *QTimerEvent +} + +func PointerFromQTimerEvent(ptr QTimerEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTimerEventPTR().Pointer() + } + return nil +} + +func QTimerEventFromPointer(ptr unsafe.Pointer) *QTimerEvent { + var n = new(QTimerEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QTimerEvent) QTimerEventPTR() *QTimerEvent { + return ptr +} + +func NewQTimerEvent(timerId int) *QTimerEvent { + return QTimerEventFromPointer(unsafe.Pointer(C.QTimerEvent_NewQTimerEvent(C.int(timerId)))) +} + +func (ptr *QTimerEvent) TimerId() int { + if ptr.Pointer() != nil { + return int(C.QTimerEvent_TimerId(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/core/qtimerevent.h b/core/qtimerevent.h new file mode 100755 index 00000000..d1a9df2e --- /dev/null +++ b/core/qtimerevent.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTimerEvent_NewQTimerEvent(int timerId); +int QTimerEvent_TimerId(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qtimezone.cpp b/core/qtimezone.cpp new file mode 100755 index 00000000..0627e288 --- /dev/null +++ b/core/qtimezone.cpp @@ -0,0 +1,97 @@ +#include "qtimezone.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTimeZone: public QTimeZone { +public: +}; + +QtObjectPtr QTimeZone_NewQTimeZone(){ + return new QTimeZone(); +} + +QtObjectPtr QTimeZone_NewQTimeZone2(QtObjectPtr ianaId){ + return new QTimeZone(*static_cast(ianaId)); +} + +QtObjectPtr QTimeZone_NewQTimeZone4(QtObjectPtr ianaId, int offsetSeconds, char* name, char* abbreviation, int country, char* comment){ + return new QTimeZone(*static_cast(ianaId), offsetSeconds, QString(name), QString(abbreviation), static_cast(country), QString(comment)); +} + +QtObjectPtr QTimeZone_NewQTimeZone5(QtObjectPtr other){ + return new QTimeZone(*static_cast(other)); +} + +QtObjectPtr QTimeZone_NewQTimeZone3(int offsetSeconds){ + return new QTimeZone(offsetSeconds); +} + +char* QTimeZone_Abbreviation(QtObjectPtr ptr, QtObjectPtr atDateTime){ + return static_cast(ptr)->abbreviation(*static_cast(atDateTime)).toUtf8().data(); +} + +char* QTimeZone_Comment(QtObjectPtr ptr){ + return static_cast(ptr)->comment().toUtf8().data(); +} + +int QTimeZone_Country(QtObjectPtr ptr){ + return static_cast(ptr)->country(); +} + +int QTimeZone_DaylightTimeOffset(QtObjectPtr ptr, QtObjectPtr atDateTime){ + return static_cast(ptr)->daylightTimeOffset(*static_cast(atDateTime)); +} + +char* QTimeZone_DisplayName2(QtObjectPtr ptr, int timeType, int nameType, QtObjectPtr locale){ + return static_cast(ptr)->displayName(static_cast(timeType), static_cast(nameType), *static_cast(locale)).toUtf8().data(); +} + +char* QTimeZone_DisplayName(QtObjectPtr ptr, QtObjectPtr atDateTime, int nameType, QtObjectPtr locale){ + return static_cast(ptr)->displayName(*static_cast(atDateTime), static_cast(nameType), *static_cast(locale)).toUtf8().data(); +} + +int QTimeZone_HasDaylightTime(QtObjectPtr ptr){ + return static_cast(ptr)->hasDaylightTime(); +} + +int QTimeZone_HasTransitions(QtObjectPtr ptr){ + return static_cast(ptr)->hasTransitions(); +} + +int QTimeZone_IsDaylightTime(QtObjectPtr ptr, QtObjectPtr atDateTime){ + return static_cast(ptr)->isDaylightTime(*static_cast(atDateTime)); +} + +int QTimeZone_QTimeZone_IsTimeZoneIdAvailable(QtObjectPtr ianaId){ + return QTimeZone::isTimeZoneIdAvailable(*static_cast(ianaId)); +} + +int QTimeZone_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QTimeZone_OffsetFromUtc(QtObjectPtr ptr, QtObjectPtr atDateTime){ + return static_cast(ptr)->offsetFromUtc(*static_cast(atDateTime)); +} + +int QTimeZone_StandardTimeOffset(QtObjectPtr ptr, QtObjectPtr atDateTime){ + return static_cast(ptr)->standardTimeOffset(*static_cast(atDateTime)); +} + +void QTimeZone_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QTimeZone_DestroyQTimeZone(QtObjectPtr ptr){ + static_cast(ptr)->~QTimeZone(); +} + diff --git a/core/qtimezone.go b/core/qtimezone.go new file mode 100755 index 00000000..09fa6427 --- /dev/null +++ b/core/qtimezone.go @@ -0,0 +1,179 @@ +package core + +//#include "qtimezone.h" +import "C" +import ( + "unsafe" +) + +type QTimeZone struct { + ptr unsafe.Pointer +} + +type QTimeZoneITF interface { + QTimeZonePTR() *QTimeZone +} + +func (p *QTimeZone) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTimeZone) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTimeZone(ptr QTimeZoneITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTimeZonePTR().Pointer() + } + return nil +} + +func QTimeZoneFromPointer(ptr unsafe.Pointer) *QTimeZone { + var n = new(QTimeZone) + n.SetPointer(ptr) + return n +} + +func (ptr *QTimeZone) QTimeZonePTR() *QTimeZone { + return ptr +} + +//QTimeZone::NameType +type QTimeZone__NameType int + +var ( + QTimeZone__DefaultName = QTimeZone__NameType(0) + QTimeZone__LongName = QTimeZone__NameType(1) + QTimeZone__ShortName = QTimeZone__NameType(2) + QTimeZone__OffsetName = QTimeZone__NameType(3) +) + +//QTimeZone::TimeType +type QTimeZone__TimeType int + +var ( + QTimeZone__StandardTime = QTimeZone__TimeType(0) + QTimeZone__DaylightTime = QTimeZone__TimeType(1) + QTimeZone__GenericTime = QTimeZone__TimeType(2) +) + +func NewQTimeZone() *QTimeZone { + return QTimeZoneFromPointer(unsafe.Pointer(C.QTimeZone_NewQTimeZone())) +} + +func NewQTimeZone2(ianaId QByteArrayITF) *QTimeZone { + return QTimeZoneFromPointer(unsafe.Pointer(C.QTimeZone_NewQTimeZone2(C.QtObjectPtr(PointerFromQByteArray(ianaId))))) +} + +func NewQTimeZone4(ianaId QByteArrayITF, offsetSeconds int, name string, abbreviation string, country QLocale__Country, comment string) *QTimeZone { + return QTimeZoneFromPointer(unsafe.Pointer(C.QTimeZone_NewQTimeZone4(C.QtObjectPtr(PointerFromQByteArray(ianaId)), C.int(offsetSeconds), C.CString(name), C.CString(abbreviation), C.int(country), C.CString(comment)))) +} + +func NewQTimeZone5(other QTimeZoneITF) *QTimeZone { + return QTimeZoneFromPointer(unsafe.Pointer(C.QTimeZone_NewQTimeZone5(C.QtObjectPtr(PointerFromQTimeZone(other))))) +} + +func NewQTimeZone3(offsetSeconds int) *QTimeZone { + return QTimeZoneFromPointer(unsafe.Pointer(C.QTimeZone_NewQTimeZone3(C.int(offsetSeconds)))) +} + +func (ptr *QTimeZone) Abbreviation(atDateTime QDateTimeITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTimeZone_Abbreviation(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDateTime(atDateTime)))) + } + return "" +} + +func (ptr *QTimeZone) Comment() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTimeZone_Comment(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTimeZone) Country() QLocale__Country { + if ptr.Pointer() != nil { + return QLocale__Country(C.QTimeZone_Country(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTimeZone) DaylightTimeOffset(atDateTime QDateTimeITF) int { + if ptr.Pointer() != nil { + return int(C.QTimeZone_DaylightTimeOffset(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDateTime(atDateTime)))) + } + return 0 +} + +func (ptr *QTimeZone) DisplayName2(timeType QTimeZone__TimeType, nameType QTimeZone__NameType, locale QLocaleITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTimeZone_DisplayName2(C.QtObjectPtr(ptr.Pointer()), C.int(timeType), C.int(nameType), C.QtObjectPtr(PointerFromQLocale(locale)))) + } + return "" +} + +func (ptr *QTimeZone) DisplayName(atDateTime QDateTimeITF, nameType QTimeZone__NameType, locale QLocaleITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTimeZone_DisplayName(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDateTime(atDateTime)), C.int(nameType), C.QtObjectPtr(PointerFromQLocale(locale)))) + } + return "" +} + +func (ptr *QTimeZone) HasDaylightTime() bool { + if ptr.Pointer() != nil { + return C.QTimeZone_HasDaylightTime(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTimeZone) HasTransitions() bool { + if ptr.Pointer() != nil { + return C.QTimeZone_HasTransitions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTimeZone) IsDaylightTime(atDateTime QDateTimeITF) bool { + if ptr.Pointer() != nil { + return C.QTimeZone_IsDaylightTime(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDateTime(atDateTime))) != 0 + } + return false +} + +func QTimeZone_IsTimeZoneIdAvailable(ianaId QByteArrayITF) bool { + return C.QTimeZone_QTimeZone_IsTimeZoneIdAvailable(C.QtObjectPtr(PointerFromQByteArray(ianaId))) != 0 +} + +func (ptr *QTimeZone) IsValid() bool { + if ptr.Pointer() != nil { + return C.QTimeZone_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTimeZone) OffsetFromUtc(atDateTime QDateTimeITF) int { + if ptr.Pointer() != nil { + return int(C.QTimeZone_OffsetFromUtc(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDateTime(atDateTime)))) + } + return 0 +} + +func (ptr *QTimeZone) StandardTimeOffset(atDateTime QDateTimeITF) int { + if ptr.Pointer() != nil { + return int(C.QTimeZone_StandardTimeOffset(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDateTime(atDateTime)))) + } + return 0 +} + +func (ptr *QTimeZone) Swap(other QTimeZoneITF) { + if ptr.Pointer() != nil { + C.QTimeZone_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTimeZone(other))) + } +} + +func (ptr *QTimeZone) DestroyQTimeZone() { + if ptr.Pointer() != nil { + C.QTimeZone_DestroyQTimeZone(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qtimezone.h b/core/qtimezone.h new file mode 100755 index 00000000..68645a0b --- /dev/null +++ b/core/qtimezone.h @@ -0,0 +1,29 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTimeZone_NewQTimeZone(); +QtObjectPtr QTimeZone_NewQTimeZone2(QtObjectPtr ianaId); +QtObjectPtr QTimeZone_NewQTimeZone4(QtObjectPtr ianaId, int offsetSeconds, char* name, char* abbreviation, int country, char* comment); +QtObjectPtr QTimeZone_NewQTimeZone5(QtObjectPtr other); +QtObjectPtr QTimeZone_NewQTimeZone3(int offsetSeconds); +char* QTimeZone_Abbreviation(QtObjectPtr ptr, QtObjectPtr atDateTime); +char* QTimeZone_Comment(QtObjectPtr ptr); +int QTimeZone_Country(QtObjectPtr ptr); +int QTimeZone_DaylightTimeOffset(QtObjectPtr ptr, QtObjectPtr atDateTime); +char* QTimeZone_DisplayName2(QtObjectPtr ptr, int timeType, int nameType, QtObjectPtr locale); +char* QTimeZone_DisplayName(QtObjectPtr ptr, QtObjectPtr atDateTime, int nameType, QtObjectPtr locale); +int QTimeZone_HasDaylightTime(QtObjectPtr ptr); +int QTimeZone_HasTransitions(QtObjectPtr ptr); +int QTimeZone_IsDaylightTime(QtObjectPtr ptr, QtObjectPtr atDateTime); +int QTimeZone_QTimeZone_IsTimeZoneIdAvailable(QtObjectPtr ianaId); +int QTimeZone_IsValid(QtObjectPtr ptr); +int QTimeZone_OffsetFromUtc(QtObjectPtr ptr, QtObjectPtr atDateTime); +int QTimeZone_StandardTimeOffset(QtObjectPtr ptr, QtObjectPtr atDateTime); +void QTimeZone_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QTimeZone_DestroyQTimeZone(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qtmetatypeprivate.cpp b/core/qtmetatypeprivate.cpp new file mode 100755 index 00000000..84c0c141 --- /dev/null +++ b/core/qtmetatypeprivate.cpp @@ -0,0 +1,7 @@ +#include "qtmetatypeprivate.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qtmetatypeprivate.go b/core/qtmetatypeprivate.go new file mode 100755 index 00000000..c88e52b2 --- /dev/null +++ b/core/qtmetatypeprivate.go @@ -0,0 +1,49 @@ +package core + +//#include "qtmetatypeprivate.h" +import "C" +import ( + "unsafe" +) + +type QtMetaTypePrivate struct { + ptr unsafe.Pointer +} + +type QtMetaTypePrivateITF interface { + QtMetaTypePrivatePTR() *QtMetaTypePrivate +} + +func (p *QtMetaTypePrivate) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QtMetaTypePrivate) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQtMetaTypePrivate(ptr QtMetaTypePrivateITF) unsafe.Pointer { + if ptr != nil { + return ptr.QtMetaTypePrivatePTR().Pointer() + } + return nil +} + +func QtMetaTypePrivateFromPointer(ptr unsafe.Pointer) *QtMetaTypePrivate { + var n = new(QtMetaTypePrivate) + n.SetPointer(ptr) + return n +} + +func (ptr *QtMetaTypePrivate) QtMetaTypePrivatePTR() *QtMetaTypePrivate { + return ptr +} + +//QtMetaTypePrivate::IteratorCapability +type QtMetaTypePrivate__IteratorCapability int + +var ( + QtMetaTypePrivate__ForwardCapability = QtMetaTypePrivate__IteratorCapability(1) + QtMetaTypePrivate__BiDirectionalCapability = QtMetaTypePrivate__IteratorCapability(2) + QtMetaTypePrivate__RandomAccessCapability = QtMetaTypePrivate__IteratorCapability(4) +) diff --git a/core/qtmetatypeprivate.h b/core/qtmetatypeprivate.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qtmetatypeprivate.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qtranslator.cpp b/core/qtranslator.cpp new file mode 100755 index 00000000..08747e93 --- /dev/null +++ b/core/qtranslator.cpp @@ -0,0 +1,38 @@ +#include "qtranslator.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTranslator: public QTranslator { +public: +}; + +QtObjectPtr QTranslator_NewQTranslator(QtObjectPtr parent){ + return new QTranslator(static_cast(parent)); +} + +int QTranslator_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +int QTranslator_Load2(QtObjectPtr ptr, QtObjectPtr locale, char* filename, char* prefix, char* directory, char* suffix){ + return static_cast(ptr)->load(*static_cast(locale), QString(filename), QString(prefix), QString(directory), QString(suffix)); +} + +int QTranslator_Load(QtObjectPtr ptr, char* filename, char* directory, char* search_delimiters, char* suffix){ + return static_cast(ptr)->load(QString(filename), QString(directory), QString(search_delimiters), QString(suffix)); +} + +char* QTranslator_Translate(QtObjectPtr ptr, char* context, char* sourceText, char* disambiguation, int n){ + return static_cast(ptr)->translate(const_cast(context), const_cast(sourceText), const_cast(disambiguation), n).toUtf8().data(); +} + +void QTranslator_DestroyQTranslator(QtObjectPtr ptr){ + static_cast(ptr)->~QTranslator(); +} + diff --git a/core/qtranslator.go b/core/qtranslator.go new file mode 100755 index 00000000..7d5b384a --- /dev/null +++ b/core/qtranslator.go @@ -0,0 +1,76 @@ +package core + +//#include "qtranslator.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QTranslator struct { + QObject +} + +type QTranslatorITF interface { + QObjectITF + QTranslatorPTR() *QTranslator +} + +func PointerFromQTranslator(ptr QTranslatorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTranslatorPTR().Pointer() + } + return nil +} + +func QTranslatorFromPointer(ptr unsafe.Pointer) *QTranslator { + var n = new(QTranslator) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QTranslator_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QTranslator) QTranslatorPTR() *QTranslator { + return ptr +} + +func NewQTranslator(parent QObjectITF) *QTranslator { + return QTranslatorFromPointer(unsafe.Pointer(C.QTranslator_NewQTranslator(C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func (ptr *QTranslator) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QTranslator_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTranslator) Load2(locale QLocaleITF, filename string, prefix string, directory string, suffix string) bool { + if ptr.Pointer() != nil { + return C.QTranslator_Load2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLocale(locale)), C.CString(filename), C.CString(prefix), C.CString(directory), C.CString(suffix)) != 0 + } + return false +} + +func (ptr *QTranslator) Load(filename string, directory string, search_delimiters string, suffix string) bool { + if ptr.Pointer() != nil { + return C.QTranslator_Load(C.QtObjectPtr(ptr.Pointer()), C.CString(filename), C.CString(directory), C.CString(search_delimiters), C.CString(suffix)) != 0 + } + return false +} + +func (ptr *QTranslator) Translate(context string, sourceText string, disambiguation string, n int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTranslator_Translate(C.QtObjectPtr(ptr.Pointer()), C.CString(context), C.CString(sourceText), C.CString(disambiguation), C.int(n))) + } + return "" +} + +func (ptr *QTranslator) DestroyQTranslator() { + if ptr.Pointer() != nil { + C.QTranslator_DestroyQTranslator(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qtranslator.h b/core/qtranslator.h new file mode 100755 index 00000000..7e054a6b --- /dev/null +++ b/core/qtranslator.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTranslator_NewQTranslator(QtObjectPtr parent); +int QTranslator_IsEmpty(QtObjectPtr ptr); +int QTranslator_Load2(QtObjectPtr ptr, QtObjectPtr locale, char* filename, char* prefix, char* directory, char* suffix); +int QTranslator_Load(QtObjectPtr ptr, char* filename, char* directory, char* search_delimiters, char* suffix); +char* QTranslator_Translate(QtObjectPtr ptr, char* context, char* sourceText, char* disambiguation, int n); +void QTranslator_DestroyQTranslator(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qunhandledexception.cpp b/core/qunhandledexception.cpp new file mode 100755 index 00000000..98bfebf8 --- /dev/null +++ b/core/qunhandledexception.cpp @@ -0,0 +1,12 @@ +#include "qunhandledexception.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQUnhandledException: public QUnhandledException { +public: +}; + diff --git a/core/qunhandledexception.go b/core/qunhandledexception.go new file mode 100755 index 00000000..40c4ecf2 --- /dev/null +++ b/core/qunhandledexception.go @@ -0,0 +1,33 @@ +package core + +//#include "qunhandledexception.h" +import "C" +import ( + "unsafe" +) + +type QUnhandledException struct { + QException +} + +type QUnhandledExceptionITF interface { + QExceptionITF + QUnhandledExceptionPTR() *QUnhandledException +} + +func PointerFromQUnhandledException(ptr QUnhandledExceptionITF) unsafe.Pointer { + if ptr != nil { + return ptr.QUnhandledExceptionPTR().Pointer() + } + return nil +} + +func QUnhandledExceptionFromPointer(ptr unsafe.Pointer) *QUnhandledException { + var n = new(QUnhandledException) + n.SetPointer(ptr) + return n +} + +func (ptr *QUnhandledException) QUnhandledExceptionPTR() *QUnhandledException { + return ptr +} diff --git a/core/qunhandledexception.h b/core/qunhandledexception.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qunhandledexception.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qunicodetables.cpp b/core/qunicodetables.cpp new file mode 100755 index 00000000..2690ec96 --- /dev/null +++ b/core/qunicodetables.cpp @@ -0,0 +1,7 @@ +#include "qunicodetables.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qunicodetables.go b/core/qunicodetables.go new file mode 100755 index 00000000..dfcd4989 --- /dev/null +++ b/core/qunicodetables.go @@ -0,0 +1,143 @@ +package core + +//#include "qunicodetables.h" +import "C" +import ( + "unsafe" +) + +type QUnicodeTables struct { + ptr unsafe.Pointer +} + +type QUnicodeTablesITF interface { + QUnicodeTablesPTR() *QUnicodeTables +} + +func (p *QUnicodeTables) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QUnicodeTables) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQUnicodeTables(ptr QUnicodeTablesITF) unsafe.Pointer { + if ptr != nil { + return ptr.QUnicodeTablesPTR().Pointer() + } + return nil +} + +func QUnicodeTablesFromPointer(ptr unsafe.Pointer) *QUnicodeTables { + var n = new(QUnicodeTables) + n.SetPointer(ptr) + return n +} + +func (ptr *QUnicodeTables) QUnicodeTablesPTR() *QUnicodeTables { + return ptr +} + +//QUnicodeTables::GraphemeBreakClass +type QUnicodeTables__GraphemeBreakClass int + +var ( + QUnicodeTables__GraphemeBreak_Other = QUnicodeTables__GraphemeBreakClass(0) + QUnicodeTables__GraphemeBreak_CR = QUnicodeTables__GraphemeBreakClass(1) + QUnicodeTables__GraphemeBreak_LF = QUnicodeTables__GraphemeBreakClass(2) + QUnicodeTables__GraphemeBreak_Control = QUnicodeTables__GraphemeBreakClass(3) + QUnicodeTables__GraphemeBreak_Extend = QUnicodeTables__GraphemeBreakClass(4) + QUnicodeTables__GraphemeBreak_RegionalIndicator = QUnicodeTables__GraphemeBreakClass(5) + QUnicodeTables__GraphemeBreak_Prepend = QUnicodeTables__GraphemeBreakClass(6) + QUnicodeTables__GraphemeBreak_SpacingMark = QUnicodeTables__GraphemeBreakClass(7) + QUnicodeTables__GraphemeBreak_L = QUnicodeTables__GraphemeBreakClass(8) + QUnicodeTables__GraphemeBreak_V = QUnicodeTables__GraphemeBreakClass(9) + QUnicodeTables__GraphemeBreak_T = QUnicodeTables__GraphemeBreakClass(10) + QUnicodeTables__GraphemeBreak_LV = QUnicodeTables__GraphemeBreakClass(11) + QUnicodeTables__GraphemeBreak_LVT = QUnicodeTables__GraphemeBreakClass(12) +) + +//QUnicodeTables::LineBreakClass +type QUnicodeTables__LineBreakClass int + +var ( + QUnicodeTables__LineBreak_OP = QUnicodeTables__LineBreakClass(0) + QUnicodeTables__LineBreak_CL = QUnicodeTables__LineBreakClass(1) + QUnicodeTables__LineBreak_CP = QUnicodeTables__LineBreakClass(2) + QUnicodeTables__LineBreak_QU = QUnicodeTables__LineBreakClass(3) + QUnicodeTables__LineBreak_GL = QUnicodeTables__LineBreakClass(4) + QUnicodeTables__LineBreak_NS = QUnicodeTables__LineBreakClass(5) + QUnicodeTables__LineBreak_EX = QUnicodeTables__LineBreakClass(6) + QUnicodeTables__LineBreak_SY = QUnicodeTables__LineBreakClass(7) + QUnicodeTables__LineBreak_IS = QUnicodeTables__LineBreakClass(8) + QUnicodeTables__LineBreak_PR = QUnicodeTables__LineBreakClass(9) + QUnicodeTables__LineBreak_PO = QUnicodeTables__LineBreakClass(10) + QUnicodeTables__LineBreak_NU = QUnicodeTables__LineBreakClass(11) + QUnicodeTables__LineBreak_AL = QUnicodeTables__LineBreakClass(12) + QUnicodeTables__LineBreak_HL = QUnicodeTables__LineBreakClass(13) + QUnicodeTables__LineBreak_ID = QUnicodeTables__LineBreakClass(14) + QUnicodeTables__LineBreak_IN = QUnicodeTables__LineBreakClass(15) + QUnicodeTables__LineBreak_HY = QUnicodeTables__LineBreakClass(16) + QUnicodeTables__LineBreak_BA = QUnicodeTables__LineBreakClass(17) + QUnicodeTables__LineBreak_BB = QUnicodeTables__LineBreakClass(18) + QUnicodeTables__LineBreak_B2 = QUnicodeTables__LineBreakClass(19) + QUnicodeTables__LineBreak_ZW = QUnicodeTables__LineBreakClass(20) + QUnicodeTables__LineBreak_CM = QUnicodeTables__LineBreakClass(21) + QUnicodeTables__LineBreak_WJ = QUnicodeTables__LineBreakClass(22) + QUnicodeTables__LineBreak_H2 = QUnicodeTables__LineBreakClass(23) + QUnicodeTables__LineBreak_H3 = QUnicodeTables__LineBreakClass(24) + QUnicodeTables__LineBreak_JL = QUnicodeTables__LineBreakClass(25) + QUnicodeTables__LineBreak_JV = QUnicodeTables__LineBreakClass(26) + QUnicodeTables__LineBreak_JT = QUnicodeTables__LineBreakClass(27) + QUnicodeTables__LineBreak_RI = QUnicodeTables__LineBreakClass(28) + QUnicodeTables__LineBreak_CB = QUnicodeTables__LineBreakClass(29) + QUnicodeTables__LineBreak_SA = QUnicodeTables__LineBreakClass(30) + QUnicodeTables__LineBreak_SG = QUnicodeTables__LineBreakClass(31) + QUnicodeTables__LineBreak_SP = QUnicodeTables__LineBreakClass(32) + QUnicodeTables__LineBreak_CR = QUnicodeTables__LineBreakClass(33) + QUnicodeTables__LineBreak_LF = QUnicodeTables__LineBreakClass(34) + QUnicodeTables__LineBreak_BK = QUnicodeTables__LineBreakClass(35) +) + +//QUnicodeTables::SentenceBreakClass +type QUnicodeTables__SentenceBreakClass int + +var ( + QUnicodeTables__SentenceBreak_Other = QUnicodeTables__SentenceBreakClass(0) + QUnicodeTables__SentenceBreak_CR = QUnicodeTables__SentenceBreakClass(1) + QUnicodeTables__SentenceBreak_LF = QUnicodeTables__SentenceBreakClass(2) + QUnicodeTables__SentenceBreak_Sep = QUnicodeTables__SentenceBreakClass(3) + QUnicodeTables__SentenceBreak_Extend = QUnicodeTables__SentenceBreakClass(4) + QUnicodeTables__SentenceBreak_Sp = QUnicodeTables__SentenceBreakClass(5) + QUnicodeTables__SentenceBreak_Lower = QUnicodeTables__SentenceBreakClass(6) + QUnicodeTables__SentenceBreak_Upper = QUnicodeTables__SentenceBreakClass(7) + QUnicodeTables__SentenceBreak_OLetter = QUnicodeTables__SentenceBreakClass(8) + QUnicodeTables__SentenceBreak_Numeric = QUnicodeTables__SentenceBreakClass(9) + QUnicodeTables__SentenceBreak_ATerm = QUnicodeTables__SentenceBreakClass(10) + QUnicodeTables__SentenceBreak_SContinue = QUnicodeTables__SentenceBreakClass(11) + QUnicodeTables__SentenceBreak_STerm = QUnicodeTables__SentenceBreakClass(12) + QUnicodeTables__SentenceBreak_Close = QUnicodeTables__SentenceBreakClass(13) +) + +//QUnicodeTables::WordBreakClass +type QUnicodeTables__WordBreakClass int + +var ( + QUnicodeTables__WordBreak_Other = QUnicodeTables__WordBreakClass(0) + QUnicodeTables__WordBreak_CR = QUnicodeTables__WordBreakClass(1) + QUnicodeTables__WordBreak_LF = QUnicodeTables__WordBreakClass(2) + QUnicodeTables__WordBreak_Newline = QUnicodeTables__WordBreakClass(3) + QUnicodeTables__WordBreak_Extend = QUnicodeTables__WordBreakClass(4) + QUnicodeTables__WordBreak_RegionalIndicator = QUnicodeTables__WordBreakClass(5) + QUnicodeTables__WordBreak_Katakana = QUnicodeTables__WordBreakClass(6) + QUnicodeTables__WordBreak_HebrewLetter = QUnicodeTables__WordBreakClass(7) + QUnicodeTables__WordBreak_ALetter = QUnicodeTables__WordBreakClass(8) + QUnicodeTables__WordBreak_SingleQuote = QUnicodeTables__WordBreakClass(9) + QUnicodeTables__WordBreak_DoubleQuote = QUnicodeTables__WordBreakClass(10) + QUnicodeTables__WordBreak_MidNumLet = QUnicodeTables__WordBreakClass(11) + QUnicodeTables__WordBreak_MidLetter = QUnicodeTables__WordBreakClass(12) + QUnicodeTables__WordBreak_MidNum = QUnicodeTables__WordBreakClass(13) + QUnicodeTables__WordBreak_Numeric = QUnicodeTables__WordBreakClass(14) + QUnicodeTables__WordBreak_ExtendNumLet = QUnicodeTables__WordBreakClass(15) +) diff --git a/core/qunicodetables.h b/core/qunicodetables.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qunicodetables.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qunicodetools.cpp b/core/qunicodetools.cpp new file mode 100755 index 00000000..5737d746 --- /dev/null +++ b/core/qunicodetools.cpp @@ -0,0 +1,7 @@ +#include "qunicodetools.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qunicodetools.go b/core/qunicodetools.go new file mode 100755 index 00000000..55548cb1 --- /dev/null +++ b/core/qunicodetools.go @@ -0,0 +1,53 @@ +package core + +//#include "qunicodetools.h" +import "C" +import ( + "unsafe" +) + +type QUnicodeTools struct { + ptr unsafe.Pointer +} + +type QUnicodeToolsITF interface { + QUnicodeToolsPTR() *QUnicodeTools +} + +func (p *QUnicodeTools) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QUnicodeTools) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQUnicodeTools(ptr QUnicodeToolsITF) unsafe.Pointer { + if ptr != nil { + return ptr.QUnicodeToolsPTR().Pointer() + } + return nil +} + +func QUnicodeToolsFromPointer(ptr unsafe.Pointer) *QUnicodeTools { + var n = new(QUnicodeTools) + n.SetPointer(ptr) + return n +} + +func (ptr *QUnicodeTools) QUnicodeToolsPTR() *QUnicodeTools { + return ptr +} + +//QUnicodeTools::CharAttributeOption +type QUnicodeTools__CharAttributeOption int + +var ( + QUnicodeTools__GraphemeBreaks = QUnicodeTools__CharAttributeOption(0x01) + QUnicodeTools__WordBreaks = QUnicodeTools__CharAttributeOption(0x02) + QUnicodeTools__SentenceBreaks = QUnicodeTools__CharAttributeOption(0x04) + QUnicodeTools__LineBreaks = QUnicodeTools__CharAttributeOption(0x08) + QUnicodeTools__WhiteSpaces = QUnicodeTools__CharAttributeOption(0x10) + QUnicodeTools__DefaultOptionsCompat = QUnicodeTools__CharAttributeOption(QUnicodeTools__GraphemeBreaks | QUnicodeTools__LineBreaks | QUnicodeTools__WhiteSpaces) + QUnicodeTools__DontClearAttributes = QUnicodeTools__CharAttributeOption(0x1000) +) diff --git a/core/qunicodetools.h b/core/qunicodetools.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qunicodetools.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qurl.cpp b/core/qurl.cpp new file mode 100755 index 00000000..204a25da --- /dev/null +++ b/core/qurl.cpp @@ -0,0 +1,8 @@ +#include "qurl.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qurl.go b/core/qurl.go new file mode 100755 index 00000000..69f3d381 --- /dev/null +++ b/core/qurl.go @@ -0,0 +1,90 @@ +package core + +//#include "qurl.h" +import "C" +import ( + "unsafe" +) + +type QUrl struct { + ptr unsafe.Pointer +} + +type QUrlITF interface { + QUrlPTR() *QUrl +} + +func (p *QUrl) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QUrl) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQUrl(ptr QUrlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QUrlPTR().Pointer() + } + return nil +} + +func QUrlFromPointer(ptr unsafe.Pointer) *QUrl { + var n = new(QUrl) + n.SetPointer(ptr) + return n +} + +func (ptr *QUrl) QUrlPTR() *QUrl { + return ptr +} + +//QUrl::ComponentFormattingOption +type QUrl__ComponentFormattingOption int + +var ( + QUrl__PrettyDecoded = QUrl__ComponentFormattingOption(0x000000) + QUrl__EncodeSpaces = QUrl__ComponentFormattingOption(0x100000) + QUrl__EncodeUnicode = QUrl__ComponentFormattingOption(0x200000) + QUrl__EncodeDelimiters = QUrl__ComponentFormattingOption(0x400000 | 0x800000) + QUrl__EncodeReserved = QUrl__ComponentFormattingOption(0x1000000) + QUrl__DecodeReserved = QUrl__ComponentFormattingOption(0x2000000) + QUrl__FullyEncoded = QUrl__ComponentFormattingOption(QUrl__EncodeSpaces | QUrl__EncodeUnicode | QUrl__EncodeDelimiters | QUrl__EncodeReserved) + QUrl__FullyDecoded = QUrl__ComponentFormattingOption(QUrl__FullyEncoded | QUrl__DecodeReserved | 0x4000000) +) + +//QUrl::ParsingMode +type QUrl__ParsingMode int + +var ( + QUrl__TolerantMode = QUrl__ParsingMode(0) + QUrl__StrictMode = QUrl__ParsingMode(1) + QUrl__DecodedMode = QUrl__ParsingMode(2) +) + +//QUrl::UrlFormattingOption +type QUrl__UrlFormattingOption int + +var ( + QUrl__None = QUrl__UrlFormattingOption(0x0) + QUrl__RemoveScheme = QUrl__UrlFormattingOption(0x1) + QUrl__RemovePassword = QUrl__UrlFormattingOption(0x2) + QUrl__RemoveUserInfo = QUrl__UrlFormattingOption(QUrl__RemovePassword | 0x4) + QUrl__RemovePort = QUrl__UrlFormattingOption(0x8) + QUrl__RemoveAuthority = QUrl__UrlFormattingOption(QUrl__RemoveUserInfo | QUrl__RemovePort | 0x10) + QUrl__RemovePath = QUrl__UrlFormattingOption(0x20) + QUrl__RemoveQuery = QUrl__UrlFormattingOption(0x40) + QUrl__RemoveFragment = QUrl__UrlFormattingOption(0x80) + QUrl__PreferLocalFile = QUrl__UrlFormattingOption(0x200) + QUrl__StripTrailingSlash = QUrl__UrlFormattingOption(0x400) + QUrl__RemoveFilename = QUrl__UrlFormattingOption(0x800) + QUrl__NormalizePathSegments = QUrl__UrlFormattingOption(0x1000) +) + +//QUrl::UserInputResolutionOption +type QUrl__UserInputResolutionOption int + +var ( + QUrl__DefaultResolution = QUrl__UserInputResolutionOption(0) + QUrl__AssumeLocalFile = QUrl__UserInputResolutionOption(1) +) diff --git a/core/qurl.h b/core/qurl.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qurl.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qurlquery.cpp b/core/qurlquery.cpp new file mode 100755 index 00000000..4e770a53 --- /dev/null +++ b/core/qurlquery.cpp @@ -0,0 +1,77 @@ +#include "qurlquery.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQUrlQuery: public QUrlQuery { +public: +}; + +QtObjectPtr QUrlQuery_NewQUrlQuery(){ + return new QUrlQuery(); +} + +QtObjectPtr QUrlQuery_NewQUrlQuery3(char* queryString){ + return new QUrlQuery(QString(queryString)); +} + +QtObjectPtr QUrlQuery_NewQUrlQuery2(char* url){ + return new QUrlQuery(QUrl(QString(url))); +} + +QtObjectPtr QUrlQuery_NewQUrlQuery4(QtObjectPtr other){ + return new QUrlQuery(*static_cast(other)); +} + +void QUrlQuery_AddQueryItem(QtObjectPtr ptr, char* key, char* value){ + static_cast(ptr)->addQueryItem(QString(key), QString(value)); +} + +char* QUrlQuery_AllQueryItemValues(QtObjectPtr ptr, char* key, int encoding){ + return static_cast(ptr)->allQueryItemValues(QString(key), static_cast(encoding)).join("|").toUtf8().data(); +} + +void QUrlQuery_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +int QUrlQuery_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +char* QUrlQuery_Query(QtObjectPtr ptr, int encoding){ + return static_cast(ptr)->query(static_cast(encoding)).toUtf8().data(); +} + +void QUrlQuery_RemoveAllQueryItems(QtObjectPtr ptr, char* key){ + static_cast(ptr)->removeAllQueryItems(QString(key)); +} + +void QUrlQuery_RemoveQueryItem(QtObjectPtr ptr, char* key){ + static_cast(ptr)->removeQueryItem(QString(key)); +} + +void QUrlQuery_SetQuery(QtObjectPtr ptr, char* queryString){ + static_cast(ptr)->setQuery(QString(queryString)); +} + +void QUrlQuery_SetQueryDelimiters(QtObjectPtr ptr, QtObjectPtr valueDelimiter, QtObjectPtr pairDelimiter){ + static_cast(ptr)->setQueryDelimiters(*static_cast(valueDelimiter), *static_cast(pairDelimiter)); +} + +void QUrlQuery_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +char* QUrlQuery_ToString(QtObjectPtr ptr, int encoding){ + return static_cast(ptr)->toString(static_cast(encoding)).toUtf8().data(); +} + +void QUrlQuery_DestroyQUrlQuery(QtObjectPtr ptr){ + static_cast(ptr)->~QUrlQuery(); +} + diff --git a/core/qurlquery.go b/core/qurlquery.go new file mode 100755 index 00000000..3beb52f0 --- /dev/null +++ b/core/qurlquery.go @@ -0,0 +1,133 @@ +package core + +//#include "qurlquery.h" +import "C" +import ( + "strings" + "unsafe" +) + +type QUrlQuery struct { + ptr unsafe.Pointer +} + +type QUrlQueryITF interface { + QUrlQueryPTR() *QUrlQuery +} + +func (p *QUrlQuery) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QUrlQuery) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQUrlQuery(ptr QUrlQueryITF) unsafe.Pointer { + if ptr != nil { + return ptr.QUrlQueryPTR().Pointer() + } + return nil +} + +func QUrlQueryFromPointer(ptr unsafe.Pointer) *QUrlQuery { + var n = new(QUrlQuery) + n.SetPointer(ptr) + return n +} + +func (ptr *QUrlQuery) QUrlQueryPTR() *QUrlQuery { + return ptr +} + +func NewQUrlQuery() *QUrlQuery { + return QUrlQueryFromPointer(unsafe.Pointer(C.QUrlQuery_NewQUrlQuery())) +} + +func NewQUrlQuery3(queryString string) *QUrlQuery { + return QUrlQueryFromPointer(unsafe.Pointer(C.QUrlQuery_NewQUrlQuery3(C.CString(queryString)))) +} + +func NewQUrlQuery2(url string) *QUrlQuery { + return QUrlQueryFromPointer(unsafe.Pointer(C.QUrlQuery_NewQUrlQuery2(C.CString(url)))) +} + +func NewQUrlQuery4(other QUrlQueryITF) *QUrlQuery { + return QUrlQueryFromPointer(unsafe.Pointer(C.QUrlQuery_NewQUrlQuery4(C.QtObjectPtr(PointerFromQUrlQuery(other))))) +} + +func (ptr *QUrlQuery) AddQueryItem(key string, value string) { + if ptr.Pointer() != nil { + C.QUrlQuery_AddQueryItem(C.QtObjectPtr(ptr.Pointer()), C.CString(key), C.CString(value)) + } +} + +func (ptr *QUrlQuery) AllQueryItemValues(key string, encoding QUrl__ComponentFormattingOption) []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QUrlQuery_AllQueryItemValues(C.QtObjectPtr(ptr.Pointer()), C.CString(key), C.int(encoding))), "|") + } + return make([]string, 0) +} + +func (ptr *QUrlQuery) Clear() { + if ptr.Pointer() != nil { + C.QUrlQuery_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QUrlQuery) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QUrlQuery_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QUrlQuery) Query(encoding QUrl__ComponentFormattingOption) string { + if ptr.Pointer() != nil { + return C.GoString(C.QUrlQuery_Query(C.QtObjectPtr(ptr.Pointer()), C.int(encoding))) + } + return "" +} + +func (ptr *QUrlQuery) RemoveAllQueryItems(key string) { + if ptr.Pointer() != nil { + C.QUrlQuery_RemoveAllQueryItems(C.QtObjectPtr(ptr.Pointer()), C.CString(key)) + } +} + +func (ptr *QUrlQuery) RemoveQueryItem(key string) { + if ptr.Pointer() != nil { + C.QUrlQuery_RemoveQueryItem(C.QtObjectPtr(ptr.Pointer()), C.CString(key)) + } +} + +func (ptr *QUrlQuery) SetQuery(queryString string) { + if ptr.Pointer() != nil { + C.QUrlQuery_SetQuery(C.QtObjectPtr(ptr.Pointer()), C.CString(queryString)) + } +} + +func (ptr *QUrlQuery) SetQueryDelimiters(valueDelimiter QCharITF, pairDelimiter QCharITF) { + if ptr.Pointer() != nil { + C.QUrlQuery_SetQueryDelimiters(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQChar(valueDelimiter)), C.QtObjectPtr(PointerFromQChar(pairDelimiter))) + } +} + +func (ptr *QUrlQuery) Swap(other QUrlQueryITF) { + if ptr.Pointer() != nil { + C.QUrlQuery_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQUrlQuery(other))) + } +} + +func (ptr *QUrlQuery) ToString(encoding QUrl__ComponentFormattingOption) string { + if ptr.Pointer() != nil { + return C.GoString(C.QUrlQuery_ToString(C.QtObjectPtr(ptr.Pointer()), C.int(encoding))) + } + return "" +} + +func (ptr *QUrlQuery) DestroyQUrlQuery() { + if ptr.Pointer() != nil { + C.QUrlQuery_DestroyQUrlQuery(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qurlquery.h b/core/qurlquery.h new file mode 100755 index 00000000..b82f31bd --- /dev/null +++ b/core/qurlquery.h @@ -0,0 +1,25 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QUrlQuery_NewQUrlQuery(); +QtObjectPtr QUrlQuery_NewQUrlQuery3(char* queryString); +QtObjectPtr QUrlQuery_NewQUrlQuery2(char* url); +QtObjectPtr QUrlQuery_NewQUrlQuery4(QtObjectPtr other); +void QUrlQuery_AddQueryItem(QtObjectPtr ptr, char* key, char* value); +char* QUrlQuery_AllQueryItemValues(QtObjectPtr ptr, char* key, int encoding); +void QUrlQuery_Clear(QtObjectPtr ptr); +int QUrlQuery_IsEmpty(QtObjectPtr ptr); +char* QUrlQuery_Query(QtObjectPtr ptr, int encoding); +void QUrlQuery_RemoveAllQueryItems(QtObjectPtr ptr, char* key); +void QUrlQuery_RemoveQueryItem(QtObjectPtr ptr, char* key); +void QUrlQuery_SetQuery(QtObjectPtr ptr, char* queryString); +void QUrlQuery_SetQueryDelimiters(QtObjectPtr ptr, QtObjectPtr valueDelimiter, QtObjectPtr pairDelimiter); +void QUrlQuery_Swap(QtObjectPtr ptr, QtObjectPtr other); +char* QUrlQuery_ToString(QtObjectPtr ptr, int encoding); +void QUrlQuery_DestroyQUrlQuery(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/quuid.cpp b/core/quuid.cpp new file mode 100755 index 00000000..c64ff5e7 --- /dev/null +++ b/core/quuid.cpp @@ -0,0 +1,41 @@ +#include "quuid.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQUuid: public QUuid { +public: +}; + +int QUuid_Variant(QtObjectPtr ptr){ + return static_cast(ptr)->variant(); +} + +int QUuid_Version(QtObjectPtr ptr){ + return static_cast(ptr)->version(); +} + +QtObjectPtr QUuid_NewQUuid(){ + return new QUuid(); +} + +QtObjectPtr QUuid_NewQUuid5(QtObjectPtr text){ + return new QUuid(*static_cast(text)); +} + +QtObjectPtr QUuid_NewQUuid3(char* text){ + return new QUuid(QString(text)); +} + +int QUuid_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +char* QUuid_ToString(QtObjectPtr ptr){ + return static_cast(ptr)->toString().toUtf8().data(); +} + diff --git a/core/quuid.go b/core/quuid.go new file mode 100755 index 00000000..46955d15 --- /dev/null +++ b/core/quuid.go @@ -0,0 +1,104 @@ +package core + +//#include "quuid.h" +import "C" +import ( + "unsafe" +) + +type QUuid struct { + ptr unsafe.Pointer +} + +type QUuidITF interface { + QUuidPTR() *QUuid +} + +func (p *QUuid) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QUuid) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQUuid(ptr QUuidITF) unsafe.Pointer { + if ptr != nil { + return ptr.QUuidPTR().Pointer() + } + return nil +} + +func QUuidFromPointer(ptr unsafe.Pointer) *QUuid { + var n = new(QUuid) + n.SetPointer(ptr) + return n +} + +func (ptr *QUuid) QUuidPTR() *QUuid { + return ptr +} + +//QUuid::Variant +type QUuid__Variant int + +var ( + QUuid__VarUnknown = QUuid__Variant(-1) + QUuid__NCS = QUuid__Variant(0) + QUuid__DCE = QUuid__Variant(2) + QUuid__Microsoft = QUuid__Variant(6) + QUuid__Reserved = QUuid__Variant(7) +) + +//QUuid::Version +type QUuid__Version int + +var ( + QUuid__VerUnknown = QUuid__Version(-1) + QUuid__Time = QUuid__Version(1) + QUuid__EmbeddedPOSIX = QUuid__Version(2) + QUuid__Md5 = QUuid__Version(3) + QUuid__Name = QUuid__Version(QUuid__Md5) + QUuid__Random = QUuid__Version(4) + QUuid__Sha1 = QUuid__Version(5) +) + +func (ptr *QUuid) Variant() QUuid__Variant { + if ptr.Pointer() != nil { + return QUuid__Variant(C.QUuid_Variant(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QUuid) Version() QUuid__Version { + if ptr.Pointer() != nil { + return QUuid__Version(C.QUuid_Version(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQUuid() *QUuid { + return QUuidFromPointer(unsafe.Pointer(C.QUuid_NewQUuid())) +} + +func NewQUuid5(text QByteArrayITF) *QUuid { + return QUuidFromPointer(unsafe.Pointer(C.QUuid_NewQUuid5(C.QtObjectPtr(PointerFromQByteArray(text))))) +} + +func NewQUuid3(text string) *QUuid { + return QUuidFromPointer(unsafe.Pointer(C.QUuid_NewQUuid3(C.CString(text)))) +} + +func (ptr *QUuid) IsNull() bool { + if ptr.Pointer() != nil { + return C.QUuid_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QUuid) ToString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QUuid_ToString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/core/quuid.h b/core/quuid.h new file mode 100755 index 00000000..d4483d12 --- /dev/null +++ b/core/quuid.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QUuid_Variant(QtObjectPtr ptr); +int QUuid_Version(QtObjectPtr ptr); +QtObjectPtr QUuid_NewQUuid(); +QtObjectPtr QUuid_NewQUuid5(QtObjectPtr text); +QtObjectPtr QUuid_NewQUuid3(char* text); +int QUuid_IsNull(QtObjectPtr ptr); +char* QUuid_ToString(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qvariant.cpp b/core/qvariant.cpp new file mode 100755 index 00000000..72790743 --- /dev/null +++ b/core/qvariant.cpp @@ -0,0 +1,60 @@ +#include "qvariant.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQVariant: public QVariant { +public: +}; + +char* QVariant_ToStringList(QtObjectPtr ptr){ + return static_cast(ptr)->toStringList().join("|").toUtf8().data(); +} + +char* QVariant_ToUrl(QtObjectPtr ptr){ + return static_cast(ptr)->toUrl().toString().toUtf8().data(); +} + +void QVariant_DestroyQVariant(QtObjectPtr ptr){ + static_cast(ptr)->~QVariant(); +} + +void QVariant_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +int QVariant_Convert(QtObjectPtr ptr, int targetTypeId){ + return static_cast(ptr)->convert(targetTypeId); +} + +int QVariant_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QVariant_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QVariant_ToBool(QtObjectPtr ptr){ + return static_cast(ptr)->toBool(); +} + +int QVariant_ToInt(QtObjectPtr ptr, int ok){ + return static_cast(ptr)->toInt(NULL); +} + +QtObjectPtr QVariant_ToModelIndex(QtObjectPtr ptr){ + return static_cast(ptr)->toModelIndex().internalPointer(); +} + +char* QVariant_ToString(QtObjectPtr ptr){ + return static_cast(ptr)->toString().toUtf8().data(); +} + +int QVariant_UserType(QtObjectPtr ptr){ + return static_cast(ptr)->userType(); +} + diff --git a/core/qvariant.go b/core/qvariant.go new file mode 100755 index 00000000..9f34a3c7 --- /dev/null +++ b/core/qvariant.go @@ -0,0 +1,124 @@ +package core + +//#include "qvariant.h" +import "C" +import ( + "github.com/therecipe/qt" + "strings" + "unsafe" +) + +type QVariant struct { + ptr unsafe.Pointer +} + +type QVariantITF interface { + QVariantPTR() *QVariant +} + +func (p *QVariant) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QVariant) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQVariant(ptr QVariantITF) unsafe.Pointer { + if ptr != nil { + return ptr.QVariantPTR().Pointer() + } + return nil +} + +func QVariantFromPointer(ptr unsafe.Pointer) *QVariant { + var n = new(QVariant) + n.SetPointer(ptr) + return n +} + +func (ptr *QVariant) QVariantPTR() *QVariant { + return ptr +} + +func (ptr *QVariant) ToStringList() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QVariant_ToStringList(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QVariant) ToUrl() string { + if ptr.Pointer() != nil { + return C.GoString(C.QVariant_ToUrl(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QVariant) DestroyQVariant() { + if ptr.Pointer() != nil { + C.QVariant_DestroyQVariant(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QVariant) Clear() { + if ptr.Pointer() != nil { + C.QVariant_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QVariant) Convert(targetTypeId int) bool { + if ptr.Pointer() != nil { + return C.QVariant_Convert(C.QtObjectPtr(ptr.Pointer()), C.int(targetTypeId)) != 0 + } + return false +} + +func (ptr *QVariant) IsNull() bool { + if ptr.Pointer() != nil { + return C.QVariant_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QVariant) IsValid() bool { + if ptr.Pointer() != nil { + return C.QVariant_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QVariant) ToBool() bool { + if ptr.Pointer() != nil { + return C.QVariant_ToBool(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QVariant) ToInt(ok bool) int { + if ptr.Pointer() != nil { + return int(C.QVariant_ToInt(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(ok)))) + } + return 0 +} + +func (ptr *QVariant) ToModelIndex() *QModelIndex { + if ptr.Pointer() != nil { + return QModelIndexFromPointer(unsafe.Pointer(C.QVariant_ToModelIndex(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QVariant) ToString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QVariant_ToString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QVariant) UserType() int { + if ptr.Pointer() != nil { + return int(C.QVariant_UserType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/core/qvariant.h b/core/qvariant.h new file mode 100755 index 00000000..f45e135c --- /dev/null +++ b/core/qvariant.h @@ -0,0 +1,21 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QVariant_ToStringList(QtObjectPtr ptr); +char* QVariant_ToUrl(QtObjectPtr ptr); +void QVariant_DestroyQVariant(QtObjectPtr ptr); +void QVariant_Clear(QtObjectPtr ptr); +int QVariant_Convert(QtObjectPtr ptr, int targetTypeId); +int QVariant_IsNull(QtObjectPtr ptr); +int QVariant_IsValid(QtObjectPtr ptr); +int QVariant_ToBool(QtObjectPtr ptr); +int QVariant_ToInt(QtObjectPtr ptr, int ok); +QtObjectPtr QVariant_ToModelIndex(QtObjectPtr ptr); +char* QVariant_ToString(QtObjectPtr ptr); +int QVariant_UserType(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qvariantanimation.cpp b/core/qvariantanimation.cpp new file mode 100755 index 00000000..22d50d4f --- /dev/null +++ b/core/qvariantanimation.cpp @@ -0,0 +1,63 @@ +#include "qvariantanimation.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQVariantAnimation: public QVariantAnimation { +public: +void Signal_ValueChanged(const QVariant & value){callbackQVariantAnimationValueChanged(this->objectName().toUtf8().data(), value.toString().toUtf8().data());}; +}; + +char* QVariantAnimation_CurrentValue(QtObjectPtr ptr){ + return static_cast(ptr)->currentValue().toString().toUtf8().data(); +} + +int QVariantAnimation_Duration(QtObjectPtr ptr){ + return static_cast(ptr)->duration(); +} + +char* QVariantAnimation_EndValue(QtObjectPtr ptr){ + return static_cast(ptr)->endValue().toString().toUtf8().data(); +} + +void QVariantAnimation_SetDuration(QtObjectPtr ptr, int msecs){ + static_cast(ptr)->setDuration(msecs); +} + +void QVariantAnimation_SetEasingCurve(QtObjectPtr ptr, QtObjectPtr easing){ + static_cast(ptr)->setEasingCurve(*static_cast(easing)); +} + +void QVariantAnimation_SetEndValue(QtObjectPtr ptr, char* value){ + static_cast(ptr)->setEndValue(QVariant(value)); +} + +void QVariantAnimation_SetStartValue(QtObjectPtr ptr, char* value){ + static_cast(ptr)->setStartValue(QVariant(value)); +} + +char* QVariantAnimation_StartValue(QtObjectPtr ptr){ + return static_cast(ptr)->startValue().toString().toUtf8().data(); +} + +QtObjectPtr QVariantAnimation_NewQVariantAnimation(QtObjectPtr parent){ + return new QVariantAnimation(static_cast(parent)); +} + +void QVariantAnimation_ConnectValueChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QVariantAnimation::valueChanged), static_cast(ptr), static_cast(&MyQVariantAnimation::Signal_ValueChanged));; +} + +void QVariantAnimation_DisconnectValueChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QVariantAnimation::valueChanged), static_cast(ptr), static_cast(&MyQVariantAnimation::Signal_ValueChanged));; +} + +void QVariantAnimation_DestroyQVariantAnimation(QtObjectPtr ptr){ + static_cast(ptr)->~QVariantAnimation(); +} + diff --git a/core/qvariantanimation.go b/core/qvariantanimation.go new file mode 100755 index 00000000..e34e5fc2 --- /dev/null +++ b/core/qvariantanimation.go @@ -0,0 +1,119 @@ +package core + +//#include "qvariantanimation.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QVariantAnimation struct { + QAbstractAnimation +} + +type QVariantAnimationITF interface { + QAbstractAnimationITF + QVariantAnimationPTR() *QVariantAnimation +} + +func PointerFromQVariantAnimation(ptr QVariantAnimationITF) unsafe.Pointer { + if ptr != nil { + return ptr.QVariantAnimationPTR().Pointer() + } + return nil +} + +func QVariantAnimationFromPointer(ptr unsafe.Pointer) *QVariantAnimation { + var n = new(QVariantAnimation) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QVariantAnimation_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QVariantAnimation) QVariantAnimationPTR() *QVariantAnimation { + return ptr +} + +func (ptr *QVariantAnimation) CurrentValue() string { + if ptr.Pointer() != nil { + return C.GoString(C.QVariantAnimation_CurrentValue(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QVariantAnimation) Duration() int { + if ptr.Pointer() != nil { + return int(C.QVariantAnimation_Duration(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVariantAnimation) EndValue() string { + if ptr.Pointer() != nil { + return C.GoString(C.QVariantAnimation_EndValue(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QVariantAnimation) SetDuration(msecs int) { + if ptr.Pointer() != nil { + C.QVariantAnimation_SetDuration(C.QtObjectPtr(ptr.Pointer()), C.int(msecs)) + } +} + +func (ptr *QVariantAnimation) SetEasingCurve(easing QEasingCurveITF) { + if ptr.Pointer() != nil { + C.QVariantAnimation_SetEasingCurve(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQEasingCurve(easing))) + } +} + +func (ptr *QVariantAnimation) SetEndValue(value string) { + if ptr.Pointer() != nil { + C.QVariantAnimation_SetEndValue(C.QtObjectPtr(ptr.Pointer()), C.CString(value)) + } +} + +func (ptr *QVariantAnimation) SetStartValue(value string) { + if ptr.Pointer() != nil { + C.QVariantAnimation_SetStartValue(C.QtObjectPtr(ptr.Pointer()), C.CString(value)) + } +} + +func (ptr *QVariantAnimation) StartValue() string { + if ptr.Pointer() != nil { + return C.GoString(C.QVariantAnimation_StartValue(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func NewQVariantAnimation(parent QObjectITF) *QVariantAnimation { + return QVariantAnimationFromPointer(unsafe.Pointer(C.QVariantAnimation_NewQVariantAnimation(C.QtObjectPtr(PointerFromQObject(parent))))) +} + +func (ptr *QVariantAnimation) ConnectValueChanged(f func(value string)) { + if ptr.Pointer() != nil { + C.QVariantAnimation_ConnectValueChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "valueChanged", f) + } +} + +func (ptr *QVariantAnimation) DisconnectValueChanged() { + if ptr.Pointer() != nil { + C.QVariantAnimation_DisconnectValueChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "valueChanged") + } +} + +//export callbackQVariantAnimationValueChanged +func callbackQVariantAnimationValueChanged(ptrName *C.char, value *C.char) { + qt.GetSignal(C.GoString(ptrName), "valueChanged").(func(string))(C.GoString(value)) +} + +func (ptr *QVariantAnimation) DestroyQVariantAnimation() { + if ptr.Pointer() != nil { + C.QVariantAnimation_DestroyQVariantAnimation(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/core/qvariantanimation.h b/core/qvariantanimation.h new file mode 100755 index 00000000..73cac165 --- /dev/null +++ b/core/qvariantanimation.h @@ -0,0 +1,21 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QVariantAnimation_CurrentValue(QtObjectPtr ptr); +int QVariantAnimation_Duration(QtObjectPtr ptr); +char* QVariantAnimation_EndValue(QtObjectPtr ptr); +void QVariantAnimation_SetDuration(QtObjectPtr ptr, int msecs); +void QVariantAnimation_SetEasingCurve(QtObjectPtr ptr, QtObjectPtr easing); +void QVariantAnimation_SetEndValue(QtObjectPtr ptr, char* value); +void QVariantAnimation_SetStartValue(QtObjectPtr ptr, char* value); +char* QVariantAnimation_StartValue(QtObjectPtr ptr); +QtObjectPtr QVariantAnimation_NewQVariantAnimation(QtObjectPtr parent); +void QVariantAnimation_ConnectValueChanged(QtObjectPtr ptr); +void QVariantAnimation_DisconnectValueChanged(QtObjectPtr ptr); +void QVariantAnimation_DestroyQVariantAnimation(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qvarlengtharray.cpp b/core/qvarlengtharray.cpp new file mode 100755 index 00000000..1eda5d79 --- /dev/null +++ b/core/qvarlengtharray.cpp @@ -0,0 +1,8 @@ +#include "qvarlengtharray.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qvarlengtharray.go b/core/qvarlengtharray.go new file mode 100755 index 00000000..96121fd4 --- /dev/null +++ b/core/qvarlengtharray.go @@ -0,0 +1,40 @@ +package core + +//#include "qvarlengtharray.h" +import "C" +import ( + "unsafe" +) + +type QVarLengthArray struct { + ptr unsafe.Pointer +} + +type QVarLengthArrayITF interface { + QVarLengthArrayPTR() *QVarLengthArray +} + +func (p *QVarLengthArray) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QVarLengthArray) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQVarLengthArray(ptr QVarLengthArrayITF) unsafe.Pointer { + if ptr != nil { + return ptr.QVarLengthArrayPTR().Pointer() + } + return nil +} + +func QVarLengthArrayFromPointer(ptr unsafe.Pointer) *QVarLengthArray { + var n = new(QVarLengthArray) + n.SetPointer(ptr) + return n +} + +func (ptr *QVarLengthArray) QVarLengthArrayPTR() *QVarLengthArray { + return ptr +} diff --git a/core/qvarlengtharray.h b/core/qvarlengtharray.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qvarlengtharray.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qvector.cpp b/core/qvector.cpp new file mode 100755 index 00000000..e5dcd93f --- /dev/null +++ b/core/qvector.cpp @@ -0,0 +1,8 @@ +#include "qvector.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qvector.go b/core/qvector.go new file mode 100755 index 00000000..dcb574c5 --- /dev/null +++ b/core/qvector.go @@ -0,0 +1,40 @@ +package core + +//#include "qvector.h" +import "C" +import ( + "unsafe" +) + +type QVector struct { + ptr unsafe.Pointer +} + +type QVectorITF interface { + QVectorPTR() *QVector +} + +func (p *QVector) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QVector) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQVector(ptr QVectorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QVectorPTR().Pointer() + } + return nil +} + +func QVectorFromPointer(ptr unsafe.Pointer) *QVector { + var n = new(QVector) + n.SetPointer(ptr) + return n +} + +func (ptr *QVector) QVectorPTR() *QVector { + return ptr +} diff --git a/core/qvector.h b/core/qvector.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qvector.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qvectoriterator.cpp b/core/qvectoriterator.cpp new file mode 100755 index 00000000..cedc4b6f --- /dev/null +++ b/core/qvectoriterator.cpp @@ -0,0 +1,9 @@ +#include "qvectoriterator.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qvectoriterator.go b/core/qvectoriterator.go new file mode 100755 index 00000000..006b1d41 --- /dev/null +++ b/core/qvectoriterator.go @@ -0,0 +1,40 @@ +package core + +//#include "qvectoriterator.h" +import "C" +import ( + "unsafe" +) + +type QVectorIterator struct { + ptr unsafe.Pointer +} + +type QVectorIteratorITF interface { + QVectorIteratorPTR() *QVectorIterator +} + +func (p *QVectorIterator) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QVectorIterator) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQVectorIterator(ptr QVectorIteratorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QVectorIteratorPTR().Pointer() + } + return nil +} + +func QVectorIteratorFromPointer(ptr unsafe.Pointer) *QVectorIterator { + var n = new(QVectorIterator) + n.SetPointer(ptr) + return n +} + +func (ptr *QVectorIterator) QVectorIteratorPTR() *QVectorIterator { + return ptr +} diff --git a/core/qvectoriterator.h b/core/qvectoriterator.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qvectoriterator.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qwaitcondition.cpp b/core/qwaitcondition.cpp new file mode 100755 index 00000000..71abdf1c --- /dev/null +++ b/core/qwaitcondition.cpp @@ -0,0 +1,28 @@ +#include "qwaitcondition.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQWaitCondition: public QWaitCondition { +public: +}; + +QtObjectPtr QWaitCondition_NewQWaitCondition(){ + return new QWaitCondition(); +} + +void QWaitCondition_WakeAll(QtObjectPtr ptr){ + static_cast(ptr)->wakeAll(); +} + +void QWaitCondition_WakeOne(QtObjectPtr ptr){ + static_cast(ptr)->wakeOne(); +} + +void QWaitCondition_DestroyQWaitCondition(QtObjectPtr ptr){ + static_cast(ptr)->~QWaitCondition(); +} + diff --git a/core/qwaitcondition.go b/core/qwaitcondition.go new file mode 100755 index 00000000..9d93ad9f --- /dev/null +++ b/core/qwaitcondition.go @@ -0,0 +1,62 @@ +package core + +//#include "qwaitcondition.h" +import "C" +import ( + "unsafe" +) + +type QWaitCondition struct { + ptr unsafe.Pointer +} + +type QWaitConditionITF interface { + QWaitConditionPTR() *QWaitCondition +} + +func (p *QWaitCondition) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QWaitCondition) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQWaitCondition(ptr QWaitConditionITF) unsafe.Pointer { + if ptr != nil { + return ptr.QWaitConditionPTR().Pointer() + } + return nil +} + +func QWaitConditionFromPointer(ptr unsafe.Pointer) *QWaitCondition { + var n = new(QWaitCondition) + n.SetPointer(ptr) + return n +} + +func (ptr *QWaitCondition) QWaitConditionPTR() *QWaitCondition { + return ptr +} + +func NewQWaitCondition() *QWaitCondition { + return QWaitConditionFromPointer(unsafe.Pointer(C.QWaitCondition_NewQWaitCondition())) +} + +func (ptr *QWaitCondition) WakeAll() { + if ptr.Pointer() != nil { + C.QWaitCondition_WakeAll(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWaitCondition) WakeOne() { + if ptr.Pointer() != nil { + C.QWaitCondition_WakeOne(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWaitCondition) DestroyQWaitCondition() { + if ptr.Pointer() != nil { + C.QWaitCondition_DestroyQWaitCondition(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qwaitcondition.h b/core/qwaitcondition.h new file mode 100755 index 00000000..4d6a2b9c --- /dev/null +++ b/core/qwaitcondition.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QWaitCondition_NewQWaitCondition(); +void QWaitCondition_WakeAll(QtObjectPtr ptr); +void QWaitCondition_WakeOne(QtObjectPtr ptr); +void QWaitCondition_DestroyQWaitCondition(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qweakpointer.cpp b/core/qweakpointer.cpp new file mode 100755 index 00000000..0e3832fe --- /dev/null +++ b/core/qweakpointer.cpp @@ -0,0 +1,8 @@ +#include "qweakpointer.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qweakpointer.go b/core/qweakpointer.go new file mode 100755 index 00000000..0b71386b --- /dev/null +++ b/core/qweakpointer.go @@ -0,0 +1,40 @@ +package core + +//#include "qweakpointer.h" +import "C" +import ( + "unsafe" +) + +type QWeakPointer struct { + ptr unsafe.Pointer +} + +type QWeakPointerITF interface { + QWeakPointerPTR() *QWeakPointer +} + +func (p *QWeakPointer) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QWeakPointer) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQWeakPointer(ptr QWeakPointerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QWeakPointerPTR().Pointer() + } + return nil +} + +func QWeakPointerFromPointer(ptr unsafe.Pointer) *QWeakPointer { + var n = new(QWeakPointer) + n.SetPointer(ptr) + return n +} + +func (ptr *QWeakPointer) QWeakPointerPTR() *QWeakPointer { + return ptr +} diff --git a/core/qweakpointer.h b/core/qweakpointer.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qweakpointer.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qwineventnotifier.cpp b/core/qwineventnotifier.cpp new file mode 100755 index 00000000..a041214a --- /dev/null +++ b/core/qwineventnotifier.cpp @@ -0,0 +1,8 @@ +#include "qwineventnotifier.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/core/qwineventnotifier.go b/core/qwineventnotifier.go new file mode 100755 index 00000000..38d11140 --- /dev/null +++ b/core/qwineventnotifier.go @@ -0,0 +1,37 @@ +package core + +//#include "qwineventnotifier.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QWinEventNotifier struct { + QObject +} + +type QWinEventNotifierITF interface { + QObjectITF + QWinEventNotifierPTR() *QWinEventNotifier +} + +func PointerFromQWinEventNotifier(ptr QWinEventNotifierITF) unsafe.Pointer { + if ptr != nil { + return ptr.QWinEventNotifierPTR().Pointer() + } + return nil +} + +func QWinEventNotifierFromPointer(ptr unsafe.Pointer) *QWinEventNotifier { + var n = new(QWinEventNotifier) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QWinEventNotifier_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QWinEventNotifier) QWinEventNotifierPTR() *QWinEventNotifier { + return ptr +} diff --git a/core/qwineventnotifier.h b/core/qwineventnotifier.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/core/qwineventnotifier.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qwritelocker.cpp b/core/qwritelocker.cpp new file mode 100755 index 00000000..13c598c2 --- /dev/null +++ b/core/qwritelocker.cpp @@ -0,0 +1,33 @@ +#include "qwritelocker.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQWriteLocker: public QWriteLocker { +public: +}; + +QtObjectPtr QWriteLocker_NewQWriteLocker(QtObjectPtr lock){ + return new QWriteLocker(static_cast(lock)); +} + +QtObjectPtr QWriteLocker_ReadWriteLock(QtObjectPtr ptr){ + return static_cast(ptr)->readWriteLock(); +} + +void QWriteLocker_Relock(QtObjectPtr ptr){ + static_cast(ptr)->relock(); +} + +void QWriteLocker_Unlock(QtObjectPtr ptr){ + static_cast(ptr)->unlock(); +} + +void QWriteLocker_DestroyQWriteLocker(QtObjectPtr ptr){ + static_cast(ptr)->~QWriteLocker(); +} + diff --git a/core/qwritelocker.go b/core/qwritelocker.go new file mode 100755 index 00000000..64d9b3b2 --- /dev/null +++ b/core/qwritelocker.go @@ -0,0 +1,69 @@ +package core + +//#include "qwritelocker.h" +import "C" +import ( + "unsafe" +) + +type QWriteLocker struct { + ptr unsafe.Pointer +} + +type QWriteLockerITF interface { + QWriteLockerPTR() *QWriteLocker +} + +func (p *QWriteLocker) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QWriteLocker) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQWriteLocker(ptr QWriteLockerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QWriteLockerPTR().Pointer() + } + return nil +} + +func QWriteLockerFromPointer(ptr unsafe.Pointer) *QWriteLocker { + var n = new(QWriteLocker) + n.SetPointer(ptr) + return n +} + +func (ptr *QWriteLocker) QWriteLockerPTR() *QWriteLocker { + return ptr +} + +func NewQWriteLocker(lock QReadWriteLockITF) *QWriteLocker { + return QWriteLockerFromPointer(unsafe.Pointer(C.QWriteLocker_NewQWriteLocker(C.QtObjectPtr(PointerFromQReadWriteLock(lock))))) +} + +func (ptr *QWriteLocker) ReadWriteLock() *QReadWriteLock { + if ptr.Pointer() != nil { + return QReadWriteLockFromPointer(unsafe.Pointer(C.QWriteLocker_ReadWriteLock(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QWriteLocker) Relock() { + if ptr.Pointer() != nil { + C.QWriteLocker_Relock(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWriteLocker) Unlock() { + if ptr.Pointer() != nil { + C.QWriteLocker_Unlock(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWriteLocker) DestroyQWriteLocker() { + if ptr.Pointer() != nil { + C.QWriteLocker_DestroyQWriteLocker(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qwritelocker.h b/core/qwritelocker.h new file mode 100755 index 00000000..c4d7f6dc --- /dev/null +++ b/core/qwritelocker.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QWriteLocker_NewQWriteLocker(QtObjectPtr lock); +QtObjectPtr QWriteLocker_ReadWriteLock(QtObjectPtr ptr); +void QWriteLocker_Relock(QtObjectPtr ptr); +void QWriteLocker_Unlock(QtObjectPtr ptr); +void QWriteLocker_DestroyQWriteLocker(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qxmlstreamattribute.cpp b/core/qxmlstreamattribute.cpp new file mode 100755 index 00000000..d300c9c9 --- /dev/null +++ b/core/qxmlstreamattribute.cpp @@ -0,0 +1,36 @@ +#include "qxmlstreamattribute.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlStreamAttribute: public QXmlStreamAttribute { +public: +}; + +QtObjectPtr QXmlStreamAttribute_NewQXmlStreamAttribute(){ + return new QXmlStreamAttribute(); +} + +QtObjectPtr QXmlStreamAttribute_NewQXmlStreamAttribute3(char* namespaceUri, char* name, char* value){ + return new QXmlStreamAttribute(QString(namespaceUri), QString(name), QString(value)); +} + +QtObjectPtr QXmlStreamAttribute_NewQXmlStreamAttribute2(char* qualifiedName, char* value){ + return new QXmlStreamAttribute(QString(qualifiedName), QString(value)); +} + +QtObjectPtr QXmlStreamAttribute_NewQXmlStreamAttribute4(QtObjectPtr other){ + return new QXmlStreamAttribute(*static_cast(other)); +} + +int QXmlStreamAttribute_IsDefault(QtObjectPtr ptr){ + return static_cast(ptr)->isDefault(); +} + +void QXmlStreamAttribute_DestroyQXmlStreamAttribute(QtObjectPtr ptr){ + static_cast(ptr)->~QXmlStreamAttribute(); +} + diff --git a/core/qxmlstreamattribute.go b/core/qxmlstreamattribute.go new file mode 100755 index 00000000..8acfa8b4 --- /dev/null +++ b/core/qxmlstreamattribute.go @@ -0,0 +1,69 @@ +package core + +//#include "qxmlstreamattribute.h" +import "C" +import ( + "unsafe" +) + +type QXmlStreamAttribute struct { + ptr unsafe.Pointer +} + +type QXmlStreamAttributeITF interface { + QXmlStreamAttributePTR() *QXmlStreamAttribute +} + +func (p *QXmlStreamAttribute) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QXmlStreamAttribute) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQXmlStreamAttribute(ptr QXmlStreamAttributeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlStreamAttributePTR().Pointer() + } + return nil +} + +func QXmlStreamAttributeFromPointer(ptr unsafe.Pointer) *QXmlStreamAttribute { + var n = new(QXmlStreamAttribute) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlStreamAttribute) QXmlStreamAttributePTR() *QXmlStreamAttribute { + return ptr +} + +func NewQXmlStreamAttribute() *QXmlStreamAttribute { + return QXmlStreamAttributeFromPointer(unsafe.Pointer(C.QXmlStreamAttribute_NewQXmlStreamAttribute())) +} + +func NewQXmlStreamAttribute3(namespaceUri string, name string, value string) *QXmlStreamAttribute { + return QXmlStreamAttributeFromPointer(unsafe.Pointer(C.QXmlStreamAttribute_NewQXmlStreamAttribute3(C.CString(namespaceUri), C.CString(name), C.CString(value)))) +} + +func NewQXmlStreamAttribute2(qualifiedName string, value string) *QXmlStreamAttribute { + return QXmlStreamAttributeFromPointer(unsafe.Pointer(C.QXmlStreamAttribute_NewQXmlStreamAttribute2(C.CString(qualifiedName), C.CString(value)))) +} + +func NewQXmlStreamAttribute4(other QXmlStreamAttributeITF) *QXmlStreamAttribute { + return QXmlStreamAttributeFromPointer(unsafe.Pointer(C.QXmlStreamAttribute_NewQXmlStreamAttribute4(C.QtObjectPtr(PointerFromQXmlStreamAttribute(other))))) +} + +func (ptr *QXmlStreamAttribute) IsDefault() bool { + if ptr.Pointer() != nil { + return C.QXmlStreamAttribute_IsDefault(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlStreamAttribute) DestroyQXmlStreamAttribute() { + if ptr.Pointer() != nil { + C.QXmlStreamAttribute_DestroyQXmlStreamAttribute(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qxmlstreamattribute.h b/core/qxmlstreamattribute.h new file mode 100755 index 00000000..af3bce7e --- /dev/null +++ b/core/qxmlstreamattribute.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QXmlStreamAttribute_NewQXmlStreamAttribute(); +QtObjectPtr QXmlStreamAttribute_NewQXmlStreamAttribute3(char* namespaceUri, char* name, char* value); +QtObjectPtr QXmlStreamAttribute_NewQXmlStreamAttribute2(char* qualifiedName, char* value); +QtObjectPtr QXmlStreamAttribute_NewQXmlStreamAttribute4(QtObjectPtr other); +int QXmlStreamAttribute_IsDefault(QtObjectPtr ptr); +void QXmlStreamAttribute_DestroyQXmlStreamAttribute(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qxmlstreamattributes.cpp b/core/qxmlstreamattributes.cpp new file mode 100755 index 00000000..d4d3f17d --- /dev/null +++ b/core/qxmlstreamattributes.cpp @@ -0,0 +1,38 @@ +#include "qxmlstreamattributes.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlStreamAttributes: public QXmlStreamAttributes { +public: +}; + +QtObjectPtr QXmlStreamAttributes_NewQXmlStreamAttributes(){ + return new QXmlStreamAttributes(); +} + +void QXmlStreamAttributes_Append(QtObjectPtr ptr, char* namespaceUri, char* name, char* value){ + static_cast(ptr)->append(QString(namespaceUri), QString(name), QString(value)); +} + +void QXmlStreamAttributes_Append2(QtObjectPtr ptr, char* qualifiedName, char* value){ + static_cast(ptr)->append(QString(qualifiedName), QString(value)); +} + +int QXmlStreamAttributes_HasAttribute2(QtObjectPtr ptr, QtObjectPtr qualifiedName){ + return static_cast(ptr)->hasAttribute(*static_cast(qualifiedName)); +} + +int QXmlStreamAttributes_HasAttribute3(QtObjectPtr ptr, char* namespaceUri, char* name){ + return static_cast(ptr)->hasAttribute(QString(namespaceUri), QString(name)); +} + +int QXmlStreamAttributes_HasAttribute(QtObjectPtr ptr, char* qualifiedName){ + return static_cast(ptr)->hasAttribute(QString(qualifiedName)); +} + diff --git a/core/qxmlstreamattributes.go b/core/qxmlstreamattributes.go new file mode 100755 index 00000000..c179c395 --- /dev/null +++ b/core/qxmlstreamattributes.go @@ -0,0 +1,70 @@ +package core + +//#include "qxmlstreamattributes.h" +import "C" +import ( + "unsafe" +) + +type QXmlStreamAttributes struct { + QVector +} + +type QXmlStreamAttributesITF interface { + QVectorITF + QXmlStreamAttributesPTR() *QXmlStreamAttributes +} + +func PointerFromQXmlStreamAttributes(ptr QXmlStreamAttributesITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlStreamAttributesPTR().Pointer() + } + return nil +} + +func QXmlStreamAttributesFromPointer(ptr unsafe.Pointer) *QXmlStreamAttributes { + var n = new(QXmlStreamAttributes) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlStreamAttributes) QXmlStreamAttributesPTR() *QXmlStreamAttributes { + return ptr +} + +func NewQXmlStreamAttributes() *QXmlStreamAttributes { + return QXmlStreamAttributesFromPointer(unsafe.Pointer(C.QXmlStreamAttributes_NewQXmlStreamAttributes())) +} + +func (ptr *QXmlStreamAttributes) Append(namespaceUri string, name string, value string) { + if ptr.Pointer() != nil { + C.QXmlStreamAttributes_Append(C.QtObjectPtr(ptr.Pointer()), C.CString(namespaceUri), C.CString(name), C.CString(value)) + } +} + +func (ptr *QXmlStreamAttributes) Append2(qualifiedName string, value string) { + if ptr.Pointer() != nil { + C.QXmlStreamAttributes_Append2(C.QtObjectPtr(ptr.Pointer()), C.CString(qualifiedName), C.CString(value)) + } +} + +func (ptr *QXmlStreamAttributes) HasAttribute2(qualifiedName QLatin1StringITF) bool { + if ptr.Pointer() != nil { + return C.QXmlStreamAttributes_HasAttribute2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLatin1String(qualifiedName))) != 0 + } + return false +} + +func (ptr *QXmlStreamAttributes) HasAttribute3(namespaceUri string, name string) bool { + if ptr.Pointer() != nil { + return C.QXmlStreamAttributes_HasAttribute3(C.QtObjectPtr(ptr.Pointer()), C.CString(namespaceUri), C.CString(name)) != 0 + } + return false +} + +func (ptr *QXmlStreamAttributes) HasAttribute(qualifiedName string) bool { + if ptr.Pointer() != nil { + return C.QXmlStreamAttributes_HasAttribute(C.QtObjectPtr(ptr.Pointer()), C.CString(qualifiedName)) != 0 + } + return false +} diff --git a/core/qxmlstreamattributes.h b/core/qxmlstreamattributes.h new file mode 100755 index 00000000..72b52635 --- /dev/null +++ b/core/qxmlstreamattributes.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QXmlStreamAttributes_NewQXmlStreamAttributes(); +void QXmlStreamAttributes_Append(QtObjectPtr ptr, char* namespaceUri, char* name, char* value); +void QXmlStreamAttributes_Append2(QtObjectPtr ptr, char* qualifiedName, char* value); +int QXmlStreamAttributes_HasAttribute2(QtObjectPtr ptr, QtObjectPtr qualifiedName); +int QXmlStreamAttributes_HasAttribute3(QtObjectPtr ptr, char* namespaceUri, char* name); +int QXmlStreamAttributes_HasAttribute(QtObjectPtr ptr, char* qualifiedName); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qxmlstreamentitydeclaration.cpp b/core/qxmlstreamentitydeclaration.cpp new file mode 100755 index 00000000..90cc1b35 --- /dev/null +++ b/core/qxmlstreamentitydeclaration.cpp @@ -0,0 +1,24 @@ +#include "qxmlstreamentitydeclaration.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlStreamEntityDeclaration: public QXmlStreamEntityDeclaration { +public: +}; + +QtObjectPtr QXmlStreamEntityDeclaration_NewQXmlStreamEntityDeclaration(){ + return new QXmlStreamEntityDeclaration(); +} + +QtObjectPtr QXmlStreamEntityDeclaration_NewQXmlStreamEntityDeclaration2(QtObjectPtr other){ + return new QXmlStreamEntityDeclaration(*static_cast(other)); +} + +void QXmlStreamEntityDeclaration_DestroyQXmlStreamEntityDeclaration(QtObjectPtr ptr){ + static_cast(ptr)->~QXmlStreamEntityDeclaration(); +} + diff --git a/core/qxmlstreamentitydeclaration.go b/core/qxmlstreamentitydeclaration.go new file mode 100755 index 00000000..8a2ab39e --- /dev/null +++ b/core/qxmlstreamentitydeclaration.go @@ -0,0 +1,54 @@ +package core + +//#include "qxmlstreamentitydeclaration.h" +import "C" +import ( + "unsafe" +) + +type QXmlStreamEntityDeclaration struct { + ptr unsafe.Pointer +} + +type QXmlStreamEntityDeclarationITF interface { + QXmlStreamEntityDeclarationPTR() *QXmlStreamEntityDeclaration +} + +func (p *QXmlStreamEntityDeclaration) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QXmlStreamEntityDeclaration) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQXmlStreamEntityDeclaration(ptr QXmlStreamEntityDeclarationITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlStreamEntityDeclarationPTR().Pointer() + } + return nil +} + +func QXmlStreamEntityDeclarationFromPointer(ptr unsafe.Pointer) *QXmlStreamEntityDeclaration { + var n = new(QXmlStreamEntityDeclaration) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlStreamEntityDeclaration) QXmlStreamEntityDeclarationPTR() *QXmlStreamEntityDeclaration { + return ptr +} + +func NewQXmlStreamEntityDeclaration() *QXmlStreamEntityDeclaration { + return QXmlStreamEntityDeclarationFromPointer(unsafe.Pointer(C.QXmlStreamEntityDeclaration_NewQXmlStreamEntityDeclaration())) +} + +func NewQXmlStreamEntityDeclaration2(other QXmlStreamEntityDeclarationITF) *QXmlStreamEntityDeclaration { + return QXmlStreamEntityDeclarationFromPointer(unsafe.Pointer(C.QXmlStreamEntityDeclaration_NewQXmlStreamEntityDeclaration2(C.QtObjectPtr(PointerFromQXmlStreamEntityDeclaration(other))))) +} + +func (ptr *QXmlStreamEntityDeclaration) DestroyQXmlStreamEntityDeclaration() { + if ptr.Pointer() != nil { + C.QXmlStreamEntityDeclaration_DestroyQXmlStreamEntityDeclaration(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qxmlstreamentitydeclaration.h b/core/qxmlstreamentitydeclaration.h new file mode 100755 index 00000000..f604fbca --- /dev/null +++ b/core/qxmlstreamentitydeclaration.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QXmlStreamEntityDeclaration_NewQXmlStreamEntityDeclaration(); +QtObjectPtr QXmlStreamEntityDeclaration_NewQXmlStreamEntityDeclaration2(QtObjectPtr other); +void QXmlStreamEntityDeclaration_DestroyQXmlStreamEntityDeclaration(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qxmlstreamentityresolver.cpp b/core/qxmlstreamentityresolver.cpp new file mode 100755 index 00000000..3576c23c --- /dev/null +++ b/core/qxmlstreamentityresolver.cpp @@ -0,0 +1,20 @@ +#include "qxmlstreamentityresolver.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlStreamEntityResolver: public QXmlStreamEntityResolver { +public: +}; + +char* QXmlStreamEntityResolver_ResolveUndeclaredEntity(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->resolveUndeclaredEntity(QString(name)).toUtf8().data(); +} + +void QXmlStreamEntityResolver_DestroyQXmlStreamEntityResolver(QtObjectPtr ptr){ + static_cast(ptr)->~QXmlStreamEntityResolver(); +} + diff --git a/core/qxmlstreamentityresolver.go b/core/qxmlstreamentityresolver.go new file mode 100755 index 00000000..bf00e990 --- /dev/null +++ b/core/qxmlstreamentityresolver.go @@ -0,0 +1,53 @@ +package core + +//#include "qxmlstreamentityresolver.h" +import "C" +import ( + "unsafe" +) + +type QXmlStreamEntityResolver struct { + ptr unsafe.Pointer +} + +type QXmlStreamEntityResolverITF interface { + QXmlStreamEntityResolverPTR() *QXmlStreamEntityResolver +} + +func (p *QXmlStreamEntityResolver) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QXmlStreamEntityResolver) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQXmlStreamEntityResolver(ptr QXmlStreamEntityResolverITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlStreamEntityResolverPTR().Pointer() + } + return nil +} + +func QXmlStreamEntityResolverFromPointer(ptr unsafe.Pointer) *QXmlStreamEntityResolver { + var n = new(QXmlStreamEntityResolver) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlStreamEntityResolver) QXmlStreamEntityResolverPTR() *QXmlStreamEntityResolver { + return ptr +} + +func (ptr *QXmlStreamEntityResolver) ResolveUndeclaredEntity(name string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlStreamEntityResolver_ResolveUndeclaredEntity(C.QtObjectPtr(ptr.Pointer()), C.CString(name))) + } + return "" +} + +func (ptr *QXmlStreamEntityResolver) DestroyQXmlStreamEntityResolver() { + if ptr.Pointer() != nil { + C.QXmlStreamEntityResolver_DestroyQXmlStreamEntityResolver(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qxmlstreamentityresolver.h b/core/qxmlstreamentityresolver.h new file mode 100755 index 00000000..dd0a89c5 --- /dev/null +++ b/core/qxmlstreamentityresolver.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QXmlStreamEntityResolver_ResolveUndeclaredEntity(QtObjectPtr ptr, char* name); +void QXmlStreamEntityResolver_DestroyQXmlStreamEntityResolver(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qxmlstreamnamespacedeclaration.cpp b/core/qxmlstreamnamespacedeclaration.cpp new file mode 100755 index 00000000..e55388f0 --- /dev/null +++ b/core/qxmlstreamnamespacedeclaration.cpp @@ -0,0 +1,28 @@ +#include "qxmlstreamnamespacedeclaration.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlStreamNamespaceDeclaration: public QXmlStreamNamespaceDeclaration { +public: +}; + +QtObjectPtr QXmlStreamNamespaceDeclaration_NewQXmlStreamNamespaceDeclaration(){ + return new QXmlStreamNamespaceDeclaration(); +} + +QtObjectPtr QXmlStreamNamespaceDeclaration_NewQXmlStreamNamespaceDeclaration3(char* prefix, char* namespaceUri){ + return new QXmlStreamNamespaceDeclaration(QString(prefix), QString(namespaceUri)); +} + +QtObjectPtr QXmlStreamNamespaceDeclaration_NewQXmlStreamNamespaceDeclaration2(QtObjectPtr other){ + return new QXmlStreamNamespaceDeclaration(*static_cast(other)); +} + +void QXmlStreamNamespaceDeclaration_DestroyQXmlStreamNamespaceDeclaration(QtObjectPtr ptr){ + static_cast(ptr)->~QXmlStreamNamespaceDeclaration(); +} + diff --git a/core/qxmlstreamnamespacedeclaration.go b/core/qxmlstreamnamespacedeclaration.go new file mode 100755 index 00000000..8ceac171 --- /dev/null +++ b/core/qxmlstreamnamespacedeclaration.go @@ -0,0 +1,58 @@ +package core + +//#include "qxmlstreamnamespacedeclaration.h" +import "C" +import ( + "unsafe" +) + +type QXmlStreamNamespaceDeclaration struct { + ptr unsafe.Pointer +} + +type QXmlStreamNamespaceDeclarationITF interface { + QXmlStreamNamespaceDeclarationPTR() *QXmlStreamNamespaceDeclaration +} + +func (p *QXmlStreamNamespaceDeclaration) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QXmlStreamNamespaceDeclaration) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQXmlStreamNamespaceDeclaration(ptr QXmlStreamNamespaceDeclarationITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlStreamNamespaceDeclarationPTR().Pointer() + } + return nil +} + +func QXmlStreamNamespaceDeclarationFromPointer(ptr unsafe.Pointer) *QXmlStreamNamespaceDeclaration { + var n = new(QXmlStreamNamespaceDeclaration) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlStreamNamespaceDeclaration) QXmlStreamNamespaceDeclarationPTR() *QXmlStreamNamespaceDeclaration { + return ptr +} + +func NewQXmlStreamNamespaceDeclaration() *QXmlStreamNamespaceDeclaration { + return QXmlStreamNamespaceDeclarationFromPointer(unsafe.Pointer(C.QXmlStreamNamespaceDeclaration_NewQXmlStreamNamespaceDeclaration())) +} + +func NewQXmlStreamNamespaceDeclaration3(prefix string, namespaceUri string) *QXmlStreamNamespaceDeclaration { + return QXmlStreamNamespaceDeclarationFromPointer(unsafe.Pointer(C.QXmlStreamNamespaceDeclaration_NewQXmlStreamNamespaceDeclaration3(C.CString(prefix), C.CString(namespaceUri)))) +} + +func NewQXmlStreamNamespaceDeclaration2(other QXmlStreamNamespaceDeclarationITF) *QXmlStreamNamespaceDeclaration { + return QXmlStreamNamespaceDeclarationFromPointer(unsafe.Pointer(C.QXmlStreamNamespaceDeclaration_NewQXmlStreamNamespaceDeclaration2(C.QtObjectPtr(PointerFromQXmlStreamNamespaceDeclaration(other))))) +} + +func (ptr *QXmlStreamNamespaceDeclaration) DestroyQXmlStreamNamespaceDeclaration() { + if ptr.Pointer() != nil { + C.QXmlStreamNamespaceDeclaration_DestroyQXmlStreamNamespaceDeclaration(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qxmlstreamnamespacedeclaration.h b/core/qxmlstreamnamespacedeclaration.h new file mode 100755 index 00000000..28ebc295 --- /dev/null +++ b/core/qxmlstreamnamespacedeclaration.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QXmlStreamNamespaceDeclaration_NewQXmlStreamNamespaceDeclaration(); +QtObjectPtr QXmlStreamNamespaceDeclaration_NewQXmlStreamNamespaceDeclaration3(char* prefix, char* namespaceUri); +QtObjectPtr QXmlStreamNamespaceDeclaration_NewQXmlStreamNamespaceDeclaration2(QtObjectPtr other); +void QXmlStreamNamespaceDeclaration_DestroyQXmlStreamNamespaceDeclaration(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qxmlstreamnotationdeclaration.cpp b/core/qxmlstreamnotationdeclaration.cpp new file mode 100755 index 00000000..8b08f5a2 --- /dev/null +++ b/core/qxmlstreamnotationdeclaration.cpp @@ -0,0 +1,24 @@ +#include "qxmlstreamnotationdeclaration.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlStreamNotationDeclaration: public QXmlStreamNotationDeclaration { +public: +}; + +QtObjectPtr QXmlStreamNotationDeclaration_NewQXmlStreamNotationDeclaration(){ + return new QXmlStreamNotationDeclaration(); +} + +QtObjectPtr QXmlStreamNotationDeclaration_NewQXmlStreamNotationDeclaration2(QtObjectPtr other){ + return new QXmlStreamNotationDeclaration(*static_cast(other)); +} + +void QXmlStreamNotationDeclaration_DestroyQXmlStreamNotationDeclaration(QtObjectPtr ptr){ + static_cast(ptr)->~QXmlStreamNotationDeclaration(); +} + diff --git a/core/qxmlstreamnotationdeclaration.go b/core/qxmlstreamnotationdeclaration.go new file mode 100755 index 00000000..d29e1b72 --- /dev/null +++ b/core/qxmlstreamnotationdeclaration.go @@ -0,0 +1,54 @@ +package core + +//#include "qxmlstreamnotationdeclaration.h" +import "C" +import ( + "unsafe" +) + +type QXmlStreamNotationDeclaration struct { + ptr unsafe.Pointer +} + +type QXmlStreamNotationDeclarationITF interface { + QXmlStreamNotationDeclarationPTR() *QXmlStreamNotationDeclaration +} + +func (p *QXmlStreamNotationDeclaration) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QXmlStreamNotationDeclaration) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQXmlStreamNotationDeclaration(ptr QXmlStreamNotationDeclarationITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlStreamNotationDeclarationPTR().Pointer() + } + return nil +} + +func QXmlStreamNotationDeclarationFromPointer(ptr unsafe.Pointer) *QXmlStreamNotationDeclaration { + var n = new(QXmlStreamNotationDeclaration) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlStreamNotationDeclaration) QXmlStreamNotationDeclarationPTR() *QXmlStreamNotationDeclaration { + return ptr +} + +func NewQXmlStreamNotationDeclaration() *QXmlStreamNotationDeclaration { + return QXmlStreamNotationDeclarationFromPointer(unsafe.Pointer(C.QXmlStreamNotationDeclaration_NewQXmlStreamNotationDeclaration())) +} + +func NewQXmlStreamNotationDeclaration2(other QXmlStreamNotationDeclarationITF) *QXmlStreamNotationDeclaration { + return QXmlStreamNotationDeclarationFromPointer(unsafe.Pointer(C.QXmlStreamNotationDeclaration_NewQXmlStreamNotationDeclaration2(C.QtObjectPtr(PointerFromQXmlStreamNotationDeclaration(other))))) +} + +func (ptr *QXmlStreamNotationDeclaration) DestroyQXmlStreamNotationDeclaration() { + if ptr.Pointer() != nil { + C.QXmlStreamNotationDeclaration_DestroyQXmlStreamNotationDeclaration(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qxmlstreamnotationdeclaration.h b/core/qxmlstreamnotationdeclaration.h new file mode 100755 index 00000000..7b5e7433 --- /dev/null +++ b/core/qxmlstreamnotationdeclaration.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QXmlStreamNotationDeclaration_NewQXmlStreamNotationDeclaration(); +QtObjectPtr QXmlStreamNotationDeclaration_NewQXmlStreamNotationDeclaration2(QtObjectPtr other); +void QXmlStreamNotationDeclaration_DestroyQXmlStreamNotationDeclaration(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qxmlstreamreader.cpp b/core/qxmlstreamreader.cpp new file mode 100755 index 00000000..dc2e5630 --- /dev/null +++ b/core/qxmlstreamreader.cpp @@ -0,0 +1,176 @@ +#include "qxmlstreamreader.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlStreamReader: public QXmlStreamReader { +public: +}; + +int QXmlStreamReader_NamespaceProcessing(QtObjectPtr ptr){ + return static_cast(ptr)->namespaceProcessing(); +} + +void QXmlStreamReader_SetNamespaceProcessing(QtObjectPtr ptr, int v){ + static_cast(ptr)->setNamespaceProcessing(v != 0); +} + +QtObjectPtr QXmlStreamReader_NewQXmlStreamReader(){ + return new QXmlStreamReader(); +} + +QtObjectPtr QXmlStreamReader_NewQXmlStreamReader2(QtObjectPtr device){ + return new QXmlStreamReader(static_cast(device)); +} + +QtObjectPtr QXmlStreamReader_NewQXmlStreamReader3(QtObjectPtr data){ + return new QXmlStreamReader(*static_cast(data)); +} + +QtObjectPtr QXmlStreamReader_NewQXmlStreamReader4(char* data){ + return new QXmlStreamReader(QString(data)); +} + +QtObjectPtr QXmlStreamReader_NewQXmlStreamReader5(char* data){ + return new QXmlStreamReader(const_cast(data)); +} + +void QXmlStreamReader_AddData(QtObjectPtr ptr, QtObjectPtr data){ + static_cast(ptr)->addData(*static_cast(data)); +} + +void QXmlStreamReader_AddData2(QtObjectPtr ptr, char* data){ + static_cast(ptr)->addData(QString(data)); +} + +void QXmlStreamReader_AddData3(QtObjectPtr ptr, char* data){ + static_cast(ptr)->addData(const_cast(data)); +} + +void QXmlStreamReader_AddExtraNamespaceDeclaration(QtObjectPtr ptr, QtObjectPtr extraNamespaceDeclaration){ + static_cast(ptr)->addExtraNamespaceDeclaration(*static_cast(extraNamespaceDeclaration)); +} + +int QXmlStreamReader_AtEnd(QtObjectPtr ptr){ + return static_cast(ptr)->atEnd(); +} + +void QXmlStreamReader_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +QtObjectPtr QXmlStreamReader_Device(QtObjectPtr ptr){ + return static_cast(ptr)->device(); +} + +QtObjectPtr QXmlStreamReader_EntityResolver(QtObjectPtr ptr){ + return static_cast(ptr)->entityResolver(); +} + +int QXmlStreamReader_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +char* QXmlStreamReader_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +int QXmlStreamReader_HasError(QtObjectPtr ptr){ + return static_cast(ptr)->hasError(); +} + +int QXmlStreamReader_IsCDATA(QtObjectPtr ptr){ + return static_cast(ptr)->isCDATA(); +} + +int QXmlStreamReader_IsCharacters(QtObjectPtr ptr){ + return static_cast(ptr)->isCharacters(); +} + +int QXmlStreamReader_IsComment(QtObjectPtr ptr){ + return static_cast(ptr)->isComment(); +} + +int QXmlStreamReader_IsDTD(QtObjectPtr ptr){ + return static_cast(ptr)->isDTD(); +} + +int QXmlStreamReader_IsEndDocument(QtObjectPtr ptr){ + return static_cast(ptr)->isEndDocument(); +} + +int QXmlStreamReader_IsEndElement(QtObjectPtr ptr){ + return static_cast(ptr)->isEndElement(); +} + +int QXmlStreamReader_IsEntityReference(QtObjectPtr ptr){ + return static_cast(ptr)->isEntityReference(); +} + +int QXmlStreamReader_IsProcessingInstruction(QtObjectPtr ptr){ + return static_cast(ptr)->isProcessingInstruction(); +} + +int QXmlStreamReader_IsStandaloneDocument(QtObjectPtr ptr){ + return static_cast(ptr)->isStandaloneDocument(); +} + +int QXmlStreamReader_IsStartDocument(QtObjectPtr ptr){ + return static_cast(ptr)->isStartDocument(); +} + +int QXmlStreamReader_IsStartElement(QtObjectPtr ptr){ + return static_cast(ptr)->isStartElement(); +} + +int QXmlStreamReader_IsWhitespace(QtObjectPtr ptr){ + return static_cast(ptr)->isWhitespace(); +} + +void QXmlStreamReader_RaiseError(QtObjectPtr ptr, char* message){ + static_cast(ptr)->raiseError(QString(message)); +} + +char* QXmlStreamReader_ReadElementText(QtObjectPtr ptr, int behaviour){ + return static_cast(ptr)->readElementText(static_cast(behaviour)).toUtf8().data(); +} + +int QXmlStreamReader_ReadNext(QtObjectPtr ptr){ + return static_cast(ptr)->readNext(); +} + +int QXmlStreamReader_ReadNextStartElement(QtObjectPtr ptr){ + return static_cast(ptr)->readNextStartElement(); +} + +void QXmlStreamReader_SetDevice(QtObjectPtr ptr, QtObjectPtr device){ + static_cast(ptr)->setDevice(static_cast(device)); +} + +void QXmlStreamReader_SetEntityResolver(QtObjectPtr ptr, QtObjectPtr resolver){ + static_cast(ptr)->setEntityResolver(static_cast(resolver)); +} + +void QXmlStreamReader_SkipCurrentElement(QtObjectPtr ptr){ + static_cast(ptr)->skipCurrentElement(); +} + +char* QXmlStreamReader_TokenString(QtObjectPtr ptr){ + return static_cast(ptr)->tokenString().toUtf8().data(); +} + +int QXmlStreamReader_TokenType(QtObjectPtr ptr){ + return static_cast(ptr)->tokenType(); +} + +void QXmlStreamReader_DestroyQXmlStreamReader(QtObjectPtr ptr){ + static_cast(ptr)->~QXmlStreamReader(); +} + diff --git a/core/qxmlstreamreader.go b/core/qxmlstreamreader.go new file mode 100755 index 00000000..8bd523e4 --- /dev/null +++ b/core/qxmlstreamreader.go @@ -0,0 +1,332 @@ +package core + +//#include "qxmlstreamreader.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QXmlStreamReader struct { + ptr unsafe.Pointer +} + +type QXmlStreamReaderITF interface { + QXmlStreamReaderPTR() *QXmlStreamReader +} + +func (p *QXmlStreamReader) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QXmlStreamReader) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQXmlStreamReader(ptr QXmlStreamReaderITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlStreamReaderPTR().Pointer() + } + return nil +} + +func QXmlStreamReaderFromPointer(ptr unsafe.Pointer) *QXmlStreamReader { + var n = new(QXmlStreamReader) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlStreamReader) QXmlStreamReaderPTR() *QXmlStreamReader { + return ptr +} + +//QXmlStreamReader::Error +type QXmlStreamReader__Error int + +var ( + QXmlStreamReader__NoError = QXmlStreamReader__Error(0) + QXmlStreamReader__UnexpectedElementError = QXmlStreamReader__Error(1) + QXmlStreamReader__CustomError = QXmlStreamReader__Error(2) + QXmlStreamReader__NotWellFormedError = QXmlStreamReader__Error(3) + QXmlStreamReader__PrematureEndOfDocumentError = QXmlStreamReader__Error(4) +) + +//QXmlStreamReader::ReadElementTextBehaviour +type QXmlStreamReader__ReadElementTextBehaviour int + +var ( + QXmlStreamReader__ErrorOnUnexpectedElement = QXmlStreamReader__ReadElementTextBehaviour(0) + QXmlStreamReader__IncludeChildElements = QXmlStreamReader__ReadElementTextBehaviour(1) + QXmlStreamReader__SkipChildElements = QXmlStreamReader__ReadElementTextBehaviour(2) +) + +//QXmlStreamReader::TokenType +type QXmlStreamReader__TokenType int + +var ( + QXmlStreamReader__NoToken = QXmlStreamReader__TokenType(0) + QXmlStreamReader__Invalid = QXmlStreamReader__TokenType(1) + QXmlStreamReader__StartDocument = QXmlStreamReader__TokenType(2) + QXmlStreamReader__EndDocument = QXmlStreamReader__TokenType(3) + QXmlStreamReader__StartElement = QXmlStreamReader__TokenType(4) + QXmlStreamReader__EndElement = QXmlStreamReader__TokenType(5) + QXmlStreamReader__Characters = QXmlStreamReader__TokenType(6) + QXmlStreamReader__Comment = QXmlStreamReader__TokenType(7) + QXmlStreamReader__DTD = QXmlStreamReader__TokenType(8) + QXmlStreamReader__EntityReference = QXmlStreamReader__TokenType(9) + QXmlStreamReader__ProcessingInstruction = QXmlStreamReader__TokenType(10) +) + +func (ptr *QXmlStreamReader) NamespaceProcessing() bool { + if ptr.Pointer() != nil { + return C.QXmlStreamReader_NamespaceProcessing(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlStreamReader) SetNamespaceProcessing(v bool) { + if ptr.Pointer() != nil { + C.QXmlStreamReader_SetNamespaceProcessing(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func NewQXmlStreamReader() *QXmlStreamReader { + return QXmlStreamReaderFromPointer(unsafe.Pointer(C.QXmlStreamReader_NewQXmlStreamReader())) +} + +func NewQXmlStreamReader2(device QIODeviceITF) *QXmlStreamReader { + return QXmlStreamReaderFromPointer(unsafe.Pointer(C.QXmlStreamReader_NewQXmlStreamReader2(C.QtObjectPtr(PointerFromQIODevice(device))))) +} + +func NewQXmlStreamReader3(data QByteArrayITF) *QXmlStreamReader { + return QXmlStreamReaderFromPointer(unsafe.Pointer(C.QXmlStreamReader_NewQXmlStreamReader3(C.QtObjectPtr(PointerFromQByteArray(data))))) +} + +func NewQXmlStreamReader4(data string) *QXmlStreamReader { + return QXmlStreamReaderFromPointer(unsafe.Pointer(C.QXmlStreamReader_NewQXmlStreamReader4(C.CString(data)))) +} + +func NewQXmlStreamReader5(data string) *QXmlStreamReader { + return QXmlStreamReaderFromPointer(unsafe.Pointer(C.QXmlStreamReader_NewQXmlStreamReader5(C.CString(data)))) +} + +func (ptr *QXmlStreamReader) AddData(data QByteArrayITF) { + if ptr.Pointer() != nil { + C.QXmlStreamReader_AddData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQByteArray(data))) + } +} + +func (ptr *QXmlStreamReader) AddData2(data string) { + if ptr.Pointer() != nil { + C.QXmlStreamReader_AddData2(C.QtObjectPtr(ptr.Pointer()), C.CString(data)) + } +} + +func (ptr *QXmlStreamReader) AddData3(data string) { + if ptr.Pointer() != nil { + C.QXmlStreamReader_AddData3(C.QtObjectPtr(ptr.Pointer()), C.CString(data)) + } +} + +func (ptr *QXmlStreamReader) AddExtraNamespaceDeclaration(extraNamespaceDeclaration QXmlStreamNamespaceDeclarationITF) { + if ptr.Pointer() != nil { + C.QXmlStreamReader_AddExtraNamespaceDeclaration(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlStreamNamespaceDeclaration(extraNamespaceDeclaration))) + } +} + +func (ptr *QXmlStreamReader) AtEnd() bool { + if ptr.Pointer() != nil { + return C.QXmlStreamReader_AtEnd(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlStreamReader) Clear() { + if ptr.Pointer() != nil { + C.QXmlStreamReader_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QXmlStreamReader) Device() *QIODevice { + if ptr.Pointer() != nil { + return QIODeviceFromPointer(unsafe.Pointer(C.QXmlStreamReader_Device(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QXmlStreamReader) EntityResolver() *QXmlStreamEntityResolver { + if ptr.Pointer() != nil { + return QXmlStreamEntityResolverFromPointer(unsafe.Pointer(C.QXmlStreamReader_EntityResolver(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QXmlStreamReader) Error() QXmlStreamReader__Error { + if ptr.Pointer() != nil { + return QXmlStreamReader__Error(C.QXmlStreamReader_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QXmlStreamReader) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlStreamReader_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QXmlStreamReader) HasError() bool { + if ptr.Pointer() != nil { + return C.QXmlStreamReader_HasError(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlStreamReader) IsCDATA() bool { + if ptr.Pointer() != nil { + return C.QXmlStreamReader_IsCDATA(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlStreamReader) IsCharacters() bool { + if ptr.Pointer() != nil { + return C.QXmlStreamReader_IsCharacters(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlStreamReader) IsComment() bool { + if ptr.Pointer() != nil { + return C.QXmlStreamReader_IsComment(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlStreamReader) IsDTD() bool { + if ptr.Pointer() != nil { + return C.QXmlStreamReader_IsDTD(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlStreamReader) IsEndDocument() bool { + if ptr.Pointer() != nil { + return C.QXmlStreamReader_IsEndDocument(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlStreamReader) IsEndElement() bool { + if ptr.Pointer() != nil { + return C.QXmlStreamReader_IsEndElement(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlStreamReader) IsEntityReference() bool { + if ptr.Pointer() != nil { + return C.QXmlStreamReader_IsEntityReference(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlStreamReader) IsProcessingInstruction() bool { + if ptr.Pointer() != nil { + return C.QXmlStreamReader_IsProcessingInstruction(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlStreamReader) IsStandaloneDocument() bool { + if ptr.Pointer() != nil { + return C.QXmlStreamReader_IsStandaloneDocument(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlStreamReader) IsStartDocument() bool { + if ptr.Pointer() != nil { + return C.QXmlStreamReader_IsStartDocument(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlStreamReader) IsStartElement() bool { + if ptr.Pointer() != nil { + return C.QXmlStreamReader_IsStartElement(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlStreamReader) IsWhitespace() bool { + if ptr.Pointer() != nil { + return C.QXmlStreamReader_IsWhitespace(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlStreamReader) RaiseError(message string) { + if ptr.Pointer() != nil { + C.QXmlStreamReader_RaiseError(C.QtObjectPtr(ptr.Pointer()), C.CString(message)) + } +} + +func (ptr *QXmlStreamReader) ReadElementText(behaviour QXmlStreamReader__ReadElementTextBehaviour) string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlStreamReader_ReadElementText(C.QtObjectPtr(ptr.Pointer()), C.int(behaviour))) + } + return "" +} + +func (ptr *QXmlStreamReader) ReadNext() QXmlStreamReader__TokenType { + if ptr.Pointer() != nil { + return QXmlStreamReader__TokenType(C.QXmlStreamReader_ReadNext(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QXmlStreamReader) ReadNextStartElement() bool { + if ptr.Pointer() != nil { + return C.QXmlStreamReader_ReadNextStartElement(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlStreamReader) SetDevice(device QIODeviceITF) { + if ptr.Pointer() != nil { + C.QXmlStreamReader_SetDevice(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQIODevice(device))) + } +} + +func (ptr *QXmlStreamReader) SetEntityResolver(resolver QXmlStreamEntityResolverITF) { + if ptr.Pointer() != nil { + C.QXmlStreamReader_SetEntityResolver(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlStreamEntityResolver(resolver))) + } +} + +func (ptr *QXmlStreamReader) SkipCurrentElement() { + if ptr.Pointer() != nil { + C.QXmlStreamReader_SkipCurrentElement(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QXmlStreamReader) TokenString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlStreamReader_TokenString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QXmlStreamReader) TokenType() QXmlStreamReader__TokenType { + if ptr.Pointer() != nil { + return QXmlStreamReader__TokenType(C.QXmlStreamReader_TokenType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QXmlStreamReader) DestroyQXmlStreamReader() { + if ptr.Pointer() != nil { + C.QXmlStreamReader_DestroyQXmlStreamReader(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qxmlstreamreader.h b/core/qxmlstreamreader.h new file mode 100755 index 00000000..97e9897c --- /dev/null +++ b/core/qxmlstreamreader.h @@ -0,0 +1,49 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QXmlStreamReader_NamespaceProcessing(QtObjectPtr ptr); +void QXmlStreamReader_SetNamespaceProcessing(QtObjectPtr ptr, int v); +QtObjectPtr QXmlStreamReader_NewQXmlStreamReader(); +QtObjectPtr QXmlStreamReader_NewQXmlStreamReader2(QtObjectPtr device); +QtObjectPtr QXmlStreamReader_NewQXmlStreamReader3(QtObjectPtr data); +QtObjectPtr QXmlStreamReader_NewQXmlStreamReader4(char* data); +QtObjectPtr QXmlStreamReader_NewQXmlStreamReader5(char* data); +void QXmlStreamReader_AddData(QtObjectPtr ptr, QtObjectPtr data); +void QXmlStreamReader_AddData2(QtObjectPtr ptr, char* data); +void QXmlStreamReader_AddData3(QtObjectPtr ptr, char* data); +void QXmlStreamReader_AddExtraNamespaceDeclaration(QtObjectPtr ptr, QtObjectPtr extraNamespaceDeclaration); +int QXmlStreamReader_AtEnd(QtObjectPtr ptr); +void QXmlStreamReader_Clear(QtObjectPtr ptr); +QtObjectPtr QXmlStreamReader_Device(QtObjectPtr ptr); +QtObjectPtr QXmlStreamReader_EntityResolver(QtObjectPtr ptr); +int QXmlStreamReader_Error(QtObjectPtr ptr); +char* QXmlStreamReader_ErrorString(QtObjectPtr ptr); +int QXmlStreamReader_HasError(QtObjectPtr ptr); +int QXmlStreamReader_IsCDATA(QtObjectPtr ptr); +int QXmlStreamReader_IsCharacters(QtObjectPtr ptr); +int QXmlStreamReader_IsComment(QtObjectPtr ptr); +int QXmlStreamReader_IsDTD(QtObjectPtr ptr); +int QXmlStreamReader_IsEndDocument(QtObjectPtr ptr); +int QXmlStreamReader_IsEndElement(QtObjectPtr ptr); +int QXmlStreamReader_IsEntityReference(QtObjectPtr ptr); +int QXmlStreamReader_IsProcessingInstruction(QtObjectPtr ptr); +int QXmlStreamReader_IsStandaloneDocument(QtObjectPtr ptr); +int QXmlStreamReader_IsStartDocument(QtObjectPtr ptr); +int QXmlStreamReader_IsStartElement(QtObjectPtr ptr); +int QXmlStreamReader_IsWhitespace(QtObjectPtr ptr); +void QXmlStreamReader_RaiseError(QtObjectPtr ptr, char* message); +char* QXmlStreamReader_ReadElementText(QtObjectPtr ptr, int behaviour); +int QXmlStreamReader_ReadNext(QtObjectPtr ptr); +int QXmlStreamReader_ReadNextStartElement(QtObjectPtr ptr); +void QXmlStreamReader_SetDevice(QtObjectPtr ptr, QtObjectPtr device); +void QXmlStreamReader_SetEntityResolver(QtObjectPtr ptr, QtObjectPtr resolver); +void QXmlStreamReader_SkipCurrentElement(QtObjectPtr ptr); +char* QXmlStreamReader_TokenString(QtObjectPtr ptr); +int QXmlStreamReader_TokenType(QtObjectPtr ptr); +void QXmlStreamReader_DestroyQXmlStreamReader(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/core/qxmlstreamwriter.cpp b/core/qxmlstreamwriter.cpp new file mode 100755 index 00000000..75126fc9 --- /dev/null +++ b/core/qxmlstreamwriter.cpp @@ -0,0 +1,157 @@ +#include "qxmlstreamwriter.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlStreamWriter: public QXmlStreamWriter { +public: +}; + +int QXmlStreamWriter_AutoFormattingIndent(QtObjectPtr ptr){ + return static_cast(ptr)->autoFormattingIndent(); +} + +void QXmlStreamWriter_SetAutoFormattingIndent(QtObjectPtr ptr, int spacesOrTabs){ + static_cast(ptr)->setAutoFormattingIndent(spacesOrTabs); +} + +int QXmlStreamWriter_AutoFormatting(QtObjectPtr ptr){ + return static_cast(ptr)->autoFormatting(); +} + +QtObjectPtr QXmlStreamWriter_Codec(QtObjectPtr ptr){ + return static_cast(ptr)->codec(); +} + +QtObjectPtr QXmlStreamWriter_Device(QtObjectPtr ptr){ + return static_cast(ptr)->device(); +} + +int QXmlStreamWriter_HasError(QtObjectPtr ptr){ + return static_cast(ptr)->hasError(); +} + +void QXmlStreamWriter_SetAutoFormatting(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setAutoFormatting(enable != 0); +} + +void QXmlStreamWriter_SetCodec(QtObjectPtr ptr, QtObjectPtr codec){ + static_cast(ptr)->setCodec(static_cast(codec)); +} + +void QXmlStreamWriter_SetCodec2(QtObjectPtr ptr, char* codecName){ + static_cast(ptr)->setCodec(const_cast(codecName)); +} + +void QXmlStreamWriter_SetDevice(QtObjectPtr ptr, QtObjectPtr device){ + static_cast(ptr)->setDevice(static_cast(device)); +} + +void QXmlStreamWriter_WriteAttribute(QtObjectPtr ptr, char* namespaceUri, char* name, char* value){ + static_cast(ptr)->writeAttribute(QString(namespaceUri), QString(name), QString(value)); +} + +void QXmlStreamWriter_WriteAttribute2(QtObjectPtr ptr, char* qualifiedName, char* value){ + static_cast(ptr)->writeAttribute(QString(qualifiedName), QString(value)); +} + +void QXmlStreamWriter_WriteAttribute3(QtObjectPtr ptr, QtObjectPtr attribute){ + static_cast(ptr)->writeAttribute(*static_cast(attribute)); +} + +void QXmlStreamWriter_WriteAttributes(QtObjectPtr ptr, QtObjectPtr attributes){ + static_cast(ptr)->writeAttributes(*static_cast(attributes)); +} + +void QXmlStreamWriter_WriteCDATA(QtObjectPtr ptr, char* text){ + static_cast(ptr)->writeCDATA(QString(text)); +} + +void QXmlStreamWriter_WriteCharacters(QtObjectPtr ptr, char* text){ + static_cast(ptr)->writeCharacters(QString(text)); +} + +void QXmlStreamWriter_WriteComment(QtObjectPtr ptr, char* text){ + static_cast(ptr)->writeComment(QString(text)); +} + +void QXmlStreamWriter_WriteCurrentToken(QtObjectPtr ptr, QtObjectPtr reader){ + static_cast(ptr)->writeCurrentToken(*static_cast(reader)); +} + +void QXmlStreamWriter_WriteDTD(QtObjectPtr ptr, char* dtd){ + static_cast(ptr)->writeDTD(QString(dtd)); +} + +void QXmlStreamWriter_WriteDefaultNamespace(QtObjectPtr ptr, char* namespaceUri){ + static_cast(ptr)->writeDefaultNamespace(QString(namespaceUri)); +} + +void QXmlStreamWriter_WriteEmptyElement(QtObjectPtr ptr, char* namespaceUri, char* name){ + static_cast(ptr)->writeEmptyElement(QString(namespaceUri), QString(name)); +} + +void QXmlStreamWriter_WriteEmptyElement2(QtObjectPtr ptr, char* qualifiedName){ + static_cast(ptr)->writeEmptyElement(QString(qualifiedName)); +} + +void QXmlStreamWriter_WriteEndDocument(QtObjectPtr ptr){ + static_cast(ptr)->writeEndDocument(); +} + +void QXmlStreamWriter_WriteEndElement(QtObjectPtr ptr){ + static_cast(ptr)->writeEndElement(); +} + +void QXmlStreamWriter_WriteEntityReference(QtObjectPtr ptr, char* name){ + static_cast(ptr)->writeEntityReference(QString(name)); +} + +void QXmlStreamWriter_WriteNamespace(QtObjectPtr ptr, char* namespaceUri, char* prefix){ + static_cast(ptr)->writeNamespace(QString(namespaceUri), QString(prefix)); +} + +void QXmlStreamWriter_WriteProcessingInstruction(QtObjectPtr ptr, char* target, char* data){ + static_cast(ptr)->writeProcessingInstruction(QString(target), QString(data)); +} + +void QXmlStreamWriter_WriteStartDocument3(QtObjectPtr ptr){ + static_cast(ptr)->writeStartDocument(); +} + +void QXmlStreamWriter_WriteStartDocument(QtObjectPtr ptr, char* version){ + static_cast(ptr)->writeStartDocument(QString(version)); +} + +void QXmlStreamWriter_WriteStartDocument2(QtObjectPtr ptr, char* version, int standalone){ + static_cast(ptr)->writeStartDocument(QString(version), standalone != 0); +} + +void QXmlStreamWriter_WriteStartElement(QtObjectPtr ptr, char* namespaceUri, char* name){ + static_cast(ptr)->writeStartElement(QString(namespaceUri), QString(name)); +} + +void QXmlStreamWriter_WriteStartElement2(QtObjectPtr ptr, char* qualifiedName){ + static_cast(ptr)->writeStartElement(QString(qualifiedName)); +} + +void QXmlStreamWriter_WriteTextElement(QtObjectPtr ptr, char* namespaceUri, char* name, char* text){ + static_cast(ptr)->writeTextElement(QString(namespaceUri), QString(name), QString(text)); +} + +void QXmlStreamWriter_WriteTextElement2(QtObjectPtr ptr, char* qualifiedName, char* text){ + static_cast(ptr)->writeTextElement(QString(qualifiedName), QString(text)); +} + +void QXmlStreamWriter_DestroyQXmlStreamWriter(QtObjectPtr ptr){ + static_cast(ptr)->~QXmlStreamWriter(); +} + diff --git a/core/qxmlstreamwriter.go b/core/qxmlstreamwriter.go new file mode 100755 index 00000000..34529bc3 --- /dev/null +++ b/core/qxmlstreamwriter.go @@ -0,0 +1,256 @@ +package core + +//#include "qxmlstreamwriter.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QXmlStreamWriter struct { + ptr unsafe.Pointer +} + +type QXmlStreamWriterITF interface { + QXmlStreamWriterPTR() *QXmlStreamWriter +} + +func (p *QXmlStreamWriter) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QXmlStreamWriter) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQXmlStreamWriter(ptr QXmlStreamWriterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlStreamWriterPTR().Pointer() + } + return nil +} + +func QXmlStreamWriterFromPointer(ptr unsafe.Pointer) *QXmlStreamWriter { + var n = new(QXmlStreamWriter) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlStreamWriter) QXmlStreamWriterPTR() *QXmlStreamWriter { + return ptr +} + +func (ptr *QXmlStreamWriter) AutoFormattingIndent() int { + if ptr.Pointer() != nil { + return int(C.QXmlStreamWriter_AutoFormattingIndent(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QXmlStreamWriter) SetAutoFormattingIndent(spacesOrTabs int) { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_SetAutoFormattingIndent(C.QtObjectPtr(ptr.Pointer()), C.int(spacesOrTabs)) + } +} + +func (ptr *QXmlStreamWriter) AutoFormatting() bool { + if ptr.Pointer() != nil { + return C.QXmlStreamWriter_AutoFormatting(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlStreamWriter) Codec() *QTextCodec { + if ptr.Pointer() != nil { + return QTextCodecFromPointer(unsafe.Pointer(C.QXmlStreamWriter_Codec(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QXmlStreamWriter) Device() *QIODevice { + if ptr.Pointer() != nil { + return QIODeviceFromPointer(unsafe.Pointer(C.QXmlStreamWriter_Device(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QXmlStreamWriter) HasError() bool { + if ptr.Pointer() != nil { + return C.QXmlStreamWriter_HasError(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlStreamWriter) SetAutoFormatting(enable bool) { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_SetAutoFormatting(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QXmlStreamWriter) SetCodec(codec QTextCodecITF) { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_SetCodec(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextCodec(codec))) + } +} + +func (ptr *QXmlStreamWriter) SetCodec2(codecName string) { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_SetCodec2(C.QtObjectPtr(ptr.Pointer()), C.CString(codecName)) + } +} + +func (ptr *QXmlStreamWriter) SetDevice(device QIODeviceITF) { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_SetDevice(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQIODevice(device))) + } +} + +func (ptr *QXmlStreamWriter) WriteAttribute(namespaceUri string, name string, value string) { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_WriteAttribute(C.QtObjectPtr(ptr.Pointer()), C.CString(namespaceUri), C.CString(name), C.CString(value)) + } +} + +func (ptr *QXmlStreamWriter) WriteAttribute2(qualifiedName string, value string) { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_WriteAttribute2(C.QtObjectPtr(ptr.Pointer()), C.CString(qualifiedName), C.CString(value)) + } +} + +func (ptr *QXmlStreamWriter) WriteAttribute3(attribute QXmlStreamAttributeITF) { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_WriteAttribute3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlStreamAttribute(attribute))) + } +} + +func (ptr *QXmlStreamWriter) WriteAttributes(attributes QXmlStreamAttributesITF) { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_WriteAttributes(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlStreamAttributes(attributes))) + } +} + +func (ptr *QXmlStreamWriter) WriteCDATA(text string) { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_WriteCDATA(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QXmlStreamWriter) WriteCharacters(text string) { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_WriteCharacters(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QXmlStreamWriter) WriteComment(text string) { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_WriteComment(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QXmlStreamWriter) WriteCurrentToken(reader QXmlStreamReaderITF) { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_WriteCurrentToken(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlStreamReader(reader))) + } +} + +func (ptr *QXmlStreamWriter) WriteDTD(dtd string) { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_WriteDTD(C.QtObjectPtr(ptr.Pointer()), C.CString(dtd)) + } +} + +func (ptr *QXmlStreamWriter) WriteDefaultNamespace(namespaceUri string) { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_WriteDefaultNamespace(C.QtObjectPtr(ptr.Pointer()), C.CString(namespaceUri)) + } +} + +func (ptr *QXmlStreamWriter) WriteEmptyElement(namespaceUri string, name string) { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_WriteEmptyElement(C.QtObjectPtr(ptr.Pointer()), C.CString(namespaceUri), C.CString(name)) + } +} + +func (ptr *QXmlStreamWriter) WriteEmptyElement2(qualifiedName string) { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_WriteEmptyElement2(C.QtObjectPtr(ptr.Pointer()), C.CString(qualifiedName)) + } +} + +func (ptr *QXmlStreamWriter) WriteEndDocument() { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_WriteEndDocument(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QXmlStreamWriter) WriteEndElement() { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_WriteEndElement(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QXmlStreamWriter) WriteEntityReference(name string) { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_WriteEntityReference(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func (ptr *QXmlStreamWriter) WriteNamespace(namespaceUri string, prefix string) { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_WriteNamespace(C.QtObjectPtr(ptr.Pointer()), C.CString(namespaceUri), C.CString(prefix)) + } +} + +func (ptr *QXmlStreamWriter) WriteProcessingInstruction(target string, data string) { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_WriteProcessingInstruction(C.QtObjectPtr(ptr.Pointer()), C.CString(target), C.CString(data)) + } +} + +func (ptr *QXmlStreamWriter) WriteStartDocument3() { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_WriteStartDocument3(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QXmlStreamWriter) WriteStartDocument(version string) { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_WriteStartDocument(C.QtObjectPtr(ptr.Pointer()), C.CString(version)) + } +} + +func (ptr *QXmlStreamWriter) WriteStartDocument2(version string, standalone bool) { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_WriteStartDocument2(C.QtObjectPtr(ptr.Pointer()), C.CString(version), C.int(qt.GoBoolToInt(standalone))) + } +} + +func (ptr *QXmlStreamWriter) WriteStartElement(namespaceUri string, name string) { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_WriteStartElement(C.QtObjectPtr(ptr.Pointer()), C.CString(namespaceUri), C.CString(name)) + } +} + +func (ptr *QXmlStreamWriter) WriteStartElement2(qualifiedName string) { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_WriteStartElement2(C.QtObjectPtr(ptr.Pointer()), C.CString(qualifiedName)) + } +} + +func (ptr *QXmlStreamWriter) WriteTextElement(namespaceUri string, name string, text string) { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_WriteTextElement(C.QtObjectPtr(ptr.Pointer()), C.CString(namespaceUri), C.CString(name), C.CString(text)) + } +} + +func (ptr *QXmlStreamWriter) WriteTextElement2(qualifiedName string, text string) { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_WriteTextElement2(C.QtObjectPtr(ptr.Pointer()), C.CString(qualifiedName), C.CString(text)) + } +} + +func (ptr *QXmlStreamWriter) DestroyQXmlStreamWriter() { + if ptr.Pointer() != nil { + C.QXmlStreamWriter_DestroyQXmlStreamWriter(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/core/qxmlstreamwriter.h b/core/qxmlstreamwriter.h new file mode 100755 index 00000000..8b47d97e --- /dev/null +++ b/core/qxmlstreamwriter.h @@ -0,0 +1,44 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QXmlStreamWriter_AutoFormattingIndent(QtObjectPtr ptr); +void QXmlStreamWriter_SetAutoFormattingIndent(QtObjectPtr ptr, int spacesOrTabs); +int QXmlStreamWriter_AutoFormatting(QtObjectPtr ptr); +QtObjectPtr QXmlStreamWriter_Codec(QtObjectPtr ptr); +QtObjectPtr QXmlStreamWriter_Device(QtObjectPtr ptr); +int QXmlStreamWriter_HasError(QtObjectPtr ptr); +void QXmlStreamWriter_SetAutoFormatting(QtObjectPtr ptr, int enable); +void QXmlStreamWriter_SetCodec(QtObjectPtr ptr, QtObjectPtr codec); +void QXmlStreamWriter_SetCodec2(QtObjectPtr ptr, char* codecName); +void QXmlStreamWriter_SetDevice(QtObjectPtr ptr, QtObjectPtr device); +void QXmlStreamWriter_WriteAttribute(QtObjectPtr ptr, char* namespaceUri, char* name, char* value); +void QXmlStreamWriter_WriteAttribute2(QtObjectPtr ptr, char* qualifiedName, char* value); +void QXmlStreamWriter_WriteAttribute3(QtObjectPtr ptr, QtObjectPtr attribute); +void QXmlStreamWriter_WriteAttributes(QtObjectPtr ptr, QtObjectPtr attributes); +void QXmlStreamWriter_WriteCDATA(QtObjectPtr ptr, char* text); +void QXmlStreamWriter_WriteCharacters(QtObjectPtr ptr, char* text); +void QXmlStreamWriter_WriteComment(QtObjectPtr ptr, char* text); +void QXmlStreamWriter_WriteCurrentToken(QtObjectPtr ptr, QtObjectPtr reader); +void QXmlStreamWriter_WriteDTD(QtObjectPtr ptr, char* dtd); +void QXmlStreamWriter_WriteDefaultNamespace(QtObjectPtr ptr, char* namespaceUri); +void QXmlStreamWriter_WriteEmptyElement(QtObjectPtr ptr, char* namespaceUri, char* name); +void QXmlStreamWriter_WriteEmptyElement2(QtObjectPtr ptr, char* qualifiedName); +void QXmlStreamWriter_WriteEndDocument(QtObjectPtr ptr); +void QXmlStreamWriter_WriteEndElement(QtObjectPtr ptr); +void QXmlStreamWriter_WriteEntityReference(QtObjectPtr ptr, char* name); +void QXmlStreamWriter_WriteNamespace(QtObjectPtr ptr, char* namespaceUri, char* prefix); +void QXmlStreamWriter_WriteProcessingInstruction(QtObjectPtr ptr, char* target, char* data); +void QXmlStreamWriter_WriteStartDocument3(QtObjectPtr ptr); +void QXmlStreamWriter_WriteStartDocument(QtObjectPtr ptr, char* version); +void QXmlStreamWriter_WriteStartDocument2(QtObjectPtr ptr, char* version, int standalone); +void QXmlStreamWriter_WriteStartElement(QtObjectPtr ptr, char* namespaceUri, char* name); +void QXmlStreamWriter_WriteStartElement2(QtObjectPtr ptr, char* qualifiedName); +void QXmlStreamWriter_WriteTextElement(QtObjectPtr ptr, char* namespaceUri, char* name, char* text); +void QXmlStreamWriter_WriteTextElement2(QtObjectPtr ptr, char* qualifiedName, char* text); +void QXmlStreamWriter_DestroyQXmlStreamWriter(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/dbus/cgo_darwin_amd64.go b/dbus/cgo_darwin_amd64.go new file mode 100755 index 00000000..c5338594 --- /dev/null +++ b/dbus/cgo_darwin_amd64.go @@ -0,0 +1,13 @@ +package dbus + +/* +#cgo CPPFLAGS: -pipe -O2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 -Wall -W +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_DBUS_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/mkspecs/macx-clang -F/usr/local/Qt5.5.1/5.5/clang_64/lib +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtCore.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtDBus.framework/Headers +#cgo CPPFLAGS: -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.framework/Headers + +#cgo LDFLAGS: -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 +#cgo LDFLAGS: -F/usr/local/Qt5.5.1/5.5/clang_64/lib -framework QtCore -framework QtDBus -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL +*/ +import "C" diff --git a/dbus/cgo_linux_386.go b/dbus/cgo_linux_386.go new file mode 100755 index 00000000..f69e30fa --- /dev/null +++ b/dbus/cgo_linux_386.go @@ -0,0 +1,12 @@ +package dbus + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_DBUS_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include -I/usr/local/Qt5.5.1/5.5/gcc/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc/include/QtDBus + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc/lib -L/usr/lib -lQt5Core -lQt5DBus -lpthread +*/ +import "C" diff --git a/dbus/cgo_linux_amd64.go b/dbus/cgo_linux_amd64.go new file mode 100755 index 00000000..385826a4 --- /dev/null +++ b/dbus/cgo_linux_amd64.go @@ -0,0 +1,12 @@ +package dbus + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_DBUS_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include -I/usr/local/Qt5.5.1/5.5/gcc_64/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtDBus + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc_64/lib -L/usr/lib64 -lQt5Core -lQt5DBus -lpthread +*/ +import "C" diff --git a/dbus/cgo_windows_386.go b/dbus/cgo_windows_386.go new file mode 100755 index 00000000..87ce5183 --- /dev/null +++ b/dbus/cgo_windows_386.go @@ -0,0 +1,12 @@ +package dbus + +/* +#cgo CPPFLAGS: -pipe -fno-keep-inline-dllexport -O2 -Wall -Wextra -fexceptions -mthreads +#cgo CPPFLAGS: -DUNICODE -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_DBUS_LIB +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include -IC:/Qt/Qt5.5.1/5.5/mingw492_32/mkspecs/win32-g++ +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtCore -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtDBus + +#cgo LDFLAGS: -Wl,-s -Wl,-subsystem,windows -mthreads +#cgo LDFLAGS: -LC:/Qt/Qt5.5.1/5.5/mingw492_32/bin -lQt5Core -lQt5DBus +*/ +import "C" diff --git a/dbus/qdbusabstractadaptor.cpp b/dbus/qdbusabstractadaptor.cpp new file mode 100755 index 00000000..c59d038c --- /dev/null +++ b/dbus/qdbusabstractadaptor.cpp @@ -0,0 +1,16 @@ +#include "qdbusabstractadaptor.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDBusAbstractAdaptor: public QDBusAbstractAdaptor { +public: +}; + +void QDBusAbstractAdaptor_DestroyQDBusAbstractAdaptor(QtObjectPtr ptr){ + static_cast(ptr)->~QDBusAbstractAdaptor(); +} + diff --git a/dbus/qdbusabstractadaptor.go b/dbus/qdbusabstractadaptor.go new file mode 100755 index 00000000..588ac589 --- /dev/null +++ b/dbus/qdbusabstractadaptor.go @@ -0,0 +1,45 @@ +package dbus + +//#include "qdbusabstractadaptor.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QDBusAbstractAdaptor struct { + core.QObject +} + +type QDBusAbstractAdaptorITF interface { + core.QObjectITF + QDBusAbstractAdaptorPTR() *QDBusAbstractAdaptor +} + +func PointerFromQDBusAbstractAdaptor(ptr QDBusAbstractAdaptorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDBusAbstractAdaptorPTR().Pointer() + } + return nil +} + +func QDBusAbstractAdaptorFromPointer(ptr unsafe.Pointer) *QDBusAbstractAdaptor { + var n = new(QDBusAbstractAdaptor) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QDBusAbstractAdaptor_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QDBusAbstractAdaptor) QDBusAbstractAdaptorPTR() *QDBusAbstractAdaptor { + return ptr +} + +func (ptr *QDBusAbstractAdaptor) DestroyQDBusAbstractAdaptor() { + if ptr.Pointer() != nil { + C.QDBusAbstractAdaptor_DestroyQDBusAbstractAdaptor(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/dbus/qdbusabstractadaptor.h b/dbus/qdbusabstractadaptor.h new file mode 100755 index 00000000..4de4a7f9 --- /dev/null +++ b/dbus/qdbusabstractadaptor.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QDBusAbstractAdaptor_DestroyQDBusAbstractAdaptor(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/dbus/qdbusabstractinterface.cpp b/dbus/qdbusabstractinterface.cpp new file mode 100755 index 00000000..ea72b21b --- /dev/null +++ b/dbus/qdbusabstractinterface.cpp @@ -0,0 +1,40 @@ +#include "qdbusabstractinterface.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDBusAbstractInterface: public QDBusAbstractInterface { +public: +}; + +char* QDBusAbstractInterface_Interface(QtObjectPtr ptr){ + return static_cast(ptr)->interface().toUtf8().data(); +} + +int QDBusAbstractInterface_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +char* QDBusAbstractInterface_Path(QtObjectPtr ptr){ + return static_cast(ptr)->path().toUtf8().data(); +} + +char* QDBusAbstractInterface_Service(QtObjectPtr ptr){ + return static_cast(ptr)->service().toUtf8().data(); +} + +void QDBusAbstractInterface_SetTimeout(QtObjectPtr ptr, int timeout){ + static_cast(ptr)->setTimeout(timeout); +} + +int QDBusAbstractInterface_Timeout(QtObjectPtr ptr){ + return static_cast(ptr)->timeout(); +} + +void QDBusAbstractInterface_DestroyQDBusAbstractInterface(QtObjectPtr ptr){ + static_cast(ptr)->~QDBusAbstractInterface(); +} + diff --git a/dbus/qdbusabstractinterface.go b/dbus/qdbusabstractinterface.go new file mode 100755 index 00000000..0a286e7b --- /dev/null +++ b/dbus/qdbusabstractinterface.go @@ -0,0 +1,86 @@ +package dbus + +//#include "qdbusabstractinterface.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QDBusAbstractInterface struct { + core.QObject +} + +type QDBusAbstractInterfaceITF interface { + core.QObjectITF + QDBusAbstractInterfacePTR() *QDBusAbstractInterface +} + +func PointerFromQDBusAbstractInterface(ptr QDBusAbstractInterfaceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDBusAbstractInterfacePTR().Pointer() + } + return nil +} + +func QDBusAbstractInterfaceFromPointer(ptr unsafe.Pointer) *QDBusAbstractInterface { + var n = new(QDBusAbstractInterface) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QDBusAbstractInterface_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QDBusAbstractInterface) QDBusAbstractInterfacePTR() *QDBusAbstractInterface { + return ptr +} + +func (ptr *QDBusAbstractInterface) Interface() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDBusAbstractInterface_Interface(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDBusAbstractInterface) IsValid() bool { + if ptr.Pointer() != nil { + return C.QDBusAbstractInterface_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDBusAbstractInterface) Path() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDBusAbstractInterface_Path(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDBusAbstractInterface) Service() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDBusAbstractInterface_Service(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDBusAbstractInterface) SetTimeout(timeout int) { + if ptr.Pointer() != nil { + C.QDBusAbstractInterface_SetTimeout(C.QtObjectPtr(ptr.Pointer()), C.int(timeout)) + } +} + +func (ptr *QDBusAbstractInterface) Timeout() int { + if ptr.Pointer() != nil { + return int(C.QDBusAbstractInterface_Timeout(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDBusAbstractInterface) DestroyQDBusAbstractInterface() { + if ptr.Pointer() != nil { + C.QDBusAbstractInterface_DestroyQDBusAbstractInterface(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/dbus/qdbusabstractinterface.h b/dbus/qdbusabstractinterface.h new file mode 100755 index 00000000..22effa88 --- /dev/null +++ b/dbus/qdbusabstractinterface.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QDBusAbstractInterface_Interface(QtObjectPtr ptr); +int QDBusAbstractInterface_IsValid(QtObjectPtr ptr); +char* QDBusAbstractInterface_Path(QtObjectPtr ptr); +char* QDBusAbstractInterface_Service(QtObjectPtr ptr); +void QDBusAbstractInterface_SetTimeout(QtObjectPtr ptr, int timeout); +int QDBusAbstractInterface_Timeout(QtObjectPtr ptr); +void QDBusAbstractInterface_DestroyQDBusAbstractInterface(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/dbus/qdbusargument.cpp b/dbus/qdbusargument.cpp new file mode 100755 index 00000000..18e7906e --- /dev/null +++ b/dbus/qdbusargument.cpp @@ -0,0 +1,100 @@ +#include "qdbusargument.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDBusArgument: public QDBusArgument { +public: +}; + +QtObjectPtr QDBusArgument_NewQDBusArgument(){ + return new QDBusArgument(); +} + +QtObjectPtr QDBusArgument_NewQDBusArgument2(QtObjectPtr other){ + return new QDBusArgument(*static_cast(other)); +} + +char* QDBusArgument_AsVariant(QtObjectPtr ptr){ + return static_cast(ptr)->asVariant().toString().toUtf8().data(); +} + +int QDBusArgument_AtEnd(QtObjectPtr ptr){ + return static_cast(ptr)->atEnd(); +} + +void QDBusArgument_BeginArray(QtObjectPtr ptr, int id){ + static_cast(ptr)->beginArray(id); +} + +void QDBusArgument_BeginArray2(QtObjectPtr ptr){ + static_cast(ptr)->beginArray(); +} + +void QDBusArgument_BeginMap(QtObjectPtr ptr, int kid, int vid){ + static_cast(ptr)->beginMap(kid, vid); +} + +void QDBusArgument_BeginMap2(QtObjectPtr ptr){ + static_cast(ptr)->beginMap(); +} + +void QDBusArgument_BeginMapEntry(QtObjectPtr ptr){ + static_cast(ptr)->beginMapEntry(); +} + +void QDBusArgument_BeginMapEntry2(QtObjectPtr ptr){ + static_cast(ptr)->beginMapEntry(); +} + +void QDBusArgument_BeginStructure(QtObjectPtr ptr){ + static_cast(ptr)->beginStructure(); +} + +void QDBusArgument_BeginStructure2(QtObjectPtr ptr){ + static_cast(ptr)->beginStructure(); +} + +int QDBusArgument_CurrentType(QtObjectPtr ptr){ + return static_cast(ptr)->currentType(); +} + +void QDBusArgument_EndArray(QtObjectPtr ptr){ + static_cast(ptr)->endArray(); +} + +void QDBusArgument_EndArray2(QtObjectPtr ptr){ + static_cast(ptr)->endArray(); +} + +void QDBusArgument_EndMap(QtObjectPtr ptr){ + static_cast(ptr)->endMap(); +} + +void QDBusArgument_EndMap2(QtObjectPtr ptr){ + static_cast(ptr)->endMap(); +} + +void QDBusArgument_EndMapEntry(QtObjectPtr ptr){ + static_cast(ptr)->endMapEntry(); +} + +void QDBusArgument_EndMapEntry2(QtObjectPtr ptr){ + static_cast(ptr)->endMapEntry(); +} + +void QDBusArgument_EndStructure(QtObjectPtr ptr){ + static_cast(ptr)->endStructure(); +} + +void QDBusArgument_EndStructure2(QtObjectPtr ptr){ + static_cast(ptr)->endStructure(); +} + +void QDBusArgument_DestroyQDBusArgument(QtObjectPtr ptr){ + static_cast(ptr)->~QDBusArgument(); +} + diff --git a/dbus/qdbusargument.go b/dbus/qdbusargument.go new file mode 100755 index 00000000..9431694d --- /dev/null +++ b/dbus/qdbusargument.go @@ -0,0 +1,184 @@ +package dbus + +//#include "qdbusargument.h" +import "C" +import ( + "unsafe" +) + +type QDBusArgument struct { + ptr unsafe.Pointer +} + +type QDBusArgumentITF interface { + QDBusArgumentPTR() *QDBusArgument +} + +func (p *QDBusArgument) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDBusArgument) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDBusArgument(ptr QDBusArgumentITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDBusArgumentPTR().Pointer() + } + return nil +} + +func QDBusArgumentFromPointer(ptr unsafe.Pointer) *QDBusArgument { + var n = new(QDBusArgument) + n.SetPointer(ptr) + return n +} + +func (ptr *QDBusArgument) QDBusArgumentPTR() *QDBusArgument { + return ptr +} + +//QDBusArgument::ElementType +type QDBusArgument__ElementType int + +var ( + QDBusArgument__BasicType = QDBusArgument__ElementType(0) + QDBusArgument__VariantType = QDBusArgument__ElementType(1) + QDBusArgument__ArrayType = QDBusArgument__ElementType(2) + QDBusArgument__StructureType = QDBusArgument__ElementType(3) + QDBusArgument__MapType = QDBusArgument__ElementType(4) + QDBusArgument__MapEntryType = QDBusArgument__ElementType(5) + QDBusArgument__UnknownType = QDBusArgument__ElementType(-1) +) + +func NewQDBusArgument() *QDBusArgument { + return QDBusArgumentFromPointer(unsafe.Pointer(C.QDBusArgument_NewQDBusArgument())) +} + +func NewQDBusArgument2(other QDBusArgumentITF) *QDBusArgument { + return QDBusArgumentFromPointer(unsafe.Pointer(C.QDBusArgument_NewQDBusArgument2(C.QtObjectPtr(PointerFromQDBusArgument(other))))) +} + +func (ptr *QDBusArgument) AsVariant() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDBusArgument_AsVariant(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDBusArgument) AtEnd() bool { + if ptr.Pointer() != nil { + return C.QDBusArgument_AtEnd(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDBusArgument) BeginArray(id int) { + if ptr.Pointer() != nil { + C.QDBusArgument_BeginArray(C.QtObjectPtr(ptr.Pointer()), C.int(id)) + } +} + +func (ptr *QDBusArgument) BeginArray2() { + if ptr.Pointer() != nil { + C.QDBusArgument_BeginArray2(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDBusArgument) BeginMap(kid int, vid int) { + if ptr.Pointer() != nil { + C.QDBusArgument_BeginMap(C.QtObjectPtr(ptr.Pointer()), C.int(kid), C.int(vid)) + } +} + +func (ptr *QDBusArgument) BeginMap2() { + if ptr.Pointer() != nil { + C.QDBusArgument_BeginMap2(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDBusArgument) BeginMapEntry() { + if ptr.Pointer() != nil { + C.QDBusArgument_BeginMapEntry(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDBusArgument) BeginMapEntry2() { + if ptr.Pointer() != nil { + C.QDBusArgument_BeginMapEntry2(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDBusArgument) BeginStructure() { + if ptr.Pointer() != nil { + C.QDBusArgument_BeginStructure(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDBusArgument) BeginStructure2() { + if ptr.Pointer() != nil { + C.QDBusArgument_BeginStructure2(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDBusArgument) CurrentType() QDBusArgument__ElementType { + if ptr.Pointer() != nil { + return QDBusArgument__ElementType(C.QDBusArgument_CurrentType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDBusArgument) EndArray() { + if ptr.Pointer() != nil { + C.QDBusArgument_EndArray(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDBusArgument) EndArray2() { + if ptr.Pointer() != nil { + C.QDBusArgument_EndArray2(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDBusArgument) EndMap() { + if ptr.Pointer() != nil { + C.QDBusArgument_EndMap(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDBusArgument) EndMap2() { + if ptr.Pointer() != nil { + C.QDBusArgument_EndMap2(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDBusArgument) EndMapEntry() { + if ptr.Pointer() != nil { + C.QDBusArgument_EndMapEntry(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDBusArgument) EndMapEntry2() { + if ptr.Pointer() != nil { + C.QDBusArgument_EndMapEntry2(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDBusArgument) EndStructure() { + if ptr.Pointer() != nil { + C.QDBusArgument_EndStructure(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDBusArgument) EndStructure2() { + if ptr.Pointer() != nil { + C.QDBusArgument_EndStructure2(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDBusArgument) DestroyQDBusArgument() { + if ptr.Pointer() != nil { + C.QDBusArgument_DestroyQDBusArgument(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/dbus/qdbusargument.h b/dbus/qdbusargument.h new file mode 100755 index 00000000..4147cfb6 --- /dev/null +++ b/dbus/qdbusargument.h @@ -0,0 +1,31 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDBusArgument_NewQDBusArgument(); +QtObjectPtr QDBusArgument_NewQDBusArgument2(QtObjectPtr other); +char* QDBusArgument_AsVariant(QtObjectPtr ptr); +int QDBusArgument_AtEnd(QtObjectPtr ptr); +void QDBusArgument_BeginArray(QtObjectPtr ptr, int id); +void QDBusArgument_BeginArray2(QtObjectPtr ptr); +void QDBusArgument_BeginMap(QtObjectPtr ptr, int kid, int vid); +void QDBusArgument_BeginMap2(QtObjectPtr ptr); +void QDBusArgument_BeginMapEntry(QtObjectPtr ptr); +void QDBusArgument_BeginMapEntry2(QtObjectPtr ptr); +void QDBusArgument_BeginStructure(QtObjectPtr ptr); +void QDBusArgument_BeginStructure2(QtObjectPtr ptr); +int QDBusArgument_CurrentType(QtObjectPtr ptr); +void QDBusArgument_EndArray(QtObjectPtr ptr); +void QDBusArgument_EndArray2(QtObjectPtr ptr); +void QDBusArgument_EndMap(QtObjectPtr ptr); +void QDBusArgument_EndMap2(QtObjectPtr ptr); +void QDBusArgument_EndMapEntry(QtObjectPtr ptr); +void QDBusArgument_EndMapEntry2(QtObjectPtr ptr); +void QDBusArgument_EndStructure(QtObjectPtr ptr); +void QDBusArgument_EndStructure2(QtObjectPtr ptr); +void QDBusArgument_DestroyQDBusArgument(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/dbus/qdbusconnection.cpp b/dbus/qdbusconnection.cpp new file mode 100755 index 00000000..93bc8f60 --- /dev/null +++ b/dbus/qdbusconnection.cpp @@ -0,0 +1,98 @@ +#include "qdbusconnection.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDBusConnection: public QDBusConnection { +public: +}; + +QtObjectPtr QDBusConnection_NewQDBusConnection2(QtObjectPtr other){ + return new QDBusConnection(*static_cast(other)); +} + +QtObjectPtr QDBusConnection_NewQDBusConnection(char* name){ + return new QDBusConnection(QString(name)); +} + +char* QDBusConnection_BaseService(QtObjectPtr ptr){ + return static_cast(ptr)->baseService().toUtf8().data(); +} + +int QDBusConnection_CallWithCallback(QtObjectPtr ptr, QtObjectPtr message, QtObjectPtr receiver, char* returnMethod, char* errorMethod, int timeout){ + return static_cast(ptr)->callWithCallback(*static_cast(message), static_cast(receiver), const_cast(returnMethod), const_cast(errorMethod), timeout); +} + +int QDBusConnection_Connect(QtObjectPtr ptr, char* service, char* path, char* interfa, char* name, QtObjectPtr receiver, char* slot){ + return static_cast(ptr)->connect(QString(service), QString(path), QString(interfa), QString(name), static_cast(receiver), const_cast(slot)); +} + +int QDBusConnection_Connect2(QtObjectPtr ptr, char* service, char* path, char* interfa, char* name, char* signature, QtObjectPtr receiver, char* slot){ + return static_cast(ptr)->connect(QString(service), QString(path), QString(interfa), QString(name), QString(signature), static_cast(receiver), const_cast(slot)); +} + +int QDBusConnection_Connect3(QtObjectPtr ptr, char* service, char* path, char* interfa, char* name, char* argumentMatch, char* signature, QtObjectPtr receiver, char* slot){ + return static_cast(ptr)->connect(QString(service), QString(path), QString(interfa), QString(name), QString(argumentMatch).split("|", QString::SkipEmptyParts), QString(signature), static_cast(receiver), const_cast(slot)); +} + +int QDBusConnection_ConnectionCapabilities(QtObjectPtr ptr){ + return static_cast(ptr)->connectionCapabilities(); +} + +void QDBusConnection_QDBusConnection_DisconnectFromBus(char* name){ + QDBusConnection::disconnectFromBus(QString(name)); +} + +void QDBusConnection_QDBusConnection_DisconnectFromPeer(char* name){ + QDBusConnection::disconnectFromPeer(QString(name)); +} + +QtObjectPtr QDBusConnection_Interface(QtObjectPtr ptr){ + return static_cast(ptr)->interface(); +} + +int QDBusConnection_IsConnected(QtObjectPtr ptr){ + return static_cast(ptr)->isConnected(); +} + +char* QDBusConnection_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +QtObjectPtr QDBusConnection_ObjectRegisteredAt(QtObjectPtr ptr, char* path){ + return static_cast(ptr)->objectRegisteredAt(QString(path)); +} + +int QDBusConnection_RegisterObject(QtObjectPtr ptr, char* path, QtObjectPtr object, int options){ + return static_cast(ptr)->registerObject(QString(path), static_cast(object), static_cast(options)); +} + +int QDBusConnection_RegisterObject2(QtObjectPtr ptr, char* path, char* interfa, QtObjectPtr object, int options){ + return static_cast(ptr)->registerObject(QString(path), QString(interfa), static_cast(object), static_cast(options)); +} + +int QDBusConnection_RegisterService(QtObjectPtr ptr, char* serviceName){ + return static_cast(ptr)->registerService(QString(serviceName)); +} + +int QDBusConnection_Send(QtObjectPtr ptr, QtObjectPtr message){ + return static_cast(ptr)->send(*static_cast(message)); +} + +void QDBusConnection_UnregisterObject(QtObjectPtr ptr, char* path, int mode){ + static_cast(ptr)->unregisterObject(QString(path), static_cast(mode)); +} + +int QDBusConnection_UnregisterService(QtObjectPtr ptr, char* serviceName){ + return static_cast(ptr)->unregisterService(QString(serviceName)); +} + +void QDBusConnection_DestroyQDBusConnection(QtObjectPtr ptr){ + static_cast(ptr)->~QDBusConnection(); +} + diff --git a/dbus/qdbusconnection.go b/dbus/qdbusconnection.go new file mode 100755 index 00000000..5a01e039 --- /dev/null +++ b/dbus/qdbusconnection.go @@ -0,0 +1,222 @@ +package dbus + +//#include "qdbusconnection.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QDBusConnection struct { + ptr unsafe.Pointer +} + +type QDBusConnectionITF interface { + QDBusConnectionPTR() *QDBusConnection +} + +func (p *QDBusConnection) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDBusConnection) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDBusConnection(ptr QDBusConnectionITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDBusConnectionPTR().Pointer() + } + return nil +} + +func QDBusConnectionFromPointer(ptr unsafe.Pointer) *QDBusConnection { + var n = new(QDBusConnection) + n.SetPointer(ptr) + return n +} + +func (ptr *QDBusConnection) QDBusConnectionPTR() *QDBusConnection { + return ptr +} + +//QDBusConnection::BusType +type QDBusConnection__BusType int + +var ( + QDBusConnection__SessionBus = QDBusConnection__BusType(0) + QDBusConnection__SystemBus = QDBusConnection__BusType(1) + QDBusConnection__ActivationBus = QDBusConnection__BusType(2) +) + +//QDBusConnection::ConnectionCapability +type QDBusConnection__ConnectionCapability int + +var ( + QDBusConnection__UnixFileDescriptorPassing = QDBusConnection__ConnectionCapability(0x0001) +) + +//QDBusConnection::RegisterOption +type QDBusConnection__RegisterOption int + +var ( + QDBusConnection__ExportAdaptors = QDBusConnection__RegisterOption(0x01) + QDBusConnection__ExportScriptableSlots = QDBusConnection__RegisterOption(0x10) + QDBusConnection__ExportScriptableSignals = QDBusConnection__RegisterOption(0x20) + QDBusConnection__ExportScriptableProperties = QDBusConnection__RegisterOption(0x40) + QDBusConnection__ExportScriptableInvokables = QDBusConnection__RegisterOption(0x80) + QDBusConnection__ExportScriptableContents = QDBusConnection__RegisterOption(0xf0) + QDBusConnection__ExportNonScriptableSlots = QDBusConnection__RegisterOption(0x100) + QDBusConnection__ExportNonScriptableSignals = QDBusConnection__RegisterOption(0x200) + QDBusConnection__ExportNonScriptableProperties = QDBusConnection__RegisterOption(0x400) + QDBusConnection__ExportNonScriptableInvokables = QDBusConnection__RegisterOption(0x800) + QDBusConnection__ExportNonScriptableContents = QDBusConnection__RegisterOption(0xf00) + QDBusConnection__ExportAllSlots = QDBusConnection__RegisterOption(QDBusConnection__ExportScriptableSlots | QDBusConnection__ExportNonScriptableSlots) + QDBusConnection__ExportAllSignals = QDBusConnection__RegisterOption(QDBusConnection__ExportScriptableSignals | QDBusConnection__ExportNonScriptableSignals) + QDBusConnection__ExportAllProperties = QDBusConnection__RegisterOption(QDBusConnection__ExportScriptableProperties | QDBusConnection__ExportNonScriptableProperties) + QDBusConnection__ExportAllInvokables = QDBusConnection__RegisterOption(QDBusConnection__ExportScriptableInvokables | QDBusConnection__ExportNonScriptableInvokables) + QDBusConnection__ExportAllContents = QDBusConnection__RegisterOption(QDBusConnection__ExportScriptableContents | QDBusConnection__ExportNonScriptableContents) + QDBusConnection__ExportChildObjects = QDBusConnection__RegisterOption(0x1000) +) + +//QDBusConnection::UnregisterMode +type QDBusConnection__UnregisterMode int + +var ( + QDBusConnection__UnregisterNode = QDBusConnection__UnregisterMode(0) + QDBusConnection__UnregisterTree = QDBusConnection__UnregisterMode(1) +) + +func NewQDBusConnection2(other QDBusConnectionITF) *QDBusConnection { + return QDBusConnectionFromPointer(unsafe.Pointer(C.QDBusConnection_NewQDBusConnection2(C.QtObjectPtr(PointerFromQDBusConnection(other))))) +} + +func NewQDBusConnection(name string) *QDBusConnection { + return QDBusConnectionFromPointer(unsafe.Pointer(C.QDBusConnection_NewQDBusConnection(C.CString(name)))) +} + +func (ptr *QDBusConnection) BaseService() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDBusConnection_BaseService(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDBusConnection) CallWithCallback(message QDBusMessageITF, receiver core.QObjectITF, returnMethod string, errorMethod string, timeout int) bool { + if ptr.Pointer() != nil { + return C.QDBusConnection_CallWithCallback(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDBusMessage(message)), C.QtObjectPtr(core.PointerFromQObject(receiver)), C.CString(returnMethod), C.CString(errorMethod), C.int(timeout)) != 0 + } + return false +} + +func (ptr *QDBusConnection) Connect(service string, path string, interfa string, name string, receiver core.QObjectITF, slot string) bool { + if ptr.Pointer() != nil { + return C.QDBusConnection_Connect(C.QtObjectPtr(ptr.Pointer()), C.CString(service), C.CString(path), C.CString(interfa), C.CString(name), C.QtObjectPtr(core.PointerFromQObject(receiver)), C.CString(slot)) != 0 + } + return false +} + +func (ptr *QDBusConnection) Connect2(service string, path string, interfa string, name string, signature string, receiver core.QObjectITF, slot string) bool { + if ptr.Pointer() != nil { + return C.QDBusConnection_Connect2(C.QtObjectPtr(ptr.Pointer()), C.CString(service), C.CString(path), C.CString(interfa), C.CString(name), C.CString(signature), C.QtObjectPtr(core.PointerFromQObject(receiver)), C.CString(slot)) != 0 + } + return false +} + +func (ptr *QDBusConnection) Connect3(service string, path string, interfa string, name string, argumentMatch []string, signature string, receiver core.QObjectITF, slot string) bool { + if ptr.Pointer() != nil { + return C.QDBusConnection_Connect3(C.QtObjectPtr(ptr.Pointer()), C.CString(service), C.CString(path), C.CString(interfa), C.CString(name), C.CString(strings.Join(argumentMatch, "|")), C.CString(signature), C.QtObjectPtr(core.PointerFromQObject(receiver)), C.CString(slot)) != 0 + } + return false +} + +func (ptr *QDBusConnection) ConnectionCapabilities() QDBusConnection__ConnectionCapability { + if ptr.Pointer() != nil { + return QDBusConnection__ConnectionCapability(C.QDBusConnection_ConnectionCapabilities(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QDBusConnection_DisconnectFromBus(name string) { + C.QDBusConnection_QDBusConnection_DisconnectFromBus(C.CString(name)) +} + +func QDBusConnection_DisconnectFromPeer(name string) { + C.QDBusConnection_QDBusConnection_DisconnectFromPeer(C.CString(name)) +} + +func (ptr *QDBusConnection) Interface() *QDBusConnectionInterface { + if ptr.Pointer() != nil { + return QDBusConnectionInterfaceFromPointer(unsafe.Pointer(C.QDBusConnection_Interface(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QDBusConnection) IsConnected() bool { + if ptr.Pointer() != nil { + return C.QDBusConnection_IsConnected(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDBusConnection) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDBusConnection_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDBusConnection) ObjectRegisteredAt(path string) *core.QObject { + if ptr.Pointer() != nil { + return core.QObjectFromPointer(unsafe.Pointer(C.QDBusConnection_ObjectRegisteredAt(C.QtObjectPtr(ptr.Pointer()), C.CString(path)))) + } + return nil +} + +func (ptr *QDBusConnection) RegisterObject(path string, object core.QObjectITF, options QDBusConnection__RegisterOption) bool { + if ptr.Pointer() != nil { + return C.QDBusConnection_RegisterObject(C.QtObjectPtr(ptr.Pointer()), C.CString(path), C.QtObjectPtr(core.PointerFromQObject(object)), C.int(options)) != 0 + } + return false +} + +func (ptr *QDBusConnection) RegisterObject2(path string, interfa string, object core.QObjectITF, options QDBusConnection__RegisterOption) bool { + if ptr.Pointer() != nil { + return C.QDBusConnection_RegisterObject2(C.QtObjectPtr(ptr.Pointer()), C.CString(path), C.CString(interfa), C.QtObjectPtr(core.PointerFromQObject(object)), C.int(options)) != 0 + } + return false +} + +func (ptr *QDBusConnection) RegisterService(serviceName string) bool { + if ptr.Pointer() != nil { + return C.QDBusConnection_RegisterService(C.QtObjectPtr(ptr.Pointer()), C.CString(serviceName)) != 0 + } + return false +} + +func (ptr *QDBusConnection) Send(message QDBusMessageITF) bool { + if ptr.Pointer() != nil { + return C.QDBusConnection_Send(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDBusMessage(message))) != 0 + } + return false +} + +func (ptr *QDBusConnection) UnregisterObject(path string, mode QDBusConnection__UnregisterMode) { + if ptr.Pointer() != nil { + C.QDBusConnection_UnregisterObject(C.QtObjectPtr(ptr.Pointer()), C.CString(path), C.int(mode)) + } +} + +func (ptr *QDBusConnection) UnregisterService(serviceName string) bool { + if ptr.Pointer() != nil { + return C.QDBusConnection_UnregisterService(C.QtObjectPtr(ptr.Pointer()), C.CString(serviceName)) != 0 + } + return false +} + +func (ptr *QDBusConnection) DestroyQDBusConnection() { + if ptr.Pointer() != nil { + C.QDBusConnection_DestroyQDBusConnection(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/dbus/qdbusconnection.h b/dbus/qdbusconnection.h new file mode 100755 index 00000000..9e4ce43b --- /dev/null +++ b/dbus/qdbusconnection.h @@ -0,0 +1,30 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDBusConnection_NewQDBusConnection2(QtObjectPtr other); +QtObjectPtr QDBusConnection_NewQDBusConnection(char* name); +char* QDBusConnection_BaseService(QtObjectPtr ptr); +int QDBusConnection_CallWithCallback(QtObjectPtr ptr, QtObjectPtr message, QtObjectPtr receiver, char* returnMethod, char* errorMethod, int timeout); +int QDBusConnection_Connect(QtObjectPtr ptr, char* service, char* path, char* interfa, char* name, QtObjectPtr receiver, char* slot); +int QDBusConnection_Connect2(QtObjectPtr ptr, char* service, char* path, char* interfa, char* name, char* signature, QtObjectPtr receiver, char* slot); +int QDBusConnection_Connect3(QtObjectPtr ptr, char* service, char* path, char* interfa, char* name, char* argumentMatch, char* signature, QtObjectPtr receiver, char* slot); +int QDBusConnection_ConnectionCapabilities(QtObjectPtr ptr); +void QDBusConnection_QDBusConnection_DisconnectFromBus(char* name); +void QDBusConnection_QDBusConnection_DisconnectFromPeer(char* name); +QtObjectPtr QDBusConnection_Interface(QtObjectPtr ptr); +int QDBusConnection_IsConnected(QtObjectPtr ptr); +char* QDBusConnection_Name(QtObjectPtr ptr); +QtObjectPtr QDBusConnection_ObjectRegisteredAt(QtObjectPtr ptr, char* path); +int QDBusConnection_RegisterObject(QtObjectPtr ptr, char* path, QtObjectPtr object, int options); +int QDBusConnection_RegisterObject2(QtObjectPtr ptr, char* path, char* interfa, QtObjectPtr object, int options); +int QDBusConnection_RegisterService(QtObjectPtr ptr, char* serviceName); +int QDBusConnection_Send(QtObjectPtr ptr, QtObjectPtr message); +void QDBusConnection_UnregisterObject(QtObjectPtr ptr, char* path, int mode); +int QDBusConnection_UnregisterService(QtObjectPtr ptr, char* serviceName); +void QDBusConnection_DestroyQDBusConnection(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/dbus/qdbusconnectioninterface.cpp b/dbus/qdbusconnectioninterface.cpp new file mode 100755 index 00000000..e64faff5 --- /dev/null +++ b/dbus/qdbusconnectioninterface.cpp @@ -0,0 +1,32 @@ +#include "qdbusconnectioninterface.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDBusConnectionInterface: public QDBusConnectionInterface { +public: +void Signal_ServiceRegistered(const QString & serviceName){callbackQDBusConnectionInterfaceServiceRegistered(this->objectName().toUtf8().data(), serviceName.toUtf8().data());}; +void Signal_ServiceUnregistered(const QString & serviceName){callbackQDBusConnectionInterfaceServiceUnregistered(this->objectName().toUtf8().data(), serviceName.toUtf8().data());}; +}; + +void QDBusConnectionInterface_ConnectServiceRegistered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QDBusConnectionInterface::serviceRegistered), static_cast(ptr), static_cast(&MyQDBusConnectionInterface::Signal_ServiceRegistered));; +} + +void QDBusConnectionInterface_DisconnectServiceRegistered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QDBusConnectionInterface::serviceRegistered), static_cast(ptr), static_cast(&MyQDBusConnectionInterface::Signal_ServiceRegistered));; +} + +void QDBusConnectionInterface_ConnectServiceUnregistered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QDBusConnectionInterface::serviceUnregistered), static_cast(ptr), static_cast(&MyQDBusConnectionInterface::Signal_ServiceUnregistered));; +} + +void QDBusConnectionInterface_DisconnectServiceUnregistered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QDBusConnectionInterface::serviceUnregistered), static_cast(ptr), static_cast(&MyQDBusConnectionInterface::Signal_ServiceUnregistered));; +} + diff --git a/dbus/qdbusconnectioninterface.go b/dbus/qdbusconnectioninterface.go new file mode 100755 index 00000000..e8f8796c --- /dev/null +++ b/dbus/qdbusconnectioninterface.go @@ -0,0 +1,101 @@ +package dbus + +//#include "qdbusconnectioninterface.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QDBusConnectionInterface struct { + QDBusAbstractInterface +} + +type QDBusConnectionInterfaceITF interface { + QDBusAbstractInterfaceITF + QDBusConnectionInterfacePTR() *QDBusConnectionInterface +} + +func PointerFromQDBusConnectionInterface(ptr QDBusConnectionInterfaceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDBusConnectionInterfacePTR().Pointer() + } + return nil +} + +func QDBusConnectionInterfaceFromPointer(ptr unsafe.Pointer) *QDBusConnectionInterface { + var n = new(QDBusConnectionInterface) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QDBusConnectionInterface_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QDBusConnectionInterface) QDBusConnectionInterfacePTR() *QDBusConnectionInterface { + return ptr +} + +//QDBusConnectionInterface::RegisterServiceReply +type QDBusConnectionInterface__RegisterServiceReply int + +var ( + QDBusConnectionInterface__ServiceNotRegistered = QDBusConnectionInterface__RegisterServiceReply(0) + QDBusConnectionInterface__ServiceRegistered = QDBusConnectionInterface__RegisterServiceReply(1) + QDBusConnectionInterface__ServiceQueued = QDBusConnectionInterface__RegisterServiceReply(2) +) + +//QDBusConnectionInterface::ServiceQueueOptions +type QDBusConnectionInterface__ServiceQueueOptions int + +var ( + QDBusConnectionInterface__DontQueueService = QDBusConnectionInterface__ServiceQueueOptions(0) + QDBusConnectionInterface__QueueService = QDBusConnectionInterface__ServiceQueueOptions(1) + QDBusConnectionInterface__ReplaceExistingService = QDBusConnectionInterface__ServiceQueueOptions(2) +) + +//QDBusConnectionInterface::ServiceReplacementOptions +type QDBusConnectionInterface__ServiceReplacementOptions int + +var ( + QDBusConnectionInterface__DontAllowReplacement = QDBusConnectionInterface__ServiceReplacementOptions(0) + QDBusConnectionInterface__AllowReplacement = QDBusConnectionInterface__ServiceReplacementOptions(1) +) + +func (ptr *QDBusConnectionInterface) ConnectServiceRegistered(f func(serviceName string)) { + if ptr.Pointer() != nil { + C.QDBusConnectionInterface_ConnectServiceRegistered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "serviceRegistered", f) + } +} + +func (ptr *QDBusConnectionInterface) DisconnectServiceRegistered() { + if ptr.Pointer() != nil { + C.QDBusConnectionInterface_DisconnectServiceRegistered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "serviceRegistered") + } +} + +//export callbackQDBusConnectionInterfaceServiceRegistered +func callbackQDBusConnectionInterfaceServiceRegistered(ptrName *C.char, serviceName *C.char) { + qt.GetSignal(C.GoString(ptrName), "serviceRegistered").(func(string))(C.GoString(serviceName)) +} + +func (ptr *QDBusConnectionInterface) ConnectServiceUnregistered(f func(serviceName string)) { + if ptr.Pointer() != nil { + C.QDBusConnectionInterface_ConnectServiceUnregistered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "serviceUnregistered", f) + } +} + +func (ptr *QDBusConnectionInterface) DisconnectServiceUnregistered() { + if ptr.Pointer() != nil { + C.QDBusConnectionInterface_DisconnectServiceUnregistered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "serviceUnregistered") + } +} + +//export callbackQDBusConnectionInterfaceServiceUnregistered +func callbackQDBusConnectionInterfaceServiceUnregistered(ptrName *C.char, serviceName *C.char) { + qt.GetSignal(C.GoString(ptrName), "serviceUnregistered").(func(string))(C.GoString(serviceName)) +} diff --git a/dbus/qdbusconnectioninterface.h b/dbus/qdbusconnectioninterface.h new file mode 100755 index 00000000..1559343b --- /dev/null +++ b/dbus/qdbusconnectioninterface.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QDBusConnectionInterface_ConnectServiceRegistered(QtObjectPtr ptr); +void QDBusConnectionInterface_DisconnectServiceRegistered(QtObjectPtr ptr); +void QDBusConnectionInterface_ConnectServiceUnregistered(QtObjectPtr ptr); +void QDBusConnectionInterface_DisconnectServiceUnregistered(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/dbus/qdbuscontext.cpp b/dbus/qdbuscontext.cpp new file mode 100755 index 00000000..1c37d767 --- /dev/null +++ b/dbus/qdbuscontext.cpp @@ -0,0 +1,41 @@ +#include "qdbuscontext.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDBusContext: public QDBusContext { +public: +}; + +QtObjectPtr QDBusContext_NewQDBusContext(){ + return new QDBusContext(); +} + +int QDBusContext_CalledFromDBus(QtObjectPtr ptr){ + return static_cast(ptr)->calledFromDBus(); +} + +int QDBusContext_IsDelayedReply(QtObjectPtr ptr){ + return static_cast(ptr)->isDelayedReply(); +} + +void QDBusContext_SendErrorReply2(QtObjectPtr ptr, int ty, char* msg){ + static_cast(ptr)->sendErrorReply(static_cast(ty), QString(msg)); +} + +void QDBusContext_SendErrorReply(QtObjectPtr ptr, char* name, char* msg){ + static_cast(ptr)->sendErrorReply(QString(name), QString(msg)); +} + +void QDBusContext_SetDelayedReply(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setDelayedReply(enable != 0); +} + +void QDBusContext_DestroyQDBusContext(QtObjectPtr ptr){ + static_cast(ptr)->~QDBusContext(); +} + diff --git a/dbus/qdbuscontext.go b/dbus/qdbuscontext.go new file mode 100755 index 00000000..9fdd20c0 --- /dev/null +++ b/dbus/qdbuscontext.go @@ -0,0 +1,83 @@ +package dbus + +//#include "qdbuscontext.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QDBusContext struct { + ptr unsafe.Pointer +} + +type QDBusContextITF interface { + QDBusContextPTR() *QDBusContext +} + +func (p *QDBusContext) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDBusContext) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDBusContext(ptr QDBusContextITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDBusContextPTR().Pointer() + } + return nil +} + +func QDBusContextFromPointer(ptr unsafe.Pointer) *QDBusContext { + var n = new(QDBusContext) + n.SetPointer(ptr) + return n +} + +func (ptr *QDBusContext) QDBusContextPTR() *QDBusContext { + return ptr +} + +func NewQDBusContext() *QDBusContext { + return QDBusContextFromPointer(unsafe.Pointer(C.QDBusContext_NewQDBusContext())) +} + +func (ptr *QDBusContext) CalledFromDBus() bool { + if ptr.Pointer() != nil { + return C.QDBusContext_CalledFromDBus(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDBusContext) IsDelayedReply() bool { + if ptr.Pointer() != nil { + return C.QDBusContext_IsDelayedReply(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDBusContext) SendErrorReply2(ty QDBusError__ErrorType, msg string) { + if ptr.Pointer() != nil { + C.QDBusContext_SendErrorReply2(C.QtObjectPtr(ptr.Pointer()), C.int(ty), C.CString(msg)) + } +} + +func (ptr *QDBusContext) SendErrorReply(name string, msg string) { + if ptr.Pointer() != nil { + C.QDBusContext_SendErrorReply(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.CString(msg)) + } +} + +func (ptr *QDBusContext) SetDelayedReply(enable bool) { + if ptr.Pointer() != nil { + C.QDBusContext_SetDelayedReply(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QDBusContext) DestroyQDBusContext() { + if ptr.Pointer() != nil { + C.QDBusContext_DestroyQDBusContext(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/dbus/qdbuscontext.h b/dbus/qdbuscontext.h new file mode 100755 index 00000000..c336353e --- /dev/null +++ b/dbus/qdbuscontext.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDBusContext_NewQDBusContext(); +int QDBusContext_CalledFromDBus(QtObjectPtr ptr); +int QDBusContext_IsDelayedReply(QtObjectPtr ptr); +void QDBusContext_SendErrorReply2(QtObjectPtr ptr, int ty, char* msg); +void QDBusContext_SendErrorReply(QtObjectPtr ptr, char* name, char* msg); +void QDBusContext_SetDelayedReply(QtObjectPtr ptr, int enable); +void QDBusContext_DestroyQDBusContext(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/dbus/qdbuserror.cpp b/dbus/qdbuserror.cpp new file mode 100755 index 00000000..c1cf24ff --- /dev/null +++ b/dbus/qdbuserror.cpp @@ -0,0 +1,32 @@ +#include "qdbuserror.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDBusError: public QDBusError { +public: +}; + +char* QDBusError_QDBusError_ErrorString(int error){ + return QDBusError::errorString(static_cast(error)).toUtf8().data(); +} + +int QDBusError_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +char* QDBusError_Message(QtObjectPtr ptr){ + return static_cast(ptr)->message().toUtf8().data(); +} + +char* QDBusError_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +int QDBusError_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + diff --git a/dbus/qdbuserror.go b/dbus/qdbuserror.go new file mode 100755 index 00000000..06272ed7 --- /dev/null +++ b/dbus/qdbuserror.go @@ -0,0 +1,106 @@ +package dbus + +//#include "qdbuserror.h" +import "C" +import ( + "unsafe" +) + +type QDBusError struct { + ptr unsafe.Pointer +} + +type QDBusErrorITF interface { + QDBusErrorPTR() *QDBusError +} + +func (p *QDBusError) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDBusError) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDBusError(ptr QDBusErrorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDBusErrorPTR().Pointer() + } + return nil +} + +func QDBusErrorFromPointer(ptr unsafe.Pointer) *QDBusError { + var n = new(QDBusError) + n.SetPointer(ptr) + return n +} + +func (ptr *QDBusError) QDBusErrorPTR() *QDBusError { + return ptr +} + +//QDBusError::ErrorType +type QDBusError__ErrorType int + +var ( + QDBusError__NoError = QDBusError__ErrorType(0) + QDBusError__Other = QDBusError__ErrorType(1) + QDBusError__Failed = QDBusError__ErrorType(2) + QDBusError__NoMemory = QDBusError__ErrorType(3) + QDBusError__ServiceUnknown = QDBusError__ErrorType(4) + QDBusError__NoReply = QDBusError__ErrorType(5) + QDBusError__BadAddress = QDBusError__ErrorType(6) + QDBusError__NotSupported = QDBusError__ErrorType(7) + QDBusError__LimitsExceeded = QDBusError__ErrorType(8) + QDBusError__AccessDenied = QDBusError__ErrorType(9) + QDBusError__NoServer = QDBusError__ErrorType(10) + QDBusError__Timeout = QDBusError__ErrorType(11) + QDBusError__NoNetwork = QDBusError__ErrorType(12) + QDBusError__AddressInUse = QDBusError__ErrorType(13) + QDBusError__Disconnected = QDBusError__ErrorType(14) + QDBusError__InvalidArgs = QDBusError__ErrorType(15) + QDBusError__UnknownMethod = QDBusError__ErrorType(16) + QDBusError__TimedOut = QDBusError__ErrorType(17) + QDBusError__InvalidSignature = QDBusError__ErrorType(18) + QDBusError__UnknownInterface = QDBusError__ErrorType(19) + QDBusError__UnknownObject = QDBusError__ErrorType(20) + QDBusError__UnknownProperty = QDBusError__ErrorType(21) + QDBusError__PropertyReadOnly = QDBusError__ErrorType(22) + QDBusError__InternalError = QDBusError__ErrorType(23) + QDBusError__InvalidService = QDBusError__ErrorType(24) + QDBusError__InvalidObjectPath = QDBusError__ErrorType(25) + QDBusError__InvalidInterface = QDBusError__ErrorType(26) + QDBusError__InvalidMember = QDBusError__ErrorType(27) +) + +func QDBusError_ErrorString(error QDBusError__ErrorType) string { + return C.GoString(C.QDBusError_QDBusError_ErrorString(C.int(error))) +} + +func (ptr *QDBusError) IsValid() bool { + if ptr.Pointer() != nil { + return C.QDBusError_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDBusError) Message() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDBusError_Message(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDBusError) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDBusError_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDBusError) Type() QDBusError__ErrorType { + if ptr.Pointer() != nil { + return QDBusError__ErrorType(C.QDBusError_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/dbus/qdbuserror.h b/dbus/qdbuserror.h new file mode 100755 index 00000000..8bb0b4fe --- /dev/null +++ b/dbus/qdbuserror.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QDBusError_QDBusError_ErrorString(int error); +int QDBusError_IsValid(QtObjectPtr ptr); +char* QDBusError_Message(QtObjectPtr ptr); +char* QDBusError_Name(QtObjectPtr ptr); +int QDBusError_Type(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/dbus/qdbusinterface.cpp b/dbus/qdbusinterface.cpp new file mode 100755 index 00000000..073b258b --- /dev/null +++ b/dbus/qdbusinterface.cpp @@ -0,0 +1,22 @@ +#include "qdbusinterface.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDBusInterface: public QDBusInterface { +public: +}; + +QtObjectPtr QDBusInterface_NewQDBusInterface(char* service, char* path, char* interfa, QtObjectPtr connection, QtObjectPtr parent){ + return new QDBusInterface(QString(service), QString(path), QString(interfa), *static_cast(connection), static_cast(parent)); +} + +void QDBusInterface_DestroyQDBusInterface(QtObjectPtr ptr){ + static_cast(ptr)->~QDBusInterface(); +} + diff --git a/dbus/qdbusinterface.go b/dbus/qdbusinterface.go new file mode 100755 index 00000000..e151f6cc --- /dev/null +++ b/dbus/qdbusinterface.go @@ -0,0 +1,49 @@ +package dbus + +//#include "qdbusinterface.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QDBusInterface struct { + QDBusAbstractInterface +} + +type QDBusInterfaceITF interface { + QDBusAbstractInterfaceITF + QDBusInterfacePTR() *QDBusInterface +} + +func PointerFromQDBusInterface(ptr QDBusInterfaceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDBusInterfacePTR().Pointer() + } + return nil +} + +func QDBusInterfaceFromPointer(ptr unsafe.Pointer) *QDBusInterface { + var n = new(QDBusInterface) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QDBusInterface_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QDBusInterface) QDBusInterfacePTR() *QDBusInterface { + return ptr +} + +func NewQDBusInterface(service string, path string, interfa string, connection QDBusConnectionITF, parent core.QObjectITF) *QDBusInterface { + return QDBusInterfaceFromPointer(unsafe.Pointer(C.QDBusInterface_NewQDBusInterface(C.CString(service), C.CString(path), C.CString(interfa), C.QtObjectPtr(PointerFromQDBusConnection(connection)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QDBusInterface) DestroyQDBusInterface() { + if ptr.Pointer() != nil { + C.QDBusInterface_DestroyQDBusInterface(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/dbus/qdbusinterface.h b/dbus/qdbusinterface.h new file mode 100755 index 00000000..ad221e45 --- /dev/null +++ b/dbus/qdbusinterface.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDBusInterface_NewQDBusInterface(char* service, char* path, char* interfa, QtObjectPtr connection, QtObjectPtr parent); +void QDBusInterface_DestroyQDBusInterface(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/dbus/qdbusmessage.cpp b/dbus/qdbusmessage.cpp new file mode 100755 index 00000000..fa237d1d --- /dev/null +++ b/dbus/qdbusmessage.cpp @@ -0,0 +1,76 @@ +#include "qdbusmessage.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDBusMessage: public QDBusMessage { +public: +}; + +QtObjectPtr QDBusMessage_NewQDBusMessage(){ + return new QDBusMessage(); +} + +QtObjectPtr QDBusMessage_NewQDBusMessage2(QtObjectPtr other){ + return new QDBusMessage(*static_cast(other)); +} + +int QDBusMessage_AutoStartService(QtObjectPtr ptr){ + return static_cast(ptr)->autoStartService(); +} + +char* QDBusMessage_ErrorMessage(QtObjectPtr ptr){ + return static_cast(ptr)->errorMessage().toUtf8().data(); +} + +char* QDBusMessage_ErrorName(QtObjectPtr ptr){ + return static_cast(ptr)->errorName().toUtf8().data(); +} + +char* QDBusMessage_Interface(QtObjectPtr ptr){ + return static_cast(ptr)->interface().toUtf8().data(); +} + +int QDBusMessage_IsDelayedReply(QtObjectPtr ptr){ + return static_cast(ptr)->isDelayedReply(); +} + +int QDBusMessage_IsReplyRequired(QtObjectPtr ptr){ + return static_cast(ptr)->isReplyRequired(); +} + +char* QDBusMessage_Member(QtObjectPtr ptr){ + return static_cast(ptr)->member().toUtf8().data(); +} + +char* QDBusMessage_Path(QtObjectPtr ptr){ + return static_cast(ptr)->path().toUtf8().data(); +} + +char* QDBusMessage_Service(QtObjectPtr ptr){ + return static_cast(ptr)->service().toUtf8().data(); +} + +void QDBusMessage_SetAutoStartService(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setAutoStartService(enable != 0); +} + +void QDBusMessage_SetDelayedReply(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setDelayedReply(enable != 0); +} + +char* QDBusMessage_Signature(QtObjectPtr ptr){ + return static_cast(ptr)->signature().toUtf8().data(); +} + +int QDBusMessage_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QDBusMessage_DestroyQDBusMessage(QtObjectPtr ptr){ + static_cast(ptr)->~QDBusMessage(); +} + diff --git a/dbus/qdbusmessage.go b/dbus/qdbusmessage.go new file mode 100755 index 00000000..370520ca --- /dev/null +++ b/dbus/qdbusmessage.go @@ -0,0 +1,155 @@ +package dbus + +//#include "qdbusmessage.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QDBusMessage struct { + ptr unsafe.Pointer +} + +type QDBusMessageITF interface { + QDBusMessagePTR() *QDBusMessage +} + +func (p *QDBusMessage) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDBusMessage) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDBusMessage(ptr QDBusMessageITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDBusMessagePTR().Pointer() + } + return nil +} + +func QDBusMessageFromPointer(ptr unsafe.Pointer) *QDBusMessage { + var n = new(QDBusMessage) + n.SetPointer(ptr) + return n +} + +func (ptr *QDBusMessage) QDBusMessagePTR() *QDBusMessage { + return ptr +} + +//QDBusMessage::MessageType +type QDBusMessage__MessageType int + +var ( + QDBusMessage__InvalidMessage = QDBusMessage__MessageType(0) + QDBusMessage__MethodCallMessage = QDBusMessage__MessageType(1) + QDBusMessage__ReplyMessage = QDBusMessage__MessageType(2) + QDBusMessage__ErrorMessage = QDBusMessage__MessageType(3) + QDBusMessage__SignalMessage = QDBusMessage__MessageType(4) +) + +func NewQDBusMessage() *QDBusMessage { + return QDBusMessageFromPointer(unsafe.Pointer(C.QDBusMessage_NewQDBusMessage())) +} + +func NewQDBusMessage2(other QDBusMessageITF) *QDBusMessage { + return QDBusMessageFromPointer(unsafe.Pointer(C.QDBusMessage_NewQDBusMessage2(C.QtObjectPtr(PointerFromQDBusMessage(other))))) +} + +func (ptr *QDBusMessage) AutoStartService() bool { + if ptr.Pointer() != nil { + return C.QDBusMessage_AutoStartService(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDBusMessage) ErrorMessage() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDBusMessage_ErrorMessage(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDBusMessage) ErrorName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDBusMessage_ErrorName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDBusMessage) Interface() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDBusMessage_Interface(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDBusMessage) IsDelayedReply() bool { + if ptr.Pointer() != nil { + return C.QDBusMessage_IsDelayedReply(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDBusMessage) IsReplyRequired() bool { + if ptr.Pointer() != nil { + return C.QDBusMessage_IsReplyRequired(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDBusMessage) Member() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDBusMessage_Member(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDBusMessage) Path() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDBusMessage_Path(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDBusMessage) Service() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDBusMessage_Service(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDBusMessage) SetAutoStartService(enable bool) { + if ptr.Pointer() != nil { + C.QDBusMessage_SetAutoStartService(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QDBusMessage) SetDelayedReply(enable bool) { + if ptr.Pointer() != nil { + C.QDBusMessage_SetDelayedReply(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QDBusMessage) Signature() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDBusMessage_Signature(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDBusMessage) Type() QDBusMessage__MessageType { + if ptr.Pointer() != nil { + return QDBusMessage__MessageType(C.QDBusMessage_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDBusMessage) DestroyQDBusMessage() { + if ptr.Pointer() != nil { + C.QDBusMessage_DestroyQDBusMessage(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/dbus/qdbusmessage.h b/dbus/qdbusmessage.h new file mode 100755 index 00000000..5dbf020b --- /dev/null +++ b/dbus/qdbusmessage.h @@ -0,0 +1,25 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDBusMessage_NewQDBusMessage(); +QtObjectPtr QDBusMessage_NewQDBusMessage2(QtObjectPtr other); +int QDBusMessage_AutoStartService(QtObjectPtr ptr); +char* QDBusMessage_ErrorMessage(QtObjectPtr ptr); +char* QDBusMessage_ErrorName(QtObjectPtr ptr); +char* QDBusMessage_Interface(QtObjectPtr ptr); +int QDBusMessage_IsDelayedReply(QtObjectPtr ptr); +int QDBusMessage_IsReplyRequired(QtObjectPtr ptr); +char* QDBusMessage_Member(QtObjectPtr ptr); +char* QDBusMessage_Path(QtObjectPtr ptr); +char* QDBusMessage_Service(QtObjectPtr ptr); +void QDBusMessage_SetAutoStartService(QtObjectPtr ptr, int enable); +void QDBusMessage_SetDelayedReply(QtObjectPtr ptr, int enable); +char* QDBusMessage_Signature(QtObjectPtr ptr); +int QDBusMessage_Type(QtObjectPtr ptr); +void QDBusMessage_DestroyQDBusMessage(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/dbus/qdbusobjectpath.cpp b/dbus/qdbusobjectpath.cpp new file mode 100755 index 00000000..11ace018 --- /dev/null +++ b/dbus/qdbusobjectpath.cpp @@ -0,0 +1,37 @@ +#include "qdbusobjectpath.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDBusObjectPath: public QDBusObjectPath { +public: +}; + +QtObjectPtr QDBusObjectPath_NewQDBusObjectPath(){ + return new QDBusObjectPath(); +} + +QtObjectPtr QDBusObjectPath_NewQDBusObjectPath3(QtObjectPtr path){ + return new QDBusObjectPath(*static_cast(path)); +} + +QtObjectPtr QDBusObjectPath_NewQDBusObjectPath4(char* path){ + return new QDBusObjectPath(QString(path)); +} + +QtObjectPtr QDBusObjectPath_NewQDBusObjectPath2(char* path){ + return new QDBusObjectPath(const_cast(path)); +} + +char* QDBusObjectPath_Path(QtObjectPtr ptr){ + return static_cast(ptr)->path().toUtf8().data(); +} + +void QDBusObjectPath_SetPath(QtObjectPtr ptr, char* path){ + static_cast(ptr)->setPath(QString(path)); +} + diff --git a/dbus/qdbusobjectpath.go b/dbus/qdbusobjectpath.go new file mode 100755 index 00000000..eb259bcd --- /dev/null +++ b/dbus/qdbusobjectpath.go @@ -0,0 +1,70 @@ +package dbus + +//#include "qdbusobjectpath.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QDBusObjectPath struct { + ptr unsafe.Pointer +} + +type QDBusObjectPathITF interface { + QDBusObjectPathPTR() *QDBusObjectPath +} + +func (p *QDBusObjectPath) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDBusObjectPath) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDBusObjectPath(ptr QDBusObjectPathITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDBusObjectPathPTR().Pointer() + } + return nil +} + +func QDBusObjectPathFromPointer(ptr unsafe.Pointer) *QDBusObjectPath { + var n = new(QDBusObjectPath) + n.SetPointer(ptr) + return n +} + +func (ptr *QDBusObjectPath) QDBusObjectPathPTR() *QDBusObjectPath { + return ptr +} + +func NewQDBusObjectPath() *QDBusObjectPath { + return QDBusObjectPathFromPointer(unsafe.Pointer(C.QDBusObjectPath_NewQDBusObjectPath())) +} + +func NewQDBusObjectPath3(path core.QLatin1StringITF) *QDBusObjectPath { + return QDBusObjectPathFromPointer(unsafe.Pointer(C.QDBusObjectPath_NewQDBusObjectPath3(C.QtObjectPtr(core.PointerFromQLatin1String(path))))) +} + +func NewQDBusObjectPath4(path string) *QDBusObjectPath { + return QDBusObjectPathFromPointer(unsafe.Pointer(C.QDBusObjectPath_NewQDBusObjectPath4(C.CString(path)))) +} + +func NewQDBusObjectPath2(path string) *QDBusObjectPath { + return QDBusObjectPathFromPointer(unsafe.Pointer(C.QDBusObjectPath_NewQDBusObjectPath2(C.CString(path)))) +} + +func (ptr *QDBusObjectPath) Path() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDBusObjectPath_Path(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDBusObjectPath) SetPath(path string) { + if ptr.Pointer() != nil { + C.QDBusObjectPath_SetPath(C.QtObjectPtr(ptr.Pointer()), C.CString(path)) + } +} diff --git a/dbus/qdbusobjectpath.h b/dbus/qdbusobjectpath.h new file mode 100755 index 00000000..d2dc73c2 --- /dev/null +++ b/dbus/qdbusobjectpath.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDBusObjectPath_NewQDBusObjectPath(); +QtObjectPtr QDBusObjectPath_NewQDBusObjectPath3(QtObjectPtr path); +QtObjectPtr QDBusObjectPath_NewQDBusObjectPath4(char* path); +QtObjectPtr QDBusObjectPath_NewQDBusObjectPath2(char* path); +char* QDBusObjectPath_Path(QtObjectPtr ptr); +void QDBusObjectPath_SetPath(QtObjectPtr ptr, char* path); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/dbus/qdbuspendingcall.cpp b/dbus/qdbuspendingcall.cpp new file mode 100755 index 00000000..64084ab7 --- /dev/null +++ b/dbus/qdbuspendingcall.cpp @@ -0,0 +1,24 @@ +#include "qdbuspendingcall.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDBusPendingCall: public QDBusPendingCall { +public: +}; + +QtObjectPtr QDBusPendingCall_NewQDBusPendingCall(QtObjectPtr other){ + return new QDBusPendingCall(*static_cast(other)); +} + +void QDBusPendingCall_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QDBusPendingCall_DestroyQDBusPendingCall(QtObjectPtr ptr){ + static_cast(ptr)->~QDBusPendingCall(); +} + diff --git a/dbus/qdbuspendingcall.go b/dbus/qdbuspendingcall.go new file mode 100755 index 00000000..5f442dbf --- /dev/null +++ b/dbus/qdbuspendingcall.go @@ -0,0 +1,56 @@ +package dbus + +//#include "qdbuspendingcall.h" +import "C" +import ( + "unsafe" +) + +type QDBusPendingCall struct { + ptr unsafe.Pointer +} + +type QDBusPendingCallITF interface { + QDBusPendingCallPTR() *QDBusPendingCall +} + +func (p *QDBusPendingCall) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDBusPendingCall) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDBusPendingCall(ptr QDBusPendingCallITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDBusPendingCallPTR().Pointer() + } + return nil +} + +func QDBusPendingCallFromPointer(ptr unsafe.Pointer) *QDBusPendingCall { + var n = new(QDBusPendingCall) + n.SetPointer(ptr) + return n +} + +func (ptr *QDBusPendingCall) QDBusPendingCallPTR() *QDBusPendingCall { + return ptr +} + +func NewQDBusPendingCall(other QDBusPendingCallITF) *QDBusPendingCall { + return QDBusPendingCallFromPointer(unsafe.Pointer(C.QDBusPendingCall_NewQDBusPendingCall(C.QtObjectPtr(PointerFromQDBusPendingCall(other))))) +} + +func (ptr *QDBusPendingCall) Swap(other QDBusPendingCallITF) { + if ptr.Pointer() != nil { + C.QDBusPendingCall_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDBusPendingCall(other))) + } +} + +func (ptr *QDBusPendingCall) DestroyQDBusPendingCall() { + if ptr.Pointer() != nil { + C.QDBusPendingCall_DestroyQDBusPendingCall(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/dbus/qdbuspendingcall.h b/dbus/qdbuspendingcall.h new file mode 100755 index 00000000..17568a01 --- /dev/null +++ b/dbus/qdbuspendingcall.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDBusPendingCall_NewQDBusPendingCall(QtObjectPtr other); +void QDBusPendingCall_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QDBusPendingCall_DestroyQDBusPendingCall(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/dbus/qdbuspendingcallwatcher.cpp b/dbus/qdbuspendingcallwatcher.cpp new file mode 100755 index 00000000..7d875380 --- /dev/null +++ b/dbus/qdbuspendingcallwatcher.cpp @@ -0,0 +1,39 @@ +#include "qdbuspendingcallwatcher.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDBusPendingCallWatcher: public QDBusPendingCallWatcher { +public: +void Signal_Finished(QDBusPendingCallWatcher * self){callbackQDBusPendingCallWatcherFinished(this->objectName().toUtf8().data(), self);}; +}; + +void QDBusPendingCallWatcher_WaitForFinished(QtObjectPtr ptr){ + static_cast(ptr)->waitForFinished(); +} + +QtObjectPtr QDBusPendingCallWatcher_NewQDBusPendingCallWatcher(QtObjectPtr call, QtObjectPtr parent){ + return new QDBusPendingCallWatcher(*static_cast(call), static_cast(parent)); +} + +void QDBusPendingCallWatcher_ConnectFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QDBusPendingCallWatcher::finished), static_cast(ptr), static_cast(&MyQDBusPendingCallWatcher::Signal_Finished));; +} + +void QDBusPendingCallWatcher_DisconnectFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QDBusPendingCallWatcher::finished), static_cast(ptr), static_cast(&MyQDBusPendingCallWatcher::Signal_Finished));; +} + +int QDBusPendingCallWatcher_IsFinished(QtObjectPtr ptr){ + return static_cast(ptr)->isFinished(); +} + +void QDBusPendingCallWatcher_DestroyQDBusPendingCallWatcher(QtObjectPtr ptr){ + static_cast(ptr)->~QDBusPendingCallWatcher(); +} + diff --git a/dbus/qdbuspendingcallwatcher.go b/dbus/qdbuspendingcallwatcher.go new file mode 100755 index 00000000..81ba41d0 --- /dev/null +++ b/dbus/qdbuspendingcallwatcher.go @@ -0,0 +1,92 @@ +package dbus + +//#include "qdbuspendingcallwatcher.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QDBusPendingCallWatcher struct { + core.QObject + QDBusPendingCall +} + +type QDBusPendingCallWatcherITF interface { + core.QObjectITF + QDBusPendingCallITF + QDBusPendingCallWatcherPTR() *QDBusPendingCallWatcher +} + +func (p *QDBusPendingCallWatcher) Pointer() unsafe.Pointer { + return p.QObjectPTR().Pointer() +} + +func (p *QDBusPendingCallWatcher) SetPointer(ptr unsafe.Pointer) { + p.QObjectPTR().SetPointer(ptr) + p.QDBusPendingCallPTR().SetPointer(ptr) +} + +func PointerFromQDBusPendingCallWatcher(ptr QDBusPendingCallWatcherITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDBusPendingCallWatcherPTR().Pointer() + } + return nil +} + +func QDBusPendingCallWatcherFromPointer(ptr unsafe.Pointer) *QDBusPendingCallWatcher { + var n = new(QDBusPendingCallWatcher) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QDBusPendingCallWatcher_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QDBusPendingCallWatcher) QDBusPendingCallWatcherPTR() *QDBusPendingCallWatcher { + return ptr +} + +func (ptr *QDBusPendingCallWatcher) WaitForFinished() { + if ptr.Pointer() != nil { + C.QDBusPendingCallWatcher_WaitForFinished(C.QtObjectPtr(ptr.Pointer())) + } +} + +func NewQDBusPendingCallWatcher(call QDBusPendingCallITF, parent core.QObjectITF) *QDBusPendingCallWatcher { + return QDBusPendingCallWatcherFromPointer(unsafe.Pointer(C.QDBusPendingCallWatcher_NewQDBusPendingCallWatcher(C.QtObjectPtr(PointerFromQDBusPendingCall(call)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QDBusPendingCallWatcher) ConnectFinished(f func(self QDBusPendingCallWatcherITF)) { + if ptr.Pointer() != nil { + C.QDBusPendingCallWatcher_ConnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "finished", f) + } +} + +func (ptr *QDBusPendingCallWatcher) DisconnectFinished() { + if ptr.Pointer() != nil { + C.QDBusPendingCallWatcher_DisconnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "finished") + } +} + +//export callbackQDBusPendingCallWatcherFinished +func callbackQDBusPendingCallWatcherFinished(ptrName *C.char, self unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "finished").(func(*QDBusPendingCallWatcher))(QDBusPendingCallWatcherFromPointer(self)) +} + +func (ptr *QDBusPendingCallWatcher) IsFinished() bool { + if ptr.Pointer() != nil { + return C.QDBusPendingCallWatcher_IsFinished(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDBusPendingCallWatcher) DestroyQDBusPendingCallWatcher() { + if ptr.Pointer() != nil { + C.QDBusPendingCallWatcher_DestroyQDBusPendingCallWatcher(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/dbus/qdbuspendingcallwatcher.h b/dbus/qdbuspendingcallwatcher.h new file mode 100755 index 00000000..8c548c12 --- /dev/null +++ b/dbus/qdbuspendingcallwatcher.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QDBusPendingCallWatcher_WaitForFinished(QtObjectPtr ptr); +QtObjectPtr QDBusPendingCallWatcher_NewQDBusPendingCallWatcher(QtObjectPtr call, QtObjectPtr parent); +void QDBusPendingCallWatcher_ConnectFinished(QtObjectPtr ptr); +void QDBusPendingCallWatcher_DisconnectFinished(QtObjectPtr ptr); +int QDBusPendingCallWatcher_IsFinished(QtObjectPtr ptr); +void QDBusPendingCallWatcher_DestroyQDBusPendingCallWatcher(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/dbus/qdbuspendingreply.cpp b/dbus/qdbuspendingreply.cpp new file mode 100755 index 00000000..437035e9 --- /dev/null +++ b/dbus/qdbuspendingreply.cpp @@ -0,0 +1,7 @@ +#include "qdbuspendingreply.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/dbus/qdbuspendingreply.go b/dbus/qdbuspendingreply.go new file mode 100755 index 00000000..976bf0aa --- /dev/null +++ b/dbus/qdbuspendingreply.go @@ -0,0 +1,33 @@ +package dbus + +//#include "qdbuspendingreply.h" +import "C" +import ( + "unsafe" +) + +type QDBusPendingReply struct { + QDBusPendingCall +} + +type QDBusPendingReplyITF interface { + QDBusPendingCallITF + QDBusPendingReplyPTR() *QDBusPendingReply +} + +func PointerFromQDBusPendingReply(ptr QDBusPendingReplyITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDBusPendingReplyPTR().Pointer() + } + return nil +} + +func QDBusPendingReplyFromPointer(ptr unsafe.Pointer) *QDBusPendingReply { + var n = new(QDBusPendingReply) + n.SetPointer(ptr) + return n +} + +func (ptr *QDBusPendingReply) QDBusPendingReplyPTR() *QDBusPendingReply { + return ptr +} diff --git a/dbus/qdbuspendingreply.h b/dbus/qdbuspendingreply.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/dbus/qdbuspendingreply.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/dbus/qdbusreply.cpp b/dbus/qdbusreply.cpp new file mode 100755 index 00000000..45cd7d89 --- /dev/null +++ b/dbus/qdbusreply.cpp @@ -0,0 +1,7 @@ +#include "qdbusreply.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/dbus/qdbusreply.go b/dbus/qdbusreply.go new file mode 100755 index 00000000..dc66b2f6 --- /dev/null +++ b/dbus/qdbusreply.go @@ -0,0 +1,40 @@ +package dbus + +//#include "qdbusreply.h" +import "C" +import ( + "unsafe" +) + +type QDBusReply struct { + ptr unsafe.Pointer +} + +type QDBusReplyITF interface { + QDBusReplyPTR() *QDBusReply +} + +func (p *QDBusReply) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDBusReply) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDBusReply(ptr QDBusReplyITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDBusReplyPTR().Pointer() + } + return nil +} + +func QDBusReplyFromPointer(ptr unsafe.Pointer) *QDBusReply { + var n = new(QDBusReply) + n.SetPointer(ptr) + return n +} + +func (ptr *QDBusReply) QDBusReplyPTR() *QDBusReply { + return ptr +} diff --git a/dbus/qdbusreply.h b/dbus/qdbusreply.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/dbus/qdbusreply.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/dbus/qdbusserver.cpp b/dbus/qdbusserver.cpp new file mode 100755 index 00000000..c7894b50 --- /dev/null +++ b/dbus/qdbusserver.cpp @@ -0,0 +1,41 @@ +#include "qdbusserver.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDBusServer: public QDBusServer { +public: +}; + +QtObjectPtr QDBusServer_NewQDBusServer2(QtObjectPtr parent){ + return new QDBusServer(static_cast(parent)); +} + +QtObjectPtr QDBusServer_NewQDBusServer(char* address, QtObjectPtr parent){ + return new QDBusServer(QString(address), static_cast(parent)); +} + +char* QDBusServer_Address(QtObjectPtr ptr){ + return static_cast(ptr)->address().toUtf8().data(); +} + +int QDBusServer_IsAnonymousAuthenticationAllowed(QtObjectPtr ptr){ + return static_cast(ptr)->isAnonymousAuthenticationAllowed(); +} + +int QDBusServer_IsConnected(QtObjectPtr ptr){ + return static_cast(ptr)->isConnected(); +} + +void QDBusServer_SetAnonymousAuthenticationAllowed(QtObjectPtr ptr, int value){ + static_cast(ptr)->setAnonymousAuthenticationAllowed(value != 0); +} + +void QDBusServer_DestroyQDBusServer(QtObjectPtr ptr){ + static_cast(ptr)->~QDBusServer(); +} + diff --git a/dbus/qdbusserver.go b/dbus/qdbusserver.go new file mode 100755 index 00000000..b268b93f --- /dev/null +++ b/dbus/qdbusserver.go @@ -0,0 +1,80 @@ +package dbus + +//#include "qdbusserver.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QDBusServer struct { + core.QObject +} + +type QDBusServerITF interface { + core.QObjectITF + QDBusServerPTR() *QDBusServer +} + +func PointerFromQDBusServer(ptr QDBusServerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDBusServerPTR().Pointer() + } + return nil +} + +func QDBusServerFromPointer(ptr unsafe.Pointer) *QDBusServer { + var n = new(QDBusServer) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QDBusServer_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QDBusServer) QDBusServerPTR() *QDBusServer { + return ptr +} + +func NewQDBusServer2(parent core.QObjectITF) *QDBusServer { + return QDBusServerFromPointer(unsafe.Pointer(C.QDBusServer_NewQDBusServer2(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQDBusServer(address string, parent core.QObjectITF) *QDBusServer { + return QDBusServerFromPointer(unsafe.Pointer(C.QDBusServer_NewQDBusServer(C.CString(address), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QDBusServer) Address() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDBusServer_Address(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDBusServer) IsAnonymousAuthenticationAllowed() bool { + if ptr.Pointer() != nil { + return C.QDBusServer_IsAnonymousAuthenticationAllowed(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDBusServer) IsConnected() bool { + if ptr.Pointer() != nil { + return C.QDBusServer_IsConnected(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDBusServer) SetAnonymousAuthenticationAllowed(value bool) { + if ptr.Pointer() != nil { + C.QDBusServer_SetAnonymousAuthenticationAllowed(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(value))) + } +} + +func (ptr *QDBusServer) DestroyQDBusServer() { + if ptr.Pointer() != nil { + C.QDBusServer_DestroyQDBusServer(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/dbus/qdbusserver.h b/dbus/qdbusserver.h new file mode 100755 index 00000000..c31eabac --- /dev/null +++ b/dbus/qdbusserver.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDBusServer_NewQDBusServer2(QtObjectPtr parent); +QtObjectPtr QDBusServer_NewQDBusServer(char* address, QtObjectPtr parent); +char* QDBusServer_Address(QtObjectPtr ptr); +int QDBusServer_IsAnonymousAuthenticationAllowed(QtObjectPtr ptr); +int QDBusServer_IsConnected(QtObjectPtr ptr); +void QDBusServer_SetAnonymousAuthenticationAllowed(QtObjectPtr ptr, int value); +void QDBusServer_DestroyQDBusServer(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/dbus/qdbusservicewatcher.cpp b/dbus/qdbusservicewatcher.cpp new file mode 100755 index 00000000..a2e4c2f8 --- /dev/null +++ b/dbus/qdbusservicewatcher.cpp @@ -0,0 +1,81 @@ +#include "qdbusservicewatcher.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDBusServiceWatcher: public QDBusServiceWatcher { +public: +void Signal_ServiceOwnerChanged(const QString & serviceName, const QString & oldOwner, const QString & newOwner){callbackQDBusServiceWatcherServiceOwnerChanged(this->objectName().toUtf8().data(), serviceName.toUtf8().data(), oldOwner.toUtf8().data(), newOwner.toUtf8().data());}; +void Signal_ServiceRegistered(const QString & serviceName){callbackQDBusServiceWatcherServiceRegistered(this->objectName().toUtf8().data(), serviceName.toUtf8().data());}; +void Signal_ServiceUnregistered(const QString & serviceName){callbackQDBusServiceWatcherServiceUnregistered(this->objectName().toUtf8().data(), serviceName.toUtf8().data());}; +}; + +void QDBusServiceWatcher_SetWatchMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setWatchMode(static_cast(mode)); +} + +int QDBusServiceWatcher_WatchMode(QtObjectPtr ptr){ + return static_cast(ptr)->watchMode(); +} + +QtObjectPtr QDBusServiceWatcher_NewQDBusServiceWatcher(QtObjectPtr parent){ + return new QDBusServiceWatcher(static_cast(parent)); +} + +QtObjectPtr QDBusServiceWatcher_NewQDBusServiceWatcher2(char* service, QtObjectPtr connection, int watchMode, QtObjectPtr parent){ + return new QDBusServiceWatcher(QString(service), *static_cast(connection), static_cast(watchMode), static_cast(parent)); +} + +void QDBusServiceWatcher_AddWatchedService(QtObjectPtr ptr, char* newService){ + static_cast(ptr)->addWatchedService(QString(newService)); +} + +int QDBusServiceWatcher_RemoveWatchedService(QtObjectPtr ptr, char* service){ + return static_cast(ptr)->removeWatchedService(QString(service)); +} + +void QDBusServiceWatcher_ConnectServiceOwnerChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QDBusServiceWatcher::serviceOwnerChanged), static_cast(ptr), static_cast(&MyQDBusServiceWatcher::Signal_ServiceOwnerChanged));; +} + +void QDBusServiceWatcher_DisconnectServiceOwnerChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QDBusServiceWatcher::serviceOwnerChanged), static_cast(ptr), static_cast(&MyQDBusServiceWatcher::Signal_ServiceOwnerChanged));; +} + +void QDBusServiceWatcher_ConnectServiceRegistered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QDBusServiceWatcher::serviceRegistered), static_cast(ptr), static_cast(&MyQDBusServiceWatcher::Signal_ServiceRegistered));; +} + +void QDBusServiceWatcher_DisconnectServiceRegistered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QDBusServiceWatcher::serviceRegistered), static_cast(ptr), static_cast(&MyQDBusServiceWatcher::Signal_ServiceRegistered));; +} + +void QDBusServiceWatcher_ConnectServiceUnregistered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QDBusServiceWatcher::serviceUnregistered), static_cast(ptr), static_cast(&MyQDBusServiceWatcher::Signal_ServiceUnregistered));; +} + +void QDBusServiceWatcher_DisconnectServiceUnregistered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QDBusServiceWatcher::serviceUnregistered), static_cast(ptr), static_cast(&MyQDBusServiceWatcher::Signal_ServiceUnregistered));; +} + +void QDBusServiceWatcher_SetConnection(QtObjectPtr ptr, QtObjectPtr connection){ + static_cast(ptr)->setConnection(*static_cast(connection)); +} + +void QDBusServiceWatcher_SetWatchedServices(QtObjectPtr ptr, char* services){ + static_cast(ptr)->setWatchedServices(QString(services).split("|", QString::SkipEmptyParts)); +} + +char* QDBusServiceWatcher_WatchedServices(QtObjectPtr ptr){ + return static_cast(ptr)->watchedServices().join("|").toUtf8().data(); +} + +void QDBusServiceWatcher_DestroyQDBusServiceWatcher(QtObjectPtr ptr){ + static_cast(ptr)->~QDBusServiceWatcher(); +} + diff --git a/dbus/qdbusservicewatcher.go b/dbus/qdbusservicewatcher.go new file mode 100755 index 00000000..57970f98 --- /dev/null +++ b/dbus/qdbusservicewatcher.go @@ -0,0 +1,165 @@ +package dbus + +//#include "qdbusservicewatcher.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QDBusServiceWatcher struct { + core.QObject +} + +type QDBusServiceWatcherITF interface { + core.QObjectITF + QDBusServiceWatcherPTR() *QDBusServiceWatcher +} + +func PointerFromQDBusServiceWatcher(ptr QDBusServiceWatcherITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDBusServiceWatcherPTR().Pointer() + } + return nil +} + +func QDBusServiceWatcherFromPointer(ptr unsafe.Pointer) *QDBusServiceWatcher { + var n = new(QDBusServiceWatcher) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QDBusServiceWatcher_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QDBusServiceWatcher) QDBusServiceWatcherPTR() *QDBusServiceWatcher { + return ptr +} + +//QDBusServiceWatcher::WatchModeFlag +type QDBusServiceWatcher__WatchModeFlag int + +var ( + QDBusServiceWatcher__WatchForRegistration = QDBusServiceWatcher__WatchModeFlag(0x01) + QDBusServiceWatcher__WatchForUnregistration = QDBusServiceWatcher__WatchModeFlag(0x02) + QDBusServiceWatcher__WatchForOwnerChange = QDBusServiceWatcher__WatchModeFlag(0x03) +) + +func (ptr *QDBusServiceWatcher) SetWatchMode(mode QDBusServiceWatcher__WatchModeFlag) { + if ptr.Pointer() != nil { + C.QDBusServiceWatcher_SetWatchMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QDBusServiceWatcher) WatchMode() QDBusServiceWatcher__WatchModeFlag { + if ptr.Pointer() != nil { + return QDBusServiceWatcher__WatchModeFlag(C.QDBusServiceWatcher_WatchMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQDBusServiceWatcher(parent core.QObjectITF) *QDBusServiceWatcher { + return QDBusServiceWatcherFromPointer(unsafe.Pointer(C.QDBusServiceWatcher_NewQDBusServiceWatcher(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQDBusServiceWatcher2(service string, connection QDBusConnectionITF, watchMode QDBusServiceWatcher__WatchModeFlag, parent core.QObjectITF) *QDBusServiceWatcher { + return QDBusServiceWatcherFromPointer(unsafe.Pointer(C.QDBusServiceWatcher_NewQDBusServiceWatcher2(C.CString(service), C.QtObjectPtr(PointerFromQDBusConnection(connection)), C.int(watchMode), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QDBusServiceWatcher) AddWatchedService(newService string) { + if ptr.Pointer() != nil { + C.QDBusServiceWatcher_AddWatchedService(C.QtObjectPtr(ptr.Pointer()), C.CString(newService)) + } +} + +func (ptr *QDBusServiceWatcher) RemoveWatchedService(service string) bool { + if ptr.Pointer() != nil { + return C.QDBusServiceWatcher_RemoveWatchedService(C.QtObjectPtr(ptr.Pointer()), C.CString(service)) != 0 + } + return false +} + +func (ptr *QDBusServiceWatcher) ConnectServiceOwnerChanged(f func(serviceName string, oldOwner string, newOwner string)) { + if ptr.Pointer() != nil { + C.QDBusServiceWatcher_ConnectServiceOwnerChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "serviceOwnerChanged", f) + } +} + +func (ptr *QDBusServiceWatcher) DisconnectServiceOwnerChanged() { + if ptr.Pointer() != nil { + C.QDBusServiceWatcher_DisconnectServiceOwnerChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "serviceOwnerChanged") + } +} + +//export callbackQDBusServiceWatcherServiceOwnerChanged +func callbackQDBusServiceWatcherServiceOwnerChanged(ptrName *C.char, serviceName *C.char, oldOwner *C.char, newOwner *C.char) { + qt.GetSignal(C.GoString(ptrName), "serviceOwnerChanged").(func(string, string, string))(C.GoString(serviceName), C.GoString(oldOwner), C.GoString(newOwner)) +} + +func (ptr *QDBusServiceWatcher) ConnectServiceRegistered(f func(serviceName string)) { + if ptr.Pointer() != nil { + C.QDBusServiceWatcher_ConnectServiceRegistered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "serviceRegistered", f) + } +} + +func (ptr *QDBusServiceWatcher) DisconnectServiceRegistered() { + if ptr.Pointer() != nil { + C.QDBusServiceWatcher_DisconnectServiceRegistered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "serviceRegistered") + } +} + +//export callbackQDBusServiceWatcherServiceRegistered +func callbackQDBusServiceWatcherServiceRegistered(ptrName *C.char, serviceName *C.char) { + qt.GetSignal(C.GoString(ptrName), "serviceRegistered").(func(string))(C.GoString(serviceName)) +} + +func (ptr *QDBusServiceWatcher) ConnectServiceUnregistered(f func(serviceName string)) { + if ptr.Pointer() != nil { + C.QDBusServiceWatcher_ConnectServiceUnregistered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "serviceUnregistered", f) + } +} + +func (ptr *QDBusServiceWatcher) DisconnectServiceUnregistered() { + if ptr.Pointer() != nil { + C.QDBusServiceWatcher_DisconnectServiceUnregistered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "serviceUnregistered") + } +} + +//export callbackQDBusServiceWatcherServiceUnregistered +func callbackQDBusServiceWatcherServiceUnregistered(ptrName *C.char, serviceName *C.char) { + qt.GetSignal(C.GoString(ptrName), "serviceUnregistered").(func(string))(C.GoString(serviceName)) +} + +func (ptr *QDBusServiceWatcher) SetConnection(connection QDBusConnectionITF) { + if ptr.Pointer() != nil { + C.QDBusServiceWatcher_SetConnection(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDBusConnection(connection))) + } +} + +func (ptr *QDBusServiceWatcher) SetWatchedServices(services []string) { + if ptr.Pointer() != nil { + C.QDBusServiceWatcher_SetWatchedServices(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(services, "|"))) + } +} + +func (ptr *QDBusServiceWatcher) WatchedServices() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QDBusServiceWatcher_WatchedServices(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QDBusServiceWatcher) DestroyQDBusServiceWatcher() { + if ptr.Pointer() != nil { + C.QDBusServiceWatcher_DestroyQDBusServiceWatcher(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/dbus/qdbusservicewatcher.h b/dbus/qdbusservicewatcher.h new file mode 100755 index 00000000..4fd17474 --- /dev/null +++ b/dbus/qdbusservicewatcher.h @@ -0,0 +1,25 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QDBusServiceWatcher_SetWatchMode(QtObjectPtr ptr, int mode); +int QDBusServiceWatcher_WatchMode(QtObjectPtr ptr); +QtObjectPtr QDBusServiceWatcher_NewQDBusServiceWatcher(QtObjectPtr parent); +QtObjectPtr QDBusServiceWatcher_NewQDBusServiceWatcher2(char* service, QtObjectPtr connection, int watchMode, QtObjectPtr parent); +void QDBusServiceWatcher_AddWatchedService(QtObjectPtr ptr, char* newService); +int QDBusServiceWatcher_RemoveWatchedService(QtObjectPtr ptr, char* service); +void QDBusServiceWatcher_ConnectServiceOwnerChanged(QtObjectPtr ptr); +void QDBusServiceWatcher_DisconnectServiceOwnerChanged(QtObjectPtr ptr); +void QDBusServiceWatcher_ConnectServiceRegistered(QtObjectPtr ptr); +void QDBusServiceWatcher_DisconnectServiceRegistered(QtObjectPtr ptr); +void QDBusServiceWatcher_ConnectServiceUnregistered(QtObjectPtr ptr); +void QDBusServiceWatcher_DisconnectServiceUnregistered(QtObjectPtr ptr); +void QDBusServiceWatcher_SetConnection(QtObjectPtr ptr, QtObjectPtr connection); +void QDBusServiceWatcher_SetWatchedServices(QtObjectPtr ptr, char* services); +char* QDBusServiceWatcher_WatchedServices(QtObjectPtr ptr); +void QDBusServiceWatcher_DestroyQDBusServiceWatcher(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/dbus/qdbussignature.cpp b/dbus/qdbussignature.cpp new file mode 100755 index 00000000..f7f5baa9 --- /dev/null +++ b/dbus/qdbussignature.cpp @@ -0,0 +1,37 @@ +#include "qdbussignature.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDBusSignature: public QDBusSignature { +public: +}; + +QtObjectPtr QDBusSignature_NewQDBusSignature(){ + return new QDBusSignature(); +} + +QtObjectPtr QDBusSignature_NewQDBusSignature3(QtObjectPtr signature){ + return new QDBusSignature(*static_cast(signature)); +} + +QtObjectPtr QDBusSignature_NewQDBusSignature4(char* signature){ + return new QDBusSignature(QString(signature)); +} + +QtObjectPtr QDBusSignature_NewQDBusSignature2(char* signature){ + return new QDBusSignature(const_cast(signature)); +} + +void QDBusSignature_SetSignature(QtObjectPtr ptr, char* signature){ + static_cast(ptr)->setSignature(QString(signature)); +} + +char* QDBusSignature_Signature(QtObjectPtr ptr){ + return static_cast(ptr)->signature().toUtf8().data(); +} + diff --git a/dbus/qdbussignature.go b/dbus/qdbussignature.go new file mode 100755 index 00000000..524e5a0f --- /dev/null +++ b/dbus/qdbussignature.go @@ -0,0 +1,70 @@ +package dbus + +//#include "qdbussignature.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QDBusSignature struct { + ptr unsafe.Pointer +} + +type QDBusSignatureITF interface { + QDBusSignaturePTR() *QDBusSignature +} + +func (p *QDBusSignature) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDBusSignature) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDBusSignature(ptr QDBusSignatureITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDBusSignaturePTR().Pointer() + } + return nil +} + +func QDBusSignatureFromPointer(ptr unsafe.Pointer) *QDBusSignature { + var n = new(QDBusSignature) + n.SetPointer(ptr) + return n +} + +func (ptr *QDBusSignature) QDBusSignaturePTR() *QDBusSignature { + return ptr +} + +func NewQDBusSignature() *QDBusSignature { + return QDBusSignatureFromPointer(unsafe.Pointer(C.QDBusSignature_NewQDBusSignature())) +} + +func NewQDBusSignature3(signature core.QLatin1StringITF) *QDBusSignature { + return QDBusSignatureFromPointer(unsafe.Pointer(C.QDBusSignature_NewQDBusSignature3(C.QtObjectPtr(core.PointerFromQLatin1String(signature))))) +} + +func NewQDBusSignature4(signature string) *QDBusSignature { + return QDBusSignatureFromPointer(unsafe.Pointer(C.QDBusSignature_NewQDBusSignature4(C.CString(signature)))) +} + +func NewQDBusSignature2(signature string) *QDBusSignature { + return QDBusSignatureFromPointer(unsafe.Pointer(C.QDBusSignature_NewQDBusSignature2(C.CString(signature)))) +} + +func (ptr *QDBusSignature) SetSignature(signature string) { + if ptr.Pointer() != nil { + C.QDBusSignature_SetSignature(C.QtObjectPtr(ptr.Pointer()), C.CString(signature)) + } +} + +func (ptr *QDBusSignature) Signature() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDBusSignature_Signature(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/dbus/qdbussignature.h b/dbus/qdbussignature.h new file mode 100755 index 00000000..3bbc213e --- /dev/null +++ b/dbus/qdbussignature.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDBusSignature_NewQDBusSignature(); +QtObjectPtr QDBusSignature_NewQDBusSignature3(QtObjectPtr signature); +QtObjectPtr QDBusSignature_NewQDBusSignature4(char* signature); +QtObjectPtr QDBusSignature_NewQDBusSignature2(char* signature); +void QDBusSignature_SetSignature(QtObjectPtr ptr, char* signature); +char* QDBusSignature_Signature(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/dbus/qdbusunixfiledescriptor.cpp b/dbus/qdbusunixfiledescriptor.cpp new file mode 100755 index 00000000..90e961ed --- /dev/null +++ b/dbus/qdbusunixfiledescriptor.cpp @@ -0,0 +1,48 @@ +#include "qdbusunixfiledescriptor.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDBusUnixFileDescriptor: public QDBusUnixFileDescriptor { +public: +}; + +QtObjectPtr QDBusUnixFileDescriptor_NewQDBusUnixFileDescriptor(){ + return new QDBusUnixFileDescriptor(); +} + +QtObjectPtr QDBusUnixFileDescriptor_NewQDBusUnixFileDescriptor3(QtObjectPtr other){ + return new QDBusUnixFileDescriptor(*static_cast(other)); +} + +QtObjectPtr QDBusUnixFileDescriptor_NewQDBusUnixFileDescriptor2(int fileDescriptor){ + return new QDBusUnixFileDescriptor(fileDescriptor); +} + +int QDBusUnixFileDescriptor_FileDescriptor(QtObjectPtr ptr){ + return static_cast(ptr)->fileDescriptor(); +} + +int QDBusUnixFileDescriptor_QDBusUnixFileDescriptor_IsSupported(){ + return QDBusUnixFileDescriptor::isSupported(); +} + +int QDBusUnixFileDescriptor_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +void QDBusUnixFileDescriptor_SetFileDescriptor(QtObjectPtr ptr, int fileDescriptor){ + static_cast(ptr)->setFileDescriptor(fileDescriptor); +} + +void QDBusUnixFileDescriptor_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QDBusUnixFileDescriptor_DestroyQDBusUnixFileDescriptor(QtObjectPtr ptr){ + static_cast(ptr)->~QDBusUnixFileDescriptor(); +} + diff --git a/dbus/qdbusunixfiledescriptor.go b/dbus/qdbusunixfiledescriptor.go new file mode 100755 index 00000000..4e9c1147 --- /dev/null +++ b/dbus/qdbusunixfiledescriptor.go @@ -0,0 +1,88 @@ +package dbus + +//#include "qdbusunixfiledescriptor.h" +import "C" +import ( + "unsafe" +) + +type QDBusUnixFileDescriptor struct { + ptr unsafe.Pointer +} + +type QDBusUnixFileDescriptorITF interface { + QDBusUnixFileDescriptorPTR() *QDBusUnixFileDescriptor +} + +func (p *QDBusUnixFileDescriptor) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDBusUnixFileDescriptor) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDBusUnixFileDescriptor(ptr QDBusUnixFileDescriptorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDBusUnixFileDescriptorPTR().Pointer() + } + return nil +} + +func QDBusUnixFileDescriptorFromPointer(ptr unsafe.Pointer) *QDBusUnixFileDescriptor { + var n = new(QDBusUnixFileDescriptor) + n.SetPointer(ptr) + return n +} + +func (ptr *QDBusUnixFileDescriptor) QDBusUnixFileDescriptorPTR() *QDBusUnixFileDescriptor { + return ptr +} + +func NewQDBusUnixFileDescriptor() *QDBusUnixFileDescriptor { + return QDBusUnixFileDescriptorFromPointer(unsafe.Pointer(C.QDBusUnixFileDescriptor_NewQDBusUnixFileDescriptor())) +} + +func NewQDBusUnixFileDescriptor3(other QDBusUnixFileDescriptorITF) *QDBusUnixFileDescriptor { + return QDBusUnixFileDescriptorFromPointer(unsafe.Pointer(C.QDBusUnixFileDescriptor_NewQDBusUnixFileDescriptor3(C.QtObjectPtr(PointerFromQDBusUnixFileDescriptor(other))))) +} + +func NewQDBusUnixFileDescriptor2(fileDescriptor int) *QDBusUnixFileDescriptor { + return QDBusUnixFileDescriptorFromPointer(unsafe.Pointer(C.QDBusUnixFileDescriptor_NewQDBusUnixFileDescriptor2(C.int(fileDescriptor)))) +} + +func (ptr *QDBusUnixFileDescriptor) FileDescriptor() int { + if ptr.Pointer() != nil { + return int(C.QDBusUnixFileDescriptor_FileDescriptor(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QDBusUnixFileDescriptor_IsSupported() bool { + return C.QDBusUnixFileDescriptor_QDBusUnixFileDescriptor_IsSupported() != 0 +} + +func (ptr *QDBusUnixFileDescriptor) IsValid() bool { + if ptr.Pointer() != nil { + return C.QDBusUnixFileDescriptor_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDBusUnixFileDescriptor) SetFileDescriptor(fileDescriptor int) { + if ptr.Pointer() != nil { + C.QDBusUnixFileDescriptor_SetFileDescriptor(C.QtObjectPtr(ptr.Pointer()), C.int(fileDescriptor)) + } +} + +func (ptr *QDBusUnixFileDescriptor) Swap(other QDBusUnixFileDescriptorITF) { + if ptr.Pointer() != nil { + C.QDBusUnixFileDescriptor_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDBusUnixFileDescriptor(other))) + } +} + +func (ptr *QDBusUnixFileDescriptor) DestroyQDBusUnixFileDescriptor() { + if ptr.Pointer() != nil { + C.QDBusUnixFileDescriptor_DestroyQDBusUnixFileDescriptor(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/dbus/qdbusunixfiledescriptor.h b/dbus/qdbusunixfiledescriptor.h new file mode 100755 index 00000000..198f79d6 --- /dev/null +++ b/dbus/qdbusunixfiledescriptor.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDBusUnixFileDescriptor_NewQDBusUnixFileDescriptor(); +QtObjectPtr QDBusUnixFileDescriptor_NewQDBusUnixFileDescriptor3(QtObjectPtr other); +QtObjectPtr QDBusUnixFileDescriptor_NewQDBusUnixFileDescriptor2(int fileDescriptor); +int QDBusUnixFileDescriptor_FileDescriptor(QtObjectPtr ptr); +int QDBusUnixFileDescriptor_QDBusUnixFileDescriptor_IsSupported(); +int QDBusUnixFileDescriptor_IsValid(QtObjectPtr ptr); +void QDBusUnixFileDescriptor_SetFileDescriptor(QtObjectPtr ptr, int fileDescriptor); +void QDBusUnixFileDescriptor_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QDBusUnixFileDescriptor_DestroyQDBusUnixFileDescriptor(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/dbus/qdbusvariant.cpp b/dbus/qdbusvariant.cpp new file mode 100755 index 00000000..ac490894 --- /dev/null +++ b/dbus/qdbusvariant.cpp @@ -0,0 +1,28 @@ +#include "qdbusvariant.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDBusVariant: public QDBusVariant { +public: +}; + +QtObjectPtr QDBusVariant_NewQDBusVariant(){ + return new QDBusVariant(); +} + +QtObjectPtr QDBusVariant_NewQDBusVariant2(char* variant){ + return new QDBusVariant(QVariant(variant)); +} + +void QDBusVariant_SetVariant(QtObjectPtr ptr, char* variant){ + static_cast(ptr)->setVariant(QVariant(variant)); +} + +char* QDBusVariant_Variant(QtObjectPtr ptr){ + return static_cast(ptr)->variant().toString().toUtf8().data(); +} + diff --git a/dbus/qdbusvariant.go b/dbus/qdbusvariant.go new file mode 100755 index 00000000..743fbd39 --- /dev/null +++ b/dbus/qdbusvariant.go @@ -0,0 +1,61 @@ +package dbus + +//#include "qdbusvariant.h" +import "C" +import ( + "unsafe" +) + +type QDBusVariant struct { + ptr unsafe.Pointer +} + +type QDBusVariantITF interface { + QDBusVariantPTR() *QDBusVariant +} + +func (p *QDBusVariant) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDBusVariant) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDBusVariant(ptr QDBusVariantITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDBusVariantPTR().Pointer() + } + return nil +} + +func QDBusVariantFromPointer(ptr unsafe.Pointer) *QDBusVariant { + var n = new(QDBusVariant) + n.SetPointer(ptr) + return n +} + +func (ptr *QDBusVariant) QDBusVariantPTR() *QDBusVariant { + return ptr +} + +func NewQDBusVariant() *QDBusVariant { + return QDBusVariantFromPointer(unsafe.Pointer(C.QDBusVariant_NewQDBusVariant())) +} + +func NewQDBusVariant2(variant string) *QDBusVariant { + return QDBusVariantFromPointer(unsafe.Pointer(C.QDBusVariant_NewQDBusVariant2(C.CString(variant)))) +} + +func (ptr *QDBusVariant) SetVariant(variant string) { + if ptr.Pointer() != nil { + C.QDBusVariant_SetVariant(C.QtObjectPtr(ptr.Pointer()), C.CString(variant)) + } +} + +func (ptr *QDBusVariant) Variant() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDBusVariant_Variant(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/dbus/qdbusvariant.h b/dbus/qdbusvariant.h new file mode 100755 index 00000000..18bd3b54 --- /dev/null +++ b/dbus/qdbusvariant.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDBusVariant_NewQDBusVariant(); +QtObjectPtr QDBusVariant_NewQDBusVariant2(char* variant); +void QDBusVariant_SetVariant(QtObjectPtr ptr, char* variant); +char* QDBusVariant_Variant(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/dbus/qdbusvirtualobject.cpp b/dbus/qdbusvirtualobject.cpp new file mode 100755 index 00000000..018b1e9b --- /dev/null +++ b/dbus/qdbusvirtualobject.cpp @@ -0,0 +1,26 @@ +#include "qdbusvirtualobject.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDBusVirtualObject: public QDBusVirtualObject { +public: +}; + +int QDBusVirtualObject_HandleMessage(QtObjectPtr ptr, QtObjectPtr message, QtObjectPtr connection){ + return static_cast(ptr)->handleMessage(*static_cast(message), *static_cast(connection)); +} + +char* QDBusVirtualObject_Introspect(QtObjectPtr ptr, char* path){ + return static_cast(ptr)->introspect(QString(path)).toUtf8().data(); +} + +void QDBusVirtualObject_DestroyQDBusVirtualObject(QtObjectPtr ptr){ + static_cast(ptr)->~QDBusVirtualObject(); +} + diff --git a/dbus/qdbusvirtualobject.go b/dbus/qdbusvirtualobject.go new file mode 100755 index 00000000..80614274 --- /dev/null +++ b/dbus/qdbusvirtualobject.go @@ -0,0 +1,59 @@ +package dbus + +//#include "qdbusvirtualobject.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QDBusVirtualObject struct { + core.QObject +} + +type QDBusVirtualObjectITF interface { + core.QObjectITF + QDBusVirtualObjectPTR() *QDBusVirtualObject +} + +func PointerFromQDBusVirtualObject(ptr QDBusVirtualObjectITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDBusVirtualObjectPTR().Pointer() + } + return nil +} + +func QDBusVirtualObjectFromPointer(ptr unsafe.Pointer) *QDBusVirtualObject { + var n = new(QDBusVirtualObject) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QDBusVirtualObject_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QDBusVirtualObject) QDBusVirtualObjectPTR() *QDBusVirtualObject { + return ptr +} + +func (ptr *QDBusVirtualObject) HandleMessage(message QDBusMessageITF, connection QDBusConnectionITF) bool { + if ptr.Pointer() != nil { + return C.QDBusVirtualObject_HandleMessage(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDBusMessage(message)), C.QtObjectPtr(PointerFromQDBusConnection(connection))) != 0 + } + return false +} + +func (ptr *QDBusVirtualObject) Introspect(path string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QDBusVirtualObject_Introspect(C.QtObjectPtr(ptr.Pointer()), C.CString(path))) + } + return "" +} + +func (ptr *QDBusVirtualObject) DestroyQDBusVirtualObject() { + if ptr.Pointer() != nil { + C.QDBusVirtualObject_DestroyQDBusVirtualObject(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/dbus/qdbusvirtualobject.h b/dbus/qdbusvirtualobject.h new file mode 100755 index 00000000..fb0eeb03 --- /dev/null +++ b/dbus/qdbusvirtualobject.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QDBusVirtualObject_HandleMessage(QtObjectPtr ptr, QtObjectPtr message, QtObjectPtr connection); +char* QDBusVirtualObject_Introspect(QtObjectPtr ptr, char* path); +void QDBusVirtualObject_DestroyQDBusVirtualObject(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/example/example.go b/example/example.go deleted file mode 100644 index abc1b6a7..00000000 --- a/example/example.go +++ /dev/null @@ -1,172 +0,0 @@ -//original: http://doc.qt.io/qt-5/qtwidgets-widgets-lineedits-example.html - -package main - -import "github.com/therecipe/qt" - -func main() { - qt.NewQApplication(0, "") - - var ( - echoGroup = qt.NewQGroupBox2("Echo", nil) - echoLabel = qt.NewQLabel2("Mode", nil, 0) - echoComboBox = qt.NewQComboBox(nil) - echoLineEdit = qt.NewQLineEdit1(nil) - ) - echoComboBox.AddItems([]string{"Normal", "Password", "PasswordEchoOnEdit", "No Echo"}) - echoLineEdit.SetPlaceholderText("Placeholder Text") - - var ( - validatorGroup = qt.NewQGroupBox2("Validator", nil) - validatorLabel = qt.NewQLabel2("Type:", nil, 0) - validatorComboBox = qt.NewQComboBox(nil) - validatorLineEdit = qt.NewQLineEdit1(nil) - ) - validatorComboBox.AddItems([]string{"No validator", "Integer validator", "Double validator"}) - validatorLineEdit.SetPlaceholderText("Placeholder Text") - validatorLineEdit.ConnectSlotClear() - - var ( - alignmentGroup = qt.NewQGroupBox2("Alignment", nil) - alignmentLabel = qt.NewQLabel2("Type:", nil, 0) - alignmentComboBox = qt.NewQComboBox(nil) - alignmentLineEdit = qt.NewQLineEdit1(nil) - ) - alignmentComboBox.AddItems([]string{"Left", "Centered", "Right"}) - alignmentLineEdit.SetPlaceholderText("Placeholder Text") - - var ( - inputMaskGroup = qt.NewQGroupBox2("Input mask", nil) - inputMaskLabel = qt.NewQLabel2("Type:", nil, 0) - inputMaskComboBox = qt.NewQComboBox(nil) - inputMaskLineEdit = qt.NewQLineEdit1(nil) - ) - inputMaskComboBox.AddItems([]string{"No mask", "Phone number", "ISO date", "License key"}) - inputMaskLineEdit.SetPlaceholderText("Placeholder Text") - inputMaskLineEdit.ConnectSlotSetText() - - var ( - accessGroup = qt.NewQGroupBox2("Access", nil) - accessLabel = qt.NewQLabel2("Read-only:", nil, 0) - accessComboBox = qt.NewQComboBox(nil) - accessLineEdit = qt.NewQLineEdit1(nil) - ) - accessComboBox.AddItems([]string{"False", "True"}) - accessLineEdit.SetPlaceholderText("Placeholder Text") - - echoComboBox.ConnectSignalCurrentTextChanged(func() { echoChanged(echoLineEdit, echoComboBox.CurrentIndex()) }) - validatorComboBox.ConnectSignalCurrentTextChanged(func() { validatorChanged(validatorLineEdit, validatorComboBox.CurrentIndex()) }) - alignmentComboBox.ConnectSignalCurrentTextChanged(func() { alignmentChanged(alignmentLineEdit, alignmentComboBox.CurrentIndex()) }) - inputMaskComboBox.ConnectSignalCurrentTextChanged(func() { inputMaskChanged(inputMaskLineEdit, inputMaskComboBox.CurrentIndex()) }) - accessComboBox.ConnectSignalCurrentTextChanged(func() { accessChanged(accessLineEdit, accessComboBox.CurrentIndex()) }) - - var echoLayout = qt.NewQGridLayout2() - echoLayout.AddWidget1(echoLabel, 0, 0, 0) - echoLayout.AddWidget1(echoComboBox, 0, 1, 0) - echoLayout.AddWidget2(echoLineEdit, 1, 0, 1, 2, 0) - echoGroup.SetLayout(echoLayout) - - var validatorLayout = qt.NewQGridLayout2() - validatorLayout.AddWidget1(validatorLabel, 0, 0, 0) - validatorLayout.AddWidget1(validatorComboBox, 0, 1, 0) - validatorLayout.AddWidget2(validatorLineEdit, 1, 0, 1, 2, 0) - validatorGroup.SetLayout(validatorLayout) - - var alignmentLayout = qt.NewQGridLayout2() - alignmentLayout.AddWidget1(alignmentLabel, 0, 0, 0) - alignmentLayout.AddWidget1(alignmentComboBox, 0, 1, 0) - alignmentLayout.AddWidget2(alignmentLineEdit, 1, 0, 1, 2, 0) - alignmentGroup.SetLayout(alignmentLayout) - - var inputMaskLayout = qt.NewQGridLayout2() - inputMaskLayout.AddWidget1(inputMaskLabel, 0, 0, 0) - inputMaskLayout.AddWidget1(inputMaskComboBox, 0, 1, 0) - inputMaskLayout.AddWidget2(inputMaskLineEdit, 1, 0, 1, 2, 0) - inputMaskGroup.SetLayout(inputMaskLayout) - - var accessLayout = qt.NewQGridLayout2() - accessLayout.AddWidget1(accessLabel, 0, 0, 0) - accessLayout.AddWidget1(accessComboBox, 0, 1, 0) - accessLayout.AddWidget2(accessLineEdit, 1, 0, 1, 2, 0) - accessGroup.SetLayout(accessLayout) - - var layout = qt.NewQGridLayout2() - layout.AddWidget1(echoGroup, 0, 0, 0) - layout.AddWidget1(validatorGroup, 1, 0, 0) - layout.AddWidget1(alignmentGroup, 2, 0, 0) - layout.AddWidget1(inputMaskGroup, 0, 1, 0) - layout.AddWidget1(accessGroup, 1, 1, 0) - - var window = qt.NewQMainWindow(nil, 0) - window.Layout().Destroy() - window.SetLayout(layout) - - window.ConnectSlotSetWindowTitle() - window.SlotSetWindowTitle("Line Edits") - - window.ConnectSlotShow() - window.SlotShow() - - qt.QApplication_Exec() -} - -func echoChanged(echoLineEdit qt.QLineEdit, index int) { - switch index { - case 0: - echoLineEdit.SetEchoMode(qt.NORMAL) - case 1: - echoLineEdit.SetEchoMode(qt.PASSWORD) - case 2: - echoLineEdit.SetEchoMode(qt.PASSWORDECHOONEDIT) - case 3: - echoLineEdit.SetEchoMode(qt.NOECHO) - } -} - -func validatorChanged(validatorLineEdit qt.QLineEdit, index int) { - switch index { - case 0: - validatorLineEdit.SetValidator(nil) - case 1: - validatorLineEdit.SetValidator(qt.NewQIntValidator1(nil)) - case 2: - validatorLineEdit.SetValidator(qt.NewQDoubleValidator(nil)) - } - - go validatorLineEdit.SlotClear() -} - -func alignmentChanged(alignmentLineEdit qt.QLineEdit, index int) { - switch index { - case 0: - alignmentLineEdit.SetAlignment(qt.ALIGNLEFT) - case 1: - alignmentLineEdit.SetAlignment(qt.ALIGNCENTER) - case 2: - alignmentLineEdit.SetAlignment(qt.ALIGNRIGHT) - } -} - -func inputMaskChanged(inputMaskLineEdit qt.QLineEdit, index int) { - switch index { - case 0: - inputMaskLineEdit.SetInputMask("") - case 1: - inputMaskLineEdit.SetInputMask("+99 99 99 99 99;_") - case 2: - inputMaskLineEdit.SetInputMask("0000-00-00") - inputMaskLineEdit.SlotSetText("00000000") - inputMaskLineEdit.SetCursorPosition(0) - case 3: - inputMaskLineEdit.SetInputMask(">AAAAA-AAAAA-AAAAA-AAAAA-AAAAA;#") - } -} - -func accessChanged(accessLineEdit qt.QLineEdit, index int) { - switch index { - case 0: - accessLineEdit.SetReadOnly(false) - case 1: - accessLineEdit.SetReadOnly(true) - } -} diff --git a/example/linux/deploy_linux_amd64.sh b/example/linux/deploy_linux_amd64.sh deleted file mode 100755 index 62ad808b..00000000 --- a/example/linux/deploy_linux_amd64.sh +++ /dev/null @@ -1,20 +0,0 @@ -export PATH=$PATH:/usr/local/go/bin - -go build -o example ../ - -cp /usr/local/Qt5.4.0/5.4/gcc_64/lib/libQt5Core.so.5.4.0 ./libQt5Core.so.5 -cp /usr/local/Qt5.4.0/5.4/gcc_64/lib/libQt5Gui.so.5.4.0 ./libQt5Gui.so.5 -cp /usr/local/Qt5.4.0/5.4/gcc_64/lib/libQt5Widgets.so.5.4.0 ./libQt5Widgets.so.5 -cp /usr/local/Qt5.4.0/5.4/gcc_64/lib/libQt5DBus.so.5.4.0 ./libQt5DBus.so.5 -cp /usr/local/Qt5.4.0/5.4/gcc_64/lib/libicudata.so.53.1 ./libicudata.so.53 -cp /usr/local/Qt5.4.0/5.4/gcc_64/lib/libicui18n.so.53.1 ./libicui18n.so.53 -cp /usr/local/Qt5.4.0/5.4/gcc_64/lib/libicuuc.so.53.1 ./libicuuc.so.53 - -mkdir ./platforms -cp /usr/local/Qt5.4.0/5.4/gcc_64/plugins/platforms/libqxcb.so ./platforms/libqxcb.so - -mkdir ./platformthemes -cp /usr/local/Qt5.4.0/5.4/gcc_64/plugins/platformthemes/libqgtk2.so ./platformthemes/libqgtk2.so - -chmod 777 ./example.sh -./example.sh \ No newline at end of file diff --git a/example/linux/example.sh b/example/linux/example.sh deleted file mode 100755 index e83eb511..00000000 --- a/example/linux/example.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh -appname=`basename $0 | sed s,\.sh$,,` - -dirname=`dirname $0` -tmp="${dirname#?}" - -if [ "${dirname%$tmp}" != "/" ]; then -dirname=$PWD/$dirname -fi -LD_LIBRARY_PATH=$dirname -export LD_LIBRARY_PATH -$dirname/$appname "$@" diff --git a/example/mac/Info.plist b/example/mac/Info.plist deleted file mode 100644 index 086c9280..00000000 --- a/example/mac/Info.plist +++ /dev/null @@ -1,35 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - - CFBundleExecutable - example - - CFBundleIconFile - example.icns - - CFBundleIdentifier - Identifier.example - - CFBundleInfoDictionaryVersion - 6.0 - - CFBundleName - Line Edits - - CFBundlePackageType - APPL - - CFBundleShortVersionString - 1.0.0.0 - - CFBundleVersion - 1 - - NSHighResolutionCapable - True - - diff --git a/example/mac/deploy_mac.sh b/example/mac/deploy_mac.sh deleted file mode 100755 index a0085c3f..00000000 --- a/example/mac/deploy_mac.sh +++ /dev/null @@ -1,20 +0,0 @@ -go build -o example ../ - -mkdir example.app -mkdir example.app/Contents -mkdir example.app/Contents/MacOS -mkdir example.app/Contents/Resources - -mv example example.app/Contents/MacOS -cp example_sh example.app/Contents/MacOS -cp Info.plist example.app/Contents - -chmod 777 example.app/Contents/MacOS/example -chmod 777 example.app/Contents/MacOS/example_sh - -/usr/local/qt/5.4/clang_64/bin/macdeployqt example.app/ -always-overwrite - -mv example.app/Contents/MacOS/example example.app/Contents/MacOS/example_app -mv example.app/Contents/MacOS/example_sh example.app/Contents/MacOS/example - -open example.app \ No newline at end of file diff --git a/example/mac/example_sh b/example/mac/example_sh deleted file mode 100644 index 01e77e24..00000000 --- a/example/mac/example_sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash -cd "${0%/*}" -./example_app \ No newline at end of file diff --git a/example/windows/deploy_windows.bat b/example/windows/deploy_windows.bat deleted file mode 100644 index 55f65b15..00000000 --- a/example/windows/deploy_windows.bat +++ /dev/null @@ -1,7 +0,0 @@ -set PATH=C:\Qt\Qt5.4.0\5.4\mingw491_32\bin;%PATH% - -go build -ldflags -H=windowsgui -o example.exe ../ - -windeployqt example.exe - -example.exe \ No newline at end of file diff --git a/gui/cgo_darwin_amd64.go b/gui/cgo_darwin_amd64.go new file mode 100755 index 00000000..7338937e --- /dev/null +++ b/gui/cgo_darwin_amd64.go @@ -0,0 +1,13 @@ +package gui + +/* +#cgo CPPFLAGS: -pipe -O2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 -Wall -W +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/mkspecs/macx-clang -F/usr/local/Qt5.5.1/5.5/clang_64/lib +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtCore.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtGui.framework/Headers +#cgo CPPFLAGS: -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.framework/Headers + +#cgo LDFLAGS: -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 +#cgo LDFLAGS: -F/usr/local/Qt5.5.1/5.5/clang_64/lib -framework QtCore -framework QtGui -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL +*/ +import "C" diff --git a/gui/cgo_linux_386.go b/gui/cgo_linux_386.go new file mode 100755 index 00000000..4afb81d5 --- /dev/null +++ b/gui/cgo_linux_386.go @@ -0,0 +1,12 @@ +package gui + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include -I/usr/local/Qt5.5.1/5.5/gcc/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc/include/QtGui + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc/lib -L/usr/lib -lQt5Core -lQt5Gui -lpthread +*/ +import "C" diff --git a/gui/cgo_linux_amd64.go b/gui/cgo_linux_amd64.go new file mode 100755 index 00000000..942a53ca --- /dev/null +++ b/gui/cgo_linux_amd64.go @@ -0,0 +1,12 @@ +package gui + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include -I/usr/local/Qt5.5.1/5.5/gcc_64/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtGui + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc_64/lib -L/usr/lib64 -lQt5Core -lQt5Gui -lpthread +*/ +import "C" diff --git a/gui/cgo_windows_386.go b/gui/cgo_windows_386.go new file mode 100755 index 00000000..b8b9b893 --- /dev/null +++ b/gui/cgo_windows_386.go @@ -0,0 +1,12 @@ +package gui + +/* +#cgo CPPFLAGS: -pipe -fno-keep-inline-dllexport -O2 -Wall -Wextra -fexceptions -mthreads +#cgo CPPFLAGS: -DUNICODE -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include -IC:/Qt/Qt5.5.1/5.5/mingw492_32/mkspecs/win32-g++ +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtCore -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtGui + +#cgo LDFLAGS: -Wl,-s -Wl,-subsystem,windows -mthreads +#cgo LDFLAGS: -LC:/Qt/Qt5.5.1/5.5/mingw492_32/bin -lQt5Core -lQt5Gui +*/ +import "C" diff --git a/gui/qabstractopenglfunctions.cpp b/gui/qabstractopenglfunctions.cpp new file mode 100755 index 00000000..8a85997c --- /dev/null +++ b/gui/qabstractopenglfunctions.cpp @@ -0,0 +1,7 @@ +#include "qabstractopenglfunctions.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/gui/qabstractopenglfunctions.go b/gui/qabstractopenglfunctions.go new file mode 100755 index 00000000..ef4e4dd5 --- /dev/null +++ b/gui/qabstractopenglfunctions.go @@ -0,0 +1,40 @@ +package gui + +//#include "qabstractopenglfunctions.h" +import "C" +import ( + "unsafe" +) + +type QAbstractOpenGLFunctions struct { + ptr unsafe.Pointer +} + +type QAbstractOpenGLFunctionsITF interface { + QAbstractOpenGLFunctionsPTR() *QAbstractOpenGLFunctions +} + +func (p *QAbstractOpenGLFunctions) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QAbstractOpenGLFunctions) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQAbstractOpenGLFunctions(ptr QAbstractOpenGLFunctionsITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractOpenGLFunctionsPTR().Pointer() + } + return nil +} + +func QAbstractOpenGLFunctionsFromPointer(ptr unsafe.Pointer) *QAbstractOpenGLFunctions { + var n = new(QAbstractOpenGLFunctions) + n.SetPointer(ptr) + return n +} + +func (ptr *QAbstractOpenGLFunctions) QAbstractOpenGLFunctionsPTR() *QAbstractOpenGLFunctions { + return ptr +} diff --git a/gui/qabstractopenglfunctions.h b/gui/qabstractopenglfunctions.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/gui/qabstractopenglfunctions.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qabstracttextdocumentlayout.cpp b/gui/qabstracttextdocumentlayout.cpp new file mode 100755 index 00000000..6a463bb9 --- /dev/null +++ b/gui/qabstracttextdocumentlayout.cpp @@ -0,0 +1,57 @@ +#include "qabstracttextdocumentlayout.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAbstractTextDocumentLayout: public QAbstractTextDocumentLayout { +public: +void Signal_PageCountChanged(int newPages){callbackQAbstractTextDocumentLayoutPageCountChanged(this->objectName().toUtf8().data(), newPages);}; +}; + +char* QAbstractTextDocumentLayout_AnchorAt(QtObjectPtr ptr, QtObjectPtr position){ + return static_cast(ptr)->anchorAt(*static_cast(position)).toUtf8().data(); +} + +QtObjectPtr QAbstractTextDocumentLayout_Document(QtObjectPtr ptr){ + return static_cast(ptr)->document(); +} + +QtObjectPtr QAbstractTextDocumentLayout_HandlerForObject(QtObjectPtr ptr, int objectType){ + return static_cast(ptr)->handlerForObject(objectType); +} + +int QAbstractTextDocumentLayout_PageCount(QtObjectPtr ptr){ + return static_cast(ptr)->pageCount(); +} + +void QAbstractTextDocumentLayout_ConnectPageCountChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractTextDocumentLayout::pageCountChanged), static_cast(ptr), static_cast(&MyQAbstractTextDocumentLayout::Signal_PageCountChanged));; +} + +void QAbstractTextDocumentLayout_DisconnectPageCountChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractTextDocumentLayout::pageCountChanged), static_cast(ptr), static_cast(&MyQAbstractTextDocumentLayout::Signal_PageCountChanged));; +} + +QtObjectPtr QAbstractTextDocumentLayout_PaintDevice(QtObjectPtr ptr){ + return static_cast(ptr)->paintDevice(); +} + +void QAbstractTextDocumentLayout_RegisterHandler(QtObjectPtr ptr, int objectType, QtObjectPtr component){ + static_cast(ptr)->registerHandler(objectType, static_cast(component)); +} + +void QAbstractTextDocumentLayout_SetPaintDevice(QtObjectPtr ptr, QtObjectPtr device){ + static_cast(ptr)->setPaintDevice(static_cast(device)); +} + +void QAbstractTextDocumentLayout_UnregisterHandler(QtObjectPtr ptr, int objectType, QtObjectPtr component){ + static_cast(ptr)->unregisterHandler(objectType, static_cast(component)); +} + diff --git a/gui/qabstracttextdocumentlayout.go b/gui/qabstracttextdocumentlayout.go new file mode 100755 index 00000000..7bc5ac85 --- /dev/null +++ b/gui/qabstracttextdocumentlayout.go @@ -0,0 +1,110 @@ +package gui + +//#include "qabstracttextdocumentlayout.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAbstractTextDocumentLayout struct { + core.QObject +} + +type QAbstractTextDocumentLayoutITF interface { + core.QObjectITF + QAbstractTextDocumentLayoutPTR() *QAbstractTextDocumentLayout +} + +func PointerFromQAbstractTextDocumentLayout(ptr QAbstractTextDocumentLayoutITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractTextDocumentLayoutPTR().Pointer() + } + return nil +} + +func QAbstractTextDocumentLayoutFromPointer(ptr unsafe.Pointer) *QAbstractTextDocumentLayout { + var n = new(QAbstractTextDocumentLayout) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAbstractTextDocumentLayout_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAbstractTextDocumentLayout) QAbstractTextDocumentLayoutPTR() *QAbstractTextDocumentLayout { + return ptr +} + +func (ptr *QAbstractTextDocumentLayout) AnchorAt(position core.QPointFITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAbstractTextDocumentLayout_AnchorAt(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(position)))) + } + return "" +} + +func (ptr *QAbstractTextDocumentLayout) Document() *QTextDocument { + if ptr.Pointer() != nil { + return QTextDocumentFromPointer(unsafe.Pointer(C.QAbstractTextDocumentLayout_Document(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAbstractTextDocumentLayout) HandlerForObject(objectType int) *QTextObjectInterface { + if ptr.Pointer() != nil { + return QTextObjectInterfaceFromPointer(unsafe.Pointer(C.QAbstractTextDocumentLayout_HandlerForObject(C.QtObjectPtr(ptr.Pointer()), C.int(objectType)))) + } + return nil +} + +func (ptr *QAbstractTextDocumentLayout) PageCount() int { + if ptr.Pointer() != nil { + return int(C.QAbstractTextDocumentLayout_PageCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractTextDocumentLayout) ConnectPageCountChanged(f func(newPages int)) { + if ptr.Pointer() != nil { + C.QAbstractTextDocumentLayout_ConnectPageCountChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "pageCountChanged", f) + } +} + +func (ptr *QAbstractTextDocumentLayout) DisconnectPageCountChanged() { + if ptr.Pointer() != nil { + C.QAbstractTextDocumentLayout_DisconnectPageCountChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "pageCountChanged") + } +} + +//export callbackQAbstractTextDocumentLayoutPageCountChanged +func callbackQAbstractTextDocumentLayoutPageCountChanged(ptrName *C.char, newPages C.int) { + qt.GetSignal(C.GoString(ptrName), "pageCountChanged").(func(int))(int(newPages)) +} + +func (ptr *QAbstractTextDocumentLayout) PaintDevice() *QPaintDevice { + if ptr.Pointer() != nil { + return QPaintDeviceFromPointer(unsafe.Pointer(C.QAbstractTextDocumentLayout_PaintDevice(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAbstractTextDocumentLayout) RegisterHandler(objectType int, component core.QObjectITF) { + if ptr.Pointer() != nil { + C.QAbstractTextDocumentLayout_RegisterHandler(C.QtObjectPtr(ptr.Pointer()), C.int(objectType), C.QtObjectPtr(core.PointerFromQObject(component))) + } +} + +func (ptr *QAbstractTextDocumentLayout) SetPaintDevice(device QPaintDeviceITF) { + if ptr.Pointer() != nil { + C.QAbstractTextDocumentLayout_SetPaintDevice(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPaintDevice(device))) + } +} + +func (ptr *QAbstractTextDocumentLayout) UnregisterHandler(objectType int, component core.QObjectITF) { + if ptr.Pointer() != nil { + C.QAbstractTextDocumentLayout_UnregisterHandler(C.QtObjectPtr(ptr.Pointer()), C.int(objectType), C.QtObjectPtr(core.PointerFromQObject(component))) + } +} diff --git a/gui/qabstracttextdocumentlayout.h b/gui/qabstracttextdocumentlayout.h new file mode 100755 index 00000000..cfff455e --- /dev/null +++ b/gui/qabstracttextdocumentlayout.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QAbstractTextDocumentLayout_AnchorAt(QtObjectPtr ptr, QtObjectPtr position); +QtObjectPtr QAbstractTextDocumentLayout_Document(QtObjectPtr ptr); +QtObjectPtr QAbstractTextDocumentLayout_HandlerForObject(QtObjectPtr ptr, int objectType); +int QAbstractTextDocumentLayout_PageCount(QtObjectPtr ptr); +void QAbstractTextDocumentLayout_ConnectPageCountChanged(QtObjectPtr ptr); +void QAbstractTextDocumentLayout_DisconnectPageCountChanged(QtObjectPtr ptr); +QtObjectPtr QAbstractTextDocumentLayout_PaintDevice(QtObjectPtr ptr); +void QAbstractTextDocumentLayout_RegisterHandler(QtObjectPtr ptr, int objectType, QtObjectPtr component); +void QAbstractTextDocumentLayout_SetPaintDevice(QtObjectPtr ptr, QtObjectPtr device); +void QAbstractTextDocumentLayout_UnregisterHandler(QtObjectPtr ptr, int objectType, QtObjectPtr component); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qaccessible.cpp b/gui/qaccessible.cpp new file mode 100755 index 00000000..da89b1dc --- /dev/null +++ b/gui/qaccessible.cpp @@ -0,0 +1,34 @@ +#include "qaccessible.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAccessible: public QAccessible { +public: +}; + +int QAccessible_InvalidEvent_Type(){ + return QAccessible::InvalidEvent; +} + +int QAccessible_QAccessible_IsActive(){ + return QAccessible::isActive(); +} + +QtObjectPtr QAccessible_QAccessible_QueryAccessibleInterface(QtObjectPtr object){ + return QAccessible::queryAccessibleInterface(static_cast(object)); +} + +void QAccessible_QAccessible_SetRootObject(QtObjectPtr object){ + QAccessible::setRootObject(static_cast(object)); +} + +void QAccessible_QAccessible_UpdateAccessibility(QtObjectPtr event){ + QAccessible::updateAccessibility(static_cast(event)); +} + diff --git a/gui/qaccessible.go b/gui/qaccessible.go new file mode 100755 index 00000000..d56ca373 --- /dev/null +++ b/gui/qaccessible.go @@ -0,0 +1,262 @@ +package gui + +//#include "qaccessible.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAccessible struct { + ptr unsafe.Pointer +} + +type QAccessibleITF interface { + QAccessiblePTR() *QAccessible +} + +func (p *QAccessible) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QAccessible) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQAccessible(ptr QAccessibleITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAccessiblePTR().Pointer() + } + return nil +} + +func QAccessibleFromPointer(ptr unsafe.Pointer) *QAccessible { + var n = new(QAccessible) + n.SetPointer(ptr) + return n +} + +func (ptr *QAccessible) QAccessiblePTR() *QAccessible { + return ptr +} + +//QAccessible::Event +type QAccessible__Event int + +var ( + QAccessible__SoundPlayed = QAccessible__Event(0x0001) + QAccessible__Alert = QAccessible__Event(0x0002) + QAccessible__ForegroundChanged = QAccessible__Event(0x0003) + QAccessible__MenuStart = QAccessible__Event(0x0004) + QAccessible__MenuEnd = QAccessible__Event(0x0005) + QAccessible__PopupMenuStart = QAccessible__Event(0x0006) + QAccessible__PopupMenuEnd = QAccessible__Event(0x0007) + QAccessible__ContextHelpStart = QAccessible__Event(0x000C) + QAccessible__ContextHelpEnd = QAccessible__Event(0x000D) + QAccessible__DragDropStart = QAccessible__Event(0x000E) + QAccessible__DragDropEnd = QAccessible__Event(0x000F) + QAccessible__DialogStart = QAccessible__Event(0x0010) + QAccessible__DialogEnd = QAccessible__Event(0x0011) + QAccessible__ScrollingStart = QAccessible__Event(0x0012) + QAccessible__ScrollingEnd = QAccessible__Event(0x0013) + QAccessible__MenuCommand = QAccessible__Event(0x0018) + QAccessible__ActionChanged = QAccessible__Event(0x0101) + QAccessible__ActiveDescendantChanged = QAccessible__Event(0x0102) + QAccessible__AttributeChanged = QAccessible__Event(0x0103) + QAccessible__DocumentContentChanged = QAccessible__Event(0x0104) + QAccessible__DocumentLoadComplete = QAccessible__Event(0x0105) + QAccessible__DocumentLoadStopped = QAccessible__Event(0x0106) + QAccessible__DocumentReload = QAccessible__Event(0x0107) + QAccessible__HyperlinkEndIndexChanged = QAccessible__Event(0x0108) + QAccessible__HyperlinkNumberOfAnchorsChanged = QAccessible__Event(0x0109) + QAccessible__HyperlinkSelectedLinkChanged = QAccessible__Event(0x010A) + QAccessible__HypertextLinkActivated = QAccessible__Event(0x010B) + QAccessible__HypertextLinkSelected = QAccessible__Event(0x010C) + QAccessible__HyperlinkStartIndexChanged = QAccessible__Event(0x010D) + QAccessible__HypertextChanged = QAccessible__Event(0x010E) + QAccessible__HypertextNLinksChanged = QAccessible__Event(0x010F) + QAccessible__ObjectAttributeChanged = QAccessible__Event(0x0110) + QAccessible__PageChanged = QAccessible__Event(0x0111) + QAccessible__SectionChanged = QAccessible__Event(0x0112) + QAccessible__TableCaptionChanged = QAccessible__Event(0x0113) + QAccessible__TableColumnDescriptionChanged = QAccessible__Event(0x0114) + QAccessible__TableColumnHeaderChanged = QAccessible__Event(0x0115) + QAccessible__TableModelChanged = QAccessible__Event(0x0116) + QAccessible__TableRowDescriptionChanged = QAccessible__Event(0x0117) + QAccessible__TableRowHeaderChanged = QAccessible__Event(0x0118) + QAccessible__TableSummaryChanged = QAccessible__Event(0x0119) + QAccessible__TextAttributeChanged = QAccessible__Event(0x011A) + QAccessible__TextCaretMoved = QAccessible__Event(0x011B) + QAccessible__TextColumnChanged = QAccessible__Event(0x011D) + QAccessible__TextInserted = QAccessible__Event(0x011E) + QAccessible__TextRemoved = QAccessible__Event(0x011F) + QAccessible__TextUpdated = QAccessible__Event(0x0120) + QAccessible__TextSelectionChanged = QAccessible__Event(0x0121) + QAccessible__VisibleDataChanged = QAccessible__Event(0x0122) + QAccessible__ObjectCreated = QAccessible__Event(0x8000) + QAccessible__ObjectDestroyed = QAccessible__Event(0x8001) + QAccessible__ObjectShow = QAccessible__Event(0x8002) + QAccessible__ObjectHide = QAccessible__Event(0x8003) + QAccessible__ObjectReorder = QAccessible__Event(0x8004) + QAccessible__Focus = QAccessible__Event(0x8005) + QAccessible__Selection = QAccessible__Event(0x8006) + QAccessible__SelectionAdd = QAccessible__Event(0x8007) + QAccessible__SelectionRemove = QAccessible__Event(0x8008) + QAccessible__SelectionWithin = QAccessible__Event(0x8009) + QAccessible__StateChanged = QAccessible__Event(0x800A) + QAccessible__LocationChanged = QAccessible__Event(0x800B) + QAccessible__NameChanged = QAccessible__Event(0x800C) + QAccessible__DescriptionChanged = QAccessible__Event(0x800D) + QAccessible__ValueChanged = QAccessible__Event(0x800E) + QAccessible__ParentChanged = QAccessible__Event(0x800F) + QAccessible__HelpChanged = QAccessible__Event(0x80A0) + QAccessible__DefaultActionChanged = QAccessible__Event(0x80B0) + QAccessible__AcceleratorChanged = QAccessible__Event(0x80C0) + QAccessible__InvalidEvent = QAccessible__Event(C.QAccessible_InvalidEvent_Type()) +) + +//QAccessible::InterfaceType +type QAccessible__InterfaceType int + +var ( + QAccessible__TextInterface = QAccessible__InterfaceType(0) + QAccessible__EditableTextInterface = QAccessible__InterfaceType(1) + QAccessible__ValueInterface = QAccessible__InterfaceType(2) + QAccessible__ActionInterface = QAccessible__InterfaceType(3) + QAccessible__ImageInterface = QAccessible__InterfaceType(4) + QAccessible__TableInterface = QAccessible__InterfaceType(5) + QAccessible__TableCellInterface = QAccessible__InterfaceType(6) +) + +//QAccessible::RelationFlag +type QAccessible__RelationFlag int + +var ( + QAccessible__Label = QAccessible__RelationFlag(0x00000001) + QAccessible__Labelled = QAccessible__RelationFlag(0x00000002) + QAccessible__Controller = QAccessible__RelationFlag(0x00000004) + QAccessible__Controlled = QAccessible__RelationFlag(0x00000008) + QAccessible__AllRelations = QAccessible__RelationFlag(0xffffffff) +) + +//QAccessible::Role +type QAccessible__Role int + +var ( + QAccessible__NoRole = QAccessible__Role(0x00000000) + QAccessible__TitleBar = QAccessible__Role(0x00000001) + QAccessible__MenuBar = QAccessible__Role(0x00000002) + QAccessible__ScrollBar = QAccessible__Role(0x00000003) + QAccessible__Grip = QAccessible__Role(0x00000004) + QAccessible__Sound = QAccessible__Role(0x00000005) + QAccessible__Cursor = QAccessible__Role(0x00000006) + QAccessible__Caret = QAccessible__Role(0x00000007) + QAccessible__AlertMessage = QAccessible__Role(0x00000008) + QAccessible__Window = QAccessible__Role(0x00000009) + QAccessible__Client = QAccessible__Role(0x0000000A) + QAccessible__PopupMenu = QAccessible__Role(0x0000000B) + QAccessible__MenuItem = QAccessible__Role(0x0000000C) + QAccessible__ToolTip = QAccessible__Role(0x0000000D) + QAccessible__Application = QAccessible__Role(0x0000000E) + QAccessible__Document = QAccessible__Role(0x0000000F) + QAccessible__Pane = QAccessible__Role(0x00000010) + QAccessible__Chart = QAccessible__Role(0x00000011) + QAccessible__Dialog = QAccessible__Role(0x00000012) + QAccessible__Border = QAccessible__Role(0x00000013) + QAccessible__Grouping = QAccessible__Role(0x00000014) + QAccessible__Separator = QAccessible__Role(0x00000015) + QAccessible__ToolBar = QAccessible__Role(0x00000016) + QAccessible__StatusBar = QAccessible__Role(0x00000017) + QAccessible__Table = QAccessible__Role(0x00000018) + QAccessible__ColumnHeader = QAccessible__Role(0x00000019) + QAccessible__RowHeader = QAccessible__Role(0x0000001A) + QAccessible__Column = QAccessible__Role(0x0000001B) + QAccessible__Row = QAccessible__Role(0x0000001C) + QAccessible__Cell = QAccessible__Role(0x0000001D) + QAccessible__Link = QAccessible__Role(0x0000001E) + QAccessible__HelpBalloon = QAccessible__Role(0x0000001F) + QAccessible__Assistant = QAccessible__Role(0x00000020) + QAccessible__List = QAccessible__Role(0x00000021) + QAccessible__ListItem = QAccessible__Role(0x00000022) + QAccessible__Tree = QAccessible__Role(0x00000023) + QAccessible__TreeItem = QAccessible__Role(0x00000024) + QAccessible__PageTab = QAccessible__Role(0x00000025) + QAccessible__PropertyPage = QAccessible__Role(0x00000026) + QAccessible__Indicator = QAccessible__Role(0x00000027) + QAccessible__Graphic = QAccessible__Role(0x00000028) + QAccessible__StaticText = QAccessible__Role(0x00000029) + QAccessible__EditableText = QAccessible__Role(0x0000002A) + QAccessible__Button = QAccessible__Role(0x0000002B) + QAccessible__CheckBox = QAccessible__Role(0x0000002C) + QAccessible__RadioButton = QAccessible__Role(0x0000002D) + QAccessible__ComboBox = QAccessible__Role(0x0000002E) + QAccessible__ProgressBar = QAccessible__Role(0x00000030) + QAccessible__Dial = QAccessible__Role(0x00000031) + QAccessible__HotkeyField = QAccessible__Role(0x00000032) + QAccessible__Slider = QAccessible__Role(0x00000033) + QAccessible__SpinBox = QAccessible__Role(0x00000034) + QAccessible__Canvas = QAccessible__Role(0x00000035) + QAccessible__Animation = QAccessible__Role(0x00000036) + QAccessible__Equation = QAccessible__Role(0x00000037) + QAccessible__ButtonDropDown = QAccessible__Role(0x00000038) + QAccessible__ButtonMenu = QAccessible__Role(0x00000039) + QAccessible__ButtonDropGrid = QAccessible__Role(0x0000003A) + QAccessible__Whitespace = QAccessible__Role(0x0000003B) + QAccessible__PageTabList = QAccessible__Role(0x0000003C) + QAccessible__Clock = QAccessible__Role(0x0000003D) + QAccessible__Splitter = QAccessible__Role(0x0000003E) + QAccessible__LayeredPane = QAccessible__Role(0x00000080) + QAccessible__Terminal = QAccessible__Role(0x00000081) + QAccessible__Desktop = QAccessible__Role(0x00000082) + QAccessible__Paragraph = QAccessible__Role(0x00000083) + QAccessible__WebDocument = QAccessible__Role(0x00000084) + QAccessible__Section = QAccessible__Role(0x00000085) + QAccessible__ColorChooser = QAccessible__Role(0x404) + QAccessible__Footer = QAccessible__Role(0x40E) + QAccessible__Form = QAccessible__Role(0x410) + QAccessible__Heading = QAccessible__Role(0x414) + QAccessible__Note = QAccessible__Role(0x41B) + QAccessible__ComplementaryContent = QAccessible__Role(0x42C) + QAccessible__UserRole = QAccessible__Role(0x0000ffff) +) + +//QAccessible::Text +type QAccessible__Text int + +var ( + QAccessible__Name = QAccessible__Text(0) + QAccessible__Description = QAccessible__Text(1) + QAccessible__Value = QAccessible__Text(2) + QAccessible__Help = QAccessible__Text(3) + QAccessible__Accelerator = QAccessible__Text(4) + QAccessible__DebugDescription = QAccessible__Text(5) + QAccessible__UserText = QAccessible__Text(0x0000ffff) +) + +//QAccessible::TextBoundaryType +type QAccessible__TextBoundaryType int + +var ( + QAccessible__CharBoundary = QAccessible__TextBoundaryType(0) + QAccessible__WordBoundary = QAccessible__TextBoundaryType(1) + QAccessible__SentenceBoundary = QAccessible__TextBoundaryType(2) + QAccessible__ParagraphBoundary = QAccessible__TextBoundaryType(3) + QAccessible__LineBoundary = QAccessible__TextBoundaryType(4) + QAccessible__NoBoundary = QAccessible__TextBoundaryType(5) +) + +func QAccessible_IsActive() bool { + return C.QAccessible_QAccessible_IsActive() != 0 +} + +func QAccessible_QueryAccessibleInterface(object core.QObjectITF) *QAccessibleInterface { + return QAccessibleInterfaceFromPointer(unsafe.Pointer(C.QAccessible_QAccessible_QueryAccessibleInterface(C.QtObjectPtr(core.PointerFromQObject(object))))) +} + +func QAccessible_SetRootObject(object core.QObjectITF) { + C.QAccessible_QAccessible_SetRootObject(C.QtObjectPtr(core.PointerFromQObject(object))) +} + +func QAccessible_UpdateAccessibility(event QAccessibleEventITF) { + C.QAccessible_QAccessible_UpdateAccessibility(C.QtObjectPtr(PointerFromQAccessibleEvent(event))) +} diff --git a/gui/qaccessible.h b/gui/qaccessible.h new file mode 100755 index 00000000..65271477 --- /dev/null +++ b/gui/qaccessible.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QAccessible_InvalidEvent_Type(); +int QAccessible_QAccessible_IsActive(); +QtObjectPtr QAccessible_QAccessible_QueryAccessibleInterface(QtObjectPtr object); +void QAccessible_QAccessible_SetRootObject(QtObjectPtr object); +void QAccessible_QAccessible_UpdateAccessibility(QtObjectPtr event); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qaccessibleactioninterface.cpp b/gui/qaccessibleactioninterface.cpp new file mode 100755 index 00000000..9ee60944 --- /dev/null +++ b/gui/qaccessibleactioninterface.cpp @@ -0,0 +1,85 @@ +#include "qaccessibleactioninterface.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAccessibleActionInterface: public QAccessibleActionInterface { +public: +}; + +char* QAccessibleActionInterface_LocalizedActionDescription(QtObjectPtr ptr, char* actionName){ + return static_cast(ptr)->localizedActionDescription(QString(actionName)).toUtf8().data(); +} + +char* QAccessibleActionInterface_LocalizedActionName(QtObjectPtr ptr, char* actionName){ + return static_cast(ptr)->localizedActionName(QString(actionName)).toUtf8().data(); +} + +char* QAccessibleActionInterface_ActionNames(QtObjectPtr ptr){ + return static_cast(ptr)->actionNames().join("|").toUtf8().data(); +} + +char* QAccessibleActionInterface_QAccessibleActionInterface_DecreaseAction(){ + return QAccessibleActionInterface::decreaseAction().toUtf8().data(); +} + +void QAccessibleActionInterface_DoAction(QtObjectPtr ptr, char* actionName){ + static_cast(ptr)->doAction(QString(actionName)); +} + +char* QAccessibleActionInterface_QAccessibleActionInterface_IncreaseAction(){ + return QAccessibleActionInterface::increaseAction().toUtf8().data(); +} + +char* QAccessibleActionInterface_KeyBindingsForAction(QtObjectPtr ptr, char* actionName){ + return static_cast(ptr)->keyBindingsForAction(QString(actionName)).join("|").toUtf8().data(); +} + +char* QAccessibleActionInterface_QAccessibleActionInterface_NextPageAction(){ + return QAccessibleActionInterface::nextPageAction().toUtf8().data(); +} + +char* QAccessibleActionInterface_QAccessibleActionInterface_PressAction(){ + return QAccessibleActionInterface::pressAction().toUtf8().data(); +} + +char* QAccessibleActionInterface_QAccessibleActionInterface_PreviousPageAction(){ + return QAccessibleActionInterface::previousPageAction().toUtf8().data(); +} + +char* QAccessibleActionInterface_QAccessibleActionInterface_ScrollDownAction(){ + return QAccessibleActionInterface::scrollDownAction().toUtf8().data(); +} + +char* QAccessibleActionInterface_QAccessibleActionInterface_ScrollLeftAction(){ + return QAccessibleActionInterface::scrollLeftAction().toUtf8().data(); +} + +char* QAccessibleActionInterface_QAccessibleActionInterface_ScrollRightAction(){ + return QAccessibleActionInterface::scrollRightAction().toUtf8().data(); +} + +char* QAccessibleActionInterface_QAccessibleActionInterface_ScrollUpAction(){ + return QAccessibleActionInterface::scrollUpAction().toUtf8().data(); +} + +char* QAccessibleActionInterface_QAccessibleActionInterface_SetFocusAction(){ + return QAccessibleActionInterface::setFocusAction().toUtf8().data(); +} + +char* QAccessibleActionInterface_QAccessibleActionInterface_ShowMenuAction(){ + return QAccessibleActionInterface::showMenuAction().toUtf8().data(); +} + +char* QAccessibleActionInterface_QAccessibleActionInterface_ToggleAction(){ + return QAccessibleActionInterface::toggleAction().toUtf8().data(); +} + +void QAccessibleActionInterface_DestroyQAccessibleActionInterface(QtObjectPtr ptr){ + static_cast(ptr)->~QAccessibleActionInterface(); +} + diff --git a/gui/qaccessibleactioninterface.go b/gui/qaccessibleactioninterface.go new file mode 100755 index 00000000..16e6f41c --- /dev/null +++ b/gui/qaccessibleactioninterface.go @@ -0,0 +1,129 @@ +package gui + +//#include "qaccessibleactioninterface.h" +import "C" +import ( + "strings" + "unsafe" +) + +type QAccessibleActionInterface struct { + ptr unsafe.Pointer +} + +type QAccessibleActionInterfaceITF interface { + QAccessibleActionInterfacePTR() *QAccessibleActionInterface +} + +func (p *QAccessibleActionInterface) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QAccessibleActionInterface) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQAccessibleActionInterface(ptr QAccessibleActionInterfaceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAccessibleActionInterfacePTR().Pointer() + } + return nil +} + +func QAccessibleActionInterfaceFromPointer(ptr unsafe.Pointer) *QAccessibleActionInterface { + var n = new(QAccessibleActionInterface) + n.SetPointer(ptr) + return n +} + +func (ptr *QAccessibleActionInterface) QAccessibleActionInterfacePTR() *QAccessibleActionInterface { + return ptr +} + +func (ptr *QAccessibleActionInterface) LocalizedActionDescription(actionName string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAccessibleActionInterface_LocalizedActionDescription(C.QtObjectPtr(ptr.Pointer()), C.CString(actionName))) + } + return "" +} + +func (ptr *QAccessibleActionInterface) LocalizedActionName(actionName string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAccessibleActionInterface_LocalizedActionName(C.QtObjectPtr(ptr.Pointer()), C.CString(actionName))) + } + return "" +} + +func (ptr *QAccessibleActionInterface) ActionNames() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QAccessibleActionInterface_ActionNames(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func QAccessibleActionInterface_DecreaseAction() string { + return C.GoString(C.QAccessibleActionInterface_QAccessibleActionInterface_DecreaseAction()) +} + +func (ptr *QAccessibleActionInterface) DoAction(actionName string) { + if ptr.Pointer() != nil { + C.QAccessibleActionInterface_DoAction(C.QtObjectPtr(ptr.Pointer()), C.CString(actionName)) + } +} + +func QAccessibleActionInterface_IncreaseAction() string { + return C.GoString(C.QAccessibleActionInterface_QAccessibleActionInterface_IncreaseAction()) +} + +func (ptr *QAccessibleActionInterface) KeyBindingsForAction(actionName string) []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QAccessibleActionInterface_KeyBindingsForAction(C.QtObjectPtr(ptr.Pointer()), C.CString(actionName))), "|") + } + return make([]string, 0) +} + +func QAccessibleActionInterface_NextPageAction() string { + return C.GoString(C.QAccessibleActionInterface_QAccessibleActionInterface_NextPageAction()) +} + +func QAccessibleActionInterface_PressAction() string { + return C.GoString(C.QAccessibleActionInterface_QAccessibleActionInterface_PressAction()) +} + +func QAccessibleActionInterface_PreviousPageAction() string { + return C.GoString(C.QAccessibleActionInterface_QAccessibleActionInterface_PreviousPageAction()) +} + +func QAccessibleActionInterface_ScrollDownAction() string { + return C.GoString(C.QAccessibleActionInterface_QAccessibleActionInterface_ScrollDownAction()) +} + +func QAccessibleActionInterface_ScrollLeftAction() string { + return C.GoString(C.QAccessibleActionInterface_QAccessibleActionInterface_ScrollLeftAction()) +} + +func QAccessibleActionInterface_ScrollRightAction() string { + return C.GoString(C.QAccessibleActionInterface_QAccessibleActionInterface_ScrollRightAction()) +} + +func QAccessibleActionInterface_ScrollUpAction() string { + return C.GoString(C.QAccessibleActionInterface_QAccessibleActionInterface_ScrollUpAction()) +} + +func QAccessibleActionInterface_SetFocusAction() string { + return C.GoString(C.QAccessibleActionInterface_QAccessibleActionInterface_SetFocusAction()) +} + +func QAccessibleActionInterface_ShowMenuAction() string { + return C.GoString(C.QAccessibleActionInterface_QAccessibleActionInterface_ShowMenuAction()) +} + +func QAccessibleActionInterface_ToggleAction() string { + return C.GoString(C.QAccessibleActionInterface_QAccessibleActionInterface_ToggleAction()) +} + +func (ptr *QAccessibleActionInterface) DestroyQAccessibleActionInterface() { + if ptr.Pointer() != nil { + C.QAccessibleActionInterface_DestroyQAccessibleActionInterface(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qaccessibleactioninterface.h b/gui/qaccessibleactioninterface.h new file mode 100755 index 00000000..54c9f3fe --- /dev/null +++ b/gui/qaccessibleactioninterface.h @@ -0,0 +1,27 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QAccessibleActionInterface_LocalizedActionDescription(QtObjectPtr ptr, char* actionName); +char* QAccessibleActionInterface_LocalizedActionName(QtObjectPtr ptr, char* actionName); +char* QAccessibleActionInterface_ActionNames(QtObjectPtr ptr); +char* QAccessibleActionInterface_QAccessibleActionInterface_DecreaseAction(); +void QAccessibleActionInterface_DoAction(QtObjectPtr ptr, char* actionName); +char* QAccessibleActionInterface_QAccessibleActionInterface_IncreaseAction(); +char* QAccessibleActionInterface_KeyBindingsForAction(QtObjectPtr ptr, char* actionName); +char* QAccessibleActionInterface_QAccessibleActionInterface_NextPageAction(); +char* QAccessibleActionInterface_QAccessibleActionInterface_PressAction(); +char* QAccessibleActionInterface_QAccessibleActionInterface_PreviousPageAction(); +char* QAccessibleActionInterface_QAccessibleActionInterface_ScrollDownAction(); +char* QAccessibleActionInterface_QAccessibleActionInterface_ScrollLeftAction(); +char* QAccessibleActionInterface_QAccessibleActionInterface_ScrollRightAction(); +char* QAccessibleActionInterface_QAccessibleActionInterface_ScrollUpAction(); +char* QAccessibleActionInterface_QAccessibleActionInterface_SetFocusAction(); +char* QAccessibleActionInterface_QAccessibleActionInterface_ShowMenuAction(); +char* QAccessibleActionInterface_QAccessibleActionInterface_ToggleAction(); +void QAccessibleActionInterface_DestroyQAccessibleActionInterface(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qaccessibleeditabletextinterface.cpp b/gui/qaccessibleeditabletextinterface.cpp new file mode 100755 index 00000000..36e61a4b --- /dev/null +++ b/gui/qaccessibleeditabletextinterface.cpp @@ -0,0 +1,29 @@ +#include "qaccessibleeditabletextinterface.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAccessibleEditableTextInterface: public QAccessibleEditableTextInterface { +public: +}; + +void QAccessibleEditableTextInterface_DeleteText(QtObjectPtr ptr, int startOffset, int endOffset){ + static_cast(ptr)->deleteText(startOffset, endOffset); +} + +void QAccessibleEditableTextInterface_InsertText(QtObjectPtr ptr, int offset, char* text){ + static_cast(ptr)->insertText(offset, QString(text)); +} + +void QAccessibleEditableTextInterface_ReplaceText(QtObjectPtr ptr, int startOffset, int endOffset, char* text){ + static_cast(ptr)->replaceText(startOffset, endOffset, QString(text)); +} + +void QAccessibleEditableTextInterface_DestroyQAccessibleEditableTextInterface(QtObjectPtr ptr){ + static_cast(ptr)->~QAccessibleEditableTextInterface(); +} + diff --git a/gui/qaccessibleeditabletextinterface.go b/gui/qaccessibleeditabletextinterface.go new file mode 100755 index 00000000..8eecbe85 --- /dev/null +++ b/gui/qaccessibleeditabletextinterface.go @@ -0,0 +1,64 @@ +package gui + +//#include "qaccessibleeditabletextinterface.h" +import "C" +import ( + "unsafe" +) + +type QAccessibleEditableTextInterface struct { + ptr unsafe.Pointer +} + +type QAccessibleEditableTextInterfaceITF interface { + QAccessibleEditableTextInterfacePTR() *QAccessibleEditableTextInterface +} + +func (p *QAccessibleEditableTextInterface) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QAccessibleEditableTextInterface) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQAccessibleEditableTextInterface(ptr QAccessibleEditableTextInterfaceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAccessibleEditableTextInterfacePTR().Pointer() + } + return nil +} + +func QAccessibleEditableTextInterfaceFromPointer(ptr unsafe.Pointer) *QAccessibleEditableTextInterface { + var n = new(QAccessibleEditableTextInterface) + n.SetPointer(ptr) + return n +} + +func (ptr *QAccessibleEditableTextInterface) QAccessibleEditableTextInterfacePTR() *QAccessibleEditableTextInterface { + return ptr +} + +func (ptr *QAccessibleEditableTextInterface) DeleteText(startOffset int, endOffset int) { + if ptr.Pointer() != nil { + C.QAccessibleEditableTextInterface_DeleteText(C.QtObjectPtr(ptr.Pointer()), C.int(startOffset), C.int(endOffset)) + } +} + +func (ptr *QAccessibleEditableTextInterface) InsertText(offset int, text string) { + if ptr.Pointer() != nil { + C.QAccessibleEditableTextInterface_InsertText(C.QtObjectPtr(ptr.Pointer()), C.int(offset), C.CString(text)) + } +} + +func (ptr *QAccessibleEditableTextInterface) ReplaceText(startOffset int, endOffset int, text string) { + if ptr.Pointer() != nil { + C.QAccessibleEditableTextInterface_ReplaceText(C.QtObjectPtr(ptr.Pointer()), C.int(startOffset), C.int(endOffset), C.CString(text)) + } +} + +func (ptr *QAccessibleEditableTextInterface) DestroyQAccessibleEditableTextInterface() { + if ptr.Pointer() != nil { + C.QAccessibleEditableTextInterface_DestroyQAccessibleEditableTextInterface(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qaccessibleeditabletextinterface.h b/gui/qaccessibleeditabletextinterface.h new file mode 100755 index 00000000..d41f8fc0 --- /dev/null +++ b/gui/qaccessibleeditabletextinterface.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QAccessibleEditableTextInterface_DeleteText(QtObjectPtr ptr, int startOffset, int endOffset); +void QAccessibleEditableTextInterface_InsertText(QtObjectPtr ptr, int offset, char* text); +void QAccessibleEditableTextInterface_ReplaceText(QtObjectPtr ptr, int startOffset, int endOffset, char* text); +void QAccessibleEditableTextInterface_DestroyQAccessibleEditableTextInterface(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qaccessibleevent.cpp b/gui/qaccessibleevent.cpp new file mode 100755 index 00000000..b1f1be54 --- /dev/null +++ b/gui/qaccessibleevent.cpp @@ -0,0 +1,47 @@ +#include "qaccessibleevent.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAccessibleEvent: public QAccessibleEvent { +public: +}; + +QtObjectPtr QAccessibleEvent_NewQAccessibleEvent2(QtObjectPtr interfa, int ty){ + return new QAccessibleEvent(static_cast(interfa), static_cast(ty)); +} + +QtObjectPtr QAccessibleEvent_NewQAccessibleEvent(QtObjectPtr object, int ty){ + return new QAccessibleEvent(static_cast(object), static_cast(ty)); +} + +QtObjectPtr QAccessibleEvent_AccessibleInterface(QtObjectPtr ptr){ + return static_cast(ptr)->accessibleInterface(); +} + +int QAccessibleEvent_Child(QtObjectPtr ptr){ + return static_cast(ptr)->child(); +} + +QtObjectPtr QAccessibleEvent_Object(QtObjectPtr ptr){ + return static_cast(ptr)->object(); +} + +void QAccessibleEvent_SetChild(QtObjectPtr ptr, int child){ + static_cast(ptr)->setChild(child); +} + +int QAccessibleEvent_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QAccessibleEvent_DestroyQAccessibleEvent(QtObjectPtr ptr){ + static_cast(ptr)->~QAccessibleEvent(); +} + diff --git a/gui/qaccessibleevent.go b/gui/qaccessibleevent.go new file mode 100755 index 00000000..ebcd5674 --- /dev/null +++ b/gui/qaccessibleevent.go @@ -0,0 +1,89 @@ +package gui + +//#include "qaccessibleevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAccessibleEvent struct { + ptr unsafe.Pointer +} + +type QAccessibleEventITF interface { + QAccessibleEventPTR() *QAccessibleEvent +} + +func (p *QAccessibleEvent) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QAccessibleEvent) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQAccessibleEvent(ptr QAccessibleEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAccessibleEventPTR().Pointer() + } + return nil +} + +func QAccessibleEventFromPointer(ptr unsafe.Pointer) *QAccessibleEvent { + var n = new(QAccessibleEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QAccessibleEvent) QAccessibleEventPTR() *QAccessibleEvent { + return ptr +} + +func NewQAccessibleEvent2(interfa QAccessibleInterfaceITF, ty QAccessible__Event) *QAccessibleEvent { + return QAccessibleEventFromPointer(unsafe.Pointer(C.QAccessibleEvent_NewQAccessibleEvent2(C.QtObjectPtr(PointerFromQAccessibleInterface(interfa)), C.int(ty)))) +} + +func NewQAccessibleEvent(object core.QObjectITF, ty QAccessible__Event) *QAccessibleEvent { + return QAccessibleEventFromPointer(unsafe.Pointer(C.QAccessibleEvent_NewQAccessibleEvent(C.QtObjectPtr(core.PointerFromQObject(object)), C.int(ty)))) +} + +func (ptr *QAccessibleEvent) AccessibleInterface() *QAccessibleInterface { + if ptr.Pointer() != nil { + return QAccessibleInterfaceFromPointer(unsafe.Pointer(C.QAccessibleEvent_AccessibleInterface(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAccessibleEvent) Child() int { + if ptr.Pointer() != nil { + return int(C.QAccessibleEvent_Child(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleEvent) Object() *core.QObject { + if ptr.Pointer() != nil { + return core.QObjectFromPointer(unsafe.Pointer(C.QAccessibleEvent_Object(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAccessibleEvent) SetChild(child int) { + if ptr.Pointer() != nil { + C.QAccessibleEvent_SetChild(C.QtObjectPtr(ptr.Pointer()), C.int(child)) + } +} + +func (ptr *QAccessibleEvent) Type() QAccessible__Event { + if ptr.Pointer() != nil { + return QAccessible__Event(C.QAccessibleEvent_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleEvent) DestroyQAccessibleEvent() { + if ptr.Pointer() != nil { + C.QAccessibleEvent_DestroyQAccessibleEvent(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qaccessibleevent.h b/gui/qaccessibleevent.h new file mode 100755 index 00000000..1201c91b --- /dev/null +++ b/gui/qaccessibleevent.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAccessibleEvent_NewQAccessibleEvent2(QtObjectPtr interfa, int ty); +QtObjectPtr QAccessibleEvent_NewQAccessibleEvent(QtObjectPtr object, int ty); +QtObjectPtr QAccessibleEvent_AccessibleInterface(QtObjectPtr ptr); +int QAccessibleEvent_Child(QtObjectPtr ptr); +QtObjectPtr QAccessibleEvent_Object(QtObjectPtr ptr); +void QAccessibleEvent_SetChild(QtObjectPtr ptr, int child); +int QAccessibleEvent_Type(QtObjectPtr ptr); +void QAccessibleEvent_DestroyQAccessibleEvent(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qaccessibleinterface.cpp b/gui/qaccessibleinterface.cpp new file mode 100755 index 00000000..ad495773 --- /dev/null +++ b/gui/qaccessibleinterface.cpp @@ -0,0 +1,85 @@ +#include "qaccessibleinterface.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAccessibleInterface: public QAccessibleInterface { +public: +}; + +QtObjectPtr QAccessibleInterface_ActionInterface(QtObjectPtr ptr){ + return static_cast(ptr)->actionInterface(); +} + +QtObjectPtr QAccessibleInterface_Child(QtObjectPtr ptr, int index){ + return static_cast(ptr)->child(index); +} + +QtObjectPtr QAccessibleInterface_ChildAt(QtObjectPtr ptr, int x, int y){ + return static_cast(ptr)->childAt(x, y); +} + +int QAccessibleInterface_ChildCount(QtObjectPtr ptr){ + return static_cast(ptr)->childCount(); +} + +QtObjectPtr QAccessibleInterface_FocusChild(QtObjectPtr ptr){ + return static_cast(ptr)->focusChild(); +} + +int QAccessibleInterface_IndexOfChild(QtObjectPtr ptr, QtObjectPtr child){ + return static_cast(ptr)->indexOfChild(static_cast(child)); +} + +void QAccessibleInterface_Interface_cast(QtObjectPtr ptr, int ty){ + static_cast(ptr)->interface_cast(static_cast(ty)); +} + +int QAccessibleInterface_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +QtObjectPtr QAccessibleInterface_Object(QtObjectPtr ptr){ + return static_cast(ptr)->object(); +} + +QtObjectPtr QAccessibleInterface_Parent(QtObjectPtr ptr){ + return static_cast(ptr)->parent(); +} + +int QAccessibleInterface_Role(QtObjectPtr ptr){ + return static_cast(ptr)->role(); +} + +void QAccessibleInterface_SetText(QtObjectPtr ptr, int t, char* text){ + static_cast(ptr)->setText(static_cast(t), QString(text)); +} + +QtObjectPtr QAccessibleInterface_TableCellInterface(QtObjectPtr ptr){ + return static_cast(ptr)->tableCellInterface(); +} + +QtObjectPtr QAccessibleInterface_TableInterface(QtObjectPtr ptr){ + return static_cast(ptr)->tableInterface(); +} + +char* QAccessibleInterface_Text(QtObjectPtr ptr, int t){ + return static_cast(ptr)->text(static_cast(t)).toUtf8().data(); +} + +QtObjectPtr QAccessibleInterface_TextInterface(QtObjectPtr ptr){ + return static_cast(ptr)->textInterface(); +} + +QtObjectPtr QAccessibleInterface_ValueInterface(QtObjectPtr ptr){ + return static_cast(ptr)->valueInterface(); +} + +QtObjectPtr QAccessibleInterface_Window(QtObjectPtr ptr){ + return static_cast(ptr)->window(); +} + diff --git a/gui/qaccessibleinterface.go b/gui/qaccessibleinterface.go new file mode 100755 index 00000000..78200a95 --- /dev/null +++ b/gui/qaccessibleinterface.go @@ -0,0 +1,165 @@ +package gui + +//#include "qaccessibleinterface.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAccessibleInterface struct { + ptr unsafe.Pointer +} + +type QAccessibleInterfaceITF interface { + QAccessibleInterfacePTR() *QAccessibleInterface +} + +func (p *QAccessibleInterface) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QAccessibleInterface) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQAccessibleInterface(ptr QAccessibleInterfaceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAccessibleInterfacePTR().Pointer() + } + return nil +} + +func QAccessibleInterfaceFromPointer(ptr unsafe.Pointer) *QAccessibleInterface { + var n = new(QAccessibleInterface) + n.SetPointer(ptr) + return n +} + +func (ptr *QAccessibleInterface) QAccessibleInterfacePTR() *QAccessibleInterface { + return ptr +} + +func (ptr *QAccessibleInterface) ActionInterface() *QAccessibleActionInterface { + if ptr.Pointer() != nil { + return QAccessibleActionInterfaceFromPointer(unsafe.Pointer(C.QAccessibleInterface_ActionInterface(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAccessibleInterface) Child(index int) *QAccessibleInterface { + if ptr.Pointer() != nil { + return QAccessibleInterfaceFromPointer(unsafe.Pointer(C.QAccessibleInterface_Child(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QAccessibleInterface) ChildAt(x int, y int) *QAccessibleInterface { + if ptr.Pointer() != nil { + return QAccessibleInterfaceFromPointer(unsafe.Pointer(C.QAccessibleInterface_ChildAt(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y)))) + } + return nil +} + +func (ptr *QAccessibleInterface) ChildCount() int { + if ptr.Pointer() != nil { + return int(C.QAccessibleInterface_ChildCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleInterface) FocusChild() *QAccessibleInterface { + if ptr.Pointer() != nil { + return QAccessibleInterfaceFromPointer(unsafe.Pointer(C.QAccessibleInterface_FocusChild(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAccessibleInterface) IndexOfChild(child QAccessibleInterfaceITF) int { + if ptr.Pointer() != nil { + return int(C.QAccessibleInterface_IndexOfChild(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAccessibleInterface(child)))) + } + return 0 +} + +func (ptr *QAccessibleInterface) Interface_cast(ty QAccessible__InterfaceType) { + if ptr.Pointer() != nil { + C.QAccessibleInterface_Interface_cast(C.QtObjectPtr(ptr.Pointer()), C.int(ty)) + } +} + +func (ptr *QAccessibleInterface) IsValid() bool { + if ptr.Pointer() != nil { + return C.QAccessibleInterface_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAccessibleInterface) Object() *core.QObject { + if ptr.Pointer() != nil { + return core.QObjectFromPointer(unsafe.Pointer(C.QAccessibleInterface_Object(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAccessibleInterface) Parent() *QAccessibleInterface { + if ptr.Pointer() != nil { + return QAccessibleInterfaceFromPointer(unsafe.Pointer(C.QAccessibleInterface_Parent(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAccessibleInterface) Role() QAccessible__Role { + if ptr.Pointer() != nil { + return QAccessible__Role(C.QAccessibleInterface_Role(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleInterface) SetText(t QAccessible__Text, text string) { + if ptr.Pointer() != nil { + C.QAccessibleInterface_SetText(C.QtObjectPtr(ptr.Pointer()), C.int(t), C.CString(text)) + } +} + +func (ptr *QAccessibleInterface) TableCellInterface() *QAccessibleTableCellInterface { + if ptr.Pointer() != nil { + return QAccessibleTableCellInterfaceFromPointer(unsafe.Pointer(C.QAccessibleInterface_TableCellInterface(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAccessibleInterface) TableInterface() *QAccessibleTableInterface { + if ptr.Pointer() != nil { + return QAccessibleTableInterfaceFromPointer(unsafe.Pointer(C.QAccessibleInterface_TableInterface(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAccessibleInterface) Text(t QAccessible__Text) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAccessibleInterface_Text(C.QtObjectPtr(ptr.Pointer()), C.int(t))) + } + return "" +} + +func (ptr *QAccessibleInterface) TextInterface() *QAccessibleTextInterface { + if ptr.Pointer() != nil { + return QAccessibleTextInterfaceFromPointer(unsafe.Pointer(C.QAccessibleInterface_TextInterface(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAccessibleInterface) ValueInterface() *QAccessibleValueInterface { + if ptr.Pointer() != nil { + return QAccessibleValueInterfaceFromPointer(unsafe.Pointer(C.QAccessibleInterface_ValueInterface(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAccessibleInterface) Window() *QWindow { + if ptr.Pointer() != nil { + return QWindowFromPointer(unsafe.Pointer(C.QAccessibleInterface_Window(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} diff --git a/gui/qaccessibleinterface.h b/gui/qaccessibleinterface.h new file mode 100755 index 00000000..ed86d3d1 --- /dev/null +++ b/gui/qaccessibleinterface.h @@ -0,0 +1,27 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAccessibleInterface_ActionInterface(QtObjectPtr ptr); +QtObjectPtr QAccessibleInterface_Child(QtObjectPtr ptr, int index); +QtObjectPtr QAccessibleInterface_ChildAt(QtObjectPtr ptr, int x, int y); +int QAccessibleInterface_ChildCount(QtObjectPtr ptr); +QtObjectPtr QAccessibleInterface_FocusChild(QtObjectPtr ptr); +int QAccessibleInterface_IndexOfChild(QtObjectPtr ptr, QtObjectPtr child); +void QAccessibleInterface_Interface_cast(QtObjectPtr ptr, int ty); +int QAccessibleInterface_IsValid(QtObjectPtr ptr); +QtObjectPtr QAccessibleInterface_Object(QtObjectPtr ptr); +QtObjectPtr QAccessibleInterface_Parent(QtObjectPtr ptr); +int QAccessibleInterface_Role(QtObjectPtr ptr); +void QAccessibleInterface_SetText(QtObjectPtr ptr, int t, char* text); +QtObjectPtr QAccessibleInterface_TableCellInterface(QtObjectPtr ptr); +QtObjectPtr QAccessibleInterface_TableInterface(QtObjectPtr ptr); +char* QAccessibleInterface_Text(QtObjectPtr ptr, int t); +QtObjectPtr QAccessibleInterface_TextInterface(QtObjectPtr ptr); +QtObjectPtr QAccessibleInterface_ValueInterface(QtObjectPtr ptr); +QtObjectPtr QAccessibleInterface_Window(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qaccessibleobject.cpp b/gui/qaccessibleobject.cpp new file mode 100755 index 00000000..db67b9b2 --- /dev/null +++ b/gui/qaccessibleobject.cpp @@ -0,0 +1,9 @@ +#include "qaccessibleobject.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/gui/qaccessibleobject.go b/gui/qaccessibleobject.go new file mode 100755 index 00000000..8964aa58 --- /dev/null +++ b/gui/qaccessibleobject.go @@ -0,0 +1,33 @@ +package gui + +//#include "qaccessibleobject.h" +import "C" +import ( + "unsafe" +) + +type QAccessibleObject struct { + QAccessibleInterface +} + +type QAccessibleObjectITF interface { + QAccessibleInterfaceITF + QAccessibleObjectPTR() *QAccessibleObject +} + +func PointerFromQAccessibleObject(ptr QAccessibleObjectITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAccessibleObjectPTR().Pointer() + } + return nil +} + +func QAccessibleObjectFromPointer(ptr unsafe.Pointer) *QAccessibleObject { + var n = new(QAccessibleObject) + n.SetPointer(ptr) + return n +} + +func (ptr *QAccessibleObject) QAccessibleObjectPTR() *QAccessibleObject { + return ptr +} diff --git a/gui/qaccessibleobject.h b/gui/qaccessibleobject.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/gui/qaccessibleobject.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qaccessibleplugin.cpp b/gui/qaccessibleplugin.cpp new file mode 100755 index 00000000..f91ab484 --- /dev/null +++ b/gui/qaccessibleplugin.cpp @@ -0,0 +1,9 @@ +#include "qaccessibleplugin.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/gui/qaccessibleplugin.go b/gui/qaccessibleplugin.go new file mode 100755 index 00000000..92fa50bf --- /dev/null +++ b/gui/qaccessibleplugin.go @@ -0,0 +1,38 @@ +package gui + +//#include "qaccessibleplugin.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAccessiblePlugin struct { + core.QObject +} + +type QAccessiblePluginITF interface { + core.QObjectITF + QAccessiblePluginPTR() *QAccessiblePlugin +} + +func PointerFromQAccessiblePlugin(ptr QAccessiblePluginITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAccessiblePluginPTR().Pointer() + } + return nil +} + +func QAccessiblePluginFromPointer(ptr unsafe.Pointer) *QAccessiblePlugin { + var n = new(QAccessiblePlugin) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAccessiblePlugin_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAccessiblePlugin) QAccessiblePluginPTR() *QAccessiblePlugin { + return ptr +} diff --git a/gui/qaccessibleplugin.h b/gui/qaccessibleplugin.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/gui/qaccessibleplugin.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qaccessiblestatechangeevent.cpp b/gui/qaccessiblestatechangeevent.cpp new file mode 100755 index 00000000..8de4914b --- /dev/null +++ b/gui/qaccessiblestatechangeevent.cpp @@ -0,0 +1,13 @@ +#include "qaccessiblestatechangeevent.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAccessibleStateChangeEvent: public QAccessibleStateChangeEvent { +public: +}; + diff --git a/gui/qaccessiblestatechangeevent.go b/gui/qaccessiblestatechangeevent.go new file mode 100755 index 00000000..1d6445c5 --- /dev/null +++ b/gui/qaccessiblestatechangeevent.go @@ -0,0 +1,33 @@ +package gui + +//#include "qaccessiblestatechangeevent.h" +import "C" +import ( + "unsafe" +) + +type QAccessibleStateChangeEvent struct { + QAccessibleEvent +} + +type QAccessibleStateChangeEventITF interface { + QAccessibleEventITF + QAccessibleStateChangeEventPTR() *QAccessibleStateChangeEvent +} + +func PointerFromQAccessibleStateChangeEvent(ptr QAccessibleStateChangeEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAccessibleStateChangeEventPTR().Pointer() + } + return nil +} + +func QAccessibleStateChangeEventFromPointer(ptr unsafe.Pointer) *QAccessibleStateChangeEvent { + var n = new(QAccessibleStateChangeEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QAccessibleStateChangeEvent) QAccessibleStateChangeEventPTR() *QAccessibleStateChangeEvent { + return ptr +} diff --git a/gui/qaccessiblestatechangeevent.h b/gui/qaccessiblestatechangeevent.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/gui/qaccessiblestatechangeevent.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qaccessibletablecellinterface.cpp b/gui/qaccessibletablecellinterface.cpp new file mode 100755 index 00000000..10b6b903 --- /dev/null +++ b/gui/qaccessibletablecellinterface.cpp @@ -0,0 +1,41 @@ +#include "qaccessibletablecellinterface.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAccessibleTableCellInterface: public QAccessibleTableCellInterface { +public: +}; + +int QAccessibleTableCellInterface_ColumnExtent(QtObjectPtr ptr){ + return static_cast(ptr)->columnExtent(); +} + +int QAccessibleTableCellInterface_ColumnIndex(QtObjectPtr ptr){ + return static_cast(ptr)->columnIndex(); +} + +int QAccessibleTableCellInterface_IsSelected(QtObjectPtr ptr){ + return static_cast(ptr)->isSelected(); +} + +int QAccessibleTableCellInterface_RowExtent(QtObjectPtr ptr){ + return static_cast(ptr)->rowExtent(); +} + +int QAccessibleTableCellInterface_RowIndex(QtObjectPtr ptr){ + return static_cast(ptr)->rowIndex(); +} + +QtObjectPtr QAccessibleTableCellInterface_Table(QtObjectPtr ptr){ + return static_cast(ptr)->table(); +} + +void QAccessibleTableCellInterface_DestroyQAccessibleTableCellInterface(QtObjectPtr ptr){ + static_cast(ptr)->~QAccessibleTableCellInterface(); +} + diff --git a/gui/qaccessibletablecellinterface.go b/gui/qaccessibletablecellinterface.go new file mode 100755 index 00000000..32aba852 --- /dev/null +++ b/gui/qaccessibletablecellinterface.go @@ -0,0 +1,88 @@ +package gui + +//#include "qaccessibletablecellinterface.h" +import "C" +import ( + "unsafe" +) + +type QAccessibleTableCellInterface struct { + ptr unsafe.Pointer +} + +type QAccessibleTableCellInterfaceITF interface { + QAccessibleTableCellInterfacePTR() *QAccessibleTableCellInterface +} + +func (p *QAccessibleTableCellInterface) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QAccessibleTableCellInterface) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQAccessibleTableCellInterface(ptr QAccessibleTableCellInterfaceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAccessibleTableCellInterfacePTR().Pointer() + } + return nil +} + +func QAccessibleTableCellInterfaceFromPointer(ptr unsafe.Pointer) *QAccessibleTableCellInterface { + var n = new(QAccessibleTableCellInterface) + n.SetPointer(ptr) + return n +} + +func (ptr *QAccessibleTableCellInterface) QAccessibleTableCellInterfacePTR() *QAccessibleTableCellInterface { + return ptr +} + +func (ptr *QAccessibleTableCellInterface) ColumnExtent() int { + if ptr.Pointer() != nil { + return int(C.QAccessibleTableCellInterface_ColumnExtent(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleTableCellInterface) ColumnIndex() int { + if ptr.Pointer() != nil { + return int(C.QAccessibleTableCellInterface_ColumnIndex(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleTableCellInterface) IsSelected() bool { + if ptr.Pointer() != nil { + return C.QAccessibleTableCellInterface_IsSelected(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAccessibleTableCellInterface) RowExtent() int { + if ptr.Pointer() != nil { + return int(C.QAccessibleTableCellInterface_RowExtent(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleTableCellInterface) RowIndex() int { + if ptr.Pointer() != nil { + return int(C.QAccessibleTableCellInterface_RowIndex(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleTableCellInterface) Table() *QAccessibleInterface { + if ptr.Pointer() != nil { + return QAccessibleInterfaceFromPointer(unsafe.Pointer(C.QAccessibleTableCellInterface_Table(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAccessibleTableCellInterface) DestroyQAccessibleTableCellInterface() { + if ptr.Pointer() != nil { + C.QAccessibleTableCellInterface_DestroyQAccessibleTableCellInterface(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qaccessibletablecellinterface.h b/gui/qaccessibletablecellinterface.h new file mode 100755 index 00000000..754dfa4c --- /dev/null +++ b/gui/qaccessibletablecellinterface.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QAccessibleTableCellInterface_ColumnExtent(QtObjectPtr ptr); +int QAccessibleTableCellInterface_ColumnIndex(QtObjectPtr ptr); +int QAccessibleTableCellInterface_IsSelected(QtObjectPtr ptr); +int QAccessibleTableCellInterface_RowExtent(QtObjectPtr ptr); +int QAccessibleTableCellInterface_RowIndex(QtObjectPtr ptr); +QtObjectPtr QAccessibleTableCellInterface_Table(QtObjectPtr ptr); +void QAccessibleTableCellInterface_DestroyQAccessibleTableCellInterface(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qaccessibletableinterface.cpp b/gui/qaccessibletableinterface.cpp new file mode 100755 index 00000000..a9e225b9 --- /dev/null +++ b/gui/qaccessibletableinterface.cpp @@ -0,0 +1,86 @@ +#include "qaccessibletableinterface.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAccessibleTableInterface: public QAccessibleTableInterface { +public: +}; + +QtObjectPtr QAccessibleTableInterface_Caption(QtObjectPtr ptr){ + return static_cast(ptr)->caption(); +} + +QtObjectPtr QAccessibleTableInterface_CellAt(QtObjectPtr ptr, int row, int column){ + return static_cast(ptr)->cellAt(row, column); +} + +int QAccessibleTableInterface_ColumnCount(QtObjectPtr ptr){ + return static_cast(ptr)->columnCount(); +} + +char* QAccessibleTableInterface_ColumnDescription(QtObjectPtr ptr, int column){ + return static_cast(ptr)->columnDescription(column).toUtf8().data(); +} + +int QAccessibleTableInterface_IsColumnSelected(QtObjectPtr ptr, int column){ + return static_cast(ptr)->isColumnSelected(column); +} + +int QAccessibleTableInterface_IsRowSelected(QtObjectPtr ptr, int row){ + return static_cast(ptr)->isRowSelected(row); +} + +void QAccessibleTableInterface_ModelChange(QtObjectPtr ptr, QtObjectPtr event){ + static_cast(ptr)->modelChange(static_cast(event)); +} + +int QAccessibleTableInterface_RowCount(QtObjectPtr ptr){ + return static_cast(ptr)->rowCount(); +} + +char* QAccessibleTableInterface_RowDescription(QtObjectPtr ptr, int row){ + return static_cast(ptr)->rowDescription(row).toUtf8().data(); +} + +int QAccessibleTableInterface_SelectColumn(QtObjectPtr ptr, int column){ + return static_cast(ptr)->selectColumn(column); +} + +int QAccessibleTableInterface_SelectRow(QtObjectPtr ptr, int row){ + return static_cast(ptr)->selectRow(row); +} + +int QAccessibleTableInterface_SelectedCellCount(QtObjectPtr ptr){ + return static_cast(ptr)->selectedCellCount(); +} + +int QAccessibleTableInterface_SelectedColumnCount(QtObjectPtr ptr){ + return static_cast(ptr)->selectedColumnCount(); +} + +int QAccessibleTableInterface_SelectedRowCount(QtObjectPtr ptr){ + return static_cast(ptr)->selectedRowCount(); +} + +QtObjectPtr QAccessibleTableInterface_Summary(QtObjectPtr ptr){ + return static_cast(ptr)->summary(); +} + +int QAccessibleTableInterface_UnselectColumn(QtObjectPtr ptr, int column){ + return static_cast(ptr)->unselectColumn(column); +} + +int QAccessibleTableInterface_UnselectRow(QtObjectPtr ptr, int row){ + return static_cast(ptr)->unselectRow(row); +} + +void QAccessibleTableInterface_DestroyQAccessibleTableInterface(QtObjectPtr ptr){ + static_cast(ptr)->~QAccessibleTableInterface(); +} + diff --git a/gui/qaccessibletableinterface.go b/gui/qaccessibletableinterface.go new file mode 100755 index 00000000..7dd6b072 --- /dev/null +++ b/gui/qaccessibletableinterface.go @@ -0,0 +1,164 @@ +package gui + +//#include "qaccessibletableinterface.h" +import "C" +import ( + "unsafe" +) + +type QAccessibleTableInterface struct { + ptr unsafe.Pointer +} + +type QAccessibleTableInterfaceITF interface { + QAccessibleTableInterfacePTR() *QAccessibleTableInterface +} + +func (p *QAccessibleTableInterface) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QAccessibleTableInterface) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQAccessibleTableInterface(ptr QAccessibleTableInterfaceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAccessibleTableInterfacePTR().Pointer() + } + return nil +} + +func QAccessibleTableInterfaceFromPointer(ptr unsafe.Pointer) *QAccessibleTableInterface { + var n = new(QAccessibleTableInterface) + n.SetPointer(ptr) + return n +} + +func (ptr *QAccessibleTableInterface) QAccessibleTableInterfacePTR() *QAccessibleTableInterface { + return ptr +} + +func (ptr *QAccessibleTableInterface) Caption() *QAccessibleInterface { + if ptr.Pointer() != nil { + return QAccessibleInterfaceFromPointer(unsafe.Pointer(C.QAccessibleTableInterface_Caption(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAccessibleTableInterface) CellAt(row int, column int) *QAccessibleInterface { + if ptr.Pointer() != nil { + return QAccessibleInterfaceFromPointer(unsafe.Pointer(C.QAccessibleTableInterface_CellAt(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column)))) + } + return nil +} + +func (ptr *QAccessibleTableInterface) ColumnCount() int { + if ptr.Pointer() != nil { + return int(C.QAccessibleTableInterface_ColumnCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleTableInterface) ColumnDescription(column int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAccessibleTableInterface_ColumnDescription(C.QtObjectPtr(ptr.Pointer()), C.int(column))) + } + return "" +} + +func (ptr *QAccessibleTableInterface) IsColumnSelected(column int) bool { + if ptr.Pointer() != nil { + return C.QAccessibleTableInterface_IsColumnSelected(C.QtObjectPtr(ptr.Pointer()), C.int(column)) != 0 + } + return false +} + +func (ptr *QAccessibleTableInterface) IsRowSelected(row int) bool { + if ptr.Pointer() != nil { + return C.QAccessibleTableInterface_IsRowSelected(C.QtObjectPtr(ptr.Pointer()), C.int(row)) != 0 + } + return false +} + +func (ptr *QAccessibleTableInterface) ModelChange(event QAccessibleTableModelChangeEventITF) { + if ptr.Pointer() != nil { + C.QAccessibleTableInterface_ModelChange(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAccessibleTableModelChangeEvent(event))) + } +} + +func (ptr *QAccessibleTableInterface) RowCount() int { + if ptr.Pointer() != nil { + return int(C.QAccessibleTableInterface_RowCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleTableInterface) RowDescription(row int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAccessibleTableInterface_RowDescription(C.QtObjectPtr(ptr.Pointer()), C.int(row))) + } + return "" +} + +func (ptr *QAccessibleTableInterface) SelectColumn(column int) bool { + if ptr.Pointer() != nil { + return C.QAccessibleTableInterface_SelectColumn(C.QtObjectPtr(ptr.Pointer()), C.int(column)) != 0 + } + return false +} + +func (ptr *QAccessibleTableInterface) SelectRow(row int) bool { + if ptr.Pointer() != nil { + return C.QAccessibleTableInterface_SelectRow(C.QtObjectPtr(ptr.Pointer()), C.int(row)) != 0 + } + return false +} + +func (ptr *QAccessibleTableInterface) SelectedCellCount() int { + if ptr.Pointer() != nil { + return int(C.QAccessibleTableInterface_SelectedCellCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleTableInterface) SelectedColumnCount() int { + if ptr.Pointer() != nil { + return int(C.QAccessibleTableInterface_SelectedColumnCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleTableInterface) SelectedRowCount() int { + if ptr.Pointer() != nil { + return int(C.QAccessibleTableInterface_SelectedRowCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleTableInterface) Summary() *QAccessibleInterface { + if ptr.Pointer() != nil { + return QAccessibleInterfaceFromPointer(unsafe.Pointer(C.QAccessibleTableInterface_Summary(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAccessibleTableInterface) UnselectColumn(column int) bool { + if ptr.Pointer() != nil { + return C.QAccessibleTableInterface_UnselectColumn(C.QtObjectPtr(ptr.Pointer()), C.int(column)) != 0 + } + return false +} + +func (ptr *QAccessibleTableInterface) UnselectRow(row int) bool { + if ptr.Pointer() != nil { + return C.QAccessibleTableInterface_UnselectRow(C.QtObjectPtr(ptr.Pointer()), C.int(row)) != 0 + } + return false +} + +func (ptr *QAccessibleTableInterface) DestroyQAccessibleTableInterface() { + if ptr.Pointer() != nil { + C.QAccessibleTableInterface_DestroyQAccessibleTableInterface(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qaccessibletableinterface.h b/gui/qaccessibletableinterface.h new file mode 100755 index 00000000..86ce6961 --- /dev/null +++ b/gui/qaccessibletableinterface.h @@ -0,0 +1,27 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAccessibleTableInterface_Caption(QtObjectPtr ptr); +QtObjectPtr QAccessibleTableInterface_CellAt(QtObjectPtr ptr, int row, int column); +int QAccessibleTableInterface_ColumnCount(QtObjectPtr ptr); +char* QAccessibleTableInterface_ColumnDescription(QtObjectPtr ptr, int column); +int QAccessibleTableInterface_IsColumnSelected(QtObjectPtr ptr, int column); +int QAccessibleTableInterface_IsRowSelected(QtObjectPtr ptr, int row); +void QAccessibleTableInterface_ModelChange(QtObjectPtr ptr, QtObjectPtr event); +int QAccessibleTableInterface_RowCount(QtObjectPtr ptr); +char* QAccessibleTableInterface_RowDescription(QtObjectPtr ptr, int row); +int QAccessibleTableInterface_SelectColumn(QtObjectPtr ptr, int column); +int QAccessibleTableInterface_SelectRow(QtObjectPtr ptr, int row); +int QAccessibleTableInterface_SelectedCellCount(QtObjectPtr ptr); +int QAccessibleTableInterface_SelectedColumnCount(QtObjectPtr ptr); +int QAccessibleTableInterface_SelectedRowCount(QtObjectPtr ptr); +QtObjectPtr QAccessibleTableInterface_Summary(QtObjectPtr ptr); +int QAccessibleTableInterface_UnselectColumn(QtObjectPtr ptr, int column); +int QAccessibleTableInterface_UnselectRow(QtObjectPtr ptr, int row); +void QAccessibleTableInterface_DestroyQAccessibleTableInterface(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qaccessibletablemodelchangeevent.cpp b/gui/qaccessibletablemodelchangeevent.cpp new file mode 100755 index 00000000..bba7e005 --- /dev/null +++ b/gui/qaccessibletablemodelchangeevent.cpp @@ -0,0 +1,63 @@ +#include "qaccessibletablemodelchangeevent.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAccessibleTableModelChangeEvent: public QAccessibleTableModelChangeEvent { +public: +}; + +QtObjectPtr QAccessibleTableModelChangeEvent_NewQAccessibleTableModelChangeEvent2(QtObjectPtr iface, int changeType){ + return new QAccessibleTableModelChangeEvent(static_cast(iface), static_cast(changeType)); +} + +QtObjectPtr QAccessibleTableModelChangeEvent_NewQAccessibleTableModelChangeEvent(QtObjectPtr object, int changeType){ + return new QAccessibleTableModelChangeEvent(static_cast(object), static_cast(changeType)); +} + +int QAccessibleTableModelChangeEvent_FirstColumn(QtObjectPtr ptr){ + return static_cast(ptr)->firstColumn(); +} + +int QAccessibleTableModelChangeEvent_FirstRow(QtObjectPtr ptr){ + return static_cast(ptr)->firstRow(); +} + +int QAccessibleTableModelChangeEvent_LastColumn(QtObjectPtr ptr){ + return static_cast(ptr)->lastColumn(); +} + +int QAccessibleTableModelChangeEvent_LastRow(QtObjectPtr ptr){ + return static_cast(ptr)->lastRow(); +} + +int QAccessibleTableModelChangeEvent_ModelChangeType(QtObjectPtr ptr){ + return static_cast(ptr)->modelChangeType(); +} + +void QAccessibleTableModelChangeEvent_SetFirstColumn(QtObjectPtr ptr, int column){ + static_cast(ptr)->setFirstColumn(column); +} + +void QAccessibleTableModelChangeEvent_SetFirstRow(QtObjectPtr ptr, int row){ + static_cast(ptr)->setFirstRow(row); +} + +void QAccessibleTableModelChangeEvent_SetLastColumn(QtObjectPtr ptr, int column){ + static_cast(ptr)->setLastColumn(column); +} + +void QAccessibleTableModelChangeEvent_SetLastRow(QtObjectPtr ptr, int row){ + static_cast(ptr)->setLastRow(row); +} + +void QAccessibleTableModelChangeEvent_SetModelChangeType(QtObjectPtr ptr, int changeType){ + static_cast(ptr)->setModelChangeType(static_cast(changeType)); +} + diff --git a/gui/qaccessibletablemodelchangeevent.go b/gui/qaccessibletablemodelchangeevent.go new file mode 100755 index 00000000..ec4f1a53 --- /dev/null +++ b/gui/qaccessibletablemodelchangeevent.go @@ -0,0 +1,119 @@ +package gui + +//#include "qaccessibletablemodelchangeevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAccessibleTableModelChangeEvent struct { + QAccessibleEvent +} + +type QAccessibleTableModelChangeEventITF interface { + QAccessibleEventITF + QAccessibleTableModelChangeEventPTR() *QAccessibleTableModelChangeEvent +} + +func PointerFromQAccessibleTableModelChangeEvent(ptr QAccessibleTableModelChangeEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAccessibleTableModelChangeEventPTR().Pointer() + } + return nil +} + +func QAccessibleTableModelChangeEventFromPointer(ptr unsafe.Pointer) *QAccessibleTableModelChangeEvent { + var n = new(QAccessibleTableModelChangeEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QAccessibleTableModelChangeEvent) QAccessibleTableModelChangeEventPTR() *QAccessibleTableModelChangeEvent { + return ptr +} + +//QAccessibleTableModelChangeEvent::ModelChangeType +type QAccessibleTableModelChangeEvent__ModelChangeType int + +var ( + QAccessibleTableModelChangeEvent__ModelReset = QAccessibleTableModelChangeEvent__ModelChangeType(0) + QAccessibleTableModelChangeEvent__DataChanged = QAccessibleTableModelChangeEvent__ModelChangeType(1) + QAccessibleTableModelChangeEvent__RowsInserted = QAccessibleTableModelChangeEvent__ModelChangeType(2) + QAccessibleTableModelChangeEvent__ColumnsInserted = QAccessibleTableModelChangeEvent__ModelChangeType(3) + QAccessibleTableModelChangeEvent__RowsRemoved = QAccessibleTableModelChangeEvent__ModelChangeType(4) + QAccessibleTableModelChangeEvent__ColumnsRemoved = QAccessibleTableModelChangeEvent__ModelChangeType(5) +) + +func NewQAccessibleTableModelChangeEvent2(iface QAccessibleInterfaceITF, changeType QAccessibleTableModelChangeEvent__ModelChangeType) *QAccessibleTableModelChangeEvent { + return QAccessibleTableModelChangeEventFromPointer(unsafe.Pointer(C.QAccessibleTableModelChangeEvent_NewQAccessibleTableModelChangeEvent2(C.QtObjectPtr(PointerFromQAccessibleInterface(iface)), C.int(changeType)))) +} + +func NewQAccessibleTableModelChangeEvent(object core.QObjectITF, changeType QAccessibleTableModelChangeEvent__ModelChangeType) *QAccessibleTableModelChangeEvent { + return QAccessibleTableModelChangeEventFromPointer(unsafe.Pointer(C.QAccessibleTableModelChangeEvent_NewQAccessibleTableModelChangeEvent(C.QtObjectPtr(core.PointerFromQObject(object)), C.int(changeType)))) +} + +func (ptr *QAccessibleTableModelChangeEvent) FirstColumn() int { + if ptr.Pointer() != nil { + return int(C.QAccessibleTableModelChangeEvent_FirstColumn(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleTableModelChangeEvent) FirstRow() int { + if ptr.Pointer() != nil { + return int(C.QAccessibleTableModelChangeEvent_FirstRow(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleTableModelChangeEvent) LastColumn() int { + if ptr.Pointer() != nil { + return int(C.QAccessibleTableModelChangeEvent_LastColumn(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleTableModelChangeEvent) LastRow() int { + if ptr.Pointer() != nil { + return int(C.QAccessibleTableModelChangeEvent_LastRow(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleTableModelChangeEvent) ModelChangeType() QAccessibleTableModelChangeEvent__ModelChangeType { + if ptr.Pointer() != nil { + return QAccessibleTableModelChangeEvent__ModelChangeType(C.QAccessibleTableModelChangeEvent_ModelChangeType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleTableModelChangeEvent) SetFirstColumn(column int) { + if ptr.Pointer() != nil { + C.QAccessibleTableModelChangeEvent_SetFirstColumn(C.QtObjectPtr(ptr.Pointer()), C.int(column)) + } +} + +func (ptr *QAccessibleTableModelChangeEvent) SetFirstRow(row int) { + if ptr.Pointer() != nil { + C.QAccessibleTableModelChangeEvent_SetFirstRow(C.QtObjectPtr(ptr.Pointer()), C.int(row)) + } +} + +func (ptr *QAccessibleTableModelChangeEvent) SetLastColumn(column int) { + if ptr.Pointer() != nil { + C.QAccessibleTableModelChangeEvent_SetLastColumn(C.QtObjectPtr(ptr.Pointer()), C.int(column)) + } +} + +func (ptr *QAccessibleTableModelChangeEvent) SetLastRow(row int) { + if ptr.Pointer() != nil { + C.QAccessibleTableModelChangeEvent_SetLastRow(C.QtObjectPtr(ptr.Pointer()), C.int(row)) + } +} + +func (ptr *QAccessibleTableModelChangeEvent) SetModelChangeType(changeType QAccessibleTableModelChangeEvent__ModelChangeType) { + if ptr.Pointer() != nil { + C.QAccessibleTableModelChangeEvent_SetModelChangeType(C.QtObjectPtr(ptr.Pointer()), C.int(changeType)) + } +} diff --git a/gui/qaccessibletablemodelchangeevent.h b/gui/qaccessibletablemodelchangeevent.h new file mode 100755 index 00000000..63480ff2 --- /dev/null +++ b/gui/qaccessibletablemodelchangeevent.h @@ -0,0 +1,21 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAccessibleTableModelChangeEvent_NewQAccessibleTableModelChangeEvent2(QtObjectPtr iface, int changeType); +QtObjectPtr QAccessibleTableModelChangeEvent_NewQAccessibleTableModelChangeEvent(QtObjectPtr object, int changeType); +int QAccessibleTableModelChangeEvent_FirstColumn(QtObjectPtr ptr); +int QAccessibleTableModelChangeEvent_FirstRow(QtObjectPtr ptr); +int QAccessibleTableModelChangeEvent_LastColumn(QtObjectPtr ptr); +int QAccessibleTableModelChangeEvent_LastRow(QtObjectPtr ptr); +int QAccessibleTableModelChangeEvent_ModelChangeType(QtObjectPtr ptr); +void QAccessibleTableModelChangeEvent_SetFirstColumn(QtObjectPtr ptr, int column); +void QAccessibleTableModelChangeEvent_SetFirstRow(QtObjectPtr ptr, int row); +void QAccessibleTableModelChangeEvent_SetLastColumn(QtObjectPtr ptr, int column); +void QAccessibleTableModelChangeEvent_SetLastRow(QtObjectPtr ptr, int row); +void QAccessibleTableModelChangeEvent_SetModelChangeType(QtObjectPtr ptr, int changeType); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qaccessibletextcursorevent.cpp b/gui/qaccessibletextcursorevent.cpp new file mode 100755 index 00000000..45df24b9 --- /dev/null +++ b/gui/qaccessibletextcursorevent.cpp @@ -0,0 +1,31 @@ +#include "qaccessibletextcursorevent.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAccessibleTextCursorEvent: public QAccessibleTextCursorEvent { +public: +}; + +QtObjectPtr QAccessibleTextCursorEvent_NewQAccessibleTextCursorEvent2(QtObjectPtr iface, int cursorPos){ + return new QAccessibleTextCursorEvent(static_cast(iface), cursorPos); +} + +QtObjectPtr QAccessibleTextCursorEvent_NewQAccessibleTextCursorEvent(QtObjectPtr object, int cursorPos){ + return new QAccessibleTextCursorEvent(static_cast(object), cursorPos); +} + +int QAccessibleTextCursorEvent_CursorPosition(QtObjectPtr ptr){ + return static_cast(ptr)->cursorPosition(); +} + +void QAccessibleTextCursorEvent_SetCursorPosition(QtObjectPtr ptr, int position){ + static_cast(ptr)->setCursorPosition(position); +} + diff --git a/gui/qaccessibletextcursorevent.go b/gui/qaccessibletextcursorevent.go new file mode 100755 index 00000000..38381b2d --- /dev/null +++ b/gui/qaccessibletextcursorevent.go @@ -0,0 +1,55 @@ +package gui + +//#include "qaccessibletextcursorevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAccessibleTextCursorEvent struct { + QAccessibleEvent +} + +type QAccessibleTextCursorEventITF interface { + QAccessibleEventITF + QAccessibleTextCursorEventPTR() *QAccessibleTextCursorEvent +} + +func PointerFromQAccessibleTextCursorEvent(ptr QAccessibleTextCursorEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAccessibleTextCursorEventPTR().Pointer() + } + return nil +} + +func QAccessibleTextCursorEventFromPointer(ptr unsafe.Pointer) *QAccessibleTextCursorEvent { + var n = new(QAccessibleTextCursorEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QAccessibleTextCursorEvent) QAccessibleTextCursorEventPTR() *QAccessibleTextCursorEvent { + return ptr +} + +func NewQAccessibleTextCursorEvent2(iface QAccessibleInterfaceITF, cursorPos int) *QAccessibleTextCursorEvent { + return QAccessibleTextCursorEventFromPointer(unsafe.Pointer(C.QAccessibleTextCursorEvent_NewQAccessibleTextCursorEvent2(C.QtObjectPtr(PointerFromQAccessibleInterface(iface)), C.int(cursorPos)))) +} + +func NewQAccessibleTextCursorEvent(object core.QObjectITF, cursorPos int) *QAccessibleTextCursorEvent { + return QAccessibleTextCursorEventFromPointer(unsafe.Pointer(C.QAccessibleTextCursorEvent_NewQAccessibleTextCursorEvent(C.QtObjectPtr(core.PointerFromQObject(object)), C.int(cursorPos)))) +} + +func (ptr *QAccessibleTextCursorEvent) CursorPosition() int { + if ptr.Pointer() != nil { + return int(C.QAccessibleTextCursorEvent_CursorPosition(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleTextCursorEvent) SetCursorPosition(position int) { + if ptr.Pointer() != nil { + C.QAccessibleTextCursorEvent_SetCursorPosition(C.QtObjectPtr(ptr.Pointer()), C.int(position)) + } +} diff --git a/gui/qaccessibletextcursorevent.h b/gui/qaccessibletextcursorevent.h new file mode 100755 index 00000000..b0b528d3 --- /dev/null +++ b/gui/qaccessibletextcursorevent.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAccessibleTextCursorEvent_NewQAccessibleTextCursorEvent2(QtObjectPtr iface, int cursorPos); +QtObjectPtr QAccessibleTextCursorEvent_NewQAccessibleTextCursorEvent(QtObjectPtr object, int cursorPos); +int QAccessibleTextCursorEvent_CursorPosition(QtObjectPtr ptr); +void QAccessibleTextCursorEvent_SetCursorPosition(QtObjectPtr ptr, int position); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qaccessibletextinsertevent.cpp b/gui/qaccessibletextinsertevent.cpp new file mode 100755 index 00000000..05f6ca66 --- /dev/null +++ b/gui/qaccessibletextinsertevent.cpp @@ -0,0 +1,31 @@ +#include "qaccessibletextinsertevent.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAccessibleTextInsertEvent: public QAccessibleTextInsertEvent { +public: +}; + +QtObjectPtr QAccessibleTextInsertEvent_NewQAccessibleTextInsertEvent2(QtObjectPtr iface, int position, char* text){ + return new QAccessibleTextInsertEvent(static_cast(iface), position, QString(text)); +} + +QtObjectPtr QAccessibleTextInsertEvent_NewQAccessibleTextInsertEvent(QtObjectPtr object, int position, char* text){ + return new QAccessibleTextInsertEvent(static_cast(object), position, QString(text)); +} + +int QAccessibleTextInsertEvent_ChangePosition(QtObjectPtr ptr){ + return static_cast(ptr)->changePosition(); +} + +char* QAccessibleTextInsertEvent_TextInserted(QtObjectPtr ptr){ + return static_cast(ptr)->textInserted().toUtf8().data(); +} + diff --git a/gui/qaccessibletextinsertevent.go b/gui/qaccessibletextinsertevent.go new file mode 100755 index 00000000..d9ff125f --- /dev/null +++ b/gui/qaccessibletextinsertevent.go @@ -0,0 +1,56 @@ +package gui + +//#include "qaccessibletextinsertevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAccessibleTextInsertEvent struct { + QAccessibleTextCursorEvent +} + +type QAccessibleTextInsertEventITF interface { + QAccessibleTextCursorEventITF + QAccessibleTextInsertEventPTR() *QAccessibleTextInsertEvent +} + +func PointerFromQAccessibleTextInsertEvent(ptr QAccessibleTextInsertEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAccessibleTextInsertEventPTR().Pointer() + } + return nil +} + +func QAccessibleTextInsertEventFromPointer(ptr unsafe.Pointer) *QAccessibleTextInsertEvent { + var n = new(QAccessibleTextInsertEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QAccessibleTextInsertEvent) QAccessibleTextInsertEventPTR() *QAccessibleTextInsertEvent { + return ptr +} + +func NewQAccessibleTextInsertEvent2(iface QAccessibleInterfaceITF, position int, text string) *QAccessibleTextInsertEvent { + return QAccessibleTextInsertEventFromPointer(unsafe.Pointer(C.QAccessibleTextInsertEvent_NewQAccessibleTextInsertEvent2(C.QtObjectPtr(PointerFromQAccessibleInterface(iface)), C.int(position), C.CString(text)))) +} + +func NewQAccessibleTextInsertEvent(object core.QObjectITF, position int, text string) *QAccessibleTextInsertEvent { + return QAccessibleTextInsertEventFromPointer(unsafe.Pointer(C.QAccessibleTextInsertEvent_NewQAccessibleTextInsertEvent(C.QtObjectPtr(core.PointerFromQObject(object)), C.int(position), C.CString(text)))) +} + +func (ptr *QAccessibleTextInsertEvent) ChangePosition() int { + if ptr.Pointer() != nil { + return int(C.QAccessibleTextInsertEvent_ChangePosition(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleTextInsertEvent) TextInserted() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAccessibleTextInsertEvent_TextInserted(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/gui/qaccessibletextinsertevent.h b/gui/qaccessibletextinsertevent.h new file mode 100755 index 00000000..886dd1da --- /dev/null +++ b/gui/qaccessibletextinsertevent.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAccessibleTextInsertEvent_NewQAccessibleTextInsertEvent2(QtObjectPtr iface, int position, char* text); +QtObjectPtr QAccessibleTextInsertEvent_NewQAccessibleTextInsertEvent(QtObjectPtr object, int position, char* text); +int QAccessibleTextInsertEvent_ChangePosition(QtObjectPtr ptr); +char* QAccessibleTextInsertEvent_TextInserted(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qaccessibletextinterface.cpp b/gui/qaccessibletextinterface.cpp new file mode 100755 index 00000000..36c98a76 --- /dev/null +++ b/gui/qaccessibletextinterface.cpp @@ -0,0 +1,78 @@ +#include "qaccessibletextinterface.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAccessibleTextInterface: public QAccessibleTextInterface { +public: +}; + +void QAccessibleTextInterface_AddSelection(QtObjectPtr ptr, int startOffset, int endOffset){ + static_cast(ptr)->addSelection(startOffset, endOffset); +} + +char* QAccessibleTextInterface_Attributes(QtObjectPtr ptr, int offset, int startOffset, int endOffset){ + return static_cast(ptr)->attributes(offset, &startOffset, &endOffset).toUtf8().data(); +} + +int QAccessibleTextInterface_CharacterCount(QtObjectPtr ptr){ + return static_cast(ptr)->characterCount(); +} + +int QAccessibleTextInterface_CursorPosition(QtObjectPtr ptr){ + return static_cast(ptr)->cursorPosition(); +} + +int QAccessibleTextInterface_OffsetAtPoint(QtObjectPtr ptr, QtObjectPtr point){ + return static_cast(ptr)->offsetAtPoint(*static_cast(point)); +} + +void QAccessibleTextInterface_RemoveSelection(QtObjectPtr ptr, int selectionIndex){ + static_cast(ptr)->removeSelection(selectionIndex); +} + +void QAccessibleTextInterface_ScrollToSubstring(QtObjectPtr ptr, int startIndex, int endIndex){ + static_cast(ptr)->scrollToSubstring(startIndex, endIndex); +} + +void QAccessibleTextInterface_Selection(QtObjectPtr ptr, int selectionIndex, int startOffset, int endOffset){ + static_cast(ptr)->selection(selectionIndex, &startOffset, &endOffset); +} + +int QAccessibleTextInterface_SelectionCount(QtObjectPtr ptr){ + return static_cast(ptr)->selectionCount(); +} + +void QAccessibleTextInterface_SetCursorPosition(QtObjectPtr ptr, int position){ + static_cast(ptr)->setCursorPosition(position); +} + +void QAccessibleTextInterface_SetSelection(QtObjectPtr ptr, int selectionIndex, int startOffset, int endOffset){ + static_cast(ptr)->setSelection(selectionIndex, startOffset, endOffset); +} + +char* QAccessibleTextInterface_Text(QtObjectPtr ptr, int startOffset, int endOffset){ + return static_cast(ptr)->text(startOffset, endOffset).toUtf8().data(); +} + +char* QAccessibleTextInterface_TextAfterOffset(QtObjectPtr ptr, int offset, int boundaryType, int startOffset, int endOffset){ + return static_cast(ptr)->textAfterOffset(offset, static_cast(boundaryType), &startOffset, &endOffset).toUtf8().data(); +} + +char* QAccessibleTextInterface_TextAtOffset(QtObjectPtr ptr, int offset, int boundaryType, int startOffset, int endOffset){ + return static_cast(ptr)->textAtOffset(offset, static_cast(boundaryType), &startOffset, &endOffset).toUtf8().data(); +} + +char* QAccessibleTextInterface_TextBeforeOffset(QtObjectPtr ptr, int offset, int boundaryType, int startOffset, int endOffset){ + return static_cast(ptr)->textBeforeOffset(offset, static_cast(boundaryType), &startOffset, &endOffset).toUtf8().data(); +} + +void QAccessibleTextInterface_DestroyQAccessibleTextInterface(QtObjectPtr ptr){ + static_cast(ptr)->~QAccessibleTextInterface(); +} + diff --git a/gui/qaccessibletextinterface.go b/gui/qaccessibletextinterface.go new file mode 100755 index 00000000..26ad1674 --- /dev/null +++ b/gui/qaccessibletextinterface.go @@ -0,0 +1,146 @@ +package gui + +//#include "qaccessibletextinterface.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAccessibleTextInterface struct { + ptr unsafe.Pointer +} + +type QAccessibleTextInterfaceITF interface { + QAccessibleTextInterfacePTR() *QAccessibleTextInterface +} + +func (p *QAccessibleTextInterface) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QAccessibleTextInterface) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQAccessibleTextInterface(ptr QAccessibleTextInterfaceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAccessibleTextInterfacePTR().Pointer() + } + return nil +} + +func QAccessibleTextInterfaceFromPointer(ptr unsafe.Pointer) *QAccessibleTextInterface { + var n = new(QAccessibleTextInterface) + n.SetPointer(ptr) + return n +} + +func (ptr *QAccessibleTextInterface) QAccessibleTextInterfacePTR() *QAccessibleTextInterface { + return ptr +} + +func (ptr *QAccessibleTextInterface) AddSelection(startOffset int, endOffset int) { + if ptr.Pointer() != nil { + C.QAccessibleTextInterface_AddSelection(C.QtObjectPtr(ptr.Pointer()), C.int(startOffset), C.int(endOffset)) + } +} + +func (ptr *QAccessibleTextInterface) Attributes(offset int, startOffset int, endOffset int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAccessibleTextInterface_Attributes(C.QtObjectPtr(ptr.Pointer()), C.int(offset), C.int(startOffset), C.int(endOffset))) + } + return "" +} + +func (ptr *QAccessibleTextInterface) CharacterCount() int { + if ptr.Pointer() != nil { + return int(C.QAccessibleTextInterface_CharacterCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleTextInterface) CursorPosition() int { + if ptr.Pointer() != nil { + return int(C.QAccessibleTextInterface_CursorPosition(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleTextInterface) OffsetAtPoint(point core.QPointITF) int { + if ptr.Pointer() != nil { + return int(C.QAccessibleTextInterface_OffsetAtPoint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(point)))) + } + return 0 +} + +func (ptr *QAccessibleTextInterface) RemoveSelection(selectionIndex int) { + if ptr.Pointer() != nil { + C.QAccessibleTextInterface_RemoveSelection(C.QtObjectPtr(ptr.Pointer()), C.int(selectionIndex)) + } +} + +func (ptr *QAccessibleTextInterface) ScrollToSubstring(startIndex int, endIndex int) { + if ptr.Pointer() != nil { + C.QAccessibleTextInterface_ScrollToSubstring(C.QtObjectPtr(ptr.Pointer()), C.int(startIndex), C.int(endIndex)) + } +} + +func (ptr *QAccessibleTextInterface) Selection(selectionIndex int, startOffset int, endOffset int) { + if ptr.Pointer() != nil { + C.QAccessibleTextInterface_Selection(C.QtObjectPtr(ptr.Pointer()), C.int(selectionIndex), C.int(startOffset), C.int(endOffset)) + } +} + +func (ptr *QAccessibleTextInterface) SelectionCount() int { + if ptr.Pointer() != nil { + return int(C.QAccessibleTextInterface_SelectionCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleTextInterface) SetCursorPosition(position int) { + if ptr.Pointer() != nil { + C.QAccessibleTextInterface_SetCursorPosition(C.QtObjectPtr(ptr.Pointer()), C.int(position)) + } +} + +func (ptr *QAccessibleTextInterface) SetSelection(selectionIndex int, startOffset int, endOffset int) { + if ptr.Pointer() != nil { + C.QAccessibleTextInterface_SetSelection(C.QtObjectPtr(ptr.Pointer()), C.int(selectionIndex), C.int(startOffset), C.int(endOffset)) + } +} + +func (ptr *QAccessibleTextInterface) Text(startOffset int, endOffset int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAccessibleTextInterface_Text(C.QtObjectPtr(ptr.Pointer()), C.int(startOffset), C.int(endOffset))) + } + return "" +} + +func (ptr *QAccessibleTextInterface) TextAfterOffset(offset int, boundaryType QAccessible__TextBoundaryType, startOffset int, endOffset int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAccessibleTextInterface_TextAfterOffset(C.QtObjectPtr(ptr.Pointer()), C.int(offset), C.int(boundaryType), C.int(startOffset), C.int(endOffset))) + } + return "" +} + +func (ptr *QAccessibleTextInterface) TextAtOffset(offset int, boundaryType QAccessible__TextBoundaryType, startOffset int, endOffset int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAccessibleTextInterface_TextAtOffset(C.QtObjectPtr(ptr.Pointer()), C.int(offset), C.int(boundaryType), C.int(startOffset), C.int(endOffset))) + } + return "" +} + +func (ptr *QAccessibleTextInterface) TextBeforeOffset(offset int, boundaryType QAccessible__TextBoundaryType, startOffset int, endOffset int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAccessibleTextInterface_TextBeforeOffset(C.QtObjectPtr(ptr.Pointer()), C.int(offset), C.int(boundaryType), C.int(startOffset), C.int(endOffset))) + } + return "" +} + +func (ptr *QAccessibleTextInterface) DestroyQAccessibleTextInterface() { + if ptr.Pointer() != nil { + C.QAccessibleTextInterface_DestroyQAccessibleTextInterface(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qaccessibletextinterface.h b/gui/qaccessibletextinterface.h new file mode 100755 index 00000000..4a302156 --- /dev/null +++ b/gui/qaccessibletextinterface.h @@ -0,0 +1,25 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QAccessibleTextInterface_AddSelection(QtObjectPtr ptr, int startOffset, int endOffset); +char* QAccessibleTextInterface_Attributes(QtObjectPtr ptr, int offset, int startOffset, int endOffset); +int QAccessibleTextInterface_CharacterCount(QtObjectPtr ptr); +int QAccessibleTextInterface_CursorPosition(QtObjectPtr ptr); +int QAccessibleTextInterface_OffsetAtPoint(QtObjectPtr ptr, QtObjectPtr point); +void QAccessibleTextInterface_RemoveSelection(QtObjectPtr ptr, int selectionIndex); +void QAccessibleTextInterface_ScrollToSubstring(QtObjectPtr ptr, int startIndex, int endIndex); +void QAccessibleTextInterface_Selection(QtObjectPtr ptr, int selectionIndex, int startOffset, int endOffset); +int QAccessibleTextInterface_SelectionCount(QtObjectPtr ptr); +void QAccessibleTextInterface_SetCursorPosition(QtObjectPtr ptr, int position); +void QAccessibleTextInterface_SetSelection(QtObjectPtr ptr, int selectionIndex, int startOffset, int endOffset); +char* QAccessibleTextInterface_Text(QtObjectPtr ptr, int startOffset, int endOffset); +char* QAccessibleTextInterface_TextAfterOffset(QtObjectPtr ptr, int offset, int boundaryType, int startOffset, int endOffset); +char* QAccessibleTextInterface_TextAtOffset(QtObjectPtr ptr, int offset, int boundaryType, int startOffset, int endOffset); +char* QAccessibleTextInterface_TextBeforeOffset(QtObjectPtr ptr, int offset, int boundaryType, int startOffset, int endOffset); +void QAccessibleTextInterface_DestroyQAccessibleTextInterface(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qaccessibletextremoveevent.cpp b/gui/qaccessibletextremoveevent.cpp new file mode 100755 index 00000000..63e12e40 --- /dev/null +++ b/gui/qaccessibletextremoveevent.cpp @@ -0,0 +1,31 @@ +#include "qaccessibletextremoveevent.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAccessibleTextRemoveEvent: public QAccessibleTextRemoveEvent { +public: +}; + +QtObjectPtr QAccessibleTextRemoveEvent_NewQAccessibleTextRemoveEvent2(QtObjectPtr iface, int position, char* text){ + return new QAccessibleTextRemoveEvent(static_cast(iface), position, QString(text)); +} + +QtObjectPtr QAccessibleTextRemoveEvent_NewQAccessibleTextRemoveEvent(QtObjectPtr object, int position, char* text){ + return new QAccessibleTextRemoveEvent(static_cast(object), position, QString(text)); +} + +int QAccessibleTextRemoveEvent_ChangePosition(QtObjectPtr ptr){ + return static_cast(ptr)->changePosition(); +} + +char* QAccessibleTextRemoveEvent_TextRemoved(QtObjectPtr ptr){ + return static_cast(ptr)->textRemoved().toUtf8().data(); +} + diff --git a/gui/qaccessibletextremoveevent.go b/gui/qaccessibletextremoveevent.go new file mode 100755 index 00000000..c21b9578 --- /dev/null +++ b/gui/qaccessibletextremoveevent.go @@ -0,0 +1,56 @@ +package gui + +//#include "qaccessibletextremoveevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAccessibleTextRemoveEvent struct { + QAccessibleTextCursorEvent +} + +type QAccessibleTextRemoveEventITF interface { + QAccessibleTextCursorEventITF + QAccessibleTextRemoveEventPTR() *QAccessibleTextRemoveEvent +} + +func PointerFromQAccessibleTextRemoveEvent(ptr QAccessibleTextRemoveEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAccessibleTextRemoveEventPTR().Pointer() + } + return nil +} + +func QAccessibleTextRemoveEventFromPointer(ptr unsafe.Pointer) *QAccessibleTextRemoveEvent { + var n = new(QAccessibleTextRemoveEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QAccessibleTextRemoveEvent) QAccessibleTextRemoveEventPTR() *QAccessibleTextRemoveEvent { + return ptr +} + +func NewQAccessibleTextRemoveEvent2(iface QAccessibleInterfaceITF, position int, text string) *QAccessibleTextRemoveEvent { + return QAccessibleTextRemoveEventFromPointer(unsafe.Pointer(C.QAccessibleTextRemoveEvent_NewQAccessibleTextRemoveEvent2(C.QtObjectPtr(PointerFromQAccessibleInterface(iface)), C.int(position), C.CString(text)))) +} + +func NewQAccessibleTextRemoveEvent(object core.QObjectITF, position int, text string) *QAccessibleTextRemoveEvent { + return QAccessibleTextRemoveEventFromPointer(unsafe.Pointer(C.QAccessibleTextRemoveEvent_NewQAccessibleTextRemoveEvent(C.QtObjectPtr(core.PointerFromQObject(object)), C.int(position), C.CString(text)))) +} + +func (ptr *QAccessibleTextRemoveEvent) ChangePosition() int { + if ptr.Pointer() != nil { + return int(C.QAccessibleTextRemoveEvent_ChangePosition(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleTextRemoveEvent) TextRemoved() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAccessibleTextRemoveEvent_TextRemoved(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/gui/qaccessibletextremoveevent.h b/gui/qaccessibletextremoveevent.h new file mode 100755 index 00000000..a1d5c57f --- /dev/null +++ b/gui/qaccessibletextremoveevent.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAccessibleTextRemoveEvent_NewQAccessibleTextRemoveEvent2(QtObjectPtr iface, int position, char* text); +QtObjectPtr QAccessibleTextRemoveEvent_NewQAccessibleTextRemoveEvent(QtObjectPtr object, int position, char* text); +int QAccessibleTextRemoveEvent_ChangePosition(QtObjectPtr ptr); +char* QAccessibleTextRemoveEvent_TextRemoved(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qaccessibletextselectionevent.cpp b/gui/qaccessibletextselectionevent.cpp new file mode 100755 index 00000000..a0af531f --- /dev/null +++ b/gui/qaccessibletextselectionevent.cpp @@ -0,0 +1,35 @@ +#include "qaccessibletextselectionevent.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAccessibleTextSelectionEvent: public QAccessibleTextSelectionEvent { +public: +}; + +QtObjectPtr QAccessibleTextSelectionEvent_NewQAccessibleTextSelectionEvent2(QtObjectPtr iface, int start, int end){ + return new QAccessibleTextSelectionEvent(static_cast(iface), start, end); +} + +QtObjectPtr QAccessibleTextSelectionEvent_NewQAccessibleTextSelectionEvent(QtObjectPtr object, int start, int end){ + return new QAccessibleTextSelectionEvent(static_cast(object), start, end); +} + +int QAccessibleTextSelectionEvent_SelectionEnd(QtObjectPtr ptr){ + return static_cast(ptr)->selectionEnd(); +} + +int QAccessibleTextSelectionEvent_SelectionStart(QtObjectPtr ptr){ + return static_cast(ptr)->selectionStart(); +} + +void QAccessibleTextSelectionEvent_SetSelection(QtObjectPtr ptr, int start, int end){ + static_cast(ptr)->setSelection(start, end); +} + diff --git a/gui/qaccessibletextselectionevent.go b/gui/qaccessibletextselectionevent.go new file mode 100755 index 00000000..8f2abd64 --- /dev/null +++ b/gui/qaccessibletextselectionevent.go @@ -0,0 +1,62 @@ +package gui + +//#include "qaccessibletextselectionevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAccessibleTextSelectionEvent struct { + QAccessibleTextCursorEvent +} + +type QAccessibleTextSelectionEventITF interface { + QAccessibleTextCursorEventITF + QAccessibleTextSelectionEventPTR() *QAccessibleTextSelectionEvent +} + +func PointerFromQAccessibleTextSelectionEvent(ptr QAccessibleTextSelectionEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAccessibleTextSelectionEventPTR().Pointer() + } + return nil +} + +func QAccessibleTextSelectionEventFromPointer(ptr unsafe.Pointer) *QAccessibleTextSelectionEvent { + var n = new(QAccessibleTextSelectionEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QAccessibleTextSelectionEvent) QAccessibleTextSelectionEventPTR() *QAccessibleTextSelectionEvent { + return ptr +} + +func NewQAccessibleTextSelectionEvent2(iface QAccessibleInterfaceITF, start int, end int) *QAccessibleTextSelectionEvent { + return QAccessibleTextSelectionEventFromPointer(unsafe.Pointer(C.QAccessibleTextSelectionEvent_NewQAccessibleTextSelectionEvent2(C.QtObjectPtr(PointerFromQAccessibleInterface(iface)), C.int(start), C.int(end)))) +} + +func NewQAccessibleTextSelectionEvent(object core.QObjectITF, start int, end int) *QAccessibleTextSelectionEvent { + return QAccessibleTextSelectionEventFromPointer(unsafe.Pointer(C.QAccessibleTextSelectionEvent_NewQAccessibleTextSelectionEvent(C.QtObjectPtr(core.PointerFromQObject(object)), C.int(start), C.int(end)))) +} + +func (ptr *QAccessibleTextSelectionEvent) SelectionEnd() int { + if ptr.Pointer() != nil { + return int(C.QAccessibleTextSelectionEvent_SelectionEnd(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleTextSelectionEvent) SelectionStart() int { + if ptr.Pointer() != nil { + return int(C.QAccessibleTextSelectionEvent_SelectionStart(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleTextSelectionEvent) SetSelection(start int, end int) { + if ptr.Pointer() != nil { + C.QAccessibleTextSelectionEvent_SetSelection(C.QtObjectPtr(ptr.Pointer()), C.int(start), C.int(end)) + } +} diff --git a/gui/qaccessibletextselectionevent.h b/gui/qaccessibletextselectionevent.h new file mode 100755 index 00000000..75c74dfd --- /dev/null +++ b/gui/qaccessibletextselectionevent.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAccessibleTextSelectionEvent_NewQAccessibleTextSelectionEvent2(QtObjectPtr iface, int start, int end); +QtObjectPtr QAccessibleTextSelectionEvent_NewQAccessibleTextSelectionEvent(QtObjectPtr object, int start, int end); +int QAccessibleTextSelectionEvent_SelectionEnd(QtObjectPtr ptr); +int QAccessibleTextSelectionEvent_SelectionStart(QtObjectPtr ptr); +void QAccessibleTextSelectionEvent_SetSelection(QtObjectPtr ptr, int start, int end); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qaccessibletextupdateevent.cpp b/gui/qaccessibletextupdateevent.cpp new file mode 100755 index 00000000..92f994c6 --- /dev/null +++ b/gui/qaccessibletextupdateevent.cpp @@ -0,0 +1,35 @@ +#include "qaccessibletextupdateevent.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAccessibleTextUpdateEvent: public QAccessibleTextUpdateEvent { +public: +}; + +QtObjectPtr QAccessibleTextUpdateEvent_NewQAccessibleTextUpdateEvent2(QtObjectPtr iface, int position, char* oldText, char* text){ + return new QAccessibleTextUpdateEvent(static_cast(iface), position, QString(oldText), QString(text)); +} + +QtObjectPtr QAccessibleTextUpdateEvent_NewQAccessibleTextUpdateEvent(QtObjectPtr object, int position, char* oldText, char* text){ + return new QAccessibleTextUpdateEvent(static_cast(object), position, QString(oldText), QString(text)); +} + +int QAccessibleTextUpdateEvent_ChangePosition(QtObjectPtr ptr){ + return static_cast(ptr)->changePosition(); +} + +char* QAccessibleTextUpdateEvent_TextInserted(QtObjectPtr ptr){ + return static_cast(ptr)->textInserted().toUtf8().data(); +} + +char* QAccessibleTextUpdateEvent_TextRemoved(QtObjectPtr ptr){ + return static_cast(ptr)->textRemoved().toUtf8().data(); +} + diff --git a/gui/qaccessibletextupdateevent.go b/gui/qaccessibletextupdateevent.go new file mode 100755 index 00000000..9dac32a4 --- /dev/null +++ b/gui/qaccessibletextupdateevent.go @@ -0,0 +1,63 @@ +package gui + +//#include "qaccessibletextupdateevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAccessibleTextUpdateEvent struct { + QAccessibleTextCursorEvent +} + +type QAccessibleTextUpdateEventITF interface { + QAccessibleTextCursorEventITF + QAccessibleTextUpdateEventPTR() *QAccessibleTextUpdateEvent +} + +func PointerFromQAccessibleTextUpdateEvent(ptr QAccessibleTextUpdateEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAccessibleTextUpdateEventPTR().Pointer() + } + return nil +} + +func QAccessibleTextUpdateEventFromPointer(ptr unsafe.Pointer) *QAccessibleTextUpdateEvent { + var n = new(QAccessibleTextUpdateEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QAccessibleTextUpdateEvent) QAccessibleTextUpdateEventPTR() *QAccessibleTextUpdateEvent { + return ptr +} + +func NewQAccessibleTextUpdateEvent2(iface QAccessibleInterfaceITF, position int, oldText string, text string) *QAccessibleTextUpdateEvent { + return QAccessibleTextUpdateEventFromPointer(unsafe.Pointer(C.QAccessibleTextUpdateEvent_NewQAccessibleTextUpdateEvent2(C.QtObjectPtr(PointerFromQAccessibleInterface(iface)), C.int(position), C.CString(oldText), C.CString(text)))) +} + +func NewQAccessibleTextUpdateEvent(object core.QObjectITF, position int, oldText string, text string) *QAccessibleTextUpdateEvent { + return QAccessibleTextUpdateEventFromPointer(unsafe.Pointer(C.QAccessibleTextUpdateEvent_NewQAccessibleTextUpdateEvent(C.QtObjectPtr(core.PointerFromQObject(object)), C.int(position), C.CString(oldText), C.CString(text)))) +} + +func (ptr *QAccessibleTextUpdateEvent) ChangePosition() int { + if ptr.Pointer() != nil { + return int(C.QAccessibleTextUpdateEvent_ChangePosition(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleTextUpdateEvent) TextInserted() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAccessibleTextUpdateEvent_TextInserted(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAccessibleTextUpdateEvent) TextRemoved() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAccessibleTextUpdateEvent_TextRemoved(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/gui/qaccessibletextupdateevent.h b/gui/qaccessibletextupdateevent.h new file mode 100755 index 00000000..6d8573d3 --- /dev/null +++ b/gui/qaccessibletextupdateevent.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAccessibleTextUpdateEvent_NewQAccessibleTextUpdateEvent2(QtObjectPtr iface, int position, char* oldText, char* text); +QtObjectPtr QAccessibleTextUpdateEvent_NewQAccessibleTextUpdateEvent(QtObjectPtr object, int position, char* oldText, char* text); +int QAccessibleTextUpdateEvent_ChangePosition(QtObjectPtr ptr); +char* QAccessibleTextUpdateEvent_TextInserted(QtObjectPtr ptr); +char* QAccessibleTextUpdateEvent_TextRemoved(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qaccessiblevaluechangeevent.cpp b/gui/qaccessiblevaluechangeevent.cpp new file mode 100755 index 00000000..a0917d3f --- /dev/null +++ b/gui/qaccessiblevaluechangeevent.cpp @@ -0,0 +1,31 @@ +#include "qaccessiblevaluechangeevent.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAccessibleValueChangeEvent: public QAccessibleValueChangeEvent { +public: +}; + +QtObjectPtr QAccessibleValueChangeEvent_NewQAccessibleValueChangeEvent2(QtObjectPtr iface, char* val){ + return new QAccessibleValueChangeEvent(static_cast(iface), QVariant(val)); +} + +QtObjectPtr QAccessibleValueChangeEvent_NewQAccessibleValueChangeEvent(QtObjectPtr object, char* value){ + return new QAccessibleValueChangeEvent(static_cast(object), QVariant(value)); +} + +void QAccessibleValueChangeEvent_SetValue(QtObjectPtr ptr, char* value){ + static_cast(ptr)->setValue(QVariant(value)); +} + +char* QAccessibleValueChangeEvent_Value(QtObjectPtr ptr){ + return static_cast(ptr)->value().toString().toUtf8().data(); +} + diff --git a/gui/qaccessiblevaluechangeevent.go b/gui/qaccessiblevaluechangeevent.go new file mode 100755 index 00000000..f7c08fe9 --- /dev/null +++ b/gui/qaccessiblevaluechangeevent.go @@ -0,0 +1,55 @@ +package gui + +//#include "qaccessiblevaluechangeevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAccessibleValueChangeEvent struct { + QAccessibleEvent +} + +type QAccessibleValueChangeEventITF interface { + QAccessibleEventITF + QAccessibleValueChangeEventPTR() *QAccessibleValueChangeEvent +} + +func PointerFromQAccessibleValueChangeEvent(ptr QAccessibleValueChangeEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAccessibleValueChangeEventPTR().Pointer() + } + return nil +} + +func QAccessibleValueChangeEventFromPointer(ptr unsafe.Pointer) *QAccessibleValueChangeEvent { + var n = new(QAccessibleValueChangeEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QAccessibleValueChangeEvent) QAccessibleValueChangeEventPTR() *QAccessibleValueChangeEvent { + return ptr +} + +func NewQAccessibleValueChangeEvent2(iface QAccessibleInterfaceITF, val string) *QAccessibleValueChangeEvent { + return QAccessibleValueChangeEventFromPointer(unsafe.Pointer(C.QAccessibleValueChangeEvent_NewQAccessibleValueChangeEvent2(C.QtObjectPtr(PointerFromQAccessibleInterface(iface)), C.CString(val)))) +} + +func NewQAccessibleValueChangeEvent(object core.QObjectITF, value string) *QAccessibleValueChangeEvent { + return QAccessibleValueChangeEventFromPointer(unsafe.Pointer(C.QAccessibleValueChangeEvent_NewQAccessibleValueChangeEvent(C.QtObjectPtr(core.PointerFromQObject(object)), C.CString(value)))) +} + +func (ptr *QAccessibleValueChangeEvent) SetValue(value string) { + if ptr.Pointer() != nil { + C.QAccessibleValueChangeEvent_SetValue(C.QtObjectPtr(ptr.Pointer()), C.CString(value)) + } +} + +func (ptr *QAccessibleValueChangeEvent) Value() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAccessibleValueChangeEvent_Value(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/gui/qaccessiblevaluechangeevent.h b/gui/qaccessiblevaluechangeevent.h new file mode 100755 index 00000000..aa90f227 --- /dev/null +++ b/gui/qaccessiblevaluechangeevent.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAccessibleValueChangeEvent_NewQAccessibleValueChangeEvent2(QtObjectPtr iface, char* val); +QtObjectPtr QAccessibleValueChangeEvent_NewQAccessibleValueChangeEvent(QtObjectPtr object, char* value); +void QAccessibleValueChangeEvent_SetValue(QtObjectPtr ptr, char* value); +char* QAccessibleValueChangeEvent_Value(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qaccessiblevalueinterface.cpp b/gui/qaccessiblevalueinterface.cpp new file mode 100755 index 00000000..df54a83d --- /dev/null +++ b/gui/qaccessiblevalueinterface.cpp @@ -0,0 +1,37 @@ +#include "qaccessiblevalueinterface.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAccessibleValueInterface: public QAccessibleValueInterface { +public: +}; + +char* QAccessibleValueInterface_CurrentValue(QtObjectPtr ptr){ + return static_cast(ptr)->currentValue().toString().toUtf8().data(); +} + +char* QAccessibleValueInterface_MaximumValue(QtObjectPtr ptr){ + return static_cast(ptr)->maximumValue().toString().toUtf8().data(); +} + +char* QAccessibleValueInterface_MinimumStepSize(QtObjectPtr ptr){ + return static_cast(ptr)->minimumStepSize().toString().toUtf8().data(); +} + +char* QAccessibleValueInterface_MinimumValue(QtObjectPtr ptr){ + return static_cast(ptr)->minimumValue().toString().toUtf8().data(); +} + +void QAccessibleValueInterface_SetCurrentValue(QtObjectPtr ptr, char* value){ + static_cast(ptr)->setCurrentValue(QVariant(value)); +} + +void QAccessibleValueInterface_DestroyQAccessibleValueInterface(QtObjectPtr ptr){ + static_cast(ptr)->~QAccessibleValueInterface(); +} + diff --git a/gui/qaccessiblevalueinterface.go b/gui/qaccessiblevalueinterface.go new file mode 100755 index 00000000..47e845f1 --- /dev/null +++ b/gui/qaccessiblevalueinterface.go @@ -0,0 +1,80 @@ +package gui + +//#include "qaccessiblevalueinterface.h" +import "C" +import ( + "unsafe" +) + +type QAccessibleValueInterface struct { + ptr unsafe.Pointer +} + +type QAccessibleValueInterfaceITF interface { + QAccessibleValueInterfacePTR() *QAccessibleValueInterface +} + +func (p *QAccessibleValueInterface) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QAccessibleValueInterface) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQAccessibleValueInterface(ptr QAccessibleValueInterfaceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAccessibleValueInterfacePTR().Pointer() + } + return nil +} + +func QAccessibleValueInterfaceFromPointer(ptr unsafe.Pointer) *QAccessibleValueInterface { + var n = new(QAccessibleValueInterface) + n.SetPointer(ptr) + return n +} + +func (ptr *QAccessibleValueInterface) QAccessibleValueInterfacePTR() *QAccessibleValueInterface { + return ptr +} + +func (ptr *QAccessibleValueInterface) CurrentValue() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAccessibleValueInterface_CurrentValue(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAccessibleValueInterface) MaximumValue() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAccessibleValueInterface_MaximumValue(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAccessibleValueInterface) MinimumStepSize() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAccessibleValueInterface_MinimumStepSize(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAccessibleValueInterface) MinimumValue() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAccessibleValueInterface_MinimumValue(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAccessibleValueInterface) SetCurrentValue(value string) { + if ptr.Pointer() != nil { + C.QAccessibleValueInterface_SetCurrentValue(C.QtObjectPtr(ptr.Pointer()), C.CString(value)) + } +} + +func (ptr *QAccessibleValueInterface) DestroyQAccessibleValueInterface() { + if ptr.Pointer() != nil { + C.QAccessibleValueInterface_DestroyQAccessibleValueInterface(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qaccessiblevalueinterface.h b/gui/qaccessiblevalueinterface.h new file mode 100755 index 00000000..9b7c705a --- /dev/null +++ b/gui/qaccessiblevalueinterface.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QAccessibleValueInterface_CurrentValue(QtObjectPtr ptr); +char* QAccessibleValueInterface_MaximumValue(QtObjectPtr ptr); +char* QAccessibleValueInterface_MinimumStepSize(QtObjectPtr ptr); +char* QAccessibleValueInterface_MinimumValue(QtObjectPtr ptr); +void QAccessibleValueInterface_SetCurrentValue(QtObjectPtr ptr, char* value); +void QAccessibleValueInterface_DestroyQAccessibleValueInterface(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qactionevent.cpp b/gui/qactionevent.cpp new file mode 100755 index 00000000..dffb5f9a --- /dev/null +++ b/gui/qactionevent.cpp @@ -0,0 +1,12 @@ +#include "qactionevent.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQActionEvent: public QActionEvent { +public: +}; + diff --git a/gui/qactionevent.go b/gui/qactionevent.go new file mode 100755 index 00000000..2796deb8 --- /dev/null +++ b/gui/qactionevent.go @@ -0,0 +1,34 @@ +package gui + +//#include "qactionevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QActionEvent struct { + core.QEvent +} + +type QActionEventITF interface { + core.QEventITF + QActionEventPTR() *QActionEvent +} + +func PointerFromQActionEvent(ptr QActionEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QActionEventPTR().Pointer() + } + return nil +} + +func QActionEventFromPointer(ptr unsafe.Pointer) *QActionEvent { + var n = new(QActionEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QActionEvent) QActionEventPTR() *QActionEvent { + return ptr +} diff --git a/gui/qactionevent.h b/gui/qactionevent.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/gui/qactionevent.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qbackingstore.cpp b/gui/qbackingstore.cpp new file mode 100755 index 00000000..33395982 --- /dev/null +++ b/gui/qbackingstore.cpp @@ -0,0 +1,60 @@ +#include "qbackingstore.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQBackingStore: public QBackingStore { +public: +}; + +QtObjectPtr QBackingStore_PaintDevice(QtObjectPtr ptr){ + return static_cast(ptr)->paintDevice(); +} + +QtObjectPtr QBackingStore_NewQBackingStore(QtObjectPtr window){ + return new QBackingStore(static_cast(window)); +} + +void QBackingStore_BeginPaint(QtObjectPtr ptr, QtObjectPtr region){ + static_cast(ptr)->beginPaint(*static_cast(region)); +} + +void QBackingStore_EndPaint(QtObjectPtr ptr){ + static_cast(ptr)->endPaint(); +} + +void QBackingStore_Flush(QtObjectPtr ptr, QtObjectPtr region, QtObjectPtr win, QtObjectPtr offset){ + static_cast(ptr)->flush(*static_cast(region), static_cast(win), *static_cast(offset)); +} + +int QBackingStore_HasStaticContents(QtObjectPtr ptr){ + return static_cast(ptr)->hasStaticContents(); +} + +void QBackingStore_Resize(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->resize(*static_cast(size)); +} + +int QBackingStore_Scroll(QtObjectPtr ptr, QtObjectPtr area, int dx, int dy){ + return static_cast(ptr)->scroll(*static_cast(area), dx, dy); +} + +void QBackingStore_SetStaticContents(QtObjectPtr ptr, QtObjectPtr region){ + static_cast(ptr)->setStaticContents(*static_cast(region)); +} + +QtObjectPtr QBackingStore_Window(QtObjectPtr ptr){ + return static_cast(ptr)->window(); +} + +void QBackingStore_DestroyQBackingStore(QtObjectPtr ptr){ + static_cast(ptr)->~QBackingStore(); +} + diff --git a/gui/qbackingstore.go b/gui/qbackingstore.go new file mode 100755 index 00000000..b58db054 --- /dev/null +++ b/gui/qbackingstore.go @@ -0,0 +1,109 @@ +package gui + +//#include "qbackingstore.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QBackingStore struct { + ptr unsafe.Pointer +} + +type QBackingStoreITF interface { + QBackingStorePTR() *QBackingStore +} + +func (p *QBackingStore) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QBackingStore) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQBackingStore(ptr QBackingStoreITF) unsafe.Pointer { + if ptr != nil { + return ptr.QBackingStorePTR().Pointer() + } + return nil +} + +func QBackingStoreFromPointer(ptr unsafe.Pointer) *QBackingStore { + var n = new(QBackingStore) + n.SetPointer(ptr) + return n +} + +func (ptr *QBackingStore) QBackingStorePTR() *QBackingStore { + return ptr +} + +func (ptr *QBackingStore) PaintDevice() *QPaintDevice { + if ptr.Pointer() != nil { + return QPaintDeviceFromPointer(unsafe.Pointer(C.QBackingStore_PaintDevice(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func NewQBackingStore(window QWindowITF) *QBackingStore { + return QBackingStoreFromPointer(unsafe.Pointer(C.QBackingStore_NewQBackingStore(C.QtObjectPtr(PointerFromQWindow(window))))) +} + +func (ptr *QBackingStore) BeginPaint(region QRegionITF) { + if ptr.Pointer() != nil { + C.QBackingStore_BeginPaint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQRegion(region))) + } +} + +func (ptr *QBackingStore) EndPaint() { + if ptr.Pointer() != nil { + C.QBackingStore_EndPaint(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QBackingStore) Flush(region QRegionITF, win QWindowITF, offset core.QPointITF) { + if ptr.Pointer() != nil { + C.QBackingStore_Flush(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQRegion(region)), C.QtObjectPtr(PointerFromQWindow(win)), C.QtObjectPtr(core.PointerFromQPoint(offset))) + } +} + +func (ptr *QBackingStore) HasStaticContents() bool { + if ptr.Pointer() != nil { + return C.QBackingStore_HasStaticContents(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QBackingStore) Resize(size core.QSizeITF) { + if ptr.Pointer() != nil { + C.QBackingStore_Resize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(size))) + } +} + +func (ptr *QBackingStore) Scroll(area QRegionITF, dx int, dy int) bool { + if ptr.Pointer() != nil { + return C.QBackingStore_Scroll(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQRegion(area)), C.int(dx), C.int(dy)) != 0 + } + return false +} + +func (ptr *QBackingStore) SetStaticContents(region QRegionITF) { + if ptr.Pointer() != nil { + C.QBackingStore_SetStaticContents(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQRegion(region))) + } +} + +func (ptr *QBackingStore) Window() *QWindow { + if ptr.Pointer() != nil { + return QWindowFromPointer(unsafe.Pointer(C.QBackingStore_Window(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QBackingStore) DestroyQBackingStore() { + if ptr.Pointer() != nil { + C.QBackingStore_DestroyQBackingStore(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qbackingstore.h b/gui/qbackingstore.h new file mode 100755 index 00000000..6543e2a2 --- /dev/null +++ b/gui/qbackingstore.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QBackingStore_PaintDevice(QtObjectPtr ptr); +QtObjectPtr QBackingStore_NewQBackingStore(QtObjectPtr window); +void QBackingStore_BeginPaint(QtObjectPtr ptr, QtObjectPtr region); +void QBackingStore_EndPaint(QtObjectPtr ptr); +void QBackingStore_Flush(QtObjectPtr ptr, QtObjectPtr region, QtObjectPtr win, QtObjectPtr offset); +int QBackingStore_HasStaticContents(QtObjectPtr ptr); +void QBackingStore_Resize(QtObjectPtr ptr, QtObjectPtr size); +int QBackingStore_Scroll(QtObjectPtr ptr, QtObjectPtr area, int dx, int dy); +void QBackingStore_SetStaticContents(QtObjectPtr ptr, QtObjectPtr region); +QtObjectPtr QBackingStore_Window(QtObjectPtr ptr); +void QBackingStore_DestroyQBackingStore(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qbitmap.cpp b/gui/qbitmap.cpp new file mode 100755 index 00000000..31eff28c --- /dev/null +++ b/gui/qbitmap.cpp @@ -0,0 +1,24 @@ +#include "qbitmap.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQBitmap: public QBitmap { +public: +}; + +void QBitmap_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +void QBitmap_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QBitmap_DestroyQBitmap(QtObjectPtr ptr){ + static_cast(ptr)->~QBitmap(); +} + diff --git a/gui/qbitmap.go b/gui/qbitmap.go new file mode 100755 index 00000000..5c14a076 --- /dev/null +++ b/gui/qbitmap.go @@ -0,0 +1,51 @@ +package gui + +//#include "qbitmap.h" +import "C" +import ( + "unsafe" +) + +type QBitmap struct { + QPixmap +} + +type QBitmapITF interface { + QPixmapITF + QBitmapPTR() *QBitmap +} + +func PointerFromQBitmap(ptr QBitmapITF) unsafe.Pointer { + if ptr != nil { + return ptr.QBitmapPTR().Pointer() + } + return nil +} + +func QBitmapFromPointer(ptr unsafe.Pointer) *QBitmap { + var n = new(QBitmap) + n.SetPointer(ptr) + return n +} + +func (ptr *QBitmap) QBitmapPTR() *QBitmap { + return ptr +} + +func (ptr *QBitmap) Clear() { + if ptr.Pointer() != nil { + C.QBitmap_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QBitmap) Swap(other QBitmapITF) { + if ptr.Pointer() != nil { + C.QBitmap_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQBitmap(other))) + } +} + +func (ptr *QBitmap) DestroyQBitmap() { + if ptr.Pointer() != nil { + C.QBitmap_DestroyQBitmap(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qbitmap.h b/gui/qbitmap.h new file mode 100755 index 00000000..7878abc6 --- /dev/null +++ b/gui/qbitmap.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QBitmap_Clear(QtObjectPtr ptr); +void QBitmap_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QBitmap_DestroyQBitmap(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qbrush.cpp b/gui/qbrush.cpp new file mode 100755 index 00000000..cb7bdd3e --- /dev/null +++ b/gui/qbrush.cpp @@ -0,0 +1,101 @@ +#include "qbrush.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQBrush: public QBrush { +public: +}; + +QtObjectPtr QBrush_NewQBrush4(int color, int style){ + return new QBrush(static_cast(color), static_cast(style)); +} + +void QBrush_SetColor(QtObjectPtr ptr, QtObjectPtr color){ + static_cast(ptr)->setColor(*static_cast(color)); +} + +QtObjectPtr QBrush_NewQBrush(){ + return new QBrush(); +} + +QtObjectPtr QBrush_NewQBrush2(int style){ + return new QBrush(static_cast(style)); +} + +QtObjectPtr QBrush_NewQBrush6(int color, QtObjectPtr pixmap){ + return new QBrush(static_cast(color), *static_cast(pixmap)); +} + +QtObjectPtr QBrush_NewQBrush9(QtObjectPtr other){ + return new QBrush(*static_cast(other)); +} + +QtObjectPtr QBrush_NewQBrush3(QtObjectPtr color, int style){ + return new QBrush(*static_cast(color), static_cast(style)); +} + +QtObjectPtr QBrush_NewQBrush5(QtObjectPtr color, QtObjectPtr pixmap){ + return new QBrush(*static_cast(color), *static_cast(pixmap)); +} + +QtObjectPtr QBrush_NewQBrush10(QtObjectPtr gradient){ + return new QBrush(*static_cast(gradient)); +} + +QtObjectPtr QBrush_NewQBrush8(QtObjectPtr image){ + return new QBrush(*static_cast(image)); +} + +QtObjectPtr QBrush_NewQBrush7(QtObjectPtr pixmap){ + return new QBrush(*static_cast(pixmap)); +} + +QtObjectPtr QBrush_Gradient(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->gradient()); +} + +int QBrush_IsOpaque(QtObjectPtr ptr){ + return static_cast(ptr)->isOpaque(); +} + +void QBrush_SetColor2(QtObjectPtr ptr, int color){ + static_cast(ptr)->setColor(static_cast(color)); +} + +void QBrush_SetStyle(QtObjectPtr ptr, int style){ + static_cast(ptr)->setStyle(static_cast(style)); +} + +void QBrush_SetTexture(QtObjectPtr ptr, QtObjectPtr pixmap){ + static_cast(ptr)->setTexture(*static_cast(pixmap)); +} + +void QBrush_SetTextureImage(QtObjectPtr ptr, QtObjectPtr image){ + static_cast(ptr)->setTextureImage(*static_cast(image)); +} + +void QBrush_SetTransform(QtObjectPtr ptr, QtObjectPtr matrix){ + static_cast(ptr)->setTransform(*static_cast(matrix)); +} + +int QBrush_Style(QtObjectPtr ptr){ + return static_cast(ptr)->style(); +} + +void QBrush_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QBrush_DestroyQBrush(QtObjectPtr ptr){ + static_cast(ptr)->~QBrush(); +} + diff --git a/gui/qbrush.go b/gui/qbrush.go new file mode 100755 index 00000000..7df1632a --- /dev/null +++ b/gui/qbrush.go @@ -0,0 +1,150 @@ +package gui + +//#include "qbrush.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QBrush struct { + ptr unsafe.Pointer +} + +type QBrushITF interface { + QBrushPTR() *QBrush +} + +func (p *QBrush) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QBrush) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQBrush(ptr QBrushITF) unsafe.Pointer { + if ptr != nil { + return ptr.QBrushPTR().Pointer() + } + return nil +} + +func QBrushFromPointer(ptr unsafe.Pointer) *QBrush { + var n = new(QBrush) + n.SetPointer(ptr) + return n +} + +func (ptr *QBrush) QBrushPTR() *QBrush { + return ptr +} + +func NewQBrush4(color core.Qt__GlobalColor, style core.Qt__BrushStyle) *QBrush { + return QBrushFromPointer(unsafe.Pointer(C.QBrush_NewQBrush4(C.int(color), C.int(style)))) +} + +func (ptr *QBrush) SetColor(color QColorITF) { + if ptr.Pointer() != nil { + C.QBrush_SetColor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQColor(color))) + } +} + +func NewQBrush() *QBrush { + return QBrushFromPointer(unsafe.Pointer(C.QBrush_NewQBrush())) +} + +func NewQBrush2(style core.Qt__BrushStyle) *QBrush { + return QBrushFromPointer(unsafe.Pointer(C.QBrush_NewQBrush2(C.int(style)))) +} + +func NewQBrush6(color core.Qt__GlobalColor, pixmap QPixmapITF) *QBrush { + return QBrushFromPointer(unsafe.Pointer(C.QBrush_NewQBrush6(C.int(color), C.QtObjectPtr(PointerFromQPixmap(pixmap))))) +} + +func NewQBrush9(other QBrushITF) *QBrush { + return QBrushFromPointer(unsafe.Pointer(C.QBrush_NewQBrush9(C.QtObjectPtr(PointerFromQBrush(other))))) +} + +func NewQBrush3(color QColorITF, style core.Qt__BrushStyle) *QBrush { + return QBrushFromPointer(unsafe.Pointer(C.QBrush_NewQBrush3(C.QtObjectPtr(PointerFromQColor(color)), C.int(style)))) +} + +func NewQBrush5(color QColorITF, pixmap QPixmapITF) *QBrush { + return QBrushFromPointer(unsafe.Pointer(C.QBrush_NewQBrush5(C.QtObjectPtr(PointerFromQColor(color)), C.QtObjectPtr(PointerFromQPixmap(pixmap))))) +} + +func NewQBrush10(gradient QGradientITF) *QBrush { + return QBrushFromPointer(unsafe.Pointer(C.QBrush_NewQBrush10(C.QtObjectPtr(PointerFromQGradient(gradient))))) +} + +func NewQBrush8(image QImageITF) *QBrush { + return QBrushFromPointer(unsafe.Pointer(C.QBrush_NewQBrush8(C.QtObjectPtr(PointerFromQImage(image))))) +} + +func NewQBrush7(pixmap QPixmapITF) *QBrush { + return QBrushFromPointer(unsafe.Pointer(C.QBrush_NewQBrush7(C.QtObjectPtr(PointerFromQPixmap(pixmap))))) +} + +func (ptr *QBrush) Gradient() *QGradient { + if ptr.Pointer() != nil { + return QGradientFromPointer(unsafe.Pointer(C.QBrush_Gradient(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QBrush) IsOpaque() bool { + if ptr.Pointer() != nil { + return C.QBrush_IsOpaque(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QBrush) SetColor2(color core.Qt__GlobalColor) { + if ptr.Pointer() != nil { + C.QBrush_SetColor2(C.QtObjectPtr(ptr.Pointer()), C.int(color)) + } +} + +func (ptr *QBrush) SetStyle(style core.Qt__BrushStyle) { + if ptr.Pointer() != nil { + C.QBrush_SetStyle(C.QtObjectPtr(ptr.Pointer()), C.int(style)) + } +} + +func (ptr *QBrush) SetTexture(pixmap QPixmapITF) { + if ptr.Pointer() != nil { + C.QBrush_SetTexture(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPixmap(pixmap))) + } +} + +func (ptr *QBrush) SetTextureImage(image QImageITF) { + if ptr.Pointer() != nil { + C.QBrush_SetTextureImage(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQImage(image))) + } +} + +func (ptr *QBrush) SetTransform(matrix QTransformITF) { + if ptr.Pointer() != nil { + C.QBrush_SetTransform(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTransform(matrix))) + } +} + +func (ptr *QBrush) Style() core.Qt__BrushStyle { + if ptr.Pointer() != nil { + return core.Qt__BrushStyle(C.QBrush_Style(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QBrush) Swap(other QBrushITF) { + if ptr.Pointer() != nil { + C.QBrush_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQBrush(other))) + } +} + +func (ptr *QBrush) DestroyQBrush() { + if ptr.Pointer() != nil { + C.QBrush_DestroyQBrush(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qbrush.h b/gui/qbrush.h new file mode 100755 index 00000000..3f12276e --- /dev/null +++ b/gui/qbrush.h @@ -0,0 +1,30 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QBrush_NewQBrush4(int color, int style); +void QBrush_SetColor(QtObjectPtr ptr, QtObjectPtr color); +QtObjectPtr QBrush_NewQBrush(); +QtObjectPtr QBrush_NewQBrush2(int style); +QtObjectPtr QBrush_NewQBrush6(int color, QtObjectPtr pixmap); +QtObjectPtr QBrush_NewQBrush9(QtObjectPtr other); +QtObjectPtr QBrush_NewQBrush3(QtObjectPtr color, int style); +QtObjectPtr QBrush_NewQBrush5(QtObjectPtr color, QtObjectPtr pixmap); +QtObjectPtr QBrush_NewQBrush10(QtObjectPtr gradient); +QtObjectPtr QBrush_NewQBrush8(QtObjectPtr image); +QtObjectPtr QBrush_NewQBrush7(QtObjectPtr pixmap); +QtObjectPtr QBrush_Gradient(QtObjectPtr ptr); +int QBrush_IsOpaque(QtObjectPtr ptr); +void QBrush_SetColor2(QtObjectPtr ptr, int color); +void QBrush_SetStyle(QtObjectPtr ptr, int style); +void QBrush_SetTexture(QtObjectPtr ptr, QtObjectPtr pixmap); +void QBrush_SetTextureImage(QtObjectPtr ptr, QtObjectPtr image); +void QBrush_SetTransform(QtObjectPtr ptr, QtObjectPtr matrix); +int QBrush_Style(QtObjectPtr ptr); +void QBrush_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QBrush_DestroyQBrush(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qclipboard.cpp b/gui/qclipboard.cpp new file mode 100755 index 00000000..5af030a9 --- /dev/null +++ b/gui/qclipboard.cpp @@ -0,0 +1,100 @@ +#include "qclipboard.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQClipboard: public QClipboard { +public: +void Signal_Changed(QClipboard::Mode mode){callbackQClipboardChanged(this->objectName().toUtf8().data(), mode);}; +void Signal_DataChanged(){callbackQClipboardDataChanged(this->objectName().toUtf8().data());}; +void Signal_FindBufferChanged(){callbackQClipboardFindBufferChanged(this->objectName().toUtf8().data());}; +void Signal_SelectionChanged(){callbackQClipboardSelectionChanged(this->objectName().toUtf8().data());}; +}; + +void QClipboard_Clear(QtObjectPtr ptr, int mode){ + static_cast(ptr)->clear(static_cast(mode)); +} + +QtObjectPtr QClipboard_MimeData(QtObjectPtr ptr, int mode){ + return const_cast(static_cast(ptr)->mimeData(static_cast(mode))); +} + +void QClipboard_SetMimeData(QtObjectPtr ptr, QtObjectPtr src, int mode){ + static_cast(ptr)->setMimeData(static_cast(src), static_cast(mode)); +} + +void QClipboard_ConnectChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QClipboard::changed), static_cast(ptr), static_cast(&MyQClipboard::Signal_Changed));; +} + +void QClipboard_DisconnectChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QClipboard::changed), static_cast(ptr), static_cast(&MyQClipboard::Signal_Changed));; +} + +void QClipboard_ConnectDataChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QClipboard::dataChanged), static_cast(ptr), static_cast(&MyQClipboard::Signal_DataChanged));; +} + +void QClipboard_DisconnectDataChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QClipboard::dataChanged), static_cast(ptr), static_cast(&MyQClipboard::Signal_DataChanged));; +} + +void QClipboard_ConnectFindBufferChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QClipboard::findBufferChanged), static_cast(ptr), static_cast(&MyQClipboard::Signal_FindBufferChanged));; +} + +void QClipboard_DisconnectFindBufferChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QClipboard::findBufferChanged), static_cast(ptr), static_cast(&MyQClipboard::Signal_FindBufferChanged));; +} + +int QClipboard_OwnsClipboard(QtObjectPtr ptr){ + return static_cast(ptr)->ownsClipboard(); +} + +int QClipboard_OwnsFindBuffer(QtObjectPtr ptr){ + return static_cast(ptr)->ownsFindBuffer(); +} + +int QClipboard_OwnsSelection(QtObjectPtr ptr){ + return static_cast(ptr)->ownsSelection(); +} + +void QClipboard_ConnectSelectionChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QClipboard::selectionChanged), static_cast(ptr), static_cast(&MyQClipboard::Signal_SelectionChanged));; +} + +void QClipboard_DisconnectSelectionChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QClipboard::selectionChanged), static_cast(ptr), static_cast(&MyQClipboard::Signal_SelectionChanged));; +} + +void QClipboard_SetImage(QtObjectPtr ptr, QtObjectPtr image, int mode){ + static_cast(ptr)->setImage(*static_cast(image), static_cast(mode)); +} + +void QClipboard_SetPixmap(QtObjectPtr ptr, QtObjectPtr pixmap, int mode){ + static_cast(ptr)->setPixmap(*static_cast(pixmap), static_cast(mode)); +} + +void QClipboard_SetText(QtObjectPtr ptr, char* text, int mode){ + static_cast(ptr)->setText(QString(text), static_cast(mode)); +} + +int QClipboard_SupportsFindBuffer(QtObjectPtr ptr){ + return static_cast(ptr)->supportsFindBuffer(); +} + +int QClipboard_SupportsSelection(QtObjectPtr ptr){ + return static_cast(ptr)->supportsSelection(); +} + +char* QClipboard_Text(QtObjectPtr ptr, int mode){ + return static_cast(ptr)->text(static_cast(mode)).toUtf8().data(); +} + diff --git a/gui/qclipboard.go b/gui/qclipboard.go new file mode 100755 index 00000000..2e57005d --- /dev/null +++ b/gui/qclipboard.go @@ -0,0 +1,203 @@ +package gui + +//#include "qclipboard.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QClipboard struct { + core.QObject +} + +type QClipboardITF interface { + core.QObjectITF + QClipboardPTR() *QClipboard +} + +func PointerFromQClipboard(ptr QClipboardITF) unsafe.Pointer { + if ptr != nil { + return ptr.QClipboardPTR().Pointer() + } + return nil +} + +func QClipboardFromPointer(ptr unsafe.Pointer) *QClipboard { + var n = new(QClipboard) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QClipboard_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QClipboard) QClipboardPTR() *QClipboard { + return ptr +} + +//QClipboard::Mode +type QClipboard__Mode int + +var ( + QClipboard__Clipboard = QClipboard__Mode(0) + QClipboard__Selection = QClipboard__Mode(1) + QClipboard__FindBuffer = QClipboard__Mode(2) + QClipboard__LastMode = QClipboard__Mode(QClipboard__FindBuffer) +) + +func (ptr *QClipboard) Clear(mode QClipboard__Mode) { + if ptr.Pointer() != nil { + C.QClipboard_Clear(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QClipboard) MimeData(mode QClipboard__Mode) *core.QMimeData { + if ptr.Pointer() != nil { + return core.QMimeDataFromPointer(unsafe.Pointer(C.QClipboard_MimeData(C.QtObjectPtr(ptr.Pointer()), C.int(mode)))) + } + return nil +} + +func (ptr *QClipboard) SetMimeData(src core.QMimeDataITF, mode QClipboard__Mode) { + if ptr.Pointer() != nil { + C.QClipboard_SetMimeData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQMimeData(src)), C.int(mode)) + } +} + +func (ptr *QClipboard) ConnectChanged(f func(mode QClipboard__Mode)) { + if ptr.Pointer() != nil { + C.QClipboard_ConnectChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "changed", f) + } +} + +func (ptr *QClipboard) DisconnectChanged() { + if ptr.Pointer() != nil { + C.QClipboard_DisconnectChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "changed") + } +} + +//export callbackQClipboardChanged +func callbackQClipboardChanged(ptrName *C.char, mode C.int) { + qt.GetSignal(C.GoString(ptrName), "changed").(func(QClipboard__Mode))(QClipboard__Mode(mode)) +} + +func (ptr *QClipboard) ConnectDataChanged(f func()) { + if ptr.Pointer() != nil { + C.QClipboard_ConnectDataChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "dataChanged", f) + } +} + +func (ptr *QClipboard) DisconnectDataChanged() { + if ptr.Pointer() != nil { + C.QClipboard_DisconnectDataChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "dataChanged") + } +} + +//export callbackQClipboardDataChanged +func callbackQClipboardDataChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "dataChanged").(func())() +} + +func (ptr *QClipboard) ConnectFindBufferChanged(f func()) { + if ptr.Pointer() != nil { + C.QClipboard_ConnectFindBufferChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "findBufferChanged", f) + } +} + +func (ptr *QClipboard) DisconnectFindBufferChanged() { + if ptr.Pointer() != nil { + C.QClipboard_DisconnectFindBufferChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "findBufferChanged") + } +} + +//export callbackQClipboardFindBufferChanged +func callbackQClipboardFindBufferChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "findBufferChanged").(func())() +} + +func (ptr *QClipboard) OwnsClipboard() bool { + if ptr.Pointer() != nil { + return C.QClipboard_OwnsClipboard(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QClipboard) OwnsFindBuffer() bool { + if ptr.Pointer() != nil { + return C.QClipboard_OwnsFindBuffer(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QClipboard) OwnsSelection() bool { + if ptr.Pointer() != nil { + return C.QClipboard_OwnsSelection(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QClipboard) ConnectSelectionChanged(f func()) { + if ptr.Pointer() != nil { + C.QClipboard_ConnectSelectionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "selectionChanged", f) + } +} + +func (ptr *QClipboard) DisconnectSelectionChanged() { + if ptr.Pointer() != nil { + C.QClipboard_DisconnectSelectionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "selectionChanged") + } +} + +//export callbackQClipboardSelectionChanged +func callbackQClipboardSelectionChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "selectionChanged").(func())() +} + +func (ptr *QClipboard) SetImage(image QImageITF, mode QClipboard__Mode) { + if ptr.Pointer() != nil { + C.QClipboard_SetImage(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQImage(image)), C.int(mode)) + } +} + +func (ptr *QClipboard) SetPixmap(pixmap QPixmapITF, mode QClipboard__Mode) { + if ptr.Pointer() != nil { + C.QClipboard_SetPixmap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPixmap(pixmap)), C.int(mode)) + } +} + +func (ptr *QClipboard) SetText(text string, mode QClipboard__Mode) { + if ptr.Pointer() != nil { + C.QClipboard_SetText(C.QtObjectPtr(ptr.Pointer()), C.CString(text), C.int(mode)) + } +} + +func (ptr *QClipboard) SupportsFindBuffer() bool { + if ptr.Pointer() != nil { + return C.QClipboard_SupportsFindBuffer(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QClipboard) SupportsSelection() bool { + if ptr.Pointer() != nil { + return C.QClipboard_SupportsSelection(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QClipboard) Text(mode QClipboard__Mode) string { + if ptr.Pointer() != nil { + return C.GoString(C.QClipboard_Text(C.QtObjectPtr(ptr.Pointer()), C.int(mode))) + } + return "" +} diff --git a/gui/qclipboard.h b/gui/qclipboard.h new file mode 100755 index 00000000..bee106c9 --- /dev/null +++ b/gui/qclipboard.h @@ -0,0 +1,29 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QClipboard_Clear(QtObjectPtr ptr, int mode); +QtObjectPtr QClipboard_MimeData(QtObjectPtr ptr, int mode); +void QClipboard_SetMimeData(QtObjectPtr ptr, QtObjectPtr src, int mode); +void QClipboard_ConnectChanged(QtObjectPtr ptr); +void QClipboard_DisconnectChanged(QtObjectPtr ptr); +void QClipboard_ConnectDataChanged(QtObjectPtr ptr); +void QClipboard_DisconnectDataChanged(QtObjectPtr ptr); +void QClipboard_ConnectFindBufferChanged(QtObjectPtr ptr); +void QClipboard_DisconnectFindBufferChanged(QtObjectPtr ptr); +int QClipboard_OwnsClipboard(QtObjectPtr ptr); +int QClipboard_OwnsFindBuffer(QtObjectPtr ptr); +int QClipboard_OwnsSelection(QtObjectPtr ptr); +void QClipboard_ConnectSelectionChanged(QtObjectPtr ptr); +void QClipboard_DisconnectSelectionChanged(QtObjectPtr ptr); +void QClipboard_SetImage(QtObjectPtr ptr, QtObjectPtr image, int mode); +void QClipboard_SetPixmap(QtObjectPtr ptr, QtObjectPtr pixmap, int mode); +void QClipboard_SetText(QtObjectPtr ptr, char* text, int mode); +int QClipboard_SupportsFindBuffer(QtObjectPtr ptr); +int QClipboard_SupportsSelection(QtObjectPtr ptr); +char* QClipboard_Text(QtObjectPtr ptr, int mode); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qcloseevent.cpp b/gui/qcloseevent.cpp new file mode 100755 index 00000000..88116a26 --- /dev/null +++ b/gui/qcloseevent.cpp @@ -0,0 +1,16 @@ +#include "qcloseevent.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCloseEvent: public QCloseEvent { +public: +}; + +QtObjectPtr QCloseEvent_NewQCloseEvent(){ + return new QCloseEvent(); +} + diff --git a/gui/qcloseevent.go b/gui/qcloseevent.go new file mode 100755 index 00000000..552e924a --- /dev/null +++ b/gui/qcloseevent.go @@ -0,0 +1,38 @@ +package gui + +//#include "qcloseevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QCloseEvent struct { + core.QEvent +} + +type QCloseEventITF interface { + core.QEventITF + QCloseEventPTR() *QCloseEvent +} + +func PointerFromQCloseEvent(ptr QCloseEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCloseEventPTR().Pointer() + } + return nil +} + +func QCloseEventFromPointer(ptr unsafe.Pointer) *QCloseEvent { + var n = new(QCloseEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QCloseEvent) QCloseEventPTR() *QCloseEvent { + return ptr +} + +func NewQCloseEvent() *QCloseEvent { + return QCloseEventFromPointer(unsafe.Pointer(C.QCloseEvent_NewQCloseEvent())) +} diff --git a/gui/qcloseevent.h b/gui/qcloseevent.h new file mode 100755 index 00000000..157606cc --- /dev/null +++ b/gui/qcloseevent.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QCloseEvent_NewQCloseEvent(); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qcolor.cpp b/gui/qcolor.cpp new file mode 100755 index 00000000..81708427 --- /dev/null +++ b/gui/qcolor.cpp @@ -0,0 +1,176 @@ +#include "qcolor.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQColor: public QColor { +public: +}; + +QtObjectPtr QColor_NewQColor(){ + return new QColor(); +} + +QtObjectPtr QColor_NewQColor8(int color){ + return new QColor(static_cast(color)); +} + +QtObjectPtr QColor_NewQColor6(QtObjectPtr color){ + return new QColor(*static_cast(color)); +} + +QtObjectPtr QColor_NewQColor4(char* name){ + return new QColor(QString(name)); +} + +QtObjectPtr QColor_NewQColor5(char* name){ + return new QColor(const_cast(name)); +} + +QtObjectPtr QColor_NewQColor2(int r, int g, int b, int a){ + return new QColor(r, g, b, a); +} + +int QColor_Alpha(QtObjectPtr ptr){ + return static_cast(ptr)->alpha(); +} + +int QColor_Black(QtObjectPtr ptr){ + return static_cast(ptr)->black(); +} + +int QColor_Blue(QtObjectPtr ptr){ + return static_cast(ptr)->blue(); +} + +char* QColor_QColor_ColorNames(){ + return QColor::colorNames().join("|").toUtf8().data(); +} + +int QColor_Cyan(QtObjectPtr ptr){ + return static_cast(ptr)->cyan(); +} + +void QColor_GetCmyk(QtObjectPtr ptr, int c, int m, int y, int k, int a){ + static_cast(ptr)->getCmyk(&c, &m, &y, &k, &a); +} + +void QColor_GetHsl(QtObjectPtr ptr, int h, int s, int l, int a){ + static_cast(ptr)->getHsl(&h, &s, &l, &a); +} + +void QColor_GetHsv(QtObjectPtr ptr, int h, int s, int v, int a){ + static_cast(ptr)->getHsv(&h, &s, &v, &a); +} + +void QColor_GetRgb(QtObjectPtr ptr, int r, int g, int b, int a){ + static_cast(ptr)->getRgb(&r, &g, &b, &a); +} + +int QColor_Green(QtObjectPtr ptr){ + return static_cast(ptr)->green(); +} + +int QColor_HslHue(QtObjectPtr ptr){ + return static_cast(ptr)->hslHue(); +} + +int QColor_HslSaturation(QtObjectPtr ptr){ + return static_cast(ptr)->hslSaturation(); +} + +int QColor_HsvHue(QtObjectPtr ptr){ + return static_cast(ptr)->hsvHue(); +} + +int QColor_HsvSaturation(QtObjectPtr ptr){ + return static_cast(ptr)->hsvSaturation(); +} + +int QColor_Hue(QtObjectPtr ptr){ + return static_cast(ptr)->hue(); +} + +int QColor_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QColor_QColor_IsValidColor(char* name){ + return QColor::isValidColor(QString(name)); +} + +int QColor_Lightness(QtObjectPtr ptr){ + return static_cast(ptr)->lightness(); +} + +int QColor_Magenta(QtObjectPtr ptr){ + return static_cast(ptr)->magenta(); +} + +char* QColor_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +char* QColor_Name2(QtObjectPtr ptr, int format){ + return static_cast(ptr)->name(static_cast(format)).toUtf8().data(); +} + +int QColor_Red(QtObjectPtr ptr){ + return static_cast(ptr)->red(); +} + +int QColor_Saturation(QtObjectPtr ptr){ + return static_cast(ptr)->saturation(); +} + +void QColor_SetAlpha(QtObjectPtr ptr, int alpha){ + static_cast(ptr)->setAlpha(alpha); +} + +void QColor_SetBlue(QtObjectPtr ptr, int blue){ + static_cast(ptr)->setBlue(blue); +} + +void QColor_SetCmyk(QtObjectPtr ptr, int c, int m, int y, int k, int a){ + static_cast(ptr)->setCmyk(c, m, y, k, a); +} + +void QColor_SetGreen(QtObjectPtr ptr, int green){ + static_cast(ptr)->setGreen(green); +} + +void QColor_SetHsl(QtObjectPtr ptr, int h, int s, int l, int a){ + static_cast(ptr)->setHsl(h, s, l, a); +} + +void QColor_SetHsv(QtObjectPtr ptr, int h, int s, int v, int a){ + static_cast(ptr)->setHsv(h, s, v, a); +} + +void QColor_SetNamedColor(QtObjectPtr ptr, char* name){ + static_cast(ptr)->setNamedColor(QString(name)); +} + +void QColor_SetRed(QtObjectPtr ptr, int red){ + static_cast(ptr)->setRed(red); +} + +void QColor_SetRgb(QtObjectPtr ptr, int r, int g, int b, int a){ + static_cast(ptr)->setRgb(r, g, b, a); +} + +int QColor_Spec(QtObjectPtr ptr){ + return static_cast(ptr)->spec(); +} + +int QColor_Value(QtObjectPtr ptr){ + return static_cast(ptr)->value(); +} + +int QColor_Yellow(QtObjectPtr ptr){ + return static_cast(ptr)->yellow(); +} + diff --git a/gui/qcolor.go b/gui/qcolor.go new file mode 100755 index 00000000..37d2bc1f --- /dev/null +++ b/gui/qcolor.go @@ -0,0 +1,311 @@ +package gui + +//#include "qcolor.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QColor struct { + ptr unsafe.Pointer +} + +type QColorITF interface { + QColorPTR() *QColor +} + +func (p *QColor) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QColor) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQColor(ptr QColorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QColorPTR().Pointer() + } + return nil +} + +func QColorFromPointer(ptr unsafe.Pointer) *QColor { + var n = new(QColor) + n.SetPointer(ptr) + return n +} + +func (ptr *QColor) QColorPTR() *QColor { + return ptr +} + +//QColor::NameFormat +type QColor__NameFormat int + +var ( + QColor__HexRgb = QColor__NameFormat(0) + QColor__HexArgb = QColor__NameFormat(1) +) + +//QColor::Spec +type QColor__Spec int + +var ( + QColor__Invalid = QColor__Spec(0) + QColor__Rgb = QColor__Spec(1) + QColor__Hsv = QColor__Spec(2) + QColor__Cmyk = QColor__Spec(3) + QColor__Hsl = QColor__Spec(4) +) + +func NewQColor() *QColor { + return QColorFromPointer(unsafe.Pointer(C.QColor_NewQColor())) +} + +func NewQColor8(color core.Qt__GlobalColor) *QColor { + return QColorFromPointer(unsafe.Pointer(C.QColor_NewQColor8(C.int(color)))) +} + +func NewQColor6(color QColorITF) *QColor { + return QColorFromPointer(unsafe.Pointer(C.QColor_NewQColor6(C.QtObjectPtr(PointerFromQColor(color))))) +} + +func NewQColor4(name string) *QColor { + return QColorFromPointer(unsafe.Pointer(C.QColor_NewQColor4(C.CString(name)))) +} + +func NewQColor5(name string) *QColor { + return QColorFromPointer(unsafe.Pointer(C.QColor_NewQColor5(C.CString(name)))) +} + +func NewQColor2(r int, g int, b int, a int) *QColor { + return QColorFromPointer(unsafe.Pointer(C.QColor_NewQColor2(C.int(r), C.int(g), C.int(b), C.int(a)))) +} + +func (ptr *QColor) Alpha() int { + if ptr.Pointer() != nil { + return int(C.QColor_Alpha(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QColor) Black() int { + if ptr.Pointer() != nil { + return int(C.QColor_Black(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QColor) Blue() int { + if ptr.Pointer() != nil { + return int(C.QColor_Blue(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QColor_ColorNames() []string { + return strings.Split(C.GoString(C.QColor_QColor_ColorNames()), "|") +} + +func (ptr *QColor) Cyan() int { + if ptr.Pointer() != nil { + return int(C.QColor_Cyan(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QColor) GetCmyk(c int, m int, y int, k int, a int) { + if ptr.Pointer() != nil { + C.QColor_GetCmyk(C.QtObjectPtr(ptr.Pointer()), C.int(c), C.int(m), C.int(y), C.int(k), C.int(a)) + } +} + +func (ptr *QColor) GetHsl(h int, s int, l int, a int) { + if ptr.Pointer() != nil { + C.QColor_GetHsl(C.QtObjectPtr(ptr.Pointer()), C.int(h), C.int(s), C.int(l), C.int(a)) + } +} + +func (ptr *QColor) GetHsv(h int, s int, v int, a int) { + if ptr.Pointer() != nil { + C.QColor_GetHsv(C.QtObjectPtr(ptr.Pointer()), C.int(h), C.int(s), C.int(v), C.int(a)) + } +} + +func (ptr *QColor) GetRgb(r int, g int, b int, a int) { + if ptr.Pointer() != nil { + C.QColor_GetRgb(C.QtObjectPtr(ptr.Pointer()), C.int(r), C.int(g), C.int(b), C.int(a)) + } +} + +func (ptr *QColor) Green() int { + if ptr.Pointer() != nil { + return int(C.QColor_Green(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QColor) HslHue() int { + if ptr.Pointer() != nil { + return int(C.QColor_HslHue(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QColor) HslSaturation() int { + if ptr.Pointer() != nil { + return int(C.QColor_HslSaturation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QColor) HsvHue() int { + if ptr.Pointer() != nil { + return int(C.QColor_HsvHue(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QColor) HsvSaturation() int { + if ptr.Pointer() != nil { + return int(C.QColor_HsvSaturation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QColor) Hue() int { + if ptr.Pointer() != nil { + return int(C.QColor_Hue(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QColor) IsValid() bool { + if ptr.Pointer() != nil { + return C.QColor_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func QColor_IsValidColor(name string) bool { + return C.QColor_QColor_IsValidColor(C.CString(name)) != 0 +} + +func (ptr *QColor) Lightness() int { + if ptr.Pointer() != nil { + return int(C.QColor_Lightness(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QColor) Magenta() int { + if ptr.Pointer() != nil { + return int(C.QColor_Magenta(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QColor) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QColor_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QColor) Name2(format QColor__NameFormat) string { + if ptr.Pointer() != nil { + return C.GoString(C.QColor_Name2(C.QtObjectPtr(ptr.Pointer()), C.int(format))) + } + return "" +} + +func (ptr *QColor) Red() int { + if ptr.Pointer() != nil { + return int(C.QColor_Red(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QColor) Saturation() int { + if ptr.Pointer() != nil { + return int(C.QColor_Saturation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QColor) SetAlpha(alpha int) { + if ptr.Pointer() != nil { + C.QColor_SetAlpha(C.QtObjectPtr(ptr.Pointer()), C.int(alpha)) + } +} + +func (ptr *QColor) SetBlue(blue int) { + if ptr.Pointer() != nil { + C.QColor_SetBlue(C.QtObjectPtr(ptr.Pointer()), C.int(blue)) + } +} + +func (ptr *QColor) SetCmyk(c int, m int, y int, k int, a int) { + if ptr.Pointer() != nil { + C.QColor_SetCmyk(C.QtObjectPtr(ptr.Pointer()), C.int(c), C.int(m), C.int(y), C.int(k), C.int(a)) + } +} + +func (ptr *QColor) SetGreen(green int) { + if ptr.Pointer() != nil { + C.QColor_SetGreen(C.QtObjectPtr(ptr.Pointer()), C.int(green)) + } +} + +func (ptr *QColor) SetHsl(h int, s int, l int, a int) { + if ptr.Pointer() != nil { + C.QColor_SetHsl(C.QtObjectPtr(ptr.Pointer()), C.int(h), C.int(s), C.int(l), C.int(a)) + } +} + +func (ptr *QColor) SetHsv(h int, s int, v int, a int) { + if ptr.Pointer() != nil { + C.QColor_SetHsv(C.QtObjectPtr(ptr.Pointer()), C.int(h), C.int(s), C.int(v), C.int(a)) + } +} + +func (ptr *QColor) SetNamedColor(name string) { + if ptr.Pointer() != nil { + C.QColor_SetNamedColor(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func (ptr *QColor) SetRed(red int) { + if ptr.Pointer() != nil { + C.QColor_SetRed(C.QtObjectPtr(ptr.Pointer()), C.int(red)) + } +} + +func (ptr *QColor) SetRgb(r int, g int, b int, a int) { + if ptr.Pointer() != nil { + C.QColor_SetRgb(C.QtObjectPtr(ptr.Pointer()), C.int(r), C.int(g), C.int(b), C.int(a)) + } +} + +func (ptr *QColor) Spec() QColor__Spec { + if ptr.Pointer() != nil { + return QColor__Spec(C.QColor_Spec(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QColor) Value() int { + if ptr.Pointer() != nil { + return int(C.QColor_Value(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QColor) Yellow() int { + if ptr.Pointer() != nil { + return int(C.QColor_Yellow(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/gui/qcolor.h b/gui/qcolor.h new file mode 100755 index 00000000..4c19c907 --- /dev/null +++ b/gui/qcolor.h @@ -0,0 +1,50 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QColor_NewQColor(); +QtObjectPtr QColor_NewQColor8(int color); +QtObjectPtr QColor_NewQColor6(QtObjectPtr color); +QtObjectPtr QColor_NewQColor4(char* name); +QtObjectPtr QColor_NewQColor5(char* name); +QtObjectPtr QColor_NewQColor2(int r, int g, int b, int a); +int QColor_Alpha(QtObjectPtr ptr); +int QColor_Black(QtObjectPtr ptr); +int QColor_Blue(QtObjectPtr ptr); +char* QColor_QColor_ColorNames(); +int QColor_Cyan(QtObjectPtr ptr); +void QColor_GetCmyk(QtObjectPtr ptr, int c, int m, int y, int k, int a); +void QColor_GetHsl(QtObjectPtr ptr, int h, int s, int l, int a); +void QColor_GetHsv(QtObjectPtr ptr, int h, int s, int v, int a); +void QColor_GetRgb(QtObjectPtr ptr, int r, int g, int b, int a); +int QColor_Green(QtObjectPtr ptr); +int QColor_HslHue(QtObjectPtr ptr); +int QColor_HslSaturation(QtObjectPtr ptr); +int QColor_HsvHue(QtObjectPtr ptr); +int QColor_HsvSaturation(QtObjectPtr ptr); +int QColor_Hue(QtObjectPtr ptr); +int QColor_IsValid(QtObjectPtr ptr); +int QColor_QColor_IsValidColor(char* name); +int QColor_Lightness(QtObjectPtr ptr); +int QColor_Magenta(QtObjectPtr ptr); +char* QColor_Name(QtObjectPtr ptr); +char* QColor_Name2(QtObjectPtr ptr, int format); +int QColor_Red(QtObjectPtr ptr); +int QColor_Saturation(QtObjectPtr ptr); +void QColor_SetAlpha(QtObjectPtr ptr, int alpha); +void QColor_SetBlue(QtObjectPtr ptr, int blue); +void QColor_SetCmyk(QtObjectPtr ptr, int c, int m, int y, int k, int a); +void QColor_SetGreen(QtObjectPtr ptr, int green); +void QColor_SetHsl(QtObjectPtr ptr, int h, int s, int l, int a); +void QColor_SetHsv(QtObjectPtr ptr, int h, int s, int v, int a); +void QColor_SetNamedColor(QtObjectPtr ptr, char* name); +void QColor_SetRed(QtObjectPtr ptr, int red); +void QColor_SetRgb(QtObjectPtr ptr, int r, int g, int b, int a); +int QColor_Spec(QtObjectPtr ptr); +int QColor_Value(QtObjectPtr ptr); +int QColor_Yellow(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qconicalgradient.cpp b/gui/qconicalgradient.cpp new file mode 100755 index 00000000..c2a6772b --- /dev/null +++ b/gui/qconicalgradient.cpp @@ -0,0 +1,22 @@ +#include "qconicalgradient.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQConicalGradient: public QConicalGradient { +public: +}; + +QtObjectPtr QConicalGradient_NewQConicalGradient(){ + return new QConicalGradient(); +} + +void QConicalGradient_SetCenter(QtObjectPtr ptr, QtObjectPtr center){ + static_cast(ptr)->setCenter(*static_cast(center)); +} + diff --git a/gui/qconicalgradient.go b/gui/qconicalgradient.go new file mode 100755 index 00000000..bff55b69 --- /dev/null +++ b/gui/qconicalgradient.go @@ -0,0 +1,44 @@ +package gui + +//#include "qconicalgradient.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QConicalGradient struct { + QGradient +} + +type QConicalGradientITF interface { + QGradientITF + QConicalGradientPTR() *QConicalGradient +} + +func PointerFromQConicalGradient(ptr QConicalGradientITF) unsafe.Pointer { + if ptr != nil { + return ptr.QConicalGradientPTR().Pointer() + } + return nil +} + +func QConicalGradientFromPointer(ptr unsafe.Pointer) *QConicalGradient { + var n = new(QConicalGradient) + n.SetPointer(ptr) + return n +} + +func (ptr *QConicalGradient) QConicalGradientPTR() *QConicalGradient { + return ptr +} + +func NewQConicalGradient() *QConicalGradient { + return QConicalGradientFromPointer(unsafe.Pointer(C.QConicalGradient_NewQConicalGradient())) +} + +func (ptr *QConicalGradient) SetCenter(center core.QPointFITF) { + if ptr.Pointer() != nil { + C.QConicalGradient_SetCenter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(center))) + } +} diff --git a/gui/qconicalgradient.h b/gui/qconicalgradient.h new file mode 100755 index 00000000..1481f218 --- /dev/null +++ b/gui/qconicalgradient.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QConicalGradient_NewQConicalGradient(); +void QConicalGradient_SetCenter(QtObjectPtr ptr, QtObjectPtr center); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qcontextmenuevent.cpp b/gui/qcontextmenuevent.cpp new file mode 100755 index 00000000..80dd0aba --- /dev/null +++ b/gui/qcontextmenuevent.cpp @@ -0,0 +1,45 @@ +#include "qcontextmenuevent.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQContextMenuEvent: public QContextMenuEvent { +public: +}; + +QtObjectPtr QContextMenuEvent_NewQContextMenuEvent3(int reason, QtObjectPtr pos){ + return new QContextMenuEvent(static_cast(reason), *static_cast(pos)); +} + +QtObjectPtr QContextMenuEvent_NewQContextMenuEvent2(int reason, QtObjectPtr pos, QtObjectPtr globalPos){ + return new QContextMenuEvent(static_cast(reason), *static_cast(pos), *static_cast(globalPos)); +} + +QtObjectPtr QContextMenuEvent_NewQContextMenuEvent(int reason, QtObjectPtr pos, QtObjectPtr globalPos, int modifiers){ + return new QContextMenuEvent(static_cast(reason), *static_cast(pos), *static_cast(globalPos), static_cast(modifiers)); +} + +int QContextMenuEvent_GlobalX(QtObjectPtr ptr){ + return static_cast(ptr)->globalX(); +} + +int QContextMenuEvent_GlobalY(QtObjectPtr ptr){ + return static_cast(ptr)->globalY(); +} + +int QContextMenuEvent_Reason(QtObjectPtr ptr){ + return static_cast(ptr)->reason(); +} + +int QContextMenuEvent_X(QtObjectPtr ptr){ + return static_cast(ptr)->x(); +} + +int QContextMenuEvent_Y(QtObjectPtr ptr){ + return static_cast(ptr)->y(); +} + diff --git a/gui/qcontextmenuevent.go b/gui/qcontextmenuevent.go new file mode 100755 index 00000000..5057b4a8 --- /dev/null +++ b/gui/qcontextmenuevent.go @@ -0,0 +1,90 @@ +package gui + +//#include "qcontextmenuevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QContextMenuEvent struct { + QInputEvent +} + +type QContextMenuEventITF interface { + QInputEventITF + QContextMenuEventPTR() *QContextMenuEvent +} + +func PointerFromQContextMenuEvent(ptr QContextMenuEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QContextMenuEventPTR().Pointer() + } + return nil +} + +func QContextMenuEventFromPointer(ptr unsafe.Pointer) *QContextMenuEvent { + var n = new(QContextMenuEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QContextMenuEvent) QContextMenuEventPTR() *QContextMenuEvent { + return ptr +} + +//QContextMenuEvent::Reason +type QContextMenuEvent__Reason int + +var ( + QContextMenuEvent__Mouse = QContextMenuEvent__Reason(0) + QContextMenuEvent__Keyboard = QContextMenuEvent__Reason(1) + QContextMenuEvent__Other = QContextMenuEvent__Reason(2) +) + +func NewQContextMenuEvent3(reason QContextMenuEvent__Reason, pos core.QPointITF) *QContextMenuEvent { + return QContextMenuEventFromPointer(unsafe.Pointer(C.QContextMenuEvent_NewQContextMenuEvent3(C.int(reason), C.QtObjectPtr(core.PointerFromQPoint(pos))))) +} + +func NewQContextMenuEvent2(reason QContextMenuEvent__Reason, pos core.QPointITF, globalPos core.QPointITF) *QContextMenuEvent { + return QContextMenuEventFromPointer(unsafe.Pointer(C.QContextMenuEvent_NewQContextMenuEvent2(C.int(reason), C.QtObjectPtr(core.PointerFromQPoint(pos)), C.QtObjectPtr(core.PointerFromQPoint(globalPos))))) +} + +func NewQContextMenuEvent(reason QContextMenuEvent__Reason, pos core.QPointITF, globalPos core.QPointITF, modifiers core.Qt__KeyboardModifier) *QContextMenuEvent { + return QContextMenuEventFromPointer(unsafe.Pointer(C.QContextMenuEvent_NewQContextMenuEvent(C.int(reason), C.QtObjectPtr(core.PointerFromQPoint(pos)), C.QtObjectPtr(core.PointerFromQPoint(globalPos)), C.int(modifiers)))) +} + +func (ptr *QContextMenuEvent) GlobalX() int { + if ptr.Pointer() != nil { + return int(C.QContextMenuEvent_GlobalX(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QContextMenuEvent) GlobalY() int { + if ptr.Pointer() != nil { + return int(C.QContextMenuEvent_GlobalY(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QContextMenuEvent) Reason() QContextMenuEvent__Reason { + if ptr.Pointer() != nil { + return QContextMenuEvent__Reason(C.QContextMenuEvent_Reason(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QContextMenuEvent) X() int { + if ptr.Pointer() != nil { + return int(C.QContextMenuEvent_X(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QContextMenuEvent) Y() int { + if ptr.Pointer() != nil { + return int(C.QContextMenuEvent_Y(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/gui/qcontextmenuevent.h b/gui/qcontextmenuevent.h new file mode 100755 index 00000000..76db3e85 --- /dev/null +++ b/gui/qcontextmenuevent.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QContextMenuEvent_NewQContextMenuEvent3(int reason, QtObjectPtr pos); +QtObjectPtr QContextMenuEvent_NewQContextMenuEvent2(int reason, QtObjectPtr pos, QtObjectPtr globalPos); +QtObjectPtr QContextMenuEvent_NewQContextMenuEvent(int reason, QtObjectPtr pos, QtObjectPtr globalPos, int modifiers); +int QContextMenuEvent_GlobalX(QtObjectPtr ptr); +int QContextMenuEvent_GlobalY(QtObjectPtr ptr); +int QContextMenuEvent_Reason(QtObjectPtr ptr); +int QContextMenuEvent_X(QtObjectPtr ptr); +int QContextMenuEvent_Y(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qcursor.cpp b/gui/qcursor.cpp new file mode 100755 index 00000000..87172597 --- /dev/null +++ b/gui/qcursor.cpp @@ -0,0 +1,76 @@ +#include "qcursor.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCursor: public QCursor { +public: +}; + +void QCursor_QCursor_SetPos2(QtObjectPtr screen, int x, int y){ + QCursor::setPos(static_cast(screen), x, y); +} + +void QCursor_QCursor_SetPos(int x, int y){ + QCursor::setPos(x, y); +} + +QtObjectPtr QCursor_NewQCursor(){ + return new QCursor(); +} + +QtObjectPtr QCursor_NewQCursor6(QtObjectPtr other){ + return new QCursor(*static_cast(other)); +} + +QtObjectPtr QCursor_NewQCursor2(int shape){ + return new QCursor(static_cast(shape)); +} + +QtObjectPtr QCursor_NewQCursor3(QtObjectPtr bitmap, QtObjectPtr mask, int hotX, int hotY){ + return new QCursor(*static_cast(bitmap), *static_cast(mask), hotX, hotY); +} + +QtObjectPtr QCursor_NewQCursor5(QtObjectPtr c){ + return new QCursor(*static_cast(c)); +} + +QtObjectPtr QCursor_NewQCursor4(QtObjectPtr pixmap, int hotX, int hotY){ + return new QCursor(*static_cast(pixmap), hotX, hotY); +} + +QtObjectPtr QCursor_Bitmap(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->bitmap()); +} + +QtObjectPtr QCursor_Mask(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->mask()); +} + +void QCursor_QCursor_SetPos4(QtObjectPtr screen, QtObjectPtr p){ + QCursor::setPos(static_cast(screen), *static_cast(p)); +} + +void QCursor_QCursor_SetPos3(QtObjectPtr p){ + QCursor::setPos(*static_cast(p)); +} + +void QCursor_SetShape(QtObjectPtr ptr, int shape){ + static_cast(ptr)->setShape(static_cast(shape)); +} + +int QCursor_Shape(QtObjectPtr ptr){ + return static_cast(ptr)->shape(); +} + +void QCursor_DestroyQCursor(QtObjectPtr ptr){ + static_cast(ptr)->~QCursor(); +} + diff --git a/gui/qcursor.go b/gui/qcursor.go new file mode 100755 index 00000000..f6a8b4fb --- /dev/null +++ b/gui/qcursor.go @@ -0,0 +1,114 @@ +package gui + +//#include "qcursor.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QCursor struct { + ptr unsafe.Pointer +} + +type QCursorITF interface { + QCursorPTR() *QCursor +} + +func (p *QCursor) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QCursor) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQCursor(ptr QCursorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCursorPTR().Pointer() + } + return nil +} + +func QCursorFromPointer(ptr unsafe.Pointer) *QCursor { + var n = new(QCursor) + n.SetPointer(ptr) + return n +} + +func (ptr *QCursor) QCursorPTR() *QCursor { + return ptr +} + +func QCursor_SetPos2(screen QScreenITF, x int, y int) { + C.QCursor_QCursor_SetPos2(C.QtObjectPtr(PointerFromQScreen(screen)), C.int(x), C.int(y)) +} + +func QCursor_SetPos(x int, y int) { + C.QCursor_QCursor_SetPos(C.int(x), C.int(y)) +} + +func NewQCursor() *QCursor { + return QCursorFromPointer(unsafe.Pointer(C.QCursor_NewQCursor())) +} + +func NewQCursor6(other QCursorITF) *QCursor { + return QCursorFromPointer(unsafe.Pointer(C.QCursor_NewQCursor6(C.QtObjectPtr(PointerFromQCursor(other))))) +} + +func NewQCursor2(shape core.Qt__CursorShape) *QCursor { + return QCursorFromPointer(unsafe.Pointer(C.QCursor_NewQCursor2(C.int(shape)))) +} + +func NewQCursor3(bitmap QBitmapITF, mask QBitmapITF, hotX int, hotY int) *QCursor { + return QCursorFromPointer(unsafe.Pointer(C.QCursor_NewQCursor3(C.QtObjectPtr(PointerFromQBitmap(bitmap)), C.QtObjectPtr(PointerFromQBitmap(mask)), C.int(hotX), C.int(hotY)))) +} + +func NewQCursor5(c QCursorITF) *QCursor { + return QCursorFromPointer(unsafe.Pointer(C.QCursor_NewQCursor5(C.QtObjectPtr(PointerFromQCursor(c))))) +} + +func NewQCursor4(pixmap QPixmapITF, hotX int, hotY int) *QCursor { + return QCursorFromPointer(unsafe.Pointer(C.QCursor_NewQCursor4(C.QtObjectPtr(PointerFromQPixmap(pixmap)), C.int(hotX), C.int(hotY)))) +} + +func (ptr *QCursor) Bitmap() *QBitmap { + if ptr.Pointer() != nil { + return QBitmapFromPointer(unsafe.Pointer(C.QCursor_Bitmap(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QCursor) Mask() *QBitmap { + if ptr.Pointer() != nil { + return QBitmapFromPointer(unsafe.Pointer(C.QCursor_Mask(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func QCursor_SetPos4(screen QScreenITF, p core.QPointITF) { + C.QCursor_QCursor_SetPos4(C.QtObjectPtr(PointerFromQScreen(screen)), C.QtObjectPtr(core.PointerFromQPoint(p))) +} + +func QCursor_SetPos3(p core.QPointITF) { + C.QCursor_QCursor_SetPos3(C.QtObjectPtr(core.PointerFromQPoint(p))) +} + +func (ptr *QCursor) SetShape(shape core.Qt__CursorShape) { + if ptr.Pointer() != nil { + C.QCursor_SetShape(C.QtObjectPtr(ptr.Pointer()), C.int(shape)) + } +} + +func (ptr *QCursor) Shape() core.Qt__CursorShape { + if ptr.Pointer() != nil { + return core.Qt__CursorShape(C.QCursor_Shape(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCursor) DestroyQCursor() { + if ptr.Pointer() != nil { + C.QCursor_DestroyQCursor(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qcursor.h b/gui/qcursor.h new file mode 100755 index 00000000..005e8d40 --- /dev/null +++ b/gui/qcursor.h @@ -0,0 +1,24 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QCursor_QCursor_SetPos2(QtObjectPtr screen, int x, int y); +void QCursor_QCursor_SetPos(int x, int y); +QtObjectPtr QCursor_NewQCursor(); +QtObjectPtr QCursor_NewQCursor6(QtObjectPtr other); +QtObjectPtr QCursor_NewQCursor2(int shape); +QtObjectPtr QCursor_NewQCursor3(QtObjectPtr bitmap, QtObjectPtr mask, int hotX, int hotY); +QtObjectPtr QCursor_NewQCursor5(QtObjectPtr c); +QtObjectPtr QCursor_NewQCursor4(QtObjectPtr pixmap, int hotX, int hotY); +QtObjectPtr QCursor_Bitmap(QtObjectPtr ptr); +QtObjectPtr QCursor_Mask(QtObjectPtr ptr); +void QCursor_QCursor_SetPos4(QtObjectPtr screen, QtObjectPtr p); +void QCursor_QCursor_SetPos3(QtObjectPtr p); +void QCursor_SetShape(QtObjectPtr ptr, int shape); +int QCursor_Shape(QtObjectPtr ptr); +void QCursor_DestroyQCursor(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qdesktopservices.cpp b/gui/qdesktopservices.cpp new file mode 100755 index 00000000..4e9b2493 --- /dev/null +++ b/gui/qdesktopservices.cpp @@ -0,0 +1,25 @@ +#include "qdesktopservices.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDesktopServices: public QDesktopServices { +public: +}; + +int QDesktopServices_QDesktopServices_OpenUrl(char* url){ + return QDesktopServices::openUrl(QUrl(QString(url))); +} + +void QDesktopServices_QDesktopServices_SetUrlHandler(char* scheme, QtObjectPtr receiver, char* method){ + QDesktopServices::setUrlHandler(QString(scheme), static_cast(receiver), const_cast(method)); +} + +void QDesktopServices_QDesktopServices_UnsetUrlHandler(char* scheme){ + QDesktopServices::unsetUrlHandler(QString(scheme)); +} + diff --git a/gui/qdesktopservices.go b/gui/qdesktopservices.go new file mode 100755 index 00000000..6b16c290 --- /dev/null +++ b/gui/qdesktopservices.go @@ -0,0 +1,53 @@ +package gui + +//#include "qdesktopservices.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QDesktopServices struct { + ptr unsafe.Pointer +} + +type QDesktopServicesITF interface { + QDesktopServicesPTR() *QDesktopServices +} + +func (p *QDesktopServices) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDesktopServices) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDesktopServices(ptr QDesktopServicesITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDesktopServicesPTR().Pointer() + } + return nil +} + +func QDesktopServicesFromPointer(ptr unsafe.Pointer) *QDesktopServices { + var n = new(QDesktopServices) + n.SetPointer(ptr) + return n +} + +func (ptr *QDesktopServices) QDesktopServicesPTR() *QDesktopServices { + return ptr +} + +func QDesktopServices_OpenUrl(url string) bool { + return C.QDesktopServices_QDesktopServices_OpenUrl(C.CString(url)) != 0 +} + +func QDesktopServices_SetUrlHandler(scheme string, receiver core.QObjectITF, method string) { + C.QDesktopServices_QDesktopServices_SetUrlHandler(C.CString(scheme), C.QtObjectPtr(core.PointerFromQObject(receiver)), C.CString(method)) +} + +func QDesktopServices_UnsetUrlHandler(scheme string) { + C.QDesktopServices_QDesktopServices_UnsetUrlHandler(C.CString(scheme)) +} diff --git a/gui/qdesktopservices.h b/gui/qdesktopservices.h new file mode 100755 index 00000000..a83225e1 --- /dev/null +++ b/gui/qdesktopservices.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QDesktopServices_QDesktopServices_OpenUrl(char* url); +void QDesktopServices_QDesktopServices_SetUrlHandler(char* scheme, QtObjectPtr receiver, char* method); +void QDesktopServices_QDesktopServices_UnsetUrlHandler(char* scheme); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qdoublevalidator.cpp b/gui/qdoublevalidator.cpp new file mode 100755 index 00000000..68b01062 --- /dev/null +++ b/gui/qdoublevalidator.cpp @@ -0,0 +1,37 @@ +#include "qdoublevalidator.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDoubleValidator: public QDoubleValidator { +public: +}; + +int QDoubleValidator_Notation(QtObjectPtr ptr){ + return static_cast(ptr)->notation(); +} + +void QDoubleValidator_SetDecimals(QtObjectPtr ptr, int v){ + static_cast(ptr)->setDecimals(v); +} + +void QDoubleValidator_SetNotation(QtObjectPtr ptr, int v){ + static_cast(ptr)->setNotation(static_cast(v)); +} + +QtObjectPtr QDoubleValidator_NewQDoubleValidator(QtObjectPtr parent){ + return new QDoubleValidator(static_cast(parent)); +} + +int QDoubleValidator_Decimals(QtObjectPtr ptr){ + return static_cast(ptr)->decimals(); +} + +void QDoubleValidator_DestroyQDoubleValidator(QtObjectPtr ptr){ + static_cast(ptr)->~QDoubleValidator(); +} + diff --git a/gui/qdoublevalidator.go b/gui/qdoublevalidator.go new file mode 100755 index 00000000..6ed9300d --- /dev/null +++ b/gui/qdoublevalidator.go @@ -0,0 +1,83 @@ +package gui + +//#include "qdoublevalidator.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QDoubleValidator struct { + QValidator +} + +type QDoubleValidatorITF interface { + QValidatorITF + QDoubleValidatorPTR() *QDoubleValidator +} + +func PointerFromQDoubleValidator(ptr QDoubleValidatorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDoubleValidatorPTR().Pointer() + } + return nil +} + +func QDoubleValidatorFromPointer(ptr unsafe.Pointer) *QDoubleValidator { + var n = new(QDoubleValidator) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QDoubleValidator_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QDoubleValidator) QDoubleValidatorPTR() *QDoubleValidator { + return ptr +} + +//QDoubleValidator::Notation +type QDoubleValidator__Notation int + +var ( + QDoubleValidator__StandardNotation = QDoubleValidator__Notation(0) + QDoubleValidator__ScientificNotation = QDoubleValidator__Notation(1) +) + +func (ptr *QDoubleValidator) Notation() QDoubleValidator__Notation { + if ptr.Pointer() != nil { + return QDoubleValidator__Notation(C.QDoubleValidator_Notation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDoubleValidator) SetDecimals(v int) { + if ptr.Pointer() != nil { + C.QDoubleValidator_SetDecimals(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QDoubleValidator) SetNotation(v QDoubleValidator__Notation) { + if ptr.Pointer() != nil { + C.QDoubleValidator_SetNotation(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func NewQDoubleValidator(parent core.QObjectITF) *QDoubleValidator { + return QDoubleValidatorFromPointer(unsafe.Pointer(C.QDoubleValidator_NewQDoubleValidator(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QDoubleValidator) Decimals() int { + if ptr.Pointer() != nil { + return int(C.QDoubleValidator_Decimals(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDoubleValidator) DestroyQDoubleValidator() { + if ptr.Pointer() != nil { + C.QDoubleValidator_DestroyQDoubleValidator(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/gui/qdoublevalidator.h b/gui/qdoublevalidator.h new file mode 100755 index 00000000..7c5a4052 --- /dev/null +++ b/gui/qdoublevalidator.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QDoubleValidator_Notation(QtObjectPtr ptr); +void QDoubleValidator_SetDecimals(QtObjectPtr ptr, int v); +void QDoubleValidator_SetNotation(QtObjectPtr ptr, int v); +QtObjectPtr QDoubleValidator_NewQDoubleValidator(QtObjectPtr parent); +int QDoubleValidator_Decimals(QtObjectPtr ptr); +void QDoubleValidator_DestroyQDoubleValidator(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qdrag.cpp b/gui/qdrag.cpp new file mode 100755 index 00000000..c80d0e1c --- /dev/null +++ b/gui/qdrag.cpp @@ -0,0 +1,82 @@ +#include "qdrag.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDrag: public QDrag { +public: +void Signal_ActionChanged(Qt::DropAction action){callbackQDragActionChanged(this->objectName().toUtf8().data(), action);}; +void Signal_TargetChanged(QObject * newTarget){callbackQDragTargetChanged(this->objectName().toUtf8().data(), newTarget);}; +}; + +QtObjectPtr QDrag_NewQDrag(QtObjectPtr dragSource){ + return new QDrag(static_cast(dragSource)); +} + +void QDrag_ConnectActionChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QDrag::actionChanged), static_cast(ptr), static_cast(&MyQDrag::Signal_ActionChanged));; +} + +void QDrag_DisconnectActionChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QDrag::actionChanged), static_cast(ptr), static_cast(&MyQDrag::Signal_ActionChanged));; +} + +int QDrag_Exec(QtObjectPtr ptr, int supportedActions){ + return static_cast(ptr)->exec(static_cast(supportedActions)); +} + +int QDrag_Exec2(QtObjectPtr ptr, int supportedActions, int defaultDropAction){ + return static_cast(ptr)->exec(static_cast(supportedActions), static_cast(defaultDropAction)); +} + +QtObjectPtr QDrag_MimeData(QtObjectPtr ptr){ + return static_cast(ptr)->mimeData(); +} + +void QDrag_SetDragCursor(QtObjectPtr ptr, QtObjectPtr cursor, int action){ + static_cast(ptr)->setDragCursor(*static_cast(cursor), static_cast(action)); +} + +void QDrag_SetHotSpot(QtObjectPtr ptr, QtObjectPtr hotspot){ + static_cast(ptr)->setHotSpot(*static_cast(hotspot)); +} + +void QDrag_SetMimeData(QtObjectPtr ptr, QtObjectPtr data){ + static_cast(ptr)->setMimeData(static_cast(data)); +} + +void QDrag_SetPixmap(QtObjectPtr ptr, QtObjectPtr pixmap){ + static_cast(ptr)->setPixmap(*static_cast(pixmap)); +} + +QtObjectPtr QDrag_Source(QtObjectPtr ptr){ + return static_cast(ptr)->source(); +} + +int QDrag_SupportedActions(QtObjectPtr ptr){ + return static_cast(ptr)->supportedActions(); +} + +QtObjectPtr QDrag_Target(QtObjectPtr ptr){ + return static_cast(ptr)->target(); +} + +void QDrag_ConnectTargetChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QDrag::targetChanged), static_cast(ptr), static_cast(&MyQDrag::Signal_TargetChanged));; +} + +void QDrag_DisconnectTargetChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QDrag::targetChanged), static_cast(ptr), static_cast(&MyQDrag::Signal_TargetChanged));; +} + +void QDrag_DestroyQDrag(QtObjectPtr ptr){ + static_cast(ptr)->~QDrag(); +} + diff --git a/gui/qdrag.go b/gui/qdrag.go new file mode 100755 index 00000000..c0bfa6f8 --- /dev/null +++ b/gui/qdrag.go @@ -0,0 +1,153 @@ +package gui + +//#include "qdrag.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QDrag struct { + core.QObject +} + +type QDragITF interface { + core.QObjectITF + QDragPTR() *QDrag +} + +func PointerFromQDrag(ptr QDragITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDragPTR().Pointer() + } + return nil +} + +func QDragFromPointer(ptr unsafe.Pointer) *QDrag { + var n = new(QDrag) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QDrag_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QDrag) QDragPTR() *QDrag { + return ptr +} + +func NewQDrag(dragSource core.QObjectITF) *QDrag { + return QDragFromPointer(unsafe.Pointer(C.QDrag_NewQDrag(C.QtObjectPtr(core.PointerFromQObject(dragSource))))) +} + +func (ptr *QDrag) ConnectActionChanged(f func(action core.Qt__DropAction)) { + if ptr.Pointer() != nil { + C.QDrag_ConnectActionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "actionChanged", f) + } +} + +func (ptr *QDrag) DisconnectActionChanged() { + if ptr.Pointer() != nil { + C.QDrag_DisconnectActionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "actionChanged") + } +} + +//export callbackQDragActionChanged +func callbackQDragActionChanged(ptrName *C.char, action C.int) { + qt.GetSignal(C.GoString(ptrName), "actionChanged").(func(core.Qt__DropAction))(core.Qt__DropAction(action)) +} + +func (ptr *QDrag) Exec(supportedActions core.Qt__DropAction) core.Qt__DropAction { + if ptr.Pointer() != nil { + return core.Qt__DropAction(C.QDrag_Exec(C.QtObjectPtr(ptr.Pointer()), C.int(supportedActions))) + } + return 0 +} + +func (ptr *QDrag) Exec2(supportedActions core.Qt__DropAction, defaultDropAction core.Qt__DropAction) core.Qt__DropAction { + if ptr.Pointer() != nil { + return core.Qt__DropAction(C.QDrag_Exec2(C.QtObjectPtr(ptr.Pointer()), C.int(supportedActions), C.int(defaultDropAction))) + } + return 0 +} + +func (ptr *QDrag) MimeData() *core.QMimeData { + if ptr.Pointer() != nil { + return core.QMimeDataFromPointer(unsafe.Pointer(C.QDrag_MimeData(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QDrag) SetDragCursor(cursor QPixmapITF, action core.Qt__DropAction) { + if ptr.Pointer() != nil { + C.QDrag_SetDragCursor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPixmap(cursor)), C.int(action)) + } +} + +func (ptr *QDrag) SetHotSpot(hotspot core.QPointITF) { + if ptr.Pointer() != nil { + C.QDrag_SetHotSpot(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(hotspot))) + } +} + +func (ptr *QDrag) SetMimeData(data core.QMimeDataITF) { + if ptr.Pointer() != nil { + C.QDrag_SetMimeData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQMimeData(data))) + } +} + +func (ptr *QDrag) SetPixmap(pixmap QPixmapITF) { + if ptr.Pointer() != nil { + C.QDrag_SetPixmap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPixmap(pixmap))) + } +} + +func (ptr *QDrag) Source() *core.QObject { + if ptr.Pointer() != nil { + return core.QObjectFromPointer(unsafe.Pointer(C.QDrag_Source(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QDrag) SupportedActions() core.Qt__DropAction { + if ptr.Pointer() != nil { + return core.Qt__DropAction(C.QDrag_SupportedActions(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDrag) Target() *core.QObject { + if ptr.Pointer() != nil { + return core.QObjectFromPointer(unsafe.Pointer(C.QDrag_Target(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QDrag) ConnectTargetChanged(f func(newTarget core.QObjectITF)) { + if ptr.Pointer() != nil { + C.QDrag_ConnectTargetChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "targetChanged", f) + } +} + +func (ptr *QDrag) DisconnectTargetChanged() { + if ptr.Pointer() != nil { + C.QDrag_DisconnectTargetChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "targetChanged") + } +} + +//export callbackQDragTargetChanged +func callbackQDragTargetChanged(ptrName *C.char, newTarget unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "targetChanged").(func(*core.QObject))(core.QObjectFromPointer(newTarget)) +} + +func (ptr *QDrag) DestroyQDrag() { + if ptr.Pointer() != nil { + C.QDrag_DestroyQDrag(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/gui/qdrag.h b/gui/qdrag.h new file mode 100755 index 00000000..99ae1306 --- /dev/null +++ b/gui/qdrag.h @@ -0,0 +1,25 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDrag_NewQDrag(QtObjectPtr dragSource); +void QDrag_ConnectActionChanged(QtObjectPtr ptr); +void QDrag_DisconnectActionChanged(QtObjectPtr ptr); +int QDrag_Exec(QtObjectPtr ptr, int supportedActions); +int QDrag_Exec2(QtObjectPtr ptr, int supportedActions, int defaultDropAction); +QtObjectPtr QDrag_MimeData(QtObjectPtr ptr); +void QDrag_SetDragCursor(QtObjectPtr ptr, QtObjectPtr cursor, int action); +void QDrag_SetHotSpot(QtObjectPtr ptr, QtObjectPtr hotspot); +void QDrag_SetMimeData(QtObjectPtr ptr, QtObjectPtr data); +void QDrag_SetPixmap(QtObjectPtr ptr, QtObjectPtr pixmap); +QtObjectPtr QDrag_Source(QtObjectPtr ptr); +int QDrag_SupportedActions(QtObjectPtr ptr); +QtObjectPtr QDrag_Target(QtObjectPtr ptr); +void QDrag_ConnectTargetChanged(QtObjectPtr ptr); +void QDrag_DisconnectTargetChanged(QtObjectPtr ptr); +void QDrag_DestroyQDrag(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qdragenterevent.cpp b/gui/qdragenterevent.cpp new file mode 100755 index 00000000..4c9974f7 --- /dev/null +++ b/gui/qdragenterevent.cpp @@ -0,0 +1,19 @@ +#include "qdragenterevent.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDragEnterEvent: public QDragEnterEvent { +public: +}; + +QtObjectPtr QDragEnterEvent_NewQDragEnterEvent(QtObjectPtr point, int actions, QtObjectPtr data, int buttons, int modifiers){ + return new QDragEnterEvent(*static_cast(point), static_cast(actions), static_cast(data), static_cast(buttons), static_cast(modifiers)); +} + diff --git a/gui/qdragenterevent.go b/gui/qdragenterevent.go new file mode 100755 index 00000000..e7fb2f03 --- /dev/null +++ b/gui/qdragenterevent.go @@ -0,0 +1,38 @@ +package gui + +//#include "qdragenterevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QDragEnterEvent struct { + QDragMoveEvent +} + +type QDragEnterEventITF interface { + QDragMoveEventITF + QDragEnterEventPTR() *QDragEnterEvent +} + +func PointerFromQDragEnterEvent(ptr QDragEnterEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDragEnterEventPTR().Pointer() + } + return nil +} + +func QDragEnterEventFromPointer(ptr unsafe.Pointer) *QDragEnterEvent { + var n = new(QDragEnterEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QDragEnterEvent) QDragEnterEventPTR() *QDragEnterEvent { + return ptr +} + +func NewQDragEnterEvent(point core.QPointITF, actions core.Qt__DropAction, data core.QMimeDataITF, buttons core.Qt__MouseButton, modifiers core.Qt__KeyboardModifier) *QDragEnterEvent { + return QDragEnterEventFromPointer(unsafe.Pointer(C.QDragEnterEvent_NewQDragEnterEvent(C.QtObjectPtr(core.PointerFromQPoint(point)), C.int(actions), C.QtObjectPtr(core.PointerFromQMimeData(data)), C.int(buttons), C.int(modifiers)))) +} diff --git a/gui/qdragenterevent.h b/gui/qdragenterevent.h new file mode 100755 index 00000000..f59eadad --- /dev/null +++ b/gui/qdragenterevent.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDragEnterEvent_NewQDragEnterEvent(QtObjectPtr point, int actions, QtObjectPtr data, int buttons, int modifiers); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qdragleaveevent.cpp b/gui/qdragleaveevent.cpp new file mode 100755 index 00000000..13a6f2b6 --- /dev/null +++ b/gui/qdragleaveevent.cpp @@ -0,0 +1,17 @@ +#include "qdragleaveevent.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDragLeaveEvent: public QDragLeaveEvent { +public: +}; + +QtObjectPtr QDragLeaveEvent_NewQDragLeaveEvent(){ + return new QDragLeaveEvent(); +} + diff --git a/gui/qdragleaveevent.go b/gui/qdragleaveevent.go new file mode 100755 index 00000000..61fdaa3a --- /dev/null +++ b/gui/qdragleaveevent.go @@ -0,0 +1,38 @@ +package gui + +//#include "qdragleaveevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QDragLeaveEvent struct { + core.QEvent +} + +type QDragLeaveEventITF interface { + core.QEventITF + QDragLeaveEventPTR() *QDragLeaveEvent +} + +func PointerFromQDragLeaveEvent(ptr QDragLeaveEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDragLeaveEventPTR().Pointer() + } + return nil +} + +func QDragLeaveEventFromPointer(ptr unsafe.Pointer) *QDragLeaveEvent { + var n = new(QDragLeaveEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QDragLeaveEvent) QDragLeaveEventPTR() *QDragLeaveEvent { + return ptr +} + +func NewQDragLeaveEvent() *QDragLeaveEvent { + return QDragLeaveEventFromPointer(unsafe.Pointer(C.QDragLeaveEvent_NewQDragLeaveEvent())) +} diff --git a/gui/qdragleaveevent.h b/gui/qdragleaveevent.h new file mode 100755 index 00000000..18b33e5a --- /dev/null +++ b/gui/qdragleaveevent.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDragLeaveEvent_NewQDragLeaveEvent(); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qdragmoveevent.cpp b/gui/qdragmoveevent.cpp new file mode 100755 index 00000000..7afab165 --- /dev/null +++ b/gui/qdragmoveevent.cpp @@ -0,0 +1,41 @@ +#include "qdragmoveevent.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDragMoveEvent: public QDragMoveEvent { +public: +}; + +QtObjectPtr QDragMoveEvent_NewQDragMoveEvent(QtObjectPtr pos, int actions, QtObjectPtr data, int buttons, int modifiers, int ty){ + return new QDragMoveEvent(*static_cast(pos), static_cast(actions), static_cast(data), static_cast(buttons), static_cast(modifiers), static_cast(ty)); +} + +void QDragMoveEvent_Accept2(QtObjectPtr ptr){ + static_cast(ptr)->accept(); +} + +void QDragMoveEvent_Accept(QtObjectPtr ptr, QtObjectPtr rectangle){ + static_cast(ptr)->accept(*static_cast(rectangle)); +} + +void QDragMoveEvent_Ignore2(QtObjectPtr ptr){ + static_cast(ptr)->ignore(); +} + +void QDragMoveEvent_Ignore(QtObjectPtr ptr, QtObjectPtr rectangle){ + static_cast(ptr)->ignore(*static_cast(rectangle)); +} + +void QDragMoveEvent_DestroyQDragMoveEvent(QtObjectPtr ptr){ + static_cast(ptr)->~QDragMoveEvent(); +} + diff --git a/gui/qdragmoveevent.go b/gui/qdragmoveevent.go new file mode 100755 index 00000000..f667ed2d --- /dev/null +++ b/gui/qdragmoveevent.go @@ -0,0 +1,68 @@ +package gui + +//#include "qdragmoveevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QDragMoveEvent struct { + QDropEvent +} + +type QDragMoveEventITF interface { + QDropEventITF + QDragMoveEventPTR() *QDragMoveEvent +} + +func PointerFromQDragMoveEvent(ptr QDragMoveEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDragMoveEventPTR().Pointer() + } + return nil +} + +func QDragMoveEventFromPointer(ptr unsafe.Pointer) *QDragMoveEvent { + var n = new(QDragMoveEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QDragMoveEvent) QDragMoveEventPTR() *QDragMoveEvent { + return ptr +} + +func NewQDragMoveEvent(pos core.QPointITF, actions core.Qt__DropAction, data core.QMimeDataITF, buttons core.Qt__MouseButton, modifiers core.Qt__KeyboardModifier, ty core.QEvent__Type) *QDragMoveEvent { + return QDragMoveEventFromPointer(unsafe.Pointer(C.QDragMoveEvent_NewQDragMoveEvent(C.QtObjectPtr(core.PointerFromQPoint(pos)), C.int(actions), C.QtObjectPtr(core.PointerFromQMimeData(data)), C.int(buttons), C.int(modifiers), C.int(ty)))) +} + +func (ptr *QDragMoveEvent) Accept2() { + if ptr.Pointer() != nil { + C.QDragMoveEvent_Accept2(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDragMoveEvent) Accept(rectangle core.QRectITF) { + if ptr.Pointer() != nil { + C.QDragMoveEvent_Accept(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rectangle))) + } +} + +func (ptr *QDragMoveEvent) Ignore2() { + if ptr.Pointer() != nil { + C.QDragMoveEvent_Ignore2(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDragMoveEvent) Ignore(rectangle core.QRectITF) { + if ptr.Pointer() != nil { + C.QDragMoveEvent_Ignore(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rectangle))) + } +} + +func (ptr *QDragMoveEvent) DestroyQDragMoveEvent() { + if ptr.Pointer() != nil { + C.QDragMoveEvent_DestroyQDragMoveEvent(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qdragmoveevent.h b/gui/qdragmoveevent.h new file mode 100755 index 00000000..c9bb301a --- /dev/null +++ b/gui/qdragmoveevent.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDragMoveEvent_NewQDragMoveEvent(QtObjectPtr pos, int actions, QtObjectPtr data, int buttons, int modifiers, int ty); +void QDragMoveEvent_Accept2(QtObjectPtr ptr); +void QDragMoveEvent_Accept(QtObjectPtr ptr, QtObjectPtr rectangle); +void QDragMoveEvent_Ignore2(QtObjectPtr ptr); +void QDragMoveEvent_Ignore(QtObjectPtr ptr, QtObjectPtr rectangle); +void QDragMoveEvent_DestroyQDragMoveEvent(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qdropevent.cpp b/gui/qdropevent.cpp new file mode 100755 index 00000000..8cdba0f8 --- /dev/null +++ b/gui/qdropevent.cpp @@ -0,0 +1,56 @@ +#include "qdropevent.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDropEvent: public QDropEvent { +public: +}; + +void QDropEvent_SetDropAction(QtObjectPtr ptr, int action){ + static_cast(ptr)->setDropAction(static_cast(action)); +} + +QtObjectPtr QDropEvent_NewQDropEvent(QtObjectPtr pos, int actions, QtObjectPtr data, int buttons, int modifiers, int ty){ + return new QDropEvent(*static_cast(pos), static_cast(actions), static_cast(data), static_cast(buttons), static_cast(modifiers), static_cast(ty)); +} + +void QDropEvent_AcceptProposedAction(QtObjectPtr ptr){ + static_cast(ptr)->acceptProposedAction(); +} + +int QDropEvent_DropAction(QtObjectPtr ptr){ + return static_cast(ptr)->dropAction(); +} + +int QDropEvent_KeyboardModifiers(QtObjectPtr ptr){ + return static_cast(ptr)->keyboardModifiers(); +} + +QtObjectPtr QDropEvent_MimeData(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->mimeData()); +} + +int QDropEvent_MouseButtons(QtObjectPtr ptr){ + return static_cast(ptr)->mouseButtons(); +} + +int QDropEvent_PossibleActions(QtObjectPtr ptr){ + return static_cast(ptr)->possibleActions(); +} + +int QDropEvent_ProposedAction(QtObjectPtr ptr){ + return static_cast(ptr)->proposedAction(); +} + +QtObjectPtr QDropEvent_Source(QtObjectPtr ptr){ + return static_cast(ptr)->source(); +} + diff --git a/gui/qdropevent.go b/gui/qdropevent.go new file mode 100755 index 00000000..7e7b3d08 --- /dev/null +++ b/gui/qdropevent.go @@ -0,0 +1,99 @@ +package gui + +//#include "qdropevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QDropEvent struct { + core.QEvent +} + +type QDropEventITF interface { + core.QEventITF + QDropEventPTR() *QDropEvent +} + +func PointerFromQDropEvent(ptr QDropEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDropEventPTR().Pointer() + } + return nil +} + +func QDropEventFromPointer(ptr unsafe.Pointer) *QDropEvent { + var n = new(QDropEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QDropEvent) QDropEventPTR() *QDropEvent { + return ptr +} + +func (ptr *QDropEvent) SetDropAction(action core.Qt__DropAction) { + if ptr.Pointer() != nil { + C.QDropEvent_SetDropAction(C.QtObjectPtr(ptr.Pointer()), C.int(action)) + } +} + +func NewQDropEvent(pos core.QPointFITF, actions core.Qt__DropAction, data core.QMimeDataITF, buttons core.Qt__MouseButton, modifiers core.Qt__KeyboardModifier, ty core.QEvent__Type) *QDropEvent { + return QDropEventFromPointer(unsafe.Pointer(C.QDropEvent_NewQDropEvent(C.QtObjectPtr(core.PointerFromQPointF(pos)), C.int(actions), C.QtObjectPtr(core.PointerFromQMimeData(data)), C.int(buttons), C.int(modifiers), C.int(ty)))) +} + +func (ptr *QDropEvent) AcceptProposedAction() { + if ptr.Pointer() != nil { + C.QDropEvent_AcceptProposedAction(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDropEvent) DropAction() core.Qt__DropAction { + if ptr.Pointer() != nil { + return core.Qt__DropAction(C.QDropEvent_DropAction(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDropEvent) KeyboardModifiers() core.Qt__KeyboardModifier { + if ptr.Pointer() != nil { + return core.Qt__KeyboardModifier(C.QDropEvent_KeyboardModifiers(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDropEvent) MimeData() *core.QMimeData { + if ptr.Pointer() != nil { + return core.QMimeDataFromPointer(unsafe.Pointer(C.QDropEvent_MimeData(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QDropEvent) MouseButtons() core.Qt__MouseButton { + if ptr.Pointer() != nil { + return core.Qt__MouseButton(C.QDropEvent_MouseButtons(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDropEvent) PossibleActions() core.Qt__DropAction { + if ptr.Pointer() != nil { + return core.Qt__DropAction(C.QDropEvent_PossibleActions(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDropEvent) ProposedAction() core.Qt__DropAction { + if ptr.Pointer() != nil { + return core.Qt__DropAction(C.QDropEvent_ProposedAction(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDropEvent) Source() *core.QObject { + if ptr.Pointer() != nil { + return core.QObjectFromPointer(unsafe.Pointer(C.QDropEvent_Source(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} diff --git a/gui/qdropevent.h b/gui/qdropevent.h new file mode 100755 index 00000000..8991ebb6 --- /dev/null +++ b/gui/qdropevent.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QDropEvent_SetDropAction(QtObjectPtr ptr, int action); +QtObjectPtr QDropEvent_NewQDropEvent(QtObjectPtr pos, int actions, QtObjectPtr data, int buttons, int modifiers, int ty); +void QDropEvent_AcceptProposedAction(QtObjectPtr ptr); +int QDropEvent_DropAction(QtObjectPtr ptr); +int QDropEvent_KeyboardModifiers(QtObjectPtr ptr); +QtObjectPtr QDropEvent_MimeData(QtObjectPtr ptr); +int QDropEvent_MouseButtons(QtObjectPtr ptr); +int QDropEvent_PossibleActions(QtObjectPtr ptr); +int QDropEvent_ProposedAction(QtObjectPtr ptr); +QtObjectPtr QDropEvent_Source(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qenterevent.cpp b/gui/qenterevent.cpp new file mode 100755 index 00000000..ad2ac5d3 --- /dev/null +++ b/gui/qenterevent.cpp @@ -0,0 +1,34 @@ +#include "qenterevent.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQEnterEvent: public QEnterEvent { +public: +}; + +QtObjectPtr QEnterEvent_NewQEnterEvent(QtObjectPtr localPos, QtObjectPtr windowPos, QtObjectPtr screenPos){ + return new QEnterEvent(*static_cast(localPos), *static_cast(windowPos), *static_cast(screenPos)); +} + +int QEnterEvent_GlobalX(QtObjectPtr ptr){ + return static_cast(ptr)->globalX(); +} + +int QEnterEvent_GlobalY(QtObjectPtr ptr){ + return static_cast(ptr)->globalY(); +} + +int QEnterEvent_X(QtObjectPtr ptr){ + return static_cast(ptr)->x(); +} + +int QEnterEvent_Y(QtObjectPtr ptr){ + return static_cast(ptr)->y(); +} + diff --git a/gui/qenterevent.go b/gui/qenterevent.go new file mode 100755 index 00000000..a58713b9 --- /dev/null +++ b/gui/qenterevent.go @@ -0,0 +1,66 @@ +package gui + +//#include "qenterevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QEnterEvent struct { + core.QEvent +} + +type QEnterEventITF interface { + core.QEventITF + QEnterEventPTR() *QEnterEvent +} + +func PointerFromQEnterEvent(ptr QEnterEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QEnterEventPTR().Pointer() + } + return nil +} + +func QEnterEventFromPointer(ptr unsafe.Pointer) *QEnterEvent { + var n = new(QEnterEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QEnterEvent) QEnterEventPTR() *QEnterEvent { + return ptr +} + +func NewQEnterEvent(localPos core.QPointFITF, windowPos core.QPointFITF, screenPos core.QPointFITF) *QEnterEvent { + return QEnterEventFromPointer(unsafe.Pointer(C.QEnterEvent_NewQEnterEvent(C.QtObjectPtr(core.PointerFromQPointF(localPos)), C.QtObjectPtr(core.PointerFromQPointF(windowPos)), C.QtObjectPtr(core.PointerFromQPointF(screenPos))))) +} + +func (ptr *QEnterEvent) GlobalX() int { + if ptr.Pointer() != nil { + return int(C.QEnterEvent_GlobalX(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QEnterEvent) GlobalY() int { + if ptr.Pointer() != nil { + return int(C.QEnterEvent_GlobalY(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QEnterEvent) X() int { + if ptr.Pointer() != nil { + return int(C.QEnterEvent_X(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QEnterEvent) Y() int { + if ptr.Pointer() != nil { + return int(C.QEnterEvent_Y(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/gui/qenterevent.h b/gui/qenterevent.h new file mode 100755 index 00000000..1b5ece88 --- /dev/null +++ b/gui/qenterevent.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QEnterEvent_NewQEnterEvent(QtObjectPtr localPos, QtObjectPtr windowPos, QtObjectPtr screenPos); +int QEnterEvent_GlobalX(QtObjectPtr ptr); +int QEnterEvent_GlobalY(QtObjectPtr ptr); +int QEnterEvent_X(QtObjectPtr ptr); +int QEnterEvent_Y(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qexposeevent.cpp b/gui/qexposeevent.cpp new file mode 100755 index 00000000..d2333ffe --- /dev/null +++ b/gui/qexposeevent.cpp @@ -0,0 +1,17 @@ +#include "qexposeevent.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQExposeEvent: public QExposeEvent { +public: +}; + +QtObjectPtr QExposeEvent_NewQExposeEvent(QtObjectPtr exposeRegion){ + return new QExposeEvent(*static_cast(exposeRegion)); +} + diff --git a/gui/qexposeevent.go b/gui/qexposeevent.go new file mode 100755 index 00000000..2212dfe5 --- /dev/null +++ b/gui/qexposeevent.go @@ -0,0 +1,38 @@ +package gui + +//#include "qexposeevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QExposeEvent struct { + core.QEvent +} + +type QExposeEventITF interface { + core.QEventITF + QExposeEventPTR() *QExposeEvent +} + +func PointerFromQExposeEvent(ptr QExposeEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QExposeEventPTR().Pointer() + } + return nil +} + +func QExposeEventFromPointer(ptr unsafe.Pointer) *QExposeEvent { + var n = new(QExposeEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QExposeEvent) QExposeEventPTR() *QExposeEvent { + return ptr +} + +func NewQExposeEvent(exposeRegion QRegionITF) *QExposeEvent { + return QExposeEventFromPointer(unsafe.Pointer(C.QExposeEvent_NewQExposeEvent(C.QtObjectPtr(PointerFromQRegion(exposeRegion))))) +} diff --git a/gui/qexposeevent.h b/gui/qexposeevent.h new file mode 100755 index 00000000..840aba32 --- /dev/null +++ b/gui/qexposeevent.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QExposeEvent_NewQExposeEvent(QtObjectPtr exposeRegion); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qfileopenevent.cpp b/gui/qfileopenevent.cpp new file mode 100755 index 00000000..9876fd44 --- /dev/null +++ b/gui/qfileopenevent.cpp @@ -0,0 +1,26 @@ +#include "qfileopenevent.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQFileOpenEvent: public QFileOpenEvent { +public: +}; + +int QFileOpenEvent_OpenFile(QtObjectPtr ptr, QtObjectPtr file, int flags){ + return static_cast(ptr)->openFile(*static_cast(file), static_cast(flags)); +} + +char* QFileOpenEvent_File(QtObjectPtr ptr){ + return static_cast(ptr)->file().toUtf8().data(); +} + +char* QFileOpenEvent_Url(QtObjectPtr ptr){ + return static_cast(ptr)->url().toString().toUtf8().data(); +} + diff --git a/gui/qfileopenevent.go b/gui/qfileopenevent.go new file mode 100755 index 00000000..f3c6cc44 --- /dev/null +++ b/gui/qfileopenevent.go @@ -0,0 +1,55 @@ +package gui + +//#include "qfileopenevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QFileOpenEvent struct { + core.QEvent +} + +type QFileOpenEventITF interface { + core.QEventITF + QFileOpenEventPTR() *QFileOpenEvent +} + +func PointerFromQFileOpenEvent(ptr QFileOpenEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QFileOpenEventPTR().Pointer() + } + return nil +} + +func QFileOpenEventFromPointer(ptr unsafe.Pointer) *QFileOpenEvent { + var n = new(QFileOpenEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QFileOpenEvent) QFileOpenEventPTR() *QFileOpenEvent { + return ptr +} + +func (ptr *QFileOpenEvent) OpenFile(file core.QFileITF, flags core.QIODevice__OpenModeFlag) bool { + if ptr.Pointer() != nil { + return C.QFileOpenEvent_OpenFile(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQFile(file)), C.int(flags)) != 0 + } + return false +} + +func (ptr *QFileOpenEvent) File() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileOpenEvent_File(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFileOpenEvent) Url() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileOpenEvent_Url(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/gui/qfileopenevent.h b/gui/qfileopenevent.h new file mode 100755 index 00000000..068c774a --- /dev/null +++ b/gui/qfileopenevent.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QFileOpenEvent_OpenFile(QtObjectPtr ptr, QtObjectPtr file, int flags); +char* QFileOpenEvent_File(QtObjectPtr ptr); +char* QFileOpenEvent_Url(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qfocusevent.cpp b/gui/qfocusevent.cpp new file mode 100755 index 00000000..db8589b6 --- /dev/null +++ b/gui/qfocusevent.cpp @@ -0,0 +1,29 @@ +#include "qfocusevent.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQFocusEvent: public QFocusEvent { +public: +}; + +QtObjectPtr QFocusEvent_NewQFocusEvent(int ty, int reason){ + return new QFocusEvent(static_cast(ty), static_cast(reason)); +} + +int QFocusEvent_GotFocus(QtObjectPtr ptr){ + return static_cast(ptr)->gotFocus(); +} + +int QFocusEvent_LostFocus(QtObjectPtr ptr){ + return static_cast(ptr)->lostFocus(); +} + +int QFocusEvent_Reason(QtObjectPtr ptr){ + return static_cast(ptr)->reason(); +} + diff --git a/gui/qfocusevent.go b/gui/qfocusevent.go new file mode 100755 index 00000000..d9323a3c --- /dev/null +++ b/gui/qfocusevent.go @@ -0,0 +1,59 @@ +package gui + +//#include "qfocusevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QFocusEvent struct { + core.QEvent +} + +type QFocusEventITF interface { + core.QEventITF + QFocusEventPTR() *QFocusEvent +} + +func PointerFromQFocusEvent(ptr QFocusEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QFocusEventPTR().Pointer() + } + return nil +} + +func QFocusEventFromPointer(ptr unsafe.Pointer) *QFocusEvent { + var n = new(QFocusEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QFocusEvent) QFocusEventPTR() *QFocusEvent { + return ptr +} + +func NewQFocusEvent(ty core.QEvent__Type, reason core.Qt__FocusReason) *QFocusEvent { + return QFocusEventFromPointer(unsafe.Pointer(C.QFocusEvent_NewQFocusEvent(C.int(ty), C.int(reason)))) +} + +func (ptr *QFocusEvent) GotFocus() bool { + if ptr.Pointer() != nil { + return C.QFocusEvent_GotFocus(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFocusEvent) LostFocus() bool { + if ptr.Pointer() != nil { + return C.QFocusEvent_LostFocus(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFocusEvent) Reason() core.Qt__FocusReason { + if ptr.Pointer() != nil { + return core.Qt__FocusReason(C.QFocusEvent_Reason(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/gui/qfocusevent.h b/gui/qfocusevent.h new file mode 100755 index 00000000..9a8acd9f --- /dev/null +++ b/gui/qfocusevent.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QFocusEvent_NewQFocusEvent(int ty, int reason); +int QFocusEvent_GotFocus(QtObjectPtr ptr); +int QFocusEvent_LostFocus(QtObjectPtr ptr); +int QFocusEvent_Reason(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qfont.cpp b/gui/qfont.cpp new file mode 100755 index 00000000..38e43d8a --- /dev/null +++ b/gui/qfont.cpp @@ -0,0 +1,273 @@ +#include "qfont.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQFont: public QFont { +public: +}; + +int QFont_Times_Type(){ + return QFont::Times; +} + +int QFont_Courier_Type(){ + return QFont::Courier; +} + +int QFont_OldEnglish_Type(){ + return QFont::OldEnglish; +} + +int QFont_System_Type(){ + return QFont::System; +} + +int QFont_AnyStyle_Type(){ + return QFont::AnyStyle; +} + +int QFont_Cursive_Type(){ + return QFont::Cursive; +} + +int QFont_Monospace_Type(){ + return QFont::Monospace; +} + +int QFont_Fantasy_Type(){ + return QFont::Fantasy; +} + +char* QFont_DefaultFamily(QtObjectPtr ptr){ + return static_cast(ptr)->defaultFamily().toUtf8().data(); +} + +char* QFont_LastResortFamily(QtObjectPtr ptr){ + return static_cast(ptr)->lastResortFamily().toUtf8().data(); +} + +char* QFont_LastResortFont(QtObjectPtr ptr){ + return static_cast(ptr)->lastResortFont().toUtf8().data(); +} + +QtObjectPtr QFont_NewQFont(){ + return new QFont(); +} + +QtObjectPtr QFont_NewQFont4(QtObjectPtr font){ + return new QFont(*static_cast(font)); +} + +QtObjectPtr QFont_NewQFont3(QtObjectPtr font, QtObjectPtr pd){ + return new QFont(*static_cast(font), static_cast(pd)); +} + +QtObjectPtr QFont_NewQFont2(char* family, int pointSize, int weight, int italic){ + return new QFont(QString(family), pointSize, weight, italic != 0); +} + +int QFont_Bold(QtObjectPtr ptr){ + return static_cast(ptr)->bold(); +} + +int QFont_Capitalization(QtObjectPtr ptr){ + return static_cast(ptr)->capitalization(); +} + +int QFont_ExactMatch(QtObjectPtr ptr){ + return static_cast(ptr)->exactMatch(); +} + +char* QFont_Family(QtObjectPtr ptr){ + return static_cast(ptr)->family().toUtf8().data(); +} + +int QFont_FixedPitch(QtObjectPtr ptr){ + return static_cast(ptr)->fixedPitch(); +} + +int QFont_FromString(QtObjectPtr ptr, char* descrip){ + return static_cast(ptr)->fromString(QString(descrip)); +} + +int QFont_HintingPreference(QtObjectPtr ptr){ + return static_cast(ptr)->hintingPreference(); +} + +void QFont_QFont_InsertSubstitution(char* familyName, char* substituteName){ + QFont::insertSubstitution(QString(familyName), QString(substituteName)); +} + +void QFont_QFont_InsertSubstitutions(char* familyName, char* substituteNames){ + QFont::insertSubstitutions(QString(familyName), QString(substituteNames).split("|", QString::SkipEmptyParts)); +} + +int QFont_IsCopyOf(QtObjectPtr ptr, QtObjectPtr f){ + return static_cast(ptr)->isCopyOf(*static_cast(f)); +} + +int QFont_Italic(QtObjectPtr ptr){ + return static_cast(ptr)->italic(); +} + +int QFont_Kerning(QtObjectPtr ptr){ + return static_cast(ptr)->kerning(); +} + +char* QFont_Key(QtObjectPtr ptr){ + return static_cast(ptr)->key().toUtf8().data(); +} + +int QFont_LetterSpacingType(QtObjectPtr ptr){ + return static_cast(ptr)->letterSpacingType(); +} + +int QFont_Overline(QtObjectPtr ptr){ + return static_cast(ptr)->overline(); +} + +int QFont_PixelSize(QtObjectPtr ptr){ + return static_cast(ptr)->pixelSize(); +} + +int QFont_PointSize(QtObjectPtr ptr){ + return static_cast(ptr)->pointSize(); +} + +void QFont_QFont_RemoveSubstitutions(char* familyName){ + QFont::removeSubstitutions(QString(familyName)); +} + +void QFont_SetBold(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setBold(enable != 0); +} + +void QFont_SetCapitalization(QtObjectPtr ptr, int caps){ + static_cast(ptr)->setCapitalization(static_cast(caps)); +} + +void QFont_SetFamily(QtObjectPtr ptr, char* family){ + static_cast(ptr)->setFamily(QString(family)); +} + +void QFont_SetFixedPitch(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setFixedPitch(enable != 0); +} + +void QFont_SetHintingPreference(QtObjectPtr ptr, int hintingPreference){ + static_cast(ptr)->setHintingPreference(static_cast(hintingPreference)); +} + +void QFont_SetItalic(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setItalic(enable != 0); +} + +void QFont_SetKerning(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setKerning(enable != 0); +} + +void QFont_SetOverline(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setOverline(enable != 0); +} + +void QFont_SetPixelSize(QtObjectPtr ptr, int pixelSize){ + static_cast(ptr)->setPixelSize(pixelSize); +} + +void QFont_SetPointSize(QtObjectPtr ptr, int pointSize){ + static_cast(ptr)->setPointSize(pointSize); +} + +void QFont_SetStretch(QtObjectPtr ptr, int factor){ + static_cast(ptr)->setStretch(factor); +} + +void QFont_SetStrikeOut(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setStrikeOut(enable != 0); +} + +void QFont_SetStyle(QtObjectPtr ptr, int style){ + static_cast(ptr)->setStyle(static_cast(style)); +} + +void QFont_SetStyleHint(QtObjectPtr ptr, int hint, int strategy){ + static_cast(ptr)->setStyleHint(static_cast(hint), static_cast(strategy)); +} + +void QFont_SetStyleName(QtObjectPtr ptr, char* styleName){ + static_cast(ptr)->setStyleName(QString(styleName)); +} + +void QFont_SetStyleStrategy(QtObjectPtr ptr, int s){ + static_cast(ptr)->setStyleStrategy(static_cast(s)); +} + +void QFont_SetUnderline(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setUnderline(enable != 0); +} + +void QFont_SetWeight(QtObjectPtr ptr, int weight){ + static_cast(ptr)->setWeight(weight); +} + +int QFont_Stretch(QtObjectPtr ptr){ + return static_cast(ptr)->stretch(); +} + +int QFont_StrikeOut(QtObjectPtr ptr){ + return static_cast(ptr)->strikeOut(); +} + +int QFont_Style(QtObjectPtr ptr){ + return static_cast(ptr)->style(); +} + +int QFont_StyleHint(QtObjectPtr ptr){ + return static_cast(ptr)->styleHint(); +} + +char* QFont_StyleName(QtObjectPtr ptr){ + return static_cast(ptr)->styleName().toUtf8().data(); +} + +int QFont_StyleStrategy(QtObjectPtr ptr){ + return static_cast(ptr)->styleStrategy(); +} + +char* QFont_QFont_Substitute(char* familyName){ + return QFont::substitute(QString(familyName)).toUtf8().data(); +} + +char* QFont_QFont_Substitutes(char* familyName){ + return QFont::substitutes(QString(familyName)).join("|").toUtf8().data(); +} + +char* QFont_QFont_Substitutions(){ + return QFont::substitutions().join("|").toUtf8().data(); +} + +void QFont_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +char* QFont_ToString(QtObjectPtr ptr){ + return static_cast(ptr)->toString().toUtf8().data(); +} + +int QFont_Underline(QtObjectPtr ptr){ + return static_cast(ptr)->underline(); +} + +int QFont_Weight(QtObjectPtr ptr){ + return static_cast(ptr)->weight(); +} + +void QFont_DestroyQFont(QtObjectPtr ptr){ + static_cast(ptr)->~QFont(); +} + diff --git a/gui/qfont.go b/gui/qfont.go new file mode 100755 index 00000000..491a40d1 --- /dev/null +++ b/gui/qfont.go @@ -0,0 +1,497 @@ +package gui + +//#include "qfont.h" +import "C" +import ( + "github.com/therecipe/qt" + "strings" + "unsafe" +) + +type QFont struct { + ptr unsafe.Pointer +} + +type QFontITF interface { + QFontPTR() *QFont +} + +func (p *QFont) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QFont) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQFont(ptr QFontITF) unsafe.Pointer { + if ptr != nil { + return ptr.QFontPTR().Pointer() + } + return nil +} + +func QFontFromPointer(ptr unsafe.Pointer) *QFont { + var n = new(QFont) + n.SetPointer(ptr) + return n +} + +func (ptr *QFont) QFontPTR() *QFont { + return ptr +} + +//QFont::Capitalization +type QFont__Capitalization int + +var ( + QFont__MixedCase = QFont__Capitalization(0) + QFont__AllUppercase = QFont__Capitalization(1) + QFont__AllLowercase = QFont__Capitalization(2) + QFont__SmallCaps = QFont__Capitalization(3) + QFont__Capitalize = QFont__Capitalization(4) +) + +//QFont::HintingPreference +type QFont__HintingPreference int + +var ( + QFont__PreferDefaultHinting = QFont__HintingPreference(0) + QFont__PreferNoHinting = QFont__HintingPreference(1) + QFont__PreferVerticalHinting = QFont__HintingPreference(2) + QFont__PreferFullHinting = QFont__HintingPreference(3) +) + +//QFont::SpacingType +type QFont__SpacingType int + +var ( + QFont__PercentageSpacing = QFont__SpacingType(0) + QFont__AbsoluteSpacing = QFont__SpacingType(1) +) + +//QFont::Stretch +type QFont__Stretch int + +var ( + QFont__UltraCondensed = QFont__Stretch(50) + QFont__ExtraCondensed = QFont__Stretch(62) + QFont__Condensed = QFont__Stretch(75) + QFont__SemiCondensed = QFont__Stretch(87) + QFont__Unstretched = QFont__Stretch(100) + QFont__SemiExpanded = QFont__Stretch(112) + QFont__Expanded = QFont__Stretch(125) + QFont__ExtraExpanded = QFont__Stretch(150) + QFont__UltraExpanded = QFont__Stretch(200) +) + +//QFont::Style +type QFont__Style int + +var ( + QFont__StyleNormal = QFont__Style(0) + QFont__StyleItalic = QFont__Style(1) + QFont__StyleOblique = QFont__Style(2) +) + +//QFont::StyleHint +type QFont__StyleHint int + +var ( + QFont__Helvetica = QFont__StyleHint(0) + QFont__SansSerif = QFont__StyleHint(QFont__Helvetica) + QFont__Times = QFont__StyleHint(C.QFont_Times_Type()) + QFont__Serif = QFont__StyleHint(QFont__Times) + QFont__Courier = QFont__StyleHint(C.QFont_Courier_Type()) + QFont__TypeWriter = QFont__StyleHint(QFont__Courier) + QFont__OldEnglish = QFont__StyleHint(C.QFont_OldEnglish_Type()) + QFont__Decorative = QFont__StyleHint(QFont__OldEnglish) + QFont__System = QFont__StyleHint(C.QFont_System_Type()) + QFont__AnyStyle = QFont__StyleHint(C.QFont_AnyStyle_Type()) + QFont__Cursive = QFont__StyleHint(C.QFont_Cursive_Type()) + QFont__Monospace = QFont__StyleHint(C.QFont_Monospace_Type()) + QFont__Fantasy = QFont__StyleHint(C.QFont_Fantasy_Type()) +) + +//QFont::StyleStrategy +type QFont__StyleStrategy int + +var ( + QFont__PreferDefault = QFont__StyleStrategy(0x0001) + QFont__PreferBitmap = QFont__StyleStrategy(0x0002) + QFont__PreferDevice = QFont__StyleStrategy(0x0004) + QFont__PreferOutline = QFont__StyleStrategy(0x0008) + QFont__ForceOutline = QFont__StyleStrategy(0x0010) + QFont__PreferMatch = QFont__StyleStrategy(0x0020) + QFont__PreferQuality = QFont__StyleStrategy(0x0040) + QFont__PreferAntialias = QFont__StyleStrategy(0x0080) + QFont__NoAntialias = QFont__StyleStrategy(0x0100) + QFont__OpenGLCompatible = QFont__StyleStrategy(0x0200) + QFont__ForceIntegerMetrics = QFont__StyleStrategy(0x0400) + QFont__NoSubpixelAntialias = QFont__StyleStrategy(0x0800) + QFont__NoFontMerging = QFont__StyleStrategy(0x8000) +) + +//QFont::Weight +type QFont__Weight int + +var ( + QFont__Thin = QFont__Weight(0) + QFont__ExtraLight = QFont__Weight(12) + QFont__Light = QFont__Weight(25) + QFont__Normal = QFont__Weight(50) + QFont__Medium = QFont__Weight(57) + QFont__DemiBold = QFont__Weight(63) + QFont__Bold = QFont__Weight(75) + QFont__ExtraBold = QFont__Weight(81) + QFont__Black = QFont__Weight(87) +) + +func (ptr *QFont) DefaultFamily() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFont_DefaultFamily(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFont) LastResortFamily() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFont_LastResortFamily(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFont) LastResortFont() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFont_LastResortFont(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func NewQFont() *QFont { + return QFontFromPointer(unsafe.Pointer(C.QFont_NewQFont())) +} + +func NewQFont4(font QFontITF) *QFont { + return QFontFromPointer(unsafe.Pointer(C.QFont_NewQFont4(C.QtObjectPtr(PointerFromQFont(font))))) +} + +func NewQFont3(font QFontITF, pd QPaintDeviceITF) *QFont { + return QFontFromPointer(unsafe.Pointer(C.QFont_NewQFont3(C.QtObjectPtr(PointerFromQFont(font)), C.QtObjectPtr(PointerFromQPaintDevice(pd))))) +} + +func NewQFont2(family string, pointSize int, weight int, italic bool) *QFont { + return QFontFromPointer(unsafe.Pointer(C.QFont_NewQFont2(C.CString(family), C.int(pointSize), C.int(weight), C.int(qt.GoBoolToInt(italic))))) +} + +func (ptr *QFont) Bold() bool { + if ptr.Pointer() != nil { + return C.QFont_Bold(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFont) Capitalization() QFont__Capitalization { + if ptr.Pointer() != nil { + return QFont__Capitalization(C.QFont_Capitalization(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFont) ExactMatch() bool { + if ptr.Pointer() != nil { + return C.QFont_ExactMatch(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFont) Family() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFont_Family(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFont) FixedPitch() bool { + if ptr.Pointer() != nil { + return C.QFont_FixedPitch(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFont) FromString(descrip string) bool { + if ptr.Pointer() != nil { + return C.QFont_FromString(C.QtObjectPtr(ptr.Pointer()), C.CString(descrip)) != 0 + } + return false +} + +func (ptr *QFont) HintingPreference() QFont__HintingPreference { + if ptr.Pointer() != nil { + return QFont__HintingPreference(C.QFont_HintingPreference(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QFont_InsertSubstitution(familyName string, substituteName string) { + C.QFont_QFont_InsertSubstitution(C.CString(familyName), C.CString(substituteName)) +} + +func QFont_InsertSubstitutions(familyName string, substituteNames []string) { + C.QFont_QFont_InsertSubstitutions(C.CString(familyName), C.CString(strings.Join(substituteNames, "|"))) +} + +func (ptr *QFont) IsCopyOf(f QFontITF) bool { + if ptr.Pointer() != nil { + return C.QFont_IsCopyOf(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQFont(f))) != 0 + } + return false +} + +func (ptr *QFont) Italic() bool { + if ptr.Pointer() != nil { + return C.QFont_Italic(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFont) Kerning() bool { + if ptr.Pointer() != nil { + return C.QFont_Kerning(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFont) Key() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFont_Key(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFont) LetterSpacingType() QFont__SpacingType { + if ptr.Pointer() != nil { + return QFont__SpacingType(C.QFont_LetterSpacingType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFont) Overline() bool { + if ptr.Pointer() != nil { + return C.QFont_Overline(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFont) PixelSize() int { + if ptr.Pointer() != nil { + return int(C.QFont_PixelSize(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFont) PointSize() int { + if ptr.Pointer() != nil { + return int(C.QFont_PointSize(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QFont_RemoveSubstitutions(familyName string) { + C.QFont_QFont_RemoveSubstitutions(C.CString(familyName)) +} + +func (ptr *QFont) SetBold(enable bool) { + if ptr.Pointer() != nil { + C.QFont_SetBold(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QFont) SetCapitalization(caps QFont__Capitalization) { + if ptr.Pointer() != nil { + C.QFont_SetCapitalization(C.QtObjectPtr(ptr.Pointer()), C.int(caps)) + } +} + +func (ptr *QFont) SetFamily(family string) { + if ptr.Pointer() != nil { + C.QFont_SetFamily(C.QtObjectPtr(ptr.Pointer()), C.CString(family)) + } +} + +func (ptr *QFont) SetFixedPitch(enable bool) { + if ptr.Pointer() != nil { + C.QFont_SetFixedPitch(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QFont) SetHintingPreference(hintingPreference QFont__HintingPreference) { + if ptr.Pointer() != nil { + C.QFont_SetHintingPreference(C.QtObjectPtr(ptr.Pointer()), C.int(hintingPreference)) + } +} + +func (ptr *QFont) SetItalic(enable bool) { + if ptr.Pointer() != nil { + C.QFont_SetItalic(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QFont) SetKerning(enable bool) { + if ptr.Pointer() != nil { + C.QFont_SetKerning(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QFont) SetOverline(enable bool) { + if ptr.Pointer() != nil { + C.QFont_SetOverline(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QFont) SetPixelSize(pixelSize int) { + if ptr.Pointer() != nil { + C.QFont_SetPixelSize(C.QtObjectPtr(ptr.Pointer()), C.int(pixelSize)) + } +} + +func (ptr *QFont) SetPointSize(pointSize int) { + if ptr.Pointer() != nil { + C.QFont_SetPointSize(C.QtObjectPtr(ptr.Pointer()), C.int(pointSize)) + } +} + +func (ptr *QFont) SetStretch(factor int) { + if ptr.Pointer() != nil { + C.QFont_SetStretch(C.QtObjectPtr(ptr.Pointer()), C.int(factor)) + } +} + +func (ptr *QFont) SetStrikeOut(enable bool) { + if ptr.Pointer() != nil { + C.QFont_SetStrikeOut(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QFont) SetStyle(style QFont__Style) { + if ptr.Pointer() != nil { + C.QFont_SetStyle(C.QtObjectPtr(ptr.Pointer()), C.int(style)) + } +} + +func (ptr *QFont) SetStyleHint(hint QFont__StyleHint, strategy QFont__StyleStrategy) { + if ptr.Pointer() != nil { + C.QFont_SetStyleHint(C.QtObjectPtr(ptr.Pointer()), C.int(hint), C.int(strategy)) + } +} + +func (ptr *QFont) SetStyleName(styleName string) { + if ptr.Pointer() != nil { + C.QFont_SetStyleName(C.QtObjectPtr(ptr.Pointer()), C.CString(styleName)) + } +} + +func (ptr *QFont) SetStyleStrategy(s QFont__StyleStrategy) { + if ptr.Pointer() != nil { + C.QFont_SetStyleStrategy(C.QtObjectPtr(ptr.Pointer()), C.int(s)) + } +} + +func (ptr *QFont) SetUnderline(enable bool) { + if ptr.Pointer() != nil { + C.QFont_SetUnderline(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QFont) SetWeight(weight int) { + if ptr.Pointer() != nil { + C.QFont_SetWeight(C.QtObjectPtr(ptr.Pointer()), C.int(weight)) + } +} + +func (ptr *QFont) Stretch() int { + if ptr.Pointer() != nil { + return int(C.QFont_Stretch(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFont) StrikeOut() bool { + if ptr.Pointer() != nil { + return C.QFont_StrikeOut(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFont) Style() QFont__Style { + if ptr.Pointer() != nil { + return QFont__Style(C.QFont_Style(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFont) StyleHint() QFont__StyleHint { + if ptr.Pointer() != nil { + return QFont__StyleHint(C.QFont_StyleHint(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFont) StyleName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFont_StyleName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFont) StyleStrategy() QFont__StyleStrategy { + if ptr.Pointer() != nil { + return QFont__StyleStrategy(C.QFont_StyleStrategy(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QFont_Substitute(familyName string) string { + return C.GoString(C.QFont_QFont_Substitute(C.CString(familyName))) +} + +func QFont_Substitutes(familyName string) []string { + return strings.Split(C.GoString(C.QFont_QFont_Substitutes(C.CString(familyName))), "|") +} + +func QFont_Substitutions() []string { + return strings.Split(C.GoString(C.QFont_QFont_Substitutions()), "|") +} + +func (ptr *QFont) Swap(other QFontITF) { + if ptr.Pointer() != nil { + C.QFont_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQFont(other))) + } +} + +func (ptr *QFont) ToString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFont_ToString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFont) Underline() bool { + if ptr.Pointer() != nil { + return C.QFont_Underline(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFont) Weight() int { + if ptr.Pointer() != nil { + return int(C.QFont_Weight(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFont) DestroyQFont() { + if ptr.Pointer() != nil { + C.QFont_DestroyQFont(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qfont.h b/gui/qfont.h new file mode 100755 index 00000000..545e2d20 --- /dev/null +++ b/gui/qfont.h @@ -0,0 +1,74 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QFont_Times_Type(); +int QFont_Courier_Type(); +int QFont_OldEnglish_Type(); +int QFont_System_Type(); +int QFont_AnyStyle_Type(); +int QFont_Cursive_Type(); +int QFont_Monospace_Type(); +int QFont_Fantasy_Type(); +char* QFont_DefaultFamily(QtObjectPtr ptr); +char* QFont_LastResortFamily(QtObjectPtr ptr); +char* QFont_LastResortFont(QtObjectPtr ptr); +QtObjectPtr QFont_NewQFont(); +QtObjectPtr QFont_NewQFont4(QtObjectPtr font); +QtObjectPtr QFont_NewQFont3(QtObjectPtr font, QtObjectPtr pd); +QtObjectPtr QFont_NewQFont2(char* family, int pointSize, int weight, int italic); +int QFont_Bold(QtObjectPtr ptr); +int QFont_Capitalization(QtObjectPtr ptr); +int QFont_ExactMatch(QtObjectPtr ptr); +char* QFont_Family(QtObjectPtr ptr); +int QFont_FixedPitch(QtObjectPtr ptr); +int QFont_FromString(QtObjectPtr ptr, char* descrip); +int QFont_HintingPreference(QtObjectPtr ptr); +void QFont_QFont_InsertSubstitution(char* familyName, char* substituteName); +void QFont_QFont_InsertSubstitutions(char* familyName, char* substituteNames); +int QFont_IsCopyOf(QtObjectPtr ptr, QtObjectPtr f); +int QFont_Italic(QtObjectPtr ptr); +int QFont_Kerning(QtObjectPtr ptr); +char* QFont_Key(QtObjectPtr ptr); +int QFont_LetterSpacingType(QtObjectPtr ptr); +int QFont_Overline(QtObjectPtr ptr); +int QFont_PixelSize(QtObjectPtr ptr); +int QFont_PointSize(QtObjectPtr ptr); +void QFont_QFont_RemoveSubstitutions(char* familyName); +void QFont_SetBold(QtObjectPtr ptr, int enable); +void QFont_SetCapitalization(QtObjectPtr ptr, int caps); +void QFont_SetFamily(QtObjectPtr ptr, char* family); +void QFont_SetFixedPitch(QtObjectPtr ptr, int enable); +void QFont_SetHintingPreference(QtObjectPtr ptr, int hintingPreference); +void QFont_SetItalic(QtObjectPtr ptr, int enable); +void QFont_SetKerning(QtObjectPtr ptr, int enable); +void QFont_SetOverline(QtObjectPtr ptr, int enable); +void QFont_SetPixelSize(QtObjectPtr ptr, int pixelSize); +void QFont_SetPointSize(QtObjectPtr ptr, int pointSize); +void QFont_SetStretch(QtObjectPtr ptr, int factor); +void QFont_SetStrikeOut(QtObjectPtr ptr, int enable); +void QFont_SetStyle(QtObjectPtr ptr, int style); +void QFont_SetStyleHint(QtObjectPtr ptr, int hint, int strategy); +void QFont_SetStyleName(QtObjectPtr ptr, char* styleName); +void QFont_SetStyleStrategy(QtObjectPtr ptr, int s); +void QFont_SetUnderline(QtObjectPtr ptr, int enable); +void QFont_SetWeight(QtObjectPtr ptr, int weight); +int QFont_Stretch(QtObjectPtr ptr); +int QFont_StrikeOut(QtObjectPtr ptr); +int QFont_Style(QtObjectPtr ptr); +int QFont_StyleHint(QtObjectPtr ptr); +char* QFont_StyleName(QtObjectPtr ptr); +int QFont_StyleStrategy(QtObjectPtr ptr); +char* QFont_QFont_Substitute(char* familyName); +char* QFont_QFont_Substitutes(char* familyName); +char* QFont_QFont_Substitutions(); +void QFont_Swap(QtObjectPtr ptr, QtObjectPtr other); +char* QFont_ToString(QtObjectPtr ptr); +int QFont_Underline(QtObjectPtr ptr); +int QFont_Weight(QtObjectPtr ptr); +void QFont_DestroyQFont(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qfontdatabase.cpp b/gui/qfontdatabase.cpp new file mode 100755 index 00000000..27d86f81 --- /dev/null +++ b/gui/qfontdatabase.cpp @@ -0,0 +1,111 @@ +#include "qfontdatabase.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQFontDatabase: public QFontDatabase { +public: +}; + +int QFontDatabase_Ogham_Type(){ + return QFontDatabase::Ogham; +} + +int QFontDatabase_Runic_Type(){ + return QFontDatabase::Runic; +} + +int QFontDatabase_Nko_Type(){ + return QFontDatabase::Nko; +} + +int QFontDatabase_WritingSystemsCount_Type(){ + return QFontDatabase::WritingSystemsCount; +} + +int QFontDatabase_QFontDatabase_RemoveAllApplicationFonts(){ + return QFontDatabase::removeAllApplicationFonts(); +} + +int QFontDatabase_QFontDatabase_RemoveApplicationFont(int id){ + return QFontDatabase::removeApplicationFont(id); +} + +QtObjectPtr QFontDatabase_NewQFontDatabase(){ + return new QFontDatabase(); +} + +int QFontDatabase_QFontDatabase_AddApplicationFont(char* fileName){ + return QFontDatabase::addApplicationFont(QString(fileName)); +} + +int QFontDatabase_QFontDatabase_AddApplicationFontFromData(QtObjectPtr fontData){ + return QFontDatabase::addApplicationFontFromData(*static_cast(fontData)); +} + +char* QFontDatabase_QFontDatabase_ApplicationFontFamilies(int id){ + return QFontDatabase::applicationFontFamilies(id).join("|").toUtf8().data(); +} + +int QFontDatabase_Bold(QtObjectPtr ptr, char* family, char* style){ + return static_cast(ptr)->bold(QString(family), QString(style)); +} + +char* QFontDatabase_Families(QtObjectPtr ptr, int writingSystem){ + return static_cast(ptr)->families(static_cast(writingSystem)).join("|").toUtf8().data(); +} + +int QFontDatabase_IsBitmapScalable(QtObjectPtr ptr, char* family, char* style){ + return static_cast(ptr)->isBitmapScalable(QString(family), QString(style)); +} + +int QFontDatabase_IsFixedPitch(QtObjectPtr ptr, char* family, char* style){ + return static_cast(ptr)->isFixedPitch(QString(family), QString(style)); +} + +int QFontDatabase_IsPrivateFamily(QtObjectPtr ptr, char* family){ + return static_cast(ptr)->isPrivateFamily(QString(family)); +} + +int QFontDatabase_IsScalable(QtObjectPtr ptr, char* family, char* style){ + return static_cast(ptr)->isScalable(QString(family), QString(style)); +} + +int QFontDatabase_IsSmoothlyScalable(QtObjectPtr ptr, char* family, char* style){ + return static_cast(ptr)->isSmoothlyScalable(QString(family), QString(style)); +} + +int QFontDatabase_Italic(QtObjectPtr ptr, char* family, char* style){ + return static_cast(ptr)->italic(QString(family), QString(style)); +} + +char* QFontDatabase_StyleString(QtObjectPtr ptr, QtObjectPtr font){ + return static_cast(ptr)->styleString(*static_cast(font)).toUtf8().data(); +} + +char* QFontDatabase_StyleString2(QtObjectPtr ptr, QtObjectPtr fontInfo){ + return static_cast(ptr)->styleString(*static_cast(fontInfo)).toUtf8().data(); +} + +char* QFontDatabase_Styles(QtObjectPtr ptr, char* family){ + return static_cast(ptr)->styles(QString(family)).join("|").toUtf8().data(); +} + +int QFontDatabase_Weight(QtObjectPtr ptr, char* family, char* style){ + return static_cast(ptr)->weight(QString(family), QString(style)); +} + +char* QFontDatabase_QFontDatabase_WritingSystemName(int writingSystem){ + return QFontDatabase::writingSystemName(static_cast(writingSystem)).toUtf8().data(); +} + +char* QFontDatabase_QFontDatabase_WritingSystemSample(int writingSystem){ + return QFontDatabase::writingSystemSample(static_cast(writingSystem)).toUtf8().data(); +} + diff --git a/gui/qfontdatabase.go b/gui/qfontdatabase.go new file mode 100755 index 00000000..d6c5811b --- /dev/null +++ b/gui/qfontdatabase.go @@ -0,0 +1,210 @@ +package gui + +//#include "qfontdatabase.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QFontDatabase struct { + ptr unsafe.Pointer +} + +type QFontDatabaseITF interface { + QFontDatabasePTR() *QFontDatabase +} + +func (p *QFontDatabase) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QFontDatabase) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQFontDatabase(ptr QFontDatabaseITF) unsafe.Pointer { + if ptr != nil { + return ptr.QFontDatabasePTR().Pointer() + } + return nil +} + +func QFontDatabaseFromPointer(ptr unsafe.Pointer) *QFontDatabase { + var n = new(QFontDatabase) + n.SetPointer(ptr) + return n +} + +func (ptr *QFontDatabase) QFontDatabasePTR() *QFontDatabase { + return ptr +} + +//QFontDatabase::SystemFont +type QFontDatabase__SystemFont int + +var ( + QFontDatabase__GeneralFont = QFontDatabase__SystemFont(0) + QFontDatabase__FixedFont = QFontDatabase__SystemFont(1) + QFontDatabase__TitleFont = QFontDatabase__SystemFont(2) + QFontDatabase__SmallestReadableFont = QFontDatabase__SystemFont(3) +) + +//QFontDatabase::WritingSystem +type QFontDatabase__WritingSystem int + +var ( + QFontDatabase__Any = QFontDatabase__WritingSystem(0) + QFontDatabase__Latin = QFontDatabase__WritingSystem(1) + QFontDatabase__Greek = QFontDatabase__WritingSystem(2) + QFontDatabase__Cyrillic = QFontDatabase__WritingSystem(3) + QFontDatabase__Armenian = QFontDatabase__WritingSystem(4) + QFontDatabase__Hebrew = QFontDatabase__WritingSystem(5) + QFontDatabase__Arabic = QFontDatabase__WritingSystem(6) + QFontDatabase__Syriac = QFontDatabase__WritingSystem(7) + QFontDatabase__Thaana = QFontDatabase__WritingSystem(8) + QFontDatabase__Devanagari = QFontDatabase__WritingSystem(9) + QFontDatabase__Bengali = QFontDatabase__WritingSystem(10) + QFontDatabase__Gurmukhi = QFontDatabase__WritingSystem(11) + QFontDatabase__Gujarati = QFontDatabase__WritingSystem(12) + QFontDatabase__Oriya = QFontDatabase__WritingSystem(13) + QFontDatabase__Tamil = QFontDatabase__WritingSystem(14) + QFontDatabase__Telugu = QFontDatabase__WritingSystem(15) + QFontDatabase__Kannada = QFontDatabase__WritingSystem(16) + QFontDatabase__Malayalam = QFontDatabase__WritingSystem(17) + QFontDatabase__Sinhala = QFontDatabase__WritingSystem(18) + QFontDatabase__Thai = QFontDatabase__WritingSystem(19) + QFontDatabase__Lao = QFontDatabase__WritingSystem(20) + QFontDatabase__Tibetan = QFontDatabase__WritingSystem(21) + QFontDatabase__Myanmar = QFontDatabase__WritingSystem(22) + QFontDatabase__Georgian = QFontDatabase__WritingSystem(23) + QFontDatabase__Khmer = QFontDatabase__WritingSystem(24) + QFontDatabase__SimplifiedChinese = QFontDatabase__WritingSystem(25) + QFontDatabase__TraditionalChinese = QFontDatabase__WritingSystem(26) + QFontDatabase__Japanese = QFontDatabase__WritingSystem(27) + QFontDatabase__Korean = QFontDatabase__WritingSystem(28) + QFontDatabase__Vietnamese = QFontDatabase__WritingSystem(29) + QFontDatabase__Symbol = QFontDatabase__WritingSystem(30) + QFontDatabase__Other = QFontDatabase__WritingSystem(QFontDatabase__Symbol) + QFontDatabase__Ogham = QFontDatabase__WritingSystem(C.QFontDatabase_Ogham_Type()) + QFontDatabase__Runic = QFontDatabase__WritingSystem(C.QFontDatabase_Runic_Type()) + QFontDatabase__Nko = QFontDatabase__WritingSystem(C.QFontDatabase_Nko_Type()) + QFontDatabase__WritingSystemsCount = QFontDatabase__WritingSystem(C.QFontDatabase_WritingSystemsCount_Type()) +) + +func QFontDatabase_RemoveAllApplicationFonts() bool { + return C.QFontDatabase_QFontDatabase_RemoveAllApplicationFonts() != 0 +} + +func QFontDatabase_RemoveApplicationFont(id int) bool { + return C.QFontDatabase_QFontDatabase_RemoveApplicationFont(C.int(id)) != 0 +} + +func NewQFontDatabase() *QFontDatabase { + return QFontDatabaseFromPointer(unsafe.Pointer(C.QFontDatabase_NewQFontDatabase())) +} + +func QFontDatabase_AddApplicationFont(fileName string) int { + return int(C.QFontDatabase_QFontDatabase_AddApplicationFont(C.CString(fileName))) +} + +func QFontDatabase_AddApplicationFontFromData(fontData core.QByteArrayITF) int { + return int(C.QFontDatabase_QFontDatabase_AddApplicationFontFromData(C.QtObjectPtr(core.PointerFromQByteArray(fontData)))) +} + +func QFontDatabase_ApplicationFontFamilies(id int) []string { + return strings.Split(C.GoString(C.QFontDatabase_QFontDatabase_ApplicationFontFamilies(C.int(id))), "|") +} + +func (ptr *QFontDatabase) Bold(family string, style string) bool { + if ptr.Pointer() != nil { + return C.QFontDatabase_Bold(C.QtObjectPtr(ptr.Pointer()), C.CString(family), C.CString(style)) != 0 + } + return false +} + +func (ptr *QFontDatabase) Families(writingSystem QFontDatabase__WritingSystem) []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QFontDatabase_Families(C.QtObjectPtr(ptr.Pointer()), C.int(writingSystem))), "|") + } + return make([]string, 0) +} + +func (ptr *QFontDatabase) IsBitmapScalable(family string, style string) bool { + if ptr.Pointer() != nil { + return C.QFontDatabase_IsBitmapScalable(C.QtObjectPtr(ptr.Pointer()), C.CString(family), C.CString(style)) != 0 + } + return false +} + +func (ptr *QFontDatabase) IsFixedPitch(family string, style string) bool { + if ptr.Pointer() != nil { + return C.QFontDatabase_IsFixedPitch(C.QtObjectPtr(ptr.Pointer()), C.CString(family), C.CString(style)) != 0 + } + return false +} + +func (ptr *QFontDatabase) IsPrivateFamily(family string) bool { + if ptr.Pointer() != nil { + return C.QFontDatabase_IsPrivateFamily(C.QtObjectPtr(ptr.Pointer()), C.CString(family)) != 0 + } + return false +} + +func (ptr *QFontDatabase) IsScalable(family string, style string) bool { + if ptr.Pointer() != nil { + return C.QFontDatabase_IsScalable(C.QtObjectPtr(ptr.Pointer()), C.CString(family), C.CString(style)) != 0 + } + return false +} + +func (ptr *QFontDatabase) IsSmoothlyScalable(family string, style string) bool { + if ptr.Pointer() != nil { + return C.QFontDatabase_IsSmoothlyScalable(C.QtObjectPtr(ptr.Pointer()), C.CString(family), C.CString(style)) != 0 + } + return false +} + +func (ptr *QFontDatabase) Italic(family string, style string) bool { + if ptr.Pointer() != nil { + return C.QFontDatabase_Italic(C.QtObjectPtr(ptr.Pointer()), C.CString(family), C.CString(style)) != 0 + } + return false +} + +func (ptr *QFontDatabase) StyleString(font QFontITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QFontDatabase_StyleString(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQFont(font)))) + } + return "" +} + +func (ptr *QFontDatabase) StyleString2(fontInfo QFontInfoITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QFontDatabase_StyleString2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQFontInfo(fontInfo)))) + } + return "" +} + +func (ptr *QFontDatabase) Styles(family string) []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QFontDatabase_Styles(C.QtObjectPtr(ptr.Pointer()), C.CString(family))), "|") + } + return make([]string, 0) +} + +func (ptr *QFontDatabase) Weight(family string, style string) int { + if ptr.Pointer() != nil { + return int(C.QFontDatabase_Weight(C.QtObjectPtr(ptr.Pointer()), C.CString(family), C.CString(style))) + } + return 0 +} + +func QFontDatabase_WritingSystemName(writingSystem QFontDatabase__WritingSystem) string { + return C.GoString(C.QFontDatabase_QFontDatabase_WritingSystemName(C.int(writingSystem))) +} + +func QFontDatabase_WritingSystemSample(writingSystem QFontDatabase__WritingSystem) string { + return C.GoString(C.QFontDatabase_QFontDatabase_WritingSystemSample(C.int(writingSystem))) +} diff --git a/gui/qfontdatabase.h b/gui/qfontdatabase.h new file mode 100755 index 00000000..1185251c --- /dev/null +++ b/gui/qfontdatabase.h @@ -0,0 +1,33 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QFontDatabase_Ogham_Type(); +int QFontDatabase_Runic_Type(); +int QFontDatabase_Nko_Type(); +int QFontDatabase_WritingSystemsCount_Type(); +int QFontDatabase_QFontDatabase_RemoveAllApplicationFonts(); +int QFontDatabase_QFontDatabase_RemoveApplicationFont(int id); +QtObjectPtr QFontDatabase_NewQFontDatabase(); +int QFontDatabase_QFontDatabase_AddApplicationFont(char* fileName); +int QFontDatabase_QFontDatabase_AddApplicationFontFromData(QtObjectPtr fontData); +char* QFontDatabase_QFontDatabase_ApplicationFontFamilies(int id); +int QFontDatabase_Bold(QtObjectPtr ptr, char* family, char* style); +char* QFontDatabase_Families(QtObjectPtr ptr, int writingSystem); +int QFontDatabase_IsBitmapScalable(QtObjectPtr ptr, char* family, char* style); +int QFontDatabase_IsFixedPitch(QtObjectPtr ptr, char* family, char* style); +int QFontDatabase_IsPrivateFamily(QtObjectPtr ptr, char* family); +int QFontDatabase_IsScalable(QtObjectPtr ptr, char* family, char* style); +int QFontDatabase_IsSmoothlyScalable(QtObjectPtr ptr, char* family, char* style); +int QFontDatabase_Italic(QtObjectPtr ptr, char* family, char* style); +char* QFontDatabase_StyleString(QtObjectPtr ptr, QtObjectPtr font); +char* QFontDatabase_StyleString2(QtObjectPtr ptr, QtObjectPtr fontInfo); +char* QFontDatabase_Styles(QtObjectPtr ptr, char* family); +int QFontDatabase_Weight(QtObjectPtr ptr, char* family, char* style); +char* QFontDatabase_QFontDatabase_WritingSystemName(int writingSystem); +char* QFontDatabase_QFontDatabase_WritingSystemSample(int writingSystem); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qfontinfo.cpp b/gui/qfontinfo.cpp new file mode 100755 index 00000000..2a2a682d --- /dev/null +++ b/gui/qfontinfo.cpp @@ -0,0 +1,73 @@ +#include "qfontinfo.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQFontInfo: public QFontInfo { +public: +}; + +QtObjectPtr QFontInfo_NewQFontInfo(QtObjectPtr font){ + return new QFontInfo(*static_cast(font)); +} + +QtObjectPtr QFontInfo_NewQFontInfo2(QtObjectPtr fi){ + return new QFontInfo(*static_cast(fi)); +} + +int QFontInfo_Bold(QtObjectPtr ptr){ + return static_cast(ptr)->bold(); +} + +int QFontInfo_ExactMatch(QtObjectPtr ptr){ + return static_cast(ptr)->exactMatch(); +} + +char* QFontInfo_Family(QtObjectPtr ptr){ + return static_cast(ptr)->family().toUtf8().data(); +} + +int QFontInfo_FixedPitch(QtObjectPtr ptr){ + return static_cast(ptr)->fixedPitch(); +} + +int QFontInfo_Italic(QtObjectPtr ptr){ + return static_cast(ptr)->italic(); +} + +int QFontInfo_PixelSize(QtObjectPtr ptr){ + return static_cast(ptr)->pixelSize(); +} + +int QFontInfo_PointSize(QtObjectPtr ptr){ + return static_cast(ptr)->pointSize(); +} + +int QFontInfo_Style(QtObjectPtr ptr){ + return static_cast(ptr)->style(); +} + +char* QFontInfo_StyleName(QtObjectPtr ptr){ + return static_cast(ptr)->styleName().toUtf8().data(); +} + +void QFontInfo_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +int QFontInfo_StyleHint(QtObjectPtr ptr){ + return static_cast(ptr)->styleHint(); +} + +int QFontInfo_Weight(QtObjectPtr ptr){ + return static_cast(ptr)->weight(); +} + +void QFontInfo_DestroyQFontInfo(QtObjectPtr ptr){ + static_cast(ptr)->~QFontInfo(); +} + diff --git a/gui/qfontinfo.go b/gui/qfontinfo.go new file mode 100755 index 00000000..8141e2ea --- /dev/null +++ b/gui/qfontinfo.go @@ -0,0 +1,137 @@ +package gui + +//#include "qfontinfo.h" +import "C" +import ( + "unsafe" +) + +type QFontInfo struct { + ptr unsafe.Pointer +} + +type QFontInfoITF interface { + QFontInfoPTR() *QFontInfo +} + +func (p *QFontInfo) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QFontInfo) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQFontInfo(ptr QFontInfoITF) unsafe.Pointer { + if ptr != nil { + return ptr.QFontInfoPTR().Pointer() + } + return nil +} + +func QFontInfoFromPointer(ptr unsafe.Pointer) *QFontInfo { + var n = new(QFontInfo) + n.SetPointer(ptr) + return n +} + +func (ptr *QFontInfo) QFontInfoPTR() *QFontInfo { + return ptr +} + +func NewQFontInfo(font QFontITF) *QFontInfo { + return QFontInfoFromPointer(unsafe.Pointer(C.QFontInfo_NewQFontInfo(C.QtObjectPtr(PointerFromQFont(font))))) +} + +func NewQFontInfo2(fi QFontInfoITF) *QFontInfo { + return QFontInfoFromPointer(unsafe.Pointer(C.QFontInfo_NewQFontInfo2(C.QtObjectPtr(PointerFromQFontInfo(fi))))) +} + +func (ptr *QFontInfo) Bold() bool { + if ptr.Pointer() != nil { + return C.QFontInfo_Bold(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFontInfo) ExactMatch() bool { + if ptr.Pointer() != nil { + return C.QFontInfo_ExactMatch(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFontInfo) Family() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFontInfo_Family(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFontInfo) FixedPitch() bool { + if ptr.Pointer() != nil { + return C.QFontInfo_FixedPitch(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFontInfo) Italic() bool { + if ptr.Pointer() != nil { + return C.QFontInfo_Italic(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFontInfo) PixelSize() int { + if ptr.Pointer() != nil { + return int(C.QFontInfo_PixelSize(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFontInfo) PointSize() int { + if ptr.Pointer() != nil { + return int(C.QFontInfo_PointSize(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFontInfo) Style() QFont__Style { + if ptr.Pointer() != nil { + return QFont__Style(C.QFontInfo_Style(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFontInfo) StyleName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFontInfo_StyleName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFontInfo) Swap(other QFontInfoITF) { + if ptr.Pointer() != nil { + C.QFontInfo_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQFontInfo(other))) + } +} + +func (ptr *QFontInfo) StyleHint() QFont__StyleHint { + if ptr.Pointer() != nil { + return QFont__StyleHint(C.QFontInfo_StyleHint(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFontInfo) Weight() int { + if ptr.Pointer() != nil { + return int(C.QFontInfo_Weight(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFontInfo) DestroyQFontInfo() { + if ptr.Pointer() != nil { + C.QFontInfo_DestroyQFontInfo(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qfontinfo.h b/gui/qfontinfo.h new file mode 100755 index 00000000..58187b8c --- /dev/null +++ b/gui/qfontinfo.h @@ -0,0 +1,24 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QFontInfo_NewQFontInfo(QtObjectPtr font); +QtObjectPtr QFontInfo_NewQFontInfo2(QtObjectPtr fi); +int QFontInfo_Bold(QtObjectPtr ptr); +int QFontInfo_ExactMatch(QtObjectPtr ptr); +char* QFontInfo_Family(QtObjectPtr ptr); +int QFontInfo_FixedPitch(QtObjectPtr ptr); +int QFontInfo_Italic(QtObjectPtr ptr); +int QFontInfo_PixelSize(QtObjectPtr ptr); +int QFontInfo_PointSize(QtObjectPtr ptr); +int QFontInfo_Style(QtObjectPtr ptr); +char* QFontInfo_StyleName(QtObjectPtr ptr); +void QFontInfo_Swap(QtObjectPtr ptr, QtObjectPtr other); +int QFontInfo_StyleHint(QtObjectPtr ptr); +int QFontInfo_Weight(QtObjectPtr ptr); +void QFontInfo_DestroyQFontInfo(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qfontmetrics.cpp b/gui/qfontmetrics.cpp new file mode 100755 index 00000000..42440f37 --- /dev/null +++ b/gui/qfontmetrics.cpp @@ -0,0 +1,115 @@ +#include "qfontmetrics.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQFontMetrics: public QFontMetrics { +public: +}; + +QtObjectPtr QFontMetrics_NewQFontMetrics(QtObjectPtr font){ + return new QFontMetrics(*static_cast(font)); +} + +QtObjectPtr QFontMetrics_NewQFontMetrics2(QtObjectPtr font, QtObjectPtr paintdevice){ + return new QFontMetrics(*static_cast(font), static_cast(paintdevice)); +} + +QtObjectPtr QFontMetrics_NewQFontMetrics3(QtObjectPtr fm){ + return new QFontMetrics(*static_cast(fm)); +} + +int QFontMetrics_Ascent(QtObjectPtr ptr){ + return static_cast(ptr)->ascent(); +} + +int QFontMetrics_AverageCharWidth(QtObjectPtr ptr){ + return static_cast(ptr)->averageCharWidth(); +} + +int QFontMetrics_Descent(QtObjectPtr ptr){ + return static_cast(ptr)->descent(); +} + +char* QFontMetrics_ElidedText(QtObjectPtr ptr, char* text, int mode, int width, int flags){ + return static_cast(ptr)->elidedText(QString(text), static_cast(mode), width, flags).toUtf8().data(); +} + +int QFontMetrics_Height(QtObjectPtr ptr){ + return static_cast(ptr)->height(); +} + +int QFontMetrics_InFont(QtObjectPtr ptr, QtObjectPtr ch){ + return static_cast(ptr)->inFont(*static_cast(ch)); +} + +int QFontMetrics_Leading(QtObjectPtr ptr){ + return static_cast(ptr)->leading(); +} + +int QFontMetrics_LeftBearing(QtObjectPtr ptr, QtObjectPtr ch){ + return static_cast(ptr)->leftBearing(*static_cast(ch)); +} + +int QFontMetrics_LineSpacing(QtObjectPtr ptr){ + return static_cast(ptr)->lineSpacing(); +} + +int QFontMetrics_LineWidth(QtObjectPtr ptr){ + return static_cast(ptr)->lineWidth(); +} + +int QFontMetrics_MaxWidth(QtObjectPtr ptr){ + return static_cast(ptr)->maxWidth(); +} + +int QFontMetrics_MinLeftBearing(QtObjectPtr ptr){ + return static_cast(ptr)->minLeftBearing(); +} + +int QFontMetrics_MinRightBearing(QtObjectPtr ptr){ + return static_cast(ptr)->minRightBearing(); +} + +int QFontMetrics_OverlinePos(QtObjectPtr ptr){ + return static_cast(ptr)->overlinePos(); +} + +int QFontMetrics_RightBearing(QtObjectPtr ptr, QtObjectPtr ch){ + return static_cast(ptr)->rightBearing(*static_cast(ch)); +} + +int QFontMetrics_StrikeOutPos(QtObjectPtr ptr){ + return static_cast(ptr)->strikeOutPos(); +} + +void QFontMetrics_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +int QFontMetrics_UnderlinePos(QtObjectPtr ptr){ + return static_cast(ptr)->underlinePos(); +} + +int QFontMetrics_Width3(QtObjectPtr ptr, QtObjectPtr ch){ + return static_cast(ptr)->width(*static_cast(ch)); +} + +int QFontMetrics_Width(QtObjectPtr ptr, char* text, int len){ + return static_cast(ptr)->width(QString(text), len); +} + +int QFontMetrics_XHeight(QtObjectPtr ptr){ + return static_cast(ptr)->xHeight(); +} + +void QFontMetrics_DestroyQFontMetrics(QtObjectPtr ptr){ + static_cast(ptr)->~QFontMetrics(); +} + diff --git a/gui/qfontmetrics.go b/gui/qfontmetrics.go new file mode 100755 index 00000000..3bffd4eb --- /dev/null +++ b/gui/qfontmetrics.go @@ -0,0 +1,205 @@ +package gui + +//#include "qfontmetrics.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QFontMetrics struct { + ptr unsafe.Pointer +} + +type QFontMetricsITF interface { + QFontMetricsPTR() *QFontMetrics +} + +func (p *QFontMetrics) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QFontMetrics) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQFontMetrics(ptr QFontMetricsITF) unsafe.Pointer { + if ptr != nil { + return ptr.QFontMetricsPTR().Pointer() + } + return nil +} + +func QFontMetricsFromPointer(ptr unsafe.Pointer) *QFontMetrics { + var n = new(QFontMetrics) + n.SetPointer(ptr) + return n +} + +func (ptr *QFontMetrics) QFontMetricsPTR() *QFontMetrics { + return ptr +} + +func NewQFontMetrics(font QFontITF) *QFontMetrics { + return QFontMetricsFromPointer(unsafe.Pointer(C.QFontMetrics_NewQFontMetrics(C.QtObjectPtr(PointerFromQFont(font))))) +} + +func NewQFontMetrics2(font QFontITF, paintdevice QPaintDeviceITF) *QFontMetrics { + return QFontMetricsFromPointer(unsafe.Pointer(C.QFontMetrics_NewQFontMetrics2(C.QtObjectPtr(PointerFromQFont(font)), C.QtObjectPtr(PointerFromQPaintDevice(paintdevice))))) +} + +func NewQFontMetrics3(fm QFontMetricsITF) *QFontMetrics { + return QFontMetricsFromPointer(unsafe.Pointer(C.QFontMetrics_NewQFontMetrics3(C.QtObjectPtr(PointerFromQFontMetrics(fm))))) +} + +func (ptr *QFontMetrics) Ascent() int { + if ptr.Pointer() != nil { + return int(C.QFontMetrics_Ascent(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFontMetrics) AverageCharWidth() int { + if ptr.Pointer() != nil { + return int(C.QFontMetrics_AverageCharWidth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFontMetrics) Descent() int { + if ptr.Pointer() != nil { + return int(C.QFontMetrics_Descent(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFontMetrics) ElidedText(text string, mode core.Qt__TextElideMode, width int, flags int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QFontMetrics_ElidedText(C.QtObjectPtr(ptr.Pointer()), C.CString(text), C.int(mode), C.int(width), C.int(flags))) + } + return "" +} + +func (ptr *QFontMetrics) Height() int { + if ptr.Pointer() != nil { + return int(C.QFontMetrics_Height(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFontMetrics) InFont(ch core.QCharITF) bool { + if ptr.Pointer() != nil { + return C.QFontMetrics_InFont(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQChar(ch))) != 0 + } + return false +} + +func (ptr *QFontMetrics) Leading() int { + if ptr.Pointer() != nil { + return int(C.QFontMetrics_Leading(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFontMetrics) LeftBearing(ch core.QCharITF) int { + if ptr.Pointer() != nil { + return int(C.QFontMetrics_LeftBearing(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQChar(ch)))) + } + return 0 +} + +func (ptr *QFontMetrics) LineSpacing() int { + if ptr.Pointer() != nil { + return int(C.QFontMetrics_LineSpacing(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFontMetrics) LineWidth() int { + if ptr.Pointer() != nil { + return int(C.QFontMetrics_LineWidth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFontMetrics) MaxWidth() int { + if ptr.Pointer() != nil { + return int(C.QFontMetrics_MaxWidth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFontMetrics) MinLeftBearing() int { + if ptr.Pointer() != nil { + return int(C.QFontMetrics_MinLeftBearing(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFontMetrics) MinRightBearing() int { + if ptr.Pointer() != nil { + return int(C.QFontMetrics_MinRightBearing(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFontMetrics) OverlinePos() int { + if ptr.Pointer() != nil { + return int(C.QFontMetrics_OverlinePos(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFontMetrics) RightBearing(ch core.QCharITF) int { + if ptr.Pointer() != nil { + return int(C.QFontMetrics_RightBearing(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQChar(ch)))) + } + return 0 +} + +func (ptr *QFontMetrics) StrikeOutPos() int { + if ptr.Pointer() != nil { + return int(C.QFontMetrics_StrikeOutPos(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFontMetrics) Swap(other QFontMetricsITF) { + if ptr.Pointer() != nil { + C.QFontMetrics_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQFontMetrics(other))) + } +} + +func (ptr *QFontMetrics) UnderlinePos() int { + if ptr.Pointer() != nil { + return int(C.QFontMetrics_UnderlinePos(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFontMetrics) Width3(ch core.QCharITF) int { + if ptr.Pointer() != nil { + return int(C.QFontMetrics_Width3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQChar(ch)))) + } + return 0 +} + +func (ptr *QFontMetrics) Width(text string, len int) int { + if ptr.Pointer() != nil { + return int(C.QFontMetrics_Width(C.QtObjectPtr(ptr.Pointer()), C.CString(text), C.int(len))) + } + return 0 +} + +func (ptr *QFontMetrics) XHeight() int { + if ptr.Pointer() != nil { + return int(C.QFontMetrics_XHeight(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFontMetrics) DestroyQFontMetrics() { + if ptr.Pointer() != nil { + C.QFontMetrics_DestroyQFontMetrics(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qfontmetrics.h b/gui/qfontmetrics.h new file mode 100755 index 00000000..b0f188f3 --- /dev/null +++ b/gui/qfontmetrics.h @@ -0,0 +1,34 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QFontMetrics_NewQFontMetrics(QtObjectPtr font); +QtObjectPtr QFontMetrics_NewQFontMetrics2(QtObjectPtr font, QtObjectPtr paintdevice); +QtObjectPtr QFontMetrics_NewQFontMetrics3(QtObjectPtr fm); +int QFontMetrics_Ascent(QtObjectPtr ptr); +int QFontMetrics_AverageCharWidth(QtObjectPtr ptr); +int QFontMetrics_Descent(QtObjectPtr ptr); +char* QFontMetrics_ElidedText(QtObjectPtr ptr, char* text, int mode, int width, int flags); +int QFontMetrics_Height(QtObjectPtr ptr); +int QFontMetrics_InFont(QtObjectPtr ptr, QtObjectPtr ch); +int QFontMetrics_Leading(QtObjectPtr ptr); +int QFontMetrics_LeftBearing(QtObjectPtr ptr, QtObjectPtr ch); +int QFontMetrics_LineSpacing(QtObjectPtr ptr); +int QFontMetrics_LineWidth(QtObjectPtr ptr); +int QFontMetrics_MaxWidth(QtObjectPtr ptr); +int QFontMetrics_MinLeftBearing(QtObjectPtr ptr); +int QFontMetrics_MinRightBearing(QtObjectPtr ptr); +int QFontMetrics_OverlinePos(QtObjectPtr ptr); +int QFontMetrics_RightBearing(QtObjectPtr ptr, QtObjectPtr ch); +int QFontMetrics_StrikeOutPos(QtObjectPtr ptr); +void QFontMetrics_Swap(QtObjectPtr ptr, QtObjectPtr other); +int QFontMetrics_UnderlinePos(QtObjectPtr ptr); +int QFontMetrics_Width3(QtObjectPtr ptr, QtObjectPtr ch); +int QFontMetrics_Width(QtObjectPtr ptr, char* text, int len); +int QFontMetrics_XHeight(QtObjectPtr ptr); +void QFontMetrics_DestroyQFontMetrics(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qfontmetricsf.cpp b/gui/qfontmetricsf.cpp new file mode 100755 index 00000000..678a903c --- /dev/null +++ b/gui/qfontmetricsf.cpp @@ -0,0 +1,44 @@ +#include "qfontmetricsf.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQFontMetricsF: public QFontMetricsF { +public: +}; + +QtObjectPtr QFontMetricsF_NewQFontMetricsF(QtObjectPtr font){ + return new QFontMetricsF(*static_cast(font)); +} + +QtObjectPtr QFontMetricsF_NewQFontMetricsF2(QtObjectPtr font, QtObjectPtr paintdevice){ + return new QFontMetricsF(*static_cast(font), static_cast(paintdevice)); +} + +QtObjectPtr QFontMetricsF_NewQFontMetricsF3(QtObjectPtr fontMetrics){ + return new QFontMetricsF(*static_cast(fontMetrics)); +} + +QtObjectPtr QFontMetricsF_NewQFontMetricsF4(QtObjectPtr fm){ + return new QFontMetricsF(*static_cast(fm)); +} + +int QFontMetricsF_InFont(QtObjectPtr ptr, QtObjectPtr ch){ + return static_cast(ptr)->inFont(*static_cast(ch)); +} + +void QFontMetricsF_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QFontMetricsF_DestroyQFontMetricsF(QtObjectPtr ptr){ + static_cast(ptr)->~QFontMetricsF(); +} + diff --git a/gui/qfontmetricsf.go b/gui/qfontmetricsf.go new file mode 100755 index 00000000..d10a28f6 --- /dev/null +++ b/gui/qfontmetricsf.go @@ -0,0 +1,76 @@ +package gui + +//#include "qfontmetricsf.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QFontMetricsF struct { + ptr unsafe.Pointer +} + +type QFontMetricsFITF interface { + QFontMetricsFPTR() *QFontMetricsF +} + +func (p *QFontMetricsF) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QFontMetricsF) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQFontMetricsF(ptr QFontMetricsFITF) unsafe.Pointer { + if ptr != nil { + return ptr.QFontMetricsFPTR().Pointer() + } + return nil +} + +func QFontMetricsFFromPointer(ptr unsafe.Pointer) *QFontMetricsF { + var n = new(QFontMetricsF) + n.SetPointer(ptr) + return n +} + +func (ptr *QFontMetricsF) QFontMetricsFPTR() *QFontMetricsF { + return ptr +} + +func NewQFontMetricsF(font QFontITF) *QFontMetricsF { + return QFontMetricsFFromPointer(unsafe.Pointer(C.QFontMetricsF_NewQFontMetricsF(C.QtObjectPtr(PointerFromQFont(font))))) +} + +func NewQFontMetricsF2(font QFontITF, paintdevice QPaintDeviceITF) *QFontMetricsF { + return QFontMetricsFFromPointer(unsafe.Pointer(C.QFontMetricsF_NewQFontMetricsF2(C.QtObjectPtr(PointerFromQFont(font)), C.QtObjectPtr(PointerFromQPaintDevice(paintdevice))))) +} + +func NewQFontMetricsF3(fontMetrics QFontMetricsITF) *QFontMetricsF { + return QFontMetricsFFromPointer(unsafe.Pointer(C.QFontMetricsF_NewQFontMetricsF3(C.QtObjectPtr(PointerFromQFontMetrics(fontMetrics))))) +} + +func NewQFontMetricsF4(fm QFontMetricsFITF) *QFontMetricsF { + return QFontMetricsFFromPointer(unsafe.Pointer(C.QFontMetricsF_NewQFontMetricsF4(C.QtObjectPtr(PointerFromQFontMetricsF(fm))))) +} + +func (ptr *QFontMetricsF) InFont(ch core.QCharITF) bool { + if ptr.Pointer() != nil { + return C.QFontMetricsF_InFont(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQChar(ch))) != 0 + } + return false +} + +func (ptr *QFontMetricsF) Swap(other QFontMetricsFITF) { + if ptr.Pointer() != nil { + C.QFontMetricsF_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQFontMetricsF(other))) + } +} + +func (ptr *QFontMetricsF) DestroyQFontMetricsF() { + if ptr.Pointer() != nil { + C.QFontMetricsF_DestroyQFontMetricsF(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qfontmetricsf.h b/gui/qfontmetricsf.h new file mode 100755 index 00000000..053a6ab6 --- /dev/null +++ b/gui/qfontmetricsf.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QFontMetricsF_NewQFontMetricsF(QtObjectPtr font); +QtObjectPtr QFontMetricsF_NewQFontMetricsF2(QtObjectPtr font, QtObjectPtr paintdevice); +QtObjectPtr QFontMetricsF_NewQFontMetricsF3(QtObjectPtr fontMetrics); +QtObjectPtr QFontMetricsF_NewQFontMetricsF4(QtObjectPtr fm); +int QFontMetricsF_InFont(QtObjectPtr ptr, QtObjectPtr ch); +void QFontMetricsF_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QFontMetricsF_DestroyQFontMetricsF(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qgenericmatrix.cpp b/gui/qgenericmatrix.cpp new file mode 100755 index 00000000..f1928288 --- /dev/null +++ b/gui/qgenericmatrix.cpp @@ -0,0 +1,8 @@ +#include "qgenericmatrix.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/gui/qgenericmatrix.go b/gui/qgenericmatrix.go new file mode 100755 index 00000000..4b18a46d --- /dev/null +++ b/gui/qgenericmatrix.go @@ -0,0 +1,40 @@ +package gui + +//#include "qgenericmatrix.h" +import "C" +import ( + "unsafe" +) + +type QGenericMatrix struct { + ptr unsafe.Pointer +} + +type QGenericMatrixITF interface { + QGenericMatrixPTR() *QGenericMatrix +} + +func (p *QGenericMatrix) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QGenericMatrix) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQGenericMatrix(ptr QGenericMatrixITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGenericMatrixPTR().Pointer() + } + return nil +} + +func QGenericMatrixFromPointer(ptr unsafe.Pointer) *QGenericMatrix { + var n = new(QGenericMatrix) + n.SetPointer(ptr) + return n +} + +func (ptr *QGenericMatrix) QGenericMatrixPTR() *QGenericMatrix { + return ptr +} diff --git a/gui/qgenericmatrix.h b/gui/qgenericmatrix.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/gui/qgenericmatrix.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qgenericplugin.cpp b/gui/qgenericplugin.cpp new file mode 100755 index 00000000..a075b337 --- /dev/null +++ b/gui/qgenericplugin.cpp @@ -0,0 +1,8 @@ +#include "qgenericplugin.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/gui/qgenericplugin.go b/gui/qgenericplugin.go new file mode 100755 index 00000000..753fe7a6 --- /dev/null +++ b/gui/qgenericplugin.go @@ -0,0 +1,38 @@ +package gui + +//#include "qgenericplugin.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGenericPlugin struct { + core.QObject +} + +type QGenericPluginITF interface { + core.QObjectITF + QGenericPluginPTR() *QGenericPlugin +} + +func PointerFromQGenericPlugin(ptr QGenericPluginITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGenericPluginPTR().Pointer() + } + return nil +} + +func QGenericPluginFromPointer(ptr unsafe.Pointer) *QGenericPlugin { + var n = new(QGenericPlugin) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGenericPlugin_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGenericPlugin) QGenericPluginPTR() *QGenericPlugin { + return ptr +} diff --git a/gui/qgenericplugin.h b/gui/qgenericplugin.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/gui/qgenericplugin.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qgenericpluginfactory.cpp b/gui/qgenericpluginfactory.cpp new file mode 100755 index 00000000..36531702 --- /dev/null +++ b/gui/qgenericpluginfactory.cpp @@ -0,0 +1,21 @@ +#include "qgenericpluginfactory.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGenericPluginFactory: public QGenericPluginFactory { +public: +}; + +QtObjectPtr QGenericPluginFactory_QGenericPluginFactory_Create(char* key, char* specification){ + return QGenericPluginFactory::create(QString(key), QString(specification)); +} + +char* QGenericPluginFactory_QGenericPluginFactory_Keys(){ + return QGenericPluginFactory::keys().join("|").toUtf8().data(); +} + diff --git a/gui/qgenericpluginfactory.go b/gui/qgenericpluginfactory.go new file mode 100755 index 00000000..b642b251 --- /dev/null +++ b/gui/qgenericpluginfactory.go @@ -0,0 +1,50 @@ +package gui + +//#include "qgenericpluginfactory.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QGenericPluginFactory struct { + ptr unsafe.Pointer +} + +type QGenericPluginFactoryITF interface { + QGenericPluginFactoryPTR() *QGenericPluginFactory +} + +func (p *QGenericPluginFactory) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QGenericPluginFactory) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQGenericPluginFactory(ptr QGenericPluginFactoryITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGenericPluginFactoryPTR().Pointer() + } + return nil +} + +func QGenericPluginFactoryFromPointer(ptr unsafe.Pointer) *QGenericPluginFactory { + var n = new(QGenericPluginFactory) + n.SetPointer(ptr) + return n +} + +func (ptr *QGenericPluginFactory) QGenericPluginFactoryPTR() *QGenericPluginFactory { + return ptr +} + +func QGenericPluginFactory_Create(key string, specification string) *core.QObject { + return core.QObjectFromPointer(unsafe.Pointer(C.QGenericPluginFactory_QGenericPluginFactory_Create(C.CString(key), C.CString(specification)))) +} + +func QGenericPluginFactory_Keys() []string { + return strings.Split(C.GoString(C.QGenericPluginFactory_QGenericPluginFactory_Keys()), "|") +} diff --git a/gui/qgenericpluginfactory.h b/gui/qgenericpluginfactory.h new file mode 100755 index 00000000..ced01299 --- /dev/null +++ b/gui/qgenericpluginfactory.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGenericPluginFactory_QGenericPluginFactory_Create(char* key, char* specification); +char* QGenericPluginFactory_QGenericPluginFactory_Keys(); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qglyphrun.cpp b/gui/qglyphrun.cpp new file mode 100755 index 00000000..07c27623 --- /dev/null +++ b/gui/qglyphrun.cpp @@ -0,0 +1,91 @@ +#include "qglyphrun.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGlyphRun: public QGlyphRun { +public: +}; + +QtObjectPtr QGlyphRun_NewQGlyphRun(){ + return new QGlyphRun(); +} + +QtObjectPtr QGlyphRun_NewQGlyphRun2(QtObjectPtr other){ + return new QGlyphRun(*static_cast(other)); +} + +void QGlyphRun_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +int QGlyphRun_Flags(QtObjectPtr ptr){ + return static_cast(ptr)->flags(); +} + +int QGlyphRun_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +int QGlyphRun_IsRightToLeft(QtObjectPtr ptr){ + return static_cast(ptr)->isRightToLeft(); +} + +int QGlyphRun_Overline(QtObjectPtr ptr){ + return static_cast(ptr)->overline(); +} + +void QGlyphRun_SetBoundingRect(QtObjectPtr ptr, QtObjectPtr boundingRect){ + static_cast(ptr)->setBoundingRect(*static_cast(boundingRect)); +} + +void QGlyphRun_SetFlag(QtObjectPtr ptr, int flag, int enabled){ + static_cast(ptr)->setFlag(static_cast(flag), enabled != 0); +} + +void QGlyphRun_SetFlags(QtObjectPtr ptr, int flags){ + static_cast(ptr)->setFlags(static_cast(flags)); +} + +void QGlyphRun_SetOverline(QtObjectPtr ptr, int overline){ + static_cast(ptr)->setOverline(overline != 0); +} + +void QGlyphRun_SetRawFont(QtObjectPtr ptr, QtObjectPtr rawFont){ + static_cast(ptr)->setRawFont(*static_cast(rawFont)); +} + +void QGlyphRun_SetRightToLeft(QtObjectPtr ptr, int rightToLeft){ + static_cast(ptr)->setRightToLeft(rightToLeft != 0); +} + +void QGlyphRun_SetStrikeOut(QtObjectPtr ptr, int strikeOut){ + static_cast(ptr)->setStrikeOut(strikeOut != 0); +} + +void QGlyphRun_SetUnderline(QtObjectPtr ptr, int underline){ + static_cast(ptr)->setUnderline(underline != 0); +} + +int QGlyphRun_StrikeOut(QtObjectPtr ptr){ + return static_cast(ptr)->strikeOut(); +} + +void QGlyphRun_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +int QGlyphRun_Underline(QtObjectPtr ptr){ + return static_cast(ptr)->underline(); +} + +void QGlyphRun_DestroyQGlyphRun(QtObjectPtr ptr){ + static_cast(ptr)->~QGlyphRun(); +} + diff --git a/gui/qglyphrun.go b/gui/qglyphrun.go new file mode 100755 index 00000000..984b66ae --- /dev/null +++ b/gui/qglyphrun.go @@ -0,0 +1,169 @@ +package gui + +//#include "qglyphrun.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGlyphRun struct { + ptr unsafe.Pointer +} + +type QGlyphRunITF interface { + QGlyphRunPTR() *QGlyphRun +} + +func (p *QGlyphRun) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QGlyphRun) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQGlyphRun(ptr QGlyphRunITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGlyphRunPTR().Pointer() + } + return nil +} + +func QGlyphRunFromPointer(ptr unsafe.Pointer) *QGlyphRun { + var n = new(QGlyphRun) + n.SetPointer(ptr) + return n +} + +func (ptr *QGlyphRun) QGlyphRunPTR() *QGlyphRun { + return ptr +} + +//QGlyphRun::GlyphRunFlag +type QGlyphRun__GlyphRunFlag int + +var ( + QGlyphRun__Overline = QGlyphRun__GlyphRunFlag(0x01) + QGlyphRun__Underline = QGlyphRun__GlyphRunFlag(0x02) + QGlyphRun__StrikeOut = QGlyphRun__GlyphRunFlag(0x04) + QGlyphRun__RightToLeft = QGlyphRun__GlyphRunFlag(0x08) + QGlyphRun__SplitLigature = QGlyphRun__GlyphRunFlag(0x10) +) + +func NewQGlyphRun() *QGlyphRun { + return QGlyphRunFromPointer(unsafe.Pointer(C.QGlyphRun_NewQGlyphRun())) +} + +func NewQGlyphRun2(other QGlyphRunITF) *QGlyphRun { + return QGlyphRunFromPointer(unsafe.Pointer(C.QGlyphRun_NewQGlyphRun2(C.QtObjectPtr(PointerFromQGlyphRun(other))))) +} + +func (ptr *QGlyphRun) Clear() { + if ptr.Pointer() != nil { + C.QGlyphRun_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QGlyphRun) Flags() QGlyphRun__GlyphRunFlag { + if ptr.Pointer() != nil { + return QGlyphRun__GlyphRunFlag(C.QGlyphRun_Flags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGlyphRun) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QGlyphRun_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGlyphRun) IsRightToLeft() bool { + if ptr.Pointer() != nil { + return C.QGlyphRun_IsRightToLeft(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGlyphRun) Overline() bool { + if ptr.Pointer() != nil { + return C.QGlyphRun_Overline(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGlyphRun) SetBoundingRect(boundingRect core.QRectFITF) { + if ptr.Pointer() != nil { + C.QGlyphRun_SetBoundingRect(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(boundingRect))) + } +} + +func (ptr *QGlyphRun) SetFlag(flag QGlyphRun__GlyphRunFlag, enabled bool) { + if ptr.Pointer() != nil { + C.QGlyphRun_SetFlag(C.QtObjectPtr(ptr.Pointer()), C.int(flag), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QGlyphRun) SetFlags(flags QGlyphRun__GlyphRunFlag) { + if ptr.Pointer() != nil { + C.QGlyphRun_SetFlags(C.QtObjectPtr(ptr.Pointer()), C.int(flags)) + } +} + +func (ptr *QGlyphRun) SetOverline(overline bool) { + if ptr.Pointer() != nil { + C.QGlyphRun_SetOverline(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(overline))) + } +} + +func (ptr *QGlyphRun) SetRawFont(rawFont QRawFontITF) { + if ptr.Pointer() != nil { + C.QGlyphRun_SetRawFont(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQRawFont(rawFont))) + } +} + +func (ptr *QGlyphRun) SetRightToLeft(rightToLeft bool) { + if ptr.Pointer() != nil { + C.QGlyphRun_SetRightToLeft(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(rightToLeft))) + } +} + +func (ptr *QGlyphRun) SetStrikeOut(strikeOut bool) { + if ptr.Pointer() != nil { + C.QGlyphRun_SetStrikeOut(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(strikeOut))) + } +} + +func (ptr *QGlyphRun) SetUnderline(underline bool) { + if ptr.Pointer() != nil { + C.QGlyphRun_SetUnderline(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(underline))) + } +} + +func (ptr *QGlyphRun) StrikeOut() bool { + if ptr.Pointer() != nil { + return C.QGlyphRun_StrikeOut(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGlyphRun) Swap(other QGlyphRunITF) { + if ptr.Pointer() != nil { + C.QGlyphRun_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGlyphRun(other))) + } +} + +func (ptr *QGlyphRun) Underline() bool { + if ptr.Pointer() != nil { + return C.QGlyphRun_Underline(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGlyphRun) DestroyQGlyphRun() { + if ptr.Pointer() != nil { + C.QGlyphRun_DestroyQGlyphRun(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qglyphrun.h b/gui/qglyphrun.h new file mode 100755 index 00000000..9bc6aaf9 --- /dev/null +++ b/gui/qglyphrun.h @@ -0,0 +1,28 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGlyphRun_NewQGlyphRun(); +QtObjectPtr QGlyphRun_NewQGlyphRun2(QtObjectPtr other); +void QGlyphRun_Clear(QtObjectPtr ptr); +int QGlyphRun_Flags(QtObjectPtr ptr); +int QGlyphRun_IsEmpty(QtObjectPtr ptr); +int QGlyphRun_IsRightToLeft(QtObjectPtr ptr); +int QGlyphRun_Overline(QtObjectPtr ptr); +void QGlyphRun_SetBoundingRect(QtObjectPtr ptr, QtObjectPtr boundingRect); +void QGlyphRun_SetFlag(QtObjectPtr ptr, int flag, int enabled); +void QGlyphRun_SetFlags(QtObjectPtr ptr, int flags); +void QGlyphRun_SetOverline(QtObjectPtr ptr, int overline); +void QGlyphRun_SetRawFont(QtObjectPtr ptr, QtObjectPtr rawFont); +void QGlyphRun_SetRightToLeft(QtObjectPtr ptr, int rightToLeft); +void QGlyphRun_SetStrikeOut(QtObjectPtr ptr, int strikeOut); +void QGlyphRun_SetUnderline(QtObjectPtr ptr, int underline); +int QGlyphRun_StrikeOut(QtObjectPtr ptr); +void QGlyphRun_Swap(QtObjectPtr ptr, QtObjectPtr other); +int QGlyphRun_Underline(QtObjectPtr ptr); +void QGlyphRun_DestroyQGlyphRun(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qgradient.cpp b/gui/qgradient.cpp new file mode 100755 index 00000000..1ece236a --- /dev/null +++ b/gui/qgradient.cpp @@ -0,0 +1,32 @@ +#include "qgradient.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGradient: public QGradient { +public: +}; + +int QGradient_CoordinateMode(QtObjectPtr ptr){ + return static_cast(ptr)->coordinateMode(); +} + +void QGradient_SetCoordinateMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setCoordinateMode(static_cast(mode)); +} + +void QGradient_SetSpread(QtObjectPtr ptr, int method){ + static_cast(ptr)->setSpread(static_cast(method)); +} + +int QGradient_Spread(QtObjectPtr ptr){ + return static_cast(ptr)->spread(); +} + +int QGradient_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + diff --git a/gui/qgradient.go b/gui/qgradient.go new file mode 100755 index 00000000..05a1f540 --- /dev/null +++ b/gui/qgradient.go @@ -0,0 +1,101 @@ +package gui + +//#include "qgradient.h" +import "C" +import ( + "unsafe" +) + +type QGradient struct { + ptr unsafe.Pointer +} + +type QGradientITF interface { + QGradientPTR() *QGradient +} + +func (p *QGradient) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QGradient) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQGradient(ptr QGradientITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGradientPTR().Pointer() + } + return nil +} + +func QGradientFromPointer(ptr unsafe.Pointer) *QGradient { + var n = new(QGradient) + n.SetPointer(ptr) + return n +} + +func (ptr *QGradient) QGradientPTR() *QGradient { + return ptr +} + +//QGradient::CoordinateMode +type QGradient__CoordinateMode int + +var ( + QGradient__LogicalMode = QGradient__CoordinateMode(0) + QGradient__StretchToDeviceMode = QGradient__CoordinateMode(1) + QGradient__ObjectBoundingMode = QGradient__CoordinateMode(2) +) + +//QGradient::Spread +type QGradient__Spread int + +var ( + QGradient__PadSpread = QGradient__Spread(0) + QGradient__ReflectSpread = QGradient__Spread(1) + QGradient__RepeatSpread = QGradient__Spread(2) +) + +//QGradient::Type +type QGradient__Type int + +var ( + QGradient__LinearGradient = QGradient__Type(0) + QGradient__RadialGradient = QGradient__Type(1) + QGradient__ConicalGradient = QGradient__Type(2) + QGradient__NoGradient = QGradient__Type(3) +) + +func (ptr *QGradient) CoordinateMode() QGradient__CoordinateMode { + if ptr.Pointer() != nil { + return QGradient__CoordinateMode(C.QGradient_CoordinateMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGradient) SetCoordinateMode(mode QGradient__CoordinateMode) { + if ptr.Pointer() != nil { + C.QGradient_SetCoordinateMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QGradient) SetSpread(method QGradient__Spread) { + if ptr.Pointer() != nil { + C.QGradient_SetSpread(C.QtObjectPtr(ptr.Pointer()), C.int(method)) + } +} + +func (ptr *QGradient) Spread() QGradient__Spread { + if ptr.Pointer() != nil { + return QGradient__Spread(C.QGradient_Spread(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGradient) Type() QGradient__Type { + if ptr.Pointer() != nil { + return QGradient__Type(C.QGradient_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/gui/qgradient.h b/gui/qgradient.h new file mode 100755 index 00000000..88660f03 --- /dev/null +++ b/gui/qgradient.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QGradient_CoordinateMode(QtObjectPtr ptr); +void QGradient_SetCoordinateMode(QtObjectPtr ptr, int mode); +void QGradient_SetSpread(QtObjectPtr ptr, int method); +int QGradient_Spread(QtObjectPtr ptr); +int QGradient_Type(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qguiapplication.cpp b/gui/qguiapplication.cpp new file mode 100755 index 00000000..bb7be638 --- /dev/null +++ b/gui/qguiapplication.cpp @@ -0,0 +1,249 @@ +#include "qguiapplication.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGuiApplication: public QGuiApplication { +public: +void Signal_ApplicationStateChanged(Qt::ApplicationState state){callbackQGuiApplicationApplicationStateChanged(this->objectName().toUtf8().data(), state);}; +void Signal_FocusObjectChanged(QObject * focusObject){callbackQGuiApplicationFocusObjectChanged(this->objectName().toUtf8().data(), focusObject);}; +void Signal_FocusWindowChanged(QWindow * focusWindow){callbackQGuiApplicationFocusWindowChanged(this->objectName().toUtf8().data(), focusWindow);}; +void Signal_FontDatabaseChanged(){callbackQGuiApplicationFontDatabaseChanged(this->objectName().toUtf8().data());}; +void Signal_LastWindowClosed(){callbackQGuiApplicationLastWindowClosed(this->objectName().toUtf8().data());}; +void Signal_LayoutDirectionChanged(Qt::LayoutDirection direction){callbackQGuiApplicationLayoutDirectionChanged(this->objectName().toUtf8().data(), direction);}; +void Signal_ScreenAdded(QScreen * screen){callbackQGuiApplicationScreenAdded(this->objectName().toUtf8().data(), screen);}; +void Signal_ScreenRemoved(QScreen * screen){callbackQGuiApplicationScreenRemoved(this->objectName().toUtf8().data(), screen);}; +}; + +char* QGuiApplication_QGuiApplication_ApplicationDisplayName(){ + return QGuiApplication::applicationDisplayName().toUtf8().data(); +} + +int QGuiApplication_QGuiApplication_ApplicationState(){ + return QGuiApplication::applicationState(); +} + +int QGuiApplication_IsSavingSession(QtObjectPtr ptr){ + return static_cast(ptr)->isSavingSession(); +} + +int QGuiApplication_IsSessionRestored(QtObjectPtr ptr){ + return static_cast(ptr)->isSessionRestored(); +} + +int QGuiApplication_QGuiApplication_LayoutDirection(){ + return QGuiApplication::layoutDirection(); +} + +QtObjectPtr QGuiApplication_QGuiApplication_OverrideCursor(){ + return QGuiApplication::overrideCursor(); +} + +char* QGuiApplication_QGuiApplication_PlatformName(){ + return QGuiApplication::platformName().toUtf8().data(); +} + +int QGuiApplication_QGuiApplication_QueryKeyboardModifiers(){ + return QGuiApplication::queryKeyboardModifiers(); +} + +int QGuiApplication_QGuiApplication_QuitOnLastWindowClosed(){ + return QGuiApplication::quitOnLastWindowClosed(); +} + +void QGuiApplication_QGuiApplication_RestoreOverrideCursor(){ + QGuiApplication::restoreOverrideCursor(); +} + +char* QGuiApplication_SessionId(QtObjectPtr ptr){ + return static_cast(ptr)->sessionId().toUtf8().data(); +} + +char* QGuiApplication_SessionKey(QtObjectPtr ptr){ + return static_cast(ptr)->sessionKey().toUtf8().data(); +} + +void QGuiApplication_QGuiApplication_SetApplicationDisplayName(char* name){ + QGuiApplication::setApplicationDisplayName(QString(name)); +} + +void QGuiApplication_QGuiApplication_SetLayoutDirection(int direction){ + QGuiApplication::setLayoutDirection(static_cast(direction)); +} + +void QGuiApplication_QGuiApplication_SetOverrideCursor(QtObjectPtr cursor){ + QGuiApplication::setOverrideCursor(*static_cast(cursor)); +} + +void QGuiApplication_QGuiApplication_SetQuitOnLastWindowClosed(int quit){ + QGuiApplication::setQuitOnLastWindowClosed(quit != 0); +} + +void QGuiApplication_QGuiApplication_SetWindowIcon(QtObjectPtr icon){ + QGuiApplication::setWindowIcon(*static_cast(icon)); +} + +QtObjectPtr QGuiApplication_NewQGuiApplication(int argc, char* argv){ + return new QGuiApplication(argc, &argv); +} + +void QGuiApplication_ConnectApplicationStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGuiApplication::applicationStateChanged), static_cast(ptr), static_cast(&MyQGuiApplication::Signal_ApplicationStateChanged));; +} + +void QGuiApplication_DisconnectApplicationStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGuiApplication::applicationStateChanged), static_cast(ptr), static_cast(&MyQGuiApplication::Signal_ApplicationStateChanged));; +} + +void QGuiApplication_QGuiApplication_ChangeOverrideCursor(QtObjectPtr cursor){ + QGuiApplication::changeOverrideCursor(*static_cast(cursor)); +} + +QtObjectPtr QGuiApplication_QGuiApplication_Clipboard(){ + return QGuiApplication::clipboard(); +} + +int QGuiApplication_QGuiApplication_DesktopSettingsAware(){ + return QGuiApplication::desktopSettingsAware(); +} + +int QGuiApplication_QGuiApplication_Exec(){ + return QGuiApplication::exec(); +} + +QtObjectPtr QGuiApplication_QGuiApplication_FocusObject(){ + return QGuiApplication::focusObject(); +} + +void QGuiApplication_ConnectFocusObjectChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGuiApplication::focusObjectChanged), static_cast(ptr), static_cast(&MyQGuiApplication::Signal_FocusObjectChanged));; +} + +void QGuiApplication_DisconnectFocusObjectChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGuiApplication::focusObjectChanged), static_cast(ptr), static_cast(&MyQGuiApplication::Signal_FocusObjectChanged));; +} + +QtObjectPtr QGuiApplication_QGuiApplication_FocusWindow(){ + return QGuiApplication::focusWindow(); +} + +void QGuiApplication_ConnectFocusWindowChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGuiApplication::focusWindowChanged), static_cast(ptr), static_cast(&MyQGuiApplication::Signal_FocusWindowChanged));; +} + +void QGuiApplication_DisconnectFocusWindowChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGuiApplication::focusWindowChanged), static_cast(ptr), static_cast(&MyQGuiApplication::Signal_FocusWindowChanged));; +} + +void QGuiApplication_ConnectFontDatabaseChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGuiApplication::fontDatabaseChanged), static_cast(ptr), static_cast(&MyQGuiApplication::Signal_FontDatabaseChanged));; +} + +void QGuiApplication_DisconnectFontDatabaseChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGuiApplication::fontDatabaseChanged), static_cast(ptr), static_cast(&MyQGuiApplication::Signal_FontDatabaseChanged));; +} + +QtObjectPtr QGuiApplication_QGuiApplication_InputMethod(){ + return QGuiApplication::inputMethod(); +} + +int QGuiApplication_QGuiApplication_IsLeftToRight(){ + return QGuiApplication::isLeftToRight(); +} + +int QGuiApplication_QGuiApplication_IsRightToLeft(){ + return QGuiApplication::isRightToLeft(); +} + +int QGuiApplication_QGuiApplication_KeyboardModifiers(){ + return QGuiApplication::keyboardModifiers(); +} + +void QGuiApplication_ConnectLastWindowClosed(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGuiApplication::lastWindowClosed), static_cast(ptr), static_cast(&MyQGuiApplication::Signal_LastWindowClosed));; +} + +void QGuiApplication_DisconnectLastWindowClosed(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGuiApplication::lastWindowClosed), static_cast(ptr), static_cast(&MyQGuiApplication::Signal_LastWindowClosed));; +} + +void QGuiApplication_ConnectLayoutDirectionChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGuiApplication::layoutDirectionChanged), static_cast(ptr), static_cast(&MyQGuiApplication::Signal_LayoutDirectionChanged));; +} + +void QGuiApplication_DisconnectLayoutDirectionChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGuiApplication::layoutDirectionChanged), static_cast(ptr), static_cast(&MyQGuiApplication::Signal_LayoutDirectionChanged));; +} + +QtObjectPtr QGuiApplication_QGuiApplication_ModalWindow(){ + return QGuiApplication::modalWindow(); +} + +int QGuiApplication_QGuiApplication_MouseButtons(){ + return QGuiApplication::mouseButtons(); +} + +int QGuiApplication_Notify(QtObjectPtr ptr, QtObjectPtr object, QtObjectPtr event){ + return static_cast(ptr)->notify(static_cast(object), static_cast(event)); +} + +QtObjectPtr QGuiApplication_QGuiApplication_PrimaryScreen(){ + return QGuiApplication::primaryScreen(); +} + +void QGuiApplication_ConnectScreenAdded(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGuiApplication::screenAdded), static_cast(ptr), static_cast(&MyQGuiApplication::Signal_ScreenAdded));; +} + +void QGuiApplication_DisconnectScreenAdded(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGuiApplication::screenAdded), static_cast(ptr), static_cast(&MyQGuiApplication::Signal_ScreenAdded));; +} + +void QGuiApplication_ConnectScreenRemoved(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGuiApplication::screenRemoved), static_cast(ptr), static_cast(&MyQGuiApplication::Signal_ScreenRemoved));; +} + +void QGuiApplication_DisconnectScreenRemoved(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGuiApplication::screenRemoved), static_cast(ptr), static_cast(&MyQGuiApplication::Signal_ScreenRemoved));; +} + +void QGuiApplication_QGuiApplication_SetDesktopSettingsAware(int on){ + QGuiApplication::setDesktopSettingsAware(on != 0); +} + +void QGuiApplication_QGuiApplication_SetFont(QtObjectPtr font){ + QGuiApplication::setFont(*static_cast(font)); +} + +void QGuiApplication_QGuiApplication_SetPalette(QtObjectPtr pal){ + QGuiApplication::setPalette(*static_cast(pal)); +} + +QtObjectPtr QGuiApplication_QGuiApplication_StyleHints(){ + return QGuiApplication::styleHints(); +} + +void QGuiApplication_QGuiApplication_Sync(){ + QGuiApplication::sync(); +} + +QtObjectPtr QGuiApplication_QGuiApplication_TopLevelAt(QtObjectPtr pos){ + return QGuiApplication::topLevelAt(*static_cast(pos)); +} + +void QGuiApplication_DestroyQGuiApplication(QtObjectPtr ptr){ + static_cast(ptr)->~QGuiApplication(); +} + diff --git a/gui/qguiapplication.go b/gui/qguiapplication.go new file mode 100755 index 00000000..68f082f3 --- /dev/null +++ b/gui/qguiapplication.go @@ -0,0 +1,364 @@ +package gui + +//#include "qguiapplication.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGuiApplication struct { + core.QCoreApplication +} + +type QGuiApplicationITF interface { + core.QCoreApplicationITF + QGuiApplicationPTR() *QGuiApplication +} + +func PointerFromQGuiApplication(ptr QGuiApplicationITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGuiApplicationPTR().Pointer() + } + return nil +} + +func QGuiApplicationFromPointer(ptr unsafe.Pointer) *QGuiApplication { + var n = new(QGuiApplication) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGuiApplication_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGuiApplication) QGuiApplicationPTR() *QGuiApplication { + return ptr +} + +func QGuiApplication_ApplicationDisplayName() string { + return C.GoString(C.QGuiApplication_QGuiApplication_ApplicationDisplayName()) +} + +func QGuiApplication_ApplicationState() core.Qt__ApplicationState { + return core.Qt__ApplicationState(C.QGuiApplication_QGuiApplication_ApplicationState()) +} + +func (ptr *QGuiApplication) IsSavingSession() bool { + if ptr.Pointer() != nil { + return C.QGuiApplication_IsSavingSession(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGuiApplication) IsSessionRestored() bool { + if ptr.Pointer() != nil { + return C.QGuiApplication_IsSessionRestored(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func QGuiApplication_LayoutDirection() core.Qt__LayoutDirection { + return core.Qt__LayoutDirection(C.QGuiApplication_QGuiApplication_LayoutDirection()) +} + +func QGuiApplication_OverrideCursor() *QCursor { + return QCursorFromPointer(unsafe.Pointer(C.QGuiApplication_QGuiApplication_OverrideCursor())) +} + +func QGuiApplication_PlatformName() string { + return C.GoString(C.QGuiApplication_QGuiApplication_PlatformName()) +} + +func QGuiApplication_QueryKeyboardModifiers() core.Qt__KeyboardModifier { + return core.Qt__KeyboardModifier(C.QGuiApplication_QGuiApplication_QueryKeyboardModifiers()) +} + +func QGuiApplication_QuitOnLastWindowClosed() bool { + return C.QGuiApplication_QGuiApplication_QuitOnLastWindowClosed() != 0 +} + +func QGuiApplication_RestoreOverrideCursor() { + C.QGuiApplication_QGuiApplication_RestoreOverrideCursor() +} + +func (ptr *QGuiApplication) SessionId() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGuiApplication_SessionId(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QGuiApplication) SessionKey() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGuiApplication_SessionKey(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func QGuiApplication_SetApplicationDisplayName(name string) { + C.QGuiApplication_QGuiApplication_SetApplicationDisplayName(C.CString(name)) +} + +func QGuiApplication_SetLayoutDirection(direction core.Qt__LayoutDirection) { + C.QGuiApplication_QGuiApplication_SetLayoutDirection(C.int(direction)) +} + +func QGuiApplication_SetOverrideCursor(cursor QCursorITF) { + C.QGuiApplication_QGuiApplication_SetOverrideCursor(C.QtObjectPtr(PointerFromQCursor(cursor))) +} + +func QGuiApplication_SetQuitOnLastWindowClosed(quit bool) { + C.QGuiApplication_QGuiApplication_SetQuitOnLastWindowClosed(C.int(qt.GoBoolToInt(quit))) +} + +func QGuiApplication_SetWindowIcon(icon QIconITF) { + C.QGuiApplication_QGuiApplication_SetWindowIcon(C.QtObjectPtr(PointerFromQIcon(icon))) +} + +func NewQGuiApplication(argc int, argv string) *QGuiApplication { + return QGuiApplicationFromPointer(unsafe.Pointer(C.QGuiApplication_NewQGuiApplication(C.int(argc), C.CString(argv)))) +} + +func (ptr *QGuiApplication) ConnectApplicationStateChanged(f func(state core.Qt__ApplicationState)) { + if ptr.Pointer() != nil { + C.QGuiApplication_ConnectApplicationStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "applicationStateChanged", f) + } +} + +func (ptr *QGuiApplication) DisconnectApplicationStateChanged() { + if ptr.Pointer() != nil { + C.QGuiApplication_DisconnectApplicationStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "applicationStateChanged") + } +} + +//export callbackQGuiApplicationApplicationStateChanged +func callbackQGuiApplicationApplicationStateChanged(ptrName *C.char, state C.int) { + qt.GetSignal(C.GoString(ptrName), "applicationStateChanged").(func(core.Qt__ApplicationState))(core.Qt__ApplicationState(state)) +} + +func QGuiApplication_ChangeOverrideCursor(cursor QCursorITF) { + C.QGuiApplication_QGuiApplication_ChangeOverrideCursor(C.QtObjectPtr(PointerFromQCursor(cursor))) +} + +func QGuiApplication_Clipboard() *QClipboard { + return QClipboardFromPointer(unsafe.Pointer(C.QGuiApplication_QGuiApplication_Clipboard())) +} + +func QGuiApplication_DesktopSettingsAware() bool { + return C.QGuiApplication_QGuiApplication_DesktopSettingsAware() != 0 +} + +func QGuiApplication_Exec() int { + return int(C.QGuiApplication_QGuiApplication_Exec()) +} + +func QGuiApplication_FocusObject() *core.QObject { + return core.QObjectFromPointer(unsafe.Pointer(C.QGuiApplication_QGuiApplication_FocusObject())) +} + +func (ptr *QGuiApplication) ConnectFocusObjectChanged(f func(focusObject core.QObjectITF)) { + if ptr.Pointer() != nil { + C.QGuiApplication_ConnectFocusObjectChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "focusObjectChanged", f) + } +} + +func (ptr *QGuiApplication) DisconnectFocusObjectChanged() { + if ptr.Pointer() != nil { + C.QGuiApplication_DisconnectFocusObjectChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "focusObjectChanged") + } +} + +//export callbackQGuiApplicationFocusObjectChanged +func callbackQGuiApplicationFocusObjectChanged(ptrName *C.char, focusObject unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "focusObjectChanged").(func(*core.QObject))(core.QObjectFromPointer(focusObject)) +} + +func QGuiApplication_FocusWindow() *QWindow { + return QWindowFromPointer(unsafe.Pointer(C.QGuiApplication_QGuiApplication_FocusWindow())) +} + +func (ptr *QGuiApplication) ConnectFocusWindowChanged(f func(focusWindow QWindowITF)) { + if ptr.Pointer() != nil { + C.QGuiApplication_ConnectFocusWindowChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "focusWindowChanged", f) + } +} + +func (ptr *QGuiApplication) DisconnectFocusWindowChanged() { + if ptr.Pointer() != nil { + C.QGuiApplication_DisconnectFocusWindowChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "focusWindowChanged") + } +} + +//export callbackQGuiApplicationFocusWindowChanged +func callbackQGuiApplicationFocusWindowChanged(ptrName *C.char, focusWindow unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "focusWindowChanged").(func(*QWindow))(QWindowFromPointer(focusWindow)) +} + +func (ptr *QGuiApplication) ConnectFontDatabaseChanged(f func()) { + if ptr.Pointer() != nil { + C.QGuiApplication_ConnectFontDatabaseChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "fontDatabaseChanged", f) + } +} + +func (ptr *QGuiApplication) DisconnectFontDatabaseChanged() { + if ptr.Pointer() != nil { + C.QGuiApplication_DisconnectFontDatabaseChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "fontDatabaseChanged") + } +} + +//export callbackQGuiApplicationFontDatabaseChanged +func callbackQGuiApplicationFontDatabaseChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "fontDatabaseChanged").(func())() +} + +func QGuiApplication_InputMethod() *QInputMethod { + return QInputMethodFromPointer(unsafe.Pointer(C.QGuiApplication_QGuiApplication_InputMethod())) +} + +func QGuiApplication_IsLeftToRight() bool { + return C.QGuiApplication_QGuiApplication_IsLeftToRight() != 0 +} + +func QGuiApplication_IsRightToLeft() bool { + return C.QGuiApplication_QGuiApplication_IsRightToLeft() != 0 +} + +func QGuiApplication_KeyboardModifiers() core.Qt__KeyboardModifier { + return core.Qt__KeyboardModifier(C.QGuiApplication_QGuiApplication_KeyboardModifiers()) +} + +func (ptr *QGuiApplication) ConnectLastWindowClosed(f func()) { + if ptr.Pointer() != nil { + C.QGuiApplication_ConnectLastWindowClosed(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "lastWindowClosed", f) + } +} + +func (ptr *QGuiApplication) DisconnectLastWindowClosed() { + if ptr.Pointer() != nil { + C.QGuiApplication_DisconnectLastWindowClosed(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "lastWindowClosed") + } +} + +//export callbackQGuiApplicationLastWindowClosed +func callbackQGuiApplicationLastWindowClosed(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "lastWindowClosed").(func())() +} + +func (ptr *QGuiApplication) ConnectLayoutDirectionChanged(f func(direction core.Qt__LayoutDirection)) { + if ptr.Pointer() != nil { + C.QGuiApplication_ConnectLayoutDirectionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "layoutDirectionChanged", f) + } +} + +func (ptr *QGuiApplication) DisconnectLayoutDirectionChanged() { + if ptr.Pointer() != nil { + C.QGuiApplication_DisconnectLayoutDirectionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "layoutDirectionChanged") + } +} + +//export callbackQGuiApplicationLayoutDirectionChanged +func callbackQGuiApplicationLayoutDirectionChanged(ptrName *C.char, direction C.int) { + qt.GetSignal(C.GoString(ptrName), "layoutDirectionChanged").(func(core.Qt__LayoutDirection))(core.Qt__LayoutDirection(direction)) +} + +func QGuiApplication_ModalWindow() *QWindow { + return QWindowFromPointer(unsafe.Pointer(C.QGuiApplication_QGuiApplication_ModalWindow())) +} + +func QGuiApplication_MouseButtons() core.Qt__MouseButton { + return core.Qt__MouseButton(C.QGuiApplication_QGuiApplication_MouseButtons()) +} + +func (ptr *QGuiApplication) Notify(object core.QObjectITF, event core.QEventITF) bool { + if ptr.Pointer() != nil { + return C.QGuiApplication_Notify(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(object)), C.QtObjectPtr(core.PointerFromQEvent(event))) != 0 + } + return false +} + +func QGuiApplication_PrimaryScreen() *QScreen { + return QScreenFromPointer(unsafe.Pointer(C.QGuiApplication_QGuiApplication_PrimaryScreen())) +} + +func (ptr *QGuiApplication) ConnectScreenAdded(f func(screen QScreenITF)) { + if ptr.Pointer() != nil { + C.QGuiApplication_ConnectScreenAdded(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "screenAdded", f) + } +} + +func (ptr *QGuiApplication) DisconnectScreenAdded() { + if ptr.Pointer() != nil { + C.QGuiApplication_DisconnectScreenAdded(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "screenAdded") + } +} + +//export callbackQGuiApplicationScreenAdded +func callbackQGuiApplicationScreenAdded(ptrName *C.char, screen unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "screenAdded").(func(*QScreen))(QScreenFromPointer(screen)) +} + +func (ptr *QGuiApplication) ConnectScreenRemoved(f func(screen QScreenITF)) { + if ptr.Pointer() != nil { + C.QGuiApplication_ConnectScreenRemoved(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "screenRemoved", f) + } +} + +func (ptr *QGuiApplication) DisconnectScreenRemoved() { + if ptr.Pointer() != nil { + C.QGuiApplication_DisconnectScreenRemoved(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "screenRemoved") + } +} + +//export callbackQGuiApplicationScreenRemoved +func callbackQGuiApplicationScreenRemoved(ptrName *C.char, screen unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "screenRemoved").(func(*QScreen))(QScreenFromPointer(screen)) +} + +func QGuiApplication_SetDesktopSettingsAware(on bool) { + C.QGuiApplication_QGuiApplication_SetDesktopSettingsAware(C.int(qt.GoBoolToInt(on))) +} + +func QGuiApplication_SetFont(font QFontITF) { + C.QGuiApplication_QGuiApplication_SetFont(C.QtObjectPtr(PointerFromQFont(font))) +} + +func QGuiApplication_SetPalette(pal QPaletteITF) { + C.QGuiApplication_QGuiApplication_SetPalette(C.QtObjectPtr(PointerFromQPalette(pal))) +} + +func QGuiApplication_StyleHints() *QStyleHints { + return QStyleHintsFromPointer(unsafe.Pointer(C.QGuiApplication_QGuiApplication_StyleHints())) +} + +func QGuiApplication_Sync() { + C.QGuiApplication_QGuiApplication_Sync() +} + +func QGuiApplication_TopLevelAt(pos core.QPointITF) *QWindow { + return QWindowFromPointer(unsafe.Pointer(C.QGuiApplication_QGuiApplication_TopLevelAt(C.QtObjectPtr(core.PointerFromQPoint(pos))))) +} + +func (ptr *QGuiApplication) DestroyQGuiApplication() { + if ptr.Pointer() != nil { + C.QGuiApplication_DestroyQGuiApplication(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/gui/qguiapplication.h b/gui/qguiapplication.h new file mode 100755 index 00000000..18539559 --- /dev/null +++ b/gui/qguiapplication.h @@ -0,0 +1,64 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QGuiApplication_QGuiApplication_ApplicationDisplayName(); +int QGuiApplication_QGuiApplication_ApplicationState(); +int QGuiApplication_IsSavingSession(QtObjectPtr ptr); +int QGuiApplication_IsSessionRestored(QtObjectPtr ptr); +int QGuiApplication_QGuiApplication_LayoutDirection(); +QtObjectPtr QGuiApplication_QGuiApplication_OverrideCursor(); +char* QGuiApplication_QGuiApplication_PlatformName(); +int QGuiApplication_QGuiApplication_QueryKeyboardModifiers(); +int QGuiApplication_QGuiApplication_QuitOnLastWindowClosed(); +void QGuiApplication_QGuiApplication_RestoreOverrideCursor(); +char* QGuiApplication_SessionId(QtObjectPtr ptr); +char* QGuiApplication_SessionKey(QtObjectPtr ptr); +void QGuiApplication_QGuiApplication_SetApplicationDisplayName(char* name); +void QGuiApplication_QGuiApplication_SetLayoutDirection(int direction); +void QGuiApplication_QGuiApplication_SetOverrideCursor(QtObjectPtr cursor); +void QGuiApplication_QGuiApplication_SetQuitOnLastWindowClosed(int quit); +void QGuiApplication_QGuiApplication_SetWindowIcon(QtObjectPtr icon); +QtObjectPtr QGuiApplication_NewQGuiApplication(int argc, char* argv); +void QGuiApplication_ConnectApplicationStateChanged(QtObjectPtr ptr); +void QGuiApplication_DisconnectApplicationStateChanged(QtObjectPtr ptr); +void QGuiApplication_QGuiApplication_ChangeOverrideCursor(QtObjectPtr cursor); +QtObjectPtr QGuiApplication_QGuiApplication_Clipboard(); +int QGuiApplication_QGuiApplication_DesktopSettingsAware(); +int QGuiApplication_QGuiApplication_Exec(); +QtObjectPtr QGuiApplication_QGuiApplication_FocusObject(); +void QGuiApplication_ConnectFocusObjectChanged(QtObjectPtr ptr); +void QGuiApplication_DisconnectFocusObjectChanged(QtObjectPtr ptr); +QtObjectPtr QGuiApplication_QGuiApplication_FocusWindow(); +void QGuiApplication_ConnectFocusWindowChanged(QtObjectPtr ptr); +void QGuiApplication_DisconnectFocusWindowChanged(QtObjectPtr ptr); +void QGuiApplication_ConnectFontDatabaseChanged(QtObjectPtr ptr); +void QGuiApplication_DisconnectFontDatabaseChanged(QtObjectPtr ptr); +QtObjectPtr QGuiApplication_QGuiApplication_InputMethod(); +int QGuiApplication_QGuiApplication_IsLeftToRight(); +int QGuiApplication_QGuiApplication_IsRightToLeft(); +int QGuiApplication_QGuiApplication_KeyboardModifiers(); +void QGuiApplication_ConnectLastWindowClosed(QtObjectPtr ptr); +void QGuiApplication_DisconnectLastWindowClosed(QtObjectPtr ptr); +void QGuiApplication_ConnectLayoutDirectionChanged(QtObjectPtr ptr); +void QGuiApplication_DisconnectLayoutDirectionChanged(QtObjectPtr ptr); +QtObjectPtr QGuiApplication_QGuiApplication_ModalWindow(); +int QGuiApplication_QGuiApplication_MouseButtons(); +int QGuiApplication_Notify(QtObjectPtr ptr, QtObjectPtr object, QtObjectPtr event); +QtObjectPtr QGuiApplication_QGuiApplication_PrimaryScreen(); +void QGuiApplication_ConnectScreenAdded(QtObjectPtr ptr); +void QGuiApplication_DisconnectScreenAdded(QtObjectPtr ptr); +void QGuiApplication_ConnectScreenRemoved(QtObjectPtr ptr); +void QGuiApplication_DisconnectScreenRemoved(QtObjectPtr ptr); +void QGuiApplication_QGuiApplication_SetDesktopSettingsAware(int on); +void QGuiApplication_QGuiApplication_SetFont(QtObjectPtr font); +void QGuiApplication_QGuiApplication_SetPalette(QtObjectPtr pal); +QtObjectPtr QGuiApplication_QGuiApplication_StyleHints(); +void QGuiApplication_QGuiApplication_Sync(); +QtObjectPtr QGuiApplication_QGuiApplication_TopLevelAt(QtObjectPtr pos); +void QGuiApplication_DestroyQGuiApplication(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qhelpevent.cpp b/gui/qhelpevent.cpp new file mode 100755 index 00000000..3f00d21e --- /dev/null +++ b/gui/qhelpevent.cpp @@ -0,0 +1,34 @@ +#include "qhelpevent.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQHelpEvent: public QHelpEvent { +public: +}; + +QtObjectPtr QHelpEvent_NewQHelpEvent(int ty, QtObjectPtr pos, QtObjectPtr globalPos){ + return new QHelpEvent(static_cast(ty), *static_cast(pos), *static_cast(globalPos)); +} + +int QHelpEvent_GlobalX(QtObjectPtr ptr){ + return static_cast(ptr)->globalX(); +} + +int QHelpEvent_GlobalY(QtObjectPtr ptr){ + return static_cast(ptr)->globalY(); +} + +int QHelpEvent_X(QtObjectPtr ptr){ + return static_cast(ptr)->x(); +} + +int QHelpEvent_Y(QtObjectPtr ptr){ + return static_cast(ptr)->y(); +} + diff --git a/gui/qhelpevent.go b/gui/qhelpevent.go new file mode 100755 index 00000000..3377976f --- /dev/null +++ b/gui/qhelpevent.go @@ -0,0 +1,66 @@ +package gui + +//#include "qhelpevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QHelpEvent struct { + core.QEvent +} + +type QHelpEventITF interface { + core.QEventITF + QHelpEventPTR() *QHelpEvent +} + +func PointerFromQHelpEvent(ptr QHelpEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QHelpEventPTR().Pointer() + } + return nil +} + +func QHelpEventFromPointer(ptr unsafe.Pointer) *QHelpEvent { + var n = new(QHelpEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QHelpEvent) QHelpEventPTR() *QHelpEvent { + return ptr +} + +func NewQHelpEvent(ty core.QEvent__Type, pos core.QPointITF, globalPos core.QPointITF) *QHelpEvent { + return QHelpEventFromPointer(unsafe.Pointer(C.QHelpEvent_NewQHelpEvent(C.int(ty), C.QtObjectPtr(core.PointerFromQPoint(pos)), C.QtObjectPtr(core.PointerFromQPoint(globalPos))))) +} + +func (ptr *QHelpEvent) GlobalX() int { + if ptr.Pointer() != nil { + return int(C.QHelpEvent_GlobalX(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QHelpEvent) GlobalY() int { + if ptr.Pointer() != nil { + return int(C.QHelpEvent_GlobalY(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QHelpEvent) X() int { + if ptr.Pointer() != nil { + return int(C.QHelpEvent_X(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QHelpEvent) Y() int { + if ptr.Pointer() != nil { + return int(C.QHelpEvent_Y(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/gui/qhelpevent.h b/gui/qhelpevent.h new file mode 100755 index 00000000..c1508ec4 --- /dev/null +++ b/gui/qhelpevent.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QHelpEvent_NewQHelpEvent(int ty, QtObjectPtr pos, QtObjectPtr globalPos); +int QHelpEvent_GlobalX(QtObjectPtr ptr); +int QHelpEvent_GlobalY(QtObjectPtr ptr); +int QHelpEvent_X(QtObjectPtr ptr); +int QHelpEvent_Y(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qhideevent.cpp b/gui/qhideevent.cpp new file mode 100755 index 00000000..b80872ec --- /dev/null +++ b/gui/qhideevent.cpp @@ -0,0 +1,16 @@ +#include "qhideevent.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQHideEvent: public QHideEvent { +public: +}; + +QtObjectPtr QHideEvent_NewQHideEvent(){ + return new QHideEvent(); +} + diff --git a/gui/qhideevent.go b/gui/qhideevent.go new file mode 100755 index 00000000..e39a0de2 --- /dev/null +++ b/gui/qhideevent.go @@ -0,0 +1,38 @@ +package gui + +//#include "qhideevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QHideEvent struct { + core.QEvent +} + +type QHideEventITF interface { + core.QEventITF + QHideEventPTR() *QHideEvent +} + +func PointerFromQHideEvent(ptr QHideEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QHideEventPTR().Pointer() + } + return nil +} + +func QHideEventFromPointer(ptr unsafe.Pointer) *QHideEvent { + var n = new(QHideEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QHideEvent) QHideEventPTR() *QHideEvent { + return ptr +} + +func NewQHideEvent() *QHideEvent { + return QHideEventFromPointer(unsafe.Pointer(C.QHideEvent_NewQHideEvent())) +} diff --git a/gui/qhideevent.h b/gui/qhideevent.h new file mode 100755 index 00000000..8015eaf2 --- /dev/null +++ b/gui/qhideevent.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QHideEvent_NewQHideEvent(); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qhoverevent.cpp b/gui/qhoverevent.cpp new file mode 100755 index 00000000..df5f21c3 --- /dev/null +++ b/gui/qhoverevent.cpp @@ -0,0 +1,19 @@ +#include "qhoverevent.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQHoverEvent: public QHoverEvent { +public: +}; + +QtObjectPtr QHoverEvent_NewQHoverEvent(int ty, QtObjectPtr pos, QtObjectPtr oldPos, int modifiers){ + return new QHoverEvent(static_cast(ty), *static_cast(pos), *static_cast(oldPos), static_cast(modifiers)); +} + diff --git a/gui/qhoverevent.go b/gui/qhoverevent.go new file mode 100755 index 00000000..13759701 --- /dev/null +++ b/gui/qhoverevent.go @@ -0,0 +1,38 @@ +package gui + +//#include "qhoverevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QHoverEvent struct { + QInputEvent +} + +type QHoverEventITF interface { + QInputEventITF + QHoverEventPTR() *QHoverEvent +} + +func PointerFromQHoverEvent(ptr QHoverEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QHoverEventPTR().Pointer() + } + return nil +} + +func QHoverEventFromPointer(ptr unsafe.Pointer) *QHoverEvent { + var n = new(QHoverEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QHoverEvent) QHoverEventPTR() *QHoverEvent { + return ptr +} + +func NewQHoverEvent(ty core.QEvent__Type, pos core.QPointFITF, oldPos core.QPointFITF, modifiers core.Qt__KeyboardModifier) *QHoverEvent { + return QHoverEventFromPointer(unsafe.Pointer(C.QHoverEvent_NewQHoverEvent(C.int(ty), C.QtObjectPtr(core.PointerFromQPointF(pos)), C.QtObjectPtr(core.PointerFromQPointF(oldPos)), C.int(modifiers)))) +} diff --git a/gui/qhoverevent.h b/gui/qhoverevent.h new file mode 100755 index 00000000..4f07b5fd --- /dev/null +++ b/gui/qhoverevent.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QHoverEvent_NewQHoverEvent(int ty, QtObjectPtr pos, QtObjectPtr oldPos, int modifiers); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qicon.cpp b/gui/qicon.cpp new file mode 100755 index 00000000..e2f2c05c --- /dev/null +++ b/gui/qicon.cpp @@ -0,0 +1,93 @@ +#include "qicon.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQIcon: public QIcon { +public: +}; + +QtObjectPtr QIcon_NewQIcon(){ + return new QIcon(); +} + +QtObjectPtr QIcon_NewQIcon4(QtObjectPtr other){ + return new QIcon(*static_cast(other)); +} + +QtObjectPtr QIcon_NewQIcon6(QtObjectPtr engine){ + return new QIcon(static_cast(engine)); +} + +QtObjectPtr QIcon_NewQIcon3(QtObjectPtr other){ + return new QIcon(*static_cast(other)); +} + +QtObjectPtr QIcon_NewQIcon2(QtObjectPtr pixmap){ + return new QIcon(*static_cast(pixmap)); +} + +QtObjectPtr QIcon_NewQIcon5(char* fileName){ + return new QIcon(QString(fileName)); +} + +void QIcon_AddFile(QtObjectPtr ptr, char* fileName, QtObjectPtr size, int mode, int state){ + static_cast(ptr)->addFile(QString(fileName), *static_cast(size), static_cast(mode), static_cast(state)); +} + +void QIcon_AddPixmap(QtObjectPtr ptr, QtObjectPtr pixmap, int mode, int state){ + static_cast(ptr)->addPixmap(*static_cast(pixmap), static_cast(mode), static_cast(state)); +} + +int QIcon_QIcon_HasThemeIcon(char* name){ + return QIcon::hasThemeIcon(QString(name)); +} + +int QIcon_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +char* QIcon_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +void QIcon_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr rect, int alignment, int mode, int state){ + static_cast(ptr)->paint(static_cast(painter), *static_cast(rect), static_cast(alignment), static_cast(mode), static_cast(state)); +} + +void QIcon_Paint2(QtObjectPtr ptr, QtObjectPtr painter, int x, int y, int w, int h, int alignment, int mode, int state){ + static_cast(ptr)->paint(static_cast(painter), x, y, w, h, static_cast(alignment), static_cast(mode), static_cast(state)); +} + +void QIcon_QIcon_SetThemeName(char* name){ + QIcon::setThemeName(QString(name)); +} + +void QIcon_QIcon_SetThemeSearchPaths(char* paths){ + QIcon::setThemeSearchPaths(QString(paths).split("|", QString::SkipEmptyParts)); +} + +void QIcon_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +char* QIcon_QIcon_ThemeName(){ + return QIcon::themeName().toUtf8().data(); +} + +char* QIcon_QIcon_ThemeSearchPaths(){ + return QIcon::themeSearchPaths().join("|").toUtf8().data(); +} + +void QIcon_DestroyQIcon(QtObjectPtr ptr){ + static_cast(ptr)->~QIcon(); +} + diff --git a/gui/qicon.go b/gui/qicon.go new file mode 100755 index 00000000..d059820b --- /dev/null +++ b/gui/qicon.go @@ -0,0 +1,154 @@ +package gui + +//#include "qicon.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QIcon struct { + ptr unsafe.Pointer +} + +type QIconITF interface { + QIconPTR() *QIcon +} + +func (p *QIcon) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QIcon) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQIcon(ptr QIconITF) unsafe.Pointer { + if ptr != nil { + return ptr.QIconPTR().Pointer() + } + return nil +} + +func QIconFromPointer(ptr unsafe.Pointer) *QIcon { + var n = new(QIcon) + n.SetPointer(ptr) + return n +} + +func (ptr *QIcon) QIconPTR() *QIcon { + return ptr +} + +//QIcon::Mode +type QIcon__Mode int + +var ( + QIcon__Normal = QIcon__Mode(0) + QIcon__Disabled = QIcon__Mode(1) + QIcon__Active = QIcon__Mode(2) + QIcon__Selected = QIcon__Mode(3) +) + +//QIcon::State +type QIcon__State int + +var ( + QIcon__On = QIcon__State(0) + QIcon__Off = QIcon__State(1) +) + +func NewQIcon() *QIcon { + return QIconFromPointer(unsafe.Pointer(C.QIcon_NewQIcon())) +} + +func NewQIcon4(other QIconITF) *QIcon { + return QIconFromPointer(unsafe.Pointer(C.QIcon_NewQIcon4(C.QtObjectPtr(PointerFromQIcon(other))))) +} + +func NewQIcon6(engine QIconEngineITF) *QIcon { + return QIconFromPointer(unsafe.Pointer(C.QIcon_NewQIcon6(C.QtObjectPtr(PointerFromQIconEngine(engine))))) +} + +func NewQIcon3(other QIconITF) *QIcon { + return QIconFromPointer(unsafe.Pointer(C.QIcon_NewQIcon3(C.QtObjectPtr(PointerFromQIcon(other))))) +} + +func NewQIcon2(pixmap QPixmapITF) *QIcon { + return QIconFromPointer(unsafe.Pointer(C.QIcon_NewQIcon2(C.QtObjectPtr(PointerFromQPixmap(pixmap))))) +} + +func NewQIcon5(fileName string) *QIcon { + return QIconFromPointer(unsafe.Pointer(C.QIcon_NewQIcon5(C.CString(fileName)))) +} + +func (ptr *QIcon) AddFile(fileName string, size core.QSizeITF, mode QIcon__Mode, state QIcon__State) { + if ptr.Pointer() != nil { + C.QIcon_AddFile(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName), C.QtObjectPtr(core.PointerFromQSize(size)), C.int(mode), C.int(state)) + } +} + +func (ptr *QIcon) AddPixmap(pixmap QPixmapITF, mode QIcon__Mode, state QIcon__State) { + if ptr.Pointer() != nil { + C.QIcon_AddPixmap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPixmap(pixmap)), C.int(mode), C.int(state)) + } +} + +func QIcon_HasThemeIcon(name string) bool { + return C.QIcon_QIcon_HasThemeIcon(C.CString(name)) != 0 +} + +func (ptr *QIcon) IsNull() bool { + if ptr.Pointer() != nil { + return C.QIcon_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QIcon) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QIcon_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QIcon) Paint(painter QPainterITF, rect core.QRectITF, alignment core.Qt__AlignmentFlag, mode QIcon__Mode, state QIcon__State) { + if ptr.Pointer() != nil { + C.QIcon_Paint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPainter(painter)), C.QtObjectPtr(core.PointerFromQRect(rect)), C.int(alignment), C.int(mode), C.int(state)) + } +} + +func (ptr *QIcon) Paint2(painter QPainterITF, x int, y int, w int, h int, alignment core.Qt__AlignmentFlag, mode QIcon__Mode, state QIcon__State) { + if ptr.Pointer() != nil { + C.QIcon_Paint2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPainter(painter)), C.int(x), C.int(y), C.int(w), C.int(h), C.int(alignment), C.int(mode), C.int(state)) + } +} + +func QIcon_SetThemeName(name string) { + C.QIcon_QIcon_SetThemeName(C.CString(name)) +} + +func QIcon_SetThemeSearchPaths(paths []string) { + C.QIcon_QIcon_SetThemeSearchPaths(C.CString(strings.Join(paths, "|"))) +} + +func (ptr *QIcon) Swap(other QIconITF) { + if ptr.Pointer() != nil { + C.QIcon_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQIcon(other))) + } +} + +func QIcon_ThemeName() string { + return C.GoString(C.QIcon_QIcon_ThemeName()) +} + +func QIcon_ThemeSearchPaths() []string { + return strings.Split(C.GoString(C.QIcon_QIcon_ThemeSearchPaths()), "|") +} + +func (ptr *QIcon) DestroyQIcon() { + if ptr.Pointer() != nil { + C.QIcon_DestroyQIcon(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qicon.h b/gui/qicon.h new file mode 100755 index 00000000..04214b94 --- /dev/null +++ b/gui/qicon.h @@ -0,0 +1,28 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QIcon_NewQIcon(); +QtObjectPtr QIcon_NewQIcon4(QtObjectPtr other); +QtObjectPtr QIcon_NewQIcon6(QtObjectPtr engine); +QtObjectPtr QIcon_NewQIcon3(QtObjectPtr other); +QtObjectPtr QIcon_NewQIcon2(QtObjectPtr pixmap); +QtObjectPtr QIcon_NewQIcon5(char* fileName); +void QIcon_AddFile(QtObjectPtr ptr, char* fileName, QtObjectPtr size, int mode, int state); +void QIcon_AddPixmap(QtObjectPtr ptr, QtObjectPtr pixmap, int mode, int state); +int QIcon_QIcon_HasThemeIcon(char* name); +int QIcon_IsNull(QtObjectPtr ptr); +char* QIcon_Name(QtObjectPtr ptr); +void QIcon_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr rect, int alignment, int mode, int state); +void QIcon_Paint2(QtObjectPtr ptr, QtObjectPtr painter, int x, int y, int w, int h, int alignment, int mode, int state); +void QIcon_QIcon_SetThemeName(char* name); +void QIcon_QIcon_SetThemeSearchPaths(char* paths); +void QIcon_Swap(QtObjectPtr ptr, QtObjectPtr other); +char* QIcon_QIcon_ThemeName(); +char* QIcon_QIcon_ThemeSearchPaths(); +void QIcon_DestroyQIcon(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qicondragevent.cpp b/gui/qicondragevent.cpp new file mode 100755 index 00000000..1884ae17 --- /dev/null +++ b/gui/qicondragevent.cpp @@ -0,0 +1,17 @@ +#include "qicondragevent.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQIconDragEvent: public QIconDragEvent { +public: +}; + +QtObjectPtr QIconDragEvent_NewQIconDragEvent(){ + return new QIconDragEvent(); +} + diff --git a/gui/qicondragevent.go b/gui/qicondragevent.go new file mode 100755 index 00000000..6fb96158 --- /dev/null +++ b/gui/qicondragevent.go @@ -0,0 +1,38 @@ +package gui + +//#include "qicondragevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QIconDragEvent struct { + core.QEvent +} + +type QIconDragEventITF interface { + core.QEventITF + QIconDragEventPTR() *QIconDragEvent +} + +func PointerFromQIconDragEvent(ptr QIconDragEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QIconDragEventPTR().Pointer() + } + return nil +} + +func QIconDragEventFromPointer(ptr unsafe.Pointer) *QIconDragEvent { + var n = new(QIconDragEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QIconDragEvent) QIconDragEventPTR() *QIconDragEvent { + return ptr +} + +func NewQIconDragEvent() *QIconDragEvent { + return QIconDragEventFromPointer(unsafe.Pointer(C.QIconDragEvent_NewQIconDragEvent())) +} diff --git a/gui/qicondragevent.h b/gui/qicondragevent.h new file mode 100755 index 00000000..6e3bece0 --- /dev/null +++ b/gui/qicondragevent.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QIconDragEvent_NewQIconDragEvent(); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qiconengine.cpp b/gui/qiconengine.cpp new file mode 100755 index 00000000..0d41e29c --- /dev/null +++ b/gui/qiconengine.cpp @@ -0,0 +1,54 @@ +#include "qiconengine.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQIconEngine: public QIconEngine { +public: +}; + +void QIconEngine_AddFile(QtObjectPtr ptr, char* fileName, QtObjectPtr size, int mode, int state){ + static_cast(ptr)->addFile(QString(fileName), *static_cast(size), static_cast(mode), static_cast(state)); +} + +void QIconEngine_AddPixmap(QtObjectPtr ptr, QtObjectPtr pixmap, int mode, int state){ + static_cast(ptr)->addPixmap(*static_cast(pixmap), static_cast(mode), static_cast(state)); +} + +QtObjectPtr QIconEngine_Clone(QtObjectPtr ptr){ + return static_cast(ptr)->clone(); +} + +char* QIconEngine_IconName(QtObjectPtr ptr){ + return static_cast(ptr)->iconName().toUtf8().data(); +} + +char* QIconEngine_Key(QtObjectPtr ptr){ + return static_cast(ptr)->key().toUtf8().data(); +} + +void QIconEngine_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr rect, int mode, int state){ + static_cast(ptr)->paint(static_cast(painter), *static_cast(rect), static_cast(mode), static_cast(state)); +} + +int QIconEngine_Read(QtObjectPtr ptr, QtObjectPtr in){ + return static_cast(ptr)->read(*static_cast(in)); +} + +int QIconEngine_Write(QtObjectPtr ptr, QtObjectPtr out){ + return static_cast(ptr)->write(*static_cast(out)); +} + +void QIconEngine_DestroyQIconEngine(QtObjectPtr ptr){ + static_cast(ptr)->~QIconEngine(); +} + diff --git a/gui/qiconengine.go b/gui/qiconengine.go new file mode 100755 index 00000000..ce66c908 --- /dev/null +++ b/gui/qiconengine.go @@ -0,0 +1,108 @@ +package gui + +//#include "qiconengine.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QIconEngine struct { + ptr unsafe.Pointer +} + +type QIconEngineITF interface { + QIconEnginePTR() *QIconEngine +} + +func (p *QIconEngine) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QIconEngine) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQIconEngine(ptr QIconEngineITF) unsafe.Pointer { + if ptr != nil { + return ptr.QIconEnginePTR().Pointer() + } + return nil +} + +func QIconEngineFromPointer(ptr unsafe.Pointer) *QIconEngine { + var n = new(QIconEngine) + n.SetPointer(ptr) + return n +} + +func (ptr *QIconEngine) QIconEnginePTR() *QIconEngine { + return ptr +} + +//QIconEngine::IconEngineHook +type QIconEngine__IconEngineHook int + +var ( + QIconEngine__AvailableSizesHook = QIconEngine__IconEngineHook(1) + QIconEngine__IconNameHook = QIconEngine__IconEngineHook(2) +) + +func (ptr *QIconEngine) AddFile(fileName string, size core.QSizeITF, mode QIcon__Mode, state QIcon__State) { + if ptr.Pointer() != nil { + C.QIconEngine_AddFile(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName), C.QtObjectPtr(core.PointerFromQSize(size)), C.int(mode), C.int(state)) + } +} + +func (ptr *QIconEngine) AddPixmap(pixmap QPixmapITF, mode QIcon__Mode, state QIcon__State) { + if ptr.Pointer() != nil { + C.QIconEngine_AddPixmap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPixmap(pixmap)), C.int(mode), C.int(state)) + } +} + +func (ptr *QIconEngine) Clone() *QIconEngine { + if ptr.Pointer() != nil { + return QIconEngineFromPointer(unsafe.Pointer(C.QIconEngine_Clone(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QIconEngine) IconName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QIconEngine_IconName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QIconEngine) Key() string { + if ptr.Pointer() != nil { + return C.GoString(C.QIconEngine_Key(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QIconEngine) Paint(painter QPainterITF, rect core.QRectITF, mode QIcon__Mode, state QIcon__State) { + if ptr.Pointer() != nil { + C.QIconEngine_Paint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPainter(painter)), C.QtObjectPtr(core.PointerFromQRect(rect)), C.int(mode), C.int(state)) + } +} + +func (ptr *QIconEngine) Read(in core.QDataStreamITF) bool { + if ptr.Pointer() != nil { + return C.QIconEngine_Read(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDataStream(in))) != 0 + } + return false +} + +func (ptr *QIconEngine) Write(out core.QDataStreamITF) bool { + if ptr.Pointer() != nil { + return C.QIconEngine_Write(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDataStream(out))) != 0 + } + return false +} + +func (ptr *QIconEngine) DestroyQIconEngine() { + if ptr.Pointer() != nil { + C.QIconEngine_DestroyQIconEngine(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qiconengine.h b/gui/qiconengine.h new file mode 100755 index 00000000..26ae9365 --- /dev/null +++ b/gui/qiconengine.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QIconEngine_AddFile(QtObjectPtr ptr, char* fileName, QtObjectPtr size, int mode, int state); +void QIconEngine_AddPixmap(QtObjectPtr ptr, QtObjectPtr pixmap, int mode, int state); +QtObjectPtr QIconEngine_Clone(QtObjectPtr ptr); +char* QIconEngine_IconName(QtObjectPtr ptr); +char* QIconEngine_Key(QtObjectPtr ptr); +void QIconEngine_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr rect, int mode, int state); +int QIconEngine_Read(QtObjectPtr ptr, QtObjectPtr in); +int QIconEngine_Write(QtObjectPtr ptr, QtObjectPtr out); +void QIconEngine_DestroyQIconEngine(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qiconengineplugin.cpp b/gui/qiconengineplugin.cpp new file mode 100755 index 00000000..6703eb16 --- /dev/null +++ b/gui/qiconengineplugin.cpp @@ -0,0 +1,10 @@ +#include "qiconengineplugin.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/gui/qiconengineplugin.go b/gui/qiconengineplugin.go new file mode 100755 index 00000000..67354d1a --- /dev/null +++ b/gui/qiconengineplugin.go @@ -0,0 +1,38 @@ +package gui + +//#include "qiconengineplugin.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QIconEnginePlugin struct { + core.QObject +} + +type QIconEnginePluginITF interface { + core.QObjectITF + QIconEnginePluginPTR() *QIconEnginePlugin +} + +func PointerFromQIconEnginePlugin(ptr QIconEnginePluginITF) unsafe.Pointer { + if ptr != nil { + return ptr.QIconEnginePluginPTR().Pointer() + } + return nil +} + +func QIconEnginePluginFromPointer(ptr unsafe.Pointer) *QIconEnginePlugin { + var n = new(QIconEnginePlugin) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QIconEnginePlugin_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QIconEnginePlugin) QIconEnginePluginPTR() *QIconEnginePlugin { + return ptr +} diff --git a/gui/qiconengineplugin.h b/gui/qiconengineplugin.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/gui/qiconengineplugin.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qimage.cpp b/gui/qimage.cpp new file mode 100755 index 00000000..ba404f31 --- /dev/null +++ b/gui/qimage.cpp @@ -0,0 +1,161 @@ +#include "qimage.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQImage: public QImage { +public: +}; + +int QImage_ColorCount(QtObjectPtr ptr){ + return static_cast(ptr)->colorCount(); +} + +void QImage_Fill2(QtObjectPtr ptr, int color){ + static_cast(ptr)->fill(static_cast(color)); +} + +void QImage_Fill3(QtObjectPtr ptr, QtObjectPtr color){ + static_cast(ptr)->fill(*static_cast(color)); +} + +int QImage_Height(QtObjectPtr ptr){ + return static_cast(ptr)->height(); +} + +int QImage_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +void QImage_SetOffset(QtObjectPtr ptr, QtObjectPtr offset){ + static_cast(ptr)->setOffset(*static_cast(offset)); +} + +void QImage_SetText(QtObjectPtr ptr, char* key, char* text){ + static_cast(ptr)->setText(QString(key), QString(text)); +} + +int QImage_Width(QtObjectPtr ptr){ + return static_cast(ptr)->width(); +} + +int QImage_AllGray(QtObjectPtr ptr){ + return static_cast(ptr)->allGray(); +} + +int QImage_BitPlaneCount(QtObjectPtr ptr){ + return static_cast(ptr)->bitPlaneCount(); +} + +int QImage_ByteCount(QtObjectPtr ptr){ + return static_cast(ptr)->byteCount(); +} + +int QImage_BytesPerLine(QtObjectPtr ptr){ + return static_cast(ptr)->bytesPerLine(); +} + +int QImage_Depth(QtObjectPtr ptr){ + return static_cast(ptr)->depth(); +} + +int QImage_DotsPerMeterX(QtObjectPtr ptr){ + return static_cast(ptr)->dotsPerMeterX(); +} + +int QImage_DotsPerMeterY(QtObjectPtr ptr){ + return static_cast(ptr)->dotsPerMeterY(); +} + +int QImage_Format(QtObjectPtr ptr){ + return static_cast(ptr)->format(); +} + +int QImage_HasAlphaChannel(QtObjectPtr ptr){ + return static_cast(ptr)->hasAlphaChannel(); +} + +void QImage_InvertPixels(QtObjectPtr ptr, int mode){ + static_cast(ptr)->invertPixels(static_cast(mode)); +} + +int QImage_IsGrayscale(QtObjectPtr ptr){ + return static_cast(ptr)->isGrayscale(); +} + +int QImage_Load2(QtObjectPtr ptr, QtObjectPtr device, char* format){ + return static_cast(ptr)->load(static_cast(device), const_cast(format)); +} + +int QImage_Load(QtObjectPtr ptr, char* fileName, char* format){ + return static_cast(ptr)->load(QString(fileName), const_cast(format)); +} + +int QImage_LoadFromData2(QtObjectPtr ptr, QtObjectPtr data, char* format){ + return static_cast(ptr)->loadFromData(*static_cast(data), const_cast(format)); +} + +int QImage_PixelIndex(QtObjectPtr ptr, QtObjectPtr position){ + return static_cast(ptr)->pixelIndex(*static_cast(position)); +} + +int QImage_PixelIndex2(QtObjectPtr ptr, int x, int y){ + return static_cast(ptr)->pixelIndex(x, y); +} + +int QImage_Save2(QtObjectPtr ptr, QtObjectPtr device, char* format, int quality){ + return static_cast(ptr)->save(static_cast(device), const_cast(format), quality); +} + +int QImage_Save(QtObjectPtr ptr, char* fileName, char* format, int quality){ + return static_cast(ptr)->save(QString(fileName), const_cast(format), quality); +} + +void QImage_SetColorCount(QtObjectPtr ptr, int colorCount){ + static_cast(ptr)->setColorCount(colorCount); +} + +void QImage_SetDotsPerMeterX(QtObjectPtr ptr, int x){ + static_cast(ptr)->setDotsPerMeterX(x); +} + +void QImage_SetDotsPerMeterY(QtObjectPtr ptr, int y){ + static_cast(ptr)->setDotsPerMeterY(y); +} + +void QImage_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +char* QImage_Text(QtObjectPtr ptr, char* key){ + return static_cast(ptr)->text(QString(key)).toUtf8().data(); +} + +char* QImage_TextKeys(QtObjectPtr ptr){ + return static_cast(ptr)->textKeys().join("|").toUtf8().data(); +} + +int QImage_QImage_ToImageFormat(QtObjectPtr format){ + return QImage::toImageFormat(*static_cast(format)); +} + +int QImage_Valid(QtObjectPtr ptr, QtObjectPtr pos){ + return static_cast(ptr)->valid(*static_cast(pos)); +} + +int QImage_Valid2(QtObjectPtr ptr, int x, int y){ + return static_cast(ptr)->valid(x, y); +} + +void QImage_DestroyQImage(QtObjectPtr ptr){ + static_cast(ptr)->~QImage(); +} + diff --git a/gui/qimage.go b/gui/qimage.go new file mode 100755 index 00000000..b6244626 --- /dev/null +++ b/gui/qimage.go @@ -0,0 +1,313 @@ +package gui + +//#include "qimage.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QImage struct { + QPaintDevice +} + +type QImageITF interface { + QPaintDeviceITF + QImagePTR() *QImage +} + +func PointerFromQImage(ptr QImageITF) unsafe.Pointer { + if ptr != nil { + return ptr.QImagePTR().Pointer() + } + return nil +} + +func QImageFromPointer(ptr unsafe.Pointer) *QImage { + var n = new(QImage) + n.SetPointer(ptr) + return n +} + +func (ptr *QImage) QImagePTR() *QImage { + return ptr +} + +//QImage::Format +type QImage__Format int + +var ( + QImage__Format_Invalid = QImage__Format(0) + QImage__Format_Mono = QImage__Format(1) + QImage__Format_MonoLSB = QImage__Format(2) + QImage__Format_Indexed8 = QImage__Format(3) + QImage__Format_RGB32 = QImage__Format(4) + QImage__Format_ARGB32 = QImage__Format(5) + QImage__Format_ARGB32_Premultiplied = QImage__Format(6) + QImage__Format_RGB16 = QImage__Format(7) + QImage__Format_ARGB8565_Premultiplied = QImage__Format(8) + QImage__Format_RGB666 = QImage__Format(9) + QImage__Format_ARGB6666_Premultiplied = QImage__Format(10) + QImage__Format_RGB555 = QImage__Format(11) + QImage__Format_ARGB8555_Premultiplied = QImage__Format(12) + QImage__Format_RGB888 = QImage__Format(13) + QImage__Format_RGB444 = QImage__Format(14) + QImage__Format_ARGB4444_Premultiplied = QImage__Format(15) + QImage__Format_RGBX8888 = QImage__Format(16) + QImage__Format_RGBA8888 = QImage__Format(17) + QImage__Format_RGBA8888_Premultiplied = QImage__Format(18) + QImage__Format_BGR30 = QImage__Format(19) + QImage__Format_A2BGR30_Premultiplied = QImage__Format(20) + QImage__Format_RGB30 = QImage__Format(21) + QImage__Format_A2RGB30_Premultiplied = QImage__Format(22) + QImage__Format_Alpha8 = QImage__Format(23) + QImage__Format_Grayscale8 = QImage__Format(24) +) + +//QImage::InvertMode +type QImage__InvertMode int + +var ( + QImage__InvertRgb = QImage__InvertMode(0) + QImage__InvertRgba = QImage__InvertMode(1) +) + +func (ptr *QImage) ColorCount() int { + if ptr.Pointer() != nil { + return int(C.QImage_ColorCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QImage) Fill2(color core.Qt__GlobalColor) { + if ptr.Pointer() != nil { + C.QImage_Fill2(C.QtObjectPtr(ptr.Pointer()), C.int(color)) + } +} + +func (ptr *QImage) Fill3(color QColorITF) { + if ptr.Pointer() != nil { + C.QImage_Fill3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQColor(color))) + } +} + +func (ptr *QImage) Height() int { + if ptr.Pointer() != nil { + return int(C.QImage_Height(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QImage) IsNull() bool { + if ptr.Pointer() != nil { + return C.QImage_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QImage) SetOffset(offset core.QPointITF) { + if ptr.Pointer() != nil { + C.QImage_SetOffset(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(offset))) + } +} + +func (ptr *QImage) SetText(key string, text string) { + if ptr.Pointer() != nil { + C.QImage_SetText(C.QtObjectPtr(ptr.Pointer()), C.CString(key), C.CString(text)) + } +} + +func (ptr *QImage) Width() int { + if ptr.Pointer() != nil { + return int(C.QImage_Width(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QImage) AllGray() bool { + if ptr.Pointer() != nil { + return C.QImage_AllGray(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QImage) BitPlaneCount() int { + if ptr.Pointer() != nil { + return int(C.QImage_BitPlaneCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QImage) ByteCount() int { + if ptr.Pointer() != nil { + return int(C.QImage_ByteCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QImage) BytesPerLine() int { + if ptr.Pointer() != nil { + return int(C.QImage_BytesPerLine(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QImage) Depth() int { + if ptr.Pointer() != nil { + return int(C.QImage_Depth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QImage) DotsPerMeterX() int { + if ptr.Pointer() != nil { + return int(C.QImage_DotsPerMeterX(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QImage) DotsPerMeterY() int { + if ptr.Pointer() != nil { + return int(C.QImage_DotsPerMeterY(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QImage) Format() QImage__Format { + if ptr.Pointer() != nil { + return QImage__Format(C.QImage_Format(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QImage) HasAlphaChannel() bool { + if ptr.Pointer() != nil { + return C.QImage_HasAlphaChannel(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QImage) InvertPixels(mode QImage__InvertMode) { + if ptr.Pointer() != nil { + C.QImage_InvertPixels(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QImage) IsGrayscale() bool { + if ptr.Pointer() != nil { + return C.QImage_IsGrayscale(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QImage) Load2(device core.QIODeviceITF, format string) bool { + if ptr.Pointer() != nil { + return C.QImage_Load2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQIODevice(device)), C.CString(format)) != 0 + } + return false +} + +func (ptr *QImage) Load(fileName string, format string) bool { + if ptr.Pointer() != nil { + return C.QImage_Load(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName), C.CString(format)) != 0 + } + return false +} + +func (ptr *QImage) LoadFromData2(data core.QByteArrayITF, format string) bool { + if ptr.Pointer() != nil { + return C.QImage_LoadFromData2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(data)), C.CString(format)) != 0 + } + return false +} + +func (ptr *QImage) PixelIndex(position core.QPointITF) int { + if ptr.Pointer() != nil { + return int(C.QImage_PixelIndex(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(position)))) + } + return 0 +} + +func (ptr *QImage) PixelIndex2(x int, y int) int { + if ptr.Pointer() != nil { + return int(C.QImage_PixelIndex2(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y))) + } + return 0 +} + +func (ptr *QImage) Save2(device core.QIODeviceITF, format string, quality int) bool { + if ptr.Pointer() != nil { + return C.QImage_Save2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQIODevice(device)), C.CString(format), C.int(quality)) != 0 + } + return false +} + +func (ptr *QImage) Save(fileName string, format string, quality int) bool { + if ptr.Pointer() != nil { + return C.QImage_Save(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName), C.CString(format), C.int(quality)) != 0 + } + return false +} + +func (ptr *QImage) SetColorCount(colorCount int) { + if ptr.Pointer() != nil { + C.QImage_SetColorCount(C.QtObjectPtr(ptr.Pointer()), C.int(colorCount)) + } +} + +func (ptr *QImage) SetDotsPerMeterX(x int) { + if ptr.Pointer() != nil { + C.QImage_SetDotsPerMeterX(C.QtObjectPtr(ptr.Pointer()), C.int(x)) + } +} + +func (ptr *QImage) SetDotsPerMeterY(y int) { + if ptr.Pointer() != nil { + C.QImage_SetDotsPerMeterY(C.QtObjectPtr(ptr.Pointer()), C.int(y)) + } +} + +func (ptr *QImage) Swap(other QImageITF) { + if ptr.Pointer() != nil { + C.QImage_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQImage(other))) + } +} + +func (ptr *QImage) Text(key string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QImage_Text(C.QtObjectPtr(ptr.Pointer()), C.CString(key))) + } + return "" +} + +func (ptr *QImage) TextKeys() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QImage_TextKeys(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func QImage_ToImageFormat(format QPixelFormatITF) QImage__Format { + return QImage__Format(C.QImage_QImage_ToImageFormat(C.QtObjectPtr(PointerFromQPixelFormat(format)))) +} + +func (ptr *QImage) Valid(pos core.QPointITF) bool { + if ptr.Pointer() != nil { + return C.QImage_Valid(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(pos))) != 0 + } + return false +} + +func (ptr *QImage) Valid2(x int, y int) bool { + if ptr.Pointer() != nil { + return C.QImage_Valid2(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y)) != 0 + } + return false +} + +func (ptr *QImage) DestroyQImage() { + if ptr.Pointer() != nil { + C.QImage_DestroyQImage(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qimage.h b/gui/qimage.h new file mode 100755 index 00000000..25b1b5f5 --- /dev/null +++ b/gui/qimage.h @@ -0,0 +1,45 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QImage_ColorCount(QtObjectPtr ptr); +void QImage_Fill2(QtObjectPtr ptr, int color); +void QImage_Fill3(QtObjectPtr ptr, QtObjectPtr color); +int QImage_Height(QtObjectPtr ptr); +int QImage_IsNull(QtObjectPtr ptr); +void QImage_SetOffset(QtObjectPtr ptr, QtObjectPtr offset); +void QImage_SetText(QtObjectPtr ptr, char* key, char* text); +int QImage_Width(QtObjectPtr ptr); +int QImage_AllGray(QtObjectPtr ptr); +int QImage_BitPlaneCount(QtObjectPtr ptr); +int QImage_ByteCount(QtObjectPtr ptr); +int QImage_BytesPerLine(QtObjectPtr ptr); +int QImage_Depth(QtObjectPtr ptr); +int QImage_DotsPerMeterX(QtObjectPtr ptr); +int QImage_DotsPerMeterY(QtObjectPtr ptr); +int QImage_Format(QtObjectPtr ptr); +int QImage_HasAlphaChannel(QtObjectPtr ptr); +void QImage_InvertPixels(QtObjectPtr ptr, int mode); +int QImage_IsGrayscale(QtObjectPtr ptr); +int QImage_Load2(QtObjectPtr ptr, QtObjectPtr device, char* format); +int QImage_Load(QtObjectPtr ptr, char* fileName, char* format); +int QImage_LoadFromData2(QtObjectPtr ptr, QtObjectPtr data, char* format); +int QImage_PixelIndex(QtObjectPtr ptr, QtObjectPtr position); +int QImage_PixelIndex2(QtObjectPtr ptr, int x, int y); +int QImage_Save2(QtObjectPtr ptr, QtObjectPtr device, char* format, int quality); +int QImage_Save(QtObjectPtr ptr, char* fileName, char* format, int quality); +void QImage_SetColorCount(QtObjectPtr ptr, int colorCount); +void QImage_SetDotsPerMeterX(QtObjectPtr ptr, int x); +void QImage_SetDotsPerMeterY(QtObjectPtr ptr, int y); +void QImage_Swap(QtObjectPtr ptr, QtObjectPtr other); +char* QImage_Text(QtObjectPtr ptr, char* key); +char* QImage_TextKeys(QtObjectPtr ptr); +int QImage_QImage_ToImageFormat(QtObjectPtr format); +int QImage_Valid(QtObjectPtr ptr, QtObjectPtr pos); +int QImage_Valid2(QtObjectPtr ptr, int x, int y); +void QImage_DestroyQImage(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qimageiohandler.cpp b/gui/qimageiohandler.cpp new file mode 100755 index 00000000..535ef993 --- /dev/null +++ b/gui/qimageiohandler.cpp @@ -0,0 +1,9 @@ +#include "qimageiohandler.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/gui/qimageiohandler.go b/gui/qimageiohandler.go new file mode 100755 index 00000000..9632e192 --- /dev/null +++ b/gui/qimageiohandler.go @@ -0,0 +1,80 @@ +package gui + +//#include "qimageiohandler.h" +import "C" +import ( + "unsafe" +) + +type QImageIOHandler struct { + ptr unsafe.Pointer +} + +type QImageIOHandlerITF interface { + QImageIOHandlerPTR() *QImageIOHandler +} + +func (p *QImageIOHandler) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QImageIOHandler) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQImageIOHandler(ptr QImageIOHandlerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QImageIOHandlerPTR().Pointer() + } + return nil +} + +func QImageIOHandlerFromPointer(ptr unsafe.Pointer) *QImageIOHandler { + var n = new(QImageIOHandler) + n.SetPointer(ptr) + return n +} + +func (ptr *QImageIOHandler) QImageIOHandlerPTR() *QImageIOHandler { + return ptr +} + +//QImageIOHandler::ImageOption +type QImageIOHandler__ImageOption int + +var ( + QImageIOHandler__Size = QImageIOHandler__ImageOption(0) + QImageIOHandler__ClipRect = QImageIOHandler__ImageOption(1) + QImageIOHandler__Description = QImageIOHandler__ImageOption(2) + QImageIOHandler__ScaledClipRect = QImageIOHandler__ImageOption(3) + QImageIOHandler__ScaledSize = QImageIOHandler__ImageOption(4) + QImageIOHandler__CompressionRatio = QImageIOHandler__ImageOption(5) + QImageIOHandler__Gamma = QImageIOHandler__ImageOption(6) + QImageIOHandler__Quality = QImageIOHandler__ImageOption(7) + QImageIOHandler__Name = QImageIOHandler__ImageOption(8) + QImageIOHandler__SubType = QImageIOHandler__ImageOption(9) + QImageIOHandler__IncrementalReading = QImageIOHandler__ImageOption(10) + QImageIOHandler__Endianness = QImageIOHandler__ImageOption(11) + QImageIOHandler__Animation = QImageIOHandler__ImageOption(12) + QImageIOHandler__BackgroundColor = QImageIOHandler__ImageOption(13) + QImageIOHandler__ImageFormat = QImageIOHandler__ImageOption(14) + QImageIOHandler__SupportedSubTypes = QImageIOHandler__ImageOption(15) + QImageIOHandler__OptimizedWrite = QImageIOHandler__ImageOption(16) + QImageIOHandler__ProgressiveScanWrite = QImageIOHandler__ImageOption(17) + QImageIOHandler__ImageTransformation = QImageIOHandler__ImageOption(18) + QImageIOHandler__TransformedByDefault = QImageIOHandler__ImageOption(19) +) + +//QImageIOHandler::Transformation +type QImageIOHandler__Transformation int + +var ( + QImageIOHandler__TransformationNone = QImageIOHandler__Transformation(0) + QImageIOHandler__TransformationMirror = QImageIOHandler__Transformation(1) + QImageIOHandler__TransformationFlip = QImageIOHandler__Transformation(2) + QImageIOHandler__TransformationRotate180 = QImageIOHandler__Transformation(QImageIOHandler__TransformationMirror | QImageIOHandler__TransformationFlip) + QImageIOHandler__TransformationRotate90 = QImageIOHandler__Transformation(4) + QImageIOHandler__TransformationMirrorAndRotate90 = QImageIOHandler__Transformation(QImageIOHandler__TransformationMirror | QImageIOHandler__TransformationRotate90) + QImageIOHandler__TransformationFlipAndRotate90 = QImageIOHandler__Transformation(QImageIOHandler__TransformationFlip | QImageIOHandler__TransformationRotate90) + QImageIOHandler__TransformationRotate270 = QImageIOHandler__Transformation(QImageIOHandler__TransformationRotate180 | QImageIOHandler__TransformationRotate90) +) diff --git a/gui/qimageiohandler.h b/gui/qimageiohandler.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/gui/qimageiohandler.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qimageioplugin.cpp b/gui/qimageioplugin.cpp new file mode 100755 index 00000000..9bac41e4 --- /dev/null +++ b/gui/qimageioplugin.cpp @@ -0,0 +1,9 @@ +#include "qimageioplugin.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/gui/qimageioplugin.go b/gui/qimageioplugin.go new file mode 100755 index 00000000..90796786 --- /dev/null +++ b/gui/qimageioplugin.go @@ -0,0 +1,47 @@ +package gui + +//#include "qimageioplugin.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QImageIOPlugin struct { + core.QObject +} + +type QImageIOPluginITF interface { + core.QObjectITF + QImageIOPluginPTR() *QImageIOPlugin +} + +func PointerFromQImageIOPlugin(ptr QImageIOPluginITF) unsafe.Pointer { + if ptr != nil { + return ptr.QImageIOPluginPTR().Pointer() + } + return nil +} + +func QImageIOPluginFromPointer(ptr unsafe.Pointer) *QImageIOPlugin { + var n = new(QImageIOPlugin) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QImageIOPlugin_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QImageIOPlugin) QImageIOPluginPTR() *QImageIOPlugin { + return ptr +} + +//QImageIOPlugin::Capability +type QImageIOPlugin__Capability int + +var ( + QImageIOPlugin__CanRead = QImageIOPlugin__Capability(0x1) + QImageIOPlugin__CanWrite = QImageIOPlugin__Capability(0x2) + QImageIOPlugin__CanReadIncremental = QImageIOPlugin__Capability(0x4) +) diff --git a/gui/qimageioplugin.h b/gui/qimageioplugin.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/gui/qimageioplugin.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qimagereader.cpp b/gui/qimagereader.cpp new file mode 100755 index 00000000..2b7d72bf --- /dev/null +++ b/gui/qimagereader.cpp @@ -0,0 +1,167 @@ +#include "qimagereader.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQImageReader: public QImageReader { +public: +}; + +QtObjectPtr QImageReader_NewQImageReader(){ + return new QImageReader(); +} + +QtObjectPtr QImageReader_NewQImageReader2(QtObjectPtr device, QtObjectPtr format){ + return new QImageReader(static_cast(device), *static_cast(format)); +} + +QtObjectPtr QImageReader_NewQImageReader3(char* fileName, QtObjectPtr format){ + return new QImageReader(QString(fileName), *static_cast(format)); +} + +int QImageReader_AutoDetectImageFormat(QtObjectPtr ptr){ + return static_cast(ptr)->autoDetectImageFormat(); +} + +int QImageReader_AutoTransform(QtObjectPtr ptr){ + return static_cast(ptr)->autoTransform(); +} + +int QImageReader_CanRead(QtObjectPtr ptr){ + return static_cast(ptr)->canRead(); +} + +int QImageReader_CurrentImageNumber(QtObjectPtr ptr){ + return static_cast(ptr)->currentImageNumber(); +} + +int QImageReader_DecideFormatFromContent(QtObjectPtr ptr){ + return static_cast(ptr)->decideFormatFromContent(); +} + +QtObjectPtr QImageReader_Device(QtObjectPtr ptr){ + return static_cast(ptr)->device(); +} + +int QImageReader_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +char* QImageReader_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +char* QImageReader_FileName(QtObjectPtr ptr){ + return static_cast(ptr)->fileName().toUtf8().data(); +} + +int QImageReader_ImageCount(QtObjectPtr ptr){ + return static_cast(ptr)->imageCount(); +} + +int QImageReader_ImageFormat(QtObjectPtr ptr){ + return static_cast(ptr)->imageFormat(); +} + +int QImageReader_JumpToImage(QtObjectPtr ptr, int imageNumber){ + return static_cast(ptr)->jumpToImage(imageNumber); +} + +int QImageReader_JumpToNextImage(QtObjectPtr ptr){ + return static_cast(ptr)->jumpToNextImage(); +} + +int QImageReader_LoopCount(QtObjectPtr ptr){ + return static_cast(ptr)->loopCount(); +} + +int QImageReader_NextImageDelay(QtObjectPtr ptr){ + return static_cast(ptr)->nextImageDelay(); +} + +int QImageReader_Quality(QtObjectPtr ptr){ + return static_cast(ptr)->quality(); +} + +int QImageReader_Read2(QtObjectPtr ptr, QtObjectPtr image){ + return static_cast(ptr)->read(static_cast(image)); +} + +void QImageReader_SetAutoDetectImageFormat(QtObjectPtr ptr, int enabled){ + static_cast(ptr)->setAutoDetectImageFormat(enabled != 0); +} + +void QImageReader_SetAutoTransform(QtObjectPtr ptr, int enabled){ + static_cast(ptr)->setAutoTransform(enabled != 0); +} + +void QImageReader_SetBackgroundColor(QtObjectPtr ptr, QtObjectPtr color){ + static_cast(ptr)->setBackgroundColor(*static_cast(color)); +} + +void QImageReader_SetClipRect(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->setClipRect(*static_cast(rect)); +} + +void QImageReader_SetDecideFormatFromContent(QtObjectPtr ptr, int ignored){ + static_cast(ptr)->setDecideFormatFromContent(ignored != 0); +} + +void QImageReader_SetDevice(QtObjectPtr ptr, QtObjectPtr device){ + static_cast(ptr)->setDevice(static_cast(device)); +} + +void QImageReader_SetFileName(QtObjectPtr ptr, char* fileName){ + static_cast(ptr)->setFileName(QString(fileName)); +} + +void QImageReader_SetFormat(QtObjectPtr ptr, QtObjectPtr format){ + static_cast(ptr)->setFormat(*static_cast(format)); +} + +void QImageReader_SetQuality(QtObjectPtr ptr, int quality){ + static_cast(ptr)->setQuality(quality); +} + +void QImageReader_SetScaledClipRect(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->setScaledClipRect(*static_cast(rect)); +} + +void QImageReader_SetScaledSize(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->setScaledSize(*static_cast(size)); +} + +int QImageReader_SupportsAnimation(QtObjectPtr ptr){ + return static_cast(ptr)->supportsAnimation(); +} + +int QImageReader_SupportsOption(QtObjectPtr ptr, int option){ + return static_cast(ptr)->supportsOption(static_cast(option)); +} + +char* QImageReader_Text(QtObjectPtr ptr, char* key){ + return static_cast(ptr)->text(QString(key)).toUtf8().data(); +} + +char* QImageReader_TextKeys(QtObjectPtr ptr){ + return static_cast(ptr)->textKeys().join("|").toUtf8().data(); +} + +int QImageReader_Transformation(QtObjectPtr ptr){ + return static_cast(ptr)->transformation(); +} + +void QImageReader_DestroyQImageReader(QtObjectPtr ptr){ + static_cast(ptr)->~QImageReader(); +} + diff --git a/gui/qimagereader.go b/gui/qimagereader.go new file mode 100755 index 00000000..4f1268a4 --- /dev/null +++ b/gui/qimagereader.go @@ -0,0 +1,292 @@ +package gui + +//#include "qimagereader.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QImageReader struct { + ptr unsafe.Pointer +} + +type QImageReaderITF interface { + QImageReaderPTR() *QImageReader +} + +func (p *QImageReader) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QImageReader) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQImageReader(ptr QImageReaderITF) unsafe.Pointer { + if ptr != nil { + return ptr.QImageReaderPTR().Pointer() + } + return nil +} + +func QImageReaderFromPointer(ptr unsafe.Pointer) *QImageReader { + var n = new(QImageReader) + n.SetPointer(ptr) + return n +} + +func (ptr *QImageReader) QImageReaderPTR() *QImageReader { + return ptr +} + +//QImageReader::ImageReaderError +type QImageReader__ImageReaderError int + +var ( + QImageReader__UnknownError = QImageReader__ImageReaderError(0) + QImageReader__FileNotFoundError = QImageReader__ImageReaderError(1) + QImageReader__DeviceError = QImageReader__ImageReaderError(2) + QImageReader__UnsupportedFormatError = QImageReader__ImageReaderError(3) + QImageReader__InvalidDataError = QImageReader__ImageReaderError(4) +) + +func NewQImageReader() *QImageReader { + return QImageReaderFromPointer(unsafe.Pointer(C.QImageReader_NewQImageReader())) +} + +func NewQImageReader2(device core.QIODeviceITF, format core.QByteArrayITF) *QImageReader { + return QImageReaderFromPointer(unsafe.Pointer(C.QImageReader_NewQImageReader2(C.QtObjectPtr(core.PointerFromQIODevice(device)), C.QtObjectPtr(core.PointerFromQByteArray(format))))) +} + +func NewQImageReader3(fileName string, format core.QByteArrayITF) *QImageReader { + return QImageReaderFromPointer(unsafe.Pointer(C.QImageReader_NewQImageReader3(C.CString(fileName), C.QtObjectPtr(core.PointerFromQByteArray(format))))) +} + +func (ptr *QImageReader) AutoDetectImageFormat() bool { + if ptr.Pointer() != nil { + return C.QImageReader_AutoDetectImageFormat(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QImageReader) AutoTransform() bool { + if ptr.Pointer() != nil { + return C.QImageReader_AutoTransform(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QImageReader) CanRead() bool { + if ptr.Pointer() != nil { + return C.QImageReader_CanRead(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QImageReader) CurrentImageNumber() int { + if ptr.Pointer() != nil { + return int(C.QImageReader_CurrentImageNumber(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QImageReader) DecideFormatFromContent() bool { + if ptr.Pointer() != nil { + return C.QImageReader_DecideFormatFromContent(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QImageReader) Device() *core.QIODevice { + if ptr.Pointer() != nil { + return core.QIODeviceFromPointer(unsafe.Pointer(C.QImageReader_Device(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QImageReader) Error() QImageReader__ImageReaderError { + if ptr.Pointer() != nil { + return QImageReader__ImageReaderError(C.QImageReader_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QImageReader) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QImageReader_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QImageReader) FileName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QImageReader_FileName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QImageReader) ImageCount() int { + if ptr.Pointer() != nil { + return int(C.QImageReader_ImageCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QImageReader) ImageFormat() QImage__Format { + if ptr.Pointer() != nil { + return QImage__Format(C.QImageReader_ImageFormat(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QImageReader) JumpToImage(imageNumber int) bool { + if ptr.Pointer() != nil { + return C.QImageReader_JumpToImage(C.QtObjectPtr(ptr.Pointer()), C.int(imageNumber)) != 0 + } + return false +} + +func (ptr *QImageReader) JumpToNextImage() bool { + if ptr.Pointer() != nil { + return C.QImageReader_JumpToNextImage(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QImageReader) LoopCount() int { + if ptr.Pointer() != nil { + return int(C.QImageReader_LoopCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QImageReader) NextImageDelay() int { + if ptr.Pointer() != nil { + return int(C.QImageReader_NextImageDelay(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QImageReader) Quality() int { + if ptr.Pointer() != nil { + return int(C.QImageReader_Quality(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QImageReader) Read2(image QImageITF) bool { + if ptr.Pointer() != nil { + return C.QImageReader_Read2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQImage(image))) != 0 + } + return false +} + +func (ptr *QImageReader) SetAutoDetectImageFormat(enabled bool) { + if ptr.Pointer() != nil { + C.QImageReader_SetAutoDetectImageFormat(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QImageReader) SetAutoTransform(enabled bool) { + if ptr.Pointer() != nil { + C.QImageReader_SetAutoTransform(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QImageReader) SetBackgroundColor(color QColorITF) { + if ptr.Pointer() != nil { + C.QImageReader_SetBackgroundColor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQColor(color))) + } +} + +func (ptr *QImageReader) SetClipRect(rect core.QRectITF) { + if ptr.Pointer() != nil { + C.QImageReader_SetClipRect(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rect))) + } +} + +func (ptr *QImageReader) SetDecideFormatFromContent(ignored bool) { + if ptr.Pointer() != nil { + C.QImageReader_SetDecideFormatFromContent(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(ignored))) + } +} + +func (ptr *QImageReader) SetDevice(device core.QIODeviceITF) { + if ptr.Pointer() != nil { + C.QImageReader_SetDevice(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQIODevice(device))) + } +} + +func (ptr *QImageReader) SetFileName(fileName string) { + if ptr.Pointer() != nil { + C.QImageReader_SetFileName(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName)) + } +} + +func (ptr *QImageReader) SetFormat(format core.QByteArrayITF) { + if ptr.Pointer() != nil { + C.QImageReader_SetFormat(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(format))) + } +} + +func (ptr *QImageReader) SetQuality(quality int) { + if ptr.Pointer() != nil { + C.QImageReader_SetQuality(C.QtObjectPtr(ptr.Pointer()), C.int(quality)) + } +} + +func (ptr *QImageReader) SetScaledClipRect(rect core.QRectITF) { + if ptr.Pointer() != nil { + C.QImageReader_SetScaledClipRect(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rect))) + } +} + +func (ptr *QImageReader) SetScaledSize(size core.QSizeITF) { + if ptr.Pointer() != nil { + C.QImageReader_SetScaledSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(size))) + } +} + +func (ptr *QImageReader) SupportsAnimation() bool { + if ptr.Pointer() != nil { + return C.QImageReader_SupportsAnimation(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QImageReader) SupportsOption(option QImageIOHandler__ImageOption) bool { + if ptr.Pointer() != nil { + return C.QImageReader_SupportsOption(C.QtObjectPtr(ptr.Pointer()), C.int(option)) != 0 + } + return false +} + +func (ptr *QImageReader) Text(key string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QImageReader_Text(C.QtObjectPtr(ptr.Pointer()), C.CString(key))) + } + return "" +} + +func (ptr *QImageReader) TextKeys() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QImageReader_TextKeys(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QImageReader) Transformation() QImageIOHandler__Transformation { + if ptr.Pointer() != nil { + return QImageIOHandler__Transformation(C.QImageReader_Transformation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QImageReader) DestroyQImageReader() { + if ptr.Pointer() != nil { + C.QImageReader_DestroyQImageReader(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qimagereader.h b/gui/qimagereader.h new file mode 100755 index 00000000..0ae9aa4a --- /dev/null +++ b/gui/qimagereader.h @@ -0,0 +1,46 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QImageReader_NewQImageReader(); +QtObjectPtr QImageReader_NewQImageReader2(QtObjectPtr device, QtObjectPtr format); +QtObjectPtr QImageReader_NewQImageReader3(char* fileName, QtObjectPtr format); +int QImageReader_AutoDetectImageFormat(QtObjectPtr ptr); +int QImageReader_AutoTransform(QtObjectPtr ptr); +int QImageReader_CanRead(QtObjectPtr ptr); +int QImageReader_CurrentImageNumber(QtObjectPtr ptr); +int QImageReader_DecideFormatFromContent(QtObjectPtr ptr); +QtObjectPtr QImageReader_Device(QtObjectPtr ptr); +int QImageReader_Error(QtObjectPtr ptr); +char* QImageReader_ErrorString(QtObjectPtr ptr); +char* QImageReader_FileName(QtObjectPtr ptr); +int QImageReader_ImageCount(QtObjectPtr ptr); +int QImageReader_ImageFormat(QtObjectPtr ptr); +int QImageReader_JumpToImage(QtObjectPtr ptr, int imageNumber); +int QImageReader_JumpToNextImage(QtObjectPtr ptr); +int QImageReader_LoopCount(QtObjectPtr ptr); +int QImageReader_NextImageDelay(QtObjectPtr ptr); +int QImageReader_Quality(QtObjectPtr ptr); +int QImageReader_Read2(QtObjectPtr ptr, QtObjectPtr image); +void QImageReader_SetAutoDetectImageFormat(QtObjectPtr ptr, int enabled); +void QImageReader_SetAutoTransform(QtObjectPtr ptr, int enabled); +void QImageReader_SetBackgroundColor(QtObjectPtr ptr, QtObjectPtr color); +void QImageReader_SetClipRect(QtObjectPtr ptr, QtObjectPtr rect); +void QImageReader_SetDecideFormatFromContent(QtObjectPtr ptr, int ignored); +void QImageReader_SetDevice(QtObjectPtr ptr, QtObjectPtr device); +void QImageReader_SetFileName(QtObjectPtr ptr, char* fileName); +void QImageReader_SetFormat(QtObjectPtr ptr, QtObjectPtr format); +void QImageReader_SetQuality(QtObjectPtr ptr, int quality); +void QImageReader_SetScaledClipRect(QtObjectPtr ptr, QtObjectPtr rect); +void QImageReader_SetScaledSize(QtObjectPtr ptr, QtObjectPtr size); +int QImageReader_SupportsAnimation(QtObjectPtr ptr); +int QImageReader_SupportsOption(QtObjectPtr ptr, int option); +char* QImageReader_Text(QtObjectPtr ptr, char* key); +char* QImageReader_TextKeys(QtObjectPtr ptr); +int QImageReader_Transformation(QtObjectPtr ptr); +void QImageReader_DestroyQImageReader(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qimagewriter.cpp b/gui/qimagewriter.cpp new file mode 100755 index 00000000..1263cfaf --- /dev/null +++ b/gui/qimagewriter.cpp @@ -0,0 +1,120 @@ +#include "qimagewriter.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQImageWriter: public QImageWriter { +public: +}; + +QtObjectPtr QImageWriter_NewQImageWriter(){ + return new QImageWriter(); +} + +QtObjectPtr QImageWriter_NewQImageWriter2(QtObjectPtr device, QtObjectPtr format){ + return new QImageWriter(static_cast(device), *static_cast(format)); +} + +QtObjectPtr QImageWriter_NewQImageWriter3(char* fileName, QtObjectPtr format){ + return new QImageWriter(QString(fileName), *static_cast(format)); +} + +int QImageWriter_CanWrite(QtObjectPtr ptr){ + return static_cast(ptr)->canWrite(); +} + +int QImageWriter_Compression(QtObjectPtr ptr){ + return static_cast(ptr)->compression(); +} + +QtObjectPtr QImageWriter_Device(QtObjectPtr ptr){ + return static_cast(ptr)->device(); +} + +int QImageWriter_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +char* QImageWriter_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +char* QImageWriter_FileName(QtObjectPtr ptr){ + return static_cast(ptr)->fileName().toUtf8().data(); +} + +int QImageWriter_OptimizedWrite(QtObjectPtr ptr){ + return static_cast(ptr)->optimizedWrite(); +} + +int QImageWriter_ProgressiveScanWrite(QtObjectPtr ptr){ + return static_cast(ptr)->progressiveScanWrite(); +} + +int QImageWriter_Quality(QtObjectPtr ptr){ + return static_cast(ptr)->quality(); +} + +void QImageWriter_SetCompression(QtObjectPtr ptr, int compression){ + static_cast(ptr)->setCompression(compression); +} + +void QImageWriter_SetDevice(QtObjectPtr ptr, QtObjectPtr device){ + static_cast(ptr)->setDevice(static_cast(device)); +} + +void QImageWriter_SetFileName(QtObjectPtr ptr, char* fileName){ + static_cast(ptr)->setFileName(QString(fileName)); +} + +void QImageWriter_SetFormat(QtObjectPtr ptr, QtObjectPtr format){ + static_cast(ptr)->setFormat(*static_cast(format)); +} + +void QImageWriter_SetOptimizedWrite(QtObjectPtr ptr, int optimize){ + static_cast(ptr)->setOptimizedWrite(optimize != 0); +} + +void QImageWriter_SetProgressiveScanWrite(QtObjectPtr ptr, int progressive){ + static_cast(ptr)->setProgressiveScanWrite(progressive != 0); +} + +void QImageWriter_SetQuality(QtObjectPtr ptr, int quality){ + static_cast(ptr)->setQuality(quality); +} + +void QImageWriter_SetSubType(QtObjectPtr ptr, QtObjectPtr ty){ + static_cast(ptr)->setSubType(*static_cast(ty)); +} + +void QImageWriter_SetText(QtObjectPtr ptr, char* key, char* text){ + static_cast(ptr)->setText(QString(key), QString(text)); +} + +void QImageWriter_SetTransformation(QtObjectPtr ptr, int transform){ + static_cast(ptr)->setTransformation(static_cast(transform)); +} + +int QImageWriter_SupportsOption(QtObjectPtr ptr, int option){ + return static_cast(ptr)->supportsOption(static_cast(option)); +} + +int QImageWriter_Transformation(QtObjectPtr ptr){ + return static_cast(ptr)->transformation(); +} + +int QImageWriter_Write(QtObjectPtr ptr, QtObjectPtr image){ + return static_cast(ptr)->write(*static_cast(image)); +} + +void QImageWriter_DestroyQImageWriter(QtObjectPtr ptr){ + static_cast(ptr)->~QImageWriter(); +} + diff --git a/gui/qimagewriter.go b/gui/qimagewriter.go new file mode 100755 index 00000000..9dc1f903 --- /dev/null +++ b/gui/qimagewriter.go @@ -0,0 +1,213 @@ +package gui + +//#include "qimagewriter.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QImageWriter struct { + ptr unsafe.Pointer +} + +type QImageWriterITF interface { + QImageWriterPTR() *QImageWriter +} + +func (p *QImageWriter) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QImageWriter) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQImageWriter(ptr QImageWriterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QImageWriterPTR().Pointer() + } + return nil +} + +func QImageWriterFromPointer(ptr unsafe.Pointer) *QImageWriter { + var n = new(QImageWriter) + n.SetPointer(ptr) + return n +} + +func (ptr *QImageWriter) QImageWriterPTR() *QImageWriter { + return ptr +} + +//QImageWriter::ImageWriterError +type QImageWriter__ImageWriterError int + +var ( + QImageWriter__UnknownError = QImageWriter__ImageWriterError(0) + QImageWriter__DeviceError = QImageWriter__ImageWriterError(1) + QImageWriter__UnsupportedFormatError = QImageWriter__ImageWriterError(2) +) + +func NewQImageWriter() *QImageWriter { + return QImageWriterFromPointer(unsafe.Pointer(C.QImageWriter_NewQImageWriter())) +} + +func NewQImageWriter2(device core.QIODeviceITF, format core.QByteArrayITF) *QImageWriter { + return QImageWriterFromPointer(unsafe.Pointer(C.QImageWriter_NewQImageWriter2(C.QtObjectPtr(core.PointerFromQIODevice(device)), C.QtObjectPtr(core.PointerFromQByteArray(format))))) +} + +func NewQImageWriter3(fileName string, format core.QByteArrayITF) *QImageWriter { + return QImageWriterFromPointer(unsafe.Pointer(C.QImageWriter_NewQImageWriter3(C.CString(fileName), C.QtObjectPtr(core.PointerFromQByteArray(format))))) +} + +func (ptr *QImageWriter) CanWrite() bool { + if ptr.Pointer() != nil { + return C.QImageWriter_CanWrite(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QImageWriter) Compression() int { + if ptr.Pointer() != nil { + return int(C.QImageWriter_Compression(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QImageWriter) Device() *core.QIODevice { + if ptr.Pointer() != nil { + return core.QIODeviceFromPointer(unsafe.Pointer(C.QImageWriter_Device(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QImageWriter) Error() QImageWriter__ImageWriterError { + if ptr.Pointer() != nil { + return QImageWriter__ImageWriterError(C.QImageWriter_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QImageWriter) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QImageWriter_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QImageWriter) FileName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QImageWriter_FileName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QImageWriter) OptimizedWrite() bool { + if ptr.Pointer() != nil { + return C.QImageWriter_OptimizedWrite(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QImageWriter) ProgressiveScanWrite() bool { + if ptr.Pointer() != nil { + return C.QImageWriter_ProgressiveScanWrite(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QImageWriter) Quality() int { + if ptr.Pointer() != nil { + return int(C.QImageWriter_Quality(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QImageWriter) SetCompression(compression int) { + if ptr.Pointer() != nil { + C.QImageWriter_SetCompression(C.QtObjectPtr(ptr.Pointer()), C.int(compression)) + } +} + +func (ptr *QImageWriter) SetDevice(device core.QIODeviceITF) { + if ptr.Pointer() != nil { + C.QImageWriter_SetDevice(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQIODevice(device))) + } +} + +func (ptr *QImageWriter) SetFileName(fileName string) { + if ptr.Pointer() != nil { + C.QImageWriter_SetFileName(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName)) + } +} + +func (ptr *QImageWriter) SetFormat(format core.QByteArrayITF) { + if ptr.Pointer() != nil { + C.QImageWriter_SetFormat(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(format))) + } +} + +func (ptr *QImageWriter) SetOptimizedWrite(optimize bool) { + if ptr.Pointer() != nil { + C.QImageWriter_SetOptimizedWrite(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(optimize))) + } +} + +func (ptr *QImageWriter) SetProgressiveScanWrite(progressive bool) { + if ptr.Pointer() != nil { + C.QImageWriter_SetProgressiveScanWrite(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(progressive))) + } +} + +func (ptr *QImageWriter) SetQuality(quality int) { + if ptr.Pointer() != nil { + C.QImageWriter_SetQuality(C.QtObjectPtr(ptr.Pointer()), C.int(quality)) + } +} + +func (ptr *QImageWriter) SetSubType(ty core.QByteArrayITF) { + if ptr.Pointer() != nil { + C.QImageWriter_SetSubType(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(ty))) + } +} + +func (ptr *QImageWriter) SetText(key string, text string) { + if ptr.Pointer() != nil { + C.QImageWriter_SetText(C.QtObjectPtr(ptr.Pointer()), C.CString(key), C.CString(text)) + } +} + +func (ptr *QImageWriter) SetTransformation(transform QImageIOHandler__Transformation) { + if ptr.Pointer() != nil { + C.QImageWriter_SetTransformation(C.QtObjectPtr(ptr.Pointer()), C.int(transform)) + } +} + +func (ptr *QImageWriter) SupportsOption(option QImageIOHandler__ImageOption) bool { + if ptr.Pointer() != nil { + return C.QImageWriter_SupportsOption(C.QtObjectPtr(ptr.Pointer()), C.int(option)) != 0 + } + return false +} + +func (ptr *QImageWriter) Transformation() QImageIOHandler__Transformation { + if ptr.Pointer() != nil { + return QImageIOHandler__Transformation(C.QImageWriter_Transformation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QImageWriter) Write(image QImageITF) bool { + if ptr.Pointer() != nil { + return C.QImageWriter_Write(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQImage(image))) != 0 + } + return false +} + +func (ptr *QImageWriter) DestroyQImageWriter() { + if ptr.Pointer() != nil { + C.QImageWriter_DestroyQImageWriter(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qimagewriter.h b/gui/qimagewriter.h new file mode 100755 index 00000000..c0518a8b --- /dev/null +++ b/gui/qimagewriter.h @@ -0,0 +1,35 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QImageWriter_NewQImageWriter(); +QtObjectPtr QImageWriter_NewQImageWriter2(QtObjectPtr device, QtObjectPtr format); +QtObjectPtr QImageWriter_NewQImageWriter3(char* fileName, QtObjectPtr format); +int QImageWriter_CanWrite(QtObjectPtr ptr); +int QImageWriter_Compression(QtObjectPtr ptr); +QtObjectPtr QImageWriter_Device(QtObjectPtr ptr); +int QImageWriter_Error(QtObjectPtr ptr); +char* QImageWriter_ErrorString(QtObjectPtr ptr); +char* QImageWriter_FileName(QtObjectPtr ptr); +int QImageWriter_OptimizedWrite(QtObjectPtr ptr); +int QImageWriter_ProgressiveScanWrite(QtObjectPtr ptr); +int QImageWriter_Quality(QtObjectPtr ptr); +void QImageWriter_SetCompression(QtObjectPtr ptr, int compression); +void QImageWriter_SetDevice(QtObjectPtr ptr, QtObjectPtr device); +void QImageWriter_SetFileName(QtObjectPtr ptr, char* fileName); +void QImageWriter_SetFormat(QtObjectPtr ptr, QtObjectPtr format); +void QImageWriter_SetOptimizedWrite(QtObjectPtr ptr, int optimize); +void QImageWriter_SetProgressiveScanWrite(QtObjectPtr ptr, int progressive); +void QImageWriter_SetQuality(QtObjectPtr ptr, int quality); +void QImageWriter_SetSubType(QtObjectPtr ptr, QtObjectPtr ty); +void QImageWriter_SetText(QtObjectPtr ptr, char* key, char* text); +void QImageWriter_SetTransformation(QtObjectPtr ptr, int transform); +int QImageWriter_SupportsOption(QtObjectPtr ptr, int option); +int QImageWriter_Transformation(QtObjectPtr ptr); +int QImageWriter_Write(QtObjectPtr ptr, QtObjectPtr image); +void QImageWriter_DestroyQImageWriter(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qinputevent.cpp b/gui/qinputevent.cpp new file mode 100755 index 00000000..690b0928 --- /dev/null +++ b/gui/qinputevent.cpp @@ -0,0 +1,16 @@ +#include "qinputevent.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQInputEvent: public QInputEvent { +public: +}; + +int QInputEvent_Modifiers(QtObjectPtr ptr){ + return static_cast(ptr)->modifiers(); +} + diff --git a/gui/qinputevent.go b/gui/qinputevent.go new file mode 100755 index 00000000..6625248b --- /dev/null +++ b/gui/qinputevent.go @@ -0,0 +1,41 @@ +package gui + +//#include "qinputevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QInputEvent struct { + core.QEvent +} + +type QInputEventITF interface { + core.QEventITF + QInputEventPTR() *QInputEvent +} + +func PointerFromQInputEvent(ptr QInputEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QInputEventPTR().Pointer() + } + return nil +} + +func QInputEventFromPointer(ptr unsafe.Pointer) *QInputEvent { + var n = new(QInputEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QInputEvent) QInputEventPTR() *QInputEvent { + return ptr +} + +func (ptr *QInputEvent) Modifiers() core.Qt__KeyboardModifier { + if ptr.Pointer() != nil { + return core.Qt__KeyboardModifier(C.QInputEvent_Modifiers(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/gui/qinputevent.h b/gui/qinputevent.h new file mode 100755 index 00000000..c118a778 --- /dev/null +++ b/gui/qinputevent.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QInputEvent_Modifiers(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qinputmethod.cpp b/gui/qinputmethod.cpp new file mode 100755 index 00000000..1b720e08 --- /dev/null +++ b/gui/qinputmethod.cpp @@ -0,0 +1,123 @@ +#include "qinputmethod.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQInputMethod: public QInputMethod { +public: +void Signal_AnimatingChanged(){callbackQInputMethodAnimatingChanged(this->objectName().toUtf8().data());}; +void Signal_CursorRectangleChanged(){callbackQInputMethodCursorRectangleChanged(this->objectName().toUtf8().data());}; +void Signal_InputDirectionChanged(Qt::LayoutDirection newDirection){callbackQInputMethodInputDirectionChanged(this->objectName().toUtf8().data(), newDirection);}; +void Signal_KeyboardRectangleChanged(){callbackQInputMethodKeyboardRectangleChanged(this->objectName().toUtf8().data());}; +void Signal_LocaleChanged(){callbackQInputMethodLocaleChanged(this->objectName().toUtf8().data());}; +void Signal_VisibleChanged(){callbackQInputMethodVisibleChanged(this->objectName().toUtf8().data());}; +}; + +int QInputMethod_InputDirection(QtObjectPtr ptr){ + return static_cast(ptr)->inputDirection(); +} + +int QInputMethod_IsAnimating(QtObjectPtr ptr){ + return static_cast(ptr)->isAnimating(); +} + +int QInputMethod_IsVisible(QtObjectPtr ptr){ + return static_cast(ptr)->isVisible(); +} + +void QInputMethod_ConnectAnimatingChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QInputMethod::animatingChanged), static_cast(ptr), static_cast(&MyQInputMethod::Signal_AnimatingChanged));; +} + +void QInputMethod_DisconnectAnimatingChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QInputMethod::animatingChanged), static_cast(ptr), static_cast(&MyQInputMethod::Signal_AnimatingChanged));; +} + +void QInputMethod_Commit(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "commit"); +} + +void QInputMethod_ConnectCursorRectangleChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QInputMethod::cursorRectangleChanged), static_cast(ptr), static_cast(&MyQInputMethod::Signal_CursorRectangleChanged));; +} + +void QInputMethod_DisconnectCursorRectangleChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QInputMethod::cursorRectangleChanged), static_cast(ptr), static_cast(&MyQInputMethod::Signal_CursorRectangleChanged));; +} + +void QInputMethod_Hide(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "hide"); +} + +void QInputMethod_ConnectInputDirectionChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QInputMethod::inputDirectionChanged), static_cast(ptr), static_cast(&MyQInputMethod::Signal_InputDirectionChanged));; +} + +void QInputMethod_DisconnectInputDirectionChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QInputMethod::inputDirectionChanged), static_cast(ptr), static_cast(&MyQInputMethod::Signal_InputDirectionChanged));; +} + +void QInputMethod_InvokeAction(QtObjectPtr ptr, int a, int cursorPosition){ + QMetaObject::invokeMethod(static_cast(ptr), "invokeAction", Q_ARG(QInputMethod::Action, static_cast(a)), Q_ARG(int, cursorPosition)); +} + +void QInputMethod_ConnectKeyboardRectangleChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QInputMethod::keyboardRectangleChanged), static_cast(ptr), static_cast(&MyQInputMethod::Signal_KeyboardRectangleChanged));; +} + +void QInputMethod_DisconnectKeyboardRectangleChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QInputMethod::keyboardRectangleChanged), static_cast(ptr), static_cast(&MyQInputMethod::Signal_KeyboardRectangleChanged));; +} + +void QInputMethod_ConnectLocaleChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QInputMethod::localeChanged), static_cast(ptr), static_cast(&MyQInputMethod::Signal_LocaleChanged));; +} + +void QInputMethod_DisconnectLocaleChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QInputMethod::localeChanged), static_cast(ptr), static_cast(&MyQInputMethod::Signal_LocaleChanged));; +} + +char* QInputMethod_QInputMethod_QueryFocusObject(int query, char* argument){ + return QInputMethod::queryFocusObject(static_cast(query), QVariant(argument)).toString().toUtf8().data(); +} + +void QInputMethod_Reset(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "reset"); +} + +void QInputMethod_SetInputItemRectangle(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->setInputItemRectangle(*static_cast(rect)); +} + +void QInputMethod_SetInputItemTransform(QtObjectPtr ptr, QtObjectPtr transform){ + static_cast(ptr)->setInputItemTransform(*static_cast(transform)); +} + +void QInputMethod_SetVisible(QtObjectPtr ptr, int visible){ + static_cast(ptr)->setVisible(visible != 0); +} + +void QInputMethod_Show(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "show"); +} + +void QInputMethod_Update(QtObjectPtr ptr, int queries){ + QMetaObject::invokeMethod(static_cast(ptr), "update", Q_ARG(Qt::InputMethodQuery, static_cast(queries))); +} + +void QInputMethod_ConnectVisibleChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QInputMethod::visibleChanged), static_cast(ptr), static_cast(&MyQInputMethod::Signal_VisibleChanged));; +} + +void QInputMethod_DisconnectVisibleChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QInputMethod::visibleChanged), static_cast(ptr), static_cast(&MyQInputMethod::Signal_VisibleChanged));; +} + diff --git a/gui/qinputmethod.go b/gui/qinputmethod.go new file mode 100755 index 00000000..81ac16bc --- /dev/null +++ b/gui/qinputmethod.go @@ -0,0 +1,239 @@ +package gui + +//#include "qinputmethod.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QInputMethod struct { + core.QObject +} + +type QInputMethodITF interface { + core.QObjectITF + QInputMethodPTR() *QInputMethod +} + +func PointerFromQInputMethod(ptr QInputMethodITF) unsafe.Pointer { + if ptr != nil { + return ptr.QInputMethodPTR().Pointer() + } + return nil +} + +func QInputMethodFromPointer(ptr unsafe.Pointer) *QInputMethod { + var n = new(QInputMethod) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QInputMethod_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QInputMethod) QInputMethodPTR() *QInputMethod { + return ptr +} + +//QInputMethod::Action +type QInputMethod__Action int + +var ( + QInputMethod__Click = QInputMethod__Action(0) + QInputMethod__ContextMenu = QInputMethod__Action(1) +) + +func (ptr *QInputMethod) InputDirection() core.Qt__LayoutDirection { + if ptr.Pointer() != nil { + return core.Qt__LayoutDirection(C.QInputMethod_InputDirection(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QInputMethod) IsAnimating() bool { + if ptr.Pointer() != nil { + return C.QInputMethod_IsAnimating(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QInputMethod) IsVisible() bool { + if ptr.Pointer() != nil { + return C.QInputMethod_IsVisible(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QInputMethod) ConnectAnimatingChanged(f func()) { + if ptr.Pointer() != nil { + C.QInputMethod_ConnectAnimatingChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "animatingChanged", f) + } +} + +func (ptr *QInputMethod) DisconnectAnimatingChanged() { + if ptr.Pointer() != nil { + C.QInputMethod_DisconnectAnimatingChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "animatingChanged") + } +} + +//export callbackQInputMethodAnimatingChanged +func callbackQInputMethodAnimatingChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "animatingChanged").(func())() +} + +func (ptr *QInputMethod) Commit() { + if ptr.Pointer() != nil { + C.QInputMethod_Commit(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QInputMethod) ConnectCursorRectangleChanged(f func()) { + if ptr.Pointer() != nil { + C.QInputMethod_ConnectCursorRectangleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "cursorRectangleChanged", f) + } +} + +func (ptr *QInputMethod) DisconnectCursorRectangleChanged() { + if ptr.Pointer() != nil { + C.QInputMethod_DisconnectCursorRectangleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "cursorRectangleChanged") + } +} + +//export callbackQInputMethodCursorRectangleChanged +func callbackQInputMethodCursorRectangleChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "cursorRectangleChanged").(func())() +} + +func (ptr *QInputMethod) Hide() { + if ptr.Pointer() != nil { + C.QInputMethod_Hide(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QInputMethod) ConnectInputDirectionChanged(f func(newDirection core.Qt__LayoutDirection)) { + if ptr.Pointer() != nil { + C.QInputMethod_ConnectInputDirectionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "inputDirectionChanged", f) + } +} + +func (ptr *QInputMethod) DisconnectInputDirectionChanged() { + if ptr.Pointer() != nil { + C.QInputMethod_DisconnectInputDirectionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "inputDirectionChanged") + } +} + +//export callbackQInputMethodInputDirectionChanged +func callbackQInputMethodInputDirectionChanged(ptrName *C.char, newDirection C.int) { + qt.GetSignal(C.GoString(ptrName), "inputDirectionChanged").(func(core.Qt__LayoutDirection))(core.Qt__LayoutDirection(newDirection)) +} + +func (ptr *QInputMethod) InvokeAction(a QInputMethod__Action, cursorPosition int) { + if ptr.Pointer() != nil { + C.QInputMethod_InvokeAction(C.QtObjectPtr(ptr.Pointer()), C.int(a), C.int(cursorPosition)) + } +} + +func (ptr *QInputMethod) ConnectKeyboardRectangleChanged(f func()) { + if ptr.Pointer() != nil { + C.QInputMethod_ConnectKeyboardRectangleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "keyboardRectangleChanged", f) + } +} + +func (ptr *QInputMethod) DisconnectKeyboardRectangleChanged() { + if ptr.Pointer() != nil { + C.QInputMethod_DisconnectKeyboardRectangleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "keyboardRectangleChanged") + } +} + +//export callbackQInputMethodKeyboardRectangleChanged +func callbackQInputMethodKeyboardRectangleChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "keyboardRectangleChanged").(func())() +} + +func (ptr *QInputMethod) ConnectLocaleChanged(f func()) { + if ptr.Pointer() != nil { + C.QInputMethod_ConnectLocaleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "localeChanged", f) + } +} + +func (ptr *QInputMethod) DisconnectLocaleChanged() { + if ptr.Pointer() != nil { + C.QInputMethod_DisconnectLocaleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "localeChanged") + } +} + +//export callbackQInputMethodLocaleChanged +func callbackQInputMethodLocaleChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "localeChanged").(func())() +} + +func QInputMethod_QueryFocusObject(query core.Qt__InputMethodQuery, argument string) string { + return C.GoString(C.QInputMethod_QInputMethod_QueryFocusObject(C.int(query), C.CString(argument))) +} + +func (ptr *QInputMethod) Reset() { + if ptr.Pointer() != nil { + C.QInputMethod_Reset(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QInputMethod) SetInputItemRectangle(rect core.QRectFITF) { + if ptr.Pointer() != nil { + C.QInputMethod_SetInputItemRectangle(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rect))) + } +} + +func (ptr *QInputMethod) SetInputItemTransform(transform QTransformITF) { + if ptr.Pointer() != nil { + C.QInputMethod_SetInputItemTransform(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTransform(transform))) + } +} + +func (ptr *QInputMethod) SetVisible(visible bool) { + if ptr.Pointer() != nil { + C.QInputMethod_SetVisible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(visible))) + } +} + +func (ptr *QInputMethod) Show() { + if ptr.Pointer() != nil { + C.QInputMethod_Show(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QInputMethod) Update(queries core.Qt__InputMethodQuery) { + if ptr.Pointer() != nil { + C.QInputMethod_Update(C.QtObjectPtr(ptr.Pointer()), C.int(queries)) + } +} + +func (ptr *QInputMethod) ConnectVisibleChanged(f func()) { + if ptr.Pointer() != nil { + C.QInputMethod_ConnectVisibleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "visibleChanged", f) + } +} + +func (ptr *QInputMethod) DisconnectVisibleChanged() { + if ptr.Pointer() != nil { + C.QInputMethod_DisconnectVisibleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "visibleChanged") + } +} + +//export callbackQInputMethodVisibleChanged +func callbackQInputMethodVisibleChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "visibleChanged").(func())() +} diff --git a/gui/qinputmethod.h b/gui/qinputmethod.h new file mode 100755 index 00000000..5480995d --- /dev/null +++ b/gui/qinputmethod.h @@ -0,0 +1,34 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QInputMethod_InputDirection(QtObjectPtr ptr); +int QInputMethod_IsAnimating(QtObjectPtr ptr); +int QInputMethod_IsVisible(QtObjectPtr ptr); +void QInputMethod_ConnectAnimatingChanged(QtObjectPtr ptr); +void QInputMethod_DisconnectAnimatingChanged(QtObjectPtr ptr); +void QInputMethod_Commit(QtObjectPtr ptr); +void QInputMethod_ConnectCursorRectangleChanged(QtObjectPtr ptr); +void QInputMethod_DisconnectCursorRectangleChanged(QtObjectPtr ptr); +void QInputMethod_Hide(QtObjectPtr ptr); +void QInputMethod_ConnectInputDirectionChanged(QtObjectPtr ptr); +void QInputMethod_DisconnectInputDirectionChanged(QtObjectPtr ptr); +void QInputMethod_InvokeAction(QtObjectPtr ptr, int a, int cursorPosition); +void QInputMethod_ConnectKeyboardRectangleChanged(QtObjectPtr ptr); +void QInputMethod_DisconnectKeyboardRectangleChanged(QtObjectPtr ptr); +void QInputMethod_ConnectLocaleChanged(QtObjectPtr ptr); +void QInputMethod_DisconnectLocaleChanged(QtObjectPtr ptr); +char* QInputMethod_QInputMethod_QueryFocusObject(int query, char* argument); +void QInputMethod_Reset(QtObjectPtr ptr); +void QInputMethod_SetInputItemRectangle(QtObjectPtr ptr, QtObjectPtr rect); +void QInputMethod_SetInputItemTransform(QtObjectPtr ptr, QtObjectPtr transform); +void QInputMethod_SetVisible(QtObjectPtr ptr, int visible); +void QInputMethod_Show(QtObjectPtr ptr); +void QInputMethod_Update(QtObjectPtr ptr, int queries); +void QInputMethod_ConnectVisibleChanged(QtObjectPtr ptr); +void QInputMethod_DisconnectVisibleChanged(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qinputmethodevent.cpp b/gui/qinputmethodevent.cpp new file mode 100755 index 00000000..f0f8e2b1 --- /dev/null +++ b/gui/qinputmethodevent.cpp @@ -0,0 +1,41 @@ +#include "qinputmethodevent.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQInputMethodEvent: public QInputMethodEvent { +public: +}; + +QtObjectPtr QInputMethodEvent_NewQInputMethodEvent(){ + return new QInputMethodEvent(); +} + +QtObjectPtr QInputMethodEvent_NewQInputMethodEvent3(QtObjectPtr other){ + return new QInputMethodEvent(*static_cast(other)); +} + +char* QInputMethodEvent_CommitString(QtObjectPtr ptr){ + return static_cast(ptr)->commitString().toUtf8().data(); +} + +char* QInputMethodEvent_PreeditString(QtObjectPtr ptr){ + return static_cast(ptr)->preeditString().toUtf8().data(); +} + +int QInputMethodEvent_ReplacementLength(QtObjectPtr ptr){ + return static_cast(ptr)->replacementLength(); +} + +int QInputMethodEvent_ReplacementStart(QtObjectPtr ptr){ + return static_cast(ptr)->replacementStart(); +} + +void QInputMethodEvent_SetCommitString(QtObjectPtr ptr, char* commitString, int replaceFrom, int replaceLength){ + static_cast(ptr)->setCommitString(QString(commitString), replaceFrom, replaceLength); +} + diff --git a/gui/qinputmethodevent.go b/gui/qinputmethodevent.go new file mode 100755 index 00000000..98cd636f --- /dev/null +++ b/gui/qinputmethodevent.go @@ -0,0 +1,87 @@ +package gui + +//#include "qinputmethodevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QInputMethodEvent struct { + core.QEvent +} + +type QInputMethodEventITF interface { + core.QEventITF + QInputMethodEventPTR() *QInputMethodEvent +} + +func PointerFromQInputMethodEvent(ptr QInputMethodEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QInputMethodEventPTR().Pointer() + } + return nil +} + +func QInputMethodEventFromPointer(ptr unsafe.Pointer) *QInputMethodEvent { + var n = new(QInputMethodEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QInputMethodEvent) QInputMethodEventPTR() *QInputMethodEvent { + return ptr +} + +//QInputMethodEvent::AttributeType +type QInputMethodEvent__AttributeType int + +var ( + QInputMethodEvent__TextFormat = QInputMethodEvent__AttributeType(0) + QInputMethodEvent__Cursor = QInputMethodEvent__AttributeType(1) + QInputMethodEvent__Language = QInputMethodEvent__AttributeType(2) + QInputMethodEvent__Ruby = QInputMethodEvent__AttributeType(3) + QInputMethodEvent__Selection = QInputMethodEvent__AttributeType(4) +) + +func NewQInputMethodEvent() *QInputMethodEvent { + return QInputMethodEventFromPointer(unsafe.Pointer(C.QInputMethodEvent_NewQInputMethodEvent())) +} + +func NewQInputMethodEvent3(other QInputMethodEventITF) *QInputMethodEvent { + return QInputMethodEventFromPointer(unsafe.Pointer(C.QInputMethodEvent_NewQInputMethodEvent3(C.QtObjectPtr(PointerFromQInputMethodEvent(other))))) +} + +func (ptr *QInputMethodEvent) CommitString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QInputMethodEvent_CommitString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QInputMethodEvent) PreeditString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QInputMethodEvent_PreeditString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QInputMethodEvent) ReplacementLength() int { + if ptr.Pointer() != nil { + return int(C.QInputMethodEvent_ReplacementLength(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QInputMethodEvent) ReplacementStart() int { + if ptr.Pointer() != nil { + return int(C.QInputMethodEvent_ReplacementStart(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QInputMethodEvent) SetCommitString(commitString string, replaceFrom int, replaceLength int) { + if ptr.Pointer() != nil { + C.QInputMethodEvent_SetCommitString(C.QtObjectPtr(ptr.Pointer()), C.CString(commitString), C.int(replaceFrom), C.int(replaceLength)) + } +} diff --git a/gui/qinputmethodevent.h b/gui/qinputmethodevent.h new file mode 100755 index 00000000..5c01845c --- /dev/null +++ b/gui/qinputmethodevent.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QInputMethodEvent_NewQInputMethodEvent(); +QtObjectPtr QInputMethodEvent_NewQInputMethodEvent3(QtObjectPtr other); +char* QInputMethodEvent_CommitString(QtObjectPtr ptr); +char* QInputMethodEvent_PreeditString(QtObjectPtr ptr); +int QInputMethodEvent_ReplacementLength(QtObjectPtr ptr); +int QInputMethodEvent_ReplacementStart(QtObjectPtr ptr); +void QInputMethodEvent_SetCommitString(QtObjectPtr ptr, char* commitString, int replaceFrom, int replaceLength); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qinputmethodqueryevent.cpp b/gui/qinputmethodqueryevent.cpp new file mode 100755 index 00000000..cfc13cfc --- /dev/null +++ b/gui/qinputmethodqueryevent.cpp @@ -0,0 +1,29 @@ +#include "qinputmethodqueryevent.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQInputMethodQueryEvent: public QInputMethodQueryEvent { +public: +}; + +QtObjectPtr QInputMethodQueryEvent_NewQInputMethodQueryEvent(int queries){ + return new QInputMethodQueryEvent(static_cast(queries)); +} + +int QInputMethodQueryEvent_Queries(QtObjectPtr ptr){ + return static_cast(ptr)->queries(); +} + +void QInputMethodQueryEvent_SetValue(QtObjectPtr ptr, int query, char* value){ + static_cast(ptr)->setValue(static_cast(query), QVariant(value)); +} + +char* QInputMethodQueryEvent_Value(QtObjectPtr ptr, int query){ + return static_cast(ptr)->value(static_cast(query)).toString().toUtf8().data(); +} + diff --git a/gui/qinputmethodqueryevent.go b/gui/qinputmethodqueryevent.go new file mode 100755 index 00000000..ad064d38 --- /dev/null +++ b/gui/qinputmethodqueryevent.go @@ -0,0 +1,58 @@ +package gui + +//#include "qinputmethodqueryevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QInputMethodQueryEvent struct { + core.QEvent +} + +type QInputMethodQueryEventITF interface { + core.QEventITF + QInputMethodQueryEventPTR() *QInputMethodQueryEvent +} + +func PointerFromQInputMethodQueryEvent(ptr QInputMethodQueryEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QInputMethodQueryEventPTR().Pointer() + } + return nil +} + +func QInputMethodQueryEventFromPointer(ptr unsafe.Pointer) *QInputMethodQueryEvent { + var n = new(QInputMethodQueryEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QInputMethodQueryEvent) QInputMethodQueryEventPTR() *QInputMethodQueryEvent { + return ptr +} + +func NewQInputMethodQueryEvent(queries core.Qt__InputMethodQuery) *QInputMethodQueryEvent { + return QInputMethodQueryEventFromPointer(unsafe.Pointer(C.QInputMethodQueryEvent_NewQInputMethodQueryEvent(C.int(queries)))) +} + +func (ptr *QInputMethodQueryEvent) Queries() core.Qt__InputMethodQuery { + if ptr.Pointer() != nil { + return core.Qt__InputMethodQuery(C.QInputMethodQueryEvent_Queries(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QInputMethodQueryEvent) SetValue(query core.Qt__InputMethodQuery, value string) { + if ptr.Pointer() != nil { + C.QInputMethodQueryEvent_SetValue(C.QtObjectPtr(ptr.Pointer()), C.int(query), C.CString(value)) + } +} + +func (ptr *QInputMethodQueryEvent) Value(query core.Qt__InputMethodQuery) string { + if ptr.Pointer() != nil { + return C.GoString(C.QInputMethodQueryEvent_Value(C.QtObjectPtr(ptr.Pointer()), C.int(query))) + } + return "" +} diff --git a/gui/qinputmethodqueryevent.h b/gui/qinputmethodqueryevent.h new file mode 100755 index 00000000..1b4e7df4 --- /dev/null +++ b/gui/qinputmethodqueryevent.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QInputMethodQueryEvent_NewQInputMethodQueryEvent(int queries); +int QInputMethodQueryEvent_Queries(QtObjectPtr ptr); +void QInputMethodQueryEvent_SetValue(QtObjectPtr ptr, int query, char* value); +char* QInputMethodQueryEvent_Value(QtObjectPtr ptr, int query); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qintvalidator.cpp b/gui/qintvalidator.cpp new file mode 100755 index 00000000..f3200ef1 --- /dev/null +++ b/gui/qintvalidator.cpp @@ -0,0 +1,45 @@ +#include "qintvalidator.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQIntValidator: public QIntValidator { +public: +}; + +void QIntValidator_SetBottom(QtObjectPtr ptr, int v){ + static_cast(ptr)->setBottom(v); +} + +void QIntValidator_SetTop(QtObjectPtr ptr, int v){ + static_cast(ptr)->setTop(v); +} + +QtObjectPtr QIntValidator_NewQIntValidator(QtObjectPtr parent){ + return new QIntValidator(static_cast(parent)); +} + +QtObjectPtr QIntValidator_NewQIntValidator2(int minimum, int maximum, QtObjectPtr parent){ + return new QIntValidator(minimum, maximum, static_cast(parent)); +} + +int QIntValidator_Bottom(QtObjectPtr ptr){ + return static_cast(ptr)->bottom(); +} + +void QIntValidator_SetRange(QtObjectPtr ptr, int bottom, int top){ + static_cast(ptr)->setRange(bottom, top); +} + +int QIntValidator_Top(QtObjectPtr ptr){ + return static_cast(ptr)->top(); +} + +void QIntValidator_DestroyQIntValidator(QtObjectPtr ptr){ + static_cast(ptr)->~QIntValidator(); +} + diff --git a/gui/qintvalidator.go b/gui/qintvalidator.go new file mode 100755 index 00000000..c6e53ce6 --- /dev/null +++ b/gui/qintvalidator.go @@ -0,0 +1,85 @@ +package gui + +//#include "qintvalidator.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QIntValidator struct { + QValidator +} + +type QIntValidatorITF interface { + QValidatorITF + QIntValidatorPTR() *QIntValidator +} + +func PointerFromQIntValidator(ptr QIntValidatorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QIntValidatorPTR().Pointer() + } + return nil +} + +func QIntValidatorFromPointer(ptr unsafe.Pointer) *QIntValidator { + var n = new(QIntValidator) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QIntValidator_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QIntValidator) QIntValidatorPTR() *QIntValidator { + return ptr +} + +func (ptr *QIntValidator) SetBottom(v int) { + if ptr.Pointer() != nil { + C.QIntValidator_SetBottom(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QIntValidator) SetTop(v int) { + if ptr.Pointer() != nil { + C.QIntValidator_SetTop(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func NewQIntValidator(parent core.QObjectITF) *QIntValidator { + return QIntValidatorFromPointer(unsafe.Pointer(C.QIntValidator_NewQIntValidator(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQIntValidator2(minimum int, maximum int, parent core.QObjectITF) *QIntValidator { + return QIntValidatorFromPointer(unsafe.Pointer(C.QIntValidator_NewQIntValidator2(C.int(minimum), C.int(maximum), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QIntValidator) Bottom() int { + if ptr.Pointer() != nil { + return int(C.QIntValidator_Bottom(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QIntValidator) SetRange(bottom int, top int) { + if ptr.Pointer() != nil { + C.QIntValidator_SetRange(C.QtObjectPtr(ptr.Pointer()), C.int(bottom), C.int(top)) + } +} + +func (ptr *QIntValidator) Top() int { + if ptr.Pointer() != nil { + return int(C.QIntValidator_Top(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QIntValidator) DestroyQIntValidator() { + if ptr.Pointer() != nil { + C.QIntValidator_DestroyQIntValidator(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/gui/qintvalidator.h b/gui/qintvalidator.h new file mode 100755 index 00000000..ad8c975c --- /dev/null +++ b/gui/qintvalidator.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QIntValidator_SetBottom(QtObjectPtr ptr, int v); +void QIntValidator_SetTop(QtObjectPtr ptr, int v); +QtObjectPtr QIntValidator_NewQIntValidator(QtObjectPtr parent); +QtObjectPtr QIntValidator_NewQIntValidator2(int minimum, int maximum, QtObjectPtr parent); +int QIntValidator_Bottom(QtObjectPtr ptr); +void QIntValidator_SetRange(QtObjectPtr ptr, int bottom, int top); +int QIntValidator_Top(QtObjectPtr ptr); +void QIntValidator_DestroyQIntValidator(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qkeyevent.cpp b/gui/qkeyevent.cpp new file mode 100755 index 00000000..8488b464 --- /dev/null +++ b/gui/qkeyevent.cpp @@ -0,0 +1,37 @@ +#include "qkeyevent.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQKeyEvent: public QKeyEvent { +public: +}; + +int QKeyEvent_Matches(QtObjectPtr ptr, int key){ + return static_cast(ptr)->matches(static_cast(key)); +} + +int QKeyEvent_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +int QKeyEvent_IsAutoRepeat(QtObjectPtr ptr){ + return static_cast(ptr)->isAutoRepeat(); +} + +int QKeyEvent_Key(QtObjectPtr ptr){ + return static_cast(ptr)->key(); +} + +int QKeyEvent_Modifiers(QtObjectPtr ptr){ + return static_cast(ptr)->modifiers(); +} + +char* QKeyEvent_Text(QtObjectPtr ptr){ + return static_cast(ptr)->text().toUtf8().data(); +} + diff --git a/gui/qkeyevent.go b/gui/qkeyevent.go new file mode 100755 index 00000000..18c92942 --- /dev/null +++ b/gui/qkeyevent.go @@ -0,0 +1,76 @@ +package gui + +//#include "qkeyevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QKeyEvent struct { + QInputEvent +} + +type QKeyEventITF interface { + QInputEventITF + QKeyEventPTR() *QKeyEvent +} + +func PointerFromQKeyEvent(ptr QKeyEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QKeyEventPTR().Pointer() + } + return nil +} + +func QKeyEventFromPointer(ptr unsafe.Pointer) *QKeyEvent { + var n = new(QKeyEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QKeyEvent) QKeyEventPTR() *QKeyEvent { + return ptr +} + +func (ptr *QKeyEvent) Matches(key QKeySequence__StandardKey) bool { + if ptr.Pointer() != nil { + return C.QKeyEvent_Matches(C.QtObjectPtr(ptr.Pointer()), C.int(key)) != 0 + } + return false +} + +func (ptr *QKeyEvent) Count() int { + if ptr.Pointer() != nil { + return int(C.QKeyEvent_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QKeyEvent) IsAutoRepeat() bool { + if ptr.Pointer() != nil { + return C.QKeyEvent_IsAutoRepeat(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QKeyEvent) Key() int { + if ptr.Pointer() != nil { + return int(C.QKeyEvent_Key(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QKeyEvent) Modifiers() core.Qt__KeyboardModifier { + if ptr.Pointer() != nil { + return core.Qt__KeyboardModifier(C.QKeyEvent_Modifiers(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QKeyEvent) Text() string { + if ptr.Pointer() != nil { + return C.GoString(C.QKeyEvent_Text(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/gui/qkeyevent.h b/gui/qkeyevent.h new file mode 100755 index 00000000..3298e736 --- /dev/null +++ b/gui/qkeyevent.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QKeyEvent_Matches(QtObjectPtr ptr, int key); +int QKeyEvent_Count(QtObjectPtr ptr); +int QKeyEvent_IsAutoRepeat(QtObjectPtr ptr); +int QKeyEvent_Key(QtObjectPtr ptr); +int QKeyEvent_Modifiers(QtObjectPtr ptr); +char* QKeyEvent_Text(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qkeysequence.cpp b/gui/qkeysequence.cpp new file mode 100755 index 00000000..59501d08 --- /dev/null +++ b/gui/qkeysequence.cpp @@ -0,0 +1,56 @@ +#include "qkeysequence.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQKeySequence: public QKeySequence { +public: +}; + +QtObjectPtr QKeySequence_NewQKeySequence(){ + return new QKeySequence(); +} + +QtObjectPtr QKeySequence_NewQKeySequence5(int key){ + return new QKeySequence(static_cast(key)); +} + +QtObjectPtr QKeySequence_NewQKeySequence4(QtObjectPtr keysequence){ + return new QKeySequence(*static_cast(keysequence)); +} + +QtObjectPtr QKeySequence_NewQKeySequence2(char* key, int format){ + return new QKeySequence(QString(key), static_cast(format)); +} + +QtObjectPtr QKeySequence_NewQKeySequence3(int k1, int k2, int k3, int k4){ + return new QKeySequence(k1, k2, k3, k4); +} + +int QKeySequence_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +int QKeySequence_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +int QKeySequence_Matches(QtObjectPtr ptr, QtObjectPtr seq){ + return static_cast(ptr)->matches(*static_cast(seq)); +} + +void QKeySequence_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +char* QKeySequence_ToString(QtObjectPtr ptr, int format){ + return static_cast(ptr)->toString(static_cast(format)).toUtf8().data(); +} + +void QKeySequence_DestroyQKeySequence(QtObjectPtr ptr){ + static_cast(ptr)->~QKeySequence(); +} + diff --git a/gui/qkeysequence.go b/gui/qkeysequence.go new file mode 100755 index 00000000..9f785009 --- /dev/null +++ b/gui/qkeysequence.go @@ -0,0 +1,193 @@ +package gui + +//#include "qkeysequence.h" +import "C" +import ( + "unsafe" +) + +type QKeySequence struct { + ptr unsafe.Pointer +} + +type QKeySequenceITF interface { + QKeySequencePTR() *QKeySequence +} + +func (p *QKeySequence) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QKeySequence) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQKeySequence(ptr QKeySequenceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QKeySequencePTR().Pointer() + } + return nil +} + +func QKeySequenceFromPointer(ptr unsafe.Pointer) *QKeySequence { + var n = new(QKeySequence) + n.SetPointer(ptr) + return n +} + +func (ptr *QKeySequence) QKeySequencePTR() *QKeySequence { + return ptr +} + +//QKeySequence::SequenceFormat +type QKeySequence__SequenceFormat int + +var ( + QKeySequence__NativeText = QKeySequence__SequenceFormat(0) + QKeySequence__PortableText = QKeySequence__SequenceFormat(1) +) + +//QKeySequence::SequenceMatch +type QKeySequence__SequenceMatch int + +var ( + QKeySequence__NoMatch = QKeySequence__SequenceMatch(0) + QKeySequence__PartialMatch = QKeySequence__SequenceMatch(1) + QKeySequence__ExactMatch = QKeySequence__SequenceMatch(2) +) + +//QKeySequence::StandardKey +type QKeySequence__StandardKey int + +var ( + QKeySequence__UnknownKey = QKeySequence__StandardKey(0) + QKeySequence__HelpContents = QKeySequence__StandardKey(1) + QKeySequence__WhatsThis = QKeySequence__StandardKey(2) + QKeySequence__Open = QKeySequence__StandardKey(3) + QKeySequence__Close = QKeySequence__StandardKey(4) + QKeySequence__Save = QKeySequence__StandardKey(5) + QKeySequence__New = QKeySequence__StandardKey(6) + QKeySequence__Delete = QKeySequence__StandardKey(7) + QKeySequence__Cut = QKeySequence__StandardKey(8) + QKeySequence__Copy = QKeySequence__StandardKey(9) + QKeySequence__Paste = QKeySequence__StandardKey(10) + QKeySequence__Undo = QKeySequence__StandardKey(11) + QKeySequence__Redo = QKeySequence__StandardKey(12) + QKeySequence__Back = QKeySequence__StandardKey(13) + QKeySequence__Forward = QKeySequence__StandardKey(14) + QKeySequence__Refresh = QKeySequence__StandardKey(15) + QKeySequence__ZoomIn = QKeySequence__StandardKey(16) + QKeySequence__ZoomOut = QKeySequence__StandardKey(17) + QKeySequence__Print = QKeySequence__StandardKey(18) + QKeySequence__AddTab = QKeySequence__StandardKey(19) + QKeySequence__NextChild = QKeySequence__StandardKey(20) + QKeySequence__PreviousChild = QKeySequence__StandardKey(21) + QKeySequence__Find = QKeySequence__StandardKey(22) + QKeySequence__FindNext = QKeySequence__StandardKey(23) + QKeySequence__FindPrevious = QKeySequence__StandardKey(24) + QKeySequence__Replace = QKeySequence__StandardKey(25) + QKeySequence__SelectAll = QKeySequence__StandardKey(26) + QKeySequence__Bold = QKeySequence__StandardKey(27) + QKeySequence__Italic = QKeySequence__StandardKey(28) + QKeySequence__Underline = QKeySequence__StandardKey(29) + QKeySequence__MoveToNextChar = QKeySequence__StandardKey(30) + QKeySequence__MoveToPreviousChar = QKeySequence__StandardKey(31) + QKeySequence__MoveToNextWord = QKeySequence__StandardKey(32) + QKeySequence__MoveToPreviousWord = QKeySequence__StandardKey(33) + QKeySequence__MoveToNextLine = QKeySequence__StandardKey(34) + QKeySequence__MoveToPreviousLine = QKeySequence__StandardKey(35) + QKeySequence__MoveToNextPage = QKeySequence__StandardKey(36) + QKeySequence__MoveToPreviousPage = QKeySequence__StandardKey(37) + QKeySequence__MoveToStartOfLine = QKeySequence__StandardKey(38) + QKeySequence__MoveToEndOfLine = QKeySequence__StandardKey(39) + QKeySequence__MoveToStartOfBlock = QKeySequence__StandardKey(40) + QKeySequence__MoveToEndOfBlock = QKeySequence__StandardKey(41) + QKeySequence__MoveToStartOfDocument = QKeySequence__StandardKey(42) + QKeySequence__MoveToEndOfDocument = QKeySequence__StandardKey(43) + QKeySequence__SelectNextChar = QKeySequence__StandardKey(44) + QKeySequence__SelectPreviousChar = QKeySequence__StandardKey(45) + QKeySequence__SelectNextWord = QKeySequence__StandardKey(46) + QKeySequence__SelectPreviousWord = QKeySequence__StandardKey(47) + QKeySequence__SelectNextLine = QKeySequence__StandardKey(48) + QKeySequence__SelectPreviousLine = QKeySequence__StandardKey(49) + QKeySequence__SelectNextPage = QKeySequence__StandardKey(50) + QKeySequence__SelectPreviousPage = QKeySequence__StandardKey(51) + QKeySequence__SelectStartOfLine = QKeySequence__StandardKey(52) + QKeySequence__SelectEndOfLine = QKeySequence__StandardKey(53) + QKeySequence__SelectStartOfBlock = QKeySequence__StandardKey(54) + QKeySequence__SelectEndOfBlock = QKeySequence__StandardKey(55) + QKeySequence__SelectStartOfDocument = QKeySequence__StandardKey(56) + QKeySequence__SelectEndOfDocument = QKeySequence__StandardKey(57) + QKeySequence__DeleteStartOfWord = QKeySequence__StandardKey(58) + QKeySequence__DeleteEndOfWord = QKeySequence__StandardKey(59) + QKeySequence__DeleteEndOfLine = QKeySequence__StandardKey(60) + QKeySequence__InsertParagraphSeparator = QKeySequence__StandardKey(61) + QKeySequence__InsertLineSeparator = QKeySequence__StandardKey(62) + QKeySequence__SaveAs = QKeySequence__StandardKey(63) + QKeySequence__Preferences = QKeySequence__StandardKey(64) + QKeySequence__Quit = QKeySequence__StandardKey(65) + QKeySequence__FullScreen = QKeySequence__StandardKey(66) + QKeySequence__Deselect = QKeySequence__StandardKey(67) + QKeySequence__DeleteCompleteLine = QKeySequence__StandardKey(68) + QKeySequence__Backspace = QKeySequence__StandardKey(69) +) + +func NewQKeySequence() *QKeySequence { + return QKeySequenceFromPointer(unsafe.Pointer(C.QKeySequence_NewQKeySequence())) +} + +func NewQKeySequence5(key QKeySequence__StandardKey) *QKeySequence { + return QKeySequenceFromPointer(unsafe.Pointer(C.QKeySequence_NewQKeySequence5(C.int(key)))) +} + +func NewQKeySequence4(keysequence QKeySequenceITF) *QKeySequence { + return QKeySequenceFromPointer(unsafe.Pointer(C.QKeySequence_NewQKeySequence4(C.QtObjectPtr(PointerFromQKeySequence(keysequence))))) +} + +func NewQKeySequence2(key string, format QKeySequence__SequenceFormat) *QKeySequence { + return QKeySequenceFromPointer(unsafe.Pointer(C.QKeySequence_NewQKeySequence2(C.CString(key), C.int(format)))) +} + +func NewQKeySequence3(k1 int, k2 int, k3 int, k4 int) *QKeySequence { + return QKeySequenceFromPointer(unsafe.Pointer(C.QKeySequence_NewQKeySequence3(C.int(k1), C.int(k2), C.int(k3), C.int(k4)))) +} + +func (ptr *QKeySequence) Count() int { + if ptr.Pointer() != nil { + return int(C.QKeySequence_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QKeySequence) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QKeySequence_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QKeySequence) Matches(seq QKeySequenceITF) QKeySequence__SequenceMatch { + if ptr.Pointer() != nil { + return QKeySequence__SequenceMatch(C.QKeySequence_Matches(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQKeySequence(seq)))) + } + return 0 +} + +func (ptr *QKeySequence) Swap(other QKeySequenceITF) { + if ptr.Pointer() != nil { + C.QKeySequence_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQKeySequence(other))) + } +} + +func (ptr *QKeySequence) ToString(format QKeySequence__SequenceFormat) string { + if ptr.Pointer() != nil { + return C.GoString(C.QKeySequence_ToString(C.QtObjectPtr(ptr.Pointer()), C.int(format))) + } + return "" +} + +func (ptr *QKeySequence) DestroyQKeySequence() { + if ptr.Pointer() != nil { + C.QKeySequence_DestroyQKeySequence(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qkeysequence.h b/gui/qkeysequence.h new file mode 100755 index 00000000..ca706c01 --- /dev/null +++ b/gui/qkeysequence.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QKeySequence_NewQKeySequence(); +QtObjectPtr QKeySequence_NewQKeySequence5(int key); +QtObjectPtr QKeySequence_NewQKeySequence4(QtObjectPtr keysequence); +QtObjectPtr QKeySequence_NewQKeySequence2(char* key, int format); +QtObjectPtr QKeySequence_NewQKeySequence3(int k1, int k2, int k3, int k4); +int QKeySequence_Count(QtObjectPtr ptr); +int QKeySequence_IsEmpty(QtObjectPtr ptr); +int QKeySequence_Matches(QtObjectPtr ptr, QtObjectPtr seq); +void QKeySequence_Swap(QtObjectPtr ptr, QtObjectPtr other); +char* QKeySequence_ToString(QtObjectPtr ptr, int format); +void QKeySequence_DestroyQKeySequence(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qlineargradient.cpp b/gui/qlineargradient.cpp new file mode 100755 index 00000000..493ccc4f --- /dev/null +++ b/gui/qlineargradient.cpp @@ -0,0 +1,31 @@ +#include "qlineargradient.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQLinearGradient: public QLinearGradient { +public: +}; + +QtObjectPtr QLinearGradient_NewQLinearGradient(){ + return new QLinearGradient(); +} + +QtObjectPtr QLinearGradient_NewQLinearGradient2(QtObjectPtr start, QtObjectPtr finalStop){ + return new QLinearGradient(*static_cast(start), *static_cast(finalStop)); +} + +void QLinearGradient_SetFinalStop(QtObjectPtr ptr, QtObjectPtr stop){ + static_cast(ptr)->setFinalStop(*static_cast(stop)); +} + +void QLinearGradient_SetStart(QtObjectPtr ptr, QtObjectPtr start){ + static_cast(ptr)->setStart(*static_cast(start)); +} + diff --git a/gui/qlineargradient.go b/gui/qlineargradient.go new file mode 100755 index 00000000..20214e03 --- /dev/null +++ b/gui/qlineargradient.go @@ -0,0 +1,54 @@ +package gui + +//#include "qlineargradient.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QLinearGradient struct { + QGradient +} + +type QLinearGradientITF interface { + QGradientITF + QLinearGradientPTR() *QLinearGradient +} + +func PointerFromQLinearGradient(ptr QLinearGradientITF) unsafe.Pointer { + if ptr != nil { + return ptr.QLinearGradientPTR().Pointer() + } + return nil +} + +func QLinearGradientFromPointer(ptr unsafe.Pointer) *QLinearGradient { + var n = new(QLinearGradient) + n.SetPointer(ptr) + return n +} + +func (ptr *QLinearGradient) QLinearGradientPTR() *QLinearGradient { + return ptr +} + +func NewQLinearGradient() *QLinearGradient { + return QLinearGradientFromPointer(unsafe.Pointer(C.QLinearGradient_NewQLinearGradient())) +} + +func NewQLinearGradient2(start core.QPointFITF, finalStop core.QPointFITF) *QLinearGradient { + return QLinearGradientFromPointer(unsafe.Pointer(C.QLinearGradient_NewQLinearGradient2(C.QtObjectPtr(core.PointerFromQPointF(start)), C.QtObjectPtr(core.PointerFromQPointF(finalStop))))) +} + +func (ptr *QLinearGradient) SetFinalStop(stop core.QPointFITF) { + if ptr.Pointer() != nil { + C.QLinearGradient_SetFinalStop(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(stop))) + } +} + +func (ptr *QLinearGradient) SetStart(start core.QPointFITF) { + if ptr.Pointer() != nil { + C.QLinearGradient_SetStart(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(start))) + } +} diff --git a/gui/qlineargradient.h b/gui/qlineargradient.h new file mode 100755 index 00000000..5b66d0c8 --- /dev/null +++ b/gui/qlineargradient.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QLinearGradient_NewQLinearGradient(); +QtObjectPtr QLinearGradient_NewQLinearGradient2(QtObjectPtr start, QtObjectPtr finalStop); +void QLinearGradient_SetFinalStop(QtObjectPtr ptr, QtObjectPtr stop); +void QLinearGradient_SetStart(QtObjectPtr ptr, QtObjectPtr start); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qmatrix4x4.cpp b/gui/qmatrix4x4.cpp new file mode 100755 index 00000000..20519437 --- /dev/null +++ b/gui/qmatrix4x4.cpp @@ -0,0 +1,79 @@ +#include "qmatrix4x4.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMatrix4x4: public QMatrix4x4 { +public: +}; + +QtObjectPtr QMatrix4x4_NewQMatrix4x4(){ + return new QMatrix4x4(); +} + +QtObjectPtr QMatrix4x4_NewQMatrix4x47(QtObjectPtr transform){ + return new QMatrix4x4(*static_cast(transform)); +} + +int QMatrix4x4_IsAffine(QtObjectPtr ptr){ + return static_cast(ptr)->isAffine(); +} + +int QMatrix4x4_IsIdentity(QtObjectPtr ptr){ + return static_cast(ptr)->isIdentity(); +} + +void QMatrix4x4_LookAt(QtObjectPtr ptr, QtObjectPtr eye, QtObjectPtr center, QtObjectPtr up){ + static_cast(ptr)->lookAt(*static_cast(eye), *static_cast(center), *static_cast(up)); +} + +void QMatrix4x4_Optimize(QtObjectPtr ptr){ + static_cast(ptr)->optimize(); +} + +void QMatrix4x4_Ortho2(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->ortho(*static_cast(rect)); +} + +void QMatrix4x4_Ortho3(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->ortho(*static_cast(rect)); +} + +void QMatrix4x4_Rotate2(QtObjectPtr ptr, QtObjectPtr quaternion){ + static_cast(ptr)->rotate(*static_cast(quaternion)); +} + +void QMatrix4x4_Scale(QtObjectPtr ptr, QtObjectPtr vector){ + static_cast(ptr)->scale(*static_cast(vector)); +} + +void QMatrix4x4_SetColumn(QtObjectPtr ptr, int index, QtObjectPtr value){ + static_cast(ptr)->setColumn(index, *static_cast(value)); +} + +void QMatrix4x4_SetRow(QtObjectPtr ptr, int index, QtObjectPtr value){ + static_cast(ptr)->setRow(index, *static_cast(value)); +} + +void QMatrix4x4_SetToIdentity(QtObjectPtr ptr){ + static_cast(ptr)->setToIdentity(); +} + +void QMatrix4x4_Translate(QtObjectPtr ptr, QtObjectPtr vector){ + static_cast(ptr)->translate(*static_cast(vector)); +} + +void QMatrix4x4_Viewport2(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->viewport(*static_cast(rect)); +} + diff --git a/gui/qmatrix4x4.go b/gui/qmatrix4x4.go new file mode 100755 index 00000000..5f1ec085 --- /dev/null +++ b/gui/qmatrix4x4.go @@ -0,0 +1,129 @@ +package gui + +//#include "qmatrix4x4.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QMatrix4x4 struct { + ptr unsafe.Pointer +} + +type QMatrix4x4ITF interface { + QMatrix4x4PTR() *QMatrix4x4 +} + +func (p *QMatrix4x4) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMatrix4x4) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMatrix4x4(ptr QMatrix4x4ITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMatrix4x4PTR().Pointer() + } + return nil +} + +func QMatrix4x4FromPointer(ptr unsafe.Pointer) *QMatrix4x4 { + var n = new(QMatrix4x4) + n.SetPointer(ptr) + return n +} + +func (ptr *QMatrix4x4) QMatrix4x4PTR() *QMatrix4x4 { + return ptr +} + +func NewQMatrix4x4() *QMatrix4x4 { + return QMatrix4x4FromPointer(unsafe.Pointer(C.QMatrix4x4_NewQMatrix4x4())) +} + +func NewQMatrix4x47(transform QTransformITF) *QMatrix4x4 { + return QMatrix4x4FromPointer(unsafe.Pointer(C.QMatrix4x4_NewQMatrix4x47(C.QtObjectPtr(PointerFromQTransform(transform))))) +} + +func (ptr *QMatrix4x4) IsAffine() bool { + if ptr.Pointer() != nil { + return C.QMatrix4x4_IsAffine(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMatrix4x4) IsIdentity() bool { + if ptr.Pointer() != nil { + return C.QMatrix4x4_IsIdentity(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMatrix4x4) LookAt(eye QVector3DITF, center QVector3DITF, up QVector3DITF) { + if ptr.Pointer() != nil { + C.QMatrix4x4_LookAt(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQVector3D(eye)), C.QtObjectPtr(PointerFromQVector3D(center)), C.QtObjectPtr(PointerFromQVector3D(up))) + } +} + +func (ptr *QMatrix4x4) Optimize() { + if ptr.Pointer() != nil { + C.QMatrix4x4_Optimize(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMatrix4x4) Ortho2(rect core.QRectITF) { + if ptr.Pointer() != nil { + C.QMatrix4x4_Ortho2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rect))) + } +} + +func (ptr *QMatrix4x4) Ortho3(rect core.QRectFITF) { + if ptr.Pointer() != nil { + C.QMatrix4x4_Ortho3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rect))) + } +} + +func (ptr *QMatrix4x4) Rotate2(quaternion QQuaternionITF) { + if ptr.Pointer() != nil { + C.QMatrix4x4_Rotate2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQQuaternion(quaternion))) + } +} + +func (ptr *QMatrix4x4) Scale(vector QVector3DITF) { + if ptr.Pointer() != nil { + C.QMatrix4x4_Scale(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQVector3D(vector))) + } +} + +func (ptr *QMatrix4x4) SetColumn(index int, value QVector4DITF) { + if ptr.Pointer() != nil { + C.QMatrix4x4_SetColumn(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.QtObjectPtr(PointerFromQVector4D(value))) + } +} + +func (ptr *QMatrix4x4) SetRow(index int, value QVector4DITF) { + if ptr.Pointer() != nil { + C.QMatrix4x4_SetRow(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.QtObjectPtr(PointerFromQVector4D(value))) + } +} + +func (ptr *QMatrix4x4) SetToIdentity() { + if ptr.Pointer() != nil { + C.QMatrix4x4_SetToIdentity(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMatrix4x4) Translate(vector QVector3DITF) { + if ptr.Pointer() != nil { + C.QMatrix4x4_Translate(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQVector3D(vector))) + } +} + +func (ptr *QMatrix4x4) Viewport2(rect core.QRectFITF) { + if ptr.Pointer() != nil { + C.QMatrix4x4_Viewport2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rect))) + } +} diff --git a/gui/qmatrix4x4.h b/gui/qmatrix4x4.h new file mode 100755 index 00000000..7cc3648f --- /dev/null +++ b/gui/qmatrix4x4.h @@ -0,0 +1,24 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QMatrix4x4_NewQMatrix4x4(); +QtObjectPtr QMatrix4x4_NewQMatrix4x47(QtObjectPtr transform); +int QMatrix4x4_IsAffine(QtObjectPtr ptr); +int QMatrix4x4_IsIdentity(QtObjectPtr ptr); +void QMatrix4x4_LookAt(QtObjectPtr ptr, QtObjectPtr eye, QtObjectPtr center, QtObjectPtr up); +void QMatrix4x4_Optimize(QtObjectPtr ptr); +void QMatrix4x4_Ortho2(QtObjectPtr ptr, QtObjectPtr rect); +void QMatrix4x4_Ortho3(QtObjectPtr ptr, QtObjectPtr rect); +void QMatrix4x4_Rotate2(QtObjectPtr ptr, QtObjectPtr quaternion); +void QMatrix4x4_Scale(QtObjectPtr ptr, QtObjectPtr vector); +void QMatrix4x4_SetColumn(QtObjectPtr ptr, int index, QtObjectPtr value); +void QMatrix4x4_SetRow(QtObjectPtr ptr, int index, QtObjectPtr value); +void QMatrix4x4_SetToIdentity(QtObjectPtr ptr); +void QMatrix4x4_Translate(QtObjectPtr ptr, QtObjectPtr vector); +void QMatrix4x4_Viewport2(QtObjectPtr ptr, QtObjectPtr rect); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qmouseevent.cpp b/gui/qmouseevent.cpp new file mode 100755 index 00000000..645fe884 --- /dev/null +++ b/gui/qmouseevent.cpp @@ -0,0 +1,59 @@ +#include "qmouseevent.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMouseEvent: public QMouseEvent { +public: +}; + +QtObjectPtr QMouseEvent_NewQMouseEvent(int ty, QtObjectPtr localPos, int button, int buttons, int modifiers){ + return new QMouseEvent(static_cast(ty), *static_cast(localPos), static_cast(button), static_cast(buttons), static_cast(modifiers)); +} + +QtObjectPtr QMouseEvent_NewQMouseEvent2(int ty, QtObjectPtr localPos, QtObjectPtr screenPos, int button, int buttons, int modifiers){ + return new QMouseEvent(static_cast(ty), *static_cast(localPos), *static_cast(screenPos), static_cast(button), static_cast(buttons), static_cast(modifiers)); +} + +QtObjectPtr QMouseEvent_NewQMouseEvent3(int ty, QtObjectPtr localPos, QtObjectPtr windowPos, QtObjectPtr screenPos, int button, int buttons, int modifiers){ + return new QMouseEvent(static_cast(ty), *static_cast(localPos), *static_cast(windowPos), *static_cast(screenPos), static_cast(button), static_cast(buttons), static_cast(modifiers)); +} + +int QMouseEvent_Button(QtObjectPtr ptr){ + return static_cast(ptr)->button(); +} + +int QMouseEvent_Buttons(QtObjectPtr ptr){ + return static_cast(ptr)->buttons(); +} + +int QMouseEvent_Flags(QtObjectPtr ptr){ + return static_cast(ptr)->flags(); +} + +int QMouseEvent_GlobalX(QtObjectPtr ptr){ + return static_cast(ptr)->globalX(); +} + +int QMouseEvent_GlobalY(QtObjectPtr ptr){ + return static_cast(ptr)->globalY(); +} + +int QMouseEvent_Source(QtObjectPtr ptr){ + return static_cast(ptr)->source(); +} + +int QMouseEvent_X(QtObjectPtr ptr){ + return static_cast(ptr)->x(); +} + +int QMouseEvent_Y(QtObjectPtr ptr){ + return static_cast(ptr)->y(); +} + diff --git a/gui/qmouseevent.go b/gui/qmouseevent.go new file mode 100755 index 00000000..66c3d7e4 --- /dev/null +++ b/gui/qmouseevent.go @@ -0,0 +1,102 @@ +package gui + +//#include "qmouseevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QMouseEvent struct { + QInputEvent +} + +type QMouseEventITF interface { + QInputEventITF + QMouseEventPTR() *QMouseEvent +} + +func PointerFromQMouseEvent(ptr QMouseEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMouseEventPTR().Pointer() + } + return nil +} + +func QMouseEventFromPointer(ptr unsafe.Pointer) *QMouseEvent { + var n = new(QMouseEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QMouseEvent) QMouseEventPTR() *QMouseEvent { + return ptr +} + +func NewQMouseEvent(ty core.QEvent__Type, localPos core.QPointFITF, button core.Qt__MouseButton, buttons core.Qt__MouseButton, modifiers core.Qt__KeyboardModifier) *QMouseEvent { + return QMouseEventFromPointer(unsafe.Pointer(C.QMouseEvent_NewQMouseEvent(C.int(ty), C.QtObjectPtr(core.PointerFromQPointF(localPos)), C.int(button), C.int(buttons), C.int(modifiers)))) +} + +func NewQMouseEvent2(ty core.QEvent__Type, localPos core.QPointFITF, screenPos core.QPointFITF, button core.Qt__MouseButton, buttons core.Qt__MouseButton, modifiers core.Qt__KeyboardModifier) *QMouseEvent { + return QMouseEventFromPointer(unsafe.Pointer(C.QMouseEvent_NewQMouseEvent2(C.int(ty), C.QtObjectPtr(core.PointerFromQPointF(localPos)), C.QtObjectPtr(core.PointerFromQPointF(screenPos)), C.int(button), C.int(buttons), C.int(modifiers)))) +} + +func NewQMouseEvent3(ty core.QEvent__Type, localPos core.QPointFITF, windowPos core.QPointFITF, screenPos core.QPointFITF, button core.Qt__MouseButton, buttons core.Qt__MouseButton, modifiers core.Qt__KeyboardModifier) *QMouseEvent { + return QMouseEventFromPointer(unsafe.Pointer(C.QMouseEvent_NewQMouseEvent3(C.int(ty), C.QtObjectPtr(core.PointerFromQPointF(localPos)), C.QtObjectPtr(core.PointerFromQPointF(windowPos)), C.QtObjectPtr(core.PointerFromQPointF(screenPos)), C.int(button), C.int(buttons), C.int(modifiers)))) +} + +func (ptr *QMouseEvent) Button() core.Qt__MouseButton { + if ptr.Pointer() != nil { + return core.Qt__MouseButton(C.QMouseEvent_Button(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMouseEvent) Buttons() core.Qt__MouseButton { + if ptr.Pointer() != nil { + return core.Qt__MouseButton(C.QMouseEvent_Buttons(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMouseEvent) Flags() core.Qt__MouseEventFlag { + if ptr.Pointer() != nil { + return core.Qt__MouseEventFlag(C.QMouseEvent_Flags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMouseEvent) GlobalX() int { + if ptr.Pointer() != nil { + return int(C.QMouseEvent_GlobalX(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMouseEvent) GlobalY() int { + if ptr.Pointer() != nil { + return int(C.QMouseEvent_GlobalY(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMouseEvent) Source() core.Qt__MouseEventSource { + if ptr.Pointer() != nil { + return core.Qt__MouseEventSource(C.QMouseEvent_Source(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMouseEvent) X() int { + if ptr.Pointer() != nil { + return int(C.QMouseEvent_X(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMouseEvent) Y() int { + if ptr.Pointer() != nil { + return int(C.QMouseEvent_Y(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/gui/qmouseevent.h b/gui/qmouseevent.h new file mode 100755 index 00000000..1334c060 --- /dev/null +++ b/gui/qmouseevent.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QMouseEvent_NewQMouseEvent(int ty, QtObjectPtr localPos, int button, int buttons, int modifiers); +QtObjectPtr QMouseEvent_NewQMouseEvent2(int ty, QtObjectPtr localPos, QtObjectPtr screenPos, int button, int buttons, int modifiers); +QtObjectPtr QMouseEvent_NewQMouseEvent3(int ty, QtObjectPtr localPos, QtObjectPtr windowPos, QtObjectPtr screenPos, int button, int buttons, int modifiers); +int QMouseEvent_Button(QtObjectPtr ptr); +int QMouseEvent_Buttons(QtObjectPtr ptr); +int QMouseEvent_Flags(QtObjectPtr ptr); +int QMouseEvent_GlobalX(QtObjectPtr ptr); +int QMouseEvent_GlobalY(QtObjectPtr ptr); +int QMouseEvent_Source(QtObjectPtr ptr); +int QMouseEvent_X(QtObjectPtr ptr); +int QMouseEvent_Y(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qmoveevent.cpp b/gui/qmoveevent.cpp new file mode 100755 index 00000000..4e727078 --- /dev/null +++ b/gui/qmoveevent.cpp @@ -0,0 +1,17 @@ +#include "qmoveevent.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMoveEvent: public QMoveEvent { +public: +}; + +QtObjectPtr QMoveEvent_NewQMoveEvent(QtObjectPtr pos, QtObjectPtr oldPos){ + return new QMoveEvent(*static_cast(pos), *static_cast(oldPos)); +} + diff --git a/gui/qmoveevent.go b/gui/qmoveevent.go new file mode 100755 index 00000000..33d2a631 --- /dev/null +++ b/gui/qmoveevent.go @@ -0,0 +1,38 @@ +package gui + +//#include "qmoveevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QMoveEvent struct { + core.QEvent +} + +type QMoveEventITF interface { + core.QEventITF + QMoveEventPTR() *QMoveEvent +} + +func PointerFromQMoveEvent(ptr QMoveEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMoveEventPTR().Pointer() + } + return nil +} + +func QMoveEventFromPointer(ptr unsafe.Pointer) *QMoveEvent { + var n = new(QMoveEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QMoveEvent) QMoveEventPTR() *QMoveEvent { + return ptr +} + +func NewQMoveEvent(pos core.QPointITF, oldPos core.QPointITF) *QMoveEvent { + return QMoveEventFromPointer(unsafe.Pointer(C.QMoveEvent_NewQMoveEvent(C.QtObjectPtr(core.PointerFromQPoint(pos)), C.QtObjectPtr(core.PointerFromQPoint(oldPos))))) +} diff --git a/gui/qmoveevent.h b/gui/qmoveevent.h new file mode 100755 index 00000000..c61d9f88 --- /dev/null +++ b/gui/qmoveevent.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QMoveEvent_NewQMoveEvent(QtObjectPtr pos, QtObjectPtr oldPos); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qmovie.cpp b/gui/qmovie.cpp new file mode 100755 index 00000000..6c95e99c --- /dev/null +++ b/gui/qmovie.cpp @@ -0,0 +1,165 @@ +#include "qmovie.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMovie: public QMovie { +public: +void Signal_Error(QImageReader::ImageReaderError error){callbackQMovieError(this->objectName().toUtf8().data(), error);}; +void Signal_Finished(){callbackQMovieFinished(this->objectName().toUtf8().data());}; +void Signal_FrameChanged(int frameNumber){callbackQMovieFrameChanged(this->objectName().toUtf8().data(), frameNumber);}; +void Signal_Started(){callbackQMovieStarted(this->objectName().toUtf8().data());}; +void Signal_StateChanged(QMovie::MovieState state){callbackQMovieStateChanged(this->objectName().toUtf8().data(), state);}; +}; + +int QMovie_CacheMode(QtObjectPtr ptr){ + return static_cast(ptr)->cacheMode(); +} + +void QMovie_SetCacheMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setCacheMode(static_cast(mode)); +} + +void QMovie_SetSpeed(QtObjectPtr ptr, int percentSpeed){ + QMetaObject::invokeMethod(static_cast(ptr), "setSpeed", Q_ARG(int, percentSpeed)); +} + +int QMovie_Speed(QtObjectPtr ptr){ + return static_cast(ptr)->speed(); +} + +QtObjectPtr QMovie_NewQMovie2(QtObjectPtr device, QtObjectPtr format, QtObjectPtr parent){ + return new QMovie(static_cast(device), *static_cast(format), static_cast(parent)); +} + +QtObjectPtr QMovie_NewQMovie(QtObjectPtr parent){ + return new QMovie(static_cast(parent)); +} + +QtObjectPtr QMovie_NewQMovie3(char* fileName, QtObjectPtr format, QtObjectPtr parent){ + return new QMovie(QString(fileName), *static_cast(format), static_cast(parent)); +} + +int QMovie_CurrentFrameNumber(QtObjectPtr ptr){ + return static_cast(ptr)->currentFrameNumber(); +} + +QtObjectPtr QMovie_Device(QtObjectPtr ptr){ + return static_cast(ptr)->device(); +} + +void QMovie_ConnectError(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMovie::error), static_cast(ptr), static_cast(&MyQMovie::Signal_Error));; +} + +void QMovie_DisconnectError(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMovie::error), static_cast(ptr), static_cast(&MyQMovie::Signal_Error));; +} + +char* QMovie_FileName(QtObjectPtr ptr){ + return static_cast(ptr)->fileName().toUtf8().data(); +} + +void QMovie_ConnectFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMovie::finished), static_cast(ptr), static_cast(&MyQMovie::Signal_Finished));; +} + +void QMovie_DisconnectFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMovie::finished), static_cast(ptr), static_cast(&MyQMovie::Signal_Finished));; +} + +void QMovie_ConnectFrameChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMovie::frameChanged), static_cast(ptr), static_cast(&MyQMovie::Signal_FrameChanged));; +} + +void QMovie_DisconnectFrameChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMovie::frameChanged), static_cast(ptr), static_cast(&MyQMovie::Signal_FrameChanged));; +} + +int QMovie_FrameCount(QtObjectPtr ptr){ + return static_cast(ptr)->frameCount(); +} + +int QMovie_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QMovie_JumpToFrame(QtObjectPtr ptr, int frameNumber){ + return static_cast(ptr)->jumpToFrame(frameNumber); +} + +int QMovie_JumpToNextFrame(QtObjectPtr ptr){ + return QMetaObject::invokeMethod(static_cast(ptr), "jumpToNextFrame"); +} + +int QMovie_LoopCount(QtObjectPtr ptr){ + return static_cast(ptr)->loopCount(); +} + +int QMovie_NextFrameDelay(QtObjectPtr ptr){ + return static_cast(ptr)->nextFrameDelay(); +} + +void QMovie_SetBackgroundColor(QtObjectPtr ptr, QtObjectPtr color){ + static_cast(ptr)->setBackgroundColor(*static_cast(color)); +} + +void QMovie_SetDevice(QtObjectPtr ptr, QtObjectPtr device){ + static_cast(ptr)->setDevice(static_cast(device)); +} + +void QMovie_SetFileName(QtObjectPtr ptr, char* fileName){ + static_cast(ptr)->setFileName(QString(fileName)); +} + +void QMovie_SetFormat(QtObjectPtr ptr, QtObjectPtr format){ + static_cast(ptr)->setFormat(*static_cast(format)); +} + +void QMovie_SetPaused(QtObjectPtr ptr, int paused){ + QMetaObject::invokeMethod(static_cast(ptr), "setPaused", Q_ARG(bool, paused != 0)); +} + +void QMovie_SetScaledSize(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->setScaledSize(*static_cast(size)); +} + +void QMovie_Start(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "start"); +} + +void QMovie_ConnectStarted(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMovie::started), static_cast(ptr), static_cast(&MyQMovie::Signal_Started));; +} + +void QMovie_DisconnectStarted(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMovie::started), static_cast(ptr), static_cast(&MyQMovie::Signal_Started));; +} + +void QMovie_ConnectStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMovie::stateChanged), static_cast(ptr), static_cast(&MyQMovie::Signal_StateChanged));; +} + +void QMovie_DisconnectStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMovie::stateChanged), static_cast(ptr), static_cast(&MyQMovie::Signal_StateChanged));; +} + +void QMovie_Stop(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "stop"); +} + +void QMovie_DestroyQMovie(QtObjectPtr ptr){ + static_cast(ptr)->~QMovie(); +} + diff --git a/gui/qmovie.go b/gui/qmovie.go new file mode 100755 index 00000000..d82057a9 --- /dev/null +++ b/gui/qmovie.go @@ -0,0 +1,306 @@ +package gui + +//#include "qmovie.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QMovie struct { + core.QObject +} + +type QMovieITF interface { + core.QObjectITF + QMoviePTR() *QMovie +} + +func PointerFromQMovie(ptr QMovieITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMoviePTR().Pointer() + } + return nil +} + +func QMovieFromPointer(ptr unsafe.Pointer) *QMovie { + var n = new(QMovie) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMovie_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMovie) QMoviePTR() *QMovie { + return ptr +} + +//QMovie::CacheMode +type QMovie__CacheMode int + +var ( + QMovie__CacheNone = QMovie__CacheMode(0) + QMovie__CacheAll = QMovie__CacheMode(1) +) + +//QMovie::MovieState +type QMovie__MovieState int + +var ( + QMovie__NotRunning = QMovie__MovieState(0) + QMovie__Paused = QMovie__MovieState(1) + QMovie__Running = QMovie__MovieState(2) +) + +func (ptr *QMovie) CacheMode() QMovie__CacheMode { + if ptr.Pointer() != nil { + return QMovie__CacheMode(C.QMovie_CacheMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMovie) SetCacheMode(mode QMovie__CacheMode) { + if ptr.Pointer() != nil { + C.QMovie_SetCacheMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QMovie) SetSpeed(percentSpeed int) { + if ptr.Pointer() != nil { + C.QMovie_SetSpeed(C.QtObjectPtr(ptr.Pointer()), C.int(percentSpeed)) + } +} + +func (ptr *QMovie) Speed() int { + if ptr.Pointer() != nil { + return int(C.QMovie_Speed(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQMovie2(device core.QIODeviceITF, format core.QByteArrayITF, parent core.QObjectITF) *QMovie { + return QMovieFromPointer(unsafe.Pointer(C.QMovie_NewQMovie2(C.QtObjectPtr(core.PointerFromQIODevice(device)), C.QtObjectPtr(core.PointerFromQByteArray(format)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQMovie(parent core.QObjectITF) *QMovie { + return QMovieFromPointer(unsafe.Pointer(C.QMovie_NewQMovie(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQMovie3(fileName string, format core.QByteArrayITF, parent core.QObjectITF) *QMovie { + return QMovieFromPointer(unsafe.Pointer(C.QMovie_NewQMovie3(C.CString(fileName), C.QtObjectPtr(core.PointerFromQByteArray(format)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QMovie) CurrentFrameNumber() int { + if ptr.Pointer() != nil { + return int(C.QMovie_CurrentFrameNumber(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMovie) Device() *core.QIODevice { + if ptr.Pointer() != nil { + return core.QIODeviceFromPointer(unsafe.Pointer(C.QMovie_Device(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMovie) ConnectError(f func(error QImageReader__ImageReaderError)) { + if ptr.Pointer() != nil { + C.QMovie_ConnectError(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "error", f) + } +} + +func (ptr *QMovie) DisconnectError() { + if ptr.Pointer() != nil { + C.QMovie_DisconnectError(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "error") + } +} + +//export callbackQMovieError +func callbackQMovieError(ptrName *C.char, error C.int) { + qt.GetSignal(C.GoString(ptrName), "error").(func(QImageReader__ImageReaderError))(QImageReader__ImageReaderError(error)) +} + +func (ptr *QMovie) FileName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMovie_FileName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMovie) ConnectFinished(f func()) { + if ptr.Pointer() != nil { + C.QMovie_ConnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "finished", f) + } +} + +func (ptr *QMovie) DisconnectFinished() { + if ptr.Pointer() != nil { + C.QMovie_DisconnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "finished") + } +} + +//export callbackQMovieFinished +func callbackQMovieFinished(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "finished").(func())() +} + +func (ptr *QMovie) ConnectFrameChanged(f func(frameNumber int)) { + if ptr.Pointer() != nil { + C.QMovie_ConnectFrameChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "frameChanged", f) + } +} + +func (ptr *QMovie) DisconnectFrameChanged() { + if ptr.Pointer() != nil { + C.QMovie_DisconnectFrameChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "frameChanged") + } +} + +//export callbackQMovieFrameChanged +func callbackQMovieFrameChanged(ptrName *C.char, frameNumber C.int) { + qt.GetSignal(C.GoString(ptrName), "frameChanged").(func(int))(int(frameNumber)) +} + +func (ptr *QMovie) FrameCount() int { + if ptr.Pointer() != nil { + return int(C.QMovie_FrameCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMovie) IsValid() bool { + if ptr.Pointer() != nil { + return C.QMovie_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMovie) JumpToFrame(frameNumber int) bool { + if ptr.Pointer() != nil { + return C.QMovie_JumpToFrame(C.QtObjectPtr(ptr.Pointer()), C.int(frameNumber)) != 0 + } + return false +} + +func (ptr *QMovie) JumpToNextFrame() bool { + if ptr.Pointer() != nil { + return C.QMovie_JumpToNextFrame(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMovie) LoopCount() int { + if ptr.Pointer() != nil { + return int(C.QMovie_LoopCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMovie) NextFrameDelay() int { + if ptr.Pointer() != nil { + return int(C.QMovie_NextFrameDelay(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMovie) SetBackgroundColor(color QColorITF) { + if ptr.Pointer() != nil { + C.QMovie_SetBackgroundColor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQColor(color))) + } +} + +func (ptr *QMovie) SetDevice(device core.QIODeviceITF) { + if ptr.Pointer() != nil { + C.QMovie_SetDevice(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQIODevice(device))) + } +} + +func (ptr *QMovie) SetFileName(fileName string) { + if ptr.Pointer() != nil { + C.QMovie_SetFileName(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName)) + } +} + +func (ptr *QMovie) SetFormat(format core.QByteArrayITF) { + if ptr.Pointer() != nil { + C.QMovie_SetFormat(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(format))) + } +} + +func (ptr *QMovie) SetPaused(paused bool) { + if ptr.Pointer() != nil { + C.QMovie_SetPaused(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(paused))) + } +} + +func (ptr *QMovie) SetScaledSize(size core.QSizeITF) { + if ptr.Pointer() != nil { + C.QMovie_SetScaledSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(size))) + } +} + +func (ptr *QMovie) Start() { + if ptr.Pointer() != nil { + C.QMovie_Start(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMovie) ConnectStarted(f func()) { + if ptr.Pointer() != nil { + C.QMovie_ConnectStarted(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "started", f) + } +} + +func (ptr *QMovie) DisconnectStarted() { + if ptr.Pointer() != nil { + C.QMovie_DisconnectStarted(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "started") + } +} + +//export callbackQMovieStarted +func callbackQMovieStarted(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "started").(func())() +} + +func (ptr *QMovie) ConnectStateChanged(f func(state QMovie__MovieState)) { + if ptr.Pointer() != nil { + C.QMovie_ConnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stateChanged", f) + } +} + +func (ptr *QMovie) DisconnectStateChanged() { + if ptr.Pointer() != nil { + C.QMovie_DisconnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stateChanged") + } +} + +//export callbackQMovieStateChanged +func callbackQMovieStateChanged(ptrName *C.char, state C.int) { + qt.GetSignal(C.GoString(ptrName), "stateChanged").(func(QMovie__MovieState))(QMovie__MovieState(state)) +} + +func (ptr *QMovie) Stop() { + if ptr.Pointer() != nil { + C.QMovie_Stop(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMovie) DestroyQMovie() { + if ptr.Pointer() != nil { + C.QMovie_DestroyQMovie(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/gui/qmovie.h b/gui/qmovie.h new file mode 100755 index 00000000..8e253d08 --- /dev/null +++ b/gui/qmovie.h @@ -0,0 +1,44 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QMovie_CacheMode(QtObjectPtr ptr); +void QMovie_SetCacheMode(QtObjectPtr ptr, int mode); +void QMovie_SetSpeed(QtObjectPtr ptr, int percentSpeed); +int QMovie_Speed(QtObjectPtr ptr); +QtObjectPtr QMovie_NewQMovie2(QtObjectPtr device, QtObjectPtr format, QtObjectPtr parent); +QtObjectPtr QMovie_NewQMovie(QtObjectPtr parent); +QtObjectPtr QMovie_NewQMovie3(char* fileName, QtObjectPtr format, QtObjectPtr parent); +int QMovie_CurrentFrameNumber(QtObjectPtr ptr); +QtObjectPtr QMovie_Device(QtObjectPtr ptr); +void QMovie_ConnectError(QtObjectPtr ptr); +void QMovie_DisconnectError(QtObjectPtr ptr); +char* QMovie_FileName(QtObjectPtr ptr); +void QMovie_ConnectFinished(QtObjectPtr ptr); +void QMovie_DisconnectFinished(QtObjectPtr ptr); +void QMovie_ConnectFrameChanged(QtObjectPtr ptr); +void QMovie_DisconnectFrameChanged(QtObjectPtr ptr); +int QMovie_FrameCount(QtObjectPtr ptr); +int QMovie_IsValid(QtObjectPtr ptr); +int QMovie_JumpToFrame(QtObjectPtr ptr, int frameNumber); +int QMovie_JumpToNextFrame(QtObjectPtr ptr); +int QMovie_LoopCount(QtObjectPtr ptr); +int QMovie_NextFrameDelay(QtObjectPtr ptr); +void QMovie_SetBackgroundColor(QtObjectPtr ptr, QtObjectPtr color); +void QMovie_SetDevice(QtObjectPtr ptr, QtObjectPtr device); +void QMovie_SetFileName(QtObjectPtr ptr, char* fileName); +void QMovie_SetFormat(QtObjectPtr ptr, QtObjectPtr format); +void QMovie_SetPaused(QtObjectPtr ptr, int paused); +void QMovie_SetScaledSize(QtObjectPtr ptr, QtObjectPtr size); +void QMovie_Start(QtObjectPtr ptr); +void QMovie_ConnectStarted(QtObjectPtr ptr); +void QMovie_DisconnectStarted(QtObjectPtr ptr); +void QMovie_ConnectStateChanged(QtObjectPtr ptr); +void QMovie_DisconnectStateChanged(QtObjectPtr ptr); +void QMovie_Stop(QtObjectPtr ptr); +void QMovie_DestroyQMovie(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qnativegestureevent.cpp b/gui/qnativegestureevent.cpp new file mode 100755 index 00000000..76385b18 --- /dev/null +++ b/gui/qnativegestureevent.cpp @@ -0,0 +1,16 @@ +#include "qnativegestureevent.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQNativeGestureEvent: public QNativeGestureEvent { +public: +}; + +int QNativeGestureEvent_GestureType(QtObjectPtr ptr){ + return static_cast(ptr)->gestureType(); +} + diff --git a/gui/qnativegestureevent.go b/gui/qnativegestureevent.go new file mode 100755 index 00000000..229f3471 --- /dev/null +++ b/gui/qnativegestureevent.go @@ -0,0 +1,41 @@ +package gui + +//#include "qnativegestureevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QNativeGestureEvent struct { + QInputEvent +} + +type QNativeGestureEventITF interface { + QInputEventITF + QNativeGestureEventPTR() *QNativeGestureEvent +} + +func PointerFromQNativeGestureEvent(ptr QNativeGestureEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QNativeGestureEventPTR().Pointer() + } + return nil +} + +func QNativeGestureEventFromPointer(ptr unsafe.Pointer) *QNativeGestureEvent { + var n = new(QNativeGestureEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QNativeGestureEvent) QNativeGestureEventPTR() *QNativeGestureEvent { + return ptr +} + +func (ptr *QNativeGestureEvent) GestureType() core.Qt__NativeGestureType { + if ptr.Pointer() != nil { + return core.Qt__NativeGestureType(C.QNativeGestureEvent_GestureType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/gui/qnativegestureevent.h b/gui/qnativegestureevent.h new file mode 100755 index 00000000..21482253 --- /dev/null +++ b/gui/qnativegestureevent.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QNativeGestureEvent_GestureType(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qoffscreensurface.cpp b/gui/qoffscreensurface.cpp new file mode 100755 index 00000000..c4cd83b5 --- /dev/null +++ b/gui/qoffscreensurface.cpp @@ -0,0 +1,61 @@ +#include "qoffscreensurface.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOffscreenSurface: public QOffscreenSurface { +public: +void Signal_ScreenChanged(QScreen * screen){callbackQOffscreenSurfaceScreenChanged(this->objectName().toUtf8().data(), screen);}; +}; + +QtObjectPtr QOffscreenSurface_NewQOffscreenSurface(QtObjectPtr targetScreen){ + return new QOffscreenSurface(static_cast(targetScreen)); +} + +void QOffscreenSurface_Create(QtObjectPtr ptr){ + static_cast(ptr)->create(); +} + +void QOffscreenSurface_Destroy(QtObjectPtr ptr){ + static_cast(ptr)->destroy(); +} + +int QOffscreenSurface_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +QtObjectPtr QOffscreenSurface_Screen(QtObjectPtr ptr){ + return static_cast(ptr)->screen(); +} + +void QOffscreenSurface_ConnectScreenChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QOffscreenSurface::screenChanged), static_cast(ptr), static_cast(&MyQOffscreenSurface::Signal_ScreenChanged));; +} + +void QOffscreenSurface_DisconnectScreenChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QOffscreenSurface::screenChanged), static_cast(ptr), static_cast(&MyQOffscreenSurface::Signal_ScreenChanged));; +} + +void QOffscreenSurface_SetFormat(QtObjectPtr ptr, QtObjectPtr format){ + static_cast(ptr)->setFormat(*static_cast(format)); +} + +void QOffscreenSurface_SetScreen(QtObjectPtr ptr, QtObjectPtr newScreen){ + static_cast(ptr)->setScreen(static_cast(newScreen)); +} + +int QOffscreenSurface_SurfaceType(QtObjectPtr ptr){ + return static_cast(ptr)->surfaceType(); +} + +void QOffscreenSurface_DestroyQOffscreenSurface(QtObjectPtr ptr){ + static_cast(ptr)->~QOffscreenSurface(); +} + diff --git a/gui/qoffscreensurface.go b/gui/qoffscreensurface.go new file mode 100755 index 00000000..5e07a660 --- /dev/null +++ b/gui/qoffscreensurface.go @@ -0,0 +1,124 @@ +package gui + +//#include "qoffscreensurface.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QOffscreenSurface struct { + core.QObject + QSurface +} + +type QOffscreenSurfaceITF interface { + core.QObjectITF + QSurfaceITF + QOffscreenSurfacePTR() *QOffscreenSurface +} + +func (p *QOffscreenSurface) Pointer() unsafe.Pointer { + return p.QObjectPTR().Pointer() +} + +func (p *QOffscreenSurface) SetPointer(ptr unsafe.Pointer) { + p.QObjectPTR().SetPointer(ptr) + p.QSurfacePTR().SetPointer(ptr) +} + +func PointerFromQOffscreenSurface(ptr QOffscreenSurfaceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOffscreenSurfacePTR().Pointer() + } + return nil +} + +func QOffscreenSurfaceFromPointer(ptr unsafe.Pointer) *QOffscreenSurface { + var n = new(QOffscreenSurface) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QOffscreenSurface_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QOffscreenSurface) QOffscreenSurfacePTR() *QOffscreenSurface { + return ptr +} + +func NewQOffscreenSurface(targetScreen QScreenITF) *QOffscreenSurface { + return QOffscreenSurfaceFromPointer(unsafe.Pointer(C.QOffscreenSurface_NewQOffscreenSurface(C.QtObjectPtr(PointerFromQScreen(targetScreen))))) +} + +func (ptr *QOffscreenSurface) Create() { + if ptr.Pointer() != nil { + C.QOffscreenSurface_Create(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOffscreenSurface) Destroy() { + if ptr.Pointer() != nil { + C.QOffscreenSurface_Destroy(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOffscreenSurface) IsValid() bool { + if ptr.Pointer() != nil { + return C.QOffscreenSurface_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOffscreenSurface) Screen() *QScreen { + if ptr.Pointer() != nil { + return QScreenFromPointer(unsafe.Pointer(C.QOffscreenSurface_Screen(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QOffscreenSurface) ConnectScreenChanged(f func(screen QScreenITF)) { + if ptr.Pointer() != nil { + C.QOffscreenSurface_ConnectScreenChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "screenChanged", f) + } +} + +func (ptr *QOffscreenSurface) DisconnectScreenChanged() { + if ptr.Pointer() != nil { + C.QOffscreenSurface_DisconnectScreenChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "screenChanged") + } +} + +//export callbackQOffscreenSurfaceScreenChanged +func callbackQOffscreenSurfaceScreenChanged(ptrName *C.char, screen unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "screenChanged").(func(*QScreen))(QScreenFromPointer(screen)) +} + +func (ptr *QOffscreenSurface) SetFormat(format QSurfaceFormatITF) { + if ptr.Pointer() != nil { + C.QOffscreenSurface_SetFormat(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSurfaceFormat(format))) + } +} + +func (ptr *QOffscreenSurface) SetScreen(newScreen QScreenITF) { + if ptr.Pointer() != nil { + C.QOffscreenSurface_SetScreen(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQScreen(newScreen))) + } +} + +func (ptr *QOffscreenSurface) SurfaceType() QSurface__SurfaceType { + if ptr.Pointer() != nil { + return QSurface__SurfaceType(C.QOffscreenSurface_SurfaceType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOffscreenSurface) DestroyQOffscreenSurface() { + if ptr.Pointer() != nil { + C.QOffscreenSurface_DestroyQOffscreenSurface(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/gui/qoffscreensurface.h b/gui/qoffscreensurface.h new file mode 100755 index 00000000..4eb5f1f2 --- /dev/null +++ b/gui/qoffscreensurface.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOffscreenSurface_NewQOffscreenSurface(QtObjectPtr targetScreen); +void QOffscreenSurface_Create(QtObjectPtr ptr); +void QOffscreenSurface_Destroy(QtObjectPtr ptr); +int QOffscreenSurface_IsValid(QtObjectPtr ptr); +QtObjectPtr QOffscreenSurface_Screen(QtObjectPtr ptr); +void QOffscreenSurface_ConnectScreenChanged(QtObjectPtr ptr); +void QOffscreenSurface_DisconnectScreenChanged(QtObjectPtr ptr); +void QOffscreenSurface_SetFormat(QtObjectPtr ptr, QtObjectPtr format); +void QOffscreenSurface_SetScreen(QtObjectPtr ptr, QtObjectPtr newScreen); +int QOffscreenSurface_SurfaceType(QtObjectPtr ptr); +void QOffscreenSurface_DestroyQOffscreenSurface(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglbuffer.cpp b/gui/qopenglbuffer.cpp new file mode 100755 index 00000000..d20d130b --- /dev/null +++ b/gui/qopenglbuffer.cpp @@ -0,0 +1,84 @@ +#include "qopenglbuffer.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLBuffer: public QOpenGLBuffer { +public: +}; + +QtObjectPtr QOpenGLBuffer_NewQOpenGLBuffer(){ + return new QOpenGLBuffer(); +} + +QtObjectPtr QOpenGLBuffer_NewQOpenGLBuffer2(int ty){ + return new QOpenGLBuffer(static_cast(ty)); +} + +QtObjectPtr QOpenGLBuffer_NewQOpenGLBuffer3(QtObjectPtr other){ + return new QOpenGLBuffer(*static_cast(other)); +} + +void QOpenGLBuffer_Allocate2(QtObjectPtr ptr, int count){ + static_cast(ptr)->allocate(count); +} + +int QOpenGLBuffer_Bind(QtObjectPtr ptr){ + return static_cast(ptr)->bind(); +} + +int QOpenGLBuffer_Create(QtObjectPtr ptr){ + return static_cast(ptr)->create(); +} + +void QOpenGLBuffer_Destroy(QtObjectPtr ptr){ + static_cast(ptr)->destroy(); +} + +int QOpenGLBuffer_IsCreated(QtObjectPtr ptr){ + return static_cast(ptr)->isCreated(); +} + +void QOpenGLBuffer_Map(QtObjectPtr ptr, int access){ + static_cast(ptr)->map(static_cast(access)); +} + +void QOpenGLBuffer_MapRange(QtObjectPtr ptr, int offset, int count, int access){ + static_cast(ptr)->mapRange(offset, count, static_cast(access)); +} + +void QOpenGLBuffer_Release(QtObjectPtr ptr){ + static_cast(ptr)->release(); +} + +void QOpenGLBuffer_QOpenGLBuffer_Release2(int ty){ + QOpenGLBuffer::release(static_cast(ty)); +} + +void QOpenGLBuffer_SetUsagePattern(QtObjectPtr ptr, int value){ + static_cast(ptr)->setUsagePattern(static_cast(value)); +} + +int QOpenGLBuffer_Size(QtObjectPtr ptr){ + return static_cast(ptr)->size(); +} + +int QOpenGLBuffer_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +int QOpenGLBuffer_Unmap(QtObjectPtr ptr){ + return static_cast(ptr)->unmap(); +} + +int QOpenGLBuffer_UsagePattern(QtObjectPtr ptr){ + return static_cast(ptr)->usagePattern(); +} + +void QOpenGLBuffer_DestroyQOpenGLBuffer(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLBuffer(); +} + diff --git a/gui/qopenglbuffer.go b/gui/qopenglbuffer.go new file mode 100755 index 00000000..724fc479 --- /dev/null +++ b/gui/qopenglbuffer.go @@ -0,0 +1,193 @@ +package gui + +//#include "qopenglbuffer.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLBuffer struct { + ptr unsafe.Pointer +} + +type QOpenGLBufferITF interface { + QOpenGLBufferPTR() *QOpenGLBuffer +} + +func (p *QOpenGLBuffer) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QOpenGLBuffer) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQOpenGLBuffer(ptr QOpenGLBufferITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLBufferPTR().Pointer() + } + return nil +} + +func QOpenGLBufferFromPointer(ptr unsafe.Pointer) *QOpenGLBuffer { + var n = new(QOpenGLBuffer) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLBuffer) QOpenGLBufferPTR() *QOpenGLBuffer { + return ptr +} + +//QOpenGLBuffer::Access +type QOpenGLBuffer__Access int + +var ( + QOpenGLBuffer__ReadOnly = QOpenGLBuffer__Access(0x88B8) + QOpenGLBuffer__WriteOnly = QOpenGLBuffer__Access(0x88B9) + QOpenGLBuffer__ReadWrite = QOpenGLBuffer__Access(0x88BA) +) + +//QOpenGLBuffer::RangeAccessFlag +type QOpenGLBuffer__RangeAccessFlag int + +var ( + QOpenGLBuffer__RangeRead = QOpenGLBuffer__RangeAccessFlag(0x0001) + QOpenGLBuffer__RangeWrite = QOpenGLBuffer__RangeAccessFlag(0x0002) + QOpenGLBuffer__RangeInvalidate = QOpenGLBuffer__RangeAccessFlag(0x0004) + QOpenGLBuffer__RangeInvalidateBuffer = QOpenGLBuffer__RangeAccessFlag(0x0008) + QOpenGLBuffer__RangeFlushExplicit = QOpenGLBuffer__RangeAccessFlag(0x0010) + QOpenGLBuffer__RangeUnsynchronized = QOpenGLBuffer__RangeAccessFlag(0x0020) +) + +//QOpenGLBuffer::Type +type QOpenGLBuffer__Type int + +var ( + QOpenGLBuffer__VertexBuffer = QOpenGLBuffer__Type(0x8892) + QOpenGLBuffer__IndexBuffer = QOpenGLBuffer__Type(0x8893) + QOpenGLBuffer__PixelPackBuffer = QOpenGLBuffer__Type(0x88EB) + QOpenGLBuffer__PixelUnpackBuffer = QOpenGLBuffer__Type(0x88EC) +) + +//QOpenGLBuffer::UsagePattern +type QOpenGLBuffer__UsagePattern int + +var ( + QOpenGLBuffer__StreamDraw = QOpenGLBuffer__UsagePattern(0x88E0) + QOpenGLBuffer__StreamRead = QOpenGLBuffer__UsagePattern(0x88E1) + QOpenGLBuffer__StreamCopy = QOpenGLBuffer__UsagePattern(0x88E2) + QOpenGLBuffer__StaticDraw = QOpenGLBuffer__UsagePattern(0x88E4) + QOpenGLBuffer__StaticRead = QOpenGLBuffer__UsagePattern(0x88E5) + QOpenGLBuffer__StaticCopy = QOpenGLBuffer__UsagePattern(0x88E6) + QOpenGLBuffer__DynamicDraw = QOpenGLBuffer__UsagePattern(0x88E8) + QOpenGLBuffer__DynamicRead = QOpenGLBuffer__UsagePattern(0x88E9) + QOpenGLBuffer__DynamicCopy = QOpenGLBuffer__UsagePattern(0x88EA) +) + +func NewQOpenGLBuffer() *QOpenGLBuffer { + return QOpenGLBufferFromPointer(unsafe.Pointer(C.QOpenGLBuffer_NewQOpenGLBuffer())) +} + +func NewQOpenGLBuffer2(ty QOpenGLBuffer__Type) *QOpenGLBuffer { + return QOpenGLBufferFromPointer(unsafe.Pointer(C.QOpenGLBuffer_NewQOpenGLBuffer2(C.int(ty)))) +} + +func NewQOpenGLBuffer3(other QOpenGLBufferITF) *QOpenGLBuffer { + return QOpenGLBufferFromPointer(unsafe.Pointer(C.QOpenGLBuffer_NewQOpenGLBuffer3(C.QtObjectPtr(PointerFromQOpenGLBuffer(other))))) +} + +func (ptr *QOpenGLBuffer) Allocate2(count int) { + if ptr.Pointer() != nil { + C.QOpenGLBuffer_Allocate2(C.QtObjectPtr(ptr.Pointer()), C.int(count)) + } +} + +func (ptr *QOpenGLBuffer) Bind() bool { + if ptr.Pointer() != nil { + return C.QOpenGLBuffer_Bind(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLBuffer) Create() bool { + if ptr.Pointer() != nil { + return C.QOpenGLBuffer_Create(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLBuffer) Destroy() { + if ptr.Pointer() != nil { + C.QOpenGLBuffer_Destroy(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLBuffer) IsCreated() bool { + if ptr.Pointer() != nil { + return C.QOpenGLBuffer_IsCreated(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLBuffer) Map(access QOpenGLBuffer__Access) { + if ptr.Pointer() != nil { + C.QOpenGLBuffer_Map(C.QtObjectPtr(ptr.Pointer()), C.int(access)) + } +} + +func (ptr *QOpenGLBuffer) MapRange(offset int, count int, access QOpenGLBuffer__RangeAccessFlag) { + if ptr.Pointer() != nil { + C.QOpenGLBuffer_MapRange(C.QtObjectPtr(ptr.Pointer()), C.int(offset), C.int(count), C.int(access)) + } +} + +func (ptr *QOpenGLBuffer) Release() { + if ptr.Pointer() != nil { + C.QOpenGLBuffer_Release(C.QtObjectPtr(ptr.Pointer())) + } +} + +func QOpenGLBuffer_Release2(ty QOpenGLBuffer__Type) { + C.QOpenGLBuffer_QOpenGLBuffer_Release2(C.int(ty)) +} + +func (ptr *QOpenGLBuffer) SetUsagePattern(value QOpenGLBuffer__UsagePattern) { + if ptr.Pointer() != nil { + C.QOpenGLBuffer_SetUsagePattern(C.QtObjectPtr(ptr.Pointer()), C.int(value)) + } +} + +func (ptr *QOpenGLBuffer) Size() int { + if ptr.Pointer() != nil { + return int(C.QOpenGLBuffer_Size(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLBuffer) Type() QOpenGLBuffer__Type { + if ptr.Pointer() != nil { + return QOpenGLBuffer__Type(C.QOpenGLBuffer_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLBuffer) Unmap() bool { + if ptr.Pointer() != nil { + return C.QOpenGLBuffer_Unmap(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLBuffer) UsagePattern() QOpenGLBuffer__UsagePattern { + if ptr.Pointer() != nil { + return QOpenGLBuffer__UsagePattern(C.QOpenGLBuffer_UsagePattern(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLBuffer) DestroyQOpenGLBuffer() { + if ptr.Pointer() != nil { + C.QOpenGLBuffer_DestroyQOpenGLBuffer(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglbuffer.h b/gui/qopenglbuffer.h new file mode 100755 index 00000000..eded75ee --- /dev/null +++ b/gui/qopenglbuffer.h @@ -0,0 +1,27 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLBuffer_NewQOpenGLBuffer(); +QtObjectPtr QOpenGLBuffer_NewQOpenGLBuffer2(int ty); +QtObjectPtr QOpenGLBuffer_NewQOpenGLBuffer3(QtObjectPtr other); +void QOpenGLBuffer_Allocate2(QtObjectPtr ptr, int count); +int QOpenGLBuffer_Bind(QtObjectPtr ptr); +int QOpenGLBuffer_Create(QtObjectPtr ptr); +void QOpenGLBuffer_Destroy(QtObjectPtr ptr); +int QOpenGLBuffer_IsCreated(QtObjectPtr ptr); +void QOpenGLBuffer_Map(QtObjectPtr ptr, int access); +void QOpenGLBuffer_MapRange(QtObjectPtr ptr, int offset, int count, int access); +void QOpenGLBuffer_Release(QtObjectPtr ptr); +void QOpenGLBuffer_QOpenGLBuffer_Release2(int ty); +void QOpenGLBuffer_SetUsagePattern(QtObjectPtr ptr, int value); +int QOpenGLBuffer_Size(QtObjectPtr ptr); +int QOpenGLBuffer_Type(QtObjectPtr ptr); +int QOpenGLBuffer_Unmap(QtObjectPtr ptr); +int QOpenGLBuffer_UsagePattern(QtObjectPtr ptr); +void QOpenGLBuffer_DestroyQOpenGLBuffer(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglcontext.cpp b/gui/qopenglcontext.cpp new file mode 100755 index 00000000..12817af3 --- /dev/null +++ b/gui/qopenglcontext.cpp @@ -0,0 +1,131 @@ +#include "qopenglcontext.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLContext: public QOpenGLContext { +public: +void Signal_AboutToBeDestroyed(){callbackQOpenGLContextAboutToBeDestroyed(this->objectName().toUtf8().data());}; +}; + +QtObjectPtr QOpenGLContext_NewQOpenGLContext(QtObjectPtr parent){ + return new QOpenGLContext(static_cast(parent)); +} + +void QOpenGLContext_ConnectAboutToBeDestroyed(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QOpenGLContext::aboutToBeDestroyed), static_cast(ptr), static_cast(&MyQOpenGLContext::Signal_AboutToBeDestroyed));; +} + +void QOpenGLContext_DisconnectAboutToBeDestroyed(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QOpenGLContext::aboutToBeDestroyed), static_cast(ptr), static_cast(&MyQOpenGLContext::Signal_AboutToBeDestroyed));; +} + +int QOpenGLContext_QOpenGLContext_AreSharing(QtObjectPtr first, QtObjectPtr second){ + return QOpenGLContext::areSharing(static_cast(first), static_cast(second)); +} + +int QOpenGLContext_Create(QtObjectPtr ptr){ + return static_cast(ptr)->create(); +} + +QtObjectPtr QOpenGLContext_QOpenGLContext_CurrentContext(){ + return QOpenGLContext::currentContext(); +} + +void QOpenGLContext_DoneCurrent(QtObjectPtr ptr){ + static_cast(ptr)->doneCurrent(); +} + +QtObjectPtr QOpenGLContext_Functions(QtObjectPtr ptr){ + return static_cast(ptr)->functions(); +} + +QtObjectPtr QOpenGLContext_QOpenGLContext_GlobalShareContext(){ + return QOpenGLContext::globalShareContext(); +} + +int QOpenGLContext_HasExtension(QtObjectPtr ptr, QtObjectPtr extension){ + return static_cast(ptr)->hasExtension(*static_cast(extension)); +} + +int QOpenGLContext_IsOpenGLES(QtObjectPtr ptr){ + return static_cast(ptr)->isOpenGLES(); +} + +int QOpenGLContext_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QOpenGLContext_MakeCurrent(QtObjectPtr ptr, QtObjectPtr surface){ + return static_cast(ptr)->makeCurrent(static_cast(surface)); +} + +char* QOpenGLContext_NativeHandle(QtObjectPtr ptr){ + return static_cast(ptr)->nativeHandle().toString().toUtf8().data(); +} + +void QOpenGLContext_QOpenGLContext_OpenGLModuleHandle(){ + QOpenGLContext::openGLModuleHandle(); +} + +int QOpenGLContext_QOpenGLContext_OpenGLModuleType(){ + return QOpenGLContext::openGLModuleType(); +} + +void QOpenGLContext_SetFormat(QtObjectPtr ptr, QtObjectPtr format){ + static_cast(ptr)->setFormat(*static_cast(format)); +} + +void QOpenGLContext_SetNativeHandle(QtObjectPtr ptr, char* handle){ + static_cast(ptr)->setNativeHandle(QVariant(handle)); +} + +QtObjectPtr QOpenGLContext_Screen(QtObjectPtr ptr){ + return static_cast(ptr)->screen(); +} + +void QOpenGLContext_SetScreen(QtObjectPtr ptr, QtObjectPtr screen){ + static_cast(ptr)->setScreen(static_cast(screen)); +} + +void QOpenGLContext_SetShareContext(QtObjectPtr ptr, QtObjectPtr shareContext){ + static_cast(ptr)->setShareContext(static_cast(shareContext)); +} + +QtObjectPtr QOpenGLContext_ShareContext(QtObjectPtr ptr){ + return static_cast(ptr)->shareContext(); +} + +QtObjectPtr QOpenGLContext_ShareGroup(QtObjectPtr ptr){ + return static_cast(ptr)->shareGroup(); +} + +int QOpenGLContext_QOpenGLContext_SupportsThreadedOpenGL(){ + return QOpenGLContext::supportsThreadedOpenGL(); +} + +QtObjectPtr QOpenGLContext_Surface(QtObjectPtr ptr){ + return static_cast(ptr)->surface(); +} + +void QOpenGLContext_SwapBuffers(QtObjectPtr ptr, QtObjectPtr surface){ + static_cast(ptr)->swapBuffers(static_cast(surface)); +} + +QtObjectPtr QOpenGLContext_VersionFunctions(QtObjectPtr ptr, QtObjectPtr versionProfile){ + return static_cast(ptr)->versionFunctions(*static_cast(versionProfile)); +} + +void QOpenGLContext_DestroyQOpenGLContext(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLContext(); +} + diff --git a/gui/qopenglcontext.go b/gui/qopenglcontext.go new file mode 100755 index 00000000..915e869b --- /dev/null +++ b/gui/qopenglcontext.go @@ -0,0 +1,220 @@ +package gui + +//#include "qopenglcontext.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QOpenGLContext struct { + core.QObject +} + +type QOpenGLContextITF interface { + core.QObjectITF + QOpenGLContextPTR() *QOpenGLContext +} + +func PointerFromQOpenGLContext(ptr QOpenGLContextITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLContextPTR().Pointer() + } + return nil +} + +func QOpenGLContextFromPointer(ptr unsafe.Pointer) *QOpenGLContext { + var n = new(QOpenGLContext) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QOpenGLContext_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QOpenGLContext) QOpenGLContextPTR() *QOpenGLContext { + return ptr +} + +//QOpenGLContext::OpenGLModuleType +type QOpenGLContext__OpenGLModuleType int + +var ( + QOpenGLContext__LibGL = QOpenGLContext__OpenGLModuleType(0) + QOpenGLContext__LibGLES = QOpenGLContext__OpenGLModuleType(1) +) + +func NewQOpenGLContext(parent core.QObjectITF) *QOpenGLContext { + return QOpenGLContextFromPointer(unsafe.Pointer(C.QOpenGLContext_NewQOpenGLContext(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QOpenGLContext) ConnectAboutToBeDestroyed(f func()) { + if ptr.Pointer() != nil { + C.QOpenGLContext_ConnectAboutToBeDestroyed(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "aboutToBeDestroyed", f) + } +} + +func (ptr *QOpenGLContext) DisconnectAboutToBeDestroyed() { + if ptr.Pointer() != nil { + C.QOpenGLContext_DisconnectAboutToBeDestroyed(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "aboutToBeDestroyed") + } +} + +//export callbackQOpenGLContextAboutToBeDestroyed +func callbackQOpenGLContextAboutToBeDestroyed(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "aboutToBeDestroyed").(func())() +} + +func QOpenGLContext_AreSharing(first QOpenGLContextITF, second QOpenGLContextITF) bool { + return C.QOpenGLContext_QOpenGLContext_AreSharing(C.QtObjectPtr(PointerFromQOpenGLContext(first)), C.QtObjectPtr(PointerFromQOpenGLContext(second))) != 0 +} + +func (ptr *QOpenGLContext) Create() bool { + if ptr.Pointer() != nil { + return C.QOpenGLContext_Create(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func QOpenGLContext_CurrentContext() *QOpenGLContext { + return QOpenGLContextFromPointer(unsafe.Pointer(C.QOpenGLContext_QOpenGLContext_CurrentContext())) +} + +func (ptr *QOpenGLContext) DoneCurrent() { + if ptr.Pointer() != nil { + C.QOpenGLContext_DoneCurrent(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLContext) Functions() *QOpenGLFunctions { + if ptr.Pointer() != nil { + return QOpenGLFunctionsFromPointer(unsafe.Pointer(C.QOpenGLContext_Functions(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func QOpenGLContext_GlobalShareContext() *QOpenGLContext { + return QOpenGLContextFromPointer(unsafe.Pointer(C.QOpenGLContext_QOpenGLContext_GlobalShareContext())) +} + +func (ptr *QOpenGLContext) HasExtension(extension core.QByteArrayITF) bool { + if ptr.Pointer() != nil { + return C.QOpenGLContext_HasExtension(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(extension))) != 0 + } + return false +} + +func (ptr *QOpenGLContext) IsOpenGLES() bool { + if ptr.Pointer() != nil { + return C.QOpenGLContext_IsOpenGLES(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLContext) IsValid() bool { + if ptr.Pointer() != nil { + return C.QOpenGLContext_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLContext) MakeCurrent(surface QSurfaceITF) bool { + if ptr.Pointer() != nil { + return C.QOpenGLContext_MakeCurrent(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSurface(surface))) != 0 + } + return false +} + +func (ptr *QOpenGLContext) NativeHandle() string { + if ptr.Pointer() != nil { + return C.GoString(C.QOpenGLContext_NativeHandle(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func QOpenGLContext_OpenGLModuleHandle() { + C.QOpenGLContext_QOpenGLContext_OpenGLModuleHandle() +} + +func QOpenGLContext_OpenGLModuleType() QOpenGLContext__OpenGLModuleType { + return QOpenGLContext__OpenGLModuleType(C.QOpenGLContext_QOpenGLContext_OpenGLModuleType()) +} + +func (ptr *QOpenGLContext) SetFormat(format QSurfaceFormatITF) { + if ptr.Pointer() != nil { + C.QOpenGLContext_SetFormat(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSurfaceFormat(format))) + } +} + +func (ptr *QOpenGLContext) SetNativeHandle(handle string) { + if ptr.Pointer() != nil { + C.QOpenGLContext_SetNativeHandle(C.QtObjectPtr(ptr.Pointer()), C.CString(handle)) + } +} + +func (ptr *QOpenGLContext) Screen() *QScreen { + if ptr.Pointer() != nil { + return QScreenFromPointer(unsafe.Pointer(C.QOpenGLContext_Screen(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QOpenGLContext) SetScreen(screen QScreenITF) { + if ptr.Pointer() != nil { + C.QOpenGLContext_SetScreen(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQScreen(screen))) + } +} + +func (ptr *QOpenGLContext) SetShareContext(shareContext QOpenGLContextITF) { + if ptr.Pointer() != nil { + C.QOpenGLContext_SetShareContext(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQOpenGLContext(shareContext))) + } +} + +func (ptr *QOpenGLContext) ShareContext() *QOpenGLContext { + if ptr.Pointer() != nil { + return QOpenGLContextFromPointer(unsafe.Pointer(C.QOpenGLContext_ShareContext(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QOpenGLContext) ShareGroup() *QOpenGLContextGroup { + if ptr.Pointer() != nil { + return QOpenGLContextGroupFromPointer(unsafe.Pointer(C.QOpenGLContext_ShareGroup(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func QOpenGLContext_SupportsThreadedOpenGL() bool { + return C.QOpenGLContext_QOpenGLContext_SupportsThreadedOpenGL() != 0 +} + +func (ptr *QOpenGLContext) Surface() *QSurface { + if ptr.Pointer() != nil { + return QSurfaceFromPointer(unsafe.Pointer(C.QOpenGLContext_Surface(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QOpenGLContext) SwapBuffers(surface QSurfaceITF) { + if ptr.Pointer() != nil { + C.QOpenGLContext_SwapBuffers(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSurface(surface))) + } +} + +func (ptr *QOpenGLContext) VersionFunctions(versionProfile QOpenGLVersionProfileITF) *QAbstractOpenGLFunctions { + if ptr.Pointer() != nil { + return QAbstractOpenGLFunctionsFromPointer(unsafe.Pointer(C.QOpenGLContext_VersionFunctions(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQOpenGLVersionProfile(versionProfile))))) + } + return nil +} + +func (ptr *QOpenGLContext) DestroyQOpenGLContext() { + if ptr.Pointer() != nil { + C.QOpenGLContext_DestroyQOpenGLContext(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/gui/qopenglcontext.h b/gui/qopenglcontext.h new file mode 100755 index 00000000..c22f7bb5 --- /dev/null +++ b/gui/qopenglcontext.h @@ -0,0 +1,37 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLContext_NewQOpenGLContext(QtObjectPtr parent); +void QOpenGLContext_ConnectAboutToBeDestroyed(QtObjectPtr ptr); +void QOpenGLContext_DisconnectAboutToBeDestroyed(QtObjectPtr ptr); +int QOpenGLContext_QOpenGLContext_AreSharing(QtObjectPtr first, QtObjectPtr second); +int QOpenGLContext_Create(QtObjectPtr ptr); +QtObjectPtr QOpenGLContext_QOpenGLContext_CurrentContext(); +void QOpenGLContext_DoneCurrent(QtObjectPtr ptr); +QtObjectPtr QOpenGLContext_Functions(QtObjectPtr ptr); +QtObjectPtr QOpenGLContext_QOpenGLContext_GlobalShareContext(); +int QOpenGLContext_HasExtension(QtObjectPtr ptr, QtObjectPtr extension); +int QOpenGLContext_IsOpenGLES(QtObjectPtr ptr); +int QOpenGLContext_IsValid(QtObjectPtr ptr); +int QOpenGLContext_MakeCurrent(QtObjectPtr ptr, QtObjectPtr surface); +char* QOpenGLContext_NativeHandle(QtObjectPtr ptr); +void QOpenGLContext_QOpenGLContext_OpenGLModuleHandle(); +int QOpenGLContext_QOpenGLContext_OpenGLModuleType(); +void QOpenGLContext_SetFormat(QtObjectPtr ptr, QtObjectPtr format); +void QOpenGLContext_SetNativeHandle(QtObjectPtr ptr, char* handle); +QtObjectPtr QOpenGLContext_Screen(QtObjectPtr ptr); +void QOpenGLContext_SetScreen(QtObjectPtr ptr, QtObjectPtr screen); +void QOpenGLContext_SetShareContext(QtObjectPtr ptr, QtObjectPtr shareContext); +QtObjectPtr QOpenGLContext_ShareContext(QtObjectPtr ptr); +QtObjectPtr QOpenGLContext_ShareGroup(QtObjectPtr ptr); +int QOpenGLContext_QOpenGLContext_SupportsThreadedOpenGL(); +QtObjectPtr QOpenGLContext_Surface(QtObjectPtr ptr); +void QOpenGLContext_SwapBuffers(QtObjectPtr ptr, QtObjectPtr surface); +QtObjectPtr QOpenGLContext_VersionFunctions(QtObjectPtr ptr, QtObjectPtr versionProfile); +void QOpenGLContext_DestroyQOpenGLContext(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglcontextgroup.cpp b/gui/qopenglcontextgroup.cpp new file mode 100755 index 00000000..b3baf71b --- /dev/null +++ b/gui/qopenglcontextgroup.cpp @@ -0,0 +1,17 @@ +#include "qopenglcontextgroup.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLContextGroup: public QOpenGLContextGroup { +public: +}; + +QtObjectPtr QOpenGLContextGroup_QOpenGLContextGroup_CurrentContextGroup(){ + return QOpenGLContextGroup::currentContextGroup(); +} + diff --git a/gui/qopenglcontextgroup.go b/gui/qopenglcontextgroup.go new file mode 100755 index 00000000..6f975e33 --- /dev/null +++ b/gui/qopenglcontextgroup.go @@ -0,0 +1,42 @@ +package gui + +//#include "qopenglcontextgroup.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QOpenGLContextGroup struct { + core.QObject +} + +type QOpenGLContextGroupITF interface { + core.QObjectITF + QOpenGLContextGroupPTR() *QOpenGLContextGroup +} + +func PointerFromQOpenGLContextGroup(ptr QOpenGLContextGroupITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLContextGroupPTR().Pointer() + } + return nil +} + +func QOpenGLContextGroupFromPointer(ptr unsafe.Pointer) *QOpenGLContextGroup { + var n = new(QOpenGLContextGroup) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QOpenGLContextGroup_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QOpenGLContextGroup) QOpenGLContextGroupPTR() *QOpenGLContextGroup { + return ptr +} + +func QOpenGLContextGroup_CurrentContextGroup() *QOpenGLContextGroup { + return QOpenGLContextGroupFromPointer(unsafe.Pointer(C.QOpenGLContextGroup_QOpenGLContextGroup_CurrentContextGroup())) +} diff --git a/gui/qopenglcontextgroup.h b/gui/qopenglcontextgroup.h new file mode 100755 index 00000000..a6a6f0ec --- /dev/null +++ b/gui/qopenglcontextgroup.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLContextGroup_QOpenGLContextGroup_CurrentContextGroup(); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopengldebuglogger.cpp b/gui/qopengldebuglogger.cpp new file mode 100755 index 00000000..c0398b53 --- /dev/null +++ b/gui/qopengldebuglogger.cpp @@ -0,0 +1,59 @@ +#include "qopengldebuglogger.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLDebugLogger: public QOpenGLDebugLogger { +public: +}; + +QtObjectPtr QOpenGLDebugLogger_NewQOpenGLDebugLogger(QtObjectPtr parent){ + return new QOpenGLDebugLogger(static_cast(parent)); +} + +void QOpenGLDebugLogger_DisableMessages(QtObjectPtr ptr, int sources, int types, int severities){ + static_cast(ptr)->disableMessages(static_cast(sources), static_cast(types), static_cast(severities)); +} + +void QOpenGLDebugLogger_EnableMessages(QtObjectPtr ptr, int sources, int types, int severities){ + static_cast(ptr)->enableMessages(static_cast(sources), static_cast(types), static_cast(severities)); +} + +int QOpenGLDebugLogger_Initialize(QtObjectPtr ptr){ + return static_cast(ptr)->initialize(); +} + +int QOpenGLDebugLogger_IsLogging(QtObjectPtr ptr){ + return static_cast(ptr)->isLogging(); +} + +void QOpenGLDebugLogger_LogMessage(QtObjectPtr ptr, QtObjectPtr debugMessage){ + QMetaObject::invokeMethod(static_cast(ptr), "logMessage", Q_ARG(QOpenGLDebugMessage, *static_cast(debugMessage))); +} + +int QOpenGLDebugLogger_LoggingMode(QtObjectPtr ptr){ + return static_cast(ptr)->loggingMode(); +} + +void QOpenGLDebugLogger_PopGroup(QtObjectPtr ptr){ + static_cast(ptr)->popGroup(); +} + +void QOpenGLDebugLogger_StartLogging(QtObjectPtr ptr, int loggingMode){ + QMetaObject::invokeMethod(static_cast(ptr), "startLogging", Q_ARG(QOpenGLDebugLogger::LoggingMode, static_cast(loggingMode))); +} + +void QOpenGLDebugLogger_StopLogging(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "stopLogging"); +} + +void QOpenGLDebugLogger_DestroyQOpenGLDebugLogger(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLDebugLogger(); +} + diff --git a/gui/qopengldebuglogger.go b/gui/qopengldebuglogger.go new file mode 100755 index 00000000..22d46bb7 --- /dev/null +++ b/gui/qopengldebuglogger.go @@ -0,0 +1,114 @@ +package gui + +//#include "qopengldebuglogger.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QOpenGLDebugLogger struct { + core.QObject +} + +type QOpenGLDebugLoggerITF interface { + core.QObjectITF + QOpenGLDebugLoggerPTR() *QOpenGLDebugLogger +} + +func PointerFromQOpenGLDebugLogger(ptr QOpenGLDebugLoggerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLDebugLoggerPTR().Pointer() + } + return nil +} + +func QOpenGLDebugLoggerFromPointer(ptr unsafe.Pointer) *QOpenGLDebugLogger { + var n = new(QOpenGLDebugLogger) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QOpenGLDebugLogger_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QOpenGLDebugLogger) QOpenGLDebugLoggerPTR() *QOpenGLDebugLogger { + return ptr +} + +//QOpenGLDebugLogger::LoggingMode +type QOpenGLDebugLogger__LoggingMode int + +var ( + QOpenGLDebugLogger__AsynchronousLogging = QOpenGLDebugLogger__LoggingMode(0) + QOpenGLDebugLogger__SynchronousLogging = QOpenGLDebugLogger__LoggingMode(1) +) + +func NewQOpenGLDebugLogger(parent core.QObjectITF) *QOpenGLDebugLogger { + return QOpenGLDebugLoggerFromPointer(unsafe.Pointer(C.QOpenGLDebugLogger_NewQOpenGLDebugLogger(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QOpenGLDebugLogger) DisableMessages(sources QOpenGLDebugMessage__Source, types QOpenGLDebugMessage__Type, severities QOpenGLDebugMessage__Severity) { + if ptr.Pointer() != nil { + C.QOpenGLDebugLogger_DisableMessages(C.QtObjectPtr(ptr.Pointer()), C.int(sources), C.int(types), C.int(severities)) + } +} + +func (ptr *QOpenGLDebugLogger) EnableMessages(sources QOpenGLDebugMessage__Source, types QOpenGLDebugMessage__Type, severities QOpenGLDebugMessage__Severity) { + if ptr.Pointer() != nil { + C.QOpenGLDebugLogger_EnableMessages(C.QtObjectPtr(ptr.Pointer()), C.int(sources), C.int(types), C.int(severities)) + } +} + +func (ptr *QOpenGLDebugLogger) Initialize() bool { + if ptr.Pointer() != nil { + return C.QOpenGLDebugLogger_Initialize(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLDebugLogger) IsLogging() bool { + if ptr.Pointer() != nil { + return C.QOpenGLDebugLogger_IsLogging(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLDebugLogger) LogMessage(debugMessage QOpenGLDebugMessageITF) { + if ptr.Pointer() != nil { + C.QOpenGLDebugLogger_LogMessage(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQOpenGLDebugMessage(debugMessage))) + } +} + +func (ptr *QOpenGLDebugLogger) LoggingMode() QOpenGLDebugLogger__LoggingMode { + if ptr.Pointer() != nil { + return QOpenGLDebugLogger__LoggingMode(C.QOpenGLDebugLogger_LoggingMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLDebugLogger) PopGroup() { + if ptr.Pointer() != nil { + C.QOpenGLDebugLogger_PopGroup(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLDebugLogger) StartLogging(loggingMode QOpenGLDebugLogger__LoggingMode) { + if ptr.Pointer() != nil { + C.QOpenGLDebugLogger_StartLogging(C.QtObjectPtr(ptr.Pointer()), C.int(loggingMode)) + } +} + +func (ptr *QOpenGLDebugLogger) StopLogging() { + if ptr.Pointer() != nil { + C.QOpenGLDebugLogger_StopLogging(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLDebugLogger) DestroyQOpenGLDebugLogger() { + if ptr.Pointer() != nil { + C.QOpenGLDebugLogger_DestroyQOpenGLDebugLogger(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/gui/qopengldebuglogger.h b/gui/qopengldebuglogger.h new file mode 100755 index 00000000..883b1330 --- /dev/null +++ b/gui/qopengldebuglogger.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLDebugLogger_NewQOpenGLDebugLogger(QtObjectPtr parent); +void QOpenGLDebugLogger_DisableMessages(QtObjectPtr ptr, int sources, int types, int severities); +void QOpenGLDebugLogger_EnableMessages(QtObjectPtr ptr, int sources, int types, int severities); +int QOpenGLDebugLogger_Initialize(QtObjectPtr ptr); +int QOpenGLDebugLogger_IsLogging(QtObjectPtr ptr); +void QOpenGLDebugLogger_LogMessage(QtObjectPtr ptr, QtObjectPtr debugMessage); +int QOpenGLDebugLogger_LoggingMode(QtObjectPtr ptr); +void QOpenGLDebugLogger_PopGroup(QtObjectPtr ptr); +void QOpenGLDebugLogger_StartLogging(QtObjectPtr ptr, int loggingMode); +void QOpenGLDebugLogger_StopLogging(QtObjectPtr ptr); +void QOpenGLDebugLogger_DestroyQOpenGLDebugLogger(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopengldebugmessage.cpp b/gui/qopengldebugmessage.cpp new file mode 100755 index 00000000..a04612df --- /dev/null +++ b/gui/qopengldebugmessage.cpp @@ -0,0 +1,44 @@ +#include "qopengldebugmessage.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLDebugMessage: public QOpenGLDebugMessage { +public: +}; + +QtObjectPtr QOpenGLDebugMessage_NewQOpenGLDebugMessage(){ + return new QOpenGLDebugMessage(); +} + +QtObjectPtr QOpenGLDebugMessage_NewQOpenGLDebugMessage2(QtObjectPtr debugMessage){ + return new QOpenGLDebugMessage(*static_cast(debugMessage)); +} + +char* QOpenGLDebugMessage_Message(QtObjectPtr ptr){ + return static_cast(ptr)->message().toUtf8().data(); +} + +int QOpenGLDebugMessage_Severity(QtObjectPtr ptr){ + return static_cast(ptr)->severity(); +} + +int QOpenGLDebugMessage_Source(QtObjectPtr ptr){ + return static_cast(ptr)->source(); +} + +void QOpenGLDebugMessage_Swap(QtObjectPtr ptr, QtObjectPtr debugMessage){ + static_cast(ptr)->swap(*static_cast(debugMessage)); +} + +int QOpenGLDebugMessage_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QOpenGLDebugMessage_DestroyQOpenGLDebugMessage(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLDebugMessage(); +} + diff --git a/gui/qopengldebugmessage.go b/gui/qopengldebugmessage.go new file mode 100755 index 00000000..3e48aead --- /dev/null +++ b/gui/qopengldebugmessage.go @@ -0,0 +1,134 @@ +package gui + +//#include "qopengldebugmessage.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLDebugMessage struct { + ptr unsafe.Pointer +} + +type QOpenGLDebugMessageITF interface { + QOpenGLDebugMessagePTR() *QOpenGLDebugMessage +} + +func (p *QOpenGLDebugMessage) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QOpenGLDebugMessage) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQOpenGLDebugMessage(ptr QOpenGLDebugMessageITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLDebugMessagePTR().Pointer() + } + return nil +} + +func QOpenGLDebugMessageFromPointer(ptr unsafe.Pointer) *QOpenGLDebugMessage { + var n = new(QOpenGLDebugMessage) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLDebugMessage) QOpenGLDebugMessagePTR() *QOpenGLDebugMessage { + return ptr +} + +//QOpenGLDebugMessage::Severity +type QOpenGLDebugMessage__Severity int + +var ( + QOpenGLDebugMessage__InvalidSeverity = QOpenGLDebugMessage__Severity(0x00000000) + QOpenGLDebugMessage__HighSeverity = QOpenGLDebugMessage__Severity(0x00000001) + QOpenGLDebugMessage__MediumSeverity = QOpenGLDebugMessage__Severity(0x00000002) + QOpenGLDebugMessage__LowSeverity = QOpenGLDebugMessage__Severity(0x00000004) + QOpenGLDebugMessage__NotificationSeverity = QOpenGLDebugMessage__Severity(0x00000008) + QOpenGLDebugMessage__LastSeverity = QOpenGLDebugMessage__Severity(QOpenGLDebugMessage__NotificationSeverity) + QOpenGLDebugMessage__AnySeverity = QOpenGLDebugMessage__Severity(0xffffffff) +) + +//QOpenGLDebugMessage::Source +type QOpenGLDebugMessage__Source int + +var ( + QOpenGLDebugMessage__InvalidSource = QOpenGLDebugMessage__Source(0x00000000) + QOpenGLDebugMessage__APISource = QOpenGLDebugMessage__Source(0x00000001) + QOpenGLDebugMessage__WindowSystemSource = QOpenGLDebugMessage__Source(0x00000002) + QOpenGLDebugMessage__ShaderCompilerSource = QOpenGLDebugMessage__Source(0x00000004) + QOpenGLDebugMessage__ThirdPartySource = QOpenGLDebugMessage__Source(0x00000008) + QOpenGLDebugMessage__ApplicationSource = QOpenGLDebugMessage__Source(0x00000010) + QOpenGLDebugMessage__OtherSource = QOpenGLDebugMessage__Source(0x00000020) + QOpenGLDebugMessage__LastSource = QOpenGLDebugMessage__Source(QOpenGLDebugMessage__OtherSource) + QOpenGLDebugMessage__AnySource = QOpenGLDebugMessage__Source(0xffffffff) +) + +//QOpenGLDebugMessage::Type +type QOpenGLDebugMessage__Type int + +var ( + QOpenGLDebugMessage__InvalidType = QOpenGLDebugMessage__Type(0x00000000) + QOpenGLDebugMessage__ErrorType = QOpenGLDebugMessage__Type(0x00000001) + QOpenGLDebugMessage__DeprecatedBehaviorType = QOpenGLDebugMessage__Type(0x00000002) + QOpenGLDebugMessage__UndefinedBehaviorType = QOpenGLDebugMessage__Type(0x00000004) + QOpenGLDebugMessage__PortabilityType = QOpenGLDebugMessage__Type(0x00000008) + QOpenGLDebugMessage__PerformanceType = QOpenGLDebugMessage__Type(0x00000010) + QOpenGLDebugMessage__OtherType = QOpenGLDebugMessage__Type(0x00000020) + QOpenGLDebugMessage__MarkerType = QOpenGLDebugMessage__Type(0x00000040) + QOpenGLDebugMessage__GroupPushType = QOpenGLDebugMessage__Type(0x00000080) + QOpenGLDebugMessage__GroupPopType = QOpenGLDebugMessage__Type(0x00000100) + QOpenGLDebugMessage__LastType = QOpenGLDebugMessage__Type(QOpenGLDebugMessage__GroupPopType) + QOpenGLDebugMessage__AnyType = QOpenGLDebugMessage__Type(0xffffffff) +) + +func NewQOpenGLDebugMessage() *QOpenGLDebugMessage { + return QOpenGLDebugMessageFromPointer(unsafe.Pointer(C.QOpenGLDebugMessage_NewQOpenGLDebugMessage())) +} + +func NewQOpenGLDebugMessage2(debugMessage QOpenGLDebugMessageITF) *QOpenGLDebugMessage { + return QOpenGLDebugMessageFromPointer(unsafe.Pointer(C.QOpenGLDebugMessage_NewQOpenGLDebugMessage2(C.QtObjectPtr(PointerFromQOpenGLDebugMessage(debugMessage))))) +} + +func (ptr *QOpenGLDebugMessage) Message() string { + if ptr.Pointer() != nil { + return C.GoString(C.QOpenGLDebugMessage_Message(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QOpenGLDebugMessage) Severity() QOpenGLDebugMessage__Severity { + if ptr.Pointer() != nil { + return QOpenGLDebugMessage__Severity(C.QOpenGLDebugMessage_Severity(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLDebugMessage) Source() QOpenGLDebugMessage__Source { + if ptr.Pointer() != nil { + return QOpenGLDebugMessage__Source(C.QOpenGLDebugMessage_Source(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLDebugMessage) Swap(debugMessage QOpenGLDebugMessageITF) { + if ptr.Pointer() != nil { + C.QOpenGLDebugMessage_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQOpenGLDebugMessage(debugMessage))) + } +} + +func (ptr *QOpenGLDebugMessage) Type() QOpenGLDebugMessage__Type { + if ptr.Pointer() != nil { + return QOpenGLDebugMessage__Type(C.QOpenGLDebugMessage_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLDebugMessage) DestroyQOpenGLDebugMessage() { + if ptr.Pointer() != nil { + C.QOpenGLDebugMessage_DestroyQOpenGLDebugMessage(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopengldebugmessage.h b/gui/qopengldebugmessage.h new file mode 100755 index 00000000..f56a1388 --- /dev/null +++ b/gui/qopengldebugmessage.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLDebugMessage_NewQOpenGLDebugMessage(); +QtObjectPtr QOpenGLDebugMessage_NewQOpenGLDebugMessage2(QtObjectPtr debugMessage); +char* QOpenGLDebugMessage_Message(QtObjectPtr ptr); +int QOpenGLDebugMessage_Severity(QtObjectPtr ptr); +int QOpenGLDebugMessage_Source(QtObjectPtr ptr); +void QOpenGLDebugMessage_Swap(QtObjectPtr ptr, QtObjectPtr debugMessage); +int QOpenGLDebugMessage_Type(QtObjectPtr ptr); +void QOpenGLDebugMessage_DestroyQOpenGLDebugMessage(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglframebufferobject.cpp b/gui/qopenglframebufferobject.cpp new file mode 100755 index 00000000..a2809816 --- /dev/null +++ b/gui/qopenglframebufferobject.cpp @@ -0,0 +1,70 @@ +#include "qopenglframebufferobject.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFramebufferObject: public QOpenGLFramebufferObject { +public: +}; + +int QOpenGLFramebufferObject_Bind(QtObjectPtr ptr){ + return static_cast(ptr)->bind(); +} + +int QOpenGLFramebufferObject_QOpenGLFramebufferObject_BindDefault(){ + return QOpenGLFramebufferObject::bindDefault(); +} + +int QOpenGLFramebufferObject_QOpenGLFramebufferObject_HasOpenGLFramebufferBlit(){ + return QOpenGLFramebufferObject::hasOpenGLFramebufferBlit(); +} + +int QOpenGLFramebufferObject_QOpenGLFramebufferObject_HasOpenGLFramebufferObjects(){ + return QOpenGLFramebufferObject::hasOpenGLFramebufferObjects(); +} + +int QOpenGLFramebufferObject_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QOpenGLFramebufferObject_Release(QtObjectPtr ptr){ + return static_cast(ptr)->release(); +} + +void QOpenGLFramebufferObject_DestroyQOpenGLFramebufferObject(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFramebufferObject(); +} + +QtObjectPtr QOpenGLFramebufferObject_NewQOpenGLFramebufferObject3(QtObjectPtr size, QtObjectPtr format){ + return new QOpenGLFramebufferObject(*static_cast(size), *static_cast(format)); +} + +QtObjectPtr QOpenGLFramebufferObject_NewQOpenGLFramebufferObject4(int width, int height, QtObjectPtr format){ + return new QOpenGLFramebufferObject(width, height, *static_cast(format)); +} + +int QOpenGLFramebufferObject_Attachment(QtObjectPtr ptr){ + return static_cast(ptr)->attachment(); +} + +int QOpenGLFramebufferObject_Height(QtObjectPtr ptr){ + return static_cast(ptr)->height(); +} + +int QOpenGLFramebufferObject_IsBound(QtObjectPtr ptr){ + return static_cast(ptr)->isBound(); +} + +void QOpenGLFramebufferObject_SetAttachment(QtObjectPtr ptr, int attachment){ + static_cast(ptr)->setAttachment(static_cast(attachment)); +} + +int QOpenGLFramebufferObject_Width(QtObjectPtr ptr){ + return static_cast(ptr)->width(); +} + diff --git a/gui/qopenglframebufferobject.go b/gui/qopenglframebufferobject.go new file mode 100755 index 00000000..eecc635f --- /dev/null +++ b/gui/qopenglframebufferobject.go @@ -0,0 +1,131 @@ +package gui + +//#include "qopenglframebufferobject.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QOpenGLFramebufferObject struct { + ptr unsafe.Pointer +} + +type QOpenGLFramebufferObjectITF interface { + QOpenGLFramebufferObjectPTR() *QOpenGLFramebufferObject +} + +func (p *QOpenGLFramebufferObject) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QOpenGLFramebufferObject) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQOpenGLFramebufferObject(ptr QOpenGLFramebufferObjectITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFramebufferObjectPTR().Pointer() + } + return nil +} + +func QOpenGLFramebufferObjectFromPointer(ptr unsafe.Pointer) *QOpenGLFramebufferObject { + var n = new(QOpenGLFramebufferObject) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFramebufferObject) QOpenGLFramebufferObjectPTR() *QOpenGLFramebufferObject { + return ptr +} + +//QOpenGLFramebufferObject::Attachment +type QOpenGLFramebufferObject__Attachment int + +var ( + QOpenGLFramebufferObject__NoAttachment = QOpenGLFramebufferObject__Attachment(0) + QOpenGLFramebufferObject__CombinedDepthStencil = QOpenGLFramebufferObject__Attachment(1) + QOpenGLFramebufferObject__Depth = QOpenGLFramebufferObject__Attachment(2) +) + +func (ptr *QOpenGLFramebufferObject) Bind() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFramebufferObject_Bind(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func QOpenGLFramebufferObject_BindDefault() bool { + return C.QOpenGLFramebufferObject_QOpenGLFramebufferObject_BindDefault() != 0 +} + +func QOpenGLFramebufferObject_HasOpenGLFramebufferBlit() bool { + return C.QOpenGLFramebufferObject_QOpenGLFramebufferObject_HasOpenGLFramebufferBlit() != 0 +} + +func QOpenGLFramebufferObject_HasOpenGLFramebufferObjects() bool { + return C.QOpenGLFramebufferObject_QOpenGLFramebufferObject_HasOpenGLFramebufferObjects() != 0 +} + +func (ptr *QOpenGLFramebufferObject) IsValid() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFramebufferObject_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFramebufferObject) Release() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFramebufferObject_Release(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFramebufferObject) DestroyQOpenGLFramebufferObject() { + if ptr.Pointer() != nil { + C.QOpenGLFramebufferObject_DestroyQOpenGLFramebufferObject(C.QtObjectPtr(ptr.Pointer())) + } +} + +func NewQOpenGLFramebufferObject3(size core.QSizeITF, format QOpenGLFramebufferObjectFormatITF) *QOpenGLFramebufferObject { + return QOpenGLFramebufferObjectFromPointer(unsafe.Pointer(C.QOpenGLFramebufferObject_NewQOpenGLFramebufferObject3(C.QtObjectPtr(core.PointerFromQSize(size)), C.QtObjectPtr(PointerFromQOpenGLFramebufferObjectFormat(format))))) +} + +func NewQOpenGLFramebufferObject4(width int, height int, format QOpenGLFramebufferObjectFormatITF) *QOpenGLFramebufferObject { + return QOpenGLFramebufferObjectFromPointer(unsafe.Pointer(C.QOpenGLFramebufferObject_NewQOpenGLFramebufferObject4(C.int(width), C.int(height), C.QtObjectPtr(PointerFromQOpenGLFramebufferObjectFormat(format))))) +} + +func (ptr *QOpenGLFramebufferObject) Attachment() QOpenGLFramebufferObject__Attachment { + if ptr.Pointer() != nil { + return QOpenGLFramebufferObject__Attachment(C.QOpenGLFramebufferObject_Attachment(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLFramebufferObject) Height() int { + if ptr.Pointer() != nil { + return int(C.QOpenGLFramebufferObject_Height(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLFramebufferObject) IsBound() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFramebufferObject_IsBound(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFramebufferObject) SetAttachment(attachment QOpenGLFramebufferObject__Attachment) { + if ptr.Pointer() != nil { + C.QOpenGLFramebufferObject_SetAttachment(C.QtObjectPtr(ptr.Pointer()), C.int(attachment)) + } +} + +func (ptr *QOpenGLFramebufferObject) Width() int { + if ptr.Pointer() != nil { + return int(C.QOpenGLFramebufferObject_Width(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/gui/qopenglframebufferobject.h b/gui/qopenglframebufferobject.h new file mode 100755 index 00000000..ad8c51c0 --- /dev/null +++ b/gui/qopenglframebufferobject.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QOpenGLFramebufferObject_Bind(QtObjectPtr ptr); +int QOpenGLFramebufferObject_QOpenGLFramebufferObject_BindDefault(); +int QOpenGLFramebufferObject_QOpenGLFramebufferObject_HasOpenGLFramebufferBlit(); +int QOpenGLFramebufferObject_QOpenGLFramebufferObject_HasOpenGLFramebufferObjects(); +int QOpenGLFramebufferObject_IsValid(QtObjectPtr ptr); +int QOpenGLFramebufferObject_Release(QtObjectPtr ptr); +void QOpenGLFramebufferObject_DestroyQOpenGLFramebufferObject(QtObjectPtr ptr); +QtObjectPtr QOpenGLFramebufferObject_NewQOpenGLFramebufferObject3(QtObjectPtr size, QtObjectPtr format); +QtObjectPtr QOpenGLFramebufferObject_NewQOpenGLFramebufferObject4(int width, int height, QtObjectPtr format); +int QOpenGLFramebufferObject_Attachment(QtObjectPtr ptr); +int QOpenGLFramebufferObject_Height(QtObjectPtr ptr); +int QOpenGLFramebufferObject_IsBound(QtObjectPtr ptr); +void QOpenGLFramebufferObject_SetAttachment(QtObjectPtr ptr, int attachment); +int QOpenGLFramebufferObject_Width(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglframebufferobjectformat.cpp b/gui/qopenglframebufferobjectformat.cpp new file mode 100755 index 00000000..47b2fff6 --- /dev/null +++ b/gui/qopenglframebufferobjectformat.cpp @@ -0,0 +1,49 @@ +#include "qopenglframebufferobjectformat.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFramebufferObjectFormat: public QOpenGLFramebufferObjectFormat { +public: +}; + +QtObjectPtr QOpenGLFramebufferObjectFormat_NewQOpenGLFramebufferObjectFormat(){ + return new QOpenGLFramebufferObjectFormat(); +} + +QtObjectPtr QOpenGLFramebufferObjectFormat_NewQOpenGLFramebufferObjectFormat2(QtObjectPtr other){ + return new QOpenGLFramebufferObjectFormat(*static_cast(other)); +} + +int QOpenGLFramebufferObjectFormat_Attachment(QtObjectPtr ptr){ + return static_cast(ptr)->attachment(); +} + +int QOpenGLFramebufferObjectFormat_Mipmap(QtObjectPtr ptr){ + return static_cast(ptr)->mipmap(); +} + +int QOpenGLFramebufferObjectFormat_Samples(QtObjectPtr ptr){ + return static_cast(ptr)->samples(); +} + +void QOpenGLFramebufferObjectFormat_SetAttachment(QtObjectPtr ptr, int attachment){ + static_cast(ptr)->setAttachment(static_cast(attachment)); +} + +void QOpenGLFramebufferObjectFormat_SetMipmap(QtObjectPtr ptr, int enabled){ + static_cast(ptr)->setMipmap(enabled != 0); +} + +void QOpenGLFramebufferObjectFormat_SetSamples(QtObjectPtr ptr, int samples){ + static_cast(ptr)->setSamples(samples); +} + +void QOpenGLFramebufferObjectFormat_DestroyQOpenGLFramebufferObjectFormat(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFramebufferObjectFormat(); +} + diff --git a/gui/qopenglframebufferobjectformat.go b/gui/qopenglframebufferobjectformat.go new file mode 100755 index 00000000..084262e2 --- /dev/null +++ b/gui/qopenglframebufferobjectformat.go @@ -0,0 +1,94 @@ +package gui + +//#include "qopenglframebufferobjectformat.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QOpenGLFramebufferObjectFormat struct { + ptr unsafe.Pointer +} + +type QOpenGLFramebufferObjectFormatITF interface { + QOpenGLFramebufferObjectFormatPTR() *QOpenGLFramebufferObjectFormat +} + +func (p *QOpenGLFramebufferObjectFormat) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QOpenGLFramebufferObjectFormat) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQOpenGLFramebufferObjectFormat(ptr QOpenGLFramebufferObjectFormatITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFramebufferObjectFormatPTR().Pointer() + } + return nil +} + +func QOpenGLFramebufferObjectFormatFromPointer(ptr unsafe.Pointer) *QOpenGLFramebufferObjectFormat { + var n = new(QOpenGLFramebufferObjectFormat) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFramebufferObjectFormat) QOpenGLFramebufferObjectFormatPTR() *QOpenGLFramebufferObjectFormat { + return ptr +} + +func NewQOpenGLFramebufferObjectFormat() *QOpenGLFramebufferObjectFormat { + return QOpenGLFramebufferObjectFormatFromPointer(unsafe.Pointer(C.QOpenGLFramebufferObjectFormat_NewQOpenGLFramebufferObjectFormat())) +} + +func NewQOpenGLFramebufferObjectFormat2(other QOpenGLFramebufferObjectFormatITF) *QOpenGLFramebufferObjectFormat { + return QOpenGLFramebufferObjectFormatFromPointer(unsafe.Pointer(C.QOpenGLFramebufferObjectFormat_NewQOpenGLFramebufferObjectFormat2(C.QtObjectPtr(PointerFromQOpenGLFramebufferObjectFormat(other))))) +} + +func (ptr *QOpenGLFramebufferObjectFormat) Attachment() QOpenGLFramebufferObject__Attachment { + if ptr.Pointer() != nil { + return QOpenGLFramebufferObject__Attachment(C.QOpenGLFramebufferObjectFormat_Attachment(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLFramebufferObjectFormat) Mipmap() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFramebufferObjectFormat_Mipmap(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFramebufferObjectFormat) Samples() int { + if ptr.Pointer() != nil { + return int(C.QOpenGLFramebufferObjectFormat_Samples(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLFramebufferObjectFormat) SetAttachment(attachment QOpenGLFramebufferObject__Attachment) { + if ptr.Pointer() != nil { + C.QOpenGLFramebufferObjectFormat_SetAttachment(C.QtObjectPtr(ptr.Pointer()), C.int(attachment)) + } +} + +func (ptr *QOpenGLFramebufferObjectFormat) SetMipmap(enabled bool) { + if ptr.Pointer() != nil { + C.QOpenGLFramebufferObjectFormat_SetMipmap(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QOpenGLFramebufferObjectFormat) SetSamples(samples int) { + if ptr.Pointer() != nil { + C.QOpenGLFramebufferObjectFormat_SetSamples(C.QtObjectPtr(ptr.Pointer()), C.int(samples)) + } +} + +func (ptr *QOpenGLFramebufferObjectFormat) DestroyQOpenGLFramebufferObjectFormat() { + if ptr.Pointer() != nil { + C.QOpenGLFramebufferObjectFormat_DestroyQOpenGLFramebufferObjectFormat(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglframebufferobjectformat.h b/gui/qopenglframebufferobjectformat.h new file mode 100755 index 00000000..12c0fb97 --- /dev/null +++ b/gui/qopenglframebufferobjectformat.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFramebufferObjectFormat_NewQOpenGLFramebufferObjectFormat(); +QtObjectPtr QOpenGLFramebufferObjectFormat_NewQOpenGLFramebufferObjectFormat2(QtObjectPtr other); +int QOpenGLFramebufferObjectFormat_Attachment(QtObjectPtr ptr); +int QOpenGLFramebufferObjectFormat_Mipmap(QtObjectPtr ptr); +int QOpenGLFramebufferObjectFormat_Samples(QtObjectPtr ptr); +void QOpenGLFramebufferObjectFormat_SetAttachment(QtObjectPtr ptr, int attachment); +void QOpenGLFramebufferObjectFormat_SetMipmap(QtObjectPtr ptr, int enabled); +void QOpenGLFramebufferObjectFormat_SetSamples(QtObjectPtr ptr, int samples); +void QOpenGLFramebufferObjectFormat_DestroyQOpenGLFramebufferObjectFormat(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions.cpp b/gui/qopenglfunctions.cpp new file mode 100755 index 00000000..035f9c08 --- /dev/null +++ b/gui/qopenglfunctions.cpp @@ -0,0 +1,49 @@ +#include "qopenglfunctions.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFunctions: public QOpenGLFunctions { +public: +}; + +QtObjectPtr QOpenGLFunctions_NewQOpenGLFunctions(){ + return new QOpenGLFunctions(); +} + +QtObjectPtr QOpenGLFunctions_NewQOpenGLFunctions2(QtObjectPtr context){ + return new QOpenGLFunctions(static_cast(context)); +} + +void QOpenGLFunctions_GlFinish(QtObjectPtr ptr){ + static_cast(ptr)->glFinish(); +} + +void QOpenGLFunctions_GlFlush(QtObjectPtr ptr){ + static_cast(ptr)->glFlush(); +} + +void QOpenGLFunctions_GlReleaseShaderCompiler(QtObjectPtr ptr){ + static_cast(ptr)->glReleaseShaderCompiler(); +} + +int QOpenGLFunctions_HasOpenGLFeature(QtObjectPtr ptr, int feature){ + return static_cast(ptr)->hasOpenGLFeature(static_cast(feature)); +} + +void QOpenGLFunctions_InitializeOpenGLFunctions(QtObjectPtr ptr){ + static_cast(ptr)->initializeOpenGLFunctions(); +} + +int QOpenGLFunctions_OpenGLFeatures(QtObjectPtr ptr){ + return static_cast(ptr)->openGLFeatures(); +} + +void QOpenGLFunctions_DestroyQOpenGLFunctions(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFunctions(); +} + diff --git a/gui/qopenglfunctions.go b/gui/qopenglfunctions.go new file mode 100755 index 00000000..dd01dc22 --- /dev/null +++ b/gui/qopenglfunctions.go @@ -0,0 +1,114 @@ +package gui + +//#include "qopenglfunctions.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions struct { + ptr unsafe.Pointer +} + +type QOpenGLFunctionsITF interface { + QOpenGLFunctionsPTR() *QOpenGLFunctions +} + +func (p *QOpenGLFunctions) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QOpenGLFunctions) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQOpenGLFunctions(ptr QOpenGLFunctionsITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctionsPTR().Pointer() + } + return nil +} + +func QOpenGLFunctionsFromPointer(ptr unsafe.Pointer) *QOpenGLFunctions { + var n = new(QOpenGLFunctions) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions) QOpenGLFunctionsPTR() *QOpenGLFunctions { + return ptr +} + +//QOpenGLFunctions::OpenGLFeature +type QOpenGLFunctions__OpenGLFeature int + +var ( + QOpenGLFunctions__Multitexture = QOpenGLFunctions__OpenGLFeature(0x0001) + QOpenGLFunctions__Shaders = QOpenGLFunctions__OpenGLFeature(0x0002) + QOpenGLFunctions__Buffers = QOpenGLFunctions__OpenGLFeature(0x0004) + QOpenGLFunctions__Framebuffers = QOpenGLFunctions__OpenGLFeature(0x0008) + QOpenGLFunctions__BlendColor = QOpenGLFunctions__OpenGLFeature(0x0010) + QOpenGLFunctions__BlendEquation = QOpenGLFunctions__OpenGLFeature(0x0020) + QOpenGLFunctions__BlendEquationSeparate = QOpenGLFunctions__OpenGLFeature(0x0040) + QOpenGLFunctions__BlendFuncSeparate = QOpenGLFunctions__OpenGLFeature(0x0080) + QOpenGLFunctions__BlendSubtract = QOpenGLFunctions__OpenGLFeature(0x0100) + QOpenGLFunctions__CompressedTextures = QOpenGLFunctions__OpenGLFeature(0x0200) + QOpenGLFunctions__Multisample = QOpenGLFunctions__OpenGLFeature(0x0400) + QOpenGLFunctions__StencilSeparate = QOpenGLFunctions__OpenGLFeature(0x0800) + QOpenGLFunctions__NPOTTextures = QOpenGLFunctions__OpenGLFeature(0x1000) + QOpenGLFunctions__NPOTTextureRepeat = QOpenGLFunctions__OpenGLFeature(0x2000) + QOpenGLFunctions__FixedFunctionPipeline = QOpenGLFunctions__OpenGLFeature(0x4000) + QOpenGLFunctions__TextureRGFormats = QOpenGLFunctions__OpenGLFeature(0x8000) +) + +func NewQOpenGLFunctions() *QOpenGLFunctions { + return QOpenGLFunctionsFromPointer(unsafe.Pointer(C.QOpenGLFunctions_NewQOpenGLFunctions())) +} + +func NewQOpenGLFunctions2(context QOpenGLContextITF) *QOpenGLFunctions { + return QOpenGLFunctionsFromPointer(unsafe.Pointer(C.QOpenGLFunctions_NewQOpenGLFunctions2(C.QtObjectPtr(PointerFromQOpenGLContext(context))))) +} + +func (ptr *QOpenGLFunctions) GlFinish() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_GlFinish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions) GlFlush() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_GlFlush(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions) GlReleaseShaderCompiler() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_GlReleaseShaderCompiler(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions) HasOpenGLFeature(feature QOpenGLFunctions__OpenGLFeature) bool { + if ptr.Pointer() != nil { + return C.QOpenGLFunctions_HasOpenGLFeature(C.QtObjectPtr(ptr.Pointer()), C.int(feature)) != 0 + } + return false +} + +func (ptr *QOpenGLFunctions) InitializeOpenGLFunctions() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_InitializeOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions) OpenGLFeatures() QOpenGLFunctions__OpenGLFeature { + if ptr.Pointer() != nil { + return QOpenGLFunctions__OpenGLFeature(C.QOpenGLFunctions_OpenGLFeatures(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLFunctions) DestroyQOpenGLFunctions() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_DestroyQOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglfunctions.h b/gui/qopenglfunctions.h new file mode 100755 index 00000000..5c5b79e4 --- /dev/null +++ b/gui/qopenglfunctions.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFunctions_NewQOpenGLFunctions(); +QtObjectPtr QOpenGLFunctions_NewQOpenGLFunctions2(QtObjectPtr context); +void QOpenGLFunctions_GlFinish(QtObjectPtr ptr); +void QOpenGLFunctions_GlFlush(QtObjectPtr ptr); +void QOpenGLFunctions_GlReleaseShaderCompiler(QtObjectPtr ptr); +int QOpenGLFunctions_HasOpenGLFeature(QtObjectPtr ptr, int feature); +void QOpenGLFunctions_InitializeOpenGLFunctions(QtObjectPtr ptr); +int QOpenGLFunctions_OpenGLFeatures(QtObjectPtr ptr); +void QOpenGLFunctions_DestroyQOpenGLFunctions(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions_1_0.cpp b/gui/qopenglfunctions_1_0.cpp new file mode 100755 index 00000000..0c144147 --- /dev/null +++ b/gui/qopenglfunctions_1_0.cpp @@ -0,0 +1,65 @@ +#include "qopenglfunctions_1_0.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFunctions_1_0: public QOpenGLFunctions_1_0 { +public: +}; + +QtObjectPtr QOpenGLFunctions_1_0_NewQOpenGLFunctions_1_0(){ + return new QOpenGLFunctions_1_0(); +} + +int QOpenGLFunctions_1_0_InitializeOpenGLFunctions(QtObjectPtr ptr){ + return static_cast(ptr)->initializeOpenGLFunctions(); +} + +void QOpenGLFunctions_1_0_DestroyQOpenGLFunctions_1_0(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFunctions_1_0(); +} + +void QOpenGLFunctions_1_0_GlEnd(QtObjectPtr ptr){ + static_cast(ptr)->glEnd(); +} + +void QOpenGLFunctions_1_0_GlEndList(QtObjectPtr ptr){ + static_cast(ptr)->glEndList(); +} + +void QOpenGLFunctions_1_0_GlFinish(QtObjectPtr ptr){ + static_cast(ptr)->glFinish(); +} + +void QOpenGLFunctions_1_0_GlFlush(QtObjectPtr ptr){ + static_cast(ptr)->glFlush(); +} + +void QOpenGLFunctions_1_0_GlInitNames(QtObjectPtr ptr){ + static_cast(ptr)->glInitNames(); +} + +void QOpenGLFunctions_1_0_GlLoadIdentity(QtObjectPtr ptr){ + static_cast(ptr)->glLoadIdentity(); +} + +void QOpenGLFunctions_1_0_GlPopAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopAttrib(); +} + +void QOpenGLFunctions_1_0_GlPopMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPopMatrix(); +} + +void QOpenGLFunctions_1_0_GlPopName(QtObjectPtr ptr){ + static_cast(ptr)->glPopName(); +} + +void QOpenGLFunctions_1_0_GlPushMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPushMatrix(); +} + diff --git a/gui/qopenglfunctions_1_0.go b/gui/qopenglfunctions_1_0.go new file mode 100755 index 00000000..b4d812a9 --- /dev/null +++ b/gui/qopenglfunctions_1_0.go @@ -0,0 +1,110 @@ +package gui + +//#include "qopenglfunctions_1_0.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions_1_0 struct { + QAbstractOpenGLFunctions +} + +type QOpenGLFunctions_1_0ITF interface { + QAbstractOpenGLFunctionsITF + QOpenGLFunctions_1_0PTR() *QOpenGLFunctions_1_0 +} + +func PointerFromQOpenGLFunctions_1_0(ptr QOpenGLFunctions_1_0ITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctions_1_0PTR().Pointer() + } + return nil +} + +func QOpenGLFunctions_1_0FromPointer(ptr unsafe.Pointer) *QOpenGLFunctions_1_0 { + var n = new(QOpenGLFunctions_1_0) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions_1_0) QOpenGLFunctions_1_0PTR() *QOpenGLFunctions_1_0 { + return ptr +} + +func NewQOpenGLFunctions_1_0() *QOpenGLFunctions_1_0 { + return QOpenGLFunctions_1_0FromPointer(unsafe.Pointer(C.QOpenGLFunctions_1_0_NewQOpenGLFunctions_1_0())) +} + +func (ptr *QOpenGLFunctions_1_0) InitializeOpenGLFunctions() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFunctions_1_0_InitializeOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFunctions_1_0) DestroyQOpenGLFunctions_1_0() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_0_DestroyQOpenGLFunctions_1_0(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_0) GlEnd() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_0_GlEnd(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_0) GlEndList() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_0_GlEndList(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_0) GlFinish() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_0_GlFinish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_0) GlFlush() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_0_GlFlush(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_0) GlInitNames() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_0_GlInitNames(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_0) GlLoadIdentity() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_0_GlLoadIdentity(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_0) GlPopAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_0_GlPopAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_0) GlPopMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_0_GlPopMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_0) GlPopName() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_0_GlPopName(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_0) GlPushMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_0_GlPushMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglfunctions_1_0.h b/gui/qopenglfunctions_1_0.h new file mode 100755 index 00000000..da7dbd31 --- /dev/null +++ b/gui/qopenglfunctions_1_0.h @@ -0,0 +1,22 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFunctions_1_0_NewQOpenGLFunctions_1_0(); +int QOpenGLFunctions_1_0_InitializeOpenGLFunctions(QtObjectPtr ptr); +void QOpenGLFunctions_1_0_DestroyQOpenGLFunctions_1_0(QtObjectPtr ptr); +void QOpenGLFunctions_1_0_GlEnd(QtObjectPtr ptr); +void QOpenGLFunctions_1_0_GlEndList(QtObjectPtr ptr); +void QOpenGLFunctions_1_0_GlFinish(QtObjectPtr ptr); +void QOpenGLFunctions_1_0_GlFlush(QtObjectPtr ptr); +void QOpenGLFunctions_1_0_GlInitNames(QtObjectPtr ptr); +void QOpenGLFunctions_1_0_GlLoadIdentity(QtObjectPtr ptr); +void QOpenGLFunctions_1_0_GlPopAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_1_0_GlPopMatrix(QtObjectPtr ptr); +void QOpenGLFunctions_1_0_GlPopName(QtObjectPtr ptr); +void QOpenGLFunctions_1_0_GlPushMatrix(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions_1_1.cpp b/gui/qopenglfunctions_1_1.cpp new file mode 100755 index 00000000..387ceb3c --- /dev/null +++ b/gui/qopenglfunctions_1_1.cpp @@ -0,0 +1,69 @@ +#include "qopenglfunctions_1_1.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFunctions_1_1: public QOpenGLFunctions_1_1 { +public: +}; + +QtObjectPtr QOpenGLFunctions_1_1_NewQOpenGLFunctions_1_1(){ + return new QOpenGLFunctions_1_1(); +} + +int QOpenGLFunctions_1_1_InitializeOpenGLFunctions(QtObjectPtr ptr){ + return static_cast(ptr)->initializeOpenGLFunctions(); +} + +void QOpenGLFunctions_1_1_DestroyQOpenGLFunctions_1_1(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFunctions_1_1(); +} + +void QOpenGLFunctions_1_1_GlEnd(QtObjectPtr ptr){ + static_cast(ptr)->glEnd(); +} + +void QOpenGLFunctions_1_1_GlEndList(QtObjectPtr ptr){ + static_cast(ptr)->glEndList(); +} + +void QOpenGLFunctions_1_1_GlFinish(QtObjectPtr ptr){ + static_cast(ptr)->glFinish(); +} + +void QOpenGLFunctions_1_1_GlFlush(QtObjectPtr ptr){ + static_cast(ptr)->glFlush(); +} + +void QOpenGLFunctions_1_1_GlInitNames(QtObjectPtr ptr){ + static_cast(ptr)->glInitNames(); +} + +void QOpenGLFunctions_1_1_GlLoadIdentity(QtObjectPtr ptr){ + static_cast(ptr)->glLoadIdentity(); +} + +void QOpenGLFunctions_1_1_GlPopAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopAttrib(); +} + +void QOpenGLFunctions_1_1_GlPopClientAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopClientAttrib(); +} + +void QOpenGLFunctions_1_1_GlPopMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPopMatrix(); +} + +void QOpenGLFunctions_1_1_GlPopName(QtObjectPtr ptr){ + static_cast(ptr)->glPopName(); +} + +void QOpenGLFunctions_1_1_GlPushMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPushMatrix(); +} + diff --git a/gui/qopenglfunctions_1_1.go b/gui/qopenglfunctions_1_1.go new file mode 100755 index 00000000..5da09e66 --- /dev/null +++ b/gui/qopenglfunctions_1_1.go @@ -0,0 +1,116 @@ +package gui + +//#include "qopenglfunctions_1_1.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions_1_1 struct { + QAbstractOpenGLFunctions +} + +type QOpenGLFunctions_1_1ITF interface { + QAbstractOpenGLFunctionsITF + QOpenGLFunctions_1_1PTR() *QOpenGLFunctions_1_1 +} + +func PointerFromQOpenGLFunctions_1_1(ptr QOpenGLFunctions_1_1ITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctions_1_1PTR().Pointer() + } + return nil +} + +func QOpenGLFunctions_1_1FromPointer(ptr unsafe.Pointer) *QOpenGLFunctions_1_1 { + var n = new(QOpenGLFunctions_1_1) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions_1_1) QOpenGLFunctions_1_1PTR() *QOpenGLFunctions_1_1 { + return ptr +} + +func NewQOpenGLFunctions_1_1() *QOpenGLFunctions_1_1 { + return QOpenGLFunctions_1_1FromPointer(unsafe.Pointer(C.QOpenGLFunctions_1_1_NewQOpenGLFunctions_1_1())) +} + +func (ptr *QOpenGLFunctions_1_1) InitializeOpenGLFunctions() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFunctions_1_1_InitializeOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFunctions_1_1) DestroyQOpenGLFunctions_1_1() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_1_DestroyQOpenGLFunctions_1_1(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_1) GlEnd() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_1_GlEnd(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_1) GlEndList() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_1_GlEndList(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_1) GlFinish() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_1_GlFinish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_1) GlFlush() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_1_GlFlush(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_1) GlInitNames() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_1_GlInitNames(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_1) GlLoadIdentity() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_1_GlLoadIdentity(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_1) GlPopAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_1_GlPopAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_1) GlPopClientAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_1_GlPopClientAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_1) GlPopMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_1_GlPopMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_1) GlPopName() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_1_GlPopName(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_1) GlPushMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_1_GlPushMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglfunctions_1_1.h b/gui/qopenglfunctions_1_1.h new file mode 100755 index 00000000..35cc801e --- /dev/null +++ b/gui/qopenglfunctions_1_1.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFunctions_1_1_NewQOpenGLFunctions_1_1(); +int QOpenGLFunctions_1_1_InitializeOpenGLFunctions(QtObjectPtr ptr); +void QOpenGLFunctions_1_1_DestroyQOpenGLFunctions_1_1(QtObjectPtr ptr); +void QOpenGLFunctions_1_1_GlEnd(QtObjectPtr ptr); +void QOpenGLFunctions_1_1_GlEndList(QtObjectPtr ptr); +void QOpenGLFunctions_1_1_GlFinish(QtObjectPtr ptr); +void QOpenGLFunctions_1_1_GlFlush(QtObjectPtr ptr); +void QOpenGLFunctions_1_1_GlInitNames(QtObjectPtr ptr); +void QOpenGLFunctions_1_1_GlLoadIdentity(QtObjectPtr ptr); +void QOpenGLFunctions_1_1_GlPopAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_1_1_GlPopClientAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_1_1_GlPopMatrix(QtObjectPtr ptr); +void QOpenGLFunctions_1_1_GlPopName(QtObjectPtr ptr); +void QOpenGLFunctions_1_1_GlPushMatrix(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions_1_2.cpp b/gui/qopenglfunctions_1_2.cpp new file mode 100755 index 00000000..69219215 --- /dev/null +++ b/gui/qopenglfunctions_1_2.cpp @@ -0,0 +1,69 @@ +#include "qopenglfunctions_1_2.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFunctions_1_2: public QOpenGLFunctions_1_2 { +public: +}; + +QtObjectPtr QOpenGLFunctions_1_2_NewQOpenGLFunctions_1_2(){ + return new QOpenGLFunctions_1_2(); +} + +int QOpenGLFunctions_1_2_InitializeOpenGLFunctions(QtObjectPtr ptr){ + return static_cast(ptr)->initializeOpenGLFunctions(); +} + +void QOpenGLFunctions_1_2_DestroyQOpenGLFunctions_1_2(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFunctions_1_2(); +} + +void QOpenGLFunctions_1_2_GlEnd(QtObjectPtr ptr){ + static_cast(ptr)->glEnd(); +} + +void QOpenGLFunctions_1_2_GlEndList(QtObjectPtr ptr){ + static_cast(ptr)->glEndList(); +} + +void QOpenGLFunctions_1_2_GlFinish(QtObjectPtr ptr){ + static_cast(ptr)->glFinish(); +} + +void QOpenGLFunctions_1_2_GlFlush(QtObjectPtr ptr){ + static_cast(ptr)->glFlush(); +} + +void QOpenGLFunctions_1_2_GlInitNames(QtObjectPtr ptr){ + static_cast(ptr)->glInitNames(); +} + +void QOpenGLFunctions_1_2_GlLoadIdentity(QtObjectPtr ptr){ + static_cast(ptr)->glLoadIdentity(); +} + +void QOpenGLFunctions_1_2_GlPopAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopAttrib(); +} + +void QOpenGLFunctions_1_2_GlPopClientAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopClientAttrib(); +} + +void QOpenGLFunctions_1_2_GlPopMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPopMatrix(); +} + +void QOpenGLFunctions_1_2_GlPopName(QtObjectPtr ptr){ + static_cast(ptr)->glPopName(); +} + +void QOpenGLFunctions_1_2_GlPushMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPushMatrix(); +} + diff --git a/gui/qopenglfunctions_1_2.go b/gui/qopenglfunctions_1_2.go new file mode 100755 index 00000000..36fd479c --- /dev/null +++ b/gui/qopenglfunctions_1_2.go @@ -0,0 +1,116 @@ +package gui + +//#include "qopenglfunctions_1_2.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions_1_2 struct { + QAbstractOpenGLFunctions +} + +type QOpenGLFunctions_1_2ITF interface { + QAbstractOpenGLFunctionsITF + QOpenGLFunctions_1_2PTR() *QOpenGLFunctions_1_2 +} + +func PointerFromQOpenGLFunctions_1_2(ptr QOpenGLFunctions_1_2ITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctions_1_2PTR().Pointer() + } + return nil +} + +func QOpenGLFunctions_1_2FromPointer(ptr unsafe.Pointer) *QOpenGLFunctions_1_2 { + var n = new(QOpenGLFunctions_1_2) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions_1_2) QOpenGLFunctions_1_2PTR() *QOpenGLFunctions_1_2 { + return ptr +} + +func NewQOpenGLFunctions_1_2() *QOpenGLFunctions_1_2 { + return QOpenGLFunctions_1_2FromPointer(unsafe.Pointer(C.QOpenGLFunctions_1_2_NewQOpenGLFunctions_1_2())) +} + +func (ptr *QOpenGLFunctions_1_2) InitializeOpenGLFunctions() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFunctions_1_2_InitializeOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFunctions_1_2) DestroyQOpenGLFunctions_1_2() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_2_DestroyQOpenGLFunctions_1_2(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_2) GlEnd() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_2_GlEnd(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_2) GlEndList() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_2_GlEndList(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_2) GlFinish() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_2_GlFinish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_2) GlFlush() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_2_GlFlush(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_2) GlInitNames() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_2_GlInitNames(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_2) GlLoadIdentity() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_2_GlLoadIdentity(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_2) GlPopAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_2_GlPopAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_2) GlPopClientAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_2_GlPopClientAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_2) GlPopMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_2_GlPopMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_2) GlPopName() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_2_GlPopName(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_2) GlPushMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_2_GlPushMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglfunctions_1_2.h b/gui/qopenglfunctions_1_2.h new file mode 100755 index 00000000..5c161dad --- /dev/null +++ b/gui/qopenglfunctions_1_2.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFunctions_1_2_NewQOpenGLFunctions_1_2(); +int QOpenGLFunctions_1_2_InitializeOpenGLFunctions(QtObjectPtr ptr); +void QOpenGLFunctions_1_2_DestroyQOpenGLFunctions_1_2(QtObjectPtr ptr); +void QOpenGLFunctions_1_2_GlEnd(QtObjectPtr ptr); +void QOpenGLFunctions_1_2_GlEndList(QtObjectPtr ptr); +void QOpenGLFunctions_1_2_GlFinish(QtObjectPtr ptr); +void QOpenGLFunctions_1_2_GlFlush(QtObjectPtr ptr); +void QOpenGLFunctions_1_2_GlInitNames(QtObjectPtr ptr); +void QOpenGLFunctions_1_2_GlLoadIdentity(QtObjectPtr ptr); +void QOpenGLFunctions_1_2_GlPopAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_1_2_GlPopClientAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_1_2_GlPopMatrix(QtObjectPtr ptr); +void QOpenGLFunctions_1_2_GlPopName(QtObjectPtr ptr); +void QOpenGLFunctions_1_2_GlPushMatrix(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions_1_3.cpp b/gui/qopenglfunctions_1_3.cpp new file mode 100755 index 00000000..362c5960 --- /dev/null +++ b/gui/qopenglfunctions_1_3.cpp @@ -0,0 +1,69 @@ +#include "qopenglfunctions_1_3.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFunctions_1_3: public QOpenGLFunctions_1_3 { +public: +}; + +QtObjectPtr QOpenGLFunctions_1_3_NewQOpenGLFunctions_1_3(){ + return new QOpenGLFunctions_1_3(); +} + +int QOpenGLFunctions_1_3_InitializeOpenGLFunctions(QtObjectPtr ptr){ + return static_cast(ptr)->initializeOpenGLFunctions(); +} + +void QOpenGLFunctions_1_3_DestroyQOpenGLFunctions_1_3(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFunctions_1_3(); +} + +void QOpenGLFunctions_1_3_GlEnd(QtObjectPtr ptr){ + static_cast(ptr)->glEnd(); +} + +void QOpenGLFunctions_1_3_GlEndList(QtObjectPtr ptr){ + static_cast(ptr)->glEndList(); +} + +void QOpenGLFunctions_1_3_GlFinish(QtObjectPtr ptr){ + static_cast(ptr)->glFinish(); +} + +void QOpenGLFunctions_1_3_GlFlush(QtObjectPtr ptr){ + static_cast(ptr)->glFlush(); +} + +void QOpenGLFunctions_1_3_GlInitNames(QtObjectPtr ptr){ + static_cast(ptr)->glInitNames(); +} + +void QOpenGLFunctions_1_3_GlLoadIdentity(QtObjectPtr ptr){ + static_cast(ptr)->glLoadIdentity(); +} + +void QOpenGLFunctions_1_3_GlPopAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopAttrib(); +} + +void QOpenGLFunctions_1_3_GlPopClientAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopClientAttrib(); +} + +void QOpenGLFunctions_1_3_GlPopMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPopMatrix(); +} + +void QOpenGLFunctions_1_3_GlPopName(QtObjectPtr ptr){ + static_cast(ptr)->glPopName(); +} + +void QOpenGLFunctions_1_3_GlPushMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPushMatrix(); +} + diff --git a/gui/qopenglfunctions_1_3.go b/gui/qopenglfunctions_1_3.go new file mode 100755 index 00000000..47e2c6cd --- /dev/null +++ b/gui/qopenglfunctions_1_3.go @@ -0,0 +1,116 @@ +package gui + +//#include "qopenglfunctions_1_3.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions_1_3 struct { + QAbstractOpenGLFunctions +} + +type QOpenGLFunctions_1_3ITF interface { + QAbstractOpenGLFunctionsITF + QOpenGLFunctions_1_3PTR() *QOpenGLFunctions_1_3 +} + +func PointerFromQOpenGLFunctions_1_3(ptr QOpenGLFunctions_1_3ITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctions_1_3PTR().Pointer() + } + return nil +} + +func QOpenGLFunctions_1_3FromPointer(ptr unsafe.Pointer) *QOpenGLFunctions_1_3 { + var n = new(QOpenGLFunctions_1_3) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions_1_3) QOpenGLFunctions_1_3PTR() *QOpenGLFunctions_1_3 { + return ptr +} + +func NewQOpenGLFunctions_1_3() *QOpenGLFunctions_1_3 { + return QOpenGLFunctions_1_3FromPointer(unsafe.Pointer(C.QOpenGLFunctions_1_3_NewQOpenGLFunctions_1_3())) +} + +func (ptr *QOpenGLFunctions_1_3) InitializeOpenGLFunctions() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFunctions_1_3_InitializeOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFunctions_1_3) DestroyQOpenGLFunctions_1_3() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_3_DestroyQOpenGLFunctions_1_3(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_3) GlEnd() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_3_GlEnd(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_3) GlEndList() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_3_GlEndList(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_3) GlFinish() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_3_GlFinish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_3) GlFlush() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_3_GlFlush(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_3) GlInitNames() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_3_GlInitNames(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_3) GlLoadIdentity() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_3_GlLoadIdentity(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_3) GlPopAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_3_GlPopAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_3) GlPopClientAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_3_GlPopClientAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_3) GlPopMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_3_GlPopMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_3) GlPopName() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_3_GlPopName(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_3) GlPushMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_3_GlPushMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglfunctions_1_3.h b/gui/qopenglfunctions_1_3.h new file mode 100755 index 00000000..2297dd70 --- /dev/null +++ b/gui/qopenglfunctions_1_3.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFunctions_1_3_NewQOpenGLFunctions_1_3(); +int QOpenGLFunctions_1_3_InitializeOpenGLFunctions(QtObjectPtr ptr); +void QOpenGLFunctions_1_3_DestroyQOpenGLFunctions_1_3(QtObjectPtr ptr); +void QOpenGLFunctions_1_3_GlEnd(QtObjectPtr ptr); +void QOpenGLFunctions_1_3_GlEndList(QtObjectPtr ptr); +void QOpenGLFunctions_1_3_GlFinish(QtObjectPtr ptr); +void QOpenGLFunctions_1_3_GlFlush(QtObjectPtr ptr); +void QOpenGLFunctions_1_3_GlInitNames(QtObjectPtr ptr); +void QOpenGLFunctions_1_3_GlLoadIdentity(QtObjectPtr ptr); +void QOpenGLFunctions_1_3_GlPopAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_1_3_GlPopClientAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_1_3_GlPopMatrix(QtObjectPtr ptr); +void QOpenGLFunctions_1_3_GlPopName(QtObjectPtr ptr); +void QOpenGLFunctions_1_3_GlPushMatrix(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions_1_4.cpp b/gui/qopenglfunctions_1_4.cpp new file mode 100755 index 00000000..b41a58e1 --- /dev/null +++ b/gui/qopenglfunctions_1_4.cpp @@ -0,0 +1,69 @@ +#include "qopenglfunctions_1_4.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFunctions_1_4: public QOpenGLFunctions_1_4 { +public: +}; + +QtObjectPtr QOpenGLFunctions_1_4_NewQOpenGLFunctions_1_4(){ + return new QOpenGLFunctions_1_4(); +} + +int QOpenGLFunctions_1_4_InitializeOpenGLFunctions(QtObjectPtr ptr){ + return static_cast(ptr)->initializeOpenGLFunctions(); +} + +void QOpenGLFunctions_1_4_DestroyQOpenGLFunctions_1_4(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFunctions_1_4(); +} + +void QOpenGLFunctions_1_4_GlEnd(QtObjectPtr ptr){ + static_cast(ptr)->glEnd(); +} + +void QOpenGLFunctions_1_4_GlEndList(QtObjectPtr ptr){ + static_cast(ptr)->glEndList(); +} + +void QOpenGLFunctions_1_4_GlFinish(QtObjectPtr ptr){ + static_cast(ptr)->glFinish(); +} + +void QOpenGLFunctions_1_4_GlFlush(QtObjectPtr ptr){ + static_cast(ptr)->glFlush(); +} + +void QOpenGLFunctions_1_4_GlInitNames(QtObjectPtr ptr){ + static_cast(ptr)->glInitNames(); +} + +void QOpenGLFunctions_1_4_GlLoadIdentity(QtObjectPtr ptr){ + static_cast(ptr)->glLoadIdentity(); +} + +void QOpenGLFunctions_1_4_GlPopAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopAttrib(); +} + +void QOpenGLFunctions_1_4_GlPopClientAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopClientAttrib(); +} + +void QOpenGLFunctions_1_4_GlPopMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPopMatrix(); +} + +void QOpenGLFunctions_1_4_GlPopName(QtObjectPtr ptr){ + static_cast(ptr)->glPopName(); +} + +void QOpenGLFunctions_1_4_GlPushMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPushMatrix(); +} + diff --git a/gui/qopenglfunctions_1_4.go b/gui/qopenglfunctions_1_4.go new file mode 100755 index 00000000..dedc72d2 --- /dev/null +++ b/gui/qopenglfunctions_1_4.go @@ -0,0 +1,116 @@ +package gui + +//#include "qopenglfunctions_1_4.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions_1_4 struct { + QAbstractOpenGLFunctions +} + +type QOpenGLFunctions_1_4ITF interface { + QAbstractOpenGLFunctionsITF + QOpenGLFunctions_1_4PTR() *QOpenGLFunctions_1_4 +} + +func PointerFromQOpenGLFunctions_1_4(ptr QOpenGLFunctions_1_4ITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctions_1_4PTR().Pointer() + } + return nil +} + +func QOpenGLFunctions_1_4FromPointer(ptr unsafe.Pointer) *QOpenGLFunctions_1_4 { + var n = new(QOpenGLFunctions_1_4) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions_1_4) QOpenGLFunctions_1_4PTR() *QOpenGLFunctions_1_4 { + return ptr +} + +func NewQOpenGLFunctions_1_4() *QOpenGLFunctions_1_4 { + return QOpenGLFunctions_1_4FromPointer(unsafe.Pointer(C.QOpenGLFunctions_1_4_NewQOpenGLFunctions_1_4())) +} + +func (ptr *QOpenGLFunctions_1_4) InitializeOpenGLFunctions() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFunctions_1_4_InitializeOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFunctions_1_4) DestroyQOpenGLFunctions_1_4() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_4_DestroyQOpenGLFunctions_1_4(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_4) GlEnd() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_4_GlEnd(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_4) GlEndList() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_4_GlEndList(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_4) GlFinish() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_4_GlFinish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_4) GlFlush() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_4_GlFlush(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_4) GlInitNames() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_4_GlInitNames(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_4) GlLoadIdentity() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_4_GlLoadIdentity(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_4) GlPopAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_4_GlPopAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_4) GlPopClientAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_4_GlPopClientAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_4) GlPopMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_4_GlPopMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_4) GlPopName() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_4_GlPopName(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_4) GlPushMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_4_GlPushMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglfunctions_1_4.h b/gui/qopenglfunctions_1_4.h new file mode 100755 index 00000000..8dc4385f --- /dev/null +++ b/gui/qopenglfunctions_1_4.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFunctions_1_4_NewQOpenGLFunctions_1_4(); +int QOpenGLFunctions_1_4_InitializeOpenGLFunctions(QtObjectPtr ptr); +void QOpenGLFunctions_1_4_DestroyQOpenGLFunctions_1_4(QtObjectPtr ptr); +void QOpenGLFunctions_1_4_GlEnd(QtObjectPtr ptr); +void QOpenGLFunctions_1_4_GlEndList(QtObjectPtr ptr); +void QOpenGLFunctions_1_4_GlFinish(QtObjectPtr ptr); +void QOpenGLFunctions_1_4_GlFlush(QtObjectPtr ptr); +void QOpenGLFunctions_1_4_GlInitNames(QtObjectPtr ptr); +void QOpenGLFunctions_1_4_GlLoadIdentity(QtObjectPtr ptr); +void QOpenGLFunctions_1_4_GlPopAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_1_4_GlPopClientAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_1_4_GlPopMatrix(QtObjectPtr ptr); +void QOpenGLFunctions_1_4_GlPopName(QtObjectPtr ptr); +void QOpenGLFunctions_1_4_GlPushMatrix(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions_1_5.cpp b/gui/qopenglfunctions_1_5.cpp new file mode 100755 index 00000000..9987e23e --- /dev/null +++ b/gui/qopenglfunctions_1_5.cpp @@ -0,0 +1,69 @@ +#include "qopenglfunctions_1_5.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFunctions_1_5: public QOpenGLFunctions_1_5 { +public: +}; + +QtObjectPtr QOpenGLFunctions_1_5_NewQOpenGLFunctions_1_5(){ + return new QOpenGLFunctions_1_5(); +} + +int QOpenGLFunctions_1_5_InitializeOpenGLFunctions(QtObjectPtr ptr){ + return static_cast(ptr)->initializeOpenGLFunctions(); +} + +void QOpenGLFunctions_1_5_DestroyQOpenGLFunctions_1_5(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFunctions_1_5(); +} + +void QOpenGLFunctions_1_5_GlEnd(QtObjectPtr ptr){ + static_cast(ptr)->glEnd(); +} + +void QOpenGLFunctions_1_5_GlEndList(QtObjectPtr ptr){ + static_cast(ptr)->glEndList(); +} + +void QOpenGLFunctions_1_5_GlFinish(QtObjectPtr ptr){ + static_cast(ptr)->glFinish(); +} + +void QOpenGLFunctions_1_5_GlFlush(QtObjectPtr ptr){ + static_cast(ptr)->glFlush(); +} + +void QOpenGLFunctions_1_5_GlInitNames(QtObjectPtr ptr){ + static_cast(ptr)->glInitNames(); +} + +void QOpenGLFunctions_1_5_GlLoadIdentity(QtObjectPtr ptr){ + static_cast(ptr)->glLoadIdentity(); +} + +void QOpenGLFunctions_1_5_GlPopAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopAttrib(); +} + +void QOpenGLFunctions_1_5_GlPopClientAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopClientAttrib(); +} + +void QOpenGLFunctions_1_5_GlPopMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPopMatrix(); +} + +void QOpenGLFunctions_1_5_GlPopName(QtObjectPtr ptr){ + static_cast(ptr)->glPopName(); +} + +void QOpenGLFunctions_1_5_GlPushMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPushMatrix(); +} + diff --git a/gui/qopenglfunctions_1_5.go b/gui/qopenglfunctions_1_5.go new file mode 100755 index 00000000..fc0fd54e --- /dev/null +++ b/gui/qopenglfunctions_1_5.go @@ -0,0 +1,116 @@ +package gui + +//#include "qopenglfunctions_1_5.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions_1_5 struct { + QAbstractOpenGLFunctions +} + +type QOpenGLFunctions_1_5ITF interface { + QAbstractOpenGLFunctionsITF + QOpenGLFunctions_1_5PTR() *QOpenGLFunctions_1_5 +} + +func PointerFromQOpenGLFunctions_1_5(ptr QOpenGLFunctions_1_5ITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctions_1_5PTR().Pointer() + } + return nil +} + +func QOpenGLFunctions_1_5FromPointer(ptr unsafe.Pointer) *QOpenGLFunctions_1_5 { + var n = new(QOpenGLFunctions_1_5) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions_1_5) QOpenGLFunctions_1_5PTR() *QOpenGLFunctions_1_5 { + return ptr +} + +func NewQOpenGLFunctions_1_5() *QOpenGLFunctions_1_5 { + return QOpenGLFunctions_1_5FromPointer(unsafe.Pointer(C.QOpenGLFunctions_1_5_NewQOpenGLFunctions_1_5())) +} + +func (ptr *QOpenGLFunctions_1_5) InitializeOpenGLFunctions() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFunctions_1_5_InitializeOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFunctions_1_5) DestroyQOpenGLFunctions_1_5() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_5_DestroyQOpenGLFunctions_1_5(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_5) GlEnd() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_5_GlEnd(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_5) GlEndList() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_5_GlEndList(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_5) GlFinish() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_5_GlFinish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_5) GlFlush() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_5_GlFlush(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_5) GlInitNames() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_5_GlInitNames(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_5) GlLoadIdentity() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_5_GlLoadIdentity(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_5) GlPopAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_5_GlPopAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_5) GlPopClientAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_5_GlPopClientAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_5) GlPopMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_5_GlPopMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_5) GlPopName() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_5_GlPopName(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_1_5) GlPushMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_1_5_GlPushMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglfunctions_1_5.h b/gui/qopenglfunctions_1_5.h new file mode 100755 index 00000000..cd3f5db2 --- /dev/null +++ b/gui/qopenglfunctions_1_5.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFunctions_1_5_NewQOpenGLFunctions_1_5(); +int QOpenGLFunctions_1_5_InitializeOpenGLFunctions(QtObjectPtr ptr); +void QOpenGLFunctions_1_5_DestroyQOpenGLFunctions_1_5(QtObjectPtr ptr); +void QOpenGLFunctions_1_5_GlEnd(QtObjectPtr ptr); +void QOpenGLFunctions_1_5_GlEndList(QtObjectPtr ptr); +void QOpenGLFunctions_1_5_GlFinish(QtObjectPtr ptr); +void QOpenGLFunctions_1_5_GlFlush(QtObjectPtr ptr); +void QOpenGLFunctions_1_5_GlInitNames(QtObjectPtr ptr); +void QOpenGLFunctions_1_5_GlLoadIdentity(QtObjectPtr ptr); +void QOpenGLFunctions_1_5_GlPopAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_1_5_GlPopClientAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_1_5_GlPopMatrix(QtObjectPtr ptr); +void QOpenGLFunctions_1_5_GlPopName(QtObjectPtr ptr); +void QOpenGLFunctions_1_5_GlPushMatrix(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions_2_0.cpp b/gui/qopenglfunctions_2_0.cpp new file mode 100755 index 00000000..da04613e --- /dev/null +++ b/gui/qopenglfunctions_2_0.cpp @@ -0,0 +1,69 @@ +#include "qopenglfunctions_2_0.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFunctions_2_0: public QOpenGLFunctions_2_0 { +public: +}; + +QtObjectPtr QOpenGLFunctions_2_0_NewQOpenGLFunctions_2_0(){ + return new QOpenGLFunctions_2_0(); +} + +int QOpenGLFunctions_2_0_InitializeOpenGLFunctions(QtObjectPtr ptr){ + return static_cast(ptr)->initializeOpenGLFunctions(); +} + +void QOpenGLFunctions_2_0_DestroyQOpenGLFunctions_2_0(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFunctions_2_0(); +} + +void QOpenGLFunctions_2_0_GlEnd(QtObjectPtr ptr){ + static_cast(ptr)->glEnd(); +} + +void QOpenGLFunctions_2_0_GlEndList(QtObjectPtr ptr){ + static_cast(ptr)->glEndList(); +} + +void QOpenGLFunctions_2_0_GlFinish(QtObjectPtr ptr){ + static_cast(ptr)->glFinish(); +} + +void QOpenGLFunctions_2_0_GlFlush(QtObjectPtr ptr){ + static_cast(ptr)->glFlush(); +} + +void QOpenGLFunctions_2_0_GlInitNames(QtObjectPtr ptr){ + static_cast(ptr)->glInitNames(); +} + +void QOpenGLFunctions_2_0_GlLoadIdentity(QtObjectPtr ptr){ + static_cast(ptr)->glLoadIdentity(); +} + +void QOpenGLFunctions_2_0_GlPopAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopAttrib(); +} + +void QOpenGLFunctions_2_0_GlPopClientAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopClientAttrib(); +} + +void QOpenGLFunctions_2_0_GlPopMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPopMatrix(); +} + +void QOpenGLFunctions_2_0_GlPopName(QtObjectPtr ptr){ + static_cast(ptr)->glPopName(); +} + +void QOpenGLFunctions_2_0_GlPushMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPushMatrix(); +} + diff --git a/gui/qopenglfunctions_2_0.go b/gui/qopenglfunctions_2_0.go new file mode 100755 index 00000000..f6fd4bcf --- /dev/null +++ b/gui/qopenglfunctions_2_0.go @@ -0,0 +1,116 @@ +package gui + +//#include "qopenglfunctions_2_0.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions_2_0 struct { + QAbstractOpenGLFunctions +} + +type QOpenGLFunctions_2_0ITF interface { + QAbstractOpenGLFunctionsITF + QOpenGLFunctions_2_0PTR() *QOpenGLFunctions_2_0 +} + +func PointerFromQOpenGLFunctions_2_0(ptr QOpenGLFunctions_2_0ITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctions_2_0PTR().Pointer() + } + return nil +} + +func QOpenGLFunctions_2_0FromPointer(ptr unsafe.Pointer) *QOpenGLFunctions_2_0 { + var n = new(QOpenGLFunctions_2_0) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions_2_0) QOpenGLFunctions_2_0PTR() *QOpenGLFunctions_2_0 { + return ptr +} + +func NewQOpenGLFunctions_2_0() *QOpenGLFunctions_2_0 { + return QOpenGLFunctions_2_0FromPointer(unsafe.Pointer(C.QOpenGLFunctions_2_0_NewQOpenGLFunctions_2_0())) +} + +func (ptr *QOpenGLFunctions_2_0) InitializeOpenGLFunctions() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFunctions_2_0_InitializeOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFunctions_2_0) DestroyQOpenGLFunctions_2_0() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_2_0_DestroyQOpenGLFunctions_2_0(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_2_0) GlEnd() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_2_0_GlEnd(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_2_0) GlEndList() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_2_0_GlEndList(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_2_0) GlFinish() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_2_0_GlFinish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_2_0) GlFlush() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_2_0_GlFlush(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_2_0) GlInitNames() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_2_0_GlInitNames(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_2_0) GlLoadIdentity() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_2_0_GlLoadIdentity(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_2_0) GlPopAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_2_0_GlPopAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_2_0) GlPopClientAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_2_0_GlPopClientAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_2_0) GlPopMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_2_0_GlPopMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_2_0) GlPopName() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_2_0_GlPopName(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_2_0) GlPushMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_2_0_GlPushMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglfunctions_2_0.h b/gui/qopenglfunctions_2_0.h new file mode 100755 index 00000000..6ac0deca --- /dev/null +++ b/gui/qopenglfunctions_2_0.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFunctions_2_0_NewQOpenGLFunctions_2_0(); +int QOpenGLFunctions_2_0_InitializeOpenGLFunctions(QtObjectPtr ptr); +void QOpenGLFunctions_2_0_DestroyQOpenGLFunctions_2_0(QtObjectPtr ptr); +void QOpenGLFunctions_2_0_GlEnd(QtObjectPtr ptr); +void QOpenGLFunctions_2_0_GlEndList(QtObjectPtr ptr); +void QOpenGLFunctions_2_0_GlFinish(QtObjectPtr ptr); +void QOpenGLFunctions_2_0_GlFlush(QtObjectPtr ptr); +void QOpenGLFunctions_2_0_GlInitNames(QtObjectPtr ptr); +void QOpenGLFunctions_2_0_GlLoadIdentity(QtObjectPtr ptr); +void QOpenGLFunctions_2_0_GlPopAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_2_0_GlPopClientAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_2_0_GlPopMatrix(QtObjectPtr ptr); +void QOpenGLFunctions_2_0_GlPopName(QtObjectPtr ptr); +void QOpenGLFunctions_2_0_GlPushMatrix(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions_2_1.cpp b/gui/qopenglfunctions_2_1.cpp new file mode 100755 index 00000000..a2478c6f --- /dev/null +++ b/gui/qopenglfunctions_2_1.cpp @@ -0,0 +1,69 @@ +#include "qopenglfunctions_2_1.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFunctions_2_1: public QOpenGLFunctions_2_1 { +public: +}; + +QtObjectPtr QOpenGLFunctions_2_1_NewQOpenGLFunctions_2_1(){ + return new QOpenGLFunctions_2_1(); +} + +int QOpenGLFunctions_2_1_InitializeOpenGLFunctions(QtObjectPtr ptr){ + return static_cast(ptr)->initializeOpenGLFunctions(); +} + +void QOpenGLFunctions_2_1_DestroyQOpenGLFunctions_2_1(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFunctions_2_1(); +} + +void QOpenGLFunctions_2_1_GlEnd(QtObjectPtr ptr){ + static_cast(ptr)->glEnd(); +} + +void QOpenGLFunctions_2_1_GlEndList(QtObjectPtr ptr){ + static_cast(ptr)->glEndList(); +} + +void QOpenGLFunctions_2_1_GlFinish(QtObjectPtr ptr){ + static_cast(ptr)->glFinish(); +} + +void QOpenGLFunctions_2_1_GlFlush(QtObjectPtr ptr){ + static_cast(ptr)->glFlush(); +} + +void QOpenGLFunctions_2_1_GlInitNames(QtObjectPtr ptr){ + static_cast(ptr)->glInitNames(); +} + +void QOpenGLFunctions_2_1_GlLoadIdentity(QtObjectPtr ptr){ + static_cast(ptr)->glLoadIdentity(); +} + +void QOpenGLFunctions_2_1_GlPopAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopAttrib(); +} + +void QOpenGLFunctions_2_1_GlPopClientAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopClientAttrib(); +} + +void QOpenGLFunctions_2_1_GlPopMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPopMatrix(); +} + +void QOpenGLFunctions_2_1_GlPopName(QtObjectPtr ptr){ + static_cast(ptr)->glPopName(); +} + +void QOpenGLFunctions_2_1_GlPushMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPushMatrix(); +} + diff --git a/gui/qopenglfunctions_2_1.go b/gui/qopenglfunctions_2_1.go new file mode 100755 index 00000000..2971dea9 --- /dev/null +++ b/gui/qopenglfunctions_2_1.go @@ -0,0 +1,116 @@ +package gui + +//#include "qopenglfunctions_2_1.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions_2_1 struct { + QAbstractOpenGLFunctions +} + +type QOpenGLFunctions_2_1ITF interface { + QAbstractOpenGLFunctionsITF + QOpenGLFunctions_2_1PTR() *QOpenGLFunctions_2_1 +} + +func PointerFromQOpenGLFunctions_2_1(ptr QOpenGLFunctions_2_1ITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctions_2_1PTR().Pointer() + } + return nil +} + +func QOpenGLFunctions_2_1FromPointer(ptr unsafe.Pointer) *QOpenGLFunctions_2_1 { + var n = new(QOpenGLFunctions_2_1) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions_2_1) QOpenGLFunctions_2_1PTR() *QOpenGLFunctions_2_1 { + return ptr +} + +func NewQOpenGLFunctions_2_1() *QOpenGLFunctions_2_1 { + return QOpenGLFunctions_2_1FromPointer(unsafe.Pointer(C.QOpenGLFunctions_2_1_NewQOpenGLFunctions_2_1())) +} + +func (ptr *QOpenGLFunctions_2_1) InitializeOpenGLFunctions() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFunctions_2_1_InitializeOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFunctions_2_1) DestroyQOpenGLFunctions_2_1() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_2_1_DestroyQOpenGLFunctions_2_1(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_2_1) GlEnd() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_2_1_GlEnd(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_2_1) GlEndList() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_2_1_GlEndList(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_2_1) GlFinish() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_2_1_GlFinish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_2_1) GlFlush() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_2_1_GlFlush(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_2_1) GlInitNames() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_2_1_GlInitNames(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_2_1) GlLoadIdentity() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_2_1_GlLoadIdentity(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_2_1) GlPopAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_2_1_GlPopAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_2_1) GlPopClientAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_2_1_GlPopClientAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_2_1) GlPopMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_2_1_GlPopMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_2_1) GlPopName() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_2_1_GlPopName(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_2_1) GlPushMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_2_1_GlPushMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglfunctions_2_1.h b/gui/qopenglfunctions_2_1.h new file mode 100755 index 00000000..ed16b388 --- /dev/null +++ b/gui/qopenglfunctions_2_1.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFunctions_2_1_NewQOpenGLFunctions_2_1(); +int QOpenGLFunctions_2_1_InitializeOpenGLFunctions(QtObjectPtr ptr); +void QOpenGLFunctions_2_1_DestroyQOpenGLFunctions_2_1(QtObjectPtr ptr); +void QOpenGLFunctions_2_1_GlEnd(QtObjectPtr ptr); +void QOpenGLFunctions_2_1_GlEndList(QtObjectPtr ptr); +void QOpenGLFunctions_2_1_GlFinish(QtObjectPtr ptr); +void QOpenGLFunctions_2_1_GlFlush(QtObjectPtr ptr); +void QOpenGLFunctions_2_1_GlInitNames(QtObjectPtr ptr); +void QOpenGLFunctions_2_1_GlLoadIdentity(QtObjectPtr ptr); +void QOpenGLFunctions_2_1_GlPopAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_2_1_GlPopClientAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_2_1_GlPopMatrix(QtObjectPtr ptr); +void QOpenGLFunctions_2_1_GlPopName(QtObjectPtr ptr); +void QOpenGLFunctions_2_1_GlPushMatrix(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions_3_0.cpp b/gui/qopenglfunctions_3_0.cpp new file mode 100755 index 00000000..dd787ed9 --- /dev/null +++ b/gui/qopenglfunctions_3_0.cpp @@ -0,0 +1,77 @@ +#include "qopenglfunctions_3_0.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFunctions_3_0: public QOpenGLFunctions_3_0 { +public: +}; + +QtObjectPtr QOpenGLFunctions_3_0_NewQOpenGLFunctions_3_0(){ + return new QOpenGLFunctions_3_0(); +} + +int QOpenGLFunctions_3_0_InitializeOpenGLFunctions(QtObjectPtr ptr){ + return static_cast(ptr)->initializeOpenGLFunctions(); +} + +void QOpenGLFunctions_3_0_DestroyQOpenGLFunctions_3_0(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFunctions_3_0(); +} + +void QOpenGLFunctions_3_0_GlEnd(QtObjectPtr ptr){ + static_cast(ptr)->glEnd(); +} + +void QOpenGLFunctions_3_0_GlEndConditionalRender(QtObjectPtr ptr){ + static_cast(ptr)->glEndConditionalRender(); +} + +void QOpenGLFunctions_3_0_GlEndList(QtObjectPtr ptr){ + static_cast(ptr)->glEndList(); +} + +void QOpenGLFunctions_3_0_GlEndTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glEndTransformFeedback(); +} + +void QOpenGLFunctions_3_0_GlFinish(QtObjectPtr ptr){ + static_cast(ptr)->glFinish(); +} + +void QOpenGLFunctions_3_0_GlFlush(QtObjectPtr ptr){ + static_cast(ptr)->glFlush(); +} + +void QOpenGLFunctions_3_0_GlInitNames(QtObjectPtr ptr){ + static_cast(ptr)->glInitNames(); +} + +void QOpenGLFunctions_3_0_GlLoadIdentity(QtObjectPtr ptr){ + static_cast(ptr)->glLoadIdentity(); +} + +void QOpenGLFunctions_3_0_GlPopAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopAttrib(); +} + +void QOpenGLFunctions_3_0_GlPopClientAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopClientAttrib(); +} + +void QOpenGLFunctions_3_0_GlPopMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPopMatrix(); +} + +void QOpenGLFunctions_3_0_GlPopName(QtObjectPtr ptr){ + static_cast(ptr)->glPopName(); +} + +void QOpenGLFunctions_3_0_GlPushMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPushMatrix(); +} + diff --git a/gui/qopenglfunctions_3_0.go b/gui/qopenglfunctions_3_0.go new file mode 100755 index 00000000..00c5495b --- /dev/null +++ b/gui/qopenglfunctions_3_0.go @@ -0,0 +1,128 @@ +package gui + +//#include "qopenglfunctions_3_0.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions_3_0 struct { + QAbstractOpenGLFunctions +} + +type QOpenGLFunctions_3_0ITF interface { + QAbstractOpenGLFunctionsITF + QOpenGLFunctions_3_0PTR() *QOpenGLFunctions_3_0 +} + +func PointerFromQOpenGLFunctions_3_0(ptr QOpenGLFunctions_3_0ITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctions_3_0PTR().Pointer() + } + return nil +} + +func QOpenGLFunctions_3_0FromPointer(ptr unsafe.Pointer) *QOpenGLFunctions_3_0 { + var n = new(QOpenGLFunctions_3_0) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions_3_0) QOpenGLFunctions_3_0PTR() *QOpenGLFunctions_3_0 { + return ptr +} + +func NewQOpenGLFunctions_3_0() *QOpenGLFunctions_3_0 { + return QOpenGLFunctions_3_0FromPointer(unsafe.Pointer(C.QOpenGLFunctions_3_0_NewQOpenGLFunctions_3_0())) +} + +func (ptr *QOpenGLFunctions_3_0) InitializeOpenGLFunctions() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFunctions_3_0_InitializeOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFunctions_3_0) DestroyQOpenGLFunctions_3_0() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_0_DestroyQOpenGLFunctions_3_0(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_0) GlEnd() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_0_GlEnd(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_0) GlEndConditionalRender() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_0_GlEndConditionalRender(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_0) GlEndList() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_0_GlEndList(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_0) GlEndTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_0_GlEndTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_0) GlFinish() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_0_GlFinish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_0) GlFlush() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_0_GlFlush(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_0) GlInitNames() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_0_GlInitNames(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_0) GlLoadIdentity() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_0_GlLoadIdentity(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_0) GlPopAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_0_GlPopAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_0) GlPopClientAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_0_GlPopClientAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_0) GlPopMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_0_GlPopMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_0) GlPopName() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_0_GlPopName(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_0) GlPushMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_0_GlPushMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglfunctions_3_0.h b/gui/qopenglfunctions_3_0.h new file mode 100755 index 00000000..129648cb --- /dev/null +++ b/gui/qopenglfunctions_3_0.h @@ -0,0 +1,25 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFunctions_3_0_NewQOpenGLFunctions_3_0(); +int QOpenGLFunctions_3_0_InitializeOpenGLFunctions(QtObjectPtr ptr); +void QOpenGLFunctions_3_0_DestroyQOpenGLFunctions_3_0(QtObjectPtr ptr); +void QOpenGLFunctions_3_0_GlEnd(QtObjectPtr ptr); +void QOpenGLFunctions_3_0_GlEndConditionalRender(QtObjectPtr ptr); +void QOpenGLFunctions_3_0_GlEndList(QtObjectPtr ptr); +void QOpenGLFunctions_3_0_GlEndTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_3_0_GlFinish(QtObjectPtr ptr); +void QOpenGLFunctions_3_0_GlFlush(QtObjectPtr ptr); +void QOpenGLFunctions_3_0_GlInitNames(QtObjectPtr ptr); +void QOpenGLFunctions_3_0_GlLoadIdentity(QtObjectPtr ptr); +void QOpenGLFunctions_3_0_GlPopAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_3_0_GlPopClientAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_3_0_GlPopMatrix(QtObjectPtr ptr); +void QOpenGLFunctions_3_0_GlPopName(QtObjectPtr ptr); +void QOpenGLFunctions_3_0_GlPushMatrix(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions_3_1.cpp b/gui/qopenglfunctions_3_1.cpp new file mode 100755 index 00000000..8eccfa3e --- /dev/null +++ b/gui/qopenglfunctions_3_1.cpp @@ -0,0 +1,41 @@ +#include "qopenglfunctions_3_1.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFunctions_3_1: public QOpenGLFunctions_3_1 { +public: +}; + +QtObjectPtr QOpenGLFunctions_3_1_NewQOpenGLFunctions_3_1(){ + return new QOpenGLFunctions_3_1(); +} + +int QOpenGLFunctions_3_1_InitializeOpenGLFunctions(QtObjectPtr ptr){ + return static_cast(ptr)->initializeOpenGLFunctions(); +} + +void QOpenGLFunctions_3_1_DestroyQOpenGLFunctions_3_1(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFunctions_3_1(); +} + +void QOpenGLFunctions_3_1_GlEndConditionalRender(QtObjectPtr ptr){ + static_cast(ptr)->glEndConditionalRender(); +} + +void QOpenGLFunctions_3_1_GlEndTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glEndTransformFeedback(); +} + +void QOpenGLFunctions_3_1_GlFinish(QtObjectPtr ptr){ + static_cast(ptr)->glFinish(); +} + +void QOpenGLFunctions_3_1_GlFlush(QtObjectPtr ptr){ + static_cast(ptr)->glFlush(); +} + diff --git a/gui/qopenglfunctions_3_1.go b/gui/qopenglfunctions_3_1.go new file mode 100755 index 00000000..b0375ea0 --- /dev/null +++ b/gui/qopenglfunctions_3_1.go @@ -0,0 +1,74 @@ +package gui + +//#include "qopenglfunctions_3_1.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions_3_1 struct { + QAbstractOpenGLFunctions +} + +type QOpenGLFunctions_3_1ITF interface { + QAbstractOpenGLFunctionsITF + QOpenGLFunctions_3_1PTR() *QOpenGLFunctions_3_1 +} + +func PointerFromQOpenGLFunctions_3_1(ptr QOpenGLFunctions_3_1ITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctions_3_1PTR().Pointer() + } + return nil +} + +func QOpenGLFunctions_3_1FromPointer(ptr unsafe.Pointer) *QOpenGLFunctions_3_1 { + var n = new(QOpenGLFunctions_3_1) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions_3_1) QOpenGLFunctions_3_1PTR() *QOpenGLFunctions_3_1 { + return ptr +} + +func NewQOpenGLFunctions_3_1() *QOpenGLFunctions_3_1 { + return QOpenGLFunctions_3_1FromPointer(unsafe.Pointer(C.QOpenGLFunctions_3_1_NewQOpenGLFunctions_3_1())) +} + +func (ptr *QOpenGLFunctions_3_1) InitializeOpenGLFunctions() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFunctions_3_1_InitializeOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFunctions_3_1) DestroyQOpenGLFunctions_3_1() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_1_DestroyQOpenGLFunctions_3_1(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_1) GlEndConditionalRender() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_1_GlEndConditionalRender(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_1) GlEndTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_1_GlEndTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_1) GlFinish() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_1_GlFinish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_1) GlFlush() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_1_GlFlush(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglfunctions_3_1.h b/gui/qopenglfunctions_3_1.h new file mode 100755 index 00000000..893b5760 --- /dev/null +++ b/gui/qopenglfunctions_3_1.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFunctions_3_1_NewQOpenGLFunctions_3_1(); +int QOpenGLFunctions_3_1_InitializeOpenGLFunctions(QtObjectPtr ptr); +void QOpenGLFunctions_3_1_DestroyQOpenGLFunctions_3_1(QtObjectPtr ptr); +void QOpenGLFunctions_3_1_GlEndConditionalRender(QtObjectPtr ptr); +void QOpenGLFunctions_3_1_GlEndTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_3_1_GlFinish(QtObjectPtr ptr); +void QOpenGLFunctions_3_1_GlFlush(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions_3_2_compatibility.cpp b/gui/qopenglfunctions_3_2_compatibility.cpp new file mode 100755 index 00000000..09d10e5f --- /dev/null +++ b/gui/qopenglfunctions_3_2_compatibility.cpp @@ -0,0 +1,77 @@ +#include "qopenglfunctions_3_2_compatibility.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFunctions_3_2_Compatibility: public QOpenGLFunctions_3_2_Compatibility { +public: +}; + +QtObjectPtr QOpenGLFunctions_3_2_Compatibility_NewQOpenGLFunctions_3_2_Compatibility(){ + return new QOpenGLFunctions_3_2_Compatibility(); +} + +int QOpenGLFunctions_3_2_Compatibility_InitializeOpenGLFunctions(QtObjectPtr ptr){ + return static_cast(ptr)->initializeOpenGLFunctions(); +} + +void QOpenGLFunctions_3_2_Compatibility_DestroyQOpenGLFunctions_3_2_Compatibility(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFunctions_3_2_Compatibility(); +} + +void QOpenGLFunctions_3_2_Compatibility_GlEnd(QtObjectPtr ptr){ + static_cast(ptr)->glEnd(); +} + +void QOpenGLFunctions_3_2_Compatibility_GlEndConditionalRender(QtObjectPtr ptr){ + static_cast(ptr)->glEndConditionalRender(); +} + +void QOpenGLFunctions_3_2_Compatibility_GlEndList(QtObjectPtr ptr){ + static_cast(ptr)->glEndList(); +} + +void QOpenGLFunctions_3_2_Compatibility_GlEndTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glEndTransformFeedback(); +} + +void QOpenGLFunctions_3_2_Compatibility_GlFinish(QtObjectPtr ptr){ + static_cast(ptr)->glFinish(); +} + +void QOpenGLFunctions_3_2_Compatibility_GlFlush(QtObjectPtr ptr){ + static_cast(ptr)->glFlush(); +} + +void QOpenGLFunctions_3_2_Compatibility_GlInitNames(QtObjectPtr ptr){ + static_cast(ptr)->glInitNames(); +} + +void QOpenGLFunctions_3_2_Compatibility_GlLoadIdentity(QtObjectPtr ptr){ + static_cast(ptr)->glLoadIdentity(); +} + +void QOpenGLFunctions_3_2_Compatibility_GlPopAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopAttrib(); +} + +void QOpenGLFunctions_3_2_Compatibility_GlPopClientAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopClientAttrib(); +} + +void QOpenGLFunctions_3_2_Compatibility_GlPopMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPopMatrix(); +} + +void QOpenGLFunctions_3_2_Compatibility_GlPopName(QtObjectPtr ptr){ + static_cast(ptr)->glPopName(); +} + +void QOpenGLFunctions_3_2_Compatibility_GlPushMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPushMatrix(); +} + diff --git a/gui/qopenglfunctions_3_2_compatibility.go b/gui/qopenglfunctions_3_2_compatibility.go new file mode 100755 index 00000000..1e6aaab1 --- /dev/null +++ b/gui/qopenglfunctions_3_2_compatibility.go @@ -0,0 +1,128 @@ +package gui + +//#include "qopenglfunctions_3_2_compatibility.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions_3_2_Compatibility struct { + QAbstractOpenGLFunctions +} + +type QOpenGLFunctions_3_2_CompatibilityITF interface { + QAbstractOpenGLFunctionsITF + QOpenGLFunctions_3_2_CompatibilityPTR() *QOpenGLFunctions_3_2_Compatibility +} + +func PointerFromQOpenGLFunctions_3_2_Compatibility(ptr QOpenGLFunctions_3_2_CompatibilityITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctions_3_2_CompatibilityPTR().Pointer() + } + return nil +} + +func QOpenGLFunctions_3_2_CompatibilityFromPointer(ptr unsafe.Pointer) *QOpenGLFunctions_3_2_Compatibility { + var n = new(QOpenGLFunctions_3_2_Compatibility) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions_3_2_Compatibility) QOpenGLFunctions_3_2_CompatibilityPTR() *QOpenGLFunctions_3_2_Compatibility { + return ptr +} + +func NewQOpenGLFunctions_3_2_Compatibility() *QOpenGLFunctions_3_2_Compatibility { + return QOpenGLFunctions_3_2_CompatibilityFromPointer(unsafe.Pointer(C.QOpenGLFunctions_3_2_Compatibility_NewQOpenGLFunctions_3_2_Compatibility())) +} + +func (ptr *QOpenGLFunctions_3_2_Compatibility) InitializeOpenGLFunctions() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFunctions_3_2_Compatibility_InitializeOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFunctions_3_2_Compatibility) DestroyQOpenGLFunctions_3_2_Compatibility() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_2_Compatibility_DestroyQOpenGLFunctions_3_2_Compatibility(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_2_Compatibility) GlEnd() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_2_Compatibility_GlEnd(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_2_Compatibility) GlEndConditionalRender() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_2_Compatibility_GlEndConditionalRender(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_2_Compatibility) GlEndList() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_2_Compatibility_GlEndList(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_2_Compatibility) GlEndTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_2_Compatibility_GlEndTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_2_Compatibility) GlFinish() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_2_Compatibility_GlFinish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_2_Compatibility) GlFlush() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_2_Compatibility_GlFlush(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_2_Compatibility) GlInitNames() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_2_Compatibility_GlInitNames(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_2_Compatibility) GlLoadIdentity() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_2_Compatibility_GlLoadIdentity(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_2_Compatibility) GlPopAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_2_Compatibility_GlPopAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_2_Compatibility) GlPopClientAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_2_Compatibility_GlPopClientAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_2_Compatibility) GlPopMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_2_Compatibility_GlPopMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_2_Compatibility) GlPopName() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_2_Compatibility_GlPopName(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_2_Compatibility) GlPushMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_2_Compatibility_GlPushMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglfunctions_3_2_compatibility.h b/gui/qopenglfunctions_3_2_compatibility.h new file mode 100755 index 00000000..25df6d39 --- /dev/null +++ b/gui/qopenglfunctions_3_2_compatibility.h @@ -0,0 +1,25 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFunctions_3_2_Compatibility_NewQOpenGLFunctions_3_2_Compatibility(); +int QOpenGLFunctions_3_2_Compatibility_InitializeOpenGLFunctions(QtObjectPtr ptr); +void QOpenGLFunctions_3_2_Compatibility_DestroyQOpenGLFunctions_3_2_Compatibility(QtObjectPtr ptr); +void QOpenGLFunctions_3_2_Compatibility_GlEnd(QtObjectPtr ptr); +void QOpenGLFunctions_3_2_Compatibility_GlEndConditionalRender(QtObjectPtr ptr); +void QOpenGLFunctions_3_2_Compatibility_GlEndList(QtObjectPtr ptr); +void QOpenGLFunctions_3_2_Compatibility_GlEndTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_3_2_Compatibility_GlFinish(QtObjectPtr ptr); +void QOpenGLFunctions_3_2_Compatibility_GlFlush(QtObjectPtr ptr); +void QOpenGLFunctions_3_2_Compatibility_GlInitNames(QtObjectPtr ptr); +void QOpenGLFunctions_3_2_Compatibility_GlLoadIdentity(QtObjectPtr ptr); +void QOpenGLFunctions_3_2_Compatibility_GlPopAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_3_2_Compatibility_GlPopClientAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_3_2_Compatibility_GlPopMatrix(QtObjectPtr ptr); +void QOpenGLFunctions_3_2_Compatibility_GlPopName(QtObjectPtr ptr); +void QOpenGLFunctions_3_2_Compatibility_GlPushMatrix(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions_3_2_core.cpp b/gui/qopenglfunctions_3_2_core.cpp new file mode 100755 index 00000000..7e257ebb --- /dev/null +++ b/gui/qopenglfunctions_3_2_core.cpp @@ -0,0 +1,41 @@ +#include "qopenglfunctions_3_2_core.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFunctions_3_2_Core: public QOpenGLFunctions_3_2_Core { +public: +}; + +QtObjectPtr QOpenGLFunctions_3_2_Core_NewQOpenGLFunctions_3_2_Core(){ + return new QOpenGLFunctions_3_2_Core(); +} + +int QOpenGLFunctions_3_2_Core_InitializeOpenGLFunctions(QtObjectPtr ptr){ + return static_cast(ptr)->initializeOpenGLFunctions(); +} + +void QOpenGLFunctions_3_2_Core_DestroyQOpenGLFunctions_3_2_Core(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFunctions_3_2_Core(); +} + +void QOpenGLFunctions_3_2_Core_GlEndConditionalRender(QtObjectPtr ptr){ + static_cast(ptr)->glEndConditionalRender(); +} + +void QOpenGLFunctions_3_2_Core_GlEndTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glEndTransformFeedback(); +} + +void QOpenGLFunctions_3_2_Core_GlFinish(QtObjectPtr ptr){ + static_cast(ptr)->glFinish(); +} + +void QOpenGLFunctions_3_2_Core_GlFlush(QtObjectPtr ptr){ + static_cast(ptr)->glFlush(); +} + diff --git a/gui/qopenglfunctions_3_2_core.go b/gui/qopenglfunctions_3_2_core.go new file mode 100755 index 00000000..e29a270d --- /dev/null +++ b/gui/qopenglfunctions_3_2_core.go @@ -0,0 +1,74 @@ +package gui + +//#include "qopenglfunctions_3_2_core.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions_3_2_Core struct { + QAbstractOpenGLFunctions +} + +type QOpenGLFunctions_3_2_CoreITF interface { + QAbstractOpenGLFunctionsITF + QOpenGLFunctions_3_2_CorePTR() *QOpenGLFunctions_3_2_Core +} + +func PointerFromQOpenGLFunctions_3_2_Core(ptr QOpenGLFunctions_3_2_CoreITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctions_3_2_CorePTR().Pointer() + } + return nil +} + +func QOpenGLFunctions_3_2_CoreFromPointer(ptr unsafe.Pointer) *QOpenGLFunctions_3_2_Core { + var n = new(QOpenGLFunctions_3_2_Core) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions_3_2_Core) QOpenGLFunctions_3_2_CorePTR() *QOpenGLFunctions_3_2_Core { + return ptr +} + +func NewQOpenGLFunctions_3_2_Core() *QOpenGLFunctions_3_2_Core { + return QOpenGLFunctions_3_2_CoreFromPointer(unsafe.Pointer(C.QOpenGLFunctions_3_2_Core_NewQOpenGLFunctions_3_2_Core())) +} + +func (ptr *QOpenGLFunctions_3_2_Core) InitializeOpenGLFunctions() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFunctions_3_2_Core_InitializeOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFunctions_3_2_Core) DestroyQOpenGLFunctions_3_2_Core() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_2_Core_DestroyQOpenGLFunctions_3_2_Core(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_2_Core) GlEndConditionalRender() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_2_Core_GlEndConditionalRender(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_2_Core) GlEndTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_2_Core_GlEndTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_2_Core) GlFinish() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_2_Core_GlFinish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_2_Core) GlFlush() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_2_Core_GlFlush(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglfunctions_3_2_core.h b/gui/qopenglfunctions_3_2_core.h new file mode 100755 index 00000000..2049f508 --- /dev/null +++ b/gui/qopenglfunctions_3_2_core.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFunctions_3_2_Core_NewQOpenGLFunctions_3_2_Core(); +int QOpenGLFunctions_3_2_Core_InitializeOpenGLFunctions(QtObjectPtr ptr); +void QOpenGLFunctions_3_2_Core_DestroyQOpenGLFunctions_3_2_Core(QtObjectPtr ptr); +void QOpenGLFunctions_3_2_Core_GlEndConditionalRender(QtObjectPtr ptr); +void QOpenGLFunctions_3_2_Core_GlEndTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_3_2_Core_GlFinish(QtObjectPtr ptr); +void QOpenGLFunctions_3_2_Core_GlFlush(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions_3_3_compatibility.cpp b/gui/qopenglfunctions_3_3_compatibility.cpp new file mode 100755 index 00000000..9282c29c --- /dev/null +++ b/gui/qopenglfunctions_3_3_compatibility.cpp @@ -0,0 +1,77 @@ +#include "qopenglfunctions_3_3_compatibility.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFunctions_3_3_Compatibility: public QOpenGLFunctions_3_3_Compatibility { +public: +}; + +QtObjectPtr QOpenGLFunctions_3_3_Compatibility_NewQOpenGLFunctions_3_3_Compatibility(){ + return new QOpenGLFunctions_3_3_Compatibility(); +} + +int QOpenGLFunctions_3_3_Compatibility_InitializeOpenGLFunctions(QtObjectPtr ptr){ + return static_cast(ptr)->initializeOpenGLFunctions(); +} + +void QOpenGLFunctions_3_3_Compatibility_DestroyQOpenGLFunctions_3_3_Compatibility(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFunctions_3_3_Compatibility(); +} + +void QOpenGLFunctions_3_3_Compatibility_GlEnd(QtObjectPtr ptr){ + static_cast(ptr)->glEnd(); +} + +void QOpenGLFunctions_3_3_Compatibility_GlEndConditionalRender(QtObjectPtr ptr){ + static_cast(ptr)->glEndConditionalRender(); +} + +void QOpenGLFunctions_3_3_Compatibility_GlEndList(QtObjectPtr ptr){ + static_cast(ptr)->glEndList(); +} + +void QOpenGLFunctions_3_3_Compatibility_GlEndTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glEndTransformFeedback(); +} + +void QOpenGLFunctions_3_3_Compatibility_GlFinish(QtObjectPtr ptr){ + static_cast(ptr)->glFinish(); +} + +void QOpenGLFunctions_3_3_Compatibility_GlFlush(QtObjectPtr ptr){ + static_cast(ptr)->glFlush(); +} + +void QOpenGLFunctions_3_3_Compatibility_GlInitNames(QtObjectPtr ptr){ + static_cast(ptr)->glInitNames(); +} + +void QOpenGLFunctions_3_3_Compatibility_GlLoadIdentity(QtObjectPtr ptr){ + static_cast(ptr)->glLoadIdentity(); +} + +void QOpenGLFunctions_3_3_Compatibility_GlPopAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopAttrib(); +} + +void QOpenGLFunctions_3_3_Compatibility_GlPopClientAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopClientAttrib(); +} + +void QOpenGLFunctions_3_3_Compatibility_GlPopMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPopMatrix(); +} + +void QOpenGLFunctions_3_3_Compatibility_GlPopName(QtObjectPtr ptr){ + static_cast(ptr)->glPopName(); +} + +void QOpenGLFunctions_3_3_Compatibility_GlPushMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPushMatrix(); +} + diff --git a/gui/qopenglfunctions_3_3_compatibility.go b/gui/qopenglfunctions_3_3_compatibility.go new file mode 100755 index 00000000..eaa29e9f --- /dev/null +++ b/gui/qopenglfunctions_3_3_compatibility.go @@ -0,0 +1,128 @@ +package gui + +//#include "qopenglfunctions_3_3_compatibility.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions_3_3_Compatibility struct { + QAbstractOpenGLFunctions +} + +type QOpenGLFunctions_3_3_CompatibilityITF interface { + QAbstractOpenGLFunctionsITF + QOpenGLFunctions_3_3_CompatibilityPTR() *QOpenGLFunctions_3_3_Compatibility +} + +func PointerFromQOpenGLFunctions_3_3_Compatibility(ptr QOpenGLFunctions_3_3_CompatibilityITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctions_3_3_CompatibilityPTR().Pointer() + } + return nil +} + +func QOpenGLFunctions_3_3_CompatibilityFromPointer(ptr unsafe.Pointer) *QOpenGLFunctions_3_3_Compatibility { + var n = new(QOpenGLFunctions_3_3_Compatibility) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions_3_3_Compatibility) QOpenGLFunctions_3_3_CompatibilityPTR() *QOpenGLFunctions_3_3_Compatibility { + return ptr +} + +func NewQOpenGLFunctions_3_3_Compatibility() *QOpenGLFunctions_3_3_Compatibility { + return QOpenGLFunctions_3_3_CompatibilityFromPointer(unsafe.Pointer(C.QOpenGLFunctions_3_3_Compatibility_NewQOpenGLFunctions_3_3_Compatibility())) +} + +func (ptr *QOpenGLFunctions_3_3_Compatibility) InitializeOpenGLFunctions() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFunctions_3_3_Compatibility_InitializeOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFunctions_3_3_Compatibility) DestroyQOpenGLFunctions_3_3_Compatibility() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_3_Compatibility_DestroyQOpenGLFunctions_3_3_Compatibility(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_3_Compatibility) GlEnd() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_3_Compatibility_GlEnd(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_3_Compatibility) GlEndConditionalRender() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_3_Compatibility_GlEndConditionalRender(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_3_Compatibility) GlEndList() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_3_Compatibility_GlEndList(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_3_Compatibility) GlEndTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_3_Compatibility_GlEndTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_3_Compatibility) GlFinish() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_3_Compatibility_GlFinish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_3_Compatibility) GlFlush() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_3_Compatibility_GlFlush(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_3_Compatibility) GlInitNames() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_3_Compatibility_GlInitNames(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_3_Compatibility) GlLoadIdentity() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_3_Compatibility_GlLoadIdentity(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_3_Compatibility) GlPopAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_3_Compatibility_GlPopAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_3_Compatibility) GlPopClientAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_3_Compatibility_GlPopClientAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_3_Compatibility) GlPopMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_3_Compatibility_GlPopMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_3_Compatibility) GlPopName() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_3_Compatibility_GlPopName(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_3_Compatibility) GlPushMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_3_Compatibility_GlPushMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglfunctions_3_3_compatibility.h b/gui/qopenglfunctions_3_3_compatibility.h new file mode 100755 index 00000000..a22a69ce --- /dev/null +++ b/gui/qopenglfunctions_3_3_compatibility.h @@ -0,0 +1,25 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFunctions_3_3_Compatibility_NewQOpenGLFunctions_3_3_Compatibility(); +int QOpenGLFunctions_3_3_Compatibility_InitializeOpenGLFunctions(QtObjectPtr ptr); +void QOpenGLFunctions_3_3_Compatibility_DestroyQOpenGLFunctions_3_3_Compatibility(QtObjectPtr ptr); +void QOpenGLFunctions_3_3_Compatibility_GlEnd(QtObjectPtr ptr); +void QOpenGLFunctions_3_3_Compatibility_GlEndConditionalRender(QtObjectPtr ptr); +void QOpenGLFunctions_3_3_Compatibility_GlEndList(QtObjectPtr ptr); +void QOpenGLFunctions_3_3_Compatibility_GlEndTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_3_3_Compatibility_GlFinish(QtObjectPtr ptr); +void QOpenGLFunctions_3_3_Compatibility_GlFlush(QtObjectPtr ptr); +void QOpenGLFunctions_3_3_Compatibility_GlInitNames(QtObjectPtr ptr); +void QOpenGLFunctions_3_3_Compatibility_GlLoadIdentity(QtObjectPtr ptr); +void QOpenGLFunctions_3_3_Compatibility_GlPopAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_3_3_Compatibility_GlPopClientAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_3_3_Compatibility_GlPopMatrix(QtObjectPtr ptr); +void QOpenGLFunctions_3_3_Compatibility_GlPopName(QtObjectPtr ptr); +void QOpenGLFunctions_3_3_Compatibility_GlPushMatrix(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions_3_3_core.cpp b/gui/qopenglfunctions_3_3_core.cpp new file mode 100755 index 00000000..5591c9c7 --- /dev/null +++ b/gui/qopenglfunctions_3_3_core.cpp @@ -0,0 +1,41 @@ +#include "qopenglfunctions_3_3_core.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFunctions_3_3_Core: public QOpenGLFunctions_3_3_Core { +public: +}; + +QtObjectPtr QOpenGLFunctions_3_3_Core_NewQOpenGLFunctions_3_3_Core(){ + return new QOpenGLFunctions_3_3_Core(); +} + +int QOpenGLFunctions_3_3_Core_InitializeOpenGLFunctions(QtObjectPtr ptr){ + return static_cast(ptr)->initializeOpenGLFunctions(); +} + +void QOpenGLFunctions_3_3_Core_DestroyQOpenGLFunctions_3_3_Core(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFunctions_3_3_Core(); +} + +void QOpenGLFunctions_3_3_Core_GlEndConditionalRender(QtObjectPtr ptr){ + static_cast(ptr)->glEndConditionalRender(); +} + +void QOpenGLFunctions_3_3_Core_GlEndTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glEndTransformFeedback(); +} + +void QOpenGLFunctions_3_3_Core_GlFinish(QtObjectPtr ptr){ + static_cast(ptr)->glFinish(); +} + +void QOpenGLFunctions_3_3_Core_GlFlush(QtObjectPtr ptr){ + static_cast(ptr)->glFlush(); +} + diff --git a/gui/qopenglfunctions_3_3_core.go b/gui/qopenglfunctions_3_3_core.go new file mode 100755 index 00000000..4ee942c7 --- /dev/null +++ b/gui/qopenglfunctions_3_3_core.go @@ -0,0 +1,74 @@ +package gui + +//#include "qopenglfunctions_3_3_core.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions_3_3_Core struct { + QAbstractOpenGLFunctions +} + +type QOpenGLFunctions_3_3_CoreITF interface { + QAbstractOpenGLFunctionsITF + QOpenGLFunctions_3_3_CorePTR() *QOpenGLFunctions_3_3_Core +} + +func PointerFromQOpenGLFunctions_3_3_Core(ptr QOpenGLFunctions_3_3_CoreITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctions_3_3_CorePTR().Pointer() + } + return nil +} + +func QOpenGLFunctions_3_3_CoreFromPointer(ptr unsafe.Pointer) *QOpenGLFunctions_3_3_Core { + var n = new(QOpenGLFunctions_3_3_Core) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions_3_3_Core) QOpenGLFunctions_3_3_CorePTR() *QOpenGLFunctions_3_3_Core { + return ptr +} + +func NewQOpenGLFunctions_3_3_Core() *QOpenGLFunctions_3_3_Core { + return QOpenGLFunctions_3_3_CoreFromPointer(unsafe.Pointer(C.QOpenGLFunctions_3_3_Core_NewQOpenGLFunctions_3_3_Core())) +} + +func (ptr *QOpenGLFunctions_3_3_Core) InitializeOpenGLFunctions() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFunctions_3_3_Core_InitializeOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFunctions_3_3_Core) DestroyQOpenGLFunctions_3_3_Core() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_3_Core_DestroyQOpenGLFunctions_3_3_Core(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_3_Core) GlEndConditionalRender() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_3_Core_GlEndConditionalRender(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_3_Core) GlEndTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_3_Core_GlEndTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_3_Core) GlFinish() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_3_Core_GlFinish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_3_3_Core) GlFlush() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_3_3_Core_GlFlush(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglfunctions_3_3_core.h b/gui/qopenglfunctions_3_3_core.h new file mode 100755 index 00000000..95cfe55f --- /dev/null +++ b/gui/qopenglfunctions_3_3_core.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFunctions_3_3_Core_NewQOpenGLFunctions_3_3_Core(); +int QOpenGLFunctions_3_3_Core_InitializeOpenGLFunctions(QtObjectPtr ptr); +void QOpenGLFunctions_3_3_Core_DestroyQOpenGLFunctions_3_3_Core(QtObjectPtr ptr); +void QOpenGLFunctions_3_3_Core_GlEndConditionalRender(QtObjectPtr ptr); +void QOpenGLFunctions_3_3_Core_GlEndTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_3_3_Core_GlFinish(QtObjectPtr ptr); +void QOpenGLFunctions_3_3_Core_GlFlush(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions_4_0_compatibility.cpp b/gui/qopenglfunctions_4_0_compatibility.cpp new file mode 100755 index 00000000..4b51c405 --- /dev/null +++ b/gui/qopenglfunctions_4_0_compatibility.cpp @@ -0,0 +1,85 @@ +#include "qopenglfunctions_4_0_compatibility.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFunctions_4_0_Compatibility: public QOpenGLFunctions_4_0_Compatibility { +public: +}; + +QtObjectPtr QOpenGLFunctions_4_0_Compatibility_NewQOpenGLFunctions_4_0_Compatibility(){ + return new QOpenGLFunctions_4_0_Compatibility(); +} + +int QOpenGLFunctions_4_0_Compatibility_InitializeOpenGLFunctions(QtObjectPtr ptr){ + return static_cast(ptr)->initializeOpenGLFunctions(); +} + +void QOpenGLFunctions_4_0_Compatibility_DestroyQOpenGLFunctions_4_0_Compatibility(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFunctions_4_0_Compatibility(); +} + +void QOpenGLFunctions_4_0_Compatibility_GlEnd(QtObjectPtr ptr){ + static_cast(ptr)->glEnd(); +} + +void QOpenGLFunctions_4_0_Compatibility_GlEndConditionalRender(QtObjectPtr ptr){ + static_cast(ptr)->glEndConditionalRender(); +} + +void QOpenGLFunctions_4_0_Compatibility_GlEndList(QtObjectPtr ptr){ + static_cast(ptr)->glEndList(); +} + +void QOpenGLFunctions_4_0_Compatibility_GlEndTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glEndTransformFeedback(); +} + +void QOpenGLFunctions_4_0_Compatibility_GlFinish(QtObjectPtr ptr){ + static_cast(ptr)->glFinish(); +} + +void QOpenGLFunctions_4_0_Compatibility_GlFlush(QtObjectPtr ptr){ + static_cast(ptr)->glFlush(); +} + +void QOpenGLFunctions_4_0_Compatibility_GlInitNames(QtObjectPtr ptr){ + static_cast(ptr)->glInitNames(); +} + +void QOpenGLFunctions_4_0_Compatibility_GlLoadIdentity(QtObjectPtr ptr){ + static_cast(ptr)->glLoadIdentity(); +} + +void QOpenGLFunctions_4_0_Compatibility_GlPauseTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glPauseTransformFeedback(); +} + +void QOpenGLFunctions_4_0_Compatibility_GlPopAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopAttrib(); +} + +void QOpenGLFunctions_4_0_Compatibility_GlPopClientAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopClientAttrib(); +} + +void QOpenGLFunctions_4_0_Compatibility_GlPopMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPopMatrix(); +} + +void QOpenGLFunctions_4_0_Compatibility_GlPopName(QtObjectPtr ptr){ + static_cast(ptr)->glPopName(); +} + +void QOpenGLFunctions_4_0_Compatibility_GlPushMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPushMatrix(); +} + +void QOpenGLFunctions_4_0_Compatibility_GlResumeTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glResumeTransformFeedback(); +} + diff --git a/gui/qopenglfunctions_4_0_compatibility.go b/gui/qopenglfunctions_4_0_compatibility.go new file mode 100755 index 00000000..94d9a1c2 --- /dev/null +++ b/gui/qopenglfunctions_4_0_compatibility.go @@ -0,0 +1,140 @@ +package gui + +//#include "qopenglfunctions_4_0_compatibility.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions_4_0_Compatibility struct { + QAbstractOpenGLFunctions +} + +type QOpenGLFunctions_4_0_CompatibilityITF interface { + QAbstractOpenGLFunctionsITF + QOpenGLFunctions_4_0_CompatibilityPTR() *QOpenGLFunctions_4_0_Compatibility +} + +func PointerFromQOpenGLFunctions_4_0_Compatibility(ptr QOpenGLFunctions_4_0_CompatibilityITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctions_4_0_CompatibilityPTR().Pointer() + } + return nil +} + +func QOpenGLFunctions_4_0_CompatibilityFromPointer(ptr unsafe.Pointer) *QOpenGLFunctions_4_0_Compatibility { + var n = new(QOpenGLFunctions_4_0_Compatibility) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions_4_0_Compatibility) QOpenGLFunctions_4_0_CompatibilityPTR() *QOpenGLFunctions_4_0_Compatibility { + return ptr +} + +func NewQOpenGLFunctions_4_0_Compatibility() *QOpenGLFunctions_4_0_Compatibility { + return QOpenGLFunctions_4_0_CompatibilityFromPointer(unsafe.Pointer(C.QOpenGLFunctions_4_0_Compatibility_NewQOpenGLFunctions_4_0_Compatibility())) +} + +func (ptr *QOpenGLFunctions_4_0_Compatibility) InitializeOpenGLFunctions() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFunctions_4_0_Compatibility_InitializeOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFunctions_4_0_Compatibility) DestroyQOpenGLFunctions_4_0_Compatibility() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_0_Compatibility_DestroyQOpenGLFunctions_4_0_Compatibility(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_0_Compatibility) GlEnd() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_0_Compatibility_GlEnd(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_0_Compatibility) GlEndConditionalRender() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_0_Compatibility_GlEndConditionalRender(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_0_Compatibility) GlEndList() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_0_Compatibility_GlEndList(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_0_Compatibility) GlEndTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_0_Compatibility_GlEndTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_0_Compatibility) GlFinish() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_0_Compatibility_GlFinish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_0_Compatibility) GlFlush() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_0_Compatibility_GlFlush(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_0_Compatibility) GlInitNames() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_0_Compatibility_GlInitNames(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_0_Compatibility) GlLoadIdentity() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_0_Compatibility_GlLoadIdentity(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_0_Compatibility) GlPauseTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_0_Compatibility_GlPauseTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_0_Compatibility) GlPopAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_0_Compatibility_GlPopAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_0_Compatibility) GlPopClientAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_0_Compatibility_GlPopClientAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_0_Compatibility) GlPopMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_0_Compatibility_GlPopMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_0_Compatibility) GlPopName() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_0_Compatibility_GlPopName(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_0_Compatibility) GlPushMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_0_Compatibility_GlPushMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_0_Compatibility) GlResumeTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_0_Compatibility_GlResumeTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglfunctions_4_0_compatibility.h b/gui/qopenglfunctions_4_0_compatibility.h new file mode 100755 index 00000000..87102ced --- /dev/null +++ b/gui/qopenglfunctions_4_0_compatibility.h @@ -0,0 +1,27 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFunctions_4_0_Compatibility_NewQOpenGLFunctions_4_0_Compatibility(); +int QOpenGLFunctions_4_0_Compatibility_InitializeOpenGLFunctions(QtObjectPtr ptr); +void QOpenGLFunctions_4_0_Compatibility_DestroyQOpenGLFunctions_4_0_Compatibility(QtObjectPtr ptr); +void QOpenGLFunctions_4_0_Compatibility_GlEnd(QtObjectPtr ptr); +void QOpenGLFunctions_4_0_Compatibility_GlEndConditionalRender(QtObjectPtr ptr); +void QOpenGLFunctions_4_0_Compatibility_GlEndList(QtObjectPtr ptr); +void QOpenGLFunctions_4_0_Compatibility_GlEndTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_4_0_Compatibility_GlFinish(QtObjectPtr ptr); +void QOpenGLFunctions_4_0_Compatibility_GlFlush(QtObjectPtr ptr); +void QOpenGLFunctions_4_0_Compatibility_GlInitNames(QtObjectPtr ptr); +void QOpenGLFunctions_4_0_Compatibility_GlLoadIdentity(QtObjectPtr ptr); +void QOpenGLFunctions_4_0_Compatibility_GlPauseTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_4_0_Compatibility_GlPopAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_4_0_Compatibility_GlPopClientAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_4_0_Compatibility_GlPopMatrix(QtObjectPtr ptr); +void QOpenGLFunctions_4_0_Compatibility_GlPopName(QtObjectPtr ptr); +void QOpenGLFunctions_4_0_Compatibility_GlPushMatrix(QtObjectPtr ptr); +void QOpenGLFunctions_4_0_Compatibility_GlResumeTransformFeedback(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions_4_0_core.cpp b/gui/qopenglfunctions_4_0_core.cpp new file mode 100755 index 00000000..0cc90ba9 --- /dev/null +++ b/gui/qopenglfunctions_4_0_core.cpp @@ -0,0 +1,49 @@ +#include "qopenglfunctions_4_0_core.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFunctions_4_0_Core: public QOpenGLFunctions_4_0_Core { +public: +}; + +QtObjectPtr QOpenGLFunctions_4_0_Core_NewQOpenGLFunctions_4_0_Core(){ + return new QOpenGLFunctions_4_0_Core(); +} + +int QOpenGLFunctions_4_0_Core_InitializeOpenGLFunctions(QtObjectPtr ptr){ + return static_cast(ptr)->initializeOpenGLFunctions(); +} + +void QOpenGLFunctions_4_0_Core_DestroyQOpenGLFunctions_4_0_Core(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFunctions_4_0_Core(); +} + +void QOpenGLFunctions_4_0_Core_GlEndConditionalRender(QtObjectPtr ptr){ + static_cast(ptr)->glEndConditionalRender(); +} + +void QOpenGLFunctions_4_0_Core_GlEndTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glEndTransformFeedback(); +} + +void QOpenGLFunctions_4_0_Core_GlFinish(QtObjectPtr ptr){ + static_cast(ptr)->glFinish(); +} + +void QOpenGLFunctions_4_0_Core_GlFlush(QtObjectPtr ptr){ + static_cast(ptr)->glFlush(); +} + +void QOpenGLFunctions_4_0_Core_GlPauseTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glPauseTransformFeedback(); +} + +void QOpenGLFunctions_4_0_Core_GlResumeTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glResumeTransformFeedback(); +} + diff --git a/gui/qopenglfunctions_4_0_core.go b/gui/qopenglfunctions_4_0_core.go new file mode 100755 index 00000000..00d1b122 --- /dev/null +++ b/gui/qopenglfunctions_4_0_core.go @@ -0,0 +1,86 @@ +package gui + +//#include "qopenglfunctions_4_0_core.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions_4_0_Core struct { + QAbstractOpenGLFunctions +} + +type QOpenGLFunctions_4_0_CoreITF interface { + QAbstractOpenGLFunctionsITF + QOpenGLFunctions_4_0_CorePTR() *QOpenGLFunctions_4_0_Core +} + +func PointerFromQOpenGLFunctions_4_0_Core(ptr QOpenGLFunctions_4_0_CoreITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctions_4_0_CorePTR().Pointer() + } + return nil +} + +func QOpenGLFunctions_4_0_CoreFromPointer(ptr unsafe.Pointer) *QOpenGLFunctions_4_0_Core { + var n = new(QOpenGLFunctions_4_0_Core) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions_4_0_Core) QOpenGLFunctions_4_0_CorePTR() *QOpenGLFunctions_4_0_Core { + return ptr +} + +func NewQOpenGLFunctions_4_0_Core() *QOpenGLFunctions_4_0_Core { + return QOpenGLFunctions_4_0_CoreFromPointer(unsafe.Pointer(C.QOpenGLFunctions_4_0_Core_NewQOpenGLFunctions_4_0_Core())) +} + +func (ptr *QOpenGLFunctions_4_0_Core) InitializeOpenGLFunctions() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFunctions_4_0_Core_InitializeOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFunctions_4_0_Core) DestroyQOpenGLFunctions_4_0_Core() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_0_Core_DestroyQOpenGLFunctions_4_0_Core(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_0_Core) GlEndConditionalRender() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_0_Core_GlEndConditionalRender(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_0_Core) GlEndTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_0_Core_GlEndTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_0_Core) GlFinish() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_0_Core_GlFinish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_0_Core) GlFlush() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_0_Core_GlFlush(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_0_Core) GlPauseTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_0_Core_GlPauseTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_0_Core) GlResumeTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_0_Core_GlResumeTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglfunctions_4_0_core.h b/gui/qopenglfunctions_4_0_core.h new file mode 100755 index 00000000..ef771df5 --- /dev/null +++ b/gui/qopenglfunctions_4_0_core.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFunctions_4_0_Core_NewQOpenGLFunctions_4_0_Core(); +int QOpenGLFunctions_4_0_Core_InitializeOpenGLFunctions(QtObjectPtr ptr); +void QOpenGLFunctions_4_0_Core_DestroyQOpenGLFunctions_4_0_Core(QtObjectPtr ptr); +void QOpenGLFunctions_4_0_Core_GlEndConditionalRender(QtObjectPtr ptr); +void QOpenGLFunctions_4_0_Core_GlEndTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_4_0_Core_GlFinish(QtObjectPtr ptr); +void QOpenGLFunctions_4_0_Core_GlFlush(QtObjectPtr ptr); +void QOpenGLFunctions_4_0_Core_GlPauseTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_4_0_Core_GlResumeTransformFeedback(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions_4_1_compatibility.cpp b/gui/qopenglfunctions_4_1_compatibility.cpp new file mode 100755 index 00000000..3d1b9a9e --- /dev/null +++ b/gui/qopenglfunctions_4_1_compatibility.cpp @@ -0,0 +1,89 @@ +#include "qopenglfunctions_4_1_compatibility.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFunctions_4_1_Compatibility: public QOpenGLFunctions_4_1_Compatibility { +public: +}; + +QtObjectPtr QOpenGLFunctions_4_1_Compatibility_NewQOpenGLFunctions_4_1_Compatibility(){ + return new QOpenGLFunctions_4_1_Compatibility(); +} + +int QOpenGLFunctions_4_1_Compatibility_InitializeOpenGLFunctions(QtObjectPtr ptr){ + return static_cast(ptr)->initializeOpenGLFunctions(); +} + +void QOpenGLFunctions_4_1_Compatibility_DestroyQOpenGLFunctions_4_1_Compatibility(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFunctions_4_1_Compatibility(); +} + +void QOpenGLFunctions_4_1_Compatibility_GlEnd(QtObjectPtr ptr){ + static_cast(ptr)->glEnd(); +} + +void QOpenGLFunctions_4_1_Compatibility_GlEndConditionalRender(QtObjectPtr ptr){ + static_cast(ptr)->glEndConditionalRender(); +} + +void QOpenGLFunctions_4_1_Compatibility_GlEndList(QtObjectPtr ptr){ + static_cast(ptr)->glEndList(); +} + +void QOpenGLFunctions_4_1_Compatibility_GlEndTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glEndTransformFeedback(); +} + +void QOpenGLFunctions_4_1_Compatibility_GlFinish(QtObjectPtr ptr){ + static_cast(ptr)->glFinish(); +} + +void QOpenGLFunctions_4_1_Compatibility_GlFlush(QtObjectPtr ptr){ + static_cast(ptr)->glFlush(); +} + +void QOpenGLFunctions_4_1_Compatibility_GlInitNames(QtObjectPtr ptr){ + static_cast(ptr)->glInitNames(); +} + +void QOpenGLFunctions_4_1_Compatibility_GlLoadIdentity(QtObjectPtr ptr){ + static_cast(ptr)->glLoadIdentity(); +} + +void QOpenGLFunctions_4_1_Compatibility_GlPauseTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glPauseTransformFeedback(); +} + +void QOpenGLFunctions_4_1_Compatibility_GlPopAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopAttrib(); +} + +void QOpenGLFunctions_4_1_Compatibility_GlPopClientAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopClientAttrib(); +} + +void QOpenGLFunctions_4_1_Compatibility_GlPopMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPopMatrix(); +} + +void QOpenGLFunctions_4_1_Compatibility_GlPopName(QtObjectPtr ptr){ + static_cast(ptr)->glPopName(); +} + +void QOpenGLFunctions_4_1_Compatibility_GlPushMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPushMatrix(); +} + +void QOpenGLFunctions_4_1_Compatibility_GlReleaseShaderCompiler(QtObjectPtr ptr){ + static_cast(ptr)->glReleaseShaderCompiler(); +} + +void QOpenGLFunctions_4_1_Compatibility_GlResumeTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glResumeTransformFeedback(); +} + diff --git a/gui/qopenglfunctions_4_1_compatibility.go b/gui/qopenglfunctions_4_1_compatibility.go new file mode 100755 index 00000000..c72227e6 --- /dev/null +++ b/gui/qopenglfunctions_4_1_compatibility.go @@ -0,0 +1,146 @@ +package gui + +//#include "qopenglfunctions_4_1_compatibility.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions_4_1_Compatibility struct { + QAbstractOpenGLFunctions +} + +type QOpenGLFunctions_4_1_CompatibilityITF interface { + QAbstractOpenGLFunctionsITF + QOpenGLFunctions_4_1_CompatibilityPTR() *QOpenGLFunctions_4_1_Compatibility +} + +func PointerFromQOpenGLFunctions_4_1_Compatibility(ptr QOpenGLFunctions_4_1_CompatibilityITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctions_4_1_CompatibilityPTR().Pointer() + } + return nil +} + +func QOpenGLFunctions_4_1_CompatibilityFromPointer(ptr unsafe.Pointer) *QOpenGLFunctions_4_1_Compatibility { + var n = new(QOpenGLFunctions_4_1_Compatibility) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions_4_1_Compatibility) QOpenGLFunctions_4_1_CompatibilityPTR() *QOpenGLFunctions_4_1_Compatibility { + return ptr +} + +func NewQOpenGLFunctions_4_1_Compatibility() *QOpenGLFunctions_4_1_Compatibility { + return QOpenGLFunctions_4_1_CompatibilityFromPointer(unsafe.Pointer(C.QOpenGLFunctions_4_1_Compatibility_NewQOpenGLFunctions_4_1_Compatibility())) +} + +func (ptr *QOpenGLFunctions_4_1_Compatibility) InitializeOpenGLFunctions() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFunctions_4_1_Compatibility_InitializeOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFunctions_4_1_Compatibility) DestroyQOpenGLFunctions_4_1_Compatibility() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_1_Compatibility_DestroyQOpenGLFunctions_4_1_Compatibility(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_1_Compatibility) GlEnd() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_1_Compatibility_GlEnd(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_1_Compatibility) GlEndConditionalRender() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_1_Compatibility_GlEndConditionalRender(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_1_Compatibility) GlEndList() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_1_Compatibility_GlEndList(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_1_Compatibility) GlEndTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_1_Compatibility_GlEndTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_1_Compatibility) GlFinish() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_1_Compatibility_GlFinish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_1_Compatibility) GlFlush() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_1_Compatibility_GlFlush(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_1_Compatibility) GlInitNames() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_1_Compatibility_GlInitNames(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_1_Compatibility) GlLoadIdentity() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_1_Compatibility_GlLoadIdentity(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_1_Compatibility) GlPauseTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_1_Compatibility_GlPauseTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_1_Compatibility) GlPopAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_1_Compatibility_GlPopAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_1_Compatibility) GlPopClientAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_1_Compatibility_GlPopClientAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_1_Compatibility) GlPopMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_1_Compatibility_GlPopMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_1_Compatibility) GlPopName() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_1_Compatibility_GlPopName(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_1_Compatibility) GlPushMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_1_Compatibility_GlPushMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_1_Compatibility) GlReleaseShaderCompiler() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_1_Compatibility_GlReleaseShaderCompiler(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_1_Compatibility) GlResumeTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_1_Compatibility_GlResumeTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglfunctions_4_1_compatibility.h b/gui/qopenglfunctions_4_1_compatibility.h new file mode 100755 index 00000000..d28e7375 --- /dev/null +++ b/gui/qopenglfunctions_4_1_compatibility.h @@ -0,0 +1,28 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFunctions_4_1_Compatibility_NewQOpenGLFunctions_4_1_Compatibility(); +int QOpenGLFunctions_4_1_Compatibility_InitializeOpenGLFunctions(QtObjectPtr ptr); +void QOpenGLFunctions_4_1_Compatibility_DestroyQOpenGLFunctions_4_1_Compatibility(QtObjectPtr ptr); +void QOpenGLFunctions_4_1_Compatibility_GlEnd(QtObjectPtr ptr); +void QOpenGLFunctions_4_1_Compatibility_GlEndConditionalRender(QtObjectPtr ptr); +void QOpenGLFunctions_4_1_Compatibility_GlEndList(QtObjectPtr ptr); +void QOpenGLFunctions_4_1_Compatibility_GlEndTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_4_1_Compatibility_GlFinish(QtObjectPtr ptr); +void QOpenGLFunctions_4_1_Compatibility_GlFlush(QtObjectPtr ptr); +void QOpenGLFunctions_4_1_Compatibility_GlInitNames(QtObjectPtr ptr); +void QOpenGLFunctions_4_1_Compatibility_GlLoadIdentity(QtObjectPtr ptr); +void QOpenGLFunctions_4_1_Compatibility_GlPauseTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_4_1_Compatibility_GlPopAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_4_1_Compatibility_GlPopClientAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_4_1_Compatibility_GlPopMatrix(QtObjectPtr ptr); +void QOpenGLFunctions_4_1_Compatibility_GlPopName(QtObjectPtr ptr); +void QOpenGLFunctions_4_1_Compatibility_GlPushMatrix(QtObjectPtr ptr); +void QOpenGLFunctions_4_1_Compatibility_GlReleaseShaderCompiler(QtObjectPtr ptr); +void QOpenGLFunctions_4_1_Compatibility_GlResumeTransformFeedback(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions_4_1_core.cpp b/gui/qopenglfunctions_4_1_core.cpp new file mode 100755 index 00000000..9944b360 --- /dev/null +++ b/gui/qopenglfunctions_4_1_core.cpp @@ -0,0 +1,53 @@ +#include "qopenglfunctions_4_1_core.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFunctions_4_1_Core: public QOpenGLFunctions_4_1_Core { +public: +}; + +QtObjectPtr QOpenGLFunctions_4_1_Core_NewQOpenGLFunctions_4_1_Core(){ + return new QOpenGLFunctions_4_1_Core(); +} + +int QOpenGLFunctions_4_1_Core_InitializeOpenGLFunctions(QtObjectPtr ptr){ + return static_cast(ptr)->initializeOpenGLFunctions(); +} + +void QOpenGLFunctions_4_1_Core_DestroyQOpenGLFunctions_4_1_Core(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFunctions_4_1_Core(); +} + +void QOpenGLFunctions_4_1_Core_GlEndConditionalRender(QtObjectPtr ptr){ + static_cast(ptr)->glEndConditionalRender(); +} + +void QOpenGLFunctions_4_1_Core_GlEndTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glEndTransformFeedback(); +} + +void QOpenGLFunctions_4_1_Core_GlFinish(QtObjectPtr ptr){ + static_cast(ptr)->glFinish(); +} + +void QOpenGLFunctions_4_1_Core_GlFlush(QtObjectPtr ptr){ + static_cast(ptr)->glFlush(); +} + +void QOpenGLFunctions_4_1_Core_GlPauseTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glPauseTransformFeedback(); +} + +void QOpenGLFunctions_4_1_Core_GlReleaseShaderCompiler(QtObjectPtr ptr){ + static_cast(ptr)->glReleaseShaderCompiler(); +} + +void QOpenGLFunctions_4_1_Core_GlResumeTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glResumeTransformFeedback(); +} + diff --git a/gui/qopenglfunctions_4_1_core.go b/gui/qopenglfunctions_4_1_core.go new file mode 100755 index 00000000..215324b9 --- /dev/null +++ b/gui/qopenglfunctions_4_1_core.go @@ -0,0 +1,92 @@ +package gui + +//#include "qopenglfunctions_4_1_core.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions_4_1_Core struct { + QAbstractOpenGLFunctions +} + +type QOpenGLFunctions_4_1_CoreITF interface { + QAbstractOpenGLFunctionsITF + QOpenGLFunctions_4_1_CorePTR() *QOpenGLFunctions_4_1_Core +} + +func PointerFromQOpenGLFunctions_4_1_Core(ptr QOpenGLFunctions_4_1_CoreITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctions_4_1_CorePTR().Pointer() + } + return nil +} + +func QOpenGLFunctions_4_1_CoreFromPointer(ptr unsafe.Pointer) *QOpenGLFunctions_4_1_Core { + var n = new(QOpenGLFunctions_4_1_Core) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions_4_1_Core) QOpenGLFunctions_4_1_CorePTR() *QOpenGLFunctions_4_1_Core { + return ptr +} + +func NewQOpenGLFunctions_4_1_Core() *QOpenGLFunctions_4_1_Core { + return QOpenGLFunctions_4_1_CoreFromPointer(unsafe.Pointer(C.QOpenGLFunctions_4_1_Core_NewQOpenGLFunctions_4_1_Core())) +} + +func (ptr *QOpenGLFunctions_4_1_Core) InitializeOpenGLFunctions() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFunctions_4_1_Core_InitializeOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFunctions_4_1_Core) DestroyQOpenGLFunctions_4_1_Core() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_1_Core_DestroyQOpenGLFunctions_4_1_Core(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_1_Core) GlEndConditionalRender() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_1_Core_GlEndConditionalRender(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_1_Core) GlEndTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_1_Core_GlEndTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_1_Core) GlFinish() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_1_Core_GlFinish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_1_Core) GlFlush() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_1_Core_GlFlush(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_1_Core) GlPauseTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_1_Core_GlPauseTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_1_Core) GlReleaseShaderCompiler() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_1_Core_GlReleaseShaderCompiler(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_1_Core) GlResumeTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_1_Core_GlResumeTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglfunctions_4_1_core.h b/gui/qopenglfunctions_4_1_core.h new file mode 100755 index 00000000..2fd1192e --- /dev/null +++ b/gui/qopenglfunctions_4_1_core.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFunctions_4_1_Core_NewQOpenGLFunctions_4_1_Core(); +int QOpenGLFunctions_4_1_Core_InitializeOpenGLFunctions(QtObjectPtr ptr); +void QOpenGLFunctions_4_1_Core_DestroyQOpenGLFunctions_4_1_Core(QtObjectPtr ptr); +void QOpenGLFunctions_4_1_Core_GlEndConditionalRender(QtObjectPtr ptr); +void QOpenGLFunctions_4_1_Core_GlEndTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_4_1_Core_GlFinish(QtObjectPtr ptr); +void QOpenGLFunctions_4_1_Core_GlFlush(QtObjectPtr ptr); +void QOpenGLFunctions_4_1_Core_GlPauseTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_4_1_Core_GlReleaseShaderCompiler(QtObjectPtr ptr); +void QOpenGLFunctions_4_1_Core_GlResumeTransformFeedback(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions_4_2_compatibility.cpp b/gui/qopenglfunctions_4_2_compatibility.cpp new file mode 100755 index 00000000..0a1acc85 --- /dev/null +++ b/gui/qopenglfunctions_4_2_compatibility.cpp @@ -0,0 +1,89 @@ +#include "qopenglfunctions_4_2_compatibility.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFunctions_4_2_Compatibility: public QOpenGLFunctions_4_2_Compatibility { +public: +}; + +QtObjectPtr QOpenGLFunctions_4_2_Compatibility_NewQOpenGLFunctions_4_2_Compatibility(){ + return new QOpenGLFunctions_4_2_Compatibility(); +} + +int QOpenGLFunctions_4_2_Compatibility_InitializeOpenGLFunctions(QtObjectPtr ptr){ + return static_cast(ptr)->initializeOpenGLFunctions(); +} + +void QOpenGLFunctions_4_2_Compatibility_DestroyQOpenGLFunctions_4_2_Compatibility(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFunctions_4_2_Compatibility(); +} + +void QOpenGLFunctions_4_2_Compatibility_GlEnd(QtObjectPtr ptr){ + static_cast(ptr)->glEnd(); +} + +void QOpenGLFunctions_4_2_Compatibility_GlEndConditionalRender(QtObjectPtr ptr){ + static_cast(ptr)->glEndConditionalRender(); +} + +void QOpenGLFunctions_4_2_Compatibility_GlEndList(QtObjectPtr ptr){ + static_cast(ptr)->glEndList(); +} + +void QOpenGLFunctions_4_2_Compatibility_GlEndTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glEndTransformFeedback(); +} + +void QOpenGLFunctions_4_2_Compatibility_GlFinish(QtObjectPtr ptr){ + static_cast(ptr)->glFinish(); +} + +void QOpenGLFunctions_4_2_Compatibility_GlFlush(QtObjectPtr ptr){ + static_cast(ptr)->glFlush(); +} + +void QOpenGLFunctions_4_2_Compatibility_GlInitNames(QtObjectPtr ptr){ + static_cast(ptr)->glInitNames(); +} + +void QOpenGLFunctions_4_2_Compatibility_GlLoadIdentity(QtObjectPtr ptr){ + static_cast(ptr)->glLoadIdentity(); +} + +void QOpenGLFunctions_4_2_Compatibility_GlPauseTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glPauseTransformFeedback(); +} + +void QOpenGLFunctions_4_2_Compatibility_GlPopAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopAttrib(); +} + +void QOpenGLFunctions_4_2_Compatibility_GlPopClientAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopClientAttrib(); +} + +void QOpenGLFunctions_4_2_Compatibility_GlPopMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPopMatrix(); +} + +void QOpenGLFunctions_4_2_Compatibility_GlPopName(QtObjectPtr ptr){ + static_cast(ptr)->glPopName(); +} + +void QOpenGLFunctions_4_2_Compatibility_GlPushMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPushMatrix(); +} + +void QOpenGLFunctions_4_2_Compatibility_GlReleaseShaderCompiler(QtObjectPtr ptr){ + static_cast(ptr)->glReleaseShaderCompiler(); +} + +void QOpenGLFunctions_4_2_Compatibility_GlResumeTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glResumeTransformFeedback(); +} + diff --git a/gui/qopenglfunctions_4_2_compatibility.go b/gui/qopenglfunctions_4_2_compatibility.go new file mode 100755 index 00000000..155459b8 --- /dev/null +++ b/gui/qopenglfunctions_4_2_compatibility.go @@ -0,0 +1,146 @@ +package gui + +//#include "qopenglfunctions_4_2_compatibility.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions_4_2_Compatibility struct { + QAbstractOpenGLFunctions +} + +type QOpenGLFunctions_4_2_CompatibilityITF interface { + QAbstractOpenGLFunctionsITF + QOpenGLFunctions_4_2_CompatibilityPTR() *QOpenGLFunctions_4_2_Compatibility +} + +func PointerFromQOpenGLFunctions_4_2_Compatibility(ptr QOpenGLFunctions_4_2_CompatibilityITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctions_4_2_CompatibilityPTR().Pointer() + } + return nil +} + +func QOpenGLFunctions_4_2_CompatibilityFromPointer(ptr unsafe.Pointer) *QOpenGLFunctions_4_2_Compatibility { + var n = new(QOpenGLFunctions_4_2_Compatibility) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions_4_2_Compatibility) QOpenGLFunctions_4_2_CompatibilityPTR() *QOpenGLFunctions_4_2_Compatibility { + return ptr +} + +func NewQOpenGLFunctions_4_2_Compatibility() *QOpenGLFunctions_4_2_Compatibility { + return QOpenGLFunctions_4_2_CompatibilityFromPointer(unsafe.Pointer(C.QOpenGLFunctions_4_2_Compatibility_NewQOpenGLFunctions_4_2_Compatibility())) +} + +func (ptr *QOpenGLFunctions_4_2_Compatibility) InitializeOpenGLFunctions() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFunctions_4_2_Compatibility_InitializeOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFunctions_4_2_Compatibility) DestroyQOpenGLFunctions_4_2_Compatibility() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_2_Compatibility_DestroyQOpenGLFunctions_4_2_Compatibility(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_2_Compatibility) GlEnd() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_2_Compatibility_GlEnd(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_2_Compatibility) GlEndConditionalRender() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_2_Compatibility_GlEndConditionalRender(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_2_Compatibility) GlEndList() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_2_Compatibility_GlEndList(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_2_Compatibility) GlEndTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_2_Compatibility_GlEndTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_2_Compatibility) GlFinish() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_2_Compatibility_GlFinish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_2_Compatibility) GlFlush() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_2_Compatibility_GlFlush(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_2_Compatibility) GlInitNames() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_2_Compatibility_GlInitNames(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_2_Compatibility) GlLoadIdentity() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_2_Compatibility_GlLoadIdentity(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_2_Compatibility) GlPauseTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_2_Compatibility_GlPauseTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_2_Compatibility) GlPopAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_2_Compatibility_GlPopAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_2_Compatibility) GlPopClientAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_2_Compatibility_GlPopClientAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_2_Compatibility) GlPopMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_2_Compatibility_GlPopMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_2_Compatibility) GlPopName() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_2_Compatibility_GlPopName(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_2_Compatibility) GlPushMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_2_Compatibility_GlPushMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_2_Compatibility) GlReleaseShaderCompiler() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_2_Compatibility_GlReleaseShaderCompiler(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_2_Compatibility) GlResumeTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_2_Compatibility_GlResumeTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglfunctions_4_2_compatibility.h b/gui/qopenglfunctions_4_2_compatibility.h new file mode 100755 index 00000000..c1a5ed71 --- /dev/null +++ b/gui/qopenglfunctions_4_2_compatibility.h @@ -0,0 +1,28 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFunctions_4_2_Compatibility_NewQOpenGLFunctions_4_2_Compatibility(); +int QOpenGLFunctions_4_2_Compatibility_InitializeOpenGLFunctions(QtObjectPtr ptr); +void QOpenGLFunctions_4_2_Compatibility_DestroyQOpenGLFunctions_4_2_Compatibility(QtObjectPtr ptr); +void QOpenGLFunctions_4_2_Compatibility_GlEnd(QtObjectPtr ptr); +void QOpenGLFunctions_4_2_Compatibility_GlEndConditionalRender(QtObjectPtr ptr); +void QOpenGLFunctions_4_2_Compatibility_GlEndList(QtObjectPtr ptr); +void QOpenGLFunctions_4_2_Compatibility_GlEndTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_4_2_Compatibility_GlFinish(QtObjectPtr ptr); +void QOpenGLFunctions_4_2_Compatibility_GlFlush(QtObjectPtr ptr); +void QOpenGLFunctions_4_2_Compatibility_GlInitNames(QtObjectPtr ptr); +void QOpenGLFunctions_4_2_Compatibility_GlLoadIdentity(QtObjectPtr ptr); +void QOpenGLFunctions_4_2_Compatibility_GlPauseTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_4_2_Compatibility_GlPopAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_4_2_Compatibility_GlPopClientAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_4_2_Compatibility_GlPopMatrix(QtObjectPtr ptr); +void QOpenGLFunctions_4_2_Compatibility_GlPopName(QtObjectPtr ptr); +void QOpenGLFunctions_4_2_Compatibility_GlPushMatrix(QtObjectPtr ptr); +void QOpenGLFunctions_4_2_Compatibility_GlReleaseShaderCompiler(QtObjectPtr ptr); +void QOpenGLFunctions_4_2_Compatibility_GlResumeTransformFeedback(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions_4_2_core.cpp b/gui/qopenglfunctions_4_2_core.cpp new file mode 100755 index 00000000..cdd27915 --- /dev/null +++ b/gui/qopenglfunctions_4_2_core.cpp @@ -0,0 +1,53 @@ +#include "qopenglfunctions_4_2_core.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFunctions_4_2_Core: public QOpenGLFunctions_4_2_Core { +public: +}; + +QtObjectPtr QOpenGLFunctions_4_2_Core_NewQOpenGLFunctions_4_2_Core(){ + return new QOpenGLFunctions_4_2_Core(); +} + +int QOpenGLFunctions_4_2_Core_InitializeOpenGLFunctions(QtObjectPtr ptr){ + return static_cast(ptr)->initializeOpenGLFunctions(); +} + +void QOpenGLFunctions_4_2_Core_DestroyQOpenGLFunctions_4_2_Core(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFunctions_4_2_Core(); +} + +void QOpenGLFunctions_4_2_Core_GlEndConditionalRender(QtObjectPtr ptr){ + static_cast(ptr)->glEndConditionalRender(); +} + +void QOpenGLFunctions_4_2_Core_GlEndTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glEndTransformFeedback(); +} + +void QOpenGLFunctions_4_2_Core_GlFinish(QtObjectPtr ptr){ + static_cast(ptr)->glFinish(); +} + +void QOpenGLFunctions_4_2_Core_GlFlush(QtObjectPtr ptr){ + static_cast(ptr)->glFlush(); +} + +void QOpenGLFunctions_4_2_Core_GlPauseTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glPauseTransformFeedback(); +} + +void QOpenGLFunctions_4_2_Core_GlReleaseShaderCompiler(QtObjectPtr ptr){ + static_cast(ptr)->glReleaseShaderCompiler(); +} + +void QOpenGLFunctions_4_2_Core_GlResumeTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glResumeTransformFeedback(); +} + diff --git a/gui/qopenglfunctions_4_2_core.go b/gui/qopenglfunctions_4_2_core.go new file mode 100755 index 00000000..ef0fb620 --- /dev/null +++ b/gui/qopenglfunctions_4_2_core.go @@ -0,0 +1,92 @@ +package gui + +//#include "qopenglfunctions_4_2_core.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions_4_2_Core struct { + QAbstractOpenGLFunctions +} + +type QOpenGLFunctions_4_2_CoreITF interface { + QAbstractOpenGLFunctionsITF + QOpenGLFunctions_4_2_CorePTR() *QOpenGLFunctions_4_2_Core +} + +func PointerFromQOpenGLFunctions_4_2_Core(ptr QOpenGLFunctions_4_2_CoreITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctions_4_2_CorePTR().Pointer() + } + return nil +} + +func QOpenGLFunctions_4_2_CoreFromPointer(ptr unsafe.Pointer) *QOpenGLFunctions_4_2_Core { + var n = new(QOpenGLFunctions_4_2_Core) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions_4_2_Core) QOpenGLFunctions_4_2_CorePTR() *QOpenGLFunctions_4_2_Core { + return ptr +} + +func NewQOpenGLFunctions_4_2_Core() *QOpenGLFunctions_4_2_Core { + return QOpenGLFunctions_4_2_CoreFromPointer(unsafe.Pointer(C.QOpenGLFunctions_4_2_Core_NewQOpenGLFunctions_4_2_Core())) +} + +func (ptr *QOpenGLFunctions_4_2_Core) InitializeOpenGLFunctions() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFunctions_4_2_Core_InitializeOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFunctions_4_2_Core) DestroyQOpenGLFunctions_4_2_Core() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_2_Core_DestroyQOpenGLFunctions_4_2_Core(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_2_Core) GlEndConditionalRender() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_2_Core_GlEndConditionalRender(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_2_Core) GlEndTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_2_Core_GlEndTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_2_Core) GlFinish() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_2_Core_GlFinish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_2_Core) GlFlush() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_2_Core_GlFlush(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_2_Core) GlPauseTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_2_Core_GlPauseTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_2_Core) GlReleaseShaderCompiler() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_2_Core_GlReleaseShaderCompiler(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_2_Core) GlResumeTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_2_Core_GlResumeTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglfunctions_4_2_core.h b/gui/qopenglfunctions_4_2_core.h new file mode 100755 index 00000000..2a7777a9 --- /dev/null +++ b/gui/qopenglfunctions_4_2_core.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFunctions_4_2_Core_NewQOpenGLFunctions_4_2_Core(); +int QOpenGLFunctions_4_2_Core_InitializeOpenGLFunctions(QtObjectPtr ptr); +void QOpenGLFunctions_4_2_Core_DestroyQOpenGLFunctions_4_2_Core(QtObjectPtr ptr); +void QOpenGLFunctions_4_2_Core_GlEndConditionalRender(QtObjectPtr ptr); +void QOpenGLFunctions_4_2_Core_GlEndTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_4_2_Core_GlFinish(QtObjectPtr ptr); +void QOpenGLFunctions_4_2_Core_GlFlush(QtObjectPtr ptr); +void QOpenGLFunctions_4_2_Core_GlPauseTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_4_2_Core_GlReleaseShaderCompiler(QtObjectPtr ptr); +void QOpenGLFunctions_4_2_Core_GlResumeTransformFeedback(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions_4_3_compatibility.cpp b/gui/qopenglfunctions_4_3_compatibility.cpp new file mode 100755 index 00000000..d8eab33b --- /dev/null +++ b/gui/qopenglfunctions_4_3_compatibility.cpp @@ -0,0 +1,89 @@ +#include "qopenglfunctions_4_3_compatibility.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFunctions_4_3_Compatibility: public QOpenGLFunctions_4_3_Compatibility { +public: +}; + +QtObjectPtr QOpenGLFunctions_4_3_Compatibility_NewQOpenGLFunctions_4_3_Compatibility(){ + return new QOpenGLFunctions_4_3_Compatibility(); +} + +int QOpenGLFunctions_4_3_Compatibility_InitializeOpenGLFunctions(QtObjectPtr ptr){ + return static_cast(ptr)->initializeOpenGLFunctions(); +} + +void QOpenGLFunctions_4_3_Compatibility_DestroyQOpenGLFunctions_4_3_Compatibility(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFunctions_4_3_Compatibility(); +} + +void QOpenGLFunctions_4_3_Compatibility_GlEnd(QtObjectPtr ptr){ + static_cast(ptr)->glEnd(); +} + +void QOpenGLFunctions_4_3_Compatibility_GlEndConditionalRender(QtObjectPtr ptr){ + static_cast(ptr)->glEndConditionalRender(); +} + +void QOpenGLFunctions_4_3_Compatibility_GlEndList(QtObjectPtr ptr){ + static_cast(ptr)->glEndList(); +} + +void QOpenGLFunctions_4_3_Compatibility_GlEndTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glEndTransformFeedback(); +} + +void QOpenGLFunctions_4_3_Compatibility_GlFinish(QtObjectPtr ptr){ + static_cast(ptr)->glFinish(); +} + +void QOpenGLFunctions_4_3_Compatibility_GlFlush(QtObjectPtr ptr){ + static_cast(ptr)->glFlush(); +} + +void QOpenGLFunctions_4_3_Compatibility_GlInitNames(QtObjectPtr ptr){ + static_cast(ptr)->glInitNames(); +} + +void QOpenGLFunctions_4_3_Compatibility_GlLoadIdentity(QtObjectPtr ptr){ + static_cast(ptr)->glLoadIdentity(); +} + +void QOpenGLFunctions_4_3_Compatibility_GlPauseTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glPauseTransformFeedback(); +} + +void QOpenGLFunctions_4_3_Compatibility_GlPopAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopAttrib(); +} + +void QOpenGLFunctions_4_3_Compatibility_GlPopClientAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopClientAttrib(); +} + +void QOpenGLFunctions_4_3_Compatibility_GlPopMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPopMatrix(); +} + +void QOpenGLFunctions_4_3_Compatibility_GlPopName(QtObjectPtr ptr){ + static_cast(ptr)->glPopName(); +} + +void QOpenGLFunctions_4_3_Compatibility_GlPushMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPushMatrix(); +} + +void QOpenGLFunctions_4_3_Compatibility_GlReleaseShaderCompiler(QtObjectPtr ptr){ + static_cast(ptr)->glReleaseShaderCompiler(); +} + +void QOpenGLFunctions_4_3_Compatibility_GlResumeTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glResumeTransformFeedback(); +} + diff --git a/gui/qopenglfunctions_4_3_compatibility.go b/gui/qopenglfunctions_4_3_compatibility.go new file mode 100755 index 00000000..a9badb95 --- /dev/null +++ b/gui/qopenglfunctions_4_3_compatibility.go @@ -0,0 +1,146 @@ +package gui + +//#include "qopenglfunctions_4_3_compatibility.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions_4_3_Compatibility struct { + QAbstractOpenGLFunctions +} + +type QOpenGLFunctions_4_3_CompatibilityITF interface { + QAbstractOpenGLFunctionsITF + QOpenGLFunctions_4_3_CompatibilityPTR() *QOpenGLFunctions_4_3_Compatibility +} + +func PointerFromQOpenGLFunctions_4_3_Compatibility(ptr QOpenGLFunctions_4_3_CompatibilityITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctions_4_3_CompatibilityPTR().Pointer() + } + return nil +} + +func QOpenGLFunctions_4_3_CompatibilityFromPointer(ptr unsafe.Pointer) *QOpenGLFunctions_4_3_Compatibility { + var n = new(QOpenGLFunctions_4_3_Compatibility) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions_4_3_Compatibility) QOpenGLFunctions_4_3_CompatibilityPTR() *QOpenGLFunctions_4_3_Compatibility { + return ptr +} + +func NewQOpenGLFunctions_4_3_Compatibility() *QOpenGLFunctions_4_3_Compatibility { + return QOpenGLFunctions_4_3_CompatibilityFromPointer(unsafe.Pointer(C.QOpenGLFunctions_4_3_Compatibility_NewQOpenGLFunctions_4_3_Compatibility())) +} + +func (ptr *QOpenGLFunctions_4_3_Compatibility) InitializeOpenGLFunctions() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFunctions_4_3_Compatibility_InitializeOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFunctions_4_3_Compatibility) DestroyQOpenGLFunctions_4_3_Compatibility() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_3_Compatibility_DestroyQOpenGLFunctions_4_3_Compatibility(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_3_Compatibility) GlEnd() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_3_Compatibility_GlEnd(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_3_Compatibility) GlEndConditionalRender() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_3_Compatibility_GlEndConditionalRender(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_3_Compatibility) GlEndList() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_3_Compatibility_GlEndList(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_3_Compatibility) GlEndTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_3_Compatibility_GlEndTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_3_Compatibility) GlFinish() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_3_Compatibility_GlFinish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_3_Compatibility) GlFlush() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_3_Compatibility_GlFlush(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_3_Compatibility) GlInitNames() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_3_Compatibility_GlInitNames(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_3_Compatibility) GlLoadIdentity() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_3_Compatibility_GlLoadIdentity(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_3_Compatibility) GlPauseTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_3_Compatibility_GlPauseTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_3_Compatibility) GlPopAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_3_Compatibility_GlPopAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_3_Compatibility) GlPopClientAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_3_Compatibility_GlPopClientAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_3_Compatibility) GlPopMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_3_Compatibility_GlPopMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_3_Compatibility) GlPopName() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_3_Compatibility_GlPopName(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_3_Compatibility) GlPushMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_3_Compatibility_GlPushMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_3_Compatibility) GlReleaseShaderCompiler() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_3_Compatibility_GlReleaseShaderCompiler(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_3_Compatibility) GlResumeTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_3_Compatibility_GlResumeTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglfunctions_4_3_compatibility.h b/gui/qopenglfunctions_4_3_compatibility.h new file mode 100755 index 00000000..16ba50a1 --- /dev/null +++ b/gui/qopenglfunctions_4_3_compatibility.h @@ -0,0 +1,28 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFunctions_4_3_Compatibility_NewQOpenGLFunctions_4_3_Compatibility(); +int QOpenGLFunctions_4_3_Compatibility_InitializeOpenGLFunctions(QtObjectPtr ptr); +void QOpenGLFunctions_4_3_Compatibility_DestroyQOpenGLFunctions_4_3_Compatibility(QtObjectPtr ptr); +void QOpenGLFunctions_4_3_Compatibility_GlEnd(QtObjectPtr ptr); +void QOpenGLFunctions_4_3_Compatibility_GlEndConditionalRender(QtObjectPtr ptr); +void QOpenGLFunctions_4_3_Compatibility_GlEndList(QtObjectPtr ptr); +void QOpenGLFunctions_4_3_Compatibility_GlEndTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_4_3_Compatibility_GlFinish(QtObjectPtr ptr); +void QOpenGLFunctions_4_3_Compatibility_GlFlush(QtObjectPtr ptr); +void QOpenGLFunctions_4_3_Compatibility_GlInitNames(QtObjectPtr ptr); +void QOpenGLFunctions_4_3_Compatibility_GlLoadIdentity(QtObjectPtr ptr); +void QOpenGLFunctions_4_3_Compatibility_GlPauseTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_4_3_Compatibility_GlPopAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_4_3_Compatibility_GlPopClientAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_4_3_Compatibility_GlPopMatrix(QtObjectPtr ptr); +void QOpenGLFunctions_4_3_Compatibility_GlPopName(QtObjectPtr ptr); +void QOpenGLFunctions_4_3_Compatibility_GlPushMatrix(QtObjectPtr ptr); +void QOpenGLFunctions_4_3_Compatibility_GlReleaseShaderCompiler(QtObjectPtr ptr); +void QOpenGLFunctions_4_3_Compatibility_GlResumeTransformFeedback(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions_4_3_core.cpp b/gui/qopenglfunctions_4_3_core.cpp new file mode 100755 index 00000000..821054d1 --- /dev/null +++ b/gui/qopenglfunctions_4_3_core.cpp @@ -0,0 +1,53 @@ +#include "qopenglfunctions_4_3_core.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFunctions_4_3_Core: public QOpenGLFunctions_4_3_Core { +public: +}; + +QtObjectPtr QOpenGLFunctions_4_3_Core_NewQOpenGLFunctions_4_3_Core(){ + return new QOpenGLFunctions_4_3_Core(); +} + +int QOpenGLFunctions_4_3_Core_InitializeOpenGLFunctions(QtObjectPtr ptr){ + return static_cast(ptr)->initializeOpenGLFunctions(); +} + +void QOpenGLFunctions_4_3_Core_DestroyQOpenGLFunctions_4_3_Core(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFunctions_4_3_Core(); +} + +void QOpenGLFunctions_4_3_Core_GlEndConditionalRender(QtObjectPtr ptr){ + static_cast(ptr)->glEndConditionalRender(); +} + +void QOpenGLFunctions_4_3_Core_GlEndTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glEndTransformFeedback(); +} + +void QOpenGLFunctions_4_3_Core_GlFinish(QtObjectPtr ptr){ + static_cast(ptr)->glFinish(); +} + +void QOpenGLFunctions_4_3_Core_GlFlush(QtObjectPtr ptr){ + static_cast(ptr)->glFlush(); +} + +void QOpenGLFunctions_4_3_Core_GlPauseTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glPauseTransformFeedback(); +} + +void QOpenGLFunctions_4_3_Core_GlReleaseShaderCompiler(QtObjectPtr ptr){ + static_cast(ptr)->glReleaseShaderCompiler(); +} + +void QOpenGLFunctions_4_3_Core_GlResumeTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glResumeTransformFeedback(); +} + diff --git a/gui/qopenglfunctions_4_3_core.go b/gui/qopenglfunctions_4_3_core.go new file mode 100755 index 00000000..f280f3f0 --- /dev/null +++ b/gui/qopenglfunctions_4_3_core.go @@ -0,0 +1,92 @@ +package gui + +//#include "qopenglfunctions_4_3_core.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions_4_3_Core struct { + QAbstractOpenGLFunctions +} + +type QOpenGLFunctions_4_3_CoreITF interface { + QAbstractOpenGLFunctionsITF + QOpenGLFunctions_4_3_CorePTR() *QOpenGLFunctions_4_3_Core +} + +func PointerFromQOpenGLFunctions_4_3_Core(ptr QOpenGLFunctions_4_3_CoreITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctions_4_3_CorePTR().Pointer() + } + return nil +} + +func QOpenGLFunctions_4_3_CoreFromPointer(ptr unsafe.Pointer) *QOpenGLFunctions_4_3_Core { + var n = new(QOpenGLFunctions_4_3_Core) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions_4_3_Core) QOpenGLFunctions_4_3_CorePTR() *QOpenGLFunctions_4_3_Core { + return ptr +} + +func NewQOpenGLFunctions_4_3_Core() *QOpenGLFunctions_4_3_Core { + return QOpenGLFunctions_4_3_CoreFromPointer(unsafe.Pointer(C.QOpenGLFunctions_4_3_Core_NewQOpenGLFunctions_4_3_Core())) +} + +func (ptr *QOpenGLFunctions_4_3_Core) InitializeOpenGLFunctions() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFunctions_4_3_Core_InitializeOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFunctions_4_3_Core) DestroyQOpenGLFunctions_4_3_Core() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_3_Core_DestroyQOpenGLFunctions_4_3_Core(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_3_Core) GlEndConditionalRender() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_3_Core_GlEndConditionalRender(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_3_Core) GlEndTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_3_Core_GlEndTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_3_Core) GlFinish() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_3_Core_GlFinish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_3_Core) GlFlush() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_3_Core_GlFlush(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_3_Core) GlPauseTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_3_Core_GlPauseTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_3_Core) GlReleaseShaderCompiler() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_3_Core_GlReleaseShaderCompiler(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_3_Core) GlResumeTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_3_Core_GlResumeTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglfunctions_4_3_core.h b/gui/qopenglfunctions_4_3_core.h new file mode 100755 index 00000000..ef6fbdf9 --- /dev/null +++ b/gui/qopenglfunctions_4_3_core.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFunctions_4_3_Core_NewQOpenGLFunctions_4_3_Core(); +int QOpenGLFunctions_4_3_Core_InitializeOpenGLFunctions(QtObjectPtr ptr); +void QOpenGLFunctions_4_3_Core_DestroyQOpenGLFunctions_4_3_Core(QtObjectPtr ptr); +void QOpenGLFunctions_4_3_Core_GlEndConditionalRender(QtObjectPtr ptr); +void QOpenGLFunctions_4_3_Core_GlEndTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_4_3_Core_GlFinish(QtObjectPtr ptr); +void QOpenGLFunctions_4_3_Core_GlFlush(QtObjectPtr ptr); +void QOpenGLFunctions_4_3_Core_GlPauseTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_4_3_Core_GlReleaseShaderCompiler(QtObjectPtr ptr); +void QOpenGLFunctions_4_3_Core_GlResumeTransformFeedback(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions_4_4_compatibility.cpp b/gui/qopenglfunctions_4_4_compatibility.cpp new file mode 100755 index 00000000..c64edc20 --- /dev/null +++ b/gui/qopenglfunctions_4_4_compatibility.cpp @@ -0,0 +1,93 @@ +#include "qopenglfunctions_4_4_compatibility.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFunctions_4_4_Compatibility: public QOpenGLFunctions_4_4_Compatibility { +public: +}; + +QtObjectPtr QOpenGLFunctions_4_4_Compatibility_NewQOpenGLFunctions_4_4_Compatibility(){ + return new QOpenGLFunctions_4_4_Compatibility(); +} + +int QOpenGLFunctions_4_4_Compatibility_InitializeOpenGLFunctions(QtObjectPtr ptr){ + return static_cast(ptr)->initializeOpenGLFunctions(); +} + +void QOpenGLFunctions_4_4_Compatibility_DestroyQOpenGLFunctions_4_4_Compatibility(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFunctions_4_4_Compatibility(); +} + +void QOpenGLFunctions_4_4_Compatibility_GlEnd(QtObjectPtr ptr){ + static_cast(ptr)->glEnd(); +} + +void QOpenGLFunctions_4_4_Compatibility_GlEndConditionalRender(QtObjectPtr ptr){ + static_cast(ptr)->glEndConditionalRender(); +} + +void QOpenGLFunctions_4_4_Compatibility_GlEndList(QtObjectPtr ptr){ + static_cast(ptr)->glEndList(); +} + +void QOpenGLFunctions_4_4_Compatibility_GlEndTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glEndTransformFeedback(); +} + +void QOpenGLFunctions_4_4_Compatibility_GlFinish(QtObjectPtr ptr){ + static_cast(ptr)->glFinish(); +} + +void QOpenGLFunctions_4_4_Compatibility_GlFlush(QtObjectPtr ptr){ + static_cast(ptr)->glFlush(); +} + +void QOpenGLFunctions_4_4_Compatibility_GlInitNames(QtObjectPtr ptr){ + static_cast(ptr)->glInitNames(); +} + +void QOpenGLFunctions_4_4_Compatibility_GlLoadIdentity(QtObjectPtr ptr){ + static_cast(ptr)->glLoadIdentity(); +} + +void QOpenGLFunctions_4_4_Compatibility_GlPauseTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glPauseTransformFeedback(); +} + +void QOpenGLFunctions_4_4_Compatibility_GlPopAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopAttrib(); +} + +void QOpenGLFunctions_4_4_Compatibility_GlPopClientAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopClientAttrib(); +} + +void QOpenGLFunctions_4_4_Compatibility_GlPopDebugGroup(QtObjectPtr ptr){ + static_cast(ptr)->glPopDebugGroup(); +} + +void QOpenGLFunctions_4_4_Compatibility_GlPopMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPopMatrix(); +} + +void QOpenGLFunctions_4_4_Compatibility_GlPopName(QtObjectPtr ptr){ + static_cast(ptr)->glPopName(); +} + +void QOpenGLFunctions_4_4_Compatibility_GlPushMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPushMatrix(); +} + +void QOpenGLFunctions_4_4_Compatibility_GlReleaseShaderCompiler(QtObjectPtr ptr){ + static_cast(ptr)->glReleaseShaderCompiler(); +} + +void QOpenGLFunctions_4_4_Compatibility_GlResumeTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glResumeTransformFeedback(); +} + diff --git a/gui/qopenglfunctions_4_4_compatibility.go b/gui/qopenglfunctions_4_4_compatibility.go new file mode 100755 index 00000000..ae505073 --- /dev/null +++ b/gui/qopenglfunctions_4_4_compatibility.go @@ -0,0 +1,152 @@ +package gui + +//#include "qopenglfunctions_4_4_compatibility.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions_4_4_Compatibility struct { + QAbstractOpenGLFunctions +} + +type QOpenGLFunctions_4_4_CompatibilityITF interface { + QAbstractOpenGLFunctionsITF + QOpenGLFunctions_4_4_CompatibilityPTR() *QOpenGLFunctions_4_4_Compatibility +} + +func PointerFromQOpenGLFunctions_4_4_Compatibility(ptr QOpenGLFunctions_4_4_CompatibilityITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctions_4_4_CompatibilityPTR().Pointer() + } + return nil +} + +func QOpenGLFunctions_4_4_CompatibilityFromPointer(ptr unsafe.Pointer) *QOpenGLFunctions_4_4_Compatibility { + var n = new(QOpenGLFunctions_4_4_Compatibility) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions_4_4_Compatibility) QOpenGLFunctions_4_4_CompatibilityPTR() *QOpenGLFunctions_4_4_Compatibility { + return ptr +} + +func NewQOpenGLFunctions_4_4_Compatibility() *QOpenGLFunctions_4_4_Compatibility { + return QOpenGLFunctions_4_4_CompatibilityFromPointer(unsafe.Pointer(C.QOpenGLFunctions_4_4_Compatibility_NewQOpenGLFunctions_4_4_Compatibility())) +} + +func (ptr *QOpenGLFunctions_4_4_Compatibility) InitializeOpenGLFunctions() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFunctions_4_4_Compatibility_InitializeOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFunctions_4_4_Compatibility) DestroyQOpenGLFunctions_4_4_Compatibility() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_4_Compatibility_DestroyQOpenGLFunctions_4_4_Compatibility(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_4_Compatibility) GlEnd() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_4_Compatibility_GlEnd(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_4_Compatibility) GlEndConditionalRender() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_4_Compatibility_GlEndConditionalRender(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_4_Compatibility) GlEndList() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_4_Compatibility_GlEndList(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_4_Compatibility) GlEndTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_4_Compatibility_GlEndTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_4_Compatibility) GlFinish() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_4_Compatibility_GlFinish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_4_Compatibility) GlFlush() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_4_Compatibility_GlFlush(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_4_Compatibility) GlInitNames() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_4_Compatibility_GlInitNames(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_4_Compatibility) GlLoadIdentity() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_4_Compatibility_GlLoadIdentity(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_4_Compatibility) GlPauseTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_4_Compatibility_GlPauseTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_4_Compatibility) GlPopAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_4_Compatibility_GlPopAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_4_Compatibility) GlPopClientAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_4_Compatibility_GlPopClientAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_4_Compatibility) GlPopDebugGroup() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_4_Compatibility_GlPopDebugGroup(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_4_Compatibility) GlPopMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_4_Compatibility_GlPopMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_4_Compatibility) GlPopName() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_4_Compatibility_GlPopName(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_4_Compatibility) GlPushMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_4_Compatibility_GlPushMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_4_Compatibility) GlReleaseShaderCompiler() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_4_Compatibility_GlReleaseShaderCompiler(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_4_Compatibility) GlResumeTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_4_Compatibility_GlResumeTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglfunctions_4_4_compatibility.h b/gui/qopenglfunctions_4_4_compatibility.h new file mode 100755 index 00000000..f20309ae --- /dev/null +++ b/gui/qopenglfunctions_4_4_compatibility.h @@ -0,0 +1,29 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFunctions_4_4_Compatibility_NewQOpenGLFunctions_4_4_Compatibility(); +int QOpenGLFunctions_4_4_Compatibility_InitializeOpenGLFunctions(QtObjectPtr ptr); +void QOpenGLFunctions_4_4_Compatibility_DestroyQOpenGLFunctions_4_4_Compatibility(QtObjectPtr ptr); +void QOpenGLFunctions_4_4_Compatibility_GlEnd(QtObjectPtr ptr); +void QOpenGLFunctions_4_4_Compatibility_GlEndConditionalRender(QtObjectPtr ptr); +void QOpenGLFunctions_4_4_Compatibility_GlEndList(QtObjectPtr ptr); +void QOpenGLFunctions_4_4_Compatibility_GlEndTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_4_4_Compatibility_GlFinish(QtObjectPtr ptr); +void QOpenGLFunctions_4_4_Compatibility_GlFlush(QtObjectPtr ptr); +void QOpenGLFunctions_4_4_Compatibility_GlInitNames(QtObjectPtr ptr); +void QOpenGLFunctions_4_4_Compatibility_GlLoadIdentity(QtObjectPtr ptr); +void QOpenGLFunctions_4_4_Compatibility_GlPauseTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_4_4_Compatibility_GlPopAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_4_4_Compatibility_GlPopClientAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_4_4_Compatibility_GlPopDebugGroup(QtObjectPtr ptr); +void QOpenGLFunctions_4_4_Compatibility_GlPopMatrix(QtObjectPtr ptr); +void QOpenGLFunctions_4_4_Compatibility_GlPopName(QtObjectPtr ptr); +void QOpenGLFunctions_4_4_Compatibility_GlPushMatrix(QtObjectPtr ptr); +void QOpenGLFunctions_4_4_Compatibility_GlReleaseShaderCompiler(QtObjectPtr ptr); +void QOpenGLFunctions_4_4_Compatibility_GlResumeTransformFeedback(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions_4_4_core.cpp b/gui/qopenglfunctions_4_4_core.cpp new file mode 100755 index 00000000..9a0ccac4 --- /dev/null +++ b/gui/qopenglfunctions_4_4_core.cpp @@ -0,0 +1,57 @@ +#include "qopenglfunctions_4_4_core.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFunctions_4_4_Core: public QOpenGLFunctions_4_4_Core { +public: +}; + +QtObjectPtr QOpenGLFunctions_4_4_Core_NewQOpenGLFunctions_4_4_Core(){ + return new QOpenGLFunctions_4_4_Core(); +} + +int QOpenGLFunctions_4_4_Core_InitializeOpenGLFunctions(QtObjectPtr ptr){ + return static_cast(ptr)->initializeOpenGLFunctions(); +} + +void QOpenGLFunctions_4_4_Core_DestroyQOpenGLFunctions_4_4_Core(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFunctions_4_4_Core(); +} + +void QOpenGLFunctions_4_4_Core_GlEndConditionalRender(QtObjectPtr ptr){ + static_cast(ptr)->glEndConditionalRender(); +} + +void QOpenGLFunctions_4_4_Core_GlEndTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glEndTransformFeedback(); +} + +void QOpenGLFunctions_4_4_Core_GlFinish(QtObjectPtr ptr){ + static_cast(ptr)->glFinish(); +} + +void QOpenGLFunctions_4_4_Core_GlFlush(QtObjectPtr ptr){ + static_cast(ptr)->glFlush(); +} + +void QOpenGLFunctions_4_4_Core_GlPauseTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glPauseTransformFeedback(); +} + +void QOpenGLFunctions_4_4_Core_GlPopDebugGroup(QtObjectPtr ptr){ + static_cast(ptr)->glPopDebugGroup(); +} + +void QOpenGLFunctions_4_4_Core_GlReleaseShaderCompiler(QtObjectPtr ptr){ + static_cast(ptr)->glReleaseShaderCompiler(); +} + +void QOpenGLFunctions_4_4_Core_GlResumeTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glResumeTransformFeedback(); +} + diff --git a/gui/qopenglfunctions_4_4_core.go b/gui/qopenglfunctions_4_4_core.go new file mode 100755 index 00000000..85276efd --- /dev/null +++ b/gui/qopenglfunctions_4_4_core.go @@ -0,0 +1,98 @@ +package gui + +//#include "qopenglfunctions_4_4_core.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions_4_4_Core struct { + QAbstractOpenGLFunctions +} + +type QOpenGLFunctions_4_4_CoreITF interface { + QAbstractOpenGLFunctionsITF + QOpenGLFunctions_4_4_CorePTR() *QOpenGLFunctions_4_4_Core +} + +func PointerFromQOpenGLFunctions_4_4_Core(ptr QOpenGLFunctions_4_4_CoreITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctions_4_4_CorePTR().Pointer() + } + return nil +} + +func QOpenGLFunctions_4_4_CoreFromPointer(ptr unsafe.Pointer) *QOpenGLFunctions_4_4_Core { + var n = new(QOpenGLFunctions_4_4_Core) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions_4_4_Core) QOpenGLFunctions_4_4_CorePTR() *QOpenGLFunctions_4_4_Core { + return ptr +} + +func NewQOpenGLFunctions_4_4_Core() *QOpenGLFunctions_4_4_Core { + return QOpenGLFunctions_4_4_CoreFromPointer(unsafe.Pointer(C.QOpenGLFunctions_4_4_Core_NewQOpenGLFunctions_4_4_Core())) +} + +func (ptr *QOpenGLFunctions_4_4_Core) InitializeOpenGLFunctions() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFunctions_4_4_Core_InitializeOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFunctions_4_4_Core) DestroyQOpenGLFunctions_4_4_Core() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_4_Core_DestroyQOpenGLFunctions_4_4_Core(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_4_Core) GlEndConditionalRender() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_4_Core_GlEndConditionalRender(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_4_Core) GlEndTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_4_Core_GlEndTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_4_Core) GlFinish() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_4_Core_GlFinish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_4_Core) GlFlush() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_4_Core_GlFlush(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_4_Core) GlPauseTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_4_Core_GlPauseTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_4_Core) GlPopDebugGroup() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_4_Core_GlPopDebugGroup(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_4_Core) GlReleaseShaderCompiler() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_4_Core_GlReleaseShaderCompiler(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_4_Core) GlResumeTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_4_Core_GlResumeTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglfunctions_4_4_core.h b/gui/qopenglfunctions_4_4_core.h new file mode 100755 index 00000000..84f6226e --- /dev/null +++ b/gui/qopenglfunctions_4_4_core.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFunctions_4_4_Core_NewQOpenGLFunctions_4_4_Core(); +int QOpenGLFunctions_4_4_Core_InitializeOpenGLFunctions(QtObjectPtr ptr); +void QOpenGLFunctions_4_4_Core_DestroyQOpenGLFunctions_4_4_Core(QtObjectPtr ptr); +void QOpenGLFunctions_4_4_Core_GlEndConditionalRender(QtObjectPtr ptr); +void QOpenGLFunctions_4_4_Core_GlEndTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_4_4_Core_GlFinish(QtObjectPtr ptr); +void QOpenGLFunctions_4_4_Core_GlFlush(QtObjectPtr ptr); +void QOpenGLFunctions_4_4_Core_GlPauseTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_4_4_Core_GlPopDebugGroup(QtObjectPtr ptr); +void QOpenGLFunctions_4_4_Core_GlReleaseShaderCompiler(QtObjectPtr ptr); +void QOpenGLFunctions_4_4_Core_GlResumeTransformFeedback(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions_4_5_compatibility.cpp b/gui/qopenglfunctions_4_5_compatibility.cpp new file mode 100755 index 00000000..c09849e3 --- /dev/null +++ b/gui/qopenglfunctions_4_5_compatibility.cpp @@ -0,0 +1,97 @@ +#include "qopenglfunctions_4_5_compatibility.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFunctions_4_5_Compatibility: public QOpenGLFunctions_4_5_Compatibility { +public: +}; + +QtObjectPtr QOpenGLFunctions_4_5_Compatibility_NewQOpenGLFunctions_4_5_Compatibility(){ + return new QOpenGLFunctions_4_5_Compatibility(); +} + +int QOpenGLFunctions_4_5_Compatibility_InitializeOpenGLFunctions(QtObjectPtr ptr){ + return static_cast(ptr)->initializeOpenGLFunctions(); +} + +void QOpenGLFunctions_4_5_Compatibility_DestroyQOpenGLFunctions_4_5_Compatibility(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFunctions_4_5_Compatibility(); +} + +void QOpenGLFunctions_4_5_Compatibility_GlEnd(QtObjectPtr ptr){ + static_cast(ptr)->glEnd(); +} + +void QOpenGLFunctions_4_5_Compatibility_GlEndConditionalRender(QtObjectPtr ptr){ + static_cast(ptr)->glEndConditionalRender(); +} + +void QOpenGLFunctions_4_5_Compatibility_GlEndList(QtObjectPtr ptr){ + static_cast(ptr)->glEndList(); +} + +void QOpenGLFunctions_4_5_Compatibility_GlEndTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glEndTransformFeedback(); +} + +void QOpenGLFunctions_4_5_Compatibility_GlFinish(QtObjectPtr ptr){ + static_cast(ptr)->glFinish(); +} + +void QOpenGLFunctions_4_5_Compatibility_GlFlush(QtObjectPtr ptr){ + static_cast(ptr)->glFlush(); +} + +void QOpenGLFunctions_4_5_Compatibility_GlInitNames(QtObjectPtr ptr){ + static_cast(ptr)->glInitNames(); +} + +void QOpenGLFunctions_4_5_Compatibility_GlLoadIdentity(QtObjectPtr ptr){ + static_cast(ptr)->glLoadIdentity(); +} + +void QOpenGLFunctions_4_5_Compatibility_GlPauseTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glPauseTransformFeedback(); +} + +void QOpenGLFunctions_4_5_Compatibility_GlPopAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopAttrib(); +} + +void QOpenGLFunctions_4_5_Compatibility_GlPopClientAttrib(QtObjectPtr ptr){ + static_cast(ptr)->glPopClientAttrib(); +} + +void QOpenGLFunctions_4_5_Compatibility_GlPopDebugGroup(QtObjectPtr ptr){ + static_cast(ptr)->glPopDebugGroup(); +} + +void QOpenGLFunctions_4_5_Compatibility_GlPopMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPopMatrix(); +} + +void QOpenGLFunctions_4_5_Compatibility_GlPopName(QtObjectPtr ptr){ + static_cast(ptr)->glPopName(); +} + +void QOpenGLFunctions_4_5_Compatibility_GlPushMatrix(QtObjectPtr ptr){ + static_cast(ptr)->glPushMatrix(); +} + +void QOpenGLFunctions_4_5_Compatibility_GlReleaseShaderCompiler(QtObjectPtr ptr){ + static_cast(ptr)->glReleaseShaderCompiler(); +} + +void QOpenGLFunctions_4_5_Compatibility_GlResumeTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glResumeTransformFeedback(); +} + +void QOpenGLFunctions_4_5_Compatibility_GlTextureBarrier(QtObjectPtr ptr){ + static_cast(ptr)->glTextureBarrier(); +} + diff --git a/gui/qopenglfunctions_4_5_compatibility.go b/gui/qopenglfunctions_4_5_compatibility.go new file mode 100755 index 00000000..cc4076d3 --- /dev/null +++ b/gui/qopenglfunctions_4_5_compatibility.go @@ -0,0 +1,158 @@ +package gui + +//#include "qopenglfunctions_4_5_compatibility.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions_4_5_Compatibility struct { + QAbstractOpenGLFunctions +} + +type QOpenGLFunctions_4_5_CompatibilityITF interface { + QAbstractOpenGLFunctionsITF + QOpenGLFunctions_4_5_CompatibilityPTR() *QOpenGLFunctions_4_5_Compatibility +} + +func PointerFromQOpenGLFunctions_4_5_Compatibility(ptr QOpenGLFunctions_4_5_CompatibilityITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctions_4_5_CompatibilityPTR().Pointer() + } + return nil +} + +func QOpenGLFunctions_4_5_CompatibilityFromPointer(ptr unsafe.Pointer) *QOpenGLFunctions_4_5_Compatibility { + var n = new(QOpenGLFunctions_4_5_Compatibility) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions_4_5_Compatibility) QOpenGLFunctions_4_5_CompatibilityPTR() *QOpenGLFunctions_4_5_Compatibility { + return ptr +} + +func NewQOpenGLFunctions_4_5_Compatibility() *QOpenGLFunctions_4_5_Compatibility { + return QOpenGLFunctions_4_5_CompatibilityFromPointer(unsafe.Pointer(C.QOpenGLFunctions_4_5_Compatibility_NewQOpenGLFunctions_4_5_Compatibility())) +} + +func (ptr *QOpenGLFunctions_4_5_Compatibility) InitializeOpenGLFunctions() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFunctions_4_5_Compatibility_InitializeOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFunctions_4_5_Compatibility) DestroyQOpenGLFunctions_4_5_Compatibility() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Compatibility_DestroyQOpenGLFunctions_4_5_Compatibility(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_5_Compatibility) GlEnd() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Compatibility_GlEnd(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_5_Compatibility) GlEndConditionalRender() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Compatibility_GlEndConditionalRender(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_5_Compatibility) GlEndList() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Compatibility_GlEndList(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_5_Compatibility) GlEndTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Compatibility_GlEndTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_5_Compatibility) GlFinish() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Compatibility_GlFinish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_5_Compatibility) GlFlush() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Compatibility_GlFlush(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_5_Compatibility) GlInitNames() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Compatibility_GlInitNames(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_5_Compatibility) GlLoadIdentity() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Compatibility_GlLoadIdentity(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_5_Compatibility) GlPauseTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Compatibility_GlPauseTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_5_Compatibility) GlPopAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Compatibility_GlPopAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_5_Compatibility) GlPopClientAttrib() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Compatibility_GlPopClientAttrib(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_5_Compatibility) GlPopDebugGroup() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Compatibility_GlPopDebugGroup(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_5_Compatibility) GlPopMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Compatibility_GlPopMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_5_Compatibility) GlPopName() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Compatibility_GlPopName(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_5_Compatibility) GlPushMatrix() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Compatibility_GlPushMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_5_Compatibility) GlReleaseShaderCompiler() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Compatibility_GlReleaseShaderCompiler(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_5_Compatibility) GlResumeTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Compatibility_GlResumeTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_5_Compatibility) GlTextureBarrier() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Compatibility_GlTextureBarrier(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglfunctions_4_5_compatibility.h b/gui/qopenglfunctions_4_5_compatibility.h new file mode 100755 index 00000000..62ae0564 --- /dev/null +++ b/gui/qopenglfunctions_4_5_compatibility.h @@ -0,0 +1,30 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFunctions_4_5_Compatibility_NewQOpenGLFunctions_4_5_Compatibility(); +int QOpenGLFunctions_4_5_Compatibility_InitializeOpenGLFunctions(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Compatibility_DestroyQOpenGLFunctions_4_5_Compatibility(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Compatibility_GlEnd(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Compatibility_GlEndConditionalRender(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Compatibility_GlEndList(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Compatibility_GlEndTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Compatibility_GlFinish(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Compatibility_GlFlush(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Compatibility_GlInitNames(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Compatibility_GlLoadIdentity(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Compatibility_GlPauseTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Compatibility_GlPopAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Compatibility_GlPopClientAttrib(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Compatibility_GlPopDebugGroup(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Compatibility_GlPopMatrix(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Compatibility_GlPopName(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Compatibility_GlPushMatrix(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Compatibility_GlReleaseShaderCompiler(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Compatibility_GlResumeTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Compatibility_GlTextureBarrier(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions_4_5_core.cpp b/gui/qopenglfunctions_4_5_core.cpp new file mode 100755 index 00000000..de748b45 --- /dev/null +++ b/gui/qopenglfunctions_4_5_core.cpp @@ -0,0 +1,61 @@ +#include "qopenglfunctions_4_5_core.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLFunctions_4_5_Core: public QOpenGLFunctions_4_5_Core { +public: +}; + +QtObjectPtr QOpenGLFunctions_4_5_Core_NewQOpenGLFunctions_4_5_Core(){ + return new QOpenGLFunctions_4_5_Core(); +} + +int QOpenGLFunctions_4_5_Core_InitializeOpenGLFunctions(QtObjectPtr ptr){ + return static_cast(ptr)->initializeOpenGLFunctions(); +} + +void QOpenGLFunctions_4_5_Core_DestroyQOpenGLFunctions_4_5_Core(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLFunctions_4_5_Core(); +} + +void QOpenGLFunctions_4_5_Core_GlEndConditionalRender(QtObjectPtr ptr){ + static_cast(ptr)->glEndConditionalRender(); +} + +void QOpenGLFunctions_4_5_Core_GlEndTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glEndTransformFeedback(); +} + +void QOpenGLFunctions_4_5_Core_GlFinish(QtObjectPtr ptr){ + static_cast(ptr)->glFinish(); +} + +void QOpenGLFunctions_4_5_Core_GlFlush(QtObjectPtr ptr){ + static_cast(ptr)->glFlush(); +} + +void QOpenGLFunctions_4_5_Core_GlPauseTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glPauseTransformFeedback(); +} + +void QOpenGLFunctions_4_5_Core_GlPopDebugGroup(QtObjectPtr ptr){ + static_cast(ptr)->glPopDebugGroup(); +} + +void QOpenGLFunctions_4_5_Core_GlReleaseShaderCompiler(QtObjectPtr ptr){ + static_cast(ptr)->glReleaseShaderCompiler(); +} + +void QOpenGLFunctions_4_5_Core_GlResumeTransformFeedback(QtObjectPtr ptr){ + static_cast(ptr)->glResumeTransformFeedback(); +} + +void QOpenGLFunctions_4_5_Core_GlTextureBarrier(QtObjectPtr ptr){ + static_cast(ptr)->glTextureBarrier(); +} + diff --git a/gui/qopenglfunctions_4_5_core.go b/gui/qopenglfunctions_4_5_core.go new file mode 100755 index 00000000..969c7fe2 --- /dev/null +++ b/gui/qopenglfunctions_4_5_core.go @@ -0,0 +1,104 @@ +package gui + +//#include "qopenglfunctions_4_5_core.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions_4_5_Core struct { + QAbstractOpenGLFunctions +} + +type QOpenGLFunctions_4_5_CoreITF interface { + QAbstractOpenGLFunctionsITF + QOpenGLFunctions_4_5_CorePTR() *QOpenGLFunctions_4_5_Core +} + +func PointerFromQOpenGLFunctions_4_5_Core(ptr QOpenGLFunctions_4_5_CoreITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctions_4_5_CorePTR().Pointer() + } + return nil +} + +func QOpenGLFunctions_4_5_CoreFromPointer(ptr unsafe.Pointer) *QOpenGLFunctions_4_5_Core { + var n = new(QOpenGLFunctions_4_5_Core) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions_4_5_Core) QOpenGLFunctions_4_5_CorePTR() *QOpenGLFunctions_4_5_Core { + return ptr +} + +func NewQOpenGLFunctions_4_5_Core() *QOpenGLFunctions_4_5_Core { + return QOpenGLFunctions_4_5_CoreFromPointer(unsafe.Pointer(C.QOpenGLFunctions_4_5_Core_NewQOpenGLFunctions_4_5_Core())) +} + +func (ptr *QOpenGLFunctions_4_5_Core) InitializeOpenGLFunctions() bool { + if ptr.Pointer() != nil { + return C.QOpenGLFunctions_4_5_Core_InitializeOpenGLFunctions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLFunctions_4_5_Core) DestroyQOpenGLFunctions_4_5_Core() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Core_DestroyQOpenGLFunctions_4_5_Core(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_5_Core) GlEndConditionalRender() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Core_GlEndConditionalRender(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_5_Core) GlEndTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Core_GlEndTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_5_Core) GlFinish() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Core_GlFinish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_5_Core) GlFlush() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Core_GlFlush(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_5_Core) GlPauseTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Core_GlPauseTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_5_Core) GlPopDebugGroup() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Core_GlPopDebugGroup(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_5_Core) GlReleaseShaderCompiler() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Core_GlReleaseShaderCompiler(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_5_Core) GlResumeTransformFeedback() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Core_GlResumeTransformFeedback(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLFunctions_4_5_Core) GlTextureBarrier() { + if ptr.Pointer() != nil { + C.QOpenGLFunctions_4_5_Core_GlTextureBarrier(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglfunctions_4_5_core.h b/gui/qopenglfunctions_4_5_core.h new file mode 100755 index 00000000..657ae7ca --- /dev/null +++ b/gui/qopenglfunctions_4_5_core.h @@ -0,0 +1,21 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLFunctions_4_5_Core_NewQOpenGLFunctions_4_5_Core(); +int QOpenGLFunctions_4_5_Core_InitializeOpenGLFunctions(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Core_DestroyQOpenGLFunctions_4_5_Core(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Core_GlEndConditionalRender(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Core_GlEndTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Core_GlFinish(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Core_GlFlush(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Core_GlPauseTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Core_GlPopDebugGroup(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Core_GlReleaseShaderCompiler(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Core_GlResumeTransformFeedback(QtObjectPtr ptr); +void QOpenGLFunctions_4_5_Core_GlTextureBarrier(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglfunctions_es2.cpp b/gui/qopenglfunctions_es2.cpp new file mode 100755 index 00000000..31e139ed --- /dev/null +++ b/gui/qopenglfunctions_es2.cpp @@ -0,0 +1,9 @@ +#include "qopenglfunctions_es2.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/gui/qopenglfunctions_es2.go b/gui/qopenglfunctions_es2.go new file mode 100755 index 00000000..5990e1aa --- /dev/null +++ b/gui/qopenglfunctions_es2.go @@ -0,0 +1,33 @@ +package gui + +//#include "qopenglfunctions_es2.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLFunctions_ES2 struct { + QAbstractOpenGLFunctions +} + +type QOpenGLFunctions_ES2ITF interface { + QAbstractOpenGLFunctionsITF + QOpenGLFunctions_ES2PTR() *QOpenGLFunctions_ES2 +} + +func PointerFromQOpenGLFunctions_ES2(ptr QOpenGLFunctions_ES2ITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLFunctions_ES2PTR().Pointer() + } + return nil +} + +func QOpenGLFunctions_ES2FromPointer(ptr unsafe.Pointer) *QOpenGLFunctions_ES2 { + var n = new(QOpenGLFunctions_ES2) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLFunctions_ES2) QOpenGLFunctions_ES2PTR() *QOpenGLFunctions_ES2 { + return ptr +} diff --git a/gui/qopenglfunctions_es2.h b/gui/qopenglfunctions_es2.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/gui/qopenglfunctions_es2.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglpaintdevice.cpp b/gui/qopenglpaintdevice.cpp new file mode 100755 index 00000000..32d050bd --- /dev/null +++ b/gui/qopenglpaintdevice.cpp @@ -0,0 +1,53 @@ +#include "qopenglpaintdevice.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLPaintDevice: public QOpenGLPaintDevice { +public: +}; + +QtObjectPtr QOpenGLPaintDevice_NewQOpenGLPaintDevice(){ + return new QOpenGLPaintDevice(); +} + +QtObjectPtr QOpenGLPaintDevice_NewQOpenGLPaintDevice2(QtObjectPtr size){ + return new QOpenGLPaintDevice(*static_cast(size)); +} + +QtObjectPtr QOpenGLPaintDevice_NewQOpenGLPaintDevice3(int width, int height){ + return new QOpenGLPaintDevice(width, height); +} + +QtObjectPtr QOpenGLPaintDevice_Context(QtObjectPtr ptr){ + return static_cast(ptr)->context(); +} + +void QOpenGLPaintDevice_EnsureActiveTarget(QtObjectPtr ptr){ + static_cast(ptr)->ensureActiveTarget(); +} + +QtObjectPtr QOpenGLPaintDevice_PaintEngine(QtObjectPtr ptr){ + return static_cast(ptr)->paintEngine(); +} + +int QOpenGLPaintDevice_PaintFlipped(QtObjectPtr ptr){ + return static_cast(ptr)->paintFlipped(); +} + +void QOpenGLPaintDevice_SetPaintFlipped(QtObjectPtr ptr, int flipped){ + static_cast(ptr)->setPaintFlipped(flipped != 0); +} + +void QOpenGLPaintDevice_SetSize(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->setSize(*static_cast(size)); +} + +void QOpenGLPaintDevice_DestroyQOpenGLPaintDevice(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLPaintDevice(); +} + diff --git a/gui/qopenglpaintdevice.go b/gui/qopenglpaintdevice.go new file mode 100755 index 00000000..2de4c0c7 --- /dev/null +++ b/gui/qopenglpaintdevice.go @@ -0,0 +1,92 @@ +package gui + +//#include "qopenglpaintdevice.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QOpenGLPaintDevice struct { + QPaintDevice +} + +type QOpenGLPaintDeviceITF interface { + QPaintDeviceITF + QOpenGLPaintDevicePTR() *QOpenGLPaintDevice +} + +func PointerFromQOpenGLPaintDevice(ptr QOpenGLPaintDeviceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLPaintDevicePTR().Pointer() + } + return nil +} + +func QOpenGLPaintDeviceFromPointer(ptr unsafe.Pointer) *QOpenGLPaintDevice { + var n = new(QOpenGLPaintDevice) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLPaintDevice) QOpenGLPaintDevicePTR() *QOpenGLPaintDevice { + return ptr +} + +func NewQOpenGLPaintDevice() *QOpenGLPaintDevice { + return QOpenGLPaintDeviceFromPointer(unsafe.Pointer(C.QOpenGLPaintDevice_NewQOpenGLPaintDevice())) +} + +func NewQOpenGLPaintDevice2(size core.QSizeITF) *QOpenGLPaintDevice { + return QOpenGLPaintDeviceFromPointer(unsafe.Pointer(C.QOpenGLPaintDevice_NewQOpenGLPaintDevice2(C.QtObjectPtr(core.PointerFromQSize(size))))) +} + +func NewQOpenGLPaintDevice3(width int, height int) *QOpenGLPaintDevice { + return QOpenGLPaintDeviceFromPointer(unsafe.Pointer(C.QOpenGLPaintDevice_NewQOpenGLPaintDevice3(C.int(width), C.int(height)))) +} + +func (ptr *QOpenGLPaintDevice) Context() *QOpenGLContext { + if ptr.Pointer() != nil { + return QOpenGLContextFromPointer(unsafe.Pointer(C.QOpenGLPaintDevice_Context(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QOpenGLPaintDevice) EnsureActiveTarget() { + if ptr.Pointer() != nil { + C.QOpenGLPaintDevice_EnsureActiveTarget(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLPaintDevice) PaintEngine() *QPaintEngine { + if ptr.Pointer() != nil { + return QPaintEngineFromPointer(unsafe.Pointer(C.QOpenGLPaintDevice_PaintEngine(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QOpenGLPaintDevice) PaintFlipped() bool { + if ptr.Pointer() != nil { + return C.QOpenGLPaintDevice_PaintFlipped(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLPaintDevice) SetPaintFlipped(flipped bool) { + if ptr.Pointer() != nil { + C.QOpenGLPaintDevice_SetPaintFlipped(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(flipped))) + } +} + +func (ptr *QOpenGLPaintDevice) SetSize(size core.QSizeITF) { + if ptr.Pointer() != nil { + C.QOpenGLPaintDevice_SetSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(size))) + } +} + +func (ptr *QOpenGLPaintDevice) DestroyQOpenGLPaintDevice() { + if ptr.Pointer() != nil { + C.QOpenGLPaintDevice_DestroyQOpenGLPaintDevice(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglpaintdevice.h b/gui/qopenglpaintdevice.h new file mode 100755 index 00000000..91296e68 --- /dev/null +++ b/gui/qopenglpaintdevice.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLPaintDevice_NewQOpenGLPaintDevice(); +QtObjectPtr QOpenGLPaintDevice_NewQOpenGLPaintDevice2(QtObjectPtr size); +QtObjectPtr QOpenGLPaintDevice_NewQOpenGLPaintDevice3(int width, int height); +QtObjectPtr QOpenGLPaintDevice_Context(QtObjectPtr ptr); +void QOpenGLPaintDevice_EnsureActiveTarget(QtObjectPtr ptr); +QtObjectPtr QOpenGLPaintDevice_PaintEngine(QtObjectPtr ptr); +int QOpenGLPaintDevice_PaintFlipped(QtObjectPtr ptr); +void QOpenGLPaintDevice_SetPaintFlipped(QtObjectPtr ptr, int flipped); +void QOpenGLPaintDevice_SetSize(QtObjectPtr ptr, QtObjectPtr size); +void QOpenGLPaintDevice_DestroyQOpenGLPaintDevice(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglpixeltransferoptions.cpp b/gui/qopenglpixeltransferoptions.cpp new file mode 100755 index 00000000..f277a481 --- /dev/null +++ b/gui/qopenglpixeltransferoptions.cpp @@ -0,0 +1,84 @@ +#include "qopenglpixeltransferoptions.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLPixelTransferOptions: public QOpenGLPixelTransferOptions { +public: +}; + +QtObjectPtr QOpenGLPixelTransferOptions_NewQOpenGLPixelTransferOptions(){ + return new QOpenGLPixelTransferOptions(); +} + +int QOpenGLPixelTransferOptions_Alignment(QtObjectPtr ptr){ + return static_cast(ptr)->alignment(); +} + +int QOpenGLPixelTransferOptions_ImageHeight(QtObjectPtr ptr){ + return static_cast(ptr)->imageHeight(); +} + +int QOpenGLPixelTransferOptions_IsLeastSignificantBitFirst(QtObjectPtr ptr){ + return static_cast(ptr)->isLeastSignificantBitFirst(); +} + +int QOpenGLPixelTransferOptions_IsSwapBytesEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isSwapBytesEnabled(); +} + +void QOpenGLPixelTransferOptions_SetAlignment(QtObjectPtr ptr, int alignment){ + static_cast(ptr)->setAlignment(alignment); +} + +void QOpenGLPixelTransferOptions_SetImageHeight(QtObjectPtr ptr, int imageHeight){ + static_cast(ptr)->setImageHeight(imageHeight); +} + +void QOpenGLPixelTransferOptions_SetSkipImages(QtObjectPtr ptr, int skipImages){ + static_cast(ptr)->setSkipImages(skipImages); +} + +void QOpenGLPixelTransferOptions_SetSkipPixels(QtObjectPtr ptr, int skipPixels){ + static_cast(ptr)->setSkipPixels(skipPixels); +} + +void QOpenGLPixelTransferOptions_SetSkipRows(QtObjectPtr ptr, int skipRows){ + static_cast(ptr)->setSkipRows(skipRows); +} + +int QOpenGLPixelTransferOptions_SkipImages(QtObjectPtr ptr){ + return static_cast(ptr)->skipImages(); +} + +int QOpenGLPixelTransferOptions_SkipPixels(QtObjectPtr ptr){ + return static_cast(ptr)->skipPixels(); +} + +int QOpenGLPixelTransferOptions_SkipRows(QtObjectPtr ptr){ + return static_cast(ptr)->skipRows(); +} + +int QOpenGLPixelTransferOptions_RowLength(QtObjectPtr ptr){ + return static_cast(ptr)->rowLength(); +} + +void QOpenGLPixelTransferOptions_SetLeastSignificantByteFirst(QtObjectPtr ptr, int lsbFirst){ + static_cast(ptr)->setLeastSignificantByteFirst(lsbFirst != 0); +} + +void QOpenGLPixelTransferOptions_SetRowLength(QtObjectPtr ptr, int rowLength){ + static_cast(ptr)->setRowLength(rowLength); +} + +void QOpenGLPixelTransferOptions_SetSwapBytesEnabled(QtObjectPtr ptr, int swapBytes){ + static_cast(ptr)->setSwapBytesEnabled(swapBytes != 0); +} + +void QOpenGLPixelTransferOptions_DestroyQOpenGLPixelTransferOptions(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLPixelTransferOptions(); +} + diff --git a/gui/qopenglpixeltransferoptions.go b/gui/qopenglpixeltransferoptions.go new file mode 100755 index 00000000..ac25b0e8 --- /dev/null +++ b/gui/qopenglpixeltransferoptions.go @@ -0,0 +1,155 @@ +package gui + +//#include "qopenglpixeltransferoptions.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QOpenGLPixelTransferOptions struct { + ptr unsafe.Pointer +} + +type QOpenGLPixelTransferOptionsITF interface { + QOpenGLPixelTransferOptionsPTR() *QOpenGLPixelTransferOptions +} + +func (p *QOpenGLPixelTransferOptions) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QOpenGLPixelTransferOptions) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQOpenGLPixelTransferOptions(ptr QOpenGLPixelTransferOptionsITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLPixelTransferOptionsPTR().Pointer() + } + return nil +} + +func QOpenGLPixelTransferOptionsFromPointer(ptr unsafe.Pointer) *QOpenGLPixelTransferOptions { + var n = new(QOpenGLPixelTransferOptions) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLPixelTransferOptions) QOpenGLPixelTransferOptionsPTR() *QOpenGLPixelTransferOptions { + return ptr +} + +func NewQOpenGLPixelTransferOptions() *QOpenGLPixelTransferOptions { + return QOpenGLPixelTransferOptionsFromPointer(unsafe.Pointer(C.QOpenGLPixelTransferOptions_NewQOpenGLPixelTransferOptions())) +} + +func (ptr *QOpenGLPixelTransferOptions) Alignment() int { + if ptr.Pointer() != nil { + return int(C.QOpenGLPixelTransferOptions_Alignment(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLPixelTransferOptions) ImageHeight() int { + if ptr.Pointer() != nil { + return int(C.QOpenGLPixelTransferOptions_ImageHeight(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLPixelTransferOptions) IsLeastSignificantBitFirst() bool { + if ptr.Pointer() != nil { + return C.QOpenGLPixelTransferOptions_IsLeastSignificantBitFirst(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLPixelTransferOptions) IsSwapBytesEnabled() bool { + if ptr.Pointer() != nil { + return C.QOpenGLPixelTransferOptions_IsSwapBytesEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLPixelTransferOptions) SetAlignment(alignment int) { + if ptr.Pointer() != nil { + C.QOpenGLPixelTransferOptions_SetAlignment(C.QtObjectPtr(ptr.Pointer()), C.int(alignment)) + } +} + +func (ptr *QOpenGLPixelTransferOptions) SetImageHeight(imageHeight int) { + if ptr.Pointer() != nil { + C.QOpenGLPixelTransferOptions_SetImageHeight(C.QtObjectPtr(ptr.Pointer()), C.int(imageHeight)) + } +} + +func (ptr *QOpenGLPixelTransferOptions) SetSkipImages(skipImages int) { + if ptr.Pointer() != nil { + C.QOpenGLPixelTransferOptions_SetSkipImages(C.QtObjectPtr(ptr.Pointer()), C.int(skipImages)) + } +} + +func (ptr *QOpenGLPixelTransferOptions) SetSkipPixels(skipPixels int) { + if ptr.Pointer() != nil { + C.QOpenGLPixelTransferOptions_SetSkipPixels(C.QtObjectPtr(ptr.Pointer()), C.int(skipPixels)) + } +} + +func (ptr *QOpenGLPixelTransferOptions) SetSkipRows(skipRows int) { + if ptr.Pointer() != nil { + C.QOpenGLPixelTransferOptions_SetSkipRows(C.QtObjectPtr(ptr.Pointer()), C.int(skipRows)) + } +} + +func (ptr *QOpenGLPixelTransferOptions) SkipImages() int { + if ptr.Pointer() != nil { + return int(C.QOpenGLPixelTransferOptions_SkipImages(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLPixelTransferOptions) SkipPixels() int { + if ptr.Pointer() != nil { + return int(C.QOpenGLPixelTransferOptions_SkipPixels(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLPixelTransferOptions) SkipRows() int { + if ptr.Pointer() != nil { + return int(C.QOpenGLPixelTransferOptions_SkipRows(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLPixelTransferOptions) RowLength() int { + if ptr.Pointer() != nil { + return int(C.QOpenGLPixelTransferOptions_RowLength(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLPixelTransferOptions) SetLeastSignificantByteFirst(lsbFirst bool) { + if ptr.Pointer() != nil { + C.QOpenGLPixelTransferOptions_SetLeastSignificantByteFirst(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(lsbFirst))) + } +} + +func (ptr *QOpenGLPixelTransferOptions) SetRowLength(rowLength int) { + if ptr.Pointer() != nil { + C.QOpenGLPixelTransferOptions_SetRowLength(C.QtObjectPtr(ptr.Pointer()), C.int(rowLength)) + } +} + +func (ptr *QOpenGLPixelTransferOptions) SetSwapBytesEnabled(swapBytes bool) { + if ptr.Pointer() != nil { + C.QOpenGLPixelTransferOptions_SetSwapBytesEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(swapBytes))) + } +} + +func (ptr *QOpenGLPixelTransferOptions) DestroyQOpenGLPixelTransferOptions() { + if ptr.Pointer() != nil { + C.QOpenGLPixelTransferOptions_DestroyQOpenGLPixelTransferOptions(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglpixeltransferoptions.h b/gui/qopenglpixeltransferoptions.h new file mode 100755 index 00000000..9f8e86a5 --- /dev/null +++ b/gui/qopenglpixeltransferoptions.h @@ -0,0 +1,27 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLPixelTransferOptions_NewQOpenGLPixelTransferOptions(); +int QOpenGLPixelTransferOptions_Alignment(QtObjectPtr ptr); +int QOpenGLPixelTransferOptions_ImageHeight(QtObjectPtr ptr); +int QOpenGLPixelTransferOptions_IsLeastSignificantBitFirst(QtObjectPtr ptr); +int QOpenGLPixelTransferOptions_IsSwapBytesEnabled(QtObjectPtr ptr); +void QOpenGLPixelTransferOptions_SetAlignment(QtObjectPtr ptr, int alignment); +void QOpenGLPixelTransferOptions_SetImageHeight(QtObjectPtr ptr, int imageHeight); +void QOpenGLPixelTransferOptions_SetSkipImages(QtObjectPtr ptr, int skipImages); +void QOpenGLPixelTransferOptions_SetSkipPixels(QtObjectPtr ptr, int skipPixels); +void QOpenGLPixelTransferOptions_SetSkipRows(QtObjectPtr ptr, int skipRows); +int QOpenGLPixelTransferOptions_SkipImages(QtObjectPtr ptr); +int QOpenGLPixelTransferOptions_SkipPixels(QtObjectPtr ptr); +int QOpenGLPixelTransferOptions_SkipRows(QtObjectPtr ptr); +int QOpenGLPixelTransferOptions_RowLength(QtObjectPtr ptr); +void QOpenGLPixelTransferOptions_SetLeastSignificantByteFirst(QtObjectPtr ptr, int lsbFirst); +void QOpenGLPixelTransferOptions_SetRowLength(QtObjectPtr ptr, int rowLength); +void QOpenGLPixelTransferOptions_SetSwapBytesEnabled(QtObjectPtr ptr, int swapBytes); +void QOpenGLPixelTransferOptions_DestroyQOpenGLPixelTransferOptions(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglshader.cpp b/gui/qopenglshader.cpp new file mode 100755 index 00000000..10fbad68 --- /dev/null +++ b/gui/qopenglshader.cpp @@ -0,0 +1,55 @@ +#include "qopenglshader.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLShader: public QOpenGLShader { +public: +}; + +QtObjectPtr QOpenGLShader_NewQOpenGLShader(int ty, QtObjectPtr parent){ + return new QOpenGLShader(static_cast(ty), static_cast(parent)); +} + +int QOpenGLShader_CompileSourceCode2(QtObjectPtr ptr, QtObjectPtr source){ + return static_cast(ptr)->compileSourceCode(*static_cast(source)); +} + +int QOpenGLShader_CompileSourceCode3(QtObjectPtr ptr, char* source){ + return static_cast(ptr)->compileSourceCode(QString(source)); +} + +int QOpenGLShader_CompileSourceCode(QtObjectPtr ptr, char* source){ + return static_cast(ptr)->compileSourceCode(const_cast(source)); +} + +int QOpenGLShader_CompileSourceFile(QtObjectPtr ptr, char* fileName){ + return static_cast(ptr)->compileSourceFile(QString(fileName)); +} + +int QOpenGLShader_QOpenGLShader_HasOpenGLShaders(int ty, QtObjectPtr context){ + return QOpenGLShader::hasOpenGLShaders(static_cast(ty), static_cast(context)); +} + +int QOpenGLShader_IsCompiled(QtObjectPtr ptr){ + return static_cast(ptr)->isCompiled(); +} + +char* QOpenGLShader_Log(QtObjectPtr ptr){ + return static_cast(ptr)->log().toUtf8().data(); +} + +int QOpenGLShader_ShaderType(QtObjectPtr ptr){ + return static_cast(ptr)->shaderType(); +} + +void QOpenGLShader_DestroyQOpenGLShader(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLShader(); +} + diff --git a/gui/qopenglshader.go b/gui/qopenglshader.go new file mode 100755 index 00000000..5171ecae --- /dev/null +++ b/gui/qopenglshader.go @@ -0,0 +1,114 @@ +package gui + +//#include "qopenglshader.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QOpenGLShader struct { + core.QObject +} + +type QOpenGLShaderITF interface { + core.QObjectITF + QOpenGLShaderPTR() *QOpenGLShader +} + +func PointerFromQOpenGLShader(ptr QOpenGLShaderITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLShaderPTR().Pointer() + } + return nil +} + +func QOpenGLShaderFromPointer(ptr unsafe.Pointer) *QOpenGLShader { + var n = new(QOpenGLShader) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QOpenGLShader_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QOpenGLShader) QOpenGLShaderPTR() *QOpenGLShader { + return ptr +} + +//QOpenGLShader::ShaderTypeBit +type QOpenGLShader__ShaderTypeBit int + +var ( + QOpenGLShader__Vertex = QOpenGLShader__ShaderTypeBit(0x0001) + QOpenGLShader__Fragment = QOpenGLShader__ShaderTypeBit(0x0002) + QOpenGLShader__Geometry = QOpenGLShader__ShaderTypeBit(0x0004) + QOpenGLShader__TessellationControl = QOpenGLShader__ShaderTypeBit(0x0008) + QOpenGLShader__TessellationEvaluation = QOpenGLShader__ShaderTypeBit(0x0010) + QOpenGLShader__Compute = QOpenGLShader__ShaderTypeBit(0x0020) +) + +func NewQOpenGLShader(ty QOpenGLShader__ShaderTypeBit, parent core.QObjectITF) *QOpenGLShader { + return QOpenGLShaderFromPointer(unsafe.Pointer(C.QOpenGLShader_NewQOpenGLShader(C.int(ty), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QOpenGLShader) CompileSourceCode2(source core.QByteArrayITF) bool { + if ptr.Pointer() != nil { + return C.QOpenGLShader_CompileSourceCode2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(source))) != 0 + } + return false +} + +func (ptr *QOpenGLShader) CompileSourceCode3(source string) bool { + if ptr.Pointer() != nil { + return C.QOpenGLShader_CompileSourceCode3(C.QtObjectPtr(ptr.Pointer()), C.CString(source)) != 0 + } + return false +} + +func (ptr *QOpenGLShader) CompileSourceCode(source string) bool { + if ptr.Pointer() != nil { + return C.QOpenGLShader_CompileSourceCode(C.QtObjectPtr(ptr.Pointer()), C.CString(source)) != 0 + } + return false +} + +func (ptr *QOpenGLShader) CompileSourceFile(fileName string) bool { + if ptr.Pointer() != nil { + return C.QOpenGLShader_CompileSourceFile(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName)) != 0 + } + return false +} + +func QOpenGLShader_HasOpenGLShaders(ty QOpenGLShader__ShaderTypeBit, context QOpenGLContextITF) bool { + return C.QOpenGLShader_QOpenGLShader_HasOpenGLShaders(C.int(ty), C.QtObjectPtr(PointerFromQOpenGLContext(context))) != 0 +} + +func (ptr *QOpenGLShader) IsCompiled() bool { + if ptr.Pointer() != nil { + return C.QOpenGLShader_IsCompiled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLShader) Log() string { + if ptr.Pointer() != nil { + return C.GoString(C.QOpenGLShader_Log(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QOpenGLShader) ShaderType() QOpenGLShader__ShaderTypeBit { + if ptr.Pointer() != nil { + return QOpenGLShader__ShaderTypeBit(C.QOpenGLShader_ShaderType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLShader) DestroyQOpenGLShader() { + if ptr.Pointer() != nil { + C.QOpenGLShader_DestroyQOpenGLShader(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/gui/qopenglshader.h b/gui/qopenglshader.h new file mode 100755 index 00000000..e4521762 --- /dev/null +++ b/gui/qopenglshader.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLShader_NewQOpenGLShader(int ty, QtObjectPtr parent); +int QOpenGLShader_CompileSourceCode2(QtObjectPtr ptr, QtObjectPtr source); +int QOpenGLShader_CompileSourceCode3(QtObjectPtr ptr, char* source); +int QOpenGLShader_CompileSourceCode(QtObjectPtr ptr, char* source); +int QOpenGLShader_CompileSourceFile(QtObjectPtr ptr, char* fileName); +int QOpenGLShader_QOpenGLShader_HasOpenGLShaders(int ty, QtObjectPtr context); +int QOpenGLShader_IsCompiled(QtObjectPtr ptr); +char* QOpenGLShader_Log(QtObjectPtr ptr); +int QOpenGLShader_ShaderType(QtObjectPtr ptr); +void QOpenGLShader_DestroyQOpenGLShader(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglshaderprogram.cpp b/gui/qopenglshaderprogram.cpp new file mode 100755 index 00000000..50f5b3b3 --- /dev/null +++ b/gui/qopenglshaderprogram.cpp @@ -0,0 +1,323 @@ +#include "qopenglshaderprogram.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLShaderProgram: public QOpenGLShaderProgram { +public: +}; + +QtObjectPtr QOpenGLShaderProgram_NewQOpenGLShaderProgram(QtObjectPtr parent){ + return new QOpenGLShaderProgram(static_cast(parent)); +} + +int QOpenGLShaderProgram_AddShader(QtObjectPtr ptr, QtObjectPtr shader){ + return static_cast(ptr)->addShader(static_cast(shader)); +} + +int QOpenGLShaderProgram_AddShaderFromSourceCode2(QtObjectPtr ptr, int ty, QtObjectPtr source){ + return static_cast(ptr)->addShaderFromSourceCode(static_cast(ty), *static_cast(source)); +} + +int QOpenGLShaderProgram_AddShaderFromSourceCode3(QtObjectPtr ptr, int ty, char* source){ + return static_cast(ptr)->addShaderFromSourceCode(static_cast(ty), QString(source)); +} + +int QOpenGLShaderProgram_AddShaderFromSourceCode(QtObjectPtr ptr, int ty, char* source){ + return static_cast(ptr)->addShaderFromSourceCode(static_cast(ty), const_cast(source)); +} + +int QOpenGLShaderProgram_AddShaderFromSourceFile(QtObjectPtr ptr, int ty, char* fileName){ + return static_cast(ptr)->addShaderFromSourceFile(static_cast(ty), QString(fileName)); +} + +int QOpenGLShaderProgram_AttributeLocation2(QtObjectPtr ptr, QtObjectPtr name){ + return static_cast(ptr)->attributeLocation(*static_cast(name)); +} + +int QOpenGLShaderProgram_AttributeLocation3(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->attributeLocation(QString(name)); +} + +int QOpenGLShaderProgram_AttributeLocation(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->attributeLocation(const_cast(name)); +} + +int QOpenGLShaderProgram_Bind(QtObjectPtr ptr){ + return static_cast(ptr)->bind(); +} + +void QOpenGLShaderProgram_BindAttributeLocation2(QtObjectPtr ptr, QtObjectPtr name, int location){ + static_cast(ptr)->bindAttributeLocation(*static_cast(name), location); +} + +void QOpenGLShaderProgram_BindAttributeLocation3(QtObjectPtr ptr, char* name, int location){ + static_cast(ptr)->bindAttributeLocation(QString(name), location); +} + +void QOpenGLShaderProgram_BindAttributeLocation(QtObjectPtr ptr, char* name, int location){ + static_cast(ptr)->bindAttributeLocation(const_cast(name), location); +} + +int QOpenGLShaderProgram_Create(QtObjectPtr ptr){ + return static_cast(ptr)->create(); +} + +void QOpenGLShaderProgram_DisableAttributeArray2(QtObjectPtr ptr, char* name){ + static_cast(ptr)->disableAttributeArray(const_cast(name)); +} + +void QOpenGLShaderProgram_DisableAttributeArray(QtObjectPtr ptr, int location){ + static_cast(ptr)->disableAttributeArray(location); +} + +void QOpenGLShaderProgram_EnableAttributeArray2(QtObjectPtr ptr, char* name){ + static_cast(ptr)->enableAttributeArray(const_cast(name)); +} + +void QOpenGLShaderProgram_EnableAttributeArray(QtObjectPtr ptr, int location){ + static_cast(ptr)->enableAttributeArray(location); +} + +int QOpenGLShaderProgram_QOpenGLShaderProgram_HasOpenGLShaderPrograms(QtObjectPtr context){ + return QOpenGLShaderProgram::hasOpenGLShaderPrograms(static_cast(context)); +} + +int QOpenGLShaderProgram_IsLinked(QtObjectPtr ptr){ + return static_cast(ptr)->isLinked(); +} + +int QOpenGLShaderProgram_Link(QtObjectPtr ptr){ + return static_cast(ptr)->link(); +} + +char* QOpenGLShaderProgram_Log(QtObjectPtr ptr){ + return static_cast(ptr)->log().toUtf8().data(); +} + +int QOpenGLShaderProgram_MaxGeometryOutputVertices(QtObjectPtr ptr){ + return static_cast(ptr)->maxGeometryOutputVertices(); +} + +int QOpenGLShaderProgram_PatchVertexCount(QtObjectPtr ptr){ + return static_cast(ptr)->patchVertexCount(); +} + +void QOpenGLShaderProgram_Release(QtObjectPtr ptr){ + static_cast(ptr)->release(); +} + +void QOpenGLShaderProgram_RemoveAllShaders(QtObjectPtr ptr){ + static_cast(ptr)->removeAllShaders(); +} + +void QOpenGLShaderProgram_RemoveShader(QtObjectPtr ptr, QtObjectPtr shader){ + static_cast(ptr)->removeShader(static_cast(shader)); +} + +void QOpenGLShaderProgram_SetAttributeArray7(QtObjectPtr ptr, char* name, QtObjectPtr values, int stride){ + static_cast(ptr)->setAttributeArray(const_cast(name), static_cast(values), stride); +} + +void QOpenGLShaderProgram_SetAttributeArray8(QtObjectPtr ptr, char* name, QtObjectPtr values, int stride){ + static_cast(ptr)->setAttributeArray(const_cast(name), static_cast(values), stride); +} + +void QOpenGLShaderProgram_SetAttributeArray9(QtObjectPtr ptr, char* name, QtObjectPtr values, int stride){ + static_cast(ptr)->setAttributeArray(const_cast(name), static_cast(values), stride); +} + +void QOpenGLShaderProgram_SetAttributeArray2(QtObjectPtr ptr, int location, QtObjectPtr values, int stride){ + static_cast(ptr)->setAttributeArray(location, static_cast(values), stride); +} + +void QOpenGLShaderProgram_SetAttributeArray3(QtObjectPtr ptr, int location, QtObjectPtr values, int stride){ + static_cast(ptr)->setAttributeArray(location, static_cast(values), stride); +} + +void QOpenGLShaderProgram_SetAttributeArray4(QtObjectPtr ptr, int location, QtObjectPtr values, int stride){ + static_cast(ptr)->setAttributeArray(location, static_cast(values), stride); +} + +void QOpenGLShaderProgram_SetAttributeValue17(QtObjectPtr ptr, char* name, QtObjectPtr value){ + static_cast(ptr)->setAttributeValue(const_cast(name), *static_cast(value)); +} + +void QOpenGLShaderProgram_SetAttributeValue14(QtObjectPtr ptr, char* name, QtObjectPtr value){ + static_cast(ptr)->setAttributeValue(const_cast(name), *static_cast(value)); +} + +void QOpenGLShaderProgram_SetAttributeValue15(QtObjectPtr ptr, char* name, QtObjectPtr value){ + static_cast(ptr)->setAttributeValue(const_cast(name), *static_cast(value)); +} + +void QOpenGLShaderProgram_SetAttributeValue16(QtObjectPtr ptr, char* name, QtObjectPtr value){ + static_cast(ptr)->setAttributeValue(const_cast(name), *static_cast(value)); +} + +void QOpenGLShaderProgram_SetAttributeValue8(QtObjectPtr ptr, int location, QtObjectPtr value){ + static_cast(ptr)->setAttributeValue(location, *static_cast(value)); +} + +void QOpenGLShaderProgram_SetAttributeValue5(QtObjectPtr ptr, int location, QtObjectPtr value){ + static_cast(ptr)->setAttributeValue(location, *static_cast(value)); +} + +void QOpenGLShaderProgram_SetAttributeValue6(QtObjectPtr ptr, int location, QtObjectPtr value){ + static_cast(ptr)->setAttributeValue(location, *static_cast(value)); +} + +void QOpenGLShaderProgram_SetAttributeValue7(QtObjectPtr ptr, int location, QtObjectPtr value){ + static_cast(ptr)->setAttributeValue(location, *static_cast(value)); +} + +void QOpenGLShaderProgram_SetPatchVertexCount(QtObjectPtr ptr, int count){ + static_cast(ptr)->setPatchVertexCount(count); +} + +void QOpenGLShaderProgram_SetUniformValue34(QtObjectPtr ptr, char* name, QtObjectPtr color){ + static_cast(ptr)->setUniformValue(const_cast(name), *static_cast(color)); +} + +void QOpenGLShaderProgram_SetUniformValue47(QtObjectPtr ptr, char* name, QtObjectPtr value){ + static_cast(ptr)->setUniformValue(const_cast(name), *static_cast(value)); +} + +void QOpenGLShaderProgram_SetUniformValue35(QtObjectPtr ptr, char* name, QtObjectPtr point){ + static_cast(ptr)->setUniformValue(const_cast(name), *static_cast(point)); +} + +void QOpenGLShaderProgram_SetUniformValue36(QtObjectPtr ptr, char* name, QtObjectPtr point){ + static_cast(ptr)->setUniformValue(const_cast(name), *static_cast(point)); +} + +void QOpenGLShaderProgram_SetUniformValue37(QtObjectPtr ptr, char* name, QtObjectPtr size){ + static_cast(ptr)->setUniformValue(const_cast(name), *static_cast(size)); +} + +void QOpenGLShaderProgram_SetUniformValue38(QtObjectPtr ptr, char* name, QtObjectPtr size){ + static_cast(ptr)->setUniformValue(const_cast(name), *static_cast(size)); +} + +void QOpenGLShaderProgram_SetUniformValue54(QtObjectPtr ptr, char* name, QtObjectPtr value){ + static_cast(ptr)->setUniformValue(const_cast(name), *static_cast(value)); +} + +void QOpenGLShaderProgram_SetUniformValue31(QtObjectPtr ptr, char* name, QtObjectPtr value){ + static_cast(ptr)->setUniformValue(const_cast(name), *static_cast(value)); +} + +void QOpenGLShaderProgram_SetUniformValue32(QtObjectPtr ptr, char* name, QtObjectPtr value){ + static_cast(ptr)->setUniformValue(const_cast(name), *static_cast(value)); +} + +void QOpenGLShaderProgram_SetUniformValue33(QtObjectPtr ptr, char* name, QtObjectPtr value){ + static_cast(ptr)->setUniformValue(const_cast(name), *static_cast(value)); +} + +void QOpenGLShaderProgram_SetUniformValue10(QtObjectPtr ptr, int location, QtObjectPtr color){ + static_cast(ptr)->setUniformValue(location, *static_cast(color)); +} + +void QOpenGLShaderProgram_SetUniformValue23(QtObjectPtr ptr, int location, QtObjectPtr value){ + static_cast(ptr)->setUniformValue(location, *static_cast(value)); +} + +void QOpenGLShaderProgram_SetUniformValue11(QtObjectPtr ptr, int location, QtObjectPtr point){ + static_cast(ptr)->setUniformValue(location, *static_cast(point)); +} + +void QOpenGLShaderProgram_SetUniformValue12(QtObjectPtr ptr, int location, QtObjectPtr point){ + static_cast(ptr)->setUniformValue(location, *static_cast(point)); +} + +void QOpenGLShaderProgram_SetUniformValue13(QtObjectPtr ptr, int location, QtObjectPtr size){ + static_cast(ptr)->setUniformValue(location, *static_cast(size)); +} + +void QOpenGLShaderProgram_SetUniformValue14(QtObjectPtr ptr, int location, QtObjectPtr size){ + static_cast(ptr)->setUniformValue(location, *static_cast(size)); +} + +void QOpenGLShaderProgram_SetUniformValue24(QtObjectPtr ptr, int location, QtObjectPtr value){ + static_cast(ptr)->setUniformValue(location, *static_cast(value)); +} + +void QOpenGLShaderProgram_SetUniformValue7(QtObjectPtr ptr, int location, QtObjectPtr value){ + static_cast(ptr)->setUniformValue(location, *static_cast(value)); +} + +void QOpenGLShaderProgram_SetUniformValue8(QtObjectPtr ptr, int location, QtObjectPtr value){ + static_cast(ptr)->setUniformValue(location, *static_cast(value)); +} + +void QOpenGLShaderProgram_SetUniformValue9(QtObjectPtr ptr, int location, QtObjectPtr value){ + static_cast(ptr)->setUniformValue(location, *static_cast(value)); +} + +void QOpenGLShaderProgram_SetUniformValueArray30(QtObjectPtr ptr, char* name, QtObjectPtr values, int count){ + static_cast(ptr)->setUniformValueArray(const_cast(name), static_cast(values), count); +} + +void QOpenGLShaderProgram_SetUniformValueArray19(QtObjectPtr ptr, char* name, QtObjectPtr values, int count){ + static_cast(ptr)->setUniformValueArray(const_cast(name), static_cast(values), count); +} + +void QOpenGLShaderProgram_SetUniformValueArray20(QtObjectPtr ptr, char* name, QtObjectPtr values, int count){ + static_cast(ptr)->setUniformValueArray(const_cast(name), static_cast(values), count); +} + +void QOpenGLShaderProgram_SetUniformValueArray21(QtObjectPtr ptr, char* name, QtObjectPtr values, int count){ + static_cast(ptr)->setUniformValueArray(const_cast(name), static_cast(values), count); +} + +void QOpenGLShaderProgram_SetUniformValueArray15(QtObjectPtr ptr, int location, QtObjectPtr values, int count){ + static_cast(ptr)->setUniformValueArray(location, static_cast(values), count); +} + +void QOpenGLShaderProgram_SetUniformValueArray4(QtObjectPtr ptr, int location, QtObjectPtr values, int count){ + static_cast(ptr)->setUniformValueArray(location, static_cast(values), count); +} + +void QOpenGLShaderProgram_SetUniformValueArray5(QtObjectPtr ptr, int location, QtObjectPtr values, int count){ + static_cast(ptr)->setUniformValueArray(location, static_cast(values), count); +} + +void QOpenGLShaderProgram_SetUniformValueArray6(QtObjectPtr ptr, int location, QtObjectPtr values, int count){ + static_cast(ptr)->setUniformValueArray(location, static_cast(values), count); +} + +int QOpenGLShaderProgram_UniformLocation2(QtObjectPtr ptr, QtObjectPtr name){ + return static_cast(ptr)->uniformLocation(*static_cast(name)); +} + +int QOpenGLShaderProgram_UniformLocation3(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->uniformLocation(QString(name)); +} + +int QOpenGLShaderProgram_UniformLocation(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->uniformLocation(const_cast(name)); +} + +void QOpenGLShaderProgram_DestroyQOpenGLShaderProgram(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLShaderProgram(); +} + diff --git a/gui/qopenglshaderprogram.go b/gui/qopenglshaderprogram.go new file mode 100755 index 00000000..3e98d8a1 --- /dev/null +++ b/gui/qopenglshaderprogram.go @@ -0,0 +1,497 @@ +package gui + +//#include "qopenglshaderprogram.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QOpenGLShaderProgram struct { + core.QObject +} + +type QOpenGLShaderProgramITF interface { + core.QObjectITF + QOpenGLShaderProgramPTR() *QOpenGLShaderProgram +} + +func PointerFromQOpenGLShaderProgram(ptr QOpenGLShaderProgramITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLShaderProgramPTR().Pointer() + } + return nil +} + +func QOpenGLShaderProgramFromPointer(ptr unsafe.Pointer) *QOpenGLShaderProgram { + var n = new(QOpenGLShaderProgram) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QOpenGLShaderProgram_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QOpenGLShaderProgram) QOpenGLShaderProgramPTR() *QOpenGLShaderProgram { + return ptr +} + +func NewQOpenGLShaderProgram(parent core.QObjectITF) *QOpenGLShaderProgram { + return QOpenGLShaderProgramFromPointer(unsafe.Pointer(C.QOpenGLShaderProgram_NewQOpenGLShaderProgram(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QOpenGLShaderProgram) AddShader(shader QOpenGLShaderITF) bool { + if ptr.Pointer() != nil { + return C.QOpenGLShaderProgram_AddShader(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQOpenGLShader(shader))) != 0 + } + return false +} + +func (ptr *QOpenGLShaderProgram) AddShaderFromSourceCode2(ty QOpenGLShader__ShaderTypeBit, source core.QByteArrayITF) bool { + if ptr.Pointer() != nil { + return C.QOpenGLShaderProgram_AddShaderFromSourceCode2(C.QtObjectPtr(ptr.Pointer()), C.int(ty), C.QtObjectPtr(core.PointerFromQByteArray(source))) != 0 + } + return false +} + +func (ptr *QOpenGLShaderProgram) AddShaderFromSourceCode3(ty QOpenGLShader__ShaderTypeBit, source string) bool { + if ptr.Pointer() != nil { + return C.QOpenGLShaderProgram_AddShaderFromSourceCode3(C.QtObjectPtr(ptr.Pointer()), C.int(ty), C.CString(source)) != 0 + } + return false +} + +func (ptr *QOpenGLShaderProgram) AddShaderFromSourceCode(ty QOpenGLShader__ShaderTypeBit, source string) bool { + if ptr.Pointer() != nil { + return C.QOpenGLShaderProgram_AddShaderFromSourceCode(C.QtObjectPtr(ptr.Pointer()), C.int(ty), C.CString(source)) != 0 + } + return false +} + +func (ptr *QOpenGLShaderProgram) AddShaderFromSourceFile(ty QOpenGLShader__ShaderTypeBit, fileName string) bool { + if ptr.Pointer() != nil { + return C.QOpenGLShaderProgram_AddShaderFromSourceFile(C.QtObjectPtr(ptr.Pointer()), C.int(ty), C.CString(fileName)) != 0 + } + return false +} + +func (ptr *QOpenGLShaderProgram) AttributeLocation2(name core.QByteArrayITF) int { + if ptr.Pointer() != nil { + return int(C.QOpenGLShaderProgram_AttributeLocation2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(name)))) + } + return 0 +} + +func (ptr *QOpenGLShaderProgram) AttributeLocation3(name string) int { + if ptr.Pointer() != nil { + return int(C.QOpenGLShaderProgram_AttributeLocation3(C.QtObjectPtr(ptr.Pointer()), C.CString(name))) + } + return 0 +} + +func (ptr *QOpenGLShaderProgram) AttributeLocation(name string) int { + if ptr.Pointer() != nil { + return int(C.QOpenGLShaderProgram_AttributeLocation(C.QtObjectPtr(ptr.Pointer()), C.CString(name))) + } + return 0 +} + +func (ptr *QOpenGLShaderProgram) Bind() bool { + if ptr.Pointer() != nil { + return C.QOpenGLShaderProgram_Bind(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLShaderProgram) BindAttributeLocation2(name core.QByteArrayITF, location int) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_BindAttributeLocation2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(name)), C.int(location)) + } +} + +func (ptr *QOpenGLShaderProgram) BindAttributeLocation3(name string, location int) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_BindAttributeLocation3(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.int(location)) + } +} + +func (ptr *QOpenGLShaderProgram) BindAttributeLocation(name string, location int) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_BindAttributeLocation(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.int(location)) + } +} + +func (ptr *QOpenGLShaderProgram) Create() bool { + if ptr.Pointer() != nil { + return C.QOpenGLShaderProgram_Create(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLShaderProgram) DisableAttributeArray2(name string) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_DisableAttributeArray2(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func (ptr *QOpenGLShaderProgram) DisableAttributeArray(location int) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_DisableAttributeArray(C.QtObjectPtr(ptr.Pointer()), C.int(location)) + } +} + +func (ptr *QOpenGLShaderProgram) EnableAttributeArray2(name string) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_EnableAttributeArray2(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func (ptr *QOpenGLShaderProgram) EnableAttributeArray(location int) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_EnableAttributeArray(C.QtObjectPtr(ptr.Pointer()), C.int(location)) + } +} + +func QOpenGLShaderProgram_HasOpenGLShaderPrograms(context QOpenGLContextITF) bool { + return C.QOpenGLShaderProgram_QOpenGLShaderProgram_HasOpenGLShaderPrograms(C.QtObjectPtr(PointerFromQOpenGLContext(context))) != 0 +} + +func (ptr *QOpenGLShaderProgram) IsLinked() bool { + if ptr.Pointer() != nil { + return C.QOpenGLShaderProgram_IsLinked(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLShaderProgram) Link() bool { + if ptr.Pointer() != nil { + return C.QOpenGLShaderProgram_Link(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLShaderProgram) Log() string { + if ptr.Pointer() != nil { + return C.GoString(C.QOpenGLShaderProgram_Log(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QOpenGLShaderProgram) MaxGeometryOutputVertices() int { + if ptr.Pointer() != nil { + return int(C.QOpenGLShaderProgram_MaxGeometryOutputVertices(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLShaderProgram) PatchVertexCount() int { + if ptr.Pointer() != nil { + return int(C.QOpenGLShaderProgram_PatchVertexCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLShaderProgram) Release() { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_Release(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLShaderProgram) RemoveAllShaders() { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_RemoveAllShaders(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLShaderProgram) RemoveShader(shader QOpenGLShaderITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_RemoveShader(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQOpenGLShader(shader))) + } +} + +func (ptr *QOpenGLShaderProgram) SetAttributeArray7(name string, values QVector2DITF, stride int) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetAttributeArray7(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.QtObjectPtr(PointerFromQVector2D(values)), C.int(stride)) + } +} + +func (ptr *QOpenGLShaderProgram) SetAttributeArray8(name string, values QVector3DITF, stride int) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetAttributeArray8(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.QtObjectPtr(PointerFromQVector3D(values)), C.int(stride)) + } +} + +func (ptr *QOpenGLShaderProgram) SetAttributeArray9(name string, values QVector4DITF, stride int) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetAttributeArray9(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.QtObjectPtr(PointerFromQVector4D(values)), C.int(stride)) + } +} + +func (ptr *QOpenGLShaderProgram) SetAttributeArray2(location int, values QVector2DITF, stride int) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetAttributeArray2(C.QtObjectPtr(ptr.Pointer()), C.int(location), C.QtObjectPtr(PointerFromQVector2D(values)), C.int(stride)) + } +} + +func (ptr *QOpenGLShaderProgram) SetAttributeArray3(location int, values QVector3DITF, stride int) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetAttributeArray3(C.QtObjectPtr(ptr.Pointer()), C.int(location), C.QtObjectPtr(PointerFromQVector3D(values)), C.int(stride)) + } +} + +func (ptr *QOpenGLShaderProgram) SetAttributeArray4(location int, values QVector4DITF, stride int) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetAttributeArray4(C.QtObjectPtr(ptr.Pointer()), C.int(location), C.QtObjectPtr(PointerFromQVector4D(values)), C.int(stride)) + } +} + +func (ptr *QOpenGLShaderProgram) SetAttributeValue17(name string, value QColorITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetAttributeValue17(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.QtObjectPtr(PointerFromQColor(value))) + } +} + +func (ptr *QOpenGLShaderProgram) SetAttributeValue14(name string, value QVector2DITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetAttributeValue14(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.QtObjectPtr(PointerFromQVector2D(value))) + } +} + +func (ptr *QOpenGLShaderProgram) SetAttributeValue15(name string, value QVector3DITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetAttributeValue15(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.QtObjectPtr(PointerFromQVector3D(value))) + } +} + +func (ptr *QOpenGLShaderProgram) SetAttributeValue16(name string, value QVector4DITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetAttributeValue16(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.QtObjectPtr(PointerFromQVector4D(value))) + } +} + +func (ptr *QOpenGLShaderProgram) SetAttributeValue8(location int, value QColorITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetAttributeValue8(C.QtObjectPtr(ptr.Pointer()), C.int(location), C.QtObjectPtr(PointerFromQColor(value))) + } +} + +func (ptr *QOpenGLShaderProgram) SetAttributeValue5(location int, value QVector2DITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetAttributeValue5(C.QtObjectPtr(ptr.Pointer()), C.int(location), C.QtObjectPtr(PointerFromQVector2D(value))) + } +} + +func (ptr *QOpenGLShaderProgram) SetAttributeValue6(location int, value QVector3DITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetAttributeValue6(C.QtObjectPtr(ptr.Pointer()), C.int(location), C.QtObjectPtr(PointerFromQVector3D(value))) + } +} + +func (ptr *QOpenGLShaderProgram) SetAttributeValue7(location int, value QVector4DITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetAttributeValue7(C.QtObjectPtr(ptr.Pointer()), C.int(location), C.QtObjectPtr(PointerFromQVector4D(value))) + } +} + +func (ptr *QOpenGLShaderProgram) SetPatchVertexCount(count int) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetPatchVertexCount(C.QtObjectPtr(ptr.Pointer()), C.int(count)) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValue34(name string, color QColorITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValue34(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.QtObjectPtr(PointerFromQColor(color))) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValue47(name string, value QMatrix4x4ITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValue47(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.QtObjectPtr(PointerFromQMatrix4x4(value))) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValue35(name string, point core.QPointITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValue35(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.QtObjectPtr(core.PointerFromQPoint(point))) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValue36(name string, point core.QPointFITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValue36(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.QtObjectPtr(core.PointerFromQPointF(point))) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValue37(name string, size core.QSizeITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValue37(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.QtObjectPtr(core.PointerFromQSize(size))) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValue38(name string, size core.QSizeFITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValue38(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.QtObjectPtr(core.PointerFromQSizeF(size))) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValue54(name string, value QTransformITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValue54(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.QtObjectPtr(PointerFromQTransform(value))) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValue31(name string, value QVector2DITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValue31(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.QtObjectPtr(PointerFromQVector2D(value))) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValue32(name string, value QVector3DITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValue32(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.QtObjectPtr(PointerFromQVector3D(value))) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValue33(name string, value QVector4DITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValue33(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.QtObjectPtr(PointerFromQVector4D(value))) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValue10(location int, color QColorITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValue10(C.QtObjectPtr(ptr.Pointer()), C.int(location), C.QtObjectPtr(PointerFromQColor(color))) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValue23(location int, value QMatrix4x4ITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValue23(C.QtObjectPtr(ptr.Pointer()), C.int(location), C.QtObjectPtr(PointerFromQMatrix4x4(value))) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValue11(location int, point core.QPointITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValue11(C.QtObjectPtr(ptr.Pointer()), C.int(location), C.QtObjectPtr(core.PointerFromQPoint(point))) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValue12(location int, point core.QPointFITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValue12(C.QtObjectPtr(ptr.Pointer()), C.int(location), C.QtObjectPtr(core.PointerFromQPointF(point))) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValue13(location int, size core.QSizeITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValue13(C.QtObjectPtr(ptr.Pointer()), C.int(location), C.QtObjectPtr(core.PointerFromQSize(size))) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValue14(location int, size core.QSizeFITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValue14(C.QtObjectPtr(ptr.Pointer()), C.int(location), C.QtObjectPtr(core.PointerFromQSizeF(size))) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValue24(location int, value QTransformITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValue24(C.QtObjectPtr(ptr.Pointer()), C.int(location), C.QtObjectPtr(PointerFromQTransform(value))) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValue7(location int, value QVector2DITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValue7(C.QtObjectPtr(ptr.Pointer()), C.int(location), C.QtObjectPtr(PointerFromQVector2D(value))) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValue8(location int, value QVector3DITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValue8(C.QtObjectPtr(ptr.Pointer()), C.int(location), C.QtObjectPtr(PointerFromQVector3D(value))) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValue9(location int, value QVector4DITF) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValue9(C.QtObjectPtr(ptr.Pointer()), C.int(location), C.QtObjectPtr(PointerFromQVector4D(value))) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValueArray30(name string, values QMatrix4x4ITF, count int) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValueArray30(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.QtObjectPtr(PointerFromQMatrix4x4(values)), C.int(count)) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValueArray19(name string, values QVector2DITF, count int) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValueArray19(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.QtObjectPtr(PointerFromQVector2D(values)), C.int(count)) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValueArray20(name string, values QVector3DITF, count int) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValueArray20(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.QtObjectPtr(PointerFromQVector3D(values)), C.int(count)) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValueArray21(name string, values QVector4DITF, count int) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValueArray21(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.QtObjectPtr(PointerFromQVector4D(values)), C.int(count)) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValueArray15(location int, values QMatrix4x4ITF, count int) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValueArray15(C.QtObjectPtr(ptr.Pointer()), C.int(location), C.QtObjectPtr(PointerFromQMatrix4x4(values)), C.int(count)) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValueArray4(location int, values QVector2DITF, count int) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValueArray4(C.QtObjectPtr(ptr.Pointer()), C.int(location), C.QtObjectPtr(PointerFromQVector2D(values)), C.int(count)) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValueArray5(location int, values QVector3DITF, count int) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValueArray5(C.QtObjectPtr(ptr.Pointer()), C.int(location), C.QtObjectPtr(PointerFromQVector3D(values)), C.int(count)) + } +} + +func (ptr *QOpenGLShaderProgram) SetUniformValueArray6(location int, values QVector4DITF, count int) { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_SetUniformValueArray6(C.QtObjectPtr(ptr.Pointer()), C.int(location), C.QtObjectPtr(PointerFromQVector4D(values)), C.int(count)) + } +} + +func (ptr *QOpenGLShaderProgram) UniformLocation2(name core.QByteArrayITF) int { + if ptr.Pointer() != nil { + return int(C.QOpenGLShaderProgram_UniformLocation2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(name)))) + } + return 0 +} + +func (ptr *QOpenGLShaderProgram) UniformLocation3(name string) int { + if ptr.Pointer() != nil { + return int(C.QOpenGLShaderProgram_UniformLocation3(C.QtObjectPtr(ptr.Pointer()), C.CString(name))) + } + return 0 +} + +func (ptr *QOpenGLShaderProgram) UniformLocation(name string) int { + if ptr.Pointer() != nil { + return int(C.QOpenGLShaderProgram_UniformLocation(C.QtObjectPtr(ptr.Pointer()), C.CString(name))) + } + return 0 +} + +func (ptr *QOpenGLShaderProgram) DestroyQOpenGLShaderProgram() { + if ptr.Pointer() != nil { + C.QOpenGLShaderProgram_DestroyQOpenGLShaderProgram(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/gui/qopenglshaderprogram.h b/gui/qopenglshaderprogram.h new file mode 100755 index 00000000..67faeb33 --- /dev/null +++ b/gui/qopenglshaderprogram.h @@ -0,0 +1,83 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLShaderProgram_NewQOpenGLShaderProgram(QtObjectPtr parent); +int QOpenGLShaderProgram_AddShader(QtObjectPtr ptr, QtObjectPtr shader); +int QOpenGLShaderProgram_AddShaderFromSourceCode2(QtObjectPtr ptr, int ty, QtObjectPtr source); +int QOpenGLShaderProgram_AddShaderFromSourceCode3(QtObjectPtr ptr, int ty, char* source); +int QOpenGLShaderProgram_AddShaderFromSourceCode(QtObjectPtr ptr, int ty, char* source); +int QOpenGLShaderProgram_AddShaderFromSourceFile(QtObjectPtr ptr, int ty, char* fileName); +int QOpenGLShaderProgram_AttributeLocation2(QtObjectPtr ptr, QtObjectPtr name); +int QOpenGLShaderProgram_AttributeLocation3(QtObjectPtr ptr, char* name); +int QOpenGLShaderProgram_AttributeLocation(QtObjectPtr ptr, char* name); +int QOpenGLShaderProgram_Bind(QtObjectPtr ptr); +void QOpenGLShaderProgram_BindAttributeLocation2(QtObjectPtr ptr, QtObjectPtr name, int location); +void QOpenGLShaderProgram_BindAttributeLocation3(QtObjectPtr ptr, char* name, int location); +void QOpenGLShaderProgram_BindAttributeLocation(QtObjectPtr ptr, char* name, int location); +int QOpenGLShaderProgram_Create(QtObjectPtr ptr); +void QOpenGLShaderProgram_DisableAttributeArray2(QtObjectPtr ptr, char* name); +void QOpenGLShaderProgram_DisableAttributeArray(QtObjectPtr ptr, int location); +void QOpenGLShaderProgram_EnableAttributeArray2(QtObjectPtr ptr, char* name); +void QOpenGLShaderProgram_EnableAttributeArray(QtObjectPtr ptr, int location); +int QOpenGLShaderProgram_QOpenGLShaderProgram_HasOpenGLShaderPrograms(QtObjectPtr context); +int QOpenGLShaderProgram_IsLinked(QtObjectPtr ptr); +int QOpenGLShaderProgram_Link(QtObjectPtr ptr); +char* QOpenGLShaderProgram_Log(QtObjectPtr ptr); +int QOpenGLShaderProgram_MaxGeometryOutputVertices(QtObjectPtr ptr); +int QOpenGLShaderProgram_PatchVertexCount(QtObjectPtr ptr); +void QOpenGLShaderProgram_Release(QtObjectPtr ptr); +void QOpenGLShaderProgram_RemoveAllShaders(QtObjectPtr ptr); +void QOpenGLShaderProgram_RemoveShader(QtObjectPtr ptr, QtObjectPtr shader); +void QOpenGLShaderProgram_SetAttributeArray7(QtObjectPtr ptr, char* name, QtObjectPtr values, int stride); +void QOpenGLShaderProgram_SetAttributeArray8(QtObjectPtr ptr, char* name, QtObjectPtr values, int stride); +void QOpenGLShaderProgram_SetAttributeArray9(QtObjectPtr ptr, char* name, QtObjectPtr values, int stride); +void QOpenGLShaderProgram_SetAttributeArray2(QtObjectPtr ptr, int location, QtObjectPtr values, int stride); +void QOpenGLShaderProgram_SetAttributeArray3(QtObjectPtr ptr, int location, QtObjectPtr values, int stride); +void QOpenGLShaderProgram_SetAttributeArray4(QtObjectPtr ptr, int location, QtObjectPtr values, int stride); +void QOpenGLShaderProgram_SetAttributeValue17(QtObjectPtr ptr, char* name, QtObjectPtr value); +void QOpenGLShaderProgram_SetAttributeValue14(QtObjectPtr ptr, char* name, QtObjectPtr value); +void QOpenGLShaderProgram_SetAttributeValue15(QtObjectPtr ptr, char* name, QtObjectPtr value); +void QOpenGLShaderProgram_SetAttributeValue16(QtObjectPtr ptr, char* name, QtObjectPtr value); +void QOpenGLShaderProgram_SetAttributeValue8(QtObjectPtr ptr, int location, QtObjectPtr value); +void QOpenGLShaderProgram_SetAttributeValue5(QtObjectPtr ptr, int location, QtObjectPtr value); +void QOpenGLShaderProgram_SetAttributeValue6(QtObjectPtr ptr, int location, QtObjectPtr value); +void QOpenGLShaderProgram_SetAttributeValue7(QtObjectPtr ptr, int location, QtObjectPtr value); +void QOpenGLShaderProgram_SetPatchVertexCount(QtObjectPtr ptr, int count); +void QOpenGLShaderProgram_SetUniformValue34(QtObjectPtr ptr, char* name, QtObjectPtr color); +void QOpenGLShaderProgram_SetUniformValue47(QtObjectPtr ptr, char* name, QtObjectPtr value); +void QOpenGLShaderProgram_SetUniformValue35(QtObjectPtr ptr, char* name, QtObjectPtr point); +void QOpenGLShaderProgram_SetUniformValue36(QtObjectPtr ptr, char* name, QtObjectPtr point); +void QOpenGLShaderProgram_SetUniformValue37(QtObjectPtr ptr, char* name, QtObjectPtr size); +void QOpenGLShaderProgram_SetUniformValue38(QtObjectPtr ptr, char* name, QtObjectPtr size); +void QOpenGLShaderProgram_SetUniformValue54(QtObjectPtr ptr, char* name, QtObjectPtr value); +void QOpenGLShaderProgram_SetUniformValue31(QtObjectPtr ptr, char* name, QtObjectPtr value); +void QOpenGLShaderProgram_SetUniformValue32(QtObjectPtr ptr, char* name, QtObjectPtr value); +void QOpenGLShaderProgram_SetUniformValue33(QtObjectPtr ptr, char* name, QtObjectPtr value); +void QOpenGLShaderProgram_SetUniformValue10(QtObjectPtr ptr, int location, QtObjectPtr color); +void QOpenGLShaderProgram_SetUniformValue23(QtObjectPtr ptr, int location, QtObjectPtr value); +void QOpenGLShaderProgram_SetUniformValue11(QtObjectPtr ptr, int location, QtObjectPtr point); +void QOpenGLShaderProgram_SetUniformValue12(QtObjectPtr ptr, int location, QtObjectPtr point); +void QOpenGLShaderProgram_SetUniformValue13(QtObjectPtr ptr, int location, QtObjectPtr size); +void QOpenGLShaderProgram_SetUniformValue14(QtObjectPtr ptr, int location, QtObjectPtr size); +void QOpenGLShaderProgram_SetUniformValue24(QtObjectPtr ptr, int location, QtObjectPtr value); +void QOpenGLShaderProgram_SetUniformValue7(QtObjectPtr ptr, int location, QtObjectPtr value); +void QOpenGLShaderProgram_SetUniformValue8(QtObjectPtr ptr, int location, QtObjectPtr value); +void QOpenGLShaderProgram_SetUniformValue9(QtObjectPtr ptr, int location, QtObjectPtr value); +void QOpenGLShaderProgram_SetUniformValueArray30(QtObjectPtr ptr, char* name, QtObjectPtr values, int count); +void QOpenGLShaderProgram_SetUniformValueArray19(QtObjectPtr ptr, char* name, QtObjectPtr values, int count); +void QOpenGLShaderProgram_SetUniformValueArray20(QtObjectPtr ptr, char* name, QtObjectPtr values, int count); +void QOpenGLShaderProgram_SetUniformValueArray21(QtObjectPtr ptr, char* name, QtObjectPtr values, int count); +void QOpenGLShaderProgram_SetUniformValueArray15(QtObjectPtr ptr, int location, QtObjectPtr values, int count); +void QOpenGLShaderProgram_SetUniformValueArray4(QtObjectPtr ptr, int location, QtObjectPtr values, int count); +void QOpenGLShaderProgram_SetUniformValueArray5(QtObjectPtr ptr, int location, QtObjectPtr values, int count); +void QOpenGLShaderProgram_SetUniformValueArray6(QtObjectPtr ptr, int location, QtObjectPtr values, int count); +int QOpenGLShaderProgram_UniformLocation2(QtObjectPtr ptr, QtObjectPtr name); +int QOpenGLShaderProgram_UniformLocation3(QtObjectPtr ptr, char* name); +int QOpenGLShaderProgram_UniformLocation(QtObjectPtr ptr, char* name); +void QOpenGLShaderProgram_DestroyQOpenGLShaderProgram(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopengltexture.cpp b/gui/qopengltexture.cpp new file mode 100755 index 00000000..5e4c76ad --- /dev/null +++ b/gui/qopengltexture.cpp @@ -0,0 +1,262 @@ +#include "qopengltexture.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLTexture: public QOpenGLTexture { +public: +}; + +void QOpenGLTexture_SetComparisonFunction(QtObjectPtr ptr, int function){ + static_cast(ptr)->setComparisonFunction(static_cast(function)); +} + +void QOpenGLTexture_DestroyQOpenGLTexture(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLTexture(); +} + +QtObjectPtr QOpenGLTexture_NewQOpenGLTexture(int target){ + return new QOpenGLTexture(static_cast(target)); +} + +QtObjectPtr QOpenGLTexture_NewQOpenGLTexture2(QtObjectPtr image, int genMipMaps){ + return new QOpenGLTexture(*static_cast(image), static_cast(genMipMaps)); +} + +void QOpenGLTexture_AllocateStorage(QtObjectPtr ptr){ + static_cast(ptr)->allocateStorage(); +} + +void QOpenGLTexture_AllocateStorage2(QtObjectPtr ptr, int pixelFormat, int pixelType){ + static_cast(ptr)->allocateStorage(static_cast(pixelFormat), static_cast(pixelType)); +} + +void QOpenGLTexture_Bind(QtObjectPtr ptr){ + static_cast(ptr)->bind(); +} + +void QOpenGLTexture_BorderColor3(QtObjectPtr ptr, int border){ + static_cast(ptr)->borderColor(&border); +} + +int QOpenGLTexture_ComparisonFunction(QtObjectPtr ptr){ + return static_cast(ptr)->comparisonFunction(); +} + +int QOpenGLTexture_ComparisonMode(QtObjectPtr ptr){ + return static_cast(ptr)->comparisonMode(); +} + +int QOpenGLTexture_Create(QtObjectPtr ptr){ + return static_cast(ptr)->create(); +} + +QtObjectPtr QOpenGLTexture_CreateTextureView(QtObjectPtr ptr, int target, int viewFormat, int minimumMipmapLevel, int maximumMipmapLevel, int minimumLayer, int maximumLayer){ + return static_cast(ptr)->createTextureView(static_cast(target), static_cast(viewFormat), minimumMipmapLevel, maximumMipmapLevel, minimumLayer, maximumLayer); +} + +int QOpenGLTexture_Depth(QtObjectPtr ptr){ + return static_cast(ptr)->depth(); +} + +int QOpenGLTexture_DepthStencilMode(QtObjectPtr ptr){ + return static_cast(ptr)->depthStencilMode(); +} + +void QOpenGLTexture_Destroy(QtObjectPtr ptr){ + static_cast(ptr)->destroy(); +} + +int QOpenGLTexture_Faces(QtObjectPtr ptr){ + return static_cast(ptr)->faces(); +} + +int QOpenGLTexture_Format(QtObjectPtr ptr){ + return static_cast(ptr)->format(); +} + +void QOpenGLTexture_GenerateMipMaps(QtObjectPtr ptr){ + static_cast(ptr)->generateMipMaps(); +} + +void QOpenGLTexture_GenerateMipMaps2(QtObjectPtr ptr, int baseLevel, int resetBaseLevel){ + static_cast(ptr)->generateMipMaps(baseLevel, resetBaseLevel != 0); +} + +int QOpenGLTexture_QOpenGLTexture_HasFeature(int feature){ + return QOpenGLTexture::hasFeature(static_cast(feature)); +} + +int QOpenGLTexture_Height(QtObjectPtr ptr){ + return static_cast(ptr)->height(); +} + +int QOpenGLTexture_IsAutoMipMapGenerationEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isAutoMipMapGenerationEnabled(); +} + +int QOpenGLTexture_IsBound(QtObjectPtr ptr){ + return static_cast(ptr)->isBound(); +} + +int QOpenGLTexture_IsCreated(QtObjectPtr ptr){ + return static_cast(ptr)->isCreated(); +} + +int QOpenGLTexture_IsFixedSamplePositions(QtObjectPtr ptr){ + return static_cast(ptr)->isFixedSamplePositions(); +} + +int QOpenGLTexture_IsStorageAllocated(QtObjectPtr ptr){ + return static_cast(ptr)->isStorageAllocated(); +} + +int QOpenGLTexture_IsTextureView(QtObjectPtr ptr){ + return static_cast(ptr)->isTextureView(); +} + +int QOpenGLTexture_Layers(QtObjectPtr ptr){ + return static_cast(ptr)->layers(); +} + +int QOpenGLTexture_MagnificationFilter(QtObjectPtr ptr){ + return static_cast(ptr)->magnificationFilter(); +} + +int QOpenGLTexture_MaximumMipLevels(QtObjectPtr ptr){ + return static_cast(ptr)->maximumMipLevels(); +} + +int QOpenGLTexture_MinificationFilter(QtObjectPtr ptr){ + return static_cast(ptr)->minificationFilter(); +} + +int QOpenGLTexture_MipBaseLevel(QtObjectPtr ptr){ + return static_cast(ptr)->mipBaseLevel(); +} + +int QOpenGLTexture_MipLevels(QtObjectPtr ptr){ + return static_cast(ptr)->mipLevels(); +} + +int QOpenGLTexture_MipMaxLevel(QtObjectPtr ptr){ + return static_cast(ptr)->mipMaxLevel(); +} + +void QOpenGLTexture_Release(QtObjectPtr ptr){ + static_cast(ptr)->release(); +} + +int QOpenGLTexture_Samples(QtObjectPtr ptr){ + return static_cast(ptr)->samples(); +} + +void QOpenGLTexture_SetAutoMipMapGenerationEnabled(QtObjectPtr ptr, int enabled){ + static_cast(ptr)->setAutoMipMapGenerationEnabled(enabled != 0); +} + +void QOpenGLTexture_SetBorderColor(QtObjectPtr ptr, QtObjectPtr color){ + static_cast(ptr)->setBorderColor(*static_cast(color)); +} + +void QOpenGLTexture_SetBorderColor3(QtObjectPtr ptr, int r, int g, int b, int a){ + static_cast(ptr)->setBorderColor(r, g, b, a); +} + +void QOpenGLTexture_SetComparisonMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setComparisonMode(static_cast(mode)); +} + +void QOpenGLTexture_SetData9(QtObjectPtr ptr, QtObjectPtr image, int genMipMaps){ + static_cast(ptr)->setData(*static_cast(image), static_cast(genMipMaps)); +} + +void QOpenGLTexture_SetDepthStencilMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setDepthStencilMode(static_cast(mode)); +} + +void QOpenGLTexture_SetFixedSamplePositions(QtObjectPtr ptr, int fixed){ + static_cast(ptr)->setFixedSamplePositions(fixed != 0); +} + +void QOpenGLTexture_SetFormat(QtObjectPtr ptr, int format){ + static_cast(ptr)->setFormat(static_cast(format)); +} + +void QOpenGLTexture_SetLayers(QtObjectPtr ptr, int layers){ + static_cast(ptr)->setLayers(layers); +} + +void QOpenGLTexture_SetMagnificationFilter(QtObjectPtr ptr, int filter){ + static_cast(ptr)->setMagnificationFilter(static_cast(filter)); +} + +void QOpenGLTexture_SetMinMagFilters(QtObjectPtr ptr, int minificationFilter, int magnificationFilter){ + static_cast(ptr)->setMinMagFilters(static_cast(minificationFilter), static_cast(magnificationFilter)); +} + +void QOpenGLTexture_SetMinificationFilter(QtObjectPtr ptr, int filter){ + static_cast(ptr)->setMinificationFilter(static_cast(filter)); +} + +void QOpenGLTexture_SetMipBaseLevel(QtObjectPtr ptr, int baseLevel){ + static_cast(ptr)->setMipBaseLevel(baseLevel); +} + +void QOpenGLTexture_SetMipLevelRange(QtObjectPtr ptr, int baseLevel, int maxLevel){ + static_cast(ptr)->setMipLevelRange(baseLevel, maxLevel); +} + +void QOpenGLTexture_SetMipLevels(QtObjectPtr ptr, int levels){ + static_cast(ptr)->setMipLevels(levels); +} + +void QOpenGLTexture_SetMipMaxLevel(QtObjectPtr ptr, int maxLevel){ + static_cast(ptr)->setMipMaxLevel(maxLevel); +} + +void QOpenGLTexture_SetSamples(QtObjectPtr ptr, int samples){ + static_cast(ptr)->setSamples(samples); +} + +void QOpenGLTexture_SetSize(QtObjectPtr ptr, int width, int height, int depth){ + static_cast(ptr)->setSize(width, height, depth); +} + +void QOpenGLTexture_SetSwizzleMask(QtObjectPtr ptr, int component, int value){ + static_cast(ptr)->setSwizzleMask(static_cast(component), static_cast(value)); +} + +void QOpenGLTexture_SetSwizzleMask2(QtObjectPtr ptr, int r, int g, int b, int a){ + static_cast(ptr)->setSwizzleMask(static_cast(r), static_cast(g), static_cast(b), static_cast(a)); +} + +void QOpenGLTexture_SetWrapMode2(QtObjectPtr ptr, int direction, int mode){ + static_cast(ptr)->setWrapMode(static_cast(direction), static_cast(mode)); +} + +void QOpenGLTexture_SetWrapMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setWrapMode(static_cast(mode)); +} + +int QOpenGLTexture_SwizzleMask(QtObjectPtr ptr, int component){ + return static_cast(ptr)->swizzleMask(static_cast(component)); +} + +int QOpenGLTexture_Target(QtObjectPtr ptr){ + return static_cast(ptr)->target(); +} + +int QOpenGLTexture_Width(QtObjectPtr ptr){ + return static_cast(ptr)->width(); +} + +int QOpenGLTexture_WrapMode(QtObjectPtr ptr, int direction){ + return static_cast(ptr)->wrapMode(static_cast(direction)); +} + diff --git a/gui/qopengltexture.go b/gui/qopengltexture.go new file mode 100755 index 00000000..cbc215bc --- /dev/null +++ b/gui/qopengltexture.go @@ -0,0 +1,761 @@ +package gui + +//#include "qopengltexture.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QOpenGLTexture struct { + ptr unsafe.Pointer +} + +type QOpenGLTextureITF interface { + QOpenGLTexturePTR() *QOpenGLTexture +} + +func (p *QOpenGLTexture) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QOpenGLTexture) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQOpenGLTexture(ptr QOpenGLTextureITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLTexturePTR().Pointer() + } + return nil +} + +func QOpenGLTextureFromPointer(ptr unsafe.Pointer) *QOpenGLTexture { + var n = new(QOpenGLTexture) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLTexture) QOpenGLTexturePTR() *QOpenGLTexture { + return ptr +} + +//QOpenGLTexture::BindingTarget +type QOpenGLTexture__BindingTarget int + +var ( + QOpenGLTexture__BindingTarget1D = QOpenGLTexture__BindingTarget(0x8068) + QOpenGLTexture__BindingTarget1DArray = QOpenGLTexture__BindingTarget(0x8C1C) + QOpenGLTexture__BindingTarget2D = QOpenGLTexture__BindingTarget(0x8069) + QOpenGLTexture__BindingTarget2DArray = QOpenGLTexture__BindingTarget(0x8C1D) + QOpenGLTexture__BindingTarget3D = QOpenGLTexture__BindingTarget(0x806A) + QOpenGLTexture__BindingTargetCubeMap = QOpenGLTexture__BindingTarget(0x8514) + QOpenGLTexture__BindingTargetCubeMapArray = QOpenGLTexture__BindingTarget(0x900A) + QOpenGLTexture__BindingTarget2DMultisample = QOpenGLTexture__BindingTarget(0x9104) + QOpenGLTexture__BindingTarget2DMultisampleArray = QOpenGLTexture__BindingTarget(0x9105) + QOpenGLTexture__BindingTargetRectangle = QOpenGLTexture__BindingTarget(0x84F6) + QOpenGLTexture__BindingTargetBuffer = QOpenGLTexture__BindingTarget(0x8C2C) +) + +//QOpenGLTexture::ComparisonFunction +type QOpenGLTexture__ComparisonFunction int + +var ( + QOpenGLTexture__CompareLessEqual = QOpenGLTexture__ComparisonFunction(0x0203) + QOpenGLTexture__CompareGreaterEqual = QOpenGLTexture__ComparisonFunction(0x0206) + QOpenGLTexture__CompareLess = QOpenGLTexture__ComparisonFunction(0x0201) + QOpenGLTexture__CompareGreater = QOpenGLTexture__ComparisonFunction(0x0204) + QOpenGLTexture__CompareEqual = QOpenGLTexture__ComparisonFunction(0x0202) + QOpenGLTexture__CommpareNotEqual = QOpenGLTexture__ComparisonFunction(0x0205) + QOpenGLTexture__CompareAlways = QOpenGLTexture__ComparisonFunction(0x0207) + QOpenGLTexture__CompareNever = QOpenGLTexture__ComparisonFunction(0x0200) +) + +//QOpenGLTexture::ComparisonMode +type QOpenGLTexture__ComparisonMode int + +var ( + QOpenGLTexture__CompareRefToTexture = QOpenGLTexture__ComparisonMode(0x884E) + QOpenGLTexture__CompareNone = QOpenGLTexture__ComparisonMode(0x0000) +) + +//QOpenGLTexture::CoordinateDirection +type QOpenGLTexture__CoordinateDirection int + +var ( + QOpenGLTexture__DirectionS = QOpenGLTexture__CoordinateDirection(0x2802) + QOpenGLTexture__DirectionT = QOpenGLTexture__CoordinateDirection(0x2803) + QOpenGLTexture__DirectionR = QOpenGLTexture__CoordinateDirection(0x8072) +) + +//QOpenGLTexture::CubeMapFace +type QOpenGLTexture__CubeMapFace int + +var ( + QOpenGLTexture__CubeMapPositiveX = QOpenGLTexture__CubeMapFace(0x8515) + QOpenGLTexture__CubeMapNegativeX = QOpenGLTexture__CubeMapFace(0x8516) + QOpenGLTexture__CubeMapPositiveY = QOpenGLTexture__CubeMapFace(0x8517) + QOpenGLTexture__CubeMapNegativeY = QOpenGLTexture__CubeMapFace(0x8518) + QOpenGLTexture__CubeMapPositiveZ = QOpenGLTexture__CubeMapFace(0x8519) + QOpenGLTexture__CubeMapNegativeZ = QOpenGLTexture__CubeMapFace(0x851A) +) + +//QOpenGLTexture::DepthStencilMode +type QOpenGLTexture__DepthStencilMode int + +var ( + QOpenGLTexture__DepthMode = QOpenGLTexture__DepthStencilMode(0x1902) + QOpenGLTexture__StencilMode = QOpenGLTexture__DepthStencilMode(0x1901) +) + +//QOpenGLTexture::Feature +type QOpenGLTexture__Feature int + +var ( + QOpenGLTexture__ImmutableStorage = QOpenGLTexture__Feature(0x00000001) + QOpenGLTexture__ImmutableMultisampleStorage = QOpenGLTexture__Feature(0x00000002) + QOpenGLTexture__TextureRectangle = QOpenGLTexture__Feature(0x00000004) + QOpenGLTexture__TextureArrays = QOpenGLTexture__Feature(0x00000008) + QOpenGLTexture__Texture3D = QOpenGLTexture__Feature(0x00000010) + QOpenGLTexture__TextureMultisample = QOpenGLTexture__Feature(0x00000020) + QOpenGLTexture__TextureBuffer = QOpenGLTexture__Feature(0x00000040) + QOpenGLTexture__TextureCubeMapArrays = QOpenGLTexture__Feature(0x00000080) + QOpenGLTexture__Swizzle = QOpenGLTexture__Feature(0x00000100) + QOpenGLTexture__StencilTexturing = QOpenGLTexture__Feature(0x00000200) + QOpenGLTexture__AnisotropicFiltering = QOpenGLTexture__Feature(0x00000400) + QOpenGLTexture__NPOTTextures = QOpenGLTexture__Feature(0x00000800) + QOpenGLTexture__NPOTTextureRepeat = QOpenGLTexture__Feature(0x00001000) + QOpenGLTexture__Texture1D = QOpenGLTexture__Feature(0x00002000) + QOpenGLTexture__TextureComparisonOperators = QOpenGLTexture__Feature(0x00004000) + QOpenGLTexture__TextureMipMapLevel = QOpenGLTexture__Feature(0x00008000) +) + +//QOpenGLTexture::Filter +type QOpenGLTexture__Filter int + +var ( + QOpenGLTexture__Nearest = QOpenGLTexture__Filter(0x2600) + QOpenGLTexture__Linear = QOpenGLTexture__Filter(0x2601) + QOpenGLTexture__NearestMipMapNearest = QOpenGLTexture__Filter(0x2700) + QOpenGLTexture__NearestMipMapLinear = QOpenGLTexture__Filter(0x2702) + QOpenGLTexture__LinearMipMapNearest = QOpenGLTexture__Filter(0x2701) + QOpenGLTexture__LinearMipMapLinear = QOpenGLTexture__Filter(0x2703) +) + +//QOpenGLTexture::MipMapGeneration +type QOpenGLTexture__MipMapGeneration int + +var ( + QOpenGLTexture__GenerateMipMaps = QOpenGLTexture__MipMapGeneration(0) + QOpenGLTexture__DontGenerateMipMaps = QOpenGLTexture__MipMapGeneration(1) +) + +//QOpenGLTexture::PixelFormat +type QOpenGLTexture__PixelFormat int + +var ( + QOpenGLTexture__NoSourceFormat = QOpenGLTexture__PixelFormat(0) + QOpenGLTexture__Red = QOpenGLTexture__PixelFormat(0x1903) + QOpenGLTexture__RG = QOpenGLTexture__PixelFormat(0x8227) + QOpenGLTexture__RGB = QOpenGLTexture__PixelFormat(0x1907) + QOpenGLTexture__BGR = QOpenGLTexture__PixelFormat(0x80E0) + QOpenGLTexture__RGBA = QOpenGLTexture__PixelFormat(0x1908) + QOpenGLTexture__BGRA = QOpenGLTexture__PixelFormat(0x80E1) + QOpenGLTexture__Red_Integer = QOpenGLTexture__PixelFormat(0x8D94) + QOpenGLTexture__RG_Integer = QOpenGLTexture__PixelFormat(0x8228) + QOpenGLTexture__RGB_Integer = QOpenGLTexture__PixelFormat(0x8D98) + QOpenGLTexture__BGR_Integer = QOpenGLTexture__PixelFormat(0x8D9A) + QOpenGLTexture__RGBA_Integer = QOpenGLTexture__PixelFormat(0x8D99) + QOpenGLTexture__BGRA_Integer = QOpenGLTexture__PixelFormat(0x8D9B) + QOpenGLTexture__Stencil = QOpenGLTexture__PixelFormat(0x1901) + QOpenGLTexture__Depth = QOpenGLTexture__PixelFormat(0x1902) + QOpenGLTexture__DepthStencil = QOpenGLTexture__PixelFormat(0x84F9) + QOpenGLTexture__Alpha = QOpenGLTexture__PixelFormat(0x1906) + QOpenGLTexture__Luminance = QOpenGLTexture__PixelFormat(0x1909) + QOpenGLTexture__LuminanceAlpha = QOpenGLTexture__PixelFormat(0x190A) +) + +//QOpenGLTexture::PixelType +type QOpenGLTexture__PixelType int + +var ( + QOpenGLTexture__NoPixelType = QOpenGLTexture__PixelType(0) + QOpenGLTexture__Int8 = QOpenGLTexture__PixelType(0x1400) + QOpenGLTexture__UInt8 = QOpenGLTexture__PixelType(0x1401) + QOpenGLTexture__Int16 = QOpenGLTexture__PixelType(0x1402) + QOpenGLTexture__UInt16 = QOpenGLTexture__PixelType(0x1403) + QOpenGLTexture__Int32 = QOpenGLTexture__PixelType(0x1404) + QOpenGLTexture__UInt32 = QOpenGLTexture__PixelType(0x1405) + QOpenGLTexture__Float16 = QOpenGLTexture__PixelType(0x140B) + QOpenGLTexture__Float16OES = QOpenGLTexture__PixelType(0x8D61) + QOpenGLTexture__Float32 = QOpenGLTexture__PixelType(0x1406) + QOpenGLTexture__UInt32_RGB9_E5 = QOpenGLTexture__PixelType(0x8C3E) + QOpenGLTexture__UInt32_RG11B10F = QOpenGLTexture__PixelType(0x8C3B) + QOpenGLTexture__UInt8_RG3B2 = QOpenGLTexture__PixelType(0x8032) + QOpenGLTexture__UInt8_RG3B2_Rev = QOpenGLTexture__PixelType(0x8362) + QOpenGLTexture__UInt16_RGB5A1 = QOpenGLTexture__PixelType(0x8034) + QOpenGLTexture__UInt16_RGB5A1_Rev = QOpenGLTexture__PixelType(0x8366) + QOpenGLTexture__UInt16_R5G6B5 = QOpenGLTexture__PixelType(0x8363) + QOpenGLTexture__UInt16_R5G6B5_Rev = QOpenGLTexture__PixelType(0x8364) + QOpenGLTexture__UInt16_RGBA4 = QOpenGLTexture__PixelType(0x8033) + QOpenGLTexture__UInt16_RGBA4_Rev = QOpenGLTexture__PixelType(0x8365) + QOpenGLTexture__UInt32_RGBA8 = QOpenGLTexture__PixelType(0x8035) + QOpenGLTexture__UInt32_RGBA8_Rev = QOpenGLTexture__PixelType(0x8367) + QOpenGLTexture__UInt32_RGB10A2 = QOpenGLTexture__PixelType(0x8036) + QOpenGLTexture__UInt32_RGB10A2_Rev = QOpenGLTexture__PixelType(0x8368) + QOpenGLTexture__UInt32_D24S8 = QOpenGLTexture__PixelType(0x84FA) + QOpenGLTexture__Float32_D32_UInt32_S8_X24 = QOpenGLTexture__PixelType(0x8DAD) +) + +//QOpenGLTexture::SwizzleComponent +type QOpenGLTexture__SwizzleComponent int + +var ( + QOpenGLTexture__SwizzleRed = QOpenGLTexture__SwizzleComponent(0x8E42) + QOpenGLTexture__SwizzleGreen = QOpenGLTexture__SwizzleComponent(0x8E43) + QOpenGLTexture__SwizzleBlue = QOpenGLTexture__SwizzleComponent(0x8E44) + QOpenGLTexture__SwizzleAlpha = QOpenGLTexture__SwizzleComponent(0x8E45) +) + +//QOpenGLTexture::SwizzleValue +type QOpenGLTexture__SwizzleValue int + +var ( + QOpenGLTexture__RedValue = QOpenGLTexture__SwizzleValue(0x1903) + QOpenGLTexture__GreenValue = QOpenGLTexture__SwizzleValue(0x1904) + QOpenGLTexture__BlueValue = QOpenGLTexture__SwizzleValue(0x1905) + QOpenGLTexture__AlphaValue = QOpenGLTexture__SwizzleValue(0x1906) + QOpenGLTexture__ZeroValue = QOpenGLTexture__SwizzleValue(0) + QOpenGLTexture__OneValue = QOpenGLTexture__SwizzleValue(1) +) + +//QOpenGLTexture::Target +type QOpenGLTexture__Target int + +var ( + QOpenGLTexture__Target1D = QOpenGLTexture__Target(0x0DE0) + QOpenGLTexture__Target1DArray = QOpenGLTexture__Target(0x8C18) + QOpenGLTexture__Target2D = QOpenGLTexture__Target(0x0DE1) + QOpenGLTexture__Target2DArray = QOpenGLTexture__Target(0x8C1A) + QOpenGLTexture__Target3D = QOpenGLTexture__Target(0x806F) + QOpenGLTexture__TargetCubeMap = QOpenGLTexture__Target(0x8513) + QOpenGLTexture__TargetCubeMapArray = QOpenGLTexture__Target(0x9009) + QOpenGLTexture__Target2DMultisample = QOpenGLTexture__Target(0x9100) + QOpenGLTexture__Target2DMultisampleArray = QOpenGLTexture__Target(0x9102) + QOpenGLTexture__TargetRectangle = QOpenGLTexture__Target(0x84F5) + QOpenGLTexture__TargetBuffer = QOpenGLTexture__Target(0x8C2A) +) + +//QOpenGLTexture::TextureFormat +type QOpenGLTexture__TextureFormat int + +var ( + QOpenGLTexture__NoFormat = QOpenGLTexture__TextureFormat(0) + QOpenGLTexture__R8_UNorm = QOpenGLTexture__TextureFormat(0x8229) + QOpenGLTexture__RG8_UNorm = QOpenGLTexture__TextureFormat(0x822B) + QOpenGLTexture__RGB8_UNorm = QOpenGLTexture__TextureFormat(0x8051) + QOpenGLTexture__RGBA8_UNorm = QOpenGLTexture__TextureFormat(0x8058) + QOpenGLTexture__R16_UNorm = QOpenGLTexture__TextureFormat(0x822A) + QOpenGLTexture__RG16_UNorm = QOpenGLTexture__TextureFormat(0x822C) + QOpenGLTexture__RGB16_UNorm = QOpenGLTexture__TextureFormat(0x8054) + QOpenGLTexture__RGBA16_UNorm = QOpenGLTexture__TextureFormat(0x805B) + QOpenGLTexture__R8_SNorm = QOpenGLTexture__TextureFormat(0x8F94) + QOpenGLTexture__RG8_SNorm = QOpenGLTexture__TextureFormat(0x8F95) + QOpenGLTexture__RGB8_SNorm = QOpenGLTexture__TextureFormat(0x8F96) + QOpenGLTexture__RGBA8_SNorm = QOpenGLTexture__TextureFormat(0x8F97) + QOpenGLTexture__R16_SNorm = QOpenGLTexture__TextureFormat(0x8F98) + QOpenGLTexture__RG16_SNorm = QOpenGLTexture__TextureFormat(0x8F99) + QOpenGLTexture__RGB16_SNorm = QOpenGLTexture__TextureFormat(0x8F9A) + QOpenGLTexture__RGBA16_SNorm = QOpenGLTexture__TextureFormat(0x8F9B) + QOpenGLTexture__R8U = QOpenGLTexture__TextureFormat(0x8232) + QOpenGLTexture__RG8U = QOpenGLTexture__TextureFormat(0x8238) + QOpenGLTexture__RGB8U = QOpenGLTexture__TextureFormat(0x8D7D) + QOpenGLTexture__RGBA8U = QOpenGLTexture__TextureFormat(0x8D7C) + QOpenGLTexture__R16U = QOpenGLTexture__TextureFormat(0x8234) + QOpenGLTexture__RG16U = QOpenGLTexture__TextureFormat(0x823A) + QOpenGLTexture__RGB16U = QOpenGLTexture__TextureFormat(0x8D77) + QOpenGLTexture__RGBA16U = QOpenGLTexture__TextureFormat(0x8D76) + QOpenGLTexture__R32U = QOpenGLTexture__TextureFormat(0x8236) + QOpenGLTexture__RG32U = QOpenGLTexture__TextureFormat(0x823C) + QOpenGLTexture__RGB32U = QOpenGLTexture__TextureFormat(0x8D71) + QOpenGLTexture__RGBA32U = QOpenGLTexture__TextureFormat(0x8D70) + QOpenGLTexture__R8I = QOpenGLTexture__TextureFormat(0x8231) + QOpenGLTexture__RG8I = QOpenGLTexture__TextureFormat(0x8237) + QOpenGLTexture__RGB8I = QOpenGLTexture__TextureFormat(0x8D8F) + QOpenGLTexture__RGBA8I = QOpenGLTexture__TextureFormat(0x8D8E) + QOpenGLTexture__R16I = QOpenGLTexture__TextureFormat(0x8233) + QOpenGLTexture__RG16I = QOpenGLTexture__TextureFormat(0x8239) + QOpenGLTexture__RGB16I = QOpenGLTexture__TextureFormat(0x8D89) + QOpenGLTexture__RGBA16I = QOpenGLTexture__TextureFormat(0x8D88) + QOpenGLTexture__R32I = QOpenGLTexture__TextureFormat(0x8235) + QOpenGLTexture__RG32I = QOpenGLTexture__TextureFormat(0x823B) + QOpenGLTexture__RGB32I = QOpenGLTexture__TextureFormat(0x8D83) + QOpenGLTexture__RGBA32I = QOpenGLTexture__TextureFormat(0x8D82) + QOpenGLTexture__R16F = QOpenGLTexture__TextureFormat(0x822D) + QOpenGLTexture__RG16F = QOpenGLTexture__TextureFormat(0x822F) + QOpenGLTexture__RGB16F = QOpenGLTexture__TextureFormat(0x881B) + QOpenGLTexture__RGBA16F = QOpenGLTexture__TextureFormat(0x881A) + QOpenGLTexture__R32F = QOpenGLTexture__TextureFormat(0x822E) + QOpenGLTexture__RG32F = QOpenGLTexture__TextureFormat(0x8230) + QOpenGLTexture__RGB32F = QOpenGLTexture__TextureFormat(0x8815) + QOpenGLTexture__RGBA32F = QOpenGLTexture__TextureFormat(0x8814) + QOpenGLTexture__RGB9E5 = QOpenGLTexture__TextureFormat(0x8C3D) + QOpenGLTexture__RG11B10F = QOpenGLTexture__TextureFormat(0x8C3A) + QOpenGLTexture__RG3B2 = QOpenGLTexture__TextureFormat(0x2A10) + QOpenGLTexture__R5G6B5 = QOpenGLTexture__TextureFormat(0x8D62) + QOpenGLTexture__RGB5A1 = QOpenGLTexture__TextureFormat(0x8057) + QOpenGLTexture__RGBA4 = QOpenGLTexture__TextureFormat(0x8056) + QOpenGLTexture__RGB10A2 = QOpenGLTexture__TextureFormat(0x906F) + QOpenGLTexture__D16 = QOpenGLTexture__TextureFormat(0x81A5) + QOpenGLTexture__D24 = QOpenGLTexture__TextureFormat(0x81A6) + QOpenGLTexture__D24S8 = QOpenGLTexture__TextureFormat(0x88F0) + QOpenGLTexture__D32 = QOpenGLTexture__TextureFormat(0x81A7) + QOpenGLTexture__D32F = QOpenGLTexture__TextureFormat(0x8CAC) + QOpenGLTexture__D32FS8X24 = QOpenGLTexture__TextureFormat(0x8CAD) + QOpenGLTexture__S8 = QOpenGLTexture__TextureFormat(0x8D48) + QOpenGLTexture__RGB_DXT1 = QOpenGLTexture__TextureFormat(0x83F0) + QOpenGLTexture__RGBA_DXT1 = QOpenGLTexture__TextureFormat(0x83F1) + QOpenGLTexture__RGBA_DXT3 = QOpenGLTexture__TextureFormat(0x83F2) + QOpenGLTexture__RGBA_DXT5 = QOpenGLTexture__TextureFormat(0x83F3) + QOpenGLTexture__R_ATI1N_UNorm = QOpenGLTexture__TextureFormat(0x8DBB) + QOpenGLTexture__R_ATI1N_SNorm = QOpenGLTexture__TextureFormat(0x8DBC) + QOpenGLTexture__RG_ATI2N_UNorm = QOpenGLTexture__TextureFormat(0x8DBD) + QOpenGLTexture__RG_ATI2N_SNorm = QOpenGLTexture__TextureFormat(0x8DBE) + QOpenGLTexture__RGB_BP_UNSIGNED_FLOAT = QOpenGLTexture__TextureFormat(0x8E8F) + QOpenGLTexture__RGB_BP_SIGNED_FLOAT = QOpenGLTexture__TextureFormat(0x8E8E) + QOpenGLTexture__RGB_BP_UNorm = QOpenGLTexture__TextureFormat(0x8E8C) + QOpenGLTexture__R11_EAC_UNorm = QOpenGLTexture__TextureFormat(0x9270) + QOpenGLTexture__R11_EAC_SNorm = QOpenGLTexture__TextureFormat(0x9271) + QOpenGLTexture__RG11_EAC_UNorm = QOpenGLTexture__TextureFormat(0x9272) + QOpenGLTexture__RG11_EAC_SNorm = QOpenGLTexture__TextureFormat(0x9273) + QOpenGLTexture__RGB8_ETC2 = QOpenGLTexture__TextureFormat(0x9274) + QOpenGLTexture__SRGB8_ETC2 = QOpenGLTexture__TextureFormat(0x9275) + QOpenGLTexture__RGB8_PunchThrough_Alpha1_ETC2 = QOpenGLTexture__TextureFormat(0x9276) + QOpenGLTexture__SRGB8_PunchThrough_Alpha1_ETC2 = QOpenGLTexture__TextureFormat(0x9277) + QOpenGLTexture__RGBA8_ETC2_EAC = QOpenGLTexture__TextureFormat(0x9278) + QOpenGLTexture__SRGB8_Alpha8_ETC2_EAC = QOpenGLTexture__TextureFormat(0x9279) + QOpenGLTexture__SRGB8 = QOpenGLTexture__TextureFormat(0x8C41) + QOpenGLTexture__SRGB8_Alpha8 = QOpenGLTexture__TextureFormat(0x8C43) + QOpenGLTexture__SRGB_DXT1 = QOpenGLTexture__TextureFormat(0x8C4C) + QOpenGLTexture__SRGB_Alpha_DXT1 = QOpenGLTexture__TextureFormat(0x8C4D) + QOpenGLTexture__SRGB_Alpha_DXT3 = QOpenGLTexture__TextureFormat(0x8C4E) + QOpenGLTexture__SRGB_Alpha_DXT5 = QOpenGLTexture__TextureFormat(0x8C4F) + QOpenGLTexture__SRGB_BP_UNorm = QOpenGLTexture__TextureFormat(0x8E8D) + QOpenGLTexture__DepthFormat = QOpenGLTexture__TextureFormat(0x1902) + QOpenGLTexture__AlphaFormat = QOpenGLTexture__TextureFormat(0x1906) + QOpenGLTexture__RGBFormat = QOpenGLTexture__TextureFormat(0x1907) + QOpenGLTexture__RGBAFormat = QOpenGLTexture__TextureFormat(0x1908) + QOpenGLTexture__LuminanceFormat = QOpenGLTexture__TextureFormat(0x1909) + QOpenGLTexture__LuminanceAlphaFormat = QOpenGLTexture__TextureFormat(0x190A) +) + +//QOpenGLTexture::TextureUnitReset +type QOpenGLTexture__TextureUnitReset int + +var ( + QOpenGLTexture__ResetTextureUnit = QOpenGLTexture__TextureUnitReset(0) + QOpenGLTexture__DontResetTextureUnit = QOpenGLTexture__TextureUnitReset(1) +) + +//QOpenGLTexture::WrapMode +type QOpenGLTexture__WrapMode int + +var ( + QOpenGLTexture__Repeat = QOpenGLTexture__WrapMode(0x2901) + QOpenGLTexture__MirroredRepeat = QOpenGLTexture__WrapMode(0x8370) + QOpenGLTexture__ClampToEdge = QOpenGLTexture__WrapMode(0x812F) + QOpenGLTexture__ClampToBorder = QOpenGLTexture__WrapMode(0x812D) +) + +func (ptr *QOpenGLTexture) SetComparisonFunction(function QOpenGLTexture__ComparisonFunction) { + if ptr.Pointer() != nil { + C.QOpenGLTexture_SetComparisonFunction(C.QtObjectPtr(ptr.Pointer()), C.int(function)) + } +} + +func (ptr *QOpenGLTexture) DestroyQOpenGLTexture() { + if ptr.Pointer() != nil { + C.QOpenGLTexture_DestroyQOpenGLTexture(C.QtObjectPtr(ptr.Pointer())) + } +} + +func NewQOpenGLTexture(target QOpenGLTexture__Target) *QOpenGLTexture { + return QOpenGLTextureFromPointer(unsafe.Pointer(C.QOpenGLTexture_NewQOpenGLTexture(C.int(target)))) +} + +func NewQOpenGLTexture2(image QImageITF, genMipMaps QOpenGLTexture__MipMapGeneration) *QOpenGLTexture { + return QOpenGLTextureFromPointer(unsafe.Pointer(C.QOpenGLTexture_NewQOpenGLTexture2(C.QtObjectPtr(PointerFromQImage(image)), C.int(genMipMaps)))) +} + +func (ptr *QOpenGLTexture) AllocateStorage() { + if ptr.Pointer() != nil { + C.QOpenGLTexture_AllocateStorage(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLTexture) AllocateStorage2(pixelFormat QOpenGLTexture__PixelFormat, pixelType QOpenGLTexture__PixelType) { + if ptr.Pointer() != nil { + C.QOpenGLTexture_AllocateStorage2(C.QtObjectPtr(ptr.Pointer()), C.int(pixelFormat), C.int(pixelType)) + } +} + +func (ptr *QOpenGLTexture) Bind() { + if ptr.Pointer() != nil { + C.QOpenGLTexture_Bind(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLTexture) BorderColor3(border int) { + if ptr.Pointer() != nil { + C.QOpenGLTexture_BorderColor3(C.QtObjectPtr(ptr.Pointer()), C.int(border)) + } +} + +func (ptr *QOpenGLTexture) ComparisonFunction() QOpenGLTexture__ComparisonFunction { + if ptr.Pointer() != nil { + return QOpenGLTexture__ComparisonFunction(C.QOpenGLTexture_ComparisonFunction(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLTexture) ComparisonMode() QOpenGLTexture__ComparisonMode { + if ptr.Pointer() != nil { + return QOpenGLTexture__ComparisonMode(C.QOpenGLTexture_ComparisonMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLTexture) Create() bool { + if ptr.Pointer() != nil { + return C.QOpenGLTexture_Create(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLTexture) CreateTextureView(target QOpenGLTexture__Target, viewFormat QOpenGLTexture__TextureFormat, minimumMipmapLevel int, maximumMipmapLevel int, minimumLayer int, maximumLayer int) *QOpenGLTexture { + if ptr.Pointer() != nil { + return QOpenGLTextureFromPointer(unsafe.Pointer(C.QOpenGLTexture_CreateTextureView(C.QtObjectPtr(ptr.Pointer()), C.int(target), C.int(viewFormat), C.int(minimumMipmapLevel), C.int(maximumMipmapLevel), C.int(minimumLayer), C.int(maximumLayer)))) + } + return nil +} + +func (ptr *QOpenGLTexture) Depth() int { + if ptr.Pointer() != nil { + return int(C.QOpenGLTexture_Depth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLTexture) DepthStencilMode() QOpenGLTexture__DepthStencilMode { + if ptr.Pointer() != nil { + return QOpenGLTexture__DepthStencilMode(C.QOpenGLTexture_DepthStencilMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLTexture) Destroy() { + if ptr.Pointer() != nil { + C.QOpenGLTexture_Destroy(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLTexture) Faces() int { + if ptr.Pointer() != nil { + return int(C.QOpenGLTexture_Faces(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLTexture) Format() QOpenGLTexture__TextureFormat { + if ptr.Pointer() != nil { + return QOpenGLTexture__TextureFormat(C.QOpenGLTexture_Format(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLTexture) GenerateMipMaps() { + if ptr.Pointer() != nil { + C.QOpenGLTexture_GenerateMipMaps(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLTexture) GenerateMipMaps2(baseLevel int, resetBaseLevel bool) { + if ptr.Pointer() != nil { + C.QOpenGLTexture_GenerateMipMaps2(C.QtObjectPtr(ptr.Pointer()), C.int(baseLevel), C.int(qt.GoBoolToInt(resetBaseLevel))) + } +} + +func QOpenGLTexture_HasFeature(feature QOpenGLTexture__Feature) bool { + return C.QOpenGLTexture_QOpenGLTexture_HasFeature(C.int(feature)) != 0 +} + +func (ptr *QOpenGLTexture) Height() int { + if ptr.Pointer() != nil { + return int(C.QOpenGLTexture_Height(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLTexture) IsAutoMipMapGenerationEnabled() bool { + if ptr.Pointer() != nil { + return C.QOpenGLTexture_IsAutoMipMapGenerationEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLTexture) IsBound() bool { + if ptr.Pointer() != nil { + return C.QOpenGLTexture_IsBound(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLTexture) IsCreated() bool { + if ptr.Pointer() != nil { + return C.QOpenGLTexture_IsCreated(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLTexture) IsFixedSamplePositions() bool { + if ptr.Pointer() != nil { + return C.QOpenGLTexture_IsFixedSamplePositions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLTexture) IsStorageAllocated() bool { + if ptr.Pointer() != nil { + return C.QOpenGLTexture_IsStorageAllocated(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLTexture) IsTextureView() bool { + if ptr.Pointer() != nil { + return C.QOpenGLTexture_IsTextureView(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLTexture) Layers() int { + if ptr.Pointer() != nil { + return int(C.QOpenGLTexture_Layers(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLTexture) MagnificationFilter() QOpenGLTexture__Filter { + if ptr.Pointer() != nil { + return QOpenGLTexture__Filter(C.QOpenGLTexture_MagnificationFilter(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLTexture) MaximumMipLevels() int { + if ptr.Pointer() != nil { + return int(C.QOpenGLTexture_MaximumMipLevels(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLTexture) MinificationFilter() QOpenGLTexture__Filter { + if ptr.Pointer() != nil { + return QOpenGLTexture__Filter(C.QOpenGLTexture_MinificationFilter(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLTexture) MipBaseLevel() int { + if ptr.Pointer() != nil { + return int(C.QOpenGLTexture_MipBaseLevel(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLTexture) MipLevels() int { + if ptr.Pointer() != nil { + return int(C.QOpenGLTexture_MipLevels(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLTexture) MipMaxLevel() int { + if ptr.Pointer() != nil { + return int(C.QOpenGLTexture_MipMaxLevel(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLTexture) Release() { + if ptr.Pointer() != nil { + C.QOpenGLTexture_Release(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLTexture) Samples() int { + if ptr.Pointer() != nil { + return int(C.QOpenGLTexture_Samples(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLTexture) SetAutoMipMapGenerationEnabled(enabled bool) { + if ptr.Pointer() != nil { + C.QOpenGLTexture_SetAutoMipMapGenerationEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QOpenGLTexture) SetBorderColor(color QColorITF) { + if ptr.Pointer() != nil { + C.QOpenGLTexture_SetBorderColor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQColor(color))) + } +} + +func (ptr *QOpenGLTexture) SetBorderColor3(r int, g int, b int, a int) { + if ptr.Pointer() != nil { + C.QOpenGLTexture_SetBorderColor3(C.QtObjectPtr(ptr.Pointer()), C.int(r), C.int(g), C.int(b), C.int(a)) + } +} + +func (ptr *QOpenGLTexture) SetComparisonMode(mode QOpenGLTexture__ComparisonMode) { + if ptr.Pointer() != nil { + C.QOpenGLTexture_SetComparisonMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QOpenGLTexture) SetData9(image QImageITF, genMipMaps QOpenGLTexture__MipMapGeneration) { + if ptr.Pointer() != nil { + C.QOpenGLTexture_SetData9(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQImage(image)), C.int(genMipMaps)) + } +} + +func (ptr *QOpenGLTexture) SetDepthStencilMode(mode QOpenGLTexture__DepthStencilMode) { + if ptr.Pointer() != nil { + C.QOpenGLTexture_SetDepthStencilMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QOpenGLTexture) SetFixedSamplePositions(fixed bool) { + if ptr.Pointer() != nil { + C.QOpenGLTexture_SetFixedSamplePositions(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(fixed))) + } +} + +func (ptr *QOpenGLTexture) SetFormat(format QOpenGLTexture__TextureFormat) { + if ptr.Pointer() != nil { + C.QOpenGLTexture_SetFormat(C.QtObjectPtr(ptr.Pointer()), C.int(format)) + } +} + +func (ptr *QOpenGLTexture) SetLayers(layers int) { + if ptr.Pointer() != nil { + C.QOpenGLTexture_SetLayers(C.QtObjectPtr(ptr.Pointer()), C.int(layers)) + } +} + +func (ptr *QOpenGLTexture) SetMagnificationFilter(filter QOpenGLTexture__Filter) { + if ptr.Pointer() != nil { + C.QOpenGLTexture_SetMagnificationFilter(C.QtObjectPtr(ptr.Pointer()), C.int(filter)) + } +} + +func (ptr *QOpenGLTexture) SetMinMagFilters(minificationFilter QOpenGLTexture__Filter, magnificationFilter QOpenGLTexture__Filter) { + if ptr.Pointer() != nil { + C.QOpenGLTexture_SetMinMagFilters(C.QtObjectPtr(ptr.Pointer()), C.int(minificationFilter), C.int(magnificationFilter)) + } +} + +func (ptr *QOpenGLTexture) SetMinificationFilter(filter QOpenGLTexture__Filter) { + if ptr.Pointer() != nil { + C.QOpenGLTexture_SetMinificationFilter(C.QtObjectPtr(ptr.Pointer()), C.int(filter)) + } +} + +func (ptr *QOpenGLTexture) SetMipBaseLevel(baseLevel int) { + if ptr.Pointer() != nil { + C.QOpenGLTexture_SetMipBaseLevel(C.QtObjectPtr(ptr.Pointer()), C.int(baseLevel)) + } +} + +func (ptr *QOpenGLTexture) SetMipLevelRange(baseLevel int, maxLevel int) { + if ptr.Pointer() != nil { + C.QOpenGLTexture_SetMipLevelRange(C.QtObjectPtr(ptr.Pointer()), C.int(baseLevel), C.int(maxLevel)) + } +} + +func (ptr *QOpenGLTexture) SetMipLevels(levels int) { + if ptr.Pointer() != nil { + C.QOpenGLTexture_SetMipLevels(C.QtObjectPtr(ptr.Pointer()), C.int(levels)) + } +} + +func (ptr *QOpenGLTexture) SetMipMaxLevel(maxLevel int) { + if ptr.Pointer() != nil { + C.QOpenGLTexture_SetMipMaxLevel(C.QtObjectPtr(ptr.Pointer()), C.int(maxLevel)) + } +} + +func (ptr *QOpenGLTexture) SetSamples(samples int) { + if ptr.Pointer() != nil { + C.QOpenGLTexture_SetSamples(C.QtObjectPtr(ptr.Pointer()), C.int(samples)) + } +} + +func (ptr *QOpenGLTexture) SetSize(width int, height int, depth int) { + if ptr.Pointer() != nil { + C.QOpenGLTexture_SetSize(C.QtObjectPtr(ptr.Pointer()), C.int(width), C.int(height), C.int(depth)) + } +} + +func (ptr *QOpenGLTexture) SetSwizzleMask(component QOpenGLTexture__SwizzleComponent, value QOpenGLTexture__SwizzleValue) { + if ptr.Pointer() != nil { + C.QOpenGLTexture_SetSwizzleMask(C.QtObjectPtr(ptr.Pointer()), C.int(component), C.int(value)) + } +} + +func (ptr *QOpenGLTexture) SetSwizzleMask2(r QOpenGLTexture__SwizzleValue, g QOpenGLTexture__SwizzleValue, b QOpenGLTexture__SwizzleValue, a QOpenGLTexture__SwizzleValue) { + if ptr.Pointer() != nil { + C.QOpenGLTexture_SetSwizzleMask2(C.QtObjectPtr(ptr.Pointer()), C.int(r), C.int(g), C.int(b), C.int(a)) + } +} + +func (ptr *QOpenGLTexture) SetWrapMode2(direction QOpenGLTexture__CoordinateDirection, mode QOpenGLTexture__WrapMode) { + if ptr.Pointer() != nil { + C.QOpenGLTexture_SetWrapMode2(C.QtObjectPtr(ptr.Pointer()), C.int(direction), C.int(mode)) + } +} + +func (ptr *QOpenGLTexture) SetWrapMode(mode QOpenGLTexture__WrapMode) { + if ptr.Pointer() != nil { + C.QOpenGLTexture_SetWrapMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QOpenGLTexture) SwizzleMask(component QOpenGLTexture__SwizzleComponent) QOpenGLTexture__SwizzleValue { + if ptr.Pointer() != nil { + return QOpenGLTexture__SwizzleValue(C.QOpenGLTexture_SwizzleMask(C.QtObjectPtr(ptr.Pointer()), C.int(component))) + } + return 0 +} + +func (ptr *QOpenGLTexture) Target() QOpenGLTexture__Target { + if ptr.Pointer() != nil { + return QOpenGLTexture__Target(C.QOpenGLTexture_Target(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLTexture) Width() int { + if ptr.Pointer() != nil { + return int(C.QOpenGLTexture_Width(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLTexture) WrapMode(direction QOpenGLTexture__CoordinateDirection) QOpenGLTexture__WrapMode { + if ptr.Pointer() != nil { + return QOpenGLTexture__WrapMode(C.QOpenGLTexture_WrapMode(C.QtObjectPtr(ptr.Pointer()), C.int(direction))) + } + return 0 +} diff --git a/gui/qopengltexture.h b/gui/qopengltexture.h new file mode 100755 index 00000000..e4ad85b0 --- /dev/null +++ b/gui/qopengltexture.h @@ -0,0 +1,71 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QOpenGLTexture_SetComparisonFunction(QtObjectPtr ptr, int function); +void QOpenGLTexture_DestroyQOpenGLTexture(QtObjectPtr ptr); +QtObjectPtr QOpenGLTexture_NewQOpenGLTexture(int target); +QtObjectPtr QOpenGLTexture_NewQOpenGLTexture2(QtObjectPtr image, int genMipMaps); +void QOpenGLTexture_AllocateStorage(QtObjectPtr ptr); +void QOpenGLTexture_AllocateStorage2(QtObjectPtr ptr, int pixelFormat, int pixelType); +void QOpenGLTexture_Bind(QtObjectPtr ptr); +void QOpenGLTexture_BorderColor3(QtObjectPtr ptr, int border); +int QOpenGLTexture_ComparisonFunction(QtObjectPtr ptr); +int QOpenGLTexture_ComparisonMode(QtObjectPtr ptr); +int QOpenGLTexture_Create(QtObjectPtr ptr); +QtObjectPtr QOpenGLTexture_CreateTextureView(QtObjectPtr ptr, int target, int viewFormat, int minimumMipmapLevel, int maximumMipmapLevel, int minimumLayer, int maximumLayer); +int QOpenGLTexture_Depth(QtObjectPtr ptr); +int QOpenGLTexture_DepthStencilMode(QtObjectPtr ptr); +void QOpenGLTexture_Destroy(QtObjectPtr ptr); +int QOpenGLTexture_Faces(QtObjectPtr ptr); +int QOpenGLTexture_Format(QtObjectPtr ptr); +void QOpenGLTexture_GenerateMipMaps(QtObjectPtr ptr); +void QOpenGLTexture_GenerateMipMaps2(QtObjectPtr ptr, int baseLevel, int resetBaseLevel); +int QOpenGLTexture_QOpenGLTexture_HasFeature(int feature); +int QOpenGLTexture_Height(QtObjectPtr ptr); +int QOpenGLTexture_IsAutoMipMapGenerationEnabled(QtObjectPtr ptr); +int QOpenGLTexture_IsBound(QtObjectPtr ptr); +int QOpenGLTexture_IsCreated(QtObjectPtr ptr); +int QOpenGLTexture_IsFixedSamplePositions(QtObjectPtr ptr); +int QOpenGLTexture_IsStorageAllocated(QtObjectPtr ptr); +int QOpenGLTexture_IsTextureView(QtObjectPtr ptr); +int QOpenGLTexture_Layers(QtObjectPtr ptr); +int QOpenGLTexture_MagnificationFilter(QtObjectPtr ptr); +int QOpenGLTexture_MaximumMipLevels(QtObjectPtr ptr); +int QOpenGLTexture_MinificationFilter(QtObjectPtr ptr); +int QOpenGLTexture_MipBaseLevel(QtObjectPtr ptr); +int QOpenGLTexture_MipLevels(QtObjectPtr ptr); +int QOpenGLTexture_MipMaxLevel(QtObjectPtr ptr); +void QOpenGLTexture_Release(QtObjectPtr ptr); +int QOpenGLTexture_Samples(QtObjectPtr ptr); +void QOpenGLTexture_SetAutoMipMapGenerationEnabled(QtObjectPtr ptr, int enabled); +void QOpenGLTexture_SetBorderColor(QtObjectPtr ptr, QtObjectPtr color); +void QOpenGLTexture_SetBorderColor3(QtObjectPtr ptr, int r, int g, int b, int a); +void QOpenGLTexture_SetComparisonMode(QtObjectPtr ptr, int mode); +void QOpenGLTexture_SetData9(QtObjectPtr ptr, QtObjectPtr image, int genMipMaps); +void QOpenGLTexture_SetDepthStencilMode(QtObjectPtr ptr, int mode); +void QOpenGLTexture_SetFixedSamplePositions(QtObjectPtr ptr, int fixed); +void QOpenGLTexture_SetFormat(QtObjectPtr ptr, int format); +void QOpenGLTexture_SetLayers(QtObjectPtr ptr, int layers); +void QOpenGLTexture_SetMagnificationFilter(QtObjectPtr ptr, int filter); +void QOpenGLTexture_SetMinMagFilters(QtObjectPtr ptr, int minificationFilter, int magnificationFilter); +void QOpenGLTexture_SetMinificationFilter(QtObjectPtr ptr, int filter); +void QOpenGLTexture_SetMipBaseLevel(QtObjectPtr ptr, int baseLevel); +void QOpenGLTexture_SetMipLevelRange(QtObjectPtr ptr, int baseLevel, int maxLevel); +void QOpenGLTexture_SetMipLevels(QtObjectPtr ptr, int levels); +void QOpenGLTexture_SetMipMaxLevel(QtObjectPtr ptr, int maxLevel); +void QOpenGLTexture_SetSamples(QtObjectPtr ptr, int samples); +void QOpenGLTexture_SetSize(QtObjectPtr ptr, int width, int height, int depth); +void QOpenGLTexture_SetSwizzleMask(QtObjectPtr ptr, int component, int value); +void QOpenGLTexture_SetSwizzleMask2(QtObjectPtr ptr, int r, int g, int b, int a); +void QOpenGLTexture_SetWrapMode2(QtObjectPtr ptr, int direction, int mode); +void QOpenGLTexture_SetWrapMode(QtObjectPtr ptr, int mode); +int QOpenGLTexture_SwizzleMask(QtObjectPtr ptr, int component); +int QOpenGLTexture_Target(QtObjectPtr ptr); +int QOpenGLTexture_Width(QtObjectPtr ptr); +int QOpenGLTexture_WrapMode(QtObjectPtr ptr, int direction); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopengltimemonitor.cpp b/gui/qopengltimemonitor.cpp new file mode 100755 index 00000000..aa7e3ad7 --- /dev/null +++ b/gui/qopengltimemonitor.cpp @@ -0,0 +1,53 @@ +#include "qopengltimemonitor.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLTimeMonitor: public QOpenGLTimeMonitor { +public: +}; + +QtObjectPtr QOpenGLTimeMonitor_NewQOpenGLTimeMonitor(QtObjectPtr parent){ + return new QOpenGLTimeMonitor(static_cast(parent)); +} + +int QOpenGLTimeMonitor_Create(QtObjectPtr ptr){ + return static_cast(ptr)->create(); +} + +void QOpenGLTimeMonitor_Destroy(QtObjectPtr ptr){ + static_cast(ptr)->destroy(); +} + +int QOpenGLTimeMonitor_IsCreated(QtObjectPtr ptr){ + return static_cast(ptr)->isCreated(); +} + +int QOpenGLTimeMonitor_IsResultAvailable(QtObjectPtr ptr){ + return static_cast(ptr)->isResultAvailable(); +} + +int QOpenGLTimeMonitor_RecordSample(QtObjectPtr ptr){ + return static_cast(ptr)->recordSample(); +} + +void QOpenGLTimeMonitor_Reset(QtObjectPtr ptr){ + static_cast(ptr)->reset(); +} + +int QOpenGLTimeMonitor_SampleCount(QtObjectPtr ptr){ + return static_cast(ptr)->sampleCount(); +} + +void QOpenGLTimeMonitor_SetSampleCount(QtObjectPtr ptr, int sampleCount){ + static_cast(ptr)->setSampleCount(sampleCount); +} + +void QOpenGLTimeMonitor_DestroyQOpenGLTimeMonitor(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLTimeMonitor(); +} + diff --git a/gui/qopengltimemonitor.go b/gui/qopengltimemonitor.go new file mode 100755 index 00000000..2c31c67a --- /dev/null +++ b/gui/qopengltimemonitor.go @@ -0,0 +1,102 @@ +package gui + +//#include "qopengltimemonitor.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QOpenGLTimeMonitor struct { + core.QObject +} + +type QOpenGLTimeMonitorITF interface { + core.QObjectITF + QOpenGLTimeMonitorPTR() *QOpenGLTimeMonitor +} + +func PointerFromQOpenGLTimeMonitor(ptr QOpenGLTimeMonitorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLTimeMonitorPTR().Pointer() + } + return nil +} + +func QOpenGLTimeMonitorFromPointer(ptr unsafe.Pointer) *QOpenGLTimeMonitor { + var n = new(QOpenGLTimeMonitor) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QOpenGLTimeMonitor_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QOpenGLTimeMonitor) QOpenGLTimeMonitorPTR() *QOpenGLTimeMonitor { + return ptr +} + +func NewQOpenGLTimeMonitor(parent core.QObjectITF) *QOpenGLTimeMonitor { + return QOpenGLTimeMonitorFromPointer(unsafe.Pointer(C.QOpenGLTimeMonitor_NewQOpenGLTimeMonitor(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QOpenGLTimeMonitor) Create() bool { + if ptr.Pointer() != nil { + return C.QOpenGLTimeMonitor_Create(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLTimeMonitor) Destroy() { + if ptr.Pointer() != nil { + C.QOpenGLTimeMonitor_Destroy(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLTimeMonitor) IsCreated() bool { + if ptr.Pointer() != nil { + return C.QOpenGLTimeMonitor_IsCreated(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLTimeMonitor) IsResultAvailable() bool { + if ptr.Pointer() != nil { + return C.QOpenGLTimeMonitor_IsResultAvailable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLTimeMonitor) RecordSample() int { + if ptr.Pointer() != nil { + return int(C.QOpenGLTimeMonitor_RecordSample(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLTimeMonitor) Reset() { + if ptr.Pointer() != nil { + C.QOpenGLTimeMonitor_Reset(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLTimeMonitor) SampleCount() int { + if ptr.Pointer() != nil { + return int(C.QOpenGLTimeMonitor_SampleCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLTimeMonitor) SetSampleCount(sampleCount int) { + if ptr.Pointer() != nil { + C.QOpenGLTimeMonitor_SetSampleCount(C.QtObjectPtr(ptr.Pointer()), C.int(sampleCount)) + } +} + +func (ptr *QOpenGLTimeMonitor) DestroyQOpenGLTimeMonitor() { + if ptr.Pointer() != nil { + C.QOpenGLTimeMonitor_DestroyQOpenGLTimeMonitor(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/gui/qopengltimemonitor.h b/gui/qopengltimemonitor.h new file mode 100755 index 00000000..427096f8 --- /dev/null +++ b/gui/qopengltimemonitor.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLTimeMonitor_NewQOpenGLTimeMonitor(QtObjectPtr parent); +int QOpenGLTimeMonitor_Create(QtObjectPtr ptr); +void QOpenGLTimeMonitor_Destroy(QtObjectPtr ptr); +int QOpenGLTimeMonitor_IsCreated(QtObjectPtr ptr); +int QOpenGLTimeMonitor_IsResultAvailable(QtObjectPtr ptr); +int QOpenGLTimeMonitor_RecordSample(QtObjectPtr ptr); +void QOpenGLTimeMonitor_Reset(QtObjectPtr ptr); +int QOpenGLTimeMonitor_SampleCount(QtObjectPtr ptr); +void QOpenGLTimeMonitor_SetSampleCount(QtObjectPtr ptr, int sampleCount); +void QOpenGLTimeMonitor_DestroyQOpenGLTimeMonitor(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopengltimerquery.cpp b/gui/qopengltimerquery.cpp new file mode 100755 index 00000000..538d25d4 --- /dev/null +++ b/gui/qopengltimerquery.cpp @@ -0,0 +1,49 @@ +#include "qopengltimerquery.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLTimerQuery: public QOpenGLTimerQuery { +public: +}; + +QtObjectPtr QOpenGLTimerQuery_NewQOpenGLTimerQuery(QtObjectPtr parent){ + return new QOpenGLTimerQuery(static_cast(parent)); +} + +void QOpenGLTimerQuery_Begin(QtObjectPtr ptr){ + static_cast(ptr)->begin(); +} + +int QOpenGLTimerQuery_Create(QtObjectPtr ptr){ + return static_cast(ptr)->create(); +} + +void QOpenGLTimerQuery_Destroy(QtObjectPtr ptr){ + static_cast(ptr)->destroy(); +} + +void QOpenGLTimerQuery_End(QtObjectPtr ptr){ + static_cast(ptr)->end(); +} + +int QOpenGLTimerQuery_IsCreated(QtObjectPtr ptr){ + return static_cast(ptr)->isCreated(); +} + +int QOpenGLTimerQuery_IsResultAvailable(QtObjectPtr ptr){ + return static_cast(ptr)->isResultAvailable(); +} + +void QOpenGLTimerQuery_RecordTimestamp(QtObjectPtr ptr){ + static_cast(ptr)->recordTimestamp(); +} + +void QOpenGLTimerQuery_DestroyQOpenGLTimerQuery(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLTimerQuery(); +} + diff --git a/gui/qopengltimerquery.go b/gui/qopengltimerquery.go new file mode 100755 index 00000000..aa91f1bf --- /dev/null +++ b/gui/qopengltimerquery.go @@ -0,0 +1,94 @@ +package gui + +//#include "qopengltimerquery.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QOpenGLTimerQuery struct { + core.QObject +} + +type QOpenGLTimerQueryITF interface { + core.QObjectITF + QOpenGLTimerQueryPTR() *QOpenGLTimerQuery +} + +func PointerFromQOpenGLTimerQuery(ptr QOpenGLTimerQueryITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLTimerQueryPTR().Pointer() + } + return nil +} + +func QOpenGLTimerQueryFromPointer(ptr unsafe.Pointer) *QOpenGLTimerQuery { + var n = new(QOpenGLTimerQuery) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QOpenGLTimerQuery_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QOpenGLTimerQuery) QOpenGLTimerQueryPTR() *QOpenGLTimerQuery { + return ptr +} + +func NewQOpenGLTimerQuery(parent core.QObjectITF) *QOpenGLTimerQuery { + return QOpenGLTimerQueryFromPointer(unsafe.Pointer(C.QOpenGLTimerQuery_NewQOpenGLTimerQuery(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QOpenGLTimerQuery) Begin() { + if ptr.Pointer() != nil { + C.QOpenGLTimerQuery_Begin(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLTimerQuery) Create() bool { + if ptr.Pointer() != nil { + return C.QOpenGLTimerQuery_Create(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLTimerQuery) Destroy() { + if ptr.Pointer() != nil { + C.QOpenGLTimerQuery_Destroy(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLTimerQuery) End() { + if ptr.Pointer() != nil { + C.QOpenGLTimerQuery_End(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLTimerQuery) IsCreated() bool { + if ptr.Pointer() != nil { + return C.QOpenGLTimerQuery_IsCreated(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLTimerQuery) IsResultAvailable() bool { + if ptr.Pointer() != nil { + return C.QOpenGLTimerQuery_IsResultAvailable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLTimerQuery) RecordTimestamp() { + if ptr.Pointer() != nil { + C.QOpenGLTimerQuery_RecordTimestamp(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLTimerQuery) DestroyQOpenGLTimerQuery() { + if ptr.Pointer() != nil { + C.QOpenGLTimerQuery_DestroyQOpenGLTimerQuery(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/gui/qopengltimerquery.h b/gui/qopengltimerquery.h new file mode 100755 index 00000000..cb7fe0f2 --- /dev/null +++ b/gui/qopengltimerquery.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLTimerQuery_NewQOpenGLTimerQuery(QtObjectPtr parent); +void QOpenGLTimerQuery_Begin(QtObjectPtr ptr); +int QOpenGLTimerQuery_Create(QtObjectPtr ptr); +void QOpenGLTimerQuery_Destroy(QtObjectPtr ptr); +void QOpenGLTimerQuery_End(QtObjectPtr ptr); +int QOpenGLTimerQuery_IsCreated(QtObjectPtr ptr); +int QOpenGLTimerQuery_IsResultAvailable(QtObjectPtr ptr); +void QOpenGLTimerQuery_RecordTimestamp(QtObjectPtr ptr); +void QOpenGLTimerQuery_DestroyQOpenGLTimerQuery(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglversionprofile.cpp b/gui/qopenglversionprofile.cpp new file mode 100755 index 00000000..b0b87c42 --- /dev/null +++ b/gui/qopenglversionprofile.cpp @@ -0,0 +1,54 @@ +#include "qopenglversionprofile.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLVersionProfile: public QOpenGLVersionProfile { +public: +}; + +QtObjectPtr QOpenGLVersionProfile_NewQOpenGLVersionProfile(){ + return new QOpenGLVersionProfile(); +} + +QtObjectPtr QOpenGLVersionProfile_NewQOpenGLVersionProfile3(QtObjectPtr other){ + return new QOpenGLVersionProfile(*static_cast(other)); +} + +QtObjectPtr QOpenGLVersionProfile_NewQOpenGLVersionProfile2(QtObjectPtr format){ + return new QOpenGLVersionProfile(*static_cast(format)); +} + +int QOpenGLVersionProfile_HasProfiles(QtObjectPtr ptr){ + return static_cast(ptr)->hasProfiles(); +} + +int QOpenGLVersionProfile_IsLegacyVersion(QtObjectPtr ptr){ + return static_cast(ptr)->isLegacyVersion(); +} + +int QOpenGLVersionProfile_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QOpenGLVersionProfile_Profile(QtObjectPtr ptr){ + return static_cast(ptr)->profile(); +} + +void QOpenGLVersionProfile_SetProfile(QtObjectPtr ptr, int profile){ + static_cast(ptr)->setProfile(static_cast(profile)); +} + +void QOpenGLVersionProfile_SetVersion(QtObjectPtr ptr, int majorVersion, int minorVersion){ + static_cast(ptr)->setVersion(majorVersion, minorVersion); +} + +void QOpenGLVersionProfile_DestroyQOpenGLVersionProfile(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLVersionProfile(); +} + diff --git a/gui/qopenglversionprofile.go b/gui/qopenglversionprofile.go new file mode 100755 index 00000000..b2405826 --- /dev/null +++ b/gui/qopenglversionprofile.go @@ -0,0 +1,98 @@ +package gui + +//#include "qopenglversionprofile.h" +import "C" +import ( + "unsafe" +) + +type QOpenGLVersionProfile struct { + ptr unsafe.Pointer +} + +type QOpenGLVersionProfileITF interface { + QOpenGLVersionProfilePTR() *QOpenGLVersionProfile +} + +func (p *QOpenGLVersionProfile) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QOpenGLVersionProfile) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQOpenGLVersionProfile(ptr QOpenGLVersionProfileITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLVersionProfilePTR().Pointer() + } + return nil +} + +func QOpenGLVersionProfileFromPointer(ptr unsafe.Pointer) *QOpenGLVersionProfile { + var n = new(QOpenGLVersionProfile) + n.SetPointer(ptr) + return n +} + +func (ptr *QOpenGLVersionProfile) QOpenGLVersionProfilePTR() *QOpenGLVersionProfile { + return ptr +} + +func NewQOpenGLVersionProfile() *QOpenGLVersionProfile { + return QOpenGLVersionProfileFromPointer(unsafe.Pointer(C.QOpenGLVersionProfile_NewQOpenGLVersionProfile())) +} + +func NewQOpenGLVersionProfile3(other QOpenGLVersionProfileITF) *QOpenGLVersionProfile { + return QOpenGLVersionProfileFromPointer(unsafe.Pointer(C.QOpenGLVersionProfile_NewQOpenGLVersionProfile3(C.QtObjectPtr(PointerFromQOpenGLVersionProfile(other))))) +} + +func NewQOpenGLVersionProfile2(format QSurfaceFormatITF) *QOpenGLVersionProfile { + return QOpenGLVersionProfileFromPointer(unsafe.Pointer(C.QOpenGLVersionProfile_NewQOpenGLVersionProfile2(C.QtObjectPtr(PointerFromQSurfaceFormat(format))))) +} + +func (ptr *QOpenGLVersionProfile) HasProfiles() bool { + if ptr.Pointer() != nil { + return C.QOpenGLVersionProfile_HasProfiles(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLVersionProfile) IsLegacyVersion() bool { + if ptr.Pointer() != nil { + return C.QOpenGLVersionProfile_IsLegacyVersion(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLVersionProfile) IsValid() bool { + if ptr.Pointer() != nil { + return C.QOpenGLVersionProfile_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLVersionProfile) Profile() QSurfaceFormat__OpenGLContextProfile { + if ptr.Pointer() != nil { + return QSurfaceFormat__OpenGLContextProfile(C.QOpenGLVersionProfile_Profile(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLVersionProfile) SetProfile(profile QSurfaceFormat__OpenGLContextProfile) { + if ptr.Pointer() != nil { + C.QOpenGLVersionProfile_SetProfile(C.QtObjectPtr(ptr.Pointer()), C.int(profile)) + } +} + +func (ptr *QOpenGLVersionProfile) SetVersion(majorVersion int, minorVersion int) { + if ptr.Pointer() != nil { + C.QOpenGLVersionProfile_SetVersion(C.QtObjectPtr(ptr.Pointer()), C.int(majorVersion), C.int(minorVersion)) + } +} + +func (ptr *QOpenGLVersionProfile) DestroyQOpenGLVersionProfile() { + if ptr.Pointer() != nil { + C.QOpenGLVersionProfile_DestroyQOpenGLVersionProfile(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qopenglversionprofile.h b/gui/qopenglversionprofile.h new file mode 100755 index 00000000..d0a356e2 --- /dev/null +++ b/gui/qopenglversionprofile.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLVersionProfile_NewQOpenGLVersionProfile(); +QtObjectPtr QOpenGLVersionProfile_NewQOpenGLVersionProfile3(QtObjectPtr other); +QtObjectPtr QOpenGLVersionProfile_NewQOpenGLVersionProfile2(QtObjectPtr format); +int QOpenGLVersionProfile_HasProfiles(QtObjectPtr ptr); +int QOpenGLVersionProfile_IsLegacyVersion(QtObjectPtr ptr); +int QOpenGLVersionProfile_IsValid(QtObjectPtr ptr); +int QOpenGLVersionProfile_Profile(QtObjectPtr ptr); +void QOpenGLVersionProfile_SetProfile(QtObjectPtr ptr, int profile); +void QOpenGLVersionProfile_SetVersion(QtObjectPtr ptr, int majorVersion, int minorVersion); +void QOpenGLVersionProfile_DestroyQOpenGLVersionProfile(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglvertexarrayobject.cpp b/gui/qopenglvertexarrayobject.cpp new file mode 100755 index 00000000..49bf46dc --- /dev/null +++ b/gui/qopenglvertexarrayobject.cpp @@ -0,0 +1,41 @@ +#include "qopenglvertexarrayobject.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLVertexArrayObject: public QOpenGLVertexArrayObject { +public: +}; + +QtObjectPtr QOpenGLVertexArrayObject_NewQOpenGLVertexArrayObject(QtObjectPtr parent){ + return new QOpenGLVertexArrayObject(static_cast(parent)); +} + +void QOpenGLVertexArrayObject_Bind(QtObjectPtr ptr){ + static_cast(ptr)->bind(); +} + +int QOpenGLVertexArrayObject_Create(QtObjectPtr ptr){ + return static_cast(ptr)->create(); +} + +void QOpenGLVertexArrayObject_Destroy(QtObjectPtr ptr){ + static_cast(ptr)->destroy(); +} + +int QOpenGLVertexArrayObject_IsCreated(QtObjectPtr ptr){ + return static_cast(ptr)->isCreated(); +} + +void QOpenGLVertexArrayObject_Release(QtObjectPtr ptr){ + static_cast(ptr)->release(); +} + +void QOpenGLVertexArrayObject_DestroyQOpenGLVertexArrayObject(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLVertexArrayObject(); +} + diff --git a/gui/qopenglvertexarrayobject.go b/gui/qopenglvertexarrayobject.go new file mode 100755 index 00000000..872f34c0 --- /dev/null +++ b/gui/qopenglvertexarrayobject.go @@ -0,0 +1,81 @@ +package gui + +//#include "qopenglvertexarrayobject.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QOpenGLVertexArrayObject struct { + core.QObject +} + +type QOpenGLVertexArrayObjectITF interface { + core.QObjectITF + QOpenGLVertexArrayObjectPTR() *QOpenGLVertexArrayObject +} + +func PointerFromQOpenGLVertexArrayObject(ptr QOpenGLVertexArrayObjectITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLVertexArrayObjectPTR().Pointer() + } + return nil +} + +func QOpenGLVertexArrayObjectFromPointer(ptr unsafe.Pointer) *QOpenGLVertexArrayObject { + var n = new(QOpenGLVertexArrayObject) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QOpenGLVertexArrayObject_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QOpenGLVertexArrayObject) QOpenGLVertexArrayObjectPTR() *QOpenGLVertexArrayObject { + return ptr +} + +func NewQOpenGLVertexArrayObject(parent core.QObjectITF) *QOpenGLVertexArrayObject { + return QOpenGLVertexArrayObjectFromPointer(unsafe.Pointer(C.QOpenGLVertexArrayObject_NewQOpenGLVertexArrayObject(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QOpenGLVertexArrayObject) Bind() { + if ptr.Pointer() != nil { + C.QOpenGLVertexArrayObject_Bind(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLVertexArrayObject) Create() bool { + if ptr.Pointer() != nil { + return C.QOpenGLVertexArrayObject_Create(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLVertexArrayObject) Destroy() { + if ptr.Pointer() != nil { + C.QOpenGLVertexArrayObject_Destroy(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLVertexArrayObject) IsCreated() bool { + if ptr.Pointer() != nil { + return C.QOpenGLVertexArrayObject_IsCreated(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLVertexArrayObject) Release() { + if ptr.Pointer() != nil { + C.QOpenGLVertexArrayObject_Release(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLVertexArrayObject) DestroyQOpenGLVertexArrayObject() { + if ptr.Pointer() != nil { + C.QOpenGLVertexArrayObject_DestroyQOpenGLVertexArrayObject(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/gui/qopenglvertexarrayobject.h b/gui/qopenglvertexarrayobject.h new file mode 100755 index 00000000..904a2a8a --- /dev/null +++ b/gui/qopenglvertexarrayobject.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLVertexArrayObject_NewQOpenGLVertexArrayObject(QtObjectPtr parent); +void QOpenGLVertexArrayObject_Bind(QtObjectPtr ptr); +int QOpenGLVertexArrayObject_Create(QtObjectPtr ptr); +void QOpenGLVertexArrayObject_Destroy(QtObjectPtr ptr); +int QOpenGLVertexArrayObject_IsCreated(QtObjectPtr ptr); +void QOpenGLVertexArrayObject_Release(QtObjectPtr ptr); +void QOpenGLVertexArrayObject_DestroyQOpenGLVertexArrayObject(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qopenglwindow.cpp b/gui/qopenglwindow.cpp new file mode 100755 index 00000000..bcd60db7 --- /dev/null +++ b/gui/qopenglwindow.cpp @@ -0,0 +1,60 @@ +#include "qopenglwindow.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLWindow: public QOpenGLWindow { +public: +void Signal_FrameSwapped(){callbackQOpenGLWindowFrameSwapped(this->objectName().toUtf8().data());}; +}; + +QtObjectPtr QOpenGLWindow_NewQOpenGLWindow2(QtObjectPtr shareContext, int updateBehavior, QtObjectPtr parent){ + return new QOpenGLWindow(static_cast(shareContext), static_cast(updateBehavior), static_cast(parent)); +} + +QtObjectPtr QOpenGLWindow_NewQOpenGLWindow(int updateBehavior, QtObjectPtr parent){ + return new QOpenGLWindow(static_cast(updateBehavior), static_cast(parent)); +} + +QtObjectPtr QOpenGLWindow_Context(QtObjectPtr ptr){ + return static_cast(ptr)->context(); +} + +void QOpenGLWindow_DoneCurrent(QtObjectPtr ptr){ + static_cast(ptr)->doneCurrent(); +} + +void QOpenGLWindow_ConnectFrameSwapped(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QOpenGLWindow::frameSwapped), static_cast(ptr), static_cast(&MyQOpenGLWindow::Signal_FrameSwapped));; +} + +void QOpenGLWindow_DisconnectFrameSwapped(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QOpenGLWindow::frameSwapped), static_cast(ptr), static_cast(&MyQOpenGLWindow::Signal_FrameSwapped));; +} + +int QOpenGLWindow_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +void QOpenGLWindow_MakeCurrent(QtObjectPtr ptr){ + static_cast(ptr)->makeCurrent(); +} + +QtObjectPtr QOpenGLWindow_ShareContext(QtObjectPtr ptr){ + return static_cast(ptr)->shareContext(); +} + +int QOpenGLWindow_UpdateBehavior(QtObjectPtr ptr){ + return static_cast(ptr)->updateBehavior(); +} + +void QOpenGLWindow_DestroyQOpenGLWindow(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLWindow(); +} + diff --git a/gui/qopenglwindow.go b/gui/qopenglwindow.go new file mode 100755 index 00000000..1caf3679 --- /dev/null +++ b/gui/qopenglwindow.go @@ -0,0 +1,120 @@ +package gui + +//#include "qopenglwindow.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QOpenGLWindow struct { + QPaintDeviceWindow +} + +type QOpenGLWindowITF interface { + QPaintDeviceWindowITF + QOpenGLWindowPTR() *QOpenGLWindow +} + +func PointerFromQOpenGLWindow(ptr QOpenGLWindowITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLWindowPTR().Pointer() + } + return nil +} + +func QOpenGLWindowFromPointer(ptr unsafe.Pointer) *QOpenGLWindow { + var n = new(QOpenGLWindow) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QOpenGLWindow_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QOpenGLWindow) QOpenGLWindowPTR() *QOpenGLWindow { + return ptr +} + +//QOpenGLWindow::UpdateBehavior +type QOpenGLWindow__UpdateBehavior int + +var ( + QOpenGLWindow__NoPartialUpdate = QOpenGLWindow__UpdateBehavior(0) + QOpenGLWindow__PartialUpdateBlit = QOpenGLWindow__UpdateBehavior(1) + QOpenGLWindow__PartialUpdateBlend = QOpenGLWindow__UpdateBehavior(2) +) + +func NewQOpenGLWindow2(shareContext QOpenGLContextITF, updateBehavior QOpenGLWindow__UpdateBehavior, parent QWindowITF) *QOpenGLWindow { + return QOpenGLWindowFromPointer(unsafe.Pointer(C.QOpenGLWindow_NewQOpenGLWindow2(C.QtObjectPtr(PointerFromQOpenGLContext(shareContext)), C.int(updateBehavior), C.QtObjectPtr(PointerFromQWindow(parent))))) +} + +func NewQOpenGLWindow(updateBehavior QOpenGLWindow__UpdateBehavior, parent QWindowITF) *QOpenGLWindow { + return QOpenGLWindowFromPointer(unsafe.Pointer(C.QOpenGLWindow_NewQOpenGLWindow(C.int(updateBehavior), C.QtObjectPtr(PointerFromQWindow(parent))))) +} + +func (ptr *QOpenGLWindow) Context() *QOpenGLContext { + if ptr.Pointer() != nil { + return QOpenGLContextFromPointer(unsafe.Pointer(C.QOpenGLWindow_Context(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QOpenGLWindow) DoneCurrent() { + if ptr.Pointer() != nil { + C.QOpenGLWindow_DoneCurrent(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLWindow) ConnectFrameSwapped(f func()) { + if ptr.Pointer() != nil { + C.QOpenGLWindow_ConnectFrameSwapped(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "frameSwapped", f) + } +} + +func (ptr *QOpenGLWindow) DisconnectFrameSwapped() { + if ptr.Pointer() != nil { + C.QOpenGLWindow_DisconnectFrameSwapped(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "frameSwapped") + } +} + +//export callbackQOpenGLWindowFrameSwapped +func callbackQOpenGLWindowFrameSwapped(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "frameSwapped").(func())() +} + +func (ptr *QOpenGLWindow) IsValid() bool { + if ptr.Pointer() != nil { + return C.QOpenGLWindow_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLWindow) MakeCurrent() { + if ptr.Pointer() != nil { + C.QOpenGLWindow_MakeCurrent(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLWindow) ShareContext() *QOpenGLContext { + if ptr.Pointer() != nil { + return QOpenGLContextFromPointer(unsafe.Pointer(C.QOpenGLWindow_ShareContext(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QOpenGLWindow) UpdateBehavior() QOpenGLWindow__UpdateBehavior { + if ptr.Pointer() != nil { + return QOpenGLWindow__UpdateBehavior(C.QOpenGLWindow_UpdateBehavior(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLWindow) DestroyQOpenGLWindow() { + if ptr.Pointer() != nil { + C.QOpenGLWindow_DestroyQOpenGLWindow(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/gui/qopenglwindow.h b/gui/qopenglwindow.h new file mode 100755 index 00000000..34253e9c --- /dev/null +++ b/gui/qopenglwindow.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLWindow_NewQOpenGLWindow2(QtObjectPtr shareContext, int updateBehavior, QtObjectPtr parent); +QtObjectPtr QOpenGLWindow_NewQOpenGLWindow(int updateBehavior, QtObjectPtr parent); +QtObjectPtr QOpenGLWindow_Context(QtObjectPtr ptr); +void QOpenGLWindow_DoneCurrent(QtObjectPtr ptr); +void QOpenGLWindow_ConnectFrameSwapped(QtObjectPtr ptr); +void QOpenGLWindow_DisconnectFrameSwapped(QtObjectPtr ptr); +int QOpenGLWindow_IsValid(QtObjectPtr ptr); +void QOpenGLWindow_MakeCurrent(QtObjectPtr ptr); +QtObjectPtr QOpenGLWindow_ShareContext(QtObjectPtr ptr); +int QOpenGLWindow_UpdateBehavior(QtObjectPtr ptr); +void QOpenGLWindow_DestroyQOpenGLWindow(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qpagedpaintdevice.cpp b/gui/qpagedpaintdevice.cpp new file mode 100755 index 00000000..42b8712b --- /dev/null +++ b/gui/qpagedpaintdevice.cpp @@ -0,0 +1,58 @@ +#include "qpagedpaintdevice.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPagedPaintDevice: public QPagedPaintDevice { +public: +}; + +int QPagedPaintDevice_NewPage(QtObjectPtr ptr){ + return static_cast(ptr)->newPage(); +} + +int QPagedPaintDevice_PageSize(QtObjectPtr ptr){ + return static_cast(ptr)->pageSize(); +} + +int QPagedPaintDevice_SetPageLayout(QtObjectPtr ptr, QtObjectPtr newPageLayout){ + return static_cast(ptr)->setPageLayout(*static_cast(newPageLayout)); +} + +int QPagedPaintDevice_SetPageMargins(QtObjectPtr ptr, QtObjectPtr margins){ + return static_cast(ptr)->setPageMargins(*static_cast(margins)); +} + +int QPagedPaintDevice_SetPageMargins2(QtObjectPtr ptr, QtObjectPtr margins, int units){ + return static_cast(ptr)->setPageMargins(*static_cast(margins), static_cast(units)); +} + +int QPagedPaintDevice_SetPageOrientation(QtObjectPtr ptr, int orientation){ + return static_cast(ptr)->setPageOrientation(static_cast(orientation)); +} + +int QPagedPaintDevice_SetPageSize(QtObjectPtr ptr, QtObjectPtr pageSize){ + return static_cast(ptr)->setPageSize(*static_cast(pageSize)); +} + +void QPagedPaintDevice_SetPageSize2(QtObjectPtr ptr, int size){ + static_cast(ptr)->setPageSize(static_cast(size)); +} + +void QPagedPaintDevice_SetPageSizeMM(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->setPageSizeMM(*static_cast(size)); +} + +void QPagedPaintDevice_DestroyQPagedPaintDevice(QtObjectPtr ptr){ + static_cast(ptr)->~QPagedPaintDevice(); +} + diff --git a/gui/qpagedpaintdevice.go b/gui/qpagedpaintdevice.go new file mode 100755 index 00000000..433f3ecf --- /dev/null +++ b/gui/qpagedpaintdevice.go @@ -0,0 +1,234 @@ +package gui + +//#include "qpagedpaintdevice.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QPagedPaintDevice struct { + QPaintDevice +} + +type QPagedPaintDeviceITF interface { + QPaintDeviceITF + QPagedPaintDevicePTR() *QPagedPaintDevice +} + +func PointerFromQPagedPaintDevice(ptr QPagedPaintDeviceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPagedPaintDevicePTR().Pointer() + } + return nil +} + +func QPagedPaintDeviceFromPointer(ptr unsafe.Pointer) *QPagedPaintDevice { + var n = new(QPagedPaintDevice) + n.SetPointer(ptr) + return n +} + +func (ptr *QPagedPaintDevice) QPagedPaintDevicePTR() *QPagedPaintDevice { + return ptr +} + +//QPagedPaintDevice::PageSize +type QPagedPaintDevice__PageSize int + +var ( + QPagedPaintDevice__A4 = QPagedPaintDevice__PageSize(0) + QPagedPaintDevice__B5 = QPagedPaintDevice__PageSize(1) + QPagedPaintDevice__Letter = QPagedPaintDevice__PageSize(2) + QPagedPaintDevice__Legal = QPagedPaintDevice__PageSize(3) + QPagedPaintDevice__Executive = QPagedPaintDevice__PageSize(4) + QPagedPaintDevice__A0 = QPagedPaintDevice__PageSize(5) + QPagedPaintDevice__A1 = QPagedPaintDevice__PageSize(6) + QPagedPaintDevice__A2 = QPagedPaintDevice__PageSize(7) + QPagedPaintDevice__A3 = QPagedPaintDevice__PageSize(8) + QPagedPaintDevice__A5 = QPagedPaintDevice__PageSize(9) + QPagedPaintDevice__A6 = QPagedPaintDevice__PageSize(10) + QPagedPaintDevice__A7 = QPagedPaintDevice__PageSize(11) + QPagedPaintDevice__A8 = QPagedPaintDevice__PageSize(12) + QPagedPaintDevice__A9 = QPagedPaintDevice__PageSize(13) + QPagedPaintDevice__B0 = QPagedPaintDevice__PageSize(14) + QPagedPaintDevice__B1 = QPagedPaintDevice__PageSize(15) + QPagedPaintDevice__B10 = QPagedPaintDevice__PageSize(16) + QPagedPaintDevice__B2 = QPagedPaintDevice__PageSize(17) + QPagedPaintDevice__B3 = QPagedPaintDevice__PageSize(18) + QPagedPaintDevice__B4 = QPagedPaintDevice__PageSize(19) + QPagedPaintDevice__B6 = QPagedPaintDevice__PageSize(20) + QPagedPaintDevice__B7 = QPagedPaintDevice__PageSize(21) + QPagedPaintDevice__B8 = QPagedPaintDevice__PageSize(22) + QPagedPaintDevice__B9 = QPagedPaintDevice__PageSize(23) + QPagedPaintDevice__C5E = QPagedPaintDevice__PageSize(24) + QPagedPaintDevice__Comm10E = QPagedPaintDevice__PageSize(25) + QPagedPaintDevice__DLE = QPagedPaintDevice__PageSize(26) + QPagedPaintDevice__Folio = QPagedPaintDevice__PageSize(27) + QPagedPaintDevice__Ledger = QPagedPaintDevice__PageSize(28) + QPagedPaintDevice__Tabloid = QPagedPaintDevice__PageSize(29) + QPagedPaintDevice__Custom = QPagedPaintDevice__PageSize(30) + QPagedPaintDevice__A10 = QPagedPaintDevice__PageSize(31) + QPagedPaintDevice__A3Extra = QPagedPaintDevice__PageSize(32) + QPagedPaintDevice__A4Extra = QPagedPaintDevice__PageSize(33) + QPagedPaintDevice__A4Plus = QPagedPaintDevice__PageSize(34) + QPagedPaintDevice__A4Small = QPagedPaintDevice__PageSize(35) + QPagedPaintDevice__A5Extra = QPagedPaintDevice__PageSize(36) + QPagedPaintDevice__B5Extra = QPagedPaintDevice__PageSize(37) + QPagedPaintDevice__JisB0 = QPagedPaintDevice__PageSize(38) + QPagedPaintDevice__JisB1 = QPagedPaintDevice__PageSize(39) + QPagedPaintDevice__JisB2 = QPagedPaintDevice__PageSize(40) + QPagedPaintDevice__JisB3 = QPagedPaintDevice__PageSize(41) + QPagedPaintDevice__JisB4 = QPagedPaintDevice__PageSize(42) + QPagedPaintDevice__JisB5 = QPagedPaintDevice__PageSize(43) + QPagedPaintDevice__JisB6 = QPagedPaintDevice__PageSize(44) + QPagedPaintDevice__JisB7 = QPagedPaintDevice__PageSize(45) + QPagedPaintDevice__JisB8 = QPagedPaintDevice__PageSize(46) + QPagedPaintDevice__JisB9 = QPagedPaintDevice__PageSize(47) + QPagedPaintDevice__JisB10 = QPagedPaintDevice__PageSize(48) + QPagedPaintDevice__AnsiC = QPagedPaintDevice__PageSize(49) + QPagedPaintDevice__AnsiD = QPagedPaintDevice__PageSize(50) + QPagedPaintDevice__AnsiE = QPagedPaintDevice__PageSize(51) + QPagedPaintDevice__LegalExtra = QPagedPaintDevice__PageSize(52) + QPagedPaintDevice__LetterExtra = QPagedPaintDevice__PageSize(53) + QPagedPaintDevice__LetterPlus = QPagedPaintDevice__PageSize(54) + QPagedPaintDevice__LetterSmall = QPagedPaintDevice__PageSize(55) + QPagedPaintDevice__TabloidExtra = QPagedPaintDevice__PageSize(56) + QPagedPaintDevice__ArchA = QPagedPaintDevice__PageSize(57) + QPagedPaintDevice__ArchB = QPagedPaintDevice__PageSize(58) + QPagedPaintDevice__ArchC = QPagedPaintDevice__PageSize(59) + QPagedPaintDevice__ArchD = QPagedPaintDevice__PageSize(60) + QPagedPaintDevice__ArchE = QPagedPaintDevice__PageSize(61) + QPagedPaintDevice__Imperial7x9 = QPagedPaintDevice__PageSize(62) + QPagedPaintDevice__Imperial8x10 = QPagedPaintDevice__PageSize(63) + QPagedPaintDevice__Imperial9x11 = QPagedPaintDevice__PageSize(64) + QPagedPaintDevice__Imperial9x12 = QPagedPaintDevice__PageSize(65) + QPagedPaintDevice__Imperial10x11 = QPagedPaintDevice__PageSize(66) + QPagedPaintDevice__Imperial10x13 = QPagedPaintDevice__PageSize(67) + QPagedPaintDevice__Imperial10x14 = QPagedPaintDevice__PageSize(68) + QPagedPaintDevice__Imperial12x11 = QPagedPaintDevice__PageSize(69) + QPagedPaintDevice__Imperial15x11 = QPagedPaintDevice__PageSize(70) + QPagedPaintDevice__ExecutiveStandard = QPagedPaintDevice__PageSize(71) + QPagedPaintDevice__Note = QPagedPaintDevice__PageSize(72) + QPagedPaintDevice__Quarto = QPagedPaintDevice__PageSize(73) + QPagedPaintDevice__Statement = QPagedPaintDevice__PageSize(74) + QPagedPaintDevice__SuperA = QPagedPaintDevice__PageSize(75) + QPagedPaintDevice__SuperB = QPagedPaintDevice__PageSize(76) + QPagedPaintDevice__Postcard = QPagedPaintDevice__PageSize(77) + QPagedPaintDevice__DoublePostcard = QPagedPaintDevice__PageSize(78) + QPagedPaintDevice__Prc16K = QPagedPaintDevice__PageSize(79) + QPagedPaintDevice__Prc32K = QPagedPaintDevice__PageSize(80) + QPagedPaintDevice__Prc32KBig = QPagedPaintDevice__PageSize(81) + QPagedPaintDevice__FanFoldUS = QPagedPaintDevice__PageSize(82) + QPagedPaintDevice__FanFoldGerman = QPagedPaintDevice__PageSize(83) + QPagedPaintDevice__FanFoldGermanLegal = QPagedPaintDevice__PageSize(84) + QPagedPaintDevice__EnvelopeB4 = QPagedPaintDevice__PageSize(85) + QPagedPaintDevice__EnvelopeB5 = QPagedPaintDevice__PageSize(86) + QPagedPaintDevice__EnvelopeB6 = QPagedPaintDevice__PageSize(87) + QPagedPaintDevice__EnvelopeC0 = QPagedPaintDevice__PageSize(88) + QPagedPaintDevice__EnvelopeC1 = QPagedPaintDevice__PageSize(89) + QPagedPaintDevice__EnvelopeC2 = QPagedPaintDevice__PageSize(90) + QPagedPaintDevice__EnvelopeC3 = QPagedPaintDevice__PageSize(91) + QPagedPaintDevice__EnvelopeC4 = QPagedPaintDevice__PageSize(92) + QPagedPaintDevice__EnvelopeC6 = QPagedPaintDevice__PageSize(93) + QPagedPaintDevice__EnvelopeC65 = QPagedPaintDevice__PageSize(94) + QPagedPaintDevice__EnvelopeC7 = QPagedPaintDevice__PageSize(95) + QPagedPaintDevice__Envelope9 = QPagedPaintDevice__PageSize(96) + QPagedPaintDevice__Envelope11 = QPagedPaintDevice__PageSize(97) + QPagedPaintDevice__Envelope12 = QPagedPaintDevice__PageSize(98) + QPagedPaintDevice__Envelope14 = QPagedPaintDevice__PageSize(99) + QPagedPaintDevice__EnvelopeMonarch = QPagedPaintDevice__PageSize(100) + QPagedPaintDevice__EnvelopePersonal = QPagedPaintDevice__PageSize(101) + QPagedPaintDevice__EnvelopeChou3 = QPagedPaintDevice__PageSize(102) + QPagedPaintDevice__EnvelopeChou4 = QPagedPaintDevice__PageSize(103) + QPagedPaintDevice__EnvelopeInvite = QPagedPaintDevice__PageSize(104) + QPagedPaintDevice__EnvelopeItalian = QPagedPaintDevice__PageSize(105) + QPagedPaintDevice__EnvelopeKaku2 = QPagedPaintDevice__PageSize(106) + QPagedPaintDevice__EnvelopeKaku3 = QPagedPaintDevice__PageSize(107) + QPagedPaintDevice__EnvelopePrc1 = QPagedPaintDevice__PageSize(108) + QPagedPaintDevice__EnvelopePrc2 = QPagedPaintDevice__PageSize(109) + QPagedPaintDevice__EnvelopePrc3 = QPagedPaintDevice__PageSize(110) + QPagedPaintDevice__EnvelopePrc4 = QPagedPaintDevice__PageSize(111) + QPagedPaintDevice__EnvelopePrc5 = QPagedPaintDevice__PageSize(112) + QPagedPaintDevice__EnvelopePrc6 = QPagedPaintDevice__PageSize(113) + QPagedPaintDevice__EnvelopePrc7 = QPagedPaintDevice__PageSize(114) + QPagedPaintDevice__EnvelopePrc8 = QPagedPaintDevice__PageSize(115) + QPagedPaintDevice__EnvelopePrc9 = QPagedPaintDevice__PageSize(116) + QPagedPaintDevice__EnvelopePrc10 = QPagedPaintDevice__PageSize(117) + QPagedPaintDevice__EnvelopeYou4 = QPagedPaintDevice__PageSize(118) + QPagedPaintDevice__LastPageSize = QPagedPaintDevice__PageSize(QPagedPaintDevice__EnvelopeYou4) + QPagedPaintDevice__NPageSize = QPagedPaintDevice__PageSize(QPagedPaintDevice__LastPageSize) + QPagedPaintDevice__NPaperSize = QPagedPaintDevice__PageSize(QPagedPaintDevice__LastPageSize) + QPagedPaintDevice__AnsiA = QPagedPaintDevice__PageSize(QPagedPaintDevice__Letter) + QPagedPaintDevice__AnsiB = QPagedPaintDevice__PageSize(QPagedPaintDevice__Ledger) + QPagedPaintDevice__EnvelopeC5 = QPagedPaintDevice__PageSize(QPagedPaintDevice__C5E) + QPagedPaintDevice__EnvelopeDL = QPagedPaintDevice__PageSize(QPagedPaintDevice__DLE) + QPagedPaintDevice__Envelope10 = QPagedPaintDevice__PageSize(QPagedPaintDevice__Comm10E) +) + +func (ptr *QPagedPaintDevice) NewPage() bool { + if ptr.Pointer() != nil { + return C.QPagedPaintDevice_NewPage(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPagedPaintDevice) PageSize() QPagedPaintDevice__PageSize { + if ptr.Pointer() != nil { + return QPagedPaintDevice__PageSize(C.QPagedPaintDevice_PageSize(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPagedPaintDevice) SetPageLayout(newPageLayout QPageLayoutITF) bool { + if ptr.Pointer() != nil { + return C.QPagedPaintDevice_SetPageLayout(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPageLayout(newPageLayout))) != 0 + } + return false +} + +func (ptr *QPagedPaintDevice) SetPageMargins(margins core.QMarginsFITF) bool { + if ptr.Pointer() != nil { + return C.QPagedPaintDevice_SetPageMargins(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQMarginsF(margins))) != 0 + } + return false +} + +func (ptr *QPagedPaintDevice) SetPageMargins2(margins core.QMarginsFITF, units QPageLayout__Unit) bool { + if ptr.Pointer() != nil { + return C.QPagedPaintDevice_SetPageMargins2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQMarginsF(margins)), C.int(units)) != 0 + } + return false +} + +func (ptr *QPagedPaintDevice) SetPageOrientation(orientation QPageLayout__Orientation) bool { + if ptr.Pointer() != nil { + return C.QPagedPaintDevice_SetPageOrientation(C.QtObjectPtr(ptr.Pointer()), C.int(orientation)) != 0 + } + return false +} + +func (ptr *QPagedPaintDevice) SetPageSize(pageSize QPageSizeITF) bool { + if ptr.Pointer() != nil { + return C.QPagedPaintDevice_SetPageSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPageSize(pageSize))) != 0 + } + return false +} + +func (ptr *QPagedPaintDevice) SetPageSize2(size QPagedPaintDevice__PageSize) { + if ptr.Pointer() != nil { + C.QPagedPaintDevice_SetPageSize2(C.QtObjectPtr(ptr.Pointer()), C.int(size)) + } +} + +func (ptr *QPagedPaintDevice) SetPageSizeMM(size core.QSizeFITF) { + if ptr.Pointer() != nil { + C.QPagedPaintDevice_SetPageSizeMM(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSizeF(size))) + } +} + +func (ptr *QPagedPaintDevice) DestroyQPagedPaintDevice() { + if ptr.Pointer() != nil { + C.QPagedPaintDevice_DestroyQPagedPaintDevice(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qpagedpaintdevice.h b/gui/qpagedpaintdevice.h new file mode 100755 index 00000000..c670811c --- /dev/null +++ b/gui/qpagedpaintdevice.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QPagedPaintDevice_NewPage(QtObjectPtr ptr); +int QPagedPaintDevice_PageSize(QtObjectPtr ptr); +int QPagedPaintDevice_SetPageLayout(QtObjectPtr ptr, QtObjectPtr newPageLayout); +int QPagedPaintDevice_SetPageMargins(QtObjectPtr ptr, QtObjectPtr margins); +int QPagedPaintDevice_SetPageMargins2(QtObjectPtr ptr, QtObjectPtr margins, int units); +int QPagedPaintDevice_SetPageOrientation(QtObjectPtr ptr, int orientation); +int QPagedPaintDevice_SetPageSize(QtObjectPtr ptr, QtObjectPtr pageSize); +void QPagedPaintDevice_SetPageSize2(QtObjectPtr ptr, int size); +void QPagedPaintDevice_SetPageSizeMM(QtObjectPtr ptr, QtObjectPtr size); +void QPagedPaintDevice_DestroyQPagedPaintDevice(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qpagelayout.cpp b/gui/qpagelayout.cpp new file mode 100755 index 00000000..37d8cf88 --- /dev/null +++ b/gui/qpagelayout.cpp @@ -0,0 +1,79 @@ +#include "qpagelayout.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPageLayout: public QPageLayout { +public: +}; + +QtObjectPtr QPageLayout_NewQPageLayout(){ + return new QPageLayout(); +} + +QtObjectPtr QPageLayout_NewQPageLayout3(QtObjectPtr other){ + return new QPageLayout(*static_cast(other)); +} + +QtObjectPtr QPageLayout_NewQPageLayout2(QtObjectPtr pageSize, int orientation, QtObjectPtr margins, int units, QtObjectPtr minMargins){ + return new QPageLayout(*static_cast(pageSize), static_cast(orientation), *static_cast(margins), static_cast(units), *static_cast(minMargins)); +} + +int QPageLayout_IsEquivalentTo(QtObjectPtr ptr, QtObjectPtr other){ + return static_cast(ptr)->isEquivalentTo(*static_cast(other)); +} + +int QPageLayout_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QPageLayout_Mode(QtObjectPtr ptr){ + return static_cast(ptr)->mode(); +} + +int QPageLayout_Orientation(QtObjectPtr ptr){ + return static_cast(ptr)->orientation(); +} + +int QPageLayout_SetMargins(QtObjectPtr ptr, QtObjectPtr margins){ + return static_cast(ptr)->setMargins(*static_cast(margins)); +} + +void QPageLayout_SetMinimumMargins(QtObjectPtr ptr, QtObjectPtr minMargins){ + static_cast(ptr)->setMinimumMargins(*static_cast(minMargins)); +} + +void QPageLayout_SetMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setMode(static_cast(mode)); +} + +void QPageLayout_SetOrientation(QtObjectPtr ptr, int orientation){ + static_cast(ptr)->setOrientation(static_cast(orientation)); +} + +void QPageLayout_SetPageSize(QtObjectPtr ptr, QtObjectPtr pageSize, QtObjectPtr minMargins){ + static_cast(ptr)->setPageSize(*static_cast(pageSize), *static_cast(minMargins)); +} + +void QPageLayout_SetUnits(QtObjectPtr ptr, int units){ + static_cast(ptr)->setUnits(static_cast(units)); +} + +void QPageLayout_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +int QPageLayout_Units(QtObjectPtr ptr){ + return static_cast(ptr)->units(); +} + +void QPageLayout_DestroyQPageLayout(QtObjectPtr ptr){ + static_cast(ptr)->~QPageLayout(); +} + diff --git a/gui/qpagelayout.go b/gui/qpagelayout.go new file mode 100755 index 00000000..6d14beaa --- /dev/null +++ b/gui/qpagelayout.go @@ -0,0 +1,165 @@ +package gui + +//#include "qpagelayout.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QPageLayout struct { + ptr unsafe.Pointer +} + +type QPageLayoutITF interface { + QPageLayoutPTR() *QPageLayout +} + +func (p *QPageLayout) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPageLayout) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPageLayout(ptr QPageLayoutITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPageLayoutPTR().Pointer() + } + return nil +} + +func QPageLayoutFromPointer(ptr unsafe.Pointer) *QPageLayout { + var n = new(QPageLayout) + n.SetPointer(ptr) + return n +} + +func (ptr *QPageLayout) QPageLayoutPTR() *QPageLayout { + return ptr +} + +//QPageLayout::Mode +type QPageLayout__Mode int + +var ( + QPageLayout__StandardMode = QPageLayout__Mode(0) + QPageLayout__FullPageMode = QPageLayout__Mode(1) +) + +//QPageLayout::Orientation +type QPageLayout__Orientation int + +var ( + QPageLayout__Portrait = QPageLayout__Orientation(0) + QPageLayout__Landscape = QPageLayout__Orientation(1) +) + +//QPageLayout::Unit +type QPageLayout__Unit int + +var ( + QPageLayout__Millimeter = QPageLayout__Unit(0) + QPageLayout__Point = QPageLayout__Unit(1) + QPageLayout__Inch = QPageLayout__Unit(2) + QPageLayout__Pica = QPageLayout__Unit(3) + QPageLayout__Didot = QPageLayout__Unit(4) + QPageLayout__Cicero = QPageLayout__Unit(5) +) + +func NewQPageLayout() *QPageLayout { + return QPageLayoutFromPointer(unsafe.Pointer(C.QPageLayout_NewQPageLayout())) +} + +func NewQPageLayout3(other QPageLayoutITF) *QPageLayout { + return QPageLayoutFromPointer(unsafe.Pointer(C.QPageLayout_NewQPageLayout3(C.QtObjectPtr(PointerFromQPageLayout(other))))) +} + +func NewQPageLayout2(pageSize QPageSizeITF, orientation QPageLayout__Orientation, margins core.QMarginsFITF, units QPageLayout__Unit, minMargins core.QMarginsFITF) *QPageLayout { + return QPageLayoutFromPointer(unsafe.Pointer(C.QPageLayout_NewQPageLayout2(C.QtObjectPtr(PointerFromQPageSize(pageSize)), C.int(orientation), C.QtObjectPtr(core.PointerFromQMarginsF(margins)), C.int(units), C.QtObjectPtr(core.PointerFromQMarginsF(minMargins))))) +} + +func (ptr *QPageLayout) IsEquivalentTo(other QPageLayoutITF) bool { + if ptr.Pointer() != nil { + return C.QPageLayout_IsEquivalentTo(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPageLayout(other))) != 0 + } + return false +} + +func (ptr *QPageLayout) IsValid() bool { + if ptr.Pointer() != nil { + return C.QPageLayout_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPageLayout) Mode() QPageLayout__Mode { + if ptr.Pointer() != nil { + return QPageLayout__Mode(C.QPageLayout_Mode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPageLayout) Orientation() QPageLayout__Orientation { + if ptr.Pointer() != nil { + return QPageLayout__Orientation(C.QPageLayout_Orientation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPageLayout) SetMargins(margins core.QMarginsFITF) bool { + if ptr.Pointer() != nil { + return C.QPageLayout_SetMargins(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQMarginsF(margins))) != 0 + } + return false +} + +func (ptr *QPageLayout) SetMinimumMargins(minMargins core.QMarginsFITF) { + if ptr.Pointer() != nil { + C.QPageLayout_SetMinimumMargins(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQMarginsF(minMargins))) + } +} + +func (ptr *QPageLayout) SetMode(mode QPageLayout__Mode) { + if ptr.Pointer() != nil { + C.QPageLayout_SetMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QPageLayout) SetOrientation(orientation QPageLayout__Orientation) { + if ptr.Pointer() != nil { + C.QPageLayout_SetOrientation(C.QtObjectPtr(ptr.Pointer()), C.int(orientation)) + } +} + +func (ptr *QPageLayout) SetPageSize(pageSize QPageSizeITF, minMargins core.QMarginsFITF) { + if ptr.Pointer() != nil { + C.QPageLayout_SetPageSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPageSize(pageSize)), C.QtObjectPtr(core.PointerFromQMarginsF(minMargins))) + } +} + +func (ptr *QPageLayout) SetUnits(units QPageLayout__Unit) { + if ptr.Pointer() != nil { + C.QPageLayout_SetUnits(C.QtObjectPtr(ptr.Pointer()), C.int(units)) + } +} + +func (ptr *QPageLayout) Swap(other QPageLayoutITF) { + if ptr.Pointer() != nil { + C.QPageLayout_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPageLayout(other))) + } +} + +func (ptr *QPageLayout) Units() QPageLayout__Unit { + if ptr.Pointer() != nil { + return QPageLayout__Unit(C.QPageLayout_Units(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPageLayout) DestroyQPageLayout() { + if ptr.Pointer() != nil { + C.QPageLayout_DestroyQPageLayout(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qpagelayout.h b/gui/qpagelayout.h new file mode 100755 index 00000000..1da67fd7 --- /dev/null +++ b/gui/qpagelayout.h @@ -0,0 +1,25 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QPageLayout_NewQPageLayout(); +QtObjectPtr QPageLayout_NewQPageLayout3(QtObjectPtr other); +QtObjectPtr QPageLayout_NewQPageLayout2(QtObjectPtr pageSize, int orientation, QtObjectPtr margins, int units, QtObjectPtr minMargins); +int QPageLayout_IsEquivalentTo(QtObjectPtr ptr, QtObjectPtr other); +int QPageLayout_IsValid(QtObjectPtr ptr); +int QPageLayout_Mode(QtObjectPtr ptr); +int QPageLayout_Orientation(QtObjectPtr ptr); +int QPageLayout_SetMargins(QtObjectPtr ptr, QtObjectPtr margins); +void QPageLayout_SetMinimumMargins(QtObjectPtr ptr, QtObjectPtr minMargins); +void QPageLayout_SetMode(QtObjectPtr ptr, int mode); +void QPageLayout_SetOrientation(QtObjectPtr ptr, int orientation); +void QPageLayout_SetPageSize(QtObjectPtr ptr, QtObjectPtr pageSize, QtObjectPtr minMargins); +void QPageLayout_SetUnits(QtObjectPtr ptr, int units); +void QPageLayout_Swap(QtObjectPtr ptr, QtObjectPtr other); +int QPageLayout_Units(QtObjectPtr ptr); +void QPageLayout_DestroyQPageLayout(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qpagesize.cpp b/gui/qpagesize.cpp new file mode 100755 index 00000000..eff10327 --- /dev/null +++ b/gui/qpagesize.cpp @@ -0,0 +1,98 @@ +#include "qpagesize.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPageSize: public QPageSize { +public: +}; + +QtObjectPtr QPageSize_NewQPageSize(){ + return new QPageSize(); +} + +QtObjectPtr QPageSize_NewQPageSize2(int pageSize){ + return new QPageSize(static_cast(pageSize)); +} + +QtObjectPtr QPageSize_NewQPageSize5(QtObjectPtr other){ + return new QPageSize(*static_cast(other)); +} + +QtObjectPtr QPageSize_NewQPageSize3(QtObjectPtr pointSize, char* name, int matchPolicy){ + return new QPageSize(*static_cast(pointSize), QString(name), static_cast(matchPolicy)); +} + +QtObjectPtr QPageSize_NewQPageSize4(QtObjectPtr size, int units, char* name, int matchPolicy){ + return new QPageSize(*static_cast(size), static_cast(units), QString(name), static_cast(matchPolicy)); +} + +int QPageSize_QPageSize_DefinitionUnits2(int pageSizeId){ + return QPageSize::definitionUnits(static_cast(pageSizeId)); +} + +int QPageSize_DefinitionUnits(QtObjectPtr ptr){ + return static_cast(ptr)->definitionUnits(); +} + +int QPageSize_QPageSize_Id2(QtObjectPtr pointSize, int matchPolicy){ + return QPageSize::id(*static_cast(pointSize), static_cast(matchPolicy)); +} + +int QPageSize_QPageSize_Id3(QtObjectPtr size, int units, int matchPolicy){ + return QPageSize::id(*static_cast(size), static_cast(units), static_cast(matchPolicy)); +} + +int QPageSize_QPageSize_Id4(int windowsId){ + return QPageSize::id(windowsId); +} + +int QPageSize_Id(QtObjectPtr ptr){ + return static_cast(ptr)->id(); +} + +int QPageSize_IsEquivalentTo(QtObjectPtr ptr, QtObjectPtr other){ + return static_cast(ptr)->isEquivalentTo(*static_cast(other)); +} + +int QPageSize_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +char* QPageSize_QPageSize_Key2(int pageSizeId){ + return QPageSize::key(static_cast(pageSizeId)).toUtf8().data(); +} + +char* QPageSize_Key(QtObjectPtr ptr){ + return static_cast(ptr)->key().toUtf8().data(); +} + +char* QPageSize_QPageSize_Name2(int pageSizeId){ + return QPageSize::name(static_cast(pageSizeId)).toUtf8().data(); +} + +char* QPageSize_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +void QPageSize_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +int QPageSize_QPageSize_WindowsId2(int pageSizeId){ + return QPageSize::windowsId(static_cast(pageSizeId)); +} + +int QPageSize_WindowsId(QtObjectPtr ptr){ + return static_cast(ptr)->windowsId(); +} + +void QPageSize_DestroyQPageSize(QtObjectPtr ptr){ + static_cast(ptr)->~QPageSize(); +} + diff --git a/gui/qpagesize.go b/gui/qpagesize.go new file mode 100755 index 00000000..32b97978 --- /dev/null +++ b/gui/qpagesize.go @@ -0,0 +1,304 @@ +package gui + +//#include "qpagesize.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QPageSize struct { + ptr unsafe.Pointer +} + +type QPageSizeITF interface { + QPageSizePTR() *QPageSize +} + +func (p *QPageSize) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPageSize) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPageSize(ptr QPageSizeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPageSizePTR().Pointer() + } + return nil +} + +func QPageSizeFromPointer(ptr unsafe.Pointer) *QPageSize { + var n = new(QPageSize) + n.SetPointer(ptr) + return n +} + +func (ptr *QPageSize) QPageSizePTR() *QPageSize { + return ptr +} + +//QPageSize::PageSizeId +type QPageSize__PageSizeId int + +var ( + QPageSize__A4 = QPageSize__PageSizeId(0) + QPageSize__B5 = QPageSize__PageSizeId(1) + QPageSize__Letter = QPageSize__PageSizeId(2) + QPageSize__Legal = QPageSize__PageSizeId(3) + QPageSize__Executive = QPageSize__PageSizeId(4) + QPageSize__A0 = QPageSize__PageSizeId(5) + QPageSize__A1 = QPageSize__PageSizeId(6) + QPageSize__A2 = QPageSize__PageSizeId(7) + QPageSize__A3 = QPageSize__PageSizeId(8) + QPageSize__A5 = QPageSize__PageSizeId(9) + QPageSize__A6 = QPageSize__PageSizeId(10) + QPageSize__A7 = QPageSize__PageSizeId(11) + QPageSize__A8 = QPageSize__PageSizeId(12) + QPageSize__A9 = QPageSize__PageSizeId(13) + QPageSize__B0 = QPageSize__PageSizeId(14) + QPageSize__B1 = QPageSize__PageSizeId(15) + QPageSize__B10 = QPageSize__PageSizeId(16) + QPageSize__B2 = QPageSize__PageSizeId(17) + QPageSize__B3 = QPageSize__PageSizeId(18) + QPageSize__B4 = QPageSize__PageSizeId(19) + QPageSize__B6 = QPageSize__PageSizeId(20) + QPageSize__B7 = QPageSize__PageSizeId(21) + QPageSize__B8 = QPageSize__PageSizeId(22) + QPageSize__B9 = QPageSize__PageSizeId(23) + QPageSize__C5E = QPageSize__PageSizeId(24) + QPageSize__Comm10E = QPageSize__PageSizeId(25) + QPageSize__DLE = QPageSize__PageSizeId(26) + QPageSize__Folio = QPageSize__PageSizeId(27) + QPageSize__Ledger = QPageSize__PageSizeId(28) + QPageSize__Tabloid = QPageSize__PageSizeId(29) + QPageSize__Custom = QPageSize__PageSizeId(30) + QPageSize__A10 = QPageSize__PageSizeId(31) + QPageSize__A3Extra = QPageSize__PageSizeId(32) + QPageSize__A4Extra = QPageSize__PageSizeId(33) + QPageSize__A4Plus = QPageSize__PageSizeId(34) + QPageSize__A4Small = QPageSize__PageSizeId(35) + QPageSize__A5Extra = QPageSize__PageSizeId(36) + QPageSize__B5Extra = QPageSize__PageSizeId(37) + QPageSize__JisB0 = QPageSize__PageSizeId(38) + QPageSize__JisB1 = QPageSize__PageSizeId(39) + QPageSize__JisB2 = QPageSize__PageSizeId(40) + QPageSize__JisB3 = QPageSize__PageSizeId(41) + QPageSize__JisB4 = QPageSize__PageSizeId(42) + QPageSize__JisB5 = QPageSize__PageSizeId(43) + QPageSize__JisB6 = QPageSize__PageSizeId(44) + QPageSize__JisB7 = QPageSize__PageSizeId(45) + QPageSize__JisB8 = QPageSize__PageSizeId(46) + QPageSize__JisB9 = QPageSize__PageSizeId(47) + QPageSize__JisB10 = QPageSize__PageSizeId(48) + QPageSize__AnsiC = QPageSize__PageSizeId(49) + QPageSize__AnsiD = QPageSize__PageSizeId(50) + QPageSize__AnsiE = QPageSize__PageSizeId(51) + QPageSize__LegalExtra = QPageSize__PageSizeId(52) + QPageSize__LetterExtra = QPageSize__PageSizeId(53) + QPageSize__LetterPlus = QPageSize__PageSizeId(54) + QPageSize__LetterSmall = QPageSize__PageSizeId(55) + QPageSize__TabloidExtra = QPageSize__PageSizeId(56) + QPageSize__ArchA = QPageSize__PageSizeId(57) + QPageSize__ArchB = QPageSize__PageSizeId(58) + QPageSize__ArchC = QPageSize__PageSizeId(59) + QPageSize__ArchD = QPageSize__PageSizeId(60) + QPageSize__ArchE = QPageSize__PageSizeId(61) + QPageSize__Imperial7x9 = QPageSize__PageSizeId(62) + QPageSize__Imperial8x10 = QPageSize__PageSizeId(63) + QPageSize__Imperial9x11 = QPageSize__PageSizeId(64) + QPageSize__Imperial9x12 = QPageSize__PageSizeId(65) + QPageSize__Imperial10x11 = QPageSize__PageSizeId(66) + QPageSize__Imperial10x13 = QPageSize__PageSizeId(67) + QPageSize__Imperial10x14 = QPageSize__PageSizeId(68) + QPageSize__Imperial12x11 = QPageSize__PageSizeId(69) + QPageSize__Imperial15x11 = QPageSize__PageSizeId(70) + QPageSize__ExecutiveStandard = QPageSize__PageSizeId(71) + QPageSize__Note = QPageSize__PageSizeId(72) + QPageSize__Quarto = QPageSize__PageSizeId(73) + QPageSize__Statement = QPageSize__PageSizeId(74) + QPageSize__SuperA = QPageSize__PageSizeId(75) + QPageSize__SuperB = QPageSize__PageSizeId(76) + QPageSize__Postcard = QPageSize__PageSizeId(77) + QPageSize__DoublePostcard = QPageSize__PageSizeId(78) + QPageSize__Prc16K = QPageSize__PageSizeId(79) + QPageSize__Prc32K = QPageSize__PageSizeId(80) + QPageSize__Prc32KBig = QPageSize__PageSizeId(81) + QPageSize__FanFoldUS = QPageSize__PageSizeId(82) + QPageSize__FanFoldGerman = QPageSize__PageSizeId(83) + QPageSize__FanFoldGermanLegal = QPageSize__PageSizeId(84) + QPageSize__EnvelopeB4 = QPageSize__PageSizeId(85) + QPageSize__EnvelopeB5 = QPageSize__PageSizeId(86) + QPageSize__EnvelopeB6 = QPageSize__PageSizeId(87) + QPageSize__EnvelopeC0 = QPageSize__PageSizeId(88) + QPageSize__EnvelopeC1 = QPageSize__PageSizeId(89) + QPageSize__EnvelopeC2 = QPageSize__PageSizeId(90) + QPageSize__EnvelopeC3 = QPageSize__PageSizeId(91) + QPageSize__EnvelopeC4 = QPageSize__PageSizeId(92) + QPageSize__EnvelopeC6 = QPageSize__PageSizeId(93) + QPageSize__EnvelopeC65 = QPageSize__PageSizeId(94) + QPageSize__EnvelopeC7 = QPageSize__PageSizeId(95) + QPageSize__Envelope9 = QPageSize__PageSizeId(96) + QPageSize__Envelope11 = QPageSize__PageSizeId(97) + QPageSize__Envelope12 = QPageSize__PageSizeId(98) + QPageSize__Envelope14 = QPageSize__PageSizeId(99) + QPageSize__EnvelopeMonarch = QPageSize__PageSizeId(100) + QPageSize__EnvelopePersonal = QPageSize__PageSizeId(101) + QPageSize__EnvelopeChou3 = QPageSize__PageSizeId(102) + QPageSize__EnvelopeChou4 = QPageSize__PageSizeId(103) + QPageSize__EnvelopeInvite = QPageSize__PageSizeId(104) + QPageSize__EnvelopeItalian = QPageSize__PageSizeId(105) + QPageSize__EnvelopeKaku2 = QPageSize__PageSizeId(106) + QPageSize__EnvelopeKaku3 = QPageSize__PageSizeId(107) + QPageSize__EnvelopePrc1 = QPageSize__PageSizeId(108) + QPageSize__EnvelopePrc2 = QPageSize__PageSizeId(109) + QPageSize__EnvelopePrc3 = QPageSize__PageSizeId(110) + QPageSize__EnvelopePrc4 = QPageSize__PageSizeId(111) + QPageSize__EnvelopePrc5 = QPageSize__PageSizeId(112) + QPageSize__EnvelopePrc6 = QPageSize__PageSizeId(113) + QPageSize__EnvelopePrc7 = QPageSize__PageSizeId(114) + QPageSize__EnvelopePrc8 = QPageSize__PageSizeId(115) + QPageSize__EnvelopePrc9 = QPageSize__PageSizeId(116) + QPageSize__EnvelopePrc10 = QPageSize__PageSizeId(117) + QPageSize__EnvelopeYou4 = QPageSize__PageSizeId(118) + QPageSize__LastPageSize = QPageSize__PageSizeId(QPageSize__EnvelopeYou4) + QPageSize__NPageSize = QPageSize__PageSizeId(QPageSize__LastPageSize) + QPageSize__NPaperSize = QPageSize__PageSizeId(QPageSize__LastPageSize) + QPageSize__AnsiA = QPageSize__PageSizeId(QPageSize__Letter) + QPageSize__AnsiB = QPageSize__PageSizeId(QPageSize__Ledger) + QPageSize__EnvelopeC5 = QPageSize__PageSizeId(QPageSize__C5E) + QPageSize__EnvelopeDL = QPageSize__PageSizeId(QPageSize__DLE) + QPageSize__Envelope10 = QPageSize__PageSizeId(QPageSize__Comm10E) +) + +//QPageSize::SizeMatchPolicy +type QPageSize__SizeMatchPolicy int + +var ( + QPageSize__FuzzyMatch = QPageSize__SizeMatchPolicy(0) + QPageSize__FuzzyOrientationMatch = QPageSize__SizeMatchPolicy(1) + QPageSize__ExactMatch = QPageSize__SizeMatchPolicy(2) +) + +//QPageSize::Unit +type QPageSize__Unit int + +var ( + QPageSize__Millimeter = QPageSize__Unit(0) + QPageSize__Point = QPageSize__Unit(1) + QPageSize__Inch = QPageSize__Unit(2) + QPageSize__Pica = QPageSize__Unit(3) + QPageSize__Didot = QPageSize__Unit(4) + QPageSize__Cicero = QPageSize__Unit(5) +) + +func NewQPageSize() *QPageSize { + return QPageSizeFromPointer(unsafe.Pointer(C.QPageSize_NewQPageSize())) +} + +func NewQPageSize2(pageSize QPageSize__PageSizeId) *QPageSize { + return QPageSizeFromPointer(unsafe.Pointer(C.QPageSize_NewQPageSize2(C.int(pageSize)))) +} + +func NewQPageSize5(other QPageSizeITF) *QPageSize { + return QPageSizeFromPointer(unsafe.Pointer(C.QPageSize_NewQPageSize5(C.QtObjectPtr(PointerFromQPageSize(other))))) +} + +func NewQPageSize3(pointSize core.QSizeITF, name string, matchPolicy QPageSize__SizeMatchPolicy) *QPageSize { + return QPageSizeFromPointer(unsafe.Pointer(C.QPageSize_NewQPageSize3(C.QtObjectPtr(core.PointerFromQSize(pointSize)), C.CString(name), C.int(matchPolicy)))) +} + +func NewQPageSize4(size core.QSizeFITF, units QPageSize__Unit, name string, matchPolicy QPageSize__SizeMatchPolicy) *QPageSize { + return QPageSizeFromPointer(unsafe.Pointer(C.QPageSize_NewQPageSize4(C.QtObjectPtr(core.PointerFromQSizeF(size)), C.int(units), C.CString(name), C.int(matchPolicy)))) +} + +func QPageSize_DefinitionUnits2(pageSizeId QPageSize__PageSizeId) QPageSize__Unit { + return QPageSize__Unit(C.QPageSize_QPageSize_DefinitionUnits2(C.int(pageSizeId))) +} + +func (ptr *QPageSize) DefinitionUnits() QPageSize__Unit { + if ptr.Pointer() != nil { + return QPageSize__Unit(C.QPageSize_DefinitionUnits(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QPageSize_Id2(pointSize core.QSizeITF, matchPolicy QPageSize__SizeMatchPolicy) QPageSize__PageSizeId { + return QPageSize__PageSizeId(C.QPageSize_QPageSize_Id2(C.QtObjectPtr(core.PointerFromQSize(pointSize)), C.int(matchPolicy))) +} + +func QPageSize_Id3(size core.QSizeFITF, units QPageSize__Unit, matchPolicy QPageSize__SizeMatchPolicy) QPageSize__PageSizeId { + return QPageSize__PageSizeId(C.QPageSize_QPageSize_Id3(C.QtObjectPtr(core.PointerFromQSizeF(size)), C.int(units), C.int(matchPolicy))) +} + +func QPageSize_Id4(windowsId int) QPageSize__PageSizeId { + return QPageSize__PageSizeId(C.QPageSize_QPageSize_Id4(C.int(windowsId))) +} + +func (ptr *QPageSize) Id() QPageSize__PageSizeId { + if ptr.Pointer() != nil { + return QPageSize__PageSizeId(C.QPageSize_Id(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPageSize) IsEquivalentTo(other QPageSizeITF) bool { + if ptr.Pointer() != nil { + return C.QPageSize_IsEquivalentTo(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPageSize(other))) != 0 + } + return false +} + +func (ptr *QPageSize) IsValid() bool { + if ptr.Pointer() != nil { + return C.QPageSize_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func QPageSize_Key2(pageSizeId QPageSize__PageSizeId) string { + return C.GoString(C.QPageSize_QPageSize_Key2(C.int(pageSizeId))) +} + +func (ptr *QPageSize) Key() string { + if ptr.Pointer() != nil { + return C.GoString(C.QPageSize_Key(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func QPageSize_Name2(pageSizeId QPageSize__PageSizeId) string { + return C.GoString(C.QPageSize_QPageSize_Name2(C.int(pageSizeId))) +} + +func (ptr *QPageSize) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QPageSize_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QPageSize) Swap(other QPageSizeITF) { + if ptr.Pointer() != nil { + C.QPageSize_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPageSize(other))) + } +} + +func QPageSize_WindowsId2(pageSizeId QPageSize__PageSizeId) int { + return int(C.QPageSize_QPageSize_WindowsId2(C.int(pageSizeId))) +} + +func (ptr *QPageSize) WindowsId() int { + if ptr.Pointer() != nil { + return int(C.QPageSize_WindowsId(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPageSize) DestroyQPageSize() { + if ptr.Pointer() != nil { + C.QPageSize_DestroyQPageSize(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qpagesize.h b/gui/qpagesize.h new file mode 100755 index 00000000..e04452f2 --- /dev/null +++ b/gui/qpagesize.h @@ -0,0 +1,30 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QPageSize_NewQPageSize(); +QtObjectPtr QPageSize_NewQPageSize2(int pageSize); +QtObjectPtr QPageSize_NewQPageSize5(QtObjectPtr other); +QtObjectPtr QPageSize_NewQPageSize3(QtObjectPtr pointSize, char* name, int matchPolicy); +QtObjectPtr QPageSize_NewQPageSize4(QtObjectPtr size, int units, char* name, int matchPolicy); +int QPageSize_QPageSize_DefinitionUnits2(int pageSizeId); +int QPageSize_DefinitionUnits(QtObjectPtr ptr); +int QPageSize_QPageSize_Id2(QtObjectPtr pointSize, int matchPolicy); +int QPageSize_QPageSize_Id3(QtObjectPtr size, int units, int matchPolicy); +int QPageSize_QPageSize_Id4(int windowsId); +int QPageSize_Id(QtObjectPtr ptr); +int QPageSize_IsEquivalentTo(QtObjectPtr ptr, QtObjectPtr other); +int QPageSize_IsValid(QtObjectPtr ptr); +char* QPageSize_QPageSize_Key2(int pageSizeId); +char* QPageSize_Key(QtObjectPtr ptr); +char* QPageSize_QPageSize_Name2(int pageSizeId); +char* QPageSize_Name(QtObjectPtr ptr); +void QPageSize_Swap(QtObjectPtr ptr, QtObjectPtr other); +int QPageSize_QPageSize_WindowsId2(int pageSizeId); +int QPageSize_WindowsId(QtObjectPtr ptr); +void QPageSize_DestroyQPageSize(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qpaintdevice.cpp b/gui/qpaintdevice.cpp new file mode 100755 index 00000000..927ab458 --- /dev/null +++ b/gui/qpaintdevice.cpp @@ -0,0 +1,68 @@ +#include "qpaintdevice.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPaintDevice: public QPaintDevice { +public: +}; + +void QPaintDevice_DestroyQPaintDevice(QtObjectPtr ptr){ + static_cast(ptr)->~QPaintDevice(); +} + +int QPaintDevice_ColorCount(QtObjectPtr ptr){ + return static_cast(ptr)->colorCount(); +} + +int QPaintDevice_Depth(QtObjectPtr ptr){ + return static_cast(ptr)->depth(); +} + +int QPaintDevice_DevicePixelRatio(QtObjectPtr ptr){ + return static_cast(ptr)->devicePixelRatio(); +} + +int QPaintDevice_Height(QtObjectPtr ptr){ + return static_cast(ptr)->height(); +} + +int QPaintDevice_HeightMM(QtObjectPtr ptr){ + return static_cast(ptr)->heightMM(); +} + +int QPaintDevice_LogicalDpiX(QtObjectPtr ptr){ + return static_cast(ptr)->logicalDpiX(); +} + +int QPaintDevice_LogicalDpiY(QtObjectPtr ptr){ + return static_cast(ptr)->logicalDpiY(); +} + +QtObjectPtr QPaintDevice_PaintEngine(QtObjectPtr ptr){ + return static_cast(ptr)->paintEngine(); +} + +int QPaintDevice_PaintingActive(QtObjectPtr ptr){ + return static_cast(ptr)->paintingActive(); +} + +int QPaintDevice_PhysicalDpiX(QtObjectPtr ptr){ + return static_cast(ptr)->physicalDpiX(); +} + +int QPaintDevice_PhysicalDpiY(QtObjectPtr ptr){ + return static_cast(ptr)->physicalDpiY(); +} + +int QPaintDevice_Width(QtObjectPtr ptr){ + return static_cast(ptr)->width(); +} + +int QPaintDevice_WidthMM(QtObjectPtr ptr){ + return static_cast(ptr)->widthMM(); +} + diff --git a/gui/qpaintdevice.go b/gui/qpaintdevice.go new file mode 100755 index 00000000..5e2ebbef --- /dev/null +++ b/gui/qpaintdevice.go @@ -0,0 +1,154 @@ +package gui + +//#include "qpaintdevice.h" +import "C" +import ( + "unsafe" +) + +type QPaintDevice struct { + ptr unsafe.Pointer +} + +type QPaintDeviceITF interface { + QPaintDevicePTR() *QPaintDevice +} + +func (p *QPaintDevice) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPaintDevice) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPaintDevice(ptr QPaintDeviceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPaintDevicePTR().Pointer() + } + return nil +} + +func QPaintDeviceFromPointer(ptr unsafe.Pointer) *QPaintDevice { + var n = new(QPaintDevice) + n.SetPointer(ptr) + return n +} + +func (ptr *QPaintDevice) QPaintDevicePTR() *QPaintDevice { + return ptr +} + +//QPaintDevice::PaintDeviceMetric +type QPaintDevice__PaintDeviceMetric int + +var ( + QPaintDevice__PdmWidth = QPaintDevice__PaintDeviceMetric(1) + QPaintDevice__PdmHeight = QPaintDevice__PaintDeviceMetric(2) + QPaintDevice__PdmWidthMM = QPaintDevice__PaintDeviceMetric(3) + QPaintDevice__PdmHeightMM = QPaintDevice__PaintDeviceMetric(4) + QPaintDevice__PdmNumColors = QPaintDevice__PaintDeviceMetric(5) + QPaintDevice__PdmDepth = QPaintDevice__PaintDeviceMetric(6) + QPaintDevice__PdmDpiX = QPaintDevice__PaintDeviceMetric(7) + QPaintDevice__PdmDpiY = QPaintDevice__PaintDeviceMetric(8) + QPaintDevice__PdmPhysicalDpiX = QPaintDevice__PaintDeviceMetric(9) + QPaintDevice__PdmPhysicalDpiY = QPaintDevice__PaintDeviceMetric(10) + QPaintDevice__PdmDevicePixelRatio = QPaintDevice__PaintDeviceMetric(11) +) + +func (ptr *QPaintDevice) DestroyQPaintDevice() { + if ptr.Pointer() != nil { + C.QPaintDevice_DestroyQPaintDevice(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QPaintDevice) ColorCount() int { + if ptr.Pointer() != nil { + return int(C.QPaintDevice_ColorCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPaintDevice) Depth() int { + if ptr.Pointer() != nil { + return int(C.QPaintDevice_Depth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPaintDevice) DevicePixelRatio() int { + if ptr.Pointer() != nil { + return int(C.QPaintDevice_DevicePixelRatio(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPaintDevice) Height() int { + if ptr.Pointer() != nil { + return int(C.QPaintDevice_Height(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPaintDevice) HeightMM() int { + if ptr.Pointer() != nil { + return int(C.QPaintDevice_HeightMM(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPaintDevice) LogicalDpiX() int { + if ptr.Pointer() != nil { + return int(C.QPaintDevice_LogicalDpiX(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPaintDevice) LogicalDpiY() int { + if ptr.Pointer() != nil { + return int(C.QPaintDevice_LogicalDpiY(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPaintDevice) PaintEngine() *QPaintEngine { + if ptr.Pointer() != nil { + return QPaintEngineFromPointer(unsafe.Pointer(C.QPaintDevice_PaintEngine(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QPaintDevice) PaintingActive() bool { + if ptr.Pointer() != nil { + return C.QPaintDevice_PaintingActive(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPaintDevice) PhysicalDpiX() int { + if ptr.Pointer() != nil { + return int(C.QPaintDevice_PhysicalDpiX(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPaintDevice) PhysicalDpiY() int { + if ptr.Pointer() != nil { + return int(C.QPaintDevice_PhysicalDpiY(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPaintDevice) Width() int { + if ptr.Pointer() != nil { + return int(C.QPaintDevice_Width(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPaintDevice) WidthMM() int { + if ptr.Pointer() != nil { + return int(C.QPaintDevice_WidthMM(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/gui/qpaintdevice.h b/gui/qpaintdevice.h new file mode 100755 index 00000000..abdb9ce3 --- /dev/null +++ b/gui/qpaintdevice.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QPaintDevice_DestroyQPaintDevice(QtObjectPtr ptr); +int QPaintDevice_ColorCount(QtObjectPtr ptr); +int QPaintDevice_Depth(QtObjectPtr ptr); +int QPaintDevice_DevicePixelRatio(QtObjectPtr ptr); +int QPaintDevice_Height(QtObjectPtr ptr); +int QPaintDevice_HeightMM(QtObjectPtr ptr); +int QPaintDevice_LogicalDpiX(QtObjectPtr ptr); +int QPaintDevice_LogicalDpiY(QtObjectPtr ptr); +QtObjectPtr QPaintDevice_PaintEngine(QtObjectPtr ptr); +int QPaintDevice_PaintingActive(QtObjectPtr ptr); +int QPaintDevice_PhysicalDpiX(QtObjectPtr ptr); +int QPaintDevice_PhysicalDpiY(QtObjectPtr ptr); +int QPaintDevice_Width(QtObjectPtr ptr); +int QPaintDevice_WidthMM(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qpaintdevicewindow.cpp b/gui/qpaintdevicewindow.cpp new file mode 100755 index 00000000..8389f979 --- /dev/null +++ b/gui/qpaintdevicewindow.cpp @@ -0,0 +1,28 @@ +#include "qpaintdevicewindow.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPaintDeviceWindow: public QPaintDeviceWindow { +public: +}; + +void QPaintDeviceWindow_Update3(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "update"); +} + +void QPaintDeviceWindow_Update(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->update(*static_cast(rect)); +} + +void QPaintDeviceWindow_Update2(QtObjectPtr ptr, QtObjectPtr region){ + static_cast(ptr)->update(*static_cast(region)); +} + diff --git a/gui/qpaintdevicewindow.go b/gui/qpaintdevicewindow.go new file mode 100755 index 00000000..14e815ef --- /dev/null +++ b/gui/qpaintdevicewindow.go @@ -0,0 +1,67 @@ +package gui + +//#include "qpaintdevicewindow.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QPaintDeviceWindow struct { + QWindow + QPaintDevice +} + +type QPaintDeviceWindowITF interface { + QWindowITF + QPaintDeviceITF + QPaintDeviceWindowPTR() *QPaintDeviceWindow +} + +func (p *QPaintDeviceWindow) Pointer() unsafe.Pointer { + return p.QWindowPTR().Pointer() +} + +func (p *QPaintDeviceWindow) SetPointer(ptr unsafe.Pointer) { + p.QWindowPTR().SetPointer(ptr) + p.QPaintDevicePTR().SetPointer(ptr) +} + +func PointerFromQPaintDeviceWindow(ptr QPaintDeviceWindowITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPaintDeviceWindowPTR().Pointer() + } + return nil +} + +func QPaintDeviceWindowFromPointer(ptr unsafe.Pointer) *QPaintDeviceWindow { + var n = new(QPaintDeviceWindow) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QPaintDeviceWindow_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QPaintDeviceWindow) QPaintDeviceWindowPTR() *QPaintDeviceWindow { + return ptr +} + +func (ptr *QPaintDeviceWindow) Update3() { + if ptr.Pointer() != nil { + C.QPaintDeviceWindow_Update3(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QPaintDeviceWindow) Update(rect core.QRectITF) { + if ptr.Pointer() != nil { + C.QPaintDeviceWindow_Update(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rect))) + } +} + +func (ptr *QPaintDeviceWindow) Update2(region QRegionITF) { + if ptr.Pointer() != nil { + C.QPaintDeviceWindow_Update2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQRegion(region))) + } +} diff --git a/gui/qpaintdevicewindow.h b/gui/qpaintdevicewindow.h new file mode 100755 index 00000000..8e6e52f8 --- /dev/null +++ b/gui/qpaintdevicewindow.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QPaintDeviceWindow_Update3(QtObjectPtr ptr); +void QPaintDeviceWindow_Update(QtObjectPtr ptr, QtObjectPtr rect); +void QPaintDeviceWindow_Update2(QtObjectPtr ptr, QtObjectPtr region); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qpaintengine.cpp b/gui/qpaintengine.cpp new file mode 100755 index 00000000..4f6b37c1 --- /dev/null +++ b/gui/qpaintengine.cpp @@ -0,0 +1,125 @@ +#include "qpaintengine.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPaintEngine: public QPaintEngine { +public: +}; + +void QPaintEngine_DrawEllipse(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->drawEllipse(*static_cast(rect)); +} + +void QPaintEngine_DrawImage(QtObjectPtr ptr, QtObjectPtr rectangle, QtObjectPtr image, QtObjectPtr sr, int flags){ + static_cast(ptr)->drawImage(*static_cast(rectangle), *static_cast(image), *static_cast(sr), static_cast(flags)); +} + +void QPaintEngine_DrawPolygon(QtObjectPtr ptr, QtObjectPtr points, int pointCount, int mode){ + static_cast(ptr)->drawPolygon(static_cast(points), pointCount, static_cast(mode)); +} + +int QPaintEngine_Begin(QtObjectPtr ptr, QtObjectPtr pdev){ + return static_cast(ptr)->begin(static_cast(pdev)); +} + +void QPaintEngine_DrawEllipse2(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->drawEllipse(*static_cast(rect)); +} + +void QPaintEngine_DrawLines2(QtObjectPtr ptr, QtObjectPtr lines, int lineCount){ + static_cast(ptr)->drawLines(static_cast(lines), lineCount); +} + +void QPaintEngine_DrawLines(QtObjectPtr ptr, QtObjectPtr lines, int lineCount){ + static_cast(ptr)->drawLines(static_cast(lines), lineCount); +} + +void QPaintEngine_DrawPath(QtObjectPtr ptr, QtObjectPtr path){ + static_cast(ptr)->drawPath(*static_cast(path)); +} + +void QPaintEngine_DrawPixmap(QtObjectPtr ptr, QtObjectPtr r, QtObjectPtr pm, QtObjectPtr sr){ + static_cast(ptr)->drawPixmap(*static_cast(r), *static_cast(pm), *static_cast(sr)); +} + +void QPaintEngine_DrawPoints2(QtObjectPtr ptr, QtObjectPtr points, int pointCount){ + static_cast(ptr)->drawPoints(static_cast(points), pointCount); +} + +void QPaintEngine_DrawPoints(QtObjectPtr ptr, QtObjectPtr points, int pointCount){ + static_cast(ptr)->drawPoints(static_cast(points), pointCount); +} + +void QPaintEngine_DrawPolygon2(QtObjectPtr ptr, QtObjectPtr points, int pointCount, int mode){ + static_cast(ptr)->drawPolygon(static_cast(points), pointCount, static_cast(mode)); +} + +void QPaintEngine_DrawRects2(QtObjectPtr ptr, QtObjectPtr rects, int rectCount){ + static_cast(ptr)->drawRects(static_cast(rects), rectCount); +} + +void QPaintEngine_DrawRects(QtObjectPtr ptr, QtObjectPtr rects, int rectCount){ + static_cast(ptr)->drawRects(static_cast(rects), rectCount); +} + +void QPaintEngine_DrawTextItem(QtObjectPtr ptr, QtObjectPtr p, QtObjectPtr textItem){ + static_cast(ptr)->drawTextItem(*static_cast(p), *static_cast(textItem)); +} + +void QPaintEngine_DrawTiledPixmap(QtObjectPtr ptr, QtObjectPtr rect, QtObjectPtr pixmap, QtObjectPtr p){ + static_cast(ptr)->drawTiledPixmap(*static_cast(rect), *static_cast(pixmap), *static_cast(p)); +} + +int QPaintEngine_End(QtObjectPtr ptr){ + return static_cast(ptr)->end(); +} + +int QPaintEngine_HasFeature(QtObjectPtr ptr, int feature){ + return static_cast(ptr)->hasFeature(static_cast(feature)); +} + +int QPaintEngine_IsActive(QtObjectPtr ptr){ + return static_cast(ptr)->isActive(); +} + +QtObjectPtr QPaintEngine_PaintDevice(QtObjectPtr ptr){ + return static_cast(ptr)->paintDevice(); +} + +QtObjectPtr QPaintEngine_Painter(QtObjectPtr ptr){ + return static_cast(ptr)->painter(); +} + +void QPaintEngine_SetActive(QtObjectPtr ptr, int state){ + static_cast(ptr)->setActive(state != 0); +} + +int QPaintEngine_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QPaintEngine_UpdateState(QtObjectPtr ptr, QtObjectPtr state){ + static_cast(ptr)->updateState(*static_cast(state)); +} + +void QPaintEngine_DestroyQPaintEngine(QtObjectPtr ptr){ + static_cast(ptr)->~QPaintEngine(); +} + diff --git a/gui/qpaintengine.go b/gui/qpaintengine.go new file mode 100755 index 00000000..a017dbf7 --- /dev/null +++ b/gui/qpaintengine.go @@ -0,0 +1,281 @@ +package gui + +//#include "qpaintengine.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QPaintEngine struct { + ptr unsafe.Pointer +} + +type QPaintEngineITF interface { + QPaintEnginePTR() *QPaintEngine +} + +func (p *QPaintEngine) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPaintEngine) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPaintEngine(ptr QPaintEngineITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPaintEnginePTR().Pointer() + } + return nil +} + +func QPaintEngineFromPointer(ptr unsafe.Pointer) *QPaintEngine { + var n = new(QPaintEngine) + n.SetPointer(ptr) + return n +} + +func (ptr *QPaintEngine) QPaintEnginePTR() *QPaintEngine { + return ptr +} + +//QPaintEngine::DirtyFlag +type QPaintEngine__DirtyFlag int + +var ( + QPaintEngine__DirtyPen = QPaintEngine__DirtyFlag(0x0001) + QPaintEngine__DirtyBrush = QPaintEngine__DirtyFlag(0x0002) + QPaintEngine__DirtyBrushOrigin = QPaintEngine__DirtyFlag(0x0004) + QPaintEngine__DirtyFont = QPaintEngine__DirtyFlag(0x0008) + QPaintEngine__DirtyBackground = QPaintEngine__DirtyFlag(0x0010) + QPaintEngine__DirtyBackgroundMode = QPaintEngine__DirtyFlag(0x0020) + QPaintEngine__DirtyTransform = QPaintEngine__DirtyFlag(0x0040) + QPaintEngine__DirtyClipRegion = QPaintEngine__DirtyFlag(0x0080) + QPaintEngine__DirtyClipPath = QPaintEngine__DirtyFlag(0x0100) + QPaintEngine__DirtyHints = QPaintEngine__DirtyFlag(0x0200) + QPaintEngine__DirtyCompositionMode = QPaintEngine__DirtyFlag(0x0400) + QPaintEngine__DirtyClipEnabled = QPaintEngine__DirtyFlag(0x0800) + QPaintEngine__DirtyOpacity = QPaintEngine__DirtyFlag(0x1000) + QPaintEngine__AllDirty = QPaintEngine__DirtyFlag(0xffff) +) + +//QPaintEngine::PaintEngineFeature +type QPaintEngine__PaintEngineFeature int + +var ( + QPaintEngine__PrimitiveTransform = QPaintEngine__PaintEngineFeature(0x00000001) + QPaintEngine__PatternTransform = QPaintEngine__PaintEngineFeature(0x00000002) + QPaintEngine__PixmapTransform = QPaintEngine__PaintEngineFeature(0x00000004) + QPaintEngine__PatternBrush = QPaintEngine__PaintEngineFeature(0x00000008) + QPaintEngine__LinearGradientFill = QPaintEngine__PaintEngineFeature(0x00000010) + QPaintEngine__RadialGradientFill = QPaintEngine__PaintEngineFeature(0x00000020) + QPaintEngine__ConicalGradientFill = QPaintEngine__PaintEngineFeature(0x00000040) + QPaintEngine__AlphaBlend = QPaintEngine__PaintEngineFeature(0x00000080) + QPaintEngine__PorterDuff = QPaintEngine__PaintEngineFeature(0x00000100) + QPaintEngine__PainterPaths = QPaintEngine__PaintEngineFeature(0x00000200) + QPaintEngine__Antialiasing = QPaintEngine__PaintEngineFeature(0x00000400) + QPaintEngine__BrushStroke = QPaintEngine__PaintEngineFeature(0x00000800) + QPaintEngine__ConstantOpacity = QPaintEngine__PaintEngineFeature(0x00001000) + QPaintEngine__MaskedBrush = QPaintEngine__PaintEngineFeature(0x00002000) + QPaintEngine__PerspectiveTransform = QPaintEngine__PaintEngineFeature(0x00004000) + QPaintEngine__BlendModes = QPaintEngine__PaintEngineFeature(0x00008000) + QPaintEngine__ObjectBoundingModeGradients = QPaintEngine__PaintEngineFeature(0x00010000) + QPaintEngine__RasterOpModes = QPaintEngine__PaintEngineFeature(0x00020000) + QPaintEngine__PaintOutsidePaintEvent = QPaintEngine__PaintEngineFeature(0x20000000) + QPaintEngine__AllFeatures = QPaintEngine__PaintEngineFeature(0xffffffff) +) + +//QPaintEngine::PolygonDrawMode +type QPaintEngine__PolygonDrawMode int + +var ( + QPaintEngine__OddEvenMode = QPaintEngine__PolygonDrawMode(0) + QPaintEngine__WindingMode = QPaintEngine__PolygonDrawMode(1) + QPaintEngine__ConvexMode = QPaintEngine__PolygonDrawMode(2) + QPaintEngine__PolylineMode = QPaintEngine__PolygonDrawMode(3) +) + +//QPaintEngine::Type +type QPaintEngine__Type int + +var ( + QPaintEngine__X11 = QPaintEngine__Type(0) + QPaintEngine__Windows = QPaintEngine__Type(1) + QPaintEngine__QuickDraw = QPaintEngine__Type(2) + QPaintEngine__CoreGraphics = QPaintEngine__Type(3) + QPaintEngine__MacPrinter = QPaintEngine__Type(4) + QPaintEngine__QWindowSystem = QPaintEngine__Type(5) + QPaintEngine__PostScript = QPaintEngine__Type(6) + QPaintEngine__OpenGL = QPaintEngine__Type(7) + QPaintEngine__Picture = QPaintEngine__Type(8) + QPaintEngine__SVG = QPaintEngine__Type(9) + QPaintEngine__Raster = QPaintEngine__Type(10) + QPaintEngine__Direct3D = QPaintEngine__Type(11) + QPaintEngine__Pdf = QPaintEngine__Type(12) + QPaintEngine__OpenVG = QPaintEngine__Type(13) + QPaintEngine__OpenGL2 = QPaintEngine__Type(14) + QPaintEngine__PaintBuffer = QPaintEngine__Type(15) + QPaintEngine__Blitter = QPaintEngine__Type(16) + QPaintEngine__Direct2D = QPaintEngine__Type(17) + QPaintEngine__User = QPaintEngine__Type(50) + QPaintEngine__MaxUser = QPaintEngine__Type(100) +) + +func (ptr *QPaintEngine) DrawEllipse(rect core.QRectFITF) { + if ptr.Pointer() != nil { + C.QPaintEngine_DrawEllipse(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rect))) + } +} + +func (ptr *QPaintEngine) DrawImage(rectangle core.QRectFITF, image QImageITF, sr core.QRectFITF, flags core.Qt__ImageConversionFlag) { + if ptr.Pointer() != nil { + C.QPaintEngine_DrawImage(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rectangle)), C.QtObjectPtr(PointerFromQImage(image)), C.QtObjectPtr(core.PointerFromQRectF(sr)), C.int(flags)) + } +} + +func (ptr *QPaintEngine) DrawPolygon(points core.QPointFITF, pointCount int, mode QPaintEngine__PolygonDrawMode) { + if ptr.Pointer() != nil { + C.QPaintEngine_DrawPolygon(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(points)), C.int(pointCount), C.int(mode)) + } +} + +func (ptr *QPaintEngine) Begin(pdev QPaintDeviceITF) bool { + if ptr.Pointer() != nil { + return C.QPaintEngine_Begin(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPaintDevice(pdev))) != 0 + } + return false +} + +func (ptr *QPaintEngine) DrawEllipse2(rect core.QRectITF) { + if ptr.Pointer() != nil { + C.QPaintEngine_DrawEllipse2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rect))) + } +} + +func (ptr *QPaintEngine) DrawLines2(lines core.QLineITF, lineCount int) { + if ptr.Pointer() != nil { + C.QPaintEngine_DrawLines2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQLine(lines)), C.int(lineCount)) + } +} + +func (ptr *QPaintEngine) DrawLines(lines core.QLineFITF, lineCount int) { + if ptr.Pointer() != nil { + C.QPaintEngine_DrawLines(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQLineF(lines)), C.int(lineCount)) + } +} + +func (ptr *QPaintEngine) DrawPath(path QPainterPathITF) { + if ptr.Pointer() != nil { + C.QPaintEngine_DrawPath(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPainterPath(path))) + } +} + +func (ptr *QPaintEngine) DrawPixmap(r core.QRectFITF, pm QPixmapITF, sr core.QRectFITF) { + if ptr.Pointer() != nil { + C.QPaintEngine_DrawPixmap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(r)), C.QtObjectPtr(PointerFromQPixmap(pm)), C.QtObjectPtr(core.PointerFromQRectF(sr))) + } +} + +func (ptr *QPaintEngine) DrawPoints2(points core.QPointITF, pointCount int) { + if ptr.Pointer() != nil { + C.QPaintEngine_DrawPoints2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(points)), C.int(pointCount)) + } +} + +func (ptr *QPaintEngine) DrawPoints(points core.QPointFITF, pointCount int) { + if ptr.Pointer() != nil { + C.QPaintEngine_DrawPoints(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(points)), C.int(pointCount)) + } +} + +func (ptr *QPaintEngine) DrawPolygon2(points core.QPointITF, pointCount int, mode QPaintEngine__PolygonDrawMode) { + if ptr.Pointer() != nil { + C.QPaintEngine_DrawPolygon2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(points)), C.int(pointCount), C.int(mode)) + } +} + +func (ptr *QPaintEngine) DrawRects2(rects core.QRectITF, rectCount int) { + if ptr.Pointer() != nil { + C.QPaintEngine_DrawRects2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rects)), C.int(rectCount)) + } +} + +func (ptr *QPaintEngine) DrawRects(rects core.QRectFITF, rectCount int) { + if ptr.Pointer() != nil { + C.QPaintEngine_DrawRects(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rects)), C.int(rectCount)) + } +} + +func (ptr *QPaintEngine) DrawTextItem(p core.QPointFITF, textItem QTextItemITF) { + if ptr.Pointer() != nil { + C.QPaintEngine_DrawTextItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(p)), C.QtObjectPtr(PointerFromQTextItem(textItem))) + } +} + +func (ptr *QPaintEngine) DrawTiledPixmap(rect core.QRectFITF, pixmap QPixmapITF, p core.QPointFITF) { + if ptr.Pointer() != nil { + C.QPaintEngine_DrawTiledPixmap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rect)), C.QtObjectPtr(PointerFromQPixmap(pixmap)), C.QtObjectPtr(core.PointerFromQPointF(p))) + } +} + +func (ptr *QPaintEngine) End() bool { + if ptr.Pointer() != nil { + return C.QPaintEngine_End(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPaintEngine) HasFeature(feature QPaintEngine__PaintEngineFeature) bool { + if ptr.Pointer() != nil { + return C.QPaintEngine_HasFeature(C.QtObjectPtr(ptr.Pointer()), C.int(feature)) != 0 + } + return false +} + +func (ptr *QPaintEngine) IsActive() bool { + if ptr.Pointer() != nil { + return C.QPaintEngine_IsActive(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPaintEngine) PaintDevice() *QPaintDevice { + if ptr.Pointer() != nil { + return QPaintDeviceFromPointer(unsafe.Pointer(C.QPaintEngine_PaintDevice(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QPaintEngine) Painter() *QPainter { + if ptr.Pointer() != nil { + return QPainterFromPointer(unsafe.Pointer(C.QPaintEngine_Painter(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QPaintEngine) SetActive(state bool) { + if ptr.Pointer() != nil { + C.QPaintEngine_SetActive(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(state))) + } +} + +func (ptr *QPaintEngine) Type() QPaintEngine__Type { + if ptr.Pointer() != nil { + return QPaintEngine__Type(C.QPaintEngine_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPaintEngine) UpdateState(state QPaintEngineStateITF) { + if ptr.Pointer() != nil { + C.QPaintEngine_UpdateState(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPaintEngineState(state))) + } +} + +func (ptr *QPaintEngine) DestroyQPaintEngine() { + if ptr.Pointer() != nil { + C.QPaintEngine_DestroyQPaintEngine(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qpaintengine.h b/gui/qpaintengine.h new file mode 100755 index 00000000..373092a2 --- /dev/null +++ b/gui/qpaintengine.h @@ -0,0 +1,34 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QPaintEngine_DrawEllipse(QtObjectPtr ptr, QtObjectPtr rect); +void QPaintEngine_DrawImage(QtObjectPtr ptr, QtObjectPtr rectangle, QtObjectPtr image, QtObjectPtr sr, int flags); +void QPaintEngine_DrawPolygon(QtObjectPtr ptr, QtObjectPtr points, int pointCount, int mode); +int QPaintEngine_Begin(QtObjectPtr ptr, QtObjectPtr pdev); +void QPaintEngine_DrawEllipse2(QtObjectPtr ptr, QtObjectPtr rect); +void QPaintEngine_DrawLines2(QtObjectPtr ptr, QtObjectPtr lines, int lineCount); +void QPaintEngine_DrawLines(QtObjectPtr ptr, QtObjectPtr lines, int lineCount); +void QPaintEngine_DrawPath(QtObjectPtr ptr, QtObjectPtr path); +void QPaintEngine_DrawPixmap(QtObjectPtr ptr, QtObjectPtr r, QtObjectPtr pm, QtObjectPtr sr); +void QPaintEngine_DrawPoints2(QtObjectPtr ptr, QtObjectPtr points, int pointCount); +void QPaintEngine_DrawPoints(QtObjectPtr ptr, QtObjectPtr points, int pointCount); +void QPaintEngine_DrawPolygon2(QtObjectPtr ptr, QtObjectPtr points, int pointCount, int mode); +void QPaintEngine_DrawRects2(QtObjectPtr ptr, QtObjectPtr rects, int rectCount); +void QPaintEngine_DrawRects(QtObjectPtr ptr, QtObjectPtr rects, int rectCount); +void QPaintEngine_DrawTextItem(QtObjectPtr ptr, QtObjectPtr p, QtObjectPtr textItem); +void QPaintEngine_DrawTiledPixmap(QtObjectPtr ptr, QtObjectPtr rect, QtObjectPtr pixmap, QtObjectPtr p); +int QPaintEngine_End(QtObjectPtr ptr); +int QPaintEngine_HasFeature(QtObjectPtr ptr, int feature); +int QPaintEngine_IsActive(QtObjectPtr ptr); +QtObjectPtr QPaintEngine_PaintDevice(QtObjectPtr ptr); +QtObjectPtr QPaintEngine_Painter(QtObjectPtr ptr); +void QPaintEngine_SetActive(QtObjectPtr ptr, int state); +int QPaintEngine_Type(QtObjectPtr ptr); +void QPaintEngine_UpdateState(QtObjectPtr ptr, QtObjectPtr state); +void QPaintEngine_DestroyQPaintEngine(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qpaintenginestate.cpp b/gui/qpaintenginestate.cpp new file mode 100755 index 00000000..2f476177 --- /dev/null +++ b/gui/qpaintenginestate.cpp @@ -0,0 +1,45 @@ +#include "qpaintenginestate.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPaintEngineState: public QPaintEngineState { +public: +}; + +int QPaintEngineState_BackgroundMode(QtObjectPtr ptr){ + return static_cast(ptr)->backgroundMode(); +} + +int QPaintEngineState_BrushNeedsResolving(QtObjectPtr ptr){ + return static_cast(ptr)->brushNeedsResolving(); +} + +int QPaintEngineState_ClipOperation(QtObjectPtr ptr){ + return static_cast(ptr)->clipOperation(); +} + +int QPaintEngineState_CompositionMode(QtObjectPtr ptr){ + return static_cast(ptr)->compositionMode(); +} + +int QPaintEngineState_IsClipEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isClipEnabled(); +} + +QtObjectPtr QPaintEngineState_Painter(QtObjectPtr ptr){ + return static_cast(ptr)->painter(); +} + +int QPaintEngineState_PenNeedsResolving(QtObjectPtr ptr){ + return static_cast(ptr)->penNeedsResolving(); +} + +int QPaintEngineState_RenderHints(QtObjectPtr ptr){ + return static_cast(ptr)->renderHints(); +} + diff --git a/gui/qpaintenginestate.go b/gui/qpaintenginestate.go new file mode 100755 index 00000000..391063ec --- /dev/null +++ b/gui/qpaintenginestate.go @@ -0,0 +1,97 @@ +package gui + +//#include "qpaintenginestate.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QPaintEngineState struct { + ptr unsafe.Pointer +} + +type QPaintEngineStateITF interface { + QPaintEngineStatePTR() *QPaintEngineState +} + +func (p *QPaintEngineState) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPaintEngineState) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPaintEngineState(ptr QPaintEngineStateITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPaintEngineStatePTR().Pointer() + } + return nil +} + +func QPaintEngineStateFromPointer(ptr unsafe.Pointer) *QPaintEngineState { + var n = new(QPaintEngineState) + n.SetPointer(ptr) + return n +} + +func (ptr *QPaintEngineState) QPaintEngineStatePTR() *QPaintEngineState { + return ptr +} + +func (ptr *QPaintEngineState) BackgroundMode() core.Qt__BGMode { + if ptr.Pointer() != nil { + return core.Qt__BGMode(C.QPaintEngineState_BackgroundMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPaintEngineState) BrushNeedsResolving() bool { + if ptr.Pointer() != nil { + return C.QPaintEngineState_BrushNeedsResolving(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPaintEngineState) ClipOperation() core.Qt__ClipOperation { + if ptr.Pointer() != nil { + return core.Qt__ClipOperation(C.QPaintEngineState_ClipOperation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPaintEngineState) CompositionMode() QPainter__CompositionMode { + if ptr.Pointer() != nil { + return QPainter__CompositionMode(C.QPaintEngineState_CompositionMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPaintEngineState) IsClipEnabled() bool { + if ptr.Pointer() != nil { + return C.QPaintEngineState_IsClipEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPaintEngineState) Painter() *QPainter { + if ptr.Pointer() != nil { + return QPainterFromPointer(unsafe.Pointer(C.QPaintEngineState_Painter(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QPaintEngineState) PenNeedsResolving() bool { + if ptr.Pointer() != nil { + return C.QPaintEngineState_PenNeedsResolving(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPaintEngineState) RenderHints() QPainter__RenderHint { + if ptr.Pointer() != nil { + return QPainter__RenderHint(C.QPaintEngineState_RenderHints(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/gui/qpaintenginestate.h b/gui/qpaintenginestate.h new file mode 100755 index 00000000..6327a6f0 --- /dev/null +++ b/gui/qpaintenginestate.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QPaintEngineState_BackgroundMode(QtObjectPtr ptr); +int QPaintEngineState_BrushNeedsResolving(QtObjectPtr ptr); +int QPaintEngineState_ClipOperation(QtObjectPtr ptr); +int QPaintEngineState_CompositionMode(QtObjectPtr ptr); +int QPaintEngineState_IsClipEnabled(QtObjectPtr ptr); +QtObjectPtr QPaintEngineState_Painter(QtObjectPtr ptr); +int QPaintEngineState_PenNeedsResolving(QtObjectPtr ptr); +int QPaintEngineState_RenderHints(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qpainter.cpp b/gui/qpainter.cpp new file mode 100755 index 00000000..739b3491 --- /dev/null +++ b/gui/qpainter.cpp @@ -0,0 +1,646 @@ +#include "qpainter.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPainter: public QPainter { +public: +}; + +QtObjectPtr QPainter_NewQPainter2(QtObjectPtr device){ + return new QPainter(static_cast(device)); +} + +int QPainter_Begin(QtObjectPtr ptr, QtObjectPtr device){ + return static_cast(ptr)->begin(static_cast(device)); +} + +void QPainter_DrawArc(QtObjectPtr ptr, QtObjectPtr rectangle, int startAngle, int spanAngle){ + static_cast(ptr)->drawArc(*static_cast(rectangle), startAngle, spanAngle); +} + +void QPainter_DrawChord(QtObjectPtr ptr, QtObjectPtr rectangle, int startAngle, int spanAngle){ + static_cast(ptr)->drawChord(*static_cast(rectangle), startAngle, spanAngle); +} + +void QPainter_DrawConvexPolygon2(QtObjectPtr ptr, QtObjectPtr points, int pointCount){ + static_cast(ptr)->drawConvexPolygon(static_cast(points), pointCount); +} + +void QPainter_DrawConvexPolygon(QtObjectPtr ptr, QtObjectPtr points, int pointCount){ + static_cast(ptr)->drawConvexPolygon(static_cast(points), pointCount); +} + +void QPainter_DrawEllipse2(QtObjectPtr ptr, QtObjectPtr rectangle){ + static_cast(ptr)->drawEllipse(*static_cast(rectangle)); +} + +void QPainter_DrawEllipse(QtObjectPtr ptr, QtObjectPtr rectangle){ + static_cast(ptr)->drawEllipse(*static_cast(rectangle)); +} + +void QPainter_DrawGlyphRun(QtObjectPtr ptr, QtObjectPtr position, QtObjectPtr glyphs){ + static_cast(ptr)->drawGlyphRun(*static_cast(position), *static_cast(glyphs)); +} + +void QPainter_DrawImage3(QtObjectPtr ptr, QtObjectPtr point, QtObjectPtr image){ + static_cast(ptr)->drawImage(*static_cast(point), *static_cast(image)); +} + +void QPainter_DrawImage(QtObjectPtr ptr, QtObjectPtr target, QtObjectPtr image, QtObjectPtr source, int flags){ + static_cast(ptr)->drawImage(*static_cast(target), *static_cast(image), *static_cast(source), static_cast(flags)); +} + +void QPainter_DrawLines2(QtObjectPtr ptr, QtObjectPtr lines, int lineCount){ + static_cast(ptr)->drawLines(static_cast(lines), lineCount); +} + +void QPainter_DrawPicture(QtObjectPtr ptr, QtObjectPtr point, QtObjectPtr picture){ + static_cast(ptr)->drawPicture(*static_cast(point), *static_cast(picture)); +} + +void QPainter_DrawPie(QtObjectPtr ptr, QtObjectPtr rectangle, int startAngle, int spanAngle){ + static_cast(ptr)->drawPie(*static_cast(rectangle), startAngle, spanAngle); +} + +void QPainter_DrawPixmap5(QtObjectPtr ptr, QtObjectPtr point, QtObjectPtr pixmap){ + static_cast(ptr)->drawPixmap(*static_cast(point), *static_cast(pixmap)); +} + +void QPainter_DrawPixmap(QtObjectPtr ptr, QtObjectPtr target, QtObjectPtr pixmap, QtObjectPtr source){ + static_cast(ptr)->drawPixmap(*static_cast(target), *static_cast(pixmap), *static_cast(source)); +} + +void QPainter_DrawRects2(QtObjectPtr ptr, QtObjectPtr rectangles, int rectCount){ + static_cast(ptr)->drawRects(static_cast(rectangles), rectCount); +} + +void QPainter_DrawRects(QtObjectPtr ptr, QtObjectPtr rectangles, int rectCount){ + static_cast(ptr)->drawRects(static_cast(rectangles), rectCount); +} + +void QPainter_DrawText(QtObjectPtr ptr, QtObjectPtr position, char* text){ + static_cast(ptr)->drawText(*static_cast(position), QString(text)); +} + +void QPainter_DrawText5(QtObjectPtr ptr, QtObjectPtr rectangle, int flags, char* text, QtObjectPtr boundingRect){ + static_cast(ptr)->drawText(*static_cast(rectangle), flags, QString(text), static_cast(boundingRect)); +} + +void QPainter_DrawText8(QtObjectPtr ptr, QtObjectPtr rectangle, char* text, QtObjectPtr option){ + static_cast(ptr)->drawText(*static_cast(rectangle), QString(text), *static_cast(option)); +} + +void QPainter_DrawText4(QtObjectPtr ptr, QtObjectPtr rectangle, int flags, char* text, QtObjectPtr boundingRect){ + static_cast(ptr)->drawText(*static_cast(rectangle), flags, QString(text), static_cast(boundingRect)); +} + +void QPainter_DrawTiledPixmap(QtObjectPtr ptr, QtObjectPtr rectangle, QtObjectPtr pixmap, QtObjectPtr position){ + static_cast(ptr)->drawTiledPixmap(*static_cast(rectangle), *static_cast(pixmap), *static_cast(position)); +} + +void QPainter_EraseRect(QtObjectPtr ptr, QtObjectPtr rectangle){ + static_cast(ptr)->eraseRect(*static_cast(rectangle)); +} + +void QPainter_FillRect5(QtObjectPtr ptr, QtObjectPtr rectangle, QtObjectPtr brush){ + static_cast(ptr)->fillRect(*static_cast(rectangle), *static_cast(brush)); +} + +void QPainter_FillRect6(QtObjectPtr ptr, QtObjectPtr rectangle, QtObjectPtr color){ + static_cast(ptr)->fillRect(*static_cast(rectangle), *static_cast(color)); +} + +void QPainter_FillRect(QtObjectPtr ptr, QtObjectPtr rectangle, QtObjectPtr brush){ + static_cast(ptr)->fillRect(*static_cast(rectangle), *static_cast(brush)); +} + +void QPainter_FillRect7(QtObjectPtr ptr, QtObjectPtr rectangle, QtObjectPtr color){ + static_cast(ptr)->fillRect(*static_cast(rectangle), *static_cast(color)); +} + +void QPainter_SetBackground(QtObjectPtr ptr, QtObjectPtr brush){ + static_cast(ptr)->setBackground(*static_cast(brush)); +} + +void QPainter_SetBrushOrigin(QtObjectPtr ptr, QtObjectPtr position){ + static_cast(ptr)->setBrushOrigin(*static_cast(position)); +} + +void QPainter_SetClipPath(QtObjectPtr ptr, QtObjectPtr path, int operation){ + static_cast(ptr)->setClipPath(*static_cast(path), static_cast(operation)); +} + +void QPainter_SetClipRect3(QtObjectPtr ptr, QtObjectPtr rectangle, int operation){ + static_cast(ptr)->setClipRect(*static_cast(rectangle), static_cast(operation)); +} + +void QPainter_SetClipRect(QtObjectPtr ptr, QtObjectPtr rectangle, int operation){ + static_cast(ptr)->setClipRect(*static_cast(rectangle), static_cast(operation)); +} + +void QPainter_SetClipRegion(QtObjectPtr ptr, QtObjectPtr region, int operation){ + static_cast(ptr)->setClipRegion(*static_cast(region), static_cast(operation)); +} + +void QPainter_SetViewport(QtObjectPtr ptr, QtObjectPtr rectangle){ + static_cast(ptr)->setViewport(*static_cast(rectangle)); +} + +void QPainter_SetWindow(QtObjectPtr ptr, QtObjectPtr rectangle){ + static_cast(ptr)->setWindow(*static_cast(rectangle)); +} + +QtObjectPtr QPainter_NewQPainter(){ + return new QPainter(); +} + +int QPainter_BackgroundMode(QtObjectPtr ptr){ + return static_cast(ptr)->backgroundMode(); +} + +void QPainter_BeginNativePainting(QtObjectPtr ptr){ + static_cast(ptr)->beginNativePainting(); +} + +int QPainter_CompositionMode(QtObjectPtr ptr){ + return static_cast(ptr)->compositionMode(); +} + +QtObjectPtr QPainter_Device(QtObjectPtr ptr){ + return static_cast(ptr)->device(); +} + +void QPainter_DrawArc2(QtObjectPtr ptr, QtObjectPtr rectangle, int startAngle, int spanAngle){ + static_cast(ptr)->drawArc(*static_cast(rectangle), startAngle, spanAngle); +} + +void QPainter_DrawArc3(QtObjectPtr ptr, int x, int y, int width, int height, int startAngle, int spanAngle){ + static_cast(ptr)->drawArc(x, y, width, height, startAngle, spanAngle); +} + +void QPainter_DrawChord2(QtObjectPtr ptr, QtObjectPtr rectangle, int startAngle, int spanAngle){ + static_cast(ptr)->drawChord(*static_cast(rectangle), startAngle, spanAngle); +} + +void QPainter_DrawChord3(QtObjectPtr ptr, int x, int y, int width, int height, int startAngle, int spanAngle){ + static_cast(ptr)->drawChord(x, y, width, height, startAngle, spanAngle); +} + +void QPainter_DrawConvexPolygon4(QtObjectPtr ptr, QtObjectPtr polygon){ + static_cast(ptr)->drawConvexPolygon(*static_cast(polygon)); +} + +void QPainter_DrawConvexPolygon3(QtObjectPtr ptr, QtObjectPtr polygon){ + static_cast(ptr)->drawConvexPolygon(*static_cast(polygon)); +} + +void QPainter_DrawEllipse5(QtObjectPtr ptr, QtObjectPtr center, int rx, int ry){ + static_cast(ptr)->drawEllipse(*static_cast(center), rx, ry); +} + +void QPainter_DrawEllipse3(QtObjectPtr ptr, int x, int y, int width, int height){ + static_cast(ptr)->drawEllipse(x, y, width, height); +} + +void QPainter_DrawImage4(QtObjectPtr ptr, QtObjectPtr point, QtObjectPtr image){ + static_cast(ptr)->drawImage(*static_cast(point), *static_cast(image)); +} + +void QPainter_DrawImage6(QtObjectPtr ptr, QtObjectPtr point, QtObjectPtr image, QtObjectPtr source, int flags){ + static_cast(ptr)->drawImage(*static_cast(point), *static_cast(image), *static_cast(source), static_cast(flags)); +} + +void QPainter_DrawImage5(QtObjectPtr ptr, QtObjectPtr point, QtObjectPtr image, QtObjectPtr source, int flags){ + static_cast(ptr)->drawImage(*static_cast(point), *static_cast(image), *static_cast(source), static_cast(flags)); +} + +void QPainter_DrawImage8(QtObjectPtr ptr, QtObjectPtr rectangle, QtObjectPtr image){ + static_cast(ptr)->drawImage(*static_cast(rectangle), *static_cast(image)); +} + +void QPainter_DrawImage2(QtObjectPtr ptr, QtObjectPtr target, QtObjectPtr image, QtObjectPtr source, int flags){ + static_cast(ptr)->drawImage(*static_cast(target), *static_cast(image), *static_cast(source), static_cast(flags)); +} + +void QPainter_DrawImage7(QtObjectPtr ptr, QtObjectPtr rectangle, QtObjectPtr image){ + static_cast(ptr)->drawImage(*static_cast(rectangle), *static_cast(image)); +} + +void QPainter_DrawImage9(QtObjectPtr ptr, int x, int y, QtObjectPtr image, int sx, int sy, int sw, int sh, int flags){ + static_cast(ptr)->drawImage(x, y, *static_cast(image), sx, sy, sw, sh, static_cast(flags)); +} + +void QPainter_DrawLine2(QtObjectPtr ptr, QtObjectPtr line){ + static_cast(ptr)->drawLine(*static_cast(line)); +} + +void QPainter_DrawLine(QtObjectPtr ptr, QtObjectPtr line){ + static_cast(ptr)->drawLine(*static_cast(line)); +} + +void QPainter_DrawLine3(QtObjectPtr ptr, QtObjectPtr p1, QtObjectPtr p2){ + static_cast(ptr)->drawLine(*static_cast(p1), *static_cast(p2)); +} + +void QPainter_DrawLine4(QtObjectPtr ptr, QtObjectPtr p1, QtObjectPtr p2){ + static_cast(ptr)->drawLine(*static_cast(p1), *static_cast(p2)); +} + +void QPainter_DrawLine5(QtObjectPtr ptr, int x1, int y1, int x2, int y2){ + static_cast(ptr)->drawLine(x1, y1, x2, y2); +} + +void QPainter_DrawLines(QtObjectPtr ptr, QtObjectPtr lines, int lineCount){ + static_cast(ptr)->drawLines(static_cast(lines), lineCount); +} + +void QPainter_DrawLines4(QtObjectPtr ptr, QtObjectPtr pointPairs, int lineCount){ + static_cast(ptr)->drawLines(static_cast(pointPairs), lineCount); +} + +void QPainter_DrawLines3(QtObjectPtr ptr, QtObjectPtr pointPairs, int lineCount){ + static_cast(ptr)->drawLines(static_cast(pointPairs), lineCount); +} + +void QPainter_DrawPath(QtObjectPtr ptr, QtObjectPtr path){ + static_cast(ptr)->drawPath(*static_cast(path)); +} + +void QPainter_DrawPicture2(QtObjectPtr ptr, QtObjectPtr point, QtObjectPtr picture){ + static_cast(ptr)->drawPicture(*static_cast(point), *static_cast(picture)); +} + +void QPainter_DrawPicture3(QtObjectPtr ptr, int x, int y, QtObjectPtr picture){ + static_cast(ptr)->drawPicture(x, y, *static_cast(picture)); +} + +void QPainter_DrawPie2(QtObjectPtr ptr, QtObjectPtr rectangle, int startAngle, int spanAngle){ + static_cast(ptr)->drawPie(*static_cast(rectangle), startAngle, spanAngle); +} + +void QPainter_DrawPie3(QtObjectPtr ptr, int x, int y, int width, int height, int startAngle, int spanAngle){ + static_cast(ptr)->drawPie(x, y, width, height, startAngle, spanAngle); +} + +void QPainter_DrawPixmap6(QtObjectPtr ptr, QtObjectPtr point, QtObjectPtr pixmap){ + static_cast(ptr)->drawPixmap(*static_cast(point), *static_cast(pixmap)); +} + +void QPainter_DrawPixmap4(QtObjectPtr ptr, QtObjectPtr point, QtObjectPtr pixmap, QtObjectPtr source){ + static_cast(ptr)->drawPixmap(*static_cast(point), *static_cast(pixmap), *static_cast(source)); +} + +void QPainter_DrawPixmap3(QtObjectPtr ptr, QtObjectPtr point, QtObjectPtr pixmap, QtObjectPtr source){ + static_cast(ptr)->drawPixmap(*static_cast(point), *static_cast(pixmap), *static_cast(source)); +} + +void QPainter_DrawPixmap8(QtObjectPtr ptr, QtObjectPtr rectangle, QtObjectPtr pixmap){ + static_cast(ptr)->drawPixmap(*static_cast(rectangle), *static_cast(pixmap)); +} + +void QPainter_DrawPixmap2(QtObjectPtr ptr, QtObjectPtr target, QtObjectPtr pixmap, QtObjectPtr source){ + static_cast(ptr)->drawPixmap(*static_cast(target), *static_cast(pixmap), *static_cast(source)); +} + +void QPainter_DrawPixmap7(QtObjectPtr ptr, int x, int y, QtObjectPtr pixmap){ + static_cast(ptr)->drawPixmap(x, y, *static_cast(pixmap)); +} + +void QPainter_DrawPixmap11(QtObjectPtr ptr, int x, int y, QtObjectPtr pixmap, int sx, int sy, int sw, int sh){ + static_cast(ptr)->drawPixmap(x, y, *static_cast(pixmap), sx, sy, sw, sh); +} + +void QPainter_DrawPixmap10(QtObjectPtr ptr, int x, int y, int w, int h, QtObjectPtr pixmap, int sx, int sy, int sw, int sh){ + static_cast(ptr)->drawPixmap(x, y, w, h, *static_cast(pixmap), sx, sy, sw, sh); +} + +void QPainter_DrawPixmap9(QtObjectPtr ptr, int x, int y, int width, int height, QtObjectPtr pixmap){ + static_cast(ptr)->drawPixmap(x, y, width, height, *static_cast(pixmap)); +} + +void QPainter_DrawPoint2(QtObjectPtr ptr, QtObjectPtr position){ + static_cast(ptr)->drawPoint(*static_cast(position)); +} + +void QPainter_DrawPoint(QtObjectPtr ptr, QtObjectPtr position){ + static_cast(ptr)->drawPoint(*static_cast(position)); +} + +void QPainter_DrawPoint3(QtObjectPtr ptr, int x, int y){ + static_cast(ptr)->drawPoint(x, y); +} + +void QPainter_DrawPoints2(QtObjectPtr ptr, QtObjectPtr points, int pointCount){ + static_cast(ptr)->drawPoints(static_cast(points), pointCount); +} + +void QPainter_DrawPoints(QtObjectPtr ptr, QtObjectPtr points, int pointCount){ + static_cast(ptr)->drawPoints(static_cast(points), pointCount); +} + +void QPainter_DrawPoints4(QtObjectPtr ptr, QtObjectPtr points){ + static_cast(ptr)->drawPoints(*static_cast(points)); +} + +void QPainter_DrawPoints3(QtObjectPtr ptr, QtObjectPtr points){ + static_cast(ptr)->drawPoints(*static_cast(points)); +} + +void QPainter_DrawPolygon2(QtObjectPtr ptr, QtObjectPtr points, int pointCount, int fillRule){ + static_cast(ptr)->drawPolygon(static_cast(points), pointCount, static_cast(fillRule)); +} + +void QPainter_DrawPolygon(QtObjectPtr ptr, QtObjectPtr points, int pointCount, int fillRule){ + static_cast(ptr)->drawPolygon(static_cast(points), pointCount, static_cast(fillRule)); +} + +void QPainter_DrawPolygon4(QtObjectPtr ptr, QtObjectPtr points, int fillRule){ + static_cast(ptr)->drawPolygon(*static_cast(points), static_cast(fillRule)); +} + +void QPainter_DrawPolygon3(QtObjectPtr ptr, QtObjectPtr points, int fillRule){ + static_cast(ptr)->drawPolygon(*static_cast(points), static_cast(fillRule)); +} + +void QPainter_DrawPolyline2(QtObjectPtr ptr, QtObjectPtr points, int pointCount){ + static_cast(ptr)->drawPolyline(static_cast(points), pointCount); +} + +void QPainter_DrawPolyline(QtObjectPtr ptr, QtObjectPtr points, int pointCount){ + static_cast(ptr)->drawPolyline(static_cast(points), pointCount); +} + +void QPainter_DrawPolyline4(QtObjectPtr ptr, QtObjectPtr points){ + static_cast(ptr)->drawPolyline(*static_cast(points)); +} + +void QPainter_DrawPolyline3(QtObjectPtr ptr, QtObjectPtr points){ + static_cast(ptr)->drawPolyline(*static_cast(points)); +} + +void QPainter_DrawRect2(QtObjectPtr ptr, QtObjectPtr rectangle){ + static_cast(ptr)->drawRect(*static_cast(rectangle)); +} + +void QPainter_DrawRect(QtObjectPtr ptr, QtObjectPtr rectangle){ + static_cast(ptr)->drawRect(*static_cast(rectangle)); +} + +void QPainter_DrawRect3(QtObjectPtr ptr, int x, int y, int width, int height){ + static_cast(ptr)->drawRect(x, y, width, height); +} + +void QPainter_DrawStaticText2(QtObjectPtr ptr, QtObjectPtr topLeftPosition, QtObjectPtr staticText){ + static_cast(ptr)->drawStaticText(*static_cast(topLeftPosition), *static_cast(staticText)); +} + +void QPainter_DrawStaticText(QtObjectPtr ptr, QtObjectPtr topLeftPosition, QtObjectPtr staticText){ + static_cast(ptr)->drawStaticText(*static_cast(topLeftPosition), *static_cast(staticText)); +} + +void QPainter_DrawStaticText3(QtObjectPtr ptr, int left, int top, QtObjectPtr staticText){ + static_cast(ptr)->drawStaticText(left, top, *static_cast(staticText)); +} + +void QPainter_DrawText3(QtObjectPtr ptr, QtObjectPtr position, char* text){ + static_cast(ptr)->drawText(*static_cast(position), QString(text)); +} + +void QPainter_DrawText6(QtObjectPtr ptr, int x, int y, char* text){ + static_cast(ptr)->drawText(x, y, QString(text)); +} + +void QPainter_DrawText7(QtObjectPtr ptr, int x, int y, int width, int height, int flags, char* text, QtObjectPtr boundingRect){ + static_cast(ptr)->drawText(x, y, width, height, flags, QString(text), static_cast(boundingRect)); +} + +void QPainter_DrawTiledPixmap2(QtObjectPtr ptr, QtObjectPtr rectangle, QtObjectPtr pixmap, QtObjectPtr position){ + static_cast(ptr)->drawTiledPixmap(*static_cast(rectangle), *static_cast(pixmap), *static_cast(position)); +} + +void QPainter_DrawTiledPixmap3(QtObjectPtr ptr, int x, int y, int width, int height, QtObjectPtr pixmap, int sx, int sy){ + static_cast(ptr)->drawTiledPixmap(x, y, width, height, *static_cast(pixmap), sx, sy); +} + +int QPainter_End(QtObjectPtr ptr){ + return static_cast(ptr)->end(); +} + +void QPainter_EndNativePainting(QtObjectPtr ptr){ + static_cast(ptr)->endNativePainting(); +} + +void QPainter_EraseRect2(QtObjectPtr ptr, QtObjectPtr rectangle){ + static_cast(ptr)->eraseRect(*static_cast(rectangle)); +} + +void QPainter_EraseRect3(QtObjectPtr ptr, int x, int y, int width, int height){ + static_cast(ptr)->eraseRect(x, y, width, height); +} + +void QPainter_FillPath(QtObjectPtr ptr, QtObjectPtr path, QtObjectPtr brush){ + static_cast(ptr)->fillPath(*static_cast(path), *static_cast(brush)); +} + +void QPainter_FillRect3(QtObjectPtr ptr, QtObjectPtr rectangle, int style){ + static_cast(ptr)->fillRect(*static_cast(rectangle), static_cast(style)); +} + +void QPainter_FillRect11(QtObjectPtr ptr, QtObjectPtr rectangle, int color){ + static_cast(ptr)->fillRect(*static_cast(rectangle), static_cast(color)); +} + +void QPainter_FillRect4(QtObjectPtr ptr, QtObjectPtr rectangle, int style){ + static_cast(ptr)->fillRect(*static_cast(rectangle), static_cast(style)); +} + +void QPainter_FillRect12(QtObjectPtr ptr, QtObjectPtr rectangle, int color){ + static_cast(ptr)->fillRect(*static_cast(rectangle), static_cast(color)); +} + +void QPainter_FillRect2(QtObjectPtr ptr, int x, int y, int width, int height, int style){ + static_cast(ptr)->fillRect(x, y, width, height, static_cast(style)); +} + +void QPainter_FillRect10(QtObjectPtr ptr, int x, int y, int width, int height, int color){ + static_cast(ptr)->fillRect(x, y, width, height, static_cast(color)); +} + +void QPainter_FillRect8(QtObjectPtr ptr, int x, int y, int width, int height, QtObjectPtr brush){ + static_cast(ptr)->fillRect(x, y, width, height, *static_cast(brush)); +} + +void QPainter_FillRect9(QtObjectPtr ptr, int x, int y, int width, int height, QtObjectPtr color){ + static_cast(ptr)->fillRect(x, y, width, height, *static_cast(color)); +} + +int QPainter_HasClipping(QtObjectPtr ptr){ + return static_cast(ptr)->hasClipping(); +} + +int QPainter_IsActive(QtObjectPtr ptr){ + return static_cast(ptr)->isActive(); +} + +int QPainter_LayoutDirection(QtObjectPtr ptr){ + return static_cast(ptr)->layoutDirection(); +} + +QtObjectPtr QPainter_PaintEngine(QtObjectPtr ptr){ + return static_cast(ptr)->paintEngine(); +} + +int QPainter_RenderHints(QtObjectPtr ptr){ + return static_cast(ptr)->renderHints(); +} + +void QPainter_ResetTransform(QtObjectPtr ptr){ + static_cast(ptr)->resetTransform(); +} + +void QPainter_Restore(QtObjectPtr ptr){ + static_cast(ptr)->restore(); +} + +void QPainter_Save(QtObjectPtr ptr){ + static_cast(ptr)->save(); +} + +void QPainter_SetBackgroundMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setBackgroundMode(static_cast(mode)); +} + +void QPainter_SetBrush2(QtObjectPtr ptr, int style){ + static_cast(ptr)->setBrush(static_cast(style)); +} + +void QPainter_SetBrush(QtObjectPtr ptr, QtObjectPtr brush){ + static_cast(ptr)->setBrush(*static_cast(brush)); +} + +void QPainter_SetBrushOrigin2(QtObjectPtr ptr, QtObjectPtr position){ + static_cast(ptr)->setBrushOrigin(*static_cast(position)); +} + +void QPainter_SetBrushOrigin3(QtObjectPtr ptr, int x, int y){ + static_cast(ptr)->setBrushOrigin(x, y); +} + +void QPainter_SetClipRect2(QtObjectPtr ptr, int x, int y, int width, int height, int operation){ + static_cast(ptr)->setClipRect(x, y, width, height, static_cast(operation)); +} + +void QPainter_SetClipping(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setClipping(enable != 0); +} + +void QPainter_SetCompositionMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setCompositionMode(static_cast(mode)); +} + +void QPainter_SetFont(QtObjectPtr ptr, QtObjectPtr font){ + static_cast(ptr)->setFont(*static_cast(font)); +} + +void QPainter_SetLayoutDirection(QtObjectPtr ptr, int direction){ + static_cast(ptr)->setLayoutDirection(static_cast(direction)); +} + +void QPainter_SetPen3(QtObjectPtr ptr, int style){ + static_cast(ptr)->setPen(static_cast(style)); +} + +void QPainter_SetPen2(QtObjectPtr ptr, QtObjectPtr color){ + static_cast(ptr)->setPen(*static_cast(color)); +} + +void QPainter_SetPen(QtObjectPtr ptr, QtObjectPtr pen){ + static_cast(ptr)->setPen(*static_cast(pen)); +} + +void QPainter_SetRenderHint(QtObjectPtr ptr, int hint, int on){ + static_cast(ptr)->setRenderHint(static_cast(hint), on != 0); +} + +void QPainter_SetRenderHints(QtObjectPtr ptr, int hints, int on){ + static_cast(ptr)->setRenderHints(static_cast(hints), on != 0); +} + +void QPainter_SetTransform(QtObjectPtr ptr, QtObjectPtr transform, int combine){ + static_cast(ptr)->setTransform(*static_cast(transform), combine != 0); +} + +void QPainter_SetViewTransformEnabled(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setViewTransformEnabled(enable != 0); +} + +void QPainter_SetViewport2(QtObjectPtr ptr, int x, int y, int width, int height){ + static_cast(ptr)->setViewport(x, y, width, height); +} + +void QPainter_SetWindow2(QtObjectPtr ptr, int x, int y, int width, int height){ + static_cast(ptr)->setWindow(x, y, width, height); +} + +void QPainter_SetWorldMatrixEnabled(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setWorldMatrixEnabled(enable != 0); +} + +void QPainter_SetWorldTransform(QtObjectPtr ptr, QtObjectPtr matrix, int combine){ + static_cast(ptr)->setWorldTransform(*static_cast(matrix), combine != 0); +} + +void QPainter_StrokePath(QtObjectPtr ptr, QtObjectPtr path, QtObjectPtr pen){ + static_cast(ptr)->strokePath(*static_cast(path), *static_cast(pen)); +} + +int QPainter_TestRenderHint(QtObjectPtr ptr, int hint){ + return static_cast(ptr)->testRenderHint(static_cast(hint)); +} + +void QPainter_Translate2(QtObjectPtr ptr, QtObjectPtr offset){ + static_cast(ptr)->translate(*static_cast(offset)); +} + +void QPainter_Translate(QtObjectPtr ptr, QtObjectPtr offset){ + static_cast(ptr)->translate(*static_cast(offset)); +} + +int QPainter_ViewTransformEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->viewTransformEnabled(); +} + +int QPainter_WorldMatrixEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->worldMatrixEnabled(); +} + +void QPainter_DestroyQPainter(QtObjectPtr ptr){ + static_cast(ptr)->~QPainter(); +} + diff --git a/gui/qpainter.go b/gui/qpainter.go new file mode 100755 index 00000000..479221b7 --- /dev/null +++ b/gui/qpainter.go @@ -0,0 +1,1032 @@ +package gui + +//#include "qpainter.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QPainter struct { + ptr unsafe.Pointer +} + +type QPainterITF interface { + QPainterPTR() *QPainter +} + +func (p *QPainter) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPainter) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPainter(ptr QPainterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPainterPTR().Pointer() + } + return nil +} + +func QPainterFromPointer(ptr unsafe.Pointer) *QPainter { + var n = new(QPainter) + n.SetPointer(ptr) + return n +} + +func (ptr *QPainter) QPainterPTR() *QPainter { + return ptr +} + +//QPainter::CompositionMode +type QPainter__CompositionMode int + +var ( + QPainter__CompositionMode_SourceOver = QPainter__CompositionMode(0) + QPainter__CompositionMode_DestinationOver = QPainter__CompositionMode(1) + QPainter__CompositionMode_Clear = QPainter__CompositionMode(2) + QPainter__CompositionMode_Source = QPainter__CompositionMode(3) + QPainter__CompositionMode_Destination = QPainter__CompositionMode(4) + QPainter__CompositionMode_SourceIn = QPainter__CompositionMode(5) + QPainter__CompositionMode_DestinationIn = QPainter__CompositionMode(6) + QPainter__CompositionMode_SourceOut = QPainter__CompositionMode(7) + QPainter__CompositionMode_DestinationOut = QPainter__CompositionMode(8) + QPainter__CompositionMode_SourceAtop = QPainter__CompositionMode(9) + QPainter__CompositionMode_DestinationAtop = QPainter__CompositionMode(10) + QPainter__CompositionMode_Xor = QPainter__CompositionMode(11) + QPainter__CompositionMode_Plus = QPainter__CompositionMode(12) + QPainter__CompositionMode_Multiply = QPainter__CompositionMode(13) + QPainter__CompositionMode_Screen = QPainter__CompositionMode(14) + QPainter__CompositionMode_Overlay = QPainter__CompositionMode(15) + QPainter__CompositionMode_Darken = QPainter__CompositionMode(16) + QPainter__CompositionMode_Lighten = QPainter__CompositionMode(17) + QPainter__CompositionMode_ColorDodge = QPainter__CompositionMode(18) + QPainter__CompositionMode_ColorBurn = QPainter__CompositionMode(19) + QPainter__CompositionMode_HardLight = QPainter__CompositionMode(20) + QPainter__CompositionMode_SoftLight = QPainter__CompositionMode(21) + QPainter__CompositionMode_Difference = QPainter__CompositionMode(22) + QPainter__CompositionMode_Exclusion = QPainter__CompositionMode(23) + QPainter__RasterOp_SourceOrDestination = QPainter__CompositionMode(24) + QPainter__RasterOp_SourceAndDestination = QPainter__CompositionMode(25) + QPainter__RasterOp_SourceXorDestination = QPainter__CompositionMode(26) + QPainter__RasterOp_NotSourceAndNotDestination = QPainter__CompositionMode(27) + QPainter__RasterOp_NotSourceOrNotDestination = QPainter__CompositionMode(28) + QPainter__RasterOp_NotSourceXorDestination = QPainter__CompositionMode(29) + QPainter__RasterOp_NotSource = QPainter__CompositionMode(30) + QPainter__RasterOp_NotSourceAndDestination = QPainter__CompositionMode(31) + QPainter__RasterOp_SourceAndNotDestination = QPainter__CompositionMode(32) + QPainter__RasterOp_NotSourceOrDestination = QPainter__CompositionMode(33) + QPainter__RasterOp_SourceOrNotDestination = QPainter__CompositionMode(34) + QPainter__RasterOp_ClearDestination = QPainter__CompositionMode(35) + QPainter__RasterOp_SetDestination = QPainter__CompositionMode(36) + QPainter__RasterOp_NotDestination = QPainter__CompositionMode(37) +) + +//QPainter::PixmapFragmentHint +type QPainter__PixmapFragmentHint int + +var ( + QPainter__OpaqueHint = QPainter__PixmapFragmentHint(0x01) +) + +//QPainter::RenderHint +type QPainter__RenderHint int + +var ( + QPainter__Antialiasing = QPainter__RenderHint(0x01) + QPainter__TextAntialiasing = QPainter__RenderHint(0x02) + QPainter__SmoothPixmapTransform = QPainter__RenderHint(0x04) + QPainter__HighQualityAntialiasing = QPainter__RenderHint(0x08) + QPainter__NonCosmeticDefaultPen = QPainter__RenderHint(0x10) + QPainter__Qt4CompatiblePainting = QPainter__RenderHint(0x20) +) + +func NewQPainter2(device QPaintDeviceITF) *QPainter { + return QPainterFromPointer(unsafe.Pointer(C.QPainter_NewQPainter2(C.QtObjectPtr(PointerFromQPaintDevice(device))))) +} + +func (ptr *QPainter) Begin(device QPaintDeviceITF) bool { + if ptr.Pointer() != nil { + return C.QPainter_Begin(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPaintDevice(device))) != 0 + } + return false +} + +func (ptr *QPainter) DrawArc(rectangle core.QRectFITF, startAngle int, spanAngle int) { + if ptr.Pointer() != nil { + C.QPainter_DrawArc(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rectangle)), C.int(startAngle), C.int(spanAngle)) + } +} + +func (ptr *QPainter) DrawChord(rectangle core.QRectFITF, startAngle int, spanAngle int) { + if ptr.Pointer() != nil { + C.QPainter_DrawChord(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rectangle)), C.int(startAngle), C.int(spanAngle)) + } +} + +func (ptr *QPainter) DrawConvexPolygon2(points core.QPointITF, pointCount int) { + if ptr.Pointer() != nil { + C.QPainter_DrawConvexPolygon2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(points)), C.int(pointCount)) + } +} + +func (ptr *QPainter) DrawConvexPolygon(points core.QPointFITF, pointCount int) { + if ptr.Pointer() != nil { + C.QPainter_DrawConvexPolygon(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(points)), C.int(pointCount)) + } +} + +func (ptr *QPainter) DrawEllipse2(rectangle core.QRectITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawEllipse2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rectangle))) + } +} + +func (ptr *QPainter) DrawEllipse(rectangle core.QRectFITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawEllipse(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rectangle))) + } +} + +func (ptr *QPainter) DrawGlyphRun(position core.QPointFITF, glyphs QGlyphRunITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawGlyphRun(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(position)), C.QtObjectPtr(PointerFromQGlyphRun(glyphs))) + } +} + +func (ptr *QPainter) DrawImage3(point core.QPointFITF, image QImageITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawImage3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(point)), C.QtObjectPtr(PointerFromQImage(image))) + } +} + +func (ptr *QPainter) DrawImage(target core.QRectFITF, image QImageITF, source core.QRectFITF, flags core.Qt__ImageConversionFlag) { + if ptr.Pointer() != nil { + C.QPainter_DrawImage(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(target)), C.QtObjectPtr(PointerFromQImage(image)), C.QtObjectPtr(core.PointerFromQRectF(source)), C.int(flags)) + } +} + +func (ptr *QPainter) DrawLines2(lines core.QLineITF, lineCount int) { + if ptr.Pointer() != nil { + C.QPainter_DrawLines2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQLine(lines)), C.int(lineCount)) + } +} + +func (ptr *QPainter) DrawPicture(point core.QPointFITF, picture QPictureITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawPicture(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(point)), C.QtObjectPtr(PointerFromQPicture(picture))) + } +} + +func (ptr *QPainter) DrawPie(rectangle core.QRectFITF, startAngle int, spanAngle int) { + if ptr.Pointer() != nil { + C.QPainter_DrawPie(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rectangle)), C.int(startAngle), C.int(spanAngle)) + } +} + +func (ptr *QPainter) DrawPixmap5(point core.QPointFITF, pixmap QPixmapITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawPixmap5(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(point)), C.QtObjectPtr(PointerFromQPixmap(pixmap))) + } +} + +func (ptr *QPainter) DrawPixmap(target core.QRectFITF, pixmap QPixmapITF, source core.QRectFITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawPixmap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(target)), C.QtObjectPtr(PointerFromQPixmap(pixmap)), C.QtObjectPtr(core.PointerFromQRectF(source))) + } +} + +func (ptr *QPainter) DrawRects2(rectangles core.QRectITF, rectCount int) { + if ptr.Pointer() != nil { + C.QPainter_DrawRects2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rectangles)), C.int(rectCount)) + } +} + +func (ptr *QPainter) DrawRects(rectangles core.QRectFITF, rectCount int) { + if ptr.Pointer() != nil { + C.QPainter_DrawRects(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rectangles)), C.int(rectCount)) + } +} + +func (ptr *QPainter) DrawText(position core.QPointFITF, text string) { + if ptr.Pointer() != nil { + C.QPainter_DrawText(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(position)), C.CString(text)) + } +} + +func (ptr *QPainter) DrawText5(rectangle core.QRectITF, flags int, text string, boundingRect core.QRectITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawText5(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rectangle)), C.int(flags), C.CString(text), C.QtObjectPtr(core.PointerFromQRect(boundingRect))) + } +} + +func (ptr *QPainter) DrawText8(rectangle core.QRectFITF, text string, option QTextOptionITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawText8(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rectangle)), C.CString(text), C.QtObjectPtr(PointerFromQTextOption(option))) + } +} + +func (ptr *QPainter) DrawText4(rectangle core.QRectFITF, flags int, text string, boundingRect core.QRectFITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawText4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rectangle)), C.int(flags), C.CString(text), C.QtObjectPtr(core.PointerFromQRectF(boundingRect))) + } +} + +func (ptr *QPainter) DrawTiledPixmap(rectangle core.QRectFITF, pixmap QPixmapITF, position core.QPointFITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawTiledPixmap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rectangle)), C.QtObjectPtr(PointerFromQPixmap(pixmap)), C.QtObjectPtr(core.PointerFromQPointF(position))) + } +} + +func (ptr *QPainter) EraseRect(rectangle core.QRectFITF) { + if ptr.Pointer() != nil { + C.QPainter_EraseRect(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rectangle))) + } +} + +func (ptr *QPainter) FillRect5(rectangle core.QRectITF, brush QBrushITF) { + if ptr.Pointer() != nil { + C.QPainter_FillRect5(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rectangle)), C.QtObjectPtr(PointerFromQBrush(brush))) + } +} + +func (ptr *QPainter) FillRect6(rectangle core.QRectITF, color QColorITF) { + if ptr.Pointer() != nil { + C.QPainter_FillRect6(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rectangle)), C.QtObjectPtr(PointerFromQColor(color))) + } +} + +func (ptr *QPainter) FillRect(rectangle core.QRectFITF, brush QBrushITF) { + if ptr.Pointer() != nil { + C.QPainter_FillRect(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rectangle)), C.QtObjectPtr(PointerFromQBrush(brush))) + } +} + +func (ptr *QPainter) FillRect7(rectangle core.QRectFITF, color QColorITF) { + if ptr.Pointer() != nil { + C.QPainter_FillRect7(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rectangle)), C.QtObjectPtr(PointerFromQColor(color))) + } +} + +func (ptr *QPainter) SetBackground(brush QBrushITF) { + if ptr.Pointer() != nil { + C.QPainter_SetBackground(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQBrush(brush))) + } +} + +func (ptr *QPainter) SetBrushOrigin(position core.QPointFITF) { + if ptr.Pointer() != nil { + C.QPainter_SetBrushOrigin(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(position))) + } +} + +func (ptr *QPainter) SetClipPath(path QPainterPathITF, operation core.Qt__ClipOperation) { + if ptr.Pointer() != nil { + C.QPainter_SetClipPath(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPainterPath(path)), C.int(operation)) + } +} + +func (ptr *QPainter) SetClipRect3(rectangle core.QRectITF, operation core.Qt__ClipOperation) { + if ptr.Pointer() != nil { + C.QPainter_SetClipRect3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rectangle)), C.int(operation)) + } +} + +func (ptr *QPainter) SetClipRect(rectangle core.QRectFITF, operation core.Qt__ClipOperation) { + if ptr.Pointer() != nil { + C.QPainter_SetClipRect(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rectangle)), C.int(operation)) + } +} + +func (ptr *QPainter) SetClipRegion(region QRegionITF, operation core.Qt__ClipOperation) { + if ptr.Pointer() != nil { + C.QPainter_SetClipRegion(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQRegion(region)), C.int(operation)) + } +} + +func (ptr *QPainter) SetViewport(rectangle core.QRectITF) { + if ptr.Pointer() != nil { + C.QPainter_SetViewport(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rectangle))) + } +} + +func (ptr *QPainter) SetWindow(rectangle core.QRectITF) { + if ptr.Pointer() != nil { + C.QPainter_SetWindow(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rectangle))) + } +} + +func NewQPainter() *QPainter { + return QPainterFromPointer(unsafe.Pointer(C.QPainter_NewQPainter())) +} + +func (ptr *QPainter) BackgroundMode() core.Qt__BGMode { + if ptr.Pointer() != nil { + return core.Qt__BGMode(C.QPainter_BackgroundMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPainter) BeginNativePainting() { + if ptr.Pointer() != nil { + C.QPainter_BeginNativePainting(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QPainter) CompositionMode() QPainter__CompositionMode { + if ptr.Pointer() != nil { + return QPainter__CompositionMode(C.QPainter_CompositionMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPainter) Device() *QPaintDevice { + if ptr.Pointer() != nil { + return QPaintDeviceFromPointer(unsafe.Pointer(C.QPainter_Device(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QPainter) DrawArc2(rectangle core.QRectITF, startAngle int, spanAngle int) { + if ptr.Pointer() != nil { + C.QPainter_DrawArc2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rectangle)), C.int(startAngle), C.int(spanAngle)) + } +} + +func (ptr *QPainter) DrawArc3(x int, y int, width int, height int, startAngle int, spanAngle int) { + if ptr.Pointer() != nil { + C.QPainter_DrawArc3(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.int(width), C.int(height), C.int(startAngle), C.int(spanAngle)) + } +} + +func (ptr *QPainter) DrawChord2(rectangle core.QRectITF, startAngle int, spanAngle int) { + if ptr.Pointer() != nil { + C.QPainter_DrawChord2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rectangle)), C.int(startAngle), C.int(spanAngle)) + } +} + +func (ptr *QPainter) DrawChord3(x int, y int, width int, height int, startAngle int, spanAngle int) { + if ptr.Pointer() != nil { + C.QPainter_DrawChord3(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.int(width), C.int(height), C.int(startAngle), C.int(spanAngle)) + } +} + +func (ptr *QPainter) DrawConvexPolygon4(polygon QPolygonITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawConvexPolygon4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPolygon(polygon))) + } +} + +func (ptr *QPainter) DrawConvexPolygon3(polygon QPolygonFITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawConvexPolygon3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPolygonF(polygon))) + } +} + +func (ptr *QPainter) DrawEllipse5(center core.QPointITF, rx int, ry int) { + if ptr.Pointer() != nil { + C.QPainter_DrawEllipse5(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(center)), C.int(rx), C.int(ry)) + } +} + +func (ptr *QPainter) DrawEllipse3(x int, y int, width int, height int) { + if ptr.Pointer() != nil { + C.QPainter_DrawEllipse3(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.int(width), C.int(height)) + } +} + +func (ptr *QPainter) DrawImage4(point core.QPointITF, image QImageITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawImage4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(point)), C.QtObjectPtr(PointerFromQImage(image))) + } +} + +func (ptr *QPainter) DrawImage6(point core.QPointITF, image QImageITF, source core.QRectITF, flags core.Qt__ImageConversionFlag) { + if ptr.Pointer() != nil { + C.QPainter_DrawImage6(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(point)), C.QtObjectPtr(PointerFromQImage(image)), C.QtObjectPtr(core.PointerFromQRect(source)), C.int(flags)) + } +} + +func (ptr *QPainter) DrawImage5(point core.QPointFITF, image QImageITF, source core.QRectFITF, flags core.Qt__ImageConversionFlag) { + if ptr.Pointer() != nil { + C.QPainter_DrawImage5(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(point)), C.QtObjectPtr(PointerFromQImage(image)), C.QtObjectPtr(core.PointerFromQRectF(source)), C.int(flags)) + } +} + +func (ptr *QPainter) DrawImage8(rectangle core.QRectITF, image QImageITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawImage8(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rectangle)), C.QtObjectPtr(PointerFromQImage(image))) + } +} + +func (ptr *QPainter) DrawImage2(target core.QRectITF, image QImageITF, source core.QRectITF, flags core.Qt__ImageConversionFlag) { + if ptr.Pointer() != nil { + C.QPainter_DrawImage2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(target)), C.QtObjectPtr(PointerFromQImage(image)), C.QtObjectPtr(core.PointerFromQRect(source)), C.int(flags)) + } +} + +func (ptr *QPainter) DrawImage7(rectangle core.QRectFITF, image QImageITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawImage7(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rectangle)), C.QtObjectPtr(PointerFromQImage(image))) + } +} + +func (ptr *QPainter) DrawImage9(x int, y int, image QImageITF, sx int, sy int, sw int, sh int, flags core.Qt__ImageConversionFlag) { + if ptr.Pointer() != nil { + C.QPainter_DrawImage9(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.QtObjectPtr(PointerFromQImage(image)), C.int(sx), C.int(sy), C.int(sw), C.int(sh), C.int(flags)) + } +} + +func (ptr *QPainter) DrawLine2(line core.QLineITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawLine2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQLine(line))) + } +} + +func (ptr *QPainter) DrawLine(line core.QLineFITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawLine(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQLineF(line))) + } +} + +func (ptr *QPainter) DrawLine3(p1 core.QPointITF, p2 core.QPointITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawLine3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(p1)), C.QtObjectPtr(core.PointerFromQPoint(p2))) + } +} + +func (ptr *QPainter) DrawLine4(p1 core.QPointFITF, p2 core.QPointFITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawLine4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(p1)), C.QtObjectPtr(core.PointerFromQPointF(p2))) + } +} + +func (ptr *QPainter) DrawLine5(x1 int, y1 int, x2 int, y2 int) { + if ptr.Pointer() != nil { + C.QPainter_DrawLine5(C.QtObjectPtr(ptr.Pointer()), C.int(x1), C.int(y1), C.int(x2), C.int(y2)) + } +} + +func (ptr *QPainter) DrawLines(lines core.QLineFITF, lineCount int) { + if ptr.Pointer() != nil { + C.QPainter_DrawLines(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQLineF(lines)), C.int(lineCount)) + } +} + +func (ptr *QPainter) DrawLines4(pointPairs core.QPointITF, lineCount int) { + if ptr.Pointer() != nil { + C.QPainter_DrawLines4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(pointPairs)), C.int(lineCount)) + } +} + +func (ptr *QPainter) DrawLines3(pointPairs core.QPointFITF, lineCount int) { + if ptr.Pointer() != nil { + C.QPainter_DrawLines3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(pointPairs)), C.int(lineCount)) + } +} + +func (ptr *QPainter) DrawPath(path QPainterPathITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawPath(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPainterPath(path))) + } +} + +func (ptr *QPainter) DrawPicture2(point core.QPointITF, picture QPictureITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawPicture2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(point)), C.QtObjectPtr(PointerFromQPicture(picture))) + } +} + +func (ptr *QPainter) DrawPicture3(x int, y int, picture QPictureITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawPicture3(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.QtObjectPtr(PointerFromQPicture(picture))) + } +} + +func (ptr *QPainter) DrawPie2(rectangle core.QRectITF, startAngle int, spanAngle int) { + if ptr.Pointer() != nil { + C.QPainter_DrawPie2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rectangle)), C.int(startAngle), C.int(spanAngle)) + } +} + +func (ptr *QPainter) DrawPie3(x int, y int, width int, height int, startAngle int, spanAngle int) { + if ptr.Pointer() != nil { + C.QPainter_DrawPie3(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.int(width), C.int(height), C.int(startAngle), C.int(spanAngle)) + } +} + +func (ptr *QPainter) DrawPixmap6(point core.QPointITF, pixmap QPixmapITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawPixmap6(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(point)), C.QtObjectPtr(PointerFromQPixmap(pixmap))) + } +} + +func (ptr *QPainter) DrawPixmap4(point core.QPointITF, pixmap QPixmapITF, source core.QRectITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawPixmap4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(point)), C.QtObjectPtr(PointerFromQPixmap(pixmap)), C.QtObjectPtr(core.PointerFromQRect(source))) + } +} + +func (ptr *QPainter) DrawPixmap3(point core.QPointFITF, pixmap QPixmapITF, source core.QRectFITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawPixmap3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(point)), C.QtObjectPtr(PointerFromQPixmap(pixmap)), C.QtObjectPtr(core.PointerFromQRectF(source))) + } +} + +func (ptr *QPainter) DrawPixmap8(rectangle core.QRectITF, pixmap QPixmapITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawPixmap8(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rectangle)), C.QtObjectPtr(PointerFromQPixmap(pixmap))) + } +} + +func (ptr *QPainter) DrawPixmap2(target core.QRectITF, pixmap QPixmapITF, source core.QRectITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawPixmap2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(target)), C.QtObjectPtr(PointerFromQPixmap(pixmap)), C.QtObjectPtr(core.PointerFromQRect(source))) + } +} + +func (ptr *QPainter) DrawPixmap7(x int, y int, pixmap QPixmapITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawPixmap7(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.QtObjectPtr(PointerFromQPixmap(pixmap))) + } +} + +func (ptr *QPainter) DrawPixmap11(x int, y int, pixmap QPixmapITF, sx int, sy int, sw int, sh int) { + if ptr.Pointer() != nil { + C.QPainter_DrawPixmap11(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.QtObjectPtr(PointerFromQPixmap(pixmap)), C.int(sx), C.int(sy), C.int(sw), C.int(sh)) + } +} + +func (ptr *QPainter) DrawPixmap10(x int, y int, w int, h int, pixmap QPixmapITF, sx int, sy int, sw int, sh int) { + if ptr.Pointer() != nil { + C.QPainter_DrawPixmap10(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.int(w), C.int(h), C.QtObjectPtr(PointerFromQPixmap(pixmap)), C.int(sx), C.int(sy), C.int(sw), C.int(sh)) + } +} + +func (ptr *QPainter) DrawPixmap9(x int, y int, width int, height int, pixmap QPixmapITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawPixmap9(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.int(width), C.int(height), C.QtObjectPtr(PointerFromQPixmap(pixmap))) + } +} + +func (ptr *QPainter) DrawPoint2(position core.QPointITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawPoint2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(position))) + } +} + +func (ptr *QPainter) DrawPoint(position core.QPointFITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawPoint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(position))) + } +} + +func (ptr *QPainter) DrawPoint3(x int, y int) { + if ptr.Pointer() != nil { + C.QPainter_DrawPoint3(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y)) + } +} + +func (ptr *QPainter) DrawPoints2(points core.QPointITF, pointCount int) { + if ptr.Pointer() != nil { + C.QPainter_DrawPoints2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(points)), C.int(pointCount)) + } +} + +func (ptr *QPainter) DrawPoints(points core.QPointFITF, pointCount int) { + if ptr.Pointer() != nil { + C.QPainter_DrawPoints(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(points)), C.int(pointCount)) + } +} + +func (ptr *QPainter) DrawPoints4(points QPolygonITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawPoints4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPolygon(points))) + } +} + +func (ptr *QPainter) DrawPoints3(points QPolygonFITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawPoints3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPolygonF(points))) + } +} + +func (ptr *QPainter) DrawPolygon2(points core.QPointITF, pointCount int, fillRule core.Qt__FillRule) { + if ptr.Pointer() != nil { + C.QPainter_DrawPolygon2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(points)), C.int(pointCount), C.int(fillRule)) + } +} + +func (ptr *QPainter) DrawPolygon(points core.QPointFITF, pointCount int, fillRule core.Qt__FillRule) { + if ptr.Pointer() != nil { + C.QPainter_DrawPolygon(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(points)), C.int(pointCount), C.int(fillRule)) + } +} + +func (ptr *QPainter) DrawPolygon4(points QPolygonITF, fillRule core.Qt__FillRule) { + if ptr.Pointer() != nil { + C.QPainter_DrawPolygon4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPolygon(points)), C.int(fillRule)) + } +} + +func (ptr *QPainter) DrawPolygon3(points QPolygonFITF, fillRule core.Qt__FillRule) { + if ptr.Pointer() != nil { + C.QPainter_DrawPolygon3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPolygonF(points)), C.int(fillRule)) + } +} + +func (ptr *QPainter) DrawPolyline2(points core.QPointITF, pointCount int) { + if ptr.Pointer() != nil { + C.QPainter_DrawPolyline2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(points)), C.int(pointCount)) + } +} + +func (ptr *QPainter) DrawPolyline(points core.QPointFITF, pointCount int) { + if ptr.Pointer() != nil { + C.QPainter_DrawPolyline(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(points)), C.int(pointCount)) + } +} + +func (ptr *QPainter) DrawPolyline4(points QPolygonITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawPolyline4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPolygon(points))) + } +} + +func (ptr *QPainter) DrawPolyline3(points QPolygonFITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawPolyline3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPolygonF(points))) + } +} + +func (ptr *QPainter) DrawRect2(rectangle core.QRectITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawRect2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rectangle))) + } +} + +func (ptr *QPainter) DrawRect(rectangle core.QRectFITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawRect(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rectangle))) + } +} + +func (ptr *QPainter) DrawRect3(x int, y int, width int, height int) { + if ptr.Pointer() != nil { + C.QPainter_DrawRect3(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.int(width), C.int(height)) + } +} + +func (ptr *QPainter) DrawStaticText2(topLeftPosition core.QPointITF, staticText QStaticTextITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawStaticText2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(topLeftPosition)), C.QtObjectPtr(PointerFromQStaticText(staticText))) + } +} + +func (ptr *QPainter) DrawStaticText(topLeftPosition core.QPointFITF, staticText QStaticTextITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawStaticText(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(topLeftPosition)), C.QtObjectPtr(PointerFromQStaticText(staticText))) + } +} + +func (ptr *QPainter) DrawStaticText3(left int, top int, staticText QStaticTextITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawStaticText3(C.QtObjectPtr(ptr.Pointer()), C.int(left), C.int(top), C.QtObjectPtr(PointerFromQStaticText(staticText))) + } +} + +func (ptr *QPainter) DrawText3(position core.QPointITF, text string) { + if ptr.Pointer() != nil { + C.QPainter_DrawText3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(position)), C.CString(text)) + } +} + +func (ptr *QPainter) DrawText6(x int, y int, text string) { + if ptr.Pointer() != nil { + C.QPainter_DrawText6(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.CString(text)) + } +} + +func (ptr *QPainter) DrawText7(x int, y int, width int, height int, flags int, text string, boundingRect core.QRectITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawText7(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.int(width), C.int(height), C.int(flags), C.CString(text), C.QtObjectPtr(core.PointerFromQRect(boundingRect))) + } +} + +func (ptr *QPainter) DrawTiledPixmap2(rectangle core.QRectITF, pixmap QPixmapITF, position core.QPointITF) { + if ptr.Pointer() != nil { + C.QPainter_DrawTiledPixmap2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rectangle)), C.QtObjectPtr(PointerFromQPixmap(pixmap)), C.QtObjectPtr(core.PointerFromQPoint(position))) + } +} + +func (ptr *QPainter) DrawTiledPixmap3(x int, y int, width int, height int, pixmap QPixmapITF, sx int, sy int) { + if ptr.Pointer() != nil { + C.QPainter_DrawTiledPixmap3(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.int(width), C.int(height), C.QtObjectPtr(PointerFromQPixmap(pixmap)), C.int(sx), C.int(sy)) + } +} + +func (ptr *QPainter) End() bool { + if ptr.Pointer() != nil { + return C.QPainter_End(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPainter) EndNativePainting() { + if ptr.Pointer() != nil { + C.QPainter_EndNativePainting(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QPainter) EraseRect2(rectangle core.QRectITF) { + if ptr.Pointer() != nil { + C.QPainter_EraseRect2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rectangle))) + } +} + +func (ptr *QPainter) EraseRect3(x int, y int, width int, height int) { + if ptr.Pointer() != nil { + C.QPainter_EraseRect3(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.int(width), C.int(height)) + } +} + +func (ptr *QPainter) FillPath(path QPainterPathITF, brush QBrushITF) { + if ptr.Pointer() != nil { + C.QPainter_FillPath(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPainterPath(path)), C.QtObjectPtr(PointerFromQBrush(brush))) + } +} + +func (ptr *QPainter) FillRect3(rectangle core.QRectITF, style core.Qt__BrushStyle) { + if ptr.Pointer() != nil { + C.QPainter_FillRect3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rectangle)), C.int(style)) + } +} + +func (ptr *QPainter) FillRect11(rectangle core.QRectITF, color core.Qt__GlobalColor) { + if ptr.Pointer() != nil { + C.QPainter_FillRect11(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rectangle)), C.int(color)) + } +} + +func (ptr *QPainter) FillRect4(rectangle core.QRectFITF, style core.Qt__BrushStyle) { + if ptr.Pointer() != nil { + C.QPainter_FillRect4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rectangle)), C.int(style)) + } +} + +func (ptr *QPainter) FillRect12(rectangle core.QRectFITF, color core.Qt__GlobalColor) { + if ptr.Pointer() != nil { + C.QPainter_FillRect12(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rectangle)), C.int(color)) + } +} + +func (ptr *QPainter) FillRect2(x int, y int, width int, height int, style core.Qt__BrushStyle) { + if ptr.Pointer() != nil { + C.QPainter_FillRect2(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.int(width), C.int(height), C.int(style)) + } +} + +func (ptr *QPainter) FillRect10(x int, y int, width int, height int, color core.Qt__GlobalColor) { + if ptr.Pointer() != nil { + C.QPainter_FillRect10(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.int(width), C.int(height), C.int(color)) + } +} + +func (ptr *QPainter) FillRect8(x int, y int, width int, height int, brush QBrushITF) { + if ptr.Pointer() != nil { + C.QPainter_FillRect8(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.int(width), C.int(height), C.QtObjectPtr(PointerFromQBrush(brush))) + } +} + +func (ptr *QPainter) FillRect9(x int, y int, width int, height int, color QColorITF) { + if ptr.Pointer() != nil { + C.QPainter_FillRect9(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.int(width), C.int(height), C.QtObjectPtr(PointerFromQColor(color))) + } +} + +func (ptr *QPainter) HasClipping() bool { + if ptr.Pointer() != nil { + return C.QPainter_HasClipping(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPainter) IsActive() bool { + if ptr.Pointer() != nil { + return C.QPainter_IsActive(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPainter) LayoutDirection() core.Qt__LayoutDirection { + if ptr.Pointer() != nil { + return core.Qt__LayoutDirection(C.QPainter_LayoutDirection(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPainter) PaintEngine() *QPaintEngine { + if ptr.Pointer() != nil { + return QPaintEngineFromPointer(unsafe.Pointer(C.QPainter_PaintEngine(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QPainter) RenderHints() QPainter__RenderHint { + if ptr.Pointer() != nil { + return QPainter__RenderHint(C.QPainter_RenderHints(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPainter) ResetTransform() { + if ptr.Pointer() != nil { + C.QPainter_ResetTransform(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QPainter) Restore() { + if ptr.Pointer() != nil { + C.QPainter_Restore(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QPainter) Save() { + if ptr.Pointer() != nil { + C.QPainter_Save(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QPainter) SetBackgroundMode(mode core.Qt__BGMode) { + if ptr.Pointer() != nil { + C.QPainter_SetBackgroundMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QPainter) SetBrush2(style core.Qt__BrushStyle) { + if ptr.Pointer() != nil { + C.QPainter_SetBrush2(C.QtObjectPtr(ptr.Pointer()), C.int(style)) + } +} + +func (ptr *QPainter) SetBrush(brush QBrushITF) { + if ptr.Pointer() != nil { + C.QPainter_SetBrush(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQBrush(brush))) + } +} + +func (ptr *QPainter) SetBrushOrigin2(position core.QPointITF) { + if ptr.Pointer() != nil { + C.QPainter_SetBrushOrigin2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(position))) + } +} + +func (ptr *QPainter) SetBrushOrigin3(x int, y int) { + if ptr.Pointer() != nil { + C.QPainter_SetBrushOrigin3(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y)) + } +} + +func (ptr *QPainter) SetClipRect2(x int, y int, width int, height int, operation core.Qt__ClipOperation) { + if ptr.Pointer() != nil { + C.QPainter_SetClipRect2(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.int(width), C.int(height), C.int(operation)) + } +} + +func (ptr *QPainter) SetClipping(enable bool) { + if ptr.Pointer() != nil { + C.QPainter_SetClipping(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QPainter) SetCompositionMode(mode QPainter__CompositionMode) { + if ptr.Pointer() != nil { + C.QPainter_SetCompositionMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QPainter) SetFont(font QFontITF) { + if ptr.Pointer() != nil { + C.QPainter_SetFont(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQFont(font))) + } +} + +func (ptr *QPainter) SetLayoutDirection(direction core.Qt__LayoutDirection) { + if ptr.Pointer() != nil { + C.QPainter_SetLayoutDirection(C.QtObjectPtr(ptr.Pointer()), C.int(direction)) + } +} + +func (ptr *QPainter) SetPen3(style core.Qt__PenStyle) { + if ptr.Pointer() != nil { + C.QPainter_SetPen3(C.QtObjectPtr(ptr.Pointer()), C.int(style)) + } +} + +func (ptr *QPainter) SetPen2(color QColorITF) { + if ptr.Pointer() != nil { + C.QPainter_SetPen2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQColor(color))) + } +} + +func (ptr *QPainter) SetPen(pen QPenITF) { + if ptr.Pointer() != nil { + C.QPainter_SetPen(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPen(pen))) + } +} + +func (ptr *QPainter) SetRenderHint(hint QPainter__RenderHint, on bool) { + if ptr.Pointer() != nil { + C.QPainter_SetRenderHint(C.QtObjectPtr(ptr.Pointer()), C.int(hint), C.int(qt.GoBoolToInt(on))) + } +} + +func (ptr *QPainter) SetRenderHints(hints QPainter__RenderHint, on bool) { + if ptr.Pointer() != nil { + C.QPainter_SetRenderHints(C.QtObjectPtr(ptr.Pointer()), C.int(hints), C.int(qt.GoBoolToInt(on))) + } +} + +func (ptr *QPainter) SetTransform(transform QTransformITF, combine bool) { + if ptr.Pointer() != nil { + C.QPainter_SetTransform(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTransform(transform)), C.int(qt.GoBoolToInt(combine))) + } +} + +func (ptr *QPainter) SetViewTransformEnabled(enable bool) { + if ptr.Pointer() != nil { + C.QPainter_SetViewTransformEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QPainter) SetViewport2(x int, y int, width int, height int) { + if ptr.Pointer() != nil { + C.QPainter_SetViewport2(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.int(width), C.int(height)) + } +} + +func (ptr *QPainter) SetWindow2(x int, y int, width int, height int) { + if ptr.Pointer() != nil { + C.QPainter_SetWindow2(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.int(width), C.int(height)) + } +} + +func (ptr *QPainter) SetWorldMatrixEnabled(enable bool) { + if ptr.Pointer() != nil { + C.QPainter_SetWorldMatrixEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QPainter) SetWorldTransform(matrix QTransformITF, combine bool) { + if ptr.Pointer() != nil { + C.QPainter_SetWorldTransform(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTransform(matrix)), C.int(qt.GoBoolToInt(combine))) + } +} + +func (ptr *QPainter) StrokePath(path QPainterPathITF, pen QPenITF) { + if ptr.Pointer() != nil { + C.QPainter_StrokePath(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPainterPath(path)), C.QtObjectPtr(PointerFromQPen(pen))) + } +} + +func (ptr *QPainter) TestRenderHint(hint QPainter__RenderHint) bool { + if ptr.Pointer() != nil { + return C.QPainter_TestRenderHint(C.QtObjectPtr(ptr.Pointer()), C.int(hint)) != 0 + } + return false +} + +func (ptr *QPainter) Translate2(offset core.QPointITF) { + if ptr.Pointer() != nil { + C.QPainter_Translate2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(offset))) + } +} + +func (ptr *QPainter) Translate(offset core.QPointFITF) { + if ptr.Pointer() != nil { + C.QPainter_Translate(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(offset))) + } +} + +func (ptr *QPainter) ViewTransformEnabled() bool { + if ptr.Pointer() != nil { + return C.QPainter_ViewTransformEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPainter) WorldMatrixEnabled() bool { + if ptr.Pointer() != nil { + return C.QPainter_WorldMatrixEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPainter) DestroyQPainter() { + if ptr.Pointer() != nil { + C.QPainter_DestroyQPainter(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qpainter.h b/gui/qpainter.h new file mode 100755 index 00000000..3682cec4 --- /dev/null +++ b/gui/qpainter.h @@ -0,0 +1,162 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QPainter_NewQPainter2(QtObjectPtr device); +int QPainter_Begin(QtObjectPtr ptr, QtObjectPtr device); +void QPainter_DrawArc(QtObjectPtr ptr, QtObjectPtr rectangle, int startAngle, int spanAngle); +void QPainter_DrawChord(QtObjectPtr ptr, QtObjectPtr rectangle, int startAngle, int spanAngle); +void QPainter_DrawConvexPolygon2(QtObjectPtr ptr, QtObjectPtr points, int pointCount); +void QPainter_DrawConvexPolygon(QtObjectPtr ptr, QtObjectPtr points, int pointCount); +void QPainter_DrawEllipse2(QtObjectPtr ptr, QtObjectPtr rectangle); +void QPainter_DrawEllipse(QtObjectPtr ptr, QtObjectPtr rectangle); +void QPainter_DrawGlyphRun(QtObjectPtr ptr, QtObjectPtr position, QtObjectPtr glyphs); +void QPainter_DrawImage3(QtObjectPtr ptr, QtObjectPtr point, QtObjectPtr image); +void QPainter_DrawImage(QtObjectPtr ptr, QtObjectPtr target, QtObjectPtr image, QtObjectPtr source, int flags); +void QPainter_DrawLines2(QtObjectPtr ptr, QtObjectPtr lines, int lineCount); +void QPainter_DrawPicture(QtObjectPtr ptr, QtObjectPtr point, QtObjectPtr picture); +void QPainter_DrawPie(QtObjectPtr ptr, QtObjectPtr rectangle, int startAngle, int spanAngle); +void QPainter_DrawPixmap5(QtObjectPtr ptr, QtObjectPtr point, QtObjectPtr pixmap); +void QPainter_DrawPixmap(QtObjectPtr ptr, QtObjectPtr target, QtObjectPtr pixmap, QtObjectPtr source); +void QPainter_DrawRects2(QtObjectPtr ptr, QtObjectPtr rectangles, int rectCount); +void QPainter_DrawRects(QtObjectPtr ptr, QtObjectPtr rectangles, int rectCount); +void QPainter_DrawText(QtObjectPtr ptr, QtObjectPtr position, char* text); +void QPainter_DrawText5(QtObjectPtr ptr, QtObjectPtr rectangle, int flags, char* text, QtObjectPtr boundingRect); +void QPainter_DrawText8(QtObjectPtr ptr, QtObjectPtr rectangle, char* text, QtObjectPtr option); +void QPainter_DrawText4(QtObjectPtr ptr, QtObjectPtr rectangle, int flags, char* text, QtObjectPtr boundingRect); +void QPainter_DrawTiledPixmap(QtObjectPtr ptr, QtObjectPtr rectangle, QtObjectPtr pixmap, QtObjectPtr position); +void QPainter_EraseRect(QtObjectPtr ptr, QtObjectPtr rectangle); +void QPainter_FillRect5(QtObjectPtr ptr, QtObjectPtr rectangle, QtObjectPtr brush); +void QPainter_FillRect6(QtObjectPtr ptr, QtObjectPtr rectangle, QtObjectPtr color); +void QPainter_FillRect(QtObjectPtr ptr, QtObjectPtr rectangle, QtObjectPtr brush); +void QPainter_FillRect7(QtObjectPtr ptr, QtObjectPtr rectangle, QtObjectPtr color); +void QPainter_SetBackground(QtObjectPtr ptr, QtObjectPtr brush); +void QPainter_SetBrushOrigin(QtObjectPtr ptr, QtObjectPtr position); +void QPainter_SetClipPath(QtObjectPtr ptr, QtObjectPtr path, int operation); +void QPainter_SetClipRect3(QtObjectPtr ptr, QtObjectPtr rectangle, int operation); +void QPainter_SetClipRect(QtObjectPtr ptr, QtObjectPtr rectangle, int operation); +void QPainter_SetClipRegion(QtObjectPtr ptr, QtObjectPtr region, int operation); +void QPainter_SetViewport(QtObjectPtr ptr, QtObjectPtr rectangle); +void QPainter_SetWindow(QtObjectPtr ptr, QtObjectPtr rectangle); +QtObjectPtr QPainter_NewQPainter(); +int QPainter_BackgroundMode(QtObjectPtr ptr); +void QPainter_BeginNativePainting(QtObjectPtr ptr); +int QPainter_CompositionMode(QtObjectPtr ptr); +QtObjectPtr QPainter_Device(QtObjectPtr ptr); +void QPainter_DrawArc2(QtObjectPtr ptr, QtObjectPtr rectangle, int startAngle, int spanAngle); +void QPainter_DrawArc3(QtObjectPtr ptr, int x, int y, int width, int height, int startAngle, int spanAngle); +void QPainter_DrawChord2(QtObjectPtr ptr, QtObjectPtr rectangle, int startAngle, int spanAngle); +void QPainter_DrawChord3(QtObjectPtr ptr, int x, int y, int width, int height, int startAngle, int spanAngle); +void QPainter_DrawConvexPolygon4(QtObjectPtr ptr, QtObjectPtr polygon); +void QPainter_DrawConvexPolygon3(QtObjectPtr ptr, QtObjectPtr polygon); +void QPainter_DrawEllipse5(QtObjectPtr ptr, QtObjectPtr center, int rx, int ry); +void QPainter_DrawEllipse3(QtObjectPtr ptr, int x, int y, int width, int height); +void QPainter_DrawImage4(QtObjectPtr ptr, QtObjectPtr point, QtObjectPtr image); +void QPainter_DrawImage6(QtObjectPtr ptr, QtObjectPtr point, QtObjectPtr image, QtObjectPtr source, int flags); +void QPainter_DrawImage5(QtObjectPtr ptr, QtObjectPtr point, QtObjectPtr image, QtObjectPtr source, int flags); +void QPainter_DrawImage8(QtObjectPtr ptr, QtObjectPtr rectangle, QtObjectPtr image); +void QPainter_DrawImage2(QtObjectPtr ptr, QtObjectPtr target, QtObjectPtr image, QtObjectPtr source, int flags); +void QPainter_DrawImage7(QtObjectPtr ptr, QtObjectPtr rectangle, QtObjectPtr image); +void QPainter_DrawImage9(QtObjectPtr ptr, int x, int y, QtObjectPtr image, int sx, int sy, int sw, int sh, int flags); +void QPainter_DrawLine2(QtObjectPtr ptr, QtObjectPtr line); +void QPainter_DrawLine(QtObjectPtr ptr, QtObjectPtr line); +void QPainter_DrawLine3(QtObjectPtr ptr, QtObjectPtr p1, QtObjectPtr p2); +void QPainter_DrawLine4(QtObjectPtr ptr, QtObjectPtr p1, QtObjectPtr p2); +void QPainter_DrawLine5(QtObjectPtr ptr, int x1, int y1, int x2, int y2); +void QPainter_DrawLines(QtObjectPtr ptr, QtObjectPtr lines, int lineCount); +void QPainter_DrawLines4(QtObjectPtr ptr, QtObjectPtr pointPairs, int lineCount); +void QPainter_DrawLines3(QtObjectPtr ptr, QtObjectPtr pointPairs, int lineCount); +void QPainter_DrawPath(QtObjectPtr ptr, QtObjectPtr path); +void QPainter_DrawPicture2(QtObjectPtr ptr, QtObjectPtr point, QtObjectPtr picture); +void QPainter_DrawPicture3(QtObjectPtr ptr, int x, int y, QtObjectPtr picture); +void QPainter_DrawPie2(QtObjectPtr ptr, QtObjectPtr rectangle, int startAngle, int spanAngle); +void QPainter_DrawPie3(QtObjectPtr ptr, int x, int y, int width, int height, int startAngle, int spanAngle); +void QPainter_DrawPixmap6(QtObjectPtr ptr, QtObjectPtr point, QtObjectPtr pixmap); +void QPainter_DrawPixmap4(QtObjectPtr ptr, QtObjectPtr point, QtObjectPtr pixmap, QtObjectPtr source); +void QPainter_DrawPixmap3(QtObjectPtr ptr, QtObjectPtr point, QtObjectPtr pixmap, QtObjectPtr source); +void QPainter_DrawPixmap8(QtObjectPtr ptr, QtObjectPtr rectangle, QtObjectPtr pixmap); +void QPainter_DrawPixmap2(QtObjectPtr ptr, QtObjectPtr target, QtObjectPtr pixmap, QtObjectPtr source); +void QPainter_DrawPixmap7(QtObjectPtr ptr, int x, int y, QtObjectPtr pixmap); +void QPainter_DrawPixmap11(QtObjectPtr ptr, int x, int y, QtObjectPtr pixmap, int sx, int sy, int sw, int sh); +void QPainter_DrawPixmap10(QtObjectPtr ptr, int x, int y, int w, int h, QtObjectPtr pixmap, int sx, int sy, int sw, int sh); +void QPainter_DrawPixmap9(QtObjectPtr ptr, int x, int y, int width, int height, QtObjectPtr pixmap); +void QPainter_DrawPoint2(QtObjectPtr ptr, QtObjectPtr position); +void QPainter_DrawPoint(QtObjectPtr ptr, QtObjectPtr position); +void QPainter_DrawPoint3(QtObjectPtr ptr, int x, int y); +void QPainter_DrawPoints2(QtObjectPtr ptr, QtObjectPtr points, int pointCount); +void QPainter_DrawPoints(QtObjectPtr ptr, QtObjectPtr points, int pointCount); +void QPainter_DrawPoints4(QtObjectPtr ptr, QtObjectPtr points); +void QPainter_DrawPoints3(QtObjectPtr ptr, QtObjectPtr points); +void QPainter_DrawPolygon2(QtObjectPtr ptr, QtObjectPtr points, int pointCount, int fillRule); +void QPainter_DrawPolygon(QtObjectPtr ptr, QtObjectPtr points, int pointCount, int fillRule); +void QPainter_DrawPolygon4(QtObjectPtr ptr, QtObjectPtr points, int fillRule); +void QPainter_DrawPolygon3(QtObjectPtr ptr, QtObjectPtr points, int fillRule); +void QPainter_DrawPolyline2(QtObjectPtr ptr, QtObjectPtr points, int pointCount); +void QPainter_DrawPolyline(QtObjectPtr ptr, QtObjectPtr points, int pointCount); +void QPainter_DrawPolyline4(QtObjectPtr ptr, QtObjectPtr points); +void QPainter_DrawPolyline3(QtObjectPtr ptr, QtObjectPtr points); +void QPainter_DrawRect2(QtObjectPtr ptr, QtObjectPtr rectangle); +void QPainter_DrawRect(QtObjectPtr ptr, QtObjectPtr rectangle); +void QPainter_DrawRect3(QtObjectPtr ptr, int x, int y, int width, int height); +void QPainter_DrawStaticText2(QtObjectPtr ptr, QtObjectPtr topLeftPosition, QtObjectPtr staticText); +void QPainter_DrawStaticText(QtObjectPtr ptr, QtObjectPtr topLeftPosition, QtObjectPtr staticText); +void QPainter_DrawStaticText3(QtObjectPtr ptr, int left, int top, QtObjectPtr staticText); +void QPainter_DrawText3(QtObjectPtr ptr, QtObjectPtr position, char* text); +void QPainter_DrawText6(QtObjectPtr ptr, int x, int y, char* text); +void QPainter_DrawText7(QtObjectPtr ptr, int x, int y, int width, int height, int flags, char* text, QtObjectPtr boundingRect); +void QPainter_DrawTiledPixmap2(QtObjectPtr ptr, QtObjectPtr rectangle, QtObjectPtr pixmap, QtObjectPtr position); +void QPainter_DrawTiledPixmap3(QtObjectPtr ptr, int x, int y, int width, int height, QtObjectPtr pixmap, int sx, int sy); +int QPainter_End(QtObjectPtr ptr); +void QPainter_EndNativePainting(QtObjectPtr ptr); +void QPainter_EraseRect2(QtObjectPtr ptr, QtObjectPtr rectangle); +void QPainter_EraseRect3(QtObjectPtr ptr, int x, int y, int width, int height); +void QPainter_FillPath(QtObjectPtr ptr, QtObjectPtr path, QtObjectPtr brush); +void QPainter_FillRect3(QtObjectPtr ptr, QtObjectPtr rectangle, int style); +void QPainter_FillRect11(QtObjectPtr ptr, QtObjectPtr rectangle, int color); +void QPainter_FillRect4(QtObjectPtr ptr, QtObjectPtr rectangle, int style); +void QPainter_FillRect12(QtObjectPtr ptr, QtObjectPtr rectangle, int color); +void QPainter_FillRect2(QtObjectPtr ptr, int x, int y, int width, int height, int style); +void QPainter_FillRect10(QtObjectPtr ptr, int x, int y, int width, int height, int color); +void QPainter_FillRect8(QtObjectPtr ptr, int x, int y, int width, int height, QtObjectPtr brush); +void QPainter_FillRect9(QtObjectPtr ptr, int x, int y, int width, int height, QtObjectPtr color); +int QPainter_HasClipping(QtObjectPtr ptr); +int QPainter_IsActive(QtObjectPtr ptr); +int QPainter_LayoutDirection(QtObjectPtr ptr); +QtObjectPtr QPainter_PaintEngine(QtObjectPtr ptr); +int QPainter_RenderHints(QtObjectPtr ptr); +void QPainter_ResetTransform(QtObjectPtr ptr); +void QPainter_Restore(QtObjectPtr ptr); +void QPainter_Save(QtObjectPtr ptr); +void QPainter_SetBackgroundMode(QtObjectPtr ptr, int mode); +void QPainter_SetBrush2(QtObjectPtr ptr, int style); +void QPainter_SetBrush(QtObjectPtr ptr, QtObjectPtr brush); +void QPainter_SetBrushOrigin2(QtObjectPtr ptr, QtObjectPtr position); +void QPainter_SetBrushOrigin3(QtObjectPtr ptr, int x, int y); +void QPainter_SetClipRect2(QtObjectPtr ptr, int x, int y, int width, int height, int operation); +void QPainter_SetClipping(QtObjectPtr ptr, int enable); +void QPainter_SetCompositionMode(QtObjectPtr ptr, int mode); +void QPainter_SetFont(QtObjectPtr ptr, QtObjectPtr font); +void QPainter_SetLayoutDirection(QtObjectPtr ptr, int direction); +void QPainter_SetPen3(QtObjectPtr ptr, int style); +void QPainter_SetPen2(QtObjectPtr ptr, QtObjectPtr color); +void QPainter_SetPen(QtObjectPtr ptr, QtObjectPtr pen); +void QPainter_SetRenderHint(QtObjectPtr ptr, int hint, int on); +void QPainter_SetRenderHints(QtObjectPtr ptr, int hints, int on); +void QPainter_SetTransform(QtObjectPtr ptr, QtObjectPtr transform, int combine); +void QPainter_SetViewTransformEnabled(QtObjectPtr ptr, int enable); +void QPainter_SetViewport2(QtObjectPtr ptr, int x, int y, int width, int height); +void QPainter_SetWindow2(QtObjectPtr ptr, int x, int y, int width, int height); +void QPainter_SetWorldMatrixEnabled(QtObjectPtr ptr, int enable); +void QPainter_SetWorldTransform(QtObjectPtr ptr, QtObjectPtr matrix, int combine); +void QPainter_StrokePath(QtObjectPtr ptr, QtObjectPtr path, QtObjectPtr pen); +int QPainter_TestRenderHint(QtObjectPtr ptr, int hint); +void QPainter_Translate2(QtObjectPtr ptr, QtObjectPtr offset); +void QPainter_Translate(QtObjectPtr ptr, QtObjectPtr offset); +int QPainter_ViewTransformEnabled(QtObjectPtr ptr); +int QPainter_WorldMatrixEnabled(QtObjectPtr ptr); +void QPainter_DestroyQPainter(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qpainterpath.cpp b/gui/qpainterpath.cpp new file mode 100755 index 00000000..37eeb92f --- /dev/null +++ b/gui/qpainterpath.cpp @@ -0,0 +1,129 @@ +#include "qpainterpath.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPainterPath: public QPainterPath { +public: +}; + +QtObjectPtr QPainterPath_NewQPainterPath3(QtObjectPtr path){ + return new QPainterPath(*static_cast(path)); +} + +void QPainterPath_AddEllipse(QtObjectPtr ptr, QtObjectPtr boundingRectangle){ + static_cast(ptr)->addEllipse(*static_cast(boundingRectangle)); +} + +void QPainterPath_AddPath(QtObjectPtr ptr, QtObjectPtr path){ + static_cast(ptr)->addPath(*static_cast(path)); +} + +void QPainterPath_AddRect(QtObjectPtr ptr, QtObjectPtr rectangle){ + static_cast(ptr)->addRect(*static_cast(rectangle)); +} + +void QPainterPath_AddText(QtObjectPtr ptr, QtObjectPtr point, QtObjectPtr font, char* text){ + static_cast(ptr)->addText(*static_cast(point), *static_cast(font), QString(text)); +} + +void QPainterPath_ConnectPath(QtObjectPtr ptr, QtObjectPtr path){ + static_cast(ptr)->connectPath(*static_cast(path)); +} + +int QPainterPath_Contains(QtObjectPtr ptr, QtObjectPtr point){ + return static_cast(ptr)->contains(*static_cast(point)); +} + +int QPainterPath_Contains2(QtObjectPtr ptr, QtObjectPtr rectangle){ + return static_cast(ptr)->contains(*static_cast(rectangle)); +} + +void QPainterPath_CubicTo(QtObjectPtr ptr, QtObjectPtr c1, QtObjectPtr c2, QtObjectPtr endPoint){ + static_cast(ptr)->cubicTo(*static_cast(c1), *static_cast(c2), *static_cast(endPoint)); +} + +int QPainterPath_ElementCount(QtObjectPtr ptr){ + return static_cast(ptr)->elementCount(); +} + +int QPainterPath_Intersects(QtObjectPtr ptr, QtObjectPtr rectangle){ + return static_cast(ptr)->intersects(*static_cast(rectangle)); +} + +int QPainterPath_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +void QPainterPath_LineTo(QtObjectPtr ptr, QtObjectPtr endPoint){ + static_cast(ptr)->lineTo(*static_cast(endPoint)); +} + +void QPainterPath_MoveTo(QtObjectPtr ptr, QtObjectPtr point){ + static_cast(ptr)->moveTo(*static_cast(point)); +} + +void QPainterPath_QuadTo(QtObjectPtr ptr, QtObjectPtr c, QtObjectPtr endPoint){ + static_cast(ptr)->quadTo(*static_cast(c), *static_cast(endPoint)); +} + +void QPainterPath_SetFillRule(QtObjectPtr ptr, int fillRule){ + static_cast(ptr)->setFillRule(static_cast(fillRule)); +} + +QtObjectPtr QPainterPath_NewQPainterPath(){ + return new QPainterPath(); +} + +QtObjectPtr QPainterPath_NewQPainterPath2(QtObjectPtr startPoint){ + return new QPainterPath(*static_cast(startPoint)); +} + +void QPainterPath_AddPolygon(QtObjectPtr ptr, QtObjectPtr polygon){ + static_cast(ptr)->addPolygon(*static_cast(polygon)); +} + +void QPainterPath_AddRegion(QtObjectPtr ptr, QtObjectPtr region){ + static_cast(ptr)->addRegion(*static_cast(region)); +} + +void QPainterPath_CloseSubpath(QtObjectPtr ptr){ + static_cast(ptr)->closeSubpath(); +} + +int QPainterPath_Contains3(QtObjectPtr ptr, QtObjectPtr p){ + return static_cast(ptr)->contains(*static_cast(p)); +} + +int QPainterPath_FillRule(QtObjectPtr ptr){ + return static_cast(ptr)->fillRule(); +} + +int QPainterPath_Intersects2(QtObjectPtr ptr, QtObjectPtr p){ + return static_cast(ptr)->intersects(*static_cast(p)); +} + +void QPainterPath_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QPainterPath_Translate2(QtObjectPtr ptr, QtObjectPtr offset){ + static_cast(ptr)->translate(*static_cast(offset)); +} + +void QPainterPath_DestroyQPainterPath(QtObjectPtr ptr){ + static_cast(ptr)->~QPainterPath(); +} + diff --git a/gui/qpainterpath.go b/gui/qpainterpath.go new file mode 100755 index 00000000..848485f2 --- /dev/null +++ b/gui/qpainterpath.go @@ -0,0 +1,215 @@ +package gui + +//#include "qpainterpath.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QPainterPath struct { + ptr unsafe.Pointer +} + +type QPainterPathITF interface { + QPainterPathPTR() *QPainterPath +} + +func (p *QPainterPath) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPainterPath) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPainterPath(ptr QPainterPathITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPainterPathPTR().Pointer() + } + return nil +} + +func QPainterPathFromPointer(ptr unsafe.Pointer) *QPainterPath { + var n = new(QPainterPath) + n.SetPointer(ptr) + return n +} + +func (ptr *QPainterPath) QPainterPathPTR() *QPainterPath { + return ptr +} + +//QPainterPath::ElementType +type QPainterPath__ElementType int + +var ( + QPainterPath__MoveToElement = QPainterPath__ElementType(0) + QPainterPath__LineToElement = QPainterPath__ElementType(1) + QPainterPath__CurveToElement = QPainterPath__ElementType(2) + QPainterPath__CurveToDataElement = QPainterPath__ElementType(3) +) + +func NewQPainterPath3(path QPainterPathITF) *QPainterPath { + return QPainterPathFromPointer(unsafe.Pointer(C.QPainterPath_NewQPainterPath3(C.QtObjectPtr(PointerFromQPainterPath(path))))) +} + +func (ptr *QPainterPath) AddEllipse(boundingRectangle core.QRectFITF) { + if ptr.Pointer() != nil { + C.QPainterPath_AddEllipse(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(boundingRectangle))) + } +} + +func (ptr *QPainterPath) AddPath(path QPainterPathITF) { + if ptr.Pointer() != nil { + C.QPainterPath_AddPath(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPainterPath(path))) + } +} + +func (ptr *QPainterPath) AddRect(rectangle core.QRectFITF) { + if ptr.Pointer() != nil { + C.QPainterPath_AddRect(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rectangle))) + } +} + +func (ptr *QPainterPath) AddText(point core.QPointFITF, font QFontITF, text string) { + if ptr.Pointer() != nil { + C.QPainterPath_AddText(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(point)), C.QtObjectPtr(PointerFromQFont(font)), C.CString(text)) + } +} + +func (ptr *QPainterPath) ConnectPath(path QPainterPathITF) { + if ptr.Pointer() != nil { + C.QPainterPath_ConnectPath(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPainterPath(path))) + } +} + +func (ptr *QPainterPath) Contains(point core.QPointFITF) bool { + if ptr.Pointer() != nil { + return C.QPainterPath_Contains(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(point))) != 0 + } + return false +} + +func (ptr *QPainterPath) Contains2(rectangle core.QRectFITF) bool { + if ptr.Pointer() != nil { + return C.QPainterPath_Contains2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rectangle))) != 0 + } + return false +} + +func (ptr *QPainterPath) CubicTo(c1 core.QPointFITF, c2 core.QPointFITF, endPoint core.QPointFITF) { + if ptr.Pointer() != nil { + C.QPainterPath_CubicTo(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(c1)), C.QtObjectPtr(core.PointerFromQPointF(c2)), C.QtObjectPtr(core.PointerFromQPointF(endPoint))) + } +} + +func (ptr *QPainterPath) ElementCount() int { + if ptr.Pointer() != nil { + return int(C.QPainterPath_ElementCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPainterPath) Intersects(rectangle core.QRectFITF) bool { + if ptr.Pointer() != nil { + return C.QPainterPath_Intersects(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rectangle))) != 0 + } + return false +} + +func (ptr *QPainterPath) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QPainterPath_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPainterPath) LineTo(endPoint core.QPointFITF) { + if ptr.Pointer() != nil { + C.QPainterPath_LineTo(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(endPoint))) + } +} + +func (ptr *QPainterPath) MoveTo(point core.QPointFITF) { + if ptr.Pointer() != nil { + C.QPainterPath_MoveTo(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(point))) + } +} + +func (ptr *QPainterPath) QuadTo(c core.QPointFITF, endPoint core.QPointFITF) { + if ptr.Pointer() != nil { + C.QPainterPath_QuadTo(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(c)), C.QtObjectPtr(core.PointerFromQPointF(endPoint))) + } +} + +func (ptr *QPainterPath) SetFillRule(fillRule core.Qt__FillRule) { + if ptr.Pointer() != nil { + C.QPainterPath_SetFillRule(C.QtObjectPtr(ptr.Pointer()), C.int(fillRule)) + } +} + +func NewQPainterPath() *QPainterPath { + return QPainterPathFromPointer(unsafe.Pointer(C.QPainterPath_NewQPainterPath())) +} + +func NewQPainterPath2(startPoint core.QPointFITF) *QPainterPath { + return QPainterPathFromPointer(unsafe.Pointer(C.QPainterPath_NewQPainterPath2(C.QtObjectPtr(core.PointerFromQPointF(startPoint))))) +} + +func (ptr *QPainterPath) AddPolygon(polygon QPolygonFITF) { + if ptr.Pointer() != nil { + C.QPainterPath_AddPolygon(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPolygonF(polygon))) + } +} + +func (ptr *QPainterPath) AddRegion(region QRegionITF) { + if ptr.Pointer() != nil { + C.QPainterPath_AddRegion(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQRegion(region))) + } +} + +func (ptr *QPainterPath) CloseSubpath() { + if ptr.Pointer() != nil { + C.QPainterPath_CloseSubpath(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QPainterPath) Contains3(p QPainterPathITF) bool { + if ptr.Pointer() != nil { + return C.QPainterPath_Contains3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPainterPath(p))) != 0 + } + return false +} + +func (ptr *QPainterPath) FillRule() core.Qt__FillRule { + if ptr.Pointer() != nil { + return core.Qt__FillRule(C.QPainterPath_FillRule(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPainterPath) Intersects2(p QPainterPathITF) bool { + if ptr.Pointer() != nil { + return C.QPainterPath_Intersects2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPainterPath(p))) != 0 + } + return false +} + +func (ptr *QPainterPath) Swap(other QPainterPathITF) { + if ptr.Pointer() != nil { + C.QPainterPath_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPainterPath(other))) + } +} + +func (ptr *QPainterPath) Translate2(offset core.QPointFITF) { + if ptr.Pointer() != nil { + C.QPainterPath_Translate2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(offset))) + } +} + +func (ptr *QPainterPath) DestroyQPainterPath() { + if ptr.Pointer() != nil { + C.QPainterPath_DestroyQPainterPath(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qpainterpath.h b/gui/qpainterpath.h new file mode 100755 index 00000000..8f29589d --- /dev/null +++ b/gui/qpainterpath.h @@ -0,0 +1,36 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QPainterPath_NewQPainterPath3(QtObjectPtr path); +void QPainterPath_AddEllipse(QtObjectPtr ptr, QtObjectPtr boundingRectangle); +void QPainterPath_AddPath(QtObjectPtr ptr, QtObjectPtr path); +void QPainterPath_AddRect(QtObjectPtr ptr, QtObjectPtr rectangle); +void QPainterPath_AddText(QtObjectPtr ptr, QtObjectPtr point, QtObjectPtr font, char* text); +void QPainterPath_ConnectPath(QtObjectPtr ptr, QtObjectPtr path); +int QPainterPath_Contains(QtObjectPtr ptr, QtObjectPtr point); +int QPainterPath_Contains2(QtObjectPtr ptr, QtObjectPtr rectangle); +void QPainterPath_CubicTo(QtObjectPtr ptr, QtObjectPtr c1, QtObjectPtr c2, QtObjectPtr endPoint); +int QPainterPath_ElementCount(QtObjectPtr ptr); +int QPainterPath_Intersects(QtObjectPtr ptr, QtObjectPtr rectangle); +int QPainterPath_IsEmpty(QtObjectPtr ptr); +void QPainterPath_LineTo(QtObjectPtr ptr, QtObjectPtr endPoint); +void QPainterPath_MoveTo(QtObjectPtr ptr, QtObjectPtr point); +void QPainterPath_QuadTo(QtObjectPtr ptr, QtObjectPtr c, QtObjectPtr endPoint); +void QPainterPath_SetFillRule(QtObjectPtr ptr, int fillRule); +QtObjectPtr QPainterPath_NewQPainterPath(); +QtObjectPtr QPainterPath_NewQPainterPath2(QtObjectPtr startPoint); +void QPainterPath_AddPolygon(QtObjectPtr ptr, QtObjectPtr polygon); +void QPainterPath_AddRegion(QtObjectPtr ptr, QtObjectPtr region); +void QPainterPath_CloseSubpath(QtObjectPtr ptr); +int QPainterPath_Contains3(QtObjectPtr ptr, QtObjectPtr p); +int QPainterPath_FillRule(QtObjectPtr ptr); +int QPainterPath_Intersects2(QtObjectPtr ptr, QtObjectPtr p); +void QPainterPath_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QPainterPath_Translate2(QtObjectPtr ptr, QtObjectPtr offset); +void QPainterPath_DestroyQPainterPath(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qpainterpathstroker.cpp b/gui/qpainterpathstroker.cpp new file mode 100755 index 00000000..0fb9dddd --- /dev/null +++ b/gui/qpainterpathstroker.cpp @@ -0,0 +1,47 @@ +#include "qpainterpathstroker.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPainterPathStroker: public QPainterPathStroker { +public: +}; + +QtObjectPtr QPainterPathStroker_NewQPainterPathStroker(){ + return new QPainterPathStroker(); +} + +QtObjectPtr QPainterPathStroker_NewQPainterPathStroker2(QtObjectPtr pen){ + return new QPainterPathStroker(*static_cast(pen)); +} + +int QPainterPathStroker_CapStyle(QtObjectPtr ptr){ + return static_cast(ptr)->capStyle(); +} + +int QPainterPathStroker_JoinStyle(QtObjectPtr ptr){ + return static_cast(ptr)->joinStyle(); +} + +void QPainterPathStroker_SetCapStyle(QtObjectPtr ptr, int style){ + static_cast(ptr)->setCapStyle(static_cast(style)); +} + +void QPainterPathStroker_SetDashPattern(QtObjectPtr ptr, int style){ + static_cast(ptr)->setDashPattern(static_cast(style)); +} + +void QPainterPathStroker_SetJoinStyle(QtObjectPtr ptr, int style){ + static_cast(ptr)->setJoinStyle(static_cast(style)); +} + +void QPainterPathStroker_DestroyQPainterPathStroker(QtObjectPtr ptr){ + static_cast(ptr)->~QPainterPathStroker(); +} + diff --git a/gui/qpainterpathstroker.go b/gui/qpainterpathstroker.go new file mode 100755 index 00000000..acfcdef1 --- /dev/null +++ b/gui/qpainterpathstroker.go @@ -0,0 +1,87 @@ +package gui + +//#include "qpainterpathstroker.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QPainterPathStroker struct { + ptr unsafe.Pointer +} + +type QPainterPathStrokerITF interface { + QPainterPathStrokerPTR() *QPainterPathStroker +} + +func (p *QPainterPathStroker) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPainterPathStroker) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPainterPathStroker(ptr QPainterPathStrokerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPainterPathStrokerPTR().Pointer() + } + return nil +} + +func QPainterPathStrokerFromPointer(ptr unsafe.Pointer) *QPainterPathStroker { + var n = new(QPainterPathStroker) + n.SetPointer(ptr) + return n +} + +func (ptr *QPainterPathStroker) QPainterPathStrokerPTR() *QPainterPathStroker { + return ptr +} + +func NewQPainterPathStroker() *QPainterPathStroker { + return QPainterPathStrokerFromPointer(unsafe.Pointer(C.QPainterPathStroker_NewQPainterPathStroker())) +} + +func NewQPainterPathStroker2(pen QPenITF) *QPainterPathStroker { + return QPainterPathStrokerFromPointer(unsafe.Pointer(C.QPainterPathStroker_NewQPainterPathStroker2(C.QtObjectPtr(PointerFromQPen(pen))))) +} + +func (ptr *QPainterPathStroker) CapStyle() core.Qt__PenCapStyle { + if ptr.Pointer() != nil { + return core.Qt__PenCapStyle(C.QPainterPathStroker_CapStyle(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPainterPathStroker) JoinStyle() core.Qt__PenJoinStyle { + if ptr.Pointer() != nil { + return core.Qt__PenJoinStyle(C.QPainterPathStroker_JoinStyle(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPainterPathStroker) SetCapStyle(style core.Qt__PenCapStyle) { + if ptr.Pointer() != nil { + C.QPainterPathStroker_SetCapStyle(C.QtObjectPtr(ptr.Pointer()), C.int(style)) + } +} + +func (ptr *QPainterPathStroker) SetDashPattern(style core.Qt__PenStyle) { + if ptr.Pointer() != nil { + C.QPainterPathStroker_SetDashPattern(C.QtObjectPtr(ptr.Pointer()), C.int(style)) + } +} + +func (ptr *QPainterPathStroker) SetJoinStyle(style core.Qt__PenJoinStyle) { + if ptr.Pointer() != nil { + C.QPainterPathStroker_SetJoinStyle(C.QtObjectPtr(ptr.Pointer()), C.int(style)) + } +} + +func (ptr *QPainterPathStroker) DestroyQPainterPathStroker() { + if ptr.Pointer() != nil { + C.QPainterPathStroker_DestroyQPainterPathStroker(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qpainterpathstroker.h b/gui/qpainterpathstroker.h new file mode 100755 index 00000000..ffcd58d5 --- /dev/null +++ b/gui/qpainterpathstroker.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QPainterPathStroker_NewQPainterPathStroker(); +QtObjectPtr QPainterPathStroker_NewQPainterPathStroker2(QtObjectPtr pen); +int QPainterPathStroker_CapStyle(QtObjectPtr ptr); +int QPainterPathStroker_JoinStyle(QtObjectPtr ptr); +void QPainterPathStroker_SetCapStyle(QtObjectPtr ptr, int style); +void QPainterPathStroker_SetDashPattern(QtObjectPtr ptr, int style); +void QPainterPathStroker_SetJoinStyle(QtObjectPtr ptr, int style); +void QPainterPathStroker_DestroyQPainterPathStroker(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qpaintevent.cpp b/gui/qpaintevent.cpp new file mode 100755 index 00000000..460c3922 --- /dev/null +++ b/gui/qpaintevent.cpp @@ -0,0 +1,22 @@ +#include "qpaintevent.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPaintEvent: public QPaintEvent { +public: +}; + +QtObjectPtr QPaintEvent_NewQPaintEvent2(QtObjectPtr paintRect){ + return new QPaintEvent(*static_cast(paintRect)); +} + +QtObjectPtr QPaintEvent_NewQPaintEvent(QtObjectPtr paintRegion){ + return new QPaintEvent(*static_cast(paintRegion)); +} + diff --git a/gui/qpaintevent.go b/gui/qpaintevent.go new file mode 100755 index 00000000..709fe6a6 --- /dev/null +++ b/gui/qpaintevent.go @@ -0,0 +1,42 @@ +package gui + +//#include "qpaintevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QPaintEvent struct { + core.QEvent +} + +type QPaintEventITF interface { + core.QEventITF + QPaintEventPTR() *QPaintEvent +} + +func PointerFromQPaintEvent(ptr QPaintEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPaintEventPTR().Pointer() + } + return nil +} + +func QPaintEventFromPointer(ptr unsafe.Pointer) *QPaintEvent { + var n = new(QPaintEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QPaintEvent) QPaintEventPTR() *QPaintEvent { + return ptr +} + +func NewQPaintEvent2(paintRect core.QRectITF) *QPaintEvent { + return QPaintEventFromPointer(unsafe.Pointer(C.QPaintEvent_NewQPaintEvent2(C.QtObjectPtr(core.PointerFromQRect(paintRect))))) +} + +func NewQPaintEvent(paintRegion QRegionITF) *QPaintEvent { + return QPaintEventFromPointer(unsafe.Pointer(C.QPaintEvent_NewQPaintEvent(C.QtObjectPtr(PointerFromQRegion(paintRegion))))) +} diff --git a/gui/qpaintevent.h b/gui/qpaintevent.h new file mode 100755 index 00000000..0dcd141b --- /dev/null +++ b/gui/qpaintevent.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QPaintEvent_NewQPaintEvent2(QtObjectPtr paintRect); +QtObjectPtr QPaintEvent_NewQPaintEvent(QtObjectPtr paintRegion); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qpalette.cpp b/gui/qpalette.cpp new file mode 100755 index 00000000..e55c7713 --- /dev/null +++ b/gui/qpalette.cpp @@ -0,0 +1,94 @@ +#include "qpalette.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPalette: public QPalette { +public: +}; + +int QPalette_NColorRoles_Type(){ + return QPalette::NColorRoles; +} + +int QPalette_IsEqual(QtObjectPtr ptr, int cg1, int cg2){ + return static_cast(ptr)->isEqual(static_cast(cg1), static_cast(cg2)); +} + +void QPalette_SetBrush2(QtObjectPtr ptr, int group, int role, QtObjectPtr brush){ + static_cast(ptr)->setBrush(static_cast(group), static_cast(role), *static_cast(brush)); +} + +QtObjectPtr QPalette_NewQPalette(){ + return new QPalette(); +} + +QtObjectPtr QPalette_NewQPalette8(QtObjectPtr other){ + return new QPalette(*static_cast(other)); +} + +QtObjectPtr QPalette_NewQPalette3(int button){ + return new QPalette(static_cast(button)); +} + +QtObjectPtr QPalette_NewQPalette5(QtObjectPtr windowText, QtObjectPtr button, QtObjectPtr light, QtObjectPtr dark, QtObjectPtr mid, QtObjectPtr text, QtObjectPtr bright_text, QtObjectPtr base, QtObjectPtr window){ + return new QPalette(*static_cast(windowText), *static_cast(button), *static_cast(light), *static_cast(dark), *static_cast(mid), *static_cast(text), *static_cast(bright_text), *static_cast(base), *static_cast(window)); +} + +QtObjectPtr QPalette_NewQPalette2(QtObjectPtr button){ + return new QPalette(*static_cast(button)); +} + +QtObjectPtr QPalette_NewQPalette4(QtObjectPtr button, QtObjectPtr window){ + return new QPalette(*static_cast(button), *static_cast(window)); +} + +QtObjectPtr QPalette_NewQPalette7(QtObjectPtr p){ + return new QPalette(*static_cast(p)); +} + +int QPalette_CurrentColorGroup(QtObjectPtr ptr){ + return static_cast(ptr)->currentColorGroup(); +} + +int QPalette_IsBrushSet(QtObjectPtr ptr, int cg, int cr){ + return static_cast(ptr)->isBrushSet(static_cast(cg), static_cast(cr)); +} + +int QPalette_IsCopyOf(QtObjectPtr ptr, QtObjectPtr p){ + return static_cast(ptr)->isCopyOf(*static_cast(p)); +} + +void QPalette_SetBrush(QtObjectPtr ptr, int role, QtObjectPtr brush){ + static_cast(ptr)->setBrush(static_cast(role), *static_cast(brush)); +} + +void QPalette_SetColor(QtObjectPtr ptr, int group, int role, QtObjectPtr color){ + static_cast(ptr)->setColor(static_cast(group), static_cast(role), *static_cast(color)); +} + +void QPalette_SetColor2(QtObjectPtr ptr, int role, QtObjectPtr color){ + static_cast(ptr)->setColor(static_cast(role), *static_cast(color)); +} + +void QPalette_SetColorGroup(QtObjectPtr ptr, int cg, QtObjectPtr windowText, QtObjectPtr button, QtObjectPtr light, QtObjectPtr dark, QtObjectPtr mid, QtObjectPtr text, QtObjectPtr bright_text, QtObjectPtr base, QtObjectPtr window){ + static_cast(ptr)->setColorGroup(static_cast(cg), *static_cast(windowText), *static_cast(button), *static_cast(light), *static_cast(dark), *static_cast(mid), *static_cast(text), *static_cast(bright_text), *static_cast(base), *static_cast(window)); +} + +void QPalette_SetCurrentColorGroup(QtObjectPtr ptr, int cg){ + static_cast(ptr)->setCurrentColorGroup(static_cast(cg)); +} + +void QPalette_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QPalette_DestroyQPalette(QtObjectPtr ptr){ + static_cast(ptr)->~QPalette(); +} + diff --git a/gui/qpalette.go b/gui/qpalette.go new file mode 100755 index 00000000..bfe78998 --- /dev/null +++ b/gui/qpalette.go @@ -0,0 +1,187 @@ +package gui + +//#include "qpalette.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QPalette struct { + ptr unsafe.Pointer +} + +type QPaletteITF interface { + QPalettePTR() *QPalette +} + +func (p *QPalette) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPalette) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPalette(ptr QPaletteITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPalettePTR().Pointer() + } + return nil +} + +func QPaletteFromPointer(ptr unsafe.Pointer) *QPalette { + var n = new(QPalette) + n.SetPointer(ptr) + return n +} + +func (ptr *QPalette) QPalettePTR() *QPalette { + return ptr +} + +//QPalette::ColorGroup +type QPalette__ColorGroup int + +var ( + QPalette__Active = QPalette__ColorGroup(0) + QPalette__Disabled = QPalette__ColorGroup(1) + QPalette__Inactive = QPalette__ColorGroup(2) + QPalette__NColorGroups = QPalette__ColorGroup(3) + QPalette__Current = QPalette__ColorGroup(4) + QPalette__All = QPalette__ColorGroup(5) + QPalette__Normal = QPalette__ColorGroup(QPalette__Active) +) + +//QPalette::ColorRole +type QPalette__ColorRole int + +var ( + QPalette__WindowText = QPalette__ColorRole(0) + QPalette__Button = QPalette__ColorRole(1) + QPalette__Light = QPalette__ColorRole(2) + QPalette__Midlight = QPalette__ColorRole(3) + QPalette__Dark = QPalette__ColorRole(4) + QPalette__Mid = QPalette__ColorRole(5) + QPalette__Text = QPalette__ColorRole(6) + QPalette__BrightText = QPalette__ColorRole(7) + QPalette__ButtonText = QPalette__ColorRole(8) + QPalette__Base = QPalette__ColorRole(9) + QPalette__Window = QPalette__ColorRole(10) + QPalette__Shadow = QPalette__ColorRole(11) + QPalette__Highlight = QPalette__ColorRole(12) + QPalette__HighlightedText = QPalette__ColorRole(13) + QPalette__Link = QPalette__ColorRole(14) + QPalette__LinkVisited = QPalette__ColorRole(15) + QPalette__AlternateBase = QPalette__ColorRole(16) + QPalette__NoRole = QPalette__ColorRole(17) + QPalette__ToolTipBase = QPalette__ColorRole(18) + QPalette__ToolTipText = QPalette__ColorRole(19) + QPalette__NColorRoles = QPalette__ColorRole(C.QPalette_NColorRoles_Type()) + QPalette__Foreground = QPalette__ColorRole(QPalette__WindowText) + QPalette__Background = QPalette__ColorRole(QPalette__Window) +) + +func (ptr *QPalette) IsEqual(cg1 QPalette__ColorGroup, cg2 QPalette__ColorGroup) bool { + if ptr.Pointer() != nil { + return C.QPalette_IsEqual(C.QtObjectPtr(ptr.Pointer()), C.int(cg1), C.int(cg2)) != 0 + } + return false +} + +func (ptr *QPalette) SetBrush2(group QPalette__ColorGroup, role QPalette__ColorRole, brush QBrushITF) { + if ptr.Pointer() != nil { + C.QPalette_SetBrush2(C.QtObjectPtr(ptr.Pointer()), C.int(group), C.int(role), C.QtObjectPtr(PointerFromQBrush(brush))) + } +} + +func NewQPalette() *QPalette { + return QPaletteFromPointer(unsafe.Pointer(C.QPalette_NewQPalette())) +} + +func NewQPalette8(other QPaletteITF) *QPalette { + return QPaletteFromPointer(unsafe.Pointer(C.QPalette_NewQPalette8(C.QtObjectPtr(PointerFromQPalette(other))))) +} + +func NewQPalette3(button core.Qt__GlobalColor) *QPalette { + return QPaletteFromPointer(unsafe.Pointer(C.QPalette_NewQPalette3(C.int(button)))) +} + +func NewQPalette5(windowText QBrushITF, button QBrushITF, light QBrushITF, dark QBrushITF, mid QBrushITF, text QBrushITF, bright_text QBrushITF, base QBrushITF, window QBrushITF) *QPalette { + return QPaletteFromPointer(unsafe.Pointer(C.QPalette_NewQPalette5(C.QtObjectPtr(PointerFromQBrush(windowText)), C.QtObjectPtr(PointerFromQBrush(button)), C.QtObjectPtr(PointerFromQBrush(light)), C.QtObjectPtr(PointerFromQBrush(dark)), C.QtObjectPtr(PointerFromQBrush(mid)), C.QtObjectPtr(PointerFromQBrush(text)), C.QtObjectPtr(PointerFromQBrush(bright_text)), C.QtObjectPtr(PointerFromQBrush(base)), C.QtObjectPtr(PointerFromQBrush(window))))) +} + +func NewQPalette2(button QColorITF) *QPalette { + return QPaletteFromPointer(unsafe.Pointer(C.QPalette_NewQPalette2(C.QtObjectPtr(PointerFromQColor(button))))) +} + +func NewQPalette4(button QColorITF, window QColorITF) *QPalette { + return QPaletteFromPointer(unsafe.Pointer(C.QPalette_NewQPalette4(C.QtObjectPtr(PointerFromQColor(button)), C.QtObjectPtr(PointerFromQColor(window))))) +} + +func NewQPalette7(p QPaletteITF) *QPalette { + return QPaletteFromPointer(unsafe.Pointer(C.QPalette_NewQPalette7(C.QtObjectPtr(PointerFromQPalette(p))))) +} + +func (ptr *QPalette) CurrentColorGroup() QPalette__ColorGroup { + if ptr.Pointer() != nil { + return QPalette__ColorGroup(C.QPalette_CurrentColorGroup(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPalette) IsBrushSet(cg QPalette__ColorGroup, cr QPalette__ColorRole) bool { + if ptr.Pointer() != nil { + return C.QPalette_IsBrushSet(C.QtObjectPtr(ptr.Pointer()), C.int(cg), C.int(cr)) != 0 + } + return false +} + +func (ptr *QPalette) IsCopyOf(p QPaletteITF) bool { + if ptr.Pointer() != nil { + return C.QPalette_IsCopyOf(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPalette(p))) != 0 + } + return false +} + +func (ptr *QPalette) SetBrush(role QPalette__ColorRole, brush QBrushITF) { + if ptr.Pointer() != nil { + C.QPalette_SetBrush(C.QtObjectPtr(ptr.Pointer()), C.int(role), C.QtObjectPtr(PointerFromQBrush(brush))) + } +} + +func (ptr *QPalette) SetColor(group QPalette__ColorGroup, role QPalette__ColorRole, color QColorITF) { + if ptr.Pointer() != nil { + C.QPalette_SetColor(C.QtObjectPtr(ptr.Pointer()), C.int(group), C.int(role), C.QtObjectPtr(PointerFromQColor(color))) + } +} + +func (ptr *QPalette) SetColor2(role QPalette__ColorRole, color QColorITF) { + if ptr.Pointer() != nil { + C.QPalette_SetColor2(C.QtObjectPtr(ptr.Pointer()), C.int(role), C.QtObjectPtr(PointerFromQColor(color))) + } +} + +func (ptr *QPalette) SetColorGroup(cg QPalette__ColorGroup, windowText QBrushITF, button QBrushITF, light QBrushITF, dark QBrushITF, mid QBrushITF, text QBrushITF, bright_text QBrushITF, base QBrushITF, window QBrushITF) { + if ptr.Pointer() != nil { + C.QPalette_SetColorGroup(C.QtObjectPtr(ptr.Pointer()), C.int(cg), C.QtObjectPtr(PointerFromQBrush(windowText)), C.QtObjectPtr(PointerFromQBrush(button)), C.QtObjectPtr(PointerFromQBrush(light)), C.QtObjectPtr(PointerFromQBrush(dark)), C.QtObjectPtr(PointerFromQBrush(mid)), C.QtObjectPtr(PointerFromQBrush(text)), C.QtObjectPtr(PointerFromQBrush(bright_text)), C.QtObjectPtr(PointerFromQBrush(base)), C.QtObjectPtr(PointerFromQBrush(window))) + } +} + +func (ptr *QPalette) SetCurrentColorGroup(cg QPalette__ColorGroup) { + if ptr.Pointer() != nil { + C.QPalette_SetCurrentColorGroup(C.QtObjectPtr(ptr.Pointer()), C.int(cg)) + } +} + +func (ptr *QPalette) Swap(other QPaletteITF) { + if ptr.Pointer() != nil { + C.QPalette_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPalette(other))) + } +} + +func (ptr *QPalette) DestroyQPalette() { + if ptr.Pointer() != nil { + C.QPalette_DestroyQPalette(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qpalette.h b/gui/qpalette.h new file mode 100755 index 00000000..7ddbe564 --- /dev/null +++ b/gui/qpalette.h @@ -0,0 +1,29 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QPalette_NColorRoles_Type(); +int QPalette_IsEqual(QtObjectPtr ptr, int cg1, int cg2); +void QPalette_SetBrush2(QtObjectPtr ptr, int group, int role, QtObjectPtr brush); +QtObjectPtr QPalette_NewQPalette(); +QtObjectPtr QPalette_NewQPalette8(QtObjectPtr other); +QtObjectPtr QPalette_NewQPalette3(int button); +QtObjectPtr QPalette_NewQPalette5(QtObjectPtr windowText, QtObjectPtr button, QtObjectPtr light, QtObjectPtr dark, QtObjectPtr mid, QtObjectPtr text, QtObjectPtr bright_text, QtObjectPtr base, QtObjectPtr window); +QtObjectPtr QPalette_NewQPalette2(QtObjectPtr button); +QtObjectPtr QPalette_NewQPalette4(QtObjectPtr button, QtObjectPtr window); +QtObjectPtr QPalette_NewQPalette7(QtObjectPtr p); +int QPalette_CurrentColorGroup(QtObjectPtr ptr); +int QPalette_IsBrushSet(QtObjectPtr ptr, int cg, int cr); +int QPalette_IsCopyOf(QtObjectPtr ptr, QtObjectPtr p); +void QPalette_SetBrush(QtObjectPtr ptr, int role, QtObjectPtr brush); +void QPalette_SetColor(QtObjectPtr ptr, int group, int role, QtObjectPtr color); +void QPalette_SetColor2(QtObjectPtr ptr, int role, QtObjectPtr color); +void QPalette_SetColorGroup(QtObjectPtr ptr, int cg, QtObjectPtr windowText, QtObjectPtr button, QtObjectPtr light, QtObjectPtr dark, QtObjectPtr mid, QtObjectPtr text, QtObjectPtr bright_text, QtObjectPtr base, QtObjectPtr window); +void QPalette_SetCurrentColorGroup(QtObjectPtr ptr, int cg); +void QPalette_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QPalette_DestroyQPalette(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qpdfwriter.cpp b/gui/qpdfwriter.cpp new file mode 100755 index 00000000..74201825 --- /dev/null +++ b/gui/qpdfwriter.cpp @@ -0,0 +1,77 @@ +#include "qpdfwriter.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPdfWriter: public QPdfWriter { +public: +}; + +QtObjectPtr QPdfWriter_NewQPdfWriter2(QtObjectPtr device){ + return new QPdfWriter(static_cast(device)); +} + +QtObjectPtr QPdfWriter_NewQPdfWriter(char* filename){ + return new QPdfWriter(QString(filename)); +} + +char* QPdfWriter_Creator(QtObjectPtr ptr){ + return static_cast(ptr)->creator().toUtf8().data(); +} + +int QPdfWriter_NewPage(QtObjectPtr ptr){ + return static_cast(ptr)->newPage(); +} + +int QPdfWriter_Resolution(QtObjectPtr ptr){ + return static_cast(ptr)->resolution(); +} + +void QPdfWriter_SetCreator(QtObjectPtr ptr, char* creator){ + static_cast(ptr)->setCreator(QString(creator)); +} + +int QPdfWriter_SetPageLayout(QtObjectPtr ptr, QtObjectPtr newPageLayout){ + return static_cast(ptr)->setPageLayout(*static_cast(newPageLayout)); +} + +int QPdfWriter_SetPageMargins(QtObjectPtr ptr, QtObjectPtr margins){ + return static_cast(ptr)->setPageMargins(*static_cast(margins)); +} + +int QPdfWriter_SetPageMargins2(QtObjectPtr ptr, QtObjectPtr margins, int units){ + return static_cast(ptr)->setPageMargins(*static_cast(margins), static_cast(units)); +} + +int QPdfWriter_SetPageOrientation(QtObjectPtr ptr, int orientation){ + return static_cast(ptr)->setPageOrientation(static_cast(orientation)); +} + +int QPdfWriter_SetPageSize(QtObjectPtr ptr, QtObjectPtr pageSize){ + return static_cast(ptr)->setPageSize(*static_cast(pageSize)); +} + +void QPdfWriter_SetResolution(QtObjectPtr ptr, int resolution){ + static_cast(ptr)->setResolution(resolution); +} + +void QPdfWriter_SetTitle(QtObjectPtr ptr, char* title){ + static_cast(ptr)->setTitle(QString(title)); +} + +char* QPdfWriter_Title(QtObjectPtr ptr){ + return static_cast(ptr)->title().toUtf8().data(); +} + +void QPdfWriter_DestroyQPdfWriter(QtObjectPtr ptr){ + static_cast(ptr)->~QPdfWriter(); +} + diff --git a/gui/qpdfwriter.go b/gui/qpdfwriter.go new file mode 100755 index 00000000..a0480148 --- /dev/null +++ b/gui/qpdfwriter.go @@ -0,0 +1,145 @@ +package gui + +//#include "qpdfwriter.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QPdfWriter struct { + core.QObject + QPagedPaintDevice +} + +type QPdfWriterITF interface { + core.QObjectITF + QPagedPaintDeviceITF + QPdfWriterPTR() *QPdfWriter +} + +func (p *QPdfWriter) Pointer() unsafe.Pointer { + return p.QObjectPTR().Pointer() +} + +func (p *QPdfWriter) SetPointer(ptr unsafe.Pointer) { + p.QObjectPTR().SetPointer(ptr) + p.QPagedPaintDevicePTR().SetPointer(ptr) +} + +func PointerFromQPdfWriter(ptr QPdfWriterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPdfWriterPTR().Pointer() + } + return nil +} + +func QPdfWriterFromPointer(ptr unsafe.Pointer) *QPdfWriter { + var n = new(QPdfWriter) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QPdfWriter_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QPdfWriter) QPdfWriterPTR() *QPdfWriter { + return ptr +} + +func NewQPdfWriter2(device core.QIODeviceITF) *QPdfWriter { + return QPdfWriterFromPointer(unsafe.Pointer(C.QPdfWriter_NewQPdfWriter2(C.QtObjectPtr(core.PointerFromQIODevice(device))))) +} + +func NewQPdfWriter(filename string) *QPdfWriter { + return QPdfWriterFromPointer(unsafe.Pointer(C.QPdfWriter_NewQPdfWriter(C.CString(filename)))) +} + +func (ptr *QPdfWriter) Creator() string { + if ptr.Pointer() != nil { + return C.GoString(C.QPdfWriter_Creator(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QPdfWriter) NewPage() bool { + if ptr.Pointer() != nil { + return C.QPdfWriter_NewPage(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPdfWriter) Resolution() int { + if ptr.Pointer() != nil { + return int(C.QPdfWriter_Resolution(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPdfWriter) SetCreator(creator string) { + if ptr.Pointer() != nil { + C.QPdfWriter_SetCreator(C.QtObjectPtr(ptr.Pointer()), C.CString(creator)) + } +} + +func (ptr *QPdfWriter) SetPageLayout(newPageLayout QPageLayoutITF) bool { + if ptr.Pointer() != nil { + return C.QPdfWriter_SetPageLayout(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPageLayout(newPageLayout))) != 0 + } + return false +} + +func (ptr *QPdfWriter) SetPageMargins(margins core.QMarginsFITF) bool { + if ptr.Pointer() != nil { + return C.QPdfWriter_SetPageMargins(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQMarginsF(margins))) != 0 + } + return false +} + +func (ptr *QPdfWriter) SetPageMargins2(margins core.QMarginsFITF, units QPageLayout__Unit) bool { + if ptr.Pointer() != nil { + return C.QPdfWriter_SetPageMargins2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQMarginsF(margins)), C.int(units)) != 0 + } + return false +} + +func (ptr *QPdfWriter) SetPageOrientation(orientation QPageLayout__Orientation) bool { + if ptr.Pointer() != nil { + return C.QPdfWriter_SetPageOrientation(C.QtObjectPtr(ptr.Pointer()), C.int(orientation)) != 0 + } + return false +} + +func (ptr *QPdfWriter) SetPageSize(pageSize QPageSizeITF) bool { + if ptr.Pointer() != nil { + return C.QPdfWriter_SetPageSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPageSize(pageSize))) != 0 + } + return false +} + +func (ptr *QPdfWriter) SetResolution(resolution int) { + if ptr.Pointer() != nil { + C.QPdfWriter_SetResolution(C.QtObjectPtr(ptr.Pointer()), C.int(resolution)) + } +} + +func (ptr *QPdfWriter) SetTitle(title string) { + if ptr.Pointer() != nil { + C.QPdfWriter_SetTitle(C.QtObjectPtr(ptr.Pointer()), C.CString(title)) + } +} + +func (ptr *QPdfWriter) Title() string { + if ptr.Pointer() != nil { + return C.GoString(C.QPdfWriter_Title(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QPdfWriter) DestroyQPdfWriter() { + if ptr.Pointer() != nil { + C.QPdfWriter_DestroyQPdfWriter(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/gui/qpdfwriter.h b/gui/qpdfwriter.h new file mode 100755 index 00000000..519c3b22 --- /dev/null +++ b/gui/qpdfwriter.h @@ -0,0 +1,24 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QPdfWriter_NewQPdfWriter2(QtObjectPtr device); +QtObjectPtr QPdfWriter_NewQPdfWriter(char* filename); +char* QPdfWriter_Creator(QtObjectPtr ptr); +int QPdfWriter_NewPage(QtObjectPtr ptr); +int QPdfWriter_Resolution(QtObjectPtr ptr); +void QPdfWriter_SetCreator(QtObjectPtr ptr, char* creator); +int QPdfWriter_SetPageLayout(QtObjectPtr ptr, QtObjectPtr newPageLayout); +int QPdfWriter_SetPageMargins(QtObjectPtr ptr, QtObjectPtr margins); +int QPdfWriter_SetPageMargins2(QtObjectPtr ptr, QtObjectPtr margins, int units); +int QPdfWriter_SetPageOrientation(QtObjectPtr ptr, int orientation); +int QPdfWriter_SetPageSize(QtObjectPtr ptr, QtObjectPtr pageSize); +void QPdfWriter_SetResolution(QtObjectPtr ptr, int resolution); +void QPdfWriter_SetTitle(QtObjectPtr ptr, char* title); +char* QPdfWriter_Title(QtObjectPtr ptr); +void QPdfWriter_DestroyQPdfWriter(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qpen.cpp b/gui/qpen.cpp new file mode 100755 index 00000000..4affae42 --- /dev/null +++ b/gui/qpen.cpp @@ -0,0 +1,94 @@ +#include "qpen.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPen: public QPen { +public: +}; + +QtObjectPtr QPen_NewQPen5(QtObjectPtr pen){ + return new QPen(*static_cast(pen)); +} + +void QPen_SetCapStyle(QtObjectPtr ptr, int style){ + static_cast(ptr)->setCapStyle(static_cast(style)); +} + +void QPen_SetColor(QtObjectPtr ptr, QtObjectPtr color){ + static_cast(ptr)->setColor(*static_cast(color)); +} + +void QPen_SetJoinStyle(QtObjectPtr ptr, int style){ + static_cast(ptr)->setJoinStyle(static_cast(style)); +} + +void QPen_SetStyle(QtObjectPtr ptr, int style){ + static_cast(ptr)->setStyle(static_cast(style)); +} + +void QPen_SetWidth(QtObjectPtr ptr, int width){ + static_cast(ptr)->setWidth(width); +} + +int QPen_Style(QtObjectPtr ptr){ + return static_cast(ptr)->style(); +} + +int QPen_Width(QtObjectPtr ptr){ + return static_cast(ptr)->width(); +} + +QtObjectPtr QPen_NewQPen(){ + return new QPen(); +} + +QtObjectPtr QPen_NewQPen6(QtObjectPtr pen){ + return new QPen(*static_cast(pen)); +} + +QtObjectPtr QPen_NewQPen2(int style){ + return new QPen(static_cast(style)); +} + +QtObjectPtr QPen_NewQPen3(QtObjectPtr color){ + return new QPen(*static_cast(color)); +} + +int QPen_CapStyle(QtObjectPtr ptr){ + return static_cast(ptr)->capStyle(); +} + +int QPen_IsCosmetic(QtObjectPtr ptr){ + return static_cast(ptr)->isCosmetic(); +} + +int QPen_IsSolid(QtObjectPtr ptr){ + return static_cast(ptr)->isSolid(); +} + +int QPen_JoinStyle(QtObjectPtr ptr){ + return static_cast(ptr)->joinStyle(); +} + +void QPen_SetBrush(QtObjectPtr ptr, QtObjectPtr brush){ + static_cast(ptr)->setBrush(*static_cast(brush)); +} + +void QPen_SetCosmetic(QtObjectPtr ptr, int cosmetic){ + static_cast(ptr)->setCosmetic(cosmetic != 0); +} + +void QPen_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QPen_DestroyQPen(QtObjectPtr ptr){ + static_cast(ptr)->~QPen(); +} + diff --git a/gui/qpen.go b/gui/qpen.go new file mode 100755 index 00000000..97ddd23b --- /dev/null +++ b/gui/qpen.go @@ -0,0 +1,158 @@ +package gui + +//#include "qpen.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QPen struct { + ptr unsafe.Pointer +} + +type QPenITF interface { + QPenPTR() *QPen +} + +func (p *QPen) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPen) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPen(ptr QPenITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPenPTR().Pointer() + } + return nil +} + +func QPenFromPointer(ptr unsafe.Pointer) *QPen { + var n = new(QPen) + n.SetPointer(ptr) + return n +} + +func (ptr *QPen) QPenPTR() *QPen { + return ptr +} + +func NewQPen5(pen QPenITF) *QPen { + return QPenFromPointer(unsafe.Pointer(C.QPen_NewQPen5(C.QtObjectPtr(PointerFromQPen(pen))))) +} + +func (ptr *QPen) SetCapStyle(style core.Qt__PenCapStyle) { + if ptr.Pointer() != nil { + C.QPen_SetCapStyle(C.QtObjectPtr(ptr.Pointer()), C.int(style)) + } +} + +func (ptr *QPen) SetColor(color QColorITF) { + if ptr.Pointer() != nil { + C.QPen_SetColor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQColor(color))) + } +} + +func (ptr *QPen) SetJoinStyle(style core.Qt__PenJoinStyle) { + if ptr.Pointer() != nil { + C.QPen_SetJoinStyle(C.QtObjectPtr(ptr.Pointer()), C.int(style)) + } +} + +func (ptr *QPen) SetStyle(style core.Qt__PenStyle) { + if ptr.Pointer() != nil { + C.QPen_SetStyle(C.QtObjectPtr(ptr.Pointer()), C.int(style)) + } +} + +func (ptr *QPen) SetWidth(width int) { + if ptr.Pointer() != nil { + C.QPen_SetWidth(C.QtObjectPtr(ptr.Pointer()), C.int(width)) + } +} + +func (ptr *QPen) Style() core.Qt__PenStyle { + if ptr.Pointer() != nil { + return core.Qt__PenStyle(C.QPen_Style(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPen) Width() int { + if ptr.Pointer() != nil { + return int(C.QPen_Width(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQPen() *QPen { + return QPenFromPointer(unsafe.Pointer(C.QPen_NewQPen())) +} + +func NewQPen6(pen QPenITF) *QPen { + return QPenFromPointer(unsafe.Pointer(C.QPen_NewQPen6(C.QtObjectPtr(PointerFromQPen(pen))))) +} + +func NewQPen2(style core.Qt__PenStyle) *QPen { + return QPenFromPointer(unsafe.Pointer(C.QPen_NewQPen2(C.int(style)))) +} + +func NewQPen3(color QColorITF) *QPen { + return QPenFromPointer(unsafe.Pointer(C.QPen_NewQPen3(C.QtObjectPtr(PointerFromQColor(color))))) +} + +func (ptr *QPen) CapStyle() core.Qt__PenCapStyle { + if ptr.Pointer() != nil { + return core.Qt__PenCapStyle(C.QPen_CapStyle(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPen) IsCosmetic() bool { + if ptr.Pointer() != nil { + return C.QPen_IsCosmetic(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPen) IsSolid() bool { + if ptr.Pointer() != nil { + return C.QPen_IsSolid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPen) JoinStyle() core.Qt__PenJoinStyle { + if ptr.Pointer() != nil { + return core.Qt__PenJoinStyle(C.QPen_JoinStyle(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPen) SetBrush(brush QBrushITF) { + if ptr.Pointer() != nil { + C.QPen_SetBrush(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQBrush(brush))) + } +} + +func (ptr *QPen) SetCosmetic(cosmetic bool) { + if ptr.Pointer() != nil { + C.QPen_SetCosmetic(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(cosmetic))) + } +} + +func (ptr *QPen) Swap(other QPenITF) { + if ptr.Pointer() != nil { + C.QPen_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPen(other))) + } +} + +func (ptr *QPen) DestroyQPen() { + if ptr.Pointer() != nil { + C.QPen_DestroyQPen(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qpen.h b/gui/qpen.h new file mode 100755 index 00000000..d82f5d5a --- /dev/null +++ b/gui/qpen.h @@ -0,0 +1,29 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QPen_NewQPen5(QtObjectPtr pen); +void QPen_SetCapStyle(QtObjectPtr ptr, int style); +void QPen_SetColor(QtObjectPtr ptr, QtObjectPtr color); +void QPen_SetJoinStyle(QtObjectPtr ptr, int style); +void QPen_SetStyle(QtObjectPtr ptr, int style); +void QPen_SetWidth(QtObjectPtr ptr, int width); +int QPen_Style(QtObjectPtr ptr); +int QPen_Width(QtObjectPtr ptr); +QtObjectPtr QPen_NewQPen(); +QtObjectPtr QPen_NewQPen6(QtObjectPtr pen); +QtObjectPtr QPen_NewQPen2(int style); +QtObjectPtr QPen_NewQPen3(QtObjectPtr color); +int QPen_CapStyle(QtObjectPtr ptr); +int QPen_IsCosmetic(QtObjectPtr ptr); +int QPen_IsSolid(QtObjectPtr ptr); +int QPen_JoinStyle(QtObjectPtr ptr); +void QPen_SetBrush(QtObjectPtr ptr, QtObjectPtr brush); +void QPen_SetCosmetic(QtObjectPtr ptr, int cosmetic); +void QPen_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QPen_DestroyQPen(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qpicture.cpp b/gui/qpicture.cpp new file mode 100755 index 00000000..113c9b33 --- /dev/null +++ b/gui/qpicture.cpp @@ -0,0 +1,51 @@ +#include "qpicture.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPicture: public QPicture { +public: +}; + +int QPicture_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QPicture_Load2(QtObjectPtr ptr, QtObjectPtr dev, char* format){ + return static_cast(ptr)->load(static_cast(dev), const_cast(format)); +} + +int QPicture_Load(QtObjectPtr ptr, char* fileName, char* format){ + return static_cast(ptr)->load(QString(fileName), const_cast(format)); +} + +int QPicture_Play(QtObjectPtr ptr, QtObjectPtr painter){ + return static_cast(ptr)->play(static_cast(painter)); +} + +int QPicture_Save2(QtObjectPtr ptr, QtObjectPtr dev, char* format){ + return static_cast(ptr)->save(static_cast(dev), const_cast(format)); +} + +int QPicture_Save(QtObjectPtr ptr, char* fileName, char* format){ + return static_cast(ptr)->save(QString(fileName), const_cast(format)); +} + +void QPicture_SetBoundingRect(QtObjectPtr ptr, QtObjectPtr r){ + static_cast(ptr)->setBoundingRect(*static_cast(r)); +} + +void QPicture_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QPicture_DestroyQPicture(QtObjectPtr ptr){ + static_cast(ptr)->~QPicture(); +} + diff --git a/gui/qpicture.go b/gui/qpicture.go new file mode 100755 index 00000000..245a11fa --- /dev/null +++ b/gui/qpicture.go @@ -0,0 +1,94 @@ +package gui + +//#include "qpicture.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QPicture struct { + QPaintDevice +} + +type QPictureITF interface { + QPaintDeviceITF + QPicturePTR() *QPicture +} + +func PointerFromQPicture(ptr QPictureITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPicturePTR().Pointer() + } + return nil +} + +func QPictureFromPointer(ptr unsafe.Pointer) *QPicture { + var n = new(QPicture) + n.SetPointer(ptr) + return n +} + +func (ptr *QPicture) QPicturePTR() *QPicture { + return ptr +} + +func (ptr *QPicture) IsNull() bool { + if ptr.Pointer() != nil { + return C.QPicture_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPicture) Load2(dev core.QIODeviceITF, format string) bool { + if ptr.Pointer() != nil { + return C.QPicture_Load2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQIODevice(dev)), C.CString(format)) != 0 + } + return false +} + +func (ptr *QPicture) Load(fileName string, format string) bool { + if ptr.Pointer() != nil { + return C.QPicture_Load(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName), C.CString(format)) != 0 + } + return false +} + +func (ptr *QPicture) Play(painter QPainterITF) bool { + if ptr.Pointer() != nil { + return C.QPicture_Play(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPainter(painter))) != 0 + } + return false +} + +func (ptr *QPicture) Save2(dev core.QIODeviceITF, format string) bool { + if ptr.Pointer() != nil { + return C.QPicture_Save2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQIODevice(dev)), C.CString(format)) != 0 + } + return false +} + +func (ptr *QPicture) Save(fileName string, format string) bool { + if ptr.Pointer() != nil { + return C.QPicture_Save(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName), C.CString(format)) != 0 + } + return false +} + +func (ptr *QPicture) SetBoundingRect(r core.QRectITF) { + if ptr.Pointer() != nil { + C.QPicture_SetBoundingRect(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(r))) + } +} + +func (ptr *QPicture) Swap(other QPictureITF) { + if ptr.Pointer() != nil { + C.QPicture_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPicture(other))) + } +} + +func (ptr *QPicture) DestroyQPicture() { + if ptr.Pointer() != nil { + C.QPicture_DestroyQPicture(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qpicture.h b/gui/qpicture.h new file mode 100755 index 00000000..ea67d320 --- /dev/null +++ b/gui/qpicture.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QPicture_IsNull(QtObjectPtr ptr); +int QPicture_Load2(QtObjectPtr ptr, QtObjectPtr dev, char* format); +int QPicture_Load(QtObjectPtr ptr, char* fileName, char* format); +int QPicture_Play(QtObjectPtr ptr, QtObjectPtr painter); +int QPicture_Save2(QtObjectPtr ptr, QtObjectPtr dev, char* format); +int QPicture_Save(QtObjectPtr ptr, char* fileName, char* format); +void QPicture_SetBoundingRect(QtObjectPtr ptr, QtObjectPtr r); +void QPicture_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QPicture_DestroyQPicture(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qpixelformat.cpp b/gui/qpixelformat.cpp new file mode 100755 index 00000000..c89c3866 --- /dev/null +++ b/gui/qpixelformat.cpp @@ -0,0 +1,44 @@ +#include "qpixelformat.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPixelFormat: public QPixelFormat { +public: +}; + +QtObjectPtr QPixelFormat_NewQPixelFormat(){ + return new QPixelFormat(); +} + +int QPixelFormat_AlphaPosition(QtObjectPtr ptr){ + return static_cast(ptr)->alphaPosition(); +} + +int QPixelFormat_AlphaUsage(QtObjectPtr ptr){ + return static_cast(ptr)->alphaUsage(); +} + +int QPixelFormat_ByteOrder(QtObjectPtr ptr){ + return static_cast(ptr)->byteOrder(); +} + +int QPixelFormat_ColorModel(QtObjectPtr ptr){ + return static_cast(ptr)->colorModel(); +} + +int QPixelFormat_Premultiplied(QtObjectPtr ptr){ + return static_cast(ptr)->premultiplied(); +} + +int QPixelFormat_TypeInterpretation(QtObjectPtr ptr){ + return static_cast(ptr)->typeInterpretation(); +} + +int QPixelFormat_YuvLayout(QtObjectPtr ptr){ + return static_cast(ptr)->yuvLayout(); +} + diff --git a/gui/qpixelformat.go b/gui/qpixelformat.go new file mode 100755 index 00000000..26c39aa4 --- /dev/null +++ b/gui/qpixelformat.go @@ -0,0 +1,173 @@ +package gui + +//#include "qpixelformat.h" +import "C" +import ( + "unsafe" +) + +type QPixelFormat struct { + ptr unsafe.Pointer +} + +type QPixelFormatITF interface { + QPixelFormatPTR() *QPixelFormat +} + +func (p *QPixelFormat) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPixelFormat) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPixelFormat(ptr QPixelFormatITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPixelFormatPTR().Pointer() + } + return nil +} + +func QPixelFormatFromPointer(ptr unsafe.Pointer) *QPixelFormat { + var n = new(QPixelFormat) + n.SetPointer(ptr) + return n +} + +func (ptr *QPixelFormat) QPixelFormatPTR() *QPixelFormat { + return ptr +} + +//QPixelFormat::AlphaPosition +type QPixelFormat__AlphaPosition int + +var ( + QPixelFormat__AtBeginning = QPixelFormat__AlphaPosition(0) + QPixelFormat__AtEnd = QPixelFormat__AlphaPosition(1) +) + +//QPixelFormat::AlphaPremultiplied +type QPixelFormat__AlphaPremultiplied int + +var ( + QPixelFormat__NotPremultiplied = QPixelFormat__AlphaPremultiplied(0) + QPixelFormat__Premultiplied = QPixelFormat__AlphaPremultiplied(1) +) + +//QPixelFormat::AlphaUsage +type QPixelFormat__AlphaUsage int + +var ( + QPixelFormat__UsesAlpha = QPixelFormat__AlphaUsage(0) + QPixelFormat__IgnoresAlpha = QPixelFormat__AlphaUsage(1) +) + +//QPixelFormat::ByteOrder +type QPixelFormat__ByteOrder int + +var ( + QPixelFormat__LittleEndian = QPixelFormat__ByteOrder(0) + QPixelFormat__BigEndian = QPixelFormat__ByteOrder(1) + QPixelFormat__CurrentSystemEndian = QPixelFormat__ByteOrder(2) +) + +//QPixelFormat::ColorModel +type QPixelFormat__ColorModel int + +var ( + QPixelFormat__RGB = QPixelFormat__ColorModel(0) + QPixelFormat__BGR = QPixelFormat__ColorModel(1) + QPixelFormat__Indexed = QPixelFormat__ColorModel(2) + QPixelFormat__Grayscale = QPixelFormat__ColorModel(3) + QPixelFormat__CMYK = QPixelFormat__ColorModel(4) + QPixelFormat__HSL = QPixelFormat__ColorModel(5) + QPixelFormat__HSV = QPixelFormat__ColorModel(6) + QPixelFormat__YUV = QPixelFormat__ColorModel(7) + QPixelFormat__Alpha = QPixelFormat__ColorModel(8) +) + +//QPixelFormat::TypeInterpretation +type QPixelFormat__TypeInterpretation int + +var ( + QPixelFormat__UnsignedInteger = QPixelFormat__TypeInterpretation(0) + QPixelFormat__UnsignedShort = QPixelFormat__TypeInterpretation(1) + QPixelFormat__UnsignedByte = QPixelFormat__TypeInterpretation(2) + QPixelFormat__FloatingPoint = QPixelFormat__TypeInterpretation(3) +) + +//QPixelFormat::YUVLayout +type QPixelFormat__YUVLayout int + +var ( + QPixelFormat__YUV444 = QPixelFormat__YUVLayout(0) + QPixelFormat__YUV422 = QPixelFormat__YUVLayout(1) + QPixelFormat__YUV411 = QPixelFormat__YUVLayout(2) + QPixelFormat__YUV420P = QPixelFormat__YUVLayout(3) + QPixelFormat__YUV420SP = QPixelFormat__YUVLayout(4) + QPixelFormat__YV12 = QPixelFormat__YUVLayout(5) + QPixelFormat__UYVY = QPixelFormat__YUVLayout(6) + QPixelFormat__YUYV = QPixelFormat__YUVLayout(7) + QPixelFormat__NV12 = QPixelFormat__YUVLayout(8) + QPixelFormat__NV21 = QPixelFormat__YUVLayout(9) + QPixelFormat__IMC1 = QPixelFormat__YUVLayout(10) + QPixelFormat__IMC2 = QPixelFormat__YUVLayout(11) + QPixelFormat__IMC3 = QPixelFormat__YUVLayout(12) + QPixelFormat__IMC4 = QPixelFormat__YUVLayout(13) + QPixelFormat__Y8 = QPixelFormat__YUVLayout(14) + QPixelFormat__Y16 = QPixelFormat__YUVLayout(15) +) + +func NewQPixelFormat() *QPixelFormat { + return QPixelFormatFromPointer(unsafe.Pointer(C.QPixelFormat_NewQPixelFormat())) +} + +func (ptr *QPixelFormat) AlphaPosition() QPixelFormat__AlphaPosition { + if ptr.Pointer() != nil { + return QPixelFormat__AlphaPosition(C.QPixelFormat_AlphaPosition(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPixelFormat) AlphaUsage() QPixelFormat__AlphaUsage { + if ptr.Pointer() != nil { + return QPixelFormat__AlphaUsage(C.QPixelFormat_AlphaUsage(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPixelFormat) ByteOrder() QPixelFormat__ByteOrder { + if ptr.Pointer() != nil { + return QPixelFormat__ByteOrder(C.QPixelFormat_ByteOrder(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPixelFormat) ColorModel() QPixelFormat__ColorModel { + if ptr.Pointer() != nil { + return QPixelFormat__ColorModel(C.QPixelFormat_ColorModel(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPixelFormat) Premultiplied() QPixelFormat__AlphaPremultiplied { + if ptr.Pointer() != nil { + return QPixelFormat__AlphaPremultiplied(C.QPixelFormat_Premultiplied(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPixelFormat) TypeInterpretation() QPixelFormat__TypeInterpretation { + if ptr.Pointer() != nil { + return QPixelFormat__TypeInterpretation(C.QPixelFormat_TypeInterpretation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPixelFormat) YuvLayout() QPixelFormat__YUVLayout { + if ptr.Pointer() != nil { + return QPixelFormat__YUVLayout(C.QPixelFormat_YuvLayout(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/gui/qpixelformat.h b/gui/qpixelformat.h new file mode 100755 index 00000000..9fa2ba4d --- /dev/null +++ b/gui/qpixelformat.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QPixelFormat_NewQPixelFormat(); +int QPixelFormat_AlphaPosition(QtObjectPtr ptr); +int QPixelFormat_AlphaUsage(QtObjectPtr ptr); +int QPixelFormat_ByteOrder(QtObjectPtr ptr); +int QPixelFormat_ColorModel(QtObjectPtr ptr); +int QPixelFormat_Premultiplied(QtObjectPtr ptr); +int QPixelFormat_TypeInterpretation(QtObjectPtr ptr); +int QPixelFormat_YuvLayout(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qpixmap.cpp b/gui/qpixmap.cpp new file mode 100755 index 00000000..bdcbfd20 --- /dev/null +++ b/gui/qpixmap.cpp @@ -0,0 +1,99 @@ +#include "qpixmap.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPixmap: public QPixmap { +public: +}; + +int QPixmap_Depth(QtObjectPtr ptr){ + return static_cast(ptr)->depth(); +} + +int QPixmap_Height(QtObjectPtr ptr){ + return static_cast(ptr)->height(); +} + +int QPixmap_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QPixmap_IsQBitmap(QtObjectPtr ptr){ + return static_cast(ptr)->isQBitmap(); +} + +int QPixmap_Width(QtObjectPtr ptr){ + return static_cast(ptr)->width(); +} + +int QPixmap_ConvertFromImage(QtObjectPtr ptr, QtObjectPtr image, int flags){ + return static_cast(ptr)->convertFromImage(*static_cast(image), static_cast(flags)); +} + +int QPixmap_QPixmap_DefaultDepth(){ + return QPixmap::defaultDepth(); +} + +void QPixmap_Detach(QtObjectPtr ptr){ + static_cast(ptr)->detach(); +} + +void QPixmap_Fill(QtObjectPtr ptr, QtObjectPtr color){ + static_cast(ptr)->fill(*static_cast(color)); +} + +int QPixmap_HasAlpha(QtObjectPtr ptr){ + return static_cast(ptr)->hasAlpha(); +} + +int QPixmap_HasAlphaChannel(QtObjectPtr ptr){ + return static_cast(ptr)->hasAlphaChannel(); +} + +int QPixmap_Load(QtObjectPtr ptr, char* fileName, char* format, int flags){ + return static_cast(ptr)->load(QString(fileName), const_cast(format), static_cast(flags)); +} + +int QPixmap_LoadFromData2(QtObjectPtr ptr, QtObjectPtr data, char* format, int flags){ + return static_cast(ptr)->loadFromData(*static_cast(data), const_cast(format), static_cast(flags)); +} + +int QPixmap_Save2(QtObjectPtr ptr, QtObjectPtr device, char* format, int quality){ + return static_cast(ptr)->save(static_cast(device), const_cast(format), quality); +} + +int QPixmap_Save(QtObjectPtr ptr, char* fileName, char* format, int quality){ + return static_cast(ptr)->save(QString(fileName), const_cast(format), quality); +} + +void QPixmap_Scroll2(QtObjectPtr ptr, int dx, int dy, QtObjectPtr rect, QtObjectPtr exposed){ + static_cast(ptr)->scroll(dx, dy, *static_cast(rect), static_cast(exposed)); +} + +void QPixmap_Scroll(QtObjectPtr ptr, int dx, int dy, int x, int y, int width, int height, QtObjectPtr exposed){ + static_cast(ptr)->scroll(dx, dy, x, y, width, height, static_cast(exposed)); +} + +void QPixmap_SetMask(QtObjectPtr ptr, QtObjectPtr mask){ + static_cast(ptr)->setMask(*static_cast(mask)); +} + +void QPixmap_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QPixmap_DestroyQPixmap(QtObjectPtr ptr){ + static_cast(ptr)->~QPixmap(); +} + diff --git a/gui/qpixmap.go b/gui/qpixmap.go new file mode 100755 index 00000000..618196e5 --- /dev/null +++ b/gui/qpixmap.go @@ -0,0 +1,164 @@ +package gui + +//#include "qpixmap.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QPixmap struct { + QPaintDevice +} + +type QPixmapITF interface { + QPaintDeviceITF + QPixmapPTR() *QPixmap +} + +func PointerFromQPixmap(ptr QPixmapITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPixmapPTR().Pointer() + } + return nil +} + +func QPixmapFromPointer(ptr unsafe.Pointer) *QPixmap { + var n = new(QPixmap) + n.SetPointer(ptr) + return n +} + +func (ptr *QPixmap) QPixmapPTR() *QPixmap { + return ptr +} + +func (ptr *QPixmap) Depth() int { + if ptr.Pointer() != nil { + return int(C.QPixmap_Depth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPixmap) Height() int { + if ptr.Pointer() != nil { + return int(C.QPixmap_Height(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPixmap) IsNull() bool { + if ptr.Pointer() != nil { + return C.QPixmap_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPixmap) IsQBitmap() bool { + if ptr.Pointer() != nil { + return C.QPixmap_IsQBitmap(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPixmap) Width() int { + if ptr.Pointer() != nil { + return int(C.QPixmap_Width(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPixmap) ConvertFromImage(image QImageITF, flags core.Qt__ImageConversionFlag) bool { + if ptr.Pointer() != nil { + return C.QPixmap_ConvertFromImage(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQImage(image)), C.int(flags)) != 0 + } + return false +} + +func QPixmap_DefaultDepth() int { + return int(C.QPixmap_QPixmap_DefaultDepth()) +} + +func (ptr *QPixmap) Detach() { + if ptr.Pointer() != nil { + C.QPixmap_Detach(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QPixmap) Fill(color QColorITF) { + if ptr.Pointer() != nil { + C.QPixmap_Fill(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQColor(color))) + } +} + +func (ptr *QPixmap) HasAlpha() bool { + if ptr.Pointer() != nil { + return C.QPixmap_HasAlpha(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPixmap) HasAlphaChannel() bool { + if ptr.Pointer() != nil { + return C.QPixmap_HasAlphaChannel(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPixmap) Load(fileName string, format string, flags core.Qt__ImageConversionFlag) bool { + if ptr.Pointer() != nil { + return C.QPixmap_Load(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName), C.CString(format), C.int(flags)) != 0 + } + return false +} + +func (ptr *QPixmap) LoadFromData2(data core.QByteArrayITF, format string, flags core.Qt__ImageConversionFlag) bool { + if ptr.Pointer() != nil { + return C.QPixmap_LoadFromData2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(data)), C.CString(format), C.int(flags)) != 0 + } + return false +} + +func (ptr *QPixmap) Save2(device core.QIODeviceITF, format string, quality int) bool { + if ptr.Pointer() != nil { + return C.QPixmap_Save2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQIODevice(device)), C.CString(format), C.int(quality)) != 0 + } + return false +} + +func (ptr *QPixmap) Save(fileName string, format string, quality int) bool { + if ptr.Pointer() != nil { + return C.QPixmap_Save(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName), C.CString(format), C.int(quality)) != 0 + } + return false +} + +func (ptr *QPixmap) Scroll2(dx int, dy int, rect core.QRectITF, exposed QRegionITF) { + if ptr.Pointer() != nil { + C.QPixmap_Scroll2(C.QtObjectPtr(ptr.Pointer()), C.int(dx), C.int(dy), C.QtObjectPtr(core.PointerFromQRect(rect)), C.QtObjectPtr(PointerFromQRegion(exposed))) + } +} + +func (ptr *QPixmap) Scroll(dx int, dy int, x int, y int, width int, height int, exposed QRegionITF) { + if ptr.Pointer() != nil { + C.QPixmap_Scroll(C.QtObjectPtr(ptr.Pointer()), C.int(dx), C.int(dy), C.int(x), C.int(y), C.int(width), C.int(height), C.QtObjectPtr(PointerFromQRegion(exposed))) + } +} + +func (ptr *QPixmap) SetMask(mask QBitmapITF) { + if ptr.Pointer() != nil { + C.QPixmap_SetMask(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQBitmap(mask))) + } +} + +func (ptr *QPixmap) Swap(other QPixmapITF) { + if ptr.Pointer() != nil { + C.QPixmap_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPixmap(other))) + } +} + +func (ptr *QPixmap) DestroyQPixmap() { + if ptr.Pointer() != nil { + C.QPixmap_DestroyQPixmap(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qpixmap.h b/gui/qpixmap.h new file mode 100755 index 00000000..2e02cb54 --- /dev/null +++ b/gui/qpixmap.h @@ -0,0 +1,29 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QPixmap_Depth(QtObjectPtr ptr); +int QPixmap_Height(QtObjectPtr ptr); +int QPixmap_IsNull(QtObjectPtr ptr); +int QPixmap_IsQBitmap(QtObjectPtr ptr); +int QPixmap_Width(QtObjectPtr ptr); +int QPixmap_ConvertFromImage(QtObjectPtr ptr, QtObjectPtr image, int flags); +int QPixmap_QPixmap_DefaultDepth(); +void QPixmap_Detach(QtObjectPtr ptr); +void QPixmap_Fill(QtObjectPtr ptr, QtObjectPtr color); +int QPixmap_HasAlpha(QtObjectPtr ptr); +int QPixmap_HasAlphaChannel(QtObjectPtr ptr); +int QPixmap_Load(QtObjectPtr ptr, char* fileName, char* format, int flags); +int QPixmap_LoadFromData2(QtObjectPtr ptr, QtObjectPtr data, char* format, int flags); +int QPixmap_Save2(QtObjectPtr ptr, QtObjectPtr device, char* format, int quality); +int QPixmap_Save(QtObjectPtr ptr, char* fileName, char* format, int quality); +void QPixmap_Scroll2(QtObjectPtr ptr, int dx, int dy, QtObjectPtr rect, QtObjectPtr exposed); +void QPixmap_Scroll(QtObjectPtr ptr, int dx, int dy, int x, int y, int width, int height, QtObjectPtr exposed); +void QPixmap_SetMask(QtObjectPtr ptr, QtObjectPtr mask); +void QPixmap_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QPixmap_DestroyQPixmap(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qpixmapcache.cpp b/gui/qpixmapcache.cpp new file mode 100755 index 00000000..1398df47 --- /dev/null +++ b/gui/qpixmapcache.cpp @@ -0,0 +1,25 @@ +#include "qpixmapcache.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPixmapCache: public QPixmapCache { +public: +}; + +int QPixmapCache_QPixmapCache_CacheLimit(){ + return QPixmapCache::cacheLimit(); +} + +void QPixmapCache_QPixmapCache_Clear(){ + QPixmapCache::clear(); +} + +void QPixmapCache_QPixmapCache_SetCacheLimit(int n){ + QPixmapCache::setCacheLimit(n); +} + diff --git a/gui/qpixmapcache.go b/gui/qpixmapcache.go new file mode 100755 index 00000000..f1a6823d --- /dev/null +++ b/gui/qpixmapcache.go @@ -0,0 +1,52 @@ +package gui + +//#include "qpixmapcache.h" +import "C" +import ( + "unsafe" +) + +type QPixmapCache struct { + ptr unsafe.Pointer +} + +type QPixmapCacheITF interface { + QPixmapCachePTR() *QPixmapCache +} + +func (p *QPixmapCache) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPixmapCache) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPixmapCache(ptr QPixmapCacheITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPixmapCachePTR().Pointer() + } + return nil +} + +func QPixmapCacheFromPointer(ptr unsafe.Pointer) *QPixmapCache { + var n = new(QPixmapCache) + n.SetPointer(ptr) + return n +} + +func (ptr *QPixmapCache) QPixmapCachePTR() *QPixmapCache { + return ptr +} + +func QPixmapCache_CacheLimit() int { + return int(C.QPixmapCache_QPixmapCache_CacheLimit()) +} + +func QPixmapCache_Clear() { + C.QPixmapCache_QPixmapCache_Clear() +} + +func QPixmapCache_SetCacheLimit(n int) { + C.QPixmapCache_QPixmapCache_SetCacheLimit(C.int(n)) +} diff --git a/gui/qpixmapcache.h b/gui/qpixmapcache.h new file mode 100755 index 00000000..85cf9132 --- /dev/null +++ b/gui/qpixmapcache.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QPixmapCache_QPixmapCache_CacheLimit(); +void QPixmapCache_QPixmapCache_Clear(); +void QPixmapCache_QPixmapCache_SetCacheLimit(int n); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qplatformgraphicsbuffer.cpp b/gui/qplatformgraphicsbuffer.cpp new file mode 100755 index 00000000..c7144280 --- /dev/null +++ b/gui/qplatformgraphicsbuffer.cpp @@ -0,0 +1,7 @@ +#include "qplatformgraphicsbuffer.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/gui/qplatformgraphicsbuffer.go b/gui/qplatformgraphicsbuffer.go new file mode 100755 index 00000000..a45af3a7 --- /dev/null +++ b/gui/qplatformgraphicsbuffer.go @@ -0,0 +1,57 @@ +package gui + +//#include "qplatformgraphicsbuffer.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QPlatformGraphicsBuffer struct { + core.QObject +} + +type QPlatformGraphicsBufferITF interface { + core.QObjectITF + QPlatformGraphicsBufferPTR() *QPlatformGraphicsBuffer +} + +func PointerFromQPlatformGraphicsBuffer(ptr QPlatformGraphicsBufferITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlatformGraphicsBufferPTR().Pointer() + } + return nil +} + +func QPlatformGraphicsBufferFromPointer(ptr unsafe.Pointer) *QPlatformGraphicsBuffer { + var n = new(QPlatformGraphicsBuffer) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QPlatformGraphicsBuffer_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QPlatformGraphicsBuffer) QPlatformGraphicsBufferPTR() *QPlatformGraphicsBuffer { + return ptr +} + +//QPlatformGraphicsBuffer::AccessType +type QPlatformGraphicsBuffer__AccessType int + +var ( + QPlatformGraphicsBuffer__None = QPlatformGraphicsBuffer__AccessType(0x00) + QPlatformGraphicsBuffer__SWReadAccess = QPlatformGraphicsBuffer__AccessType(0x01) + QPlatformGraphicsBuffer__SWWriteAccess = QPlatformGraphicsBuffer__AccessType(0x02) + QPlatformGraphicsBuffer__TextureAccess = QPlatformGraphicsBuffer__AccessType(0x04) + QPlatformGraphicsBuffer__HWCompositor = QPlatformGraphicsBuffer__AccessType(0x08) +) + +//QPlatformGraphicsBuffer::Origin +type QPlatformGraphicsBuffer__Origin int + +var ( + QPlatformGraphicsBuffer__OriginBottomLeft = QPlatformGraphicsBuffer__Origin(0) + QPlatformGraphicsBuffer__OriginTopLeft = QPlatformGraphicsBuffer__Origin(1) +) diff --git a/gui/qplatformgraphicsbuffer.h b/gui/qplatformgraphicsbuffer.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/gui/qplatformgraphicsbuffer.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qplatformsurfaceevent.cpp b/gui/qplatformsurfaceevent.cpp new file mode 100755 index 00000000..024ddcca --- /dev/null +++ b/gui/qplatformsurfaceevent.cpp @@ -0,0 +1,20 @@ +#include "qplatformsurfaceevent.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPlatformSurfaceEvent: public QPlatformSurfaceEvent { +public: +}; + +QtObjectPtr QPlatformSurfaceEvent_NewQPlatformSurfaceEvent(int surfaceEventType){ + return new QPlatformSurfaceEvent(static_cast(surfaceEventType)); +} + +int QPlatformSurfaceEvent_SurfaceEventType(QtObjectPtr ptr){ + return static_cast(ptr)->surfaceEventType(); +} + diff --git a/gui/qplatformsurfaceevent.go b/gui/qplatformsurfaceevent.go new file mode 100755 index 00000000..d0bb4c04 --- /dev/null +++ b/gui/qplatformsurfaceevent.go @@ -0,0 +1,53 @@ +package gui + +//#include "qplatformsurfaceevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QPlatformSurfaceEvent struct { + core.QEvent +} + +type QPlatformSurfaceEventITF interface { + core.QEventITF + QPlatformSurfaceEventPTR() *QPlatformSurfaceEvent +} + +func PointerFromQPlatformSurfaceEvent(ptr QPlatformSurfaceEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlatformSurfaceEventPTR().Pointer() + } + return nil +} + +func QPlatformSurfaceEventFromPointer(ptr unsafe.Pointer) *QPlatformSurfaceEvent { + var n = new(QPlatformSurfaceEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QPlatformSurfaceEvent) QPlatformSurfaceEventPTR() *QPlatformSurfaceEvent { + return ptr +} + +//QPlatformSurfaceEvent::SurfaceEventType +type QPlatformSurfaceEvent__SurfaceEventType int + +var ( + QPlatformSurfaceEvent__SurfaceCreated = QPlatformSurfaceEvent__SurfaceEventType(0) + QPlatformSurfaceEvent__SurfaceAboutToBeDestroyed = QPlatformSurfaceEvent__SurfaceEventType(1) +) + +func NewQPlatformSurfaceEvent(surfaceEventType QPlatformSurfaceEvent__SurfaceEventType) *QPlatformSurfaceEvent { + return QPlatformSurfaceEventFromPointer(unsafe.Pointer(C.QPlatformSurfaceEvent_NewQPlatformSurfaceEvent(C.int(surfaceEventType)))) +} + +func (ptr *QPlatformSurfaceEvent) SurfaceEventType() QPlatformSurfaceEvent__SurfaceEventType { + if ptr.Pointer() != nil { + return QPlatformSurfaceEvent__SurfaceEventType(C.QPlatformSurfaceEvent_SurfaceEventType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/gui/qplatformsurfaceevent.h b/gui/qplatformsurfaceevent.h new file mode 100755 index 00000000..102a703a --- /dev/null +++ b/gui/qplatformsurfaceevent.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QPlatformSurfaceEvent_NewQPlatformSurfaceEvent(int surfaceEventType); +int QPlatformSurfaceEvent_SurfaceEventType(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qplatformsystemtrayicon.cpp b/gui/qplatformsystemtrayicon.cpp new file mode 100755 index 00000000..085546f1 --- /dev/null +++ b/gui/qplatformsystemtrayicon.cpp @@ -0,0 +1,7 @@ +#include "qplatformsystemtrayicon.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/gui/qplatformsystemtrayicon.go b/gui/qplatformsystemtrayicon.go new file mode 100755 index 00000000..9af1d66d --- /dev/null +++ b/gui/qplatformsystemtrayicon.go @@ -0,0 +1,59 @@ +package gui + +//#include "qplatformsystemtrayicon.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QPlatformSystemTrayIcon struct { + core.QObject +} + +type QPlatformSystemTrayIconITF interface { + core.QObjectITF + QPlatformSystemTrayIconPTR() *QPlatformSystemTrayIcon +} + +func PointerFromQPlatformSystemTrayIcon(ptr QPlatformSystemTrayIconITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlatformSystemTrayIconPTR().Pointer() + } + return nil +} + +func QPlatformSystemTrayIconFromPointer(ptr unsafe.Pointer) *QPlatformSystemTrayIcon { + var n = new(QPlatformSystemTrayIcon) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QPlatformSystemTrayIcon_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QPlatformSystemTrayIcon) QPlatformSystemTrayIconPTR() *QPlatformSystemTrayIcon { + return ptr +} + +//QPlatformSystemTrayIcon::ActivationReason +type QPlatformSystemTrayIcon__ActivationReason int + +var ( + QPlatformSystemTrayIcon__Unknown = QPlatformSystemTrayIcon__ActivationReason(0) + QPlatformSystemTrayIcon__Context = QPlatformSystemTrayIcon__ActivationReason(1) + QPlatformSystemTrayIcon__DoubleClick = QPlatformSystemTrayIcon__ActivationReason(2) + QPlatformSystemTrayIcon__Trigger = QPlatformSystemTrayIcon__ActivationReason(3) + QPlatformSystemTrayIcon__MiddleClick = QPlatformSystemTrayIcon__ActivationReason(4) +) + +//QPlatformSystemTrayIcon::MessageIcon +type QPlatformSystemTrayIcon__MessageIcon int + +var ( + QPlatformSystemTrayIcon__NoIcon = QPlatformSystemTrayIcon__MessageIcon(0) + QPlatformSystemTrayIcon__Information = QPlatformSystemTrayIcon__MessageIcon(1) + QPlatformSystemTrayIcon__Warning = QPlatformSystemTrayIcon__MessageIcon(2) + QPlatformSystemTrayIcon__Critical = QPlatformSystemTrayIcon__MessageIcon(3) +) diff --git a/gui/qplatformsystemtrayicon.h b/gui/qplatformsystemtrayicon.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/gui/qplatformsystemtrayicon.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qpolygon.cpp b/gui/qpolygon.cpp new file mode 100755 index 00000000..9288d053 --- /dev/null +++ b/gui/qpolygon.cpp @@ -0,0 +1,70 @@ +#include "qpolygon.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPolygon: public QPolygon { +public: +}; + +QtObjectPtr QPolygon_NewQPolygon5(QtObjectPtr rectangle, int closed){ + return new QPolygon(*static_cast(rectangle), closed != 0); +} + +int QPolygon_ContainsPoint(QtObjectPtr ptr, QtObjectPtr point, int fillRule){ + return static_cast(ptr)->containsPoint(*static_cast(point), static_cast(fillRule)); +} + +void QPolygon_PutPoints3(QtObjectPtr ptr, int index, int nPoints, QtObjectPtr fromPolygon, int fromIndex){ + static_cast(ptr)->putPoints(index, nPoints, *static_cast(fromPolygon), fromIndex); +} + +QtObjectPtr QPolygon_NewQPolygon(){ + return new QPolygon(); +} + +QtObjectPtr QPolygon_NewQPolygon3(QtObjectPtr polygon){ + return new QPolygon(*static_cast(polygon)); +} + +QtObjectPtr QPolygon_NewQPolygon2(int size){ + return new QPolygon(size); +} + +void QPolygon_Point(QtObjectPtr ptr, int index, int x, int y){ + static_cast(ptr)->point(index, &x, &y); +} + +void QPolygon_SetPoint2(QtObjectPtr ptr, int index, QtObjectPtr point){ + static_cast(ptr)->setPoint(index, *static_cast(point)); +} + +void QPolygon_SetPoint(QtObjectPtr ptr, int index, int x, int y){ + static_cast(ptr)->setPoint(index, x, y); +} + +void QPolygon_SetPoints(QtObjectPtr ptr, int nPoints, int points){ + static_cast(ptr)->setPoints(nPoints, &points); +} + +void QPolygon_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QPolygon_Translate2(QtObjectPtr ptr, QtObjectPtr offset){ + static_cast(ptr)->translate(*static_cast(offset)); +} + +void QPolygon_Translate(QtObjectPtr ptr, int dx, int dy){ + static_cast(ptr)->translate(dx, dy); +} + +void QPolygon_DestroyQPolygon(QtObjectPtr ptr){ + static_cast(ptr)->~QPolygon(); +} + diff --git a/gui/qpolygon.go b/gui/qpolygon.go new file mode 100755 index 00000000..f335c912 --- /dev/null +++ b/gui/qpolygon.go @@ -0,0 +1,112 @@ +package gui + +//#include "qpolygon.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QPolygon struct { + core.QVector +} + +type QPolygonITF interface { + core.QVectorITF + QPolygonPTR() *QPolygon +} + +func PointerFromQPolygon(ptr QPolygonITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPolygonPTR().Pointer() + } + return nil +} + +func QPolygonFromPointer(ptr unsafe.Pointer) *QPolygon { + var n = new(QPolygon) + n.SetPointer(ptr) + return n +} + +func (ptr *QPolygon) QPolygonPTR() *QPolygon { + return ptr +} + +func NewQPolygon5(rectangle core.QRectITF, closed bool) *QPolygon { + return QPolygonFromPointer(unsafe.Pointer(C.QPolygon_NewQPolygon5(C.QtObjectPtr(core.PointerFromQRect(rectangle)), C.int(qt.GoBoolToInt(closed))))) +} + +func (ptr *QPolygon) ContainsPoint(point core.QPointITF, fillRule core.Qt__FillRule) bool { + if ptr.Pointer() != nil { + return C.QPolygon_ContainsPoint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(point)), C.int(fillRule)) != 0 + } + return false +} + +func (ptr *QPolygon) PutPoints3(index int, nPoints int, fromPolygon QPolygonITF, fromIndex int) { + if ptr.Pointer() != nil { + C.QPolygon_PutPoints3(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.int(nPoints), C.QtObjectPtr(PointerFromQPolygon(fromPolygon)), C.int(fromIndex)) + } +} + +func NewQPolygon() *QPolygon { + return QPolygonFromPointer(unsafe.Pointer(C.QPolygon_NewQPolygon())) +} + +func NewQPolygon3(polygon QPolygonITF) *QPolygon { + return QPolygonFromPointer(unsafe.Pointer(C.QPolygon_NewQPolygon3(C.QtObjectPtr(PointerFromQPolygon(polygon))))) +} + +func NewQPolygon2(size int) *QPolygon { + return QPolygonFromPointer(unsafe.Pointer(C.QPolygon_NewQPolygon2(C.int(size)))) +} + +func (ptr *QPolygon) Point(index int, x int, y int) { + if ptr.Pointer() != nil { + C.QPolygon_Point(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.int(x), C.int(y)) + } +} + +func (ptr *QPolygon) SetPoint2(index int, point core.QPointITF) { + if ptr.Pointer() != nil { + C.QPolygon_SetPoint2(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.QtObjectPtr(core.PointerFromQPoint(point))) + } +} + +func (ptr *QPolygon) SetPoint(index int, x int, y int) { + if ptr.Pointer() != nil { + C.QPolygon_SetPoint(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.int(x), C.int(y)) + } +} + +func (ptr *QPolygon) SetPoints(nPoints int, points int) { + if ptr.Pointer() != nil { + C.QPolygon_SetPoints(C.QtObjectPtr(ptr.Pointer()), C.int(nPoints), C.int(points)) + } +} + +func (ptr *QPolygon) Swap(other QPolygonITF) { + if ptr.Pointer() != nil { + C.QPolygon_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPolygon(other))) + } +} + +func (ptr *QPolygon) Translate2(offset core.QPointITF) { + if ptr.Pointer() != nil { + C.QPolygon_Translate2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(offset))) + } +} + +func (ptr *QPolygon) Translate(dx int, dy int) { + if ptr.Pointer() != nil { + C.QPolygon_Translate(C.QtObjectPtr(ptr.Pointer()), C.int(dx), C.int(dy)) + } +} + +func (ptr *QPolygon) DestroyQPolygon() { + if ptr.Pointer() != nil { + C.QPolygon_DestroyQPolygon(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qpolygon.h b/gui/qpolygon.h new file mode 100755 index 00000000..33f78809 --- /dev/null +++ b/gui/qpolygon.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QPolygon_NewQPolygon5(QtObjectPtr rectangle, int closed); +int QPolygon_ContainsPoint(QtObjectPtr ptr, QtObjectPtr point, int fillRule); +void QPolygon_PutPoints3(QtObjectPtr ptr, int index, int nPoints, QtObjectPtr fromPolygon, int fromIndex); +QtObjectPtr QPolygon_NewQPolygon(); +QtObjectPtr QPolygon_NewQPolygon3(QtObjectPtr polygon); +QtObjectPtr QPolygon_NewQPolygon2(int size); +void QPolygon_Point(QtObjectPtr ptr, int index, int x, int y); +void QPolygon_SetPoint2(QtObjectPtr ptr, int index, QtObjectPtr point); +void QPolygon_SetPoint(QtObjectPtr ptr, int index, int x, int y); +void QPolygon_SetPoints(QtObjectPtr ptr, int nPoints, int points); +void QPolygon_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QPolygon_Translate2(QtObjectPtr ptr, QtObjectPtr offset); +void QPolygon_Translate(QtObjectPtr ptr, int dx, int dy); +void QPolygon_DestroyQPolygon(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qpolygonf.cpp b/gui/qpolygonf.cpp new file mode 100755 index 00000000..0c2b8494 --- /dev/null +++ b/gui/qpolygonf.cpp @@ -0,0 +1,57 @@ +#include "qpolygonf.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPolygonF: public QPolygonF { +public: +}; + +QtObjectPtr QPolygonF_NewQPolygonF6(QtObjectPtr polygon){ + return new QPolygonF(*static_cast(polygon)); +} + +QtObjectPtr QPolygonF_NewQPolygonF5(QtObjectPtr rectangle){ + return new QPolygonF(*static_cast(rectangle)); +} + +int QPolygonF_ContainsPoint(QtObjectPtr ptr, QtObjectPtr point, int fillRule){ + return static_cast(ptr)->containsPoint(*static_cast(point), static_cast(fillRule)); +} + +QtObjectPtr QPolygonF_NewQPolygonF(){ + return new QPolygonF(); +} + +QtObjectPtr QPolygonF_NewQPolygonF3(QtObjectPtr polygon){ + return new QPolygonF(*static_cast(polygon)); +} + +QtObjectPtr QPolygonF_NewQPolygonF2(int size){ + return new QPolygonF(size); +} + +int QPolygonF_IsClosed(QtObjectPtr ptr){ + return static_cast(ptr)->isClosed(); +} + +void QPolygonF_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QPolygonF_Translate(QtObjectPtr ptr, QtObjectPtr offset){ + static_cast(ptr)->translate(*static_cast(offset)); +} + +void QPolygonF_DestroyQPolygonF(QtObjectPtr ptr){ + static_cast(ptr)->~QPolygonF(); +} + diff --git a/gui/qpolygonf.go b/gui/qpolygonf.go new file mode 100755 index 00000000..5c07f326 --- /dev/null +++ b/gui/qpolygonf.go @@ -0,0 +1,86 @@ +package gui + +//#include "qpolygonf.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QPolygonF struct { + core.QVector +} + +type QPolygonFITF interface { + core.QVectorITF + QPolygonFPTR() *QPolygonF +} + +func PointerFromQPolygonF(ptr QPolygonFITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPolygonFPTR().Pointer() + } + return nil +} + +func QPolygonFFromPointer(ptr unsafe.Pointer) *QPolygonF { + var n = new(QPolygonF) + n.SetPointer(ptr) + return n +} + +func (ptr *QPolygonF) QPolygonFPTR() *QPolygonF { + return ptr +} + +func NewQPolygonF6(polygon QPolygonITF) *QPolygonF { + return QPolygonFFromPointer(unsafe.Pointer(C.QPolygonF_NewQPolygonF6(C.QtObjectPtr(PointerFromQPolygon(polygon))))) +} + +func NewQPolygonF5(rectangle core.QRectFITF) *QPolygonF { + return QPolygonFFromPointer(unsafe.Pointer(C.QPolygonF_NewQPolygonF5(C.QtObjectPtr(core.PointerFromQRectF(rectangle))))) +} + +func (ptr *QPolygonF) ContainsPoint(point core.QPointFITF, fillRule core.Qt__FillRule) bool { + if ptr.Pointer() != nil { + return C.QPolygonF_ContainsPoint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(point)), C.int(fillRule)) != 0 + } + return false +} + +func NewQPolygonF() *QPolygonF { + return QPolygonFFromPointer(unsafe.Pointer(C.QPolygonF_NewQPolygonF())) +} + +func NewQPolygonF3(polygon QPolygonFITF) *QPolygonF { + return QPolygonFFromPointer(unsafe.Pointer(C.QPolygonF_NewQPolygonF3(C.QtObjectPtr(PointerFromQPolygonF(polygon))))) +} + +func NewQPolygonF2(size int) *QPolygonF { + return QPolygonFFromPointer(unsafe.Pointer(C.QPolygonF_NewQPolygonF2(C.int(size)))) +} + +func (ptr *QPolygonF) IsClosed() bool { + if ptr.Pointer() != nil { + return C.QPolygonF_IsClosed(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPolygonF) Swap(other QPolygonFITF) { + if ptr.Pointer() != nil { + C.QPolygonF_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPolygonF(other))) + } +} + +func (ptr *QPolygonF) Translate(offset core.QPointFITF) { + if ptr.Pointer() != nil { + C.QPolygonF_Translate(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(offset))) + } +} + +func (ptr *QPolygonF) DestroyQPolygonF() { + if ptr.Pointer() != nil { + C.QPolygonF_DestroyQPolygonF(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qpolygonf.h b/gui/qpolygonf.h new file mode 100755 index 00000000..82610c2f --- /dev/null +++ b/gui/qpolygonf.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QPolygonF_NewQPolygonF6(QtObjectPtr polygon); +QtObjectPtr QPolygonF_NewQPolygonF5(QtObjectPtr rectangle); +int QPolygonF_ContainsPoint(QtObjectPtr ptr, QtObjectPtr point, int fillRule); +QtObjectPtr QPolygonF_NewQPolygonF(); +QtObjectPtr QPolygonF_NewQPolygonF3(QtObjectPtr polygon); +QtObjectPtr QPolygonF_NewQPolygonF2(int size); +int QPolygonF_IsClosed(QtObjectPtr ptr); +void QPolygonF_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QPolygonF_Translate(QtObjectPtr ptr, QtObjectPtr offset); +void QPolygonF_DestroyQPolygonF(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qquaternion.cpp b/gui/qquaternion.cpp new file mode 100755 index 00000000..72503bc5 --- /dev/null +++ b/gui/qquaternion.cpp @@ -0,0 +1,43 @@ +#include "qquaternion.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQuaternion: public QQuaternion { +public: +}; + +QtObjectPtr QQuaternion_NewQQuaternion(){ + return new QQuaternion(); +} + +QtObjectPtr QQuaternion_NewQQuaternion5(QtObjectPtr vector){ + return new QQuaternion(*static_cast(vector)); +} + +void QQuaternion_GetAxes(QtObjectPtr ptr, QtObjectPtr xAxis, QtObjectPtr yAxis, QtObjectPtr zAxis){ + static_cast(ptr)->getAxes(static_cast(xAxis), static_cast(yAxis), static_cast(zAxis)); +} + +int QQuaternion_IsIdentity(QtObjectPtr ptr){ + return static_cast(ptr)->isIdentity(); +} + +int QQuaternion_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +void QQuaternion_Normalize(QtObjectPtr ptr){ + static_cast(ptr)->normalize(); +} + +void QQuaternion_SetVector(QtObjectPtr ptr, QtObjectPtr vector){ + static_cast(ptr)->setVector(*static_cast(vector)); +} + diff --git a/gui/qquaternion.go b/gui/qquaternion.go new file mode 100755 index 00000000..37b59988 --- /dev/null +++ b/gui/qquaternion.go @@ -0,0 +1,80 @@ +package gui + +//#include "qquaternion.h" +import "C" +import ( + "unsafe" +) + +type QQuaternion struct { + ptr unsafe.Pointer +} + +type QQuaternionITF interface { + QQuaternionPTR() *QQuaternion +} + +func (p *QQuaternion) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QQuaternion) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQQuaternion(ptr QQuaternionITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQuaternionPTR().Pointer() + } + return nil +} + +func QQuaternionFromPointer(ptr unsafe.Pointer) *QQuaternion { + var n = new(QQuaternion) + n.SetPointer(ptr) + return n +} + +func (ptr *QQuaternion) QQuaternionPTR() *QQuaternion { + return ptr +} + +func NewQQuaternion() *QQuaternion { + return QQuaternionFromPointer(unsafe.Pointer(C.QQuaternion_NewQQuaternion())) +} + +func NewQQuaternion5(vector QVector4DITF) *QQuaternion { + return QQuaternionFromPointer(unsafe.Pointer(C.QQuaternion_NewQQuaternion5(C.QtObjectPtr(PointerFromQVector4D(vector))))) +} + +func (ptr *QQuaternion) GetAxes(xAxis QVector3DITF, yAxis QVector3DITF, zAxis QVector3DITF) { + if ptr.Pointer() != nil { + C.QQuaternion_GetAxes(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQVector3D(xAxis)), C.QtObjectPtr(PointerFromQVector3D(yAxis)), C.QtObjectPtr(PointerFromQVector3D(zAxis))) + } +} + +func (ptr *QQuaternion) IsIdentity() bool { + if ptr.Pointer() != nil { + return C.QQuaternion_IsIdentity(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQuaternion) IsNull() bool { + if ptr.Pointer() != nil { + return C.QQuaternion_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQuaternion) Normalize() { + if ptr.Pointer() != nil { + C.QQuaternion_Normalize(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QQuaternion) SetVector(vector QVector3DITF) { + if ptr.Pointer() != nil { + C.QQuaternion_SetVector(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQVector3D(vector))) + } +} diff --git a/gui/qquaternion.h b/gui/qquaternion.h new file mode 100755 index 00000000..acf79d56 --- /dev/null +++ b/gui/qquaternion.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QQuaternion_NewQQuaternion(); +QtObjectPtr QQuaternion_NewQQuaternion5(QtObjectPtr vector); +void QQuaternion_GetAxes(QtObjectPtr ptr, QtObjectPtr xAxis, QtObjectPtr yAxis, QtObjectPtr zAxis); +int QQuaternion_IsIdentity(QtObjectPtr ptr); +int QQuaternion_IsNull(QtObjectPtr ptr); +void QQuaternion_Normalize(QtObjectPtr ptr); +void QQuaternion_SetVector(QtObjectPtr ptr, QtObjectPtr vector); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qradialgradient.cpp b/gui/qradialgradient.cpp new file mode 100755 index 00000000..503dfa1c --- /dev/null +++ b/gui/qradialgradient.cpp @@ -0,0 +1,26 @@ +#include "qradialgradient.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQRadialGradient: public QRadialGradient { +public: +}; + +QtObjectPtr QRadialGradient_NewQRadialGradient(){ + return new QRadialGradient(); +} + +void QRadialGradient_SetCenter(QtObjectPtr ptr, QtObjectPtr center){ + static_cast(ptr)->setCenter(*static_cast(center)); +} + +void QRadialGradient_SetFocalPoint(QtObjectPtr ptr, QtObjectPtr focalPoint){ + static_cast(ptr)->setFocalPoint(*static_cast(focalPoint)); +} + diff --git a/gui/qradialgradient.go b/gui/qradialgradient.go new file mode 100755 index 00000000..e7e9602f --- /dev/null +++ b/gui/qradialgradient.go @@ -0,0 +1,50 @@ +package gui + +//#include "qradialgradient.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QRadialGradient struct { + QGradient +} + +type QRadialGradientITF interface { + QGradientITF + QRadialGradientPTR() *QRadialGradient +} + +func PointerFromQRadialGradient(ptr QRadialGradientITF) unsafe.Pointer { + if ptr != nil { + return ptr.QRadialGradientPTR().Pointer() + } + return nil +} + +func QRadialGradientFromPointer(ptr unsafe.Pointer) *QRadialGradient { + var n = new(QRadialGradient) + n.SetPointer(ptr) + return n +} + +func (ptr *QRadialGradient) QRadialGradientPTR() *QRadialGradient { + return ptr +} + +func NewQRadialGradient() *QRadialGradient { + return QRadialGradientFromPointer(unsafe.Pointer(C.QRadialGradient_NewQRadialGradient())) +} + +func (ptr *QRadialGradient) SetCenter(center core.QPointFITF) { + if ptr.Pointer() != nil { + C.QRadialGradient_SetCenter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(center))) + } +} + +func (ptr *QRadialGradient) SetFocalPoint(focalPoint core.QPointFITF) { + if ptr.Pointer() != nil { + C.QRadialGradient_SetFocalPoint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(focalPoint))) + } +} diff --git a/gui/qradialgradient.h b/gui/qradialgradient.h new file mode 100755 index 00000000..e26407aa --- /dev/null +++ b/gui/qradialgradient.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QRadialGradient_NewQRadialGradient(); +void QRadialGradient_SetCenter(QtObjectPtr ptr, QtObjectPtr center); +void QRadialGradient_SetFocalPoint(QtObjectPtr ptr, QtObjectPtr focalPoint); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qrasterpaintengine.cpp b/gui/qrasterpaintengine.cpp new file mode 100755 index 00000000..89705fee --- /dev/null +++ b/gui/qrasterpaintengine.cpp @@ -0,0 +1,7 @@ +#include "qrasterpaintengine.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/gui/qrasterpaintengine.go b/gui/qrasterpaintengine.go new file mode 100755 index 00000000..f19b4b46 --- /dev/null +++ b/gui/qrasterpaintengine.go @@ -0,0 +1,33 @@ +package gui + +//#include "qrasterpaintengine.h" +import "C" +import ( + "unsafe" +) + +type QRasterPaintEngine struct { + QPaintEngine +} + +type QRasterPaintEngineITF interface { + QPaintEngineITF + QRasterPaintEnginePTR() *QRasterPaintEngine +} + +func PointerFromQRasterPaintEngine(ptr QRasterPaintEngineITF) unsafe.Pointer { + if ptr != nil { + return ptr.QRasterPaintEnginePTR().Pointer() + } + return nil +} + +func QRasterPaintEngineFromPointer(ptr unsafe.Pointer) *QRasterPaintEngine { + var n = new(QRasterPaintEngine) + n.SetPointer(ptr) + return n +} + +func (ptr *QRasterPaintEngine) QRasterPaintEnginePTR() *QRasterPaintEngine { + return ptr +} diff --git a/gui/qrasterpaintengine.h b/gui/qrasterpaintengine.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/gui/qrasterpaintengine.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qrasterwindow.cpp b/gui/qrasterwindow.cpp new file mode 100755 index 00000000..0e9d536a --- /dev/null +++ b/gui/qrasterwindow.cpp @@ -0,0 +1,17 @@ +#include "qrasterwindow.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQRasterWindow: public QRasterWindow { +public: +}; + +QtObjectPtr QRasterWindow_NewQRasterWindow(QtObjectPtr parent){ + return new QRasterWindow(static_cast(parent)); +} + diff --git a/gui/qrasterwindow.go b/gui/qrasterwindow.go new file mode 100755 index 00000000..935d8c35 --- /dev/null +++ b/gui/qrasterwindow.go @@ -0,0 +1,41 @@ +package gui + +//#include "qrasterwindow.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QRasterWindow struct { + QPaintDeviceWindow +} + +type QRasterWindowITF interface { + QPaintDeviceWindowITF + QRasterWindowPTR() *QRasterWindow +} + +func PointerFromQRasterWindow(ptr QRasterWindowITF) unsafe.Pointer { + if ptr != nil { + return ptr.QRasterWindowPTR().Pointer() + } + return nil +} + +func QRasterWindowFromPointer(ptr unsafe.Pointer) *QRasterWindow { + var n = new(QRasterWindow) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QRasterWindow_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QRasterWindow) QRasterWindowPTR() *QRasterWindow { + return ptr +} + +func NewQRasterWindow(parent QWindowITF) *QRasterWindow { + return QRasterWindowFromPointer(unsafe.Pointer(C.QRasterWindow_NewQRasterWindow(C.QtObjectPtr(PointerFromQWindow(parent))))) +} diff --git a/gui/qrasterwindow.h b/gui/qrasterwindow.h new file mode 100755 index 00000000..a226a99f --- /dev/null +++ b/gui/qrasterwindow.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QRasterWindow_NewQRasterWindow(QtObjectPtr parent); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qrawfont.cpp b/gui/qrawfont.cpp new file mode 100755 index 00000000..88411f49 --- /dev/null +++ b/gui/qrawfont.cpp @@ -0,0 +1,57 @@ +#include "qrawfont.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQRawFont: public QRawFont { +public: +}; + +QtObjectPtr QRawFont_NewQRawFont(){ + return new QRawFont(); +} + +QtObjectPtr QRawFont_NewQRawFont4(QtObjectPtr other){ + return new QRawFont(*static_cast(other)); +} + +char* QRawFont_FamilyName(QtObjectPtr ptr){ + return static_cast(ptr)->familyName().toUtf8().data(); +} + +int QRawFont_HintingPreference(QtObjectPtr ptr){ + return static_cast(ptr)->hintingPreference(); +} + +int QRawFont_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QRawFont_Style(QtObjectPtr ptr){ + return static_cast(ptr)->style(); +} + +char* QRawFont_StyleName(QtObjectPtr ptr){ + return static_cast(ptr)->styleName().toUtf8().data(); +} + +int QRawFont_SupportsCharacter(QtObjectPtr ptr, QtObjectPtr character){ + return static_cast(ptr)->supportsCharacter(*static_cast(character)); +} + +void QRawFont_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +int QRawFont_Weight(QtObjectPtr ptr){ + return static_cast(ptr)->weight(); +} + +void QRawFont_DestroyQRawFont(QtObjectPtr ptr){ + static_cast(ptr)->~QRawFont(); +} + diff --git a/gui/qrawfont.go b/gui/qrawfont.go new file mode 100755 index 00000000..be4d3a4b --- /dev/null +++ b/gui/qrawfont.go @@ -0,0 +1,127 @@ +package gui + +//#include "qrawfont.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QRawFont struct { + ptr unsafe.Pointer +} + +type QRawFontITF interface { + QRawFontPTR() *QRawFont +} + +func (p *QRawFont) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QRawFont) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQRawFont(ptr QRawFontITF) unsafe.Pointer { + if ptr != nil { + return ptr.QRawFontPTR().Pointer() + } + return nil +} + +func QRawFontFromPointer(ptr unsafe.Pointer) *QRawFont { + var n = new(QRawFont) + n.SetPointer(ptr) + return n +} + +func (ptr *QRawFont) QRawFontPTR() *QRawFont { + return ptr +} + +//QRawFont::AntialiasingType +type QRawFont__AntialiasingType int + +var ( + QRawFont__PixelAntialiasing = QRawFont__AntialiasingType(0) + QRawFont__SubPixelAntialiasing = QRawFont__AntialiasingType(1) +) + +//QRawFont::LayoutFlag +type QRawFont__LayoutFlag int + +var ( + QRawFont__SeparateAdvances = QRawFont__LayoutFlag(0) + QRawFont__KernedAdvances = QRawFont__LayoutFlag(1) + QRawFont__UseDesignMetrics = QRawFont__LayoutFlag(2) +) + +func NewQRawFont() *QRawFont { + return QRawFontFromPointer(unsafe.Pointer(C.QRawFont_NewQRawFont())) +} + +func NewQRawFont4(other QRawFontITF) *QRawFont { + return QRawFontFromPointer(unsafe.Pointer(C.QRawFont_NewQRawFont4(C.QtObjectPtr(PointerFromQRawFont(other))))) +} + +func (ptr *QRawFont) FamilyName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QRawFont_FamilyName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QRawFont) HintingPreference() QFont__HintingPreference { + if ptr.Pointer() != nil { + return QFont__HintingPreference(C.QRawFont_HintingPreference(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRawFont) IsValid() bool { + if ptr.Pointer() != nil { + return C.QRawFont_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRawFont) Style() QFont__Style { + if ptr.Pointer() != nil { + return QFont__Style(C.QRawFont_Style(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRawFont) StyleName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QRawFont_StyleName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QRawFont) SupportsCharacter(character core.QCharITF) bool { + if ptr.Pointer() != nil { + return C.QRawFont_SupportsCharacter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQChar(character))) != 0 + } + return false +} + +func (ptr *QRawFont) Swap(other QRawFontITF) { + if ptr.Pointer() != nil { + C.QRawFont_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQRawFont(other))) + } +} + +func (ptr *QRawFont) Weight() int { + if ptr.Pointer() != nil { + return int(C.QRawFont_Weight(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRawFont) DestroyQRawFont() { + if ptr.Pointer() != nil { + C.QRawFont_DestroyQRawFont(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qrawfont.h b/gui/qrawfont.h new file mode 100755 index 00000000..d4bd19a6 --- /dev/null +++ b/gui/qrawfont.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QRawFont_NewQRawFont(); +QtObjectPtr QRawFont_NewQRawFont4(QtObjectPtr other); +char* QRawFont_FamilyName(QtObjectPtr ptr); +int QRawFont_HintingPreference(QtObjectPtr ptr); +int QRawFont_IsValid(QtObjectPtr ptr); +int QRawFont_Style(QtObjectPtr ptr); +char* QRawFont_StyleName(QtObjectPtr ptr); +int QRawFont_SupportsCharacter(QtObjectPtr ptr, QtObjectPtr character); +void QRawFont_Swap(QtObjectPtr ptr, QtObjectPtr other); +int QRawFont_Weight(QtObjectPtr ptr); +void QRawFont_DestroyQRawFont(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qregexpvalidator.cpp b/gui/qregexpvalidator.cpp new file mode 100755 index 00000000..814082e3 --- /dev/null +++ b/gui/qregexpvalidator.cpp @@ -0,0 +1,30 @@ +#include "qregexpvalidator.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQRegExpValidator: public QRegExpValidator { +public: +}; + +void QRegExpValidator_SetRegExp(QtObjectPtr ptr, QtObjectPtr rx){ + static_cast(ptr)->setRegExp(*static_cast(rx)); +} + +QtObjectPtr QRegExpValidator_NewQRegExpValidator(QtObjectPtr parent){ + return new QRegExpValidator(static_cast(parent)); +} + +QtObjectPtr QRegExpValidator_NewQRegExpValidator2(QtObjectPtr rx, QtObjectPtr parent){ + return new QRegExpValidator(*static_cast(rx), static_cast(parent)); +} + +void QRegExpValidator_DestroyQRegExpValidator(QtObjectPtr ptr){ + static_cast(ptr)->~QRegExpValidator(); +} + diff --git a/gui/qregexpvalidator.go b/gui/qregexpvalidator.go new file mode 100755 index 00000000..ebb50f3b --- /dev/null +++ b/gui/qregexpvalidator.go @@ -0,0 +1,59 @@ +package gui + +//#include "qregexpvalidator.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QRegExpValidator struct { + QValidator +} + +type QRegExpValidatorITF interface { + QValidatorITF + QRegExpValidatorPTR() *QRegExpValidator +} + +func PointerFromQRegExpValidator(ptr QRegExpValidatorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QRegExpValidatorPTR().Pointer() + } + return nil +} + +func QRegExpValidatorFromPointer(ptr unsafe.Pointer) *QRegExpValidator { + var n = new(QRegExpValidator) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QRegExpValidator_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QRegExpValidator) QRegExpValidatorPTR() *QRegExpValidator { + return ptr +} + +func (ptr *QRegExpValidator) SetRegExp(rx core.QRegExpITF) { + if ptr.Pointer() != nil { + C.QRegExpValidator_SetRegExp(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRegExp(rx))) + } +} + +func NewQRegExpValidator(parent core.QObjectITF) *QRegExpValidator { + return QRegExpValidatorFromPointer(unsafe.Pointer(C.QRegExpValidator_NewQRegExpValidator(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQRegExpValidator2(rx core.QRegExpITF, parent core.QObjectITF) *QRegExpValidator { + return QRegExpValidatorFromPointer(unsafe.Pointer(C.QRegExpValidator_NewQRegExpValidator2(C.QtObjectPtr(core.PointerFromQRegExp(rx)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QRegExpValidator) DestroyQRegExpValidator() { + if ptr.Pointer() != nil { + C.QRegExpValidator_DestroyQRegExpValidator(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/gui/qregexpvalidator.h b/gui/qregexpvalidator.h new file mode 100755 index 00000000..199625c4 --- /dev/null +++ b/gui/qregexpvalidator.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QRegExpValidator_SetRegExp(QtObjectPtr ptr, QtObjectPtr rx); +QtObjectPtr QRegExpValidator_NewQRegExpValidator(QtObjectPtr parent); +QtObjectPtr QRegExpValidator_NewQRegExpValidator2(QtObjectPtr rx, QtObjectPtr parent); +void QRegExpValidator_DestroyQRegExpValidator(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qregion.cpp b/gui/qregion.cpp new file mode 100755 index 00000000..10562f4a --- /dev/null +++ b/gui/qregion.cpp @@ -0,0 +1,84 @@ +#include "qregion.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQRegion: public QRegion { +public: +}; + +QtObjectPtr QRegion_NewQRegion(){ + return new QRegion(); +} + +QtObjectPtr QRegion_NewQRegion5(QtObjectPtr bm){ + return new QRegion(*static_cast(bm)); +} + +QtObjectPtr QRegion_NewQRegion3(QtObjectPtr a, int fillRule){ + return new QRegion(*static_cast(a), static_cast(fillRule)); +} + +QtObjectPtr QRegion_NewQRegion6(QtObjectPtr r, int t){ + return new QRegion(*static_cast(r), static_cast(t)); +} + +QtObjectPtr QRegion_NewQRegion4(QtObjectPtr r){ + return new QRegion(*static_cast(r)); +} + +int QRegion_Contains(QtObjectPtr ptr, QtObjectPtr p){ + return static_cast(ptr)->contains(*static_cast(p)); +} + +int QRegion_Contains2(QtObjectPtr ptr, QtObjectPtr r){ + return static_cast(ptr)->contains(*static_cast(r)); +} + +int QRegion_Intersects2(QtObjectPtr ptr, QtObjectPtr rect){ + return static_cast(ptr)->intersects(*static_cast(rect)); +} + +int QRegion_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +int QRegion_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QRegion_RectCount(QtObjectPtr ptr){ + return static_cast(ptr)->rectCount(); +} + +void QRegion_SetRects(QtObjectPtr ptr, QtObjectPtr rects, int number){ + static_cast(ptr)->setRects(static_cast(rects), number); +} + +void QRegion_Translate(QtObjectPtr ptr, int dx, int dy){ + static_cast(ptr)->translate(dx, dy); +} + +QtObjectPtr QRegion_NewQRegion2(int x, int y, int w, int h, int t){ + return new QRegion(x, y, w, h, static_cast(t)); +} + +int QRegion_Intersects(QtObjectPtr ptr, QtObjectPtr region){ + return static_cast(ptr)->intersects(*static_cast(region)); +} + +void QRegion_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QRegion_Translate2(QtObjectPtr ptr, QtObjectPtr point){ + static_cast(ptr)->translate(*static_cast(point)); +} + diff --git a/gui/qregion.go b/gui/qregion.go new file mode 100755 index 00000000..0b5bd3c1 --- /dev/null +++ b/gui/qregion.go @@ -0,0 +1,146 @@ +package gui + +//#include "qregion.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QRegion struct { + ptr unsafe.Pointer +} + +type QRegionITF interface { + QRegionPTR() *QRegion +} + +func (p *QRegion) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QRegion) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQRegion(ptr QRegionITF) unsafe.Pointer { + if ptr != nil { + return ptr.QRegionPTR().Pointer() + } + return nil +} + +func QRegionFromPointer(ptr unsafe.Pointer) *QRegion { + var n = new(QRegion) + n.SetPointer(ptr) + return n +} + +func (ptr *QRegion) QRegionPTR() *QRegion { + return ptr +} + +//QRegion::RegionType +type QRegion__RegionType int + +var ( + QRegion__Rectangle = QRegion__RegionType(0) + QRegion__Ellipse = QRegion__RegionType(1) +) + +func NewQRegion() *QRegion { + return QRegionFromPointer(unsafe.Pointer(C.QRegion_NewQRegion())) +} + +func NewQRegion5(bm QBitmapITF) *QRegion { + return QRegionFromPointer(unsafe.Pointer(C.QRegion_NewQRegion5(C.QtObjectPtr(PointerFromQBitmap(bm))))) +} + +func NewQRegion3(a QPolygonITF, fillRule core.Qt__FillRule) *QRegion { + return QRegionFromPointer(unsafe.Pointer(C.QRegion_NewQRegion3(C.QtObjectPtr(PointerFromQPolygon(a)), C.int(fillRule)))) +} + +func NewQRegion6(r core.QRectITF, t QRegion__RegionType) *QRegion { + return QRegionFromPointer(unsafe.Pointer(C.QRegion_NewQRegion6(C.QtObjectPtr(core.PointerFromQRect(r)), C.int(t)))) +} + +func NewQRegion4(r QRegionITF) *QRegion { + return QRegionFromPointer(unsafe.Pointer(C.QRegion_NewQRegion4(C.QtObjectPtr(PointerFromQRegion(r))))) +} + +func (ptr *QRegion) Contains(p core.QPointITF) bool { + if ptr.Pointer() != nil { + return C.QRegion_Contains(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(p))) != 0 + } + return false +} + +func (ptr *QRegion) Contains2(r core.QRectITF) bool { + if ptr.Pointer() != nil { + return C.QRegion_Contains2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(r))) != 0 + } + return false +} + +func (ptr *QRegion) Intersects2(rect core.QRectITF) bool { + if ptr.Pointer() != nil { + return C.QRegion_Intersects2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rect))) != 0 + } + return false +} + +func (ptr *QRegion) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QRegion_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRegion) IsNull() bool { + if ptr.Pointer() != nil { + return C.QRegion_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRegion) RectCount() int { + if ptr.Pointer() != nil { + return int(C.QRegion_RectCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRegion) SetRects(rects core.QRectITF, number int) { + if ptr.Pointer() != nil { + C.QRegion_SetRects(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rects)), C.int(number)) + } +} + +func (ptr *QRegion) Translate(dx int, dy int) { + if ptr.Pointer() != nil { + C.QRegion_Translate(C.QtObjectPtr(ptr.Pointer()), C.int(dx), C.int(dy)) + } +} + +func NewQRegion2(x int, y int, w int, h int, t QRegion__RegionType) *QRegion { + return QRegionFromPointer(unsafe.Pointer(C.QRegion_NewQRegion2(C.int(x), C.int(y), C.int(w), C.int(h), C.int(t)))) +} + +func (ptr *QRegion) Intersects(region QRegionITF) bool { + if ptr.Pointer() != nil { + return C.QRegion_Intersects(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQRegion(region))) != 0 + } + return false +} + +func (ptr *QRegion) Swap(other QRegionITF) { + if ptr.Pointer() != nil { + C.QRegion_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQRegion(other))) + } +} + +func (ptr *QRegion) Translate2(point core.QPointITF) { + if ptr.Pointer() != nil { + C.QRegion_Translate2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(point))) + } +} diff --git a/gui/qregion.h b/gui/qregion.h new file mode 100755 index 00000000..2bf2f66a --- /dev/null +++ b/gui/qregion.h @@ -0,0 +1,26 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QRegion_NewQRegion(); +QtObjectPtr QRegion_NewQRegion5(QtObjectPtr bm); +QtObjectPtr QRegion_NewQRegion3(QtObjectPtr a, int fillRule); +QtObjectPtr QRegion_NewQRegion6(QtObjectPtr r, int t); +QtObjectPtr QRegion_NewQRegion4(QtObjectPtr r); +int QRegion_Contains(QtObjectPtr ptr, QtObjectPtr p); +int QRegion_Contains2(QtObjectPtr ptr, QtObjectPtr r); +int QRegion_Intersects2(QtObjectPtr ptr, QtObjectPtr rect); +int QRegion_IsEmpty(QtObjectPtr ptr); +int QRegion_IsNull(QtObjectPtr ptr); +int QRegion_RectCount(QtObjectPtr ptr); +void QRegion_SetRects(QtObjectPtr ptr, QtObjectPtr rects, int number); +void QRegion_Translate(QtObjectPtr ptr, int dx, int dy); +QtObjectPtr QRegion_NewQRegion2(int x, int y, int w, int h, int t); +int QRegion_Intersects(QtObjectPtr ptr, QtObjectPtr region); +void QRegion_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QRegion_Translate2(QtObjectPtr ptr, QtObjectPtr point); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qregularexpressionvalidator.cpp b/gui/qregularexpressionvalidator.cpp new file mode 100755 index 00000000..09b31f51 --- /dev/null +++ b/gui/qregularexpressionvalidator.cpp @@ -0,0 +1,31 @@ +#include "qregularexpressionvalidator.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQRegularExpressionValidator: public QRegularExpressionValidator { +public: +}; + +void QRegularExpressionValidator_SetRegularExpression(QtObjectPtr ptr, QtObjectPtr re){ + QMetaObject::invokeMethod(static_cast(ptr), "setRegularExpression", Q_ARG(QRegularExpression, *static_cast(re))); +} + +QtObjectPtr QRegularExpressionValidator_NewQRegularExpressionValidator(QtObjectPtr parent){ + return new QRegularExpressionValidator(static_cast(parent)); +} + +QtObjectPtr QRegularExpressionValidator_NewQRegularExpressionValidator2(QtObjectPtr re, QtObjectPtr parent){ + return new QRegularExpressionValidator(*static_cast(re), static_cast(parent)); +} + +void QRegularExpressionValidator_DestroyQRegularExpressionValidator(QtObjectPtr ptr){ + static_cast(ptr)->~QRegularExpressionValidator(); +} + diff --git a/gui/qregularexpressionvalidator.go b/gui/qregularexpressionvalidator.go new file mode 100755 index 00000000..cc01184d --- /dev/null +++ b/gui/qregularexpressionvalidator.go @@ -0,0 +1,59 @@ +package gui + +//#include "qregularexpressionvalidator.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QRegularExpressionValidator struct { + QValidator +} + +type QRegularExpressionValidatorITF interface { + QValidatorITF + QRegularExpressionValidatorPTR() *QRegularExpressionValidator +} + +func PointerFromQRegularExpressionValidator(ptr QRegularExpressionValidatorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QRegularExpressionValidatorPTR().Pointer() + } + return nil +} + +func QRegularExpressionValidatorFromPointer(ptr unsafe.Pointer) *QRegularExpressionValidator { + var n = new(QRegularExpressionValidator) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QRegularExpressionValidator_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QRegularExpressionValidator) QRegularExpressionValidatorPTR() *QRegularExpressionValidator { + return ptr +} + +func (ptr *QRegularExpressionValidator) SetRegularExpression(re core.QRegularExpressionITF) { + if ptr.Pointer() != nil { + C.QRegularExpressionValidator_SetRegularExpression(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRegularExpression(re))) + } +} + +func NewQRegularExpressionValidator(parent core.QObjectITF) *QRegularExpressionValidator { + return QRegularExpressionValidatorFromPointer(unsafe.Pointer(C.QRegularExpressionValidator_NewQRegularExpressionValidator(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQRegularExpressionValidator2(re core.QRegularExpressionITF, parent core.QObjectITF) *QRegularExpressionValidator { + return QRegularExpressionValidatorFromPointer(unsafe.Pointer(C.QRegularExpressionValidator_NewQRegularExpressionValidator2(C.QtObjectPtr(core.PointerFromQRegularExpression(re)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QRegularExpressionValidator) DestroyQRegularExpressionValidator() { + if ptr.Pointer() != nil { + C.QRegularExpressionValidator_DestroyQRegularExpressionValidator(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/gui/qregularexpressionvalidator.h b/gui/qregularexpressionvalidator.h new file mode 100755 index 00000000..dbc8d7c2 --- /dev/null +++ b/gui/qregularexpressionvalidator.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QRegularExpressionValidator_SetRegularExpression(QtObjectPtr ptr, QtObjectPtr re); +QtObjectPtr QRegularExpressionValidator_NewQRegularExpressionValidator(QtObjectPtr parent); +QtObjectPtr QRegularExpressionValidator_NewQRegularExpressionValidator2(QtObjectPtr re, QtObjectPtr parent); +void QRegularExpressionValidator_DestroyQRegularExpressionValidator(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qresizeevent.cpp b/gui/qresizeevent.cpp new file mode 100755 index 00000000..4f6d0043 --- /dev/null +++ b/gui/qresizeevent.cpp @@ -0,0 +1,17 @@ +#include "qresizeevent.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQResizeEvent: public QResizeEvent { +public: +}; + +QtObjectPtr QResizeEvent_NewQResizeEvent(QtObjectPtr size, QtObjectPtr oldSize){ + return new QResizeEvent(*static_cast(size), *static_cast(oldSize)); +} + diff --git a/gui/qresizeevent.go b/gui/qresizeevent.go new file mode 100755 index 00000000..c6d7fdb5 --- /dev/null +++ b/gui/qresizeevent.go @@ -0,0 +1,38 @@ +package gui + +//#include "qresizeevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QResizeEvent struct { + core.QEvent +} + +type QResizeEventITF interface { + core.QEventITF + QResizeEventPTR() *QResizeEvent +} + +func PointerFromQResizeEvent(ptr QResizeEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QResizeEventPTR().Pointer() + } + return nil +} + +func QResizeEventFromPointer(ptr unsafe.Pointer) *QResizeEvent { + var n = new(QResizeEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QResizeEvent) QResizeEventPTR() *QResizeEvent { + return ptr +} + +func NewQResizeEvent(size core.QSizeITF, oldSize core.QSizeITF) *QResizeEvent { + return QResizeEventFromPointer(unsafe.Pointer(C.QResizeEvent_NewQResizeEvent(C.QtObjectPtr(core.PointerFromQSize(size)), C.QtObjectPtr(core.PointerFromQSize(oldSize))))) +} diff --git a/gui/qresizeevent.h b/gui/qresizeevent.h new file mode 100755 index 00000000..1489cd19 --- /dev/null +++ b/gui/qresizeevent.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QResizeEvent_NewQResizeEvent(QtObjectPtr size, QtObjectPtr oldSize); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qscreen.cpp b/gui/qscreen.cpp new file mode 100755 index 00000000..80465991 --- /dev/null +++ b/gui/qscreen.cpp @@ -0,0 +1,75 @@ +#include "qscreen.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQScreen: public QScreen { +public: +void Signal_OrientationChanged(Qt::ScreenOrientation orientation){callbackQScreenOrientationChanged(this->objectName().toUtf8().data(), orientation);}; +void Signal_PrimaryOrientationChanged(Qt::ScreenOrientation orientation){callbackQScreenPrimaryOrientationChanged(this->objectName().toUtf8().data(), orientation);}; +}; + +int QScreen_Depth(QtObjectPtr ptr){ + return static_cast(ptr)->depth(); +} + +char* QScreen_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +int QScreen_NativeOrientation(QtObjectPtr ptr){ + return static_cast(ptr)->nativeOrientation(); +} + +int QScreen_Orientation(QtObjectPtr ptr){ + return static_cast(ptr)->orientation(); +} + +int QScreen_PrimaryOrientation(QtObjectPtr ptr){ + return static_cast(ptr)->primaryOrientation(); +} + +int QScreen_AngleBetween(QtObjectPtr ptr, int a, int b){ + return static_cast(ptr)->angleBetween(static_cast(a), static_cast(b)); +} + +int QScreen_IsLandscape(QtObjectPtr ptr, int o){ + return static_cast(ptr)->isLandscape(static_cast(o)); +} + +int QScreen_IsPortrait(QtObjectPtr ptr, int o){ + return static_cast(ptr)->isPortrait(static_cast(o)); +} + +void QScreen_ConnectOrientationChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QScreen::orientationChanged), static_cast(ptr), static_cast(&MyQScreen::Signal_OrientationChanged));; +} + +void QScreen_DisconnectOrientationChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QScreen::orientationChanged), static_cast(ptr), static_cast(&MyQScreen::Signal_OrientationChanged));; +} + +int QScreen_OrientationUpdateMask(QtObjectPtr ptr){ + return static_cast(ptr)->orientationUpdateMask(); +} + +void QScreen_ConnectPrimaryOrientationChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QScreen::primaryOrientationChanged), static_cast(ptr), static_cast(&MyQScreen::Signal_PrimaryOrientationChanged));; +} + +void QScreen_DisconnectPrimaryOrientationChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QScreen::primaryOrientationChanged), static_cast(ptr), static_cast(&MyQScreen::Signal_PrimaryOrientationChanged));; +} + +void QScreen_SetOrientationUpdateMask(QtObjectPtr ptr, int mask){ + static_cast(ptr)->setOrientationUpdateMask(static_cast(mask)); +} + +void QScreen_DestroyQScreen(QtObjectPtr ptr){ + static_cast(ptr)->~QScreen(); +} + diff --git a/gui/qscreen.go b/gui/qscreen.go new file mode 100755 index 00000000..98769435 --- /dev/null +++ b/gui/qscreen.go @@ -0,0 +1,152 @@ +package gui + +//#include "qscreen.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QScreen struct { + core.QObject +} + +type QScreenITF interface { + core.QObjectITF + QScreenPTR() *QScreen +} + +func PointerFromQScreen(ptr QScreenITF) unsafe.Pointer { + if ptr != nil { + return ptr.QScreenPTR().Pointer() + } + return nil +} + +func QScreenFromPointer(ptr unsafe.Pointer) *QScreen { + var n = new(QScreen) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QScreen_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QScreen) QScreenPTR() *QScreen { + return ptr +} + +func (ptr *QScreen) Depth() int { + if ptr.Pointer() != nil { + return int(C.QScreen_Depth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QScreen) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QScreen_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QScreen) NativeOrientation() core.Qt__ScreenOrientation { + if ptr.Pointer() != nil { + return core.Qt__ScreenOrientation(C.QScreen_NativeOrientation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QScreen) Orientation() core.Qt__ScreenOrientation { + if ptr.Pointer() != nil { + return core.Qt__ScreenOrientation(C.QScreen_Orientation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QScreen) PrimaryOrientation() core.Qt__ScreenOrientation { + if ptr.Pointer() != nil { + return core.Qt__ScreenOrientation(C.QScreen_PrimaryOrientation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QScreen) AngleBetween(a core.Qt__ScreenOrientation, b core.Qt__ScreenOrientation) int { + if ptr.Pointer() != nil { + return int(C.QScreen_AngleBetween(C.QtObjectPtr(ptr.Pointer()), C.int(a), C.int(b))) + } + return 0 +} + +func (ptr *QScreen) IsLandscape(o core.Qt__ScreenOrientation) bool { + if ptr.Pointer() != nil { + return C.QScreen_IsLandscape(C.QtObjectPtr(ptr.Pointer()), C.int(o)) != 0 + } + return false +} + +func (ptr *QScreen) IsPortrait(o core.Qt__ScreenOrientation) bool { + if ptr.Pointer() != nil { + return C.QScreen_IsPortrait(C.QtObjectPtr(ptr.Pointer()), C.int(o)) != 0 + } + return false +} + +func (ptr *QScreen) ConnectOrientationChanged(f func(orientation core.Qt__ScreenOrientation)) { + if ptr.Pointer() != nil { + C.QScreen_ConnectOrientationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "orientationChanged", f) + } +} + +func (ptr *QScreen) DisconnectOrientationChanged() { + if ptr.Pointer() != nil { + C.QScreen_DisconnectOrientationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "orientationChanged") + } +} + +//export callbackQScreenOrientationChanged +func callbackQScreenOrientationChanged(ptrName *C.char, orientation C.int) { + qt.GetSignal(C.GoString(ptrName), "orientationChanged").(func(core.Qt__ScreenOrientation))(core.Qt__ScreenOrientation(orientation)) +} + +func (ptr *QScreen) OrientationUpdateMask() core.Qt__ScreenOrientation { + if ptr.Pointer() != nil { + return core.Qt__ScreenOrientation(C.QScreen_OrientationUpdateMask(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QScreen) ConnectPrimaryOrientationChanged(f func(orientation core.Qt__ScreenOrientation)) { + if ptr.Pointer() != nil { + C.QScreen_ConnectPrimaryOrientationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "primaryOrientationChanged", f) + } +} + +func (ptr *QScreen) DisconnectPrimaryOrientationChanged() { + if ptr.Pointer() != nil { + C.QScreen_DisconnectPrimaryOrientationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "primaryOrientationChanged") + } +} + +//export callbackQScreenPrimaryOrientationChanged +func callbackQScreenPrimaryOrientationChanged(ptrName *C.char, orientation C.int) { + qt.GetSignal(C.GoString(ptrName), "primaryOrientationChanged").(func(core.Qt__ScreenOrientation))(core.Qt__ScreenOrientation(orientation)) +} + +func (ptr *QScreen) SetOrientationUpdateMask(mask core.Qt__ScreenOrientation) { + if ptr.Pointer() != nil { + C.QScreen_SetOrientationUpdateMask(C.QtObjectPtr(ptr.Pointer()), C.int(mask)) + } +} + +func (ptr *QScreen) DestroyQScreen() { + if ptr.Pointer() != nil { + C.QScreen_DestroyQScreen(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/gui/qscreen.h b/gui/qscreen.h new file mode 100755 index 00000000..59f5177d --- /dev/null +++ b/gui/qscreen.h @@ -0,0 +1,24 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QScreen_Depth(QtObjectPtr ptr); +char* QScreen_Name(QtObjectPtr ptr); +int QScreen_NativeOrientation(QtObjectPtr ptr); +int QScreen_Orientation(QtObjectPtr ptr); +int QScreen_PrimaryOrientation(QtObjectPtr ptr); +int QScreen_AngleBetween(QtObjectPtr ptr, int a, int b); +int QScreen_IsLandscape(QtObjectPtr ptr, int o); +int QScreen_IsPortrait(QtObjectPtr ptr, int o); +void QScreen_ConnectOrientationChanged(QtObjectPtr ptr); +void QScreen_DisconnectOrientationChanged(QtObjectPtr ptr); +int QScreen_OrientationUpdateMask(QtObjectPtr ptr); +void QScreen_ConnectPrimaryOrientationChanged(QtObjectPtr ptr); +void QScreen_DisconnectPrimaryOrientationChanged(QtObjectPtr ptr); +void QScreen_SetOrientationUpdateMask(QtObjectPtr ptr, int mask); +void QScreen_DestroyQScreen(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qscrollevent.cpp b/gui/qscrollevent.cpp new file mode 100755 index 00000000..bf3e974e --- /dev/null +++ b/gui/qscrollevent.cpp @@ -0,0 +1,26 @@ +#include "qscrollevent.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQScrollEvent: public QScrollEvent { +public: +}; + +QtObjectPtr QScrollEvent_NewQScrollEvent(QtObjectPtr contentPos, QtObjectPtr overshootDistance, int scrollState){ + return new QScrollEvent(*static_cast(contentPos), *static_cast(overshootDistance), static_cast(scrollState)); +} + +int QScrollEvent_ScrollState(QtObjectPtr ptr){ + return static_cast(ptr)->scrollState(); +} + +void QScrollEvent_DestroyQScrollEvent(QtObjectPtr ptr){ + static_cast(ptr)->~QScrollEvent(); +} + diff --git a/gui/qscrollevent.go b/gui/qscrollevent.go new file mode 100755 index 00000000..06fd16ef --- /dev/null +++ b/gui/qscrollevent.go @@ -0,0 +1,60 @@ +package gui + +//#include "qscrollevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QScrollEvent struct { + core.QEvent +} + +type QScrollEventITF interface { + core.QEventITF + QScrollEventPTR() *QScrollEvent +} + +func PointerFromQScrollEvent(ptr QScrollEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QScrollEventPTR().Pointer() + } + return nil +} + +func QScrollEventFromPointer(ptr unsafe.Pointer) *QScrollEvent { + var n = new(QScrollEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QScrollEvent) QScrollEventPTR() *QScrollEvent { + return ptr +} + +//QScrollEvent::ScrollState +type QScrollEvent__ScrollState int + +var ( + QScrollEvent__ScrollStarted = QScrollEvent__ScrollState(0) + QScrollEvent__ScrollUpdated = QScrollEvent__ScrollState(1) + QScrollEvent__ScrollFinished = QScrollEvent__ScrollState(2) +) + +func NewQScrollEvent(contentPos core.QPointFITF, overshootDistance core.QPointFITF, scrollState QScrollEvent__ScrollState) *QScrollEvent { + return QScrollEventFromPointer(unsafe.Pointer(C.QScrollEvent_NewQScrollEvent(C.QtObjectPtr(core.PointerFromQPointF(contentPos)), C.QtObjectPtr(core.PointerFromQPointF(overshootDistance)), C.int(scrollState)))) +} + +func (ptr *QScrollEvent) ScrollState() QScrollEvent__ScrollState { + if ptr.Pointer() != nil { + return QScrollEvent__ScrollState(C.QScrollEvent_ScrollState(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QScrollEvent) DestroyQScrollEvent() { + if ptr.Pointer() != nil { + C.QScrollEvent_DestroyQScrollEvent(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qscrollevent.h b/gui/qscrollevent.h new file mode 100755 index 00000000..f39d25ff --- /dev/null +++ b/gui/qscrollevent.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QScrollEvent_NewQScrollEvent(QtObjectPtr contentPos, QtObjectPtr overshootDistance, int scrollState); +int QScrollEvent_ScrollState(QtObjectPtr ptr); +void QScrollEvent_DestroyQScrollEvent(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qscrollprepareevent.cpp b/gui/qscrollprepareevent.cpp new file mode 100755 index 00000000..82d34af5 --- /dev/null +++ b/gui/qscrollprepareevent.cpp @@ -0,0 +1,38 @@ +#include "qscrollprepareevent.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQScrollPrepareEvent: public QScrollPrepareEvent { +public: +}; + +QtObjectPtr QScrollPrepareEvent_NewQScrollPrepareEvent(QtObjectPtr startPos){ + return new QScrollPrepareEvent(*static_cast(startPos)); +} + +void QScrollPrepareEvent_SetContentPos(QtObjectPtr ptr, QtObjectPtr pos){ + static_cast(ptr)->setContentPos(*static_cast(pos)); +} + +void QScrollPrepareEvent_SetContentPosRange(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->setContentPosRange(*static_cast(rect)); +} + +void QScrollPrepareEvent_SetViewportSize(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->setViewportSize(*static_cast(size)); +} + +void QScrollPrepareEvent_DestroyQScrollPrepareEvent(QtObjectPtr ptr){ + static_cast(ptr)->~QScrollPrepareEvent(); +} + diff --git a/gui/qscrollprepareevent.go b/gui/qscrollprepareevent.go new file mode 100755 index 00000000..6fbb57e0 --- /dev/null +++ b/gui/qscrollprepareevent.go @@ -0,0 +1,62 @@ +package gui + +//#include "qscrollprepareevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QScrollPrepareEvent struct { + core.QEvent +} + +type QScrollPrepareEventITF interface { + core.QEventITF + QScrollPrepareEventPTR() *QScrollPrepareEvent +} + +func PointerFromQScrollPrepareEvent(ptr QScrollPrepareEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QScrollPrepareEventPTR().Pointer() + } + return nil +} + +func QScrollPrepareEventFromPointer(ptr unsafe.Pointer) *QScrollPrepareEvent { + var n = new(QScrollPrepareEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QScrollPrepareEvent) QScrollPrepareEventPTR() *QScrollPrepareEvent { + return ptr +} + +func NewQScrollPrepareEvent(startPos core.QPointFITF) *QScrollPrepareEvent { + return QScrollPrepareEventFromPointer(unsafe.Pointer(C.QScrollPrepareEvent_NewQScrollPrepareEvent(C.QtObjectPtr(core.PointerFromQPointF(startPos))))) +} + +func (ptr *QScrollPrepareEvent) SetContentPos(pos core.QPointFITF) { + if ptr.Pointer() != nil { + C.QScrollPrepareEvent_SetContentPos(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(pos))) + } +} + +func (ptr *QScrollPrepareEvent) SetContentPosRange(rect core.QRectFITF) { + if ptr.Pointer() != nil { + C.QScrollPrepareEvent_SetContentPosRange(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rect))) + } +} + +func (ptr *QScrollPrepareEvent) SetViewportSize(size core.QSizeFITF) { + if ptr.Pointer() != nil { + C.QScrollPrepareEvent_SetViewportSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSizeF(size))) + } +} + +func (ptr *QScrollPrepareEvent) DestroyQScrollPrepareEvent() { + if ptr.Pointer() != nil { + C.QScrollPrepareEvent_DestroyQScrollPrepareEvent(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qscrollprepareevent.h b/gui/qscrollprepareevent.h new file mode 100755 index 00000000..e1e95227 --- /dev/null +++ b/gui/qscrollprepareevent.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QScrollPrepareEvent_NewQScrollPrepareEvent(QtObjectPtr startPos); +void QScrollPrepareEvent_SetContentPos(QtObjectPtr ptr, QtObjectPtr pos); +void QScrollPrepareEvent_SetContentPosRange(QtObjectPtr ptr, QtObjectPtr rect); +void QScrollPrepareEvent_SetViewportSize(QtObjectPtr ptr, QtObjectPtr size); +void QScrollPrepareEvent_DestroyQScrollPrepareEvent(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qsessionmanager.cpp b/gui/qsessionmanager.cpp new file mode 100755 index 00000000..e3d87ee9 --- /dev/null +++ b/gui/qsessionmanager.cpp @@ -0,0 +1,76 @@ +#include "qsessionmanager.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSessionManager: public QSessionManager { +public: +}; + +int QSessionManager_RestartHint(QtObjectPtr ptr){ + return static_cast(ptr)->restartHint(); +} + +char* QSessionManager_SessionKey(QtObjectPtr ptr){ + return static_cast(ptr)->sessionKey().toUtf8().data(); +} + +int QSessionManager_AllowsErrorInteraction(QtObjectPtr ptr){ + return static_cast(ptr)->allowsErrorInteraction(); +} + +int QSessionManager_AllowsInteraction(QtObjectPtr ptr){ + return static_cast(ptr)->allowsInteraction(); +} + +void QSessionManager_Cancel(QtObjectPtr ptr){ + static_cast(ptr)->cancel(); +} + +char* QSessionManager_DiscardCommand(QtObjectPtr ptr){ + return static_cast(ptr)->discardCommand().join("|").toUtf8().data(); +} + +int QSessionManager_IsPhase2(QtObjectPtr ptr){ + return static_cast(ptr)->isPhase2(); +} + +void QSessionManager_Release(QtObjectPtr ptr){ + static_cast(ptr)->release(); +} + +void QSessionManager_RequestPhase2(QtObjectPtr ptr){ + static_cast(ptr)->requestPhase2(); +} + +char* QSessionManager_RestartCommand(QtObjectPtr ptr){ + return static_cast(ptr)->restartCommand().join("|").toUtf8().data(); +} + +char* QSessionManager_SessionId(QtObjectPtr ptr){ + return static_cast(ptr)->sessionId().toUtf8().data(); +} + +void QSessionManager_SetDiscardCommand(QtObjectPtr ptr, char* command){ + static_cast(ptr)->setDiscardCommand(QString(command).split("|", QString::SkipEmptyParts)); +} + +void QSessionManager_SetManagerProperty2(QtObjectPtr ptr, char* name, char* value){ + static_cast(ptr)->setManagerProperty(QString(name), QString(value)); +} + +void QSessionManager_SetManagerProperty(QtObjectPtr ptr, char* name, char* value){ + static_cast(ptr)->setManagerProperty(QString(name), QString(value).split("|", QString::SkipEmptyParts)); +} + +void QSessionManager_SetRestartCommand(QtObjectPtr ptr, char* command){ + static_cast(ptr)->setRestartCommand(QString(command).split("|", QString::SkipEmptyParts)); +} + +void QSessionManager_SetRestartHint(QtObjectPtr ptr, int hint){ + static_cast(ptr)->setRestartHint(static_cast(hint)); +} + diff --git a/gui/qsessionmanager.go b/gui/qsessionmanager.go new file mode 100755 index 00000000..01248022 --- /dev/null +++ b/gui/qsessionmanager.go @@ -0,0 +1,153 @@ +package gui + +//#include "qsessionmanager.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QSessionManager struct { + core.QObject +} + +type QSessionManagerITF interface { + core.QObjectITF + QSessionManagerPTR() *QSessionManager +} + +func PointerFromQSessionManager(ptr QSessionManagerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSessionManagerPTR().Pointer() + } + return nil +} + +func QSessionManagerFromPointer(ptr unsafe.Pointer) *QSessionManager { + var n = new(QSessionManager) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSessionManager_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSessionManager) QSessionManagerPTR() *QSessionManager { + return ptr +} + +//QSessionManager::RestartHint +type QSessionManager__RestartHint int + +var ( + QSessionManager__RestartIfRunning = QSessionManager__RestartHint(0) + QSessionManager__RestartAnyway = QSessionManager__RestartHint(1) + QSessionManager__RestartImmediately = QSessionManager__RestartHint(2) + QSessionManager__RestartNever = QSessionManager__RestartHint(3) +) + +func (ptr *QSessionManager) RestartHint() QSessionManager__RestartHint { + if ptr.Pointer() != nil { + return QSessionManager__RestartHint(C.QSessionManager_RestartHint(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSessionManager) SessionKey() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSessionManager_SessionKey(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSessionManager) AllowsErrorInteraction() bool { + if ptr.Pointer() != nil { + return C.QSessionManager_AllowsErrorInteraction(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSessionManager) AllowsInteraction() bool { + if ptr.Pointer() != nil { + return C.QSessionManager_AllowsInteraction(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSessionManager) Cancel() { + if ptr.Pointer() != nil { + C.QSessionManager_Cancel(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSessionManager) DiscardCommand() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QSessionManager_DiscardCommand(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QSessionManager) IsPhase2() bool { + if ptr.Pointer() != nil { + return C.QSessionManager_IsPhase2(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSessionManager) Release() { + if ptr.Pointer() != nil { + C.QSessionManager_Release(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSessionManager) RequestPhase2() { + if ptr.Pointer() != nil { + C.QSessionManager_RequestPhase2(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSessionManager) RestartCommand() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QSessionManager_RestartCommand(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QSessionManager) SessionId() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSessionManager_SessionId(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSessionManager) SetDiscardCommand(command []string) { + if ptr.Pointer() != nil { + C.QSessionManager_SetDiscardCommand(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(command, "|"))) + } +} + +func (ptr *QSessionManager) SetManagerProperty2(name string, value string) { + if ptr.Pointer() != nil { + C.QSessionManager_SetManagerProperty2(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.CString(value)) + } +} + +func (ptr *QSessionManager) SetManagerProperty(name string, value []string) { + if ptr.Pointer() != nil { + C.QSessionManager_SetManagerProperty(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.CString(strings.Join(value, "|"))) + } +} + +func (ptr *QSessionManager) SetRestartCommand(command []string) { + if ptr.Pointer() != nil { + C.QSessionManager_SetRestartCommand(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(command, "|"))) + } +} + +func (ptr *QSessionManager) SetRestartHint(hint QSessionManager__RestartHint) { + if ptr.Pointer() != nil { + C.QSessionManager_SetRestartHint(C.QtObjectPtr(ptr.Pointer()), C.int(hint)) + } +} diff --git a/gui/qsessionmanager.h b/gui/qsessionmanager.h new file mode 100755 index 00000000..0ede40b6 --- /dev/null +++ b/gui/qsessionmanager.h @@ -0,0 +1,25 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QSessionManager_RestartHint(QtObjectPtr ptr); +char* QSessionManager_SessionKey(QtObjectPtr ptr); +int QSessionManager_AllowsErrorInteraction(QtObjectPtr ptr); +int QSessionManager_AllowsInteraction(QtObjectPtr ptr); +void QSessionManager_Cancel(QtObjectPtr ptr); +char* QSessionManager_DiscardCommand(QtObjectPtr ptr); +int QSessionManager_IsPhase2(QtObjectPtr ptr); +void QSessionManager_Release(QtObjectPtr ptr); +void QSessionManager_RequestPhase2(QtObjectPtr ptr); +char* QSessionManager_RestartCommand(QtObjectPtr ptr); +char* QSessionManager_SessionId(QtObjectPtr ptr); +void QSessionManager_SetDiscardCommand(QtObjectPtr ptr, char* command); +void QSessionManager_SetManagerProperty2(QtObjectPtr ptr, char* name, char* value); +void QSessionManager_SetManagerProperty(QtObjectPtr ptr, char* name, char* value); +void QSessionManager_SetRestartCommand(QtObjectPtr ptr, char* command); +void QSessionManager_SetRestartHint(QtObjectPtr ptr, int hint); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qshortcutevent.cpp b/gui/qshortcutevent.cpp new file mode 100755 index 00000000..1c92bb47 --- /dev/null +++ b/gui/qshortcutevent.cpp @@ -0,0 +1,29 @@ +#include "qshortcutevent.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQShortcutEvent: public QShortcutEvent { +public: +}; + +QtObjectPtr QShortcutEvent_NewQShortcutEvent(QtObjectPtr key, int id, int ambiguous){ + return new QShortcutEvent(*static_cast(key), id, ambiguous != 0); +} + +int QShortcutEvent_IsAmbiguous(QtObjectPtr ptr){ + return static_cast(ptr)->isAmbiguous(); +} + +int QShortcutEvent_ShortcutId(QtObjectPtr ptr){ + return static_cast(ptr)->shortcutId(); +} + +void QShortcutEvent_DestroyQShortcutEvent(QtObjectPtr ptr){ + static_cast(ptr)->~QShortcutEvent(); +} + diff --git a/gui/qshortcutevent.go b/gui/qshortcutevent.go new file mode 100755 index 00000000..2db9c2a1 --- /dev/null +++ b/gui/qshortcutevent.go @@ -0,0 +1,59 @@ +package gui + +//#include "qshortcutevent.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QShortcutEvent struct { + core.QEvent +} + +type QShortcutEventITF interface { + core.QEventITF + QShortcutEventPTR() *QShortcutEvent +} + +func PointerFromQShortcutEvent(ptr QShortcutEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QShortcutEventPTR().Pointer() + } + return nil +} + +func QShortcutEventFromPointer(ptr unsafe.Pointer) *QShortcutEvent { + var n = new(QShortcutEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QShortcutEvent) QShortcutEventPTR() *QShortcutEvent { + return ptr +} + +func NewQShortcutEvent(key QKeySequenceITF, id int, ambiguous bool) *QShortcutEvent { + return QShortcutEventFromPointer(unsafe.Pointer(C.QShortcutEvent_NewQShortcutEvent(C.QtObjectPtr(PointerFromQKeySequence(key)), C.int(id), C.int(qt.GoBoolToInt(ambiguous))))) +} + +func (ptr *QShortcutEvent) IsAmbiguous() bool { + if ptr.Pointer() != nil { + return C.QShortcutEvent_IsAmbiguous(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QShortcutEvent) ShortcutId() int { + if ptr.Pointer() != nil { + return int(C.QShortcutEvent_ShortcutId(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QShortcutEvent) DestroyQShortcutEvent() { + if ptr.Pointer() != nil { + C.QShortcutEvent_DestroyQShortcutEvent(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qshortcutevent.h b/gui/qshortcutevent.h new file mode 100755 index 00000000..4a70d05f --- /dev/null +++ b/gui/qshortcutevent.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QShortcutEvent_NewQShortcutEvent(QtObjectPtr key, int id, int ambiguous); +int QShortcutEvent_IsAmbiguous(QtObjectPtr ptr); +int QShortcutEvent_ShortcutId(QtObjectPtr ptr); +void QShortcutEvent_DestroyQShortcutEvent(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qshowevent.cpp b/gui/qshowevent.cpp new file mode 100755 index 00000000..e494fb8e --- /dev/null +++ b/gui/qshowevent.cpp @@ -0,0 +1,16 @@ +#include "qshowevent.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQShowEvent: public QShowEvent { +public: +}; + +QtObjectPtr QShowEvent_NewQShowEvent(){ + return new QShowEvent(); +} + diff --git a/gui/qshowevent.go b/gui/qshowevent.go new file mode 100755 index 00000000..279049e6 --- /dev/null +++ b/gui/qshowevent.go @@ -0,0 +1,38 @@ +package gui + +//#include "qshowevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QShowEvent struct { + core.QEvent +} + +type QShowEventITF interface { + core.QEventITF + QShowEventPTR() *QShowEvent +} + +func PointerFromQShowEvent(ptr QShowEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QShowEventPTR().Pointer() + } + return nil +} + +func QShowEventFromPointer(ptr unsafe.Pointer) *QShowEvent { + var n = new(QShowEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QShowEvent) QShowEventPTR() *QShowEvent { + return ptr +} + +func NewQShowEvent() *QShowEvent { + return QShowEventFromPointer(unsafe.Pointer(C.QShowEvent_NewQShowEvent())) +} diff --git a/gui/qshowevent.h b/gui/qshowevent.h new file mode 100755 index 00000000..83d35d74 --- /dev/null +++ b/gui/qshowevent.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QShowEvent_NewQShowEvent(); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qstandarditem.cpp b/gui/qstandarditem.cpp new file mode 100755 index 00000000..09a56272 --- /dev/null +++ b/gui/qstandarditem.cpp @@ -0,0 +1,301 @@ +#include "qstandarditem.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStandardItem: public QStandardItem { +public: +}; + +QtObjectPtr QStandardItem_NewQStandardItem(){ + return new QStandardItem(); +} + +QtObjectPtr QStandardItem_NewQStandardItem3(QtObjectPtr icon, char* text){ + return new QStandardItem(*static_cast(icon), QString(text)); +} + +QtObjectPtr QStandardItem_NewQStandardItem2(char* text){ + return new QStandardItem(QString(text)); +} + +QtObjectPtr QStandardItem_NewQStandardItem4(int rows, int columns){ + return new QStandardItem(rows, columns); +} + +char* QStandardItem_AccessibleDescription(QtObjectPtr ptr){ + return static_cast(ptr)->accessibleDescription().toUtf8().data(); +} + +char* QStandardItem_AccessibleText(QtObjectPtr ptr){ + return static_cast(ptr)->accessibleText().toUtf8().data(); +} + +void QStandardItem_AppendRow2(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->appendRow(static_cast(item)); +} + +int QStandardItem_CheckState(QtObjectPtr ptr){ + return static_cast(ptr)->checkState(); +} + +QtObjectPtr QStandardItem_Child(QtObjectPtr ptr, int row, int column){ + return static_cast(ptr)->child(row, column); +} + +QtObjectPtr QStandardItem_Clone(QtObjectPtr ptr){ + return static_cast(ptr)->clone(); +} + +int QStandardItem_Column(QtObjectPtr ptr){ + return static_cast(ptr)->column(); +} + +int QStandardItem_ColumnCount(QtObjectPtr ptr){ + return static_cast(ptr)->columnCount(); +} + +char* QStandardItem_Data(QtObjectPtr ptr, int role){ + return static_cast(ptr)->data(role).toString().toUtf8().data(); +} + +int QStandardItem_Flags(QtObjectPtr ptr){ + return static_cast(ptr)->flags(); +} + +int QStandardItem_HasChildren(QtObjectPtr ptr){ + return static_cast(ptr)->hasChildren(); +} + +QtObjectPtr QStandardItem_Index(QtObjectPtr ptr){ + return static_cast(ptr)->index().internalPointer(); +} + +void QStandardItem_InsertColumns(QtObjectPtr ptr, int column, int count){ + static_cast(ptr)->insertColumns(column, count); +} + +void QStandardItem_InsertRow2(QtObjectPtr ptr, int row, QtObjectPtr item){ + static_cast(ptr)->insertRow(row, static_cast(item)); +} + +void QStandardItem_InsertRows2(QtObjectPtr ptr, int row, int count){ + static_cast(ptr)->insertRows(row, count); +} + +int QStandardItem_IsCheckable(QtObjectPtr ptr){ + return static_cast(ptr)->isCheckable(); +} + +int QStandardItem_IsDragEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isDragEnabled(); +} + +int QStandardItem_IsDropEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isDropEnabled(); +} + +int QStandardItem_IsEditable(QtObjectPtr ptr){ + return static_cast(ptr)->isEditable(); +} + +int QStandardItem_IsEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isEnabled(); +} + +int QStandardItem_IsSelectable(QtObjectPtr ptr){ + return static_cast(ptr)->isSelectable(); +} + +int QStandardItem_IsTristate(QtObjectPtr ptr){ + return static_cast(ptr)->isTristate(); +} + +QtObjectPtr QStandardItem_Model(QtObjectPtr ptr){ + return static_cast(ptr)->model(); +} + +QtObjectPtr QStandardItem_Parent(QtObjectPtr ptr){ + return static_cast(ptr)->parent(); +} + +void QStandardItem_Read(QtObjectPtr ptr, QtObjectPtr in){ + static_cast(ptr)->read(*static_cast(in)); +} + +void QStandardItem_RemoveColumn(QtObjectPtr ptr, int column){ + static_cast(ptr)->removeColumn(column); +} + +void QStandardItem_RemoveColumns(QtObjectPtr ptr, int column, int count){ + static_cast(ptr)->removeColumns(column, count); +} + +void QStandardItem_RemoveRow(QtObjectPtr ptr, int row){ + static_cast(ptr)->removeRow(row); +} + +void QStandardItem_RemoveRows(QtObjectPtr ptr, int row, int count){ + static_cast(ptr)->removeRows(row, count); +} + +int QStandardItem_Row(QtObjectPtr ptr){ + return static_cast(ptr)->row(); +} + +int QStandardItem_RowCount(QtObjectPtr ptr){ + return static_cast(ptr)->rowCount(); +} + +void QStandardItem_SetAccessibleDescription(QtObjectPtr ptr, char* accessibleDescription){ + static_cast(ptr)->setAccessibleDescription(QString(accessibleDescription)); +} + +void QStandardItem_SetAccessibleText(QtObjectPtr ptr, char* accessibleText){ + static_cast(ptr)->setAccessibleText(QString(accessibleText)); +} + +void QStandardItem_SetBackground(QtObjectPtr ptr, QtObjectPtr brush){ + static_cast(ptr)->setBackground(*static_cast(brush)); +} + +void QStandardItem_SetCheckState(QtObjectPtr ptr, int state){ + static_cast(ptr)->setCheckState(static_cast(state)); +} + +void QStandardItem_SetCheckable(QtObjectPtr ptr, int checkable){ + static_cast(ptr)->setCheckable(checkable != 0); +} + +void QStandardItem_SetChild2(QtObjectPtr ptr, int row, QtObjectPtr item){ + static_cast(ptr)->setChild(row, static_cast(item)); +} + +void QStandardItem_SetChild(QtObjectPtr ptr, int row, int column, QtObjectPtr item){ + static_cast(ptr)->setChild(row, column, static_cast(item)); +} + +void QStandardItem_SetColumnCount(QtObjectPtr ptr, int columns){ + static_cast(ptr)->setColumnCount(columns); +} + +void QStandardItem_SetData(QtObjectPtr ptr, char* value, int role){ + static_cast(ptr)->setData(QVariant(value), role); +} + +void QStandardItem_SetDragEnabled(QtObjectPtr ptr, int dragEnabled){ + static_cast(ptr)->setDragEnabled(dragEnabled != 0); +} + +void QStandardItem_SetDropEnabled(QtObjectPtr ptr, int dropEnabled){ + static_cast(ptr)->setDropEnabled(dropEnabled != 0); +} + +void QStandardItem_SetEditable(QtObjectPtr ptr, int editable){ + static_cast(ptr)->setEditable(editable != 0); +} + +void QStandardItem_SetEnabled(QtObjectPtr ptr, int enabled){ + static_cast(ptr)->setEnabled(enabled != 0); +} + +void QStandardItem_SetFlags(QtObjectPtr ptr, int flags){ + static_cast(ptr)->setFlags(static_cast(flags)); +} + +void QStandardItem_SetFont(QtObjectPtr ptr, QtObjectPtr font){ + static_cast(ptr)->setFont(*static_cast(font)); +} + +void QStandardItem_SetForeground(QtObjectPtr ptr, QtObjectPtr brush){ + static_cast(ptr)->setForeground(*static_cast(brush)); +} + +void QStandardItem_SetIcon(QtObjectPtr ptr, QtObjectPtr icon){ + static_cast(ptr)->setIcon(*static_cast(icon)); +} + +void QStandardItem_SetRowCount(QtObjectPtr ptr, int rows){ + static_cast(ptr)->setRowCount(rows); +} + +void QStandardItem_SetSelectable(QtObjectPtr ptr, int selectable){ + static_cast(ptr)->setSelectable(selectable != 0); +} + +void QStandardItem_SetSizeHint(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->setSizeHint(*static_cast(size)); +} + +void QStandardItem_SetStatusTip(QtObjectPtr ptr, char* statusTip){ + static_cast(ptr)->setStatusTip(QString(statusTip)); +} + +void QStandardItem_SetText(QtObjectPtr ptr, char* text){ + static_cast(ptr)->setText(QString(text)); +} + +void QStandardItem_SetTextAlignment(QtObjectPtr ptr, int alignment){ + static_cast(ptr)->setTextAlignment(static_cast(alignment)); +} + +void QStandardItem_SetToolTip(QtObjectPtr ptr, char* toolTip){ + static_cast(ptr)->setToolTip(QString(toolTip)); +} + +void QStandardItem_SetTristate(QtObjectPtr ptr, int tristate){ + static_cast(ptr)->setTristate(tristate != 0); +} + +void QStandardItem_SetWhatsThis(QtObjectPtr ptr, char* whatsThis){ + static_cast(ptr)->setWhatsThis(QString(whatsThis)); +} + +void QStandardItem_SortChildren(QtObjectPtr ptr, int column, int order){ + static_cast(ptr)->sortChildren(column, static_cast(order)); +} + +char* QStandardItem_StatusTip(QtObjectPtr ptr){ + return static_cast(ptr)->statusTip().toUtf8().data(); +} + +QtObjectPtr QStandardItem_TakeChild(QtObjectPtr ptr, int row, int column){ + return static_cast(ptr)->takeChild(row, column); +} + +char* QStandardItem_Text(QtObjectPtr ptr){ + return static_cast(ptr)->text().toUtf8().data(); +} + +int QStandardItem_TextAlignment(QtObjectPtr ptr){ + return static_cast(ptr)->textAlignment(); +} + +char* QStandardItem_ToolTip(QtObjectPtr ptr){ + return static_cast(ptr)->toolTip().toUtf8().data(); +} + +int QStandardItem_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +char* QStandardItem_WhatsThis(QtObjectPtr ptr){ + return static_cast(ptr)->whatsThis().toUtf8().data(); +} + +void QStandardItem_Write(QtObjectPtr ptr, QtObjectPtr out){ + static_cast(ptr)->write(*static_cast(out)); +} + +void QStandardItem_DestroyQStandardItem(QtObjectPtr ptr){ + static_cast(ptr)->~QStandardItem(); +} + diff --git a/gui/qstandarditem.go b/gui/qstandarditem.go new file mode 100755 index 00000000..3821f433 --- /dev/null +++ b/gui/qstandarditem.go @@ -0,0 +1,497 @@ +package gui + +//#include "qstandarditem.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QStandardItem struct { + ptr unsafe.Pointer +} + +type QStandardItemITF interface { + QStandardItemPTR() *QStandardItem +} + +func (p *QStandardItem) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QStandardItem) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQStandardItem(ptr QStandardItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStandardItemPTR().Pointer() + } + return nil +} + +func QStandardItemFromPointer(ptr unsafe.Pointer) *QStandardItem { + var n = new(QStandardItem) + n.SetPointer(ptr) + return n +} + +func (ptr *QStandardItem) QStandardItemPTR() *QStandardItem { + return ptr +} + +//QStandardItem::ItemType +type QStandardItem__ItemType int + +var ( + QStandardItem__Type = QStandardItem__ItemType(0) + QStandardItem__UserType = QStandardItem__ItemType(1000) +) + +func NewQStandardItem() *QStandardItem { + return QStandardItemFromPointer(unsafe.Pointer(C.QStandardItem_NewQStandardItem())) +} + +func NewQStandardItem3(icon QIconITF, text string) *QStandardItem { + return QStandardItemFromPointer(unsafe.Pointer(C.QStandardItem_NewQStandardItem3(C.QtObjectPtr(PointerFromQIcon(icon)), C.CString(text)))) +} + +func NewQStandardItem2(text string) *QStandardItem { + return QStandardItemFromPointer(unsafe.Pointer(C.QStandardItem_NewQStandardItem2(C.CString(text)))) +} + +func NewQStandardItem4(rows int, columns int) *QStandardItem { + return QStandardItemFromPointer(unsafe.Pointer(C.QStandardItem_NewQStandardItem4(C.int(rows), C.int(columns)))) +} + +func (ptr *QStandardItem) AccessibleDescription() string { + if ptr.Pointer() != nil { + return C.GoString(C.QStandardItem_AccessibleDescription(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QStandardItem) AccessibleText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QStandardItem_AccessibleText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QStandardItem) AppendRow2(item QStandardItemITF) { + if ptr.Pointer() != nil { + C.QStandardItem_AppendRow2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQStandardItem(item))) + } +} + +func (ptr *QStandardItem) CheckState() core.Qt__CheckState { + if ptr.Pointer() != nil { + return core.Qt__CheckState(C.QStandardItem_CheckState(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStandardItem) Child(row int, column int) *QStandardItem { + if ptr.Pointer() != nil { + return QStandardItemFromPointer(unsafe.Pointer(C.QStandardItem_Child(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column)))) + } + return nil +} + +func (ptr *QStandardItem) Clone() *QStandardItem { + if ptr.Pointer() != nil { + return QStandardItemFromPointer(unsafe.Pointer(C.QStandardItem_Clone(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QStandardItem) Column() int { + if ptr.Pointer() != nil { + return int(C.QStandardItem_Column(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStandardItem) ColumnCount() int { + if ptr.Pointer() != nil { + return int(C.QStandardItem_ColumnCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStandardItem) Data(role int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QStandardItem_Data(C.QtObjectPtr(ptr.Pointer()), C.int(role))) + } + return "" +} + +func (ptr *QStandardItem) Flags() core.Qt__ItemFlag { + if ptr.Pointer() != nil { + return core.Qt__ItemFlag(C.QStandardItem_Flags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStandardItem) HasChildren() bool { + if ptr.Pointer() != nil { + return C.QStandardItem_HasChildren(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QStandardItem) Index() *core.QModelIndex { + if ptr.Pointer() != nil { + return core.QModelIndexFromPointer(unsafe.Pointer(C.QStandardItem_Index(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QStandardItem) InsertColumns(column int, count int) { + if ptr.Pointer() != nil { + C.QStandardItem_InsertColumns(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(count)) + } +} + +func (ptr *QStandardItem) InsertRow2(row int, item QStandardItemITF) { + if ptr.Pointer() != nil { + C.QStandardItem_InsertRow2(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.QtObjectPtr(PointerFromQStandardItem(item))) + } +} + +func (ptr *QStandardItem) InsertRows2(row int, count int) { + if ptr.Pointer() != nil { + C.QStandardItem_InsertRows2(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(count)) + } +} + +func (ptr *QStandardItem) IsCheckable() bool { + if ptr.Pointer() != nil { + return C.QStandardItem_IsCheckable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QStandardItem) IsDragEnabled() bool { + if ptr.Pointer() != nil { + return C.QStandardItem_IsDragEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QStandardItem) IsDropEnabled() bool { + if ptr.Pointer() != nil { + return C.QStandardItem_IsDropEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QStandardItem) IsEditable() bool { + if ptr.Pointer() != nil { + return C.QStandardItem_IsEditable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QStandardItem) IsEnabled() bool { + if ptr.Pointer() != nil { + return C.QStandardItem_IsEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QStandardItem) IsSelectable() bool { + if ptr.Pointer() != nil { + return C.QStandardItem_IsSelectable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QStandardItem) IsTristate() bool { + if ptr.Pointer() != nil { + return C.QStandardItem_IsTristate(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QStandardItem) Model() *QStandardItemModel { + if ptr.Pointer() != nil { + return QStandardItemModelFromPointer(unsafe.Pointer(C.QStandardItem_Model(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QStandardItem) Parent() *QStandardItem { + if ptr.Pointer() != nil { + return QStandardItemFromPointer(unsafe.Pointer(C.QStandardItem_Parent(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QStandardItem) Read(in core.QDataStreamITF) { + if ptr.Pointer() != nil { + C.QStandardItem_Read(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDataStream(in))) + } +} + +func (ptr *QStandardItem) RemoveColumn(column int) { + if ptr.Pointer() != nil { + C.QStandardItem_RemoveColumn(C.QtObjectPtr(ptr.Pointer()), C.int(column)) + } +} + +func (ptr *QStandardItem) RemoveColumns(column int, count int) { + if ptr.Pointer() != nil { + C.QStandardItem_RemoveColumns(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(count)) + } +} + +func (ptr *QStandardItem) RemoveRow(row int) { + if ptr.Pointer() != nil { + C.QStandardItem_RemoveRow(C.QtObjectPtr(ptr.Pointer()), C.int(row)) + } +} + +func (ptr *QStandardItem) RemoveRows(row int, count int) { + if ptr.Pointer() != nil { + C.QStandardItem_RemoveRows(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(count)) + } +} + +func (ptr *QStandardItem) Row() int { + if ptr.Pointer() != nil { + return int(C.QStandardItem_Row(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStandardItem) RowCount() int { + if ptr.Pointer() != nil { + return int(C.QStandardItem_RowCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStandardItem) SetAccessibleDescription(accessibleDescription string) { + if ptr.Pointer() != nil { + C.QStandardItem_SetAccessibleDescription(C.QtObjectPtr(ptr.Pointer()), C.CString(accessibleDescription)) + } +} + +func (ptr *QStandardItem) SetAccessibleText(accessibleText string) { + if ptr.Pointer() != nil { + C.QStandardItem_SetAccessibleText(C.QtObjectPtr(ptr.Pointer()), C.CString(accessibleText)) + } +} + +func (ptr *QStandardItem) SetBackground(brush QBrushITF) { + if ptr.Pointer() != nil { + C.QStandardItem_SetBackground(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQBrush(brush))) + } +} + +func (ptr *QStandardItem) SetCheckState(state core.Qt__CheckState) { + if ptr.Pointer() != nil { + C.QStandardItem_SetCheckState(C.QtObjectPtr(ptr.Pointer()), C.int(state)) + } +} + +func (ptr *QStandardItem) SetCheckable(checkable bool) { + if ptr.Pointer() != nil { + C.QStandardItem_SetCheckable(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(checkable))) + } +} + +func (ptr *QStandardItem) SetChild2(row int, item QStandardItemITF) { + if ptr.Pointer() != nil { + C.QStandardItem_SetChild2(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.QtObjectPtr(PointerFromQStandardItem(item))) + } +} + +func (ptr *QStandardItem) SetChild(row int, column int, item QStandardItemITF) { + if ptr.Pointer() != nil { + C.QStandardItem_SetChild(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column), C.QtObjectPtr(PointerFromQStandardItem(item))) + } +} + +func (ptr *QStandardItem) SetColumnCount(columns int) { + if ptr.Pointer() != nil { + C.QStandardItem_SetColumnCount(C.QtObjectPtr(ptr.Pointer()), C.int(columns)) + } +} + +func (ptr *QStandardItem) SetData(value string, role int) { + if ptr.Pointer() != nil { + C.QStandardItem_SetData(C.QtObjectPtr(ptr.Pointer()), C.CString(value), C.int(role)) + } +} + +func (ptr *QStandardItem) SetDragEnabled(dragEnabled bool) { + if ptr.Pointer() != nil { + C.QStandardItem_SetDragEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(dragEnabled))) + } +} + +func (ptr *QStandardItem) SetDropEnabled(dropEnabled bool) { + if ptr.Pointer() != nil { + C.QStandardItem_SetDropEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(dropEnabled))) + } +} + +func (ptr *QStandardItem) SetEditable(editable bool) { + if ptr.Pointer() != nil { + C.QStandardItem_SetEditable(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(editable))) + } +} + +func (ptr *QStandardItem) SetEnabled(enabled bool) { + if ptr.Pointer() != nil { + C.QStandardItem_SetEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QStandardItem) SetFlags(flags core.Qt__ItemFlag) { + if ptr.Pointer() != nil { + C.QStandardItem_SetFlags(C.QtObjectPtr(ptr.Pointer()), C.int(flags)) + } +} + +func (ptr *QStandardItem) SetFont(font QFontITF) { + if ptr.Pointer() != nil { + C.QStandardItem_SetFont(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQFont(font))) + } +} + +func (ptr *QStandardItem) SetForeground(brush QBrushITF) { + if ptr.Pointer() != nil { + C.QStandardItem_SetForeground(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQBrush(brush))) + } +} + +func (ptr *QStandardItem) SetIcon(icon QIconITF) { + if ptr.Pointer() != nil { + C.QStandardItem_SetIcon(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQIcon(icon))) + } +} + +func (ptr *QStandardItem) SetRowCount(rows int) { + if ptr.Pointer() != nil { + C.QStandardItem_SetRowCount(C.QtObjectPtr(ptr.Pointer()), C.int(rows)) + } +} + +func (ptr *QStandardItem) SetSelectable(selectable bool) { + if ptr.Pointer() != nil { + C.QStandardItem_SetSelectable(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(selectable))) + } +} + +func (ptr *QStandardItem) SetSizeHint(size core.QSizeITF) { + if ptr.Pointer() != nil { + C.QStandardItem_SetSizeHint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(size))) + } +} + +func (ptr *QStandardItem) SetStatusTip(statusTip string) { + if ptr.Pointer() != nil { + C.QStandardItem_SetStatusTip(C.QtObjectPtr(ptr.Pointer()), C.CString(statusTip)) + } +} + +func (ptr *QStandardItem) SetText(text string) { + if ptr.Pointer() != nil { + C.QStandardItem_SetText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QStandardItem) SetTextAlignment(alignment core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QStandardItem_SetTextAlignment(C.QtObjectPtr(ptr.Pointer()), C.int(alignment)) + } +} + +func (ptr *QStandardItem) SetToolTip(toolTip string) { + if ptr.Pointer() != nil { + C.QStandardItem_SetToolTip(C.QtObjectPtr(ptr.Pointer()), C.CString(toolTip)) + } +} + +func (ptr *QStandardItem) SetTristate(tristate bool) { + if ptr.Pointer() != nil { + C.QStandardItem_SetTristate(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(tristate))) + } +} + +func (ptr *QStandardItem) SetWhatsThis(whatsThis string) { + if ptr.Pointer() != nil { + C.QStandardItem_SetWhatsThis(C.QtObjectPtr(ptr.Pointer()), C.CString(whatsThis)) + } +} + +func (ptr *QStandardItem) SortChildren(column int, order core.Qt__SortOrder) { + if ptr.Pointer() != nil { + C.QStandardItem_SortChildren(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(order)) + } +} + +func (ptr *QStandardItem) StatusTip() string { + if ptr.Pointer() != nil { + return C.GoString(C.QStandardItem_StatusTip(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QStandardItem) TakeChild(row int, column int) *QStandardItem { + if ptr.Pointer() != nil { + return QStandardItemFromPointer(unsafe.Pointer(C.QStandardItem_TakeChild(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column)))) + } + return nil +} + +func (ptr *QStandardItem) Text() string { + if ptr.Pointer() != nil { + return C.GoString(C.QStandardItem_Text(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QStandardItem) TextAlignment() core.Qt__AlignmentFlag { + if ptr.Pointer() != nil { + return core.Qt__AlignmentFlag(C.QStandardItem_TextAlignment(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStandardItem) ToolTip() string { + if ptr.Pointer() != nil { + return C.GoString(C.QStandardItem_ToolTip(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QStandardItem) Type() int { + if ptr.Pointer() != nil { + return int(C.QStandardItem_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStandardItem) WhatsThis() string { + if ptr.Pointer() != nil { + return C.GoString(C.QStandardItem_WhatsThis(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QStandardItem) Write(out core.QDataStreamITF) { + if ptr.Pointer() != nil { + C.QStandardItem_Write(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDataStream(out))) + } +} + +func (ptr *QStandardItem) DestroyQStandardItem() { + if ptr.Pointer() != nil { + C.QStandardItem_DestroyQStandardItem(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qstandarditem.h b/gui/qstandarditem.h new file mode 100755 index 00000000..8c11ce3e --- /dev/null +++ b/gui/qstandarditem.h @@ -0,0 +1,80 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStandardItem_NewQStandardItem(); +QtObjectPtr QStandardItem_NewQStandardItem3(QtObjectPtr icon, char* text); +QtObjectPtr QStandardItem_NewQStandardItem2(char* text); +QtObjectPtr QStandardItem_NewQStandardItem4(int rows, int columns); +char* QStandardItem_AccessibleDescription(QtObjectPtr ptr); +char* QStandardItem_AccessibleText(QtObjectPtr ptr); +void QStandardItem_AppendRow2(QtObjectPtr ptr, QtObjectPtr item); +int QStandardItem_CheckState(QtObjectPtr ptr); +QtObjectPtr QStandardItem_Child(QtObjectPtr ptr, int row, int column); +QtObjectPtr QStandardItem_Clone(QtObjectPtr ptr); +int QStandardItem_Column(QtObjectPtr ptr); +int QStandardItem_ColumnCount(QtObjectPtr ptr); +char* QStandardItem_Data(QtObjectPtr ptr, int role); +int QStandardItem_Flags(QtObjectPtr ptr); +int QStandardItem_HasChildren(QtObjectPtr ptr); +QtObjectPtr QStandardItem_Index(QtObjectPtr ptr); +void QStandardItem_InsertColumns(QtObjectPtr ptr, int column, int count); +void QStandardItem_InsertRow2(QtObjectPtr ptr, int row, QtObjectPtr item); +void QStandardItem_InsertRows2(QtObjectPtr ptr, int row, int count); +int QStandardItem_IsCheckable(QtObjectPtr ptr); +int QStandardItem_IsDragEnabled(QtObjectPtr ptr); +int QStandardItem_IsDropEnabled(QtObjectPtr ptr); +int QStandardItem_IsEditable(QtObjectPtr ptr); +int QStandardItem_IsEnabled(QtObjectPtr ptr); +int QStandardItem_IsSelectable(QtObjectPtr ptr); +int QStandardItem_IsTristate(QtObjectPtr ptr); +QtObjectPtr QStandardItem_Model(QtObjectPtr ptr); +QtObjectPtr QStandardItem_Parent(QtObjectPtr ptr); +void QStandardItem_Read(QtObjectPtr ptr, QtObjectPtr in); +void QStandardItem_RemoveColumn(QtObjectPtr ptr, int column); +void QStandardItem_RemoveColumns(QtObjectPtr ptr, int column, int count); +void QStandardItem_RemoveRow(QtObjectPtr ptr, int row); +void QStandardItem_RemoveRows(QtObjectPtr ptr, int row, int count); +int QStandardItem_Row(QtObjectPtr ptr); +int QStandardItem_RowCount(QtObjectPtr ptr); +void QStandardItem_SetAccessibleDescription(QtObjectPtr ptr, char* accessibleDescription); +void QStandardItem_SetAccessibleText(QtObjectPtr ptr, char* accessibleText); +void QStandardItem_SetBackground(QtObjectPtr ptr, QtObjectPtr brush); +void QStandardItem_SetCheckState(QtObjectPtr ptr, int state); +void QStandardItem_SetCheckable(QtObjectPtr ptr, int checkable); +void QStandardItem_SetChild2(QtObjectPtr ptr, int row, QtObjectPtr item); +void QStandardItem_SetChild(QtObjectPtr ptr, int row, int column, QtObjectPtr item); +void QStandardItem_SetColumnCount(QtObjectPtr ptr, int columns); +void QStandardItem_SetData(QtObjectPtr ptr, char* value, int role); +void QStandardItem_SetDragEnabled(QtObjectPtr ptr, int dragEnabled); +void QStandardItem_SetDropEnabled(QtObjectPtr ptr, int dropEnabled); +void QStandardItem_SetEditable(QtObjectPtr ptr, int editable); +void QStandardItem_SetEnabled(QtObjectPtr ptr, int enabled); +void QStandardItem_SetFlags(QtObjectPtr ptr, int flags); +void QStandardItem_SetFont(QtObjectPtr ptr, QtObjectPtr font); +void QStandardItem_SetForeground(QtObjectPtr ptr, QtObjectPtr brush); +void QStandardItem_SetIcon(QtObjectPtr ptr, QtObjectPtr icon); +void QStandardItem_SetRowCount(QtObjectPtr ptr, int rows); +void QStandardItem_SetSelectable(QtObjectPtr ptr, int selectable); +void QStandardItem_SetSizeHint(QtObjectPtr ptr, QtObjectPtr size); +void QStandardItem_SetStatusTip(QtObjectPtr ptr, char* statusTip); +void QStandardItem_SetText(QtObjectPtr ptr, char* text); +void QStandardItem_SetTextAlignment(QtObjectPtr ptr, int alignment); +void QStandardItem_SetToolTip(QtObjectPtr ptr, char* toolTip); +void QStandardItem_SetTristate(QtObjectPtr ptr, int tristate); +void QStandardItem_SetWhatsThis(QtObjectPtr ptr, char* whatsThis); +void QStandardItem_SortChildren(QtObjectPtr ptr, int column, int order); +char* QStandardItem_StatusTip(QtObjectPtr ptr); +QtObjectPtr QStandardItem_TakeChild(QtObjectPtr ptr, int row, int column); +char* QStandardItem_Text(QtObjectPtr ptr); +int QStandardItem_TextAlignment(QtObjectPtr ptr); +char* QStandardItem_ToolTip(QtObjectPtr ptr); +int QStandardItem_Type(QtObjectPtr ptr); +char* QStandardItem_WhatsThis(QtObjectPtr ptr); +void QStandardItem_Write(QtObjectPtr ptr, QtObjectPtr out); +void QStandardItem_DestroyQStandardItem(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qstandarditemmodel.cpp b/gui/qstandarditemmodel.cpp new file mode 100755 index 00000000..30326f71 --- /dev/null +++ b/gui/qstandarditemmodel.cpp @@ -0,0 +1,216 @@ +#include "qstandarditemmodel.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStandardItemModel: public QStandardItemModel { +public: +void Signal_ItemChanged(QStandardItem * item){callbackQStandardItemModelItemChanged(this->objectName().toUtf8().data(), item);}; +}; + +void QStandardItemModel_SetSortRole(QtObjectPtr ptr, int role){ + static_cast(ptr)->setSortRole(role); +} + +int QStandardItemModel_SortRole(QtObjectPtr ptr){ + return static_cast(ptr)->sortRole(); +} + +QtObjectPtr QStandardItemModel_NewQStandardItemModel(QtObjectPtr parent){ + return new QStandardItemModel(static_cast(parent)); +} + +QtObjectPtr QStandardItemModel_NewQStandardItemModel2(int rows, int columns, QtObjectPtr parent){ + return new QStandardItemModel(rows, columns, static_cast(parent)); +} + +void QStandardItemModel_AppendRow2(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->appendRow(static_cast(item)); +} + +void QStandardItemModel_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +int QStandardItemModel_ColumnCount(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->columnCount(*static_cast(parent)); +} + +char* QStandardItemModel_Data(QtObjectPtr ptr, QtObjectPtr index, int role){ + return static_cast(ptr)->data(*static_cast(index), role).toString().toUtf8().data(); +} + +int QStandardItemModel_DropMimeData(QtObjectPtr ptr, QtObjectPtr data, int action, int row, int column, QtObjectPtr parent){ + return static_cast(ptr)->dropMimeData(static_cast(data), static_cast(action), row, column, *static_cast(parent)); +} + +int QStandardItemModel_Flags(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->flags(*static_cast(index)); +} + +int QStandardItemModel_HasChildren(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->hasChildren(*static_cast(parent)); +} + +char* QStandardItemModel_HeaderData(QtObjectPtr ptr, int section, int orientation, int role){ + return static_cast(ptr)->headerData(section, static_cast(orientation), role).toString().toUtf8().data(); +} + +QtObjectPtr QStandardItemModel_HorizontalHeaderItem(QtObjectPtr ptr, int column){ + return static_cast(ptr)->horizontalHeaderItem(column); +} + +QtObjectPtr QStandardItemModel_Index(QtObjectPtr ptr, int row, int column, QtObjectPtr parent){ + return static_cast(ptr)->index(row, column, *static_cast(parent)).internalPointer(); +} + +QtObjectPtr QStandardItemModel_IndexFromItem(QtObjectPtr ptr, QtObjectPtr item){ + return static_cast(ptr)->indexFromItem(static_cast(item)).internalPointer(); +} + +int QStandardItemModel_InsertColumn2(QtObjectPtr ptr, int column, QtObjectPtr parent){ + return static_cast(ptr)->insertColumn(column, *static_cast(parent)); +} + +int QStandardItemModel_InsertColumns(QtObjectPtr ptr, int column, int count, QtObjectPtr parent){ + return static_cast(ptr)->insertColumns(column, count, *static_cast(parent)); +} + +int QStandardItemModel_InsertRow2(QtObjectPtr ptr, int row, QtObjectPtr parent){ + return static_cast(ptr)->insertRow(row, *static_cast(parent)); +} + +void QStandardItemModel_InsertRow3(QtObjectPtr ptr, int row, QtObjectPtr item){ + static_cast(ptr)->insertRow(row, static_cast(item)); +} + +int QStandardItemModel_InsertRows(QtObjectPtr ptr, int row, int count, QtObjectPtr parent){ + return static_cast(ptr)->insertRows(row, count, *static_cast(parent)); +} + +QtObjectPtr QStandardItemModel_InvisibleRootItem(QtObjectPtr ptr){ + return static_cast(ptr)->invisibleRootItem(); +} + +QtObjectPtr QStandardItemModel_Item(QtObjectPtr ptr, int row, int column){ + return static_cast(ptr)->item(row, column); +} + +void QStandardItemModel_ConnectItemChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QStandardItemModel::itemChanged), static_cast(ptr), static_cast(&MyQStandardItemModel::Signal_ItemChanged));; +} + +void QStandardItemModel_DisconnectItemChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QStandardItemModel::itemChanged), static_cast(ptr), static_cast(&MyQStandardItemModel::Signal_ItemChanged));; +} + +QtObjectPtr QStandardItemModel_ItemFromIndex(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->itemFromIndex(*static_cast(index)); +} + +QtObjectPtr QStandardItemModel_ItemPrototype(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->itemPrototype()); +} + +char* QStandardItemModel_MimeTypes(QtObjectPtr ptr){ + return static_cast(ptr)->mimeTypes().join("|").toUtf8().data(); +} + +QtObjectPtr QStandardItemModel_Parent(QtObjectPtr ptr, QtObjectPtr child){ + return static_cast(ptr)->parent(*static_cast(child)).internalPointer(); +} + +int QStandardItemModel_RemoveColumns(QtObjectPtr ptr, int column, int count, QtObjectPtr parent){ + return static_cast(ptr)->removeColumns(column, count, *static_cast(parent)); +} + +int QStandardItemModel_RemoveRows(QtObjectPtr ptr, int row, int count, QtObjectPtr parent){ + return static_cast(ptr)->removeRows(row, count, *static_cast(parent)); +} + +int QStandardItemModel_RowCount(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->rowCount(*static_cast(parent)); +} + +void QStandardItemModel_SetColumnCount(QtObjectPtr ptr, int columns){ + static_cast(ptr)->setColumnCount(columns); +} + +int QStandardItemModel_SetData(QtObjectPtr ptr, QtObjectPtr index, char* value, int role){ + return static_cast(ptr)->setData(*static_cast(index), QVariant(value), role); +} + +int QStandardItemModel_SetHeaderData(QtObjectPtr ptr, int section, int orientation, char* value, int role){ + return static_cast(ptr)->setHeaderData(section, static_cast(orientation), QVariant(value), role); +} + +void QStandardItemModel_SetHorizontalHeaderItem(QtObjectPtr ptr, int column, QtObjectPtr item){ + static_cast(ptr)->setHorizontalHeaderItem(column, static_cast(item)); +} + +void QStandardItemModel_SetHorizontalHeaderLabels(QtObjectPtr ptr, char* labels){ + static_cast(ptr)->setHorizontalHeaderLabels(QString(labels).split("|", QString::SkipEmptyParts)); +} + +void QStandardItemModel_SetItem2(QtObjectPtr ptr, int row, QtObjectPtr item){ + static_cast(ptr)->setItem(row, static_cast(item)); +} + +void QStandardItemModel_SetItem(QtObjectPtr ptr, int row, int column, QtObjectPtr item){ + static_cast(ptr)->setItem(row, column, static_cast(item)); +} + +void QStandardItemModel_SetItemPrototype(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->setItemPrototype(static_cast(item)); +} + +void QStandardItemModel_SetRowCount(QtObjectPtr ptr, int rows){ + static_cast(ptr)->setRowCount(rows); +} + +void QStandardItemModel_SetVerticalHeaderItem(QtObjectPtr ptr, int row, QtObjectPtr item){ + static_cast(ptr)->setVerticalHeaderItem(row, static_cast(item)); +} + +void QStandardItemModel_SetVerticalHeaderLabels(QtObjectPtr ptr, char* labels){ + static_cast(ptr)->setVerticalHeaderLabels(QString(labels).split("|", QString::SkipEmptyParts)); +} + +QtObjectPtr QStandardItemModel_Sibling(QtObjectPtr ptr, int row, int column, QtObjectPtr idx){ + return static_cast(ptr)->sibling(row, column, *static_cast(idx)).internalPointer(); +} + +void QStandardItemModel_Sort(QtObjectPtr ptr, int column, int order){ + static_cast(ptr)->sort(column, static_cast(order)); +} + +int QStandardItemModel_SupportedDropActions(QtObjectPtr ptr){ + return static_cast(ptr)->supportedDropActions(); +} + +QtObjectPtr QStandardItemModel_TakeHorizontalHeaderItem(QtObjectPtr ptr, int column){ + return static_cast(ptr)->takeHorizontalHeaderItem(column); +} + +QtObjectPtr QStandardItemModel_TakeItem(QtObjectPtr ptr, int row, int column){ + return static_cast(ptr)->takeItem(row, column); +} + +QtObjectPtr QStandardItemModel_TakeVerticalHeaderItem(QtObjectPtr ptr, int row){ + return static_cast(ptr)->takeVerticalHeaderItem(row); +} + +QtObjectPtr QStandardItemModel_VerticalHeaderItem(QtObjectPtr ptr, int row){ + return static_cast(ptr)->verticalHeaderItem(row); +} + +void QStandardItemModel_DestroyQStandardItemModel(QtObjectPtr ptr){ + static_cast(ptr)->~QStandardItemModel(); +} + diff --git a/gui/qstandarditemmodel.go b/gui/qstandarditemmodel.go new file mode 100755 index 00000000..025b6eda --- /dev/null +++ b/gui/qstandarditemmodel.go @@ -0,0 +1,374 @@ +package gui + +//#include "qstandarditemmodel.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QStandardItemModel struct { + core.QAbstractItemModel +} + +type QStandardItemModelITF interface { + core.QAbstractItemModelITF + QStandardItemModelPTR() *QStandardItemModel +} + +func PointerFromQStandardItemModel(ptr QStandardItemModelITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStandardItemModelPTR().Pointer() + } + return nil +} + +func QStandardItemModelFromPointer(ptr unsafe.Pointer) *QStandardItemModel { + var n = new(QStandardItemModel) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QStandardItemModel_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QStandardItemModel) QStandardItemModelPTR() *QStandardItemModel { + return ptr +} + +func (ptr *QStandardItemModel) SetSortRole(role int) { + if ptr.Pointer() != nil { + C.QStandardItemModel_SetSortRole(C.QtObjectPtr(ptr.Pointer()), C.int(role)) + } +} + +func (ptr *QStandardItemModel) SortRole() int { + if ptr.Pointer() != nil { + return int(C.QStandardItemModel_SortRole(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQStandardItemModel(parent core.QObjectITF) *QStandardItemModel { + return QStandardItemModelFromPointer(unsafe.Pointer(C.QStandardItemModel_NewQStandardItemModel(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQStandardItemModel2(rows int, columns int, parent core.QObjectITF) *QStandardItemModel { + return QStandardItemModelFromPointer(unsafe.Pointer(C.QStandardItemModel_NewQStandardItemModel2(C.int(rows), C.int(columns), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QStandardItemModel) AppendRow2(item QStandardItemITF) { + if ptr.Pointer() != nil { + C.QStandardItemModel_AppendRow2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQStandardItem(item))) + } +} + +func (ptr *QStandardItemModel) Clear() { + if ptr.Pointer() != nil { + C.QStandardItemModel_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QStandardItemModel) ColumnCount(parent core.QModelIndexITF) int { + if ptr.Pointer() != nil { + return int(C.QStandardItemModel_ColumnCount(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(parent)))) + } + return 0 +} + +func (ptr *QStandardItemModel) Data(index core.QModelIndexITF, role int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QStandardItemModel_Data(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index)), C.int(role))) + } + return "" +} + +func (ptr *QStandardItemModel) DropMimeData(data core.QMimeDataITF, action core.Qt__DropAction, row int, column int, parent core.QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QStandardItemModel_DropMimeData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQMimeData(data)), C.int(action), C.int(row), C.int(column), C.QtObjectPtr(core.PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QStandardItemModel) Flags(index core.QModelIndexITF) core.Qt__ItemFlag { + if ptr.Pointer() != nil { + return core.Qt__ItemFlag(C.QStandardItemModel_Flags(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index)))) + } + return 0 +} + +func (ptr *QStandardItemModel) HasChildren(parent core.QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QStandardItemModel_HasChildren(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QStandardItemModel) HeaderData(section int, orientation core.Qt__Orientation, role int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QStandardItemModel_HeaderData(C.QtObjectPtr(ptr.Pointer()), C.int(section), C.int(orientation), C.int(role))) + } + return "" +} + +func (ptr *QStandardItemModel) HorizontalHeaderItem(column int) *QStandardItem { + if ptr.Pointer() != nil { + return QStandardItemFromPointer(unsafe.Pointer(C.QStandardItemModel_HorizontalHeaderItem(C.QtObjectPtr(ptr.Pointer()), C.int(column)))) + } + return nil +} + +func (ptr *QStandardItemModel) Index(row int, column int, parent core.QModelIndexITF) *core.QModelIndex { + if ptr.Pointer() != nil { + return core.QModelIndexFromPointer(unsafe.Pointer(C.QStandardItemModel_Index(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column), C.QtObjectPtr(core.PointerFromQModelIndex(parent))))) + } + return nil +} + +func (ptr *QStandardItemModel) IndexFromItem(item QStandardItemITF) *core.QModelIndex { + if ptr.Pointer() != nil { + return core.QModelIndexFromPointer(unsafe.Pointer(C.QStandardItemModel_IndexFromItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQStandardItem(item))))) + } + return nil +} + +func (ptr *QStandardItemModel) InsertColumn2(column int, parent core.QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QStandardItemModel_InsertColumn2(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.QtObjectPtr(core.PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QStandardItemModel) InsertColumns(column int, count int, parent core.QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QStandardItemModel_InsertColumns(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(count), C.QtObjectPtr(core.PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QStandardItemModel) InsertRow2(row int, parent core.QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QStandardItemModel_InsertRow2(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.QtObjectPtr(core.PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QStandardItemModel) InsertRow3(row int, item QStandardItemITF) { + if ptr.Pointer() != nil { + C.QStandardItemModel_InsertRow3(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.QtObjectPtr(PointerFromQStandardItem(item))) + } +} + +func (ptr *QStandardItemModel) InsertRows(row int, count int, parent core.QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QStandardItemModel_InsertRows(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(count), C.QtObjectPtr(core.PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QStandardItemModel) InvisibleRootItem() *QStandardItem { + if ptr.Pointer() != nil { + return QStandardItemFromPointer(unsafe.Pointer(C.QStandardItemModel_InvisibleRootItem(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QStandardItemModel) Item(row int, column int) *QStandardItem { + if ptr.Pointer() != nil { + return QStandardItemFromPointer(unsafe.Pointer(C.QStandardItemModel_Item(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column)))) + } + return nil +} + +func (ptr *QStandardItemModel) ConnectItemChanged(f func(item QStandardItemITF)) { + if ptr.Pointer() != nil { + C.QStandardItemModel_ConnectItemChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "itemChanged", f) + } +} + +func (ptr *QStandardItemModel) DisconnectItemChanged() { + if ptr.Pointer() != nil { + C.QStandardItemModel_DisconnectItemChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "itemChanged") + } +} + +//export callbackQStandardItemModelItemChanged +func callbackQStandardItemModelItemChanged(ptrName *C.char, item unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "itemChanged").(func(*QStandardItem))(QStandardItemFromPointer(item)) +} + +func (ptr *QStandardItemModel) ItemFromIndex(index core.QModelIndexITF) *QStandardItem { + if ptr.Pointer() != nil { + return QStandardItemFromPointer(unsafe.Pointer(C.QStandardItemModel_ItemFromIndex(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index))))) + } + return nil +} + +func (ptr *QStandardItemModel) ItemPrototype() *QStandardItem { + if ptr.Pointer() != nil { + return QStandardItemFromPointer(unsafe.Pointer(C.QStandardItemModel_ItemPrototype(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QStandardItemModel) MimeTypes() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QStandardItemModel_MimeTypes(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QStandardItemModel) Parent(child core.QModelIndexITF) *core.QModelIndex { + if ptr.Pointer() != nil { + return core.QModelIndexFromPointer(unsafe.Pointer(C.QStandardItemModel_Parent(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(child))))) + } + return nil +} + +func (ptr *QStandardItemModel) RemoveColumns(column int, count int, parent core.QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QStandardItemModel_RemoveColumns(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(count), C.QtObjectPtr(core.PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QStandardItemModel) RemoveRows(row int, count int, parent core.QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QStandardItemModel_RemoveRows(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(count), C.QtObjectPtr(core.PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QStandardItemModel) RowCount(parent core.QModelIndexITF) int { + if ptr.Pointer() != nil { + return int(C.QStandardItemModel_RowCount(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(parent)))) + } + return 0 +} + +func (ptr *QStandardItemModel) SetColumnCount(columns int) { + if ptr.Pointer() != nil { + C.QStandardItemModel_SetColumnCount(C.QtObjectPtr(ptr.Pointer()), C.int(columns)) + } +} + +func (ptr *QStandardItemModel) SetData(index core.QModelIndexITF, value string, role int) bool { + if ptr.Pointer() != nil { + return C.QStandardItemModel_SetData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index)), C.CString(value), C.int(role)) != 0 + } + return false +} + +func (ptr *QStandardItemModel) SetHeaderData(section int, orientation core.Qt__Orientation, value string, role int) bool { + if ptr.Pointer() != nil { + return C.QStandardItemModel_SetHeaderData(C.QtObjectPtr(ptr.Pointer()), C.int(section), C.int(orientation), C.CString(value), C.int(role)) != 0 + } + return false +} + +func (ptr *QStandardItemModel) SetHorizontalHeaderItem(column int, item QStandardItemITF) { + if ptr.Pointer() != nil { + C.QStandardItemModel_SetHorizontalHeaderItem(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.QtObjectPtr(PointerFromQStandardItem(item))) + } +} + +func (ptr *QStandardItemModel) SetHorizontalHeaderLabels(labels []string) { + if ptr.Pointer() != nil { + C.QStandardItemModel_SetHorizontalHeaderLabels(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(labels, "|"))) + } +} + +func (ptr *QStandardItemModel) SetItem2(row int, item QStandardItemITF) { + if ptr.Pointer() != nil { + C.QStandardItemModel_SetItem2(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.QtObjectPtr(PointerFromQStandardItem(item))) + } +} + +func (ptr *QStandardItemModel) SetItem(row int, column int, item QStandardItemITF) { + if ptr.Pointer() != nil { + C.QStandardItemModel_SetItem(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column), C.QtObjectPtr(PointerFromQStandardItem(item))) + } +} + +func (ptr *QStandardItemModel) SetItemPrototype(item QStandardItemITF) { + if ptr.Pointer() != nil { + C.QStandardItemModel_SetItemPrototype(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQStandardItem(item))) + } +} + +func (ptr *QStandardItemModel) SetRowCount(rows int) { + if ptr.Pointer() != nil { + C.QStandardItemModel_SetRowCount(C.QtObjectPtr(ptr.Pointer()), C.int(rows)) + } +} + +func (ptr *QStandardItemModel) SetVerticalHeaderItem(row int, item QStandardItemITF) { + if ptr.Pointer() != nil { + C.QStandardItemModel_SetVerticalHeaderItem(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.QtObjectPtr(PointerFromQStandardItem(item))) + } +} + +func (ptr *QStandardItemModel) SetVerticalHeaderLabels(labels []string) { + if ptr.Pointer() != nil { + C.QStandardItemModel_SetVerticalHeaderLabels(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(labels, "|"))) + } +} + +func (ptr *QStandardItemModel) Sibling(row int, column int, idx core.QModelIndexITF) *core.QModelIndex { + if ptr.Pointer() != nil { + return core.QModelIndexFromPointer(unsafe.Pointer(C.QStandardItemModel_Sibling(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column), C.QtObjectPtr(core.PointerFromQModelIndex(idx))))) + } + return nil +} + +func (ptr *QStandardItemModel) Sort(column int, order core.Qt__SortOrder) { + if ptr.Pointer() != nil { + C.QStandardItemModel_Sort(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(order)) + } +} + +func (ptr *QStandardItemModel) SupportedDropActions() core.Qt__DropAction { + if ptr.Pointer() != nil { + return core.Qt__DropAction(C.QStandardItemModel_SupportedDropActions(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStandardItemModel) TakeHorizontalHeaderItem(column int) *QStandardItem { + if ptr.Pointer() != nil { + return QStandardItemFromPointer(unsafe.Pointer(C.QStandardItemModel_TakeHorizontalHeaderItem(C.QtObjectPtr(ptr.Pointer()), C.int(column)))) + } + return nil +} + +func (ptr *QStandardItemModel) TakeItem(row int, column int) *QStandardItem { + if ptr.Pointer() != nil { + return QStandardItemFromPointer(unsafe.Pointer(C.QStandardItemModel_TakeItem(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column)))) + } + return nil +} + +func (ptr *QStandardItemModel) TakeVerticalHeaderItem(row int) *QStandardItem { + if ptr.Pointer() != nil { + return QStandardItemFromPointer(unsafe.Pointer(C.QStandardItemModel_TakeVerticalHeaderItem(C.QtObjectPtr(ptr.Pointer()), C.int(row)))) + } + return nil +} + +func (ptr *QStandardItemModel) VerticalHeaderItem(row int) *QStandardItem { + if ptr.Pointer() != nil { + return QStandardItemFromPointer(unsafe.Pointer(C.QStandardItemModel_VerticalHeaderItem(C.QtObjectPtr(ptr.Pointer()), C.int(row)))) + } + return nil +} + +func (ptr *QStandardItemModel) DestroyQStandardItemModel() { + if ptr.Pointer() != nil { + C.QStandardItemModel_DestroyQStandardItemModel(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/gui/qstandarditemmodel.h b/gui/qstandarditemmodel.h new file mode 100755 index 00000000..472d47c2 --- /dev/null +++ b/gui/qstandarditemmodel.h @@ -0,0 +1,59 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QStandardItemModel_SetSortRole(QtObjectPtr ptr, int role); +int QStandardItemModel_SortRole(QtObjectPtr ptr); +QtObjectPtr QStandardItemModel_NewQStandardItemModel(QtObjectPtr parent); +QtObjectPtr QStandardItemModel_NewQStandardItemModel2(int rows, int columns, QtObjectPtr parent); +void QStandardItemModel_AppendRow2(QtObjectPtr ptr, QtObjectPtr item); +void QStandardItemModel_Clear(QtObjectPtr ptr); +int QStandardItemModel_ColumnCount(QtObjectPtr ptr, QtObjectPtr parent); +char* QStandardItemModel_Data(QtObjectPtr ptr, QtObjectPtr index, int role); +int QStandardItemModel_DropMimeData(QtObjectPtr ptr, QtObjectPtr data, int action, int row, int column, QtObjectPtr parent); +int QStandardItemModel_Flags(QtObjectPtr ptr, QtObjectPtr index); +int QStandardItemModel_HasChildren(QtObjectPtr ptr, QtObjectPtr parent); +char* QStandardItemModel_HeaderData(QtObjectPtr ptr, int section, int orientation, int role); +QtObjectPtr QStandardItemModel_HorizontalHeaderItem(QtObjectPtr ptr, int column); +QtObjectPtr QStandardItemModel_Index(QtObjectPtr ptr, int row, int column, QtObjectPtr parent); +QtObjectPtr QStandardItemModel_IndexFromItem(QtObjectPtr ptr, QtObjectPtr item); +int QStandardItemModel_InsertColumn2(QtObjectPtr ptr, int column, QtObjectPtr parent); +int QStandardItemModel_InsertColumns(QtObjectPtr ptr, int column, int count, QtObjectPtr parent); +int QStandardItemModel_InsertRow2(QtObjectPtr ptr, int row, QtObjectPtr parent); +void QStandardItemModel_InsertRow3(QtObjectPtr ptr, int row, QtObjectPtr item); +int QStandardItemModel_InsertRows(QtObjectPtr ptr, int row, int count, QtObjectPtr parent); +QtObjectPtr QStandardItemModel_InvisibleRootItem(QtObjectPtr ptr); +QtObjectPtr QStandardItemModel_Item(QtObjectPtr ptr, int row, int column); +void QStandardItemModel_ConnectItemChanged(QtObjectPtr ptr); +void QStandardItemModel_DisconnectItemChanged(QtObjectPtr ptr); +QtObjectPtr QStandardItemModel_ItemFromIndex(QtObjectPtr ptr, QtObjectPtr index); +QtObjectPtr QStandardItemModel_ItemPrototype(QtObjectPtr ptr); +char* QStandardItemModel_MimeTypes(QtObjectPtr ptr); +QtObjectPtr QStandardItemModel_Parent(QtObjectPtr ptr, QtObjectPtr child); +int QStandardItemModel_RemoveColumns(QtObjectPtr ptr, int column, int count, QtObjectPtr parent); +int QStandardItemModel_RemoveRows(QtObjectPtr ptr, int row, int count, QtObjectPtr parent); +int QStandardItemModel_RowCount(QtObjectPtr ptr, QtObjectPtr parent); +void QStandardItemModel_SetColumnCount(QtObjectPtr ptr, int columns); +int QStandardItemModel_SetData(QtObjectPtr ptr, QtObjectPtr index, char* value, int role); +int QStandardItemModel_SetHeaderData(QtObjectPtr ptr, int section, int orientation, char* value, int role); +void QStandardItemModel_SetHorizontalHeaderItem(QtObjectPtr ptr, int column, QtObjectPtr item); +void QStandardItemModel_SetHorizontalHeaderLabels(QtObjectPtr ptr, char* labels); +void QStandardItemModel_SetItem2(QtObjectPtr ptr, int row, QtObjectPtr item); +void QStandardItemModel_SetItem(QtObjectPtr ptr, int row, int column, QtObjectPtr item); +void QStandardItemModel_SetItemPrototype(QtObjectPtr ptr, QtObjectPtr item); +void QStandardItemModel_SetRowCount(QtObjectPtr ptr, int rows); +void QStandardItemModel_SetVerticalHeaderItem(QtObjectPtr ptr, int row, QtObjectPtr item); +void QStandardItemModel_SetVerticalHeaderLabels(QtObjectPtr ptr, char* labels); +QtObjectPtr QStandardItemModel_Sibling(QtObjectPtr ptr, int row, int column, QtObjectPtr idx); +void QStandardItemModel_Sort(QtObjectPtr ptr, int column, int order); +int QStandardItemModel_SupportedDropActions(QtObjectPtr ptr); +QtObjectPtr QStandardItemModel_TakeHorizontalHeaderItem(QtObjectPtr ptr, int column); +QtObjectPtr QStandardItemModel_TakeItem(QtObjectPtr ptr, int row, int column); +QtObjectPtr QStandardItemModel_TakeVerticalHeaderItem(QtObjectPtr ptr, int row); +QtObjectPtr QStandardItemModel_VerticalHeaderItem(QtObjectPtr ptr, int row); +void QStandardItemModel_DestroyQStandardItemModel(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qstatictext.cpp b/gui/qstatictext.cpp new file mode 100755 index 00000000..eb08edde --- /dev/null +++ b/gui/qstatictext.cpp @@ -0,0 +1,67 @@ +#include "qstatictext.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStaticText: public QStaticText { +public: +}; + +QtObjectPtr QStaticText_NewQStaticText(){ + return new QStaticText(); +} + +QtObjectPtr QStaticText_NewQStaticText3(QtObjectPtr other){ + return new QStaticText(*static_cast(other)); +} + +QtObjectPtr QStaticText_NewQStaticText2(char* text){ + return new QStaticText(QString(text)); +} + +int QStaticText_PerformanceHint(QtObjectPtr ptr){ + return static_cast(ptr)->performanceHint(); +} + +void QStaticText_Prepare(QtObjectPtr ptr, QtObjectPtr matrix, QtObjectPtr font){ + static_cast(ptr)->prepare(*static_cast(matrix), *static_cast(font)); +} + +void QStaticText_SetPerformanceHint(QtObjectPtr ptr, int performanceHint){ + static_cast(ptr)->setPerformanceHint(static_cast(performanceHint)); +} + +void QStaticText_SetText(QtObjectPtr ptr, char* text){ + static_cast(ptr)->setText(QString(text)); +} + +void QStaticText_SetTextFormat(QtObjectPtr ptr, int textFormat){ + static_cast(ptr)->setTextFormat(static_cast(textFormat)); +} + +void QStaticText_SetTextOption(QtObjectPtr ptr, QtObjectPtr textOption){ + static_cast(ptr)->setTextOption(*static_cast(textOption)); +} + +void QStaticText_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +char* QStaticText_Text(QtObjectPtr ptr){ + return static_cast(ptr)->text().toUtf8().data(); +} + +int QStaticText_TextFormat(QtObjectPtr ptr){ + return static_cast(ptr)->textFormat(); +} + +void QStaticText_DestroyQStaticText(QtObjectPtr ptr){ + static_cast(ptr)->~QStaticText(); +} + diff --git a/gui/qstatictext.go b/gui/qstatictext.go new file mode 100755 index 00000000..3cf5b82c --- /dev/null +++ b/gui/qstatictext.go @@ -0,0 +1,124 @@ +package gui + +//#include "qstatictext.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QStaticText struct { + ptr unsafe.Pointer +} + +type QStaticTextITF interface { + QStaticTextPTR() *QStaticText +} + +func (p *QStaticText) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QStaticText) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQStaticText(ptr QStaticTextITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStaticTextPTR().Pointer() + } + return nil +} + +func QStaticTextFromPointer(ptr unsafe.Pointer) *QStaticText { + var n = new(QStaticText) + n.SetPointer(ptr) + return n +} + +func (ptr *QStaticText) QStaticTextPTR() *QStaticText { + return ptr +} + +//QStaticText::PerformanceHint +type QStaticText__PerformanceHint int + +var ( + QStaticText__ModerateCaching = QStaticText__PerformanceHint(0) + QStaticText__AggressiveCaching = QStaticText__PerformanceHint(1) +) + +func NewQStaticText() *QStaticText { + return QStaticTextFromPointer(unsafe.Pointer(C.QStaticText_NewQStaticText())) +} + +func NewQStaticText3(other QStaticTextITF) *QStaticText { + return QStaticTextFromPointer(unsafe.Pointer(C.QStaticText_NewQStaticText3(C.QtObjectPtr(PointerFromQStaticText(other))))) +} + +func NewQStaticText2(text string) *QStaticText { + return QStaticTextFromPointer(unsafe.Pointer(C.QStaticText_NewQStaticText2(C.CString(text)))) +} + +func (ptr *QStaticText) PerformanceHint() QStaticText__PerformanceHint { + if ptr.Pointer() != nil { + return QStaticText__PerformanceHint(C.QStaticText_PerformanceHint(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStaticText) Prepare(matrix QTransformITF, font QFontITF) { + if ptr.Pointer() != nil { + C.QStaticText_Prepare(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTransform(matrix)), C.QtObjectPtr(PointerFromQFont(font))) + } +} + +func (ptr *QStaticText) SetPerformanceHint(performanceHint QStaticText__PerformanceHint) { + if ptr.Pointer() != nil { + C.QStaticText_SetPerformanceHint(C.QtObjectPtr(ptr.Pointer()), C.int(performanceHint)) + } +} + +func (ptr *QStaticText) SetText(text string) { + if ptr.Pointer() != nil { + C.QStaticText_SetText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QStaticText) SetTextFormat(textFormat core.Qt__TextFormat) { + if ptr.Pointer() != nil { + C.QStaticText_SetTextFormat(C.QtObjectPtr(ptr.Pointer()), C.int(textFormat)) + } +} + +func (ptr *QStaticText) SetTextOption(textOption QTextOptionITF) { + if ptr.Pointer() != nil { + C.QStaticText_SetTextOption(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextOption(textOption))) + } +} + +func (ptr *QStaticText) Swap(other QStaticTextITF) { + if ptr.Pointer() != nil { + C.QStaticText_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQStaticText(other))) + } +} + +func (ptr *QStaticText) Text() string { + if ptr.Pointer() != nil { + return C.GoString(C.QStaticText_Text(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QStaticText) TextFormat() core.Qt__TextFormat { + if ptr.Pointer() != nil { + return core.Qt__TextFormat(C.QStaticText_TextFormat(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStaticText) DestroyQStaticText() { + if ptr.Pointer() != nil { + C.QStaticText_DestroyQStaticText(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qstatictext.h b/gui/qstatictext.h new file mode 100755 index 00000000..3d041403 --- /dev/null +++ b/gui/qstatictext.h @@ -0,0 +1,22 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStaticText_NewQStaticText(); +QtObjectPtr QStaticText_NewQStaticText3(QtObjectPtr other); +QtObjectPtr QStaticText_NewQStaticText2(char* text); +int QStaticText_PerformanceHint(QtObjectPtr ptr); +void QStaticText_Prepare(QtObjectPtr ptr, QtObjectPtr matrix, QtObjectPtr font); +void QStaticText_SetPerformanceHint(QtObjectPtr ptr, int performanceHint); +void QStaticText_SetText(QtObjectPtr ptr, char* text); +void QStaticText_SetTextFormat(QtObjectPtr ptr, int textFormat); +void QStaticText_SetTextOption(QtObjectPtr ptr, QtObjectPtr textOption); +void QStaticText_Swap(QtObjectPtr ptr, QtObjectPtr other); +char* QStaticText_Text(QtObjectPtr ptr); +int QStaticText_TextFormat(QtObjectPtr ptr); +void QStaticText_DestroyQStaticText(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qstatustipevent.cpp b/gui/qstatustipevent.cpp new file mode 100755 index 00000000..bd00413b --- /dev/null +++ b/gui/qstatustipevent.cpp @@ -0,0 +1,20 @@ +#include "qstatustipevent.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStatusTipEvent: public QStatusTipEvent { +public: +}; + +QtObjectPtr QStatusTipEvent_NewQStatusTipEvent(char* tip){ + return new QStatusTipEvent(QString(tip)); +} + +char* QStatusTipEvent_Tip(QtObjectPtr ptr){ + return static_cast(ptr)->tip().toUtf8().data(); +} + diff --git a/gui/qstatustipevent.go b/gui/qstatustipevent.go new file mode 100755 index 00000000..dfeeb36e --- /dev/null +++ b/gui/qstatustipevent.go @@ -0,0 +1,45 @@ +package gui + +//#include "qstatustipevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QStatusTipEvent struct { + core.QEvent +} + +type QStatusTipEventITF interface { + core.QEventITF + QStatusTipEventPTR() *QStatusTipEvent +} + +func PointerFromQStatusTipEvent(ptr QStatusTipEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStatusTipEventPTR().Pointer() + } + return nil +} + +func QStatusTipEventFromPointer(ptr unsafe.Pointer) *QStatusTipEvent { + var n = new(QStatusTipEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QStatusTipEvent) QStatusTipEventPTR() *QStatusTipEvent { + return ptr +} + +func NewQStatusTipEvent(tip string) *QStatusTipEvent { + return QStatusTipEventFromPointer(unsafe.Pointer(C.QStatusTipEvent_NewQStatusTipEvent(C.CString(tip)))) +} + +func (ptr *QStatusTipEvent) Tip() string { + if ptr.Pointer() != nil { + return C.GoString(C.QStatusTipEvent_Tip(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/gui/qstatustipevent.h b/gui/qstatustipevent.h new file mode 100755 index 00000000..bc7efc7e --- /dev/null +++ b/gui/qstatustipevent.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStatusTipEvent_NewQStatusTipEvent(char* tip); +char* QStatusTipEvent_Tip(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qstylehints.cpp b/gui/qstylehints.cpp new file mode 100755 index 00000000..01603e77 --- /dev/null +++ b/gui/qstylehints.cpp @@ -0,0 +1,114 @@ +#include "qstylehints.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleHints: public QStyleHints { +public: +void Signal_CursorFlashTimeChanged(int cursorFlashTime){callbackQStyleHintsCursorFlashTimeChanged(this->objectName().toUtf8().data(), cursorFlashTime);}; +void Signal_KeyboardInputIntervalChanged(int keyboardInputInterval){callbackQStyleHintsKeyboardInputIntervalChanged(this->objectName().toUtf8().data(), keyboardInputInterval);}; +void Signal_MouseDoubleClickIntervalChanged(int mouseDoubleClickInterval){callbackQStyleHintsMouseDoubleClickIntervalChanged(this->objectName().toUtf8().data(), mouseDoubleClickInterval);}; +void Signal_StartDragDistanceChanged(int startDragDistance){callbackQStyleHintsStartDragDistanceChanged(this->objectName().toUtf8().data(), startDragDistance);}; +void Signal_StartDragTimeChanged(int startDragTime){callbackQStyleHintsStartDragTimeChanged(this->objectName().toUtf8().data(), startDragTime);}; +}; + +int QStyleHints_CursorFlashTime(QtObjectPtr ptr){ + return static_cast(ptr)->cursorFlashTime(); +} + +int QStyleHints_KeyboardAutoRepeatRate(QtObjectPtr ptr){ + return static_cast(ptr)->keyboardAutoRepeatRate(); +} + +int QStyleHints_KeyboardInputInterval(QtObjectPtr ptr){ + return static_cast(ptr)->keyboardInputInterval(); +} + +int QStyleHints_MouseDoubleClickInterval(QtObjectPtr ptr){ + return static_cast(ptr)->mouseDoubleClickInterval(); +} + +int QStyleHints_MousePressAndHoldInterval(QtObjectPtr ptr){ + return static_cast(ptr)->mousePressAndHoldInterval(); +} + +int QStyleHints_PasswordMaskDelay(QtObjectPtr ptr){ + return static_cast(ptr)->passwordMaskDelay(); +} + +int QStyleHints_SetFocusOnTouchRelease(QtObjectPtr ptr){ + return static_cast(ptr)->setFocusOnTouchRelease(); +} + +int QStyleHints_ShowIsFullScreen(QtObjectPtr ptr){ + return static_cast(ptr)->showIsFullScreen(); +} + +int QStyleHints_SingleClickActivation(QtObjectPtr ptr){ + return static_cast(ptr)->singleClickActivation(); +} + +int QStyleHints_StartDragDistance(QtObjectPtr ptr){ + return static_cast(ptr)->startDragDistance(); +} + +int QStyleHints_StartDragTime(QtObjectPtr ptr){ + return static_cast(ptr)->startDragTime(); +} + +int QStyleHints_StartDragVelocity(QtObjectPtr ptr){ + return static_cast(ptr)->startDragVelocity(); +} + +int QStyleHints_TabFocusBehavior(QtObjectPtr ptr){ + return static_cast(ptr)->tabFocusBehavior(); +} + +int QStyleHints_UseRtlExtensions(QtObjectPtr ptr){ + return static_cast(ptr)->useRtlExtensions(); +} + +void QStyleHints_ConnectCursorFlashTimeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QStyleHints::cursorFlashTimeChanged), static_cast(ptr), static_cast(&MyQStyleHints::Signal_CursorFlashTimeChanged));; +} + +void QStyleHints_DisconnectCursorFlashTimeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QStyleHints::cursorFlashTimeChanged), static_cast(ptr), static_cast(&MyQStyleHints::Signal_CursorFlashTimeChanged));; +} + +void QStyleHints_ConnectKeyboardInputIntervalChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QStyleHints::keyboardInputIntervalChanged), static_cast(ptr), static_cast(&MyQStyleHints::Signal_KeyboardInputIntervalChanged));; +} + +void QStyleHints_DisconnectKeyboardInputIntervalChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QStyleHints::keyboardInputIntervalChanged), static_cast(ptr), static_cast(&MyQStyleHints::Signal_KeyboardInputIntervalChanged));; +} + +void QStyleHints_ConnectMouseDoubleClickIntervalChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QStyleHints::mouseDoubleClickIntervalChanged), static_cast(ptr), static_cast(&MyQStyleHints::Signal_MouseDoubleClickIntervalChanged));; +} + +void QStyleHints_DisconnectMouseDoubleClickIntervalChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QStyleHints::mouseDoubleClickIntervalChanged), static_cast(ptr), static_cast(&MyQStyleHints::Signal_MouseDoubleClickIntervalChanged));; +} + +void QStyleHints_ConnectStartDragDistanceChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QStyleHints::startDragDistanceChanged), static_cast(ptr), static_cast(&MyQStyleHints::Signal_StartDragDistanceChanged));; +} + +void QStyleHints_DisconnectStartDragDistanceChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QStyleHints::startDragDistanceChanged), static_cast(ptr), static_cast(&MyQStyleHints::Signal_StartDragDistanceChanged));; +} + +void QStyleHints_ConnectStartDragTimeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QStyleHints::startDragTimeChanged), static_cast(ptr), static_cast(&MyQStyleHints::Signal_StartDragTimeChanged));; +} + +void QStyleHints_DisconnectStartDragTimeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QStyleHints::startDragTimeChanged), static_cast(ptr), static_cast(&MyQStyleHints::Signal_StartDragTimeChanged));; +} + diff --git a/gui/qstylehints.go b/gui/qstylehints.go new file mode 100755 index 00000000..3eb03015 --- /dev/null +++ b/gui/qstylehints.go @@ -0,0 +1,231 @@ +package gui + +//#include "qstylehints.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QStyleHints struct { + core.QObject +} + +type QStyleHintsITF interface { + core.QObjectITF + QStyleHintsPTR() *QStyleHints +} + +func PointerFromQStyleHints(ptr QStyleHintsITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleHintsPTR().Pointer() + } + return nil +} + +func QStyleHintsFromPointer(ptr unsafe.Pointer) *QStyleHints { + var n = new(QStyleHints) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QStyleHints_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QStyleHints) QStyleHintsPTR() *QStyleHints { + return ptr +} + +func (ptr *QStyleHints) CursorFlashTime() int { + if ptr.Pointer() != nil { + return int(C.QStyleHints_CursorFlashTime(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStyleHints) KeyboardAutoRepeatRate() int { + if ptr.Pointer() != nil { + return int(C.QStyleHints_KeyboardAutoRepeatRate(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStyleHints) KeyboardInputInterval() int { + if ptr.Pointer() != nil { + return int(C.QStyleHints_KeyboardInputInterval(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStyleHints) MouseDoubleClickInterval() int { + if ptr.Pointer() != nil { + return int(C.QStyleHints_MouseDoubleClickInterval(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStyleHints) MousePressAndHoldInterval() int { + if ptr.Pointer() != nil { + return int(C.QStyleHints_MousePressAndHoldInterval(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStyleHints) PasswordMaskDelay() int { + if ptr.Pointer() != nil { + return int(C.QStyleHints_PasswordMaskDelay(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStyleHints) SetFocusOnTouchRelease() bool { + if ptr.Pointer() != nil { + return C.QStyleHints_SetFocusOnTouchRelease(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QStyleHints) ShowIsFullScreen() bool { + if ptr.Pointer() != nil { + return C.QStyleHints_ShowIsFullScreen(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QStyleHints) SingleClickActivation() bool { + if ptr.Pointer() != nil { + return C.QStyleHints_SingleClickActivation(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QStyleHints) StartDragDistance() int { + if ptr.Pointer() != nil { + return int(C.QStyleHints_StartDragDistance(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStyleHints) StartDragTime() int { + if ptr.Pointer() != nil { + return int(C.QStyleHints_StartDragTime(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStyleHints) StartDragVelocity() int { + if ptr.Pointer() != nil { + return int(C.QStyleHints_StartDragVelocity(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStyleHints) TabFocusBehavior() core.Qt__TabFocusBehavior { + if ptr.Pointer() != nil { + return core.Qt__TabFocusBehavior(C.QStyleHints_TabFocusBehavior(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStyleHints) UseRtlExtensions() bool { + if ptr.Pointer() != nil { + return C.QStyleHints_UseRtlExtensions(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QStyleHints) ConnectCursorFlashTimeChanged(f func(cursorFlashTime int)) { + if ptr.Pointer() != nil { + C.QStyleHints_ConnectCursorFlashTimeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "cursorFlashTimeChanged", f) + } +} + +func (ptr *QStyleHints) DisconnectCursorFlashTimeChanged() { + if ptr.Pointer() != nil { + C.QStyleHints_DisconnectCursorFlashTimeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "cursorFlashTimeChanged") + } +} + +//export callbackQStyleHintsCursorFlashTimeChanged +func callbackQStyleHintsCursorFlashTimeChanged(ptrName *C.char, cursorFlashTime C.int) { + qt.GetSignal(C.GoString(ptrName), "cursorFlashTimeChanged").(func(int))(int(cursorFlashTime)) +} + +func (ptr *QStyleHints) ConnectKeyboardInputIntervalChanged(f func(keyboardInputInterval int)) { + if ptr.Pointer() != nil { + C.QStyleHints_ConnectKeyboardInputIntervalChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "keyboardInputIntervalChanged", f) + } +} + +func (ptr *QStyleHints) DisconnectKeyboardInputIntervalChanged() { + if ptr.Pointer() != nil { + C.QStyleHints_DisconnectKeyboardInputIntervalChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "keyboardInputIntervalChanged") + } +} + +//export callbackQStyleHintsKeyboardInputIntervalChanged +func callbackQStyleHintsKeyboardInputIntervalChanged(ptrName *C.char, keyboardInputInterval C.int) { + qt.GetSignal(C.GoString(ptrName), "keyboardInputIntervalChanged").(func(int))(int(keyboardInputInterval)) +} + +func (ptr *QStyleHints) ConnectMouseDoubleClickIntervalChanged(f func(mouseDoubleClickInterval int)) { + if ptr.Pointer() != nil { + C.QStyleHints_ConnectMouseDoubleClickIntervalChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "mouseDoubleClickIntervalChanged", f) + } +} + +func (ptr *QStyleHints) DisconnectMouseDoubleClickIntervalChanged() { + if ptr.Pointer() != nil { + C.QStyleHints_DisconnectMouseDoubleClickIntervalChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "mouseDoubleClickIntervalChanged") + } +} + +//export callbackQStyleHintsMouseDoubleClickIntervalChanged +func callbackQStyleHintsMouseDoubleClickIntervalChanged(ptrName *C.char, mouseDoubleClickInterval C.int) { + qt.GetSignal(C.GoString(ptrName), "mouseDoubleClickIntervalChanged").(func(int))(int(mouseDoubleClickInterval)) +} + +func (ptr *QStyleHints) ConnectStartDragDistanceChanged(f func(startDragDistance int)) { + if ptr.Pointer() != nil { + C.QStyleHints_ConnectStartDragDistanceChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "startDragDistanceChanged", f) + } +} + +func (ptr *QStyleHints) DisconnectStartDragDistanceChanged() { + if ptr.Pointer() != nil { + C.QStyleHints_DisconnectStartDragDistanceChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "startDragDistanceChanged") + } +} + +//export callbackQStyleHintsStartDragDistanceChanged +func callbackQStyleHintsStartDragDistanceChanged(ptrName *C.char, startDragDistance C.int) { + qt.GetSignal(C.GoString(ptrName), "startDragDistanceChanged").(func(int))(int(startDragDistance)) +} + +func (ptr *QStyleHints) ConnectStartDragTimeChanged(f func(startDragTime int)) { + if ptr.Pointer() != nil { + C.QStyleHints_ConnectStartDragTimeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "startDragTimeChanged", f) + } +} + +func (ptr *QStyleHints) DisconnectStartDragTimeChanged() { + if ptr.Pointer() != nil { + C.QStyleHints_DisconnectStartDragTimeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "startDragTimeChanged") + } +} + +//export callbackQStyleHintsStartDragTimeChanged +func callbackQStyleHintsStartDragTimeChanged(ptrName *C.char, startDragTime C.int) { + qt.GetSignal(C.GoString(ptrName), "startDragTimeChanged").(func(int))(int(startDragTime)) +} diff --git a/gui/qstylehints.h b/gui/qstylehints.h new file mode 100755 index 00000000..99953675 --- /dev/null +++ b/gui/qstylehints.h @@ -0,0 +1,33 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QStyleHints_CursorFlashTime(QtObjectPtr ptr); +int QStyleHints_KeyboardAutoRepeatRate(QtObjectPtr ptr); +int QStyleHints_KeyboardInputInterval(QtObjectPtr ptr); +int QStyleHints_MouseDoubleClickInterval(QtObjectPtr ptr); +int QStyleHints_MousePressAndHoldInterval(QtObjectPtr ptr); +int QStyleHints_PasswordMaskDelay(QtObjectPtr ptr); +int QStyleHints_SetFocusOnTouchRelease(QtObjectPtr ptr); +int QStyleHints_ShowIsFullScreen(QtObjectPtr ptr); +int QStyleHints_SingleClickActivation(QtObjectPtr ptr); +int QStyleHints_StartDragDistance(QtObjectPtr ptr); +int QStyleHints_StartDragTime(QtObjectPtr ptr); +int QStyleHints_StartDragVelocity(QtObjectPtr ptr); +int QStyleHints_TabFocusBehavior(QtObjectPtr ptr); +int QStyleHints_UseRtlExtensions(QtObjectPtr ptr); +void QStyleHints_ConnectCursorFlashTimeChanged(QtObjectPtr ptr); +void QStyleHints_DisconnectCursorFlashTimeChanged(QtObjectPtr ptr); +void QStyleHints_ConnectKeyboardInputIntervalChanged(QtObjectPtr ptr); +void QStyleHints_DisconnectKeyboardInputIntervalChanged(QtObjectPtr ptr); +void QStyleHints_ConnectMouseDoubleClickIntervalChanged(QtObjectPtr ptr); +void QStyleHints_DisconnectMouseDoubleClickIntervalChanged(QtObjectPtr ptr); +void QStyleHints_ConnectStartDragDistanceChanged(QtObjectPtr ptr); +void QStyleHints_DisconnectStartDragDistanceChanged(QtObjectPtr ptr); +void QStyleHints_ConnectStartDragTimeChanged(QtObjectPtr ptr); +void QStyleHints_DisconnectStartDragTimeChanged(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qsupportedwritingsystems.cpp b/gui/qsupportedwritingsystems.cpp new file mode 100755 index 00000000..0f271a83 --- /dev/null +++ b/gui/qsupportedwritingsystems.cpp @@ -0,0 +1,7 @@ +#include "qsupportedwritingsystems.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/gui/qsupportedwritingsystems.go b/gui/qsupportedwritingsystems.go new file mode 100755 index 00000000..01062fac --- /dev/null +++ b/gui/qsupportedwritingsystems.go @@ -0,0 +1,40 @@ +package gui + +//#include "qsupportedwritingsystems.h" +import "C" +import ( + "unsafe" +) + +type QSupportedWritingSystems struct { + ptr unsafe.Pointer +} + +type QSupportedWritingSystemsITF interface { + QSupportedWritingSystemsPTR() *QSupportedWritingSystems +} + +func (p *QSupportedWritingSystems) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSupportedWritingSystems) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSupportedWritingSystems(ptr QSupportedWritingSystemsITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSupportedWritingSystemsPTR().Pointer() + } + return nil +} + +func QSupportedWritingSystemsFromPointer(ptr unsafe.Pointer) *QSupportedWritingSystems { + var n = new(QSupportedWritingSystems) + n.SetPointer(ptr) + return n +} + +func (ptr *QSupportedWritingSystems) QSupportedWritingSystemsPTR() *QSupportedWritingSystems { + return ptr +} diff --git a/gui/qsupportedwritingsystems.h b/gui/qsupportedwritingsystems.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/gui/qsupportedwritingsystems.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qsurface.cpp b/gui/qsurface.cpp new file mode 100755 index 00000000..132d6d9c --- /dev/null +++ b/gui/qsurface.cpp @@ -0,0 +1,28 @@ +#include "qsurface.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSurface: public QSurface { +public: +}; + +int QSurface_SupportsOpenGL(QtObjectPtr ptr){ + return static_cast(ptr)->supportsOpenGL(); +} + +int QSurface_SurfaceClass(QtObjectPtr ptr){ + return static_cast(ptr)->surfaceClass(); +} + +int QSurface_SurfaceType(QtObjectPtr ptr){ + return static_cast(ptr)->surfaceType(); +} + +void QSurface_DestroyQSurface(QtObjectPtr ptr){ + static_cast(ptr)->~QSurface(); +} + diff --git a/gui/qsurface.go b/gui/qsurface.go new file mode 100755 index 00000000..ffc6c2af --- /dev/null +++ b/gui/qsurface.go @@ -0,0 +1,84 @@ +package gui + +//#include "qsurface.h" +import "C" +import ( + "unsafe" +) + +type QSurface struct { + ptr unsafe.Pointer +} + +type QSurfaceITF interface { + QSurfacePTR() *QSurface +} + +func (p *QSurface) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSurface) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSurface(ptr QSurfaceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSurfacePTR().Pointer() + } + return nil +} + +func QSurfaceFromPointer(ptr unsafe.Pointer) *QSurface { + var n = new(QSurface) + n.SetPointer(ptr) + return n +} + +func (ptr *QSurface) QSurfacePTR() *QSurface { + return ptr +} + +//QSurface::SurfaceClass +type QSurface__SurfaceClass int + +var ( + QSurface__Window = QSurface__SurfaceClass(0) + QSurface__Offscreen = QSurface__SurfaceClass(1) +) + +//QSurface::SurfaceType +type QSurface__SurfaceType int + +var ( + QSurface__RasterSurface = QSurface__SurfaceType(0) + QSurface__OpenGLSurface = QSurface__SurfaceType(1) + QSurface__RasterGLSurface = QSurface__SurfaceType(2) +) + +func (ptr *QSurface) SupportsOpenGL() bool { + if ptr.Pointer() != nil { + return C.QSurface_SupportsOpenGL(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSurface) SurfaceClass() QSurface__SurfaceClass { + if ptr.Pointer() != nil { + return QSurface__SurfaceClass(C.QSurface_SurfaceClass(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSurface) SurfaceType() QSurface__SurfaceType { + if ptr.Pointer() != nil { + return QSurface__SurfaceType(C.QSurface_SurfaceType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSurface) DestroyQSurface() { + if ptr.Pointer() != nil { + C.QSurface_DestroyQSurface(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qsurface.h b/gui/qsurface.h new file mode 100755 index 00000000..8fe67963 --- /dev/null +++ b/gui/qsurface.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QSurface_SupportsOpenGL(QtObjectPtr ptr); +int QSurface_SurfaceClass(QtObjectPtr ptr); +int QSurface_SurfaceType(QtObjectPtr ptr); +void QSurface_DestroyQSurface(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qsurfaceformat.cpp b/gui/qsurfaceformat.cpp new file mode 100755 index 00000000..b295e016 --- /dev/null +++ b/gui/qsurfaceformat.cpp @@ -0,0 +1,169 @@ +#include "qsurfaceformat.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSurfaceFormat: public QSurfaceFormat { +public: +}; + +QtObjectPtr QSurfaceFormat_NewQSurfaceFormat(){ + return new QSurfaceFormat(); +} + +QtObjectPtr QSurfaceFormat_NewQSurfaceFormat2(int options){ + return new QSurfaceFormat(static_cast(options)); +} + +QtObjectPtr QSurfaceFormat_NewQSurfaceFormat3(QtObjectPtr other){ + return new QSurfaceFormat(*static_cast(other)); +} + +int QSurfaceFormat_AlphaBufferSize(QtObjectPtr ptr){ + return static_cast(ptr)->alphaBufferSize(); +} + +int QSurfaceFormat_BlueBufferSize(QtObjectPtr ptr){ + return static_cast(ptr)->blueBufferSize(); +} + +int QSurfaceFormat_DepthBufferSize(QtObjectPtr ptr){ + return static_cast(ptr)->depthBufferSize(); +} + +int QSurfaceFormat_GreenBufferSize(QtObjectPtr ptr){ + return static_cast(ptr)->greenBufferSize(); +} + +int QSurfaceFormat_HasAlpha(QtObjectPtr ptr){ + return static_cast(ptr)->hasAlpha(); +} + +int QSurfaceFormat_MajorVersion(QtObjectPtr ptr){ + return static_cast(ptr)->majorVersion(); +} + +int QSurfaceFormat_MinorVersion(QtObjectPtr ptr){ + return static_cast(ptr)->minorVersion(); +} + +int QSurfaceFormat_Options(QtObjectPtr ptr){ + return static_cast(ptr)->options(); +} + +int QSurfaceFormat_Profile(QtObjectPtr ptr){ + return static_cast(ptr)->profile(); +} + +int QSurfaceFormat_RedBufferSize(QtObjectPtr ptr){ + return static_cast(ptr)->redBufferSize(); +} + +int QSurfaceFormat_RenderableType(QtObjectPtr ptr){ + return static_cast(ptr)->renderableType(); +} + +int QSurfaceFormat_Samples(QtObjectPtr ptr){ + return static_cast(ptr)->samples(); +} + +void QSurfaceFormat_SetAlphaBufferSize(QtObjectPtr ptr, int size){ + static_cast(ptr)->setAlphaBufferSize(size); +} + +void QSurfaceFormat_SetBlueBufferSize(QtObjectPtr ptr, int size){ + static_cast(ptr)->setBlueBufferSize(size); +} + +void QSurfaceFormat_QSurfaceFormat_SetDefaultFormat(QtObjectPtr format){ + QSurfaceFormat::setDefaultFormat(*static_cast(format)); +} + +void QSurfaceFormat_SetDepthBufferSize(QtObjectPtr ptr, int size){ + static_cast(ptr)->setDepthBufferSize(size); +} + +void QSurfaceFormat_SetGreenBufferSize(QtObjectPtr ptr, int size){ + static_cast(ptr)->setGreenBufferSize(size); +} + +void QSurfaceFormat_SetMajorVersion(QtObjectPtr ptr, int major){ + static_cast(ptr)->setMajorVersion(major); +} + +void QSurfaceFormat_SetMinorVersion(QtObjectPtr ptr, int minor){ + static_cast(ptr)->setMinorVersion(minor); +} + +void QSurfaceFormat_SetOption(QtObjectPtr ptr, int option, int on){ + static_cast(ptr)->setOption(static_cast(option), on != 0); +} + +void QSurfaceFormat_SetOptions(QtObjectPtr ptr, int options){ + static_cast(ptr)->setOptions(static_cast(options)); +} + +void QSurfaceFormat_SetProfile(QtObjectPtr ptr, int profile){ + static_cast(ptr)->setProfile(static_cast(profile)); +} + +void QSurfaceFormat_SetRedBufferSize(QtObjectPtr ptr, int size){ + static_cast(ptr)->setRedBufferSize(size); +} + +void QSurfaceFormat_SetRenderableType(QtObjectPtr ptr, int ty){ + static_cast(ptr)->setRenderableType(static_cast(ty)); +} + +void QSurfaceFormat_SetSamples(QtObjectPtr ptr, int numSamples){ + static_cast(ptr)->setSamples(numSamples); +} + +void QSurfaceFormat_SetStencilBufferSize(QtObjectPtr ptr, int size){ + static_cast(ptr)->setStencilBufferSize(size); +} + +void QSurfaceFormat_SetStereo(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setStereo(enable != 0); +} + +void QSurfaceFormat_SetSwapBehavior(QtObjectPtr ptr, int behavior){ + static_cast(ptr)->setSwapBehavior(static_cast(behavior)); +} + +void QSurfaceFormat_SetSwapInterval(QtObjectPtr ptr, int interval){ + static_cast(ptr)->setSwapInterval(interval); +} + +void QSurfaceFormat_SetVersion(QtObjectPtr ptr, int major, int minor){ + static_cast(ptr)->setVersion(major, minor); +} + +int QSurfaceFormat_StencilBufferSize(QtObjectPtr ptr){ + return static_cast(ptr)->stencilBufferSize(); +} + +int QSurfaceFormat_Stereo(QtObjectPtr ptr){ + return static_cast(ptr)->stereo(); +} + +int QSurfaceFormat_SwapBehavior(QtObjectPtr ptr){ + return static_cast(ptr)->swapBehavior(); +} + +int QSurfaceFormat_SwapInterval(QtObjectPtr ptr){ + return static_cast(ptr)->swapInterval(); +} + +int QSurfaceFormat_TestOption(QtObjectPtr ptr, int option){ + return static_cast(ptr)->testOption(static_cast(option)); +} + +void QSurfaceFormat_DestroyQSurfaceFormat(QtObjectPtr ptr){ + static_cast(ptr)->~QSurfaceFormat(); +} + diff --git a/gui/qsurfaceformat.go b/gui/qsurfaceformat.go new file mode 100755 index 00000000..c95a2834 --- /dev/null +++ b/gui/qsurfaceformat.go @@ -0,0 +1,323 @@ +package gui + +//#include "qsurfaceformat.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QSurfaceFormat struct { + ptr unsafe.Pointer +} + +type QSurfaceFormatITF interface { + QSurfaceFormatPTR() *QSurfaceFormat +} + +func (p *QSurfaceFormat) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSurfaceFormat) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSurfaceFormat(ptr QSurfaceFormatITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSurfaceFormatPTR().Pointer() + } + return nil +} + +func QSurfaceFormatFromPointer(ptr unsafe.Pointer) *QSurfaceFormat { + var n = new(QSurfaceFormat) + n.SetPointer(ptr) + return n +} + +func (ptr *QSurfaceFormat) QSurfaceFormatPTR() *QSurfaceFormat { + return ptr +} + +//QSurfaceFormat::FormatOption +type QSurfaceFormat__FormatOption int + +var ( + QSurfaceFormat__StereoBuffers = QSurfaceFormat__FormatOption(0x0001) + QSurfaceFormat__DebugContext = QSurfaceFormat__FormatOption(0x0002) + QSurfaceFormat__DeprecatedFunctions = QSurfaceFormat__FormatOption(0x0004) + QSurfaceFormat__ResetNotification = QSurfaceFormat__FormatOption(0x0008) +) + +//QSurfaceFormat::OpenGLContextProfile +type QSurfaceFormat__OpenGLContextProfile int + +var ( + QSurfaceFormat__NoProfile = QSurfaceFormat__OpenGLContextProfile(0) + QSurfaceFormat__CoreProfile = QSurfaceFormat__OpenGLContextProfile(1) + QSurfaceFormat__CompatibilityProfile = QSurfaceFormat__OpenGLContextProfile(2) +) + +//QSurfaceFormat::RenderableType +type QSurfaceFormat__RenderableType int + +var ( + QSurfaceFormat__DefaultRenderableType = QSurfaceFormat__RenderableType(0x0) + QSurfaceFormat__OpenGL = QSurfaceFormat__RenderableType(0x1) + QSurfaceFormat__OpenGLES = QSurfaceFormat__RenderableType(0x2) + QSurfaceFormat__OpenVG = QSurfaceFormat__RenderableType(0x4) +) + +//QSurfaceFormat::SwapBehavior +type QSurfaceFormat__SwapBehavior int + +var ( + QSurfaceFormat__DefaultSwapBehavior = QSurfaceFormat__SwapBehavior(0) + QSurfaceFormat__SingleBuffer = QSurfaceFormat__SwapBehavior(1) + QSurfaceFormat__DoubleBuffer = QSurfaceFormat__SwapBehavior(2) + QSurfaceFormat__TripleBuffer = QSurfaceFormat__SwapBehavior(3) +) + +func NewQSurfaceFormat() *QSurfaceFormat { + return QSurfaceFormatFromPointer(unsafe.Pointer(C.QSurfaceFormat_NewQSurfaceFormat())) +} + +func NewQSurfaceFormat2(options QSurfaceFormat__FormatOption) *QSurfaceFormat { + return QSurfaceFormatFromPointer(unsafe.Pointer(C.QSurfaceFormat_NewQSurfaceFormat2(C.int(options)))) +} + +func NewQSurfaceFormat3(other QSurfaceFormatITF) *QSurfaceFormat { + return QSurfaceFormatFromPointer(unsafe.Pointer(C.QSurfaceFormat_NewQSurfaceFormat3(C.QtObjectPtr(PointerFromQSurfaceFormat(other))))) +} + +func (ptr *QSurfaceFormat) AlphaBufferSize() int { + if ptr.Pointer() != nil { + return int(C.QSurfaceFormat_AlphaBufferSize(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSurfaceFormat) BlueBufferSize() int { + if ptr.Pointer() != nil { + return int(C.QSurfaceFormat_BlueBufferSize(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSurfaceFormat) DepthBufferSize() int { + if ptr.Pointer() != nil { + return int(C.QSurfaceFormat_DepthBufferSize(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSurfaceFormat) GreenBufferSize() int { + if ptr.Pointer() != nil { + return int(C.QSurfaceFormat_GreenBufferSize(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSurfaceFormat) HasAlpha() bool { + if ptr.Pointer() != nil { + return C.QSurfaceFormat_HasAlpha(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSurfaceFormat) MajorVersion() int { + if ptr.Pointer() != nil { + return int(C.QSurfaceFormat_MajorVersion(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSurfaceFormat) MinorVersion() int { + if ptr.Pointer() != nil { + return int(C.QSurfaceFormat_MinorVersion(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSurfaceFormat) Options() QSurfaceFormat__FormatOption { + if ptr.Pointer() != nil { + return QSurfaceFormat__FormatOption(C.QSurfaceFormat_Options(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSurfaceFormat) Profile() QSurfaceFormat__OpenGLContextProfile { + if ptr.Pointer() != nil { + return QSurfaceFormat__OpenGLContextProfile(C.QSurfaceFormat_Profile(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSurfaceFormat) RedBufferSize() int { + if ptr.Pointer() != nil { + return int(C.QSurfaceFormat_RedBufferSize(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSurfaceFormat) RenderableType() QSurfaceFormat__RenderableType { + if ptr.Pointer() != nil { + return QSurfaceFormat__RenderableType(C.QSurfaceFormat_RenderableType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSurfaceFormat) Samples() int { + if ptr.Pointer() != nil { + return int(C.QSurfaceFormat_Samples(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSurfaceFormat) SetAlphaBufferSize(size int) { + if ptr.Pointer() != nil { + C.QSurfaceFormat_SetAlphaBufferSize(C.QtObjectPtr(ptr.Pointer()), C.int(size)) + } +} + +func (ptr *QSurfaceFormat) SetBlueBufferSize(size int) { + if ptr.Pointer() != nil { + C.QSurfaceFormat_SetBlueBufferSize(C.QtObjectPtr(ptr.Pointer()), C.int(size)) + } +} + +func QSurfaceFormat_SetDefaultFormat(format QSurfaceFormatITF) { + C.QSurfaceFormat_QSurfaceFormat_SetDefaultFormat(C.QtObjectPtr(PointerFromQSurfaceFormat(format))) +} + +func (ptr *QSurfaceFormat) SetDepthBufferSize(size int) { + if ptr.Pointer() != nil { + C.QSurfaceFormat_SetDepthBufferSize(C.QtObjectPtr(ptr.Pointer()), C.int(size)) + } +} + +func (ptr *QSurfaceFormat) SetGreenBufferSize(size int) { + if ptr.Pointer() != nil { + C.QSurfaceFormat_SetGreenBufferSize(C.QtObjectPtr(ptr.Pointer()), C.int(size)) + } +} + +func (ptr *QSurfaceFormat) SetMajorVersion(major int) { + if ptr.Pointer() != nil { + C.QSurfaceFormat_SetMajorVersion(C.QtObjectPtr(ptr.Pointer()), C.int(major)) + } +} + +func (ptr *QSurfaceFormat) SetMinorVersion(minor int) { + if ptr.Pointer() != nil { + C.QSurfaceFormat_SetMinorVersion(C.QtObjectPtr(ptr.Pointer()), C.int(minor)) + } +} + +func (ptr *QSurfaceFormat) SetOption(option QSurfaceFormat__FormatOption, on bool) { + if ptr.Pointer() != nil { + C.QSurfaceFormat_SetOption(C.QtObjectPtr(ptr.Pointer()), C.int(option), C.int(qt.GoBoolToInt(on))) + } +} + +func (ptr *QSurfaceFormat) SetOptions(options QSurfaceFormat__FormatOption) { + if ptr.Pointer() != nil { + C.QSurfaceFormat_SetOptions(C.QtObjectPtr(ptr.Pointer()), C.int(options)) + } +} + +func (ptr *QSurfaceFormat) SetProfile(profile QSurfaceFormat__OpenGLContextProfile) { + if ptr.Pointer() != nil { + C.QSurfaceFormat_SetProfile(C.QtObjectPtr(ptr.Pointer()), C.int(profile)) + } +} + +func (ptr *QSurfaceFormat) SetRedBufferSize(size int) { + if ptr.Pointer() != nil { + C.QSurfaceFormat_SetRedBufferSize(C.QtObjectPtr(ptr.Pointer()), C.int(size)) + } +} + +func (ptr *QSurfaceFormat) SetRenderableType(ty QSurfaceFormat__RenderableType) { + if ptr.Pointer() != nil { + C.QSurfaceFormat_SetRenderableType(C.QtObjectPtr(ptr.Pointer()), C.int(ty)) + } +} + +func (ptr *QSurfaceFormat) SetSamples(numSamples int) { + if ptr.Pointer() != nil { + C.QSurfaceFormat_SetSamples(C.QtObjectPtr(ptr.Pointer()), C.int(numSamples)) + } +} + +func (ptr *QSurfaceFormat) SetStencilBufferSize(size int) { + if ptr.Pointer() != nil { + C.QSurfaceFormat_SetStencilBufferSize(C.QtObjectPtr(ptr.Pointer()), C.int(size)) + } +} + +func (ptr *QSurfaceFormat) SetStereo(enable bool) { + if ptr.Pointer() != nil { + C.QSurfaceFormat_SetStereo(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QSurfaceFormat) SetSwapBehavior(behavior QSurfaceFormat__SwapBehavior) { + if ptr.Pointer() != nil { + C.QSurfaceFormat_SetSwapBehavior(C.QtObjectPtr(ptr.Pointer()), C.int(behavior)) + } +} + +func (ptr *QSurfaceFormat) SetSwapInterval(interval int) { + if ptr.Pointer() != nil { + C.QSurfaceFormat_SetSwapInterval(C.QtObjectPtr(ptr.Pointer()), C.int(interval)) + } +} + +func (ptr *QSurfaceFormat) SetVersion(major int, minor int) { + if ptr.Pointer() != nil { + C.QSurfaceFormat_SetVersion(C.QtObjectPtr(ptr.Pointer()), C.int(major), C.int(minor)) + } +} + +func (ptr *QSurfaceFormat) StencilBufferSize() int { + if ptr.Pointer() != nil { + return int(C.QSurfaceFormat_StencilBufferSize(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSurfaceFormat) Stereo() bool { + if ptr.Pointer() != nil { + return C.QSurfaceFormat_Stereo(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSurfaceFormat) SwapBehavior() QSurfaceFormat__SwapBehavior { + if ptr.Pointer() != nil { + return QSurfaceFormat__SwapBehavior(C.QSurfaceFormat_SwapBehavior(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSurfaceFormat) SwapInterval() int { + if ptr.Pointer() != nil { + return int(C.QSurfaceFormat_SwapInterval(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSurfaceFormat) TestOption(option QSurfaceFormat__FormatOption) bool { + if ptr.Pointer() != nil { + return C.QSurfaceFormat_TestOption(C.QtObjectPtr(ptr.Pointer()), C.int(option)) != 0 + } + return false +} + +func (ptr *QSurfaceFormat) DestroyQSurfaceFormat() { + if ptr.Pointer() != nil { + C.QSurfaceFormat_DestroyQSurfaceFormat(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qsurfaceformat.h b/gui/qsurfaceformat.h new file mode 100755 index 00000000..ec3f42d9 --- /dev/null +++ b/gui/qsurfaceformat.h @@ -0,0 +1,48 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSurfaceFormat_NewQSurfaceFormat(); +QtObjectPtr QSurfaceFormat_NewQSurfaceFormat2(int options); +QtObjectPtr QSurfaceFormat_NewQSurfaceFormat3(QtObjectPtr other); +int QSurfaceFormat_AlphaBufferSize(QtObjectPtr ptr); +int QSurfaceFormat_BlueBufferSize(QtObjectPtr ptr); +int QSurfaceFormat_DepthBufferSize(QtObjectPtr ptr); +int QSurfaceFormat_GreenBufferSize(QtObjectPtr ptr); +int QSurfaceFormat_HasAlpha(QtObjectPtr ptr); +int QSurfaceFormat_MajorVersion(QtObjectPtr ptr); +int QSurfaceFormat_MinorVersion(QtObjectPtr ptr); +int QSurfaceFormat_Options(QtObjectPtr ptr); +int QSurfaceFormat_Profile(QtObjectPtr ptr); +int QSurfaceFormat_RedBufferSize(QtObjectPtr ptr); +int QSurfaceFormat_RenderableType(QtObjectPtr ptr); +int QSurfaceFormat_Samples(QtObjectPtr ptr); +void QSurfaceFormat_SetAlphaBufferSize(QtObjectPtr ptr, int size); +void QSurfaceFormat_SetBlueBufferSize(QtObjectPtr ptr, int size); +void QSurfaceFormat_QSurfaceFormat_SetDefaultFormat(QtObjectPtr format); +void QSurfaceFormat_SetDepthBufferSize(QtObjectPtr ptr, int size); +void QSurfaceFormat_SetGreenBufferSize(QtObjectPtr ptr, int size); +void QSurfaceFormat_SetMajorVersion(QtObjectPtr ptr, int major); +void QSurfaceFormat_SetMinorVersion(QtObjectPtr ptr, int minor); +void QSurfaceFormat_SetOption(QtObjectPtr ptr, int option, int on); +void QSurfaceFormat_SetOptions(QtObjectPtr ptr, int options); +void QSurfaceFormat_SetProfile(QtObjectPtr ptr, int profile); +void QSurfaceFormat_SetRedBufferSize(QtObjectPtr ptr, int size); +void QSurfaceFormat_SetRenderableType(QtObjectPtr ptr, int ty); +void QSurfaceFormat_SetSamples(QtObjectPtr ptr, int numSamples); +void QSurfaceFormat_SetStencilBufferSize(QtObjectPtr ptr, int size); +void QSurfaceFormat_SetStereo(QtObjectPtr ptr, int enable); +void QSurfaceFormat_SetSwapBehavior(QtObjectPtr ptr, int behavior); +void QSurfaceFormat_SetSwapInterval(QtObjectPtr ptr, int interval); +void QSurfaceFormat_SetVersion(QtObjectPtr ptr, int major, int minor); +int QSurfaceFormat_StencilBufferSize(QtObjectPtr ptr); +int QSurfaceFormat_Stereo(QtObjectPtr ptr); +int QSurfaceFormat_SwapBehavior(QtObjectPtr ptr); +int QSurfaceFormat_SwapInterval(QtObjectPtr ptr); +int QSurfaceFormat_TestOption(QtObjectPtr ptr, int option); +void QSurfaceFormat_DestroyQSurfaceFormat(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qsyntaxhighlighter.cpp b/gui/qsyntaxhighlighter.cpp new file mode 100755 index 00000000..7ed0ba98 --- /dev/null +++ b/gui/qsyntaxhighlighter.cpp @@ -0,0 +1,35 @@ +#include "qsyntaxhighlighter.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSyntaxHighlighter: public QSyntaxHighlighter { +public: +}; + +QtObjectPtr QSyntaxHighlighter_Document(QtObjectPtr ptr){ + return static_cast(ptr)->document(); +} + +void QSyntaxHighlighter_Rehighlight(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "rehighlight"); +} + +void QSyntaxHighlighter_RehighlightBlock(QtObjectPtr ptr, QtObjectPtr block){ + QMetaObject::invokeMethod(static_cast(ptr), "rehighlightBlock", Q_ARG(QTextBlock, *static_cast(block))); +} + +void QSyntaxHighlighter_SetDocument(QtObjectPtr ptr, QtObjectPtr doc){ + static_cast(ptr)->setDocument(static_cast(doc)); +} + +void QSyntaxHighlighter_DestroyQSyntaxHighlighter(QtObjectPtr ptr){ + static_cast(ptr)->~QSyntaxHighlighter(); +} + diff --git a/gui/qsyntaxhighlighter.go b/gui/qsyntaxhighlighter.go new file mode 100755 index 00000000..072ad76f --- /dev/null +++ b/gui/qsyntaxhighlighter.go @@ -0,0 +1,70 @@ +package gui + +//#include "qsyntaxhighlighter.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QSyntaxHighlighter struct { + core.QObject +} + +type QSyntaxHighlighterITF interface { + core.QObjectITF + QSyntaxHighlighterPTR() *QSyntaxHighlighter +} + +func PointerFromQSyntaxHighlighter(ptr QSyntaxHighlighterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSyntaxHighlighterPTR().Pointer() + } + return nil +} + +func QSyntaxHighlighterFromPointer(ptr unsafe.Pointer) *QSyntaxHighlighter { + var n = new(QSyntaxHighlighter) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSyntaxHighlighter_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSyntaxHighlighter) QSyntaxHighlighterPTR() *QSyntaxHighlighter { + return ptr +} + +func (ptr *QSyntaxHighlighter) Document() *QTextDocument { + if ptr.Pointer() != nil { + return QTextDocumentFromPointer(unsafe.Pointer(C.QSyntaxHighlighter_Document(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSyntaxHighlighter) Rehighlight() { + if ptr.Pointer() != nil { + C.QSyntaxHighlighter_Rehighlight(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSyntaxHighlighter) RehighlightBlock(block QTextBlockITF) { + if ptr.Pointer() != nil { + C.QSyntaxHighlighter_RehighlightBlock(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextBlock(block))) + } +} + +func (ptr *QSyntaxHighlighter) SetDocument(doc QTextDocumentITF) { + if ptr.Pointer() != nil { + C.QSyntaxHighlighter_SetDocument(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextDocument(doc))) + } +} + +func (ptr *QSyntaxHighlighter) DestroyQSyntaxHighlighter() { + if ptr.Pointer() != nil { + C.QSyntaxHighlighter_DestroyQSyntaxHighlighter(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/gui/qsyntaxhighlighter.h b/gui/qsyntaxhighlighter.h new file mode 100755 index 00000000..a0f58f62 --- /dev/null +++ b/gui/qsyntaxhighlighter.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSyntaxHighlighter_Document(QtObjectPtr ptr); +void QSyntaxHighlighter_Rehighlight(QtObjectPtr ptr); +void QSyntaxHighlighter_RehighlightBlock(QtObjectPtr ptr, QtObjectPtr block); +void QSyntaxHighlighter_SetDocument(QtObjectPtr ptr, QtObjectPtr doc); +void QSyntaxHighlighter_DestroyQSyntaxHighlighter(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtabletevent.cpp b/gui/qtabletevent.cpp new file mode 100755 index 00000000..429c9882 --- /dev/null +++ b/gui/qtabletevent.cpp @@ -0,0 +1,56 @@ +#include "qtabletevent.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTabletEvent: public QTabletEvent { +public: +}; + +int QTabletEvent_Button(QtObjectPtr ptr){ + return static_cast(ptr)->button(); +} + +int QTabletEvent_Buttons(QtObjectPtr ptr){ + return static_cast(ptr)->buttons(); +} + +int QTabletEvent_Device(QtObjectPtr ptr){ + return static_cast(ptr)->device(); +} + +int QTabletEvent_GlobalX(QtObjectPtr ptr){ + return static_cast(ptr)->globalX(); +} + +int QTabletEvent_GlobalY(QtObjectPtr ptr){ + return static_cast(ptr)->globalY(); +} + +int QTabletEvent_PointerType(QtObjectPtr ptr){ + return static_cast(ptr)->pointerType(); +} + +int QTabletEvent_X(QtObjectPtr ptr){ + return static_cast(ptr)->x(); +} + +int QTabletEvent_XTilt(QtObjectPtr ptr){ + return static_cast(ptr)->xTilt(); +} + +int QTabletEvent_Y(QtObjectPtr ptr){ + return static_cast(ptr)->y(); +} + +int QTabletEvent_YTilt(QtObjectPtr ptr){ + return static_cast(ptr)->yTilt(); +} + +int QTabletEvent_Z(QtObjectPtr ptr){ + return static_cast(ptr)->z(); +} + diff --git a/gui/qtabletevent.go b/gui/qtabletevent.go new file mode 100755 index 00000000..22bd5b29 --- /dev/null +++ b/gui/qtabletevent.go @@ -0,0 +1,134 @@ +package gui + +//#include "qtabletevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QTabletEvent struct { + QInputEvent +} + +type QTabletEventITF interface { + QInputEventITF + QTabletEventPTR() *QTabletEvent +} + +func PointerFromQTabletEvent(ptr QTabletEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTabletEventPTR().Pointer() + } + return nil +} + +func QTabletEventFromPointer(ptr unsafe.Pointer) *QTabletEvent { + var n = new(QTabletEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QTabletEvent) QTabletEventPTR() *QTabletEvent { + return ptr +} + +//QTabletEvent::PointerType +type QTabletEvent__PointerType int + +var ( + QTabletEvent__UnknownPointer = QTabletEvent__PointerType(0) + QTabletEvent__Pen = QTabletEvent__PointerType(1) + QTabletEvent__Cursor = QTabletEvent__PointerType(2) + QTabletEvent__Eraser = QTabletEvent__PointerType(3) +) + +//QTabletEvent::TabletDevice +type QTabletEvent__TabletDevice int + +var ( + QTabletEvent__NoDevice = QTabletEvent__TabletDevice(0) + QTabletEvent__Puck = QTabletEvent__TabletDevice(1) + QTabletEvent__Stylus = QTabletEvent__TabletDevice(2) + QTabletEvent__Airbrush = QTabletEvent__TabletDevice(3) + QTabletEvent__FourDMouse = QTabletEvent__TabletDevice(4) + QTabletEvent__XFreeEraser = QTabletEvent__TabletDevice(5) + QTabletEvent__RotationStylus = QTabletEvent__TabletDevice(6) +) + +func (ptr *QTabletEvent) Button() core.Qt__MouseButton { + if ptr.Pointer() != nil { + return core.Qt__MouseButton(C.QTabletEvent_Button(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTabletEvent) Buttons() core.Qt__MouseButton { + if ptr.Pointer() != nil { + return core.Qt__MouseButton(C.QTabletEvent_Buttons(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTabletEvent) Device() QTabletEvent__TabletDevice { + if ptr.Pointer() != nil { + return QTabletEvent__TabletDevice(C.QTabletEvent_Device(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTabletEvent) GlobalX() int { + if ptr.Pointer() != nil { + return int(C.QTabletEvent_GlobalX(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTabletEvent) GlobalY() int { + if ptr.Pointer() != nil { + return int(C.QTabletEvent_GlobalY(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTabletEvent) PointerType() QTabletEvent__PointerType { + if ptr.Pointer() != nil { + return QTabletEvent__PointerType(C.QTabletEvent_PointerType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTabletEvent) X() int { + if ptr.Pointer() != nil { + return int(C.QTabletEvent_X(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTabletEvent) XTilt() int { + if ptr.Pointer() != nil { + return int(C.QTabletEvent_XTilt(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTabletEvent) Y() int { + if ptr.Pointer() != nil { + return int(C.QTabletEvent_Y(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTabletEvent) YTilt() int { + if ptr.Pointer() != nil { + return int(C.QTabletEvent_YTilt(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTabletEvent) Z() int { + if ptr.Pointer() != nil { + return int(C.QTabletEvent_Z(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/gui/qtabletevent.h b/gui/qtabletevent.h new file mode 100755 index 00000000..dd7ca394 --- /dev/null +++ b/gui/qtabletevent.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QTabletEvent_Button(QtObjectPtr ptr); +int QTabletEvent_Buttons(QtObjectPtr ptr); +int QTabletEvent_Device(QtObjectPtr ptr); +int QTabletEvent_GlobalX(QtObjectPtr ptr); +int QTabletEvent_GlobalY(QtObjectPtr ptr); +int QTabletEvent_PointerType(QtObjectPtr ptr); +int QTabletEvent_X(QtObjectPtr ptr); +int QTabletEvent_XTilt(QtObjectPtr ptr); +int QTabletEvent_Y(QtObjectPtr ptr); +int QTabletEvent_YTilt(QtObjectPtr ptr); +int QTabletEvent_Z(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtextblock.cpp b/gui/qtextblock.cpp new file mode 100755 index 00000000..0760dfd9 --- /dev/null +++ b/gui/qtextblock.cpp @@ -0,0 +1,114 @@ +#include "qtextblock.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextBlock: public QTextBlock { +public: +}; + +int QTextBlock_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +QtObjectPtr QTextBlock_NewQTextBlock(QtObjectPtr other){ + return new QTextBlock(*static_cast(other)); +} + +int QTextBlock_BlockFormatIndex(QtObjectPtr ptr){ + return static_cast(ptr)->blockFormatIndex(); +} + +int QTextBlock_CharFormatIndex(QtObjectPtr ptr){ + return static_cast(ptr)->charFormatIndex(); +} + +void QTextBlock_ClearLayout(QtObjectPtr ptr){ + static_cast(ptr)->clearLayout(); +} + +int QTextBlock_Contains(QtObjectPtr ptr, int position){ + return static_cast(ptr)->contains(position); +} + +int QTextBlock_BlockNumber(QtObjectPtr ptr){ + return static_cast(ptr)->blockNumber(); +} + +QtObjectPtr QTextBlock_Document(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->document()); +} + +int QTextBlock_FirstLineNumber(QtObjectPtr ptr){ + return static_cast(ptr)->firstLineNumber(); +} + +int QTextBlock_IsVisible(QtObjectPtr ptr){ + return static_cast(ptr)->isVisible(); +} + +QtObjectPtr QTextBlock_Layout(QtObjectPtr ptr){ + return static_cast(ptr)->layout(); +} + +int QTextBlock_Length(QtObjectPtr ptr){ + return static_cast(ptr)->length(); +} + +int QTextBlock_LineCount(QtObjectPtr ptr){ + return static_cast(ptr)->lineCount(); +} + +int QTextBlock_Position(QtObjectPtr ptr){ + return static_cast(ptr)->position(); +} + +int QTextBlock_Revision(QtObjectPtr ptr){ + return static_cast(ptr)->revision(); +} + +void QTextBlock_SetLineCount(QtObjectPtr ptr, int count){ + static_cast(ptr)->setLineCount(count); +} + +void QTextBlock_SetRevision(QtObjectPtr ptr, int rev){ + static_cast(ptr)->setRevision(rev); +} + +void QTextBlock_SetUserData(QtObjectPtr ptr, QtObjectPtr data){ + static_cast(ptr)->setUserData(static_cast(data)); +} + +void QTextBlock_SetUserState(QtObjectPtr ptr, int state){ + static_cast(ptr)->setUserState(state); +} + +void QTextBlock_SetVisible(QtObjectPtr ptr, int visible){ + static_cast(ptr)->setVisible(visible != 0); +} + +char* QTextBlock_Text(QtObjectPtr ptr){ + return static_cast(ptr)->text().toUtf8().data(); +} + +int QTextBlock_TextDirection(QtObjectPtr ptr){ + return static_cast(ptr)->textDirection(); +} + +QtObjectPtr QTextBlock_TextList(QtObjectPtr ptr){ + return static_cast(ptr)->textList(); +} + +QtObjectPtr QTextBlock_UserData(QtObjectPtr ptr){ + return static_cast(ptr)->userData(); +} + +int QTextBlock_UserState(QtObjectPtr ptr){ + return static_cast(ptr)->userState(); +} + diff --git a/gui/qtextblock.go b/gui/qtextblock.go new file mode 100755 index 00000000..e3d6725d --- /dev/null +++ b/gui/qtextblock.go @@ -0,0 +1,208 @@ +package gui + +//#include "qtextblock.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QTextBlock struct { + ptr unsafe.Pointer +} + +type QTextBlockITF interface { + QTextBlockPTR() *QTextBlock +} + +func (p *QTextBlock) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTextBlock) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTextBlock(ptr QTextBlockITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextBlockPTR().Pointer() + } + return nil +} + +func QTextBlockFromPointer(ptr unsafe.Pointer) *QTextBlock { + var n = new(QTextBlock) + n.SetPointer(ptr) + return n +} + +func (ptr *QTextBlock) QTextBlockPTR() *QTextBlock { + return ptr +} + +func (ptr *QTextBlock) IsValid() bool { + if ptr.Pointer() != nil { + return C.QTextBlock_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func NewQTextBlock(other QTextBlockITF) *QTextBlock { + return QTextBlockFromPointer(unsafe.Pointer(C.QTextBlock_NewQTextBlock(C.QtObjectPtr(PointerFromQTextBlock(other))))) +} + +func (ptr *QTextBlock) BlockFormatIndex() int { + if ptr.Pointer() != nil { + return int(C.QTextBlock_BlockFormatIndex(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextBlock) CharFormatIndex() int { + if ptr.Pointer() != nil { + return int(C.QTextBlock_CharFormatIndex(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextBlock) ClearLayout() { + if ptr.Pointer() != nil { + C.QTextBlock_ClearLayout(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextBlock) Contains(position int) bool { + if ptr.Pointer() != nil { + return C.QTextBlock_Contains(C.QtObjectPtr(ptr.Pointer()), C.int(position)) != 0 + } + return false +} + +func (ptr *QTextBlock) BlockNumber() int { + if ptr.Pointer() != nil { + return int(C.QTextBlock_BlockNumber(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextBlock) Document() *QTextDocument { + if ptr.Pointer() != nil { + return QTextDocumentFromPointer(unsafe.Pointer(C.QTextBlock_Document(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTextBlock) FirstLineNumber() int { + if ptr.Pointer() != nil { + return int(C.QTextBlock_FirstLineNumber(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextBlock) IsVisible() bool { + if ptr.Pointer() != nil { + return C.QTextBlock_IsVisible(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextBlock) Layout() *QTextLayout { + if ptr.Pointer() != nil { + return QTextLayoutFromPointer(unsafe.Pointer(C.QTextBlock_Layout(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTextBlock) Length() int { + if ptr.Pointer() != nil { + return int(C.QTextBlock_Length(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextBlock) LineCount() int { + if ptr.Pointer() != nil { + return int(C.QTextBlock_LineCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextBlock) Position() int { + if ptr.Pointer() != nil { + return int(C.QTextBlock_Position(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextBlock) Revision() int { + if ptr.Pointer() != nil { + return int(C.QTextBlock_Revision(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextBlock) SetLineCount(count int) { + if ptr.Pointer() != nil { + C.QTextBlock_SetLineCount(C.QtObjectPtr(ptr.Pointer()), C.int(count)) + } +} + +func (ptr *QTextBlock) SetRevision(rev int) { + if ptr.Pointer() != nil { + C.QTextBlock_SetRevision(C.QtObjectPtr(ptr.Pointer()), C.int(rev)) + } +} + +func (ptr *QTextBlock) SetUserData(data QTextBlockUserDataITF) { + if ptr.Pointer() != nil { + C.QTextBlock_SetUserData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextBlockUserData(data))) + } +} + +func (ptr *QTextBlock) SetUserState(state int) { + if ptr.Pointer() != nil { + C.QTextBlock_SetUserState(C.QtObjectPtr(ptr.Pointer()), C.int(state)) + } +} + +func (ptr *QTextBlock) SetVisible(visible bool) { + if ptr.Pointer() != nil { + C.QTextBlock_SetVisible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(visible))) + } +} + +func (ptr *QTextBlock) Text() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextBlock_Text(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTextBlock) TextDirection() core.Qt__LayoutDirection { + if ptr.Pointer() != nil { + return core.Qt__LayoutDirection(C.QTextBlock_TextDirection(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextBlock) TextList() *QTextList { + if ptr.Pointer() != nil { + return QTextListFromPointer(unsafe.Pointer(C.QTextBlock_TextList(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTextBlock) UserData() *QTextBlockUserData { + if ptr.Pointer() != nil { + return QTextBlockUserDataFromPointer(unsafe.Pointer(C.QTextBlock_UserData(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTextBlock) UserState() int { + if ptr.Pointer() != nil { + return int(C.QTextBlock_UserState(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/gui/qtextblock.h b/gui/qtextblock.h new file mode 100755 index 00000000..429b3de4 --- /dev/null +++ b/gui/qtextblock.h @@ -0,0 +1,34 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QTextBlock_IsValid(QtObjectPtr ptr); +QtObjectPtr QTextBlock_NewQTextBlock(QtObjectPtr other); +int QTextBlock_BlockFormatIndex(QtObjectPtr ptr); +int QTextBlock_CharFormatIndex(QtObjectPtr ptr); +void QTextBlock_ClearLayout(QtObjectPtr ptr); +int QTextBlock_Contains(QtObjectPtr ptr, int position); +int QTextBlock_BlockNumber(QtObjectPtr ptr); +QtObjectPtr QTextBlock_Document(QtObjectPtr ptr); +int QTextBlock_FirstLineNumber(QtObjectPtr ptr); +int QTextBlock_IsVisible(QtObjectPtr ptr); +QtObjectPtr QTextBlock_Layout(QtObjectPtr ptr); +int QTextBlock_Length(QtObjectPtr ptr); +int QTextBlock_LineCount(QtObjectPtr ptr); +int QTextBlock_Position(QtObjectPtr ptr); +int QTextBlock_Revision(QtObjectPtr ptr); +void QTextBlock_SetLineCount(QtObjectPtr ptr, int count); +void QTextBlock_SetRevision(QtObjectPtr ptr, int rev); +void QTextBlock_SetUserData(QtObjectPtr ptr, QtObjectPtr data); +void QTextBlock_SetUserState(QtObjectPtr ptr, int state); +void QTextBlock_SetVisible(QtObjectPtr ptr, int visible); +char* QTextBlock_Text(QtObjectPtr ptr); +int QTextBlock_TextDirection(QtObjectPtr ptr); +QtObjectPtr QTextBlock_TextList(QtObjectPtr ptr); +QtObjectPtr QTextBlock_UserData(QtObjectPtr ptr); +int QTextBlock_UserState(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtextblockformat.cpp b/gui/qtextblockformat.cpp new file mode 100755 index 00000000..dad336dd --- /dev/null +++ b/gui/qtextblockformat.cpp @@ -0,0 +1,58 @@ +#include "qtextblockformat.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextBlockFormat: public QTextBlockFormat { +public: +}; + +QtObjectPtr QTextBlockFormat_NewQTextBlockFormat(){ + return new QTextBlockFormat(); +} + +int QTextBlockFormat_Alignment(QtObjectPtr ptr){ + return static_cast(ptr)->alignment(); +} + +int QTextBlockFormat_Indent(QtObjectPtr ptr){ + return static_cast(ptr)->indent(); +} + +int QTextBlockFormat_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QTextBlockFormat_LineHeightType(QtObjectPtr ptr){ + return static_cast(ptr)->lineHeightType(); +} + +int QTextBlockFormat_NonBreakableLines(QtObjectPtr ptr){ + return static_cast(ptr)->nonBreakableLines(); +} + +int QTextBlockFormat_PageBreakPolicy(QtObjectPtr ptr){ + return static_cast(ptr)->pageBreakPolicy(); +} + +void QTextBlockFormat_SetAlignment(QtObjectPtr ptr, int alignment){ + static_cast(ptr)->setAlignment(static_cast(alignment)); +} + +void QTextBlockFormat_SetIndent(QtObjectPtr ptr, int indentation){ + static_cast(ptr)->setIndent(indentation); +} + +void QTextBlockFormat_SetNonBreakableLines(QtObjectPtr ptr, int b){ + static_cast(ptr)->setNonBreakableLines(b != 0); +} + +void QTextBlockFormat_SetPageBreakPolicy(QtObjectPtr ptr, int policy){ + static_cast(ptr)->setPageBreakPolicy(static_cast(policy)); +} + diff --git a/gui/qtextblockformat.go b/gui/qtextblockformat.go new file mode 100755 index 00000000..2d01941e --- /dev/null +++ b/gui/qtextblockformat.go @@ -0,0 +1,116 @@ +package gui + +//#include "qtextblockformat.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QTextBlockFormat struct { + QTextFormat +} + +type QTextBlockFormatITF interface { + QTextFormatITF + QTextBlockFormatPTR() *QTextBlockFormat +} + +func PointerFromQTextBlockFormat(ptr QTextBlockFormatITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextBlockFormatPTR().Pointer() + } + return nil +} + +func QTextBlockFormatFromPointer(ptr unsafe.Pointer) *QTextBlockFormat { + var n = new(QTextBlockFormat) + n.SetPointer(ptr) + return n +} + +func (ptr *QTextBlockFormat) QTextBlockFormatPTR() *QTextBlockFormat { + return ptr +} + +//QTextBlockFormat::LineHeightTypes +type QTextBlockFormat__LineHeightTypes int + +var ( + QTextBlockFormat__SingleHeight = QTextBlockFormat__LineHeightTypes(0) + QTextBlockFormat__ProportionalHeight = QTextBlockFormat__LineHeightTypes(1) + QTextBlockFormat__FixedHeight = QTextBlockFormat__LineHeightTypes(2) + QTextBlockFormat__MinimumHeight = QTextBlockFormat__LineHeightTypes(3) + QTextBlockFormat__LineDistanceHeight = QTextBlockFormat__LineHeightTypes(4) +) + +func NewQTextBlockFormat() *QTextBlockFormat { + return QTextBlockFormatFromPointer(unsafe.Pointer(C.QTextBlockFormat_NewQTextBlockFormat())) +} + +func (ptr *QTextBlockFormat) Alignment() core.Qt__AlignmentFlag { + if ptr.Pointer() != nil { + return core.Qt__AlignmentFlag(C.QTextBlockFormat_Alignment(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextBlockFormat) Indent() int { + if ptr.Pointer() != nil { + return int(C.QTextBlockFormat_Indent(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextBlockFormat) IsValid() bool { + if ptr.Pointer() != nil { + return C.QTextBlockFormat_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextBlockFormat) LineHeightType() int { + if ptr.Pointer() != nil { + return int(C.QTextBlockFormat_LineHeightType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextBlockFormat) NonBreakableLines() bool { + if ptr.Pointer() != nil { + return C.QTextBlockFormat_NonBreakableLines(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextBlockFormat) PageBreakPolicy() QTextFormat__PageBreakFlag { + if ptr.Pointer() != nil { + return QTextFormat__PageBreakFlag(C.QTextBlockFormat_PageBreakPolicy(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextBlockFormat) SetAlignment(alignment core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QTextBlockFormat_SetAlignment(C.QtObjectPtr(ptr.Pointer()), C.int(alignment)) + } +} + +func (ptr *QTextBlockFormat) SetIndent(indentation int) { + if ptr.Pointer() != nil { + C.QTextBlockFormat_SetIndent(C.QtObjectPtr(ptr.Pointer()), C.int(indentation)) + } +} + +func (ptr *QTextBlockFormat) SetNonBreakableLines(b bool) { + if ptr.Pointer() != nil { + C.QTextBlockFormat_SetNonBreakableLines(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(b))) + } +} + +func (ptr *QTextBlockFormat) SetPageBreakPolicy(policy QTextFormat__PageBreakFlag) { + if ptr.Pointer() != nil { + C.QTextBlockFormat_SetPageBreakPolicy(C.QtObjectPtr(ptr.Pointer()), C.int(policy)) + } +} diff --git a/gui/qtextblockformat.h b/gui/qtextblockformat.h new file mode 100755 index 00000000..34393234 --- /dev/null +++ b/gui/qtextblockformat.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTextBlockFormat_NewQTextBlockFormat(); +int QTextBlockFormat_Alignment(QtObjectPtr ptr); +int QTextBlockFormat_Indent(QtObjectPtr ptr); +int QTextBlockFormat_IsValid(QtObjectPtr ptr); +int QTextBlockFormat_LineHeightType(QtObjectPtr ptr); +int QTextBlockFormat_NonBreakableLines(QtObjectPtr ptr); +int QTextBlockFormat_PageBreakPolicy(QtObjectPtr ptr); +void QTextBlockFormat_SetAlignment(QtObjectPtr ptr, int alignment); +void QTextBlockFormat_SetIndent(QtObjectPtr ptr, int indentation); +void QTextBlockFormat_SetNonBreakableLines(QtObjectPtr ptr, int b); +void QTextBlockFormat_SetPageBreakPolicy(QtObjectPtr ptr, int policy); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtextblockgroup.cpp b/gui/qtextblockgroup.cpp new file mode 100755 index 00000000..3cd6dda4 --- /dev/null +++ b/gui/qtextblockgroup.cpp @@ -0,0 +1,13 @@ +#include "qtextblockgroup.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextBlockGroup: public QTextBlockGroup { +public: +}; + diff --git a/gui/qtextblockgroup.go b/gui/qtextblockgroup.go new file mode 100755 index 00000000..74e77ab9 --- /dev/null +++ b/gui/qtextblockgroup.go @@ -0,0 +1,37 @@ +package gui + +//#include "qtextblockgroup.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QTextBlockGroup struct { + QTextObject +} + +type QTextBlockGroupITF interface { + QTextObjectITF + QTextBlockGroupPTR() *QTextBlockGroup +} + +func PointerFromQTextBlockGroup(ptr QTextBlockGroupITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextBlockGroupPTR().Pointer() + } + return nil +} + +func QTextBlockGroupFromPointer(ptr unsafe.Pointer) *QTextBlockGroup { + var n = new(QTextBlockGroup) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QTextBlockGroup_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QTextBlockGroup) QTextBlockGroupPTR() *QTextBlockGroup { + return ptr +} diff --git a/gui/qtextblockgroup.h b/gui/qtextblockgroup.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/gui/qtextblockgroup.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtextblockuserdata.cpp b/gui/qtextblockuserdata.cpp new file mode 100755 index 00000000..86d0feb6 --- /dev/null +++ b/gui/qtextblockuserdata.cpp @@ -0,0 +1,17 @@ +#include "qtextblockuserdata.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextBlockUserData: public QTextBlockUserData { +public: +}; + +void QTextBlockUserData_DestroyQTextBlockUserData(QtObjectPtr ptr){ + static_cast(ptr)->~QTextBlockUserData(); +} + diff --git a/gui/qtextblockuserdata.go b/gui/qtextblockuserdata.go new file mode 100755 index 00000000..d36ac7ca --- /dev/null +++ b/gui/qtextblockuserdata.go @@ -0,0 +1,46 @@ +package gui + +//#include "qtextblockuserdata.h" +import "C" +import ( + "unsafe" +) + +type QTextBlockUserData struct { + ptr unsafe.Pointer +} + +type QTextBlockUserDataITF interface { + QTextBlockUserDataPTR() *QTextBlockUserData +} + +func (p *QTextBlockUserData) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTextBlockUserData) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTextBlockUserData(ptr QTextBlockUserDataITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextBlockUserDataPTR().Pointer() + } + return nil +} + +func QTextBlockUserDataFromPointer(ptr unsafe.Pointer) *QTextBlockUserData { + var n = new(QTextBlockUserData) + n.SetPointer(ptr) + return n +} + +func (ptr *QTextBlockUserData) QTextBlockUserDataPTR() *QTextBlockUserData { + return ptr +} + +func (ptr *QTextBlockUserData) DestroyQTextBlockUserData() { + if ptr.Pointer() != nil { + C.QTextBlockUserData_DestroyQTextBlockUserData(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qtextblockuserdata.h b/gui/qtextblockuserdata.h new file mode 100755 index 00000000..6675950c --- /dev/null +++ b/gui/qtextblockuserdata.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QTextBlockUserData_DestroyQTextBlockUserData(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtextcharformat.cpp b/gui/qtextcharformat.cpp new file mode 100755 index 00000000..730ba502 --- /dev/null +++ b/gui/qtextcharformat.cpp @@ -0,0 +1,199 @@ +#include "qtextcharformat.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextCharFormat: public QTextCharFormat { +public: +}; + +QtObjectPtr QTextCharFormat_NewQTextCharFormat(){ + return new QTextCharFormat(); +} + +char* QTextCharFormat_AnchorNames(QtObjectPtr ptr){ + return static_cast(ptr)->anchorNames().join("|").toUtf8().data(); +} + +int QTextCharFormat_FontUnderline(QtObjectPtr ptr){ + return static_cast(ptr)->fontUnderline(); +} + +void QTextCharFormat_SetUnderlineStyle(QtObjectPtr ptr, int style){ + static_cast(ptr)->setUnderlineStyle(static_cast(style)); +} + +char* QTextCharFormat_AnchorHref(QtObjectPtr ptr){ + return static_cast(ptr)->anchorHref().toUtf8().data(); +} + +int QTextCharFormat_FontCapitalization(QtObjectPtr ptr){ + return static_cast(ptr)->fontCapitalization(); +} + +char* QTextCharFormat_FontFamily(QtObjectPtr ptr){ + return static_cast(ptr)->fontFamily().toUtf8().data(); +} + +int QTextCharFormat_FontFixedPitch(QtObjectPtr ptr){ + return static_cast(ptr)->fontFixedPitch(); +} + +int QTextCharFormat_FontHintingPreference(QtObjectPtr ptr){ + return static_cast(ptr)->fontHintingPreference(); +} + +int QTextCharFormat_FontItalic(QtObjectPtr ptr){ + return static_cast(ptr)->fontItalic(); +} + +int QTextCharFormat_FontKerning(QtObjectPtr ptr){ + return static_cast(ptr)->fontKerning(); +} + +int QTextCharFormat_FontLetterSpacingType(QtObjectPtr ptr){ + return static_cast(ptr)->fontLetterSpacingType(); +} + +int QTextCharFormat_FontOverline(QtObjectPtr ptr){ + return static_cast(ptr)->fontOverline(); +} + +int QTextCharFormat_FontStretch(QtObjectPtr ptr){ + return static_cast(ptr)->fontStretch(); +} + +int QTextCharFormat_FontStrikeOut(QtObjectPtr ptr){ + return static_cast(ptr)->fontStrikeOut(); +} + +int QTextCharFormat_FontStyleHint(QtObjectPtr ptr){ + return static_cast(ptr)->fontStyleHint(); +} + +int QTextCharFormat_FontStyleStrategy(QtObjectPtr ptr){ + return static_cast(ptr)->fontStyleStrategy(); +} + +int QTextCharFormat_FontWeight(QtObjectPtr ptr){ + return static_cast(ptr)->fontWeight(); +} + +int QTextCharFormat_IsAnchor(QtObjectPtr ptr){ + return static_cast(ptr)->isAnchor(); +} + +int QTextCharFormat_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +void QTextCharFormat_SetAnchor(QtObjectPtr ptr, int anchor){ + static_cast(ptr)->setAnchor(anchor != 0); +} + +void QTextCharFormat_SetAnchorHref(QtObjectPtr ptr, char* value){ + static_cast(ptr)->setAnchorHref(QString(value)); +} + +void QTextCharFormat_SetAnchorNames(QtObjectPtr ptr, char* names){ + static_cast(ptr)->setAnchorNames(QString(names).split("|", QString::SkipEmptyParts)); +} + +void QTextCharFormat_SetFont2(QtObjectPtr ptr, QtObjectPtr font){ + static_cast(ptr)->setFont(*static_cast(font)); +} + +void QTextCharFormat_SetFont(QtObjectPtr ptr, QtObjectPtr font, int behavior){ + static_cast(ptr)->setFont(*static_cast(font), static_cast(behavior)); +} + +void QTextCharFormat_SetFontCapitalization(QtObjectPtr ptr, int capitalization){ + static_cast(ptr)->setFontCapitalization(static_cast(capitalization)); +} + +void QTextCharFormat_SetFontFamily(QtObjectPtr ptr, char* family){ + static_cast(ptr)->setFontFamily(QString(family)); +} + +void QTextCharFormat_SetFontFixedPitch(QtObjectPtr ptr, int fixedPitch){ + static_cast(ptr)->setFontFixedPitch(fixedPitch != 0); +} + +void QTextCharFormat_SetFontHintingPreference(QtObjectPtr ptr, int hintingPreference){ + static_cast(ptr)->setFontHintingPreference(static_cast(hintingPreference)); +} + +void QTextCharFormat_SetFontItalic(QtObjectPtr ptr, int italic){ + static_cast(ptr)->setFontItalic(italic != 0); +} + +void QTextCharFormat_SetFontKerning(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setFontKerning(enable != 0); +} + +void QTextCharFormat_SetFontLetterSpacingType(QtObjectPtr ptr, int letterSpacingType){ + static_cast(ptr)->setFontLetterSpacingType(static_cast(letterSpacingType)); +} + +void QTextCharFormat_SetFontOverline(QtObjectPtr ptr, int overline){ + static_cast(ptr)->setFontOverline(overline != 0); +} + +void QTextCharFormat_SetFontStretch(QtObjectPtr ptr, int factor){ + static_cast(ptr)->setFontStretch(factor); +} + +void QTextCharFormat_SetFontStrikeOut(QtObjectPtr ptr, int strikeOut){ + static_cast(ptr)->setFontStrikeOut(strikeOut != 0); +} + +void QTextCharFormat_SetFontStyleHint(QtObjectPtr ptr, int hint, int strategy){ + static_cast(ptr)->setFontStyleHint(static_cast(hint), static_cast(strategy)); +} + +void QTextCharFormat_SetFontStyleStrategy(QtObjectPtr ptr, int strategy){ + static_cast(ptr)->setFontStyleStrategy(static_cast(strategy)); +} + +void QTextCharFormat_SetFontUnderline(QtObjectPtr ptr, int underline){ + static_cast(ptr)->setFontUnderline(underline != 0); +} + +void QTextCharFormat_SetFontWeight(QtObjectPtr ptr, int weight){ + static_cast(ptr)->setFontWeight(weight); +} + +void QTextCharFormat_SetTextOutline(QtObjectPtr ptr, QtObjectPtr pen){ + static_cast(ptr)->setTextOutline(*static_cast(pen)); +} + +void QTextCharFormat_SetToolTip(QtObjectPtr ptr, char* text){ + static_cast(ptr)->setToolTip(QString(text)); +} + +void QTextCharFormat_SetUnderlineColor(QtObjectPtr ptr, QtObjectPtr color){ + static_cast(ptr)->setUnderlineColor(*static_cast(color)); +} + +void QTextCharFormat_SetVerticalAlignment(QtObjectPtr ptr, int alignment){ + static_cast(ptr)->setVerticalAlignment(static_cast(alignment)); +} + +char* QTextCharFormat_ToolTip(QtObjectPtr ptr){ + return static_cast(ptr)->toolTip().toUtf8().data(); +} + +int QTextCharFormat_UnderlineStyle(QtObjectPtr ptr){ + return static_cast(ptr)->underlineStyle(); +} + +int QTextCharFormat_VerticalAlignment(QtObjectPtr ptr){ + return static_cast(ptr)->verticalAlignment(); +} + diff --git a/gui/qtextcharformat.go b/gui/qtextcharformat.go new file mode 100755 index 00000000..b7fe2cda --- /dev/null +++ b/gui/qtextcharformat.go @@ -0,0 +1,365 @@ +package gui + +//#include "qtextcharformat.h" +import "C" +import ( + "github.com/therecipe/qt" + "strings" + "unsafe" +) + +type QTextCharFormat struct { + QTextFormat +} + +type QTextCharFormatITF interface { + QTextFormatITF + QTextCharFormatPTR() *QTextCharFormat +} + +func PointerFromQTextCharFormat(ptr QTextCharFormatITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextCharFormatPTR().Pointer() + } + return nil +} + +func QTextCharFormatFromPointer(ptr unsafe.Pointer) *QTextCharFormat { + var n = new(QTextCharFormat) + n.SetPointer(ptr) + return n +} + +func (ptr *QTextCharFormat) QTextCharFormatPTR() *QTextCharFormat { + return ptr +} + +//QTextCharFormat::FontPropertiesInheritanceBehavior +type QTextCharFormat__FontPropertiesInheritanceBehavior int + +var ( + QTextCharFormat__FontPropertiesSpecifiedOnly = QTextCharFormat__FontPropertiesInheritanceBehavior(0) + QTextCharFormat__FontPropertiesAll = QTextCharFormat__FontPropertiesInheritanceBehavior(1) +) + +//QTextCharFormat::UnderlineStyle +type QTextCharFormat__UnderlineStyle int + +var ( + QTextCharFormat__NoUnderline = QTextCharFormat__UnderlineStyle(0) + QTextCharFormat__SingleUnderline = QTextCharFormat__UnderlineStyle(1) + QTextCharFormat__DashUnderline = QTextCharFormat__UnderlineStyle(2) + QTextCharFormat__DotLine = QTextCharFormat__UnderlineStyle(3) + QTextCharFormat__DashDotLine = QTextCharFormat__UnderlineStyle(4) + QTextCharFormat__DashDotDotLine = QTextCharFormat__UnderlineStyle(5) + QTextCharFormat__WaveUnderline = QTextCharFormat__UnderlineStyle(6) + QTextCharFormat__SpellCheckUnderline = QTextCharFormat__UnderlineStyle(7) +) + +//QTextCharFormat::VerticalAlignment +type QTextCharFormat__VerticalAlignment int + +var ( + QTextCharFormat__AlignNormal = QTextCharFormat__VerticalAlignment(0) + QTextCharFormat__AlignSuperScript = QTextCharFormat__VerticalAlignment(1) + QTextCharFormat__AlignSubScript = QTextCharFormat__VerticalAlignment(2) + QTextCharFormat__AlignMiddle = QTextCharFormat__VerticalAlignment(3) + QTextCharFormat__AlignTop = QTextCharFormat__VerticalAlignment(4) + QTextCharFormat__AlignBottom = QTextCharFormat__VerticalAlignment(5) + QTextCharFormat__AlignBaseline = QTextCharFormat__VerticalAlignment(6) +) + +func NewQTextCharFormat() *QTextCharFormat { + return QTextCharFormatFromPointer(unsafe.Pointer(C.QTextCharFormat_NewQTextCharFormat())) +} + +func (ptr *QTextCharFormat) AnchorNames() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QTextCharFormat_AnchorNames(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QTextCharFormat) FontUnderline() bool { + if ptr.Pointer() != nil { + return C.QTextCharFormat_FontUnderline(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextCharFormat) SetUnderlineStyle(style QTextCharFormat__UnderlineStyle) { + if ptr.Pointer() != nil { + C.QTextCharFormat_SetUnderlineStyle(C.QtObjectPtr(ptr.Pointer()), C.int(style)) + } +} + +func (ptr *QTextCharFormat) AnchorHref() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextCharFormat_AnchorHref(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTextCharFormat) FontCapitalization() QFont__Capitalization { + if ptr.Pointer() != nil { + return QFont__Capitalization(C.QTextCharFormat_FontCapitalization(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextCharFormat) FontFamily() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextCharFormat_FontFamily(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTextCharFormat) FontFixedPitch() bool { + if ptr.Pointer() != nil { + return C.QTextCharFormat_FontFixedPitch(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextCharFormat) FontHintingPreference() QFont__HintingPreference { + if ptr.Pointer() != nil { + return QFont__HintingPreference(C.QTextCharFormat_FontHintingPreference(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextCharFormat) FontItalic() bool { + if ptr.Pointer() != nil { + return C.QTextCharFormat_FontItalic(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextCharFormat) FontKerning() bool { + if ptr.Pointer() != nil { + return C.QTextCharFormat_FontKerning(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextCharFormat) FontLetterSpacingType() QFont__SpacingType { + if ptr.Pointer() != nil { + return QFont__SpacingType(C.QTextCharFormat_FontLetterSpacingType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextCharFormat) FontOverline() bool { + if ptr.Pointer() != nil { + return C.QTextCharFormat_FontOverline(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextCharFormat) FontStretch() int { + if ptr.Pointer() != nil { + return int(C.QTextCharFormat_FontStretch(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextCharFormat) FontStrikeOut() bool { + if ptr.Pointer() != nil { + return C.QTextCharFormat_FontStrikeOut(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextCharFormat) FontStyleHint() QFont__StyleHint { + if ptr.Pointer() != nil { + return QFont__StyleHint(C.QTextCharFormat_FontStyleHint(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextCharFormat) FontStyleStrategy() QFont__StyleStrategy { + if ptr.Pointer() != nil { + return QFont__StyleStrategy(C.QTextCharFormat_FontStyleStrategy(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextCharFormat) FontWeight() int { + if ptr.Pointer() != nil { + return int(C.QTextCharFormat_FontWeight(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextCharFormat) IsAnchor() bool { + if ptr.Pointer() != nil { + return C.QTextCharFormat_IsAnchor(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextCharFormat) IsValid() bool { + if ptr.Pointer() != nil { + return C.QTextCharFormat_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextCharFormat) SetAnchor(anchor bool) { + if ptr.Pointer() != nil { + C.QTextCharFormat_SetAnchor(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(anchor))) + } +} + +func (ptr *QTextCharFormat) SetAnchorHref(value string) { + if ptr.Pointer() != nil { + C.QTextCharFormat_SetAnchorHref(C.QtObjectPtr(ptr.Pointer()), C.CString(value)) + } +} + +func (ptr *QTextCharFormat) SetAnchorNames(names []string) { + if ptr.Pointer() != nil { + C.QTextCharFormat_SetAnchorNames(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(names, "|"))) + } +} + +func (ptr *QTextCharFormat) SetFont2(font QFontITF) { + if ptr.Pointer() != nil { + C.QTextCharFormat_SetFont2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQFont(font))) + } +} + +func (ptr *QTextCharFormat) SetFont(font QFontITF, behavior QTextCharFormat__FontPropertiesInheritanceBehavior) { + if ptr.Pointer() != nil { + C.QTextCharFormat_SetFont(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQFont(font)), C.int(behavior)) + } +} + +func (ptr *QTextCharFormat) SetFontCapitalization(capitalization QFont__Capitalization) { + if ptr.Pointer() != nil { + C.QTextCharFormat_SetFontCapitalization(C.QtObjectPtr(ptr.Pointer()), C.int(capitalization)) + } +} + +func (ptr *QTextCharFormat) SetFontFamily(family string) { + if ptr.Pointer() != nil { + C.QTextCharFormat_SetFontFamily(C.QtObjectPtr(ptr.Pointer()), C.CString(family)) + } +} + +func (ptr *QTextCharFormat) SetFontFixedPitch(fixedPitch bool) { + if ptr.Pointer() != nil { + C.QTextCharFormat_SetFontFixedPitch(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(fixedPitch))) + } +} + +func (ptr *QTextCharFormat) SetFontHintingPreference(hintingPreference QFont__HintingPreference) { + if ptr.Pointer() != nil { + C.QTextCharFormat_SetFontHintingPreference(C.QtObjectPtr(ptr.Pointer()), C.int(hintingPreference)) + } +} + +func (ptr *QTextCharFormat) SetFontItalic(italic bool) { + if ptr.Pointer() != nil { + C.QTextCharFormat_SetFontItalic(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(italic))) + } +} + +func (ptr *QTextCharFormat) SetFontKerning(enable bool) { + if ptr.Pointer() != nil { + C.QTextCharFormat_SetFontKerning(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QTextCharFormat) SetFontLetterSpacingType(letterSpacingType QFont__SpacingType) { + if ptr.Pointer() != nil { + C.QTextCharFormat_SetFontLetterSpacingType(C.QtObjectPtr(ptr.Pointer()), C.int(letterSpacingType)) + } +} + +func (ptr *QTextCharFormat) SetFontOverline(overline bool) { + if ptr.Pointer() != nil { + C.QTextCharFormat_SetFontOverline(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(overline))) + } +} + +func (ptr *QTextCharFormat) SetFontStretch(factor int) { + if ptr.Pointer() != nil { + C.QTextCharFormat_SetFontStretch(C.QtObjectPtr(ptr.Pointer()), C.int(factor)) + } +} + +func (ptr *QTextCharFormat) SetFontStrikeOut(strikeOut bool) { + if ptr.Pointer() != nil { + C.QTextCharFormat_SetFontStrikeOut(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(strikeOut))) + } +} + +func (ptr *QTextCharFormat) SetFontStyleHint(hint QFont__StyleHint, strategy QFont__StyleStrategy) { + if ptr.Pointer() != nil { + C.QTextCharFormat_SetFontStyleHint(C.QtObjectPtr(ptr.Pointer()), C.int(hint), C.int(strategy)) + } +} + +func (ptr *QTextCharFormat) SetFontStyleStrategy(strategy QFont__StyleStrategy) { + if ptr.Pointer() != nil { + C.QTextCharFormat_SetFontStyleStrategy(C.QtObjectPtr(ptr.Pointer()), C.int(strategy)) + } +} + +func (ptr *QTextCharFormat) SetFontUnderline(underline bool) { + if ptr.Pointer() != nil { + C.QTextCharFormat_SetFontUnderline(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(underline))) + } +} + +func (ptr *QTextCharFormat) SetFontWeight(weight int) { + if ptr.Pointer() != nil { + C.QTextCharFormat_SetFontWeight(C.QtObjectPtr(ptr.Pointer()), C.int(weight)) + } +} + +func (ptr *QTextCharFormat) SetTextOutline(pen QPenITF) { + if ptr.Pointer() != nil { + C.QTextCharFormat_SetTextOutline(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPen(pen))) + } +} + +func (ptr *QTextCharFormat) SetToolTip(text string) { + if ptr.Pointer() != nil { + C.QTextCharFormat_SetToolTip(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QTextCharFormat) SetUnderlineColor(color QColorITF) { + if ptr.Pointer() != nil { + C.QTextCharFormat_SetUnderlineColor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQColor(color))) + } +} + +func (ptr *QTextCharFormat) SetVerticalAlignment(alignment QTextCharFormat__VerticalAlignment) { + if ptr.Pointer() != nil { + C.QTextCharFormat_SetVerticalAlignment(C.QtObjectPtr(ptr.Pointer()), C.int(alignment)) + } +} + +func (ptr *QTextCharFormat) ToolTip() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextCharFormat_ToolTip(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTextCharFormat) UnderlineStyle() QTextCharFormat__UnderlineStyle { + if ptr.Pointer() != nil { + return QTextCharFormat__UnderlineStyle(C.QTextCharFormat_UnderlineStyle(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextCharFormat) VerticalAlignment() QTextCharFormat__VerticalAlignment { + if ptr.Pointer() != nil { + return QTextCharFormat__VerticalAlignment(C.QTextCharFormat_VerticalAlignment(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/gui/qtextcharformat.h b/gui/qtextcharformat.h new file mode 100755 index 00000000..1e7f2728 --- /dev/null +++ b/gui/qtextcharformat.h @@ -0,0 +1,55 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTextCharFormat_NewQTextCharFormat(); +char* QTextCharFormat_AnchorNames(QtObjectPtr ptr); +int QTextCharFormat_FontUnderline(QtObjectPtr ptr); +void QTextCharFormat_SetUnderlineStyle(QtObjectPtr ptr, int style); +char* QTextCharFormat_AnchorHref(QtObjectPtr ptr); +int QTextCharFormat_FontCapitalization(QtObjectPtr ptr); +char* QTextCharFormat_FontFamily(QtObjectPtr ptr); +int QTextCharFormat_FontFixedPitch(QtObjectPtr ptr); +int QTextCharFormat_FontHintingPreference(QtObjectPtr ptr); +int QTextCharFormat_FontItalic(QtObjectPtr ptr); +int QTextCharFormat_FontKerning(QtObjectPtr ptr); +int QTextCharFormat_FontLetterSpacingType(QtObjectPtr ptr); +int QTextCharFormat_FontOverline(QtObjectPtr ptr); +int QTextCharFormat_FontStretch(QtObjectPtr ptr); +int QTextCharFormat_FontStrikeOut(QtObjectPtr ptr); +int QTextCharFormat_FontStyleHint(QtObjectPtr ptr); +int QTextCharFormat_FontStyleStrategy(QtObjectPtr ptr); +int QTextCharFormat_FontWeight(QtObjectPtr ptr); +int QTextCharFormat_IsAnchor(QtObjectPtr ptr); +int QTextCharFormat_IsValid(QtObjectPtr ptr); +void QTextCharFormat_SetAnchor(QtObjectPtr ptr, int anchor); +void QTextCharFormat_SetAnchorHref(QtObjectPtr ptr, char* value); +void QTextCharFormat_SetAnchorNames(QtObjectPtr ptr, char* names); +void QTextCharFormat_SetFont2(QtObjectPtr ptr, QtObjectPtr font); +void QTextCharFormat_SetFont(QtObjectPtr ptr, QtObjectPtr font, int behavior); +void QTextCharFormat_SetFontCapitalization(QtObjectPtr ptr, int capitalization); +void QTextCharFormat_SetFontFamily(QtObjectPtr ptr, char* family); +void QTextCharFormat_SetFontFixedPitch(QtObjectPtr ptr, int fixedPitch); +void QTextCharFormat_SetFontHintingPreference(QtObjectPtr ptr, int hintingPreference); +void QTextCharFormat_SetFontItalic(QtObjectPtr ptr, int italic); +void QTextCharFormat_SetFontKerning(QtObjectPtr ptr, int enable); +void QTextCharFormat_SetFontLetterSpacingType(QtObjectPtr ptr, int letterSpacingType); +void QTextCharFormat_SetFontOverline(QtObjectPtr ptr, int overline); +void QTextCharFormat_SetFontStretch(QtObjectPtr ptr, int factor); +void QTextCharFormat_SetFontStrikeOut(QtObjectPtr ptr, int strikeOut); +void QTextCharFormat_SetFontStyleHint(QtObjectPtr ptr, int hint, int strategy); +void QTextCharFormat_SetFontStyleStrategy(QtObjectPtr ptr, int strategy); +void QTextCharFormat_SetFontUnderline(QtObjectPtr ptr, int underline); +void QTextCharFormat_SetFontWeight(QtObjectPtr ptr, int weight); +void QTextCharFormat_SetTextOutline(QtObjectPtr ptr, QtObjectPtr pen); +void QTextCharFormat_SetToolTip(QtObjectPtr ptr, char* text); +void QTextCharFormat_SetUnderlineColor(QtObjectPtr ptr, QtObjectPtr color); +void QTextCharFormat_SetVerticalAlignment(QtObjectPtr ptr, int alignment); +char* QTextCharFormat_ToolTip(QtObjectPtr ptr); +int QTextCharFormat_UnderlineStyle(QtObjectPtr ptr); +int QTextCharFormat_VerticalAlignment(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtextcursor.cpp b/gui/qtextcursor.cpp new file mode 100755 index 00000000..a0620004 --- /dev/null +++ b/gui/qtextcursor.cpp @@ -0,0 +1,297 @@ +#include "qtextcursor.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextCursor: public QTextCursor { +public: +}; + +void QTextCursor_InsertBlock3(QtObjectPtr ptr, QtObjectPtr format, QtObjectPtr charFormat){ + static_cast(ptr)->insertBlock(*static_cast(format), *static_cast(charFormat)); +} + +QtObjectPtr QTextCursor_InsertTable2(QtObjectPtr ptr, int rows, int columns){ + return static_cast(ptr)->insertTable(rows, columns); +} + +QtObjectPtr QTextCursor_InsertTable(QtObjectPtr ptr, int rows, int columns, QtObjectPtr format){ + return static_cast(ptr)->insertTable(rows, columns, *static_cast(format)); +} + +void QTextCursor_InsertText2(QtObjectPtr ptr, char* text, QtObjectPtr format){ + static_cast(ptr)->insertText(QString(text), *static_cast(format)); +} + +int QTextCursor_MovePosition(QtObjectPtr ptr, int operation, int mode, int n){ + return static_cast(ptr)->movePosition(static_cast(operation), static_cast(mode), n); +} + +QtObjectPtr QTextCursor_NewQTextCursor(){ + return new QTextCursor(); +} + +QtObjectPtr QTextCursor_NewQTextCursor2(QtObjectPtr document){ + return new QTextCursor(static_cast(document)); +} + +QtObjectPtr QTextCursor_NewQTextCursor4(QtObjectPtr frame){ + return new QTextCursor(static_cast(frame)); +} + +QtObjectPtr QTextCursor_NewQTextCursor5(QtObjectPtr block){ + return new QTextCursor(*static_cast(block)); +} + +QtObjectPtr QTextCursor_NewQTextCursor7(QtObjectPtr cursor){ + return new QTextCursor(*static_cast(cursor)); +} + +int QTextCursor_Anchor(QtObjectPtr ptr){ + return static_cast(ptr)->anchor(); +} + +int QTextCursor_AtBlockEnd(QtObjectPtr ptr){ + return static_cast(ptr)->atBlockEnd(); +} + +int QTextCursor_AtBlockStart(QtObjectPtr ptr){ + return static_cast(ptr)->atBlockStart(); +} + +int QTextCursor_AtEnd(QtObjectPtr ptr){ + return static_cast(ptr)->atEnd(); +} + +int QTextCursor_AtStart(QtObjectPtr ptr){ + return static_cast(ptr)->atStart(); +} + +void QTextCursor_BeginEditBlock(QtObjectPtr ptr){ + static_cast(ptr)->beginEditBlock(); +} + +int QTextCursor_BlockNumber(QtObjectPtr ptr){ + return static_cast(ptr)->blockNumber(); +} + +void QTextCursor_ClearSelection(QtObjectPtr ptr){ + static_cast(ptr)->clearSelection(); +} + +int QTextCursor_ColumnNumber(QtObjectPtr ptr){ + return static_cast(ptr)->columnNumber(); +} + +QtObjectPtr QTextCursor_CreateList2(QtObjectPtr ptr, int style){ + return static_cast(ptr)->createList(static_cast(style)); +} + +QtObjectPtr QTextCursor_CreateList(QtObjectPtr ptr, QtObjectPtr format){ + return static_cast(ptr)->createList(*static_cast(format)); +} + +QtObjectPtr QTextCursor_CurrentFrame(QtObjectPtr ptr){ + return static_cast(ptr)->currentFrame(); +} + +QtObjectPtr QTextCursor_CurrentList(QtObjectPtr ptr){ + return static_cast(ptr)->currentList(); +} + +QtObjectPtr QTextCursor_CurrentTable(QtObjectPtr ptr){ + return static_cast(ptr)->currentTable(); +} + +void QTextCursor_DeleteChar(QtObjectPtr ptr){ + static_cast(ptr)->deleteChar(); +} + +void QTextCursor_DeletePreviousChar(QtObjectPtr ptr){ + static_cast(ptr)->deletePreviousChar(); +} + +QtObjectPtr QTextCursor_Document(QtObjectPtr ptr){ + return static_cast(ptr)->document(); +} + +void QTextCursor_EndEditBlock(QtObjectPtr ptr){ + static_cast(ptr)->endEditBlock(); +} + +int QTextCursor_HasComplexSelection(QtObjectPtr ptr){ + return static_cast(ptr)->hasComplexSelection(); +} + +int QTextCursor_HasSelection(QtObjectPtr ptr){ + return static_cast(ptr)->hasSelection(); +} + +void QTextCursor_InsertBlock(QtObjectPtr ptr){ + static_cast(ptr)->insertBlock(); +} + +void QTextCursor_InsertBlock2(QtObjectPtr ptr, QtObjectPtr format){ + static_cast(ptr)->insertBlock(*static_cast(format)); +} + +void QTextCursor_InsertFragment(QtObjectPtr ptr, QtObjectPtr fragment){ + static_cast(ptr)->insertFragment(*static_cast(fragment)); +} + +QtObjectPtr QTextCursor_InsertFrame(QtObjectPtr ptr, QtObjectPtr format){ + return static_cast(ptr)->insertFrame(*static_cast(format)); +} + +void QTextCursor_InsertHtml(QtObjectPtr ptr, char* html){ + static_cast(ptr)->insertHtml(QString(html)); +} + +void QTextCursor_InsertImage4(QtObjectPtr ptr, QtObjectPtr image, char* name){ + static_cast(ptr)->insertImage(*static_cast(image), QString(name)); +} + +void QTextCursor_InsertImage3(QtObjectPtr ptr, char* name){ + static_cast(ptr)->insertImage(QString(name)); +} + +void QTextCursor_InsertImage(QtObjectPtr ptr, QtObjectPtr format){ + static_cast(ptr)->insertImage(*static_cast(format)); +} + +void QTextCursor_InsertImage2(QtObjectPtr ptr, QtObjectPtr format, int alignment){ + static_cast(ptr)->insertImage(*static_cast(format), static_cast(alignment)); +} + +QtObjectPtr QTextCursor_InsertList2(QtObjectPtr ptr, int style){ + return static_cast(ptr)->insertList(static_cast(style)); +} + +QtObjectPtr QTextCursor_InsertList(QtObjectPtr ptr, QtObjectPtr format){ + return static_cast(ptr)->insertList(*static_cast(format)); +} + +void QTextCursor_InsertText(QtObjectPtr ptr, char* text){ + static_cast(ptr)->insertText(QString(text)); +} + +int QTextCursor_IsCopyOf(QtObjectPtr ptr, QtObjectPtr other){ + return static_cast(ptr)->isCopyOf(*static_cast(other)); +} + +int QTextCursor_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +void QTextCursor_JoinPreviousEditBlock(QtObjectPtr ptr){ + static_cast(ptr)->joinPreviousEditBlock(); +} + +int QTextCursor_KeepPositionOnInsert(QtObjectPtr ptr){ + return static_cast(ptr)->keepPositionOnInsert(); +} + +void QTextCursor_MergeBlockCharFormat(QtObjectPtr ptr, QtObjectPtr modifier){ + static_cast(ptr)->mergeBlockCharFormat(*static_cast(modifier)); +} + +void QTextCursor_MergeBlockFormat(QtObjectPtr ptr, QtObjectPtr modifier){ + static_cast(ptr)->mergeBlockFormat(*static_cast(modifier)); +} + +void QTextCursor_MergeCharFormat(QtObjectPtr ptr, QtObjectPtr modifier){ + static_cast(ptr)->mergeCharFormat(*static_cast(modifier)); +} + +int QTextCursor_Position(QtObjectPtr ptr){ + return static_cast(ptr)->position(); +} + +int QTextCursor_PositionInBlock(QtObjectPtr ptr){ + return static_cast(ptr)->positionInBlock(); +} + +void QTextCursor_RemoveSelectedText(QtObjectPtr ptr){ + static_cast(ptr)->removeSelectedText(); +} + +void QTextCursor_Select(QtObjectPtr ptr, int selection){ + static_cast(ptr)->select(static_cast(selection)); +} + +void QTextCursor_SelectedTableCells(QtObjectPtr ptr, int firstRow, int numRows, int firstColumn, int numColumns){ + static_cast(ptr)->selectedTableCells(&firstRow, &numRows, &firstColumn, &numColumns); +} + +char* QTextCursor_SelectedText(QtObjectPtr ptr){ + return static_cast(ptr)->selectedText().toUtf8().data(); +} + +int QTextCursor_SelectionEnd(QtObjectPtr ptr){ + return static_cast(ptr)->selectionEnd(); +} + +int QTextCursor_SelectionStart(QtObjectPtr ptr){ + return static_cast(ptr)->selectionStart(); +} + +void QTextCursor_SetBlockCharFormat(QtObjectPtr ptr, QtObjectPtr format){ + static_cast(ptr)->setBlockCharFormat(*static_cast(format)); +} + +void QTextCursor_SetBlockFormat(QtObjectPtr ptr, QtObjectPtr format){ + static_cast(ptr)->setBlockFormat(*static_cast(format)); +} + +void QTextCursor_SetCharFormat(QtObjectPtr ptr, QtObjectPtr format){ + static_cast(ptr)->setCharFormat(*static_cast(format)); +} + +void QTextCursor_SetKeepPositionOnInsert(QtObjectPtr ptr, int b){ + static_cast(ptr)->setKeepPositionOnInsert(b != 0); +} + +void QTextCursor_SetPosition(QtObjectPtr ptr, int pos, int m){ + static_cast(ptr)->setPosition(pos, static_cast(m)); +} + +void QTextCursor_SetVerticalMovementX(QtObjectPtr ptr, int x){ + static_cast(ptr)->setVerticalMovementX(x); +} + +void QTextCursor_SetVisualNavigation(QtObjectPtr ptr, int b){ + static_cast(ptr)->setVisualNavigation(b != 0); +} + +void QTextCursor_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +int QTextCursor_VerticalMovementX(QtObjectPtr ptr){ + return static_cast(ptr)->verticalMovementX(); +} + +int QTextCursor_VisualNavigation(QtObjectPtr ptr){ + return static_cast(ptr)->visualNavigation(); +} + +void QTextCursor_DestroyQTextCursor(QtObjectPtr ptr){ + static_cast(ptr)->~QTextCursor(); +} + diff --git a/gui/qtextcursor.go b/gui/qtextcursor.go new file mode 100755 index 00000000..57db7add --- /dev/null +++ b/gui/qtextcursor.go @@ -0,0 +1,519 @@ +package gui + +//#include "qtextcursor.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QTextCursor struct { + ptr unsafe.Pointer +} + +type QTextCursorITF interface { + QTextCursorPTR() *QTextCursor +} + +func (p *QTextCursor) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTextCursor) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTextCursor(ptr QTextCursorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextCursorPTR().Pointer() + } + return nil +} + +func QTextCursorFromPointer(ptr unsafe.Pointer) *QTextCursor { + var n = new(QTextCursor) + n.SetPointer(ptr) + return n +} + +func (ptr *QTextCursor) QTextCursorPTR() *QTextCursor { + return ptr +} + +//QTextCursor::MoveMode +type QTextCursor__MoveMode int + +var ( + QTextCursor__MoveAnchor = QTextCursor__MoveMode(0) + QTextCursor__KeepAnchor = QTextCursor__MoveMode(1) +) + +//QTextCursor::MoveOperation +type QTextCursor__MoveOperation int + +var ( + QTextCursor__NoMove = QTextCursor__MoveOperation(0) + QTextCursor__Start = QTextCursor__MoveOperation(1) + QTextCursor__Up = QTextCursor__MoveOperation(2) + QTextCursor__StartOfLine = QTextCursor__MoveOperation(3) + QTextCursor__StartOfBlock = QTextCursor__MoveOperation(4) + QTextCursor__StartOfWord = QTextCursor__MoveOperation(5) + QTextCursor__PreviousBlock = QTextCursor__MoveOperation(6) + QTextCursor__PreviousCharacter = QTextCursor__MoveOperation(7) + QTextCursor__PreviousWord = QTextCursor__MoveOperation(8) + QTextCursor__Left = QTextCursor__MoveOperation(9) + QTextCursor__WordLeft = QTextCursor__MoveOperation(10) + QTextCursor__End = QTextCursor__MoveOperation(11) + QTextCursor__Down = QTextCursor__MoveOperation(12) + QTextCursor__EndOfLine = QTextCursor__MoveOperation(13) + QTextCursor__EndOfWord = QTextCursor__MoveOperation(14) + QTextCursor__EndOfBlock = QTextCursor__MoveOperation(15) + QTextCursor__NextBlock = QTextCursor__MoveOperation(16) + QTextCursor__NextCharacter = QTextCursor__MoveOperation(17) + QTextCursor__NextWord = QTextCursor__MoveOperation(18) + QTextCursor__Right = QTextCursor__MoveOperation(19) + QTextCursor__WordRight = QTextCursor__MoveOperation(20) + QTextCursor__NextCell = QTextCursor__MoveOperation(21) + QTextCursor__PreviousCell = QTextCursor__MoveOperation(22) + QTextCursor__NextRow = QTextCursor__MoveOperation(23) + QTextCursor__PreviousRow = QTextCursor__MoveOperation(24) +) + +//QTextCursor::SelectionType +type QTextCursor__SelectionType int + +var ( + QTextCursor__WordUnderCursor = QTextCursor__SelectionType(0) + QTextCursor__LineUnderCursor = QTextCursor__SelectionType(1) + QTextCursor__BlockUnderCursor = QTextCursor__SelectionType(2) + QTextCursor__Document = QTextCursor__SelectionType(3) +) + +func (ptr *QTextCursor) InsertBlock3(format QTextBlockFormatITF, charFormat QTextCharFormatITF) { + if ptr.Pointer() != nil { + C.QTextCursor_InsertBlock3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextBlockFormat(format)), C.QtObjectPtr(PointerFromQTextCharFormat(charFormat))) + } +} + +func (ptr *QTextCursor) InsertTable2(rows int, columns int) *QTextTable { + if ptr.Pointer() != nil { + return QTextTableFromPointer(unsafe.Pointer(C.QTextCursor_InsertTable2(C.QtObjectPtr(ptr.Pointer()), C.int(rows), C.int(columns)))) + } + return nil +} + +func (ptr *QTextCursor) InsertTable(rows int, columns int, format QTextTableFormatITF) *QTextTable { + if ptr.Pointer() != nil { + return QTextTableFromPointer(unsafe.Pointer(C.QTextCursor_InsertTable(C.QtObjectPtr(ptr.Pointer()), C.int(rows), C.int(columns), C.QtObjectPtr(PointerFromQTextTableFormat(format))))) + } + return nil +} + +func (ptr *QTextCursor) InsertText2(text string, format QTextCharFormatITF) { + if ptr.Pointer() != nil { + C.QTextCursor_InsertText2(C.QtObjectPtr(ptr.Pointer()), C.CString(text), C.QtObjectPtr(PointerFromQTextCharFormat(format))) + } +} + +func (ptr *QTextCursor) MovePosition(operation QTextCursor__MoveOperation, mode QTextCursor__MoveMode, n int) bool { + if ptr.Pointer() != nil { + return C.QTextCursor_MovePosition(C.QtObjectPtr(ptr.Pointer()), C.int(operation), C.int(mode), C.int(n)) != 0 + } + return false +} + +func NewQTextCursor() *QTextCursor { + return QTextCursorFromPointer(unsafe.Pointer(C.QTextCursor_NewQTextCursor())) +} + +func NewQTextCursor2(document QTextDocumentITF) *QTextCursor { + return QTextCursorFromPointer(unsafe.Pointer(C.QTextCursor_NewQTextCursor2(C.QtObjectPtr(PointerFromQTextDocument(document))))) +} + +func NewQTextCursor4(frame QTextFrameITF) *QTextCursor { + return QTextCursorFromPointer(unsafe.Pointer(C.QTextCursor_NewQTextCursor4(C.QtObjectPtr(PointerFromQTextFrame(frame))))) +} + +func NewQTextCursor5(block QTextBlockITF) *QTextCursor { + return QTextCursorFromPointer(unsafe.Pointer(C.QTextCursor_NewQTextCursor5(C.QtObjectPtr(PointerFromQTextBlock(block))))) +} + +func NewQTextCursor7(cursor QTextCursorITF) *QTextCursor { + return QTextCursorFromPointer(unsafe.Pointer(C.QTextCursor_NewQTextCursor7(C.QtObjectPtr(PointerFromQTextCursor(cursor))))) +} + +func (ptr *QTextCursor) Anchor() int { + if ptr.Pointer() != nil { + return int(C.QTextCursor_Anchor(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextCursor) AtBlockEnd() bool { + if ptr.Pointer() != nil { + return C.QTextCursor_AtBlockEnd(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextCursor) AtBlockStart() bool { + if ptr.Pointer() != nil { + return C.QTextCursor_AtBlockStart(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextCursor) AtEnd() bool { + if ptr.Pointer() != nil { + return C.QTextCursor_AtEnd(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextCursor) AtStart() bool { + if ptr.Pointer() != nil { + return C.QTextCursor_AtStart(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextCursor) BeginEditBlock() { + if ptr.Pointer() != nil { + C.QTextCursor_BeginEditBlock(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextCursor) BlockNumber() int { + if ptr.Pointer() != nil { + return int(C.QTextCursor_BlockNumber(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextCursor) ClearSelection() { + if ptr.Pointer() != nil { + C.QTextCursor_ClearSelection(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextCursor) ColumnNumber() int { + if ptr.Pointer() != nil { + return int(C.QTextCursor_ColumnNumber(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextCursor) CreateList2(style QTextListFormat__Style) *QTextList { + if ptr.Pointer() != nil { + return QTextListFromPointer(unsafe.Pointer(C.QTextCursor_CreateList2(C.QtObjectPtr(ptr.Pointer()), C.int(style)))) + } + return nil +} + +func (ptr *QTextCursor) CreateList(format QTextListFormatITF) *QTextList { + if ptr.Pointer() != nil { + return QTextListFromPointer(unsafe.Pointer(C.QTextCursor_CreateList(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextListFormat(format))))) + } + return nil +} + +func (ptr *QTextCursor) CurrentFrame() *QTextFrame { + if ptr.Pointer() != nil { + return QTextFrameFromPointer(unsafe.Pointer(C.QTextCursor_CurrentFrame(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTextCursor) CurrentList() *QTextList { + if ptr.Pointer() != nil { + return QTextListFromPointer(unsafe.Pointer(C.QTextCursor_CurrentList(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTextCursor) CurrentTable() *QTextTable { + if ptr.Pointer() != nil { + return QTextTableFromPointer(unsafe.Pointer(C.QTextCursor_CurrentTable(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTextCursor) DeleteChar() { + if ptr.Pointer() != nil { + C.QTextCursor_DeleteChar(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextCursor) DeletePreviousChar() { + if ptr.Pointer() != nil { + C.QTextCursor_DeletePreviousChar(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextCursor) Document() *QTextDocument { + if ptr.Pointer() != nil { + return QTextDocumentFromPointer(unsafe.Pointer(C.QTextCursor_Document(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTextCursor) EndEditBlock() { + if ptr.Pointer() != nil { + C.QTextCursor_EndEditBlock(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextCursor) HasComplexSelection() bool { + if ptr.Pointer() != nil { + return C.QTextCursor_HasComplexSelection(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextCursor) HasSelection() bool { + if ptr.Pointer() != nil { + return C.QTextCursor_HasSelection(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextCursor) InsertBlock() { + if ptr.Pointer() != nil { + C.QTextCursor_InsertBlock(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextCursor) InsertBlock2(format QTextBlockFormatITF) { + if ptr.Pointer() != nil { + C.QTextCursor_InsertBlock2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextBlockFormat(format))) + } +} + +func (ptr *QTextCursor) InsertFragment(fragment QTextDocumentFragmentITF) { + if ptr.Pointer() != nil { + C.QTextCursor_InsertFragment(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextDocumentFragment(fragment))) + } +} + +func (ptr *QTextCursor) InsertFrame(format QTextFrameFormatITF) *QTextFrame { + if ptr.Pointer() != nil { + return QTextFrameFromPointer(unsafe.Pointer(C.QTextCursor_InsertFrame(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextFrameFormat(format))))) + } + return nil +} + +func (ptr *QTextCursor) InsertHtml(html string) { + if ptr.Pointer() != nil { + C.QTextCursor_InsertHtml(C.QtObjectPtr(ptr.Pointer()), C.CString(html)) + } +} + +func (ptr *QTextCursor) InsertImage4(image QImageITF, name string) { + if ptr.Pointer() != nil { + C.QTextCursor_InsertImage4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQImage(image)), C.CString(name)) + } +} + +func (ptr *QTextCursor) InsertImage3(name string) { + if ptr.Pointer() != nil { + C.QTextCursor_InsertImage3(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func (ptr *QTextCursor) InsertImage(format QTextImageFormatITF) { + if ptr.Pointer() != nil { + C.QTextCursor_InsertImage(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextImageFormat(format))) + } +} + +func (ptr *QTextCursor) InsertImage2(format QTextImageFormatITF, alignment QTextFrameFormat__Position) { + if ptr.Pointer() != nil { + C.QTextCursor_InsertImage2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextImageFormat(format)), C.int(alignment)) + } +} + +func (ptr *QTextCursor) InsertList2(style QTextListFormat__Style) *QTextList { + if ptr.Pointer() != nil { + return QTextListFromPointer(unsafe.Pointer(C.QTextCursor_InsertList2(C.QtObjectPtr(ptr.Pointer()), C.int(style)))) + } + return nil +} + +func (ptr *QTextCursor) InsertList(format QTextListFormatITF) *QTextList { + if ptr.Pointer() != nil { + return QTextListFromPointer(unsafe.Pointer(C.QTextCursor_InsertList(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextListFormat(format))))) + } + return nil +} + +func (ptr *QTextCursor) InsertText(text string) { + if ptr.Pointer() != nil { + C.QTextCursor_InsertText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QTextCursor) IsCopyOf(other QTextCursorITF) bool { + if ptr.Pointer() != nil { + return C.QTextCursor_IsCopyOf(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextCursor(other))) != 0 + } + return false +} + +func (ptr *QTextCursor) IsNull() bool { + if ptr.Pointer() != nil { + return C.QTextCursor_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextCursor) JoinPreviousEditBlock() { + if ptr.Pointer() != nil { + C.QTextCursor_JoinPreviousEditBlock(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextCursor) KeepPositionOnInsert() bool { + if ptr.Pointer() != nil { + return C.QTextCursor_KeepPositionOnInsert(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextCursor) MergeBlockCharFormat(modifier QTextCharFormatITF) { + if ptr.Pointer() != nil { + C.QTextCursor_MergeBlockCharFormat(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextCharFormat(modifier))) + } +} + +func (ptr *QTextCursor) MergeBlockFormat(modifier QTextBlockFormatITF) { + if ptr.Pointer() != nil { + C.QTextCursor_MergeBlockFormat(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextBlockFormat(modifier))) + } +} + +func (ptr *QTextCursor) MergeCharFormat(modifier QTextCharFormatITF) { + if ptr.Pointer() != nil { + C.QTextCursor_MergeCharFormat(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextCharFormat(modifier))) + } +} + +func (ptr *QTextCursor) Position() int { + if ptr.Pointer() != nil { + return int(C.QTextCursor_Position(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextCursor) PositionInBlock() int { + if ptr.Pointer() != nil { + return int(C.QTextCursor_PositionInBlock(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextCursor) RemoveSelectedText() { + if ptr.Pointer() != nil { + C.QTextCursor_RemoveSelectedText(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextCursor) Select(selection QTextCursor__SelectionType) { + if ptr.Pointer() != nil { + C.QTextCursor_Select(C.QtObjectPtr(ptr.Pointer()), C.int(selection)) + } +} + +func (ptr *QTextCursor) SelectedTableCells(firstRow int, numRows int, firstColumn int, numColumns int) { + if ptr.Pointer() != nil { + C.QTextCursor_SelectedTableCells(C.QtObjectPtr(ptr.Pointer()), C.int(firstRow), C.int(numRows), C.int(firstColumn), C.int(numColumns)) + } +} + +func (ptr *QTextCursor) SelectedText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextCursor_SelectedText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTextCursor) SelectionEnd() int { + if ptr.Pointer() != nil { + return int(C.QTextCursor_SelectionEnd(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextCursor) SelectionStart() int { + if ptr.Pointer() != nil { + return int(C.QTextCursor_SelectionStart(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextCursor) SetBlockCharFormat(format QTextCharFormatITF) { + if ptr.Pointer() != nil { + C.QTextCursor_SetBlockCharFormat(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextCharFormat(format))) + } +} + +func (ptr *QTextCursor) SetBlockFormat(format QTextBlockFormatITF) { + if ptr.Pointer() != nil { + C.QTextCursor_SetBlockFormat(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextBlockFormat(format))) + } +} + +func (ptr *QTextCursor) SetCharFormat(format QTextCharFormatITF) { + if ptr.Pointer() != nil { + C.QTextCursor_SetCharFormat(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextCharFormat(format))) + } +} + +func (ptr *QTextCursor) SetKeepPositionOnInsert(b bool) { + if ptr.Pointer() != nil { + C.QTextCursor_SetKeepPositionOnInsert(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(b))) + } +} + +func (ptr *QTextCursor) SetPosition(pos int, m QTextCursor__MoveMode) { + if ptr.Pointer() != nil { + C.QTextCursor_SetPosition(C.QtObjectPtr(ptr.Pointer()), C.int(pos), C.int(m)) + } +} + +func (ptr *QTextCursor) SetVerticalMovementX(x int) { + if ptr.Pointer() != nil { + C.QTextCursor_SetVerticalMovementX(C.QtObjectPtr(ptr.Pointer()), C.int(x)) + } +} + +func (ptr *QTextCursor) SetVisualNavigation(b bool) { + if ptr.Pointer() != nil { + C.QTextCursor_SetVisualNavigation(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(b))) + } +} + +func (ptr *QTextCursor) Swap(other QTextCursorITF) { + if ptr.Pointer() != nil { + C.QTextCursor_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextCursor(other))) + } +} + +func (ptr *QTextCursor) VerticalMovementX() int { + if ptr.Pointer() != nil { + return int(C.QTextCursor_VerticalMovementX(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextCursor) VisualNavigation() bool { + if ptr.Pointer() != nil { + return C.QTextCursor_VisualNavigation(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextCursor) DestroyQTextCursor() { + if ptr.Pointer() != nil { + C.QTextCursor_DestroyQTextCursor(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qtextcursor.h b/gui/qtextcursor.h new file mode 100755 index 00000000..2d8e9cfe --- /dev/null +++ b/gui/qtextcursor.h @@ -0,0 +1,77 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QTextCursor_InsertBlock3(QtObjectPtr ptr, QtObjectPtr format, QtObjectPtr charFormat); +QtObjectPtr QTextCursor_InsertTable2(QtObjectPtr ptr, int rows, int columns); +QtObjectPtr QTextCursor_InsertTable(QtObjectPtr ptr, int rows, int columns, QtObjectPtr format); +void QTextCursor_InsertText2(QtObjectPtr ptr, char* text, QtObjectPtr format); +int QTextCursor_MovePosition(QtObjectPtr ptr, int operation, int mode, int n); +QtObjectPtr QTextCursor_NewQTextCursor(); +QtObjectPtr QTextCursor_NewQTextCursor2(QtObjectPtr document); +QtObjectPtr QTextCursor_NewQTextCursor4(QtObjectPtr frame); +QtObjectPtr QTextCursor_NewQTextCursor5(QtObjectPtr block); +QtObjectPtr QTextCursor_NewQTextCursor7(QtObjectPtr cursor); +int QTextCursor_Anchor(QtObjectPtr ptr); +int QTextCursor_AtBlockEnd(QtObjectPtr ptr); +int QTextCursor_AtBlockStart(QtObjectPtr ptr); +int QTextCursor_AtEnd(QtObjectPtr ptr); +int QTextCursor_AtStart(QtObjectPtr ptr); +void QTextCursor_BeginEditBlock(QtObjectPtr ptr); +int QTextCursor_BlockNumber(QtObjectPtr ptr); +void QTextCursor_ClearSelection(QtObjectPtr ptr); +int QTextCursor_ColumnNumber(QtObjectPtr ptr); +QtObjectPtr QTextCursor_CreateList2(QtObjectPtr ptr, int style); +QtObjectPtr QTextCursor_CreateList(QtObjectPtr ptr, QtObjectPtr format); +QtObjectPtr QTextCursor_CurrentFrame(QtObjectPtr ptr); +QtObjectPtr QTextCursor_CurrentList(QtObjectPtr ptr); +QtObjectPtr QTextCursor_CurrentTable(QtObjectPtr ptr); +void QTextCursor_DeleteChar(QtObjectPtr ptr); +void QTextCursor_DeletePreviousChar(QtObjectPtr ptr); +QtObjectPtr QTextCursor_Document(QtObjectPtr ptr); +void QTextCursor_EndEditBlock(QtObjectPtr ptr); +int QTextCursor_HasComplexSelection(QtObjectPtr ptr); +int QTextCursor_HasSelection(QtObjectPtr ptr); +void QTextCursor_InsertBlock(QtObjectPtr ptr); +void QTextCursor_InsertBlock2(QtObjectPtr ptr, QtObjectPtr format); +void QTextCursor_InsertFragment(QtObjectPtr ptr, QtObjectPtr fragment); +QtObjectPtr QTextCursor_InsertFrame(QtObjectPtr ptr, QtObjectPtr format); +void QTextCursor_InsertHtml(QtObjectPtr ptr, char* html); +void QTextCursor_InsertImage4(QtObjectPtr ptr, QtObjectPtr image, char* name); +void QTextCursor_InsertImage3(QtObjectPtr ptr, char* name); +void QTextCursor_InsertImage(QtObjectPtr ptr, QtObjectPtr format); +void QTextCursor_InsertImage2(QtObjectPtr ptr, QtObjectPtr format, int alignment); +QtObjectPtr QTextCursor_InsertList2(QtObjectPtr ptr, int style); +QtObjectPtr QTextCursor_InsertList(QtObjectPtr ptr, QtObjectPtr format); +void QTextCursor_InsertText(QtObjectPtr ptr, char* text); +int QTextCursor_IsCopyOf(QtObjectPtr ptr, QtObjectPtr other); +int QTextCursor_IsNull(QtObjectPtr ptr); +void QTextCursor_JoinPreviousEditBlock(QtObjectPtr ptr); +int QTextCursor_KeepPositionOnInsert(QtObjectPtr ptr); +void QTextCursor_MergeBlockCharFormat(QtObjectPtr ptr, QtObjectPtr modifier); +void QTextCursor_MergeBlockFormat(QtObjectPtr ptr, QtObjectPtr modifier); +void QTextCursor_MergeCharFormat(QtObjectPtr ptr, QtObjectPtr modifier); +int QTextCursor_Position(QtObjectPtr ptr); +int QTextCursor_PositionInBlock(QtObjectPtr ptr); +void QTextCursor_RemoveSelectedText(QtObjectPtr ptr); +void QTextCursor_Select(QtObjectPtr ptr, int selection); +void QTextCursor_SelectedTableCells(QtObjectPtr ptr, int firstRow, int numRows, int firstColumn, int numColumns); +char* QTextCursor_SelectedText(QtObjectPtr ptr); +int QTextCursor_SelectionEnd(QtObjectPtr ptr); +int QTextCursor_SelectionStart(QtObjectPtr ptr); +void QTextCursor_SetBlockCharFormat(QtObjectPtr ptr, QtObjectPtr format); +void QTextCursor_SetBlockFormat(QtObjectPtr ptr, QtObjectPtr format); +void QTextCursor_SetCharFormat(QtObjectPtr ptr, QtObjectPtr format); +void QTextCursor_SetKeepPositionOnInsert(QtObjectPtr ptr, int b); +void QTextCursor_SetPosition(QtObjectPtr ptr, int pos, int m); +void QTextCursor_SetVerticalMovementX(QtObjectPtr ptr, int x); +void QTextCursor_SetVisualNavigation(QtObjectPtr ptr, int b); +void QTextCursor_Swap(QtObjectPtr ptr, QtObjectPtr other); +int QTextCursor_VerticalMovementX(QtObjectPtr ptr); +int QTextCursor_VisualNavigation(QtObjectPtr ptr); +void QTextCursor_DestroyQTextCursor(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtextdocument.cpp b/gui/qtextdocument.cpp new file mode 100755 index 00000000..154156ff --- /dev/null +++ b/gui/qtextdocument.cpp @@ -0,0 +1,323 @@ +#include "qtextdocument.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextDocument: public QTextDocument { +public: +void Signal_BaseUrlChanged(const QUrl & url){callbackQTextDocumentBaseUrlChanged(this->objectName().toUtf8().data(), url.toString().toUtf8().data());}; +void Signal_BlockCountChanged(int newBlockCount){callbackQTextDocumentBlockCountChanged(this->objectName().toUtf8().data(), newBlockCount);}; +void Signal_ContentsChange(int position, int charsRemoved, int charsAdded){callbackQTextDocumentContentsChange(this->objectName().toUtf8().data(), position, charsRemoved, charsAdded);}; +void Signal_ContentsChanged(){callbackQTextDocumentContentsChanged(this->objectName().toUtf8().data());}; +void Signal_DocumentLayoutChanged(){callbackQTextDocumentDocumentLayoutChanged(this->objectName().toUtf8().data());}; +void Signal_ModificationChanged(bool changed){callbackQTextDocumentModificationChanged(this->objectName().toUtf8().data(), changed);}; +void Signal_RedoAvailable(bool available){callbackQTextDocumentRedoAvailable(this->objectName().toUtf8().data(), available);}; +void Signal_UndoAvailable(bool available){callbackQTextDocumentUndoAvailable(this->objectName().toUtf8().data(), available);}; +void Signal_UndoCommandAdded(){callbackQTextDocumentUndoCommandAdded(this->objectName().toUtf8().data());}; +}; + +char* QTextDocument_BaseUrl(QtObjectPtr ptr){ + return static_cast(ptr)->baseUrl().toString().toUtf8().data(); +} + +int QTextDocument_BlockCount(QtObjectPtr ptr){ + return static_cast(ptr)->blockCount(); +} + +char* QTextDocument_DefaultStyleSheet(QtObjectPtr ptr){ + return static_cast(ptr)->defaultStyleSheet().toUtf8().data(); +} + +int QTextDocument_IsModified(QtObjectPtr ptr){ + return static_cast(ptr)->isModified(); +} + +int QTextDocument_IsUndoRedoEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isUndoRedoEnabled(); +} + +void QTextDocument_MarkContentsDirty(QtObjectPtr ptr, int position, int length){ + static_cast(ptr)->markContentsDirty(position, length); +} + +int QTextDocument_MaximumBlockCount(QtObjectPtr ptr){ + return static_cast(ptr)->maximumBlockCount(); +} + +void QTextDocument_SetBaseUrl(QtObjectPtr ptr, char* url){ + static_cast(ptr)->setBaseUrl(QUrl(QString(url))); +} + +void QTextDocument_SetDefaultStyleSheet(QtObjectPtr ptr, char* sheet){ + static_cast(ptr)->setDefaultStyleSheet(QString(sheet)); +} + +void QTextDocument_SetMaximumBlockCount(QtObjectPtr ptr, int maximum){ + static_cast(ptr)->setMaximumBlockCount(maximum); +} + +void QTextDocument_SetModified(QtObjectPtr ptr, int m){ + QMetaObject::invokeMethod(static_cast(ptr), "setModified", Q_ARG(bool, m != 0)); +} + +void QTextDocument_SetPageSize(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->setPageSize(*static_cast(size)); +} + +void QTextDocument_SetUndoRedoEnabled(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setUndoRedoEnabled(enable != 0); +} + +void QTextDocument_SetUseDesignMetrics(QtObjectPtr ptr, int b){ + static_cast(ptr)->setUseDesignMetrics(b != 0); +} + +int QTextDocument_UseDesignMetrics(QtObjectPtr ptr){ + return static_cast(ptr)->useDesignMetrics(); +} + +QtObjectPtr QTextDocument_NewQTextDocument(QtObjectPtr parent){ + return new QTextDocument(static_cast(parent)); +} + +QtObjectPtr QTextDocument_NewQTextDocument2(char* text, QtObjectPtr parent){ + return new QTextDocument(QString(text), static_cast(parent)); +} + +void QTextDocument_AddResource(QtObjectPtr ptr, int ty, char* name, char* resource){ + static_cast(ptr)->addResource(ty, QUrl(QString(name)), QVariant(resource)); +} + +void QTextDocument_AdjustSize(QtObjectPtr ptr){ + static_cast(ptr)->adjustSize(); +} + +int QTextDocument_AvailableRedoSteps(QtObjectPtr ptr){ + return static_cast(ptr)->availableRedoSteps(); +} + +int QTextDocument_AvailableUndoSteps(QtObjectPtr ptr){ + return static_cast(ptr)->availableUndoSteps(); +} + +void QTextDocument_ConnectBaseUrlChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTextDocument::baseUrlChanged), static_cast(ptr), static_cast(&MyQTextDocument::Signal_BaseUrlChanged));; +} + +void QTextDocument_DisconnectBaseUrlChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTextDocument::baseUrlChanged), static_cast(ptr), static_cast(&MyQTextDocument::Signal_BaseUrlChanged));; +} + +void QTextDocument_ConnectBlockCountChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTextDocument::blockCountChanged), static_cast(ptr), static_cast(&MyQTextDocument::Signal_BlockCountChanged));; +} + +void QTextDocument_DisconnectBlockCountChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTextDocument::blockCountChanged), static_cast(ptr), static_cast(&MyQTextDocument::Signal_BlockCountChanged));; +} + +int QTextDocument_CharacterCount(QtObjectPtr ptr){ + return static_cast(ptr)->characterCount(); +} + +void QTextDocument_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +void QTextDocument_ClearUndoRedoStacks(QtObjectPtr ptr, int stacksToClear){ + static_cast(ptr)->clearUndoRedoStacks(static_cast(stacksToClear)); +} + +QtObjectPtr QTextDocument_Clone(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->clone(static_cast(parent)); +} + +void QTextDocument_ConnectContentsChange(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTextDocument::contentsChange), static_cast(ptr), static_cast(&MyQTextDocument::Signal_ContentsChange));; +} + +void QTextDocument_DisconnectContentsChange(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTextDocument::contentsChange), static_cast(ptr), static_cast(&MyQTextDocument::Signal_ContentsChange));; +} + +void QTextDocument_ConnectContentsChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTextDocument::contentsChanged), static_cast(ptr), static_cast(&MyQTextDocument::Signal_ContentsChanged));; +} + +void QTextDocument_DisconnectContentsChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTextDocument::contentsChanged), static_cast(ptr), static_cast(&MyQTextDocument::Signal_ContentsChanged));; +} + +int QTextDocument_DefaultCursorMoveStyle(QtObjectPtr ptr){ + return static_cast(ptr)->defaultCursorMoveStyle(); +} + +QtObjectPtr QTextDocument_DocumentLayout(QtObjectPtr ptr){ + return static_cast(ptr)->documentLayout(); +} + +void QTextDocument_ConnectDocumentLayoutChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTextDocument::documentLayoutChanged), static_cast(ptr), static_cast(&MyQTextDocument::Signal_DocumentLayoutChanged));; +} + +void QTextDocument_DisconnectDocumentLayoutChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTextDocument::documentLayoutChanged), static_cast(ptr), static_cast(&MyQTextDocument::Signal_DocumentLayoutChanged));; +} + +void QTextDocument_DrawContents(QtObjectPtr ptr, QtObjectPtr p, QtObjectPtr rect){ + static_cast(ptr)->drawContents(static_cast(p), *static_cast(rect)); +} + +int QTextDocument_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +int QTextDocument_IsRedoAvailable(QtObjectPtr ptr){ + return static_cast(ptr)->isRedoAvailable(); +} + +int QTextDocument_IsUndoAvailable(QtObjectPtr ptr){ + return static_cast(ptr)->isUndoAvailable(); +} + +int QTextDocument_LineCount(QtObjectPtr ptr){ + return static_cast(ptr)->lineCount(); +} + +char* QTextDocument_MetaInformation(QtObjectPtr ptr, int info){ + return static_cast(ptr)->metaInformation(static_cast(info)).toUtf8().data(); +} + +void QTextDocument_ConnectModificationChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTextDocument::modificationChanged), static_cast(ptr), static_cast(&MyQTextDocument::Signal_ModificationChanged));; +} + +void QTextDocument_DisconnectModificationChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTextDocument::modificationChanged), static_cast(ptr), static_cast(&MyQTextDocument::Signal_ModificationChanged));; +} + +QtObjectPtr QTextDocument_Object(QtObjectPtr ptr, int objectIndex){ + return static_cast(ptr)->object(objectIndex); +} + +QtObjectPtr QTextDocument_ObjectForFormat(QtObjectPtr ptr, QtObjectPtr f){ + return static_cast(ptr)->objectForFormat(*static_cast(f)); +} + +int QTextDocument_PageCount(QtObjectPtr ptr){ + return static_cast(ptr)->pageCount(); +} + +void QTextDocument_Print(QtObjectPtr ptr, QtObjectPtr printer){ + static_cast(ptr)->print(static_cast(printer)); +} + +void QTextDocument_Redo2(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "redo"); +} + +void QTextDocument_Redo(QtObjectPtr ptr, QtObjectPtr cursor){ + static_cast(ptr)->redo(static_cast(cursor)); +} + +void QTextDocument_ConnectRedoAvailable(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTextDocument::redoAvailable), static_cast(ptr), static_cast(&MyQTextDocument::Signal_RedoAvailable));; +} + +void QTextDocument_DisconnectRedoAvailable(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTextDocument::redoAvailable), static_cast(ptr), static_cast(&MyQTextDocument::Signal_RedoAvailable));; +} + +char* QTextDocument_Resource(QtObjectPtr ptr, int ty, char* name){ + return static_cast(ptr)->resource(ty, QUrl(QString(name))).toString().toUtf8().data(); +} + +int QTextDocument_Revision(QtObjectPtr ptr){ + return static_cast(ptr)->revision(); +} + +QtObjectPtr QTextDocument_RootFrame(QtObjectPtr ptr){ + return static_cast(ptr)->rootFrame(); +} + +void QTextDocument_SetDefaultCursorMoveStyle(QtObjectPtr ptr, int style){ + static_cast(ptr)->setDefaultCursorMoveStyle(static_cast(style)); +} + +void QTextDocument_SetDefaultFont(QtObjectPtr ptr, QtObjectPtr font){ + static_cast(ptr)->setDefaultFont(*static_cast(font)); +} + +void QTextDocument_SetDefaultTextOption(QtObjectPtr ptr, QtObjectPtr option){ + static_cast(ptr)->setDefaultTextOption(*static_cast(option)); +} + +void QTextDocument_SetDocumentLayout(QtObjectPtr ptr, QtObjectPtr layout){ + static_cast(ptr)->setDocumentLayout(static_cast(layout)); +} + +void QTextDocument_SetHtml(QtObjectPtr ptr, char* html){ + static_cast(ptr)->setHtml(QString(html)); +} + +void QTextDocument_SetMetaInformation(QtObjectPtr ptr, int info, char* stri){ + static_cast(ptr)->setMetaInformation(static_cast(info), QString(stri)); +} + +void QTextDocument_SetPlainText(QtObjectPtr ptr, char* text){ + static_cast(ptr)->setPlainText(QString(text)); +} + +char* QTextDocument_ToHtml(QtObjectPtr ptr, QtObjectPtr encoding){ + return static_cast(ptr)->toHtml(*static_cast(encoding)).toUtf8().data(); +} + +char* QTextDocument_ToPlainText(QtObjectPtr ptr){ + return static_cast(ptr)->toPlainText().toUtf8().data(); +} + +void QTextDocument_Undo2(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "undo"); +} + +void QTextDocument_Undo(QtObjectPtr ptr, QtObjectPtr cursor){ + static_cast(ptr)->undo(static_cast(cursor)); +} + +void QTextDocument_ConnectUndoAvailable(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTextDocument::undoAvailable), static_cast(ptr), static_cast(&MyQTextDocument::Signal_UndoAvailable));; +} + +void QTextDocument_DisconnectUndoAvailable(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTextDocument::undoAvailable), static_cast(ptr), static_cast(&MyQTextDocument::Signal_UndoAvailable));; +} + +void QTextDocument_ConnectUndoCommandAdded(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTextDocument::undoCommandAdded), static_cast(ptr), static_cast(&MyQTextDocument::Signal_UndoCommandAdded));; +} + +void QTextDocument_DisconnectUndoCommandAdded(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTextDocument::undoCommandAdded), static_cast(ptr), static_cast(&MyQTextDocument::Signal_UndoCommandAdded));; +} + +void QTextDocument_DestroyQTextDocument(QtObjectPtr ptr){ + static_cast(ptr)->~QTextDocument(); +} + diff --git a/gui/qtextdocument.go b/gui/qtextdocument.go new file mode 100755 index 00000000..424249ce --- /dev/null +++ b/gui/qtextdocument.go @@ -0,0 +1,592 @@ +package gui + +//#include "qtextdocument.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QTextDocument struct { + core.QObject +} + +type QTextDocumentITF interface { + core.QObjectITF + QTextDocumentPTR() *QTextDocument +} + +func PointerFromQTextDocument(ptr QTextDocumentITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextDocumentPTR().Pointer() + } + return nil +} + +func QTextDocumentFromPointer(ptr unsafe.Pointer) *QTextDocument { + var n = new(QTextDocument) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QTextDocument_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QTextDocument) QTextDocumentPTR() *QTextDocument { + return ptr +} + +//QTextDocument::FindFlag +type QTextDocument__FindFlag int + +var ( + QTextDocument__FindBackward = QTextDocument__FindFlag(0x00001) + QTextDocument__FindCaseSensitively = QTextDocument__FindFlag(0x00002) + QTextDocument__FindWholeWords = QTextDocument__FindFlag(0x00004) +) + +//QTextDocument::MetaInformation +type QTextDocument__MetaInformation int + +var ( + QTextDocument__DocumentTitle = QTextDocument__MetaInformation(0) + QTextDocument__DocumentUrl = QTextDocument__MetaInformation(1) +) + +//QTextDocument::ResourceType +type QTextDocument__ResourceType int + +var ( + QTextDocument__HtmlResource = QTextDocument__ResourceType(1) + QTextDocument__ImageResource = QTextDocument__ResourceType(2) + QTextDocument__StyleSheetResource = QTextDocument__ResourceType(3) + QTextDocument__UserResource = QTextDocument__ResourceType(100) +) + +//QTextDocument::Stacks +type QTextDocument__Stacks int + +var ( + QTextDocument__UndoStack = QTextDocument__Stacks(0x01) + QTextDocument__RedoStack = QTextDocument__Stacks(0x02) + QTextDocument__UndoAndRedoStacks = QTextDocument__Stacks(QTextDocument__UndoStack | QTextDocument__RedoStack) +) + +func (ptr *QTextDocument) BaseUrl() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextDocument_BaseUrl(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTextDocument) BlockCount() int { + if ptr.Pointer() != nil { + return int(C.QTextDocument_BlockCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextDocument) DefaultStyleSheet() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextDocument_DefaultStyleSheet(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTextDocument) IsModified() bool { + if ptr.Pointer() != nil { + return C.QTextDocument_IsModified(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextDocument) IsUndoRedoEnabled() bool { + if ptr.Pointer() != nil { + return C.QTextDocument_IsUndoRedoEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextDocument) MarkContentsDirty(position int, length int) { + if ptr.Pointer() != nil { + C.QTextDocument_MarkContentsDirty(C.QtObjectPtr(ptr.Pointer()), C.int(position), C.int(length)) + } +} + +func (ptr *QTextDocument) MaximumBlockCount() int { + if ptr.Pointer() != nil { + return int(C.QTextDocument_MaximumBlockCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextDocument) SetBaseUrl(url string) { + if ptr.Pointer() != nil { + C.QTextDocument_SetBaseUrl(C.QtObjectPtr(ptr.Pointer()), C.CString(url)) + } +} + +func (ptr *QTextDocument) SetDefaultStyleSheet(sheet string) { + if ptr.Pointer() != nil { + C.QTextDocument_SetDefaultStyleSheet(C.QtObjectPtr(ptr.Pointer()), C.CString(sheet)) + } +} + +func (ptr *QTextDocument) SetMaximumBlockCount(maximum int) { + if ptr.Pointer() != nil { + C.QTextDocument_SetMaximumBlockCount(C.QtObjectPtr(ptr.Pointer()), C.int(maximum)) + } +} + +func (ptr *QTextDocument) SetModified(m bool) { + if ptr.Pointer() != nil { + C.QTextDocument_SetModified(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(m))) + } +} + +func (ptr *QTextDocument) SetPageSize(size core.QSizeFITF) { + if ptr.Pointer() != nil { + C.QTextDocument_SetPageSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSizeF(size))) + } +} + +func (ptr *QTextDocument) SetUndoRedoEnabled(enable bool) { + if ptr.Pointer() != nil { + C.QTextDocument_SetUndoRedoEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QTextDocument) SetUseDesignMetrics(b bool) { + if ptr.Pointer() != nil { + C.QTextDocument_SetUseDesignMetrics(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(b))) + } +} + +func (ptr *QTextDocument) UseDesignMetrics() bool { + if ptr.Pointer() != nil { + return C.QTextDocument_UseDesignMetrics(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func NewQTextDocument(parent core.QObjectITF) *QTextDocument { + return QTextDocumentFromPointer(unsafe.Pointer(C.QTextDocument_NewQTextDocument(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQTextDocument2(text string, parent core.QObjectITF) *QTextDocument { + return QTextDocumentFromPointer(unsafe.Pointer(C.QTextDocument_NewQTextDocument2(C.CString(text), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QTextDocument) AddResource(ty int, name string, resource string) { + if ptr.Pointer() != nil { + C.QTextDocument_AddResource(C.QtObjectPtr(ptr.Pointer()), C.int(ty), C.CString(name), C.CString(resource)) + } +} + +func (ptr *QTextDocument) AdjustSize() { + if ptr.Pointer() != nil { + C.QTextDocument_AdjustSize(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextDocument) AvailableRedoSteps() int { + if ptr.Pointer() != nil { + return int(C.QTextDocument_AvailableRedoSteps(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextDocument) AvailableUndoSteps() int { + if ptr.Pointer() != nil { + return int(C.QTextDocument_AvailableUndoSteps(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextDocument) ConnectBaseUrlChanged(f func(url string)) { + if ptr.Pointer() != nil { + C.QTextDocument_ConnectBaseUrlChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "baseUrlChanged", f) + } +} + +func (ptr *QTextDocument) DisconnectBaseUrlChanged() { + if ptr.Pointer() != nil { + C.QTextDocument_DisconnectBaseUrlChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "baseUrlChanged") + } +} + +//export callbackQTextDocumentBaseUrlChanged +func callbackQTextDocumentBaseUrlChanged(ptrName *C.char, url *C.char) { + qt.GetSignal(C.GoString(ptrName), "baseUrlChanged").(func(string))(C.GoString(url)) +} + +func (ptr *QTextDocument) ConnectBlockCountChanged(f func(newBlockCount int)) { + if ptr.Pointer() != nil { + C.QTextDocument_ConnectBlockCountChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "blockCountChanged", f) + } +} + +func (ptr *QTextDocument) DisconnectBlockCountChanged() { + if ptr.Pointer() != nil { + C.QTextDocument_DisconnectBlockCountChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "blockCountChanged") + } +} + +//export callbackQTextDocumentBlockCountChanged +func callbackQTextDocumentBlockCountChanged(ptrName *C.char, newBlockCount C.int) { + qt.GetSignal(C.GoString(ptrName), "blockCountChanged").(func(int))(int(newBlockCount)) +} + +func (ptr *QTextDocument) CharacterCount() int { + if ptr.Pointer() != nil { + return int(C.QTextDocument_CharacterCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextDocument) Clear() { + if ptr.Pointer() != nil { + C.QTextDocument_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextDocument) ClearUndoRedoStacks(stacksToClear QTextDocument__Stacks) { + if ptr.Pointer() != nil { + C.QTextDocument_ClearUndoRedoStacks(C.QtObjectPtr(ptr.Pointer()), C.int(stacksToClear)) + } +} + +func (ptr *QTextDocument) Clone(parent core.QObjectITF) *QTextDocument { + if ptr.Pointer() != nil { + return QTextDocumentFromPointer(unsafe.Pointer(C.QTextDocument_Clone(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(parent))))) + } + return nil +} + +func (ptr *QTextDocument) ConnectContentsChange(f func(position int, charsRemoved int, charsAdded int)) { + if ptr.Pointer() != nil { + C.QTextDocument_ConnectContentsChange(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "contentsChange", f) + } +} + +func (ptr *QTextDocument) DisconnectContentsChange() { + if ptr.Pointer() != nil { + C.QTextDocument_DisconnectContentsChange(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "contentsChange") + } +} + +//export callbackQTextDocumentContentsChange +func callbackQTextDocumentContentsChange(ptrName *C.char, position C.int, charsRemoved C.int, charsAdded C.int) { + qt.GetSignal(C.GoString(ptrName), "contentsChange").(func(int, int, int))(int(position), int(charsRemoved), int(charsAdded)) +} + +func (ptr *QTextDocument) ConnectContentsChanged(f func()) { + if ptr.Pointer() != nil { + C.QTextDocument_ConnectContentsChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "contentsChanged", f) + } +} + +func (ptr *QTextDocument) DisconnectContentsChanged() { + if ptr.Pointer() != nil { + C.QTextDocument_DisconnectContentsChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "contentsChanged") + } +} + +//export callbackQTextDocumentContentsChanged +func callbackQTextDocumentContentsChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "contentsChanged").(func())() +} + +func (ptr *QTextDocument) DefaultCursorMoveStyle() core.Qt__CursorMoveStyle { + if ptr.Pointer() != nil { + return core.Qt__CursorMoveStyle(C.QTextDocument_DefaultCursorMoveStyle(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextDocument) DocumentLayout() *QAbstractTextDocumentLayout { + if ptr.Pointer() != nil { + return QAbstractTextDocumentLayoutFromPointer(unsafe.Pointer(C.QTextDocument_DocumentLayout(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTextDocument) ConnectDocumentLayoutChanged(f func()) { + if ptr.Pointer() != nil { + C.QTextDocument_ConnectDocumentLayoutChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "documentLayoutChanged", f) + } +} + +func (ptr *QTextDocument) DisconnectDocumentLayoutChanged() { + if ptr.Pointer() != nil { + C.QTextDocument_DisconnectDocumentLayoutChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "documentLayoutChanged") + } +} + +//export callbackQTextDocumentDocumentLayoutChanged +func callbackQTextDocumentDocumentLayoutChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "documentLayoutChanged").(func())() +} + +func (ptr *QTextDocument) DrawContents(p QPainterITF, rect core.QRectFITF) { + if ptr.Pointer() != nil { + C.QTextDocument_DrawContents(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPainter(p)), C.QtObjectPtr(core.PointerFromQRectF(rect))) + } +} + +func (ptr *QTextDocument) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QTextDocument_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextDocument) IsRedoAvailable() bool { + if ptr.Pointer() != nil { + return C.QTextDocument_IsRedoAvailable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextDocument) IsUndoAvailable() bool { + if ptr.Pointer() != nil { + return C.QTextDocument_IsUndoAvailable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextDocument) LineCount() int { + if ptr.Pointer() != nil { + return int(C.QTextDocument_LineCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextDocument) MetaInformation(info QTextDocument__MetaInformation) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextDocument_MetaInformation(C.QtObjectPtr(ptr.Pointer()), C.int(info))) + } + return "" +} + +func (ptr *QTextDocument) ConnectModificationChanged(f func(changed bool)) { + if ptr.Pointer() != nil { + C.QTextDocument_ConnectModificationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "modificationChanged", f) + } +} + +func (ptr *QTextDocument) DisconnectModificationChanged() { + if ptr.Pointer() != nil { + C.QTextDocument_DisconnectModificationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "modificationChanged") + } +} + +//export callbackQTextDocumentModificationChanged +func callbackQTextDocumentModificationChanged(ptrName *C.char, changed C.int) { + qt.GetSignal(C.GoString(ptrName), "modificationChanged").(func(bool))(int(changed) != 0) +} + +func (ptr *QTextDocument) Object(objectIndex int) *QTextObject { + if ptr.Pointer() != nil { + return QTextObjectFromPointer(unsafe.Pointer(C.QTextDocument_Object(C.QtObjectPtr(ptr.Pointer()), C.int(objectIndex)))) + } + return nil +} + +func (ptr *QTextDocument) ObjectForFormat(f QTextFormatITF) *QTextObject { + if ptr.Pointer() != nil { + return QTextObjectFromPointer(unsafe.Pointer(C.QTextDocument_ObjectForFormat(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextFormat(f))))) + } + return nil +} + +func (ptr *QTextDocument) PageCount() int { + if ptr.Pointer() != nil { + return int(C.QTextDocument_PageCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextDocument) Print(printer QPagedPaintDeviceITF) { + if ptr.Pointer() != nil { + C.QTextDocument_Print(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPagedPaintDevice(printer))) + } +} + +func (ptr *QTextDocument) Redo2() { + if ptr.Pointer() != nil { + C.QTextDocument_Redo2(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextDocument) Redo(cursor QTextCursorITF) { + if ptr.Pointer() != nil { + C.QTextDocument_Redo(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextCursor(cursor))) + } +} + +func (ptr *QTextDocument) ConnectRedoAvailable(f func(available bool)) { + if ptr.Pointer() != nil { + C.QTextDocument_ConnectRedoAvailable(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "redoAvailable", f) + } +} + +func (ptr *QTextDocument) DisconnectRedoAvailable() { + if ptr.Pointer() != nil { + C.QTextDocument_DisconnectRedoAvailable(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "redoAvailable") + } +} + +//export callbackQTextDocumentRedoAvailable +func callbackQTextDocumentRedoAvailable(ptrName *C.char, available C.int) { + qt.GetSignal(C.GoString(ptrName), "redoAvailable").(func(bool))(int(available) != 0) +} + +func (ptr *QTextDocument) Resource(ty int, name string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextDocument_Resource(C.QtObjectPtr(ptr.Pointer()), C.int(ty), C.CString(name))) + } + return "" +} + +func (ptr *QTextDocument) Revision() int { + if ptr.Pointer() != nil { + return int(C.QTextDocument_Revision(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextDocument) RootFrame() *QTextFrame { + if ptr.Pointer() != nil { + return QTextFrameFromPointer(unsafe.Pointer(C.QTextDocument_RootFrame(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTextDocument) SetDefaultCursorMoveStyle(style core.Qt__CursorMoveStyle) { + if ptr.Pointer() != nil { + C.QTextDocument_SetDefaultCursorMoveStyle(C.QtObjectPtr(ptr.Pointer()), C.int(style)) + } +} + +func (ptr *QTextDocument) SetDefaultFont(font QFontITF) { + if ptr.Pointer() != nil { + C.QTextDocument_SetDefaultFont(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQFont(font))) + } +} + +func (ptr *QTextDocument) SetDefaultTextOption(option QTextOptionITF) { + if ptr.Pointer() != nil { + C.QTextDocument_SetDefaultTextOption(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextOption(option))) + } +} + +func (ptr *QTextDocument) SetDocumentLayout(layout QAbstractTextDocumentLayoutITF) { + if ptr.Pointer() != nil { + C.QTextDocument_SetDocumentLayout(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractTextDocumentLayout(layout))) + } +} + +func (ptr *QTextDocument) SetHtml(html string) { + if ptr.Pointer() != nil { + C.QTextDocument_SetHtml(C.QtObjectPtr(ptr.Pointer()), C.CString(html)) + } +} + +func (ptr *QTextDocument) SetMetaInformation(info QTextDocument__MetaInformation, stri string) { + if ptr.Pointer() != nil { + C.QTextDocument_SetMetaInformation(C.QtObjectPtr(ptr.Pointer()), C.int(info), C.CString(stri)) + } +} + +func (ptr *QTextDocument) SetPlainText(text string) { + if ptr.Pointer() != nil { + C.QTextDocument_SetPlainText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QTextDocument) ToHtml(encoding core.QByteArrayITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextDocument_ToHtml(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(encoding)))) + } + return "" +} + +func (ptr *QTextDocument) ToPlainText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextDocument_ToPlainText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTextDocument) Undo2() { + if ptr.Pointer() != nil { + C.QTextDocument_Undo2(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextDocument) Undo(cursor QTextCursorITF) { + if ptr.Pointer() != nil { + C.QTextDocument_Undo(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextCursor(cursor))) + } +} + +func (ptr *QTextDocument) ConnectUndoAvailable(f func(available bool)) { + if ptr.Pointer() != nil { + C.QTextDocument_ConnectUndoAvailable(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "undoAvailable", f) + } +} + +func (ptr *QTextDocument) DisconnectUndoAvailable() { + if ptr.Pointer() != nil { + C.QTextDocument_DisconnectUndoAvailable(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "undoAvailable") + } +} + +//export callbackQTextDocumentUndoAvailable +func callbackQTextDocumentUndoAvailable(ptrName *C.char, available C.int) { + qt.GetSignal(C.GoString(ptrName), "undoAvailable").(func(bool))(int(available) != 0) +} + +func (ptr *QTextDocument) ConnectUndoCommandAdded(f func()) { + if ptr.Pointer() != nil { + C.QTextDocument_ConnectUndoCommandAdded(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "undoCommandAdded", f) + } +} + +func (ptr *QTextDocument) DisconnectUndoCommandAdded() { + if ptr.Pointer() != nil { + C.QTextDocument_DisconnectUndoCommandAdded(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "undoCommandAdded") + } +} + +//export callbackQTextDocumentUndoCommandAdded +func callbackQTextDocumentUndoCommandAdded(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "undoCommandAdded").(func())() +} + +func (ptr *QTextDocument) DestroyQTextDocument() { + if ptr.Pointer() != nil { + C.QTextDocument_DestroyQTextDocument(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/gui/qtextdocument.h b/gui/qtextdocument.h new file mode 100755 index 00000000..099e5435 --- /dev/null +++ b/gui/qtextdocument.h @@ -0,0 +1,81 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QTextDocument_BaseUrl(QtObjectPtr ptr); +int QTextDocument_BlockCount(QtObjectPtr ptr); +char* QTextDocument_DefaultStyleSheet(QtObjectPtr ptr); +int QTextDocument_IsModified(QtObjectPtr ptr); +int QTextDocument_IsUndoRedoEnabled(QtObjectPtr ptr); +void QTextDocument_MarkContentsDirty(QtObjectPtr ptr, int position, int length); +int QTextDocument_MaximumBlockCount(QtObjectPtr ptr); +void QTextDocument_SetBaseUrl(QtObjectPtr ptr, char* url); +void QTextDocument_SetDefaultStyleSheet(QtObjectPtr ptr, char* sheet); +void QTextDocument_SetMaximumBlockCount(QtObjectPtr ptr, int maximum); +void QTextDocument_SetModified(QtObjectPtr ptr, int m); +void QTextDocument_SetPageSize(QtObjectPtr ptr, QtObjectPtr size); +void QTextDocument_SetUndoRedoEnabled(QtObjectPtr ptr, int enable); +void QTextDocument_SetUseDesignMetrics(QtObjectPtr ptr, int b); +int QTextDocument_UseDesignMetrics(QtObjectPtr ptr); +QtObjectPtr QTextDocument_NewQTextDocument(QtObjectPtr parent); +QtObjectPtr QTextDocument_NewQTextDocument2(char* text, QtObjectPtr parent); +void QTextDocument_AddResource(QtObjectPtr ptr, int ty, char* name, char* resource); +void QTextDocument_AdjustSize(QtObjectPtr ptr); +int QTextDocument_AvailableRedoSteps(QtObjectPtr ptr); +int QTextDocument_AvailableUndoSteps(QtObjectPtr ptr); +void QTextDocument_ConnectBaseUrlChanged(QtObjectPtr ptr); +void QTextDocument_DisconnectBaseUrlChanged(QtObjectPtr ptr); +void QTextDocument_ConnectBlockCountChanged(QtObjectPtr ptr); +void QTextDocument_DisconnectBlockCountChanged(QtObjectPtr ptr); +int QTextDocument_CharacterCount(QtObjectPtr ptr); +void QTextDocument_Clear(QtObjectPtr ptr); +void QTextDocument_ClearUndoRedoStacks(QtObjectPtr ptr, int stacksToClear); +QtObjectPtr QTextDocument_Clone(QtObjectPtr ptr, QtObjectPtr parent); +void QTextDocument_ConnectContentsChange(QtObjectPtr ptr); +void QTextDocument_DisconnectContentsChange(QtObjectPtr ptr); +void QTextDocument_ConnectContentsChanged(QtObjectPtr ptr); +void QTextDocument_DisconnectContentsChanged(QtObjectPtr ptr); +int QTextDocument_DefaultCursorMoveStyle(QtObjectPtr ptr); +QtObjectPtr QTextDocument_DocumentLayout(QtObjectPtr ptr); +void QTextDocument_ConnectDocumentLayoutChanged(QtObjectPtr ptr); +void QTextDocument_DisconnectDocumentLayoutChanged(QtObjectPtr ptr); +void QTextDocument_DrawContents(QtObjectPtr ptr, QtObjectPtr p, QtObjectPtr rect); +int QTextDocument_IsEmpty(QtObjectPtr ptr); +int QTextDocument_IsRedoAvailable(QtObjectPtr ptr); +int QTextDocument_IsUndoAvailable(QtObjectPtr ptr); +int QTextDocument_LineCount(QtObjectPtr ptr); +char* QTextDocument_MetaInformation(QtObjectPtr ptr, int info); +void QTextDocument_ConnectModificationChanged(QtObjectPtr ptr); +void QTextDocument_DisconnectModificationChanged(QtObjectPtr ptr); +QtObjectPtr QTextDocument_Object(QtObjectPtr ptr, int objectIndex); +QtObjectPtr QTextDocument_ObjectForFormat(QtObjectPtr ptr, QtObjectPtr f); +int QTextDocument_PageCount(QtObjectPtr ptr); +void QTextDocument_Print(QtObjectPtr ptr, QtObjectPtr printer); +void QTextDocument_Redo2(QtObjectPtr ptr); +void QTextDocument_Redo(QtObjectPtr ptr, QtObjectPtr cursor); +void QTextDocument_ConnectRedoAvailable(QtObjectPtr ptr); +void QTextDocument_DisconnectRedoAvailable(QtObjectPtr ptr); +char* QTextDocument_Resource(QtObjectPtr ptr, int ty, char* name); +int QTextDocument_Revision(QtObjectPtr ptr); +QtObjectPtr QTextDocument_RootFrame(QtObjectPtr ptr); +void QTextDocument_SetDefaultCursorMoveStyle(QtObjectPtr ptr, int style); +void QTextDocument_SetDefaultFont(QtObjectPtr ptr, QtObjectPtr font); +void QTextDocument_SetDefaultTextOption(QtObjectPtr ptr, QtObjectPtr option); +void QTextDocument_SetDocumentLayout(QtObjectPtr ptr, QtObjectPtr layout); +void QTextDocument_SetHtml(QtObjectPtr ptr, char* html); +void QTextDocument_SetMetaInformation(QtObjectPtr ptr, int info, char* stri); +void QTextDocument_SetPlainText(QtObjectPtr ptr, char* text); +char* QTextDocument_ToHtml(QtObjectPtr ptr, QtObjectPtr encoding); +char* QTextDocument_ToPlainText(QtObjectPtr ptr); +void QTextDocument_Undo2(QtObjectPtr ptr); +void QTextDocument_Undo(QtObjectPtr ptr, QtObjectPtr cursor); +void QTextDocument_ConnectUndoAvailable(QtObjectPtr ptr); +void QTextDocument_DisconnectUndoAvailable(QtObjectPtr ptr); +void QTextDocument_ConnectUndoCommandAdded(QtObjectPtr ptr); +void QTextDocument_DisconnectUndoCommandAdded(QtObjectPtr ptr); +void QTextDocument_DestroyQTextDocument(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtextdocumentfragment.cpp b/gui/qtextdocumentfragment.cpp new file mode 100755 index 00000000..0cf72c7b --- /dev/null +++ b/gui/qtextdocumentfragment.cpp @@ -0,0 +1,47 @@ +#include "qtextdocumentfragment.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextDocumentFragment: public QTextDocumentFragment { +public: +}; + +QtObjectPtr QTextDocumentFragment_NewQTextDocumentFragment4(QtObjectPtr other){ + return new QTextDocumentFragment(*static_cast(other)); +} + +QtObjectPtr QTextDocumentFragment_NewQTextDocumentFragment(){ + return new QTextDocumentFragment(); +} + +QtObjectPtr QTextDocumentFragment_NewQTextDocumentFragment3(QtObjectPtr cursor){ + return new QTextDocumentFragment(*static_cast(cursor)); +} + +QtObjectPtr QTextDocumentFragment_NewQTextDocumentFragment2(QtObjectPtr document){ + return new QTextDocumentFragment(static_cast(document)); +} + +int QTextDocumentFragment_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +char* QTextDocumentFragment_ToHtml(QtObjectPtr ptr, QtObjectPtr encoding){ + return static_cast(ptr)->toHtml(*static_cast(encoding)).toUtf8().data(); +} + +char* QTextDocumentFragment_ToPlainText(QtObjectPtr ptr){ + return static_cast(ptr)->toPlainText().toUtf8().data(); +} + +void QTextDocumentFragment_DestroyQTextDocumentFragment(QtObjectPtr ptr){ + static_cast(ptr)->~QTextDocumentFragment(); +} + diff --git a/gui/qtextdocumentfragment.go b/gui/qtextdocumentfragment.go new file mode 100755 index 00000000..f86b924e --- /dev/null +++ b/gui/qtextdocumentfragment.go @@ -0,0 +1,84 @@ +package gui + +//#include "qtextdocumentfragment.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QTextDocumentFragment struct { + ptr unsafe.Pointer +} + +type QTextDocumentFragmentITF interface { + QTextDocumentFragmentPTR() *QTextDocumentFragment +} + +func (p *QTextDocumentFragment) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTextDocumentFragment) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTextDocumentFragment(ptr QTextDocumentFragmentITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextDocumentFragmentPTR().Pointer() + } + return nil +} + +func QTextDocumentFragmentFromPointer(ptr unsafe.Pointer) *QTextDocumentFragment { + var n = new(QTextDocumentFragment) + n.SetPointer(ptr) + return n +} + +func (ptr *QTextDocumentFragment) QTextDocumentFragmentPTR() *QTextDocumentFragment { + return ptr +} + +func NewQTextDocumentFragment4(other QTextDocumentFragmentITF) *QTextDocumentFragment { + return QTextDocumentFragmentFromPointer(unsafe.Pointer(C.QTextDocumentFragment_NewQTextDocumentFragment4(C.QtObjectPtr(PointerFromQTextDocumentFragment(other))))) +} + +func NewQTextDocumentFragment() *QTextDocumentFragment { + return QTextDocumentFragmentFromPointer(unsafe.Pointer(C.QTextDocumentFragment_NewQTextDocumentFragment())) +} + +func NewQTextDocumentFragment3(cursor QTextCursorITF) *QTextDocumentFragment { + return QTextDocumentFragmentFromPointer(unsafe.Pointer(C.QTextDocumentFragment_NewQTextDocumentFragment3(C.QtObjectPtr(PointerFromQTextCursor(cursor))))) +} + +func NewQTextDocumentFragment2(document QTextDocumentITF) *QTextDocumentFragment { + return QTextDocumentFragmentFromPointer(unsafe.Pointer(C.QTextDocumentFragment_NewQTextDocumentFragment2(C.QtObjectPtr(PointerFromQTextDocument(document))))) +} + +func (ptr *QTextDocumentFragment) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QTextDocumentFragment_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextDocumentFragment) ToHtml(encoding core.QByteArrayITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextDocumentFragment_ToHtml(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(encoding)))) + } + return "" +} + +func (ptr *QTextDocumentFragment) ToPlainText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextDocumentFragment_ToPlainText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTextDocumentFragment) DestroyQTextDocumentFragment() { + if ptr.Pointer() != nil { + C.QTextDocumentFragment_DestroyQTextDocumentFragment(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qtextdocumentfragment.h b/gui/qtextdocumentfragment.h new file mode 100755 index 00000000..d928c084 --- /dev/null +++ b/gui/qtextdocumentfragment.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTextDocumentFragment_NewQTextDocumentFragment4(QtObjectPtr other); +QtObjectPtr QTextDocumentFragment_NewQTextDocumentFragment(); +QtObjectPtr QTextDocumentFragment_NewQTextDocumentFragment3(QtObjectPtr cursor); +QtObjectPtr QTextDocumentFragment_NewQTextDocumentFragment2(QtObjectPtr document); +int QTextDocumentFragment_IsEmpty(QtObjectPtr ptr); +char* QTextDocumentFragment_ToHtml(QtObjectPtr ptr, QtObjectPtr encoding); +char* QTextDocumentFragment_ToPlainText(QtObjectPtr ptr); +void QTextDocumentFragment_DestroyQTextDocumentFragment(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtextdocumentwriter.cpp b/gui/qtextdocumentwriter.cpp new file mode 100755 index 00000000..43cf5762 --- /dev/null +++ b/gui/qtextdocumentwriter.cpp @@ -0,0 +1,69 @@ +#include "qtextdocumentwriter.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextDocumentWriter: public QTextDocumentWriter { +public: +}; + +QtObjectPtr QTextDocumentWriter_NewQTextDocumentWriter(){ + return new QTextDocumentWriter(); +} + +QtObjectPtr QTextDocumentWriter_NewQTextDocumentWriter2(QtObjectPtr device, QtObjectPtr format){ + return new QTextDocumentWriter(static_cast(device), *static_cast(format)); +} + +QtObjectPtr QTextDocumentWriter_NewQTextDocumentWriter3(char* fileName, QtObjectPtr format){ + return new QTextDocumentWriter(QString(fileName), *static_cast(format)); +} + +QtObjectPtr QTextDocumentWriter_Codec(QtObjectPtr ptr){ + return static_cast(ptr)->codec(); +} + +QtObjectPtr QTextDocumentWriter_Device(QtObjectPtr ptr){ + return static_cast(ptr)->device(); +} + +char* QTextDocumentWriter_FileName(QtObjectPtr ptr){ + return static_cast(ptr)->fileName().toUtf8().data(); +} + +void QTextDocumentWriter_SetCodec(QtObjectPtr ptr, QtObjectPtr codec){ + static_cast(ptr)->setCodec(static_cast(codec)); +} + +void QTextDocumentWriter_SetDevice(QtObjectPtr ptr, QtObjectPtr device){ + static_cast(ptr)->setDevice(static_cast(device)); +} + +void QTextDocumentWriter_SetFileName(QtObjectPtr ptr, char* fileName){ + static_cast(ptr)->setFileName(QString(fileName)); +} + +void QTextDocumentWriter_SetFormat(QtObjectPtr ptr, QtObjectPtr format){ + static_cast(ptr)->setFormat(*static_cast(format)); +} + +int QTextDocumentWriter_Write(QtObjectPtr ptr, QtObjectPtr document){ + return static_cast(ptr)->write(static_cast(document)); +} + +int QTextDocumentWriter_Write2(QtObjectPtr ptr, QtObjectPtr fragment){ + return static_cast(ptr)->write(*static_cast(fragment)); +} + +void QTextDocumentWriter_DestroyQTextDocumentWriter(QtObjectPtr ptr){ + static_cast(ptr)->~QTextDocumentWriter(); +} + diff --git a/gui/qtextdocumentwriter.go b/gui/qtextdocumentwriter.go new file mode 100755 index 00000000..7664bc5b --- /dev/null +++ b/gui/qtextdocumentwriter.go @@ -0,0 +1,118 @@ +package gui + +//#include "qtextdocumentwriter.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QTextDocumentWriter struct { + ptr unsafe.Pointer +} + +type QTextDocumentWriterITF interface { + QTextDocumentWriterPTR() *QTextDocumentWriter +} + +func (p *QTextDocumentWriter) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTextDocumentWriter) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTextDocumentWriter(ptr QTextDocumentWriterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextDocumentWriterPTR().Pointer() + } + return nil +} + +func QTextDocumentWriterFromPointer(ptr unsafe.Pointer) *QTextDocumentWriter { + var n = new(QTextDocumentWriter) + n.SetPointer(ptr) + return n +} + +func (ptr *QTextDocumentWriter) QTextDocumentWriterPTR() *QTextDocumentWriter { + return ptr +} + +func NewQTextDocumentWriter() *QTextDocumentWriter { + return QTextDocumentWriterFromPointer(unsafe.Pointer(C.QTextDocumentWriter_NewQTextDocumentWriter())) +} + +func NewQTextDocumentWriter2(device core.QIODeviceITF, format core.QByteArrayITF) *QTextDocumentWriter { + return QTextDocumentWriterFromPointer(unsafe.Pointer(C.QTextDocumentWriter_NewQTextDocumentWriter2(C.QtObjectPtr(core.PointerFromQIODevice(device)), C.QtObjectPtr(core.PointerFromQByteArray(format))))) +} + +func NewQTextDocumentWriter3(fileName string, format core.QByteArrayITF) *QTextDocumentWriter { + return QTextDocumentWriterFromPointer(unsafe.Pointer(C.QTextDocumentWriter_NewQTextDocumentWriter3(C.CString(fileName), C.QtObjectPtr(core.PointerFromQByteArray(format))))) +} + +func (ptr *QTextDocumentWriter) Codec() *core.QTextCodec { + if ptr.Pointer() != nil { + return core.QTextCodecFromPointer(unsafe.Pointer(C.QTextDocumentWriter_Codec(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTextDocumentWriter) Device() *core.QIODevice { + if ptr.Pointer() != nil { + return core.QIODeviceFromPointer(unsafe.Pointer(C.QTextDocumentWriter_Device(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTextDocumentWriter) FileName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextDocumentWriter_FileName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTextDocumentWriter) SetCodec(codec core.QTextCodecITF) { + if ptr.Pointer() != nil { + C.QTextDocumentWriter_SetCodec(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQTextCodec(codec))) + } +} + +func (ptr *QTextDocumentWriter) SetDevice(device core.QIODeviceITF) { + if ptr.Pointer() != nil { + C.QTextDocumentWriter_SetDevice(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQIODevice(device))) + } +} + +func (ptr *QTextDocumentWriter) SetFileName(fileName string) { + if ptr.Pointer() != nil { + C.QTextDocumentWriter_SetFileName(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName)) + } +} + +func (ptr *QTextDocumentWriter) SetFormat(format core.QByteArrayITF) { + if ptr.Pointer() != nil { + C.QTextDocumentWriter_SetFormat(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(format))) + } +} + +func (ptr *QTextDocumentWriter) Write(document QTextDocumentITF) bool { + if ptr.Pointer() != nil { + return C.QTextDocumentWriter_Write(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextDocument(document))) != 0 + } + return false +} + +func (ptr *QTextDocumentWriter) Write2(fragment QTextDocumentFragmentITF) bool { + if ptr.Pointer() != nil { + return C.QTextDocumentWriter_Write2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextDocumentFragment(fragment))) != 0 + } + return false +} + +func (ptr *QTextDocumentWriter) DestroyQTextDocumentWriter() { + if ptr.Pointer() != nil { + C.QTextDocumentWriter_DestroyQTextDocumentWriter(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qtextdocumentwriter.h b/gui/qtextdocumentwriter.h new file mode 100755 index 00000000..8f667154 --- /dev/null +++ b/gui/qtextdocumentwriter.h @@ -0,0 +1,22 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTextDocumentWriter_NewQTextDocumentWriter(); +QtObjectPtr QTextDocumentWriter_NewQTextDocumentWriter2(QtObjectPtr device, QtObjectPtr format); +QtObjectPtr QTextDocumentWriter_NewQTextDocumentWriter3(char* fileName, QtObjectPtr format); +QtObjectPtr QTextDocumentWriter_Codec(QtObjectPtr ptr); +QtObjectPtr QTextDocumentWriter_Device(QtObjectPtr ptr); +char* QTextDocumentWriter_FileName(QtObjectPtr ptr); +void QTextDocumentWriter_SetCodec(QtObjectPtr ptr, QtObjectPtr codec); +void QTextDocumentWriter_SetDevice(QtObjectPtr ptr, QtObjectPtr device); +void QTextDocumentWriter_SetFileName(QtObjectPtr ptr, char* fileName); +void QTextDocumentWriter_SetFormat(QtObjectPtr ptr, QtObjectPtr format); +int QTextDocumentWriter_Write(QtObjectPtr ptr, QtObjectPtr document); +int QTextDocumentWriter_Write2(QtObjectPtr ptr, QtObjectPtr fragment); +void QTextDocumentWriter_DestroyQTextDocumentWriter(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtextformat.cpp b/gui/qtextformat.cpp new file mode 100755 index 00000000..74a1a8ac --- /dev/null +++ b/gui/qtextformat.cpp @@ -0,0 +1,149 @@ +#include "qtextformat.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextFormat: public QTextFormat { +public: +}; + +QtObjectPtr QTextFormat_NewQTextFormat3(QtObjectPtr other){ + return new QTextFormat(*static_cast(other)); +} + +void QTextFormat_SetObjectIndex(QtObjectPtr ptr, int index){ + static_cast(ptr)->setObjectIndex(index); +} + +QtObjectPtr QTextFormat_NewQTextFormat(){ + return new QTextFormat(); +} + +QtObjectPtr QTextFormat_NewQTextFormat2(int ty){ + return new QTextFormat(ty); +} + +int QTextFormat_BoolProperty(QtObjectPtr ptr, int propertyId){ + return static_cast(ptr)->boolProperty(propertyId); +} + +void QTextFormat_ClearBackground(QtObjectPtr ptr){ + static_cast(ptr)->clearBackground(); +} + +void QTextFormat_ClearForeground(QtObjectPtr ptr){ + static_cast(ptr)->clearForeground(); +} + +void QTextFormat_ClearProperty(QtObjectPtr ptr, int propertyId){ + static_cast(ptr)->clearProperty(propertyId); +} + +int QTextFormat_HasProperty(QtObjectPtr ptr, int propertyId){ + return static_cast(ptr)->hasProperty(propertyId); +} + +int QTextFormat_IntProperty(QtObjectPtr ptr, int propertyId){ + return static_cast(ptr)->intProperty(propertyId); +} + +int QTextFormat_IsBlockFormat(QtObjectPtr ptr){ + return static_cast(ptr)->isBlockFormat(); +} + +int QTextFormat_IsCharFormat(QtObjectPtr ptr){ + return static_cast(ptr)->isCharFormat(); +} + +int QTextFormat_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +int QTextFormat_IsFrameFormat(QtObjectPtr ptr){ + return static_cast(ptr)->isFrameFormat(); +} + +int QTextFormat_IsImageFormat(QtObjectPtr ptr){ + return static_cast(ptr)->isImageFormat(); +} + +int QTextFormat_IsListFormat(QtObjectPtr ptr){ + return static_cast(ptr)->isListFormat(); +} + +int QTextFormat_IsTableCellFormat(QtObjectPtr ptr){ + return static_cast(ptr)->isTableCellFormat(); +} + +int QTextFormat_IsTableFormat(QtObjectPtr ptr){ + return static_cast(ptr)->isTableFormat(); +} + +int QTextFormat_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QTextFormat_LayoutDirection(QtObjectPtr ptr){ + return static_cast(ptr)->layoutDirection(); +} + +void QTextFormat_Merge(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->merge(*static_cast(other)); +} + +int QTextFormat_ObjectIndex(QtObjectPtr ptr){ + return static_cast(ptr)->objectIndex(); +} + +int QTextFormat_ObjectType(QtObjectPtr ptr){ + return static_cast(ptr)->objectType(); +} + +char* QTextFormat_Property(QtObjectPtr ptr, int propertyId){ + return static_cast(ptr)->property(propertyId).toString().toUtf8().data(); +} + +int QTextFormat_PropertyCount(QtObjectPtr ptr){ + return static_cast(ptr)->propertyCount(); +} + +void QTextFormat_SetBackground(QtObjectPtr ptr, QtObjectPtr brush){ + static_cast(ptr)->setBackground(*static_cast(brush)); +} + +void QTextFormat_SetForeground(QtObjectPtr ptr, QtObjectPtr brush){ + static_cast(ptr)->setForeground(*static_cast(brush)); +} + +void QTextFormat_SetLayoutDirection(QtObjectPtr ptr, int direction){ + static_cast(ptr)->setLayoutDirection(static_cast(direction)); +} + +void QTextFormat_SetObjectType(QtObjectPtr ptr, int ty){ + static_cast(ptr)->setObjectType(ty); +} + +void QTextFormat_SetProperty(QtObjectPtr ptr, int propertyId, char* value){ + static_cast(ptr)->setProperty(propertyId, QVariant(value)); +} + +char* QTextFormat_StringProperty(QtObjectPtr ptr, int propertyId){ + return static_cast(ptr)->stringProperty(propertyId).toUtf8().data(); +} + +void QTextFormat_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +int QTextFormat_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QTextFormat_DestroyQTextFormat(QtObjectPtr ptr){ + static_cast(ptr)->~QTextFormat(); +} + diff --git a/gui/qtextformat.go b/gui/qtextformat.go new file mode 100755 index 00000000..e8b297bd --- /dev/null +++ b/gui/qtextformat.go @@ -0,0 +1,379 @@ +package gui + +//#include "qtextformat.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QTextFormat struct { + ptr unsafe.Pointer +} + +type QTextFormatITF interface { + QTextFormatPTR() *QTextFormat +} + +func (p *QTextFormat) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTextFormat) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTextFormat(ptr QTextFormatITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextFormatPTR().Pointer() + } + return nil +} + +func QTextFormatFromPointer(ptr unsafe.Pointer) *QTextFormat { + var n = new(QTextFormat) + n.SetPointer(ptr) + return n +} + +func (ptr *QTextFormat) QTextFormatPTR() *QTextFormat { + return ptr +} + +//QTextFormat::FormatType +type QTextFormat__FormatType int + +var ( + QTextFormat__InvalidFormat = QTextFormat__FormatType(-1) + QTextFormat__BlockFormat = QTextFormat__FormatType(1) + QTextFormat__CharFormat = QTextFormat__FormatType(2) + QTextFormat__ListFormat = QTextFormat__FormatType(3) + QTextFormat__TableFormat = QTextFormat__FormatType(4) + QTextFormat__FrameFormat = QTextFormat__FormatType(5) + QTextFormat__UserFormat = QTextFormat__FormatType(100) +) + +//QTextFormat::ObjectTypes +type QTextFormat__ObjectTypes int + +var ( + QTextFormat__NoObject = QTextFormat__ObjectTypes(0) + QTextFormat__ImageObject = QTextFormat__ObjectTypes(1) + QTextFormat__TableObject = QTextFormat__ObjectTypes(2) + QTextFormat__TableCellObject = QTextFormat__ObjectTypes(3) + QTextFormat__UserObject = QTextFormat__ObjectTypes(0x1000) +) + +//QTextFormat::PageBreakFlag +type QTextFormat__PageBreakFlag int + +var ( + QTextFormat__PageBreak_Auto = QTextFormat__PageBreakFlag(0) + QTextFormat__PageBreak_AlwaysBefore = QTextFormat__PageBreakFlag(0x001) + QTextFormat__PageBreak_AlwaysAfter = QTextFormat__PageBreakFlag(0x010) +) + +//QTextFormat::Property +type QTextFormat__Property int + +var ( + QTextFormat__ObjectIndex = QTextFormat__Property(0x0) + QTextFormat__CssFloat = QTextFormat__Property(0x0800) + QTextFormat__LayoutDirection = QTextFormat__Property(0x0801) + QTextFormat__OutlinePen = QTextFormat__Property(0x810) + QTextFormat__BackgroundBrush = QTextFormat__Property(0x820) + QTextFormat__ForegroundBrush = QTextFormat__Property(0x821) + QTextFormat__BackgroundImageUrl = QTextFormat__Property(0x823) + QTextFormat__BlockAlignment = QTextFormat__Property(0x1010) + QTextFormat__BlockTopMargin = QTextFormat__Property(0x1030) + QTextFormat__BlockBottomMargin = QTextFormat__Property(0x1031) + QTextFormat__BlockLeftMargin = QTextFormat__Property(0x1032) + QTextFormat__BlockRightMargin = QTextFormat__Property(0x1033) + QTextFormat__TextIndent = QTextFormat__Property(0x1034) + QTextFormat__TabPositions = QTextFormat__Property(0x1035) + QTextFormat__BlockIndent = QTextFormat__Property(0x1040) + QTextFormat__LineHeight = QTextFormat__Property(0x1048) + QTextFormat__LineHeightType = QTextFormat__Property(0x1049) + QTextFormat__BlockNonBreakableLines = QTextFormat__Property(0x1050) + QTextFormat__BlockTrailingHorizontalRulerWidth = QTextFormat__Property(0x1060) + QTextFormat__FirstFontProperty = QTextFormat__Property(0x1FE0) + QTextFormat__FontCapitalization = QTextFormat__Property(QTextFormat__FirstFontProperty) + QTextFormat__FontLetterSpacingType = QTextFormat__Property(0x2033) + QTextFormat__FontLetterSpacing = QTextFormat__Property(0x1FE1) + QTextFormat__FontWordSpacing = QTextFormat__Property(0x1FE2) + QTextFormat__FontStretch = QTextFormat__Property(0x2034) + QTextFormat__FontStyleHint = QTextFormat__Property(0x1FE3) + QTextFormat__FontStyleStrategy = QTextFormat__Property(0x1FE4) + QTextFormat__FontKerning = QTextFormat__Property(0x1FE5) + QTextFormat__FontHintingPreference = QTextFormat__Property(0x1FE6) + QTextFormat__FontFamily = QTextFormat__Property(0x2000) + QTextFormat__FontPointSize = QTextFormat__Property(0x2001) + QTextFormat__FontSizeAdjustment = QTextFormat__Property(0x2002) + QTextFormat__FontSizeIncrement = QTextFormat__Property(QTextFormat__FontSizeAdjustment) + QTextFormat__FontWeight = QTextFormat__Property(0x2003) + QTextFormat__FontItalic = QTextFormat__Property(0x2004) + QTextFormat__FontUnderline = QTextFormat__Property(0x2005) + QTextFormat__FontOverline = QTextFormat__Property(0x2006) + QTextFormat__FontStrikeOut = QTextFormat__Property(0x2007) + QTextFormat__FontFixedPitch = QTextFormat__Property(0x2008) + QTextFormat__FontPixelSize = QTextFormat__Property(0x2009) + QTextFormat__LastFontProperty = QTextFormat__Property(QTextFormat__FontPixelSize) + QTextFormat__TextUnderlineColor = QTextFormat__Property(0x2010) + QTextFormat__TextVerticalAlignment = QTextFormat__Property(0x2021) + QTextFormat__TextOutline = QTextFormat__Property(0x2022) + QTextFormat__TextUnderlineStyle = QTextFormat__Property(0x2023) + QTextFormat__TextToolTip = QTextFormat__Property(0x2024) + QTextFormat__IsAnchor = QTextFormat__Property(0x2030) + QTextFormat__AnchorHref = QTextFormat__Property(0x2031) + QTextFormat__AnchorName = QTextFormat__Property(0x2032) + QTextFormat__ObjectType = QTextFormat__Property(0x2f00) + QTextFormat__ListStyle = QTextFormat__Property(0x3000) + QTextFormat__ListIndent = QTextFormat__Property(0x3001) + QTextFormat__ListNumberPrefix = QTextFormat__Property(0x3002) + QTextFormat__ListNumberSuffix = QTextFormat__Property(0x3003) + QTextFormat__FrameBorder = QTextFormat__Property(0x4000) + QTextFormat__FrameMargin = QTextFormat__Property(0x4001) + QTextFormat__FramePadding = QTextFormat__Property(0x4002) + QTextFormat__FrameWidth = QTextFormat__Property(0x4003) + QTextFormat__FrameHeight = QTextFormat__Property(0x4004) + QTextFormat__FrameTopMargin = QTextFormat__Property(0x4005) + QTextFormat__FrameBottomMargin = QTextFormat__Property(0x4006) + QTextFormat__FrameLeftMargin = QTextFormat__Property(0x4007) + QTextFormat__FrameRightMargin = QTextFormat__Property(0x4008) + QTextFormat__FrameBorderBrush = QTextFormat__Property(0x4009) + QTextFormat__FrameBorderStyle = QTextFormat__Property(0x4010) + QTextFormat__TableColumns = QTextFormat__Property(0x4100) + QTextFormat__TableColumnWidthConstraints = QTextFormat__Property(0x4101) + QTextFormat__TableCellSpacing = QTextFormat__Property(0x4102) + QTextFormat__TableCellPadding = QTextFormat__Property(0x4103) + QTextFormat__TableHeaderRowCount = QTextFormat__Property(0x4104) + QTextFormat__TableCellRowSpan = QTextFormat__Property(0x4810) + QTextFormat__TableCellColumnSpan = QTextFormat__Property(0x4811) + QTextFormat__TableCellTopPadding = QTextFormat__Property(0x4812) + QTextFormat__TableCellBottomPadding = QTextFormat__Property(0x4813) + QTextFormat__TableCellLeftPadding = QTextFormat__Property(0x4814) + QTextFormat__TableCellRightPadding = QTextFormat__Property(0x4815) + QTextFormat__ImageName = QTextFormat__Property(0x5000) + QTextFormat__ImageWidth = QTextFormat__Property(0x5010) + QTextFormat__ImageHeight = QTextFormat__Property(0x5011) + QTextFormat__FullWidthSelection = QTextFormat__Property(0x06000) + QTextFormat__PageBreakPolicy = QTextFormat__Property(0x7000) + QTextFormat__UserProperty = QTextFormat__Property(0x100000) +) + +func NewQTextFormat3(other QTextFormatITF) *QTextFormat { + return QTextFormatFromPointer(unsafe.Pointer(C.QTextFormat_NewQTextFormat3(C.QtObjectPtr(PointerFromQTextFormat(other))))) +} + +func (ptr *QTextFormat) SetObjectIndex(index int) { + if ptr.Pointer() != nil { + C.QTextFormat_SetObjectIndex(C.QtObjectPtr(ptr.Pointer()), C.int(index)) + } +} + +func NewQTextFormat() *QTextFormat { + return QTextFormatFromPointer(unsafe.Pointer(C.QTextFormat_NewQTextFormat())) +} + +func NewQTextFormat2(ty int) *QTextFormat { + return QTextFormatFromPointer(unsafe.Pointer(C.QTextFormat_NewQTextFormat2(C.int(ty)))) +} + +func (ptr *QTextFormat) BoolProperty(propertyId int) bool { + if ptr.Pointer() != nil { + return C.QTextFormat_BoolProperty(C.QtObjectPtr(ptr.Pointer()), C.int(propertyId)) != 0 + } + return false +} + +func (ptr *QTextFormat) ClearBackground() { + if ptr.Pointer() != nil { + C.QTextFormat_ClearBackground(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextFormat) ClearForeground() { + if ptr.Pointer() != nil { + C.QTextFormat_ClearForeground(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextFormat) ClearProperty(propertyId int) { + if ptr.Pointer() != nil { + C.QTextFormat_ClearProperty(C.QtObjectPtr(ptr.Pointer()), C.int(propertyId)) + } +} + +func (ptr *QTextFormat) HasProperty(propertyId int) bool { + if ptr.Pointer() != nil { + return C.QTextFormat_HasProperty(C.QtObjectPtr(ptr.Pointer()), C.int(propertyId)) != 0 + } + return false +} + +func (ptr *QTextFormat) IntProperty(propertyId int) int { + if ptr.Pointer() != nil { + return int(C.QTextFormat_IntProperty(C.QtObjectPtr(ptr.Pointer()), C.int(propertyId))) + } + return 0 +} + +func (ptr *QTextFormat) IsBlockFormat() bool { + if ptr.Pointer() != nil { + return C.QTextFormat_IsBlockFormat(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextFormat) IsCharFormat() bool { + if ptr.Pointer() != nil { + return C.QTextFormat_IsCharFormat(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextFormat) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QTextFormat_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextFormat) IsFrameFormat() bool { + if ptr.Pointer() != nil { + return C.QTextFormat_IsFrameFormat(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextFormat) IsImageFormat() bool { + if ptr.Pointer() != nil { + return C.QTextFormat_IsImageFormat(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextFormat) IsListFormat() bool { + if ptr.Pointer() != nil { + return C.QTextFormat_IsListFormat(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextFormat) IsTableCellFormat() bool { + if ptr.Pointer() != nil { + return C.QTextFormat_IsTableCellFormat(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextFormat) IsTableFormat() bool { + if ptr.Pointer() != nil { + return C.QTextFormat_IsTableFormat(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextFormat) IsValid() bool { + if ptr.Pointer() != nil { + return C.QTextFormat_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextFormat) LayoutDirection() core.Qt__LayoutDirection { + if ptr.Pointer() != nil { + return core.Qt__LayoutDirection(C.QTextFormat_LayoutDirection(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextFormat) Merge(other QTextFormatITF) { + if ptr.Pointer() != nil { + C.QTextFormat_Merge(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextFormat(other))) + } +} + +func (ptr *QTextFormat) ObjectIndex() int { + if ptr.Pointer() != nil { + return int(C.QTextFormat_ObjectIndex(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextFormat) ObjectType() int { + if ptr.Pointer() != nil { + return int(C.QTextFormat_ObjectType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextFormat) Property(propertyId int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextFormat_Property(C.QtObjectPtr(ptr.Pointer()), C.int(propertyId))) + } + return "" +} + +func (ptr *QTextFormat) PropertyCount() int { + if ptr.Pointer() != nil { + return int(C.QTextFormat_PropertyCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextFormat) SetBackground(brush QBrushITF) { + if ptr.Pointer() != nil { + C.QTextFormat_SetBackground(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQBrush(brush))) + } +} + +func (ptr *QTextFormat) SetForeground(brush QBrushITF) { + if ptr.Pointer() != nil { + C.QTextFormat_SetForeground(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQBrush(brush))) + } +} + +func (ptr *QTextFormat) SetLayoutDirection(direction core.Qt__LayoutDirection) { + if ptr.Pointer() != nil { + C.QTextFormat_SetLayoutDirection(C.QtObjectPtr(ptr.Pointer()), C.int(direction)) + } +} + +func (ptr *QTextFormat) SetObjectType(ty int) { + if ptr.Pointer() != nil { + C.QTextFormat_SetObjectType(C.QtObjectPtr(ptr.Pointer()), C.int(ty)) + } +} + +func (ptr *QTextFormat) SetProperty(propertyId int, value string) { + if ptr.Pointer() != nil { + C.QTextFormat_SetProperty(C.QtObjectPtr(ptr.Pointer()), C.int(propertyId), C.CString(value)) + } +} + +func (ptr *QTextFormat) StringProperty(propertyId int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextFormat_StringProperty(C.QtObjectPtr(ptr.Pointer()), C.int(propertyId))) + } + return "" +} + +func (ptr *QTextFormat) Swap(other QTextFormatITF) { + if ptr.Pointer() != nil { + C.QTextFormat_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextFormat(other))) + } +} + +func (ptr *QTextFormat) Type() int { + if ptr.Pointer() != nil { + return int(C.QTextFormat_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextFormat) DestroyQTextFormat() { + if ptr.Pointer() != nil { + C.QTextFormat_DestroyQTextFormat(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qtextformat.h b/gui/qtextformat.h new file mode 100755 index 00000000..35e92337 --- /dev/null +++ b/gui/qtextformat.h @@ -0,0 +1,43 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTextFormat_NewQTextFormat3(QtObjectPtr other); +void QTextFormat_SetObjectIndex(QtObjectPtr ptr, int index); +QtObjectPtr QTextFormat_NewQTextFormat(); +QtObjectPtr QTextFormat_NewQTextFormat2(int ty); +int QTextFormat_BoolProperty(QtObjectPtr ptr, int propertyId); +void QTextFormat_ClearBackground(QtObjectPtr ptr); +void QTextFormat_ClearForeground(QtObjectPtr ptr); +void QTextFormat_ClearProperty(QtObjectPtr ptr, int propertyId); +int QTextFormat_HasProperty(QtObjectPtr ptr, int propertyId); +int QTextFormat_IntProperty(QtObjectPtr ptr, int propertyId); +int QTextFormat_IsBlockFormat(QtObjectPtr ptr); +int QTextFormat_IsCharFormat(QtObjectPtr ptr); +int QTextFormat_IsEmpty(QtObjectPtr ptr); +int QTextFormat_IsFrameFormat(QtObjectPtr ptr); +int QTextFormat_IsImageFormat(QtObjectPtr ptr); +int QTextFormat_IsListFormat(QtObjectPtr ptr); +int QTextFormat_IsTableCellFormat(QtObjectPtr ptr); +int QTextFormat_IsTableFormat(QtObjectPtr ptr); +int QTextFormat_IsValid(QtObjectPtr ptr); +int QTextFormat_LayoutDirection(QtObjectPtr ptr); +void QTextFormat_Merge(QtObjectPtr ptr, QtObjectPtr other); +int QTextFormat_ObjectIndex(QtObjectPtr ptr); +int QTextFormat_ObjectType(QtObjectPtr ptr); +char* QTextFormat_Property(QtObjectPtr ptr, int propertyId); +int QTextFormat_PropertyCount(QtObjectPtr ptr); +void QTextFormat_SetBackground(QtObjectPtr ptr, QtObjectPtr brush); +void QTextFormat_SetForeground(QtObjectPtr ptr, QtObjectPtr brush); +void QTextFormat_SetLayoutDirection(QtObjectPtr ptr, int direction); +void QTextFormat_SetObjectType(QtObjectPtr ptr, int ty); +void QTextFormat_SetProperty(QtObjectPtr ptr, int propertyId, char* value); +char* QTextFormat_StringProperty(QtObjectPtr ptr, int propertyId); +void QTextFormat_Swap(QtObjectPtr ptr, QtObjectPtr other); +int QTextFormat_Type(QtObjectPtr ptr); +void QTextFormat_DestroyQTextFormat(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtextfragment.cpp b/gui/qtextfragment.cpp new file mode 100755 index 00000000..95bdbaf8 --- /dev/null +++ b/gui/qtextfragment.cpp @@ -0,0 +1,44 @@ +#include "qtextfragment.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextFragment: public QTextFragment { +public: +}; + +QtObjectPtr QTextFragment_NewQTextFragment(){ + return new QTextFragment(); +} + +QtObjectPtr QTextFragment_NewQTextFragment3(QtObjectPtr other){ + return new QTextFragment(*static_cast(other)); +} + +int QTextFragment_CharFormatIndex(QtObjectPtr ptr){ + return static_cast(ptr)->charFormatIndex(); +} + +int QTextFragment_Contains(QtObjectPtr ptr, int position){ + return static_cast(ptr)->contains(position); +} + +int QTextFragment_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QTextFragment_Length(QtObjectPtr ptr){ + return static_cast(ptr)->length(); +} + +int QTextFragment_Position(QtObjectPtr ptr){ + return static_cast(ptr)->position(); +} + +char* QTextFragment_Text(QtObjectPtr ptr){ + return static_cast(ptr)->text().toUtf8().data(); +} + diff --git a/gui/qtextfragment.go b/gui/qtextfragment.go new file mode 100755 index 00000000..ab5feade --- /dev/null +++ b/gui/qtextfragment.go @@ -0,0 +1,90 @@ +package gui + +//#include "qtextfragment.h" +import "C" +import ( + "unsafe" +) + +type QTextFragment struct { + ptr unsafe.Pointer +} + +type QTextFragmentITF interface { + QTextFragmentPTR() *QTextFragment +} + +func (p *QTextFragment) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTextFragment) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTextFragment(ptr QTextFragmentITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextFragmentPTR().Pointer() + } + return nil +} + +func QTextFragmentFromPointer(ptr unsafe.Pointer) *QTextFragment { + var n = new(QTextFragment) + n.SetPointer(ptr) + return n +} + +func (ptr *QTextFragment) QTextFragmentPTR() *QTextFragment { + return ptr +} + +func NewQTextFragment() *QTextFragment { + return QTextFragmentFromPointer(unsafe.Pointer(C.QTextFragment_NewQTextFragment())) +} + +func NewQTextFragment3(other QTextFragmentITF) *QTextFragment { + return QTextFragmentFromPointer(unsafe.Pointer(C.QTextFragment_NewQTextFragment3(C.QtObjectPtr(PointerFromQTextFragment(other))))) +} + +func (ptr *QTextFragment) CharFormatIndex() int { + if ptr.Pointer() != nil { + return int(C.QTextFragment_CharFormatIndex(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextFragment) Contains(position int) bool { + if ptr.Pointer() != nil { + return C.QTextFragment_Contains(C.QtObjectPtr(ptr.Pointer()), C.int(position)) != 0 + } + return false +} + +func (ptr *QTextFragment) IsValid() bool { + if ptr.Pointer() != nil { + return C.QTextFragment_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextFragment) Length() int { + if ptr.Pointer() != nil { + return int(C.QTextFragment_Length(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextFragment) Position() int { + if ptr.Pointer() != nil { + return int(C.QTextFragment_Position(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextFragment) Text() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextFragment_Text(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/gui/qtextfragment.h b/gui/qtextfragment.h new file mode 100755 index 00000000..bb99a9a2 --- /dev/null +++ b/gui/qtextfragment.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTextFragment_NewQTextFragment(); +QtObjectPtr QTextFragment_NewQTextFragment3(QtObjectPtr other); +int QTextFragment_CharFormatIndex(QtObjectPtr ptr); +int QTextFragment_Contains(QtObjectPtr ptr, int position); +int QTextFragment_IsValid(QtObjectPtr ptr); +int QTextFragment_Length(QtObjectPtr ptr); +int QTextFragment_Position(QtObjectPtr ptr); +char* QTextFragment_Text(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtextframe.cpp b/gui/qtextframe.cpp new file mode 100755 index 00000000..32e19f44 --- /dev/null +++ b/gui/qtextframe.cpp @@ -0,0 +1,38 @@ +#include "qtextframe.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextFrame: public QTextFrame { +public: +}; + +QtObjectPtr QTextFrame_NewQTextFrame(QtObjectPtr document){ + return new QTextFrame(static_cast(document)); +} + +int QTextFrame_FirstPosition(QtObjectPtr ptr){ + return static_cast(ptr)->firstPosition(); +} + +int QTextFrame_LastPosition(QtObjectPtr ptr){ + return static_cast(ptr)->lastPosition(); +} + +QtObjectPtr QTextFrame_ParentFrame(QtObjectPtr ptr){ + return static_cast(ptr)->parentFrame(); +} + +void QTextFrame_SetFrameFormat(QtObjectPtr ptr, QtObjectPtr format){ + static_cast(ptr)->setFrameFormat(*static_cast(format)); +} + +void QTextFrame_DestroyQTextFrame(QtObjectPtr ptr){ + static_cast(ptr)->~QTextFrame(); +} + diff --git a/gui/qtextframe.go b/gui/qtextframe.go new file mode 100755 index 00000000..1c635f2d --- /dev/null +++ b/gui/qtextframe.go @@ -0,0 +1,75 @@ +package gui + +//#include "qtextframe.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QTextFrame struct { + QTextObject +} + +type QTextFrameITF interface { + QTextObjectITF + QTextFramePTR() *QTextFrame +} + +func PointerFromQTextFrame(ptr QTextFrameITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextFramePTR().Pointer() + } + return nil +} + +func QTextFrameFromPointer(ptr unsafe.Pointer) *QTextFrame { + var n = new(QTextFrame) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QTextFrame_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QTextFrame) QTextFramePTR() *QTextFrame { + return ptr +} + +func NewQTextFrame(document QTextDocumentITF) *QTextFrame { + return QTextFrameFromPointer(unsafe.Pointer(C.QTextFrame_NewQTextFrame(C.QtObjectPtr(PointerFromQTextDocument(document))))) +} + +func (ptr *QTextFrame) FirstPosition() int { + if ptr.Pointer() != nil { + return int(C.QTextFrame_FirstPosition(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextFrame) LastPosition() int { + if ptr.Pointer() != nil { + return int(C.QTextFrame_LastPosition(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextFrame) ParentFrame() *QTextFrame { + if ptr.Pointer() != nil { + return QTextFrameFromPointer(unsafe.Pointer(C.QTextFrame_ParentFrame(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTextFrame) SetFrameFormat(format QTextFrameFormatITF) { + if ptr.Pointer() != nil { + C.QTextFrame_SetFrameFormat(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextFrameFormat(format))) + } +} + +func (ptr *QTextFrame) DestroyQTextFrame() { + if ptr.Pointer() != nil { + C.QTextFrame_DestroyQTextFrame(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/gui/qtextframe.h b/gui/qtextframe.h new file mode 100755 index 00000000..d6169d99 --- /dev/null +++ b/gui/qtextframe.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTextFrame_NewQTextFrame(QtObjectPtr document); +int QTextFrame_FirstPosition(QtObjectPtr ptr); +int QTextFrame_LastPosition(QtObjectPtr ptr); +QtObjectPtr QTextFrame_ParentFrame(QtObjectPtr ptr); +void QTextFrame_SetFrameFormat(QtObjectPtr ptr, QtObjectPtr format); +void QTextFrame_DestroyQTextFrame(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtextframeformat.cpp b/gui/qtextframeformat.cpp new file mode 100755 index 00000000..c6560e6b --- /dev/null +++ b/gui/qtextframeformat.cpp @@ -0,0 +1,60 @@ +#include "qtextframeformat.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextFrameFormat: public QTextFrameFormat { +public: +}; + +QtObjectPtr QTextFrameFormat_NewQTextFrameFormat(){ + return new QTextFrameFormat(); +} + +int QTextFrameFormat_BorderStyle(QtObjectPtr ptr){ + return static_cast(ptr)->borderStyle(); +} + +int QTextFrameFormat_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QTextFrameFormat_PageBreakPolicy(QtObjectPtr ptr){ + return static_cast(ptr)->pageBreakPolicy(); +} + +int QTextFrameFormat_Position(QtObjectPtr ptr){ + return static_cast(ptr)->position(); +} + +void QTextFrameFormat_SetBorderBrush(QtObjectPtr ptr, QtObjectPtr brush){ + static_cast(ptr)->setBorderBrush(*static_cast(brush)); +} + +void QTextFrameFormat_SetBorderStyle(QtObjectPtr ptr, int style){ + static_cast(ptr)->setBorderStyle(static_cast(style)); +} + +void QTextFrameFormat_SetHeight(QtObjectPtr ptr, QtObjectPtr height){ + static_cast(ptr)->setHeight(*static_cast(height)); +} + +void QTextFrameFormat_SetPageBreakPolicy(QtObjectPtr ptr, int policy){ + static_cast(ptr)->setPageBreakPolicy(static_cast(policy)); +} + +void QTextFrameFormat_SetPosition(QtObjectPtr ptr, int policy){ + static_cast(ptr)->setPosition(static_cast(policy)); +} + +void QTextFrameFormat_SetWidth(QtObjectPtr ptr, QtObjectPtr width){ + static_cast(ptr)->setWidth(*static_cast(width)); +} + diff --git a/gui/qtextframeformat.go b/gui/qtextframeformat.go new file mode 100755 index 00000000..70661bfe --- /dev/null +++ b/gui/qtextframeformat.go @@ -0,0 +1,127 @@ +package gui + +//#include "qtextframeformat.h" +import "C" +import ( + "unsafe" +) + +type QTextFrameFormat struct { + QTextFormat +} + +type QTextFrameFormatITF interface { + QTextFormatITF + QTextFrameFormatPTR() *QTextFrameFormat +} + +func PointerFromQTextFrameFormat(ptr QTextFrameFormatITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextFrameFormatPTR().Pointer() + } + return nil +} + +func QTextFrameFormatFromPointer(ptr unsafe.Pointer) *QTextFrameFormat { + var n = new(QTextFrameFormat) + n.SetPointer(ptr) + return n +} + +func (ptr *QTextFrameFormat) QTextFrameFormatPTR() *QTextFrameFormat { + return ptr +} + +//QTextFrameFormat::BorderStyle +type QTextFrameFormat__BorderStyle int + +var ( + QTextFrameFormat__BorderStyle_None = QTextFrameFormat__BorderStyle(0) + QTextFrameFormat__BorderStyle_Dotted = QTextFrameFormat__BorderStyle(1) + QTextFrameFormat__BorderStyle_Dashed = QTextFrameFormat__BorderStyle(2) + QTextFrameFormat__BorderStyle_Solid = QTextFrameFormat__BorderStyle(3) + QTextFrameFormat__BorderStyle_Double = QTextFrameFormat__BorderStyle(4) + QTextFrameFormat__BorderStyle_DotDash = QTextFrameFormat__BorderStyle(5) + QTextFrameFormat__BorderStyle_DotDotDash = QTextFrameFormat__BorderStyle(6) + QTextFrameFormat__BorderStyle_Groove = QTextFrameFormat__BorderStyle(7) + QTextFrameFormat__BorderStyle_Ridge = QTextFrameFormat__BorderStyle(8) + QTextFrameFormat__BorderStyle_Inset = QTextFrameFormat__BorderStyle(9) + QTextFrameFormat__BorderStyle_Outset = QTextFrameFormat__BorderStyle(10) +) + +//QTextFrameFormat::Position +type QTextFrameFormat__Position int + +var ( + QTextFrameFormat__InFlow = QTextFrameFormat__Position(0) + QTextFrameFormat__FloatLeft = QTextFrameFormat__Position(1) + QTextFrameFormat__FloatRight = QTextFrameFormat__Position(2) +) + +func NewQTextFrameFormat() *QTextFrameFormat { + return QTextFrameFormatFromPointer(unsafe.Pointer(C.QTextFrameFormat_NewQTextFrameFormat())) +} + +func (ptr *QTextFrameFormat) BorderStyle() QTextFrameFormat__BorderStyle { + if ptr.Pointer() != nil { + return QTextFrameFormat__BorderStyle(C.QTextFrameFormat_BorderStyle(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextFrameFormat) IsValid() bool { + if ptr.Pointer() != nil { + return C.QTextFrameFormat_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextFrameFormat) PageBreakPolicy() QTextFormat__PageBreakFlag { + if ptr.Pointer() != nil { + return QTextFormat__PageBreakFlag(C.QTextFrameFormat_PageBreakPolicy(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextFrameFormat) Position() QTextFrameFormat__Position { + if ptr.Pointer() != nil { + return QTextFrameFormat__Position(C.QTextFrameFormat_Position(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextFrameFormat) SetBorderBrush(brush QBrushITF) { + if ptr.Pointer() != nil { + C.QTextFrameFormat_SetBorderBrush(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQBrush(brush))) + } +} + +func (ptr *QTextFrameFormat) SetBorderStyle(style QTextFrameFormat__BorderStyle) { + if ptr.Pointer() != nil { + C.QTextFrameFormat_SetBorderStyle(C.QtObjectPtr(ptr.Pointer()), C.int(style)) + } +} + +func (ptr *QTextFrameFormat) SetHeight(height QTextLengthITF) { + if ptr.Pointer() != nil { + C.QTextFrameFormat_SetHeight(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextLength(height))) + } +} + +func (ptr *QTextFrameFormat) SetPageBreakPolicy(policy QTextFormat__PageBreakFlag) { + if ptr.Pointer() != nil { + C.QTextFrameFormat_SetPageBreakPolicy(C.QtObjectPtr(ptr.Pointer()), C.int(policy)) + } +} + +func (ptr *QTextFrameFormat) SetPosition(policy QTextFrameFormat__Position) { + if ptr.Pointer() != nil { + C.QTextFrameFormat_SetPosition(C.QtObjectPtr(ptr.Pointer()), C.int(policy)) + } +} + +func (ptr *QTextFrameFormat) SetWidth(width QTextLengthITF) { + if ptr.Pointer() != nil { + C.QTextFrameFormat_SetWidth(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextLength(width))) + } +} diff --git a/gui/qtextframeformat.h b/gui/qtextframeformat.h new file mode 100755 index 00000000..401b58c1 --- /dev/null +++ b/gui/qtextframeformat.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTextFrameFormat_NewQTextFrameFormat(); +int QTextFrameFormat_BorderStyle(QtObjectPtr ptr); +int QTextFrameFormat_IsValid(QtObjectPtr ptr); +int QTextFrameFormat_PageBreakPolicy(QtObjectPtr ptr); +int QTextFrameFormat_Position(QtObjectPtr ptr); +void QTextFrameFormat_SetBorderBrush(QtObjectPtr ptr, QtObjectPtr brush); +void QTextFrameFormat_SetBorderStyle(QtObjectPtr ptr, int style); +void QTextFrameFormat_SetHeight(QtObjectPtr ptr, QtObjectPtr height); +void QTextFrameFormat_SetPageBreakPolicy(QtObjectPtr ptr, int policy); +void QTextFrameFormat_SetPosition(QtObjectPtr ptr, int policy); +void QTextFrameFormat_SetWidth(QtObjectPtr ptr, QtObjectPtr width); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtextimageformat.cpp b/gui/qtextimageformat.cpp new file mode 100755 index 00000000..b187e9b4 --- /dev/null +++ b/gui/qtextimageformat.cpp @@ -0,0 +1,28 @@ +#include "qtextimageformat.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextImageFormat: public QTextImageFormat { +public: +}; + +QtObjectPtr QTextImageFormat_NewQTextImageFormat(){ + return new QTextImageFormat(); +} + +int QTextImageFormat_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +char* QTextImageFormat_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +void QTextImageFormat_SetName(QtObjectPtr ptr, char* name){ + static_cast(ptr)->setName(QString(name)); +} + diff --git a/gui/qtextimageformat.go b/gui/qtextimageformat.go new file mode 100755 index 00000000..2c25a860 --- /dev/null +++ b/gui/qtextimageformat.go @@ -0,0 +1,57 @@ +package gui + +//#include "qtextimageformat.h" +import "C" +import ( + "unsafe" +) + +type QTextImageFormat struct { + QTextCharFormat +} + +type QTextImageFormatITF interface { + QTextCharFormatITF + QTextImageFormatPTR() *QTextImageFormat +} + +func PointerFromQTextImageFormat(ptr QTextImageFormatITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextImageFormatPTR().Pointer() + } + return nil +} + +func QTextImageFormatFromPointer(ptr unsafe.Pointer) *QTextImageFormat { + var n = new(QTextImageFormat) + n.SetPointer(ptr) + return n +} + +func (ptr *QTextImageFormat) QTextImageFormatPTR() *QTextImageFormat { + return ptr +} + +func NewQTextImageFormat() *QTextImageFormat { + return QTextImageFormatFromPointer(unsafe.Pointer(C.QTextImageFormat_NewQTextImageFormat())) +} + +func (ptr *QTextImageFormat) IsValid() bool { + if ptr.Pointer() != nil { + return C.QTextImageFormat_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextImageFormat) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextImageFormat_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTextImageFormat) SetName(name string) { + if ptr.Pointer() != nil { + C.QTextImageFormat_SetName(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} diff --git a/gui/qtextimageformat.h b/gui/qtextimageformat.h new file mode 100755 index 00000000..5ec21570 --- /dev/null +++ b/gui/qtextimageformat.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTextImageFormat_NewQTextImageFormat(); +int QTextImageFormat_IsValid(QtObjectPtr ptr); +char* QTextImageFormat_Name(QtObjectPtr ptr); +void QTextImageFormat_SetName(QtObjectPtr ptr, char* name); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtextinlineobject.cpp b/gui/qtextinlineobject.cpp new file mode 100755 index 00000000..3c70daed --- /dev/null +++ b/gui/qtextinlineobject.cpp @@ -0,0 +1,28 @@ +#include "qtextinlineobject.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextInlineObject: public QTextInlineObject { +public: +}; + +int QTextInlineObject_FormatIndex(QtObjectPtr ptr){ + return static_cast(ptr)->formatIndex(); +} + +int QTextInlineObject_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QTextInlineObject_TextDirection(QtObjectPtr ptr){ + return static_cast(ptr)->textDirection(); +} + +int QTextInlineObject_TextPosition(QtObjectPtr ptr){ + return static_cast(ptr)->textPosition(); +} + diff --git a/gui/qtextinlineobject.go b/gui/qtextinlineobject.go new file mode 100755 index 00000000..3c284765 --- /dev/null +++ b/gui/qtextinlineobject.go @@ -0,0 +1,69 @@ +package gui + +//#include "qtextinlineobject.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QTextInlineObject struct { + ptr unsafe.Pointer +} + +type QTextInlineObjectITF interface { + QTextInlineObjectPTR() *QTextInlineObject +} + +func (p *QTextInlineObject) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTextInlineObject) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTextInlineObject(ptr QTextInlineObjectITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextInlineObjectPTR().Pointer() + } + return nil +} + +func QTextInlineObjectFromPointer(ptr unsafe.Pointer) *QTextInlineObject { + var n = new(QTextInlineObject) + n.SetPointer(ptr) + return n +} + +func (ptr *QTextInlineObject) QTextInlineObjectPTR() *QTextInlineObject { + return ptr +} + +func (ptr *QTextInlineObject) FormatIndex() int { + if ptr.Pointer() != nil { + return int(C.QTextInlineObject_FormatIndex(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextInlineObject) IsValid() bool { + if ptr.Pointer() != nil { + return C.QTextInlineObject_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextInlineObject) TextDirection() core.Qt__LayoutDirection { + if ptr.Pointer() != nil { + return core.Qt__LayoutDirection(C.QTextInlineObject_TextDirection(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextInlineObject) TextPosition() int { + if ptr.Pointer() != nil { + return int(C.QTextInlineObject_TextPosition(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/gui/qtextinlineobject.h b/gui/qtextinlineobject.h new file mode 100755 index 00000000..4c55f0d0 --- /dev/null +++ b/gui/qtextinlineobject.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QTextInlineObject_FormatIndex(QtObjectPtr ptr); +int QTextInlineObject_IsValid(QtObjectPtr ptr); +int QTextInlineObject_TextDirection(QtObjectPtr ptr); +int QTextInlineObject_TextPosition(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtextitem.cpp b/gui/qtextitem.cpp new file mode 100755 index 00000000..d8f77b5c --- /dev/null +++ b/gui/qtextitem.cpp @@ -0,0 +1,20 @@ +#include "qtextitem.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextItem: public QTextItem { +public: +}; + +int QTextItem_RenderFlags(QtObjectPtr ptr){ + return static_cast(ptr)->renderFlags(); +} + +char* QTextItem_Text(QtObjectPtr ptr){ + return static_cast(ptr)->text().toUtf8().data(); +} + diff --git a/gui/qtextitem.go b/gui/qtextitem.go new file mode 100755 index 00000000..e8ebf321 --- /dev/null +++ b/gui/qtextitem.go @@ -0,0 +1,65 @@ +package gui + +//#include "qtextitem.h" +import "C" +import ( + "unsafe" +) + +type QTextItem struct { + ptr unsafe.Pointer +} + +type QTextItemITF interface { + QTextItemPTR() *QTextItem +} + +func (p *QTextItem) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTextItem) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTextItem(ptr QTextItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextItemPTR().Pointer() + } + return nil +} + +func QTextItemFromPointer(ptr unsafe.Pointer) *QTextItem { + var n = new(QTextItem) + n.SetPointer(ptr) + return n +} + +func (ptr *QTextItem) QTextItemPTR() *QTextItem { + return ptr +} + +//QTextItem::RenderFlag +type QTextItem__RenderFlag int + +var ( + QTextItem__RightToLeft = QTextItem__RenderFlag(0x1) + QTextItem__Overline = QTextItem__RenderFlag(0x10) + QTextItem__Underline = QTextItem__RenderFlag(0x20) + QTextItem__StrikeOut = QTextItem__RenderFlag(0x40) + QTextItem__Dummy = QTextItem__RenderFlag(0xffffffff) +) + +func (ptr *QTextItem) RenderFlags() QTextItem__RenderFlag { + if ptr.Pointer() != nil { + return QTextItem__RenderFlag(C.QTextItem_RenderFlags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextItem) Text() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextItem_Text(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/gui/qtextitem.h b/gui/qtextitem.h new file mode 100755 index 00000000..4502aa4c --- /dev/null +++ b/gui/qtextitem.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QTextItem_RenderFlags(QtObjectPtr ptr); +char* QTextItem_Text(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtextlayout.cpp b/gui/qtextlayout.cpp new file mode 100755 index 00000000..f29212e5 --- /dev/null +++ b/gui/qtextlayout.cpp @@ -0,0 +1,130 @@ +#include "qtextlayout.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextLayout: public QTextLayout { +public: +}; + +void QTextLayout_DrawCursor2(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr position, int cursorPosition){ + static_cast(ptr)->drawCursor(static_cast(painter), *static_cast(position), cursorPosition); +} + +void QTextLayout_DrawCursor(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr position, int cursorPosition, int width){ + static_cast(ptr)->drawCursor(static_cast(painter), *static_cast(position), cursorPosition, width); +} + +QtObjectPtr QTextLayout_NewQTextLayout(){ + return new QTextLayout(); +} + +QtObjectPtr QTextLayout_NewQTextLayout2(char* text){ + return new QTextLayout(QString(text)); +} + +QtObjectPtr QTextLayout_NewQTextLayout3(char* text, QtObjectPtr font, QtObjectPtr paintdevice){ + return new QTextLayout(QString(text), *static_cast(font), static_cast(paintdevice)); +} + +void QTextLayout_BeginLayout(QtObjectPtr ptr){ + static_cast(ptr)->beginLayout(); +} + +int QTextLayout_CacheEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->cacheEnabled(); +} + +void QTextLayout_ClearAdditionalFormats(QtObjectPtr ptr){ + static_cast(ptr)->clearAdditionalFormats(); +} + +void QTextLayout_ClearLayout(QtObjectPtr ptr){ + static_cast(ptr)->clearLayout(); +} + +int QTextLayout_CursorMoveStyle(QtObjectPtr ptr){ + return static_cast(ptr)->cursorMoveStyle(); +} + +void QTextLayout_EndLayout(QtObjectPtr ptr){ + static_cast(ptr)->endLayout(); +} + +int QTextLayout_IsValidCursorPosition(QtObjectPtr ptr, int pos){ + return static_cast(ptr)->isValidCursorPosition(pos); +} + +int QTextLayout_LeftCursorPosition(QtObjectPtr ptr, int oldPos){ + return static_cast(ptr)->leftCursorPosition(oldPos); +} + +int QTextLayout_LineCount(QtObjectPtr ptr){ + return static_cast(ptr)->lineCount(); +} + +int QTextLayout_NextCursorPosition(QtObjectPtr ptr, int oldPos, int mode){ + return static_cast(ptr)->nextCursorPosition(oldPos, static_cast(mode)); +} + +int QTextLayout_PreeditAreaPosition(QtObjectPtr ptr){ + return static_cast(ptr)->preeditAreaPosition(); +} + +char* QTextLayout_PreeditAreaText(QtObjectPtr ptr){ + return static_cast(ptr)->preeditAreaText().toUtf8().data(); +} + +int QTextLayout_PreviousCursorPosition(QtObjectPtr ptr, int oldPos, int mode){ + return static_cast(ptr)->previousCursorPosition(oldPos, static_cast(mode)); +} + +int QTextLayout_RightCursorPosition(QtObjectPtr ptr, int oldPos){ + return static_cast(ptr)->rightCursorPosition(oldPos); +} + +void QTextLayout_SetCacheEnabled(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setCacheEnabled(enable != 0); +} + +void QTextLayout_SetCursorMoveStyle(QtObjectPtr ptr, int style){ + static_cast(ptr)->setCursorMoveStyle(static_cast(style)); +} + +void QTextLayout_SetFont(QtObjectPtr ptr, QtObjectPtr font){ + static_cast(ptr)->setFont(*static_cast(font)); +} + +void QTextLayout_SetPosition(QtObjectPtr ptr, QtObjectPtr p){ + static_cast(ptr)->setPosition(*static_cast(p)); +} + +void QTextLayout_SetPreeditArea(QtObjectPtr ptr, int position, char* text){ + static_cast(ptr)->setPreeditArea(position, QString(text)); +} + +void QTextLayout_SetText(QtObjectPtr ptr, char* stri){ + static_cast(ptr)->setText(QString(stri)); +} + +void QTextLayout_SetTextOption(QtObjectPtr ptr, QtObjectPtr option){ + static_cast(ptr)->setTextOption(*static_cast(option)); +} + +char* QTextLayout_Text(QtObjectPtr ptr){ + return static_cast(ptr)->text().toUtf8().data(); +} + +void QTextLayout_DestroyQTextLayout(QtObjectPtr ptr){ + static_cast(ptr)->~QTextLayout(); +} + diff --git a/gui/qtextlayout.go b/gui/qtextlayout.go new file mode 100755 index 00000000..5452ccc0 --- /dev/null +++ b/gui/qtextlayout.go @@ -0,0 +1,223 @@ +package gui + +//#include "qtextlayout.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QTextLayout struct { + ptr unsafe.Pointer +} + +type QTextLayoutITF interface { + QTextLayoutPTR() *QTextLayout +} + +func (p *QTextLayout) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTextLayout) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTextLayout(ptr QTextLayoutITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextLayoutPTR().Pointer() + } + return nil +} + +func QTextLayoutFromPointer(ptr unsafe.Pointer) *QTextLayout { + var n = new(QTextLayout) + n.SetPointer(ptr) + return n +} + +func (ptr *QTextLayout) QTextLayoutPTR() *QTextLayout { + return ptr +} + +//QTextLayout::CursorMode +type QTextLayout__CursorMode int + +var ( + QTextLayout__SkipCharacters = QTextLayout__CursorMode(0) + QTextLayout__SkipWords = QTextLayout__CursorMode(1) +) + +func (ptr *QTextLayout) DrawCursor2(painter QPainterITF, position core.QPointFITF, cursorPosition int) { + if ptr.Pointer() != nil { + C.QTextLayout_DrawCursor2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPainter(painter)), C.QtObjectPtr(core.PointerFromQPointF(position)), C.int(cursorPosition)) + } +} + +func (ptr *QTextLayout) DrawCursor(painter QPainterITF, position core.QPointFITF, cursorPosition int, width int) { + if ptr.Pointer() != nil { + C.QTextLayout_DrawCursor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPainter(painter)), C.QtObjectPtr(core.PointerFromQPointF(position)), C.int(cursorPosition), C.int(width)) + } +} + +func NewQTextLayout() *QTextLayout { + return QTextLayoutFromPointer(unsafe.Pointer(C.QTextLayout_NewQTextLayout())) +} + +func NewQTextLayout2(text string) *QTextLayout { + return QTextLayoutFromPointer(unsafe.Pointer(C.QTextLayout_NewQTextLayout2(C.CString(text)))) +} + +func NewQTextLayout3(text string, font QFontITF, paintdevice QPaintDeviceITF) *QTextLayout { + return QTextLayoutFromPointer(unsafe.Pointer(C.QTextLayout_NewQTextLayout3(C.CString(text), C.QtObjectPtr(PointerFromQFont(font)), C.QtObjectPtr(PointerFromQPaintDevice(paintdevice))))) +} + +func (ptr *QTextLayout) BeginLayout() { + if ptr.Pointer() != nil { + C.QTextLayout_BeginLayout(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextLayout) CacheEnabled() bool { + if ptr.Pointer() != nil { + return C.QTextLayout_CacheEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextLayout) ClearAdditionalFormats() { + if ptr.Pointer() != nil { + C.QTextLayout_ClearAdditionalFormats(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextLayout) ClearLayout() { + if ptr.Pointer() != nil { + C.QTextLayout_ClearLayout(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextLayout) CursorMoveStyle() core.Qt__CursorMoveStyle { + if ptr.Pointer() != nil { + return core.Qt__CursorMoveStyle(C.QTextLayout_CursorMoveStyle(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextLayout) EndLayout() { + if ptr.Pointer() != nil { + C.QTextLayout_EndLayout(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextLayout) IsValidCursorPosition(pos int) bool { + if ptr.Pointer() != nil { + return C.QTextLayout_IsValidCursorPosition(C.QtObjectPtr(ptr.Pointer()), C.int(pos)) != 0 + } + return false +} + +func (ptr *QTextLayout) LeftCursorPosition(oldPos int) int { + if ptr.Pointer() != nil { + return int(C.QTextLayout_LeftCursorPosition(C.QtObjectPtr(ptr.Pointer()), C.int(oldPos))) + } + return 0 +} + +func (ptr *QTextLayout) LineCount() int { + if ptr.Pointer() != nil { + return int(C.QTextLayout_LineCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextLayout) NextCursorPosition(oldPos int, mode QTextLayout__CursorMode) int { + if ptr.Pointer() != nil { + return int(C.QTextLayout_NextCursorPosition(C.QtObjectPtr(ptr.Pointer()), C.int(oldPos), C.int(mode))) + } + return 0 +} + +func (ptr *QTextLayout) PreeditAreaPosition() int { + if ptr.Pointer() != nil { + return int(C.QTextLayout_PreeditAreaPosition(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextLayout) PreeditAreaText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextLayout_PreeditAreaText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTextLayout) PreviousCursorPosition(oldPos int, mode QTextLayout__CursorMode) int { + if ptr.Pointer() != nil { + return int(C.QTextLayout_PreviousCursorPosition(C.QtObjectPtr(ptr.Pointer()), C.int(oldPos), C.int(mode))) + } + return 0 +} + +func (ptr *QTextLayout) RightCursorPosition(oldPos int) int { + if ptr.Pointer() != nil { + return int(C.QTextLayout_RightCursorPosition(C.QtObjectPtr(ptr.Pointer()), C.int(oldPos))) + } + return 0 +} + +func (ptr *QTextLayout) SetCacheEnabled(enable bool) { + if ptr.Pointer() != nil { + C.QTextLayout_SetCacheEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QTextLayout) SetCursorMoveStyle(style core.Qt__CursorMoveStyle) { + if ptr.Pointer() != nil { + C.QTextLayout_SetCursorMoveStyle(C.QtObjectPtr(ptr.Pointer()), C.int(style)) + } +} + +func (ptr *QTextLayout) SetFont(font QFontITF) { + if ptr.Pointer() != nil { + C.QTextLayout_SetFont(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQFont(font))) + } +} + +func (ptr *QTextLayout) SetPosition(p core.QPointFITF) { + if ptr.Pointer() != nil { + C.QTextLayout_SetPosition(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(p))) + } +} + +func (ptr *QTextLayout) SetPreeditArea(position int, text string) { + if ptr.Pointer() != nil { + C.QTextLayout_SetPreeditArea(C.QtObjectPtr(ptr.Pointer()), C.int(position), C.CString(text)) + } +} + +func (ptr *QTextLayout) SetText(stri string) { + if ptr.Pointer() != nil { + C.QTextLayout_SetText(C.QtObjectPtr(ptr.Pointer()), C.CString(stri)) + } +} + +func (ptr *QTextLayout) SetTextOption(option QTextOptionITF) { + if ptr.Pointer() != nil { + C.QTextLayout_SetTextOption(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextOption(option))) + } +} + +func (ptr *QTextLayout) Text() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextLayout_Text(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTextLayout) DestroyQTextLayout() { + if ptr.Pointer() != nil { + C.QTextLayout_DestroyQTextLayout(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qtextlayout.h b/gui/qtextlayout.h new file mode 100755 index 00000000..92cac2e1 --- /dev/null +++ b/gui/qtextlayout.h @@ -0,0 +1,37 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QTextLayout_DrawCursor2(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr position, int cursorPosition); +void QTextLayout_DrawCursor(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr position, int cursorPosition, int width); +QtObjectPtr QTextLayout_NewQTextLayout(); +QtObjectPtr QTextLayout_NewQTextLayout2(char* text); +QtObjectPtr QTextLayout_NewQTextLayout3(char* text, QtObjectPtr font, QtObjectPtr paintdevice); +void QTextLayout_BeginLayout(QtObjectPtr ptr); +int QTextLayout_CacheEnabled(QtObjectPtr ptr); +void QTextLayout_ClearAdditionalFormats(QtObjectPtr ptr); +void QTextLayout_ClearLayout(QtObjectPtr ptr); +int QTextLayout_CursorMoveStyle(QtObjectPtr ptr); +void QTextLayout_EndLayout(QtObjectPtr ptr); +int QTextLayout_IsValidCursorPosition(QtObjectPtr ptr, int pos); +int QTextLayout_LeftCursorPosition(QtObjectPtr ptr, int oldPos); +int QTextLayout_LineCount(QtObjectPtr ptr); +int QTextLayout_NextCursorPosition(QtObjectPtr ptr, int oldPos, int mode); +int QTextLayout_PreeditAreaPosition(QtObjectPtr ptr); +char* QTextLayout_PreeditAreaText(QtObjectPtr ptr); +int QTextLayout_PreviousCursorPosition(QtObjectPtr ptr, int oldPos, int mode); +int QTextLayout_RightCursorPosition(QtObjectPtr ptr, int oldPos); +void QTextLayout_SetCacheEnabled(QtObjectPtr ptr, int enable); +void QTextLayout_SetCursorMoveStyle(QtObjectPtr ptr, int style); +void QTextLayout_SetFont(QtObjectPtr ptr, QtObjectPtr font); +void QTextLayout_SetPosition(QtObjectPtr ptr, QtObjectPtr p); +void QTextLayout_SetPreeditArea(QtObjectPtr ptr, int position, char* text); +void QTextLayout_SetText(QtObjectPtr ptr, char* stri); +void QTextLayout_SetTextOption(QtObjectPtr ptr, QtObjectPtr option); +char* QTextLayout_Text(QtObjectPtr ptr); +void QTextLayout_DestroyQTextLayout(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtextlength.cpp b/gui/qtextlength.cpp new file mode 100755 index 00000000..47125ffc --- /dev/null +++ b/gui/qtextlength.cpp @@ -0,0 +1,20 @@ +#include "qtextlength.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextLength: public QTextLength { +public: +}; + +QtObjectPtr QTextLength_NewQTextLength(){ + return new QTextLength(); +} + +int QTextLength_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + diff --git a/gui/qtextlength.go b/gui/qtextlength.go new file mode 100755 index 00000000..3d88cea7 --- /dev/null +++ b/gui/qtextlength.go @@ -0,0 +1,60 @@ +package gui + +//#include "qtextlength.h" +import "C" +import ( + "unsafe" +) + +type QTextLength struct { + ptr unsafe.Pointer +} + +type QTextLengthITF interface { + QTextLengthPTR() *QTextLength +} + +func (p *QTextLength) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTextLength) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTextLength(ptr QTextLengthITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextLengthPTR().Pointer() + } + return nil +} + +func QTextLengthFromPointer(ptr unsafe.Pointer) *QTextLength { + var n = new(QTextLength) + n.SetPointer(ptr) + return n +} + +func (ptr *QTextLength) QTextLengthPTR() *QTextLength { + return ptr +} + +//QTextLength::Type +type QTextLength__Type int + +var ( + QTextLength__VariableLength = QTextLength__Type(0) + QTextLength__FixedLength = QTextLength__Type(1) + QTextLength__PercentageLength = QTextLength__Type(2) +) + +func NewQTextLength() *QTextLength { + return QTextLengthFromPointer(unsafe.Pointer(C.QTextLength_NewQTextLength())) +} + +func (ptr *QTextLength) Type() QTextLength__Type { + if ptr.Pointer() != nil { + return QTextLength__Type(C.QTextLength_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/gui/qtextlength.h b/gui/qtextlength.h new file mode 100755 index 00000000..8d413cb2 --- /dev/null +++ b/gui/qtextlength.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTextLength_NewQTextLength(); +int QTextLength_Type(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtextline.cpp b/gui/qtextline.cpp new file mode 100755 index 00000000..f16b8671 --- /dev/null +++ b/gui/qtextline.cpp @@ -0,0 +1,50 @@ +#include "qtextline.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextLine: public QTextLine { +public: +}; + +QtObjectPtr QTextLine_NewQTextLine(){ + return new QTextLine(); +} + +int QTextLine_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QTextLine_LeadingIncluded(QtObjectPtr ptr){ + return static_cast(ptr)->leadingIncluded(); +} + +int QTextLine_LineNumber(QtObjectPtr ptr){ + return static_cast(ptr)->lineNumber(); +} + +void QTextLine_SetLeadingIncluded(QtObjectPtr ptr, int included){ + static_cast(ptr)->setLeadingIncluded(included != 0); +} + +void QTextLine_SetNumColumns(QtObjectPtr ptr, int numColumns){ + static_cast(ptr)->setNumColumns(numColumns); +} + +void QTextLine_SetPosition(QtObjectPtr ptr, QtObjectPtr pos){ + static_cast(ptr)->setPosition(*static_cast(pos)); +} + +int QTextLine_TextLength(QtObjectPtr ptr){ + return static_cast(ptr)->textLength(); +} + +int QTextLine_TextStart(QtObjectPtr ptr){ + return static_cast(ptr)->textStart(); +} + diff --git a/gui/qtextline.go b/gui/qtextline.go new file mode 100755 index 00000000..bb61e2e7 --- /dev/null +++ b/gui/qtextline.go @@ -0,0 +1,115 @@ +package gui + +//#include "qtextline.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QTextLine struct { + ptr unsafe.Pointer +} + +type QTextLineITF interface { + QTextLinePTR() *QTextLine +} + +func (p *QTextLine) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTextLine) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTextLine(ptr QTextLineITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextLinePTR().Pointer() + } + return nil +} + +func QTextLineFromPointer(ptr unsafe.Pointer) *QTextLine { + var n = new(QTextLine) + n.SetPointer(ptr) + return n +} + +func (ptr *QTextLine) QTextLinePTR() *QTextLine { + return ptr +} + +//QTextLine::CursorPosition +type QTextLine__CursorPosition int + +var ( + QTextLine__CursorBetweenCharacters = QTextLine__CursorPosition(0) + QTextLine__CursorOnCharacter = QTextLine__CursorPosition(1) +) + +//QTextLine::Edge +type QTextLine__Edge int + +var ( + QTextLine__Leading = QTextLine__Edge(0) + QTextLine__Trailing = QTextLine__Edge(1) +) + +func NewQTextLine() *QTextLine { + return QTextLineFromPointer(unsafe.Pointer(C.QTextLine_NewQTextLine())) +} + +func (ptr *QTextLine) IsValid() bool { + if ptr.Pointer() != nil { + return C.QTextLine_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextLine) LeadingIncluded() bool { + if ptr.Pointer() != nil { + return C.QTextLine_LeadingIncluded(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextLine) LineNumber() int { + if ptr.Pointer() != nil { + return int(C.QTextLine_LineNumber(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextLine) SetLeadingIncluded(included bool) { + if ptr.Pointer() != nil { + C.QTextLine_SetLeadingIncluded(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(included))) + } +} + +func (ptr *QTextLine) SetNumColumns(numColumns int) { + if ptr.Pointer() != nil { + C.QTextLine_SetNumColumns(C.QtObjectPtr(ptr.Pointer()), C.int(numColumns)) + } +} + +func (ptr *QTextLine) SetPosition(pos core.QPointFITF) { + if ptr.Pointer() != nil { + C.QTextLine_SetPosition(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(pos))) + } +} + +func (ptr *QTextLine) TextLength() int { + if ptr.Pointer() != nil { + return int(C.QTextLine_TextLength(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextLine) TextStart() int { + if ptr.Pointer() != nil { + return int(C.QTextLine_TextStart(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/gui/qtextline.h b/gui/qtextline.h new file mode 100755 index 00000000..d07b593b --- /dev/null +++ b/gui/qtextline.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTextLine_NewQTextLine(); +int QTextLine_IsValid(QtObjectPtr ptr); +int QTextLine_LeadingIncluded(QtObjectPtr ptr); +int QTextLine_LineNumber(QtObjectPtr ptr); +void QTextLine_SetLeadingIncluded(QtObjectPtr ptr, int included); +void QTextLine_SetNumColumns(QtObjectPtr ptr, int numColumns); +void QTextLine_SetPosition(QtObjectPtr ptr, QtObjectPtr pos); +int QTextLine_TextLength(QtObjectPtr ptr); +int QTextLine_TextStart(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtextlist.cpp b/gui/qtextlist.cpp new file mode 100755 index 00000000..3ae5d454 --- /dev/null +++ b/gui/qtextlist.cpp @@ -0,0 +1,40 @@ +#include "qtextlist.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextList: public QTextList { +public: +}; + +int QTextList_ItemNumber(QtObjectPtr ptr, QtObjectPtr block){ + return static_cast(ptr)->itemNumber(*static_cast(block)); +} + +char* QTextList_ItemText(QtObjectPtr ptr, QtObjectPtr block){ + return static_cast(ptr)->itemText(*static_cast(block)).toUtf8().data(); +} + +void QTextList_Add(QtObjectPtr ptr, QtObjectPtr block){ + static_cast(ptr)->add(*static_cast(block)); +} + +int QTextList_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +void QTextList_RemoveItem(QtObjectPtr ptr, int i){ + static_cast(ptr)->removeItem(i); +} + +void QTextList_SetFormat(QtObjectPtr ptr, QtObjectPtr format){ + static_cast(ptr)->setFormat(*static_cast(format)); +} + diff --git a/gui/qtextlist.go b/gui/qtextlist.go new file mode 100755 index 00000000..4d559508 --- /dev/null +++ b/gui/qtextlist.go @@ -0,0 +1,76 @@ +package gui + +//#include "qtextlist.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QTextList struct { + QTextBlockGroup +} + +type QTextListITF interface { + QTextBlockGroupITF + QTextListPTR() *QTextList +} + +func PointerFromQTextList(ptr QTextListITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextListPTR().Pointer() + } + return nil +} + +func QTextListFromPointer(ptr unsafe.Pointer) *QTextList { + var n = new(QTextList) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QTextList_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QTextList) QTextListPTR() *QTextList { + return ptr +} + +func (ptr *QTextList) ItemNumber(block QTextBlockITF) int { + if ptr.Pointer() != nil { + return int(C.QTextList_ItemNumber(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextBlock(block)))) + } + return 0 +} + +func (ptr *QTextList) ItemText(block QTextBlockITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextList_ItemText(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextBlock(block)))) + } + return "" +} + +func (ptr *QTextList) Add(block QTextBlockITF) { + if ptr.Pointer() != nil { + C.QTextList_Add(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextBlock(block))) + } +} + +func (ptr *QTextList) Count() int { + if ptr.Pointer() != nil { + return int(C.QTextList_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextList) RemoveItem(i int) { + if ptr.Pointer() != nil { + C.QTextList_RemoveItem(C.QtObjectPtr(ptr.Pointer()), C.int(i)) + } +} + +func (ptr *QTextList) SetFormat(format QTextListFormatITF) { + if ptr.Pointer() != nil { + C.QTextList_SetFormat(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextListFormat(format))) + } +} diff --git a/gui/qtextlist.h b/gui/qtextlist.h new file mode 100755 index 00000000..56470c1d --- /dev/null +++ b/gui/qtextlist.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QTextList_ItemNumber(QtObjectPtr ptr, QtObjectPtr block); +char* QTextList_ItemText(QtObjectPtr ptr, QtObjectPtr block); +void QTextList_Add(QtObjectPtr ptr, QtObjectPtr block); +int QTextList_Count(QtObjectPtr ptr); +void QTextList_RemoveItem(QtObjectPtr ptr, int i); +void QTextList_SetFormat(QtObjectPtr ptr, QtObjectPtr format); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtextlistformat.cpp b/gui/qtextlistformat.cpp new file mode 100755 index 00000000..f8cb6e67 --- /dev/null +++ b/gui/qtextlistformat.cpp @@ -0,0 +1,55 @@ +#include "qtextlistformat.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextListFormat: public QTextListFormat { +public: +}; + +QtObjectPtr QTextListFormat_NewQTextListFormat(){ + return new QTextListFormat(); +} + +int QTextListFormat_Indent(QtObjectPtr ptr){ + return static_cast(ptr)->indent(); +} + +int QTextListFormat_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +char* QTextListFormat_NumberPrefix(QtObjectPtr ptr){ + return static_cast(ptr)->numberPrefix().toUtf8().data(); +} + +char* QTextListFormat_NumberSuffix(QtObjectPtr ptr){ + return static_cast(ptr)->numberSuffix().toUtf8().data(); +} + +void QTextListFormat_SetIndent(QtObjectPtr ptr, int indentation){ + static_cast(ptr)->setIndent(indentation); +} + +void QTextListFormat_SetNumberPrefix(QtObjectPtr ptr, char* numberPrefix){ + static_cast(ptr)->setNumberPrefix(QString(numberPrefix)); +} + +void QTextListFormat_SetNumberSuffix(QtObjectPtr ptr, char* numberSuffix){ + static_cast(ptr)->setNumberSuffix(QString(numberSuffix)); +} + +void QTextListFormat_SetStyle(QtObjectPtr ptr, int style){ + static_cast(ptr)->setStyle(static_cast(style)); +} + +int QTextListFormat_Style(QtObjectPtr ptr){ + return static_cast(ptr)->style(); +} + diff --git a/gui/qtextlistformat.go b/gui/qtextlistformat.go new file mode 100755 index 00000000..734f2066 --- /dev/null +++ b/gui/qtextlistformat.go @@ -0,0 +1,111 @@ +package gui + +//#include "qtextlistformat.h" +import "C" +import ( + "unsafe" +) + +type QTextListFormat struct { + QTextFormat +} + +type QTextListFormatITF interface { + QTextFormatITF + QTextListFormatPTR() *QTextListFormat +} + +func PointerFromQTextListFormat(ptr QTextListFormatITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextListFormatPTR().Pointer() + } + return nil +} + +func QTextListFormatFromPointer(ptr unsafe.Pointer) *QTextListFormat { + var n = new(QTextListFormat) + n.SetPointer(ptr) + return n +} + +func (ptr *QTextListFormat) QTextListFormatPTR() *QTextListFormat { + return ptr +} + +//QTextListFormat::Style +type QTextListFormat__Style int + +var ( + QTextListFormat__ListDisc = QTextListFormat__Style(-1) + QTextListFormat__ListCircle = QTextListFormat__Style(-2) + QTextListFormat__ListSquare = QTextListFormat__Style(-3) + QTextListFormat__ListDecimal = QTextListFormat__Style(-4) + QTextListFormat__ListLowerAlpha = QTextListFormat__Style(-5) + QTextListFormat__ListUpperAlpha = QTextListFormat__Style(-6) + QTextListFormat__ListLowerRoman = QTextListFormat__Style(-7) + QTextListFormat__ListUpperRoman = QTextListFormat__Style(-8) + QTextListFormat__ListStyleUndefined = QTextListFormat__Style(0) +) + +func NewQTextListFormat() *QTextListFormat { + return QTextListFormatFromPointer(unsafe.Pointer(C.QTextListFormat_NewQTextListFormat())) +} + +func (ptr *QTextListFormat) Indent() int { + if ptr.Pointer() != nil { + return int(C.QTextListFormat_Indent(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextListFormat) IsValid() bool { + if ptr.Pointer() != nil { + return C.QTextListFormat_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextListFormat) NumberPrefix() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextListFormat_NumberPrefix(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTextListFormat) NumberSuffix() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextListFormat_NumberSuffix(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTextListFormat) SetIndent(indentation int) { + if ptr.Pointer() != nil { + C.QTextListFormat_SetIndent(C.QtObjectPtr(ptr.Pointer()), C.int(indentation)) + } +} + +func (ptr *QTextListFormat) SetNumberPrefix(numberPrefix string) { + if ptr.Pointer() != nil { + C.QTextListFormat_SetNumberPrefix(C.QtObjectPtr(ptr.Pointer()), C.CString(numberPrefix)) + } +} + +func (ptr *QTextListFormat) SetNumberSuffix(numberSuffix string) { + if ptr.Pointer() != nil { + C.QTextListFormat_SetNumberSuffix(C.QtObjectPtr(ptr.Pointer()), C.CString(numberSuffix)) + } +} + +func (ptr *QTextListFormat) SetStyle(style QTextListFormat__Style) { + if ptr.Pointer() != nil { + C.QTextListFormat_SetStyle(C.QtObjectPtr(ptr.Pointer()), C.int(style)) + } +} + +func (ptr *QTextListFormat) Style() QTextListFormat__Style { + if ptr.Pointer() != nil { + return QTextListFormat__Style(C.QTextListFormat_Style(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/gui/qtextlistformat.h b/gui/qtextlistformat.h new file mode 100755 index 00000000..87ec981b --- /dev/null +++ b/gui/qtextlistformat.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTextListFormat_NewQTextListFormat(); +int QTextListFormat_Indent(QtObjectPtr ptr); +int QTextListFormat_IsValid(QtObjectPtr ptr); +char* QTextListFormat_NumberPrefix(QtObjectPtr ptr); +char* QTextListFormat_NumberSuffix(QtObjectPtr ptr); +void QTextListFormat_SetIndent(QtObjectPtr ptr, int indentation); +void QTextListFormat_SetNumberPrefix(QtObjectPtr ptr, char* numberPrefix); +void QTextListFormat_SetNumberSuffix(QtObjectPtr ptr, char* numberSuffix); +void QTextListFormat_SetStyle(QtObjectPtr ptr, int style); +int QTextListFormat_Style(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtextobject.cpp b/gui/qtextobject.cpp new file mode 100755 index 00000000..c0df7e4f --- /dev/null +++ b/gui/qtextobject.cpp @@ -0,0 +1,24 @@ +#include "qtextobject.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextObject: public QTextObject { +public: +}; + +QtObjectPtr QTextObject_Document(QtObjectPtr ptr){ + return static_cast(ptr)->document(); +} + +int QTextObject_FormatIndex(QtObjectPtr ptr){ + return static_cast(ptr)->formatIndex(); +} + +int QTextObject_ObjectIndex(QtObjectPtr ptr){ + return static_cast(ptr)->objectIndex(); +} + diff --git a/gui/qtextobject.go b/gui/qtextobject.go new file mode 100755 index 00000000..a46cd9b2 --- /dev/null +++ b/gui/qtextobject.go @@ -0,0 +1,59 @@ +package gui + +//#include "qtextobject.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QTextObject struct { + core.QObject +} + +type QTextObjectITF interface { + core.QObjectITF + QTextObjectPTR() *QTextObject +} + +func PointerFromQTextObject(ptr QTextObjectITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextObjectPTR().Pointer() + } + return nil +} + +func QTextObjectFromPointer(ptr unsafe.Pointer) *QTextObject { + var n = new(QTextObject) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QTextObject_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QTextObject) QTextObjectPTR() *QTextObject { + return ptr +} + +func (ptr *QTextObject) Document() *QTextDocument { + if ptr.Pointer() != nil { + return QTextDocumentFromPointer(unsafe.Pointer(C.QTextObject_Document(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTextObject) FormatIndex() int { + if ptr.Pointer() != nil { + return int(C.QTextObject_FormatIndex(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextObject) ObjectIndex() int { + if ptr.Pointer() != nil { + return int(C.QTextObject_ObjectIndex(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/gui/qtextobject.h b/gui/qtextobject.h new file mode 100755 index 00000000..14bc84c7 --- /dev/null +++ b/gui/qtextobject.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTextObject_Document(QtObjectPtr ptr); +int QTextObject_FormatIndex(QtObjectPtr ptr); +int QTextObject_ObjectIndex(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtextobjectinterface.cpp b/gui/qtextobjectinterface.cpp new file mode 100755 index 00000000..9cf9eadb --- /dev/null +++ b/gui/qtextobjectinterface.cpp @@ -0,0 +1,26 @@ +#include "qtextobjectinterface.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextObjectInterface: public QTextObjectInterface { +public: +}; + +void QTextObjectInterface_DrawObject(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr rect, QtObjectPtr doc, int posInDocument, QtObjectPtr format){ + static_cast(ptr)->drawObject(static_cast(painter), *static_cast(rect), static_cast(doc), posInDocument, *static_cast(format)); +} + +void QTextObjectInterface_DestroyQTextObjectInterface(QtObjectPtr ptr){ + static_cast(ptr)->~QTextObjectInterface(); +} + diff --git a/gui/qtextobjectinterface.go b/gui/qtextobjectinterface.go new file mode 100755 index 00000000..d518ee24 --- /dev/null +++ b/gui/qtextobjectinterface.go @@ -0,0 +1,53 @@ +package gui + +//#include "qtextobjectinterface.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QTextObjectInterface struct { + ptr unsafe.Pointer +} + +type QTextObjectInterfaceITF interface { + QTextObjectInterfacePTR() *QTextObjectInterface +} + +func (p *QTextObjectInterface) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTextObjectInterface) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTextObjectInterface(ptr QTextObjectInterfaceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextObjectInterfacePTR().Pointer() + } + return nil +} + +func QTextObjectInterfaceFromPointer(ptr unsafe.Pointer) *QTextObjectInterface { + var n = new(QTextObjectInterface) + n.SetPointer(ptr) + return n +} + +func (ptr *QTextObjectInterface) QTextObjectInterfacePTR() *QTextObjectInterface { + return ptr +} + +func (ptr *QTextObjectInterface) DrawObject(painter QPainterITF, rect core.QRectFITF, doc QTextDocumentITF, posInDocument int, format QTextFormatITF) { + if ptr.Pointer() != nil { + C.QTextObjectInterface_DrawObject(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPainter(painter)), C.QtObjectPtr(core.PointerFromQRectF(rect)), C.QtObjectPtr(PointerFromQTextDocument(doc)), C.int(posInDocument), C.QtObjectPtr(PointerFromQTextFormat(format))) + } +} + +func (ptr *QTextObjectInterface) DestroyQTextObjectInterface() { + if ptr.Pointer() != nil { + C.QTextObjectInterface_DestroyQTextObjectInterface(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qtextobjectinterface.h b/gui/qtextobjectinterface.h new file mode 100755 index 00000000..623178d9 --- /dev/null +++ b/gui/qtextobjectinterface.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QTextObjectInterface_DrawObject(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr rect, QtObjectPtr doc, int posInDocument, QtObjectPtr format); +void QTextObjectInterface_DestroyQTextObjectInterface(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtextoption.cpp b/gui/qtextoption.cpp new file mode 100755 index 00000000..630015e3 --- /dev/null +++ b/gui/qtextoption.cpp @@ -0,0 +1,68 @@ +#include "qtextoption.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextOption: public QTextOption { +public: +}; + +QtObjectPtr QTextOption_NewQTextOption3(QtObjectPtr other){ + return new QTextOption(*static_cast(other)); +} + +QtObjectPtr QTextOption_NewQTextOption(){ + return new QTextOption(); +} + +QtObjectPtr QTextOption_NewQTextOption2(int alignment){ + return new QTextOption(static_cast(alignment)); +} + +int QTextOption_Alignment(QtObjectPtr ptr){ + return static_cast(ptr)->alignment(); +} + +int QTextOption_Flags(QtObjectPtr ptr){ + return static_cast(ptr)->flags(); +} + +void QTextOption_SetAlignment(QtObjectPtr ptr, int alignment){ + static_cast(ptr)->setAlignment(static_cast(alignment)); +} + +void QTextOption_SetFlags(QtObjectPtr ptr, int flags){ + static_cast(ptr)->setFlags(static_cast(flags)); +} + +void QTextOption_SetTextDirection(QtObjectPtr ptr, int direction){ + static_cast(ptr)->setTextDirection(static_cast(direction)); +} + +void QTextOption_SetUseDesignMetrics(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setUseDesignMetrics(enable != 0); +} + +void QTextOption_SetWrapMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setWrapMode(static_cast(mode)); +} + +int QTextOption_TextDirection(QtObjectPtr ptr){ + return static_cast(ptr)->textDirection(); +} + +int QTextOption_UseDesignMetrics(QtObjectPtr ptr){ + return static_cast(ptr)->useDesignMetrics(); +} + +int QTextOption_WrapMode(QtObjectPtr ptr){ + return static_cast(ptr)->wrapMode(); +} + +void QTextOption_DestroyQTextOption(QtObjectPtr ptr){ + static_cast(ptr)->~QTextOption(); +} + diff --git a/gui/qtextoption.go b/gui/qtextoption.go new file mode 100755 index 00000000..db380632 --- /dev/null +++ b/gui/qtextoption.go @@ -0,0 +1,157 @@ +package gui + +//#include "qtextoption.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QTextOption struct { + ptr unsafe.Pointer +} + +type QTextOptionITF interface { + QTextOptionPTR() *QTextOption +} + +func (p *QTextOption) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTextOption) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTextOption(ptr QTextOptionITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextOptionPTR().Pointer() + } + return nil +} + +func QTextOptionFromPointer(ptr unsafe.Pointer) *QTextOption { + var n = new(QTextOption) + n.SetPointer(ptr) + return n +} + +func (ptr *QTextOption) QTextOptionPTR() *QTextOption { + return ptr +} + +//QTextOption::Flag +type QTextOption__Flag int + +var ( + QTextOption__ShowTabsAndSpaces = QTextOption__Flag(0x1) + QTextOption__ShowLineAndParagraphSeparators = QTextOption__Flag(0x2) + QTextOption__AddSpaceForLineAndParagraphSeparators = QTextOption__Flag(0x4) + QTextOption__SuppressColors = QTextOption__Flag(0x8) + QTextOption__IncludeTrailingSpaces = QTextOption__Flag(0x80000000) +) + +//QTextOption::TabType +type QTextOption__TabType int + +var ( + QTextOption__LeftTab = QTextOption__TabType(0) + QTextOption__RightTab = QTextOption__TabType(1) + QTextOption__CenterTab = QTextOption__TabType(2) + QTextOption__DelimiterTab = QTextOption__TabType(3) +) + +//QTextOption::WrapMode +type QTextOption__WrapMode int + +var ( + QTextOption__NoWrap = QTextOption__WrapMode(0) + QTextOption__WordWrap = QTextOption__WrapMode(1) + QTextOption__ManualWrap = QTextOption__WrapMode(2) + QTextOption__WrapAnywhere = QTextOption__WrapMode(3) + QTextOption__WrapAtWordBoundaryOrAnywhere = QTextOption__WrapMode(4) +) + +func NewQTextOption3(other QTextOptionITF) *QTextOption { + return QTextOptionFromPointer(unsafe.Pointer(C.QTextOption_NewQTextOption3(C.QtObjectPtr(PointerFromQTextOption(other))))) +} + +func NewQTextOption() *QTextOption { + return QTextOptionFromPointer(unsafe.Pointer(C.QTextOption_NewQTextOption())) +} + +func NewQTextOption2(alignment core.Qt__AlignmentFlag) *QTextOption { + return QTextOptionFromPointer(unsafe.Pointer(C.QTextOption_NewQTextOption2(C.int(alignment)))) +} + +func (ptr *QTextOption) Alignment() core.Qt__AlignmentFlag { + if ptr.Pointer() != nil { + return core.Qt__AlignmentFlag(C.QTextOption_Alignment(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextOption) Flags() QTextOption__Flag { + if ptr.Pointer() != nil { + return QTextOption__Flag(C.QTextOption_Flags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextOption) SetAlignment(alignment core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QTextOption_SetAlignment(C.QtObjectPtr(ptr.Pointer()), C.int(alignment)) + } +} + +func (ptr *QTextOption) SetFlags(flags QTextOption__Flag) { + if ptr.Pointer() != nil { + C.QTextOption_SetFlags(C.QtObjectPtr(ptr.Pointer()), C.int(flags)) + } +} + +func (ptr *QTextOption) SetTextDirection(direction core.Qt__LayoutDirection) { + if ptr.Pointer() != nil { + C.QTextOption_SetTextDirection(C.QtObjectPtr(ptr.Pointer()), C.int(direction)) + } +} + +func (ptr *QTextOption) SetUseDesignMetrics(enable bool) { + if ptr.Pointer() != nil { + C.QTextOption_SetUseDesignMetrics(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QTextOption) SetWrapMode(mode QTextOption__WrapMode) { + if ptr.Pointer() != nil { + C.QTextOption_SetWrapMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QTextOption) TextDirection() core.Qt__LayoutDirection { + if ptr.Pointer() != nil { + return core.Qt__LayoutDirection(C.QTextOption_TextDirection(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextOption) UseDesignMetrics() bool { + if ptr.Pointer() != nil { + return C.QTextOption_UseDesignMetrics(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextOption) WrapMode() QTextOption__WrapMode { + if ptr.Pointer() != nil { + return QTextOption__WrapMode(C.QTextOption_WrapMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextOption) DestroyQTextOption() { + if ptr.Pointer() != nil { + C.QTextOption_DestroyQTextOption(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qtextoption.h b/gui/qtextoption.h new file mode 100755 index 00000000..b029d268 --- /dev/null +++ b/gui/qtextoption.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTextOption_NewQTextOption3(QtObjectPtr other); +QtObjectPtr QTextOption_NewQTextOption(); +QtObjectPtr QTextOption_NewQTextOption2(int alignment); +int QTextOption_Alignment(QtObjectPtr ptr); +int QTextOption_Flags(QtObjectPtr ptr); +void QTextOption_SetAlignment(QtObjectPtr ptr, int alignment); +void QTextOption_SetFlags(QtObjectPtr ptr, int flags); +void QTextOption_SetTextDirection(QtObjectPtr ptr, int direction); +void QTextOption_SetUseDesignMetrics(QtObjectPtr ptr, int enable); +void QTextOption_SetWrapMode(QtObjectPtr ptr, int mode); +int QTextOption_TextDirection(QtObjectPtr ptr); +int QTextOption_UseDesignMetrics(QtObjectPtr ptr); +int QTextOption_WrapMode(QtObjectPtr ptr); +void QTextOption_DestroyQTextOption(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtexttable.cpp b/gui/qtexttable.cpp new file mode 100755 index 00000000..2544bf87 --- /dev/null +++ b/gui/qtexttable.cpp @@ -0,0 +1,66 @@ +#include "qtexttable.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextTable: public QTextTable { +public: +}; + +void QTextTable_InsertColumns(QtObjectPtr ptr, int index, int columns){ + static_cast(ptr)->insertColumns(index, columns); +} + +void QTextTable_InsertRows(QtObjectPtr ptr, int index, int rows){ + static_cast(ptr)->insertRows(index, rows); +} + +void QTextTable_RemoveColumns(QtObjectPtr ptr, int index, int columns){ + static_cast(ptr)->removeColumns(index, columns); +} + +void QTextTable_RemoveRows(QtObjectPtr ptr, int index, int rows){ + static_cast(ptr)->removeRows(index, rows); +} + +void QTextTable_Resize(QtObjectPtr ptr, int rows, int columns){ + static_cast(ptr)->resize(rows, columns); +} + +void QTextTable_SetFormat(QtObjectPtr ptr, QtObjectPtr format){ + static_cast(ptr)->setFormat(*static_cast(format)); +} + +void QTextTable_AppendColumns(QtObjectPtr ptr, int count){ + static_cast(ptr)->appendColumns(count); +} + +void QTextTable_AppendRows(QtObjectPtr ptr, int count){ + static_cast(ptr)->appendRows(count); +} + +int QTextTable_Columns(QtObjectPtr ptr){ + return static_cast(ptr)->columns(); +} + +void QTextTable_MergeCells2(QtObjectPtr ptr, QtObjectPtr cursor){ + static_cast(ptr)->mergeCells(*static_cast(cursor)); +} + +void QTextTable_MergeCells(QtObjectPtr ptr, int row, int column, int numRows, int numCols){ + static_cast(ptr)->mergeCells(row, column, numRows, numCols); +} + +int QTextTable_Rows(QtObjectPtr ptr){ + return static_cast(ptr)->rows(); +} + +void QTextTable_SplitCell(QtObjectPtr ptr, int row, int column, int numRows, int numCols){ + static_cast(ptr)->splitCell(row, column, numRows, numCols); +} + diff --git a/gui/qtexttable.go b/gui/qtexttable.go new file mode 100755 index 00000000..1c7c8472 --- /dev/null +++ b/gui/qtexttable.go @@ -0,0 +1,117 @@ +package gui + +//#include "qtexttable.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QTextTable struct { + QTextFrame +} + +type QTextTableITF interface { + QTextFrameITF + QTextTablePTR() *QTextTable +} + +func PointerFromQTextTable(ptr QTextTableITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextTablePTR().Pointer() + } + return nil +} + +func QTextTableFromPointer(ptr unsafe.Pointer) *QTextTable { + var n = new(QTextTable) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QTextTable_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QTextTable) QTextTablePTR() *QTextTable { + return ptr +} + +func (ptr *QTextTable) InsertColumns(index int, columns int) { + if ptr.Pointer() != nil { + C.QTextTable_InsertColumns(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.int(columns)) + } +} + +func (ptr *QTextTable) InsertRows(index int, rows int) { + if ptr.Pointer() != nil { + C.QTextTable_InsertRows(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.int(rows)) + } +} + +func (ptr *QTextTable) RemoveColumns(index int, columns int) { + if ptr.Pointer() != nil { + C.QTextTable_RemoveColumns(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.int(columns)) + } +} + +func (ptr *QTextTable) RemoveRows(index int, rows int) { + if ptr.Pointer() != nil { + C.QTextTable_RemoveRows(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.int(rows)) + } +} + +func (ptr *QTextTable) Resize(rows int, columns int) { + if ptr.Pointer() != nil { + C.QTextTable_Resize(C.QtObjectPtr(ptr.Pointer()), C.int(rows), C.int(columns)) + } +} + +func (ptr *QTextTable) SetFormat(format QTextTableFormatITF) { + if ptr.Pointer() != nil { + C.QTextTable_SetFormat(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextTableFormat(format))) + } +} + +func (ptr *QTextTable) AppendColumns(count int) { + if ptr.Pointer() != nil { + C.QTextTable_AppendColumns(C.QtObjectPtr(ptr.Pointer()), C.int(count)) + } +} + +func (ptr *QTextTable) AppendRows(count int) { + if ptr.Pointer() != nil { + C.QTextTable_AppendRows(C.QtObjectPtr(ptr.Pointer()), C.int(count)) + } +} + +func (ptr *QTextTable) Columns() int { + if ptr.Pointer() != nil { + return int(C.QTextTable_Columns(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextTable) MergeCells2(cursor QTextCursorITF) { + if ptr.Pointer() != nil { + C.QTextTable_MergeCells2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextCursor(cursor))) + } +} + +func (ptr *QTextTable) MergeCells(row int, column int, numRows int, numCols int) { + if ptr.Pointer() != nil { + C.QTextTable_MergeCells(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column), C.int(numRows), C.int(numCols)) + } +} + +func (ptr *QTextTable) Rows() int { + if ptr.Pointer() != nil { + return int(C.QTextTable_Rows(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextTable) SplitCell(row int, column int, numRows int, numCols int) { + if ptr.Pointer() != nil { + C.QTextTable_SplitCell(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column), C.int(numRows), C.int(numCols)) + } +} diff --git a/gui/qtexttable.h b/gui/qtexttable.h new file mode 100755 index 00000000..f090d1b6 --- /dev/null +++ b/gui/qtexttable.h @@ -0,0 +1,22 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QTextTable_InsertColumns(QtObjectPtr ptr, int index, int columns); +void QTextTable_InsertRows(QtObjectPtr ptr, int index, int rows); +void QTextTable_RemoveColumns(QtObjectPtr ptr, int index, int columns); +void QTextTable_RemoveRows(QtObjectPtr ptr, int index, int rows); +void QTextTable_Resize(QtObjectPtr ptr, int rows, int columns); +void QTextTable_SetFormat(QtObjectPtr ptr, QtObjectPtr format); +void QTextTable_AppendColumns(QtObjectPtr ptr, int count); +void QTextTable_AppendRows(QtObjectPtr ptr, int count); +int QTextTable_Columns(QtObjectPtr ptr); +void QTextTable_MergeCells2(QtObjectPtr ptr, QtObjectPtr cursor); +void QTextTable_MergeCells(QtObjectPtr ptr, int row, int column, int numRows, int numCols); +int QTextTable_Rows(QtObjectPtr ptr); +void QTextTable_SplitCell(QtObjectPtr ptr, int row, int column, int numRows, int numCols); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtexttablecell.cpp b/gui/qtexttablecell.cpp new file mode 100755 index 00000000..0c96f323 --- /dev/null +++ b/gui/qtexttablecell.cpp @@ -0,0 +1,54 @@ +#include "qtexttablecell.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextTableCell: public QTextTableCell { +public: +}; + +QtObjectPtr QTextTableCell_NewQTextTableCell(){ + return new QTextTableCell(); +} + +QtObjectPtr QTextTableCell_NewQTextTableCell2(QtObjectPtr other){ + return new QTextTableCell(*static_cast(other)); +} + +int QTextTableCell_Column(QtObjectPtr ptr){ + return static_cast(ptr)->column(); +} + +int QTextTableCell_ColumnSpan(QtObjectPtr ptr){ + return static_cast(ptr)->columnSpan(); +} + +int QTextTableCell_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QTextTableCell_Row(QtObjectPtr ptr){ + return static_cast(ptr)->row(); +} + +int QTextTableCell_RowSpan(QtObjectPtr ptr){ + return static_cast(ptr)->rowSpan(); +} + +void QTextTableCell_SetFormat(QtObjectPtr ptr, QtObjectPtr format){ + static_cast(ptr)->setFormat(*static_cast(format)); +} + +int QTextTableCell_TableCellFormatIndex(QtObjectPtr ptr){ + return static_cast(ptr)->tableCellFormatIndex(); +} + +void QTextTableCell_DestroyQTextTableCell(QtObjectPtr ptr){ + static_cast(ptr)->~QTextTableCell(); +} + diff --git a/gui/qtexttablecell.go b/gui/qtexttablecell.go new file mode 100755 index 00000000..fa9bf40e --- /dev/null +++ b/gui/qtexttablecell.go @@ -0,0 +1,102 @@ +package gui + +//#include "qtexttablecell.h" +import "C" +import ( + "unsafe" +) + +type QTextTableCell struct { + ptr unsafe.Pointer +} + +type QTextTableCellITF interface { + QTextTableCellPTR() *QTextTableCell +} + +func (p *QTextTableCell) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTextTableCell) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTextTableCell(ptr QTextTableCellITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextTableCellPTR().Pointer() + } + return nil +} + +func QTextTableCellFromPointer(ptr unsafe.Pointer) *QTextTableCell { + var n = new(QTextTableCell) + n.SetPointer(ptr) + return n +} + +func (ptr *QTextTableCell) QTextTableCellPTR() *QTextTableCell { + return ptr +} + +func NewQTextTableCell() *QTextTableCell { + return QTextTableCellFromPointer(unsafe.Pointer(C.QTextTableCell_NewQTextTableCell())) +} + +func NewQTextTableCell2(other QTextTableCellITF) *QTextTableCell { + return QTextTableCellFromPointer(unsafe.Pointer(C.QTextTableCell_NewQTextTableCell2(C.QtObjectPtr(PointerFromQTextTableCell(other))))) +} + +func (ptr *QTextTableCell) Column() int { + if ptr.Pointer() != nil { + return int(C.QTextTableCell_Column(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextTableCell) ColumnSpan() int { + if ptr.Pointer() != nil { + return int(C.QTextTableCell_ColumnSpan(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextTableCell) IsValid() bool { + if ptr.Pointer() != nil { + return C.QTextTableCell_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextTableCell) Row() int { + if ptr.Pointer() != nil { + return int(C.QTextTableCell_Row(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextTableCell) RowSpan() int { + if ptr.Pointer() != nil { + return int(C.QTextTableCell_RowSpan(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextTableCell) SetFormat(format QTextCharFormatITF) { + if ptr.Pointer() != nil { + C.QTextTableCell_SetFormat(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTextCharFormat(format))) + } +} + +func (ptr *QTextTableCell) TableCellFormatIndex() int { + if ptr.Pointer() != nil { + return int(C.QTextTableCell_TableCellFormatIndex(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextTableCell) DestroyQTextTableCell() { + if ptr.Pointer() != nil { + C.QTextTableCell_DestroyQTextTableCell(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qtexttablecell.h b/gui/qtexttablecell.h new file mode 100755 index 00000000..1cf3f635 --- /dev/null +++ b/gui/qtexttablecell.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTextTableCell_NewQTextTableCell(); +QtObjectPtr QTextTableCell_NewQTextTableCell2(QtObjectPtr other); +int QTextTableCell_Column(QtObjectPtr ptr); +int QTextTableCell_ColumnSpan(QtObjectPtr ptr); +int QTextTableCell_IsValid(QtObjectPtr ptr); +int QTextTableCell_Row(QtObjectPtr ptr); +int QTextTableCell_RowSpan(QtObjectPtr ptr); +void QTextTableCell_SetFormat(QtObjectPtr ptr, QtObjectPtr format); +int QTextTableCell_TableCellFormatIndex(QtObjectPtr ptr); +void QTextTableCell_DestroyQTextTableCell(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtexttablecellformat.cpp b/gui/qtexttablecellformat.cpp new file mode 100755 index 00000000..a823f052 --- /dev/null +++ b/gui/qtexttablecellformat.cpp @@ -0,0 +1,22 @@ +#include "qtexttablecellformat.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextTableCellFormat: public QTextTableCellFormat { +public: +}; + +QtObjectPtr QTextTableCellFormat_NewQTextTableCellFormat(){ + return new QTextTableCellFormat(); +} + +int QTextTableCellFormat_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + diff --git a/gui/qtexttablecellformat.go b/gui/qtexttablecellformat.go new file mode 100755 index 00000000..013cb66b --- /dev/null +++ b/gui/qtexttablecellformat.go @@ -0,0 +1,44 @@ +package gui + +//#include "qtexttablecellformat.h" +import "C" +import ( + "unsafe" +) + +type QTextTableCellFormat struct { + QTextCharFormat +} + +type QTextTableCellFormatITF interface { + QTextCharFormatITF + QTextTableCellFormatPTR() *QTextTableCellFormat +} + +func PointerFromQTextTableCellFormat(ptr QTextTableCellFormatITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextTableCellFormatPTR().Pointer() + } + return nil +} + +func QTextTableCellFormatFromPointer(ptr unsafe.Pointer) *QTextTableCellFormat { + var n = new(QTextTableCellFormat) + n.SetPointer(ptr) + return n +} + +func (ptr *QTextTableCellFormat) QTextTableCellFormatPTR() *QTextTableCellFormat { + return ptr +} + +func NewQTextTableCellFormat() *QTextTableCellFormat { + return QTextTableCellFormatFromPointer(unsafe.Pointer(C.QTextTableCellFormat_NewQTextTableCellFormat())) +} + +func (ptr *QTextTableCellFormat) IsValid() bool { + if ptr.Pointer() != nil { + return C.QTextTableCellFormat_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} diff --git a/gui/qtexttablecellformat.h b/gui/qtexttablecellformat.h new file mode 100755 index 00000000..332ec96f --- /dev/null +++ b/gui/qtexttablecellformat.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTextTableCellFormat_NewQTextTableCellFormat(); +int QTextTableCellFormat_IsValid(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtexttableformat.cpp b/gui/qtexttableformat.cpp new file mode 100755 index 00000000..61084b29 --- /dev/null +++ b/gui/qtexttableformat.cpp @@ -0,0 +1,45 @@ +#include "qtexttableformat.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextTableFormat: public QTextTableFormat { +public: +}; + +QtObjectPtr QTextTableFormat_NewQTextTableFormat(){ + return new QTextTableFormat(); +} + +int QTextTableFormat_Alignment(QtObjectPtr ptr){ + return static_cast(ptr)->alignment(); +} + +void QTextTableFormat_ClearColumnWidthConstraints(QtObjectPtr ptr){ + static_cast(ptr)->clearColumnWidthConstraints(); +} + +int QTextTableFormat_Columns(QtObjectPtr ptr){ + return static_cast(ptr)->columns(); +} + +int QTextTableFormat_HeaderRowCount(QtObjectPtr ptr){ + return static_cast(ptr)->headerRowCount(); +} + +int QTextTableFormat_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +void QTextTableFormat_SetAlignment(QtObjectPtr ptr, int alignment){ + static_cast(ptr)->setAlignment(static_cast(alignment)); +} + +void QTextTableFormat_SetHeaderRowCount(QtObjectPtr ptr, int count){ + static_cast(ptr)->setHeaderRowCount(count); +} + diff --git a/gui/qtexttableformat.go b/gui/qtexttableformat.go new file mode 100755 index 00000000..4bd85d4c --- /dev/null +++ b/gui/qtexttableformat.go @@ -0,0 +1,84 @@ +package gui + +//#include "qtexttableformat.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QTextTableFormat struct { + QTextFrameFormat +} + +type QTextTableFormatITF interface { + QTextFrameFormatITF + QTextTableFormatPTR() *QTextTableFormat +} + +func PointerFromQTextTableFormat(ptr QTextTableFormatITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextTableFormatPTR().Pointer() + } + return nil +} + +func QTextTableFormatFromPointer(ptr unsafe.Pointer) *QTextTableFormat { + var n = new(QTextTableFormat) + n.SetPointer(ptr) + return n +} + +func (ptr *QTextTableFormat) QTextTableFormatPTR() *QTextTableFormat { + return ptr +} + +func NewQTextTableFormat() *QTextTableFormat { + return QTextTableFormatFromPointer(unsafe.Pointer(C.QTextTableFormat_NewQTextTableFormat())) +} + +func (ptr *QTextTableFormat) Alignment() core.Qt__AlignmentFlag { + if ptr.Pointer() != nil { + return core.Qt__AlignmentFlag(C.QTextTableFormat_Alignment(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextTableFormat) ClearColumnWidthConstraints() { + if ptr.Pointer() != nil { + C.QTextTableFormat_ClearColumnWidthConstraints(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextTableFormat) Columns() int { + if ptr.Pointer() != nil { + return int(C.QTextTableFormat_Columns(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextTableFormat) HeaderRowCount() int { + if ptr.Pointer() != nil { + return int(C.QTextTableFormat_HeaderRowCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextTableFormat) IsValid() bool { + if ptr.Pointer() != nil { + return C.QTextTableFormat_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextTableFormat) SetAlignment(alignment core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QTextTableFormat_SetAlignment(C.QtObjectPtr(ptr.Pointer()), C.int(alignment)) + } +} + +func (ptr *QTextTableFormat) SetHeaderRowCount(count int) { + if ptr.Pointer() != nil { + C.QTextTableFormat_SetHeaderRowCount(C.QtObjectPtr(ptr.Pointer()), C.int(count)) + } +} diff --git a/gui/qtexttableformat.h b/gui/qtexttableformat.h new file mode 100755 index 00000000..182a57f5 --- /dev/null +++ b/gui/qtexttableformat.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTextTableFormat_NewQTextTableFormat(); +int QTextTableFormat_Alignment(QtObjectPtr ptr); +void QTextTableFormat_ClearColumnWidthConstraints(QtObjectPtr ptr); +int QTextTableFormat_Columns(QtObjectPtr ptr); +int QTextTableFormat_HeaderRowCount(QtObjectPtr ptr); +int QTextTableFormat_IsValid(QtObjectPtr ptr); +void QTextTableFormat_SetAlignment(QtObjectPtr ptr, int alignment); +void QTextTableFormat_SetHeaderRowCount(QtObjectPtr ptr, int count); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtouchdevice.cpp b/gui/qtouchdevice.cpp new file mode 100755 index 00000000..b0652d63 --- /dev/null +++ b/gui/qtouchdevice.cpp @@ -0,0 +1,52 @@ +#include "qtouchdevice.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTouchDevice: public QTouchDevice { +public: +}; + +QtObjectPtr QTouchDevice_NewQTouchDevice(){ + return new QTouchDevice(); +} + +int QTouchDevice_Capabilities(QtObjectPtr ptr){ + return static_cast(ptr)->capabilities(); +} + +int QTouchDevice_MaximumTouchPoints(QtObjectPtr ptr){ + return static_cast(ptr)->maximumTouchPoints(); +} + +char* QTouchDevice_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +void QTouchDevice_SetCapabilities(QtObjectPtr ptr, int caps){ + static_cast(ptr)->setCapabilities(static_cast(caps)); +} + +void QTouchDevice_SetMaximumTouchPoints(QtObjectPtr ptr, int max){ + static_cast(ptr)->setMaximumTouchPoints(max); +} + +void QTouchDevice_SetName(QtObjectPtr ptr, char* name){ + static_cast(ptr)->setName(QString(name)); +} + +void QTouchDevice_SetType(QtObjectPtr ptr, int devType){ + static_cast(ptr)->setType(static_cast(devType)); +} + +int QTouchDevice_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QTouchDevice_DestroyQTouchDevice(QtObjectPtr ptr){ + static_cast(ptr)->~QTouchDevice(); +} + diff --git a/gui/qtouchdevice.go b/gui/qtouchdevice.go new file mode 100755 index 00000000..7f5743f0 --- /dev/null +++ b/gui/qtouchdevice.go @@ -0,0 +1,123 @@ +package gui + +//#include "qtouchdevice.h" +import "C" +import ( + "unsafe" +) + +type QTouchDevice struct { + ptr unsafe.Pointer +} + +type QTouchDeviceITF interface { + QTouchDevicePTR() *QTouchDevice +} + +func (p *QTouchDevice) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTouchDevice) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTouchDevice(ptr QTouchDeviceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTouchDevicePTR().Pointer() + } + return nil +} + +func QTouchDeviceFromPointer(ptr unsafe.Pointer) *QTouchDevice { + var n = new(QTouchDevice) + n.SetPointer(ptr) + return n +} + +func (ptr *QTouchDevice) QTouchDevicePTR() *QTouchDevice { + return ptr +} + +//QTouchDevice::CapabilityFlag +type QTouchDevice__CapabilityFlag int + +var ( + QTouchDevice__Position = QTouchDevice__CapabilityFlag(0x0001) + QTouchDevice__Area = QTouchDevice__CapabilityFlag(0x0002) + QTouchDevice__Pressure = QTouchDevice__CapabilityFlag(0x0004) + QTouchDevice__Velocity = QTouchDevice__CapabilityFlag(0x0008) + QTouchDevice__RawPositions = QTouchDevice__CapabilityFlag(0x0010) + QTouchDevice__NormalizedPosition = QTouchDevice__CapabilityFlag(0x0020) + QTouchDevice__MouseEmulation = QTouchDevice__CapabilityFlag(0x0040) +) + +//QTouchDevice::DeviceType +type QTouchDevice__DeviceType int + +var ( + QTouchDevice__TouchScreen = QTouchDevice__DeviceType(0) + QTouchDevice__TouchPad = QTouchDevice__DeviceType(1) +) + +func NewQTouchDevice() *QTouchDevice { + return QTouchDeviceFromPointer(unsafe.Pointer(C.QTouchDevice_NewQTouchDevice())) +} + +func (ptr *QTouchDevice) Capabilities() QTouchDevice__CapabilityFlag { + if ptr.Pointer() != nil { + return QTouchDevice__CapabilityFlag(C.QTouchDevice_Capabilities(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTouchDevice) MaximumTouchPoints() int { + if ptr.Pointer() != nil { + return int(C.QTouchDevice_MaximumTouchPoints(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTouchDevice) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTouchDevice_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTouchDevice) SetCapabilities(caps QTouchDevice__CapabilityFlag) { + if ptr.Pointer() != nil { + C.QTouchDevice_SetCapabilities(C.QtObjectPtr(ptr.Pointer()), C.int(caps)) + } +} + +func (ptr *QTouchDevice) SetMaximumTouchPoints(max int) { + if ptr.Pointer() != nil { + C.QTouchDevice_SetMaximumTouchPoints(C.QtObjectPtr(ptr.Pointer()), C.int(max)) + } +} + +func (ptr *QTouchDevice) SetName(name string) { + if ptr.Pointer() != nil { + C.QTouchDevice_SetName(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func (ptr *QTouchDevice) SetType(devType QTouchDevice__DeviceType) { + if ptr.Pointer() != nil { + C.QTouchDevice_SetType(C.QtObjectPtr(ptr.Pointer()), C.int(devType)) + } +} + +func (ptr *QTouchDevice) Type() QTouchDevice__DeviceType { + if ptr.Pointer() != nil { + return QTouchDevice__DeviceType(C.QTouchDevice_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTouchDevice) DestroyQTouchDevice() { + if ptr.Pointer() != nil { + C.QTouchDevice_DestroyQTouchDevice(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qtouchdevice.h b/gui/qtouchdevice.h new file mode 100755 index 00000000..ad4d0377 --- /dev/null +++ b/gui/qtouchdevice.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTouchDevice_NewQTouchDevice(); +int QTouchDevice_Capabilities(QtObjectPtr ptr); +int QTouchDevice_MaximumTouchPoints(QtObjectPtr ptr); +char* QTouchDevice_Name(QtObjectPtr ptr); +void QTouchDevice_SetCapabilities(QtObjectPtr ptr, int caps); +void QTouchDevice_SetMaximumTouchPoints(QtObjectPtr ptr, int max); +void QTouchDevice_SetName(QtObjectPtr ptr, char* name); +void QTouchDevice_SetType(QtObjectPtr ptr, int devType); +int QTouchDevice_Type(QtObjectPtr ptr); +void QTouchDevice_DestroyQTouchDevice(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtouchevent.cpp b/gui/qtouchevent.cpp new file mode 100755 index 00000000..95905fd1 --- /dev/null +++ b/gui/qtouchevent.cpp @@ -0,0 +1,32 @@ +#include "qtouchevent.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTouchEvent: public QTouchEvent { +public: +}; + +QtObjectPtr QTouchEvent_Device(QtObjectPtr ptr){ + return static_cast(ptr)->device(); +} + +QtObjectPtr QTouchEvent_Target(QtObjectPtr ptr){ + return static_cast(ptr)->target(); +} + +int QTouchEvent_TouchPointStates(QtObjectPtr ptr){ + return static_cast(ptr)->touchPointStates(); +} + +QtObjectPtr QTouchEvent_Window(QtObjectPtr ptr){ + return static_cast(ptr)->window(); +} + +void QTouchEvent_DestroyQTouchEvent(QtObjectPtr ptr){ + static_cast(ptr)->~QTouchEvent(); +} + diff --git a/gui/qtouchevent.go b/gui/qtouchevent.go new file mode 100755 index 00000000..8f38d2a7 --- /dev/null +++ b/gui/qtouchevent.go @@ -0,0 +1,68 @@ +package gui + +//#include "qtouchevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QTouchEvent struct { + QInputEvent +} + +type QTouchEventITF interface { + QInputEventITF + QTouchEventPTR() *QTouchEvent +} + +func PointerFromQTouchEvent(ptr QTouchEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTouchEventPTR().Pointer() + } + return nil +} + +func QTouchEventFromPointer(ptr unsafe.Pointer) *QTouchEvent { + var n = new(QTouchEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QTouchEvent) QTouchEventPTR() *QTouchEvent { + return ptr +} + +func (ptr *QTouchEvent) Device() *QTouchDevice { + if ptr.Pointer() != nil { + return QTouchDeviceFromPointer(unsafe.Pointer(C.QTouchEvent_Device(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTouchEvent) Target() *core.QObject { + if ptr.Pointer() != nil { + return core.QObjectFromPointer(unsafe.Pointer(C.QTouchEvent_Target(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTouchEvent) TouchPointStates() core.Qt__TouchPointState { + if ptr.Pointer() != nil { + return core.Qt__TouchPointState(C.QTouchEvent_TouchPointStates(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTouchEvent) Window() *QWindow { + if ptr.Pointer() != nil { + return QWindowFromPointer(unsafe.Pointer(C.QTouchEvent_Window(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTouchEvent) DestroyQTouchEvent() { + if ptr.Pointer() != nil { + C.QTouchEvent_DestroyQTouchEvent(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qtouchevent.h b/gui/qtouchevent.h new file mode 100755 index 00000000..8f9a9013 --- /dev/null +++ b/gui/qtouchevent.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTouchEvent_Device(QtObjectPtr ptr); +QtObjectPtr QTouchEvent_Target(QtObjectPtr ptr); +int QTouchEvent_TouchPointStates(QtObjectPtr ptr); +QtObjectPtr QTouchEvent_Window(QtObjectPtr ptr); +void QTouchEvent_DestroyQTouchEvent(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qtransform.cpp b/gui/qtransform.cpp new file mode 100755 index 00000000..14fff6cf --- /dev/null +++ b/gui/qtransform.cpp @@ -0,0 +1,66 @@ +#include "qtransform.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTransform: public QTransform { +public: +}; + +int QTransform_QTransform_QuadToSquare(QtObjectPtr quad, QtObjectPtr trans){ + return QTransform::quadToSquare(*static_cast(quad), *static_cast(trans)); +} + +QtObjectPtr QTransform_NewQTransform(){ + return new QTransform(); +} + +int QTransform_IsAffine(QtObjectPtr ptr){ + return static_cast(ptr)->isAffine(); +} + +int QTransform_IsIdentity(QtObjectPtr ptr){ + return static_cast(ptr)->isIdentity(); +} + +int QTransform_IsInvertible(QtObjectPtr ptr){ + return static_cast(ptr)->isInvertible(); +} + +int QTransform_IsRotating(QtObjectPtr ptr){ + return static_cast(ptr)->isRotating(); +} + +int QTransform_IsScaling(QtObjectPtr ptr){ + return static_cast(ptr)->isScaling(); +} + +int QTransform_IsTranslating(QtObjectPtr ptr){ + return static_cast(ptr)->isTranslating(); +} + +void QTransform_Map10(QtObjectPtr ptr, int x, int y, int tx, int ty){ + static_cast(ptr)->map(x, y, &tx, &ty); +} + +int QTransform_QTransform_QuadToQuad(QtObjectPtr one, QtObjectPtr two, QtObjectPtr trans){ + return QTransform::quadToQuad(*static_cast(one), *static_cast(two), *static_cast(trans)); +} + +void QTransform_Reset(QtObjectPtr ptr){ + static_cast(ptr)->reset(); +} + +int QTransform_QTransform_SquareToQuad(QtObjectPtr quad, QtObjectPtr trans){ + return QTransform::squareToQuad(*static_cast(quad), *static_cast(trans)); +} + +int QTransform_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + diff --git a/gui/qtransform.go b/gui/qtransform.go new file mode 100755 index 00000000..31f0d82b --- /dev/null +++ b/gui/qtransform.go @@ -0,0 +1,129 @@ +package gui + +//#include "qtransform.h" +import "C" +import ( + "unsafe" +) + +type QTransform struct { + ptr unsafe.Pointer +} + +type QTransformITF interface { + QTransformPTR() *QTransform +} + +func (p *QTransform) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTransform) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTransform(ptr QTransformITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTransformPTR().Pointer() + } + return nil +} + +func QTransformFromPointer(ptr unsafe.Pointer) *QTransform { + var n = new(QTransform) + n.SetPointer(ptr) + return n +} + +func (ptr *QTransform) QTransformPTR() *QTransform { + return ptr +} + +//QTransform::TransformationType +type QTransform__TransformationType int + +var ( + QTransform__TxNone = QTransform__TransformationType(0x00) + QTransform__TxTranslate = QTransform__TransformationType(0x01) + QTransform__TxScale = QTransform__TransformationType(0x02) + QTransform__TxRotate = QTransform__TransformationType(0x04) + QTransform__TxShear = QTransform__TransformationType(0x08) + QTransform__TxProject = QTransform__TransformationType(0x10) +) + +func QTransform_QuadToSquare(quad QPolygonFITF, trans QTransformITF) bool { + return C.QTransform_QTransform_QuadToSquare(C.QtObjectPtr(PointerFromQPolygonF(quad)), C.QtObjectPtr(PointerFromQTransform(trans))) != 0 +} + +func NewQTransform() *QTransform { + return QTransformFromPointer(unsafe.Pointer(C.QTransform_NewQTransform())) +} + +func (ptr *QTransform) IsAffine() bool { + if ptr.Pointer() != nil { + return C.QTransform_IsAffine(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTransform) IsIdentity() bool { + if ptr.Pointer() != nil { + return C.QTransform_IsIdentity(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTransform) IsInvertible() bool { + if ptr.Pointer() != nil { + return C.QTransform_IsInvertible(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTransform) IsRotating() bool { + if ptr.Pointer() != nil { + return C.QTransform_IsRotating(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTransform) IsScaling() bool { + if ptr.Pointer() != nil { + return C.QTransform_IsScaling(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTransform) IsTranslating() bool { + if ptr.Pointer() != nil { + return C.QTransform_IsTranslating(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTransform) Map10(x int, y int, tx int, ty int) { + if ptr.Pointer() != nil { + C.QTransform_Map10(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.int(tx), C.int(ty)) + } +} + +func QTransform_QuadToQuad(one QPolygonFITF, two QPolygonFITF, trans QTransformITF) bool { + return C.QTransform_QTransform_QuadToQuad(C.QtObjectPtr(PointerFromQPolygonF(one)), C.QtObjectPtr(PointerFromQPolygonF(two)), C.QtObjectPtr(PointerFromQTransform(trans))) != 0 +} + +func (ptr *QTransform) Reset() { + if ptr.Pointer() != nil { + C.QTransform_Reset(C.QtObjectPtr(ptr.Pointer())) + } +} + +func QTransform_SquareToQuad(quad QPolygonFITF, trans QTransformITF) bool { + return C.QTransform_QTransform_SquareToQuad(C.QtObjectPtr(PointerFromQPolygonF(quad)), C.QtObjectPtr(PointerFromQTransform(trans))) != 0 +} + +func (ptr *QTransform) Type() QTransform__TransformationType { + if ptr.Pointer() != nil { + return QTransform__TransformationType(C.QTransform_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/gui/qtransform.h b/gui/qtransform.h new file mode 100755 index 00000000..431dc2a0 --- /dev/null +++ b/gui/qtransform.h @@ -0,0 +1,22 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QTransform_QTransform_QuadToSquare(QtObjectPtr quad, QtObjectPtr trans); +QtObjectPtr QTransform_NewQTransform(); +int QTransform_IsAffine(QtObjectPtr ptr); +int QTransform_IsIdentity(QtObjectPtr ptr); +int QTransform_IsInvertible(QtObjectPtr ptr); +int QTransform_IsRotating(QtObjectPtr ptr); +int QTransform_IsScaling(QtObjectPtr ptr); +int QTransform_IsTranslating(QtObjectPtr ptr); +void QTransform_Map10(QtObjectPtr ptr, int x, int y, int tx, int ty); +int QTransform_QTransform_QuadToQuad(QtObjectPtr one, QtObjectPtr two, QtObjectPtr trans); +void QTransform_Reset(QtObjectPtr ptr); +int QTransform_QTransform_SquareToQuad(QtObjectPtr quad, QtObjectPtr trans); +int QTransform_Type(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qvalidator.cpp b/gui/qvalidator.cpp new file mode 100755 index 00000000..5abe72a8 --- /dev/null +++ b/gui/qvalidator.cpp @@ -0,0 +1,31 @@ +#include "qvalidator.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQValidator: public QValidator { +public: +void Signal_Changed(){callbackQValidatorChanged(this->objectName().toUtf8().data());}; +}; + +void QValidator_ConnectChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QValidator::changed), static_cast(ptr), static_cast(&MyQValidator::Signal_Changed));; +} + +void QValidator_DisconnectChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QValidator::changed), static_cast(ptr), static_cast(&MyQValidator::Signal_Changed));; +} + +void QValidator_SetLocale(QtObjectPtr ptr, QtObjectPtr locale){ + static_cast(ptr)->setLocale(*static_cast(locale)); +} + +void QValidator_DestroyQValidator(QtObjectPtr ptr){ + static_cast(ptr)->~QValidator(); +} + diff --git a/gui/qvalidator.go b/gui/qvalidator.go new file mode 100755 index 00000000..882f4bed --- /dev/null +++ b/gui/qvalidator.go @@ -0,0 +1,79 @@ +package gui + +//#include "qvalidator.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QValidator struct { + core.QObject +} + +type QValidatorITF interface { + core.QObjectITF + QValidatorPTR() *QValidator +} + +func PointerFromQValidator(ptr QValidatorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QValidatorPTR().Pointer() + } + return nil +} + +func QValidatorFromPointer(ptr unsafe.Pointer) *QValidator { + var n = new(QValidator) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QValidator_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QValidator) QValidatorPTR() *QValidator { + return ptr +} + +//QValidator::State +type QValidator__State int + +var ( + QValidator__Invalid = QValidator__State(0) + QValidator__Intermediate = QValidator__State(1) + QValidator__Acceptable = QValidator__State(2) +) + +func (ptr *QValidator) ConnectChanged(f func()) { + if ptr.Pointer() != nil { + C.QValidator_ConnectChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "changed", f) + } +} + +func (ptr *QValidator) DisconnectChanged() { + if ptr.Pointer() != nil { + C.QValidator_DisconnectChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "changed") + } +} + +//export callbackQValidatorChanged +func callbackQValidatorChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "changed").(func())() +} + +func (ptr *QValidator) SetLocale(locale core.QLocaleITF) { + if ptr.Pointer() != nil { + C.QValidator_SetLocale(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQLocale(locale))) + } +} + +func (ptr *QValidator) DestroyQValidator() { + if ptr.Pointer() != nil { + C.QValidator_DestroyQValidator(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/gui/qvalidator.h b/gui/qvalidator.h new file mode 100755 index 00000000..1620284e --- /dev/null +++ b/gui/qvalidator.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QValidator_ConnectChanged(QtObjectPtr ptr); +void QValidator_DisconnectChanged(QtObjectPtr ptr); +void QValidator_SetLocale(QtObjectPtr ptr, QtObjectPtr locale); +void QValidator_DestroyQValidator(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qvector2d.cpp b/gui/qvector2d.cpp new file mode 100755 index 00000000..051b230c --- /dev/null +++ b/gui/qvector2d.cpp @@ -0,0 +1,45 @@ +#include "qvector2d.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQVector2D: public QVector2D { +public: +}; + +QtObjectPtr QVector2D_NewQVector2D(){ + return new QVector2D(); +} + +QtObjectPtr QVector2D_NewQVector2D4(QtObjectPtr point){ + return new QVector2D(*static_cast(point)); +} + +QtObjectPtr QVector2D_NewQVector2D5(QtObjectPtr point){ + return new QVector2D(*static_cast(point)); +} + +QtObjectPtr QVector2D_NewQVector2D6(QtObjectPtr vector){ + return new QVector2D(*static_cast(vector)); +} + +QtObjectPtr QVector2D_NewQVector2D7(QtObjectPtr vector){ + return new QVector2D(*static_cast(vector)); +} + +int QVector2D_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +void QVector2D_Normalize(QtObjectPtr ptr){ + static_cast(ptr)->normalize(); +} + diff --git a/gui/qvector2d.go b/gui/qvector2d.go new file mode 100755 index 00000000..73b541f9 --- /dev/null +++ b/gui/qvector2d.go @@ -0,0 +1,74 @@ +package gui + +//#include "qvector2d.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QVector2D struct { + ptr unsafe.Pointer +} + +type QVector2DITF interface { + QVector2DPTR() *QVector2D +} + +func (p *QVector2D) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QVector2D) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQVector2D(ptr QVector2DITF) unsafe.Pointer { + if ptr != nil { + return ptr.QVector2DPTR().Pointer() + } + return nil +} + +func QVector2DFromPointer(ptr unsafe.Pointer) *QVector2D { + var n = new(QVector2D) + n.SetPointer(ptr) + return n +} + +func (ptr *QVector2D) QVector2DPTR() *QVector2D { + return ptr +} + +func NewQVector2D() *QVector2D { + return QVector2DFromPointer(unsafe.Pointer(C.QVector2D_NewQVector2D())) +} + +func NewQVector2D4(point core.QPointITF) *QVector2D { + return QVector2DFromPointer(unsafe.Pointer(C.QVector2D_NewQVector2D4(C.QtObjectPtr(core.PointerFromQPoint(point))))) +} + +func NewQVector2D5(point core.QPointFITF) *QVector2D { + return QVector2DFromPointer(unsafe.Pointer(C.QVector2D_NewQVector2D5(C.QtObjectPtr(core.PointerFromQPointF(point))))) +} + +func NewQVector2D6(vector QVector3DITF) *QVector2D { + return QVector2DFromPointer(unsafe.Pointer(C.QVector2D_NewQVector2D6(C.QtObjectPtr(PointerFromQVector3D(vector))))) +} + +func NewQVector2D7(vector QVector4DITF) *QVector2D { + return QVector2DFromPointer(unsafe.Pointer(C.QVector2D_NewQVector2D7(C.QtObjectPtr(PointerFromQVector4D(vector))))) +} + +func (ptr *QVector2D) IsNull() bool { + if ptr.Pointer() != nil { + return C.QVector2D_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QVector2D) Normalize() { + if ptr.Pointer() != nil { + C.QVector2D_Normalize(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qvector2d.h b/gui/qvector2d.h new file mode 100755 index 00000000..4f6906b0 --- /dev/null +++ b/gui/qvector2d.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QVector2D_NewQVector2D(); +QtObjectPtr QVector2D_NewQVector2D4(QtObjectPtr point); +QtObjectPtr QVector2D_NewQVector2D5(QtObjectPtr point); +QtObjectPtr QVector2D_NewQVector2D6(QtObjectPtr vector); +QtObjectPtr QVector2D_NewQVector2D7(QtObjectPtr vector); +int QVector2D_IsNull(QtObjectPtr ptr); +void QVector2D_Normalize(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qvector3d.cpp b/gui/qvector3d.cpp new file mode 100755 index 00000000..66b3d339 --- /dev/null +++ b/gui/qvector3d.cpp @@ -0,0 +1,45 @@ +#include "qvector3d.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQVector3D: public QVector3D { +public: +}; + +QtObjectPtr QVector3D_NewQVector3D(){ + return new QVector3D(); +} + +QtObjectPtr QVector3D_NewQVector3D4(QtObjectPtr point){ + return new QVector3D(*static_cast(point)); +} + +QtObjectPtr QVector3D_NewQVector3D5(QtObjectPtr point){ + return new QVector3D(*static_cast(point)); +} + +QtObjectPtr QVector3D_NewQVector3D6(QtObjectPtr vector){ + return new QVector3D(*static_cast(vector)); +} + +QtObjectPtr QVector3D_NewQVector3D8(QtObjectPtr vector){ + return new QVector3D(*static_cast(vector)); +} + +int QVector3D_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +void QVector3D_Normalize(QtObjectPtr ptr){ + static_cast(ptr)->normalize(); +} + diff --git a/gui/qvector3d.go b/gui/qvector3d.go new file mode 100755 index 00000000..20c5aa9e --- /dev/null +++ b/gui/qvector3d.go @@ -0,0 +1,74 @@ +package gui + +//#include "qvector3d.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QVector3D struct { + ptr unsafe.Pointer +} + +type QVector3DITF interface { + QVector3DPTR() *QVector3D +} + +func (p *QVector3D) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QVector3D) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQVector3D(ptr QVector3DITF) unsafe.Pointer { + if ptr != nil { + return ptr.QVector3DPTR().Pointer() + } + return nil +} + +func QVector3DFromPointer(ptr unsafe.Pointer) *QVector3D { + var n = new(QVector3D) + n.SetPointer(ptr) + return n +} + +func (ptr *QVector3D) QVector3DPTR() *QVector3D { + return ptr +} + +func NewQVector3D() *QVector3D { + return QVector3DFromPointer(unsafe.Pointer(C.QVector3D_NewQVector3D())) +} + +func NewQVector3D4(point core.QPointITF) *QVector3D { + return QVector3DFromPointer(unsafe.Pointer(C.QVector3D_NewQVector3D4(C.QtObjectPtr(core.PointerFromQPoint(point))))) +} + +func NewQVector3D5(point core.QPointFITF) *QVector3D { + return QVector3DFromPointer(unsafe.Pointer(C.QVector3D_NewQVector3D5(C.QtObjectPtr(core.PointerFromQPointF(point))))) +} + +func NewQVector3D6(vector QVector2DITF) *QVector3D { + return QVector3DFromPointer(unsafe.Pointer(C.QVector3D_NewQVector3D6(C.QtObjectPtr(PointerFromQVector2D(vector))))) +} + +func NewQVector3D8(vector QVector4DITF) *QVector3D { + return QVector3DFromPointer(unsafe.Pointer(C.QVector3D_NewQVector3D8(C.QtObjectPtr(PointerFromQVector4D(vector))))) +} + +func (ptr *QVector3D) IsNull() bool { + if ptr.Pointer() != nil { + return C.QVector3D_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QVector3D) Normalize() { + if ptr.Pointer() != nil { + C.QVector3D_Normalize(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qvector3d.h b/gui/qvector3d.h new file mode 100755 index 00000000..337c6bd2 --- /dev/null +++ b/gui/qvector3d.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QVector3D_NewQVector3D(); +QtObjectPtr QVector3D_NewQVector3D4(QtObjectPtr point); +QtObjectPtr QVector3D_NewQVector3D5(QtObjectPtr point); +QtObjectPtr QVector3D_NewQVector3D6(QtObjectPtr vector); +QtObjectPtr QVector3D_NewQVector3D8(QtObjectPtr vector); +int QVector3D_IsNull(QtObjectPtr ptr); +void QVector3D_Normalize(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qvector4d.cpp b/gui/qvector4d.cpp new file mode 100755 index 00000000..aac5ea54 --- /dev/null +++ b/gui/qvector4d.cpp @@ -0,0 +1,45 @@ +#include "qvector4d.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQVector4D: public QVector4D { +public: +}; + +QtObjectPtr QVector4D_NewQVector4D(){ + return new QVector4D(); +} + +QtObjectPtr QVector4D_NewQVector4D4(QtObjectPtr point){ + return new QVector4D(*static_cast(point)); +} + +QtObjectPtr QVector4D_NewQVector4D5(QtObjectPtr point){ + return new QVector4D(*static_cast(point)); +} + +QtObjectPtr QVector4D_NewQVector4D6(QtObjectPtr vector){ + return new QVector4D(*static_cast(vector)); +} + +QtObjectPtr QVector4D_NewQVector4D8(QtObjectPtr vector){ + return new QVector4D(*static_cast(vector)); +} + +int QVector4D_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +void QVector4D_Normalize(QtObjectPtr ptr){ + static_cast(ptr)->normalize(); +} + diff --git a/gui/qvector4d.go b/gui/qvector4d.go new file mode 100755 index 00000000..783b4a98 --- /dev/null +++ b/gui/qvector4d.go @@ -0,0 +1,74 @@ +package gui + +//#include "qvector4d.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QVector4D struct { + ptr unsafe.Pointer +} + +type QVector4DITF interface { + QVector4DPTR() *QVector4D +} + +func (p *QVector4D) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QVector4D) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQVector4D(ptr QVector4DITF) unsafe.Pointer { + if ptr != nil { + return ptr.QVector4DPTR().Pointer() + } + return nil +} + +func QVector4DFromPointer(ptr unsafe.Pointer) *QVector4D { + var n = new(QVector4D) + n.SetPointer(ptr) + return n +} + +func (ptr *QVector4D) QVector4DPTR() *QVector4D { + return ptr +} + +func NewQVector4D() *QVector4D { + return QVector4DFromPointer(unsafe.Pointer(C.QVector4D_NewQVector4D())) +} + +func NewQVector4D4(point core.QPointITF) *QVector4D { + return QVector4DFromPointer(unsafe.Pointer(C.QVector4D_NewQVector4D4(C.QtObjectPtr(core.PointerFromQPoint(point))))) +} + +func NewQVector4D5(point core.QPointFITF) *QVector4D { + return QVector4DFromPointer(unsafe.Pointer(C.QVector4D_NewQVector4D5(C.QtObjectPtr(core.PointerFromQPointF(point))))) +} + +func NewQVector4D6(vector QVector2DITF) *QVector4D { + return QVector4DFromPointer(unsafe.Pointer(C.QVector4D_NewQVector4D6(C.QtObjectPtr(PointerFromQVector2D(vector))))) +} + +func NewQVector4D8(vector QVector3DITF) *QVector4D { + return QVector4DFromPointer(unsafe.Pointer(C.QVector4D_NewQVector4D8(C.QtObjectPtr(PointerFromQVector3D(vector))))) +} + +func (ptr *QVector4D) IsNull() bool { + if ptr.Pointer() != nil { + return C.QVector4D_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QVector4D) Normalize() { + if ptr.Pointer() != nil { + C.QVector4D_Normalize(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/gui/qvector4d.h b/gui/qvector4d.h new file mode 100755 index 00000000..69c31db7 --- /dev/null +++ b/gui/qvector4d.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QVector4D_NewQVector4D(); +QtObjectPtr QVector4D_NewQVector4D4(QtObjectPtr point); +QtObjectPtr QVector4D_NewQVector4D5(QtObjectPtr point); +QtObjectPtr QVector4D_NewQVector4D6(QtObjectPtr vector); +QtObjectPtr QVector4D_NewQVector4D8(QtObjectPtr vector); +int QVector4D_IsNull(QtObjectPtr ptr); +void QVector4D_Normalize(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qwhatsthisclickedevent.cpp b/gui/qwhatsthisclickedevent.cpp new file mode 100755 index 00000000..81e0475d --- /dev/null +++ b/gui/qwhatsthisclickedevent.cpp @@ -0,0 +1,20 @@ +#include "qwhatsthisclickedevent.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQWhatsThisClickedEvent: public QWhatsThisClickedEvent { +public: +}; + +QtObjectPtr QWhatsThisClickedEvent_NewQWhatsThisClickedEvent(char* href){ + return new QWhatsThisClickedEvent(QString(href)); +} + +char* QWhatsThisClickedEvent_Href(QtObjectPtr ptr){ + return static_cast(ptr)->href().toUtf8().data(); +} + diff --git a/gui/qwhatsthisclickedevent.go b/gui/qwhatsthisclickedevent.go new file mode 100755 index 00000000..0adc5c5a --- /dev/null +++ b/gui/qwhatsthisclickedevent.go @@ -0,0 +1,45 @@ +package gui + +//#include "qwhatsthisclickedevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QWhatsThisClickedEvent struct { + core.QEvent +} + +type QWhatsThisClickedEventITF interface { + core.QEventITF + QWhatsThisClickedEventPTR() *QWhatsThisClickedEvent +} + +func PointerFromQWhatsThisClickedEvent(ptr QWhatsThisClickedEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QWhatsThisClickedEventPTR().Pointer() + } + return nil +} + +func QWhatsThisClickedEventFromPointer(ptr unsafe.Pointer) *QWhatsThisClickedEvent { + var n = new(QWhatsThisClickedEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QWhatsThisClickedEvent) QWhatsThisClickedEventPTR() *QWhatsThisClickedEvent { + return ptr +} + +func NewQWhatsThisClickedEvent(href string) *QWhatsThisClickedEvent { + return QWhatsThisClickedEventFromPointer(unsafe.Pointer(C.QWhatsThisClickedEvent_NewQWhatsThisClickedEvent(C.CString(href)))) +} + +func (ptr *QWhatsThisClickedEvent) Href() string { + if ptr.Pointer() != nil { + return C.GoString(C.QWhatsThisClickedEvent_Href(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/gui/qwhatsthisclickedevent.h b/gui/qwhatsthisclickedevent.h new file mode 100755 index 00000000..3ee065f4 --- /dev/null +++ b/gui/qwhatsthisclickedevent.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QWhatsThisClickedEvent_NewQWhatsThisClickedEvent(char* href); +char* QWhatsThisClickedEvent_Href(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qwheelevent.cpp b/gui/qwheelevent.cpp new file mode 100755 index 00000000..921c82eb --- /dev/null +++ b/gui/qwheelevent.cpp @@ -0,0 +1,54 @@ +#include "qwheelevent.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQWheelEvent: public QWheelEvent { +public: +}; + +QtObjectPtr QWheelEvent_NewQWheelEvent(QtObjectPtr pos, QtObjectPtr globalPos, QtObjectPtr pixelDelta, QtObjectPtr angleDelta, int qt4Delta, int qt4Orientation, int buttons, int modifiers){ + return new QWheelEvent(*static_cast(pos), *static_cast(globalPos), *static_cast(pixelDelta), *static_cast(angleDelta), qt4Delta, static_cast(qt4Orientation), static_cast(buttons), static_cast(modifiers)); +} + +QtObjectPtr QWheelEvent_NewQWheelEvent4(QtObjectPtr pos, QtObjectPtr globalPos, QtObjectPtr pixelDelta, QtObjectPtr angleDelta, int qt4Delta, int qt4Orientation, int buttons, int modifiers, int phase){ + return new QWheelEvent(*static_cast(pos), *static_cast(globalPos), *static_cast(pixelDelta), *static_cast(angleDelta), qt4Delta, static_cast(qt4Orientation), static_cast(buttons), static_cast(modifiers), static_cast(phase)); +} + +QtObjectPtr QWheelEvent_NewQWheelEvent5(QtObjectPtr pos, QtObjectPtr globalPos, QtObjectPtr pixelDelta, QtObjectPtr angleDelta, int qt4Delta, int qt4Orientation, int buttons, int modifiers, int phase, int source){ + return new QWheelEvent(*static_cast(pos), *static_cast(globalPos), *static_cast(pixelDelta), *static_cast(angleDelta), qt4Delta, static_cast(qt4Orientation), static_cast(buttons), static_cast(modifiers), static_cast(phase), static_cast(source)); +} + +int QWheelEvent_Buttons(QtObjectPtr ptr){ + return static_cast(ptr)->buttons(); +} + +int QWheelEvent_GlobalX(QtObjectPtr ptr){ + return static_cast(ptr)->globalX(); +} + +int QWheelEvent_GlobalY(QtObjectPtr ptr){ + return static_cast(ptr)->globalY(); +} + +int QWheelEvent_Phase(QtObjectPtr ptr){ + return static_cast(ptr)->phase(); +} + +int QWheelEvent_Source(QtObjectPtr ptr){ + return static_cast(ptr)->source(); +} + +int QWheelEvent_X(QtObjectPtr ptr){ + return static_cast(ptr)->x(); +} + +int QWheelEvent_Y(QtObjectPtr ptr){ + return static_cast(ptr)->y(); +} + diff --git a/gui/qwheelevent.go b/gui/qwheelevent.go new file mode 100755 index 00000000..ae862a87 --- /dev/null +++ b/gui/qwheelevent.go @@ -0,0 +1,95 @@ +package gui + +//#include "qwheelevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QWheelEvent struct { + QInputEvent +} + +type QWheelEventITF interface { + QInputEventITF + QWheelEventPTR() *QWheelEvent +} + +func PointerFromQWheelEvent(ptr QWheelEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QWheelEventPTR().Pointer() + } + return nil +} + +func QWheelEventFromPointer(ptr unsafe.Pointer) *QWheelEvent { + var n = new(QWheelEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QWheelEvent) QWheelEventPTR() *QWheelEvent { + return ptr +} + +func NewQWheelEvent(pos core.QPointFITF, globalPos core.QPointFITF, pixelDelta core.QPointITF, angleDelta core.QPointITF, qt4Delta int, qt4Orientation core.Qt__Orientation, buttons core.Qt__MouseButton, modifiers core.Qt__KeyboardModifier) *QWheelEvent { + return QWheelEventFromPointer(unsafe.Pointer(C.QWheelEvent_NewQWheelEvent(C.QtObjectPtr(core.PointerFromQPointF(pos)), C.QtObjectPtr(core.PointerFromQPointF(globalPos)), C.QtObjectPtr(core.PointerFromQPoint(pixelDelta)), C.QtObjectPtr(core.PointerFromQPoint(angleDelta)), C.int(qt4Delta), C.int(qt4Orientation), C.int(buttons), C.int(modifiers)))) +} + +func NewQWheelEvent4(pos core.QPointFITF, globalPos core.QPointFITF, pixelDelta core.QPointITF, angleDelta core.QPointITF, qt4Delta int, qt4Orientation core.Qt__Orientation, buttons core.Qt__MouseButton, modifiers core.Qt__KeyboardModifier, phase core.Qt__ScrollPhase) *QWheelEvent { + return QWheelEventFromPointer(unsafe.Pointer(C.QWheelEvent_NewQWheelEvent4(C.QtObjectPtr(core.PointerFromQPointF(pos)), C.QtObjectPtr(core.PointerFromQPointF(globalPos)), C.QtObjectPtr(core.PointerFromQPoint(pixelDelta)), C.QtObjectPtr(core.PointerFromQPoint(angleDelta)), C.int(qt4Delta), C.int(qt4Orientation), C.int(buttons), C.int(modifiers), C.int(phase)))) +} + +func NewQWheelEvent5(pos core.QPointFITF, globalPos core.QPointFITF, pixelDelta core.QPointITF, angleDelta core.QPointITF, qt4Delta int, qt4Orientation core.Qt__Orientation, buttons core.Qt__MouseButton, modifiers core.Qt__KeyboardModifier, phase core.Qt__ScrollPhase, source core.Qt__MouseEventSource) *QWheelEvent { + return QWheelEventFromPointer(unsafe.Pointer(C.QWheelEvent_NewQWheelEvent5(C.QtObjectPtr(core.PointerFromQPointF(pos)), C.QtObjectPtr(core.PointerFromQPointF(globalPos)), C.QtObjectPtr(core.PointerFromQPoint(pixelDelta)), C.QtObjectPtr(core.PointerFromQPoint(angleDelta)), C.int(qt4Delta), C.int(qt4Orientation), C.int(buttons), C.int(modifiers), C.int(phase), C.int(source)))) +} + +func (ptr *QWheelEvent) Buttons() core.Qt__MouseButton { + if ptr.Pointer() != nil { + return core.Qt__MouseButton(C.QWheelEvent_Buttons(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWheelEvent) GlobalX() int { + if ptr.Pointer() != nil { + return int(C.QWheelEvent_GlobalX(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWheelEvent) GlobalY() int { + if ptr.Pointer() != nil { + return int(C.QWheelEvent_GlobalY(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWheelEvent) Phase() core.Qt__ScrollPhase { + if ptr.Pointer() != nil { + return core.Qt__ScrollPhase(C.QWheelEvent_Phase(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWheelEvent) Source() core.Qt__MouseEventSource { + if ptr.Pointer() != nil { + return core.Qt__MouseEventSource(C.QWheelEvent_Source(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWheelEvent) X() int { + if ptr.Pointer() != nil { + return int(C.QWheelEvent_X(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWheelEvent) Y() int { + if ptr.Pointer() != nil { + return int(C.QWheelEvent_Y(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/gui/qwheelevent.h b/gui/qwheelevent.h new file mode 100755 index 00000000..d7b71301 --- /dev/null +++ b/gui/qwheelevent.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QWheelEvent_NewQWheelEvent(QtObjectPtr pos, QtObjectPtr globalPos, QtObjectPtr pixelDelta, QtObjectPtr angleDelta, int qt4Delta, int qt4Orientation, int buttons, int modifiers); +QtObjectPtr QWheelEvent_NewQWheelEvent4(QtObjectPtr pos, QtObjectPtr globalPos, QtObjectPtr pixelDelta, QtObjectPtr angleDelta, int qt4Delta, int qt4Orientation, int buttons, int modifiers, int phase); +QtObjectPtr QWheelEvent_NewQWheelEvent5(QtObjectPtr pos, QtObjectPtr globalPos, QtObjectPtr pixelDelta, QtObjectPtr angleDelta, int qt4Delta, int qt4Orientation, int buttons, int modifiers, int phase, int source); +int QWheelEvent_Buttons(QtObjectPtr ptr); +int QWheelEvent_GlobalX(QtObjectPtr ptr); +int QWheelEvent_GlobalY(QtObjectPtr ptr); +int QWheelEvent_Phase(QtObjectPtr ptr); +int QWheelEvent_Source(QtObjectPtr ptr); +int QWheelEvent_X(QtObjectPtr ptr); +int QWheelEvent_Y(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qwindow.cpp b/gui/qwindow.cpp new file mode 100755 index 00000000..8089f1e4 --- /dev/null +++ b/gui/qwindow.cpp @@ -0,0 +1,504 @@ +#include "qwindow.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQWindow: public QWindow { +public: +void Signal_ActiveChanged(){callbackQWindowActiveChanged(this->objectName().toUtf8().data());}; +void Signal_ContentOrientationChanged(Qt::ScreenOrientation orientation){callbackQWindowContentOrientationChanged(this->objectName().toUtf8().data(), orientation);}; +void Signal_FocusObjectChanged(QObject * object){callbackQWindowFocusObjectChanged(this->objectName().toUtf8().data(), object);}; +void Signal_HeightChanged(int arg){callbackQWindowHeightChanged(this->objectName().toUtf8().data(), arg);}; +void Signal_MaximumHeightChanged(int arg){callbackQWindowMaximumHeightChanged(this->objectName().toUtf8().data(), arg);}; +void Signal_MaximumWidthChanged(int arg){callbackQWindowMaximumWidthChanged(this->objectName().toUtf8().data(), arg);}; +void Signal_MinimumHeightChanged(int arg){callbackQWindowMinimumHeightChanged(this->objectName().toUtf8().data(), arg);}; +void Signal_MinimumWidthChanged(int arg){callbackQWindowMinimumWidthChanged(this->objectName().toUtf8().data(), arg);}; +void Signal_ModalityChanged(Qt::WindowModality modality){callbackQWindowModalityChanged(this->objectName().toUtf8().data(), modality);}; +void Signal_ScreenChanged(QScreen * screen){callbackQWindowScreenChanged(this->objectName().toUtf8().data(), screen);}; +void Signal_VisibilityChanged(QWindow::Visibility visibility){callbackQWindowVisibilityChanged(this->objectName().toUtf8().data(), visibility);}; +void Signal_VisibleChanged(bool arg){callbackQWindowVisibleChanged(this->objectName().toUtf8().data(), arg);}; +void Signal_WidthChanged(int arg){callbackQWindowWidthChanged(this->objectName().toUtf8().data(), arg);}; +void Signal_WindowStateChanged(Qt::WindowState windowState){callbackQWindowWindowStateChanged(this->objectName().toUtf8().data(), windowState);}; +void Signal_WindowTitleChanged(const QString & title){callbackQWindowWindowTitleChanged(this->objectName().toUtf8().data(), title.toUtf8().data());}; +void Signal_XChanged(int arg){callbackQWindowXChanged(this->objectName().toUtf8().data(), arg);}; +void Signal_YChanged(int arg){callbackQWindowYChanged(this->objectName().toUtf8().data(), arg);}; +}; + +int QWindow_ContentOrientation(QtObjectPtr ptr){ + return static_cast(ptr)->contentOrientation(); +} + +int QWindow_Flags(QtObjectPtr ptr){ + return static_cast(ptr)->flags(); +} + +int QWindow_IsVisible(QtObjectPtr ptr){ + return static_cast(ptr)->isVisible(); +} + +int QWindow_Modality(QtObjectPtr ptr){ + return static_cast(ptr)->modality(); +} + +void QWindow_ReportContentOrientationChange(QtObjectPtr ptr, int orientation){ + static_cast(ptr)->reportContentOrientationChange(static_cast(orientation)); +} + +void QWindow_SetFlags(QtObjectPtr ptr, int flags){ + static_cast(ptr)->setFlags(static_cast(flags)); +} + +void QWindow_SetHeight(QtObjectPtr ptr, int arg){ + QMetaObject::invokeMethod(static_cast(ptr), "setHeight", Q_ARG(int, arg)); +} + +void QWindow_SetMaximumHeight(QtObjectPtr ptr, int h){ + QMetaObject::invokeMethod(static_cast(ptr), "setMaximumHeight", Q_ARG(int, h)); +} + +void QWindow_SetMaximumWidth(QtObjectPtr ptr, int w){ + QMetaObject::invokeMethod(static_cast(ptr), "setMaximumWidth", Q_ARG(int, w)); +} + +void QWindow_SetMinimumHeight(QtObjectPtr ptr, int h){ + QMetaObject::invokeMethod(static_cast(ptr), "setMinimumHeight", Q_ARG(int, h)); +} + +void QWindow_SetMinimumWidth(QtObjectPtr ptr, int w){ + QMetaObject::invokeMethod(static_cast(ptr), "setMinimumWidth", Q_ARG(int, w)); +} + +void QWindow_SetModality(QtObjectPtr ptr, int modality){ + static_cast(ptr)->setModality(static_cast(modality)); +} + +void QWindow_SetTitle(QtObjectPtr ptr, char* v){ + QMetaObject::invokeMethod(static_cast(ptr), "setTitle", Q_ARG(QString, QString(v))); +} + +void QWindow_SetVisibility(QtObjectPtr ptr, int v){ + static_cast(ptr)->setVisibility(static_cast(v)); +} + +void QWindow_SetVisible(QtObjectPtr ptr, int visible){ + QMetaObject::invokeMethod(static_cast(ptr), "setVisible", Q_ARG(bool, visible != 0)); +} + +void QWindow_SetWidth(QtObjectPtr ptr, int arg){ + QMetaObject::invokeMethod(static_cast(ptr), "setWidth", Q_ARG(int, arg)); +} + +void QWindow_SetX(QtObjectPtr ptr, int arg){ + QMetaObject::invokeMethod(static_cast(ptr), "setX", Q_ARG(int, arg)); +} + +void QWindow_SetY(QtObjectPtr ptr, int arg){ + QMetaObject::invokeMethod(static_cast(ptr), "setY", Q_ARG(int, arg)); +} + +char* QWindow_Title(QtObjectPtr ptr){ + return static_cast(ptr)->title().toUtf8().data(); +} + +int QWindow_Visibility(QtObjectPtr ptr){ + return static_cast(ptr)->visibility(); +} + +QtObjectPtr QWindow_NewQWindow(QtObjectPtr targetScreen){ + return new QWindow(static_cast(targetScreen)); +} + +QtObjectPtr QWindow_NewQWindow2(QtObjectPtr parent){ + return new QWindow(static_cast(parent)); +} + +void QWindow_ConnectActiveChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWindow::activeChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_ActiveChanged));; +} + +void QWindow_DisconnectActiveChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWindow::activeChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_ActiveChanged));; +} + +void QWindow_Alert(QtObjectPtr ptr, int msec){ + QMetaObject::invokeMethod(static_cast(ptr), "alert", Q_ARG(int, msec)); +} + +int QWindow_Close(QtObjectPtr ptr){ + return QMetaObject::invokeMethod(static_cast(ptr), "close"); +} + +void QWindow_ConnectContentOrientationChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWindow::contentOrientationChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_ContentOrientationChanged));; +} + +void QWindow_DisconnectContentOrientationChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWindow::contentOrientationChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_ContentOrientationChanged));; +} + +void QWindow_Create(QtObjectPtr ptr){ + static_cast(ptr)->create(); +} + +void QWindow_Destroy(QtObjectPtr ptr){ + static_cast(ptr)->destroy(); +} + +char* QWindow_FilePath(QtObjectPtr ptr){ + return static_cast(ptr)->filePath().toUtf8().data(); +} + +QtObjectPtr QWindow_FocusObject(QtObjectPtr ptr){ + return static_cast(ptr)->focusObject(); +} + +void QWindow_ConnectFocusObjectChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWindow::focusObjectChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_FocusObjectChanged));; +} + +void QWindow_DisconnectFocusObjectChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWindow::focusObjectChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_FocusObjectChanged));; +} + +int QWindow_Height(QtObjectPtr ptr){ + return static_cast(ptr)->height(); +} + +void QWindow_ConnectHeightChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWindow::heightChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_HeightChanged));; +} + +void QWindow_DisconnectHeightChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWindow::heightChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_HeightChanged));; +} + +void QWindow_Hide(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "hide"); +} + +int QWindow_IsActive(QtObjectPtr ptr){ + return static_cast(ptr)->isActive(); +} + +int QWindow_IsAncestorOf(QtObjectPtr ptr, QtObjectPtr child, int mode){ + return static_cast(ptr)->isAncestorOf(static_cast(child), static_cast(mode)); +} + +int QWindow_IsExposed(QtObjectPtr ptr){ + return static_cast(ptr)->isExposed(); +} + +int QWindow_IsModal(QtObjectPtr ptr){ + return static_cast(ptr)->isModal(); +} + +int QWindow_IsTopLevel(QtObjectPtr ptr){ + return static_cast(ptr)->isTopLevel(); +} + +void QWindow_Lower(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "lower"); +} + +int QWindow_MaximumHeight(QtObjectPtr ptr){ + return static_cast(ptr)->maximumHeight(); +} + +void QWindow_ConnectMaximumHeightChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWindow::maximumHeightChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_MaximumHeightChanged));; +} + +void QWindow_DisconnectMaximumHeightChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWindow::maximumHeightChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_MaximumHeightChanged));; +} + +int QWindow_MaximumWidth(QtObjectPtr ptr){ + return static_cast(ptr)->maximumWidth(); +} + +void QWindow_ConnectMaximumWidthChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWindow::maximumWidthChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_MaximumWidthChanged));; +} + +void QWindow_DisconnectMaximumWidthChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWindow::maximumWidthChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_MaximumWidthChanged));; +} + +int QWindow_MinimumHeight(QtObjectPtr ptr){ + return static_cast(ptr)->minimumHeight(); +} + +void QWindow_ConnectMinimumHeightChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWindow::minimumHeightChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_MinimumHeightChanged));; +} + +void QWindow_DisconnectMinimumHeightChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWindow::minimumHeightChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_MinimumHeightChanged));; +} + +int QWindow_MinimumWidth(QtObjectPtr ptr){ + return static_cast(ptr)->minimumWidth(); +} + +void QWindow_ConnectMinimumWidthChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWindow::minimumWidthChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_MinimumWidthChanged));; +} + +void QWindow_DisconnectMinimumWidthChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWindow::minimumWidthChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_MinimumWidthChanged));; +} + +void QWindow_ConnectModalityChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWindow::modalityChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_ModalityChanged));; +} + +void QWindow_DisconnectModalityChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWindow::modalityChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_ModalityChanged));; +} + +QtObjectPtr QWindow_Parent(QtObjectPtr ptr){ + return static_cast(ptr)->parent(); +} + +void QWindow_Raise(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "raise"); +} + +void QWindow_RequestActivate(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "requestActivate"); +} + +void QWindow_RequestUpdate(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "requestUpdate"); +} + +void QWindow_Resize(QtObjectPtr ptr, QtObjectPtr newSize){ + static_cast(ptr)->resize(*static_cast(newSize)); +} + +void QWindow_Resize2(QtObjectPtr ptr, int w, int h){ + static_cast(ptr)->resize(w, h); +} + +QtObjectPtr QWindow_Screen(QtObjectPtr ptr){ + return static_cast(ptr)->screen(); +} + +void QWindow_ConnectScreenChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWindow::screenChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_ScreenChanged));; +} + +void QWindow_DisconnectScreenChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWindow::screenChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_ScreenChanged));; +} + +void QWindow_SetBaseSize(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->setBaseSize(*static_cast(size)); +} + +void QWindow_SetCursor(QtObjectPtr ptr, QtObjectPtr cursor){ + static_cast(ptr)->setCursor(*static_cast(cursor)); +} + +void QWindow_SetFilePath(QtObjectPtr ptr, char* filePath){ + static_cast(ptr)->setFilePath(QString(filePath)); +} + +void QWindow_SetFormat(QtObjectPtr ptr, QtObjectPtr format){ + static_cast(ptr)->setFormat(*static_cast(format)); +} + +void QWindow_SetFramePosition(QtObjectPtr ptr, QtObjectPtr point){ + static_cast(ptr)->setFramePosition(*static_cast(point)); +} + +void QWindow_SetGeometry2(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->setGeometry(*static_cast(rect)); +} + +void QWindow_SetGeometry(QtObjectPtr ptr, int posx, int posy, int w, int h){ + static_cast(ptr)->setGeometry(posx, posy, w, h); +} + +void QWindow_SetIcon(QtObjectPtr ptr, QtObjectPtr icon){ + static_cast(ptr)->setIcon(*static_cast(icon)); +} + +int QWindow_SetKeyboardGrabEnabled(QtObjectPtr ptr, int grab){ + return static_cast(ptr)->setKeyboardGrabEnabled(grab != 0); +} + +void QWindow_SetMask(QtObjectPtr ptr, QtObjectPtr region){ + static_cast(ptr)->setMask(*static_cast(region)); +} + +void QWindow_SetMaximumSize(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->setMaximumSize(*static_cast(size)); +} + +void QWindow_SetMinimumSize(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->setMinimumSize(*static_cast(size)); +} + +int QWindow_SetMouseGrabEnabled(QtObjectPtr ptr, int grab){ + return static_cast(ptr)->setMouseGrabEnabled(grab != 0); +} + +void QWindow_SetParent(QtObjectPtr ptr, QtObjectPtr parent){ + static_cast(ptr)->setParent(static_cast(parent)); +} + +void QWindow_SetPosition(QtObjectPtr ptr, QtObjectPtr pt){ + static_cast(ptr)->setPosition(*static_cast(pt)); +} + +void QWindow_SetPosition2(QtObjectPtr ptr, int posx, int posy){ + static_cast(ptr)->setPosition(posx, posy); +} + +void QWindow_SetScreen(QtObjectPtr ptr, QtObjectPtr newScreen){ + static_cast(ptr)->setScreen(static_cast(newScreen)); +} + +void QWindow_SetSizeIncrement(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->setSizeIncrement(*static_cast(size)); +} + +void QWindow_SetSurfaceType(QtObjectPtr ptr, int surfaceType){ + static_cast(ptr)->setSurfaceType(static_cast(surfaceType)); +} + +void QWindow_SetTransientParent(QtObjectPtr ptr, QtObjectPtr parent){ + static_cast(ptr)->setTransientParent(static_cast(parent)); +} + +void QWindow_SetWindowState(QtObjectPtr ptr, int state){ + static_cast(ptr)->setWindowState(static_cast(state)); +} + +void QWindow_Show(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "show"); +} + +void QWindow_ShowFullScreen(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "showFullScreen"); +} + +void QWindow_ShowMaximized(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "showMaximized"); +} + +void QWindow_ShowMinimized(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "showMinimized"); +} + +void QWindow_ShowNormal(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "showNormal"); +} + +int QWindow_SurfaceType(QtObjectPtr ptr){ + return static_cast(ptr)->surfaceType(); +} + +QtObjectPtr QWindow_TransientParent(QtObjectPtr ptr){ + return static_cast(ptr)->transientParent(); +} + +int QWindow_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QWindow_UnsetCursor(QtObjectPtr ptr){ + static_cast(ptr)->unsetCursor(); +} + +void QWindow_ConnectVisibilityChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWindow::visibilityChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_VisibilityChanged));; +} + +void QWindow_DisconnectVisibilityChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWindow::visibilityChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_VisibilityChanged));; +} + +void QWindow_ConnectVisibleChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWindow::visibleChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_VisibleChanged));; +} + +void QWindow_DisconnectVisibleChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWindow::visibleChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_VisibleChanged));; +} + +int QWindow_Width(QtObjectPtr ptr){ + return static_cast(ptr)->width(); +} + +void QWindow_ConnectWidthChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWindow::widthChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_WidthChanged));; +} + +void QWindow_DisconnectWidthChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWindow::widthChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_WidthChanged));; +} + +int QWindow_WindowState(QtObjectPtr ptr){ + return static_cast(ptr)->windowState(); +} + +void QWindow_ConnectWindowStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWindow::windowStateChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_WindowStateChanged));; +} + +void QWindow_DisconnectWindowStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWindow::windowStateChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_WindowStateChanged));; +} + +void QWindow_ConnectWindowTitleChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWindow::windowTitleChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_WindowTitleChanged));; +} + +void QWindow_DisconnectWindowTitleChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWindow::windowTitleChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_WindowTitleChanged));; +} + +int QWindow_X(QtObjectPtr ptr){ + return static_cast(ptr)->x(); +} + +void QWindow_ConnectXChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWindow::xChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_XChanged));; +} + +void QWindow_DisconnectXChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWindow::xChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_XChanged));; +} + +int QWindow_Y(QtObjectPtr ptr){ + return static_cast(ptr)->y(); +} + +void QWindow_ConnectYChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWindow::yChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_YChanged));; +} + +void QWindow_DisconnectYChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWindow::yChanged), static_cast(ptr), static_cast(&MyQWindow::Signal_YChanged));; +} + +void QWindow_DestroyQWindow(QtObjectPtr ptr){ + static_cast(ptr)->~QWindow(); +} + diff --git a/gui/qwindow.go b/gui/qwindow.go new file mode 100755 index 00000000..2b03cef6 --- /dev/null +++ b/gui/qwindow.go @@ -0,0 +1,911 @@ +package gui + +//#include "qwindow.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QWindow struct { + core.QObject + QSurface +} + +type QWindowITF interface { + core.QObjectITF + QSurfaceITF + QWindowPTR() *QWindow +} + +func (p *QWindow) Pointer() unsafe.Pointer { + return p.QObjectPTR().Pointer() +} + +func (p *QWindow) SetPointer(ptr unsafe.Pointer) { + p.QObjectPTR().SetPointer(ptr) + p.QSurfacePTR().SetPointer(ptr) +} + +func PointerFromQWindow(ptr QWindowITF) unsafe.Pointer { + if ptr != nil { + return ptr.QWindowPTR().Pointer() + } + return nil +} + +func QWindowFromPointer(ptr unsafe.Pointer) *QWindow { + var n = new(QWindow) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QWindow_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QWindow) QWindowPTR() *QWindow { + return ptr +} + +//QWindow::AncestorMode +type QWindow__AncestorMode int + +var ( + QWindow__ExcludeTransients = QWindow__AncestorMode(0) + QWindow__IncludeTransients = QWindow__AncestorMode(1) +) + +//QWindow::Visibility +type QWindow__Visibility int + +var ( + QWindow__Hidden = QWindow__Visibility(0) + QWindow__AutomaticVisibility = QWindow__Visibility(1) + QWindow__Windowed = QWindow__Visibility(2) + QWindow__Minimized = QWindow__Visibility(3) + QWindow__Maximized = QWindow__Visibility(4) + QWindow__FullScreen = QWindow__Visibility(5) +) + +func (ptr *QWindow) ContentOrientation() core.Qt__ScreenOrientation { + if ptr.Pointer() != nil { + return core.Qt__ScreenOrientation(C.QWindow_ContentOrientation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWindow) Flags() core.Qt__WindowType { + if ptr.Pointer() != nil { + return core.Qt__WindowType(C.QWindow_Flags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWindow) IsVisible() bool { + if ptr.Pointer() != nil { + return C.QWindow_IsVisible(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWindow) Modality() core.Qt__WindowModality { + if ptr.Pointer() != nil { + return core.Qt__WindowModality(C.QWindow_Modality(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWindow) ReportContentOrientationChange(orientation core.Qt__ScreenOrientation) { + if ptr.Pointer() != nil { + C.QWindow_ReportContentOrientationChange(C.QtObjectPtr(ptr.Pointer()), C.int(orientation)) + } +} + +func (ptr *QWindow) SetFlags(flags core.Qt__WindowType) { + if ptr.Pointer() != nil { + C.QWindow_SetFlags(C.QtObjectPtr(ptr.Pointer()), C.int(flags)) + } +} + +func (ptr *QWindow) SetHeight(arg int) { + if ptr.Pointer() != nil { + C.QWindow_SetHeight(C.QtObjectPtr(ptr.Pointer()), C.int(arg)) + } +} + +func (ptr *QWindow) SetMaximumHeight(h int) { + if ptr.Pointer() != nil { + C.QWindow_SetMaximumHeight(C.QtObjectPtr(ptr.Pointer()), C.int(h)) + } +} + +func (ptr *QWindow) SetMaximumWidth(w int) { + if ptr.Pointer() != nil { + C.QWindow_SetMaximumWidth(C.QtObjectPtr(ptr.Pointer()), C.int(w)) + } +} + +func (ptr *QWindow) SetMinimumHeight(h int) { + if ptr.Pointer() != nil { + C.QWindow_SetMinimumHeight(C.QtObjectPtr(ptr.Pointer()), C.int(h)) + } +} + +func (ptr *QWindow) SetMinimumWidth(w int) { + if ptr.Pointer() != nil { + C.QWindow_SetMinimumWidth(C.QtObjectPtr(ptr.Pointer()), C.int(w)) + } +} + +func (ptr *QWindow) SetModality(modality core.Qt__WindowModality) { + if ptr.Pointer() != nil { + C.QWindow_SetModality(C.QtObjectPtr(ptr.Pointer()), C.int(modality)) + } +} + +func (ptr *QWindow) SetTitle(v string) { + if ptr.Pointer() != nil { + C.QWindow_SetTitle(C.QtObjectPtr(ptr.Pointer()), C.CString(v)) + } +} + +func (ptr *QWindow) SetVisibility(v QWindow__Visibility) { + if ptr.Pointer() != nil { + C.QWindow_SetVisibility(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QWindow) SetVisible(visible bool) { + if ptr.Pointer() != nil { + C.QWindow_SetVisible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(visible))) + } +} + +func (ptr *QWindow) SetWidth(arg int) { + if ptr.Pointer() != nil { + C.QWindow_SetWidth(C.QtObjectPtr(ptr.Pointer()), C.int(arg)) + } +} + +func (ptr *QWindow) SetX(arg int) { + if ptr.Pointer() != nil { + C.QWindow_SetX(C.QtObjectPtr(ptr.Pointer()), C.int(arg)) + } +} + +func (ptr *QWindow) SetY(arg int) { + if ptr.Pointer() != nil { + C.QWindow_SetY(C.QtObjectPtr(ptr.Pointer()), C.int(arg)) + } +} + +func (ptr *QWindow) Title() string { + if ptr.Pointer() != nil { + return C.GoString(C.QWindow_Title(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QWindow) Visibility() QWindow__Visibility { + if ptr.Pointer() != nil { + return QWindow__Visibility(C.QWindow_Visibility(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQWindow(targetScreen QScreenITF) *QWindow { + return QWindowFromPointer(unsafe.Pointer(C.QWindow_NewQWindow(C.QtObjectPtr(PointerFromQScreen(targetScreen))))) +} + +func NewQWindow2(parent QWindowITF) *QWindow { + return QWindowFromPointer(unsafe.Pointer(C.QWindow_NewQWindow2(C.QtObjectPtr(PointerFromQWindow(parent))))) +} + +func (ptr *QWindow) ConnectActiveChanged(f func()) { + if ptr.Pointer() != nil { + C.QWindow_ConnectActiveChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "activeChanged", f) + } +} + +func (ptr *QWindow) DisconnectActiveChanged() { + if ptr.Pointer() != nil { + C.QWindow_DisconnectActiveChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "activeChanged") + } +} + +//export callbackQWindowActiveChanged +func callbackQWindowActiveChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "activeChanged").(func())() +} + +func (ptr *QWindow) Alert(msec int) { + if ptr.Pointer() != nil { + C.QWindow_Alert(C.QtObjectPtr(ptr.Pointer()), C.int(msec)) + } +} + +func (ptr *QWindow) Close() bool { + if ptr.Pointer() != nil { + return C.QWindow_Close(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWindow) ConnectContentOrientationChanged(f func(orientation core.Qt__ScreenOrientation)) { + if ptr.Pointer() != nil { + C.QWindow_ConnectContentOrientationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "contentOrientationChanged", f) + } +} + +func (ptr *QWindow) DisconnectContentOrientationChanged() { + if ptr.Pointer() != nil { + C.QWindow_DisconnectContentOrientationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "contentOrientationChanged") + } +} + +//export callbackQWindowContentOrientationChanged +func callbackQWindowContentOrientationChanged(ptrName *C.char, orientation C.int) { + qt.GetSignal(C.GoString(ptrName), "contentOrientationChanged").(func(core.Qt__ScreenOrientation))(core.Qt__ScreenOrientation(orientation)) +} + +func (ptr *QWindow) Create() { + if ptr.Pointer() != nil { + C.QWindow_Create(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWindow) Destroy() { + if ptr.Pointer() != nil { + C.QWindow_Destroy(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWindow) FilePath() string { + if ptr.Pointer() != nil { + return C.GoString(C.QWindow_FilePath(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QWindow) FocusObject() *core.QObject { + if ptr.Pointer() != nil { + return core.QObjectFromPointer(unsafe.Pointer(C.QWindow_FocusObject(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QWindow) ConnectFocusObjectChanged(f func(object core.QObjectITF)) { + if ptr.Pointer() != nil { + C.QWindow_ConnectFocusObjectChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "focusObjectChanged", f) + } +} + +func (ptr *QWindow) DisconnectFocusObjectChanged() { + if ptr.Pointer() != nil { + C.QWindow_DisconnectFocusObjectChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "focusObjectChanged") + } +} + +//export callbackQWindowFocusObjectChanged +func callbackQWindowFocusObjectChanged(ptrName *C.char, object unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "focusObjectChanged").(func(*core.QObject))(core.QObjectFromPointer(object)) +} + +func (ptr *QWindow) Height() int { + if ptr.Pointer() != nil { + return int(C.QWindow_Height(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWindow) ConnectHeightChanged(f func(arg int)) { + if ptr.Pointer() != nil { + C.QWindow_ConnectHeightChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "heightChanged", f) + } +} + +func (ptr *QWindow) DisconnectHeightChanged() { + if ptr.Pointer() != nil { + C.QWindow_DisconnectHeightChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "heightChanged") + } +} + +//export callbackQWindowHeightChanged +func callbackQWindowHeightChanged(ptrName *C.char, arg C.int) { + qt.GetSignal(C.GoString(ptrName), "heightChanged").(func(int))(int(arg)) +} + +func (ptr *QWindow) Hide() { + if ptr.Pointer() != nil { + C.QWindow_Hide(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWindow) IsActive() bool { + if ptr.Pointer() != nil { + return C.QWindow_IsActive(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWindow) IsAncestorOf(child QWindowITF, mode QWindow__AncestorMode) bool { + if ptr.Pointer() != nil { + return C.QWindow_IsAncestorOf(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWindow(child)), C.int(mode)) != 0 + } + return false +} + +func (ptr *QWindow) IsExposed() bool { + if ptr.Pointer() != nil { + return C.QWindow_IsExposed(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWindow) IsModal() bool { + if ptr.Pointer() != nil { + return C.QWindow_IsModal(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWindow) IsTopLevel() bool { + if ptr.Pointer() != nil { + return C.QWindow_IsTopLevel(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWindow) Lower() { + if ptr.Pointer() != nil { + C.QWindow_Lower(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWindow) MaximumHeight() int { + if ptr.Pointer() != nil { + return int(C.QWindow_MaximumHeight(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWindow) ConnectMaximumHeightChanged(f func(arg int)) { + if ptr.Pointer() != nil { + C.QWindow_ConnectMaximumHeightChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "maximumHeightChanged", f) + } +} + +func (ptr *QWindow) DisconnectMaximumHeightChanged() { + if ptr.Pointer() != nil { + C.QWindow_DisconnectMaximumHeightChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "maximumHeightChanged") + } +} + +//export callbackQWindowMaximumHeightChanged +func callbackQWindowMaximumHeightChanged(ptrName *C.char, arg C.int) { + qt.GetSignal(C.GoString(ptrName), "maximumHeightChanged").(func(int))(int(arg)) +} + +func (ptr *QWindow) MaximumWidth() int { + if ptr.Pointer() != nil { + return int(C.QWindow_MaximumWidth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWindow) ConnectMaximumWidthChanged(f func(arg int)) { + if ptr.Pointer() != nil { + C.QWindow_ConnectMaximumWidthChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "maximumWidthChanged", f) + } +} + +func (ptr *QWindow) DisconnectMaximumWidthChanged() { + if ptr.Pointer() != nil { + C.QWindow_DisconnectMaximumWidthChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "maximumWidthChanged") + } +} + +//export callbackQWindowMaximumWidthChanged +func callbackQWindowMaximumWidthChanged(ptrName *C.char, arg C.int) { + qt.GetSignal(C.GoString(ptrName), "maximumWidthChanged").(func(int))(int(arg)) +} + +func (ptr *QWindow) MinimumHeight() int { + if ptr.Pointer() != nil { + return int(C.QWindow_MinimumHeight(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWindow) ConnectMinimumHeightChanged(f func(arg int)) { + if ptr.Pointer() != nil { + C.QWindow_ConnectMinimumHeightChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "minimumHeightChanged", f) + } +} + +func (ptr *QWindow) DisconnectMinimumHeightChanged() { + if ptr.Pointer() != nil { + C.QWindow_DisconnectMinimumHeightChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "minimumHeightChanged") + } +} + +//export callbackQWindowMinimumHeightChanged +func callbackQWindowMinimumHeightChanged(ptrName *C.char, arg C.int) { + qt.GetSignal(C.GoString(ptrName), "minimumHeightChanged").(func(int))(int(arg)) +} + +func (ptr *QWindow) MinimumWidth() int { + if ptr.Pointer() != nil { + return int(C.QWindow_MinimumWidth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWindow) ConnectMinimumWidthChanged(f func(arg int)) { + if ptr.Pointer() != nil { + C.QWindow_ConnectMinimumWidthChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "minimumWidthChanged", f) + } +} + +func (ptr *QWindow) DisconnectMinimumWidthChanged() { + if ptr.Pointer() != nil { + C.QWindow_DisconnectMinimumWidthChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "minimumWidthChanged") + } +} + +//export callbackQWindowMinimumWidthChanged +func callbackQWindowMinimumWidthChanged(ptrName *C.char, arg C.int) { + qt.GetSignal(C.GoString(ptrName), "minimumWidthChanged").(func(int))(int(arg)) +} + +func (ptr *QWindow) ConnectModalityChanged(f func(modality core.Qt__WindowModality)) { + if ptr.Pointer() != nil { + C.QWindow_ConnectModalityChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "modalityChanged", f) + } +} + +func (ptr *QWindow) DisconnectModalityChanged() { + if ptr.Pointer() != nil { + C.QWindow_DisconnectModalityChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "modalityChanged") + } +} + +//export callbackQWindowModalityChanged +func callbackQWindowModalityChanged(ptrName *C.char, modality C.int) { + qt.GetSignal(C.GoString(ptrName), "modalityChanged").(func(core.Qt__WindowModality))(core.Qt__WindowModality(modality)) +} + +func (ptr *QWindow) Parent() *QWindow { + if ptr.Pointer() != nil { + return QWindowFromPointer(unsafe.Pointer(C.QWindow_Parent(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QWindow) Raise() { + if ptr.Pointer() != nil { + C.QWindow_Raise(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWindow) RequestActivate() { + if ptr.Pointer() != nil { + C.QWindow_RequestActivate(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWindow) RequestUpdate() { + if ptr.Pointer() != nil { + C.QWindow_RequestUpdate(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWindow) Resize(newSize core.QSizeITF) { + if ptr.Pointer() != nil { + C.QWindow_Resize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(newSize))) + } +} + +func (ptr *QWindow) Resize2(w int, h int) { + if ptr.Pointer() != nil { + C.QWindow_Resize2(C.QtObjectPtr(ptr.Pointer()), C.int(w), C.int(h)) + } +} + +func (ptr *QWindow) Screen() *QScreen { + if ptr.Pointer() != nil { + return QScreenFromPointer(unsafe.Pointer(C.QWindow_Screen(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QWindow) ConnectScreenChanged(f func(screen QScreenITF)) { + if ptr.Pointer() != nil { + C.QWindow_ConnectScreenChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "screenChanged", f) + } +} + +func (ptr *QWindow) DisconnectScreenChanged() { + if ptr.Pointer() != nil { + C.QWindow_DisconnectScreenChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "screenChanged") + } +} + +//export callbackQWindowScreenChanged +func callbackQWindowScreenChanged(ptrName *C.char, screen unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "screenChanged").(func(*QScreen))(QScreenFromPointer(screen)) +} + +func (ptr *QWindow) SetBaseSize(size core.QSizeITF) { + if ptr.Pointer() != nil { + C.QWindow_SetBaseSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(size))) + } +} + +func (ptr *QWindow) SetCursor(cursor QCursorITF) { + if ptr.Pointer() != nil { + C.QWindow_SetCursor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQCursor(cursor))) + } +} + +func (ptr *QWindow) SetFilePath(filePath string) { + if ptr.Pointer() != nil { + C.QWindow_SetFilePath(C.QtObjectPtr(ptr.Pointer()), C.CString(filePath)) + } +} + +func (ptr *QWindow) SetFormat(format QSurfaceFormatITF) { + if ptr.Pointer() != nil { + C.QWindow_SetFormat(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSurfaceFormat(format))) + } +} + +func (ptr *QWindow) SetFramePosition(point core.QPointITF) { + if ptr.Pointer() != nil { + C.QWindow_SetFramePosition(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(point))) + } +} + +func (ptr *QWindow) SetGeometry2(rect core.QRectITF) { + if ptr.Pointer() != nil { + C.QWindow_SetGeometry2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rect))) + } +} + +func (ptr *QWindow) SetGeometry(posx int, posy int, w int, h int) { + if ptr.Pointer() != nil { + C.QWindow_SetGeometry(C.QtObjectPtr(ptr.Pointer()), C.int(posx), C.int(posy), C.int(w), C.int(h)) + } +} + +func (ptr *QWindow) SetIcon(icon QIconITF) { + if ptr.Pointer() != nil { + C.QWindow_SetIcon(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQIcon(icon))) + } +} + +func (ptr *QWindow) SetKeyboardGrabEnabled(grab bool) bool { + if ptr.Pointer() != nil { + return C.QWindow_SetKeyboardGrabEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(grab))) != 0 + } + return false +} + +func (ptr *QWindow) SetMask(region QRegionITF) { + if ptr.Pointer() != nil { + C.QWindow_SetMask(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQRegion(region))) + } +} + +func (ptr *QWindow) SetMaximumSize(size core.QSizeITF) { + if ptr.Pointer() != nil { + C.QWindow_SetMaximumSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(size))) + } +} + +func (ptr *QWindow) SetMinimumSize(size core.QSizeITF) { + if ptr.Pointer() != nil { + C.QWindow_SetMinimumSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(size))) + } +} + +func (ptr *QWindow) SetMouseGrabEnabled(grab bool) bool { + if ptr.Pointer() != nil { + return C.QWindow_SetMouseGrabEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(grab))) != 0 + } + return false +} + +func (ptr *QWindow) SetParent(parent QWindowITF) { + if ptr.Pointer() != nil { + C.QWindow_SetParent(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWindow(parent))) + } +} + +func (ptr *QWindow) SetPosition(pt core.QPointITF) { + if ptr.Pointer() != nil { + C.QWindow_SetPosition(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(pt))) + } +} + +func (ptr *QWindow) SetPosition2(posx int, posy int) { + if ptr.Pointer() != nil { + C.QWindow_SetPosition2(C.QtObjectPtr(ptr.Pointer()), C.int(posx), C.int(posy)) + } +} + +func (ptr *QWindow) SetScreen(newScreen QScreenITF) { + if ptr.Pointer() != nil { + C.QWindow_SetScreen(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQScreen(newScreen))) + } +} + +func (ptr *QWindow) SetSizeIncrement(size core.QSizeITF) { + if ptr.Pointer() != nil { + C.QWindow_SetSizeIncrement(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(size))) + } +} + +func (ptr *QWindow) SetSurfaceType(surfaceType QSurface__SurfaceType) { + if ptr.Pointer() != nil { + C.QWindow_SetSurfaceType(C.QtObjectPtr(ptr.Pointer()), C.int(surfaceType)) + } +} + +func (ptr *QWindow) SetTransientParent(parent QWindowITF) { + if ptr.Pointer() != nil { + C.QWindow_SetTransientParent(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWindow(parent))) + } +} + +func (ptr *QWindow) SetWindowState(state core.Qt__WindowState) { + if ptr.Pointer() != nil { + C.QWindow_SetWindowState(C.QtObjectPtr(ptr.Pointer()), C.int(state)) + } +} + +func (ptr *QWindow) Show() { + if ptr.Pointer() != nil { + C.QWindow_Show(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWindow) ShowFullScreen() { + if ptr.Pointer() != nil { + C.QWindow_ShowFullScreen(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWindow) ShowMaximized() { + if ptr.Pointer() != nil { + C.QWindow_ShowMaximized(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWindow) ShowMinimized() { + if ptr.Pointer() != nil { + C.QWindow_ShowMinimized(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWindow) ShowNormal() { + if ptr.Pointer() != nil { + C.QWindow_ShowNormal(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWindow) SurfaceType() QSurface__SurfaceType { + if ptr.Pointer() != nil { + return QSurface__SurfaceType(C.QWindow_SurfaceType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWindow) TransientParent() *QWindow { + if ptr.Pointer() != nil { + return QWindowFromPointer(unsafe.Pointer(C.QWindow_TransientParent(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QWindow) Type() core.Qt__WindowType { + if ptr.Pointer() != nil { + return core.Qt__WindowType(C.QWindow_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWindow) UnsetCursor() { + if ptr.Pointer() != nil { + C.QWindow_UnsetCursor(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWindow) ConnectVisibilityChanged(f func(visibility QWindow__Visibility)) { + if ptr.Pointer() != nil { + C.QWindow_ConnectVisibilityChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "visibilityChanged", f) + } +} + +func (ptr *QWindow) DisconnectVisibilityChanged() { + if ptr.Pointer() != nil { + C.QWindow_DisconnectVisibilityChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "visibilityChanged") + } +} + +//export callbackQWindowVisibilityChanged +func callbackQWindowVisibilityChanged(ptrName *C.char, visibility C.int) { + qt.GetSignal(C.GoString(ptrName), "visibilityChanged").(func(QWindow__Visibility))(QWindow__Visibility(visibility)) +} + +func (ptr *QWindow) ConnectVisibleChanged(f func(arg bool)) { + if ptr.Pointer() != nil { + C.QWindow_ConnectVisibleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "visibleChanged", f) + } +} + +func (ptr *QWindow) DisconnectVisibleChanged() { + if ptr.Pointer() != nil { + C.QWindow_DisconnectVisibleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "visibleChanged") + } +} + +//export callbackQWindowVisibleChanged +func callbackQWindowVisibleChanged(ptrName *C.char, arg C.int) { + qt.GetSignal(C.GoString(ptrName), "visibleChanged").(func(bool))(int(arg) != 0) +} + +func (ptr *QWindow) Width() int { + if ptr.Pointer() != nil { + return int(C.QWindow_Width(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWindow) ConnectWidthChanged(f func(arg int)) { + if ptr.Pointer() != nil { + C.QWindow_ConnectWidthChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "widthChanged", f) + } +} + +func (ptr *QWindow) DisconnectWidthChanged() { + if ptr.Pointer() != nil { + C.QWindow_DisconnectWidthChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "widthChanged") + } +} + +//export callbackQWindowWidthChanged +func callbackQWindowWidthChanged(ptrName *C.char, arg C.int) { + qt.GetSignal(C.GoString(ptrName), "widthChanged").(func(int))(int(arg)) +} + +func (ptr *QWindow) WindowState() core.Qt__WindowState { + if ptr.Pointer() != nil { + return core.Qt__WindowState(C.QWindow_WindowState(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWindow) ConnectWindowStateChanged(f func(windowState core.Qt__WindowState)) { + if ptr.Pointer() != nil { + C.QWindow_ConnectWindowStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "windowStateChanged", f) + } +} + +func (ptr *QWindow) DisconnectWindowStateChanged() { + if ptr.Pointer() != nil { + C.QWindow_DisconnectWindowStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "windowStateChanged") + } +} + +//export callbackQWindowWindowStateChanged +func callbackQWindowWindowStateChanged(ptrName *C.char, windowState C.int) { + qt.GetSignal(C.GoString(ptrName), "windowStateChanged").(func(core.Qt__WindowState))(core.Qt__WindowState(windowState)) +} + +func (ptr *QWindow) ConnectWindowTitleChanged(f func(title string)) { + if ptr.Pointer() != nil { + C.QWindow_ConnectWindowTitleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "windowTitleChanged", f) + } +} + +func (ptr *QWindow) DisconnectWindowTitleChanged() { + if ptr.Pointer() != nil { + C.QWindow_DisconnectWindowTitleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "windowTitleChanged") + } +} + +//export callbackQWindowWindowTitleChanged +func callbackQWindowWindowTitleChanged(ptrName *C.char, title *C.char) { + qt.GetSignal(C.GoString(ptrName), "windowTitleChanged").(func(string))(C.GoString(title)) +} + +func (ptr *QWindow) X() int { + if ptr.Pointer() != nil { + return int(C.QWindow_X(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWindow) ConnectXChanged(f func(arg int)) { + if ptr.Pointer() != nil { + C.QWindow_ConnectXChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "xChanged", f) + } +} + +func (ptr *QWindow) DisconnectXChanged() { + if ptr.Pointer() != nil { + C.QWindow_DisconnectXChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "xChanged") + } +} + +//export callbackQWindowXChanged +func callbackQWindowXChanged(ptrName *C.char, arg C.int) { + qt.GetSignal(C.GoString(ptrName), "xChanged").(func(int))(int(arg)) +} + +func (ptr *QWindow) Y() int { + if ptr.Pointer() != nil { + return int(C.QWindow_Y(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWindow) ConnectYChanged(f func(arg int)) { + if ptr.Pointer() != nil { + C.QWindow_ConnectYChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "yChanged", f) + } +} + +func (ptr *QWindow) DisconnectYChanged() { + if ptr.Pointer() != nil { + C.QWindow_DisconnectYChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "yChanged") + } +} + +//export callbackQWindowYChanged +func callbackQWindowYChanged(ptrName *C.char, arg C.int) { + qt.GetSignal(C.GoString(ptrName), "yChanged").(func(int))(int(arg)) +} + +func (ptr *QWindow) DestroyQWindow() { + if ptr.Pointer() != nil { + C.QWindow_DestroyQWindow(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/gui/qwindow.h b/gui/qwindow.h new file mode 100755 index 00000000..aad9aaba --- /dev/null +++ b/gui/qwindow.h @@ -0,0 +1,125 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QWindow_ContentOrientation(QtObjectPtr ptr); +int QWindow_Flags(QtObjectPtr ptr); +int QWindow_IsVisible(QtObjectPtr ptr); +int QWindow_Modality(QtObjectPtr ptr); +void QWindow_ReportContentOrientationChange(QtObjectPtr ptr, int orientation); +void QWindow_SetFlags(QtObjectPtr ptr, int flags); +void QWindow_SetHeight(QtObjectPtr ptr, int arg); +void QWindow_SetMaximumHeight(QtObjectPtr ptr, int h); +void QWindow_SetMaximumWidth(QtObjectPtr ptr, int w); +void QWindow_SetMinimumHeight(QtObjectPtr ptr, int h); +void QWindow_SetMinimumWidth(QtObjectPtr ptr, int w); +void QWindow_SetModality(QtObjectPtr ptr, int modality); +void QWindow_SetTitle(QtObjectPtr ptr, char* v); +void QWindow_SetVisibility(QtObjectPtr ptr, int v); +void QWindow_SetVisible(QtObjectPtr ptr, int visible); +void QWindow_SetWidth(QtObjectPtr ptr, int arg); +void QWindow_SetX(QtObjectPtr ptr, int arg); +void QWindow_SetY(QtObjectPtr ptr, int arg); +char* QWindow_Title(QtObjectPtr ptr); +int QWindow_Visibility(QtObjectPtr ptr); +QtObjectPtr QWindow_NewQWindow(QtObjectPtr targetScreen); +QtObjectPtr QWindow_NewQWindow2(QtObjectPtr parent); +void QWindow_ConnectActiveChanged(QtObjectPtr ptr); +void QWindow_DisconnectActiveChanged(QtObjectPtr ptr); +void QWindow_Alert(QtObjectPtr ptr, int msec); +int QWindow_Close(QtObjectPtr ptr); +void QWindow_ConnectContentOrientationChanged(QtObjectPtr ptr); +void QWindow_DisconnectContentOrientationChanged(QtObjectPtr ptr); +void QWindow_Create(QtObjectPtr ptr); +void QWindow_Destroy(QtObjectPtr ptr); +char* QWindow_FilePath(QtObjectPtr ptr); +QtObjectPtr QWindow_FocusObject(QtObjectPtr ptr); +void QWindow_ConnectFocusObjectChanged(QtObjectPtr ptr); +void QWindow_DisconnectFocusObjectChanged(QtObjectPtr ptr); +int QWindow_Height(QtObjectPtr ptr); +void QWindow_ConnectHeightChanged(QtObjectPtr ptr); +void QWindow_DisconnectHeightChanged(QtObjectPtr ptr); +void QWindow_Hide(QtObjectPtr ptr); +int QWindow_IsActive(QtObjectPtr ptr); +int QWindow_IsAncestorOf(QtObjectPtr ptr, QtObjectPtr child, int mode); +int QWindow_IsExposed(QtObjectPtr ptr); +int QWindow_IsModal(QtObjectPtr ptr); +int QWindow_IsTopLevel(QtObjectPtr ptr); +void QWindow_Lower(QtObjectPtr ptr); +int QWindow_MaximumHeight(QtObjectPtr ptr); +void QWindow_ConnectMaximumHeightChanged(QtObjectPtr ptr); +void QWindow_DisconnectMaximumHeightChanged(QtObjectPtr ptr); +int QWindow_MaximumWidth(QtObjectPtr ptr); +void QWindow_ConnectMaximumWidthChanged(QtObjectPtr ptr); +void QWindow_DisconnectMaximumWidthChanged(QtObjectPtr ptr); +int QWindow_MinimumHeight(QtObjectPtr ptr); +void QWindow_ConnectMinimumHeightChanged(QtObjectPtr ptr); +void QWindow_DisconnectMinimumHeightChanged(QtObjectPtr ptr); +int QWindow_MinimumWidth(QtObjectPtr ptr); +void QWindow_ConnectMinimumWidthChanged(QtObjectPtr ptr); +void QWindow_DisconnectMinimumWidthChanged(QtObjectPtr ptr); +void QWindow_ConnectModalityChanged(QtObjectPtr ptr); +void QWindow_DisconnectModalityChanged(QtObjectPtr ptr); +QtObjectPtr QWindow_Parent(QtObjectPtr ptr); +void QWindow_Raise(QtObjectPtr ptr); +void QWindow_RequestActivate(QtObjectPtr ptr); +void QWindow_RequestUpdate(QtObjectPtr ptr); +void QWindow_Resize(QtObjectPtr ptr, QtObjectPtr newSize); +void QWindow_Resize2(QtObjectPtr ptr, int w, int h); +QtObjectPtr QWindow_Screen(QtObjectPtr ptr); +void QWindow_ConnectScreenChanged(QtObjectPtr ptr); +void QWindow_DisconnectScreenChanged(QtObjectPtr ptr); +void QWindow_SetBaseSize(QtObjectPtr ptr, QtObjectPtr size); +void QWindow_SetCursor(QtObjectPtr ptr, QtObjectPtr cursor); +void QWindow_SetFilePath(QtObjectPtr ptr, char* filePath); +void QWindow_SetFormat(QtObjectPtr ptr, QtObjectPtr format); +void QWindow_SetFramePosition(QtObjectPtr ptr, QtObjectPtr point); +void QWindow_SetGeometry2(QtObjectPtr ptr, QtObjectPtr rect); +void QWindow_SetGeometry(QtObjectPtr ptr, int posx, int posy, int w, int h); +void QWindow_SetIcon(QtObjectPtr ptr, QtObjectPtr icon); +int QWindow_SetKeyboardGrabEnabled(QtObjectPtr ptr, int grab); +void QWindow_SetMask(QtObjectPtr ptr, QtObjectPtr region); +void QWindow_SetMaximumSize(QtObjectPtr ptr, QtObjectPtr size); +void QWindow_SetMinimumSize(QtObjectPtr ptr, QtObjectPtr size); +int QWindow_SetMouseGrabEnabled(QtObjectPtr ptr, int grab); +void QWindow_SetParent(QtObjectPtr ptr, QtObjectPtr parent); +void QWindow_SetPosition(QtObjectPtr ptr, QtObjectPtr pt); +void QWindow_SetPosition2(QtObjectPtr ptr, int posx, int posy); +void QWindow_SetScreen(QtObjectPtr ptr, QtObjectPtr newScreen); +void QWindow_SetSizeIncrement(QtObjectPtr ptr, QtObjectPtr size); +void QWindow_SetSurfaceType(QtObjectPtr ptr, int surfaceType); +void QWindow_SetTransientParent(QtObjectPtr ptr, QtObjectPtr parent); +void QWindow_SetWindowState(QtObjectPtr ptr, int state); +void QWindow_Show(QtObjectPtr ptr); +void QWindow_ShowFullScreen(QtObjectPtr ptr); +void QWindow_ShowMaximized(QtObjectPtr ptr); +void QWindow_ShowMinimized(QtObjectPtr ptr); +void QWindow_ShowNormal(QtObjectPtr ptr); +int QWindow_SurfaceType(QtObjectPtr ptr); +QtObjectPtr QWindow_TransientParent(QtObjectPtr ptr); +int QWindow_Type(QtObjectPtr ptr); +void QWindow_UnsetCursor(QtObjectPtr ptr); +void QWindow_ConnectVisibilityChanged(QtObjectPtr ptr); +void QWindow_DisconnectVisibilityChanged(QtObjectPtr ptr); +void QWindow_ConnectVisibleChanged(QtObjectPtr ptr); +void QWindow_DisconnectVisibleChanged(QtObjectPtr ptr); +int QWindow_Width(QtObjectPtr ptr); +void QWindow_ConnectWidthChanged(QtObjectPtr ptr); +void QWindow_DisconnectWidthChanged(QtObjectPtr ptr); +int QWindow_WindowState(QtObjectPtr ptr); +void QWindow_ConnectWindowStateChanged(QtObjectPtr ptr); +void QWindow_DisconnectWindowStateChanged(QtObjectPtr ptr); +void QWindow_ConnectWindowTitleChanged(QtObjectPtr ptr); +void QWindow_DisconnectWindowTitleChanged(QtObjectPtr ptr); +int QWindow_X(QtObjectPtr ptr); +void QWindow_ConnectXChanged(QtObjectPtr ptr); +void QWindow_DisconnectXChanged(QtObjectPtr ptr); +int QWindow_Y(QtObjectPtr ptr); +void QWindow_ConnectYChanged(QtObjectPtr ptr); +void QWindow_DisconnectYChanged(QtObjectPtr ptr); +void QWindow_DestroyQWindow(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/gui/qwindowstatechangeevent.cpp b/gui/qwindowstatechangeevent.cpp new file mode 100755 index 00000000..ad0f1c97 --- /dev/null +++ b/gui/qwindowstatechangeevent.cpp @@ -0,0 +1,17 @@ +#include "qwindowstatechangeevent.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQWindowStateChangeEvent: public QWindowStateChangeEvent { +public: +}; + +int QWindowStateChangeEvent_OldState(QtObjectPtr ptr){ + return static_cast(ptr)->oldState(); +} + diff --git a/gui/qwindowstatechangeevent.go b/gui/qwindowstatechangeevent.go new file mode 100755 index 00000000..ee5bdf95 --- /dev/null +++ b/gui/qwindowstatechangeevent.go @@ -0,0 +1,41 @@ +package gui + +//#include "qwindowstatechangeevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QWindowStateChangeEvent struct { + core.QEvent +} + +type QWindowStateChangeEventITF interface { + core.QEventITF + QWindowStateChangeEventPTR() *QWindowStateChangeEvent +} + +func PointerFromQWindowStateChangeEvent(ptr QWindowStateChangeEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QWindowStateChangeEventPTR().Pointer() + } + return nil +} + +func QWindowStateChangeEventFromPointer(ptr unsafe.Pointer) *QWindowStateChangeEvent { + var n = new(QWindowStateChangeEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QWindowStateChangeEvent) QWindowStateChangeEventPTR() *QWindowStateChangeEvent { + return ptr +} + +func (ptr *QWindowStateChangeEvent) OldState() core.Qt__WindowState { + if ptr.Pointer() != nil { + return core.Qt__WindowState(C.QWindowStateChangeEvent_OldState(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/gui/qwindowstatechangeevent.h b/gui/qwindowstatechangeevent.h new file mode 100755 index 00000000..6172a088 --- /dev/null +++ b/gui/qwindowstatechangeevent.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QWindowStateChangeEvent_OldState(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/help/cgo_darwin_amd64.go b/help/cgo_darwin_amd64.go new file mode 100755 index 00000000..76516712 --- /dev/null +++ b/help/cgo_darwin_amd64.go @@ -0,0 +1,13 @@ +package help + +/* +#cgo CPPFLAGS: -pipe -O2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 -Wall -W +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_SQL_LIB -DQT_CLUCENE_LIB -DQT_WIDGETS_LIB -DQT_HELP_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/mkspecs/macx-clang -F/usr/local/Qt5.5.1/5.5/clang_64/lib +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtCore.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtGui.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtNetwork.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtSql.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtCLucene.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtWidgets.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtHelp.framework/Headers +#cgo CPPFLAGS: -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.framework/Headers + +#cgo LDFLAGS: -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 +#cgo LDFLAGS: -F/usr/local/Qt5.5.1/5.5/clang_64/lib -framework QtCore -framework QtGui -framework QtNetwork -framework QtSql -framework QtCLucene -framework QtWidgets -framework QtHelp -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL +*/ +import "C" diff --git a/help/cgo_linux_386.go b/help/cgo_linux_386.go new file mode 100755 index 00000000..0fed102f --- /dev/null +++ b/help/cgo_linux_386.go @@ -0,0 +1,12 @@ +package help + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_SQL_LIB -DQT_CLUCENE_LIB -DQT_WIDGETS_LIB -DQT_HELP_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include -I/usr/local/Qt5.5.1/5.5/gcc/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc/include/QtGui -I/usr/local/Qt5.5.1/5.5/gcc/include/QtNetwork -I/usr/local/Qt5.5.1/5.5/gcc/include/QtSql -I/usr/local/Qt5.5.1/5.5/gcc/include/QtCLucene -I/usr/local/Qt5.5.1/5.5/gcc/include/QtWidgets -I/usr/local/Qt5.5.1/5.5/gcc/include/QtHelp + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc/lib -L/usr/lib -lQt5Core -lQt5Gui -lQt5Network -lQt5Sql -lQt5CLucene -lQt5Widgets -lQt5Help -lpthread +*/ +import "C" diff --git a/help/cgo_linux_amd64.go b/help/cgo_linux_amd64.go new file mode 100755 index 00000000..55ef25cb --- /dev/null +++ b/help/cgo_linux_amd64.go @@ -0,0 +1,12 @@ +package help + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_SQL_LIB -DQT_CLUCENE_LIB -DQT_WIDGETS_LIB -DQT_HELP_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include -I/usr/local/Qt5.5.1/5.5/gcc_64/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtGui -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtNetwork -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtSql -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtCLucene -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtWidgets -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtHelp + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc_64/lib -L/usr/lib64 -lQt5Core -lQt5Gui -lQt5Network -lQt5Sql -lQt5CLucene -lQt5Widgets -lQt5Help -lpthread +*/ +import "C" diff --git a/help/cgo_windows_386.go b/help/cgo_windows_386.go new file mode 100755 index 00000000..e4dc4216 --- /dev/null +++ b/help/cgo_windows_386.go @@ -0,0 +1,12 @@ +package help + +/* +#cgo CPPFLAGS: -pipe -fno-keep-inline-dllexport -O2 -Wall -Wextra -fexceptions -mthreads +#cgo CPPFLAGS: -DUNICODE -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_SQL_LIB -DQT_CLUCENE_LIB -DQT_WIDGETS_LIB -DQT_HELP_LIB +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include -IC:/Qt/Qt5.5.1/5.5/mingw492_32/mkspecs/win32-g++ +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtCore -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtGui -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtNetwork -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtSql -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtCLucene -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtWidgets -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtHelp + +#cgo LDFLAGS: -Wl,-s -Wl,-subsystem,windows -mthreads +#cgo LDFLAGS: -LC:/Qt/Qt5.5.1/5.5/mingw492_32/bin -lQt5Core -lQt5Gui -lQt5Network -lQt5Sql -lQt5CLucene -lQt5Widgets -lQt5Help +*/ +import "C" diff --git a/help/qhelpcontentitem.cpp b/help/qhelpcontentitem.cpp new file mode 100755 index 00000000..e5149d51 --- /dev/null +++ b/help/qhelpcontentitem.cpp @@ -0,0 +1,44 @@ +#include "qhelpcontentitem.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQHelpContentItem: public QHelpContentItem { +public: +}; + +QtObjectPtr QHelpContentItem_Child(QtObjectPtr ptr, int row){ + return static_cast(ptr)->child(row); +} + +int QHelpContentItem_ChildCount(QtObjectPtr ptr){ + return static_cast(ptr)->childCount(); +} + +int QHelpContentItem_ChildPosition(QtObjectPtr ptr, QtObjectPtr child){ + return static_cast(ptr)->childPosition(static_cast(child)); +} + +QtObjectPtr QHelpContentItem_Parent(QtObjectPtr ptr){ + return static_cast(ptr)->parent(); +} + +int QHelpContentItem_Row(QtObjectPtr ptr){ + return static_cast(ptr)->row(); +} + +char* QHelpContentItem_Title(QtObjectPtr ptr){ + return static_cast(ptr)->title().toUtf8().data(); +} + +char* QHelpContentItem_Url(QtObjectPtr ptr){ + return static_cast(ptr)->url().toString().toUtf8().data(); +} + +void QHelpContentItem_DestroyQHelpContentItem(QtObjectPtr ptr){ + static_cast(ptr)->~QHelpContentItem(); +} + diff --git a/help/qhelpcontentitem.go b/help/qhelpcontentitem.go new file mode 100755 index 00000000..22e4d945 --- /dev/null +++ b/help/qhelpcontentitem.go @@ -0,0 +1,95 @@ +package help + +//#include "qhelpcontentitem.h" +import "C" +import ( + "unsafe" +) + +type QHelpContentItem struct { + ptr unsafe.Pointer +} + +type QHelpContentItemITF interface { + QHelpContentItemPTR() *QHelpContentItem +} + +func (p *QHelpContentItem) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QHelpContentItem) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQHelpContentItem(ptr QHelpContentItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QHelpContentItemPTR().Pointer() + } + return nil +} + +func QHelpContentItemFromPointer(ptr unsafe.Pointer) *QHelpContentItem { + var n = new(QHelpContentItem) + n.SetPointer(ptr) + return n +} + +func (ptr *QHelpContentItem) QHelpContentItemPTR() *QHelpContentItem { + return ptr +} + +func (ptr *QHelpContentItem) Child(row int) *QHelpContentItem { + if ptr.Pointer() != nil { + return QHelpContentItemFromPointer(unsafe.Pointer(C.QHelpContentItem_Child(C.QtObjectPtr(ptr.Pointer()), C.int(row)))) + } + return nil +} + +func (ptr *QHelpContentItem) ChildCount() int { + if ptr.Pointer() != nil { + return int(C.QHelpContentItem_ChildCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QHelpContentItem) ChildPosition(child QHelpContentItemITF) int { + if ptr.Pointer() != nil { + return int(C.QHelpContentItem_ChildPosition(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQHelpContentItem(child)))) + } + return 0 +} + +func (ptr *QHelpContentItem) Parent() *QHelpContentItem { + if ptr.Pointer() != nil { + return QHelpContentItemFromPointer(unsafe.Pointer(C.QHelpContentItem_Parent(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QHelpContentItem) Row() int { + if ptr.Pointer() != nil { + return int(C.QHelpContentItem_Row(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QHelpContentItem) Title() string { + if ptr.Pointer() != nil { + return C.GoString(C.QHelpContentItem_Title(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QHelpContentItem) Url() string { + if ptr.Pointer() != nil { + return C.GoString(C.QHelpContentItem_Url(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QHelpContentItem) DestroyQHelpContentItem() { + if ptr.Pointer() != nil { + C.QHelpContentItem_DestroyQHelpContentItem(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/help/qhelpcontentitem.h b/help/qhelpcontentitem.h new file mode 100755 index 00000000..c614432a --- /dev/null +++ b/help/qhelpcontentitem.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QHelpContentItem_Child(QtObjectPtr ptr, int row); +int QHelpContentItem_ChildCount(QtObjectPtr ptr); +int QHelpContentItem_ChildPosition(QtObjectPtr ptr, QtObjectPtr child); +QtObjectPtr QHelpContentItem_Parent(QtObjectPtr ptr); +int QHelpContentItem_Row(QtObjectPtr ptr); +char* QHelpContentItem_Title(QtObjectPtr ptr); +char* QHelpContentItem_Url(QtObjectPtr ptr); +void QHelpContentItem_DestroyQHelpContentItem(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/help/qhelpcontentmodel.cpp b/help/qhelpcontentmodel.cpp new file mode 100755 index 00000000..8241a0e9 --- /dev/null +++ b/help/qhelpcontentmodel.cpp @@ -0,0 +1,67 @@ +#include "qhelpcontentmodel.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQHelpContentModel: public QHelpContentModel { +public: +void Signal_ContentsCreated(){callbackQHelpContentModelContentsCreated(this->objectName().toUtf8().data());}; +void Signal_ContentsCreationStarted(){callbackQHelpContentModelContentsCreationStarted(this->objectName().toUtf8().data());}; +}; + +int QHelpContentModel_ColumnCount(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->columnCount(*static_cast(parent)); +} + +QtObjectPtr QHelpContentModel_ContentItemAt(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->contentItemAt(*static_cast(index)); +} + +void QHelpContentModel_ConnectContentsCreated(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QHelpContentModel::contentsCreated), static_cast(ptr), static_cast(&MyQHelpContentModel::Signal_ContentsCreated));; +} + +void QHelpContentModel_DisconnectContentsCreated(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QHelpContentModel::contentsCreated), static_cast(ptr), static_cast(&MyQHelpContentModel::Signal_ContentsCreated));; +} + +void QHelpContentModel_ConnectContentsCreationStarted(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QHelpContentModel::contentsCreationStarted), static_cast(ptr), static_cast(&MyQHelpContentModel::Signal_ContentsCreationStarted));; +} + +void QHelpContentModel_DisconnectContentsCreationStarted(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QHelpContentModel::contentsCreationStarted), static_cast(ptr), static_cast(&MyQHelpContentModel::Signal_ContentsCreationStarted));; +} + +void QHelpContentModel_CreateContents(QtObjectPtr ptr, char* customFilterName){ + static_cast(ptr)->createContents(QString(customFilterName)); +} + +char* QHelpContentModel_Data(QtObjectPtr ptr, QtObjectPtr index, int role){ + return static_cast(ptr)->data(*static_cast(index), role).toString().toUtf8().data(); +} + +QtObjectPtr QHelpContentModel_Index(QtObjectPtr ptr, int row, int column, QtObjectPtr parent){ + return static_cast(ptr)->index(row, column, *static_cast(parent)).internalPointer(); +} + +int QHelpContentModel_IsCreatingContents(QtObjectPtr ptr){ + return static_cast(ptr)->isCreatingContents(); +} + +QtObjectPtr QHelpContentModel_Parent(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->parent(*static_cast(index)).internalPointer(); +} + +int QHelpContentModel_RowCount(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->rowCount(*static_cast(parent)); +} + +void QHelpContentModel_DestroyQHelpContentModel(QtObjectPtr ptr){ + static_cast(ptr)->~QHelpContentModel(); +} + diff --git a/help/qhelpcontentmodel.go b/help/qhelpcontentmodel.go new file mode 100755 index 00000000..2721511d --- /dev/null +++ b/help/qhelpcontentmodel.go @@ -0,0 +1,138 @@ +package help + +//#include "qhelpcontentmodel.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QHelpContentModel struct { + core.QAbstractItemModel +} + +type QHelpContentModelITF interface { + core.QAbstractItemModelITF + QHelpContentModelPTR() *QHelpContentModel +} + +func PointerFromQHelpContentModel(ptr QHelpContentModelITF) unsafe.Pointer { + if ptr != nil { + return ptr.QHelpContentModelPTR().Pointer() + } + return nil +} + +func QHelpContentModelFromPointer(ptr unsafe.Pointer) *QHelpContentModel { + var n = new(QHelpContentModel) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QHelpContentModel_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QHelpContentModel) QHelpContentModelPTR() *QHelpContentModel { + return ptr +} + +func (ptr *QHelpContentModel) ColumnCount(parent core.QModelIndexITF) int { + if ptr.Pointer() != nil { + return int(C.QHelpContentModel_ColumnCount(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(parent)))) + } + return 0 +} + +func (ptr *QHelpContentModel) ContentItemAt(index core.QModelIndexITF) *QHelpContentItem { + if ptr.Pointer() != nil { + return QHelpContentItemFromPointer(unsafe.Pointer(C.QHelpContentModel_ContentItemAt(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index))))) + } + return nil +} + +func (ptr *QHelpContentModel) ConnectContentsCreated(f func()) { + if ptr.Pointer() != nil { + C.QHelpContentModel_ConnectContentsCreated(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "contentsCreated", f) + } +} + +func (ptr *QHelpContentModel) DisconnectContentsCreated() { + if ptr.Pointer() != nil { + C.QHelpContentModel_DisconnectContentsCreated(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "contentsCreated") + } +} + +//export callbackQHelpContentModelContentsCreated +func callbackQHelpContentModelContentsCreated(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "contentsCreated").(func())() +} + +func (ptr *QHelpContentModel) ConnectContentsCreationStarted(f func()) { + if ptr.Pointer() != nil { + C.QHelpContentModel_ConnectContentsCreationStarted(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "contentsCreationStarted", f) + } +} + +func (ptr *QHelpContentModel) DisconnectContentsCreationStarted() { + if ptr.Pointer() != nil { + C.QHelpContentModel_DisconnectContentsCreationStarted(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "contentsCreationStarted") + } +} + +//export callbackQHelpContentModelContentsCreationStarted +func callbackQHelpContentModelContentsCreationStarted(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "contentsCreationStarted").(func())() +} + +func (ptr *QHelpContentModel) CreateContents(customFilterName string) { + if ptr.Pointer() != nil { + C.QHelpContentModel_CreateContents(C.QtObjectPtr(ptr.Pointer()), C.CString(customFilterName)) + } +} + +func (ptr *QHelpContentModel) Data(index core.QModelIndexITF, role int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QHelpContentModel_Data(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index)), C.int(role))) + } + return "" +} + +func (ptr *QHelpContentModel) Index(row int, column int, parent core.QModelIndexITF) *core.QModelIndex { + if ptr.Pointer() != nil { + return core.QModelIndexFromPointer(unsafe.Pointer(C.QHelpContentModel_Index(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column), C.QtObjectPtr(core.PointerFromQModelIndex(parent))))) + } + return nil +} + +func (ptr *QHelpContentModel) IsCreatingContents() bool { + if ptr.Pointer() != nil { + return C.QHelpContentModel_IsCreatingContents(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QHelpContentModel) Parent(index core.QModelIndexITF) *core.QModelIndex { + if ptr.Pointer() != nil { + return core.QModelIndexFromPointer(unsafe.Pointer(C.QHelpContentModel_Parent(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index))))) + } + return nil +} + +func (ptr *QHelpContentModel) RowCount(parent core.QModelIndexITF) int { + if ptr.Pointer() != nil { + return int(C.QHelpContentModel_RowCount(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(parent)))) + } + return 0 +} + +func (ptr *QHelpContentModel) DestroyQHelpContentModel() { + if ptr.Pointer() != nil { + C.QHelpContentModel_DestroyQHelpContentModel(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/help/qhelpcontentmodel.h b/help/qhelpcontentmodel.h new file mode 100755 index 00000000..bbe2fc19 --- /dev/null +++ b/help/qhelpcontentmodel.h @@ -0,0 +1,22 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QHelpContentModel_ColumnCount(QtObjectPtr ptr, QtObjectPtr parent); +QtObjectPtr QHelpContentModel_ContentItemAt(QtObjectPtr ptr, QtObjectPtr index); +void QHelpContentModel_ConnectContentsCreated(QtObjectPtr ptr); +void QHelpContentModel_DisconnectContentsCreated(QtObjectPtr ptr); +void QHelpContentModel_ConnectContentsCreationStarted(QtObjectPtr ptr); +void QHelpContentModel_DisconnectContentsCreationStarted(QtObjectPtr ptr); +void QHelpContentModel_CreateContents(QtObjectPtr ptr, char* customFilterName); +char* QHelpContentModel_Data(QtObjectPtr ptr, QtObjectPtr index, int role); +QtObjectPtr QHelpContentModel_Index(QtObjectPtr ptr, int row, int column, QtObjectPtr parent); +int QHelpContentModel_IsCreatingContents(QtObjectPtr ptr); +QtObjectPtr QHelpContentModel_Parent(QtObjectPtr ptr, QtObjectPtr index); +int QHelpContentModel_RowCount(QtObjectPtr ptr, QtObjectPtr parent); +void QHelpContentModel_DestroyQHelpContentModel(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/help/qhelpcontentwidget.cpp b/help/qhelpcontentwidget.cpp new file mode 100755 index 00000000..59447ed2 --- /dev/null +++ b/help/qhelpcontentwidget.cpp @@ -0,0 +1,26 @@ +#include "qhelpcontentwidget.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQHelpContentWidget: public QHelpContentWidget { +public: +void Signal_LinkActivated(const QUrl & link){callbackQHelpContentWidgetLinkActivated(this->objectName().toUtf8().data(), link.toString().toUtf8().data());}; +}; + +QtObjectPtr QHelpContentWidget_IndexOf(QtObjectPtr ptr, char* link){ + return static_cast(ptr)->indexOf(QUrl(QString(link))).internalPointer(); +} + +void QHelpContentWidget_ConnectLinkActivated(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QHelpContentWidget::linkActivated), static_cast(ptr), static_cast(&MyQHelpContentWidget::Signal_LinkActivated));; +} + +void QHelpContentWidget_DisconnectLinkActivated(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QHelpContentWidget::linkActivated), static_cast(ptr), static_cast(&MyQHelpContentWidget::Signal_LinkActivated));; +} + diff --git a/help/qhelpcontentwidget.go b/help/qhelpcontentwidget.go new file mode 100755 index 00000000..9b9c3098 --- /dev/null +++ b/help/qhelpcontentwidget.go @@ -0,0 +1,65 @@ +package help + +//#include "qhelpcontentwidget.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/widgets" + "unsafe" +) + +type QHelpContentWidget struct { + widgets.QTreeView +} + +type QHelpContentWidgetITF interface { + widgets.QTreeViewITF + QHelpContentWidgetPTR() *QHelpContentWidget +} + +func PointerFromQHelpContentWidget(ptr QHelpContentWidgetITF) unsafe.Pointer { + if ptr != nil { + return ptr.QHelpContentWidgetPTR().Pointer() + } + return nil +} + +func QHelpContentWidgetFromPointer(ptr unsafe.Pointer) *QHelpContentWidget { + var n = new(QHelpContentWidget) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QHelpContentWidget_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QHelpContentWidget) QHelpContentWidgetPTR() *QHelpContentWidget { + return ptr +} + +func (ptr *QHelpContentWidget) IndexOf(link string) *core.QModelIndex { + if ptr.Pointer() != nil { + return core.QModelIndexFromPointer(unsafe.Pointer(C.QHelpContentWidget_IndexOf(C.QtObjectPtr(ptr.Pointer()), C.CString(link)))) + } + return nil +} + +func (ptr *QHelpContentWidget) ConnectLinkActivated(f func(link string)) { + if ptr.Pointer() != nil { + C.QHelpContentWidget_ConnectLinkActivated(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "linkActivated", f) + } +} + +func (ptr *QHelpContentWidget) DisconnectLinkActivated() { + if ptr.Pointer() != nil { + C.QHelpContentWidget_DisconnectLinkActivated(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "linkActivated") + } +} + +//export callbackQHelpContentWidgetLinkActivated +func callbackQHelpContentWidgetLinkActivated(ptrName *C.char, link *C.char) { + qt.GetSignal(C.GoString(ptrName), "linkActivated").(func(string))(C.GoString(link)) +} diff --git a/help/qhelpcontentwidget.h b/help/qhelpcontentwidget.h new file mode 100755 index 00000000..20970141 --- /dev/null +++ b/help/qhelpcontentwidget.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QHelpContentWidget_IndexOf(QtObjectPtr ptr, char* link); +void QHelpContentWidget_ConnectLinkActivated(QtObjectPtr ptr); +void QHelpContentWidget_DisconnectLinkActivated(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/help/qhelpengine.cpp b/help/qhelpengine.cpp new file mode 100755 index 00000000..e4e3ad35 --- /dev/null +++ b/help/qhelpengine.cpp @@ -0,0 +1,41 @@ +#include "qhelpengine.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQHelpEngine: public QHelpEngine { +public: +}; + +QtObjectPtr QHelpEngine_NewQHelpEngine(char* collectionFile, QtObjectPtr parent){ + return new QHelpEngine(QString(collectionFile), static_cast(parent)); +} + +QtObjectPtr QHelpEngine_ContentModel(QtObjectPtr ptr){ + return static_cast(ptr)->contentModel(); +} + +QtObjectPtr QHelpEngine_ContentWidget(QtObjectPtr ptr){ + return static_cast(ptr)->contentWidget(); +} + +QtObjectPtr QHelpEngine_IndexModel(QtObjectPtr ptr){ + return static_cast(ptr)->indexModel(); +} + +QtObjectPtr QHelpEngine_IndexWidget(QtObjectPtr ptr){ + return static_cast(ptr)->indexWidget(); +} + +QtObjectPtr QHelpEngine_SearchEngine(QtObjectPtr ptr){ + return static_cast(ptr)->searchEngine(); +} + +void QHelpEngine_DestroyQHelpEngine(QtObjectPtr ptr){ + static_cast(ptr)->~QHelpEngine(); +} + diff --git a/help/qhelpengine.go b/help/qhelpengine.go new file mode 100755 index 00000000..4e952959 --- /dev/null +++ b/help/qhelpengine.go @@ -0,0 +1,84 @@ +package help + +//#include "qhelpengine.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QHelpEngine struct { + QHelpEngineCore +} + +type QHelpEngineITF interface { + QHelpEngineCoreITF + QHelpEnginePTR() *QHelpEngine +} + +func PointerFromQHelpEngine(ptr QHelpEngineITF) unsafe.Pointer { + if ptr != nil { + return ptr.QHelpEnginePTR().Pointer() + } + return nil +} + +func QHelpEngineFromPointer(ptr unsafe.Pointer) *QHelpEngine { + var n = new(QHelpEngine) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QHelpEngine_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QHelpEngine) QHelpEnginePTR() *QHelpEngine { + return ptr +} + +func NewQHelpEngine(collectionFile string, parent core.QObjectITF) *QHelpEngine { + return QHelpEngineFromPointer(unsafe.Pointer(C.QHelpEngine_NewQHelpEngine(C.CString(collectionFile), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QHelpEngine) ContentModel() *QHelpContentModel { + if ptr.Pointer() != nil { + return QHelpContentModelFromPointer(unsafe.Pointer(C.QHelpEngine_ContentModel(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QHelpEngine) ContentWidget() *QHelpContentWidget { + if ptr.Pointer() != nil { + return QHelpContentWidgetFromPointer(unsafe.Pointer(C.QHelpEngine_ContentWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QHelpEngine) IndexModel() *QHelpIndexModel { + if ptr.Pointer() != nil { + return QHelpIndexModelFromPointer(unsafe.Pointer(C.QHelpEngine_IndexModel(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QHelpEngine) IndexWidget() *QHelpIndexWidget { + if ptr.Pointer() != nil { + return QHelpIndexWidgetFromPointer(unsafe.Pointer(C.QHelpEngine_IndexWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QHelpEngine) SearchEngine() *QHelpSearchEngine { + if ptr.Pointer() != nil { + return QHelpSearchEngineFromPointer(unsafe.Pointer(C.QHelpEngine_SearchEngine(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QHelpEngine) DestroyQHelpEngine() { + if ptr.Pointer() != nil { + C.QHelpEngine_DestroyQHelpEngine(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/help/qhelpengine.h b/help/qhelpengine.h new file mode 100755 index 00000000..0a492843 --- /dev/null +++ b/help/qhelpengine.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QHelpEngine_NewQHelpEngine(char* collectionFile, QtObjectPtr parent); +QtObjectPtr QHelpEngine_ContentModel(QtObjectPtr ptr); +QtObjectPtr QHelpEngine_ContentWidget(QtObjectPtr ptr); +QtObjectPtr QHelpEngine_IndexModel(QtObjectPtr ptr); +QtObjectPtr QHelpEngine_IndexWidget(QtObjectPtr ptr); +QtObjectPtr QHelpEngine_SearchEngine(QtObjectPtr ptr); +void QHelpEngine_DestroyQHelpEngine(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/help/qhelpenginecore.cpp b/help/qhelpenginecore.cpp new file mode 100755 index 00000000..a18e8ecc --- /dev/null +++ b/help/qhelpenginecore.cpp @@ -0,0 +1,163 @@ +#include "qhelpenginecore.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQHelpEngineCore: public QHelpEngineCore { +public: +void Signal_CurrentFilterChanged(const QString & newFilter){callbackQHelpEngineCoreCurrentFilterChanged(this->objectName().toUtf8().data(), newFilter.toUtf8().data());}; +void Signal_ReadersAboutToBeInvalidated(){callbackQHelpEngineCoreReadersAboutToBeInvalidated(this->objectName().toUtf8().data());}; +void Signal_SetupFinished(){callbackQHelpEngineCoreSetupFinished(this->objectName().toUtf8().data());}; +void Signal_SetupStarted(){callbackQHelpEngineCoreSetupStarted(this->objectName().toUtf8().data());}; +void Signal_Warning(const QString & msg){callbackQHelpEngineCoreWarning(this->objectName().toUtf8().data(), msg.toUtf8().data());}; +}; + +int QHelpEngineCore_AutoSaveFilter(QtObjectPtr ptr){ + return static_cast(ptr)->autoSaveFilter(); +} + +char* QHelpEngineCore_CollectionFile(QtObjectPtr ptr){ + return static_cast(ptr)->collectionFile().toUtf8().data(); +} + +char* QHelpEngineCore_CurrentFilter(QtObjectPtr ptr){ + return static_cast(ptr)->currentFilter().toUtf8().data(); +} + +void QHelpEngineCore_SetAutoSaveFilter(QtObjectPtr ptr, int save){ + static_cast(ptr)->setAutoSaveFilter(save != 0); +} + +void QHelpEngineCore_SetCollectionFile(QtObjectPtr ptr, char* fileName){ + static_cast(ptr)->setCollectionFile(QString(fileName)); +} + +void QHelpEngineCore_SetCurrentFilter(QtObjectPtr ptr, char* filterName){ + static_cast(ptr)->setCurrentFilter(QString(filterName)); +} + +QtObjectPtr QHelpEngineCore_NewQHelpEngineCore(char* collectionFile, QtObjectPtr parent){ + return new QHelpEngineCore(QString(collectionFile), static_cast(parent)); +} + +int QHelpEngineCore_AddCustomFilter(QtObjectPtr ptr, char* filterName, char* attributes){ + return static_cast(ptr)->addCustomFilter(QString(filterName), QString(attributes).split("|", QString::SkipEmptyParts)); +} + +int QHelpEngineCore_CopyCollectionFile(QtObjectPtr ptr, char* fileName){ + return static_cast(ptr)->copyCollectionFile(QString(fileName)); +} + +void QHelpEngineCore_ConnectCurrentFilterChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QHelpEngineCore::currentFilterChanged), static_cast(ptr), static_cast(&MyQHelpEngineCore::Signal_CurrentFilterChanged));; +} + +void QHelpEngineCore_DisconnectCurrentFilterChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QHelpEngineCore::currentFilterChanged), static_cast(ptr), static_cast(&MyQHelpEngineCore::Signal_CurrentFilterChanged));; +} + +char* QHelpEngineCore_CustomFilters(QtObjectPtr ptr){ + return static_cast(ptr)->customFilters().join("|").toUtf8().data(); +} + +char* QHelpEngineCore_CustomValue(QtObjectPtr ptr, char* key, char* defaultValue){ + return static_cast(ptr)->customValue(QString(key), QVariant(defaultValue)).toString().toUtf8().data(); +} + +char* QHelpEngineCore_DocumentationFileName(QtObjectPtr ptr, char* namespaceName){ + return static_cast(ptr)->documentationFileName(QString(namespaceName)).toUtf8().data(); +} + +char* QHelpEngineCore_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error().toUtf8().data(); +} + +char* QHelpEngineCore_FilterAttributes(QtObjectPtr ptr){ + return static_cast(ptr)->filterAttributes().join("|").toUtf8().data(); +} + +char* QHelpEngineCore_FilterAttributes2(QtObjectPtr ptr, char* filterName){ + return static_cast(ptr)->filterAttributes(QString(filterName)).join("|").toUtf8().data(); +} + +char* QHelpEngineCore_FindFile(QtObjectPtr ptr, char* url){ + return static_cast(ptr)->findFile(QUrl(QString(url))).toString().toUtf8().data(); +} + +char* QHelpEngineCore_QHelpEngineCore_MetaData(char* documentationFileName, char* name){ + return QHelpEngineCore::metaData(QString(documentationFileName), QString(name)).toString().toUtf8().data(); +} + +char* QHelpEngineCore_QHelpEngineCore_NamespaceName(char* documentationFileName){ + return QHelpEngineCore::namespaceName(QString(documentationFileName)).toUtf8().data(); +} + +void QHelpEngineCore_ConnectReadersAboutToBeInvalidated(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QHelpEngineCore::readersAboutToBeInvalidated), static_cast(ptr), static_cast(&MyQHelpEngineCore::Signal_ReadersAboutToBeInvalidated));; +} + +void QHelpEngineCore_DisconnectReadersAboutToBeInvalidated(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QHelpEngineCore::readersAboutToBeInvalidated), static_cast(ptr), static_cast(&MyQHelpEngineCore::Signal_ReadersAboutToBeInvalidated));; +} + +int QHelpEngineCore_RegisterDocumentation(QtObjectPtr ptr, char* documentationFileName){ + return static_cast(ptr)->registerDocumentation(QString(documentationFileName)); +} + +char* QHelpEngineCore_RegisteredDocumentations(QtObjectPtr ptr){ + return static_cast(ptr)->registeredDocumentations().join("|").toUtf8().data(); +} + +int QHelpEngineCore_RemoveCustomFilter(QtObjectPtr ptr, char* filterName){ + return static_cast(ptr)->removeCustomFilter(QString(filterName)); +} + +int QHelpEngineCore_RemoveCustomValue(QtObjectPtr ptr, char* key){ + return static_cast(ptr)->removeCustomValue(QString(key)); +} + +int QHelpEngineCore_SetCustomValue(QtObjectPtr ptr, char* key, char* value){ + return static_cast(ptr)->setCustomValue(QString(key), QVariant(value)); +} + +int QHelpEngineCore_SetupData(QtObjectPtr ptr){ + return static_cast(ptr)->setupData(); +} + +void QHelpEngineCore_ConnectSetupFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QHelpEngineCore::setupFinished), static_cast(ptr), static_cast(&MyQHelpEngineCore::Signal_SetupFinished));; +} + +void QHelpEngineCore_DisconnectSetupFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QHelpEngineCore::setupFinished), static_cast(ptr), static_cast(&MyQHelpEngineCore::Signal_SetupFinished));; +} + +void QHelpEngineCore_ConnectSetupStarted(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QHelpEngineCore::setupStarted), static_cast(ptr), static_cast(&MyQHelpEngineCore::Signal_SetupStarted));; +} + +void QHelpEngineCore_DisconnectSetupStarted(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QHelpEngineCore::setupStarted), static_cast(ptr), static_cast(&MyQHelpEngineCore::Signal_SetupStarted));; +} + +int QHelpEngineCore_UnregisterDocumentation(QtObjectPtr ptr, char* namespaceName){ + return static_cast(ptr)->unregisterDocumentation(QString(namespaceName)); +} + +void QHelpEngineCore_ConnectWarning(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QHelpEngineCore::warning), static_cast(ptr), static_cast(&MyQHelpEngineCore::Signal_Warning));; +} + +void QHelpEngineCore_DisconnectWarning(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QHelpEngineCore::warning), static_cast(ptr), static_cast(&MyQHelpEngineCore::Signal_Warning));; +} + +void QHelpEngineCore_DestroyQHelpEngineCore(QtObjectPtr ptr){ + static_cast(ptr)->~QHelpEngineCore(); +} + diff --git a/help/qhelpenginecore.go b/help/qhelpenginecore.go new file mode 100755 index 00000000..3eba0f29 --- /dev/null +++ b/help/qhelpenginecore.go @@ -0,0 +1,304 @@ +package help + +//#include "qhelpenginecore.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QHelpEngineCore struct { + core.QObject +} + +type QHelpEngineCoreITF interface { + core.QObjectITF + QHelpEngineCorePTR() *QHelpEngineCore +} + +func PointerFromQHelpEngineCore(ptr QHelpEngineCoreITF) unsafe.Pointer { + if ptr != nil { + return ptr.QHelpEngineCorePTR().Pointer() + } + return nil +} + +func QHelpEngineCoreFromPointer(ptr unsafe.Pointer) *QHelpEngineCore { + var n = new(QHelpEngineCore) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QHelpEngineCore_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QHelpEngineCore) QHelpEngineCorePTR() *QHelpEngineCore { + return ptr +} + +func (ptr *QHelpEngineCore) AutoSaveFilter() bool { + if ptr.Pointer() != nil { + return C.QHelpEngineCore_AutoSaveFilter(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QHelpEngineCore) CollectionFile() string { + if ptr.Pointer() != nil { + return C.GoString(C.QHelpEngineCore_CollectionFile(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QHelpEngineCore) CurrentFilter() string { + if ptr.Pointer() != nil { + return C.GoString(C.QHelpEngineCore_CurrentFilter(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QHelpEngineCore) SetAutoSaveFilter(save bool) { + if ptr.Pointer() != nil { + C.QHelpEngineCore_SetAutoSaveFilter(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(save))) + } +} + +func (ptr *QHelpEngineCore) SetCollectionFile(fileName string) { + if ptr.Pointer() != nil { + C.QHelpEngineCore_SetCollectionFile(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName)) + } +} + +func (ptr *QHelpEngineCore) SetCurrentFilter(filterName string) { + if ptr.Pointer() != nil { + C.QHelpEngineCore_SetCurrentFilter(C.QtObjectPtr(ptr.Pointer()), C.CString(filterName)) + } +} + +func NewQHelpEngineCore(collectionFile string, parent core.QObjectITF) *QHelpEngineCore { + return QHelpEngineCoreFromPointer(unsafe.Pointer(C.QHelpEngineCore_NewQHelpEngineCore(C.CString(collectionFile), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QHelpEngineCore) AddCustomFilter(filterName string, attributes []string) bool { + if ptr.Pointer() != nil { + return C.QHelpEngineCore_AddCustomFilter(C.QtObjectPtr(ptr.Pointer()), C.CString(filterName), C.CString(strings.Join(attributes, "|"))) != 0 + } + return false +} + +func (ptr *QHelpEngineCore) CopyCollectionFile(fileName string) bool { + if ptr.Pointer() != nil { + return C.QHelpEngineCore_CopyCollectionFile(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName)) != 0 + } + return false +} + +func (ptr *QHelpEngineCore) ConnectCurrentFilterChanged(f func(newFilter string)) { + if ptr.Pointer() != nil { + C.QHelpEngineCore_ConnectCurrentFilterChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "currentFilterChanged", f) + } +} + +func (ptr *QHelpEngineCore) DisconnectCurrentFilterChanged() { + if ptr.Pointer() != nil { + C.QHelpEngineCore_DisconnectCurrentFilterChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "currentFilterChanged") + } +} + +//export callbackQHelpEngineCoreCurrentFilterChanged +func callbackQHelpEngineCoreCurrentFilterChanged(ptrName *C.char, newFilter *C.char) { + qt.GetSignal(C.GoString(ptrName), "currentFilterChanged").(func(string))(C.GoString(newFilter)) +} + +func (ptr *QHelpEngineCore) CustomFilters() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QHelpEngineCore_CustomFilters(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QHelpEngineCore) CustomValue(key string, defaultValue string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QHelpEngineCore_CustomValue(C.QtObjectPtr(ptr.Pointer()), C.CString(key), C.CString(defaultValue))) + } + return "" +} + +func (ptr *QHelpEngineCore) DocumentationFileName(namespaceName string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QHelpEngineCore_DocumentationFileName(C.QtObjectPtr(ptr.Pointer()), C.CString(namespaceName))) + } + return "" +} + +func (ptr *QHelpEngineCore) Error() string { + if ptr.Pointer() != nil { + return C.GoString(C.QHelpEngineCore_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QHelpEngineCore) FilterAttributes() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QHelpEngineCore_FilterAttributes(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QHelpEngineCore) FilterAttributes2(filterName string) []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QHelpEngineCore_FilterAttributes2(C.QtObjectPtr(ptr.Pointer()), C.CString(filterName))), "|") + } + return make([]string, 0) +} + +func (ptr *QHelpEngineCore) FindFile(url string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QHelpEngineCore_FindFile(C.QtObjectPtr(ptr.Pointer()), C.CString(url))) + } + return "" +} + +func QHelpEngineCore_MetaData(documentationFileName string, name string) string { + return C.GoString(C.QHelpEngineCore_QHelpEngineCore_MetaData(C.CString(documentationFileName), C.CString(name))) +} + +func QHelpEngineCore_NamespaceName(documentationFileName string) string { + return C.GoString(C.QHelpEngineCore_QHelpEngineCore_NamespaceName(C.CString(documentationFileName))) +} + +func (ptr *QHelpEngineCore) ConnectReadersAboutToBeInvalidated(f func()) { + if ptr.Pointer() != nil { + C.QHelpEngineCore_ConnectReadersAboutToBeInvalidated(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "readersAboutToBeInvalidated", f) + } +} + +func (ptr *QHelpEngineCore) DisconnectReadersAboutToBeInvalidated() { + if ptr.Pointer() != nil { + C.QHelpEngineCore_DisconnectReadersAboutToBeInvalidated(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "readersAboutToBeInvalidated") + } +} + +//export callbackQHelpEngineCoreReadersAboutToBeInvalidated +func callbackQHelpEngineCoreReadersAboutToBeInvalidated(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "readersAboutToBeInvalidated").(func())() +} + +func (ptr *QHelpEngineCore) RegisterDocumentation(documentationFileName string) bool { + if ptr.Pointer() != nil { + return C.QHelpEngineCore_RegisterDocumentation(C.QtObjectPtr(ptr.Pointer()), C.CString(documentationFileName)) != 0 + } + return false +} + +func (ptr *QHelpEngineCore) RegisteredDocumentations() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QHelpEngineCore_RegisteredDocumentations(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QHelpEngineCore) RemoveCustomFilter(filterName string) bool { + if ptr.Pointer() != nil { + return C.QHelpEngineCore_RemoveCustomFilter(C.QtObjectPtr(ptr.Pointer()), C.CString(filterName)) != 0 + } + return false +} + +func (ptr *QHelpEngineCore) RemoveCustomValue(key string) bool { + if ptr.Pointer() != nil { + return C.QHelpEngineCore_RemoveCustomValue(C.QtObjectPtr(ptr.Pointer()), C.CString(key)) != 0 + } + return false +} + +func (ptr *QHelpEngineCore) SetCustomValue(key string, value string) bool { + if ptr.Pointer() != nil { + return C.QHelpEngineCore_SetCustomValue(C.QtObjectPtr(ptr.Pointer()), C.CString(key), C.CString(value)) != 0 + } + return false +} + +func (ptr *QHelpEngineCore) SetupData() bool { + if ptr.Pointer() != nil { + return C.QHelpEngineCore_SetupData(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QHelpEngineCore) ConnectSetupFinished(f func()) { + if ptr.Pointer() != nil { + C.QHelpEngineCore_ConnectSetupFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "setupFinished", f) + } +} + +func (ptr *QHelpEngineCore) DisconnectSetupFinished() { + if ptr.Pointer() != nil { + C.QHelpEngineCore_DisconnectSetupFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "setupFinished") + } +} + +//export callbackQHelpEngineCoreSetupFinished +func callbackQHelpEngineCoreSetupFinished(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "setupFinished").(func())() +} + +func (ptr *QHelpEngineCore) ConnectSetupStarted(f func()) { + if ptr.Pointer() != nil { + C.QHelpEngineCore_ConnectSetupStarted(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "setupStarted", f) + } +} + +func (ptr *QHelpEngineCore) DisconnectSetupStarted() { + if ptr.Pointer() != nil { + C.QHelpEngineCore_DisconnectSetupStarted(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "setupStarted") + } +} + +//export callbackQHelpEngineCoreSetupStarted +func callbackQHelpEngineCoreSetupStarted(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "setupStarted").(func())() +} + +func (ptr *QHelpEngineCore) UnregisterDocumentation(namespaceName string) bool { + if ptr.Pointer() != nil { + return C.QHelpEngineCore_UnregisterDocumentation(C.QtObjectPtr(ptr.Pointer()), C.CString(namespaceName)) != 0 + } + return false +} + +func (ptr *QHelpEngineCore) ConnectWarning(f func(msg string)) { + if ptr.Pointer() != nil { + C.QHelpEngineCore_ConnectWarning(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "warning", f) + } +} + +func (ptr *QHelpEngineCore) DisconnectWarning() { + if ptr.Pointer() != nil { + C.QHelpEngineCore_DisconnectWarning(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "warning") + } +} + +//export callbackQHelpEngineCoreWarning +func callbackQHelpEngineCoreWarning(ptrName *C.char, msg *C.char) { + qt.GetSignal(C.GoString(ptrName), "warning").(func(string))(C.GoString(msg)) +} + +func (ptr *QHelpEngineCore) DestroyQHelpEngineCore() { + if ptr.Pointer() != nil { + C.QHelpEngineCore_DestroyQHelpEngineCore(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/help/qhelpenginecore.h b/help/qhelpenginecore.h new file mode 100755 index 00000000..38a17e37 --- /dev/null +++ b/help/qhelpenginecore.h @@ -0,0 +1,45 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QHelpEngineCore_AutoSaveFilter(QtObjectPtr ptr); +char* QHelpEngineCore_CollectionFile(QtObjectPtr ptr); +char* QHelpEngineCore_CurrentFilter(QtObjectPtr ptr); +void QHelpEngineCore_SetAutoSaveFilter(QtObjectPtr ptr, int save); +void QHelpEngineCore_SetCollectionFile(QtObjectPtr ptr, char* fileName); +void QHelpEngineCore_SetCurrentFilter(QtObjectPtr ptr, char* filterName); +QtObjectPtr QHelpEngineCore_NewQHelpEngineCore(char* collectionFile, QtObjectPtr parent); +int QHelpEngineCore_AddCustomFilter(QtObjectPtr ptr, char* filterName, char* attributes); +int QHelpEngineCore_CopyCollectionFile(QtObjectPtr ptr, char* fileName); +void QHelpEngineCore_ConnectCurrentFilterChanged(QtObjectPtr ptr); +void QHelpEngineCore_DisconnectCurrentFilterChanged(QtObjectPtr ptr); +char* QHelpEngineCore_CustomFilters(QtObjectPtr ptr); +char* QHelpEngineCore_CustomValue(QtObjectPtr ptr, char* key, char* defaultValue); +char* QHelpEngineCore_DocumentationFileName(QtObjectPtr ptr, char* namespaceName); +char* QHelpEngineCore_Error(QtObjectPtr ptr); +char* QHelpEngineCore_FilterAttributes(QtObjectPtr ptr); +char* QHelpEngineCore_FilterAttributes2(QtObjectPtr ptr, char* filterName); +char* QHelpEngineCore_FindFile(QtObjectPtr ptr, char* url); +char* QHelpEngineCore_QHelpEngineCore_MetaData(char* documentationFileName, char* name); +char* QHelpEngineCore_QHelpEngineCore_NamespaceName(char* documentationFileName); +void QHelpEngineCore_ConnectReadersAboutToBeInvalidated(QtObjectPtr ptr); +void QHelpEngineCore_DisconnectReadersAboutToBeInvalidated(QtObjectPtr ptr); +int QHelpEngineCore_RegisterDocumentation(QtObjectPtr ptr, char* documentationFileName); +char* QHelpEngineCore_RegisteredDocumentations(QtObjectPtr ptr); +int QHelpEngineCore_RemoveCustomFilter(QtObjectPtr ptr, char* filterName); +int QHelpEngineCore_RemoveCustomValue(QtObjectPtr ptr, char* key); +int QHelpEngineCore_SetCustomValue(QtObjectPtr ptr, char* key, char* value); +int QHelpEngineCore_SetupData(QtObjectPtr ptr); +void QHelpEngineCore_ConnectSetupFinished(QtObjectPtr ptr); +void QHelpEngineCore_DisconnectSetupFinished(QtObjectPtr ptr); +void QHelpEngineCore_ConnectSetupStarted(QtObjectPtr ptr); +void QHelpEngineCore_DisconnectSetupStarted(QtObjectPtr ptr); +int QHelpEngineCore_UnregisterDocumentation(QtObjectPtr ptr, char* namespaceName); +void QHelpEngineCore_ConnectWarning(QtObjectPtr ptr); +void QHelpEngineCore_DisconnectWarning(QtObjectPtr ptr); +void QHelpEngineCore_DestroyQHelpEngineCore(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/help/qhelpindexmodel.cpp b/help/qhelpindexmodel.cpp new file mode 100755 index 00000000..b467d208 --- /dev/null +++ b/help/qhelpindexmodel.cpp @@ -0,0 +1,43 @@ +#include "qhelpindexmodel.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQHelpIndexModel: public QHelpIndexModel { +public: +void Signal_IndexCreated(){callbackQHelpIndexModelIndexCreated(this->objectName().toUtf8().data());}; +void Signal_IndexCreationStarted(){callbackQHelpIndexModelIndexCreationStarted(this->objectName().toUtf8().data());}; +}; + +void QHelpIndexModel_CreateIndex(QtObjectPtr ptr, char* customFilterName){ + static_cast(ptr)->createIndex(QString(customFilterName)); +} + +QtObjectPtr QHelpIndexModel_Filter(QtObjectPtr ptr, char* filter, char* wildcard){ + return static_cast(ptr)->filter(QString(filter), QString(wildcard)).internalPointer(); +} + +void QHelpIndexModel_ConnectIndexCreated(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QHelpIndexModel::indexCreated), static_cast(ptr), static_cast(&MyQHelpIndexModel::Signal_IndexCreated));; +} + +void QHelpIndexModel_DisconnectIndexCreated(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QHelpIndexModel::indexCreated), static_cast(ptr), static_cast(&MyQHelpIndexModel::Signal_IndexCreated));; +} + +void QHelpIndexModel_ConnectIndexCreationStarted(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QHelpIndexModel::indexCreationStarted), static_cast(ptr), static_cast(&MyQHelpIndexModel::Signal_IndexCreationStarted));; +} + +void QHelpIndexModel_DisconnectIndexCreationStarted(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QHelpIndexModel::indexCreationStarted), static_cast(ptr), static_cast(&MyQHelpIndexModel::Signal_IndexCreationStarted));; +} + +int QHelpIndexModel_IsCreatingIndex(QtObjectPtr ptr){ + return static_cast(ptr)->isCreatingIndex(); +} + diff --git a/help/qhelpindexmodel.go b/help/qhelpindexmodel.go new file mode 100755 index 00000000..051b417e --- /dev/null +++ b/help/qhelpindexmodel.go @@ -0,0 +1,96 @@ +package help + +//#include "qhelpindexmodel.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QHelpIndexModel struct { + core.QStringListModel +} + +type QHelpIndexModelITF interface { + core.QStringListModelITF + QHelpIndexModelPTR() *QHelpIndexModel +} + +func PointerFromQHelpIndexModel(ptr QHelpIndexModelITF) unsafe.Pointer { + if ptr != nil { + return ptr.QHelpIndexModelPTR().Pointer() + } + return nil +} + +func QHelpIndexModelFromPointer(ptr unsafe.Pointer) *QHelpIndexModel { + var n = new(QHelpIndexModel) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QHelpIndexModel_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QHelpIndexModel) QHelpIndexModelPTR() *QHelpIndexModel { + return ptr +} + +func (ptr *QHelpIndexModel) CreateIndex(customFilterName string) { + if ptr.Pointer() != nil { + C.QHelpIndexModel_CreateIndex(C.QtObjectPtr(ptr.Pointer()), C.CString(customFilterName)) + } +} + +func (ptr *QHelpIndexModel) Filter(filter string, wildcard string) *core.QModelIndex { + if ptr.Pointer() != nil { + return core.QModelIndexFromPointer(unsafe.Pointer(C.QHelpIndexModel_Filter(C.QtObjectPtr(ptr.Pointer()), C.CString(filter), C.CString(wildcard)))) + } + return nil +} + +func (ptr *QHelpIndexModel) ConnectIndexCreated(f func()) { + if ptr.Pointer() != nil { + C.QHelpIndexModel_ConnectIndexCreated(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "indexCreated", f) + } +} + +func (ptr *QHelpIndexModel) DisconnectIndexCreated() { + if ptr.Pointer() != nil { + C.QHelpIndexModel_DisconnectIndexCreated(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "indexCreated") + } +} + +//export callbackQHelpIndexModelIndexCreated +func callbackQHelpIndexModelIndexCreated(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "indexCreated").(func())() +} + +func (ptr *QHelpIndexModel) ConnectIndexCreationStarted(f func()) { + if ptr.Pointer() != nil { + C.QHelpIndexModel_ConnectIndexCreationStarted(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "indexCreationStarted", f) + } +} + +func (ptr *QHelpIndexModel) DisconnectIndexCreationStarted() { + if ptr.Pointer() != nil { + C.QHelpIndexModel_DisconnectIndexCreationStarted(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "indexCreationStarted") + } +} + +//export callbackQHelpIndexModelIndexCreationStarted +func callbackQHelpIndexModelIndexCreationStarted(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "indexCreationStarted").(func())() +} + +func (ptr *QHelpIndexModel) IsCreatingIndex() bool { + if ptr.Pointer() != nil { + return C.QHelpIndexModel_IsCreatingIndex(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} diff --git a/help/qhelpindexmodel.h b/help/qhelpindexmodel.h new file mode 100755 index 00000000..476830ab --- /dev/null +++ b/help/qhelpindexmodel.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QHelpIndexModel_CreateIndex(QtObjectPtr ptr, char* customFilterName); +QtObjectPtr QHelpIndexModel_Filter(QtObjectPtr ptr, char* filter, char* wildcard); +void QHelpIndexModel_ConnectIndexCreated(QtObjectPtr ptr); +void QHelpIndexModel_DisconnectIndexCreated(QtObjectPtr ptr); +void QHelpIndexModel_ConnectIndexCreationStarted(QtObjectPtr ptr); +void QHelpIndexModel_DisconnectIndexCreationStarted(QtObjectPtr ptr); +int QHelpIndexModel_IsCreatingIndex(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/help/qhelpindexwidget.cpp b/help/qhelpindexwidget.cpp new file mode 100755 index 00000000..46d6475d --- /dev/null +++ b/help/qhelpindexwidget.cpp @@ -0,0 +1,31 @@ +#include "qhelpindexwidget.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQHelpIndexWidget: public QHelpIndexWidget { +public: +void Signal_LinkActivated(const QUrl & link, const QString & keyword){callbackQHelpIndexWidgetLinkActivated(this->objectName().toUtf8().data(), link.toString().toUtf8().data(), keyword.toUtf8().data());}; +}; + +void QHelpIndexWidget_ActivateCurrentItem(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "activateCurrentItem"); +} + +void QHelpIndexWidget_FilterIndices(QtObjectPtr ptr, char* filter, char* wildcard){ + QMetaObject::invokeMethod(static_cast(ptr), "filterIndices", Q_ARG(QString, QString(filter)), Q_ARG(QString, QString(wildcard))); +} + +void QHelpIndexWidget_ConnectLinkActivated(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QHelpIndexWidget::linkActivated), static_cast(ptr), static_cast(&MyQHelpIndexWidget::Signal_LinkActivated));; +} + +void QHelpIndexWidget_DisconnectLinkActivated(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QHelpIndexWidget::linkActivated), static_cast(ptr), static_cast(&MyQHelpIndexWidget::Signal_LinkActivated));; +} + diff --git a/help/qhelpindexwidget.go b/help/qhelpindexwidget.go new file mode 100755 index 00000000..de34a70c --- /dev/null +++ b/help/qhelpindexwidget.go @@ -0,0 +1,69 @@ +package help + +//#include "qhelpindexwidget.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/widgets" + "unsafe" +) + +type QHelpIndexWidget struct { + widgets.QListView +} + +type QHelpIndexWidgetITF interface { + widgets.QListViewITF + QHelpIndexWidgetPTR() *QHelpIndexWidget +} + +func PointerFromQHelpIndexWidget(ptr QHelpIndexWidgetITF) unsafe.Pointer { + if ptr != nil { + return ptr.QHelpIndexWidgetPTR().Pointer() + } + return nil +} + +func QHelpIndexWidgetFromPointer(ptr unsafe.Pointer) *QHelpIndexWidget { + var n = new(QHelpIndexWidget) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QHelpIndexWidget_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QHelpIndexWidget) QHelpIndexWidgetPTR() *QHelpIndexWidget { + return ptr +} + +func (ptr *QHelpIndexWidget) ActivateCurrentItem() { + if ptr.Pointer() != nil { + C.QHelpIndexWidget_ActivateCurrentItem(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QHelpIndexWidget) FilterIndices(filter string, wildcard string) { + if ptr.Pointer() != nil { + C.QHelpIndexWidget_FilterIndices(C.QtObjectPtr(ptr.Pointer()), C.CString(filter), C.CString(wildcard)) + } +} + +func (ptr *QHelpIndexWidget) ConnectLinkActivated(f func(link string, keyword string)) { + if ptr.Pointer() != nil { + C.QHelpIndexWidget_ConnectLinkActivated(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "linkActivated", f) + } +} + +func (ptr *QHelpIndexWidget) DisconnectLinkActivated() { + if ptr.Pointer() != nil { + C.QHelpIndexWidget_DisconnectLinkActivated(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "linkActivated") + } +} + +//export callbackQHelpIndexWidgetLinkActivated +func callbackQHelpIndexWidgetLinkActivated(ptrName *C.char, link *C.char, keyword *C.char) { + qt.GetSignal(C.GoString(ptrName), "linkActivated").(func(string, string))(C.GoString(link), C.GoString(keyword)) +} diff --git a/help/qhelpindexwidget.h b/help/qhelpindexwidget.h new file mode 100755 index 00000000..727f9428 --- /dev/null +++ b/help/qhelpindexwidget.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QHelpIndexWidget_ActivateCurrentItem(QtObjectPtr ptr); +void QHelpIndexWidget_FilterIndices(QtObjectPtr ptr, char* filter, char* wildcard); +void QHelpIndexWidget_ConnectLinkActivated(QtObjectPtr ptr); +void QHelpIndexWidget_DisconnectLinkActivated(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/help/qhelpsearchengine.cpp b/help/qhelpsearchengine.cpp new file mode 100755 index 00000000..a04c46a1 --- /dev/null +++ b/help/qhelpsearchengine.cpp @@ -0,0 +1,84 @@ +#include "qhelpsearchengine.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQHelpSearchEngine: public QHelpSearchEngine { +public: +void Signal_IndexingFinished(){callbackQHelpSearchEngineIndexingFinished(this->objectName().toUtf8().data());}; +void Signal_IndexingStarted(){callbackQHelpSearchEngineIndexingStarted(this->objectName().toUtf8().data());}; +void Signal_SearchingFinished(int hits){callbackQHelpSearchEngineSearchingFinished(this->objectName().toUtf8().data(), hits);}; +void Signal_SearchingStarted(){callbackQHelpSearchEngineSearchingStarted(this->objectName().toUtf8().data());}; +}; + +QtObjectPtr QHelpSearchEngine_NewQHelpSearchEngine(QtObjectPtr helpEngine, QtObjectPtr parent){ + return new QHelpSearchEngine(static_cast(helpEngine), static_cast(parent)); +} + +void QHelpSearchEngine_CancelIndexing(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "cancelIndexing"); +} + +void QHelpSearchEngine_CancelSearching(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "cancelSearching"); +} + +int QHelpSearchEngine_HitCount(QtObjectPtr ptr){ + return static_cast(ptr)->hitCount(); +} + +void QHelpSearchEngine_ConnectIndexingFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QHelpSearchEngine::indexingFinished), static_cast(ptr), static_cast(&MyQHelpSearchEngine::Signal_IndexingFinished));; +} + +void QHelpSearchEngine_DisconnectIndexingFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QHelpSearchEngine::indexingFinished), static_cast(ptr), static_cast(&MyQHelpSearchEngine::Signal_IndexingFinished));; +} + +void QHelpSearchEngine_ConnectIndexingStarted(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QHelpSearchEngine::indexingStarted), static_cast(ptr), static_cast(&MyQHelpSearchEngine::Signal_IndexingStarted));; +} + +void QHelpSearchEngine_DisconnectIndexingStarted(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QHelpSearchEngine::indexingStarted), static_cast(ptr), static_cast(&MyQHelpSearchEngine::Signal_IndexingStarted));; +} + +QtObjectPtr QHelpSearchEngine_QueryWidget(QtObjectPtr ptr){ + return static_cast(ptr)->queryWidget(); +} + +void QHelpSearchEngine_ReindexDocumentation(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "reindexDocumentation"); +} + +QtObjectPtr QHelpSearchEngine_ResultWidget(QtObjectPtr ptr){ + return static_cast(ptr)->resultWidget(); +} + +void QHelpSearchEngine_ConnectSearchingFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QHelpSearchEngine::searchingFinished), static_cast(ptr), static_cast(&MyQHelpSearchEngine::Signal_SearchingFinished));; +} + +void QHelpSearchEngine_DisconnectSearchingFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QHelpSearchEngine::searchingFinished), static_cast(ptr), static_cast(&MyQHelpSearchEngine::Signal_SearchingFinished));; +} + +void QHelpSearchEngine_ConnectSearchingStarted(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QHelpSearchEngine::searchingStarted), static_cast(ptr), static_cast(&MyQHelpSearchEngine::Signal_SearchingStarted));; +} + +void QHelpSearchEngine_DisconnectSearchingStarted(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QHelpSearchEngine::searchingStarted), static_cast(ptr), static_cast(&MyQHelpSearchEngine::Signal_SearchingStarted));; +} + +void QHelpSearchEngine_DestroyQHelpSearchEngine(QtObjectPtr ptr){ + static_cast(ptr)->~QHelpSearchEngine(); +} + diff --git a/help/qhelpsearchengine.go b/help/qhelpsearchengine.go new file mode 100755 index 00000000..6c2981fc --- /dev/null +++ b/help/qhelpsearchengine.go @@ -0,0 +1,164 @@ +package help + +//#include "qhelpsearchengine.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QHelpSearchEngine struct { + core.QObject +} + +type QHelpSearchEngineITF interface { + core.QObjectITF + QHelpSearchEnginePTR() *QHelpSearchEngine +} + +func PointerFromQHelpSearchEngine(ptr QHelpSearchEngineITF) unsafe.Pointer { + if ptr != nil { + return ptr.QHelpSearchEnginePTR().Pointer() + } + return nil +} + +func QHelpSearchEngineFromPointer(ptr unsafe.Pointer) *QHelpSearchEngine { + var n = new(QHelpSearchEngine) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QHelpSearchEngine_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QHelpSearchEngine) QHelpSearchEnginePTR() *QHelpSearchEngine { + return ptr +} + +func NewQHelpSearchEngine(helpEngine QHelpEngineCoreITF, parent core.QObjectITF) *QHelpSearchEngine { + return QHelpSearchEngineFromPointer(unsafe.Pointer(C.QHelpSearchEngine_NewQHelpSearchEngine(C.QtObjectPtr(PointerFromQHelpEngineCore(helpEngine)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QHelpSearchEngine) CancelIndexing() { + if ptr.Pointer() != nil { + C.QHelpSearchEngine_CancelIndexing(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QHelpSearchEngine) CancelSearching() { + if ptr.Pointer() != nil { + C.QHelpSearchEngine_CancelSearching(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QHelpSearchEngine) HitCount() int { + if ptr.Pointer() != nil { + return int(C.QHelpSearchEngine_HitCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QHelpSearchEngine) ConnectIndexingFinished(f func()) { + if ptr.Pointer() != nil { + C.QHelpSearchEngine_ConnectIndexingFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "indexingFinished", f) + } +} + +func (ptr *QHelpSearchEngine) DisconnectIndexingFinished() { + if ptr.Pointer() != nil { + C.QHelpSearchEngine_DisconnectIndexingFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "indexingFinished") + } +} + +//export callbackQHelpSearchEngineIndexingFinished +func callbackQHelpSearchEngineIndexingFinished(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "indexingFinished").(func())() +} + +func (ptr *QHelpSearchEngine) ConnectIndexingStarted(f func()) { + if ptr.Pointer() != nil { + C.QHelpSearchEngine_ConnectIndexingStarted(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "indexingStarted", f) + } +} + +func (ptr *QHelpSearchEngine) DisconnectIndexingStarted() { + if ptr.Pointer() != nil { + C.QHelpSearchEngine_DisconnectIndexingStarted(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "indexingStarted") + } +} + +//export callbackQHelpSearchEngineIndexingStarted +func callbackQHelpSearchEngineIndexingStarted(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "indexingStarted").(func())() +} + +func (ptr *QHelpSearchEngine) QueryWidget() *QHelpSearchQueryWidget { + if ptr.Pointer() != nil { + return QHelpSearchQueryWidgetFromPointer(unsafe.Pointer(C.QHelpSearchEngine_QueryWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QHelpSearchEngine) ReindexDocumentation() { + if ptr.Pointer() != nil { + C.QHelpSearchEngine_ReindexDocumentation(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QHelpSearchEngine) ResultWidget() *QHelpSearchResultWidget { + if ptr.Pointer() != nil { + return QHelpSearchResultWidgetFromPointer(unsafe.Pointer(C.QHelpSearchEngine_ResultWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QHelpSearchEngine) ConnectSearchingFinished(f func(hits int)) { + if ptr.Pointer() != nil { + C.QHelpSearchEngine_ConnectSearchingFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "searchingFinished", f) + } +} + +func (ptr *QHelpSearchEngine) DisconnectSearchingFinished() { + if ptr.Pointer() != nil { + C.QHelpSearchEngine_DisconnectSearchingFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "searchingFinished") + } +} + +//export callbackQHelpSearchEngineSearchingFinished +func callbackQHelpSearchEngineSearchingFinished(ptrName *C.char, hits C.int) { + qt.GetSignal(C.GoString(ptrName), "searchingFinished").(func(int))(int(hits)) +} + +func (ptr *QHelpSearchEngine) ConnectSearchingStarted(f func()) { + if ptr.Pointer() != nil { + C.QHelpSearchEngine_ConnectSearchingStarted(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "searchingStarted", f) + } +} + +func (ptr *QHelpSearchEngine) DisconnectSearchingStarted() { + if ptr.Pointer() != nil { + C.QHelpSearchEngine_DisconnectSearchingStarted(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "searchingStarted") + } +} + +//export callbackQHelpSearchEngineSearchingStarted +func callbackQHelpSearchEngineSearchingStarted(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "searchingStarted").(func())() +} + +func (ptr *QHelpSearchEngine) DestroyQHelpSearchEngine() { + if ptr.Pointer() != nil { + C.QHelpSearchEngine_DestroyQHelpSearchEngine(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/help/qhelpsearchengine.h b/help/qhelpsearchengine.h new file mode 100755 index 00000000..41ee487f --- /dev/null +++ b/help/qhelpsearchengine.h @@ -0,0 +1,25 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QHelpSearchEngine_NewQHelpSearchEngine(QtObjectPtr helpEngine, QtObjectPtr parent); +void QHelpSearchEngine_CancelIndexing(QtObjectPtr ptr); +void QHelpSearchEngine_CancelSearching(QtObjectPtr ptr); +int QHelpSearchEngine_HitCount(QtObjectPtr ptr); +void QHelpSearchEngine_ConnectIndexingFinished(QtObjectPtr ptr); +void QHelpSearchEngine_DisconnectIndexingFinished(QtObjectPtr ptr); +void QHelpSearchEngine_ConnectIndexingStarted(QtObjectPtr ptr); +void QHelpSearchEngine_DisconnectIndexingStarted(QtObjectPtr ptr); +QtObjectPtr QHelpSearchEngine_QueryWidget(QtObjectPtr ptr); +void QHelpSearchEngine_ReindexDocumentation(QtObjectPtr ptr); +QtObjectPtr QHelpSearchEngine_ResultWidget(QtObjectPtr ptr); +void QHelpSearchEngine_ConnectSearchingFinished(QtObjectPtr ptr); +void QHelpSearchEngine_DisconnectSearchingFinished(QtObjectPtr ptr); +void QHelpSearchEngine_ConnectSearchingStarted(QtObjectPtr ptr); +void QHelpSearchEngine_DisconnectSearchingStarted(QtObjectPtr ptr); +void QHelpSearchEngine_DestroyQHelpSearchEngine(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/help/qhelpsearchquery.cpp b/help/qhelpsearchquery.cpp new file mode 100755 index 00000000..5e2c792e --- /dev/null +++ b/help/qhelpsearchquery.cpp @@ -0,0 +1,20 @@ +#include "qhelpsearchquery.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQHelpSearchQuery: public QHelpSearchQuery { +public: +}; + +QtObjectPtr QHelpSearchQuery_NewQHelpSearchQuery(){ + return new QHelpSearchQuery(); +} + +QtObjectPtr QHelpSearchQuery_NewQHelpSearchQuery2(int field, char* wordList){ + return new QHelpSearchQuery(static_cast(field), QString(wordList).split("|", QString::SkipEmptyParts)); +} + diff --git a/help/qhelpsearchquery.go b/help/qhelpsearchquery.go new file mode 100755 index 00000000..82df46a5 --- /dev/null +++ b/help/qhelpsearchquery.go @@ -0,0 +1,61 @@ +package help + +//#include "qhelpsearchquery.h" +import "C" +import ( + "strings" + "unsafe" +) + +type QHelpSearchQuery struct { + ptr unsafe.Pointer +} + +type QHelpSearchQueryITF interface { + QHelpSearchQueryPTR() *QHelpSearchQuery +} + +func (p *QHelpSearchQuery) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QHelpSearchQuery) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQHelpSearchQuery(ptr QHelpSearchQueryITF) unsafe.Pointer { + if ptr != nil { + return ptr.QHelpSearchQueryPTR().Pointer() + } + return nil +} + +func QHelpSearchQueryFromPointer(ptr unsafe.Pointer) *QHelpSearchQuery { + var n = new(QHelpSearchQuery) + n.SetPointer(ptr) + return n +} + +func (ptr *QHelpSearchQuery) QHelpSearchQueryPTR() *QHelpSearchQuery { + return ptr +} + +//QHelpSearchQuery::FieldName +type QHelpSearchQuery__FieldName int + +var ( + QHelpSearchQuery__DEFAULT = QHelpSearchQuery__FieldName(0) + QHelpSearchQuery__FUZZY = QHelpSearchQuery__FieldName(1) + QHelpSearchQuery__WITHOUT = QHelpSearchQuery__FieldName(2) + QHelpSearchQuery__PHRASE = QHelpSearchQuery__FieldName(3) + QHelpSearchQuery__ALL = QHelpSearchQuery__FieldName(4) + QHelpSearchQuery__ATLEAST = QHelpSearchQuery__FieldName(5) +) + +func NewQHelpSearchQuery() *QHelpSearchQuery { + return QHelpSearchQueryFromPointer(unsafe.Pointer(C.QHelpSearchQuery_NewQHelpSearchQuery())) +} + +func NewQHelpSearchQuery2(field QHelpSearchQuery__FieldName, wordList []string) *QHelpSearchQuery { + return QHelpSearchQueryFromPointer(unsafe.Pointer(C.QHelpSearchQuery_NewQHelpSearchQuery2(C.int(field), C.CString(strings.Join(wordList, "|"))))) +} diff --git a/help/qhelpsearchquery.h b/help/qhelpsearchquery.h new file mode 100755 index 00000000..9741e18c --- /dev/null +++ b/help/qhelpsearchquery.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QHelpSearchQuery_NewQHelpSearchQuery(); +QtObjectPtr QHelpSearchQuery_NewQHelpSearchQuery2(int field, char* wordList); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/help/qhelpsearchquerywidget.cpp b/help/qhelpsearchquerywidget.cpp new file mode 100755 index 00000000..0b6d2966 --- /dev/null +++ b/help/qhelpsearchquerywidget.cpp @@ -0,0 +1,44 @@ +#include "qhelpsearchquerywidget.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQHelpSearchQueryWidget: public QHelpSearchQueryWidget { +public: +void Signal_Search(){callbackQHelpSearchQueryWidgetSearch(this->objectName().toUtf8().data());}; +}; + +int QHelpSearchQueryWidget_IsCompactMode(QtObjectPtr ptr){ + return static_cast(ptr)->isCompactMode(); +} + +QtObjectPtr QHelpSearchQueryWidget_NewQHelpSearchQueryWidget(QtObjectPtr parent){ + return new QHelpSearchQueryWidget(static_cast(parent)); +} + +void QHelpSearchQueryWidget_CollapseExtendedSearch(QtObjectPtr ptr){ + static_cast(ptr)->collapseExtendedSearch(); +} + +void QHelpSearchQueryWidget_ExpandExtendedSearch(QtObjectPtr ptr){ + static_cast(ptr)->expandExtendedSearch(); +} + +void QHelpSearchQueryWidget_ConnectSearch(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QHelpSearchQueryWidget::search), static_cast(ptr), static_cast(&MyQHelpSearchQueryWidget::Signal_Search));; +} + +void QHelpSearchQueryWidget_DisconnectSearch(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QHelpSearchQueryWidget::search), static_cast(ptr), static_cast(&MyQHelpSearchQueryWidget::Signal_Search));; +} + +void QHelpSearchQueryWidget_DestroyQHelpSearchQueryWidget(QtObjectPtr ptr){ + static_cast(ptr)->~QHelpSearchQueryWidget(); +} + diff --git a/help/qhelpsearchquerywidget.go b/help/qhelpsearchquerywidget.go new file mode 100755 index 00000000..aa433715 --- /dev/null +++ b/help/qhelpsearchquerywidget.go @@ -0,0 +1,87 @@ +package help + +//#include "qhelpsearchquerywidget.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/widgets" + "unsafe" +) + +type QHelpSearchQueryWidget struct { + widgets.QWidget +} + +type QHelpSearchQueryWidgetITF interface { + widgets.QWidgetITF + QHelpSearchQueryWidgetPTR() *QHelpSearchQueryWidget +} + +func PointerFromQHelpSearchQueryWidget(ptr QHelpSearchQueryWidgetITF) unsafe.Pointer { + if ptr != nil { + return ptr.QHelpSearchQueryWidgetPTR().Pointer() + } + return nil +} + +func QHelpSearchQueryWidgetFromPointer(ptr unsafe.Pointer) *QHelpSearchQueryWidget { + var n = new(QHelpSearchQueryWidget) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QHelpSearchQueryWidget_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QHelpSearchQueryWidget) QHelpSearchQueryWidgetPTR() *QHelpSearchQueryWidget { + return ptr +} + +func (ptr *QHelpSearchQueryWidget) IsCompactMode() bool { + if ptr.Pointer() != nil { + return C.QHelpSearchQueryWidget_IsCompactMode(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func NewQHelpSearchQueryWidget(parent widgets.QWidgetITF) *QHelpSearchQueryWidget { + return QHelpSearchQueryWidgetFromPointer(unsafe.Pointer(C.QHelpSearchQueryWidget_NewQHelpSearchQueryWidget(C.QtObjectPtr(widgets.PointerFromQWidget(parent))))) +} + +func (ptr *QHelpSearchQueryWidget) CollapseExtendedSearch() { + if ptr.Pointer() != nil { + C.QHelpSearchQueryWidget_CollapseExtendedSearch(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QHelpSearchQueryWidget) ExpandExtendedSearch() { + if ptr.Pointer() != nil { + C.QHelpSearchQueryWidget_ExpandExtendedSearch(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QHelpSearchQueryWidget) ConnectSearch(f func()) { + if ptr.Pointer() != nil { + C.QHelpSearchQueryWidget_ConnectSearch(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "search", f) + } +} + +func (ptr *QHelpSearchQueryWidget) DisconnectSearch() { + if ptr.Pointer() != nil { + C.QHelpSearchQueryWidget_DisconnectSearch(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "search") + } +} + +//export callbackQHelpSearchQueryWidgetSearch +func callbackQHelpSearchQueryWidgetSearch(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "search").(func())() +} + +func (ptr *QHelpSearchQueryWidget) DestroyQHelpSearchQueryWidget() { + if ptr.Pointer() != nil { + C.QHelpSearchQueryWidget_DestroyQHelpSearchQueryWidget(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/help/qhelpsearchquerywidget.h b/help/qhelpsearchquerywidget.h new file mode 100755 index 00000000..2994178e --- /dev/null +++ b/help/qhelpsearchquerywidget.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QHelpSearchQueryWidget_IsCompactMode(QtObjectPtr ptr); +QtObjectPtr QHelpSearchQueryWidget_NewQHelpSearchQueryWidget(QtObjectPtr parent); +void QHelpSearchQueryWidget_CollapseExtendedSearch(QtObjectPtr ptr); +void QHelpSearchQueryWidget_ExpandExtendedSearch(QtObjectPtr ptr); +void QHelpSearchQueryWidget_ConnectSearch(QtObjectPtr ptr); +void QHelpSearchQueryWidget_DisconnectSearch(QtObjectPtr ptr); +void QHelpSearchQueryWidget_DestroyQHelpSearchQueryWidget(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/help/qhelpsearchresultwidget.cpp b/help/qhelpsearchresultwidget.cpp new file mode 100755 index 00000000..1f61681b --- /dev/null +++ b/help/qhelpsearchresultwidget.cpp @@ -0,0 +1,31 @@ +#include "qhelpsearchresultwidget.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQHelpSearchResultWidget: public QHelpSearchResultWidget { +public: +void Signal_RequestShowLink(const QUrl & link){callbackQHelpSearchResultWidgetRequestShowLink(this->objectName().toUtf8().data(), link.toString().toUtf8().data());}; +}; + +char* QHelpSearchResultWidget_LinkAt(QtObjectPtr ptr, QtObjectPtr point){ + return static_cast(ptr)->linkAt(*static_cast(point)).toString().toUtf8().data(); +} + +void QHelpSearchResultWidget_ConnectRequestShowLink(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QHelpSearchResultWidget::requestShowLink), static_cast(ptr), static_cast(&MyQHelpSearchResultWidget::Signal_RequestShowLink));; +} + +void QHelpSearchResultWidget_DisconnectRequestShowLink(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QHelpSearchResultWidget::requestShowLink), static_cast(ptr), static_cast(&MyQHelpSearchResultWidget::Signal_RequestShowLink));; +} + +void QHelpSearchResultWidget_DestroyQHelpSearchResultWidget(QtObjectPtr ptr){ + static_cast(ptr)->~QHelpSearchResultWidget(); +} + diff --git a/help/qhelpsearchresultwidget.go b/help/qhelpsearchresultwidget.go new file mode 100755 index 00000000..44b639f1 --- /dev/null +++ b/help/qhelpsearchresultwidget.go @@ -0,0 +1,72 @@ +package help + +//#include "qhelpsearchresultwidget.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/widgets" + "unsafe" +) + +type QHelpSearchResultWidget struct { + widgets.QWidget +} + +type QHelpSearchResultWidgetITF interface { + widgets.QWidgetITF + QHelpSearchResultWidgetPTR() *QHelpSearchResultWidget +} + +func PointerFromQHelpSearchResultWidget(ptr QHelpSearchResultWidgetITF) unsafe.Pointer { + if ptr != nil { + return ptr.QHelpSearchResultWidgetPTR().Pointer() + } + return nil +} + +func QHelpSearchResultWidgetFromPointer(ptr unsafe.Pointer) *QHelpSearchResultWidget { + var n = new(QHelpSearchResultWidget) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QHelpSearchResultWidget_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QHelpSearchResultWidget) QHelpSearchResultWidgetPTR() *QHelpSearchResultWidget { + return ptr +} + +func (ptr *QHelpSearchResultWidget) LinkAt(point core.QPointITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QHelpSearchResultWidget_LinkAt(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(point)))) + } + return "" +} + +func (ptr *QHelpSearchResultWidget) ConnectRequestShowLink(f func(link string)) { + if ptr.Pointer() != nil { + C.QHelpSearchResultWidget_ConnectRequestShowLink(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "requestShowLink", f) + } +} + +func (ptr *QHelpSearchResultWidget) DisconnectRequestShowLink() { + if ptr.Pointer() != nil { + C.QHelpSearchResultWidget_DisconnectRequestShowLink(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "requestShowLink") + } +} + +//export callbackQHelpSearchResultWidgetRequestShowLink +func callbackQHelpSearchResultWidgetRequestShowLink(ptrName *C.char, link *C.char) { + qt.GetSignal(C.GoString(ptrName), "requestShowLink").(func(string))(C.GoString(link)) +} + +func (ptr *QHelpSearchResultWidget) DestroyQHelpSearchResultWidget() { + if ptr.Pointer() != nil { + C.QHelpSearchResultWidget_DestroyQHelpSearchResultWidget(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/help/qhelpsearchresultwidget.h b/help/qhelpsearchresultwidget.h new file mode 100755 index 00000000..a6a94452 --- /dev/null +++ b/help/qhelpsearchresultwidget.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QHelpSearchResultWidget_LinkAt(QtObjectPtr ptr, QtObjectPtr point); +void QHelpSearchResultWidget_ConnectRequestShowLink(QtObjectPtr ptr); +void QHelpSearchResultWidget_DisconnectRequestShowLink(QtObjectPtr ptr); +void QHelpSearchResultWidget_DestroyQHelpSearchResultWidget(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/internal/binding/converter/body_input.go b/internal/binding/converter/body_input.go new file mode 100755 index 00000000..78577bca --- /dev/null +++ b/internal/binding/converter/body_input.go @@ -0,0 +1,131 @@ +package converter + +import ( + "fmt" + "path" + "runtime" + "strings" + + "github.com/therecipe/qt/internal/binding/parser" + "github.com/therecipe/qt/internal/utils" +) + +func GoBodyInput(f *parser.Function) (o string) { + + if !(f.Static || f.Meta == "constructor") { + o += "C.QtObjectPtr(ptr.Pointer()), " + } + + if f.Meta != "signal" { + for _, p := range f.Parameters { + o += fmt.Sprintf("%v, ", goInput(p.Name, p.Value, f)) + } + } + + return strings.TrimSuffix(o, ", ") +} + +func GoBodyInputSignalValues(f *parser.Function) (o string) { + + for _, p := range f.Parameters { + o += fmt.Sprintf("%v, ", cgoOutput(p.Name, p.Value, f)) + } + + return strings.TrimSuffix(o, ", ") +} + +func CppBodyInput(f *parser.Function) (o string) { + + if f.Meta == "slot" { + for _, p := range f.Parameters { + o += fmt.Sprintf(", Q_ARG(%v, %v)", CppBodyInputSlotValue(f, p), cppInput(p.Name, p.Value, f)) + } + return + } + + if f.Meta == "signal" { + for _, p := range f.Parameters { + + if isEnum(f.Class(), cleanValue(p.Value)) { + o += fmt.Sprintf("%v, ", cppEnum(f, cleanValue(p.Value), true)) + } else { + o += fmt.Sprintf("%v, ", p.Value) + } + } + return strings.TrimSuffix(o, ", ") + } + + for _, p := range f.Parameters { + o += fmt.Sprintf("%v, ", cppInput(p.Name, p.Value, f)) + } + + return strings.TrimSuffix(o, ", ") +} + +func PrivateSignal(f *parser.Function) bool { + + var fData string + + switch runtime.GOOS { + case "darwin": + fData = utils.Load(fmt.Sprintf("/usr/local/Qt5.5.1/5.5/clang_64/lib/%v.framework/Versions/5/Headers/%v", strings.Title(parser.ClassMap[f.Class()].Module), path.Base(f.Filepath))) + + case "windows": + fData = utils.Load(fmt.Sprintf("C:\\Qt\\Qt5.5.1\\5.5\\mingw492_32\\include\\%v\\%v", strings.Title(parser.ClassMap[f.Class()].Module), path.Base(f.Filepath))) + + case "linux": + switch runtime.GOARCH { + case "amd64": + { + fData = utils.Load(fmt.Sprintf("/usr/local/Qt5.5.1/5.5/gcc_64/include/%v/%v", strings.Title(parser.ClassMap[f.Class()].Module), path.Base(f.Filepath))) + } + case "386": + { + fData = utils.Load(fmt.Sprintf("/usr/local/Qt5.5.1/5.5/gcc/include/%v/%v", strings.Title(parser.ClassMap[f.Class()].Module), path.Base(f.Filepath))) + } + } + } + + if fData != "" { + return strings.Contains(strings.Split(strings.Split(fData, f.Name+"(")[1], ")")[0], "QPrivateSignal") + } else { + fmt.Println("converter.PrivateSignal", f.Class()) + } + + return false +} + +func CppBodyInputCallback(f *parser.Function) (o string) { + for _, p := range f.Parameters { + + if isEnum(f.Class(), cleanValue(p.Value)) { + o += fmt.Sprintf("%v %v, ", cppEnum(f, cleanValue(p.Value), true), cleanName(p.Name)) + } else { + o += fmt.Sprintf("%v %v, ", p.Value, cleanName(p.Name)) + } + } + + return strings.TrimSuffix(o, ", ") +} + +func CppBodyOutputCallback(f *parser.Function) (o string) { + + o += fmt.Sprintf("%v", cppOutput("this->objectName()", "QString", f)) + + for _, p := range f.Parameters { + o += fmt.Sprintf(", %v", cppOutput(p.Name, p.Value, f)) + } + return +} + +func CppBodyInputSlotValue(f *parser.Function, p *parser.Parameter) string { + if strings.Contains(p.Value, "*") { + return fmt.Sprintf("%v*", cleanValue(p.Value)) + } + + if isEnum(f.Class(), p.Value) { + return cppEnum(f, p.Value, false) + } + + return cleanValue(p.Value) +} diff --git a/internal/binding/converter/body_output.go b/internal/binding/converter/body_output.go new file mode 100755 index 00000000..98e5bb5a --- /dev/null +++ b/internal/binding/converter/body_output.go @@ -0,0 +1,57 @@ +package converter + +import "github.com/therecipe/qt/internal/binding/parser" + +func GoBodyOutput(f *parser.Function, name string) string { + + var value = f.Output + + if f.Meta == "constructor" && f.Output == "" { + value = f.Name + } + + return goOutput(name, value, f) +} + +func GoBodyOutputFailed(value string, f *parser.Function) string { + value = cleanValue(value) + + switch value { + case "bool": + return "false" + + case "int": + return "0" + + case "uchar", "char", "QString", "QUrl", "QVariant": + return "\"\"" + + case "QStringList": + return "make([]string, 0)" + + case "void", "": + return "" + } + + switch { + case isEnum(f.Class(), value): + return "0" + + case isClass(value): + return "nil" + + default: + f.Access = "unsupported_GoBodyOutputFailed" + return f.Access + } +} + +func CppBodyOutput(f *parser.Function, name string) string { + var value = f.Output + + if f.Meta == "constructor" && f.Output == "" { + value = f.Name + } + + return cppOutput(name, value, f) +} diff --git a/internal/binding/converter/enum.go b/internal/binding/converter/enum.go new file mode 100755 index 00000000..eade1908 --- /dev/null +++ b/internal/binding/converter/enum.go @@ -0,0 +1,42 @@ +package converter + +import ( + "fmt" + "strconv" + "strings" + + "github.com/therecipe/qt/internal/binding/parser" +) + +func GoEnum(n string, v string, e *parser.Enum) string { + var _, err = strconv.Atoi(v) + switch { + case strings.ContainsAny(v, "()<>~+") || v == "": + { + return fmt.Sprintf("C.%v_%v_Type()", strings.Split(e.Fullname, "::")[0], n) + } + + case strings.Contains(v, "0x"): + { + return v + } + + case err != nil: + { + if c, exists := parser.ClassMap[class(goEnum(e, v))]; exists && module(c.Module) != module(e) && module(c.Module) != "" { + return fmt.Sprintf("%v.%v", module(c.Module), goEnum(e, v)) + } + return goEnum(e, v) + } + } + + return v +} + +func CppEnum(v *parser.Value, e *parser.Enum) string { + if strings.ContainsAny(v.Value, "()<>~+") || v.Value == "" { + return fmt.Sprintf("%v::%v", class(e), v.Name) + } + + return v.Value +} diff --git a/internal/binding/converter/header.go b/internal/binding/converter/header.go new file mode 100755 index 00000000..cee532c0 --- /dev/null +++ b/internal/binding/converter/header.go @@ -0,0 +1,159 @@ +package converter + +import ( + "fmt" + "strings" + + "github.com/therecipe/qt/internal/binding/parser" +) + +func GoHeaderName(f *parser.Function) (o string) { + + if f.SignalMode == "callback" { + return fmt.Sprintf("callback%v%v", f.Class(), strings.Title(f.Name)) + } + + if f.Static { + o += fmt.Sprintf("%v_", strings.Split(f.Fullname, "::")[0]) + } + + switch f.Meta { + case "constructor": + o += "New" + + case "destructor": + o += "Destroy" + } + + o += f.SignalMode + + o += strings.Title(f.Name) + + if f.Overload { + o += f.OverloadNumber + } + + if strings.ContainsAny(o, "&<>=/!()[]{}-^|*+-") || strings.Contains(o, "Operator") { + f.Access = "unsupported_GoHeaderName" + return f.Access + } + + return strings.Replace(o, "~", "", -1) +} + +func CppHeaderName(f *parser.Function) string { + return fmt.Sprintf("%v_%v", strings.Split(f.Fullname, "::")[0], GoHeaderName(f)) +} + +func GoHeaderOutput(f *parser.Function) string { + + var value = f.Output + + if f.Meta == "constructor" && f.Output == "" { + value = f.Name + } + + var o = goType(f, value) + if isClass(o) { + return fmt.Sprintf("*%v", o) + } + return o +} + +func CppHeaderOutput(f *parser.Function) string { + + var value = f.Output + + if f.Meta == "constructor" && f.Output == "" { + value = f.Name + } + + return cppType(f, value) +} + +func GoHeaderInput(f *parser.Function) (o string) { + + if f.SignalMode == "callback" { + o += "ptrName *C.char" + for _, p := range f.Parameters { + if v := cgoType(f, p.Value); v != "" { + o += fmt.Sprintf(", %v %v", cleanName(p.Name), v) + } + } + return strings.TrimSuffix(o, ", ") + } + + if f.Meta == "signal" && f.SignalMode == "Connect" { + o += "f func (" + } + + if f.Meta == "signal" && f.SignalMode != "Connect" { + return + } + + for _, p := range f.Parameters { + if v := goType(f, p.Value); v != "" { + if isClass(v) { + o += fmt.Sprintf("%v %vITF, ", cleanName(p.Name), v) + } else { + o += fmt.Sprintf("%v %v, ", cleanName(p.Name), v) + } + } else { + f.Access = "unsupported_GoHeaderInput" + return f.Access + } + } + + o = strings.TrimSuffix(o, ", ") + + if f.Meta == "signal" && f.SignalMode == "Connect" { + o += ")" + } + + return +} + +func GoHeaderInputSignalFunction(f *parser.Function) (o string) { + + o += "func (" + + for _, p := range f.Parameters { + if v := goType(f, p.Value); v != "" { + if isClass(v) { + o += fmt.Sprintf("*%v, ", v) + } else { + o += fmt.Sprintf("%v, ", v) + } + } else { + f.Access = "unsupported_GoHeaderInputSignalFunction" + return f.Access + } + } + + o = strings.TrimSuffix(o, ", ") + + o += ")" + + return +} + +func CppHeaderInput(f *parser.Function) (o string) { + if !(f.Static || f.Meta == "constructor") { + o += "QtObjectPtr ptr, " + } + + if f.Meta == "signal" { + return strings.TrimSuffix(o, ", ") + } + + for _, p := range f.Parameters { + if v := cppType(f, p.Value); v != "" { + o += fmt.Sprintf("%v %v, ", v, cleanName(p.Name)) + } else { + f.Access = "unsupported_CppHeaderInput" + return f.Access + } + } + + return strings.TrimSuffix(o, ", ") +} diff --git a/internal/binding/converter/helper.go b/internal/binding/converter/helper.go new file mode 100755 index 00000000..05f3ae70 --- /dev/null +++ b/internal/binding/converter/helper.go @@ -0,0 +1,252 @@ +package converter + +import ( + "fmt" + "strings" + + "github.com/therecipe/qt/internal/binding/parser" +) + +func module(input interface{}) string { + + switch input.(type) { + case *parser.Enum, *parser.Function: + { + return module(parser.ClassMap[class(input)].Module) + } + + case string: + { + return strings.ToLower(strings.TrimPrefix(input.(string), "Qt")) + } + } + return "" +} + +func class(input interface{}) string { + + switch input.(type) { + case *parser.Function: + { + return class(input.(*parser.Function).Fullname) + } + + case *parser.Enum: + { + return class(input.(*parser.Enum).Fullname) + } + + case string: + { + if strings.Contains(input.(string), "::") { + return strings.Split(input.(string), "::")[0] + } + if strings.Contains(input.(string), "__") { + return strings.Split(input.(string), "__")[0] + } + } + } + + return "" +} + +func cleanValue(value string) string { + for _, b := range []string{"*", "const", "&"} { + value = strings.Replace(value, b, "", -1) + } + return strings.TrimSpace(value) +} + +func cleanName(name string) string { + switch name { + case + "type", + "func", + "range", + "string", + "int", + "map", + "const", + "interface", + "select", + "strings", + "new": + { + return name[:len(name)-2] + } + + case "": + { + return "v" + } + } + + return name +} + +func isClass(value string) bool { + if strings.Contains(value, ".") { + return isClass(strings.Split(value, ".")[1]) + } + + var _, exists = parser.ClassMap[value] + return exists +} + +func isEnum(class, value string) bool { + if strings.Contains(value, "::") { + return true + } + + var outE, _ = findEnum(class, value, false) + return outE != "" +} + +func findEnum(className, value string, byValue bool) (string, string) { + + //Look in given class + if c, exists := parser.ClassMap[class(value)]; exists { + for _, e := range c.Enums { + if outE, outT := findEnumH(e, value, byValue); outE != "" { + return outE, outT + } + } + } + + //Look in same class + if c, exists := parser.ClassMap[className]; exists { + for _, e := range c.Enums { + if outE, outT := findEnumH(e, value, byValue); outE != "" { + return outE, outT + } + } + } + + //Look in super classes + if c, exists := parser.ClassMap[className]; exists { + for _, s := range c.GetAllBases([]string{}) { + for _, e := range parser.ClassMap[s].Enums { + if outE, outT := findEnumH(e, value, byValue); outE != "" { + return outE, outT + } + } + } + } + + //Look in namespaces + for m := range parser.SubnamespaceMap { + if c, exists := parser.ClassMap[m]; exists { + for _, e := range c.Enums { + if outE, outT := findEnumH(e, value, byValue); outE != "" { + return outE, outT + } + } + } + } + + return "", "" +} + +func findEnumH(e *parser.Enum, value string, byValue bool) (string, string) { + + if byValue { + for _, v := range e.Values { + if outE, _ := findEnumHelper(value, class(e)+"::"+v.Name, ""); outE != "" { + return outE, "" + } + } + } else { + if outE, outT := findEnumHelper(value, e.Fullname, e.Typedef); outE != "" { + return outE, outT + } + } + + return "", "" +} + +func findEnumHelper(value, name, typedef string) (string, string) { + + var fullName = name + + if strings.Contains(value, "::") { + value = strings.Split(value, "::")[1] + } + + if strings.Contains(name, "::") { + name = strings.Split(name, "::")[1] + } + + if strings.Contains(typedef, "::") { + typedef = strings.Split(typedef, "::")[1] + } + + switch value { + case name, typedef: + return fullName, typedef + } + return "", "" +} + +func goEnum(inter interface{}, value string) string { + + var findByValue bool + + switch inter.(type) { + case *parser.Enum: + findByValue = true + } + + if outE, _ := findEnum(class(inter), value, findByValue); outE != "" { + return strings.Replace(outE, ":", "_", -1) + } + + switch inter.(type) { + case *parser.Function: + { + inter.(*parser.Function).Access = "unsupported_goEnum" + } + + case *parser.Enum: + { + inter.(*parser.Enum).Access = "unsupported_goEnum" + } + } + + return "unsupported_goEnum" +} + +func cppEnum(f *parser.Function, value string, exact bool) string { + + if outE, outT := findEnum(class(f), value, false); outE != "" { + if exact { + + if outT == "" { + return outE + } + + if !strings.Contains(outT, "::") { + outT = fmt.Sprintf("%v::%v", class(outE), outT) + } + + return cppEnumExact(value, outE, outT) + } + + return outE + } + + f.Access = "unsupported_cppEnum" + return f.Access +} + +func cppEnumExact(value, outE, outT string) string { + var trimedValue = value + + if strings.Contains(value, "::") { + trimedValue = strings.Split(value, "::")[1] + } + + if trimedValue == strings.Split(outT, "::")[1] { + return outT + } + return outE +} diff --git a/internal/binding/converter/input.go b/internal/binding/converter/input.go new file mode 100755 index 00000000..22e2d136 --- /dev/null +++ b/internal/binding/converter/input.go @@ -0,0 +1,149 @@ +package converter + +import ( + "fmt" + "strings" + + "github.com/therecipe/qt/internal/binding/parser" +) + +func goInput(name string, value string, f *parser.Function) string { + + name = cleanName(name) + value = cleanValue(value) + + switch value { + case "QStringList": + { + return fmt.Sprintf("C.CString(strings.Join(%v, \"|\"))", name) + } + + case "uchar", "char", "QString", "QUrl", "QVariant": + { + return fmt.Sprintf("C.CString(%v)", name) + } + + case "bool": + { + return fmt.Sprintf("C.int(qt.GoBoolToInt(%v))", name) + } + + case "int": + { + return fmt.Sprintf("C.int(%v)", name) + } + } + + switch { + case isEnum(f.Class(), value): + { + return fmt.Sprintf("C.int(%v)", name) + } + + case isClass(value): + { + if m := module(parser.ClassMap[value].Module); m != module(f) { + return fmt.Sprintf("C.QtObjectPtr(%v.PointerFrom%v(%v))", m, strings.Title(value), name) + } + return fmt.Sprintf("C.QtObjectPtr(PointerFrom%v(%v))", strings.Title(value), name) + } + } + + f.Access = "unsupported_goInput" + return f.Access +} + +func cppInput(name string, value string, f *parser.Function) string { + var vOld = value + + name = cleanName(name) + value = cleanValue(value) + + switch value { + case "QStringList": + { + return fmt.Sprintf("%v.split(\"|\", QString::SkipEmptyParts)", cppInput(name, "QString", f)) + } + + case "QString", "QVariant": + { + if strings.Contains(vOld, "&") { + if strings.Contains(vOld, "const") { + return fmt.Sprintf("%v(%v)", value, name) + } + f.Access = "unsupported_CppInput" + return f.Access + } + + if strings.Contains(vOld, "*") { + return fmt.Sprintf("new %v(%v)", value, name) + } + + return fmt.Sprintf("%v(%v)", value, name) + } + + case "QUrl": + { + return fmt.Sprintf("%v(%v)", value, cppInput(name, "QString", f)) + } + + case "bool": + { + if strings.Contains(vOld, "*") { + return "NULL" + } + return fmt.Sprintf("%v != 0", name) + } + + case "int": + { + if strings.Contains(vOld, "*") { + return fmt.Sprintf("&%v", name) + } + return name + } + + case "char": + { + if strings.Contains(vOld, "const") { + if strings.Contains(vOld, "*") { + return fmt.Sprintf("const_cast(%v)", value, name) + } + } + + if strings.Contains(vOld, "**") { + return fmt.Sprintf("&%v", name) + } + + if strings.Contains(vOld, "*") { + return name + } + + return fmt.Sprintf("*%v", name) + } + } + + switch { + case isEnum(f.Class(), value): + { + if !strings.Contains(vOld, "*") { + return fmt.Sprintf("static_cast<%v>(%v)", cppEnum(f, value, false), name) + } + } + + case isClass(value): + { + if strings.Contains(vOld, "*") { + if strings.Contains(vOld, "&") { + break + } + return fmt.Sprintf("static_cast<%v*>(%v)", value, name) + } + + return fmt.Sprintf("*static_cast<%v*>(%v)", value, name) + } + } + + f.Access = "unsupported_CppInput" + return f.Access +} diff --git a/internal/binding/converter/output.go b/internal/binding/converter/output.go new file mode 100755 index 00000000..cf24b9f5 --- /dev/null +++ b/internal/binding/converter/output.go @@ -0,0 +1,176 @@ +package converter + +import ( + "fmt" + "strings" + + "github.com/therecipe/qt/internal/binding/parser" +) + +func goOutput(name string, value string, f *parser.Function) string { + + name = cleanName(name) + value = cleanValue(value) + + switch value { + case "QStringList": + { + return fmt.Sprintf("strings.Split(%v, \"|\")", goOutput(name, "QString", f)) + } + + case "uchar", "char", "QString", "QUrl", "QVariant": + { + return fmt.Sprintf("C.GoString(%v)", name) + } + + case "int": + { + return fmt.Sprintf("int(%v)", name) + } + + case "bool": + { + return fmt.Sprintf("%v != 0", name) + } + + case "void", "": + { + return name + } + } + + switch { + case isEnum(f.Class(), value): + { + if c, exists := parser.ClassMap[class(cppEnum(f, value, false))]; exists && module(c.Module) != module(f) && module(c.Module) != "" { + return fmt.Sprintf("%v.%v(%v)", module(c.Module), goEnum(f, value), name) + } + return fmt.Sprintf("%v(%v)", goEnum(f, value), name) + } + + case isClass(value): + { + if m := module(parser.ClassMap[value].Module); m != module(f) { + return fmt.Sprintf("%v.%vFromPointer(unsafe.Pointer(%v))", m, value, name) + } + return fmt.Sprintf("%vFromPointer(unsafe.Pointer(%v))", value, name) + } + } + + f.Access = "unsupported_goOutput" + return f.Access +} + +func cgoOutput(name string, value string, f *parser.Function) string { + + name = cleanName(name) + value = cleanValue(value) + + switch value { + case "QStringList": + { + return fmt.Sprintf("strings.Split(%v, \"|\")", cgoOutput(name, "QString", f)) + } + + case "uchar", "char", "QString", "QUrl", "QVariant": + { + return fmt.Sprintf("C.GoString(%v)", name) + } + + case "int": + { + return fmt.Sprintf("int(%v)", name) + } + + case "bool": + { + return fmt.Sprintf("%v != 0", cgoOutput(name, "int", f)) + } + + case "void", "": + { + return "" + } + } + + switch { + case isEnum(f.Class(), value): + { + if c, exists := parser.ClassMap[class(cppEnum(f, value, false))]; exists && module(c.Module) != module(f) && module(c.Module) != "" { + return fmt.Sprintf("%v.%v(%v)", module(c.Module), goEnum(f, value), name) + } + return fmt.Sprintf("%v(%v)", goEnum(f, value), name) + } + + case isClass(value): + { + if m := module(parser.ClassMap[value].Module); m != module(f) { + return fmt.Sprintf("%v.%vFromPointer(%v)", m, value, name) + } + return fmt.Sprintf("%vFromPointer(%v)", value, name) + } + } + + f.Access = "unsupported_cgoOutput" + return f.Access +} + +func cppOutput(name string, value string, f *parser.Function) string { + + var vOld = value + + name = cleanName(name) + value = cleanValue(value) + + switch value { + case "QStringList": + { + return cppOutput(fmt.Sprintf("%v.join(\"|\")", name), "QString", f) + } + + case "QString": + { + if strings.Contains(vOld, "*") { + return fmt.Sprintf("%v->toUtf8().data()", name) + } + return fmt.Sprintf("%v.toUtf8().data()", name) + } + + case "QUrl", "QVariant": + { + return cppOutput(fmt.Sprintf("%v.toString()", name), "QString", f) + } + + case "bool", "int", "void", "": + { + return name + } + } + + switch { + case isEnum(f.Class(), value): + { + return name + } + + case isClass(value): + { + if strings.Contains(vOld, "*") { + if strings.Contains(vOld, "const") { + return fmt.Sprintf("const_cast<%v*>(%v)", value, name) + } + return name + } + + switch value { + case "QModelIndex": + { + return fmt.Sprintf("%v.internalPointer()", name) + } + } + } + } + + f.Access = "unsupported_cppOutput" + return f.Access +} diff --git a/internal/binding/converter/type.go b/internal/binding/converter/type.go new file mode 100755 index 00000000..8d0e4ea9 --- /dev/null +++ b/internal/binding/converter/type.go @@ -0,0 +1,125 @@ +package converter + +import "github.com/therecipe/qt/internal/binding/parser" + +func goType(f *parser.Function, value string) string { + + value = cleanValue(value) + + switch value { + case "uchar", "char", "QString", "QUrl", "QVariant": + { + return "string" + } + + case "QStringList": + { + return "[]string" + } + + case "void": + { + return "" + } + + case "bool", "int", "": + { + return value + } + } + + switch { + case isEnum(f.Class(), value): + { + if c, exists := parser.ClassMap[class(cppEnum(f, value, false))]; exists && module(c.Module) != module(f) && module(c.Module) != "" { + return module(c.Module) + "." + goEnum(f, value) + } + return goEnum(f, value) + } + + case isClass(value): + { + if m := module(parser.ClassMap[value].Module); m != module(f) { + return m + "." + value + } + return value + } + } + + f.Access = "unsupported_goType" + return f.Access +} + +func cgoType(f *parser.Function, value string) string { + + value = cleanValue(value) + + switch value { + case "uchar", "char", "QString", "QUrl", "QVariant", "QStringList": + { + return "*C.char" + } + + case "bool", "int": + { + return "C.int" + } + + case "void", "": + { + return "" + } + } + + switch { + case isEnum(f.Class(), value): + { + return "C.int" + } + + case isClass(value): + { + return "unsafe.Pointer" + } + } + + f.Access = "unsupported_cgoType" + return f.Access +} + +func cppType(f *parser.Function, value string) string { + + value = cleanValue(value) + + switch value { + case "uchar", "char", "QString", "QStringList", "QUrl", "QVariant": + { + return "char*" + } + + case "bool", "int": + { + return "int" + } + + case "void", "": + { + return "void" + } + } + + switch { + case isEnum(f.Class(), value): + { + return "int" + } + + case isClass(value): + { + return "QtObjectPtr" + } + } + + f.Access = "unsupported_cppType" + return f.Access +} diff --git a/internal/binding/dump/QtBluetooth/QBluetoothAddress.txt b/internal/binding/dump/QtBluetooth/QBluetoothAddress.txt new file mode 100755 index 00000000..7394d500 --- /dev/null +++ b/internal/binding/dump/QtBluetooth/QBluetoothAddress.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QBluetoothAddress QBluetoothAddress::QBluetoothAddress commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothaddress.h non constructor false false [] } +&{QBluetoothAddress QBluetoothAddress::QBluetoothAddress commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothaddress.h non constructor false true 4 [0xc8218f93e0] } +&{QBluetoothAddress QBluetoothAddress::QBluetoothAddress commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothaddress.h non constructor false true 3 [0xc8218f97c0] } +&{QBluetoothAddress QBluetoothAddress::QBluetoothAddress commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothaddress.h non constructor false true 2 [0xc8218f9ac0] } +&{clear QBluetoothAddress::clear commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothaddress.h non plain false false void [] } +&{isNull QBluetoothAddress::isNull commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothaddress.h non plain false false bool [] } +&{operator!= QBluetoothAddress::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothaddress.h non plain false false bool [0xc8219b6260] } +&{operator< QBluetoothAddress::operator< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothaddress.h non plain false false bool [0xc8219b6680] } +&{operator= QBluetoothAddress::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothaddress.h non plain false false QBluetoothAddress & [0xc8219b6bc0] } +&{operator== QBluetoothAddress::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothaddress.h non plain false false bool [0xc8219b6fa0] } +&{toString QBluetoothAddress::toString commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothaddress.h non plain false false QString [] } +&{toUInt64 QBluetoothAddress::toUInt64 commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothaddress.h non plain false false quint64 [] } +&{~QBluetoothAddress QBluetoothAddress::~QBluetoothAddress commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothaddress.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtBluetooth/QBluetoothDeviceDiscoveryAgent.txt b/internal/binding/dump/QtBluetooth/QBluetoothDeviceDiscoveryAgent.txt new file mode 100755 index 00000000..7d171b43 --- /dev/null +++ b/internal/binding/dump/QtBluetooth/QBluetoothDeviceDiscoveryAgent.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{canceled QBluetoothDeviceDiscoveryAgent::canceled commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdevicediscoveryagent.h non signal false false void [] } +&{deviceDiscovered QBluetoothDeviceDiscoveryAgent::deviceDiscovered commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdevicediscoveryagent.h non signal false false void [0xc821a6b000] } +&{error QBluetoothDeviceDiscoveryAgent::error commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdevicediscoveryagent.h non signal false true 2 void [0xc821a6b320] } +&{finished QBluetoothDeviceDiscoveryAgent::finished commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdevicediscoveryagent.h non signal false false void [] } +&{QBluetoothDeviceDiscoveryAgent QBluetoothDeviceDiscoveryAgent::QBluetoothDeviceDiscoveryAgent commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdevicediscoveryagent_osx.mm non constructor false false [0xc821a6ba00] } +&{QBluetoothDeviceDiscoveryAgent QBluetoothDeviceDiscoveryAgent::QBluetoothDeviceDiscoveryAgent commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdevicediscoveryagent_osx.mm non constructor false true 2 [0xc821a6bd80 0xc821a6be80] } +&{discoveredDevices QBluetoothDeviceDiscoveryAgent::discoveredDevices commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdevicediscoveryagent_osx.mm non plain false false QList [] } +&{error QBluetoothDeviceDiscoveryAgent::error commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdevicediscoveryagent_osx.mm non plain false false Error [] } +&{errorString QBluetoothDeviceDiscoveryAgent::errorString commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdevicediscoveryagent_osx.mm non plain false false QString [] } +&{inquiryType QBluetoothDeviceDiscoveryAgent::inquiryType commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdevicediscoveryagent_osx.mm non plain false false QBluetoothDeviceDiscoveryAgent::InquiryType [] } +&{isActive QBluetoothDeviceDiscoveryAgent::isActive commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdevicediscoveryagent_osx.mm non plain false false bool [] } +&{setInquiryType QBluetoothDeviceDiscoveryAgent::setInquiryType commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdevicediscoveryagent_osx.mm non plain false false void [0xc821b2a9c0] } +&{start QBluetoothDeviceDiscoveryAgent::start commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdevicediscoveryagent_osx.mm non slot false false void [] } +&{stop QBluetoothDeviceDiscoveryAgent::stop commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdevicediscoveryagent_osx.mm non slot false false void [] } +&{~QBluetoothDeviceDiscoveryAgent QBluetoothDeviceDiscoveryAgent::~QBluetoothDeviceDiscoveryAgent commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdevicediscoveryagent_osx.mm non destructor false false [] } +######################################## ENUMS ######################################## +&{Error QBluetoothDeviceDiscoveryAgent::Error commendable public [0xc821a6a160 0xc821a6a240 0xc821a6a2e0 0xc821a6a3e0 0xc821a6a5c0 0xc821a6a7a0]} +&{InquiryType QBluetoothDeviceDiscoveryAgent::InquiryType commendable public [0xc821a6aa40 0xc821a6ab80]} diff --git a/internal/binding/dump/QtBluetooth/QBluetoothDeviceInfo.txt b/internal/binding/dump/QtBluetooth/QBluetoothDeviceInfo.txt new file mode 100755 index 00000000..e8e748f4 --- /dev/null +++ b/internal/binding/dump/QtBluetooth/QBluetoothDeviceInfo.txt @@ -0,0 +1,41 @@ +######################################## FUNCTIONS ######################################## +&{QBluetoothDeviceInfo QBluetoothDeviceInfo::QBluetoothDeviceInfo commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdeviceinfo.h non constructor false false [] } +&{QBluetoothDeviceInfo QBluetoothDeviceInfo::QBluetoothDeviceInfo commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdeviceinfo.h non constructor false true 2 [0xc821d319e0 0xc821d31ac0 0xc821d31b40] } +&{QBluetoothDeviceInfo QBluetoothDeviceInfo::QBluetoothDeviceInfo commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdeviceinfo.h non constructor false true 4 [0xc821d31da0] } +&{QBluetoothDeviceInfo QBluetoothDeviceInfo::QBluetoothDeviceInfo commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdeviceinfo.h non constructor false true 3 [0xc82259a140 0xc82259a340 0xc82259a460] } +&{address QBluetoothDeviceInfo::address commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdeviceinfo.h non plain false false QBluetoothAddress [] } +&{coreConfigurations QBluetoothDeviceInfo::coreConfigurations commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdeviceinfo.h non plain false false QBluetoothDeviceInfo::CoreConfigurations [] } +&{deviceUuid QBluetoothDeviceInfo::deviceUuid commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdeviceinfo.h non plain false false QBluetoothUuid [] } +&{isCached QBluetoothDeviceInfo::isCached commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdeviceinfo.h non plain false false bool [] } +&{isValid QBluetoothDeviceInfo::isValid commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdeviceinfo.h non plain false false bool [] } +&{majorDeviceClass QBluetoothDeviceInfo::majorDeviceClass commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdeviceinfo.h non plain false false MajorDeviceClass [] } +&{minorDeviceClass QBluetoothDeviceInfo::minorDeviceClass commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdeviceinfo.h non plain false false quint8 [] } +&{name QBluetoothDeviceInfo::name commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdeviceinfo.h non plain false false QString [] } +&{operator!= QBluetoothDeviceInfo::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdeviceinfo.h non plain false false bool [0xc82259b600] } +&{operator= QBluetoothDeviceInfo::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdeviceinfo.h non plain false false QBluetoothDeviceInfo & [0xc82259bac0] } +&{operator== QBluetoothDeviceInfo::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdeviceinfo.h non plain false false bool [0xc82259bee0] } +&{rssi QBluetoothDeviceInfo::rssi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdeviceinfo.h non plain false false qint16 [] } +&{serviceClasses QBluetoothDeviceInfo::serviceClasses commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdeviceinfo.h non plain false false ServiceClasses [] } +&{serviceUuids QBluetoothDeviceInfo::serviceUuids commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdeviceinfo.h non plain false false QList [0xc8221bc660] } +&{serviceUuidsCompleteness QBluetoothDeviceInfo::serviceUuidsCompleteness commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdeviceinfo.h non plain false false DataCompleteness [] } +&{setCached QBluetoothDeviceInfo::setCached commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdeviceinfo.h non plain false false void [0xc8221bcbe0] } +&{setCoreConfigurations QBluetoothDeviceInfo::setCoreConfigurations commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdeviceinfo.h non plain false false void [0xc8221bce00] } +&{setDeviceUuid QBluetoothDeviceInfo::setDeviceUuid commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdeviceinfo.h non plain false false void [0xc8221bcfa0] } +&{setRssi QBluetoothDeviceInfo::setRssi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdeviceinfo.h non plain false false void [0xc8221bd1e0] } +&{setServiceUuids QBluetoothDeviceInfo::setServiceUuids commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdeviceinfo.h non plain false false void [0xc8221bd3c0 0xc8221bd4c0] } +&{~QBluetoothDeviceInfo QBluetoothDeviceInfo::~QBluetoothDeviceInfo commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothdeviceinfo.h non destructor false false [] } +######################################## ENUMS ######################################## +&{CoreConfiguration QBluetoothDeviceInfo::CoreConfiguration commendable public QBluetoothDeviceInfo::CoreConfigurations [0xc821b2bd80 0xc821b2bf40 0xc821c3e100 0xc821c3e2c0]} +&{DataCompleteness QBluetoothDeviceInfo::DataCompleteness commendable public [0xc821c3e5a0 0xc821c3e760 0xc821c3e860]} +&{MajorDeviceClass QBluetoothDeviceInfo::MajorDeviceClass commendable public [0xc821c3ec20 0xc821c3ee60 0xc821c3ef00 0xc821c3f040 0xc821c3f200 0xc821c3f2e0 0xc821c3f460 0xc821c3f5e0 0xc821c3f760 0xc821c3f940 0xc821c3fa20]} +&{MinorAudioVideoClass QBluetoothDeviceInfo::MinorAudioVideoClass commendable public [0xc821c3ff60 0xc821c9a0a0 0xc821c9a240 0xc821c9a380 0xc821c9a4a0 0xc821c9a5a0 0xc821c9a720 0xc821c9a860 0xc821c9a9e0 0xc821c9aaa0 0xc821c9abc0 0xc821c9ad00 0xc821c9ae20 0xc821c9aee0 0xc821c9b020 0xc821c9b1e0 0xc821c9b380]} +&{MinorComputerClass QBluetoothDeviceInfo::MinorComputerClass commendable public [0xc821c9b760 0xc821c9b8a0 0xc821c9b9e0 0xc821c9bac0 0xc821c9bbc0 0xc821c9bda0 0xc821c9be80]} +&{MinorHealthClass QBluetoothDeviceInfo::MinorHealthClass commendable public [0xc821cea160 0xc821cea2c0 0xc821cea4a0 0xc821cea680 0xc821cea8e0 0xc821ceaa80 0xc821ceac20 0xc821ceade0]} +&{MinorImagingClass QBluetoothDeviceInfo::MinorImagingClass commendable public [0xc821ceb1e0 0xc821ceb3e0 0xc821ceb460 0xc821ceb5a0 0xc821ceb740]} +&{MinorMiscellaneousClass QBluetoothDeviceInfo::MinorMiscellaneousClass commendable public [0xc821cebaa0]} +&{MinorNetworkClass QBluetoothDeviceInfo::MinorNetworkClass commendable public [0xc821cebf60 0xc8226b00e0 0xc8226b0240 0xc8226b03c0 0xc8226b0520 0xc8226b06a0 0xc8226b0800 0xc8226b08e0]} +&{MinorPeripheralClass QBluetoothDeviceInfo::MinorPeripheralClass commendable public [0xc8226b0c20 0xc8226b0d60 0xc8226b0ee0 0xc8226b1020 0xc8226b1100 0xc8226b1280 0xc8226b1420 0xc8226b1560 0xc8226b1720 0xc8226b1860]} +&{MinorPhoneClass QBluetoothDeviceInfo::MinorPhoneClass commendable public [0xc8226b1b20 0xc8226b1c40 0xc8226b1ce0 0xc8226b1de0 0xc8226b1ee0 0xc821d30020]} +&{MinorToyClass QBluetoothDeviceInfo::MinorToyClass commendable public [0xc821d30200 0xc821d302c0 0xc821d30340 0xc821d303e0 0xc821d304a0 0xc821d30520]} +&{MinorWearableClass QBluetoothDeviceInfo::MinorWearableClass commendable public [0xc821d307a0 0xc821d308a0 0xc821d30960 0xc821d30a00 0xc821d30ac0 0xc821d30b60]} +&{ServiceClass QBluetoothDeviceInfo::ServiceClass commendable public QBluetoothDeviceInfo::ServiceClasses [0xc821d30d00 0xc821d30dc0 0xc821d30ec0 0xc821d30fe0 0xc821d310a0 0xc821d31160 0xc821d31240 0xc821d312c0 0xc821d313c0 0xc821d314c0]} diff --git a/internal/binding/dump/QtBluetooth/QBluetoothHostInfo.txt b/internal/binding/dump/QtBluetooth/QBluetoothHostInfo.txt new file mode 100755 index 00000000..53af3b96 --- /dev/null +++ b/internal/binding/dump/QtBluetooth/QBluetoothHostInfo.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{QBluetoothHostInfo QBluetoothHostInfo::QBluetoothHostInfo commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothhostinfo.h non constructor false false [] } +&{QBluetoothHostInfo QBluetoothHostInfo::QBluetoothHostInfo commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothhostinfo.h non constructor false true 2 [0xc8223708a0] } +&{address QBluetoothHostInfo::address commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothhostinfo.h non plain false false QBluetoothAddress [] } +&{name QBluetoothHostInfo::name commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothhostinfo.h non plain false false QString [] } +&{operator!= QBluetoothHostInfo::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothhostinfo.h non plain false false bool [0xc822370fe0] } +&{operator= QBluetoothHostInfo::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothhostinfo.h non plain false false QBluetoothHostInfo & [0xc822371400] } +&{operator== QBluetoothHostInfo::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothhostinfo.h non plain false false bool [0xc822371720] } +&{setAddress QBluetoothHostInfo::setAddress commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothhostinfo.h non plain false false void [0xc8223719e0] } +&{setName QBluetoothHostInfo::setName commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothhostinfo.h non plain false false void [0xc822371cc0] } +&{~QBluetoothHostInfo QBluetoothHostInfo::~QBluetoothHostInfo commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothhostinfo.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtBluetooth/QBluetoothLocalDevice.txt b/internal/binding/dump/QtBluetooth/QBluetoothLocalDevice.txt new file mode 100755 index 00000000..81ceeaaa --- /dev/null +++ b/internal/binding/dump/QtBluetooth/QBluetoothLocalDevice.txt @@ -0,0 +1,26 @@ +######################################## FUNCTIONS ######################################## +&{deviceConnected QBluetoothLocalDevice::deviceConnected commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothlocaldevice.h non signal false false void [0xc822cbd560] } +&{deviceDisconnected QBluetoothLocalDevice::deviceDisconnected commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothlocaldevice.h non signal false false void [0xc822cbd940] } +&{error QBluetoothLocalDevice::error commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothlocaldevice.h non signal false false void [0xc822cbdc40] } +&{hostModeStateChanged QBluetoothLocalDevice::hostModeStateChanged commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothlocaldevice.h non signal false false void [0xc822cbdf00] } +&{pairingDisplayConfirmation QBluetoothLocalDevice::pairingDisplayConfirmation commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothlocaldevice.h non signal false false void [0xc822bc8260 0xc822bc8360] } +&{pairingDisplayPinCode QBluetoothLocalDevice::pairingDisplayPinCode commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothlocaldevice.h non signal false false void [0xc822bc86a0 0xc822bc87a0] } +&{pairingFinished QBluetoothLocalDevice::pairingFinished commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothlocaldevice.h non signal false false void [0xc822bc8b00 0xc822bc8d20] } +&{isValid QBluetoothLocalDevice::isValid commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothlocaldevice_osx.mm non plain false false bool [] } +&{~QBluetoothLocalDevice QBluetoothLocalDevice::~QBluetoothLocalDevice commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothlocaldevice_osx.mm impure destructor false false [] } +&{QBluetoothLocalDevice QBluetoothLocalDevice::QBluetoothLocalDevice commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothlocaldevice_qnx.cpp non constructor false false [0xc822bc94a0] } +&{QBluetoothLocalDevice QBluetoothLocalDevice::QBluetoothLocalDevice commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothlocaldevice_qnx.cpp non constructor false true 2 [0xc822bc9820 0xc822bc9980] } +&{address QBluetoothLocalDevice::address commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothlocaldevice_qnx.cpp non plain false false QBluetoothAddress [] } +&{allDevices QBluetoothLocalDevice::allDevices commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothlocaldevice_qnx.cpp non plain true false QList [] } +&{connectedDevices QBluetoothLocalDevice::connectedDevices commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothlocaldevice_qnx.cpp non plain false false QList [] } +&{hostMode QBluetoothLocalDevice::hostMode commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothlocaldevice_qnx.cpp non plain false false HostMode [] } +&{name QBluetoothLocalDevice::name commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothlocaldevice_qnx.cpp non plain false false QString [] } +&{pairingConfirmation QBluetoothLocalDevice::pairingConfirmation commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothlocaldevice_qnx.cpp non slot false false void [0xc821f8c420] } +&{pairingStatus QBluetoothLocalDevice::pairingStatus commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothlocaldevice_qnx.cpp non plain false false Pairing [0xc821f8c660] } +&{powerOn QBluetoothLocalDevice::powerOn commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothlocaldevice_qnx.cpp non plain false false void [] } +&{requestPairing QBluetoothLocalDevice::requestPairing commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothlocaldevice_qnx.cpp non plain false false void [0xc821f8ca20 0xc821f8cae0] } +&{setHostMode QBluetoothLocalDevice::setHostMode commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothlocaldevice_qnx.cpp non plain false false void [0xc821f8cd00] } +######################################## ENUMS ######################################## +&{Error QBluetoothLocalDevice::Error commendable public [0xc822cbc840 0xc822cbc8e0 0xc822cbc9a0]} +&{HostMode QBluetoothLocalDevice::HostMode commendable public [0xc822cbcc00 0xc822cbcc80 0xc822cbcd80 0xc822cbce40]} +&{Pairing QBluetoothLocalDevice::Pairing commendable public [0xc822cbd120 0xc822cbd200 0xc822cbd2a0]} diff --git a/internal/binding/dump/QtBluetooth/QBluetoothServer.txt b/internal/binding/dump/QtBluetooth/QBluetoothServer.txt new file mode 100755 index 00000000..b61ac0e7 --- /dev/null +++ b/internal/binding/dump/QtBluetooth/QBluetoothServer.txt @@ -0,0 +1,21 @@ +######################################## FUNCTIONS ######################################## +&{QBluetoothServer QBluetoothServer::QBluetoothServer commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserver.h non constructor false false [0xc822dd92a0 0xc822dd9480] } +&{error QBluetoothServer::error commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserver.h non signal false true 2 void [0xc822dd9920] } +&{newConnection QBluetoothServer::newConnection commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserver.h non signal false false void [] } +&{error QBluetoothServer::error commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserver_osx.mm non plain false false Error [] } +&{isListening QBluetoothServer::isListening commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserver_osx.mm non plain false false bool [] } +&{listen QBluetoothServer::listen commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserver_osx.mm non plain false true 2 QBluetoothServiceInfo [0xc822e2e760 0xc822e2e8c0] } +&{maxPendingConnections QBluetoothServer::maxPendingConnections commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserver_osx.mm non plain false false int [] } +&{serverType QBluetoothServer::serverType commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserver_osx.mm non plain false false QBluetoothServiceInfo::Protocol [] } +&{~QBluetoothServer QBluetoothServer::~QBluetoothServer commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserver_osx.mm non destructor false false [] } +&{close QBluetoothServer::close commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserver_qnx.cpp non plain false false void [] } +&{hasPendingConnections QBluetoothServer::hasPendingConnections commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserver_qnx.cpp non plain false false bool [] } +&{listen QBluetoothServer::listen commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserver_qnx.cpp non plain false false bool [0xc822e2ff60 0xc822eb40a0] } +&{nextPendingConnection QBluetoothServer::nextPendingConnection commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserver_qnx.cpp non plain false false QBluetoothSocket * [] } +&{securityFlags QBluetoothServer::securityFlags commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserver_qnx.cpp non plain false false QBluetooth::SecurityFlags [] } +&{serverAddress QBluetoothServer::serverAddress commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserver_qnx.cpp non plain false false QBluetoothAddress [] } +&{serverPort QBluetoothServer::serverPort commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserver_qnx.cpp non plain false false quint16 [] } +&{setMaxPendingConnections QBluetoothServer::setMaxPendingConnections commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserver_qnx.cpp non plain false false void [0xc822eb5400] } +&{setSecurityFlags QBluetoothServer::setSecurityFlags commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserver_qnx.cpp non plain false false void [0xc822eb5b80] } +######################################## ENUMS ######################################## +&{Error QBluetoothServer::Error commendable public [0xc822dd8540 0xc822dd8720 0xc822dd8820 0xc822dd8940 0xc822dd8be0 0xc822dd8e20]} diff --git a/internal/binding/dump/QtBluetooth/QBluetoothServiceDiscoveryAgent.txt b/internal/binding/dump/QtBluetooth/QBluetoothServiceDiscoveryAgent.txt new file mode 100755 index 00000000..9c463efe --- /dev/null +++ b/internal/binding/dump/QtBluetooth/QBluetoothServiceDiscoveryAgent.txt @@ -0,0 +1,23 @@ +######################################## FUNCTIONS ######################################## +&{canceled QBluetoothServiceDiscoveryAgent::canceled commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothservicediscoveryagent.h non signal false false void [] } +&{error QBluetoothServiceDiscoveryAgent::error commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothservicediscoveryagent.h non signal false true 2 void [0xc822f25d80] } +&{finished QBluetoothServiceDiscoveryAgent::finished commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothservicediscoveryagent.h non signal false false void [] } +&{serviceDiscovered QBluetoothServiceDiscoveryAgent::serviceDiscovered commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothservicediscoveryagent.h non signal false false void [0xc822f90400] } +&{QBluetoothServiceDiscoveryAgent QBluetoothServiceDiscoveryAgent::QBluetoothServiceDiscoveryAgent commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothservicediscoveryagent_osx.mm non constructor false false [0xc822f909c0] } +&{QBluetoothServiceDiscoveryAgent QBluetoothServiceDiscoveryAgent::QBluetoothServiceDiscoveryAgent commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothservicediscoveryagent_osx.mm non constructor false true 2 [0xc822f90e20 0xc822f91140] } +&{clear QBluetoothServiceDiscoveryAgent::clear commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothservicediscoveryagent_osx.mm non slot false false void [] } +&{discoveredServices QBluetoothServiceDiscoveryAgent::discoveredServices commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothservicediscoveryagent_osx.mm non plain false false QList [] } +&{error QBluetoothServiceDiscoveryAgent::error commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothservicediscoveryagent_osx.mm non plain false false Error [] } +&{errorString QBluetoothServiceDiscoveryAgent::errorString commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothservicediscoveryagent_osx.mm non plain false false QString [] } +&{isActive QBluetoothServiceDiscoveryAgent::isActive commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothservicediscoveryagent_osx.mm non plain false false bool [] } +&{remoteAddress QBluetoothServiceDiscoveryAgent::remoteAddress commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothservicediscoveryagent_osx.mm non plain false false QBluetoothAddress [] } +&{setRemoteAddress QBluetoothServiceDiscoveryAgent::setRemoteAddress commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothservicediscoveryagent_osx.mm non plain false false bool [0xc82301e280] } +&{setUuidFilter QBluetoothServiceDiscoveryAgent::setUuidFilter commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothservicediscoveryagent_osx.mm non plain false true 2 void [0xc82301e6e0] } +&{setUuidFilter QBluetoothServiceDiscoveryAgent::setUuidFilter commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothservicediscoveryagent_osx.mm non plain false false void [0xc82301eb20] } +&{start QBluetoothServiceDiscoveryAgent::start commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothservicediscoveryagent_osx.mm non slot false false void [0xc82301ee80] } +&{stop QBluetoothServiceDiscoveryAgent::stop commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothservicediscoveryagent_osx.mm non slot false false void [] } +&{uuidFilter QBluetoothServiceDiscoveryAgent::uuidFilter commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothservicediscoveryagent_osx.mm non plain false false QList [] } +&{~QBluetoothServiceDiscoveryAgent QBluetoothServiceDiscoveryAgent::~QBluetoothServiceDiscoveryAgent commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothservicediscoveryagent_osx.mm non destructor false false [] } +######################################## ENUMS ######################################## +&{DiscoveryMode QBluetoothServiceDiscoveryAgent::DiscoveryMode commendable public [0xc822f242e0 0xc822f244c0]} +&{Error QBluetoothServiceDiscoveryAgent::Error commendable public [0xc822f248a0 0xc822f24a80 0xc822f24d00 0xc822f24ea0 0xc822f25220]} diff --git a/internal/binding/dump/QtBluetooth/QBluetoothServiceInfo.txt b/internal/binding/dump/QtBluetooth/QBluetoothServiceInfo.txt new file mode 100755 index 00000000..9c97d3e4 --- /dev/null +++ b/internal/binding/dump/QtBluetooth/QBluetoothServiceInfo.txt @@ -0,0 +1,38 @@ +######################################## FUNCTIONS ######################################## +&{serviceAvailability QBluetoothServiceInfo::serviceAvailability commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo.h non plain false false quint8 [] } +&{serviceDescription QBluetoothServiceInfo::serviceDescription commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo.h non plain false false QString [] } +&{serviceName QBluetoothServiceInfo::serviceName commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo.h non plain false false QString [] } +&{serviceProvider QBluetoothServiceInfo::serviceProvider commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo.h non plain false false QString [] } +&{serviceUuid QBluetoothServiceInfo::serviceUuid commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo.h non plain false false QBluetoothUuid [] } +&{setAttribute QBluetoothServiceInfo::setAttribute commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo.h non plain false true 4 void [0xc823115740 0xc823115800] } +&{setAttribute QBluetoothServiceInfo::setAttribute commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo.h non plain false true 3 void [0xc823115b40 0xc823115cc0] } +&{setAttribute QBluetoothServiceInfo::setAttribute commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo.h non plain false true 2 void [0xc8231ba020 0xc8231ba200] } +&{setServiceAvailability QBluetoothServiceInfo::setServiceAvailability commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo.h non plain false false void [0xc8231ba4e0] } +&{setServiceDescription QBluetoothServiceInfo::setServiceDescription commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo.h non plain false false void [0xc8231ba860] } +&{setServiceName QBluetoothServiceInfo::setServiceName commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo.h non plain false false void [0xc8231ba9e0] } +&{setServiceProvider QBluetoothServiceInfo::setServiceProvider commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo.h non plain false false void [0xc8231badc0] } +&{setServiceUuid QBluetoothServiceInfo::setServiceUuid commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo.h non plain false false void [0xc8231bb080] } +&{QBluetoothServiceInfo QBluetoothServiceInfo::QBluetoothServiceInfo commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo_osx.mm non constructor false false [] } +&{QBluetoothServiceInfo QBluetoothServiceInfo::QBluetoothServiceInfo commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo_osx.mm non constructor false true 2 [0xc8231bb900] } +&{attribute QBluetoothServiceInfo::attribute commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo_osx.mm non plain false false QVariant [0xc8231bbda0] } +&{attributes QBluetoothServiceInfo::attributes commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo_osx.mm non plain false false QList [] } +&{contains QBluetoothServiceInfo::contains commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo_osx.mm non plain false false bool [0xc823288260] } +&{device QBluetoothServiceInfo::device commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo_osx.mm non plain false false QBluetoothDeviceInfo [] } +&{isComplete QBluetoothServiceInfo::isComplete commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo_osx.mm non plain false false bool [] } +&{isRegistered QBluetoothServiceInfo::isRegistered commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo_osx.mm non plain false false bool [] } +&{isValid QBluetoothServiceInfo::isValid commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo_osx.mm non plain false false bool [] } +&{operator= QBluetoothServiceInfo::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo_osx.mm non plain false false QBluetoothServiceInfo & [0xc823288e60] } +&{protocolDescriptor QBluetoothServiceInfo::protocolDescriptor commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo_osx.mm non plain false false QBluetoothServiceInfo::Sequence [0xc823289480] } +&{protocolServiceMultiplexer QBluetoothServiceInfo::protocolServiceMultiplexer commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo_osx.mm non plain false false int [] } +&{registerService QBluetoothServiceInfo::registerService commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo_osx.mm non plain false false bool [0xc823289a00] } +&{removeAttribute QBluetoothServiceInfo::removeAttribute commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo_osx.mm non plain false false void [0xc823289e00] } +&{serverChannel QBluetoothServiceInfo::serverChannel commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo_osx.mm non plain false false int [] } +&{serviceClassUuids QBluetoothServiceInfo::serviceClassUuids commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo_osx.mm non plain false false QList [] } +&{setAttribute QBluetoothServiceInfo::setAttribute commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo_osx.mm non plain false false void [0xc823338480 0xc8233385e0] } +&{setDevice QBluetoothServiceInfo::setDevice commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo_osx.mm non plain false false void [0xc823338920] } +&{socketProtocol QBluetoothServiceInfo::socketProtocol commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo_osx.mm non plain false false QBluetoothServiceInfo::Protocol [] } +&{unregisterService QBluetoothServiceInfo::unregisterService commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo_osx.mm non plain false false bool [] } +&{~QBluetoothServiceInfo QBluetoothServiceInfo::~QBluetoothServiceInfo commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothserviceinfo_osx.mm non destructor false false [] } +######################################## ENUMS ######################################## +&{AttributeId QBluetoothServiceInfo::AttributeId commendable public [0xc8230b67e0 0xc8230b6940 0xc8230b6a80 0xc8230b6c20 0xc8230b6ec0 0xc8230b7060 0xc8230b71a0 0xc8230b7400 0xc8230b7600 0xc8230b78c0 0xc8230b7ae0 0xc8230b7be0 0xc8230b7e00 0xc8230b7f00 0xc823114100 0xc823114240 0xc823114420 0xc8231145e0]} +&{Protocol QBluetoothServiceInfo::Protocol commendable public [0xc823114980 0xc823114aa0 0xc823114c40]} diff --git a/internal/binding/dump/QtBluetooth/QBluetoothSocket.txt b/internal/binding/dump/QtBluetooth/QBluetoothSocket.txt new file mode 100755 index 00000000..39ba3702 --- /dev/null +++ b/internal/binding/dump/QtBluetooth/QBluetoothSocket.txt @@ -0,0 +1,38 @@ +######################################## FUNCTIONS ######################################## +&{connected QBluetoothSocket::connected commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket.h non signal false false void [] } +&{disconnected QBluetoothSocket::disconnected commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket.h non signal false false void [] } +&{error QBluetoothSocket::error commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket.h non signal false true 2 void [0xc8233ef9a0] } +&{stateChanged QBluetoothSocket::stateChanged commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket.h non signal false false void [0xc8233efe40] } +&{QBluetoothSocket QBluetoothSocket::QBluetoothSocket commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm non constructor false false [0xc82340c640 0xc82340c800] } +&{QBluetoothSocket QBluetoothSocket::QBluetoothSocket commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm non constructor false true 2 [0xc82340cc00] } +&{abort QBluetoothSocket::abort commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm non plain false false void [] } +&{bytesAvailable QBluetoothSocket::bytesAvailable commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm impure plain false false qint64 [] } +&{bytesToWrite QBluetoothSocket::bytesToWrite commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm impure plain false false qint64 [] } +&{canReadLine QBluetoothSocket::canReadLine commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm impure plain false false bool [] } +&{close QBluetoothSocket::close commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm impure plain false false void [] } +&{connectToService QBluetoothSocket::connectToService commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm non plain false true 2 void [0xc82340da80 0xc82340dc40 0xc82340dd60] } +&{connectToService QBluetoothSocket::connectToService commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm non plain false true 3 void [0xc82340dfe0 0xc82347e0c0 0xc82347e160] } +&{connectToService QBluetoothSocket::connectToService commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm non plain false false void [0xc82347e300 0xc82347e3e0] } +&{disconnectFromService QBluetoothSocket::disconnectFromService commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm non plain false false void [] } +&{doDeviceDiscovery QBluetoothSocket::doDeviceDiscovery commendable protected /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm non plain false false void [0xc82347e8e0 0xc82347e9e0] } +&{error QBluetoothSocket::error commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm non plain false false SocketError [] } +&{errorString QBluetoothSocket::errorString commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm non plain false false QString [] } +&{isSequential QBluetoothSocket::isSequential commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm impure plain false false bool [] } +&{localAddress QBluetoothSocket::localAddress commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm non plain false false QBluetoothAddress [] } +&{localName QBluetoothSocket::localName commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm non plain false false QString [] } +&{localPort QBluetoothSocket::localPort commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm non plain false false quint16 [] } +&{peerAddress QBluetoothSocket::peerAddress commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm non plain false false QBluetoothAddress [] } +&{peerName QBluetoothSocket::peerName commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm non plain false false QString [] } +&{peerPort QBluetoothSocket::peerPort commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm non plain false false quint16 [] } +&{readData QBluetoothSocket::readData commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm impure plain false false qint64 [0xc82347f860 0xc82347f8e0] } +&{setSocketDescriptor QBluetoothSocket::setSocketDescriptor commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm non plain false false bool [0xc82347fd40 0xc82347fde0 0xc82347fec0 0xc82347ff80] } +&{setSocketError QBluetoothSocket::setSocketError commendable protected /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm non plain false false void [0xc82384c1a0] } +&{setSocketState QBluetoothSocket::setSocketState commendable protected /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm non plain false false void [0xc82384c360] } +&{socketDescriptor QBluetoothSocket::socketDescriptor commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm non plain false false int [] } +&{socketType QBluetoothSocket::socketType commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm non plain false false QBluetoothServiceInfo::Protocol [] } +&{state QBluetoothSocket::state commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm non plain false false SocketState [] } +&{writeData QBluetoothSocket::writeData commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm impure plain false false qint64 [0xc82384c9c0 0xc82384ca80] } +&{~QBluetoothSocket QBluetoothSocket::~QBluetoothSocket commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothsocket_osx.mm impure destructor false false [] } +######################################## ENUMS ######################################## +&{SocketError QBluetoothSocket::SocketError commendable public [0xc8233396e0 0xc8233398a0 0xc823339a40 0xc823339c40 0xc823339ea0 0xc8233ee020 0xc8233ee1e0]} +&{SocketState QBluetoothSocket::SocketState commendable public [0xc8233ee520 0xc8233ee720 0xc8233ee940 0xc8233eeac0 0xc8233eecc0 0xc8233eee20 0xc8233eefe0]} diff --git a/internal/binding/dump/QtBluetooth/QBluetoothTransferManager.txt b/internal/binding/dump/QtBluetooth/QBluetoothTransferManager.txt new file mode 100755 index 00000000..b66cbc99 --- /dev/null +++ b/internal/binding/dump/QtBluetooth/QBluetoothTransferManager.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{put QBluetoothTransferManager::put commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothtransfermanager.cpp non plain false false QBluetoothTransferReply * [0xc82384cf40 0xc82384cfc0] } +&{QBluetoothTransferManager QBluetoothTransferManager::QBluetoothTransferManager commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothtransfermanager.h non constructor false false [0xc82384d1e0] } +&{finished QBluetoothTransferManager::finished commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothtransfermanager.h non signal false false void [0xc82384d380] } +&{~QBluetoothTransferManager QBluetoothTransferManager::~QBluetoothTransferManager commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothtransfermanager.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtBluetooth/QBluetoothTransferReply.txt b/internal/binding/dump/QtBluetooth/QBluetoothTransferReply.txt new file mode 100755 index 00000000..702d3372 --- /dev/null +++ b/internal/binding/dump/QtBluetooth/QBluetoothTransferReply.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{abort QBluetoothTransferReply::abort commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothtransferreply.cpp non slot false false void [] } +&{setManager QBluetoothTransferReply::setManager commendable protected /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothtransferreply.cpp non plain false false void [0xc82384d8e0] } +&{setRequest QBluetoothTransferReply::setRequest commendable protected /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothtransferreply.cpp non plain false false void [0xc82384daa0] } +&{QBluetoothTransferReply QBluetoothTransferReply::QBluetoothTransferReply commendable protected /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothtransferreply.h non constructor false false [0xc822502520] } +&{error QBluetoothTransferReply::error commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothtransferreply.h non signal false true 2 void [0xc822502760] } +&{error QBluetoothTransferReply::error commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothtransferreply.h pure plain false false TransferError [] } +&{errorString QBluetoothTransferReply::errorString commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothtransferreply.h pure plain false false QString [] } +&{finished QBluetoothTransferReply::finished commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothtransferreply.h non signal false false void [0xc822502ba0] } +&{isFinished QBluetoothTransferReply::isFinished commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothtransferreply.h pure plain false false bool [] } +&{isRunning QBluetoothTransferReply::isRunning commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothtransferreply.h pure plain false false bool [] } +&{manager QBluetoothTransferReply::manager commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothtransferreply.h non plain false false QBluetoothTransferManager * [] } +&{request QBluetoothTransferReply::request commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothtransferreply.h non plain false false QBluetoothTransferRequest [] } +&{transferProgress QBluetoothTransferReply::transferProgress commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothtransferreply.h non signal false false void [0xc822503220 0xc8225032a0] } +&{~QBluetoothTransferReply QBluetoothTransferReply::~QBluetoothTransferReply commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothtransferreply.h non destructor false false [] } +######################################## ENUMS ######################################## +&{TransferError QBluetoothTransferReply::TransferError commendable public [0xc82384dcc0 0xc82384dd60 0xc82384de60 0xc82384df80 0xc822502080 0xc822502160 0xc822502280 0xc822502360]} diff --git a/internal/binding/dump/QtBluetooth/QBluetoothTransferRequest.txt b/internal/binding/dump/QtBluetooth/QBluetoothTransferRequest.txt new file mode 100755 index 00000000..ec1c5053 --- /dev/null +++ b/internal/binding/dump/QtBluetooth/QBluetoothTransferRequest.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{QBluetoothTransferRequest QBluetoothTransferRequest::QBluetoothTransferRequest commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothtransferrequest.h non constructor false false [0xc822503ee0] } +&{QBluetoothTransferRequest QBluetoothTransferRequest::QBluetoothTransferRequest commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothtransferrequest.h non constructor false true 2 [0xc8224da140] } +&{address QBluetoothTransferRequest::address commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothtransferrequest.h non plain false false QBluetoothAddress [] } +&{attribute QBluetoothTransferRequest::attribute commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothtransferrequest.h non plain false false QVariant [0xc8224da400 0xc8224da4e0] } +&{operator!= QBluetoothTransferRequest::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothtransferrequest.h non plain false false bool [0xc8224da6a0] } +&{operator= QBluetoothTransferRequest::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothtransferrequest.h non plain false false QBluetoothTransferRequest & [0xc8224da900] } +&{operator== QBluetoothTransferRequest::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothtransferrequest.h non plain false false bool [0xc8224daa60] } +&{setAttribute QBluetoothTransferRequest::setAttribute commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothtransferrequest.h non plain false false void [0xc8224dac20 0xc8224dacc0] } +&{~QBluetoothTransferRequest QBluetoothTransferRequest::~QBluetoothTransferRequest commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothtransferrequest.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Attribute QBluetoothTransferRequest::Attribute commendable public [0xc822503880 0xc8225039a0 0xc822503a40 0xc822503b00 0xc822503bc0]} diff --git a/internal/binding/dump/QtBluetooth/QBluetoothUuid.txt b/internal/binding/dump/QtBluetooth/QBluetoothUuid.txt new file mode 100755 index 00000000..6a65024d --- /dev/null +++ b/internal/binding/dump/QtBluetooth/QBluetoothUuid.txt @@ -0,0 +1,27 @@ +######################################## FUNCTIONS ######################################## +&{QBluetoothUuid QBluetoothUuid::QBluetoothUuid commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothuuid.h non constructor false false [] } +&{QBluetoothUuid QBluetoothUuid::QBluetoothUuid commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothuuid.h non constructor false true 4 [0xc82346fec0] } +&{QBluetoothUuid QBluetoothUuid::QBluetoothUuid commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothuuid.h non constructor false true 5 [0xc8238580a0] } +&{QBluetoothUuid QBluetoothUuid::QBluetoothUuid commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothuuid.h non constructor false true 2 [0xc8238582e0] } +&{QBluetoothUuid QBluetoothUuid::QBluetoothUuid commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothuuid.h non constructor false true 3 [0xc823858500] } +&{QBluetoothUuid QBluetoothUuid::QBluetoothUuid commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothuuid.h non constructor false true 10 [0xc823858740] } +&{QBluetoothUuid QBluetoothUuid::QBluetoothUuid commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothuuid.h non constructor false true 9 [0xc8238589c0] } +&{QBluetoothUuid QBluetoothUuid::QBluetoothUuid commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothuuid.h non constructor false true 11 [0xc823858c00] } +&{QBluetoothUuid QBluetoothUuid::QBluetoothUuid commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothuuid.h non constructor false true 8 [0xc823858e60] } +&{QBluetoothUuid QBluetoothUuid::QBluetoothUuid commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothuuid.h non constructor false true 6 [0xc823859080] } +&{QBluetoothUuid QBluetoothUuid::QBluetoothUuid commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothuuid.h non constructor false true 7 [0xc8238592a0] } +&{characteristicToString QBluetoothUuid::characteristicToString commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothuuid.h non plain true false QString [0xc823859520] } +&{descriptorToString QBluetoothUuid::descriptorToString commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothuuid.h non plain true false QString [0xc823859740] } +&{minimumSize QBluetoothUuid::minimumSize commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothuuid.h non plain false false int [] } +&{operator== QBluetoothUuid::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothuuid.h non plain false false bool [0xc823859b00] } +&{protocolToString QBluetoothUuid::protocolToString commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothuuid.h non plain true false QString [0xc823859d60] } +&{serviceClassToString QBluetoothUuid::serviceClassToString commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothuuid.h non plain true false QString [0xc823859f60] } +&{toUInt128 QBluetoothUuid::toUInt128 commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothuuid.h non plain false false quint128 [] } +&{toUInt16 QBluetoothUuid::toUInt16 commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothuuid.h non plain false false quint16 [0xc823478240] } +&{toUInt32 QBluetoothUuid::toUInt32 commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothuuid.h non plain false false quint32 [0xc823478420] } +&{~QBluetoothUuid QBluetoothUuid::~QBluetoothUuid commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qbluetoothuuid.h non destructor false false [] } +######################################## ENUMS ######################################## +&{CharacteristicType QBluetoothUuid::CharacteristicType commendable public [0xc8224db1c0 0xc8224db240 0xc8224db2e0 0xc8224db3e0 0xc8224db520 0xc8224db5a0 0xc8224db680 0xc8224db720 0xc8224db7c0 0xc8224db880 0xc8224db940 0xc8224db9e0 0xc8224dba60 0xc8224dbb20 0xc8224dbc20 0xc8224dbce0 0xc8224dbd80 0xc8224dbe00 0xc8224dbea0 0xc8224dbf80 0xc8231e4040 0xc8231e40e0 0xc8231e41a0 0xc8231e4240 0xc8231e4320 0xc8231e4400 0xc8231e4540 0xc8231e4620 0xc8231e4700 0xc8231e47e0 0xc8231e48e0 0xc8231e49e0 0xc8231e4b40 0xc8231e4ca0 0xc8231e4d80 0xc8231e4e40 0xc8231e4ec0 0xc8231e4f80 0xc8231e5060 0xc8231e5140 0xc8231e5280 0xc8231e5380 0xc8231e5480 0xc8231e55a0 0xc8231e56a0 0xc8231e57a0 0xc8231e5880 0xc8231e5940 0xc8231e59e0 0xc8231e5aa0 0xc8231e5b40 0xc8231e5c00 0xc8231e5ca0 0xc8231e5d80 0xc8231e5e40 0xc8231e5ee0 0xc8231e5fe0 0xc82237c0e0 0xc82237c1a0 0xc82237c280 0xc82237c300 0xc82237c380 0xc82237c460 0xc82237c500 0xc82237c640 0xc82237c6c0 0xc82237c760 0xc82237c880 0xc82237c900 0xc82237c9a0 0xc82237ca20 0xc82237caa0 0xc82237cb40 0xc82237cbe0 0xc82237ccc0 0xc82237cda0 0xc82237ce80 0xc82237cf40 0xc82237cfc0 0xc82237d040 0xc82237d0c0 0xc82237d140 0xc82237d1c0 0xc82237d240 0xc82237d2c0 0xc82237d340 0xc82237d3c0 0xc82237d460 0xc82237d540 0xc82237d620 0xc82237d6e0 0xc82237d780 0xc82237d840 0xc82237d8c0 0xc82237d940 0xc82237d9c0 0xc82237da40 0xc82237dac0 0xc82237db60 0xc82237dc40 0xc82237dd00 0xc82237dd80 0xc82237de20 0xc82237df00 0xc82237dfe0 0xc8234500c0 0xc823450180 0xc823450220 0xc8234502e0 0xc823450380 0xc823450460 0xc823450520 0xc8234505c0 0xc823450680 0xc823450700 0xc823450780 0xc823450800 0xc823450880 0xc823450920 0xc8234509e0 0xc823450a60 0xc823450b00 0xc823450be0 0xc823450ca0 0xc823450d40 0xc823450e00 0xc823450ea0 0xc823450f60 0xc823451020 0xc823451100 0xc8234511e0 0xc8234512c0 0xc8234513a0 0xc823451480 0xc823451580 0xc823451640 0xc8234516e0]} +&{DescriptorType QBluetoothUuid::DescriptorType commendable public [0xc8234518e0 0xc8234519c0 0xc823451aa0 0xc823451b60 0xc823451c00 0xc823451ca0 0xc823451d80 0xc823451e40 0xc823451f00 0xc823451fc0 0xc82385e040 0xc82385e0e0 0xc82385e1c0]} +&{ProtocolUuid QBluetoothUuid::ProtocolUuid commendable public [0xc82385e3c0 0xc82385e440 0xc82385e4c0 0xc82385e5a0 0xc82385e680 0xc82385e700 0xc82385e7c0 0xc82385e860 0xc82385e940 0xc82385e9c0 0xc82385eaa0 0xc82385eb20 0xc82385eba0 0xc82385ec20 0xc82385ed00 0xc82385ede0 0xc82385eee0 0xc82385f040 0xc82385f120 0xc82385f1c0 0xc82385f280 0xc82385f340 0xc82385f3e0 0xc82385f500 0xc82385f5c0]} +&{ServiceClassUuid QBluetoothUuid::ServiceClassUuid commendable public [0xc82385f7e0 0xc82385f900 0xc82385fa40 0xc82385fb00 0xc82385fc20 0xc82385fce0 0xc82385fd60 0xc82385fde0 0xc82385fe80 0xc82385ff00 0xc82385ffa0 0xc82386c060 0xc82386c100 0xc82386c1e0 0xc82386c2c0 0xc82386c400 0xc82386c500 0xc82386c5e0 0xc82386c660 0xc82386c6e0 0xc82386c760 0xc82386c7e0 0xc82386c880 0xc82386c940 0xc82386c9c0 0xc82386ca60 0xc82386cb60 0xc82386cc20 0xc82386cd40 0xc82386ce20 0xc82386cea0 0xc82386cf20 0xc82386cfc0 0xc82386d060 0xc82386d160 0xc82386d220 0xc82386d300 0xc82386d380 0xc82386d420 0xc82386d520 0xc82386d600 0xc82386d680 0xc82386d720 0xc82386d800 0xc82386d8e0 0xc82386d9a0 0xc82386da20 0xc82386daa0 0xc82386db20 0xc82386dbc0 0xc82386dc80 0xc82386dd00 0xc82386dd80 0xc82386de20 0xc82386df00 0xc82386dfc0 0xc82346e040 0xc82346e120 0xc82346e1c0 0xc82346e260 0xc82346e320 0xc82346e400 0xc82346e480 0xc82346e500 0xc82346e600 0xc82346e680 0xc82346e700 0xc82346e780 0xc82346e820 0xc82346e960 0xc82346ea40 0xc82346eb60 0xc82346ec40 0xc82346ed80 0xc82346ee80 0xc82346ef40 0xc82346f060 0xc82346f0e0 0xc82346f1c0 0xc82346f2a0 0xc82346f3c0 0xc82346f480 0xc82346f5a0 0xc82346f660 0xc82346f700 0xc82346f800 0xc82346f8c0 0xc82346f940 0xc82346f9c0 0xc82346fa60 0xc82346fb40]} diff --git a/internal/binding/dump/QtBluetooth/QLowEnergyCharacteristic.txt b/internal/binding/dump/QtBluetooth/QLowEnergyCharacteristic.txt new file mode 100755 index 00000000..2ee04c6f --- /dev/null +++ b/internal/binding/dump/QtBluetooth/QLowEnergyCharacteristic.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{QLowEnergyCharacteristic QLowEnergyCharacteristic::QLowEnergyCharacteristic commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycharacteristic.h non constructor false false [] } +&{QLowEnergyCharacteristic QLowEnergyCharacteristic::QLowEnergyCharacteristic commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycharacteristic.h non constructor false true 2 [0xc823479120] } +&{descriptor QLowEnergyCharacteristic::descriptor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycharacteristic.h non plain false false QLowEnergyDescriptor [0xc8234797a0] } +&{descriptors QLowEnergyCharacteristic::descriptors commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycharacteristic.h non plain false false QList [] } +&{handle QLowEnergyCharacteristic::handle commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycharacteristic.h non plain false false QLowEnergyHandle [] } +&{isValid QLowEnergyCharacteristic::isValid commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycharacteristic.h non plain false false bool [] } +&{name QLowEnergyCharacteristic::name commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycharacteristic.h non plain false false QString [] } +&{operator!= QLowEnergyCharacteristic::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycharacteristic.h non plain false false bool [0xc823479da0] } +&{operator= QLowEnergyCharacteristic::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycharacteristic.h non plain false false QLowEnergyCharacteristic & [0xc823479fc0] } +&{operator== QLowEnergyCharacteristic::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycharacteristic.h non plain false false bool [0xc823466180] } +&{properties QLowEnergyCharacteristic::properties commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycharacteristic.h non plain false false QLowEnergyCharacteristic::PropertyTypes [] } +&{uuid QLowEnergyCharacteristic::uuid commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycharacteristic.h non plain false false QBluetoothUuid [] } +&{value QLowEnergyCharacteristic::value commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycharacteristic.h non plain false false QByteArray [] } +&{~QLowEnergyCharacteristic QLowEnergyCharacteristic::~QLowEnergyCharacteristic commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycharacteristic.h non destructor false false [] } +######################################## ENUMS ######################################## +&{PropertyType QLowEnergyCharacteristic::PropertyType commendable public QLowEnergyCharacteristic::PropertyTypes [0xc823478800 0xc823478880 0xc823478920 0xc8234789a0 0xc823478ac0 0xc823478b40 0xc823478bc0 0xc823478c60 0xc823478d00]} diff --git a/internal/binding/dump/QtBluetooth/QLowEnergyController.txt b/internal/binding/dump/QtBluetooth/QLowEnergyController.txt new file mode 100755 index 00000000..88a92737 --- /dev/null +++ b/internal/binding/dump/QtBluetooth/QLowEnergyController.txt @@ -0,0 +1,26 @@ +######################################## FUNCTIONS ######################################## +&{connected QLowEnergyController::connected commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycontroller.h non signal false false void [] } +&{disconnected QLowEnergyController::disconnected commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycontroller.h non signal false false void [] } +&{discoveryFinished QLowEnergyController::discoveryFinished commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycontroller.h non signal false false void [] } +&{error QLowEnergyController::error commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycontroller.h non signal false true 2 void [0xc8234679c0] } +&{serviceDiscovered QLowEnergyController::serviceDiscovered commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycontroller.h non signal false false void [0xc823467c40] } +&{stateChanged QLowEnergyController::stateChanged commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycontroller.h non signal false false void [0xc823467e40] } +&{QLowEnergyController QLowEnergyController::QLowEnergyController commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycontroller_osx.mm non constructor false false [0xc8234b06e0 0xc8234b07a0] } +&{connectToDevice QLowEnergyController::connectToDevice commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycontroller_osx.mm non plain false false void [] } +&{createServiceObject QLowEnergyController::createServiceObject commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycontroller_osx.mm non plain false false QLowEnergyService * [0xc8234b0a80 0xc8234b0b60] } +&{disconnectFromDevice QLowEnergyController::disconnectFromDevice commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycontroller_osx.mm non plain false false void [] } +&{discoverServices QLowEnergyController::discoverServices commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycontroller_osx.mm non plain false false void [] } +&{error QLowEnergyController::error commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycontroller_osx.mm non plain false false Error [] } +&{errorString QLowEnergyController::errorString commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycontroller_osx.mm non plain false false QString [] } +&{localAddress QLowEnergyController::localAddress commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycontroller_osx.mm non plain false false QBluetoothAddress [] } +&{remoteAddress QLowEnergyController::remoteAddress commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycontroller_osx.mm non plain false false QBluetoothAddress [] } +&{remoteAddressType QLowEnergyController::remoteAddressType commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycontroller_osx.mm non plain false false RemoteAddressType [] } +&{remoteName QLowEnergyController::remoteName commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycontroller_osx.mm non plain false false QString [] } +&{services QLowEnergyController::services commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycontroller_osx.mm non plain false false QList [] } +&{setRemoteAddressType QLowEnergyController::setRemoteAddressType commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycontroller_osx.mm non plain false false void [0xc8234b17a0] } +&{state QLowEnergyController::state commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycontroller_osx.mm non plain false false ControllerState [] } +&{~QLowEnergyController QLowEnergyController::~QLowEnergyController commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergycontroller_osx.mm non destructor false false [] } +######################################## ENUMS ######################################## +&{ControllerState QLowEnergyController::ControllerState commendable public [0xc823466940 0xc8234669c0 0xc823466a40 0xc823466ac0 0xc823466b60 0xc823466be0]} +&{Error QLowEnergyController::Error commendable public [0xc823466e00 0xc823466ec0 0xc823466fa0 0xc823467080 0xc823467140 0xc823467200]} +&{RemoteAddressType QLowEnergyController::RemoteAddressType commendable public [0xc8234673c0 0xc823467440]} diff --git a/internal/binding/dump/QtBluetooth/QLowEnergyDescriptor.txt b/internal/binding/dump/QtBluetooth/QLowEnergyDescriptor.txt new file mode 100755 index 00000000..b4493ce6 --- /dev/null +++ b/internal/binding/dump/QtBluetooth/QLowEnergyDescriptor.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QLowEnergyDescriptor QLowEnergyDescriptor::QLowEnergyDescriptor commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergydescriptor.h non constructor false false [] } +&{QLowEnergyDescriptor QLowEnergyDescriptor::QLowEnergyDescriptor commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergydescriptor.h non constructor false true 2 [0xc8234b1ea0] } +&{handle QLowEnergyDescriptor::handle commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergydescriptor.h non plain false false QLowEnergyHandle [] } +&{isValid QLowEnergyDescriptor::isValid commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergydescriptor.h non plain false false bool [] } +&{name QLowEnergyDescriptor::name commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergydescriptor.h non plain false false QString [] } +&{operator!= QLowEnergyDescriptor::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergydescriptor.h non plain false false bool [0xc823488920] } +&{operator= QLowEnergyDescriptor::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergydescriptor.h non plain false false QLowEnergyDescriptor & [0xc823488c00] } +&{operator== QLowEnergyDescriptor::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergydescriptor.h non plain false false bool [0xc823488e60] } +&{type QLowEnergyDescriptor::type commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergydescriptor.h non plain false false QBluetoothUuid::DescriptorType [] } +&{uuid QLowEnergyDescriptor::uuid commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergydescriptor.h non plain false false QBluetoothUuid [] } +&{value QLowEnergyDescriptor::value commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergydescriptor.h non plain false false QByteArray [] } +&{~QLowEnergyDescriptor QLowEnergyDescriptor::~QLowEnergyDescriptor commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergydescriptor.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtBluetooth/QLowEnergyService.txt b/internal/binding/dump/QtBluetooth/QLowEnergyService.txt new file mode 100755 index 00000000..32f9adbe --- /dev/null +++ b/internal/binding/dump/QtBluetooth/QLowEnergyService.txt @@ -0,0 +1,29 @@ +######################################## FUNCTIONS ######################################## +&{characteristicChanged QLowEnergyService::characteristicChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergyservice.h non signal false false void [0xc82389d0e0 0xc82389d220] } +&{characteristicRead QLowEnergyService::characteristicRead commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergyservice.h non signal false false void [0xc82389d480 0xc82389d560] } +&{characteristicWritten QLowEnergyService::characteristicWritten commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergyservice.h non signal false false void [0xc82389d7a0 0xc82389d880] } +&{descriptorRead QLowEnergyService::descriptorRead commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergyservice.h non signal false false void [0xc82389da40 0xc82389db20] } +&{descriptorWritten QLowEnergyService::descriptorWritten commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergyservice.h non signal false false void [0xc82389dd60 0xc82389de40] } +&{error QLowEnergyService::error commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergyservice.h non signal false true 2 void [0xc82388e0a0] } +&{stateChanged QLowEnergyService::stateChanged commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergyservice.h non signal false false void [0xc82388e380] } +&{characteristic QLowEnergyService::characteristic commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergyservice_osx.mm non plain false false QLowEnergyCharacteristic [0xc82388e8a0] } +&{characteristics QLowEnergyService::characteristics commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergyservice_osx.mm non plain false false QList [] } +&{contains QLowEnergyService::contains commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergyservice_osx.mm non plain false false bool [0xc82388ec00] } +&{contains QLowEnergyService::contains commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergyservice_osx.mm non plain false true 2 bool [0xc82388ee20] } +&{discoverDetails QLowEnergyService::discoverDetails commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergyservice_osx.mm non plain false false void [] } +&{error QLowEnergyService::error commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergyservice_osx.mm non plain false false ServiceError [] } +&{includedServices QLowEnergyService::includedServices commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergyservice_osx.mm non plain false false QList [] } +&{readCharacteristic QLowEnergyService::readCharacteristic commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergyservice_osx.mm non plain false false void [0xc82388f2e0] } +&{readDescriptor QLowEnergyService::readDescriptor commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergyservice_osx.mm non plain false false void [0xc82388f4c0] } +&{serviceName QLowEnergyService::serviceName commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergyservice_osx.mm non plain false false QString [] } +&{serviceUuid QLowEnergyService::serviceUuid commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergyservice_osx.mm non plain false false QBluetoothUuid [] } +&{state QLowEnergyService::state commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergyservice_osx.mm non plain false false QLowEnergyService::ServiceState [] } +&{type QLowEnergyService::type commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergyservice_osx.mm non plain false false QLowEnergyService::ServiceTypes [] } +&{writeCharacteristic QLowEnergyService::writeCharacteristic commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergyservice_osx.mm non plain false false void [0xc82388fd00 0xc82388fe00 0xc82388fee0] } +&{writeDescriptor QLowEnergyService::writeDescriptor commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergyservice_osx.mm non plain false false void [0xc8234b2060 0xc8234b2160] } +&{~QLowEnergyService QLowEnergyService::~QLowEnergyService commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/bluetooth/qlowenergyservice_osx.mm non destructor false false [] } +######################################## ENUMS ######################################## +&{ServiceError QLowEnergyService::ServiceError commendable public [0xc823489c40 0xc823489cc0 0xc823489de0 0xc823489ec0 0xc82389c000 0xc82389c0a0 0xc82389c1a0]} +&{ServiceState QLowEnergyService::ServiceState commendable public [0xc82389c3e0 0xc82389c480 0xc82389c560 0xc82389c640]} +&{ServiceType QLowEnergyService::ServiceType commendable public QLowEnergyService::ServiceTypes [0xc82389c920 0xc82389c9a0]} +&{WriteMode QLowEnergyService::WriteMode commendable public [0xc82389cc20 0xc82389cd00]} diff --git a/internal/binding/dump/QtCore/QAbstractAnimation.txt b/internal/binding/dump/QtCore/QAbstractAnimation.txt new file mode 100755 index 00000000..3c60604e --- /dev/null +++ b/internal/binding/dump/QtCore/QAbstractAnimation.txt @@ -0,0 +1,32 @@ +######################################## FUNCTIONS ######################################## +&{currentLoop QAbstractAnimation::currentLoop commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qabstractanimation.cpp non plain false false int [] } +&{currentTime QAbstractAnimation::currentTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qabstractanimation.cpp non plain false false int [] } +&{direction QAbstractAnimation::direction commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qabstractanimation.cpp non plain false false Direction [] } +&{loopCount QAbstractAnimation::loopCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qabstractanimation.cpp non plain false false int [] } +&{setCurrentTime QAbstractAnimation::setCurrentTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qabstractanimation.cpp non slot false false void [0xc82000ffa0] } +&{setDirection QAbstractAnimation::setDirection commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qabstractanimation.cpp non plain false false void [0xc8200a41e0] } +&{setLoopCount QAbstractAnimation::setLoopCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qabstractanimation.cpp non plain false false void [0xc8200a43e0] } +&{state QAbstractAnimation::state commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qabstractanimation.cpp non plain false false State [] } +&{QAbstractAnimation QAbstractAnimation::QAbstractAnimation commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qabstractanimation.h non constructor false false [0xc8200a4fc0] } +&{currentLoopChanged QAbstractAnimation::currentLoopChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qabstractanimation.h non signal false false void [0xc8200a5440] } +&{currentLoopTime QAbstractAnimation::currentLoopTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qabstractanimation.h non plain false false int [] } +&{directionChanged QAbstractAnimation::directionChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qabstractanimation.h non signal false false void [0xc8200a5680] } +&{duration QAbstractAnimation::duration commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qabstractanimation.h pure plain false false int [] } +&{event QAbstractAnimation::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qabstractanimation.h impure plain false false bool [0xc8200a59e0] } +&{finished QAbstractAnimation::finished commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qabstractanimation.h non signal false false void [] } +&{group QAbstractAnimation::group commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qabstractanimation.h non plain false false QAnimationGroup * [] } +&{pause QAbstractAnimation::pause commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qabstractanimation.h non slot false false void [] } +&{resume QAbstractAnimation::resume commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qabstractanimation.h non slot false false void [] } +&{setPaused QAbstractAnimation::setPaused commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qabstractanimation.h non slot false false void [0xc8200d2060] } +&{start QAbstractAnimation::start commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qabstractanimation.h non slot false false void [0xc8200d2240] } +&{stateChanged QAbstractAnimation::stateChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qabstractanimation.h non signal false false void [0xc8200d2440 0xc8200d2520] } +&{stop QAbstractAnimation::stop commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qabstractanimation.h non slot false false void [] } +&{totalDuration QAbstractAnimation::totalDuration commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qabstractanimation.h non plain false false int [] } +&{updateCurrentTime QAbstractAnimation::updateCurrentTime commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qabstractanimation.h pure plain false false void [0xc8200d28c0] } +&{updateDirection QAbstractAnimation::updateDirection commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qabstractanimation.h impure plain false false void [0xc8200d2a40] } +&{updateState QAbstractAnimation::updateState commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qabstractanimation.h impure plain false false void [0xc8200d2c60 0xc8200d2d40] } +&{~QAbstractAnimation QAbstractAnimation::~QAbstractAnimation commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qabstractanimation.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{DeletionPolicy QAbstractAnimation::DeletionPolicy commendable public [0xc8200a47a0 0xc8200a48a0]} +&{Direction QAbstractAnimation::Direction commendable public [0xc8200a4aa0 0xc8200a4b20]} +&{State QAbstractAnimation::State commendable public [0xc8200a4ce0 0xc8200a4d60 0xc8200a4de0]} diff --git a/internal/binding/dump/QtCore/QAbstractEventDispatcher.txt b/internal/binding/dump/QtCore/QAbstractEventDispatcher.txt new file mode 100755 index 00000000..79c824f2 --- /dev/null +++ b/internal/binding/dump/QtCore/QAbstractEventDispatcher.txt @@ -0,0 +1,24 @@ +######################################## FUNCTIONS ######################################## +&{QAbstractEventDispatcher QAbstractEventDispatcher::QAbstractEventDispatcher commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qabstracteventdispatcher.h non constructor false false [0xc82061d860] } +&{aboutToBlock QAbstractEventDispatcher::aboutToBlock commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qabstracteventdispatcher.h non signal false false void [] } +&{awake QAbstractEventDispatcher::awake commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qabstracteventdispatcher.h non signal false false void [] } +&{filterNativeEvent QAbstractEventDispatcher::filterNativeEvent commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qabstracteventdispatcher.h non plain false false bool [0xc820630040 0xc820630100 0xc820630180] } +&{flush QAbstractEventDispatcher::flush commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qabstracteventdispatcher.h pure plain false false void [] } +&{installNativeEventFilter QAbstractEventDispatcher::installNativeEventFilter commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qabstracteventdispatcher.h non plain false false void [0xc820630500] } +&{instance QAbstractEventDispatcher::instance commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qabstracteventdispatcher.h non plain true false QAbstractEventDispatcher * [0xc820630700] } +&{interrupt QAbstractEventDispatcher::interrupt commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qabstracteventdispatcher.h pure plain false false void [] } +&{processEvents QAbstractEventDispatcher::processEvents commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qabstracteventdispatcher.h pure plain false false bool [0xc820630900] } +&{registerEventNotifier QAbstractEventDispatcher::registerEventNotifier commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qabstracteventdispatcher.h pure plain false false bool [0xc820630b20] } +&{registerSocketNotifier QAbstractEventDispatcher::registerSocketNotifier commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qabstracteventdispatcher.h pure plain false false void [0xc820630d40] } +&{registerTimer QAbstractEventDispatcher::registerTimer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qabstracteventdispatcher.h non plain false false int [0xc8206310e0 0xc820631160 0xc8206311e0] } +&{registerTimer QAbstractEventDispatcher::registerTimer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qabstracteventdispatcher.h pure plain false true 4 void [0xc8206315a0 0xc820631620 0xc8206316a0 0xc820631720] } +&{registeredTimers QAbstractEventDispatcher::registeredTimers commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qabstracteventdispatcher.h pure plain false false QList [0xc820631880] } +&{remainingTime QAbstractEventDispatcher::remainingTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qabstracteventdispatcher.h pure plain false false int [0xc820631a00] } +&{removeNativeEventFilter QAbstractEventDispatcher::removeNativeEventFilter commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qabstracteventdispatcher.h non plain false false void [0xc820631be0] } +&{unregisterEventNotifier QAbstractEventDispatcher::unregisterEventNotifier commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qabstracteventdispatcher.h pure plain false false void [0xc820631ea0] } +&{unregisterSocketNotifier QAbstractEventDispatcher::unregisterSocketNotifier commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qabstracteventdispatcher.h pure plain false false void [0xc8206420c0] } +&{unregisterTimer QAbstractEventDispatcher::unregisterTimer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qabstracteventdispatcher.h pure plain false false bool [0xc820642260] } +&{unregisterTimers QAbstractEventDispatcher::unregisterTimers commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qabstracteventdispatcher.h pure plain false false bool [0xc8206423c0] } +&{wakeUp QAbstractEventDispatcher::wakeUp commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qabstracteventdispatcher.h pure plain false false void [] } +&{~QAbstractEventDispatcher QAbstractEventDispatcher::~QAbstractEventDispatcher commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qabstracteventdispatcher.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QAbstractItemModel.txt b/internal/binding/dump/QtCore/QAbstractItemModel.txt new file mode 100755 index 00000000..7ef6c43e --- /dev/null +++ b/internal/binding/dump/QtCore/QAbstractItemModel.txt @@ -0,0 +1,84 @@ +######################################## FUNCTIONS ######################################## +&{sibling QAbstractItemModel::sibling commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.cpp impure plain false false QModelIndex [0xc8201a5740 0xc8201a57c0 0xc8201a5880] } +&{QAbstractItemModel QAbstractItemModel::QAbstractItemModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non constructor false false [0xc8201a5f40] } +&{beginInsertColumns QAbstractItemModel::beginInsertColumns commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false void [0xc82018c520 0xc82018c620 0xc82018c6e0] } +&{beginInsertRows QAbstractItemModel::beginInsertRows commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false void [0xc82018c920 0xc82018ca00 0xc82018cae0] } +&{beginMoveColumns QAbstractItemModel::beginMoveColumns commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false bool [0xc82018cd00 0xc82018ce60 0xc82018cf00 0xc82018d020 0xc82018d200] } +&{beginMoveRows QAbstractItemModel::beginMoveRows commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false bool [0xc82018d3c0 0xc82018d4c0 0xc82018d580 0xc82018d660 0xc82018d7c0] } +&{beginRemoveColumns QAbstractItemModel::beginRemoveColumns commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false void [0xc82018da40 0xc82018db40 0xc82018dc00] } +&{beginRemoveRows QAbstractItemModel::beginRemoveRows commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false void [0xc82018de20 0xc82018df20 0xc82018dfa0] } +&{beginResetModel QAbstractItemModel::beginResetModel commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false void [] } +&{buddy QAbstractItemModel::buddy commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false QModelIndex [0xc8201623a0] } +&{canDropMimeData QAbstractItemModel::canDropMimeData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false bool [0xc820162680 0xc8201627a0 0xc820162880 0xc820162980 0xc820162a60] } +&{canFetchMore QAbstractItemModel::canFetchMore commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false bool [0xc820162de0] } +&{changePersistentIndex QAbstractItemModel::changePersistentIndex commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false void [0xc820163120 0xc820163280] } +&{changePersistentIndexList QAbstractItemModel::changePersistentIndexList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false void [0xc820163500 0xc820163600] } +&{columnCount QAbstractItemModel::columnCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h pure plain false false int [0xc820163840] } +&{columnsAboutToBeInserted QAbstractItemModel::columnsAboutToBeInserted commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non signal false false void [0xc820163a80 0xc820163b40 0xc820163bc0] } +&{columnsAboutToBeMoved QAbstractItemModel::columnsAboutToBeMoved commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non signal false false void [0xc820163da0 0xc820163e60 0xc820163ee0 0xc820163fa0 0xc820152160] } +&{columnsAboutToBeRemoved QAbstractItemModel::columnsAboutToBeRemoved commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non signal false false void [0xc820152440 0xc820152500 0xc8201525e0] } +&{columnsInserted QAbstractItemModel::columnsInserted commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non signal false false void [0xc8201527a0 0xc8201528c0 0xc820152960] } +&{columnsMoved QAbstractItemModel::columnsMoved commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non signal false false void [0xc820152bc0 0xc820152ca0 0xc820152d60 0xc820152e00 0xc820152f40] } +&{columnsRemoved QAbstractItemModel::columnsRemoved commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non signal false false void [0xc8201530e0 0xc8201531a0 0xc820153260] } +&{createIndex QAbstractItemModel::createIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false true 2 QModelIndex [0xc8201534e0 0xc820153560 0xc8201535e0] } +&{createIndex QAbstractItemModel::createIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false QModelIndex [0xc820153860 0xc820153900 0xc8201539a0] } +&{data QAbstractItemModel::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h pure plain false false QVariant [0xc820153bc0 0xc820153ca0] } +&{dataChanged QAbstractItemModel::dataChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non signal false false void [0xc820153f20 0xc82013c060 0xc82013c140] } +&{dropMimeData QAbstractItemModel::dropMimeData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false bool [0xc82013c620 0xc82013c720 0xc82013c7a0 0xc82013c820 0xc82013c8e0] } +&{endInsertColumns QAbstractItemModel::endInsertColumns commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false void [] } +&{endInsertRows QAbstractItemModel::endInsertRows commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false void [] } +&{endMoveColumns QAbstractItemModel::endMoveColumns commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false void [] } +&{endMoveRows QAbstractItemModel::endMoveRows commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false void [] } +&{endRemoveColumns QAbstractItemModel::endRemoveColumns commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false void [] } +&{endRemoveRows QAbstractItemModel::endRemoveRows commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false void [] } +&{endResetModel QAbstractItemModel::endResetModel commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false void [] } +&{fetchMore QAbstractItemModel::fetchMore commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false void [0xc82013dbe0] } +&{flags QAbstractItemModel::flags commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false Qt::ItemFlags [0xc82013dec0] } +&{hasChildren QAbstractItemModel::hasChildren commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false bool [0xc82012a120] } +&{hasIndex QAbstractItemModel::hasIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false bool [0xc82012a3c0 0xc82012a460 0xc82012a500] } +&{headerData QAbstractItemModel::headerData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false QVariant [0xc82012a7a0 0xc82012a860 0xc82012a8e0] } +&{headerDataChanged QAbstractItemModel::headerDataChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non signal false false void [0xc82012ab20 0xc82012ac00 0xc82012acc0] } +&{index QAbstractItemModel::index commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h pure plain false false QModelIndex [0xc82012af00 0xc82012af80 0xc82012b040] } +&{insertColumn QAbstractItemModel::insertColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false bool [0xc82012b240 0xc82012b2e0] } +&{insertColumns QAbstractItemModel::insertColumns commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false bool [0xc82012b480 0xc82012b500 0xc82012b5a0] } +&{insertRow QAbstractItemModel::insertRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false bool [0xc82012b7a0 0xc82012b840] } +&{insertRows QAbstractItemModel::insertRows commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false bool [0xc82012ba40 0xc82012bac0 0xc82012bb60] } +&{itemData QAbstractItemModel::itemData commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false QMap [0xc82012be00] } +&{layoutAboutToBeChanged QAbstractItemModel::layoutAboutToBeChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non signal false false void [0xc820116020 0xc8201160c0] } +&{layoutChanged QAbstractItemModel::layoutChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non signal false false void [0xc820116240 0xc8201162c0] } +&{match QAbstractItemModel::match commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false QModelIndexList [0xc820116520 0xc8201165e0 0xc820116680 0xc820116700 0xc8201167c0] } +&{mimeData QAbstractItemModel::mimeData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false QMimeData * [0xc820116a40] } +&{mimeTypes QAbstractItemModel::mimeTypes commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false QStringList [] } +&{modelAboutToBeReset QAbstractItemModel::modelAboutToBeReset commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non signal false false void [] } +&{modelReset QAbstractItemModel::modelReset commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non signal false false void [] } +&{moveColumn QAbstractItemModel::moveColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false bool [0xc820117080 0xc820117140 0xc820117220 0xc820117320] } +&{moveColumns QAbstractItemModel::moveColumns commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false bool [0xc820117580 0xc820117680 0xc820117720 0xc820117840 0xc820117980] } +&{moveRow QAbstractItemModel::moveRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false bool [0xc820117c20 0xc820117ce0 0xc820117e00 0xc820117f20] } +&{moveRows QAbstractItemModel::moveRows commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false bool [0xc8201021e0 0xc820102320 0xc8201023e0 0xc8201024a0 0xc8201025e0] } +&{parent QAbstractItemModel::parent commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h pure plain false false QModelIndex [0xc8201027e0] } +&{persistentIndexList QAbstractItemModel::persistentIndexList commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false QModelIndexList [] } +&{removeColumn QAbstractItemModel::removeColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false bool [0xc820102b20 0xc820102be0] } +&{removeColumns QAbstractItemModel::removeColumns commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false bool [0xc820102e40 0xc820102ee0 0xc820102f80] } +&{removeRow QAbstractItemModel::removeRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false bool [0xc820103220 0xc8201032c0] } +&{removeRows QAbstractItemModel::removeRows commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false bool [0xc820103540 0xc8201035c0 0xc8201036c0] } +&{resetInternalData QAbstractItemModel::resetInternalData commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non slot false false void [] } +&{revert QAbstractItemModel::revert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure slot false false void [] } +&{roleNames QAbstractItemModel::roleNames commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false QHash [] } +&{rowCount QAbstractItemModel::rowCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h pure plain false false int [0xc820103ec0] } +&{rowsAboutToBeInserted QAbstractItemModel::rowsAboutToBeInserted commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non signal false false void [0xc8200ee140 0xc8200ee220 0xc8200ee2a0] } +&{rowsAboutToBeMoved QAbstractItemModel::rowsAboutToBeMoved commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non signal false false void [0xc8200ee4c0 0xc8200ee5e0 0xc8200ee680 0xc8200ee7a0 0xc8200ee960] } +&{rowsAboutToBeRemoved QAbstractItemModel::rowsAboutToBeRemoved commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non signal false false void [0xc8200eec00 0xc8200eece0 0xc8200eed80] } +&{rowsInserted QAbstractItemModel::rowsInserted commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non signal false false void [0xc8200ef060 0xc8200ef160 0xc8200ef1e0] } +&{rowsMoved QAbstractItemModel::rowsMoved commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non signal false false void [0xc8200ef560 0xc8200ef660 0xc8200ef740 0xc8200ef820 0xc8200ef960] } +&{rowsRemoved QAbstractItemModel::rowsRemoved commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non signal false false void [0xc8200efc00 0xc8200efd40 0xc8200efde0] } +&{setData QAbstractItemModel::setData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false bool [0xc8200e0080 0xc8200e01e0 0xc8200e02a0] } +&{setHeaderData QAbstractItemModel::setHeaderData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false bool [0xc8200e0480 0xc8200e0540 0xc8200e05e0 0xc8200e06a0] } +&{setItemData QAbstractItemModel::setItemData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false bool [0xc8200e08e0 0xc8200e0a20] } +&{sort QAbstractItemModel::sort commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false void [0xc8200e13a0 0xc8200e1440] } +&{span QAbstractItemModel::span commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false QSize [0xc8200e16e0] } +&{submit QAbstractItemModel::submit commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure slot false false bool [] } +&{supportedDragActions QAbstractItemModel::supportedDragActions commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false Qt::DropActions [] } +&{supportedDropActions QAbstractItemModel::supportedDropActions commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false Qt::DropActions [] } +&{~QAbstractItemModel QAbstractItemModel::~QAbstractItemModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{LayoutChangeHint QAbstractItemModel::LayoutChangeHint commendable public [0xc8201a5b20 0xc8201a5be0 0xc8201a5ce0]} diff --git a/internal/binding/dump/QtCore/QAbstractListModel.txt b/internal/binding/dump/QtCore/QAbstractListModel.txt new file mode 100755 index 00000000..b8c1ab2f --- /dev/null +++ b/internal/binding/dump/QtCore/QAbstractListModel.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{index QAbstractListModel::index commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.cpp impure plain false false QModelIndex [0xc8200d2700 0xc8200d27a0 0xc8200d2900] } +&{QAbstractListModel QAbstractListModel::QAbstractListModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non constructor false false [0xc8200d2c20] } +&{dropMimeData QAbstractListModel::dropMimeData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false bool [0xc8200d3280 0xc8200d3380 0xc8200d3420 0xc8200d3500 0xc8200d35c0] } +&{flags QAbstractListModel::flags commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false Qt::ItemFlags [0xc8200d38a0] } +&{sibling QAbstractListModel::sibling commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false QModelIndex [0xc8200a4320 0xc8200a4420 0xc8200a4500] } +&{~QAbstractListModel QAbstractListModel::~QAbstractListModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QAbstractNativeEventFilter.txt b/internal/binding/dump/QtCore/QAbstractNativeEventFilter.txt new file mode 100755 index 00000000..e7715121 --- /dev/null +++ b/internal/binding/dump/QtCore/QAbstractNativeEventFilter.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{QAbstractNativeEventFilter QAbstractNativeEventFilter::QAbstractNativeEventFilter commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qabstractnativeeventfilter.h non constructor false false [] } +&{nativeEventFilter QAbstractNativeEventFilter::nativeEventFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qabstractnativeeventfilter.h pure plain false false bool [0xc8206429e0 0xc820642aa0 0xc820642b20] } +&{~QAbstractNativeEventFilter QAbstractNativeEventFilter::~QAbstractNativeEventFilter commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qabstractnativeeventfilter.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QAbstractProxyModel.txt b/internal/binding/dump/QtCore/QAbstractProxyModel.txt new file mode 100755 index 00000000..4a717f90 --- /dev/null +++ b/internal/binding/dump/QtCore/QAbstractProxyModel.txt @@ -0,0 +1,34 @@ +######################################## FUNCTIONS ######################################## +&{QAbstractProxyModel QAbstractProxyModel::QAbstractProxyModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h non constructor false false [0xc8204034c0] } +&{buddy QAbstractProxyModel::buddy commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h impure plain false false QModelIndex [0xc820403ae0] } +&{canDropMimeData QAbstractProxyModel::canDropMimeData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h impure plain false false bool [0xc820403cc0 0xc820403d80 0xc820403e00 0xc820403e80 0xc820403f40] } +&{canFetchMore QAbstractProxyModel::canFetchMore commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h impure plain false false bool [0xc82044a100] } +&{data QAbstractProxyModel::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h impure plain false false QVariant [0xc82044a340 0xc82044a400] } +&{dropMimeData QAbstractProxyModel::dropMimeData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h impure plain false false bool [0xc82044a580 0xc82044a640 0xc82044a6c0 0xc82044a740 0xc82044a800] } +&{fetchMore QAbstractProxyModel::fetchMore commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h impure plain false false void [0xc82044aa40] } +&{flags QAbstractProxyModel::flags commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h impure plain false false Qt::ItemFlags [0xc82044ac80] } +&{hasChildren QAbstractProxyModel::hasChildren commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h impure plain false false bool [0xc82044aea0] } +&{headerData QAbstractProxyModel::headerData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h impure plain false false QVariant [0xc82044b0a0 0xc82044b120 0xc82044b1a0] } +&{itemData QAbstractProxyModel::itemData commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h impure plain false false QMap [0xc82044b3e0] } +&{mapFromSource QAbstractProxyModel::mapFromSource commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h pure plain false false QModelIndex [0xc82044b5a0] } +&{mapSelectionFromSource QAbstractProxyModel::mapSelectionFromSource commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h impure plain false false QItemSelection [0xc82044b7c0] } +&{mapSelectionToSource QAbstractProxyModel::mapSelectionToSource commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h impure plain false false QItemSelection [0xc82044b9e0] } +&{mapToSource QAbstractProxyModel::mapToSource commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h pure plain false false QModelIndex [0xc82044bc20] } +&{mimeData QAbstractProxyModel::mimeData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h impure plain false false QMimeData * [0xc82044be40] } +&{mimeTypes QAbstractProxyModel::mimeTypes commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h impure plain false false QStringList [] } +&{resetInternalData QAbstractProxyModel::resetInternalData commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h non slot false false void [] } +&{revert QAbstractProxyModel::revert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h impure plain false false void [] } +&{setData QAbstractProxyModel::setData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h impure plain false false bool [0xc820458380 0xc820458440 0xc8204584c0] } +&{setHeaderData QAbstractProxyModel::setHeaderData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h impure plain false false bool [0xc820458620 0xc8204586a0 0xc820458720 0xc8204587a0] } +&{setItemData QAbstractProxyModel::setItemData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h impure plain false false bool [0xc820458980 0xc820458a60] } +&{setSourceModel QAbstractProxyModel::setSourceModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h impure plain false false void [0xc820458c40] } +&{sibling QAbstractProxyModel::sibling commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h impure plain false false QModelIndex [0xc820458e60 0xc820458ee0 0xc820458f80] } +&{sort QAbstractProxyModel::sort commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h impure plain false false void [0xc8204591a0 0xc820459240] } +&{sourceModel QAbstractProxyModel::sourceModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h non plain false false QAbstractItemModel * [] } +&{sourceModelChanged QAbstractProxyModel::sourceModelChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h non signal false false void [] } +&{span QAbstractProxyModel::span commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h impure plain false false QSize [0xc8204596c0] } +&{submit QAbstractProxyModel::submit commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h impure plain false false bool [] } +&{supportedDragActions QAbstractProxyModel::supportedDragActions commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h impure plain false false Qt::DropActions [] } +&{supportedDropActions QAbstractProxyModel::supportedDropActions commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h impure plain false false Qt::DropActions [] } +&{~QAbstractProxyModel QAbstractProxyModel::~QAbstractProxyModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractproxymodel.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QAbstractState.txt b/internal/binding/dump/QtCore/QAbstractState.txt new file mode 100755 index 00000000..50685264 --- /dev/null +++ b/internal/binding/dump/QtCore/QAbstractState.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QAbstractState QAbstractState::QAbstractState commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstractstate.h non constructor false false [0xc82013dcc0] } +&{active QAbstractState::active commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstractstate.h non plain false false bool [] } +&{activeChanged QAbstractState::activeChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstractstate.h non signal false false void [0xc82012a5e0] } +&{entered QAbstractState::entered commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstractstate.h non signal false false void [] } +&{event QAbstractState::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstractstate.h impure plain false false bool [0xc82012aa40] } +&{exited QAbstractState::exited commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstractstate.h non signal false false void [] } +&{machine QAbstractState::machine commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstractstate.h non plain false false QStateMachine * [] } +&{onEntry QAbstractState::onEntry commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstractstate.h pure plain false false void [0xc82012b0c0] } +&{onExit QAbstractState::onExit commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstractstate.h pure plain false false void [0xc82012b340] } +&{parentState QAbstractState::parentState commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstractstate.h non plain false false QState * [] } +&{~QAbstractState QAbstractState::~QAbstractState commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstractstate.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QAbstractTableModel.txt b/internal/binding/dump/QtCore/QAbstractTableModel.txt new file mode 100755 index 00000000..13964e11 --- /dev/null +++ b/internal/binding/dump/QtCore/QAbstractTableModel.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{index QAbstractTableModel::index commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.cpp impure plain false false QModelIndex [0xc8200a5140 0xc8200a5240 0xc8200a5300] } +&{QAbstractTableModel QAbstractTableModel::QAbstractTableModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non constructor false false [0xc8200a55c0] } +&{dropMimeData QAbstractTableModel::dropMimeData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false bool [0xc82017e040 0xc82017e140 0xc82017e1e0 0xc82017e280 0xc82017e340] } +&{flags QAbstractTableModel::flags commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false Qt::ItemFlags [0xc82017e620] } +&{sibling QAbstractTableModel::sibling commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h impure plain false false QModelIndex [0xc82017e900 0xc82017e9a0 0xc82017ea60] } +&{~QAbstractTableModel QAbstractTableModel::~QAbstractTableModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QAbstractTransition.txt b/internal/binding/dump/QtCore/QAbstractTransition.txt new file mode 100755 index 00000000..97e41093 --- /dev/null +++ b/internal/binding/dump/QtCore/QAbstractTransition.txt @@ -0,0 +1,22 @@ +######################################## FUNCTIONS ######################################## +&{QAbstractTransition QAbstractTransition::QAbstractTransition commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstracttransition.h non constructor false false [0xc82012bfc0] } +&{addAnimation QAbstractTransition::addAnimation commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstracttransition.h non plain false false void [0xc820116580] } +&{animations QAbstractTransition::animations commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstracttransition.h non plain false false QList [] } +&{event QAbstractTransition::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstracttransition.h impure plain false false bool [0xc820116ae0] } +&{eventTest QAbstractTransition::eventTest commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstracttransition.h pure plain false false bool [0xc820116d80] } +&{machine QAbstractTransition::machine commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstracttransition.h non plain false false QStateMachine * [] } +&{onTransition QAbstractTransition::onTransition commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstracttransition.h pure plain false false void [0xc8201171a0] } +&{removeAnimation QAbstractTransition::removeAnimation commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstracttransition.h non plain false false void [0xc820117420] } +&{setTargetState QAbstractTransition::setTargetState commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstracttransition.h non plain false false void [0xc8201176c0] } +&{setTargetStates QAbstractTransition::setTargetStates commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstracttransition.h non plain false false void [0xc8201179a0] } +&{setTransitionType QAbstractTransition::setTransitionType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstracttransition.h non plain false false void [0xc820117d00] } +&{sourceState QAbstractTransition::sourceState commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstracttransition.h non plain false false QState * [] } +&{targetState QAbstractTransition::targetState commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstracttransition.h non plain false false QAbstractState * [] } +&{targetStateChanged QAbstractTransition::targetStateChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstracttransition.h non signal false false void [] } +&{targetStates QAbstractTransition::targetStates commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstracttransition.h non plain false false QList [] } +&{targetStatesChanged QAbstractTransition::targetStatesChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstracttransition.h non signal false false void [] } +&{transitionType QAbstractTransition::transitionType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstracttransition.h non plain false false TransitionType [] } +&{triggered QAbstractTransition::triggered commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstracttransition.h non signal false false void [] } +&{~QAbstractTransition QAbstractTransition::~QAbstractTransition commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qabstracttransition.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{TransitionType QAbstractTransition::TransitionType commendable public [0xc82012bbe0 0xc82012bcc0]} diff --git a/internal/binding/dump/QtCore/QAnimationGroup.txt b/internal/binding/dump/QtCore/QAnimationGroup.txt new file mode 100755 index 00000000..b4feab5f --- /dev/null +++ b/internal/binding/dump/QtCore/QAnimationGroup.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QAnimationGroup QAnimationGroup::QAnimationGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qanimationgroup.h non constructor false false [0xc8200d3b20] } +&{addAnimation QAnimationGroup::addAnimation commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qanimationgroup.h non plain false false void [0xc8200d3fa0] } +&{animationAt QAnimationGroup::animationAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qanimationgroup.h non plain false false QAbstractAnimation * [0xc8200e0220] } +&{animationCount QAnimationGroup::animationCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qanimationgroup.h non plain false false int [] } +&{clear QAnimationGroup::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qanimationgroup.h non plain false false void [] } +&{event QAnimationGroup::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qanimationgroup.h impure plain false false bool [0xc8200e0640] } +&{indexOfAnimation QAnimationGroup::indexOfAnimation commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qanimationgroup.h non plain false false int [0xc8200e07c0] } +&{insertAnimation QAnimationGroup::insertAnimation commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qanimationgroup.h non plain false false void [0xc8200e09e0 0xc8200e0a80] } +&{removeAnimation QAnimationGroup::removeAnimation commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qanimationgroup.h non plain false false void [0xc8200e0ca0] } +&{takeAnimation QAnimationGroup::takeAnimation commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qanimationgroup.h non plain false false QAbstractAnimation * [0xc8200e0f00] } +&{~QAnimationGroup QAnimationGroup::~QAnimationGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qanimationgroup.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QAssociativeIterable.txt b/internal/binding/dump/QtCore/QAssociativeIterable.txt new file mode 100755 index 00000000..570bb28e --- /dev/null +++ b/internal/binding/dump/QtCore/QAssociativeIterable.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{begin QAssociativeIterable::begin commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false const_iterator [] } +&{end QAssociativeIterable::end commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false const_iterator [] } +&{find QAssociativeIterable::find commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false const_iterator [0xc82027a520] } +&{size QAssociativeIterable::size commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false int [] } +&{value QAssociativeIterable::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false QVariant [0xc82027a8e0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QAtomicInt.txt b/internal/binding/dump/QtCore/QAtomicInt.txt new file mode 100755 index 00000000..235f86e7 --- /dev/null +++ b/internal/binding/dump/QtCore/QAtomicInt.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{QAtomicInt QAtomicInt::QAtomicInt commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non constructor false false [0xc8204370a0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QAtomicInteger.txt b/internal/binding/dump/QtCore/QAtomicInteger.txt new file mode 100755 index 00000000..7b3686be --- /dev/null +++ b/internal/binding/dump/QtCore/QAtomicInteger.txt @@ -0,0 +1,58 @@ +######################################## FUNCTIONS ######################################## +&{QAtomicInteger QAtomicInteger::QAtomicInteger commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non constructor false false [0xc820437660] } +&{QAtomicInteger QAtomicInteger::QAtomicInteger commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non constructor false true 2 [0xc820437820] } +&{deref QAtomicInteger::deref commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false bool [] } +&{fetchAndAddAcquire QAtomicInteger::fetchAndAddAcquire commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc820437ae0] } +&{fetchAndAddOrdered QAtomicInteger::fetchAndAddOrdered commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc820437ca0] } +&{fetchAndAddRelaxed QAtomicInteger::fetchAndAddRelaxed commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc820437e40] } +&{fetchAndAddRelease QAtomicInteger::fetchAndAddRelease commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc820437fe0] } +&{fetchAndAndAcquire QAtomicInteger::fetchAndAndAcquire commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc8204d6180] } +&{fetchAndAndOrdered QAtomicInteger::fetchAndAndOrdered commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc8204d6340] } +&{fetchAndAndRelaxed QAtomicInteger::fetchAndAndRelaxed commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc8204d64e0] } +&{fetchAndAndRelease QAtomicInteger::fetchAndAndRelease commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc8204d6680] } +&{fetchAndOrAcquire QAtomicInteger::fetchAndOrAcquire commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc8204d6840] } +&{fetchAndOrOrdered QAtomicInteger::fetchAndOrOrdered commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc8204d6a00] } +&{fetchAndOrRelaxed QAtomicInteger::fetchAndOrRelaxed commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc8204d6bc0] } +&{fetchAndOrRelease QAtomicInteger::fetchAndOrRelease commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc8204d6d80] } +&{fetchAndStoreAcquire QAtomicInteger::fetchAndStoreAcquire commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc8204d6f20] } +&{fetchAndStoreOrdered QAtomicInteger::fetchAndStoreOrdered commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc8204d70e0] } +&{fetchAndStoreRelaxed QAtomicInteger::fetchAndStoreRelaxed commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc8204d7280] } +&{fetchAndStoreRelease QAtomicInteger::fetchAndStoreRelease commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc8204d7420] } +&{fetchAndSubAcquire QAtomicInteger::fetchAndSubAcquire commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc8204d75c0] } +&{fetchAndSubOrdered QAtomicInteger::fetchAndSubOrdered commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc8204d7760] } +&{fetchAndSubRelaxed QAtomicInteger::fetchAndSubRelaxed commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc8204d7900] } +&{fetchAndSubRelease QAtomicInteger::fetchAndSubRelease commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc8204d7aa0] } +&{fetchAndXorAcquire QAtomicInteger::fetchAndXorAcquire commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc8204d7c40] } +&{fetchAndXorOrdered QAtomicInteger::fetchAndXorOrdered commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc8204d7de0] } +&{fetchAndXorRelaxed QAtomicInteger::fetchAndXorRelaxed commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc8204d7f80] } +&{fetchAndXorRelease QAtomicInteger::fetchAndXorRelease commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc8205ba120] } +&{isFetchAndAddNative QAtomicInteger::isFetchAndAddNative commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain true false bool [] } +&{isFetchAndAddWaitFree QAtomicInteger::isFetchAndAddWaitFree commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain true false bool [] } +&{isFetchAndStoreNative QAtomicInteger::isFetchAndStoreNative commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain true false bool [] } +&{isFetchAndStoreWaitFree QAtomicInteger::isFetchAndStoreWaitFree commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain true false bool [] } +&{isReferenceCountingNative QAtomicInteger::isReferenceCountingNative commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain true false bool [] } +&{isReferenceCountingWaitFree QAtomicInteger::isReferenceCountingWaitFree commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain true false bool [] } +&{isTestAndSetNative QAtomicInteger::isTestAndSetNative commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain true false bool [] } +&{isTestAndSetWaitFree QAtomicInteger::isTestAndSetWaitFree commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain true false bool [] } +&{load QAtomicInteger::load commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [] } +&{loadAcquire QAtomicInteger::loadAcquire commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [] } +&{operator T QAtomicInteger::operator T commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false [] } +&{operator&= QAtomicInteger::operator&= commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc8205bacc0] } +&{operator++ QAtomicInteger::operator++ commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [] } +&{operator++ QAtomicInteger::operator++ commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false true 2 T [0xc8205baf40] } +&{operator+= QAtomicInteger::operator+= commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc8205bb100] } +&{operator-- QAtomicInteger::operator-- commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [] } +&{operator-- QAtomicInteger::operator-- commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false true 2 T [0xc8205bb3c0] } +&{operator-= QAtomicInteger::operator-= commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc8205bb5a0] } +&{operator= QAtomicInteger::operator= commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false true 2 QAtomicInteger & [0xc8205bb740] } +&{operator= QAtomicInteger::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false QAtomicInteger & [0xc8205bb920] } +&{operator^= QAtomicInteger::operator^= commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc8205bbb20] } +&{operator|= QAtomicInteger::operator|= commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T [0xc8205bbce0] } +&{ref QAtomicInteger::ref commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false bool [] } +&{store QAtomicInteger::store commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false void [0xc8205bbfa0] } +&{storeRelease QAtomicInteger::storeRelease commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false void [0xc820530180] } +&{testAndSetAcquire QAtomicInteger::testAndSetAcquire commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false bool [0xc820530320 0xc8205303a0] } +&{testAndSetOrdered QAtomicInteger::testAndSetOrdered commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false bool [0xc820530540 0xc8205305c0] } +&{testAndSetRelaxed QAtomicInteger::testAndSetRelaxed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false bool [0xc820530760 0xc8205307e0] } +&{testAndSetRelease QAtomicInteger::testAndSetRelease commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false bool [0xc820530980 0xc820530a00] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QAtomicPointer.txt b/internal/binding/dump/QtCore/QAtomicPointer.txt new file mode 100755 index 00000000..5d008449 --- /dev/null +++ b/internal/binding/dump/QtCore/QAtomicPointer.txt @@ -0,0 +1,27 @@ +######################################## FUNCTIONS ######################################## +&{QAtomicPointer QAtomicPointer::QAtomicPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non constructor false false [0xc820530f20] } +&{QAtomicPointer QAtomicPointer::QAtomicPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non constructor false true 2 [0xc8205310e0] } +&{fetchAndAddAcquire QAtomicPointer::fetchAndAddAcquire commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T * [0xc8205312c0] } +&{fetchAndAddOrdered QAtomicPointer::fetchAndAddOrdered commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T * [0xc820531460] } +&{fetchAndAddRelaxed QAtomicPointer::fetchAndAddRelaxed commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T * [0xc820531620] } +&{fetchAndAddRelease QAtomicPointer::fetchAndAddRelease commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T * [0xc8205317c0] } +&{fetchAndStoreAcquire QAtomicPointer::fetchAndStoreAcquire commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T * [0xc820531960] } +&{fetchAndStoreOrdered QAtomicPointer::fetchAndStoreOrdered commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T * [0xc820531b00] } +&{fetchAndStoreRelaxed QAtomicPointer::fetchAndStoreRelaxed commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T * [0xc820531cc0] } +&{fetchAndStoreRelease QAtomicPointer::fetchAndStoreRelease commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T * [0xc820531e60] } +&{isFetchAndAddNative QAtomicPointer::isFetchAndAddNative commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain true false bool [] } +&{isFetchAndAddWaitFree QAtomicPointer::isFetchAndAddWaitFree commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain true false bool [] } +&{isFetchAndStoreNative QAtomicPointer::isFetchAndStoreNative commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain true false bool [] } +&{isFetchAndStoreWaitFree QAtomicPointer::isFetchAndStoreWaitFree commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain true false bool [] } +&{isTestAndSetNative QAtomicPointer::isTestAndSetNative commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain true false bool [] } +&{isTestAndSetWaitFree QAtomicPointer::isTestAndSetWaitFree commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain true false bool [] } +&{load QAtomicPointer::load commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T * [] } +&{loadAcquire QAtomicPointer::loadAcquire commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false T * [] } +&{operator= QAtomicPointer::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false QAtomicPointer & [0xc8206a67e0] } +&{store QAtomicPointer::store commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false void [0xc8206a6a00] } +&{storeRelease QAtomicPointer::storeRelease commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false void [0xc8206a6be0] } +&{testAndSetAcquire QAtomicPointer::testAndSetAcquire commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false bool [0xc8206a6d80 0xc8206a6e00] } +&{testAndSetOrdered QAtomicPointer::testAndSetOrdered commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false bool [0xc8206a6fa0 0xc8206a7020] } +&{testAndSetRelaxed QAtomicPointer::testAndSetRelaxed commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false bool [0xc8206a71c0 0xc8206a7240] } +&{testAndSetRelease QAtomicPointer::testAndSetRelease commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qatomic.h non plain false false bool [0xc8206a73e0 0xc8206a7460] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QBasicTimer.txt b/internal/binding/dump/QtCore/QBasicTimer.txt new file mode 100755 index 00000000..33f4c880 --- /dev/null +++ b/internal/binding/dump/QtCore/QBasicTimer.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{start QBasicTimer::start commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qbasictimer.cpp non plain false false void [0xc820642f00 0xc820642f80] } +&{QBasicTimer QBasicTimer::QBasicTimer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qbasictimer.h non constructor false false [] } +&{isActive QBasicTimer::isActive commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qbasictimer.h non plain false false bool [] } +&{start QBasicTimer::start commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qbasictimer.h non plain false true 2 void [0xc820643320 0xc8206433a0 0xc820643420] } +&{stop QBasicTimer::stop commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qbasictimer.h non plain false false void [] } +&{timerId QBasicTimer::timerId commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qbasictimer.h non plain false false int [] } +&{~QBasicTimer QBasicTimer::~QBasicTimer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qbasictimer.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QBitArray.txt b/internal/binding/dump/QtCore/QBitArray.txt new file mode 100755 index 00000000..8bd2f325 --- /dev/null +++ b/internal/binding/dump/QtCore/QBitArray.txt @@ -0,0 +1,35 @@ +######################################## FUNCTIONS ######################################## +&{QBitArray QBitArray::QBitArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non constructor false false [] } +&{QBitArray QBitArray::QBitArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non constructor false true 4 [0xc820781ce0] } +&{QBitArray QBitArray::QBitArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non constructor false true 3 [0xc820781ec0] } +&{QBitArray QBitArray::QBitArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non constructor false true 2 [0xc8207960e0 0xc820796160] } +&{at QBitArray::at commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false false bool [0xc820796300] } +&{clear QBitArray::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false false void [] } +&{clearBit QBitArray::clearBit commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false false void [0xc820796560] } +&{count QBitArray::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false false int [] } +&{count QBitArray::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false true 2 int [0xc8207967a0] } +&{fill QBitArray::fill commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false false bool [0xc820796c00 0xc820796c80] } +&{fill QBitArray::fill commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false true 2 void [0xc820796de0 0xc820796e60 0xc820796ee0] } +&{isEmpty QBitArray::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false false bool [] } +&{isNull QBitArray::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false false bool [] } +&{operator!= QBitArray::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false false bool [0xc8207972e0] } +&{operator&= QBitArray::operator&= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false false QBitArray & [0xc820797500] } +&{operator= QBitArray::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false true 2 QBitArray & [0xc820797700] } +&{operator= QBitArray::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false false QBitArray & [0xc8207978e0] } +&{operator== QBitArray::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false false bool [0xc820797b00] } +&{operator[] QBitArray::operator[] commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false false QBitRef [0xc820797d20] } +&{operator[] QBitArray::operator[] commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false true 3 QBitRef [0xc820797f00] } +&{operator[] QBitArray::operator[] commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false true 2 bool [0xc8207a80e0] } +&{operator[] QBitArray::operator[] commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false true 4 bool [0xc8207a82c0] } +&{operator^= QBitArray::operator^= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false false QBitArray & [0xc8207a84a0] } +&{operator|= QBitArray::operator|= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false false QBitArray & [0xc8207a86c0] } +&{operator~ QBitArray::operator~ commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false false QBitArray [] } +&{resize QBitArray::resize commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false false void [0xc8207a89e0] } +&{setBit QBitArray::setBit commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false false void [0xc8207a8bc0] } +&{setBit QBitArray::setBit commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false true 2 void [0xc8207a8da0 0xc8207a8e20] } +&{size QBitArray::size commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false false int [] } +&{swap QBitArray::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false false void [0xc8207a9040] } +&{testBit QBitArray::testBit commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false false bool [0xc8207a9220] } +&{toggleBit QBitArray::toggleBit commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false false bool [0xc8207a9400] } +&{truncate QBitArray::truncate commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbitarray.h non plain false false void [0xc8207a95e0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QBuffer.txt b/internal/binding/dump/QtCore/QBuffer.txt new file mode 100755 index 00000000..82b731a2 --- /dev/null +++ b/internal/binding/dump/QtCore/QBuffer.txt @@ -0,0 +1,20 @@ +######################################## FUNCTIONS ######################################## +&{QBuffer QBuffer::QBuffer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qbuffer.h non constructor false true 2 [0xc82029bae0 0xc82029bb60] } +&{QBuffer QBuffer::QBuffer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qbuffer.h non constructor false false [0xc82029bce0] } +&{atEnd QBuffer::atEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qbuffer.h impure plain false false bool [] } +&{buffer QBuffer::buffer commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qbuffer.h non plain false false QByteArray & [] } +&{buffer QBuffer::buffer commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qbuffer.h non plain false true 2 const QByteArray & [] } +&{canReadLine QBuffer::canReadLine commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qbuffer.h impure plain false false bool [] } +&{close QBuffer::close commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qbuffer.h impure plain false false void [] } +&{data QBuffer::data commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qbuffer.h non plain false false const QByteArray & [] } +&{open QBuffer::open commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qbuffer.h impure plain false false bool [0xc8202b2960] } +&{pos QBuffer::pos commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qbuffer.h impure plain false false qint64 [] } +&{readData QBuffer::readData commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qbuffer.h impure plain false false qint64 [0xc8202b2ba0 0xc8202b2c20] } +&{seek QBuffer::seek commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qbuffer.h impure plain false false bool [0xc8202b2da0] } +&{setBuffer QBuffer::setBuffer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qbuffer.h non plain false false void [0xc8202b2f60] } +&{setData QBuffer::setData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qbuffer.h non plain false false void [0xc8202b3100] } +&{setData QBuffer::setData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qbuffer.h non plain false true 2 void [0xc8202b32a0 0xc8202b3320] } +&{size QBuffer::size commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qbuffer.h impure plain false false qint64 [] } +&{writeData QBuffer::writeData commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qbuffer.h impure plain false false qint64 [0xc8202b3580 0xc8202b3600] } +&{~QBuffer QBuffer::~QBuffer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qbuffer.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QByteArray.txt b/internal/binding/dump/QtCore/QByteArray.txt new file mode 100755 index 00000000..d35faa46 --- /dev/null +++ b/internal/binding/dump/QtCore/QByteArray.txt @@ -0,0 +1,161 @@ +######################################## FUNCTIONS ######################################## +&{clear QByteArray::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.cpp non plain false false void [] } +&{indexOf QByteArray::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.cpp non plain false true 3 int [0xc8207bc380 0xc8207bc400] } +&{isNull QByteArray::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.cpp non plain false false bool [] } +&{lastIndexOf QByteArray::lastIndexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.cpp non plain false false int [0xc8207bc6e0 0xc8207bc7a0] } +&{lastIndexOf QByteArray::lastIndexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.cpp non plain false true 3 int [0xc8207bc980 0xc8207bca00] } +&{replace QByteArray::replace commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.cpp non plain false true 5 QByteArray & [0xc8207bcbc0 0xc8207bcc60] } +&{replace QByteArray::replace commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.cpp non plain false true 6 QByteArray & [0xc8207bce60 0xc8207bcee0 0xc8207bcf60 0xc8207bcfe0] } +&{replace QByteArray::replace commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.cpp non plain false true 2 QByteArray & [0xc8207bd1a0 0xc8207bd220 0xc8207bd2a0] } +&{replace QByteArray::replace commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.cpp non plain false true 3 QByteArray & [0xc8207bd480 0xc8207bd500 0xc8207bd580 0xc8207bd600] } +&{QByteArray QByteArray::QByteArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non constructor false false [] } +&{QByteArray QByteArray::QByteArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non constructor false true 6 [0xc8207f9d20] } +&{QByteArray QByteArray::QByteArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non constructor false true 5 [0xc8207f9f00] } +&{QByteArray QByteArray::QByteArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non constructor false true 2 [0xc82080c100 0xc82080c180] } +&{QByteArray QByteArray::QByteArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non constructor false true 3 [0xc82080c360 0xc82080c3e0] } +&{append QByteArray::append commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 5 QByteArray & [0xc82080c5c0] } +&{append QByteArray::append commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false QByteArray & [0xc82080c7a0] } +&{append QByteArray::append commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 2 QByteArray & [0xc82080c9a0] } +&{append QByteArray::append commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 3 QByteArray & [0xc82080cb60] } +&{append QByteArray::append commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 4 QByteArray & [0xc82080cd20 0xc82080cda0] } +&{at QByteArray::at commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false char [0xc82080cf20] } +&{begin QByteArray::begin commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false iterator [] } +&{begin QByteArray::begin commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 2 const_iterator [] } +&{capacity QByteArray::capacity commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false int [] } +&{cbegin QByteArray::cbegin commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false const_iterator [] } +&{cend QByteArray::cend commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false const_iterator [] } +&{chop QByteArray::chop commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false void [0xc82080d520] } +&{constBegin QByteArray::constBegin commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false const_iterator [] } +&{constData QByteArray::constData commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false const char * [] } +&{constEnd QByteArray::constEnd commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false const_iterator [] } +&{contains QByteArray::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 3 bool [0xc82080d9e0] } +&{contains QByteArray::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false bool [0xc82080dbc0] } +&{contains QByteArray::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 2 bool [0xc82080ddc0] } +&{count QByteArray::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 4 int [] } +&{count QByteArray::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 3 int [0xc8208220a0] } +&{count QByteArray::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false int [0xc820822280] } +&{count QByteArray::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 2 int [0xc8208224a0] } +&{data QByteArray::data commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false char * [] } +&{data QByteArray::data commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 2 const char * [] } +&{end QByteArray::end commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 2 const_iterator [] } +&{end QByteArray::end commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false iterator [] } +&{endsWith QByteArray::endsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 3 bool [0xc820822e00] } +&{endsWith QByteArray::endsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false bool [0xc820822fe0] } +&{endsWith QByteArray::endsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 2 bool [0xc8208231e0] } +&{fill QByteArray::fill commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false QByteArray & [0xc820823340 0xc8208233c0] } +&{fromBase64 QByteArray::fromBase64 commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain true false QByteArray [0xc8208235a0] } +&{fromBase64 QByteArray::fromBase64 commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain true true 2 QByteArray [0xc8208237c0 0xc820823880] } +&{fromHex QByteArray::fromHex commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain true false QByteArray [0xc820823a60] } +&{fromPercentEncoding QByteArray::fromPercentEncoding commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain true false QByteArray [0xc820823cc0 0xc820823d80] } +&{fromRawData QByteArray::fromRawData commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain true false QByteArray [0xc820823f60 0xc820823fe0] } +&{fromStdString QByteArray::fromStdString commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain true false QByteArray [0xc8208381c0] } +&{indexOf QByteArray::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 4 int [0xc8208383c0 0xc820838440] } +&{indexOf QByteArray::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false int [0xc820838620 0xc8208386e0] } +&{indexOf QByteArray::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 2 int [0xc8208388a0 0xc820838920] } +&{insert QByteArray::insert commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 5 QByteArray & [0xc820838ae0 0xc820838b60] } +&{insert QByteArray::insert commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false QByteArray & [0xc820838d20 0xc820838dc0] } +&{insert QByteArray::insert commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 2 QByteArray & [0xc820838fc0 0xc820839040] } +&{insert QByteArray::insert commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 3 QByteArray & [0xc820839200 0xc820839280] } +&{insert QByteArray::insert commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 4 QByteArray & [0xc820839440 0xc8208394c0 0xc820839540] } +&{isEmpty QByteArray::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false bool [] } +&{lastIndexOf QByteArray::lastIndexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 4 int [0xc820839b20 0xc820839ba0] } +&{lastIndexOf QByteArray::lastIndexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 2 int [0xc820839d60 0xc820839de0] } +&{left QByteArray::left commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false QByteArray [0xc820839f60] } +&{leftJustified QByteArray::leftJustified commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false QByteArray [0xc82084c120 0xc82084c1a0 0xc82084c220] } +&{length QByteArray::length commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false int [] } +&{mid QByteArray::mid commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false QByteArray [0xc82084c480 0xc82084c500] } +&{number QByteArray::number commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain true true 5 QByteArray [0xc82084c6c0 0xc82084c740 0xc82084c7c0] } +&{number QByteArray::number commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain true false QByteArray [0xc82084c980 0xc82084ca00] } +&{number QByteArray::number commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain true true 3 QByteArray [0xc82084cbc0 0xc82084cc40] } +&{number QByteArray::number commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain true true 4 QByteArray [0xc82084ce00 0xc82084ce80] } +&{number QByteArray::number commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain true true 2 QByteArray [0xc82084d040 0xc82084d0c0] } +&{operator!= QByteArray::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false bool [0xc82084d440] } +&{operator+= QByteArray::operator+= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 4 QByteArray & [0xc82084d620] } +&{operator+= QByteArray::operator+= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false QByteArray & [0xc82084d800] } +&{operator+= QByteArray::operator+= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 2 QByteArray & [0xc82084da00] } +&{operator+= QByteArray::operator+= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 3 QByteArray & [0xc82084dbc0] } +&{operator< QByteArray::operator< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false bool [0xc82084dd80] } +&{operator<= QByteArray::operator<= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false bool [0xc82084df40] } +&{operator= QByteArray::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 2 QByteArray & [0xc82085e100] } +&{operator= QByteArray::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false QByteArray & [0xc82085e2e0] } +&{operator= QByteArray::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 3 QByteArray & [0xc82085e4e0] } +&{operator== QByteArray::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false bool [0xc82085e6a0] } +&{operator> QByteArray::operator> commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false bool [0xc82085e860] } +&{operator>= QByteArray::operator>= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false bool [0xc82085ea20] } +&{operator[] QByteArray::operator[] commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false QByteRef [0xc82085ec00] } +&{operator[] QByteArray::operator[] commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 3 QByteRef [0xc82085ede0] } +&{operator[] QByteArray::operator[] commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 2 char [0xc82085efc0] } +&{operator[] QByteArray::operator[] commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 4 char [0xc82085f1a0] } +&{prepend QByteArray::prepend commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 4 QByteArray & [0xc82085f380] } +&{prepend QByteArray::prepend commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false QByteArray & [0xc82085f560] } +&{prepend QByteArray::prepend commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 2 QByteArray & [0xc82085f760] } +&{prepend QByteArray::prepend commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 3 QByteArray & [0xc82085f920 0xc82085f9a0] } +&{push_back QByteArray::push_back commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 3 void [0xc82085fb80] } +&{push_back QByteArray::push_back commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false void [0xc82085fd60] } +&{push_back QByteArray::push_back commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 2 void [0xc82085ff80] } +&{push_front QByteArray::push_front commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 3 void [0xc820876160] } +&{push_front QByteArray::push_front commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false void [0xc820876340] } +&{push_front QByteArray::push_front commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 2 void [0xc820876560] } +&{remove QByteArray::remove commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false QByteArray & [0xc820876720 0xc8208767a0] } +&{repeated QByteArray::repeated commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false QByteArray [0xc820876960] } +&{replace QByteArray::replace commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 14 QByteArray & [0xc820876b20 0xc820876ba0] } +&{replace QByteArray::replace commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 11 QByteArray & [0xc820876d60 0xc820876e00] } +&{replace QByteArray::replace commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 12 QByteArray & [0xc820877000 0xc820877080] } +&{replace QByteArray::replace commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 13 QByteArray & [0xc820877240 0xc8208772c0] } +&{replace QByteArray::replace commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 4 QByteArray & [0xc8208774a0 0xc820877580] } +&{replace QByteArray::replace commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 7 QByteArray & [0xc8208777a0 0xc820877860] } +&{replace QByteArray::replace commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 8 QByteArray & [0xc820877a20 0xc820877ac0] } +&{replace QByteArray::replace commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 9 QByteArray & [0xc820877cc0 0xc820877d40] } +&{replace QByteArray::replace commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 10 QByteArray & [0xc820877f00 0xc820877f80] } +&{replace QByteArray::replace commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false QByteArray & [0xc820888160 0xc8208881e0 0xc820888280] } +&{reserve QByteArray::reserve commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false void [0xc8208884a0] } +&{resize QByteArray::resize commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false void [0xc820888680] } +&{right QByteArray::right commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false QByteArray [0xc820888860] } +&{rightJustified QByteArray::rightJustified commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false QByteArray [0xc820888a20 0xc820888aa0 0xc820888b20] } +&{setNum QByteArray::setNum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 7 QByteArray & [0xc820888ce0 0xc820888d60 0xc820888de0] } +&{setNum QByteArray::setNum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 8 QByteArray & [0xc820888fa0 0xc820889020 0xc8208890a0] } +&{setNum QByteArray::setNum commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false QByteArray & [0xc820889260 0xc8208892e0] } +&{setNum QByteArray::setNum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 5 QByteArray & [0xc8208894a0 0xc820889520] } +&{setNum QByteArray::setNum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 6 QByteArray & [0xc8208896e0 0xc820889760] } +&{setNum QByteArray::setNum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 3 QByteArray & [0xc820889920 0xc8208899a0] } +&{setNum QByteArray::setNum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 2 QByteArray & [0xc820889b60 0xc820889be0] } +&{setNum QByteArray::setNum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 4 QByteArray & [0xc820889da0 0xc820889e20] } +&{setRawData QByteArray::setRawData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false QByteArray & [0xc820889fe0 0xc82089c060] } +&{size QByteArray::size commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false int [] } +&{split QByteArray::split commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false QList [0xc82089c300] } +&{squeeze QByteArray::squeeze commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false void [] } +&{startsWith QByteArray::startsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 3 bool [0xc82089c5c0] } +&{startsWith QByteArray::startsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false bool [0xc82089c7a0] } +&{startsWith QByteArray::startsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 2 bool [0xc82089c9a0] } +&{swap QByteArray::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false void [0xc82089cb20] } +&{toBase64 QByteArray::toBase64 commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false QByteArray [] } +&{toBase64 QByteArray::toBase64 commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false true 2 QByteArray [0xc82089cde0] } +&{toDouble QByteArray::toDouble commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false double [0xc82089cfc0] } +&{toFloat QByteArray::toFloat commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false float [0xc82089d1a0] } +&{toHex QByteArray::toHex commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false QByteArray [] } +&{toInt QByteArray::toInt commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false int [0xc82089d460 0xc82089d4e0] } +&{toLong QByteArray::toLong commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false long [0xc82089d6a0 0xc82089d720] } +&{toLongLong QByteArray::toLongLong commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false qlonglong [0xc82089d8e0 0xc82089d960] } +&{toPercentEncoding QByteArray::toPercentEncoding commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false QByteArray [0xc82089db80 0xc82089dc60 0xc82089dd20] } +&{toShort QByteArray::toShort commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false short [0xc82089dee0 0xc82089df60] } +&{toStdString QByteArray::toStdString commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false std::string [] } +&{toUInt QByteArray::toUInt commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false uint [0xc8208ae220 0xc8208ae2a0] } +&{toULong QByteArray::toULong commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false ulong [0xc8208ae460 0xc8208ae4e0] } +&{toULongLong QByteArray::toULongLong commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false qulonglong [0xc8208ae6a0 0xc8208ae720] } +&{toUShort QByteArray::toUShort commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false ushort [0xc8208ae8e0 0xc8208ae960] } +&{truncate QByteArray::truncate commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non plain false false void [0xc8208aeb40] } +&{~QByteArray QByteArray::~QByteArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray.h non destructor false false [] } +&{fromCFData QByteArray::fromCFData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray_mac.mm non plain true false QByteArray [0xc8208aee00] } +&{fromNSData QByteArray::fromNSData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray_mac.mm non plain true false QByteArray [0xc8208aefe0] } +&{fromRawCFData QByteArray::fromRawCFData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray_mac.mm non plain true false QByteArray [0xc8208af1c0] } +&{fromRawNSData QByteArray::fromRawNSData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray_mac.mm non plain true false QByteArray [0xc8208af3a0] } +&{toCFData QByteArray::toCFData commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray_mac.mm non plain false false CFDataRef [] } +&{toNSData QByteArray::toNSData commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray_mac.mm non plain false false NSData * [] } +&{toRawCFData QByteArray::toRawCFData commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray_mac.mm non plain false false CFDataRef [] } +&{toRawNSData QByteArray::toRawNSData commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearray_mac.mm non plain false false NSData * [] } +&{simplified QByteArray::simplified commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring_compat.cpp non plain false false QByteArray [] } +&{toLower QByteArray::toLower commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring_compat.cpp non plain false false QByteArray [] } +&{toUpper QByteArray::toUpper commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring_compat.cpp non plain false false QByteArray [] } +&{trimmed QByteArray::trimmed commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring_compat.cpp non plain false false QByteArray [] } +######################################## ENUMS ######################################## +&{Base64Option QByteArray::Base64Option commendable public QByteArray::Base64Options [0xc8207bd840 0xc8207bd8e0 0xc8207bd9c0 0xc8207bdaa0]} diff --git a/internal/binding/dump/QtCore/QByteArrayList.txt b/internal/binding/dump/QtCore/QByteArrayList.txt new file mode 100755 index 00000000..e26eb5e5 --- /dev/null +++ b/internal/binding/dump/QtCore/QByteArrayList.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{join QByteArrayList::join commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearraylist.h non plain false false QByteArray [] } +&{join QByteArrayList::join commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearraylist.h non plain false true 3 QByteArray [0xc8205bbba0] } +&{join QByteArrayList::join commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearraylist.h non plain false true 2 QByteArray [0xc8205bbde0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QByteArrayMatcher.txt b/internal/binding/dump/QtCore/QByteArrayMatcher.txt new file mode 100755 index 00000000..e44727fc --- /dev/null +++ b/internal/binding/dump/QtCore/QByteArrayMatcher.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{QByteArrayMatcher QByteArrayMatcher::QByteArrayMatcher commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearraymatcher.h non constructor false false [] } +&{QByteArrayMatcher QByteArrayMatcher::QByteArrayMatcher commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearraymatcher.h non constructor false true 2 [0xc8202fedc0] } +&{QByteArrayMatcher QByteArrayMatcher::QByteArrayMatcher commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearraymatcher.h non constructor false true 4 [0xc8202ff100] } +&{QByteArrayMatcher QByteArrayMatcher::QByteArrayMatcher commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearraymatcher.h non constructor false true 3 [0xc8202ff3a0 0xc8202ff4c0] } +&{indexIn QByteArrayMatcher::indexIn commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearraymatcher.h non plain false false int [0xc8202ff860 0xc8202ffa00] } +&{indexIn QByteArrayMatcher::indexIn commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearraymatcher.h non plain false true 2 int [0xc8202ffcc0 0xc8202ffe20 0xc8202ffea0] } +&{operator= QByteArrayMatcher::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearraymatcher.h non plain false false QByteArrayMatcher & [0xc8205581e0] } +&{pattern QByteArrayMatcher::pattern commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearraymatcher.h non plain false false QByteArray [] } +&{setPattern QByteArrayMatcher::setPattern commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearraymatcher.h non plain false false void [0xc820558640] } +&{~QByteArrayMatcher QByteArrayMatcher::~QByteArrayMatcher commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qbytearraymatcher.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QCache.txt b/internal/binding/dump/QtCore/QCache.txt new file mode 100755 index 00000000..32ede9f9 --- /dev/null +++ b/internal/binding/dump/QtCore/QCache.txt @@ -0,0 +1,18 @@ +######################################## FUNCTIONS ######################################## +&{QCache QCache::QCache commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcache.h non constructor false false [0xc820559000] } +&{clear QCache::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcache.h non plain false false void [] } +&{contains QCache::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcache.h non plain false false bool [0xc8205592a0] } +&{count QCache::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcache.h non plain false false int [] } +&{insert QCache::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcache.h non plain false false bool [0xc820559520 0xc8205595e0 0xc820559660] } +&{isEmpty QCache::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcache.h non plain false false bool [] } +&{keys QCache::keys commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcache.h non plain false false QList [] } +&{maxCost QCache::maxCost commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcache.h non plain false false int [] } +&{object QCache::object commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcache.h non plain false false T * [0xc820559a80] } +&{operator[] QCache::operator[] commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcache.h non plain false false T * [0xc820559ce0] } +&{remove QCache::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcache.h non plain false false bool [0xc820559ea0] } +&{setMaxCost QCache::setMaxCost commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcache.h non plain false false void [0xc8206301e0] } +&{size QCache::size commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcache.h non plain false false int [] } +&{take QCache::take commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcache.h non plain false false T * [0xc820630440] } +&{totalCost QCache::totalCost commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcache.h non plain false false int [] } +&{~QCache QCache::~QCache commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcache.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QChar.txt b/internal/binding/dump/QtCore/QChar.txt new file mode 100755 index 00000000..4f5c705d --- /dev/null +++ b/internal/binding/dump/QtCore/QChar.txt @@ -0,0 +1,94 @@ +######################################## FUNCTIONS ######################################## +&{QChar QChar::QChar commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non constructor false false [] } +&{QChar QChar::QChar commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non constructor false true 8 [0xc82085e020] } +&{QChar QChar::QChar commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non constructor false true 7 [0xc82085e200] } +&{QChar QChar::QChar commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non constructor false true 9 [0xc82085e3e0] } +&{QChar QChar::QChar commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non constructor false true 6 [0xc82085e5c0] } +&{QChar QChar::QChar commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non constructor false true 4 [0xc82085e7a0] } +&{QChar QChar::QChar commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non constructor false true 3 [0xc82085e980 0xc82085ea60] } +&{QChar QChar::QChar commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non constructor false true 10 [0xc82085ec20] } +&{QChar QChar::QChar commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non constructor false true 5 [0xc82085ee00] } +&{QChar QChar::QChar commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non constructor false true 2 [0xc82085efe0] } +&{category QChar::category commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 Category [0xc82085f1c0] } +&{category QChar::category commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false Category [] } +&{cell QChar::cell commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false uchar [] } +&{combiningClass QChar::combiningClass commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 unsigned char [0xc82085f520] } +&{combiningClass QChar::combiningClass commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false unsigned char [] } +&{currentUnicodeVersion QChar::currentUnicodeVersion commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true false UnicodeVersion [] } +&{decomposition QChar::decomposition commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 QString [0xc82085fa80] } +&{decomposition QChar::decomposition commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false QString [] } +&{decompositionTag QChar::decompositionTag commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 Decomposition [0xc82085fe20] } +&{decompositionTag QChar::decompositionTag commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false Decomposition [] } +&{digitValue QChar::digitValue commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 int [0xc82084c1c0] } +&{digitValue QChar::digitValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false int [] } +&{direction QChar::direction commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 Direction [0xc82084c4c0] } +&{direction QChar::direction commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false Direction [] } +&{fromLatin1 QChar::fromLatin1 commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true false QChar [0xc82084c9e0] } +&{hasMirrored QChar::hasMirrored commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 bool [0xc82084cc60] } +&{hasMirrored QChar::hasMirrored commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false bool [] } +&{highSurrogate QChar::highSurrogate commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true false ushort [0xc82084cfe0] } +&{isDigit QChar::isDigit commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 bool [0xc82084d1c0] } +&{isDigit QChar::isDigit commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false bool [] } +&{isHighSurrogate QChar::isHighSurrogate commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 bool [0xc82084d4e0] } +&{isHighSurrogate QChar::isHighSurrogate commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false bool [] } +&{isLetter QChar::isLetter commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 bool [0xc82084d860] } +&{isLetter QChar::isLetter commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false bool [] } +&{isLetterOrNumber QChar::isLetterOrNumber commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 bool [0xc82084db60] } +&{isLetterOrNumber QChar::isLetterOrNumber commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false bool [] } +&{isLowSurrogate QChar::isLowSurrogate commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 bool [0xc820838680] } +&{isLower QChar::isLower commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 bool [0xc820838840] } +&{isLower QChar::isLower commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false bool [] } +&{isLowSurrogate QChar::isLowSurrogate commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false bool [] } +&{isMark QChar::isMark commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 bool [0xc820822780] } +&{isMark QChar::isMark commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false bool [] } +&{isNonCharacter QChar::isNonCharacter commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 bool [0xc820822ae0] } +&{isNonCharacter QChar::isNonCharacter commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false bool [] } +&{isNull QChar::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false bool [] } +&{isNumber QChar::isNumber commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 bool [0xc820822e80] } +&{isNumber QChar::isNumber commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false bool [] } +&{isPrint QChar::isPrint commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 bool [0xc820823120] } +&{isPrint QChar::isPrint commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false bool [] } +&{isPunct QChar::isPunct commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 bool [0xc820823400] } +&{isPunct QChar::isPunct commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false bool [] } +&{isSpace QChar::isSpace commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 bool [0xc8208236a0] } +&{isSpace QChar::isSpace commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false bool [] } +&{isSurrogate QChar::isSurrogate commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 bool [0xc8208239e0] } +&{isSurrogate QChar::isSurrogate commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false bool [] } +&{isSymbol QChar::isSymbol commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 bool [0xc820823d60] } +&{isSymbol QChar::isSymbol commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false bool [] } +&{isTitleCase QChar::isTitleCase commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 bool [0xc82080c0c0] } +&{isTitleCase QChar::isTitleCase commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false bool [] } +&{isUpper QChar::isUpper commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 bool [0xc82080c420] } +&{isUpper QChar::isUpper commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false bool [] } +&{joiningType QChar::joiningType commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 JoiningType [0xc82080c9e0] } +&{joiningType QChar::joiningType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false JoiningType [] } +&{lowSurrogate QChar::lowSurrogate commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true false ushort [0xc82080cd80] } +&{mirroredChar QChar::mirroredChar commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 uint [0xc82080cfc0] } +&{mirroredChar QChar::mirroredChar commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false QChar [] } +&{requiresSurrogates QChar::requiresSurrogates commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true false bool [0xc82080d340] } +&{row QChar::row commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false uchar [] } +&{script QChar::script commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 Script [0xc82080d5a0] } +&{script QChar::script commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false Script [] } +&{surrogateToUcs4 QChar::surrogateToUcs4 commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 uint [0xc82080d840 0xc82080d8e0] } +&{surrogateToUcs4 QChar::surrogateToUcs4 commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true false uint [0xc82080db00 0xc82080dbe0] } +&{toCaseFolded QChar::toCaseFolded commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 uint [0xc82080dee0] } +&{toCaseFolded QChar::toCaseFolded commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false QChar [] } +&{toLatin1 QChar::toLatin1 commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false char [] } +&{toLower QChar::toLower commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 uint [0xc8207f8240] } +&{toLower QChar::toLower commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false QChar [] } +&{toTitleCase QChar::toTitleCase commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 uint [0xc8207f8540] } +&{toTitleCase QChar::toTitleCase commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false QChar [] } +&{toUpper QChar::toUpper commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 uint [0xc8207f88a0] } +&{toUpper QChar::toUpper commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false QChar [] } +&{unicode QChar::unicode commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false true 2 ushort & [] } +&{unicode QChar::unicode commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false ushort [] } +&{unicodeVersion QChar::unicodeVersion commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain true true 2 UnicodeVersion [0xc8207f8ce0] } +&{unicodeVersion QChar::unicodeVersion commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false UnicodeVersion [] } +######################################## ENUMS ######################################## +&{Category QChar::Category commendable public [0xc820631080 0xc820631180 0xc820631260 0xc820631300 0xc820631460 0xc8206314e0 0xc820631560 0xc820631640 0xc820631740 0xc820631800 0xc8206318c0 0xc820631940 0xc8206319c0 0xc820631aa0 0xc820631b80 0xc820631c60 0xc820631d00 0xc820631d80 0xc820631e20 0xc820631f20 0xc820631fe0 0xc820768060 0xc820768120 0xc820768220 0xc820768320 0xc820768400 0xc8207684c0 0xc820768540 0xc8207685c0 0xc820768640]} +&{Decomposition QChar::Decomposition commendable public [0xc820768800 0xc820768880 0xc820768900 0xc820768980 0xc820768a20 0xc820768aa0 0xc820768b20 0xc820768ba0 0xc820768c40 0xc820768cc0 0xc820768d40 0xc820768dc0 0xc820768e40 0xc820768ec0 0xc820768f40 0xc820768fc0 0xc820769060 0xc8207690e0]} +&{Direction QChar::Direction commendable public [0xc820769240 0xc8207692c0 0xc820769340 0xc8207693c0 0xc820769460 0xc8207694e0 0xc820769560 0xc8207695e0 0xc820769680 0xc820769700 0xc820769780 0xc820769800 0xc820769880 0xc820769900 0xc820769980 0xc820769a00 0xc820769aa0 0xc820769b20 0xc820769ba0 0xc820769c20 0xc820769ca0 0xc820769d20 0xc820769da0]} +&{JoiningType QChar::JoiningType commendable public [0xc82089c2c0 0xc82089c380 0xc82089c400 0xc82089c4a0 0xc82089c560 0xc82089c640]} +&{Script QChar::Script commendable public [0xc82089c860 0xc82089c8e0 0xc82089c9c0 0xc82089ca40 0xc82089cae0 0xc82089cba0 0xc82089cc20 0xc82089ccc0 0xc82089cd80 0xc82089ce40 0xc82089cec0 0xc82089cf80 0xc82089d080 0xc82089d100 0xc82089d1e0 0xc82089d260 0xc82089d320 0xc82089d3a0 0xc82089d480 0xc82089d520 0xc82089d5a0 0xc82089d640 0xc82089d700 0xc82089d7a0 0xc82089d820 0xc82089d900 0xc82089d9a0 0xc82089da20 0xc82089dac0 0xc82089dbe0 0xc82089dce0 0xc82089dd80 0xc82089de20 0xc82089df00 0xc82089dfa0 0xc8208ae020 0xc8208ae0a0 0xc8208ae140 0xc8208ae1e0 0xc8208ae2c0 0xc8208ae340 0xc8208ae3c0 0xc8208ae4a0 0xc8208ae540 0xc8208ae5c0 0xc8208ae660 0xc8208ae740 0xc8208ae7c0 0xc8208ae840 0xc8208ae920 0xc8208ae9c0 0xc8208aea40 0xc8208aeae0 0xc8208aeba0 0xc8208aec20 0xc8208aecc0 0xc8208aed40 0xc8208aee40 0xc8208aef00 0xc8208af000 0xc8208af0e0 0xc8208af220 0xc8208af2e0 0xc8208af3c0 0xc8208af480 0xc8208af560 0xc8208af5e0 0xc8208af680 0xc8208af700 0xc8208af7a0 0xc8208af820 0xc8208af8e0 0xc8208af9c0 0xc8208afa40 0xc8208afae0 0xc8208afb60 0xc8208afc00 0xc8208afc80 0xc8208afd20 0xc8208afda0 0xc8208afe20 0xc8208afec0 0xc8208aff80 0xc820888000 0xc820888080 0xc820888120 0xc820888220 0xc820888340 0xc820888440 0xc820888560 0xc8208886a0 0xc820888760 0xc820888800 0xc8208888c0 0xc820888940 0xc8208889e0 0xc820888ac0 0xc820888b80 0xc820888c80 0xc820888da0 0xc820888e40 0xc820888ee0 0xc820889000 0xc8208890e0 0xc8208891a0 0xc820889280 0xc820889320 0xc8208893a0 0xc820889460 0xc820889580 0xc820889600 0xc8208896a0 0xc8208897a0 0xc820889880 0xc8208899c0 0xc820889a40 0xc820889b00 0xc820889c20 0xc820889ca0 0xc820889d40 0xc820889e00 0xc820889ec0 0xc820889fa0 0xc820876060 0xc820876100 0xc8208761e0 0xc8208762c0]} +&{SpecialCharacter QChar::SpecialCharacter commendable public [0xc820876500 0xc8208765c0 0xc820876640 0xc8208766e0 0xc8208767e0 0xc820876860 0xc820876900 0xc8208769e0 0xc820876b40 0xc820876c20 0xc820876ca0 0xc820876da0 0xc820876ea0 0xc820876f40]} +&{UnicodeVersion QChar::UnicodeVersion commendable public [0xc820877200 0xc820877320 0xc8208773a0 0xc820877440 0xc820877540 0xc820877600 0xc820877680 0xc820877720 0xc820877820 0xc8208778c0 0xc820877940 0xc8208779e0 0xc820877aa0 0xc820877b60 0xc820877be0 0xc820877c80 0xc820877d80]} diff --git a/internal/binding/dump/QtCore/QChildEvent.txt b/internal/binding/dump/QtCore/QChildEvent.txt new file mode 100755 index 00000000..d70df3e6 --- /dev/null +++ b/internal/binding/dump/QtCore/QChildEvent.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{QChildEvent QChildEvent::QChildEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreevent.h non constructor false false [0xc8202019a0 0xc820201a40] } +&{added QChildEvent::added commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreevent.h non plain false false bool [] } +&{child QChildEvent::child commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreevent.h non plain false false QObject * [] } +&{polished QChildEvent::polished commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreevent.h non plain false false bool [] } +&{removed QChildEvent::removed commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreevent.h non plain false false bool [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QCollator.txt b/internal/binding/dump/QtCore/QCollator.txt new file mode 100755 index 00000000..0a2e3f01 --- /dev/null +++ b/internal/binding/dump/QtCore/QCollator.txt @@ -0,0 +1,21 @@ +######################################## FUNCTIONS ######################################## +&{caseSensitivity QCollator::caseSensitivity commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcollator.cpp non plain false false Qt::CaseSensitivity [] } +&{ignorePunctuation QCollator::ignorePunctuation commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcollator.cpp non plain false false bool [] } +&{numericMode QCollator::numericMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcollator.cpp non plain false false bool [] } +&{setCaseSensitivity QCollator::setCaseSensitivity commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcollator.cpp non plain false false void [0xc8207bcaa0] } +&{setIgnorePunctuation QCollator::setIgnorePunctuation commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcollator.cpp non plain false false void [0xc8207bcda0] } +&{setNumericMode QCollator::setNumericMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcollator.cpp non plain false false void [0xc8207bd040] } +&{QCollator QCollator::QCollator commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcollator.h non constructor false true 3 [0xc8207bd2c0] } +&{QCollator QCollator::QCollator commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcollator.h non constructor false true 2 [0xc8207bd520] } +&{QCollator QCollator::QCollator commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcollator.h non constructor false false [0xc8207bd800] } +&{locale QCollator::locale commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcollator.h non plain false false QLocale [] } +&{operator= QCollator::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcollator.h non plain false true 2 QCollator & [0xc8207bdee0] } +&{operator= QCollator::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcollator.h non plain false false QCollator & [0xc8207a8120] } +&{setLocale QCollator::setLocale commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcollator.h non plain false false void [0xc8207a8380] } +&{swap QCollator::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcollator.h non plain false false void [0xc8207a8580] } +&{~QCollator QCollator::~QCollator commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcollator.h non destructor false false [] } +&{compare QCollator::compare commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcollator_win.cpp non plain false true 3 int [0xc8207a8900 0xc8207a89a0 0xc8207a8a60 0xc8207a8ae0] } +&{compare QCollator::compare commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcollator_win.cpp non plain false false int [0xc8207a8d40 0xc8207a8e00] } +&{compare QCollator::compare commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcollator_win.cpp non plain false true 2 int [0xc8207a9060 0xc8207a9140] } +&{sortKey QCollator::sortKey commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcollator_win.cpp non plain false false QCollatorSortKey [0xc8207a9420] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QCollatorSortKey.txt b/internal/binding/dump/QtCore/QCollatorSortKey.txt new file mode 100755 index 00000000..889d959a --- /dev/null +++ b/internal/binding/dump/QtCore/QCollatorSortKey.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{QCollatorSortKey QCollatorSortKey::QCollatorSortKey commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcollator.h non constructor false false [0xc8207a96e0] } +&{operator= QCollatorSortKey::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcollator.h non plain false true 2 QCollatorSortKey & [0xc8207a9b60] } +&{operator= QCollatorSortKey::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcollator.h non plain false false QCollatorSortKey & [0xc8207a9de0] } +&{swap QCollatorSortKey::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcollator.h non plain false false void [0xc820796000] } +&{~QCollatorSortKey QCollatorSortKey::~QCollatorSortKey commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcollator.h non destructor false false [] } +&{compare QCollatorSortKey::compare commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcollator_win.cpp non plain false false int [0xc820796480] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QCommandLineOption.txt b/internal/binding/dump/QtCore/QCommandLineOption.txt new file mode 100755 index 00000000..4caeab25 --- /dev/null +++ b/internal/binding/dump/QtCore/QCommandLineOption.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{QCommandLineOption QCommandLineOption::QCommandLineOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineoption.h non constructor false true 5 [0xc820796a60] } +&{QCommandLineOption QCommandLineOption::QCommandLineOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineoption.h non constructor false false [0xc820796ce0] } +&{QCommandLineOption QCommandLineOption::QCommandLineOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineoption.h non constructor false true 3 [0xc820796f20 0xc820796fa0 0xc820797020 0xc8207970c0] } +&{QCommandLineOption QCommandLineOption::QCommandLineOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineoption.h non constructor false true 2 [0xc820797340] } +&{QCommandLineOption QCommandLineOption::QCommandLineOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineoption.h non constructor false true 4 [0xc820797600 0xc820797720 0xc8207977a0 0xc820797820] } +&{defaultValues QCommandLineOption::defaultValues commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineoption.h non plain false false QStringList [] } +&{description QCommandLineOption::description commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineoption.h non plain false false QString [] } +&{names QCommandLineOption::names commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineoption.h non plain false false QStringList [] } +&{operator= QCommandLineOption::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineoption.h non plain false true 2 QCommandLineOption & [0xc820797ea0] } +&{operator= QCommandLineOption::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineoption.h non plain false false QCommandLineOption & [0xc820780160] } +&{setDefaultValue QCommandLineOption::setDefaultValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineoption.h non plain false false void [0xc820780300] } +&{setDefaultValues QCommandLineOption::setDefaultValues commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineoption.h non plain false false void [0xc820780480] } +&{setDescription QCommandLineOption::setDescription commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineoption.h non plain false false void [0xc820780620] } +&{setValueName QCommandLineOption::setValueName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineoption.h non plain false false void [0xc8207807e0] } +&{swap QCommandLineOption::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineoption.h non plain false false void [0xc8207809e0] } +&{valueName QCommandLineOption::valueName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineoption.h non plain false false QString [] } +&{~QCommandLineOption QCommandLineOption::~QCommandLineOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineoption.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QCommandLineParser.txt b/internal/binding/dump/QtCore/QCommandLineParser.txt new file mode 100755 index 00000000..19210b6f --- /dev/null +++ b/internal/binding/dump/QtCore/QCommandLineParser.txt @@ -0,0 +1,30 @@ +######################################## FUNCTIONS ######################################## +&{QCommandLineParser QCommandLineParser::QCommandLineParser commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineparser.h non constructor false false [] } +&{addHelpOption QCommandLineParser::addHelpOption commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineparser.h non plain false false QCommandLineOption [] } +&{addOption QCommandLineParser::addOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineparser.h non plain false false bool [0xc820781500] } +&{addOptions QCommandLineParser::addOptions commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineparser.h non plain false false bool [0xc820781700] } +&{addPositionalArgument QCommandLineParser::addPositionalArgument commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineparser.h non plain false false void [0xc8207818e0 0xc820781960 0xc8207819e0] } +&{addVersionOption QCommandLineParser::addVersionOption commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineparser.h non plain false false QCommandLineOption [] } +&{applicationDescription QCommandLineParser::applicationDescription commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineparser.h non plain false false QString [] } +&{clearPositionalArguments QCommandLineParser::clearPositionalArguments commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineparser.h non plain false false void [] } +&{errorText QCommandLineParser::errorText commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineparser.h non plain false false QString [] } +&{helpText QCommandLineParser::helpText commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineparser.h non plain false false QString [] } +&{isSet QCommandLineParser::isSet commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineparser.h non plain false true 2 bool [0xc820758200] } +&{isSet QCommandLineParser::isSet commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineparser.h non plain false false bool [0xc820758480] } +&{optionNames QCommandLineParser::optionNames commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineparser.h non plain false false QStringList [] } +&{parse QCommandLineParser::parse commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineparser.h non plain false false bool [0xc820758860] } +&{positionalArguments QCommandLineParser::positionalArguments commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineparser.h non plain false false QStringList [] } +&{process QCommandLineParser::process commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineparser.h non plain false true 2 void [0xc820758be0] } +&{process QCommandLineParser::process commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineparser.h non plain false false void [0xc820758e40] } +&{setApplicationDescription QCommandLineParser::setApplicationDescription commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineparser.h non plain false false void [0xc820759060] } +&{setSingleDashWordOptionMode QCommandLineParser::setSingleDashWordOptionMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineparser.h non plain false false void [0xc8207592a0] } +&{showHelp QCommandLineParser::showHelp commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineparser.h non plain false false void [0xc8207595a0] } +&{showVersion QCommandLineParser::showVersion commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineparser.h non plain false false void [] } +&{unknownOptionNames QCommandLineParser::unknownOptionNames commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineparser.h non plain false false QStringList [] } +&{value QCommandLineParser::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineparser.h non plain false true 2 QString [0xc820759a20] } +&{value QCommandLineParser::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineparser.h non plain false false QString [0xc820759ce0] } +&{values QCommandLineParser::values commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineparser.h non plain false true 2 QStringList [0xc820759f60] } +&{values QCommandLineParser::values commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineparser.h non plain false false QStringList [0xc820740240] } +&{~QCommandLineParser QCommandLineParser::~QCommandLineParser commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcommandlineparser.h non destructor false false [] } +######################################## ENUMS ######################################## +&{SingleDashWordOptionMode QCommandLineParser::SingleDashWordOptionMode commendable public [0xc820780fe0 0xc8207810c0]} diff --git a/internal/binding/dump/QtCore/QContiguousCache.txt b/internal/binding/dump/QtCore/QContiguousCache.txt new file mode 100755 index 00000000..2094034c --- /dev/null +++ b/internal/binding/dump/QtCore/QContiguousCache.txt @@ -0,0 +1,37 @@ +######################################## FUNCTIONS ######################################## +&{append QContiguousCache::append commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false void [0xc820740e80] } +&{QContiguousCache QContiguousCache::QContiguousCache commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non constructor false true 2 [0xc820741b20] } +&{QContiguousCache QContiguousCache::QContiguousCache commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non constructor false false [0xc820741d60] } +&{areIndexesValid QContiguousCache::areIndexesValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false bool [] } +&{at QContiguousCache::at commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false const T & [0xc82072c0c0] } +&{available QContiguousCache::available commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false int [] } +&{capacity QContiguousCache::capacity commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false int [] } +&{clear QContiguousCache::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false void [] } +&{containsIndex QContiguousCache::containsIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false bool [0xc82072c720] } +&{count QContiguousCache::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false int [] } +&{first QContiguousCache::first commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false T & [] } +&{first QContiguousCache::first commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false true 2 const T & [] } +&{firstIndex QContiguousCache::firstIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false int [] } +&{insert QContiguousCache::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false void [0xc82072cf40 0xc82072cfc0] } +&{isEmpty QContiguousCache::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false bool [] } +&{isFull QContiguousCache::isFull commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false bool [] } +&{last QContiguousCache::last commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false T & [] } +&{last QContiguousCache::last commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false true 2 const T & [] } +&{lastIndex QContiguousCache::lastIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false int [] } +&{normalizeIndexes QContiguousCache::normalizeIndexes commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false void [] } +&{operator!= QContiguousCache::operator!= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false bool [0xc82072d940] } +&{operator= QContiguousCache::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false true 2 QContiguousCache & [0xc82072dc40] } +&{operator= QContiguousCache::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false QContiguousCache & [0xc82072df20] } +&{operator== QContiguousCache::operator== commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false bool [0xc8207161a0] } +&{operator[] QContiguousCache::operator[] commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false T & [0xc820716460] } +&{operator[] QContiguousCache::operator[] commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false true 2 const T & [0xc820716660] } +&{prepend QContiguousCache::prepend commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false void [0xc8207168e0] } +&{removeFirst QContiguousCache::removeFirst commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false void [] } +&{removeLast QContiguousCache::removeLast commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false void [] } +&{setCapacity QContiguousCache::setCapacity commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false void [0xc820716d80] } +&{size QContiguousCache::size commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false int [] } +&{swap QContiguousCache::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false void [0xc820717120] } +&{takeFirst QContiguousCache::takeFirst commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false T [] } +&{takeLast QContiguousCache::takeLast commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non plain false false T [] } +&{~QContiguousCache QContiguousCache::~QContiguousCache commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcontiguouscache.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QCoreApplication.txt b/internal/binding/dump/QtCore/QCoreApplication.txt new file mode 100755 index 00000000..36661539 --- /dev/null +++ b/internal/binding/dump/QtCore/QCoreApplication.txt @@ -0,0 +1,49 @@ +######################################## FUNCTIONS ######################################## +&{applicationName QCoreApplication::applicationName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.cpp non plain true false QString [] } +&{applicationVersion QCoreApplication::applicationVersion commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.cpp non plain true false QString [] } +&{organizationDomain QCoreApplication::organizationDomain commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.cpp non plain true false QString [] } +&{organizationName QCoreApplication::organizationName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.cpp non plain true false QString [] } +&{setApplicationName QCoreApplication::setApplicationName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.cpp non plain true false void [0xc82065a7a0] } +&{setApplicationVersion QCoreApplication::setApplicationVersion commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.cpp non plain true false void [0xc82065a9a0] } +&{setOrganizationDomain QCoreApplication::setOrganizationDomain commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.cpp non plain true false void [0xc82065aba0] } +&{setOrganizationName QCoreApplication::setOrganizationName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.cpp non plain true false void [0xc82065ada0] } +&{QCoreApplication QCoreApplication::QCoreApplication commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non constructor false false [0xc82065b280 0xc82065b300] } +&{aboutToQuit QCoreApplication::aboutToQuit commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non signal false false void [] } +&{addLibraryPath QCoreApplication::addLibraryPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false void [0xc82065b5c0] } +&{applicationDirPath QCoreApplication::applicationDirPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false QString [] } +&{applicationFilePath QCoreApplication::applicationFilePath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false QString [] } +&{applicationPid QCoreApplication::applicationPid commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false qint64 [] } +&{arguments QCoreApplication::arguments commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false QStringList [] } +&{closingDown QCoreApplication::closingDown commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false bool [] } +&{event QCoreApplication::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h impure plain false false bool [0xc820670380] } +&{eventDispatcher QCoreApplication::eventDispatcher commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false QAbstractEventDispatcher * [] } +&{exec QCoreApplication::exec commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false int [] } +&{exit QCoreApplication::exit commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false void [0xc820670760] } +&{flush QCoreApplication::flush commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false void [] } +&{installNativeEventFilter QCoreApplication::installNativeEventFilter commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain false false void [0xc820670ae0] } +&{installTranslator QCoreApplication::installTranslator commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false bool [0xc820670ce0] } +&{instance QCoreApplication::instance commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false QCoreApplication * [] } +&{isQuitLockEnabled QCoreApplication::isQuitLockEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false bool [] } +&{isSetuidAllowed QCoreApplication::isSetuidAllowed commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false bool [] } +&{libraryPaths QCoreApplication::libraryPaths commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false QStringList [] } +&{notify QCoreApplication::notify commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h impure plain false false bool [0xc820671320 0xc8206713a0] } +&{postEvent QCoreApplication::postEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false void [0xc8206719c0 0xc820671a40 0xc820671ae0] } +&{processEvents QCoreApplication::processEvents commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false void [0xc820671ce0] } +&{processEvents QCoreApplication::processEvents commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true true 2 void [0xc82068c0c0 0xc82068c180] } +&{quit QCoreApplication::quit commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non slot true false void [] } +&{removeLibraryPath QCoreApplication::removeLibraryPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false void [0xc82068c440] } +&{removeNativeEventFilter QCoreApplication::removeNativeEventFilter commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain false false void [0xc82068c620] } +&{removePostedEvents QCoreApplication::removePostedEvents commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false void [0xc82068c820 0xc82068c8a0] } +&{removeTranslator QCoreApplication::removeTranslator commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false bool [0xc82068ca00] } +&{sendEvent QCoreApplication::sendEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false bool [0xc82068cbe0 0xc82068cc60] } +&{sendPostedEvents QCoreApplication::sendPostedEvents commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false void [0xc820070120 0xc820070280] } +&{setAttribute QCoreApplication::setAttribute commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false void [0xc820070780 0xc820070880] } +&{setEventDispatcher QCoreApplication::setEventDispatcher commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false void [0xc820070b20] } +&{setLibraryPaths QCoreApplication::setLibraryPaths commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false void [0xc820070e00] } +&{setQuitLockEnabled QCoreApplication::setQuitLockEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false void [0xc8200711a0] } +&{setSetuidAllowed QCoreApplication::setSetuidAllowed commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false void [0xc820071380] } +&{startingUp QCoreApplication::startingUp commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false bool [] } +&{testAttribute QCoreApplication::testAttribute commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false bool [0xc820071820] } +&{translate QCoreApplication::translate commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non plain true false QString [0xc820200200 0xc8202002a0 0xc820200340 0xc820200400] } +&{~QCoreApplication QCoreApplication::~QCoreApplication commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreapplication.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QCryptographicHash.txt b/internal/binding/dump/QtCore/QCryptographicHash.txt new file mode 100755 index 00000000..0ac41329 --- /dev/null +++ b/internal/binding/dump/QtCore/QCryptographicHash.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{QCryptographicHash QCryptographicHash::QCryptographicHash commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcryptographichash.h non constructor false false [0xc8207001a0] } +&{addData QCryptographicHash::addData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcryptographichash.h non plain false true 2 bool [0xc8207003e0] } +&{addData QCryptographicHash::addData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcryptographichash.h non plain false true 3 void [0xc820700640] } +&{addData QCryptographicHash::addData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcryptographichash.h non plain false false void [0xc8207008a0 0xc820700940] } +&{hash QCryptographicHash::hash commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcryptographichash.h non plain true false QByteArray [0xc820700ba0 0xc820700c60] } +&{reset QCryptographicHash::reset commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcryptographichash.h non plain false false void [] } +&{result QCryptographicHash::result commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcryptographichash.h non plain false false QByteArray [] } +&{~QCryptographicHash QCryptographicHash::~QCryptographicHash commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qcryptographichash.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Algorithm QCryptographicHash::Algorithm commendable public [0xc820717880 0xc820717900 0xc8207179a0 0xc820717a40 0xc820717b20 0xc820717ba0 0xc820717c40 0xc820717d00 0xc820717da0 0xc820717e40 0xc820717ec0]} diff --git a/internal/binding/dump/QtCore/QDataStream.txt b/internal/binding/dump/QtCore/QDataStream.txt new file mode 100755 index 00000000..ebe90541 --- /dev/null +++ b/internal/binding/dump/QtCore/QDataStream.txt @@ -0,0 +1,52 @@ +######################################## FUNCTIONS ######################################## +&{QDataStream QDataStream::QDataStream commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.cpp non constructor false true 3 [0xc8202b3be0 0xc8202b3c80] } +&{atEnd QDataStream::atEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.cpp non plain false false bool [] } +&{QDataStream QDataStream::QDataStream commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non constructor false false [] } +&{QDataStream QDataStream::QDataStream commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non constructor false true 2 [0xc8202c36a0] } +&{QDataStream QDataStream::QDataStream commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non constructor false true 4 [0xc8202c38c0] } +&{byteOrder QDataStream::byteOrder commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false false ByteOrder [] } +&{device QDataStream::device commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false false QIODevice * [] } +&{floatingPointPrecision QDataStream::floatingPointPrecision commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false false FloatingPointPrecision [] } +&{operator<< QDataStream::operator<< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false true 2 QDataStream & [0xc8202c3e00] } +&{operator<< QDataStream::operator<< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false true 12 QDataStream & [0xc8202c3fa0] } +&{operator<< QDataStream::operator<< commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false true 11 QDataStream & [0xc8202d0140] } +&{operator<< QDataStream::operator<< commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false true 10 QDataStream & [0xc8202d02e0] } +&{operator<< QDataStream::operator<< commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false true 5 QDataStream & [0xc8202d0480] } +&{operator<< QDataStream::operator<< commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false true 6 QDataStream & [0xc8202d0620] } +&{operator<< QDataStream::operator<< commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false true 8 QDataStream & [0xc8202d07c0] } +&{operator<< QDataStream::operator<< commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false false QDataStream & [0xc8202d0980] } +&{operator<< QDataStream::operator<< commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false true 4 QDataStream & [0xc8202d0b40] } +&{operator<< QDataStream::operator<< commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false true 9 QDataStream & [0xc8202d0ce0] } +&{operator<< QDataStream::operator<< commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false true 7 QDataStream & [0xc8202d0e80] } +&{operator<< QDataStream::operator<< commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false true 3 QDataStream & [0xc8202d1020] } +&{operator>> QDataStream::operator>> commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false true 2 QDataStream & [0xc8202d11c0] } +&{operator>> QDataStream::operator>> commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false true 12 QDataStream & [0xc8202d1360] } +&{operator>> QDataStream::operator>> commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false true 11 QDataStream & [0xc8202d1500] } +&{operator>> QDataStream::operator>> commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false true 10 QDataStream & [0xc8202d16a0] } +&{operator>> QDataStream::operator>> commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false true 5 QDataStream & [0xc8202d1840] } +&{operator>> QDataStream::operator>> commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false true 7 QDataStream & [0xc8202d19e0] } +&{operator>> QDataStream::operator>> commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false true 9 QDataStream & [0xc8202d1b80] } +&{operator>> QDataStream::operator>> commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false false QDataStream & [0xc8202d1d40] } +&{operator>> QDataStream::operator>> commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false true 4 QDataStream & [0xc8202d1ee0] } +&{operator>> QDataStream::operator>> commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false true 6 QDataStream & [0xc8202ec080] } +&{operator>> QDataStream::operator>> commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false true 8 QDataStream & [0xc8202ec220] } +&{operator>> QDataStream::operator>> commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false true 3 QDataStream & [0xc8202ec3c0] } +&{readBytes QDataStream::readBytes commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false false QDataStream & [0xc8202ec5a0 0xc8202ec620] } +&{readRawData QDataStream::readRawData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false false int [0xc8202ec7e0 0xc8202ec860] } +&{resetStatus QDataStream::resetStatus commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false false void [] } +&{setByteOrder QDataStream::setByteOrder commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false false void [0xc8202ecb40] } +&{setDevice QDataStream::setDevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false false void [0xc8202ecd20] } +&{setFloatingPointPrecision QDataStream::setFloatingPointPrecision commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false false void [0xc8202ecee0] } +&{setStatus QDataStream::setStatus commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false false void [0xc8202ed100] } +&{setVersion QDataStream::setVersion commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false false void [0xc8202ed2e0] } +&{skipRawData QDataStream::skipRawData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false false int [0xc8202ed4c0] } +&{status QDataStream::status commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false false Status [] } +&{version QDataStream::version commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false false int [] } +&{writeBytes QDataStream::writeBytes commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false false QDataStream & [0xc8202ed960 0xc8202ed9e0] } +&{writeRawData QDataStream::writeRawData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non plain false false int [0xc8202edba0 0xc8202edc20] } +&{~QDataStream QDataStream::~QDataStream commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdatastream.h non destructor false false [] } +######################################## ENUMS ######################################## +&{ByteOrder QDataStream::ByteOrder commendable public [0xc8202b3fe0 0xc8202c20c0]} +&{FloatingPointPrecision QDataStream::FloatingPointPrecision commendable public [0xc8202c22a0 0xc8202c2320]} +&{Status QDataStream::Status commendable public [0xc8202c24e0 0xc8202c2560 0xc8202c25e0 0xc8202c2660]} +&{Version QDataStream::Version commendable public [0xc8202c2820 0xc8202c28a0 0xc8202c2920 0xc8202c29a0 0xc8202c2a40 0xc8202c2ac0 0xc8202c2b40 0xc8202c2bc0 0xc8202c2c60 0xc8202c2ce0 0xc8202c2d60 0xc8202c2de0 0xc8202c2e60 0xc8202c2ee0 0xc8202c2f60 0xc8202c2fe0 0xc8202c3080 0xc8202c3100 0xc8202c3180 0xc8202c3200 0xc8202c3280 0xc8202c3300 0xc8202c33a0]} diff --git a/internal/binding/dump/QtCore/QDate.txt b/internal/binding/dump/QtCore/QDate.txt new file mode 100755 index 00000000..b3161036 --- /dev/null +++ b/internal/binding/dump/QtCore/QDate.txt @@ -0,0 +1,40 @@ +######################################## FUNCTIONS ######################################## +&{currentDate QDate::currentDate commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.cpp non plain true false QDate [] } +&{fromString QDate::fromString commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.cpp non plain true false QDate [0xc820701ae0 0xc820701b80] } +&{fromString QDate::fromString commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.cpp non plain true true 2 QDate [0xc820701d80 0xc820701e20] } +&{isLeapYear QDate::isLeapYear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.cpp non plain true false bool [0xc8206e8080] } +&{toString QDate::toString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.cpp non plain false true 2 QString [0xc8206e8260] } +&{QDate QDate::QDate commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non constructor false false [] } +&{QDate QDate::QDate commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non constructor false true 3 [0xc8206e87a0 0xc8206e8820 0xc8206e88c0] } +&{addDays QDate::addDays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false QDate [0xc8206e8c20] } +&{addMonths QDate::addMonths commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false QDate [0xc8206e8dc0] } +&{addYears QDate::addYears commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false QDate [0xc8206e8f80] } +&{day QDate::day commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false int [] } +&{dayOfWeek QDate::dayOfWeek commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false int [] } +&{dayOfYear QDate::dayOfYear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false int [] } +&{daysInMonth QDate::daysInMonth commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false int [] } +&{daysInYear QDate::daysInYear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false int [] } +&{daysTo QDate::daysTo commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false qint64 [0xc8206e95e0] } +&{fromJulianDay QDate::fromJulianDay commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain true false QDate [0xc8206e9840] } +&{getDate QDate::getDate commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false void [0xc8206e9a00 0xc8206e9a80 0xc8206e9b20] } +&{isNull QDate::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false bool [] } +&{isValid QDate::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain true true 2 bool [0xc8206e9de0 0xc8206e9e60 0xc8206e9f00] } +&{isValid QDate::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false bool [] } +&{longDayName QDate::longDayName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain true false QString [0xc8206d61e0 0xc8206d6260] } +&{longMonthName QDate::longMonthName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain true false QString [0xc8206d6460 0xc8206d6500] } +&{month QDate::month commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false int [] } +&{operator!= QDate::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false bool [0xc8206d6920] } +&{operator< QDate::operator< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false bool [0xc8206d6a80] } +&{operator<= QDate::operator<= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false bool [0xc8206d6ca0] } +&{operator== QDate::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false bool [0xc8206d6ea0] } +&{operator> QDate::operator> commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false bool [0xc8206d7060] } +&{operator>= QDate::operator>= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false bool [0xc8206d7260] } +&{setDate QDate::setDate commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false bool [0xc8206d7440 0xc8206d7520 0xc8206d75a0] } +&{shortDayName QDate::shortDayName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain true false QString [0xc8206d7a80 0xc8206d7b60] } +&{shortMonthName QDate::shortMonthName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain true false QString [0xc8206d7d20 0xc8206d7dc0] } +&{toJulianDay QDate::toJulianDay commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false qint64 [] } +&{toString QDate::toString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false QString [0xc8206bc020] } +&{weekNumber QDate::weekNumber commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false int [0xc8206bc1e0] } +&{year QDate::year commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false int [] } +######################################## ENUMS ######################################## +&{MonthNameType QDate::MonthNameType commendable public [0xc8206e84a0 0xc8206e8540]} diff --git a/internal/binding/dump/QtCore/QDateTime.txt b/internal/binding/dump/QtCore/QDateTime.txt new file mode 100755 index 00000000..9cf72c6e --- /dev/null +++ b/internal/binding/dump/QtCore/QDateTime.txt @@ -0,0 +1,65 @@ +######################################## FUNCTIONS ######################################## +&{currentDateTime QDateTime::currentDateTime commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.cpp non plain true false QDateTime [] } +&{currentDateTimeUtc QDateTime::currentDateTimeUtc commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.cpp non plain true false QDateTime [] } +&{currentMSecsSinceEpoch QDateTime::currentMSecsSinceEpoch commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.cpp non plain true false qint64 [] } +&{fromString QDateTime::fromString commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.cpp non plain true false QDateTime [0xc8206bcbe0 0xc8206bcc60] } +&{fromString QDateTime::fromString commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.cpp non plain true true 2 QDateTime [0xc8206bce80 0xc8206bcf00] } +&{setTime_t QDateTime::setTime_t commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.cpp non plain false false void [0xc8206bd140] } +&{toOffsetFromUtc QDateTime::toOffsetFromUtc commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.cpp non plain false false QDateTime [0xc8206bd320] } +&{toString QDateTime::toString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.cpp non plain false true 2 QString [0xc8206bd520] } +&{toTimeSpec QDateTime::toTimeSpec commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.cpp non plain false false QDateTime [0xc8206bd740] } +&{QDateTime QDateTime::QDateTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non constructor false false [] } +&{QDateTime QDateTime::QDateTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non constructor false true 2 [0xc8206bda80] } +&{QDateTime QDateTime::QDateTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non constructor false true 3 [0xc8206bdca0 0xc8206bdd60 0xc8206bdde0] } +&{QDateTime QDateTime::QDateTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non constructor false true 4 [0xc8206a6000 0xc8206a60a0 0xc8206a6120 0xc8206a61c0] } +&{QDateTime QDateTime::QDateTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non constructor false true 5 [0xc8206a63c0 0xc8206a6460 0xc8206a6520] } +&{QDateTime QDateTime::QDateTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non constructor false true 6 [0xc8206a67a0] } +&{addDays QDateTime::addDays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false QDateTime [0xc8206a6a60] } +&{addMSecs QDateTime::addMSecs commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false QDateTime [0xc8206a6ca0] } +&{addMonths QDateTime::addMonths commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false QDateTime [0xc8206a6ee0] } +&{addSecs QDateTime::addSecs commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false QDateTime [0xc8206a7120] } +&{addYears QDateTime::addYears commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false QDateTime [0xc8206a7380] } +&{date QDateTime::date commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false QDate [] } +&{daysTo QDateTime::daysTo commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false qint64 [0xc8206a76a0] } +&{fromMSecsSinceEpoch QDateTime::fromMSecsSinceEpoch commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain true false QDateTime [0xc8206a7920] } +&{fromMSecsSinceEpoch QDateTime::fromMSecsSinceEpoch commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain true true 2 QDateTime [0xc8206a7ba0 0xc8206a7c20 0xc8206a7ca0] } +&{fromMSecsSinceEpoch QDateTime::fromMSecsSinceEpoch commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain true true 3 QDateTime [0xc8206a7ea0 0xc8206a7f40] } +&{fromTime_t QDateTime::fromTime_t commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain true false QDateTime [0xc82068c1e0] } +&{fromTime_t QDateTime::fromTime_t commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain true true 2 QDateTime [0xc82068c3e0 0xc82068c4a0 0xc82068c520] } +&{fromTime_t QDateTime::fromTime_t commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain true true 3 QDateTime [0xc82068c760 0xc82068c860] } +&{isDaylightTime QDateTime::isDaylightTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false bool [] } +&{isNull QDateTime::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false bool [] } +&{isValid QDateTime::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false bool [] } +&{msecsTo QDateTime::msecsTo commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false qint64 [0xc82068ce80] } +&{offsetFromUtc QDateTime::offsetFromUtc commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false int [] } +&{operator!= QDateTime::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false bool [0xc82068d280] } +&{operator< QDateTime::operator< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false bool [0xc82068d4c0] } +&{operator<= QDateTime::operator<= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false bool [0xc82068d760] } +&{operator= QDateTime::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false QDateTime & [0xc82068d9c0] } +&{operator== QDateTime::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false bool [0xc82068dca0] } +&{operator> QDateTime::operator> commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false bool [0xc82068df20] } +&{operator>= QDateTime::operator>= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false bool [0xc8206702a0] } +&{secsTo QDateTime::secsTo commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false qint64 [0xc820670580] } +&{setDate QDateTime::setDate commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false void [0xc820670820] } +&{setMSecsSinceEpoch QDateTime::setMSecsSinceEpoch commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false void [0xc820670a60] } +&{setOffsetFromUtc QDateTime::setOffsetFromUtc commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false void [0xc820670ca0] } +&{setTime QDateTime::setTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false void [0xc820670f00] } +&{setTimeSpec QDateTime::setTimeSpec commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false void [0xc8206710e0] } +&{setTimeZone QDateTime::setTimeZone commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false void [0xc820671340] } +&{swap QDateTime::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false void [0xc8206717c0] } +&{time QDateTime::time commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false QTime [] } +&{timeSpec QDateTime::timeSpec commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false Qt::TimeSpec [] } +&{timeZone QDateTime::timeZone commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false QTimeZone [] } +&{timeZoneAbbreviation QDateTime::timeZoneAbbreviation commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false QString [] } +&{toLocalTime QDateTime::toLocalTime commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false QDateTime [] } +&{toMSecsSinceEpoch QDateTime::toMSecsSinceEpoch commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false qint64 [] } +&{toString QDateTime::toString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false QString [0xc82065a380] } +&{toTimeZone QDateTime::toTimeZone commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false QDateTime [0xc82065a660] } +&{toTime_t QDateTime::toTime_t commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false uint [] } +&{toUTC QDateTime::toUTC commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false QDateTime [] } +&{~QDateTime QDateTime::~QDateTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non destructor false false [] } +&{fromCFDate QDateTime::fromCFDate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime_mac.mm non plain true false QDateTime [0xc82065af60] } +&{fromNSDate QDateTime::fromNSDate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime_mac.mm non plain true false QDateTime [0xc82065b2c0] } +&{toCFDate QDateTime::toCFDate commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime_mac.mm non plain false false CFDateRef [] } +&{toNSDate QDateTime::toNSDate commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime_mac.mm non plain false false NSDate * [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QDebug.txt b/internal/binding/dump/QtCore/QDebug.txt new file mode 100755 index 00000000..42e2a3b0 --- /dev/null +++ b/internal/binding/dump/QtCore/QDebug.txt @@ -0,0 +1,37 @@ +######################################## FUNCTIONS ######################################## +&{~QDebug QDebug::~QDebug commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.cpp non destructor false false [] } +&{QDebug QDebug::QDebug commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non constructor false false [0xc820314560] } +&{QDebug QDebug::QDebug commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non constructor false true 2 [0xc8203146e0] } +&{QDebug QDebug::QDebug commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non constructor false true 3 [0xc820314860] } +&{QDebug QDebug::QDebug commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non constructor false true 4 [0xc820314a00] } +&{autoInsertSpaces QDebug::autoInsertSpaces commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false false bool [] } +&{maybeQuote QDebug::maybeQuote commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false false QDebug & [0xc820314ce0] } +&{maybeSpace QDebug::maybeSpace commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false false QDebug & [] } +&{noquote QDebug::noquote commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false false QDebug & [] } +&{nospace QDebug::nospace commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false false QDebug & [] } +&{operator<< QDebug::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false false QDebug & [0xc820315120] } +&{operator<< QDebug::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false true 17 QDebug & [0xc8203152e0] } +&{operator<< QDebug::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false true 2 QDebug & [0xc8203154c0] } +&{operator<< QDebug::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false true 3 QDebug & [0xc8203156a0] } +&{operator<< QDebug::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false true 18 QDebug & [0xc820315880] } +&{operator<< QDebug::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false true 15 QDebug & [0xc820315a80] } +&{operator<< QDebug::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false true 16 QDebug & [0xc820315c80] } +&{operator<< QDebug::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false true 14 QDebug & [0xc820315e80] } +&{operator<< QDebug::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false true 19 QDebug & [0xc82032e040] } +&{operator<< QDebug::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false true 13 QDebug & [0xc82032e220] } +&{operator<< QDebug::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false true 12 QDebug & [0xc82032e400] } +&{operator<< QDebug::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false true 10 QDebug & [0xc82032e5e0] } +&{operator<< QDebug::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false true 11 QDebug & [0xc82032e7c0] } +&{operator<< QDebug::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false true 6 QDebug & [0xc82032e980] } +&{operator<< QDebug::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false true 8 QDebug & [0xc82032eb40] } +&{operator<< QDebug::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false true 4 QDebug & [0xc82032ed00] } +&{operator<< QDebug::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false true 7 QDebug & [0xc82032eec0] } +&{operator<< QDebug::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false true 9 QDebug & [0xc82032f080] } +&{operator<< QDebug::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false true 5 QDebug & [0xc82032f240] } +&{operator= QDebug::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false false QDebug & [0xc82032f840] } +&{quote QDebug::quote commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false false QDebug & [] } +&{resetFormat QDebug::resetFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false false QDebug & [] } +&{setAutoInsertSpaces QDebug::setAutoInsertSpaces commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false false void [0xc8203442a0] } +&{space QDebug::space commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false false QDebug & [] } +&{swap QDebug::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non plain false false void [0xc820344480] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QDebugStateSaver.txt b/internal/binding/dump/QtCore/QDebugStateSaver.txt new file mode 100755 index 00000000..642fb570 --- /dev/null +++ b/internal/binding/dump/QtCore/QDebugStateSaver.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{QDebugStateSaver QDebugStateSaver::QDebugStateSaver commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non constructor false false [0xc8203446c0] } +&{~QDebugStateSaver QDebugStateSaver::~QDebugStateSaver commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdebug.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QDir.txt b/internal/binding/dump/QtCore/QDir.txt new file mode 100755 index 00000000..57b32011 --- /dev/null +++ b/internal/binding/dump/QtCore/QDir.txt @@ -0,0 +1,71 @@ +######################################## FUNCTIONS ######################################## +&{QDir QDir::QDir commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non constructor false false [0xc820356280] } +&{QDir QDir::QDir commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non constructor false true 2 [0xc8203563e0] } +&{QDir QDir::QDir commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non constructor false true 3 [0xc820356520 0xc8203565a0 0xc820356640 0xc8203566c0] } +&{absoluteFilePath QDir::absoluteFilePath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false QString [0xc820356a00] } +&{absolutePath QDir::absolutePath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false QString [] } +&{addSearchPath QDir::addSearchPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain true false void [0xc820356ec0 0xc820356f40] } +&{canonicalPath QDir::canonicalPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false QString [] } +&{cd QDir::cd commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false bool [0xc8203571c0] } +&{cdUp QDir::cdUp commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false bool [] } +&{cleanPath QDir::cleanPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain true false QString [0xc820357380] } +&{count QDir::count commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false uint [] } +&{current QDir::current commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain true false QDir [] } +&{currentPath QDir::currentPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain true false QString [] } +&{dirName QDir::dirName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false QString [] } +&{drives QDir::drives commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain true false QFileInfoList [] } +&{entryInfoList QDir::entryInfoList commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false true 2 QFileInfoList [0xc820357c00 0xc820357c80] } +&{entryInfoList QDir::entryInfoList commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false QFileInfoList [0xc820357e60 0xc820357f20 0xc820357fa0] } +&{entryList QDir::entryList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false true 2 QStringList [0xc82036c100 0xc82036c180] } +&{entryList QDir::entryList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false QStringList [0xc82036c300 0xc82036c3c0 0xc82036c440] } +&{exists QDir::exists commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false true 2 bool [] } +&{exists QDir::exists commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false bool [0xc82036c620] } +&{filePath QDir::filePath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false QString [0xc82036c780] } +&{filter QDir::filter commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false Filters [] } +&{fromNativeSeparators QDir::fromNativeSeparators commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain true false QString [0xc82036ca20] } +&{home QDir::home commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain true false QDir [] } +&{homePath QDir::homePath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain true false QString [] } +&{isAbsolute QDir::isAbsolute commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false bool [] } +&{isAbsolutePath QDir::isAbsolutePath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain true false bool [0xc82036cda0] } +&{isReadable QDir::isReadable commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false bool [] } +&{isRelative QDir::isRelative commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false bool [] } +&{isRelativePath QDir::isRelativePath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain true false bool [0xc82036d0a0] } +&{isRoot QDir::isRoot commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false bool [] } +&{makeAbsolute QDir::makeAbsolute commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false bool [] } +&{match QDir::match commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain true false bool [0xc82036d360 0xc82036d3e0] } +&{match QDir::match commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain true true 2 bool [0xc82036d560 0xc82036d620] } +&{mkdir QDir::mkdir commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false bool [0xc82036d760] } +&{mkpath QDir::mkpath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false bool [0xc82036d8a0] } +&{nameFilters QDir::nameFilters commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false QStringList [] } +&{operator!= QDir::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false bool [0xc82036db00] } +&{operator= QDir::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false true 2 QDir & [0xc82036dc80] } +&{operator= QDir::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false QDir & [0xc82036dde0] } +&{operator== QDir::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false bool [0xc8203840a0] } +&{operator[] QDir::operator[] commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false QString [0xc820384200] } +&{path QDir::path commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false QString [] } +&{refresh QDir::refresh commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false void [] } +&{relativeFilePath QDir::relativeFilePath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false QString [0xc8203844e0] } +&{remove QDir::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false bool [0xc820384620] } +&{removeRecursively QDir::removeRecursively commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false bool [] } +&{rename QDir::rename commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false bool [0xc8203848c0 0xc820384940] } +&{rmdir QDir::rmdir commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false bool [0xc820384a80] } +&{rmpath QDir::rmpath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false bool [0xc820384bc0] } +&{root QDir::root commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain true false QDir [] } +&{rootPath QDir::rootPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain true false QString [] } +&{searchPaths QDir::searchPaths commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain true false QStringList [0xc820384e80] } +&{separator QDir::separator commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain true false QChar [] } +&{setCurrent QDir::setCurrent commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain true false bool [0xc820385080] } +&{setFilter QDir::setFilter commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false void [0xc820385200] } +&{setNameFilters QDir::setNameFilters commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false void [0xc8203853e0] } +&{setPath QDir::setPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false void [0xc8203855a0] } +&{setSearchPaths QDir::setSearchPaths commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain true false void [0xc820385760 0xc820385800] } +&{setSorting QDir::setSorting commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false void [0xc8203859c0] } +&{sorting QDir::sorting commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false SortFlags [] } +&{swap QDir::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain false false void [0xc820385bc0] } +&{temp QDir::temp commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain true false QDir [] } +&{tempPath QDir::tempPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain true false QString [] } +&{toNativeSeparators QDir::toNativeSeparators commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non plain true false QString [0xc820385ee0] } +&{~QDir QDir::~QDir commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdir.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Filter QDir::Filter commendable public QDir::Filters [0xc820344e80 0xc820344f00 0xc820344f80 0xc820345000 0xc8203450c0 0xc820345180 0xc820345200 0xc820345280 0xc820345320 0xc8203453a0 0xc820345420 0xc8203454a0 0xc820345520 0xc8203455a0 0xc820345620 0xc8203456a0 0xc820345740 0xc8203457c0 0xc820345840 0xc8203458c0]} +&{SortFlag QDir::SortFlag commendable public QDir::SortFlags [0xc820345a20 0xc820345aa0 0xc820345b20 0xc820345ba0 0xc820345c40 0xc820345cc0 0xc820345d40 0xc820345dc0 0xc820345e60 0xc820345ee0 0xc820345f60 0xc820345fe0]} diff --git a/internal/binding/dump/QtCore/QDirIterator.txt b/internal/binding/dump/QtCore/QDirIterator.txt new file mode 100755 index 00000000..01be7939 --- /dev/null +++ b/internal/binding/dump/QtCore/QDirIterator.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QDirIterator QDirIterator::QDirIterator commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdiriterator.h non constructor false false [0xc82039a680 0xc82039a700] } +&{QDirIterator QDirIterator::QDirIterator commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdiriterator.h non constructor false true 2 [0xc82039a8c0 0xc82039a940] } +&{QDirIterator QDirIterator::QDirIterator commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdiriterator.h non constructor false true 3 [0xc82039ab00 0xc82039ab80 0xc82039ac00] } +&{QDirIterator QDirIterator::QDirIterator commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdiriterator.h non constructor false true 4 [0xc82039adc0 0xc82039ae60 0xc82039af20 0xc82039afa0] } +&{fileInfo QDirIterator::fileInfo commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdiriterator.h non plain false false QFileInfo [] } +&{fileName QDirIterator::fileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdiriterator.h non plain false false QString [] } +&{filePath QDirIterator::filePath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdiriterator.h non plain false false QString [] } +&{hasNext QDirIterator::hasNext commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdiriterator.h non plain false false bool [] } +&{next QDirIterator::next commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdiriterator.h non plain false false QString [] } +&{path QDirIterator::path commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdiriterator.h non plain false false QString [] } +&{~QDirIterator QDirIterator::~QDirIterator commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qdiriterator.h non destructor false false [] } +######################################## ENUMS ######################################## +&{IteratorFlag QDirIterator::IteratorFlag commendable public QDirIterator::IteratorFlags [0xc82039a2e0 0xc82039a360 0xc82039a3e0]} diff --git a/internal/binding/dump/QtCore/QDynamicPropertyChangeEvent.txt b/internal/binding/dump/QtCore/QDynamicPropertyChangeEvent.txt new file mode 100755 index 00000000..103fee48 --- /dev/null +++ b/internal/binding/dump/QtCore/QDynamicPropertyChangeEvent.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{QDynamicPropertyChangeEvent QDynamicPropertyChangeEvent::QDynamicPropertyChangeEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreevent.h non constructor false false [0xc82032e860] } +&{propertyName QDynamicPropertyChangeEvent::propertyName commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreevent.h non plain false false QByteArray [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QEasingCurve.txt b/internal/binding/dump/QtCore/QEasingCurve.txt new file mode 100755 index 00000000..06f67b8b --- /dev/null +++ b/internal/binding/dump/QtCore/QEasingCurve.txt @@ -0,0 +1,26 @@ +######################################## FUNCTIONS ######################################## +&{QEasingCurve QEasingCurve::QEasingCurve commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qeasingcurve.h non constructor false true 3 [0xc8205f0f20] } +&{QEasingCurve QEasingCurve::QEasingCurve commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qeasingcurve.h non constructor false false [0xc8205f1200] } +&{QEasingCurve QEasingCurve::QEasingCurve commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qeasingcurve.h non constructor false true 2 [0xc8205f14e0] } +&{addCubicBezierSegment QEasingCurve::addCubicBezierSegment commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qeasingcurve.h non plain false false void [0xc8205f1800 0xc8205f18a0 0xc8205f19a0] } +&{addTCBSegment QEasingCurve::addTCBSegment commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qeasingcurve.h non plain false false void [0xc8205f1c40 0xc8205f1d00 0xc8205f1e00 0xc8205f1ea0] } +&{amplitude QEasingCurve::amplitude commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qeasingcurve.h non plain false false qreal [] } +&{customType QEasingCurve::customType commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qeasingcurve.h non plain false false EasingFunction [] } +&{operator!= QEasingCurve::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qeasingcurve.h non plain false false bool [0xc8205e0620] } +&{operator= QEasingCurve::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qeasingcurve.h non plain false true 2 QEasingCurve & [0xc8205e0940] } +&{operator= QEasingCurve::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qeasingcurve.h non plain false false QEasingCurve & [0xc8205e0c00] } +&{operator== QEasingCurve::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qeasingcurve.h non plain false false bool [0xc8205e0f80] } +&{overshoot QEasingCurve::overshoot commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qeasingcurve.h non plain false false qreal [] } +&{period QEasingCurve::period commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qeasingcurve.h non plain false false qreal [] } +&{setAmplitude QEasingCurve::setAmplitude commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qeasingcurve.h non plain false false void [0xc8205e15a0] } +&{setCustomType QEasingCurve::setCustomType commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qeasingcurve.h non plain false false void [0xc8205e1860] } +&{setOvershoot QEasingCurve::setOvershoot commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qeasingcurve.h non plain false false void [0xc8205e1b40] } +&{setPeriod QEasingCurve::setPeriod commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qeasingcurve.h non plain false false void [0xc8205e1e60] } +&{setType QEasingCurve::setType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qeasingcurve.h non plain false false void [0xc8205c6120] } +&{swap QEasingCurve::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qeasingcurve.h non plain false false void [0xc8205c6360] } +&{toCubicSpline QEasingCurve::toCubicSpline commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qeasingcurve.h non plain false false QVector [] } +&{type QEasingCurve::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qeasingcurve.h non plain false false Type [] } +&{valueForProgress QEasingCurve::valueForProgress commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qeasingcurve.h non plain false false qreal [0xc8205c67c0] } +&{~QEasingCurve QEasingCurve::~QEasingCurve commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qeasingcurve.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Type QEasingCurve::Type commendable public [0xc820606620 0xc8206066c0 0xc820606740 0xc820606820 0xc8206068c0 0xc820606960 0xc820606a60 0xc820606ae0 0xc820606c40 0xc820606cc0 0xc820606d80 0xc820606ec0 0xc820606f60 0xc820607000 0xc820607100 0xc8206071e0 0xc820607300 0xc8206073a0 0xc820607480 0xc820607540 0xc820607620 0xc8206076c0 0xc820607740 0xc820607840 0xc820607900 0xc8206079e0 0xc820607a60 0xc820607b00 0xc820607bc0 0xc820607cc0 0xc820607dc0 0xc820607e40 0xc820607f80 0xc8205f0000 0xc8205f00e0 0xc8205f01c0 0xc8205f0260 0xc8205f0300 0xc8205f03a0 0xc8205f0480 0xc8205f0520 0xc8205f05e0 0xc8205f06e0 0xc8205f0780 0xc8205f0860 0xc8205f0960 0xc8205f0a20 0xc8205f0aa0 0xc8205f0bc0]} diff --git a/internal/binding/dump/QtCore/QElapsedTimer.txt b/internal/binding/dump/QtCore/QElapsedTimer.txt new file mode 100755 index 00000000..959ededd --- /dev/null +++ b/internal/binding/dump/QtCore/QElapsedTimer.txt @@ -0,0 +1,18 @@ +######################################## FUNCTIONS ######################################## +&{QElapsedTimer QElapsedTimer::QElapsedTimer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qelapsedtimer.h non constructor false false [] } +&{hasExpired QElapsedTimer::hasExpired commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qelapsedtimer.h non plain false false bool [0xc8205c73c0] } +&{invalidate QElapsedTimer::invalidate commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qelapsedtimer.h non plain false false void [] } +&{isValid QElapsedTimer::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qelapsedtimer.h non plain false false bool [] } +&{operator!= QElapsedTimer::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qelapsedtimer.h non plain false false bool [0xc8205c7960] } +&{operator== QElapsedTimer::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qelapsedtimer.h non plain false false bool [0xc8205c7c00] } +&{clockType QElapsedTimer::clockType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qelapsedtimer_win.cpp non plain true false ClockType [] } +&{elapsed QElapsedTimer::elapsed commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qelapsedtimer_win.cpp non plain false false qint64 [] } +&{isMonotonic QElapsedTimer::isMonotonic commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qelapsedtimer_win.cpp non plain true false bool [] } +&{msecsSinceReference QElapsedTimer::msecsSinceReference commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qelapsedtimer_win.cpp non plain false false qint64 [] } +&{msecsTo QElapsedTimer::msecsTo commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qelapsedtimer_win.cpp non plain false false qint64 [0xc8205ac700] } +&{nsecsElapsed QElapsedTimer::nsecsElapsed commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qelapsedtimer_win.cpp non plain false false qint64 [] } +&{restart QElapsedTimer::restart commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qelapsedtimer_win.cpp non plain false false qint64 [] } +&{secsTo QElapsedTimer::secsTo commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qelapsedtimer_win.cpp non plain false false qint64 [0xc8205acd40] } +&{start QElapsedTimer::start commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qelapsedtimer_win.cpp non plain false false void [] } +######################################## ENUMS ######################################## +&{ClockType QElapsedTimer::ClockType commendable public [0xc8205c6c80 0xc8205c6d00 0xc8205c6da0 0xc8205c6e20 0xc8205c6f00]} diff --git a/internal/binding/dump/QtCore/QEnableSharedFromThis.txt b/internal/binding/dump/QtCore/QEnableSharedFromThis.txt new file mode 100755 index 00000000..f18cd3c9 --- /dev/null +++ b/internal/binding/dump/QtCore/QEnableSharedFromThis.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{sharedFromThis QEnableSharedFromThis::sharedFromThis commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false false QSharedPointer [] } +&{sharedFromThis QEnableSharedFromThis::sharedFromThis commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false true 2 QSharedPointer [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QEvent.txt b/internal/binding/dump/QtCore/QEvent.txt new file mode 100755 index 00000000..d928e057 --- /dev/null +++ b/internal/binding/dump/QtCore/QEvent.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{QEvent QEvent::QEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreevent.h non constructor false false [0xc82065b500] } +&{accept QEvent::accept commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreevent.h non plain false false void [] } +&{ignore QEvent::ignore commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreevent.h non plain false false void [] } +&{isAccepted QEvent::isAccepted commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreevent.h non plain false false bool [] } +&{registerEventType QEvent::registerEventType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreevent.h non plain true false int [0xc82065be40] } +&{setAccepted QEvent::setAccepted commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreevent.h non plain false false void [0xc820642080] } +&{spontaneous QEvent::spontaneous commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreevent.h non plain false false bool [] } +&{type QEvent::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreevent.h non plain false false Type [] } +&{~QEvent QEvent::~QEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreevent.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{Type QEvent::Type commendable public [0xc82032ee80 0xc82032ef80 0xc82032f0c0 0xc82032f160 0xc82032f320 0xc82032f480 0xc82032f540 0xc82032f5e0 0xc82032f740 0xc82032f7e0 0xc82032f900 0xc82032fa60 0xc82032fae0 0xc82032fc00 0xc82032fce0 0xc82032fda0 0xc82032fea0 0xc82032ffc0 0xc820410060 0xc8204100e0 0xc820410160 0xc820410200 0xc820410280 0xc820410340 0xc820410420 0xc8204104a0 0xc820410520 0xc8204105c0 0xc820410640 0xc8204106e0 0xc8204107a0 0xc820410860 0xc820410940 0xc820410a40 0xc820410b40 0xc820410c40 0xc820410d20 0xc820410dc0 0xc820410e40 0xc820410ee0 0xc820410f60 0xc820411000 0xc820411080 0xc820411120 0xc8204111c0 0xc8204112a0 0xc820411320 0xc8204113c0 0xc820411480 0xc820411500 0xc8204115a0 0xc8204116a0 0xc820411760 0xc820411840 0xc8204118e0 0xc820411960 0xc8204119e0 0xc820411a80 0xc820411b00 0xc820411ba0 0xc820411ce0 0xc820411d60 0xc820411de0 0xc820411ea0 0xc820411f40 0xc8204e4040 0xc8204e4120 0xc8204e41a0 0xc8204e4280 0xc8204e4340 0xc8204e43c0 0xc8204e4440 0xc8204e4500 0xc8204e45a0 0xc8204e4640 0xc8204e46e0 0xc8204e47a0 0xc8204e4820 0xc8204e48e0 0xc8204e4a00 0xc8204e4a80 0xc8204e4b80 0xc8204e4c80 0xc8204e4d00 0xc8204e4dc0 0xc8204e4e80 0xc8204e4f00 0xc8204e4f80 0xc8204e5000 0xc8204e50a0 0xc8204e5180 0xc8204e5200 0xc8204e5280 0xc8204e5360 0xc8204e5400 0xc8204e5580 0xc8204e56a0 0xc8204e5820 0xc8204e5960 0xc8204e5a40 0xc8204e5b60 0xc8204e5c40 0xc8204e5d00 0xc8204e5da0 0xc8204e5e60 0xc8204e5ee0 0xc8204e5f60 0xc8205ac000 0xc8205ac0e0 0xc8205ac1c0 0xc8205ac300 0xc8205ac440 0xc8205ac560 0xc8205ac640 0xc8205ac760 0xc8205ac840 0xc8205ac940 0xc8205aca20 0xc8205acb00 0xc8205acbe0 0xc8205accc0 0xc8205acda0 0xc8205ace80 0xc8205acf60 0xc8205ad040 0xc8205ad120 0xc8205ad200 0xc8205ad2e0 0xc8205ad3e0 0xc8205ad4c0 0xc8205ad5a0 0xc8205ad660 0xc8205ad700 0xc8205ad7e0 0xc8205ad8a0 0xc8205ad940 0xc8205ada20 0xc8205adae0 0xc8205adb60 0xc8205adc00 0xc8205adcc0 0xc8205add40 0xc8205addc0 0xc8205ade40 0xc8205adee0 0xc8205adfc0 0xc82065a0a0 0xc82065a160 0xc82065a1e0 0xc82065a260 0xc82065a2e0 0xc82065a3a0 0xc82065a4a0 0xc82065a580 0xc82065a600 0xc82065a680 0xc82065a700 0xc82065a7e0 0xc82065a860 0xc82065a8e0 0xc82065a9e0 0xc82065aaa0 0xc82065ab40 0xc82065ac00 0xc82065ac80 0xc82065ad40 0xc82065ae60 0xc82065afc0 0xc82065b0e0 0xc82065b1c0 0xc82065b240 0xc82065b320]} diff --git a/internal/binding/dump/QtCore/QEventLoop.txt b/internal/binding/dump/QtCore/QEventLoop.txt new file mode 100755 index 00000000..28ac4008 --- /dev/null +++ b/internal/binding/dump/QtCore/QEventLoop.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QEventLoop QEventLoop::QEventLoop commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qeventloop.h non constructor false false [0xc820643860] } +&{event QEventLoop::event commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qeventloop.h impure plain false false bool [0xc820643a40] } +&{exec QEventLoop::exec commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qeventloop.h non plain false false int [0xc820643bc0] } +&{exit QEventLoop::exit commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qeventloop.h non plain false false void [0xc820643d80] } +&{isRunning QEventLoop::isRunning commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qeventloop.h non plain false false bool [] } +&{processEvents QEventLoop::processEvents commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qeventloop.h non plain false false bool [0xc820630140] } +&{processEvents QEventLoop::processEvents commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qeventloop.h non plain false true 2 void [0xc8206303a0 0xc820630480] } +&{quit QEventLoop::quit commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qeventloop.h non slot false false void [] } +&{wakeUp QEventLoop::wakeUp commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qeventloop.h non plain false false void [] } +&{~QEventLoop QEventLoop::~QEventLoop commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qeventloop.h non destructor false false [] } +######################################## ENUMS ######################################## +&{ProcessEventsFlag QEventLoop::ProcessEventsFlag commendable public QEventLoop::ProcessEventsFlags [0xc820643000 0xc8206430a0 0xc8206431a0 0xc8206432c0 0xc820643400 0xc8206434a0 0xc820643520]} diff --git a/internal/binding/dump/QtCore/QEventLoopLocker.txt b/internal/binding/dump/QtCore/QEventLoopLocker.txt new file mode 100755 index 00000000..a0629d51 --- /dev/null +++ b/internal/binding/dump/QtCore/QEventLoopLocker.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QEventLoopLocker QEventLoopLocker::QEventLoopLocker commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qeventloop.h non constructor false false [] } +&{QEventLoopLocker QEventLoopLocker::QEventLoopLocker commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qeventloop.h non constructor false true 2 [0xc820630ac0] } +&{QEventLoopLocker QEventLoopLocker::QEventLoopLocker commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qeventloop.h non constructor false true 3 [0xc820630c60] } +&{~QEventLoopLocker QEventLoopLocker::~QEventLoopLocker commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qeventloop.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QEventTransition.txt b/internal/binding/dump/QtCore/QEventTransition.txt new file mode 100755 index 00000000..01f889bf --- /dev/null +++ b/internal/binding/dump/QtCore/QEventTransition.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{QEventTransition QEventTransition::QEventTransition commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qeventtransition.h non constructor false true 2 [0xc820103920 0xc8201039a0 0xc820103a60] } +&{QEventTransition QEventTransition::QEventTransition commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qeventtransition.h non constructor false false [0xc820103ca0] } +&{event QEventTransition::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qeventtransition.h impure plain false false bool [0xc8200ee900] } +&{eventSource QEventTransition::eventSource commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qeventtransition.h non plain false false QObject * [] } +&{eventTest QEventTransition::eventTest commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qeventtransition.h impure plain false false bool [0xc8200eeec0] } +&{eventType QEventTransition::eventType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qeventtransition.h non plain false false QEvent::Type [] } +&{onTransition QEventTransition::onTransition commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qeventtransition.h impure plain false false void [0xc8200ef4a0] } +&{setEventSource QEventTransition::setEventSource commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qeventtransition.h non plain false false void [0xc8200ef8e0] } +&{setEventType QEventTransition::setEventType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qeventtransition.h non plain false false void [0xc8200efc40] } +&{~QEventTransition QEventTransition::~QEventTransition commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qeventtransition.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QException.txt b/internal/binding/dump/QtCore/QException.txt new file mode 100755 index 00000000..c6e7bb94 --- /dev/null +++ b/internal/binding/dump/QtCore/QException.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{clone QException::clone commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qexception.cpp impure plain false false QException * [] } +&{raise QException::raise commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qexception.cpp impure plain false false void [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QExplicitlySharedDataPointer.txt b/internal/binding/dump/QtCore/QExplicitlySharedDataPointer.txt new file mode 100755 index 00000000..2ea968ec --- /dev/null +++ b/internal/binding/dump/QtCore/QExplicitlySharedDataPointer.txt @@ -0,0 +1,26 @@ +######################################## FUNCTIONS ######################################## +&{QExplicitlySharedDataPointer QExplicitlySharedDataPointer::QExplicitlySharedDataPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non constructor false false [] } +&{QExplicitlySharedDataPointer QExplicitlySharedDataPointer::QExplicitlySharedDataPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non constructor false true 5 [0xc820ba82e0] } +&{QExplicitlySharedDataPointer QExplicitlySharedDataPointer::QExplicitlySharedDataPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non constructor false true 2 [0xc820ba8580] } +&{QExplicitlySharedDataPointer QExplicitlySharedDataPointer::QExplicitlySharedDataPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non constructor false true 3 [0xc820ba8760] } +&{QExplicitlySharedDataPointer QExplicitlySharedDataPointer::QExplicitlySharedDataPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non constructor false true 4 [0xc820ba8920] } +&{clone QExplicitlySharedDataPointer::clone commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false false T * [] } +&{constData QExplicitlySharedDataPointer::constData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false false const T * [] } +&{data QExplicitlySharedDataPointer::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false false T * [] } +&{detach QExplicitlySharedDataPointer::detach commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false false void [] } +&{operator bool QExplicitlySharedDataPointer::operator bool commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false false [] } +&{operator! QExplicitlySharedDataPointer::operator! commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false false bool [] } +&{operator!= QExplicitlySharedDataPointer::operator!= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false false bool [0xc820ba8de0] } +&{operator!= QExplicitlySharedDataPointer::operator!= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false true 2 bool [0xc820ba8f40] } +&{operator* QExplicitlySharedDataPointer::operator* commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false false T & [] } +&{operator-> QExplicitlySharedDataPointer::operator-> commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false false T * [] } +&{operator-> QExplicitlySharedDataPointer::operator-> commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false true 2 T * [] } +&{operator= QExplicitlySharedDataPointer::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false true 2 QExplicitlySharedDataPointer & [0xc820ba92c0] } +&{operator= QExplicitlySharedDataPointer::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false true 3 QExplicitlySharedDataPointer & [0xc820ba9400] } +&{operator= QExplicitlySharedDataPointer::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false false QExplicitlySharedDataPointer & [0xc820ba9560] } +&{operator== QExplicitlySharedDataPointer::operator== commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false false bool [0xc820ba9740] } +&{operator== QExplicitlySharedDataPointer::operator== commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false true 2 bool [0xc820ba98a0] } +&{reset QExplicitlySharedDataPointer::reset commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false false void [] } +&{swap QExplicitlySharedDataPointer::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false false void [0xc820ba9a60] } +&{~QExplicitlySharedDataPointer QExplicitlySharedDataPointer::~QExplicitlySharedDataPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QFile.txt b/internal/binding/dump/QtCore/QFile.txt new file mode 100755 index 00000000..f2061f22 --- /dev/null +++ b/internal/binding/dump/QtCore/QFile.txt @@ -0,0 +1,33 @@ +######################################## FUNCTIONS ######################################## +&{QFile QFile::QFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h non constructor false true 3 [0xc82039bbe0] } +&{QFile QFile::QFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h non constructor false false [0xc82039bd40] } +&{QFile QFile::QFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h non constructor false true 4 [0xc82039bea0 0xc82039bf20] } +&{copy QFile::copy commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h non plain true true 2 bool [0xc8203ae300 0xc8203ae380] } +&{copy QFile::copy commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h non plain false false bool [0xc8203ae4c0] } +&{decodeName QFile::decodeName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h non plain true false QString [0xc8203ae6a0] } +&{decodeName QFile::decodeName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h non plain true true 2 QString [0xc8203ae8c0] } +&{encodeName QFile::encodeName commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h non plain true false QByteArray [0xc8203aea80] } +&{exists QFile::exists commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h non plain true false bool [0xc8203aebe0] } +&{exists QFile::exists commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h non plain false true 2 bool [] } +&{fileName QFile::fileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h impure plain false false QString [] } +&{link QFile::link commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h non plain true true 2 bool [0xc8203aee80 0xc8203aef00] } +&{link QFile::link commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h non plain false false bool [0xc8203af040] } +&{open QFile::open commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h non plain false true 2 bool [0xc8203af1a0 0xc8203af220 0xc8203af2a0] } +&{open QFile::open commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h impure plain false false bool [0xc8203af420] } +&{open QFile::open commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h non plain false true 3 bool [0xc8203af580 0xc8203af600 0xc8203af680] } +&{permissions QFile::permissions commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h non plain true true 2 Permissions [0xc8203af840] } +&{permissions QFile::permissions commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h impure plain false false Permissions [] } +&{remove QFile::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h non plain false false bool [] } +&{remove QFile::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h non plain true true 2 bool [0xc8203afd20] } +&{rename QFile::rename commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h non plain false false bool [0xc8203afe80] } +&{rename QFile::rename commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h non plain true true 2 bool [0xc8203affe0 0xc8203c6060] } +&{resize QFile::resize commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h non plain true true 2 bool [0xc8203c61c0 0xc8203c6240] } +&{resize QFile::resize commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h impure plain false false bool [0xc8203c63c0] } +&{setFileName QFile::setFileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h non plain false false void [0xc8203c6980] } +&{setPermissions QFile::setPermissions commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h impure plain false false bool [0xc8203c6b40] } +&{setPermissions QFile::setPermissions commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h non plain true true 2 bool [0xc8203c6d20 0xc8203c6da0] } +&{size QFile::size commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h impure plain false false qint64 [] } +&{symLinkTarget QFile::symLinkTarget commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h non plain true false QString [0xc8203c6fe0] } +&{symLinkTarget QFile::symLinkTarget commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h non plain false true 2 QString [] } +&{~QFile QFile::~QFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfile.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QFileDevice.txt b/internal/binding/dump/QtCore/QFileDevice.txt new file mode 100755 index 00000000..15c226ea --- /dev/null +++ b/internal/binding/dump/QtCore/QFileDevice.txt @@ -0,0 +1,26 @@ +######################################## FUNCTIONS ######################################## +&{seek QFileDevice::seek commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfiledevice.cpp impure plain false false bool [0xc8203c7400] } +&{atEnd QFileDevice::atEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfiledevice.h impure plain false false bool [] } +&{close QFileDevice::close commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfiledevice.h impure plain false false void [] } +&{error QFileDevice::error commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfiledevice.h non plain false false FileError [] } +&{fileName QFileDevice::fileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfiledevice.h impure plain false false QString [] } +&{flush QFileDevice::flush commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfiledevice.h non plain false false bool [] } +&{handle QFileDevice::handle commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfiledevice.h non plain false false int [] } +&{isSequential QFileDevice::isSequential commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfiledevice.h impure plain false false bool [] } +&{map QFileDevice::map commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfiledevice.h non plain false false uchar * [0xc8203db8e0 0xc8203db960 0xc8203db9e0] } +&{permissions QFileDevice::permissions commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfiledevice.h impure plain false false Permissions [] } +&{pos QFileDevice::pos commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfiledevice.h impure plain false false qint64 [] } +&{readData QFileDevice::readData commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfiledevice.h impure plain false false qint64 [0xc8203dbd40 0xc8203dbdc0] } +&{readLineData QFileDevice::readLineData commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfiledevice.h impure plain false false qint64 [0xc8203dbf80 0xc8203ec000] } +&{resize QFileDevice::resize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfiledevice.h impure plain false false bool [0xc8203ec200] } +&{setPermissions QFileDevice::setPermissions commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfiledevice.h impure plain false false bool [0xc8203ec3c0] } +&{size QFileDevice::size commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfiledevice.h impure plain false false qint64 [] } +&{unmap QFileDevice::unmap commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfiledevice.h non plain false false bool [0xc8203ec6a0] } +&{unsetError QFileDevice::unsetError commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfiledevice.h non plain false false void [] } +&{writeData QFileDevice::writeData commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfiledevice.h impure plain false false qint64 [0xc8203ec960 0xc8203ec9e0] } +&{~QFileDevice QFileDevice::~QFileDevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfiledevice.h non destructor false false [] } +######################################## ENUMS ######################################## +&{FileError QFileDevice::FileError commendable public [0xc8203c7600 0xc8203c7680 0xc8203c7700 0xc8203c7780 0xc8203c7820 0xc8203c78a0 0xc8203c7920 0xc8203c79a0 0xc8203c7a40 0xc8203c7ac0 0xc8203c7b40 0xc8203c7bc0 0xc8203c7c40 0xc8203c7cc0 0xc8203c7d40]} +&{FileHandleFlag QFileDevice::FileHandleFlag commendable public QFileDevice::FileHandleFlags [0xc8203c7f40 0xc8203c7fc0]} +&{MemoryMapFlags QFileDevice::MemoryMapFlags commendable public [0xc8203da160 0xc8203da1e0]} +&{Permission QFileDevice::Permission commendable public QFileDevice::Permissions [0xc8203da400 0xc8203da480 0xc8203da500 0xc8203da580 0xc8203da620 0xc8203da6a0 0xc8203da720 0xc8203da7a0 0xc8203da840 0xc8203da8c0 0xc8203da940 0xc8203da9c0]} diff --git a/internal/binding/dump/QtCore/QFileInfo.txt b/internal/binding/dump/QtCore/QFileInfo.txt new file mode 100755 index 00000000..628bf017 --- /dev/null +++ b/internal/binding/dump/QtCore/QFileInfo.txt @@ -0,0 +1,59 @@ +######################################## FUNCTIONS ######################################## +&{QFileInfo QFileInfo::QFileInfo commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non constructor false false [] } +&{QFileInfo QFileInfo::QFileInfo commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non constructor false true 5 [0xc8203ecf00 0xc8203ecf80] } +&{QFileInfo QFileInfo::QFileInfo commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non constructor false true 4 [0xc8203ed160] } +&{QFileInfo QFileInfo::QFileInfo commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non constructor false true 6 [0xc8203ed340] } +&{QFileInfo QFileInfo::QFileInfo commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non constructor false true 3 [0xc8203ed580] } +&{absoluteDir QFileInfo::absoluteDir commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false QDir [] } +&{absoluteFilePath QFileInfo::absoluteFilePath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false QString [] } +&{absolutePath QFileInfo::absolutePath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false QString [] } +&{baseName QFileInfo::baseName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false QString [] } +&{bundleName QFileInfo::bundleName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false QString [] } +&{caching QFileInfo::caching commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false bool [] } +&{canonicalFilePath QFileInfo::canonicalFilePath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false QString [] } +&{canonicalPath QFileInfo::canonicalPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false QString [] } +&{completeBaseName QFileInfo::completeBaseName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false QString [] } +&{completeSuffix QFileInfo::completeSuffix commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false QString [] } +&{created QFileInfo::created commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false QDateTime [] } +&{dir QFileInfo::dir commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false QDir [] } +&{exists QFileInfo::exists commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain true true 2 bool [0xc820402840] } +&{exists QFileInfo::exists commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false bool [] } +&{fileName QFileInfo::fileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false QString [] } +&{filePath QFileInfo::filePath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false QString [] } +&{group QFileInfo::group commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false QString [] } +&{groupId QFileInfo::groupId commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false uint [] } +&{isAbsolute QFileInfo::isAbsolute commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false bool [] } +&{isBundle QFileInfo::isBundle commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false bool [] } +&{isDir QFileInfo::isDir commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false bool [] } +&{isExecutable QFileInfo::isExecutable commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false bool [] } +&{isFile QFileInfo::isFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false bool [] } +&{isHidden QFileInfo::isHidden commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false bool [] } +&{isNativePath QFileInfo::isNativePath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false bool [] } +&{isReadable QFileInfo::isReadable commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false bool [] } +&{isRelative QFileInfo::isRelative commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false bool [] } +&{isRoot QFileInfo::isRoot commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false bool [] } +&{isSymLink QFileInfo::isSymLink commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false bool [] } +&{isWritable QFileInfo::isWritable commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false bool [] } +&{lastModified QFileInfo::lastModified commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false QDateTime [] } +&{lastRead QFileInfo::lastRead commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false QDateTime [] } +&{makeAbsolute QFileInfo::makeAbsolute commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false bool [] } +&{operator!= QFileInfo::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false bool [0xc820411220] } +&{operator= QFileInfo::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false true 2 QFileInfo & [0xc820411420] } +&{operator= QFileInfo::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false QFileInfo & [0xc820411600] } +&{operator== QFileInfo::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false bool [0xc820411820] } +&{owner QFileInfo::owner commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false QString [] } +&{ownerId QFileInfo::ownerId commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false uint [] } +&{path QFileInfo::path commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false QString [] } +&{permission QFileInfo::permission commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false bool [0xc820411c80] } +&{permissions QFileInfo::permissions commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false QFile::Permissions [] } +&{refresh QFileInfo::refresh commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false void [] } +&{setCaching QFileInfo::setCaching commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false void [0xc820210260] } +&{setFile QFileInfo::setFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false true 3 void [0xc8202104c0 0xc820210560] } +&{setFile QFileInfo::setFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false true 2 void [0xc8202107e0] } +&{setFile QFileInfo::setFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false void [0xc820210a40] } +&{size QFileInfo::size commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false qint64 [] } +&{suffix QFileInfo::suffix commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false QString [] } +&{swap QFileInfo::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false void [0xc820210e60] } +&{symLinkTarget QFileInfo::symLinkTarget commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non plain false false QString [] } +&{~QFileInfo QFileInfo::~QFileInfo commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileinfo.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QFileSelector.txt b/internal/binding/dump/QtCore/QFileSelector.txt new file mode 100755 index 00000000..2c155cd3 --- /dev/null +++ b/internal/binding/dump/QtCore/QFileSelector.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QFileSelector QFileSelector::QFileSelector commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileselector.h non constructor false false [0xc8202117a0] } +&{allSelectors QFileSelector::allSelectors commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileselector.h non plain false false QStringList [] } +&{extraSelectors QFileSelector::extraSelectors commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileselector.h non plain false false QStringList [] } +&{select QFileSelector::select commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileselector.h non plain false false QString [0xc820211c60] } +&{select QFileSelector::select commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileselector.h non plain false true 2 QUrl [0xc820211ee0] } +&{setExtraSelectors QFileSelector::setExtraSelectors commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileselector.h non plain false false void [0xc82039a140] } +&{~QFileSelector QFileSelector::~QFileSelector commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfileselector.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QFileSystemWatcher.txt b/internal/binding/dump/QtCore/QFileSystemWatcher.txt new file mode 100755 index 00000000..3c8afc9b --- /dev/null +++ b/internal/binding/dump/QtCore/QFileSystemWatcher.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{directories QFileSystemWatcher::directories commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfilesystemwatcher.cpp non plain false false QStringList [] } +&{files QFileSystemWatcher::files commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfilesystemwatcher.cpp non plain false false QStringList [] } +&{QFileSystemWatcher QFileSystemWatcher::QFileSystemWatcher commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfilesystemwatcher.h non constructor false false [0xc82039a960] } +&{QFileSystemWatcher QFileSystemWatcher::QFileSystemWatcher commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfilesystemwatcher.h non constructor false true 2 [0xc82039abc0 0xc82039aca0] } +&{addPath QFileSystemWatcher::addPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfilesystemwatcher.h non plain false false bool [0xc82039b100] } +&{addPaths QFileSystemWatcher::addPaths commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfilesystemwatcher.h non plain false false QStringList [0xc82039b360] } +&{directoryChanged QFileSystemWatcher::directoryChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfilesystemwatcher.h non signal false false void [0xc82039b540] } +&{fileChanged QFileSystemWatcher::fileChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfilesystemwatcher.h non signal false false void [0xc82039b760] } +&{removePath QFileSystemWatcher::removePath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfilesystemwatcher.h non plain false false bool [0xc82039b920] } +&{removePaths QFileSystemWatcher::removePaths commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfilesystemwatcher.h non plain false false QStringList [0xc82039bb00] } +&{~QFileSystemWatcher QFileSystemWatcher::~QFileSystemWatcher commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qfilesystemwatcher.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QFinalState.txt b/internal/binding/dump/QtCore/QFinalState.txt new file mode 100755 index 00000000..add550cf --- /dev/null +++ b/internal/binding/dump/QtCore/QFinalState.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{QFinalState QFinalState::QFinalState commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qfinalstate.h non constructor false false [0xc8200e0820] } +&{event QFinalState::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qfinalstate.h impure plain false false bool [0xc8200e0bc0] } +&{onEntry QFinalState::onEntry commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qfinalstate.h impure plain false false void [0xc8200e0fe0] } +&{onExit QFinalState::onExit commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qfinalstate.h impure plain false false void [0xc8200e1360] } +&{~QFinalState QFinalState::~QFinalState commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qfinalstate.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QFlag.txt b/internal/binding/dump/QtCore/QFlag.txt new file mode 100755 index 00000000..847f3ece --- /dev/null +++ b/internal/binding/dump/QtCore/QFlag.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{QFlag QFlag::QFlag commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non constructor false false [0xc82018cac0] } +&{QFlag QFlag::QFlag commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non constructor false true 3 [0xc82018cc40] } +&{QFlag QFlag::QFlag commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non constructor false true 2 [0xc82018cdc0] } +&{QFlag QFlag::QFlag commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non constructor false true 4 [0xc82018cf40] } +&{operator int QFlag::operator int commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non plain false false [] } +&{operator uint QFlag::operator uint commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non plain false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QFlags.txt b/internal/binding/dump/QtCore/QFlags.txt new file mode 100755 index 00000000..eb65cf36 --- /dev/null +++ b/internal/binding/dump/QtCore/QFlags.txt @@ -0,0 +1,26 @@ +######################################## FUNCTIONS ######################################## +&{QFlags QFlags::QFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non constructor false true 2 [0xc8201a4360] } +&{QFlags QFlags::QFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non constructor false true 4 [0xc8201a44e0] } +&{QFlags QFlags::QFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non constructor false true 3 [0xc8201a4660] } +&{QFlags QFlags::QFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non constructor false false [0xc8201a47e0] } +&{QFlags QFlags::QFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non constructor false true 5 [0xc8201a4980] } +&{operator Int QFlags::operator Int commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non plain false false [] } +&{operator! QFlags::operator! commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non plain false false bool [] } +&{operator& QFlags::operator& commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non plain false true 3 QFlags [0xc8201a5180] } +&{operator& QFlags::operator& commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non plain false false QFlags [0xc8201a5360] } +&{operator& QFlags::operator& commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non plain false true 2 QFlags [0xc8201a5520] } +&{operator&= QFlags::operator&= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non plain false true 3 QFlags & [0xc8201a5700] } +&{operator&= QFlags::operator&= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non plain false false QFlags & [0xc8201a58e0] } +&{operator&= QFlags::operator&= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non plain false true 2 QFlags & [0xc8201a5ac0] } +&{operator= QFlags::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non plain false false QFlags & [0xc8201a5c80] } +&{operator^ QFlags::operator^ commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non plain false true 2 QFlags [0xc8201a5e60] } +&{operator^ QFlags::operator^ commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non plain false false QFlags [0xc820162020] } +&{operator^= QFlags::operator^= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non plain false true 2 QFlags & [0xc820162280] } +&{operator^= QFlags::operator^= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non plain false false QFlags & [0xc8201624a0] } +&{operator| QFlags::operator| commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non plain false true 2 QFlags [0xc8201626e0] } +&{operator| QFlags::operator| commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non plain false false QFlags [0xc820162940] } +&{operator|= QFlags::operator|= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non plain false true 2 QFlags & [0xc820162b60] } +&{operator|= QFlags::operator|= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non plain false false QFlags & [0xc820162da0] } +&{operator~ QFlags::operator~ commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non plain false false QFlags [] } +&{testFlag QFlags::testFlag commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qflags.h non plain false false bool [0xc8201630e0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QFuture.txt b/internal/binding/dump/QtCore/QFuture.txt new file mode 100755 index 00000000..78f10e4a --- /dev/null +++ b/internal/binding/dump/QtCore/QFuture.txt @@ -0,0 +1,33 @@ +######################################## FUNCTIONS ######################################## +&{QFuture QFuture::QFuture commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non constructor false false [] } +&{QFuture QFuture::QFuture commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non constructor false true 3 [0xc8206bce00] } +&{begin QFuture::begin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false const_iterator [] } +&{cancel QFuture::cancel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false void [] } +&{constBegin QFuture::constBegin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false const_iterator [] } +&{constEnd QFuture::constEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false const_iterator [] } +&{end QFuture::end commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false const_iterator [] } +&{isCanceled QFuture::isCanceled commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false bool [] } +&{isFinished QFuture::isFinished commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false bool [] } +&{isPaused QFuture::isPaused commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false bool [] } +&{isResultReadyAt QFuture::isResultReadyAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false bool [0xc8206bd840] } +&{isRunning QFuture::isRunning commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false bool [] } +&{isStarted QFuture::isStarted commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false bool [] } +&{operator T QFuture::operator T commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false [] } +&{operator!= QFuture::operator!= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false bool [0xc8206bdd00] } +&{operator= QFuture::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false QFuture & [0xc8206bdee0] } +&{operator== QFuture::operator== commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false bool [0xc8206d60a0] } +&{pause QFuture::pause commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false void [] } +&{progressMaximum QFuture::progressMaximum commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false int [] } +&{progressMinimum QFuture::progressMinimum commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false int [] } +&{progressText QFuture::progressText commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false QString [] } +&{progressValue QFuture::progressValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false int [] } +&{result QFuture::result commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false T [] } +&{resultAt QFuture::resultAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false T [0xc8206d6780] } +&{resultCount QFuture::resultCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false int [] } +&{results QFuture::results commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false QList [] } +&{resume QFuture::resume commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false void [] } +&{setPaused QFuture::setPaused commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false void [0xc8206d6b80] } +&{togglePaused QFuture::togglePaused commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false void [] } +&{waitForFinished QFuture::waitForFinished commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non plain false false void [] } +&{~QFuture QFuture::~QFuture commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuture.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QFutureIterator.txt b/internal/binding/dump/QtCore/QFutureIterator.txt new file mode 100755 index 00000000..9a7c422e --- /dev/null +++ b/internal/binding/dump/QtCore/QFutureIterator.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QFutureIterator QFutureIterator::QFutureIterator commendable public qfuture.h non constructor false false [0xc82039ac40] } +&{findNext QFutureIterator::findNext commendable public qfuture.h non plain false false bool [0xc82039b3e0] } +&{findPrevious QFutureIterator::findPrevious commendable public qfuture.h non plain false false bool [0xc82039b9e0] } +&{hasNext QFutureIterator::hasNext commendable public qfuture.h non plain false false bool [] } +&{hasPrevious QFutureIterator::hasPrevious commendable public qfuture.h non plain false false bool [] } +&{next QFutureIterator::next commendable public qfuture.h non plain false false const T & [] } +&{operator= QFutureIterator::operator= commendable public qfuture.h non plain false false QFutureIterator & [0xc820384ac0] } +&{peekNext QFutureIterator::peekNext commendable public qfuture.h non plain false false const T & [] } +&{peekPrevious QFutureIterator::peekPrevious commendable public qfuture.h non plain false false const T & [] } +&{previous QFutureIterator::previous commendable public qfuture.h non plain false false const T & [] } +&{toBack QFutureIterator::toBack commendable public qfuture.h non plain false false void [] } +&{toFront QFutureIterator::toFront commendable public qfuture.h non plain false false void [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QFutureSynchronizer.txt b/internal/binding/dump/QtCore/QFutureSynchronizer.txt new file mode 100755 index 00000000..5cc3269c --- /dev/null +++ b/internal/binding/dump/QtCore/QFutureSynchronizer.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{QFutureSynchronizer QFutureSynchronizer::QFutureSynchronizer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturesynchronizer.h non constructor false false [] } +&{QFutureSynchronizer QFutureSynchronizer::QFutureSynchronizer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturesynchronizer.h non constructor false true 2 [0xc8206d72a0] } +&{addFuture QFutureSynchronizer::addFuture commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturesynchronizer.h non plain false false void [0xc8206d74c0] } +&{cancelOnWait QFutureSynchronizer::cancelOnWait commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturesynchronizer.h non plain false false bool [] } +&{clearFutures QFutureSynchronizer::clearFutures commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturesynchronizer.h non plain false false void [] } +&{futures QFutureSynchronizer::futures commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturesynchronizer.h non plain false false QList > [] } +&{setCancelOnWait QFutureSynchronizer::setCancelOnWait commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturesynchronizer.h non plain false false void [0xc8206d7920] } +&{setFuture QFutureSynchronizer::setFuture commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturesynchronizer.h non plain false false void [0xc8206d7b00] } +&{waitForFinished QFutureSynchronizer::waitForFinished commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturesynchronizer.h non plain false false void [] } +&{~QFutureSynchronizer QFutureSynchronizer::~QFutureSynchronizer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturesynchronizer.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QFutureWatcher.txt b/internal/binding/dump/QtCore/QFutureWatcher.txt new file mode 100755 index 00000000..c852342f --- /dev/null +++ b/internal/binding/dump/QtCore/QFutureWatcher.txt @@ -0,0 +1,34 @@ +######################################## FUNCTIONS ######################################## +&{QFutureWatcher QFutureWatcher::QFutureWatcher commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non constructor false false [0xc8206e80e0] } +&{cancel QFutureWatcher::cancel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non slot false false void [] } +&{canceled QFutureWatcher::canceled commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non signal false false void [] } +&{finished QFutureWatcher::finished commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non signal false false void [] } +&{future QFutureWatcher::future commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non plain false false QFuture [] } +&{isCanceled QFutureWatcher::isCanceled commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non plain false false bool [] } +&{isFinished QFutureWatcher::isFinished commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non plain false false bool [] } +&{isPaused QFutureWatcher::isPaused commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non plain false false bool [] } +&{isRunning QFutureWatcher::isRunning commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non plain false false bool [] } +&{isStarted QFutureWatcher::isStarted commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non plain false false bool [] } +&{pause QFutureWatcher::pause commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non slot false false void [] } +&{paused QFutureWatcher::paused commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non signal false false void [] } +&{progressMaximum QFutureWatcher::progressMaximum commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non plain false false int [] } +&{progressMinimum QFutureWatcher::progressMinimum commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non plain false false int [] } +&{progressRangeChanged QFutureWatcher::progressRangeChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non signal false false void [0xc8206e9140 0xc8206e91c0] } +&{progressText QFutureWatcher::progressText commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non plain false false QString [] } +&{progressTextChanged QFutureWatcher::progressTextChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non signal false false void [0xc8206e9460] } +&{progressValue QFutureWatcher::progressValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non plain false false int [] } +&{progressValueChanged QFutureWatcher::progressValueChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non signal false false void [0xc8206e96e0] } +&{result QFutureWatcher::result commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non plain false false T [] } +&{resultAt QFutureWatcher::resultAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non plain false false T [0xc8206e99a0] } +&{resultReadyAt QFutureWatcher::resultReadyAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non signal false false void [0xc8206e9b60] } +&{resultsReadyAt QFutureWatcher::resultsReadyAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non signal false false void [0xc8206e9d00 0xc8206e9d80] } +&{resume QFutureWatcher::resume commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non slot false false void [] } +&{resumed QFutureWatcher::resumed commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non signal false false void [] } +&{setFuture QFutureWatcher::setFuture commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non plain false false void [0xc820700120] } +&{setPaused QFutureWatcher::setPaused commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non slot false false void [0xc820700340] } +&{setPendingResultsLimit QFutureWatcher::setPendingResultsLimit commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non plain false false void [0xc8207004e0] } +&{started QFutureWatcher::started commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non signal false false void [] } +&{togglePaused QFutureWatcher::togglePaused commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non slot false false void [] } +&{waitForFinished QFutureWatcher::waitForFinished commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non plain false false void [] } +&{~QFutureWatcher QFutureWatcher::~QFutureWatcher commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qfuturewatcher.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QGenericArgument.txt b/internal/binding/dump/QtCore/QGenericArgument.txt new file mode 100755 index 00000000..26e5eda1 --- /dev/null +++ b/internal/binding/dump/QtCore/QGenericArgument.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{QGenericArgument QGenericArgument::QGenericArgument commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non constructor false false [0xc820403240 0xc8204032c0] } +&{data QGenericArgument::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain false false void * [] } +&{name QGenericArgument::name commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain false false const char * [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QGenericReturnArgument.txt b/internal/binding/dump/QtCore/QGenericReturnArgument.txt new file mode 100755 index 00000000..9b2a06ef --- /dev/null +++ b/internal/binding/dump/QtCore/QGenericReturnArgument.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{QGenericReturnArgument QGenericReturnArgument::QGenericReturnArgument commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non constructor false false [0xc820403920 0xc8204039a0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QGlobalStatic.txt b/internal/binding/dump/QtCore/QGlobalStatic.txt new file mode 100755 index 00000000..74918962 --- /dev/null +++ b/internal/binding/dump/QtCore/QGlobalStatic.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{exists QGlobalStatic::exists commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qglobalstatic.h non plain false false bool [] } +&{isDestroyed QGlobalStatic::isDestroyed commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qglobalstatic.h non plain false false bool [] } +&{operator Type * QGlobalStatic::operator Type * commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qglobalstatic.h non plain false false [] } +&{operator* QGlobalStatic::operator* commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qglobalstatic.h non plain false false Type & [] } +&{operator-> QGlobalStatic::operator-> commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qglobalstatic.h non plain false false Type * [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QHash.txt b/internal/binding/dump/QtCore/QHash.txt new file mode 100755 index 00000000..ab94e2d5 --- /dev/null +++ b/internal/binding/dump/QtCore/QHash.txt @@ -0,0 +1,50 @@ +######################################## FUNCTIONS ######################################## +&{QHash QHash::QHash commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non constructor false false [] } +&{QHash QHash::QHash commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non constructor false true 4 [0xc820587d60] } +&{QHash QHash::QHash commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non constructor false true 3 [0xc820587f40] } +&{QHash QHash::QHash commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non constructor false true 2 [0xc820574220] } +&{begin QHash::begin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false iterator [] } +&{begin QHash::begin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false true 2 const_iterator [] } +&{capacity QHash::capacity commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false int [] } +&{cbegin QHash::cbegin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false const_iterator [] } +&{cend QHash::cend commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false const_iterator [] } +&{clear QHash::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false void [] } +&{count QHash::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false true 2 int [] } +&{constBegin QHash::constBegin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false const_iterator [] } +&{constEnd QHash::constEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false const_iterator [] } +&{constFind QHash::constFind commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false const_iterator [0xc82055ec40] } +&{contains QHash::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false bool [0xc82055ee60] } +&{count QHash::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false int [0xc82055f0a0] } +&{find QHash::find commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false iterator [0xc82055f2e0] } +&{find QHash::find commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false true 2 const_iterator [0xc82055f500] } +&{empty QHash::empty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false bool [] } +&{end QHash::end commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false iterator [] } +&{end QHash::end commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false true 2 const_iterator [] } +&{erase QHash::erase commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false iterator [0xc82055fbe0] } +&{insert QHash::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false iterator [0xc82055fe40 0xc82055ff00] } +&{insertMulti QHash::insertMulti commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false iterator [0xc8205481c0 0xc820548260] } +&{isEmpty QHash::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false bool [] } +&{key QHash::key commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false const Key [0xc8205484e0] } +&{key QHash::key commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false true 2 const Key [0xc820548680 0xc820548740] } +&{keys QHash::keys commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false QList [] } +&{keys QHash::keys commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false true 2 QList [0xc8205489c0] } +&{operator!= QHash::operator!= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false bool [0xc820548c00] } +&{operator= QHash::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false true 2 QHash & [0xc820548e00] } +&{operator= QHash::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false QHash & [0xc820548fe0] } +&{operator== QHash::operator== commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false bool [0xc820549220] } +&{operator[] QHash::operator[] commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false T & [0xc820549480] } +&{operator[] QHash::operator[] commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false true 2 const T [0xc8205496e0] } +&{remove QHash::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false int [0xc8205498c0] } +&{reserve QHash::reserve commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false void [0xc820549ec0] } +&{size QHash::size commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false int [] } +&{squeeze QHash::squeeze commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false void [] } +&{swap QHash::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false void [0xc8205241c0] } +&{take QHash::take commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false T [0xc8205243c0] } +&{uniqueKeys QHash::uniqueKeys commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false QList [] } +&{unite QHash::unite commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false QHash & [0xc8205246a0] } +&{value QHash::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false const T [0xc820524860] } +&{value QHash::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false true 2 const T [0xc8205249c0 0xc820524aa0] } +&{values QHash::values commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false QList [] } +&{values QHash::values commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false true 2 QList [0xc820524d00] } +&{~QHash QHash::~QHash commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QHashIterator.txt b/internal/binding/dump/QtCore/QHashIterator.txt new file mode 100755 index 00000000..15ddec99 --- /dev/null +++ b/internal/binding/dump/QtCore/QHashIterator.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{QHashIterator QHashIterator::QHashIterator commendable public qhash.h non constructor false false [0xc82036c5c0] } +&{findNext QHashIterator::findNext commendable public qhash.h non plain false false bool [0xc82036ca40] } +&{findPrevious QHashIterator::findPrevious commendable public qhash.h non plain false false bool [0xc82036cca0] } +&{hasNext QHashIterator::hasNext commendable public qhash.h non plain false false bool [] } +&{hasPrevious QHashIterator::hasPrevious commendable public qhash.h non plain false false bool [] } +&{key QHashIterator::key commendable public qhash.h non plain false false const Key & [] } +&{next QHashIterator::next commendable public qhash.h non plain false false Item [] } +&{operator= QHashIterator::operator= commendable public qhash.h non plain false false QHashIterator & [0xc82036dbe0] } +&{peekNext QHashIterator::peekNext commendable public qhash.h non plain false false Item [] } +&{peekPrevious QHashIterator::peekPrevious commendable public qhash.h non plain false false Item [] } +&{previous QHashIterator::previous commendable public qhash.h non plain false false Item [] } +&{toBack QHashIterator::toBack commendable public qhash.h non plain false false void [] } +&{toFront QHashIterator::toFront commendable public qhash.h non plain false false void [] } +&{value QHashIterator::value commendable public qhash.h non plain false false const T & [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QHistoryState.txt b/internal/binding/dump/QtCore/QHistoryState.txt new file mode 100755 index 00000000..67882234 --- /dev/null +++ b/internal/binding/dump/QtCore/QHistoryState.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QHistoryState QHistoryState::QHistoryState commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qhistorystate.h non constructor false true 2 [0xc8200e1d40 0xc8200e1e60] } +&{QHistoryState QHistoryState::QHistoryState commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qhistorystate.h non constructor false false [0xc8200d21a0] } +&{defaultState QHistoryState::defaultState commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qhistorystate.h non plain false false QAbstractState * [] } +&{defaultStateChanged QHistoryState::defaultStateChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qhistorystate.h non signal false false void [] } +&{event QHistoryState::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qhistorystate.h impure plain false false bool [0xc8200d29e0] } +&{historyType QHistoryState::historyType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qhistorystate.h non plain false false HistoryType [] } +&{historyTypeChanged QHistoryState::historyTypeChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qhistorystate.h non signal false false void [] } +&{onEntry QHistoryState::onEntry commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qhistorystate.h impure plain false false void [0xc8200d3140] } +&{onExit QHistoryState::onExit commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qhistorystate.h impure plain false false void [0xc8200d34c0] } +&{setDefaultState QHistoryState::setDefaultState commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qhistorystate.h non plain false false void [0xc8200d3780] } +&{setHistoryType QHistoryState::setHistoryType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qhistorystate.h non plain false false void [0xc8200d3ac0] } +&{~QHistoryState QHistoryState::~QHistoryState commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qhistorystate.h non destructor false false [] } +######################################## ENUMS ######################################## +&{HistoryType QHistoryState::HistoryType commendable public [0xc8200e18c0 0xc8200e19a0]} diff --git a/internal/binding/dump/QtCore/QHooks.txt b/internal/binding/dump/QtCore/QHooks.txt new file mode 100755 index 00000000..78e17c84 --- /dev/null +++ b/internal/binding/dump/QtCore/QHooks.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +######################################## ENUMS ######################################## +&{HookIndex QHooks::HookIndex commendable public [0xc820a950c0 0xc820a95160 0xc820a95200 0xc820a95280 0xc820a95380 0xc820a95400 0xc820a954a0]} diff --git a/internal/binding/dump/QtCore/QIODevice.txt b/internal/binding/dump/QtCore/QIODevice.txt new file mode 100755 index 00000000..4c9dd4fc --- /dev/null +++ b/internal/binding/dump/QtCore/QIODevice.txt @@ -0,0 +1,48 @@ +######################################## FUNCTIONS ######################################## +&{getChar QIODevice::getChar commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.cpp non plain false false bool [0xc82039bfc0] } +&{putChar QIODevice::putChar commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.cpp non plain false false bool [0xc8203ec220] } +&{QIODevice QIODevice::QIODevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h non constructor false false [] } +&{QIODevice QIODevice::QIODevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h non constructor false true 2 [0xc8203ecdc0] } +&{aboutToClose QIODevice::aboutToClose commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h non signal false false void [] } +&{atEnd QIODevice::atEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h impure plain false false bool [] } +&{bytesAvailable QIODevice::bytesAvailable commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h impure plain false false qint64 [] } +&{bytesToWrite QIODevice::bytesToWrite commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h impure plain false false qint64 [] } +&{bytesWritten QIODevice::bytesWritten commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h non signal false false void [0xc8203ed860] } +&{canReadLine QIODevice::canReadLine commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h impure plain false false bool [] } +&{close QIODevice::close commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h impure plain false false void [] } +&{errorString QIODevice::errorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h non plain false false QString [] } +&{isOpen QIODevice::isOpen commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h non plain false false bool [] } +&{isReadable QIODevice::isReadable commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h non plain false false bool [] } +&{isSequential QIODevice::isSequential commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h impure plain false false bool [] } +&{isTextModeEnabled QIODevice::isTextModeEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h non plain false false bool [] } +&{isWritable QIODevice::isWritable commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h non plain false false bool [] } +&{open QIODevice::open commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h impure plain false false bool [0xc8203da3a0] } +&{openMode QIODevice::openMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h non plain false false OpenMode [] } +&{peek QIODevice::peek commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h non plain false true 2 QByteArray [0xc8203da6e0] } +&{peek QIODevice::peek commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h non plain false false qint64 [0xc8203da8a0 0xc8203da960] } +&{pos QIODevice::pos commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h impure plain false false qint64 [] } +&{read QIODevice::read commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h non plain false true 2 QByteArray [0xc8203daba0] } +&{read QIODevice::read commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h non plain false false qint64 [0xc8203dad80 0xc8203dae20] } +&{readAll QIODevice::readAll commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h non plain false false QByteArray [] } +&{readChannelFinished QIODevice::readChannelFinished commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h non signal false false void [] } +&{readData QIODevice::readData commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h pure plain false false qint64 [0xc8203db2c0 0xc8203db360] } +&{readLine QIODevice::readLine commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h non plain false true 2 QByteArray [0xc8203db560] } +&{readLine QIODevice::readLine commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h non plain false false qint64 [0xc8203db760 0xc8203db800] } +&{readLineData QIODevice::readLineData commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h impure plain false false qint64 [0xc8203dba40 0xc8203dbac0] } +&{readyRead QIODevice::readyRead commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h non signal false false void [] } +&{reset QIODevice::reset commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h impure plain false false bool [] } +&{seek QIODevice::seek commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h impure plain false false bool [0xc8203dbe60] } +&{setErrorString QIODevice::setErrorString commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h non plain false false void [0xc8203c60a0] } +&{setOpenMode QIODevice::setOpenMode commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h non plain false false void [0xc8203c62c0] } +&{setTextModeEnabled QIODevice::setTextModeEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h non plain false false void [0xc8203c6520] } +&{size QIODevice::size commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h impure plain false false qint64 [] } +&{ungetChar QIODevice::ungetChar commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h non plain false false void [0xc8203c6880] } +&{waitForBytesWritten QIODevice::waitForBytesWritten commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h impure plain false false bool [0xc8203c6b00] } +&{waitForReadyRead QIODevice::waitForReadyRead commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h impure plain false false bool [0xc8203c6d80] } +&{write QIODevice::write commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h non plain false true 3 qint64 [0xc8203c6f20] } +&{write QIODevice::write commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h non plain false true 2 qint64 [0xc8203c7160] } +&{write QIODevice::write commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h non plain false false qint64 [0xc8203c72c0 0xc8203c7340] } +&{writeData QIODevice::writeData commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h pure plain false false qint64 [0xc8203c75a0 0xc8203c7640] } +&{~QIODevice QIODevice::~QIODevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qiodevice.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{OpenModeFlag QIODevice::OpenModeFlag commendable public QIODevice::OpenMode [0xc8203ec4e0 0xc8203ec580 0xc8203ec600 0xc8203ec700 0xc8203ec7e0 0xc8203ec880 0xc8203ec920 0xc8203eca00]} diff --git a/internal/binding/dump/QtCore/QIdentityProxyModel.txt b/internal/binding/dump/QtCore/QIdentityProxyModel.txt new file mode 100755 index 00000000..cf3045c0 --- /dev/null +++ b/internal/binding/dump/QtCore/QIdentityProxyModel.txt @@ -0,0 +1,21 @@ +######################################## FUNCTIONS ######################################## +&{QIdentityProxyModel QIdentityProxyModel::QIdentityProxyModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qidentityproxymodel.h non constructor false false [0xc82046a080] } +&{columnCount QIdentityProxyModel::columnCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qidentityproxymodel.h impure plain false false int [0xc82046a680] } +&{dropMimeData QIdentityProxyModel::dropMimeData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qidentityproxymodel.h impure plain false false bool [0xc82046a860 0xc82046a920 0xc82046a9a0 0xc82046aa20 0xc82046aae0] } +&{headerData QIdentityProxyModel::headerData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qidentityproxymodel.h impure plain false false QVariant [0xc82046ace0 0xc82046ad60 0xc82046ade0] } +&{index QIdentityProxyModel::index commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qidentityproxymodel.h impure plain false false QModelIndex [0xc82046afc0 0xc82046b040 0xc82046b0e0] } +&{insertColumns QIdentityProxyModel::insertColumns commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qidentityproxymodel.h impure plain false false bool [0xc82046b280 0xc82046b300 0xc82046b3a0] } +&{insertRows QIdentityProxyModel::insertRows commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qidentityproxymodel.h impure plain false false bool [0xc82046b5c0 0xc82046b640 0xc82046b6e0] } +&{mapFromSource QIdentityProxyModel::mapFromSource commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qidentityproxymodel.h impure plain false false QModelIndex [0xc82046b8a0] } +&{mapSelectionFromSource QIdentityProxyModel::mapSelectionFromSource commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qidentityproxymodel.h impure plain false false QItemSelection [0xc82046bac0] } +&{mapSelectionToSource QIdentityProxyModel::mapSelectionToSource commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qidentityproxymodel.h impure plain false false QItemSelection [0xc82046bce0] } +&{mapToSource QIdentityProxyModel::mapToSource commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qidentityproxymodel.h impure plain false false QModelIndex [0xc82046bf00] } +&{match QIdentityProxyModel::match commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qidentityproxymodel.h impure plain false false QModelIndexList [0xc820478140 0xc820478200 0xc820478280 0xc820478300 0xc8204783a0] } +&{parent QIdentityProxyModel::parent commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qidentityproxymodel.h impure plain false false QModelIndex [0xc8204785a0] } +&{removeColumns QIdentityProxyModel::removeColumns commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qidentityproxymodel.h impure plain false false bool [0xc820478740 0xc8204787c0 0xc820478860] } +&{removeRows QIdentityProxyModel::removeRows commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qidentityproxymodel.h impure plain false false bool [0xc820478a80 0xc820478b00 0xc820478ba0] } +&{rowCount QIdentityProxyModel::rowCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qidentityproxymodel.h impure plain false false int [0xc820478dc0] } +&{setSourceModel QIdentityProxyModel::setSourceModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qidentityproxymodel.h impure plain false false void [0xc820478f80] } +&{sibling QIdentityProxyModel::sibling commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qidentityproxymodel.h impure plain false false QModelIndex [0xc8204791a0 0xc820479220 0xc8204792c0] } +&{~QIdentityProxyModel QIdentityProxyModel::~QIdentityProxyModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qidentityproxymodel.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QItemSelection.txt b/internal/binding/dump/QtCore/QItemSelection.txt new file mode 100755 index 00000000..338c7483 --- /dev/null +++ b/internal/binding/dump/QtCore/QItemSelection.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QItemSelection QItemSelection::QItemSelection commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non constructor false false [] } +&{QItemSelection QItemSelection::QItemSelection commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non constructor false true 2 [0xc8204797c0 0xc8204798a0] } +&{contains QItemSelection::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false bool [0xc820479ae0] } +&{indexes QItemSelection::indexes commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false QModelIndexList [] } +&{merge QItemSelection::merge commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false void [0xc820479e60 0xc820479f20] } +&{select QItemSelection::select commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false void [0xc820484120 0xc820484200] } +&{split QItemSelection::split commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain true false void [0xc820484440 0xc820484520 0xc8204845e0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QItemSelectionModel.txt b/internal/binding/dump/QtCore/QItemSelectionModel.txt new file mode 100755 index 00000000..55815f65 --- /dev/null +++ b/internal/binding/dump/QtCore/QItemSelectionModel.txt @@ -0,0 +1,33 @@ +######################################## FUNCTIONS ######################################## +&{QItemSelectionModel QItemSelectionModel::QItemSelectionModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non constructor false false [0xc820485080] } +&{QItemSelectionModel QItemSelectionModel::QItemSelectionModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non constructor false true 2 [0xc8204852a0 0xc820485360] } +&{clear QItemSelectionModel::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h impure slot false false void [] } +&{clearCurrentIndex QItemSelectionModel::clearCurrentIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h impure slot false false void [] } +&{clearSelection QItemSelectionModel::clearSelection commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non slot false false void [] } +&{columnIntersectsSelection QItemSelectionModel::columnIntersectsSelection commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false bool [0xc820485c60 0xc820485d00] } +&{currentChanged QItemSelectionModel::currentChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non signal false false void [0xc820485ee0 0xc820485fc0] } +&{currentColumnChanged QItemSelectionModel::currentColumnChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non signal false false void [0xc8204961e0 0xc8204962c0] } +&{currentIndex QItemSelectionModel::currentIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false QModelIndex [] } +&{currentRowChanged QItemSelectionModel::currentRowChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non signal false false void [0xc820496580 0xc820496660] } +&{emitSelectionChanged QItemSelectionModel::emitSelectionChanged commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false void [0xc820496880 0xc820496960] } +&{hasSelection QItemSelectionModel::hasSelection commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false bool [] } +&{isColumnSelected QItemSelectionModel::isColumnSelected commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false bool [0xc820496ba0 0xc820496c40] } +&{isRowSelected QItemSelectionModel::isRowSelected commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false bool [0xc820496de0 0xc820496e80] } +&{isSelected QItemSelectionModel::isSelected commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false bool [0xc8204970c0] } +&{model QItemSelectionModel::model commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false true 2 QAbstractItemModel * [] } +&{model QItemSelectionModel::model commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false const QAbstractItemModel * [] } +&{modelChanged QItemSelectionModel::modelChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non signal false false void [0xc820497560] } +&{reset QItemSelectionModel::reset commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h impure slot false false void [] } +&{rowIntersectsSelection QItemSelectionModel::rowIntersectsSelection commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false bool [0xc820497860 0xc820497900] } +&{select QItemSelectionModel::select commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h impure slot false true 2 void [0xc820497b20 0xc820497be0] } +&{select QItemSelectionModel::select commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h impure slot false false void [0xc820497de0 0xc820497ea0] } +&{selectedColumns QItemSelectionModel::selectedColumns commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false QModelIndexList [0xc8204a8000] } +&{selectedIndexes QItemSelectionModel::selectedIndexes commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false QModelIndexList [] } +&{selectedRows QItemSelectionModel::selectedRows commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false QModelIndexList [0xc8204a8200] } +&{selection QItemSelectionModel::selection commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false const QItemSelection [] } +&{selectionChanged QItemSelectionModel::selectionChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non signal false false void [0xc8204a84e0 0xc8204a85c0] } +&{setCurrentIndex QItemSelectionModel::setCurrentIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h impure slot false false void [0xc8204a8780 0xc8204a8840] } +&{setModel QItemSelectionModel::setModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false void [0xc8204a8a20] } +&{~QItemSelectionModel QItemSelectionModel::~QItemSelectionModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{SelectionFlag QItemSelectionModel::SelectionFlag commendable public QItemSelectionModel::SelectionFlags [0xc8204848a0 0xc820484920 0xc8204849a0 0xc820484a20 0xc820484ac0 0xc820484b40 0xc820484bc0 0xc820484c40 0xc820484ce0 0xc820484d60 0xc820484de0]} diff --git a/internal/binding/dump/QtCore/QItemSelectionRange.txt b/internal/binding/dump/QtCore/QItemSelectionRange.txt new file mode 100755 index 00000000..2ed24292 --- /dev/null +++ b/internal/binding/dump/QtCore/QItemSelectionRange.txt @@ -0,0 +1,26 @@ +######################################## FUNCTIONS ######################################## +&{intersected QItemSelectionRange::intersected commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.cpp non plain false false QItemSelectionRange [0xc8204a92c0] } +&{intersects QItemSelectionRange::intersects commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.cpp non plain false false bool [0xc8204a94e0] } +&{QItemSelectionRange QItemSelectionRange::QItemSelectionRange commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non constructor false false [] } +&{QItemSelectionRange QItemSelectionRange::QItemSelectionRange commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non constructor false true 2 [0xc8204a9800] } +&{QItemSelectionRange QItemSelectionRange::QItemSelectionRange commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non constructor false true 4 [0xc8204a9a40] } +&{QItemSelectionRange QItemSelectionRange::QItemSelectionRange commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non constructor false true 3 [0xc8204a9c60 0xc8204a9d40] } +&{bottom QItemSelectionRange::bottom commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false int [] } +&{bottomRight QItemSelectionRange::bottomRight commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false const QPersistentModelIndex & [] } +&{contains QItemSelectionRange::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false bool [0xc8204be1e0] } +&{contains QItemSelectionRange::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false true 2 bool [0xc8204be3e0 0xc8204be460 0xc8204be500] } +&{height QItemSelectionRange::height commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false int [] } +&{indexes QItemSelectionRange::indexes commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false QModelIndexList [] } +&{isEmpty QItemSelectionRange::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false bool [] } +&{isValid QItemSelectionRange::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false bool [] } +&{left QItemSelectionRange::left commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false int [] } +&{model QItemSelectionRange::model commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false const QAbstractItemModel * [] } +&{operator!= QItemSelectionRange::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false bool [0xc8204bf0a0] } +&{operator< QItemSelectionRange::operator< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false bool [0xc8204bf2c0] } +&{operator== QItemSelectionRange::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false bool [0xc8204bf4e0] } +&{parent QItemSelectionRange::parent commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false QModelIndex [] } +&{right QItemSelectionRange::right commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false int [] } +&{top QItemSelectionRange::top commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false int [] } +&{topLeft QItemSelectionRange::topLeft commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false const QPersistentModelIndex & [] } +&{width QItemSelectionRange::width commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qitemselectionmodel.h non plain false false int [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QJsonArray.txt b/internal/binding/dump/QtCore/QJsonArray.txt new file mode 100755 index 00000000..9c703c3c --- /dev/null +++ b/internal/binding/dump/QtCore/QJsonArray.txt @@ -0,0 +1,45 @@ +######################################## FUNCTIONS ######################################## +&{QJsonArray QJsonArray::QJsonArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non constructor false false [] } +&{QJsonArray QJsonArray::QJsonArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non constructor false true 3 [0xc82055e0c0] } +&{QJsonArray QJsonArray::QJsonArray commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non constructor false true 2 [0xc82055e2c0] } +&{append QJsonArray::append commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false void [0xc82055e7c0] } +&{at QJsonArray::at commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false QJsonValue [0xc82055e980] } +&{begin QJsonArray::begin commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false iterator [] } +&{begin QJsonArray::begin commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false true 2 const_iterator [] } +&{constBegin QJsonArray::constBegin commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false const_iterator [] } +&{constEnd QJsonArray::constEnd commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false const_iterator [] } +&{contains QJsonArray::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false bool [0xc82055f200] } +&{count QJsonArray::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false int [] } +&{empty QJsonArray::empty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false bool [] } +&{end QJsonArray::end commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false iterator [] } +&{end QJsonArray::end commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false true 2 const_iterator [] } +&{erase QJsonArray::erase commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false iterator [0xc82055f760] } +&{first QJsonArray::first commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false QJsonValue [] } +&{fromStringList QJsonArray::fromStringList commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain true false QJsonArray [0xc82055fa40] } +&{fromVariantList QJsonArray::fromVariantList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain true false QJsonArray [0xc82055fc60] } +&{insert QJsonArray::insert commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false true 2 iterator [0xc82055ff60 0xc820574000] } +&{insert QJsonArray::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false void [0xc820574200 0xc8205742a0] } +&{isEmpty QJsonArray::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false bool [] } +&{last QJsonArray::last commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false QJsonValue [] } +&{operator!= QJsonArray::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false bool [0xc820574660] } +&{operator+ QJsonArray::operator+ commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false QJsonArray [0xc820574880] } +&{operator+= QJsonArray::operator+= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false QJsonArray & [0xc820574aa0] } +&{operator<< QJsonArray::operator<< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false QJsonArray & [0xc820574cc0] } +&{operator= QJsonArray::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false QJsonArray & [0xc820574ee0] } +&{operator== QJsonArray::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false bool [0xc820575100] } +&{operator[] QJsonArray::operator[] commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false QJsonValueRef [0xc820575340] } +&{operator[] QJsonArray::operator[] commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false true 2 QJsonValue [0xc820575600] } +&{pop_back QJsonArray::pop_back commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false void [] } +&{pop_front QJsonArray::pop_front commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false void [] } +&{prepend QJsonArray::prepend commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false void [0xc8205759a0] } +&{push_back QJsonArray::push_back commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false void [0xc820575bc0] } +&{push_front QJsonArray::push_front commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false void [0xc820575de0] } +&{removeAt QJsonArray::removeAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false void [0xc820586000] } +&{removeFirst QJsonArray::removeFirst commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false void [] } +&{removeLast QJsonArray::removeLast commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false void [] } +&{replace QJsonArray::replace commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false void [0xc8205863c0 0xc820586460] } +&{size QJsonArray::size commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false int [] } +&{takeAt QJsonArray::takeAt commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false QJsonValue [0xc820586700] } +&{toVariantList QJsonArray::toVariantList commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non plain false false QVariantList [] } +&{~QJsonArray QJsonArray::~QJsonArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonarray.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QJsonDocument.txt b/internal/binding/dump/QtCore/QJsonDocument.txt new file mode 100755 index 00000000..eed5a97c --- /dev/null +++ b/internal/binding/dump/QtCore/QJsonDocument.txt @@ -0,0 +1,28 @@ +######################################## FUNCTIONS ######################################## +&{QJsonDocument QJsonDocument::QJsonDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsondocument.h non constructor false false [] } +&{QJsonDocument QJsonDocument::QJsonDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsondocument.h non constructor false true 3 [0xc820587120] } +&{QJsonDocument QJsonDocument::QJsonDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsondocument.h non constructor false true 4 [0xc820587320] } +&{QJsonDocument QJsonDocument::QJsonDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsondocument.h non constructor false true 2 [0xc820587520] } +&{array QJsonDocument::array commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsondocument.h non plain false false QJsonArray [] } +&{fromBinaryData QJsonDocument::fromBinaryData commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsondocument.h non plain true false QJsonDocument [0xc820587a40 0xc820587b00] } +&{fromJson QJsonDocument::fromJson commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsondocument.h non plain true false QJsonDocument [0xc820587ce0 0xc820587dc0] } +&{fromRawData QJsonDocument::fromRawData commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsondocument.h non plain true false QJsonDocument [0xc820587fe0 0xc82059a060 0xc82059a0e0] } +&{fromVariant QJsonDocument::fromVariant commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsondocument.h non plain true false QJsonDocument [0xc82059a2a0] } +&{isArray QJsonDocument::isArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsondocument.h non plain false false bool [] } +&{isEmpty QJsonDocument::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsondocument.h non plain false false bool [] } +&{isNull QJsonDocument::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsondocument.h non plain false false bool [] } +&{isObject QJsonDocument::isObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsondocument.h non plain false false bool [] } +&{object QJsonDocument::object commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsondocument.h non plain false false QJsonObject [] } +&{operator!= QJsonDocument::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsondocument.h non plain false false bool [0xc82059a960] } +&{operator= QJsonDocument::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsondocument.h non plain false false QJsonDocument & [0xc82059aba0] } +&{operator== QJsonDocument::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsondocument.h non plain false false bool [0xc82059ada0] } +&{rawData QJsonDocument::rawData commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsondocument.h non plain false false const char * [0xc82059afa0] } +&{setArray QJsonDocument::setArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsondocument.h non plain false false void [0xc82059b180] } +&{setObject QJsonDocument::setObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsondocument.h non plain false false void [0xc82059b3a0] } +&{toBinaryData QJsonDocument::toBinaryData commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsondocument.h non plain false false QByteArray [] } +&{toJson QJsonDocument::toJson commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsondocument.h non plain false false QByteArray [0xc82059b6a0] } +&{toVariant QJsonDocument::toVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsondocument.h non plain false false QVariant [] } +&{~QJsonDocument QJsonDocument::~QJsonDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsondocument.h non destructor false false [] } +######################################## ENUMS ######################################## +&{DataValidation QJsonDocument::DataValidation commendable public [0xc820586ba0 0xc820586c20]} +&{JsonFormat QJsonDocument::JsonFormat commendable public [0xc820586dc0 0xc820586e40]} diff --git a/internal/binding/dump/QtCore/QJsonObject.txt b/internal/binding/dump/QtCore/QJsonObject.txt new file mode 100755 index 00000000..18140802 --- /dev/null +++ b/internal/binding/dump/QtCore/QJsonObject.txt @@ -0,0 +1,36 @@ +######################################## FUNCTIONS ######################################## +&{QJsonObject QJsonObject::QJsonObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non constructor false false [] } +&{QJsonObject QJsonObject::QJsonObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non constructor false true 3 [0xc8205c7140] } +&{QJsonObject QJsonObject::QJsonObject commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non constructor false true 2 [0xc8205c7340] } +&{begin QJsonObject::begin commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false false iterator [] } +&{begin QJsonObject::begin commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false true 2 const_iterator [] } +&{constBegin QJsonObject::constBegin commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false false const_iterator [] } +&{constEnd QJsonObject::constEnd commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false false const_iterator [] } +&{constFind QJsonObject::constFind commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false false const_iterator [0xc8205c7ce0] } +&{contains QJsonObject::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false false bool [0xc8205c7ea0] } +&{count QJsonObject::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false false int [] } +&{empty QJsonObject::empty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false false bool [] } +&{end QJsonObject::end commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false false iterator [] } +&{end QJsonObject::end commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false true 2 const_iterator [] } +&{erase QJsonObject::erase commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false false iterator [0xc8205e05a0] } +&{find QJsonObject::find commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false false iterator [0xc8205e0760] } +&{find QJsonObject::find commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false true 2 const_iterator [0xc8205e0920] } +&{fromVariantHash QJsonObject::fromVariantHash commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain true false QJsonObject [0xc8205e0b00] } +&{fromVariantMap QJsonObject::fromVariantMap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain true false QJsonObject [0xc8205e0d20] } +&{insert QJsonObject::insert commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false false iterator [0xc8205e1020 0xc8205e10c0] } +&{isEmpty QJsonObject::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false false bool [] } +&{keys QJsonObject::keys commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false false QStringList [] } +&{length QJsonObject::length commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false false int [] } +&{operator!= QJsonObject::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false false bool [0xc8205e17c0] } +&{operator= QJsonObject::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false false QJsonObject & [0xc8205e19e0] } +&{operator== QJsonObject::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false false bool [0xc8205e1c00] } +&{operator[] QJsonObject::operator[] commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false true 2 QJsonValueRef [0xc8205e1de0] } +&{operator[] QJsonObject::operator[] commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false false QJsonValue [0xc8205e1fa0] } +&{remove QJsonObject::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false false void [0xc8205f01a0] } +&{size QJsonObject::size commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false false int [] } +&{take QJsonObject::take commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false false QJsonValue [0xc8205f0440] } +&{toVariantHash QJsonObject::toVariantHash commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false false QVariantHash [] } +&{toVariantMap QJsonObject::toVariantMap commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false false QVariantMap [] } +&{value QJsonObject::value commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non plain false false QJsonValue [0xc8205f07e0] } +&{~QJsonObject QJsonObject::~QJsonObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonobject.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QJsonParseError.txt b/internal/binding/dump/QtCore/QJsonParseError.txt new file mode 100755 index 00000000..a318c912 --- /dev/null +++ b/internal/binding/dump/QtCore/QJsonParseError.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{errorString QJsonParseError::errorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsondocument.h non plain false false QString [] } +######################################## ENUMS ######################################## +&{ParseError QJsonParseError::ParseError commendable public [0xc82059bae0 0xc82059bb80 0xc82059bc60 0xc82059bd40 0xc82059be40 0xc82059bf00 0xc82059bfa0 0xc8205ac060 0xc8205ac120 0xc8205ac200 0xc8205ac2e0 0xc8205ac3a0 0xc8205ac420 0xc8205ac4a0 0xc8205ac520]} diff --git a/internal/binding/dump/QtCore/QJsonValue.txt b/internal/binding/dump/QtCore/QJsonValue.txt new file mode 100755 index 00000000..9f43a3fa --- /dev/null +++ b/internal/binding/dump/QtCore/QJsonValue.txt @@ -0,0 +1,36 @@ +######################################## FUNCTIONS ######################################## +&{QJsonValue QJsonValue::QJsonValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non constructor false true 5 [0xc8205f17a0] } +&{QJsonValue QJsonValue::QJsonValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non constructor false false [0xc8205f1980] } +&{QJsonValue QJsonValue::QJsonValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non constructor false true 2 [0xc8205f1b60] } +&{QJsonValue QJsonValue::QJsonValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non constructor false true 7 [0xc8205f1d80] } +&{QJsonValue QJsonValue::QJsonValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non constructor false true 8 [0xc8205f1fc0] } +&{QJsonValue QJsonValue::QJsonValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non constructor false true 9 [0xc8206061e0] } +&{QJsonValue QJsonValue::QJsonValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non constructor false true 4 [0xc820606400] } +&{QJsonValue QJsonValue::QJsonValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non constructor false true 6 [0xc820606600] } +&{QJsonValue QJsonValue::QJsonValue commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non constructor false true 3 [0xc8206067e0] } +&{QJsonValue QJsonValue::QJsonValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non constructor false true 12 [0xc8206069c0] } +&{QJsonValue QJsonValue::QJsonValue commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non constructor false true 13 [0xc820606ba0] } +&{fromVariant QJsonValue::fromVariant commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non plain true false QJsonValue [0xc820607400] } +&{isArray QJsonValue::isArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non plain false false bool [] } +&{isBool QJsonValue::isBool commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non plain false false bool [] } +&{isDouble QJsonValue::isDouble commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non plain false false bool [] } +&{isNull QJsonValue::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non plain false false bool [] } +&{isObject QJsonValue::isObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non plain false false bool [] } +&{isString QJsonValue::isString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non plain false false bool [] } +&{isUndefined QJsonValue::isUndefined commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non plain false false bool [] } +&{operator!= QJsonValue::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non plain false false bool [0xc820607d00] } +&{operator= QJsonValue::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non plain false false QJsonValue & [0xc820607f20] } +&{operator== QJsonValue::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non plain false false bool [0xc82061c140] } +&{toArray QJsonValue::toArray commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non plain false true 2 QJsonArray [] } +&{toArray QJsonValue::toArray commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non plain false false QJsonArray [0xc82061c460] } +&{toBool QJsonValue::toBool commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non plain false false bool [0xc82061c660] } +&{toDouble QJsonValue::toDouble commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non plain false false double [0xc82061c820] } +&{toInt QJsonValue::toInt commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non plain false false int [0xc82061c9e0] } +&{toObject QJsonValue::toObject commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non plain false true 2 QJsonObject [] } +&{toObject QJsonValue::toObject commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non plain false false QJsonObject [0xc82061cce0] } +&{toString QJsonValue::toString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non plain false false QString [0xc82061cee0] } +&{toVariant QJsonValue::toVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non plain false false QVariant [] } +&{type QJsonValue::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non plain false false Type [] } +&{~QJsonValue QJsonValue::~QJsonValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/json/qjsonvalue.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Type QJsonValue::Type commendable public [0xc8205f12a0 0xc8205f1320 0xc8205f13a0 0xc8205f1420 0xc8205f14c0 0xc8205f1540 0xc8205f15c0]} diff --git a/internal/binding/dump/QtCore/QLatin1Char.txt b/internal/binding/dump/QtCore/QLatin1Char.txt new file mode 100755 index 00000000..e9c2f4a6 --- /dev/null +++ b/internal/binding/dump/QtCore/QLatin1Char.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{QLatin1Char QLatin1Char::QLatin1Char commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non constructor false false [0xc8207f9240] } +&{toLatin1 QLatin1Char::toLatin1 commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false char [] } +&{unicode QLatin1Char::unicode commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qchar.h non plain false false ushort [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QLatin1String.txt b/internal/binding/dump/QtCore/QLatin1String.txt new file mode 100755 index 00000000..7f115562 --- /dev/null +++ b/internal/binding/dump/QtCore/QLatin1String.txt @@ -0,0 +1,26 @@ +######################################## FUNCTIONS ######################################## +&{QLatin1String QLatin1String::QLatin1String commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non constructor false true 3 [0xc820aaa5c0] } +&{QLatin1String QLatin1String::QLatin1String commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non constructor false false [0xc820aaa7e0] } +&{QLatin1String QLatin1String::QLatin1String commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non constructor false true 2 [0xc820aaa9c0 0xc820aaaa40] } +&{data QLatin1String::data commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false const char * [] } +&{latin1 QLatin1String::latin1 commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false const char * [] } +&{operator!= QLatin1String::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 bool [0xc820aaaf80] } +&{operator!= QLatin1String::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [0xc820aab1e0] } +&{operator!= QLatin1String::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 bool [0xc820aab380] } +&{operator< QLatin1String::operator< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 bool [0xc820aab580] } +&{operator< QLatin1String::operator< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [0xc820aab8c0] } +&{operator< QLatin1String::operator< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 bool [0xc820aabbe0] } +&{operator<= QLatin1String::operator<= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 bool [0xc820aabe80] } +&{operator<= QLatin1String::operator<= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [0xc820a94120] } +&{operator<= QLatin1String::operator<= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 bool [0xc820a94340] } +&{operator== QLatin1String::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 bool [0xc820a94540] } +&{operator== QLatin1String::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [0xc820a947e0] } +&{operator== QLatin1String::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 bool [0xc820a94a20] } +&{operator> QLatin1String::operator> commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 bool [0xc820a94ce0] } +&{operator> QLatin1String::operator> commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [0xc820a94fa0] } +&{operator> QLatin1String::operator> commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 bool [0xc820a95240] } +&{operator>= QLatin1String::operator>= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 bool [0xc820a95540] } +&{operator>= QLatin1String::operator>= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [0xc820a957c0] } +&{operator>= QLatin1String::operator>= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 bool [0xc820a959c0] } +&{size QLatin1String::size commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false int [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QLibrary.txt b/internal/binding/dump/QtCore/QLibrary.txt new file mode 100755 index 00000000..2c34dbea --- /dev/null +++ b/internal/binding/dump/QtCore/QLibrary.txt @@ -0,0 +1,23 @@ +######################################## FUNCTIONS ######################################## +&{fileName QLibrary::fileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qlibrary.cpp non plain false false QString [] } +&{loadHints QLibrary::loadHints commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qlibrary.cpp non plain false false LoadHints [] } +&{setFileName QLibrary::setFileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qlibrary.cpp non plain false false void [0xc8201c5900] } +&{setFileNameAndVersion QLibrary::setFileNameAndVersion commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qlibrary.cpp non plain false false void [0xc8201c5ca0 0xc8201c5d20] } +&{setLoadHints QLibrary::setLoadHints commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qlibrary.cpp non plain false false void [0xc8201b60a0] } +&{QLibrary QLibrary::QLibrary commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qlibrary.h non constructor false false [0xc8201b6cc0] } +&{QLibrary QLibrary::QLibrary commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qlibrary.h non constructor false true 2 [0xc8201b6f20 0xc8201b6fc0] } +&{QLibrary QLibrary::QLibrary commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qlibrary.h non constructor false true 4 [0xc8201b71c0 0xc8201b7260 0xc8201b7300] } +&{QLibrary QLibrary::QLibrary commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qlibrary.h non constructor false true 3 [0xc8201b7620 0xc8201b76e0 0xc8201b7800] } +&{errorString QLibrary::errorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qlibrary.h non plain false false QString [] } +&{isLibrary QLibrary::isLibrary commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qlibrary.h non plain true false bool [0xc8201b7c40] } +&{isLoaded QLibrary::isLoaded commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qlibrary.h non plain false false bool [] } +&{load QLibrary::load commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qlibrary.h non plain false false bool [] } +&{resolve QLibrary::resolve commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qlibrary.h non plain true true 4 QFunctionPointer [0xc8201ae240 0xc8201ae300 0xc8201ae3a0] } +&{resolve QLibrary::resolve commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qlibrary.h non plain true true 2 QFunctionPointer [0xc8201ae6a0 0xc8201ae720] } +&{resolve QLibrary::resolve commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qlibrary.h non plain true true 3 QFunctionPointer [0xc8201ae9e0 0xc8201aeaa0 0xc8201aeb60] } +&{resolve QLibrary::resolve commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qlibrary.h non plain false false QFunctionPointer [0xc8201aee60] } +&{setFileNameAndVersion QLibrary::setFileNameAndVersion commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qlibrary.h non plain false true 2 void [0xc8201af1c0 0xc8201af2e0] } +&{unload QLibrary::unload commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qlibrary.h non plain false false bool [] } +&{~QLibrary QLibrary::~QLibrary commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qlibrary.h non destructor false false [] } +######################################## ENUMS ######################################## +&{LoadHint QLibrary::LoadHint commendable public QLibrary::LoadHints [0xc8201b6460 0xc8201b65e0 0xc8201b6780 0xc8201b6860 0xc8201b69a0]} diff --git a/internal/binding/dump/QtCore/QLibraryInfo.txt b/internal/binding/dump/QtCore/QLibraryInfo.txt new file mode 100755 index 00000000..5d10b898 --- /dev/null +++ b/internal/binding/dump/QtCore/QLibraryInfo.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{isDebugBuild QLibraryInfo::isDebugBuild commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlibraryinfo.h non plain true false bool [] } +&{licensedProducts QLibraryInfo::licensedProducts commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlibraryinfo.h non plain true false QString [] } +&{licensee QLibraryInfo::licensee commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlibraryinfo.h non plain true false QString [] } +&{location QLibraryInfo::location commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlibraryinfo.h non plain true false QString [0xc8200e0180] } +######################################## ENUMS ######################################## +&{LibraryLocation QLibraryInfo::LibraryLocation commendable public [0xc8200eef60 0xc8200ef000 0xc8200ef0c0 0xc8200ef140 0xc8200ef200 0xc8200ef320 0xc8200ef3a0 0xc8200ef440 0xc8200ef520 0xc8200ef5c0 0xc8200ef640 0xc8200ef700 0xc8200ef780 0xc8200ef800 0xc8200ef8a0]} diff --git a/internal/binding/dump/QtCore/QLine.txt b/internal/binding/dump/QtCore/QLine.txt new file mode 100755 index 00000000..c8a1a0f0 --- /dev/null +++ b/internal/binding/dump/QtCore/QLine.txt @@ -0,0 +1,24 @@ +######################################## FUNCTIONS ######################################## +&{QLine QLine::QLine commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non constructor false false [] } +&{QLine QLine::QLine commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non constructor false true 2 [0xc820225040 0xc820225220] } +&{QLine QLine::QLine commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non constructor false true 3 [0xc820225600 0xc8202257a0 0xc8202258a0 0xc8202259c0] } +&{dx QLine::dx commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false int [] } +&{dy QLine::dy commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false int [] } +&{isNull QLine::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false bool [] } +&{operator!= QLine::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false bool [0xc82021c140] } +&{operator== QLine::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false bool [0xc82021c460] } +&{p1 QLine::p1 commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false QPoint [] } +&{p2 QLine::p2 commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false QPoint [] } +&{setLine QLine::setLine commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false void [0xc82021ca40 0xc82021cba0 0xc82021ccc0 0xc82021ce80] } +&{setP1 QLine::setP1 commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false void [0xc82021d1a0] } +&{setP2 QLine::setP2 commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false void [0xc82021d580] } +&{setPoints QLine::setPoints commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false void [0xc82021d820 0xc82021da00] } +&{translate QLine::translate commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false void [0xc82021ddc0] } +&{translate QLine::translate commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false true 2 void [0xc820210300 0xc8202103e0] } +&{translated QLine::translated commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false QLine [0xc820210960] } +&{translated QLine::translated commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false true 2 QLine [0xc820210fa0 0xc8202110a0] } +&{x1 QLine::x1 commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false int [] } +&{x2 QLine::x2 commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false int [] } +&{y1 QLine::y1 commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false int [] } +&{y2 QLine::y2 commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false int [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QLineF.txt b/internal/binding/dump/QtCore/QLineF.txt new file mode 100755 index 00000000..a4991def --- /dev/null +++ b/internal/binding/dump/QtCore/QLineF.txt @@ -0,0 +1,37 @@ +######################################## FUNCTIONS ######################################## +&{angleTo QLineF::angleTo commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.cpp non plain false false qreal [0xc820211c00] } +&{intersect QLineF::intersect commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.cpp non plain false false IntersectType [0xc8202080c0 0xc820208340] } +&{QLineF QLineF::QLineF commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non constructor false false [] } +&{QLineF QLineF::QLineF commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non constructor false true 4 [0xc8202095a0] } +&{QLineF QLineF::QLineF commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non constructor false true 2 [0xc8202099c0 0xc820209b00] } +&{QLineF QLineF::QLineF commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non constructor false true 3 [0xc820209e60 0xc820436080 0xc820436100 0xc8204361a0] } +&{angle QLineF::angle commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false qreal [] } +&{dx QLineF::dx commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false qreal [] } +&{dy QLineF::dy commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false qreal [] } +&{fromPolar QLineF::fromPolar commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain true false QLineF [0xc820436620 0xc8204366c0] } +&{isNull QLineF::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false bool [] } +&{length QLineF::length commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false qreal [] } +&{normalVector QLineF::normalVector commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false QLineF [] } +&{operator!= QLineF::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false bool [0xc820436e00] } +&{operator== QLineF::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false bool [0xc8204370e0] } +&{p1 QLineF::p1 commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false QPointF [] } +&{p2 QLineF::p2 commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false QPointF [] } +&{pointAt QLineF::pointAt commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false QPointF [0xc820437460] } +&{setAngle QLineF::setAngle commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false void [0xc820437680] } +&{setLength QLineF::setLength commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false void [0xc820437a00] } +&{setLine QLineF::setLine commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false void [0xc820437cc0 0xc820437d60 0xc820437ea0 0xc820437fa0] } +&{setP1 QLineF::setP1 commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false void [0xc8202003a0] } +&{setP2 QLineF::setP2 commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false void [0xc8202006c0] } +&{setPoints QLineF::setPoints commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false void [0xc820200a80 0xc820200bc0] } +&{toLine QLineF::toLine commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false QLine [] } +&{translate QLineF::translate commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false void [0xc820201080] } +&{translate QLineF::translate commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false true 2 void [0xc820201440 0xc8202015a0] } +&{translated QLineF::translated commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false QLineF [0xc820201a20] } +&{translated QLineF::translated commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false true 2 QLineF [0xc820201f00 0xc820201fa0] } +&{unitVector QLineF::unitVector commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false QLineF [] } +&{x1 QLineF::x1 commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false qreal [] } +&{x2 QLineF::x2 commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false qreal [] } +&{y1 QLineF::y1 commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false qreal [] } +&{y2 QLineF::y2 commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qline.h non plain false false qreal [] } +######################################## ENUMS ######################################## +&{IntersectType QLineF::IntersectType commendable public [0xc820208940 0xc820208b60 0xc820208cc0]} diff --git a/internal/binding/dump/QtCore/QLinkedList.txt b/internal/binding/dump/QtCore/QLinkedList.txt new file mode 100755 index 00000000..0f71c9fe --- /dev/null +++ b/internal/binding/dump/QtCore/QLinkedList.txt @@ -0,0 +1,59 @@ +######################################## FUNCTIONS ######################################## +&{QLinkedList QLinkedList::QLinkedList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non constructor false false [] } +&{QLinkedList QLinkedList::QLinkedList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non constructor false true 4 [0xc8201ebea0] } +&{QLinkedList QLinkedList::QLinkedList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non constructor false true 2 [0xc8201dc300] } +&{QLinkedList QLinkedList::QLinkedList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non constructor false true 3 [0xc8201dc820] } +&{append QLinkedList::append commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false void [0xc8201dcdc0] } +&{back QLinkedList::back commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false T & [] } +&{back QLinkedList::back commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false true 2 const T & [] } +&{begin QLinkedList::begin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false iterator [] } +&{begin QLinkedList::begin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false true 2 const_iterator [] } +&{cbegin QLinkedList::cbegin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false const_iterator [] } +&{cend QLinkedList::cend commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false const_iterator [] } +&{clear QLinkedList::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false void [] } +&{constBegin QLinkedList::constBegin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false const_iterator [] } +&{constEnd QLinkedList::constEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false const_iterator [] } +&{contains QLinkedList::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false bool [0xc8201d28c0] } +&{count QLinkedList::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false true 2 int [] } +&{count QLinkedList::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false int [0xc8201d2f60] } +&{empty QLinkedList::empty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false bool [] } +&{end QLinkedList::end commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false iterator [] } +&{end QLinkedList::end commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false true 2 const_iterator [] } +&{endsWith QLinkedList::endsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false bool [0xc8201ca160] } +&{erase QLinkedList::erase commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false true 2 iterator [0xc8201ca680 0xc8201ca800] } +&{erase QLinkedList::erase commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false iterator [0xc8201cac40] } +&{first QLinkedList::first commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false T & [] } +&{first QLinkedList::first commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false true 2 const T & [] } +&{fromStdList QLinkedList::fromStdList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain true false QLinkedList [0xc8201cbc20] } +&{front QLinkedList::front commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false T & [] } +&{front QLinkedList::front commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false true 2 const T & [] } +&{insert QLinkedList::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false iterator [0xc8201c45e0 0xc8201c46a0] } +&{isEmpty QLinkedList::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false bool [] } +&{last QLinkedList::last commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false T & [] } +&{last QLinkedList::last commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false true 2 const T & [] } +&{operator!= QLinkedList::operator!= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false bool [0xc8201c5f00] } +&{operator+ QLinkedList::operator+ commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false QLinkedList [0xc8201b6540] } +&{operator+= QLinkedList::operator+= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false QLinkedList & [0xc8201b6a60] } +&{operator+= QLinkedList::operator+= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false true 2 QLinkedList & [0xc8201b6e00] } +&{operator<< QLinkedList::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false QLinkedList & [0xc8201b7160] } +&{operator<< QLinkedList::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false true 2 QLinkedList & [0xc8201b7680] } +&{operator= QLinkedList::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false true 2 QLinkedList & [0xc8201b7ba0] } +&{operator= QLinkedList::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false QLinkedList & [0xc8201ae0c0] } +&{operator== QLinkedList::operator== commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false bool [0xc8201ae8c0] } +&{pop_back QLinkedList::pop_back commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false void [] } +&{pop_front QLinkedList::pop_front commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false void [] } +&{prepend QLinkedList::prepend commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false void [0xc8201af480] } +&{push_back QLinkedList::push_back commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false void [0xc8201af980] } +&{push_front QLinkedList::push_front commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false void [0xc8201aff20] } +&{removeAll QLinkedList::removeAll commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false int [0xc820a1c200] } +&{removeFirst QLinkedList::removeFirst commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false void [] } +&{removeLast QLinkedList::removeLast commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false void [] } +&{removeOne QLinkedList::removeOne commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false bool [0xc820a1c640] } +&{size QLinkedList::size commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false int [] } +&{startsWith QLinkedList::startsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false bool [0xc820a1cb80] } +&{swap QLinkedList::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false void [0xc820a1cda0] } +&{takeFirst QLinkedList::takeFirst commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false T [] } +&{takeLast QLinkedList::takeLast commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false T [] } +&{toStdList QLinkedList::toStdList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non plain false false std::list [] } +&{~QLinkedList QLinkedList::~QLinkedList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlinkedlist.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QLinkedListIterator.txt b/internal/binding/dump/QtCore/QLinkedListIterator.txt new file mode 100755 index 00000000..cf1cb07f --- /dev/null +++ b/internal/binding/dump/QtCore/QLinkedListIterator.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QLinkedListIterator QLinkedListIterator::QLinkedListIterator commendable public qlinkedlist.h non constructor false false [0xc82032e640] } +&{findNext QLinkedListIterator::findNext commendable public qlinkedlist.h non plain false false bool [0xc82032ec40] } +&{findPrevious QLinkedListIterator::findPrevious commendable public qlinkedlist.h non plain false false bool [0xc82032f0a0] } +&{hasNext QLinkedListIterator::hasNext commendable public qlinkedlist.h non plain false false bool [] } +&{hasPrevious QLinkedListIterator::hasPrevious commendable public qlinkedlist.h non plain false false bool [] } +&{next QLinkedListIterator::next commendable public qlinkedlist.h non plain false false const T & [] } +&{operator= QLinkedListIterator::operator= commendable public qlinkedlist.h non plain false false QLinkedListIterator & [0xc8203142c0] } +&{peekNext QLinkedListIterator::peekNext commendable public qlinkedlist.h non plain false false const T & [] } +&{peekPrevious QLinkedListIterator::peekPrevious commendable public qlinkedlist.h non plain false false const T & [] } +&{previous QLinkedListIterator::previous commendable public qlinkedlist.h non plain false false const T & [] } +&{toBack QLinkedListIterator::toBack commendable public qlinkedlist.h non plain false false void [] } +&{toFront QLinkedListIterator::toFront commendable public qlinkedlist.h non plain false false void [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QList.txt b/internal/binding/dump/QtCore/QList.txt new file mode 100755 index 00000000..50f7ffb8 --- /dev/null +++ b/internal/binding/dump/QtCore/QList.txt @@ -0,0 +1,80 @@ +######################################## FUNCTIONS ######################################## +&{QList QList::QList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non constructor false false [] } +&{QList QList::QList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non constructor false true 3 [0xc820163a40] } +&{QList QList::QList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non constructor false true 2 [0xc820163e20] } +&{QList QList::QList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non constructor false true 4 [0xc8201523a0] } +&{append QList::append commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false true 2 void [0xc8201529c0] } +&{append QList::append commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false void [0xc820152e80] } +&{at QList::at commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false const T & [0xc8201532e0] } +&{back QList::back commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false T & [] } +&{back QList::back commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false true 2 const T & [] } +&{begin QList::begin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false iterator [] } +&{begin QList::begin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false true 2 const_iterator [] } +&{cbegin QList::cbegin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false const_iterator [] } +&{cend QList::cend commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false const_iterator [] } +&{clear QList::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false void [] } +&{constBegin QList::constBegin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false const_iterator [] } +&{constEnd QList::constEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false const_iterator [] } +&{contains QList::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false bool [0xc82013c5c0] } +&{count QList::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false true 2 int [] } +&{count QList::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false int [0xc82013ca60] } +&{empty QList::empty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false bool [] } +&{end QList::end commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false iterator [] } +&{end QList::end commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false true 2 const_iterator [] } +&{endsWith QList::endsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false bool [0xc820117be0] } +&{erase QList::erase commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false true 2 iterator [0xc820102060 0xc820102180] } +&{erase QList::erase commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false iterator [0xc8201024c0] } +&{first QList::first commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false T & [] } +&{first QList::first commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false true 2 const T & [] } +&{fromSet QList::fromSet commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain true false QList [0xc8201028e0] } +&{fromStdList QList::fromStdList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain true false QList [0xc820102cc0] } +&{fromVector QList::fromVector commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain true false QList [0xc8201032a0] } +&{front QList::front commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false T & [] } +&{front QList::front commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false true 2 const T & [] } +&{indexOf QList::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false int [0xc820103a00 0xc820103b80] } +&{insert QList::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false true 2 iterator [0xc8200ee080 0xc8200ee1c0] } +&{insert QList::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false void [0xc8200ee600 0xc8200ee720] } +&{isEmpty QList::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false bool [] } +&{last QList::last commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false T & [] } +&{last QList::last commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false true 2 const T & [] } +&{lastIndexOf QList::lastIndexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false int [0xc8200eff60 0xc8200e00a0] } +&{length QList::length commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false int [] } +&{mid QList::mid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false QList [0xc8200e0680 0xc8200e0860] } +&{move QList::move commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false void [0xc8200e0d80 0xc8200e1000] } +&{operator!= QList::operator!= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false bool [0xc8200e1520] } +&{operator+ QList::operator+ commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false QList [0xc8200e1860] } +&{operator+= QList::operator+= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false QList & [0xc8200e1f00] } +&{operator+= QList::operator+= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false true 2 QList & [0xc820530260] } +&{operator<< QList::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false QList & [0xc820530600] } +&{operator<< QList::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false true 2 QList & [0xc820530940] } +&{operator= QList::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false true 2 QList & [0xc820530bc0] } +&{operator= QList::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false QList & [0xc820530d80] } +&{operator== QList::operator== commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false bool [0xc820531060] } +&{operator[] QList::operator[] commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false T & [0xc820531360] } +&{operator[] QList::operator[] commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false true 2 const T & [0xc8205317e0] } +&{pop_back QList::pop_back commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false void [] } +&{pop_front QList::pop_front commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false void [] } +&{prepend QList::prepend commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false void [0xc820531d00] } +&{push_back QList::push_back commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false void [0xc820531f40] } +&{push_front QList::push_front commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false void [0xc8200d2540] } +&{removeAll QList::removeAll commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false int [0xc8200d2ac0] } +&{removeAt QList::removeAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false void [0xc8200d30a0] } +&{removeFirst QList::removeFirst commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false void [] } +&{removeLast QList::removeLast commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false void [] } +&{removeOne QList::removeOne commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false bool [0xc8200d3cc0] } +&{replace QList::replace commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false void [0xc8200a4140 0xc8200a42a0] } +&{reserve QList::reserve commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false void [0xc8200a4720] } +&{size QList::size commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false int [] } +&{startsWith QList::startsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false bool [0xc8200a5700] } +&{swap QList::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false void [0xc8200a5b80] } +&{swap QList::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false true 2 void [0xc8200a5f60 0xc82017e160] } +&{takeAt QList::takeAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false T [0xc82017e480] } +&{takeFirst QList::takeFirst commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false T [] } +&{takeLast QList::takeLast commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false T [] } +&{toSet QList::toSet commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false QSet [] } +&{toStdList QList::toStdList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false std::list [] } +&{toVector QList::toVector commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false QVector [] } +&{value QList::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false false T [0xc82017ee40] } +&{value QList::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non plain false true 2 T [0xc82017f0c0 0xc82017f1c0] } +&{~QList QList::~QList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlist.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QListIterator.txt b/internal/binding/dump/QtCore/QListIterator.txt new file mode 100755 index 00000000..e1637145 --- /dev/null +++ b/internal/binding/dump/QtCore/QListIterator.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QListIterator QListIterator::QListIterator commendable public qlist.h non constructor false false [0xc8202d0360] } +&{findNext QListIterator::findNext commendable public qlist.h non plain false false bool [0xc8202d0860] } +&{findPrevious QListIterator::findPrevious commendable public qlist.h non plain false false bool [0xc8202d0c40] } +&{hasNext QListIterator::hasNext commendable public qlist.h non plain false false bool [] } +&{hasPrevious QListIterator::hasPrevious commendable public qlist.h non plain false false bool [] } +&{next QListIterator::next commendable public qlist.h non plain false false const T & [] } +&{operator= QListIterator::operator= commendable public qlist.h non plain false false QListIterator & [0xc8202d1600] } +&{peekNext QListIterator::peekNext commendable public qlist.h non plain false false const T & [] } +&{peekPrevious QListIterator::peekPrevious commendable public qlist.h non plain false false const T & [] } +&{previous QListIterator::previous commendable public qlist.h non plain false false const T & [] } +&{toBack QListIterator::toBack commendable public qlist.h non plain false false void [] } +&{toFront QListIterator::toFront commendable public qlist.h non plain false false void [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QLocale.txt b/internal/binding/dump/QtCore/QLocale.txt new file mode 100755 index 00000000..59142d22 --- /dev/null +++ b/internal/binding/dump/QtCore/QLocale.txt @@ -0,0 +1,106 @@ +######################################## FUNCTIONS ######################################## +&{operator!= QLocale::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.cpp non plain false false bool [0xc82017f920] } +&{operator== QLocale::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.cpp non plain false false bool [0xc82017fce0] } +&{QLocale QLocale::QLocale commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non constructor false false [] } +&{QLocale QLocale::QLocale commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non constructor false true 3 [0xc820c34e80 0xc820c34f00] } +&{QLocale QLocale::QLocale commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non constructor false true 4 [0xc820c35080 0xc820c35100 0xc820c35180] } +&{QLocale QLocale::QLocale commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non constructor false true 5 [0xc820c35300] } +&{QLocale QLocale::QLocale commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non constructor false true 2 [0xc820c35480] } +&{amText QLocale::amText commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QString [] } +&{bcp47Name QLocale::bcp47Name commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QString [] } +&{c QLocale::c commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain true false QLocale [] } +&{country QLocale::country commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false Country [] } +&{countryToString QLocale::countryToString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain true false QString [0xc820c35c80] } +&{createSeparatedList QLocale::createSeparatedList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QString [0xc820c35ec0] } +&{currencySymbol QLocale::currencySymbol commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QString [0xc820c480e0] } +&{dateFormat QLocale::dateFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QString [0xc820c48300] } +&{dateTimeFormat QLocale::dateTimeFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QString [0xc820c484c0] } +&{dayName QLocale::dayName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QString [0xc820c48620 0xc820c486a0] } +&{decimalPoint QLocale::decimalPoint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QChar [] } +&{exponential QLocale::exponential commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QChar [] } +&{firstDayOfWeek QLocale::firstDayOfWeek commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false Qt::DayOfWeek [] } +&{groupSeparator QLocale::groupSeparator commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QChar [] } +&{language QLocale::language commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false Language [] } +&{languageToString QLocale::languageToString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain true false QString [0xc820c48d40] } +&{matchingLocales QLocale::matchingLocales commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain true false QList [0xc820c48f20 0xc820c48fe0 0xc820c49060] } +&{measurementSystem QLocale::measurementSystem commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false MeasurementSystem [] } +&{monthName QLocale::monthName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QString [0xc820c493c0 0xc820c49440] } +&{name QLocale::name commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QString [] } +&{nativeCountryName QLocale::nativeCountryName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QString [] } +&{nativeLanguageName QLocale::nativeLanguageName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QString [] } +&{negativeSign QLocale::negativeSign commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QChar [] } +&{numberOptions QLocale::numberOptions commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false NumberOptions [] } +&{operator= QLocale::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QLocale & [0xc820c49b20] } +&{percent QLocale::percent commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QChar [] } +&{pmText QLocale::pmText commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QString [] } +&{positiveSign QLocale::positiveSign commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QChar [] } +&{quoteString QLocale::quoteString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QString [0xc820c49f20 0xc820c49fc0] } +&{quoteString QLocale::quoteString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 2 QString [0xc820c621a0 0xc820c62280] } +&{script QLocale::script commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false Script [] } +&{scriptToString QLocale::scriptToString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain true false QString [0xc820c624e0] } +&{setDefault QLocale::setDefault commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain true false void [0xc820c626a0] } +&{setNumberOptions QLocale::setNumberOptions commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false void [0xc820c62860] } +&{standaloneDayName QLocale::standaloneDayName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QString [0xc820c62a80 0xc820c62b00] } +&{standaloneMonthName QLocale::standaloneMonthName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QString [0xc820c62d20 0xc820c62da0] } +&{system QLocale::system commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain true false QLocale [] } +&{textDirection QLocale::textDirection commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false Qt::LayoutDirection [] } +&{timeFormat QLocale::timeFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QString [0xc820c63120] } +&{toCurrencyString QLocale::toCurrencyString commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 3 QString [0xc820c632e0 0xc820c63360] } +&{toCurrencyString QLocale::toCurrencyString commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 8 QString [0xc820c63520 0xc820c635a0] } +&{toCurrencyString QLocale::toCurrencyString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 6 QString [0xc820c63760 0xc820c637e0] } +&{toCurrencyString QLocale::toCurrencyString commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QString [0xc820c639a0 0xc820c63a20] } +&{toCurrencyString QLocale::toCurrencyString commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 2 QString [0xc820c63be0 0xc820c63c60] } +&{toCurrencyString QLocale::toCurrencyString commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 4 QString [0xc820c63e20 0xc820c63ea0] } +&{toCurrencyString QLocale::toCurrencyString commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 7 QString [0xc820c76060 0xc820c760e0] } +&{toCurrencyString QLocale::toCurrencyString commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 5 QString [0xc820c762a0 0xc820c76320] } +&{toDate QLocale::toDate commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QDate [0xc820c76480 0xc820c76500] } +&{toDate QLocale::toDate commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 2 QDate [0xc820c76660 0xc820c766e0] } +&{toDateTime QLocale::toDateTime commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QDateTime [0xc820c768a0 0xc820c76920] } +&{toDateTime QLocale::toDateTime commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 2 QDateTime [0xc820c76ae0 0xc820c76b60] } +&{toDouble QLocale::toDouble commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false double [0xc820c76d20 0xc820c76da0] } +&{toDouble QLocale::toDouble commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 2 double [0xc820c76f80 0xc820c77040] } +&{toFloat QLocale::toFloat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false float [0xc820c771a0 0xc820c77220] } +&{toFloat QLocale::toFloat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 2 float [0xc820c773a0 0xc820c77460] } +&{toInt QLocale::toInt commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false int [0xc820c775e0 0xc820c77660] } +&{toInt QLocale::toInt commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 2 int [0xc820c777e0 0xc820c778a0] } +&{toLongLong QLocale::toLongLong commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false qlonglong [0xc820c77a60 0xc820c77ae0] } +&{toLongLong QLocale::toLongLong commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 2 qlonglong [0xc820c77cc0 0xc820c77d80] } +&{toLower QLocale::toLower commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QString [0xc820c77ee0] } +&{toShort QLocale::toShort commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false short [0xc820c8c040 0xc820c8c0c0] } +&{toShort QLocale::toShort commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 2 short [0xc820c8c240 0xc820c8c300] } +&{toString QLocale::toString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 3 QString [0xc820c8c4c0 0xc820c8c540] } +&{toString QLocale::toString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 2 QString [0xc820c8c700 0xc820c8c780] } +&{toString QLocale::toString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 6 QString [0xc820c8c960 0xc820c8ca20] } +&{toString QLocale::toString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 7 QString [0xc820c8cc00 0xc820c8ccc0] } +&{toString QLocale::toString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 5 QString [0xc820c8ce80 0xc820c8cf00] } +&{toString QLocale::toString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 4 QString [0xc820c8d0c0 0xc820c8d140] } +&{toString QLocale::toString commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 9 QString [0xc820c8d300 0xc820c8d380 0xc820c8d400] } +&{toString QLocale::toString commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 14 QString [0xc820c8d5c0 0xc820c8d640 0xc820c8d6c0] } +&{toString QLocale::toString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 12 QString [0xc820c8d8a0] } +&{toString QLocale::toString commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QString [0xc820c8da60] } +&{toString QLocale::toString commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 8 QString [0xc820c8dc20] } +&{toString QLocale::toString commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 10 QString [0xc820c8de00] } +&{toString QLocale::toString commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 13 QString [0xc820c8dfe0] } +&{toString QLocale::toString commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 11 QString [0xc820ca01c0] } +&{toTime QLocale::toTime commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QTime [0xc820ca0320 0xc820ca03a0] } +&{toTime QLocale::toTime commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 2 QTime [0xc820ca0500 0xc820ca0580] } +&{toUInt QLocale::toUInt commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false uint [0xc820ca06e0 0xc820ca0760] } +&{toUInt QLocale::toUInt commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 2 uint [0xc820ca08e0 0xc820ca09a0] } +&{toULongLong QLocale::toULongLong commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false qulonglong [0xc820ca0b60 0xc820ca0be0] } +&{toULongLong QLocale::toULongLong commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 2 qulonglong [0xc820ca0dc0 0xc820ca0e80] } +&{toUShort QLocale::toUShort commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false ushort [0xc820ca1040 0xc820ca10c0] } +&{toUShort QLocale::toUShort commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false true 2 ushort [0xc820ca12a0 0xc820ca1360] } +&{toUpper QLocale::toUpper commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QString [0xc820ca14c0] } +&{uiLanguages QLocale::uiLanguages commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QStringList [] } +&{weekdays QLocale::weekdays commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QList [] } +&{zeroDigit QLocale::zeroDigit commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non plain false false QChar [] } +&{~QLocale QLocale::~QLocale commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qlocale.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Country QLocale::Country commendable public [0xc82017ffc0 0xc8200701e0 0xc8200703e0 0xc8200704a0 0xc820070600 0xc820070700 0xc820070820 0xc8200708c0 0xc8200709e0 0xc820070ae0 0xc820070ce0 0xc820070e20 0xc820071040 0xc820071120 0xc820071260 0xc820071340 0xc820071540 0xc820071660 0xc820071700 0xc8200718e0 0xc8200719c0 0xc820071ac0 0xc820071be0 0xc820071d40 0xc820071e20 0xc820071f20 0xc82000e0c0 0xc82000e240 0xc82000e3a0 0xc82000e4a0 0xc82000e600 0xc82000e820 0xc82000ea60 0xc82000eb40 0xc82000ed20 0xc82000ef80 0xc82000f040 0xc82000f140 0xc82000f240 0xc82000f360 0xc82000f4a0 0xc82000f620 0xc82000f800 0xc82000f9c0 0xc82000fb00 0xc82000fc00 0xc82000fdc0 0xc82000fee0 0xc820c06280 0xc820c06600 0xc820c06680 0xc820c06700 0xc820c06780 0xc820c06800 0xc820c06880 0xc820c06900 0xc820c06980 0xc820c06a00 0xc820c06a80 0xc820c06b00 0xc820c06b80 0xc820c06c20 0xc820c06ce0 0xc820c06d60 0xc820c06e00 0xc820c06e80 0xc820c06f00 0xc820c06f80 0xc820c07000 0xc820c07080 0xc820c07100 0xc820c07180 0xc820c07200 0xc820c07280 0xc820c07300 0xc820c07380 0xc820c07400 0xc820c07480 0xc820c07520 0xc820c075e0 0xc820c07660 0xc820c076e0 0xc820c07760 0xc820c077e0 0xc820c07860 0xc820c078e0 0xc820c07960 0xc820c079e0 0xc820c07a60 0xc820c07ae0 0xc820c07b60 0xc820c07be0 0xc820c07c60 0xc820c07ce0 0xc820c07d60 0xc820c07e00 0xc820c07ec0 0xc820c07f40 0xc820c07fc0 0xc820a54040 0xc820a540c0 0xc820a54140 0xc820a541c0 0xc820a54240 0xc820a542c0 0xc820a54340 0xc820a543c0 0xc820a54440 0xc820a544c0 0xc820a54540 0xc820a545c0 0xc820a54640 0xc820a546c0 0xc820a54740 0xc820a547c0 0xc820a54840 0xc820a548c0 0xc820a54940 0xc820a549c0 0xc820a54a40 0xc820a54ac0 0xc820a54b40 0xc820a54bc0 0xc820a54c40 0xc820a54cc0 0xc820a54d40 0xc820a54dc0 0xc820a54e40 0xc820a54ee0 0xc820a54f60 0xc820a54fe0 0xc820a55060 0xc820a550e0 0xc820a55160 0xc820a551e0 0xc820a55260 0xc820a552e0 0xc820a55360 0xc820a553e0 0xc820a55460 0xc820a554e0 0xc820a55560 0xc820a555e0 0xc820a55660 0xc820a556e0 0xc820a55760 0xc820a557e0 0xc820a55860 0xc820a558e0 0xc820a55960 0xc820a559e0 0xc820a55a60 0xc820a55ae0 0xc820a55b60 0xc820a55be0 0xc820a55c60 0xc820a55ce0 0xc820a55d60 0xc820a55de0 0xc820a55e60 0xc820a55f00 0xc820a55fc0 0xc820784040 0xc8207840c0 0xc820784140 0xc8207841e0 0xc8207842a0 0xc820784320 0xc8207843a0 0xc820784420 0xc8207844a0 0xc820784520 0xc8207845a0 0xc820784620 0xc8207846a0 0xc820784720 0xc8207847a0 0xc820784820 0xc8207848a0 0xc820784920 0xc8207849c0 0xc820784a80 0xc820784b20 0xc820784be0 0xc820784c60 0xc820784d00 0xc820784dc0 0xc820784e40 0xc820784ec0 0xc820784f40 0xc820784fc0 0xc820785040 0xc8207850c0 0xc820785140 0xc8207851c0 0xc820785240 0xc8207852c0 0xc820785340 0xc8207853c0 0xc820785440 0xc8207854e0 0xc8207855a0 0xc820785620 0xc8207856c0 0xc820785780 0xc820785800 0xc820785880 0xc820785900 0xc820785980 0xc820785a00 0xc820785a80 0xc820785b00 0xc820785b80 0xc820785c00 0xc820785c80 0xc820785d20 0xc820785de0 0xc820785e60 0xc820785ee0 0xc820785f80 0xc8208c6040 0xc8208c60c0 0xc8208c6140 0xc8208c61e0 0xc8208c62a0 0xc8208c6320 0xc8208c63c0 0xc8208c6480 0xc8208c6500 0xc8208c6580 0xc8208c6600 0xc8208c6680 0xc8208c6700 0xc8208c67a0 0xc8208c6880 0xc8208c6960 0xc8208c6a20 0xc8208c6aa0 0xc8208c6b20 0xc8208c6ba0 0xc8208c6c20 0xc8208c6ca0 0xc8208c6d20 0xc8208c6da0 0xc8208c6e20 0xc8208c6ea0 0xc8208c6f40 0xc8208c7000 0xc8208c7080 0xc8208c7100 0xc8208c7180 0xc8208c7200 0xc8208c7280 0xc8208c7300 0xc8208c7380 0xc8208c7400 0xc8208c74a0 0xc8208c7520 0xc8208c75c0 0xc8208c76a0 0xc8208c7780 0xc8208c7840 0xc8208c78e0 0xc8208c79c0 0xc8208c7a80]} +&{CurrencySymbolFormat QLocale::CurrencySymbolFormat commendable public [0xc8208c7c80 0xc8208c7d00 0xc8208c7da0]} +&{FormatType QLocale::FormatType commendable public [0xc8208c7fa0 0xc820ae6020 0xc820ae60a0]} +&{Language QLocale::Language commendable public [0xc820ae6260 0xc820ae62e0 0xc820ae6360 0xc820ae63e0 0xc820ae6480 0xc820ae6500 0xc820ae6580 0xc820ae6600 0xc820ae66a0 0xc820ae6720 0xc820ae67a0 0xc820ae6820 0xc820ae68a0 0xc820ae6920 0xc820ae69a0 0xc820ae6a20 0xc820ae6ac0 0xc820ae6b40 0xc820ae6bc0 0xc820ae6c40 0xc820ae6cc0 0xc820ae6d40 0xc820ae6dc0 0xc820ae6e40 0xc820ae6ec0 0xc820ae6f40 0xc820ae6fc0 0xc820ae7040 0xc820ae70c0 0xc820ae7140 0xc820ae71c0 0xc820ae7240 0xc820ae72e0 0xc820ae7360 0xc820ae73e0 0xc820ae7460 0xc820ae74e0 0xc820ae7560 0xc820ae75e0 0xc820ae7660 0xc820ae76e0 0xc820ae7760 0xc820ae77e0 0xc820ae7860 0xc820ae78e0 0xc820ae7960 0xc820ae79e0 0xc820ae7a60 0xc820ae7ae0 0xc820ae7b60 0xc820ae7be0 0xc820ae7c60 0xc820ae7ce0 0xc820ae7d60 0xc820ae7de0 0xc820ae7e60 0xc820ae7ee0 0xc820ae7f60 0xc820ae7fe0 0xc820aea060 0xc820aea0e0 0xc820aea160 0xc820aea1e0 0xc820aea260 0xc820aea300 0xc820aea380 0xc820aea400 0xc820aea480 0xc820aea500 0xc820aea580 0xc820aea600 0xc820aea680 0xc820aea700 0xc820aea780 0xc820aea800 0xc820aea880 0xc820aea900 0xc820aea980 0xc820aeaa00 0xc820aeaa80 0xc820aeab00 0xc820aeab80 0xc820aeac00 0xc820aeac80 0xc820aead00 0xc820aead80 0xc820aeae00 0xc820aeae80 0xc820aeaf00 0xc820aeaf80 0xc820aeb000 0xc820aeb080 0xc820aeb100 0xc820aeb180 0xc820aeb200 0xc820aeb280 0xc820aeb300 0xc820aeb380 0xc820aeb400 0xc820aeb480 0xc820aeb500 0xc820aeb580 0xc820aeb600 0xc820aeb680 0xc820aeb700 0xc820aeb780 0xc820aeb800 0xc820aeb880 0xc820aeb900 0xc820aeb980 0xc820aeba00 0xc820aeba80 0xc820aebb00 0xc820aebb80 0xc820aebc00 0xc820aebc80 0xc820aebd00 0xc820aebd80 0xc820aebe00 0xc820aebe80 0xc820aebf00 0xc820aebf80 0xc820b06000 0xc820b06080 0xc820b06100 0xc820b06180 0xc820b06200 0xc820b06280 0xc820b06320 0xc820b063a0 0xc820b06420 0xc820b064a0 0xc820b06520 0xc820b065a0 0xc820b06620 0xc820b066a0 0xc820b06720 0xc820b067a0 0xc820b06820 0xc820b068a0 0xc820b06920 0xc820b069a0 0xc820b06a20 0xc820b06aa0 0xc820b06b20 0xc820b06ba0 0xc820b06c20 0xc820b06ca0 0xc820b06d20 0xc820b06da0 0xc820b06e20 0xc820b06ea0 0xc820b06f20 0xc820b06fa0 0xc820b07020 0xc820b070a0 0xc820b07120 0xc820b071a0 0xc820b07220 0xc820b072a0 0xc820b07320 0xc820b073a0 0xc820b07420 0xc820b074a0 0xc820b07520 0xc820b075a0 0xc820b07620 0xc820b076a0 0xc820b07720 0xc820b077a0 0xc820b07820 0xc820b078a0 0xc820b07920 0xc820b079a0 0xc820b07a20 0xc820b07aa0 0xc820b07b20 0xc820b07ba0 0xc820b07c20 0xc820b07ca0 0xc820b07d20 0xc820b07da0 0xc820b07e20 0xc820b07ea0 0xc820b07f20 0xc820b07fa0 0xc820b0e020 0xc820b0e0a0 0xc820b0e120 0xc820b0e1a0 0xc820b0e220 0xc820b0e2a0 0xc820b0e320 0xc820b0e3a0 0xc820b0e420 0xc820b0e4a0 0xc820b0e520 0xc820b0e5a0 0xc820b0e620 0xc820b0e6a0 0xc820b0e720 0xc820b0e7a0 0xc820b0e820 0xc820b0e8a0 0xc820b0e920 0xc820b0e9a0 0xc820b0ea20 0xc820b0eaa0 0xc820b0eb20 0xc820b0eba0 0xc820b0ec20 0xc820b0eca0 0xc820b0ed40 0xc820b0ee00 0xc820b0ee80 0xc820b0ef00 0xc820b0ef80 0xc820b0f000 0xc820b0f080 0xc820b0f100 0xc820b0f180 0xc820b0f200 0xc820b0f280 0xc820b0f300 0xc820b0f380 0xc820b0f400 0xc820b0f480 0xc820b0f500 0xc820b0f580 0xc820b0f600 0xc820b0f680 0xc820b0f700 0xc820b0f780 0xc820b0f800 0xc820b0f880 0xc820b0f900 0xc820b0f980 0xc820b0fa00 0xc820b0fa80 0xc820b0fb00 0xc820b0fb80 0xc820b0fc00 0xc820b0fc80 0xc820b0fd00 0xc820b0fd80 0xc820b0fe00 0xc820b0fe80 0xc820b0ff00 0xc820b0ff80 0xc820c0c000 0xc820c0c080 0xc820c0c100 0xc820c0c180 0xc820c0c200 0xc820c0c280 0xc820c0c300 0xc820c0c3a0 0xc820c0c420 0xc820c0c4a0 0xc820c0c520 0xc820c0c5a0 0xc820c0c620 0xc820c0c6a0 0xc820c0c720 0xc820c0c7a0 0xc820c0c820 0xc820c0c8a0 0xc820c0c920 0xc820c0c9a0 0xc820c0ca20 0xc820c0caa0 0xc820c0cb20 0xc820c0cba0 0xc820c0cc20 0xc820c0cca0 0xc820c0cd20 0xc820c0cda0 0xc820c0ce20 0xc820c0cea0 0xc820c0cf20 0xc820c0cfa0 0xc820c0d020 0xc820c0d0a0 0xc820c0d120 0xc820c0d1a0 0xc820c0d220 0xc820c0d2a0 0xc820c0d320 0xc820c0d3a0 0xc820c0d420 0xc820c0d4a0 0xc820c0d520 0xc820c0d5a0 0xc820c0d620 0xc820c0d6a0 0xc820c0d720 0xc820c0d7a0 0xc820c0d820 0xc820c0d8a0 0xc820c0d920 0xc820c0d9a0 0xc820c0da20 0xc820c0daa0 0xc820c0db20 0xc820c0dba0 0xc820c0dc20 0xc820c0dca0 0xc820c0dd20 0xc820c0dda0 0xc820c0de20 0xc820c0dea0 0xc820c0df20 0xc820c0dfa0 0xc820c16020 0xc820c160c0 0xc820c16180 0xc820c16200 0xc820c16280 0xc820c16300 0xc820c16380 0xc820c16400 0xc820c16480 0xc820c16500 0xc820c16580 0xc820c16600 0xc820c16680 0xc820c16700 0xc820c16780 0xc820c16800 0xc820c168a0 0xc820c16960 0xc820c16a00 0xc820c16ac0 0xc820c16b40 0xc820c16bc0 0xc820c16c40 0xc820c16cc0 0xc820c16d40 0xc820c16dc0 0xc820c16e40 0xc820c16ec0 0xc820c16f40 0xc820c16fc0 0xc820c17040 0xc820c170c0 0xc820c17140 0xc820c171c0 0xc820c17240 0xc820c172c0 0xc820c17340 0xc820c173c0 0xc820c17440 0xc820c174c0 0xc820c17540 0xc820c175c0]} +&{MeasurementSystem QLocale::MeasurementSystem commendable public [0xc820c177e0 0xc820c17860 0xc820c178e0 0xc820c17960]} +&{NumberOption QLocale::NumberOption commendable public QLocale::NumberOptions [0xc820c17ba0 0xc820c17c80]} +&{QuotationStyle QLocale::QuotationStyle commendable public [0xc820c17ea0 0xc820c17f80]} +&{Script QLocale::Script commendable public [0xc820c24120 0xc820c241a0 0xc820c24220 0xc820c242a0 0xc820c24340 0xc820c243e0 0xc820c244c0 0xc820c24580 0xc820c24620 0xc820c246a0 0xc820c24720 0xc820c247a0 0xc820c24820 0xc820c248a0 0xc820c24920 0xc820c249a0 0xc820c24a40 0xc820c24ac0 0xc820c24b40 0xc820c24bc0 0xc820c24c40 0xc820c24cc0 0xc820c24d40 0xc820c24dc0 0xc820c24e40 0xc820c24ec0 0xc820c24f40 0xc820c24fc0 0xc820c25040 0xc820c250c0 0xc820c25140 0xc820c251c0 0xc820c25260 0xc820c252e0 0xc820c25360 0xc820c253e0 0xc820c25460 0xc820c254e0 0xc820c25560 0xc820c255e0 0xc820c25660 0xc820c256e0 0xc820c25760 0xc820c257e0 0xc820c25880 0xc820c25940 0xc820c259c0 0xc820c25a40 0xc820c25ac0 0xc820c25b40 0xc820c25be0 0xc820c25ca0 0xc820c25d20 0xc820c25da0 0xc820c25e20 0xc820c25ea0 0xc820c25f20 0xc820c25fc0 0xc820c2c0a0 0xc820c2c180 0xc820c2c240 0xc820c2c2c0 0xc820c2c340 0xc820c2c3c0 0xc820c2c460 0xc820c2c4e0 0xc820c2c560 0xc820c2c5e0 0xc820c2c660 0xc820c2c6e0 0xc820c2c760 0xc820c2c7e0 0xc820c2c880 0xc820c2c940 0xc820c2c9e0 0xc820c2caa0 0xc820c2cb20 0xc820c2cba0 0xc820c2cc20 0xc820c2cca0 0xc820c2cd20 0xc820c2cdc0 0xc820c2ce80 0xc820c2cf00 0xc820c2cf80 0xc820c2d000 0xc820c2d0a0 0xc820c2d160 0xc820c2d1e0 0xc820c2d260 0xc820c2d2e0 0xc820c2d360 0xc820c2d3e0 0xc820c2d480 0xc820c2d540 0xc820c2d5c0 0xc820c2d660 0xc820c2d720 0xc820c2d7a0 0xc820c2d820 0xc820c2d8a0 0xc820c2d920 0xc820c2d9a0 0xc820c2da20 0xc820c2daa0 0xc820c2db40 0xc820c2dc00 0xc820c2dc80 0xc820c2dd00 0xc820c2dd80 0xc820c2de20 0xc820c2dee0 0xc820c2df60 0xc820c2dfe0 0xc820c34060 0xc820c34100 0xc820c341c0 0xc820c34240 0xc820c342e0 0xc820c343a0 0xc820c34420 0xc820c344a0 0xc820c34520 0xc820c345c0 0xc820c34680 0xc820c34700 0xc820c34780 0xc820c34820 0xc820c34940 0xc820c34a80 0xc820c34ba0]} diff --git a/internal/binding/dump/QtCore/QLockFile.txt b/internal/binding/dump/QtCore/QLockFile.txt new file mode 100755 index 00000000..d74c0e74 --- /dev/null +++ b/internal/binding/dump/QtCore/QLockFile.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QLockFile QLockFile::QLockFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qlockfile.h non constructor false false [0xc8203c7f60] } +&{error QLockFile::error commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qlockfile.h non plain false false LockError [] } +&{getLockInfo QLockFile::getLockInfo commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qlockfile.h non plain false false bool [0xc8203ae240 0xc8203ae2c0 0xc8203ae3a0] } +&{isLocked QLockFile::isLocked commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qlockfile.h non plain false false bool [] } +&{lock QLockFile::lock commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qlockfile.h non plain false false bool [] } +&{removeStaleLockFile QLockFile::removeStaleLockFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qlockfile.h non plain false false bool [] } +&{setStaleLockTime QLockFile::setStaleLockTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qlockfile.h non plain false false void [0xc8203ae960] } +&{staleLockTime QLockFile::staleLockTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qlockfile.h non plain false false int [] } +&{tryLock QLockFile::tryLock commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qlockfile.h non plain false false bool [0xc8203aed00] } +&{~QLockFile QLockFile::~QLockFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qlockfile.h non destructor false false [] } +&{unlock QLockFile::unlock commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qlockfile_win.cpp non plain false false void [] } +######################################## ENUMS ######################################## +&{LockError QLockFile::LockError commendable public [0xc8203c7aa0 0xc8203c7b60 0xc8203c7c00 0xc8203c7ca0]} diff --git a/internal/binding/dump/QtCore/QLoggingCategory.txt b/internal/binding/dump/QtCore/QLoggingCategory.txt new file mode 100755 index 00000000..333cccfd --- /dev/null +++ b/internal/binding/dump/QtCore/QLoggingCategory.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{QLoggingCategory QLoggingCategory::QLoggingCategory commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qloggingcategory.h non constructor false false [0xc8203850a0] } +&{QLoggingCategory QLoggingCategory::QLoggingCategory commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qloggingcategory.h non constructor false true 2 [0xc820385240 0xc8203852c0] } +&{categoryName QLoggingCategory::categoryName commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qloggingcategory.h non plain false false const char * [] } +&{defaultCategory QLoggingCategory::defaultCategory commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qloggingcategory.h non plain true false QLoggingCategory * [] } +&{installFilter QLoggingCategory::installFilter commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qloggingcategory.h non plain true false CategoryFilter [0xc820385780] } +&{isCriticalEnabled QLoggingCategory::isCriticalEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qloggingcategory.h non plain false false bool [] } +&{isDebugEnabled QLoggingCategory::isDebugEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qloggingcategory.h non plain false false bool [] } +&{isEnabled QLoggingCategory::isEnabled commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qloggingcategory.h non plain false false bool [0xc820385c40] } +&{isInfoEnabled QLoggingCategory::isInfoEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qloggingcategory.h non plain false false bool [] } +&{isWarningEnabled QLoggingCategory::isWarningEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qloggingcategory.h non plain false false bool [] } +&{operator() QLoggingCategory::operator() commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qloggingcategory.h non plain false false QLoggingCategory & [] } +&{operator() QLoggingCategory::operator() commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qloggingcategory.h non plain false true 2 const QLoggingCategory & [] } +&{setEnabled QLoggingCategory::setEnabled commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qloggingcategory.h non plain false false void [0xc82036c3a0 0xc82036c460] } +&{setFilterRules QLoggingCategory::setFilterRules commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qloggingcategory.h non plain true false void [0xc82036c660] } +&{~QLoggingCategory QLoggingCategory::~QLoggingCategory commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qloggingcategory.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QMap.txt b/internal/binding/dump/QtCore/QMap.txt new file mode 100755 index 00000000..25cf12f3 --- /dev/null +++ b/internal/binding/dump/QtCore/QMap.txt @@ -0,0 +1,60 @@ +######################################## FUNCTIONS ######################################## +&{QMap QMap::QMap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non constructor false false [] } +&{QMap QMap::QMap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non constructor false true 4 [0xc820cd45e0] } +&{QMap QMap::QMap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non constructor false true 3 [0xc820cd4760] } +&{QMap QMap::QMap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non constructor false true 5 [0xc820cd4900] } +&{QMap QMap::QMap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non constructor false true 2 [0xc820cd4aa0] } +&{begin QMap::begin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false iterator [] } +&{begin QMap::begin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false true 2 const_iterator [] } +&{cbegin QMap::cbegin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false const_iterator [] } +&{cend QMap::cend commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false const_iterator [] } +&{clear QMap::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false void [] } +&{constBegin QMap::constBegin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false const_iterator [] } +&{constEnd QMap::constEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false const_iterator [] } +&{constFind QMap::constFind commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false const_iterator [0xc820cd4fa0] } +&{contains QMap::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false bool [0xc820cd5100] } +&{count QMap::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false true 2 int [] } +&{count QMap::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false int [0xc820cd5300] } +&{empty QMap::empty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false bool [] } +&{end QMap::end commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false iterator [] } +&{end QMap::end commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false true 2 const_iterator [] } +&{equal_range QMap::equal_range commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false QPair [0xc820cd5800] } +&{erase QMap::erase commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false iterator [0xc820cd5960] } +&{find QMap::find commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false iterator [0xc820cd5ac0] } +&{find QMap::find commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false true 2 const_iterator [0xc820cd5c00] } +&{first QMap::first commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false T & [] } +&{first QMap::first commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false true 2 const T & [] } +&{firstKey QMap::firstKey commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false const Key & [] } +&{insert QMap::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false iterator [0xc820cd5ee0 0xc820cd5f60] } +&{insert QMap::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false true 2 iterator [0xc820cf40c0 0xc820cf4140 0xc820cf41c0] } +&{insertMulti QMap::insertMulti commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false iterator [0xc820cf4380 0xc820cf4400] } +&{insertMulti QMap::insertMulti commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false true 2 iterator [0xc820cf45c0 0xc820cf4640 0xc820cf46c0] } +&{isEmpty QMap::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false bool [] } +&{key QMap::key commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false const Key [0xc820cf4f80 0xc820cf5000] } +&{keys QMap::keys commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false QList [] } +&{keys QMap::keys commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false true 2 QList [0xc820cf51c0] } +&{last QMap::last commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false T & [] } +&{last QMap::last commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false true 2 const T & [] } +&{lastKey QMap::lastKey commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false const Key & [] } +&{lowerBound QMap::lowerBound commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false iterator [0xc820cf54a0] } +&{lowerBound QMap::lowerBound commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false true 2 const_iterator [0xc820cf5600] } +&{operator!= QMap::operator!= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false bool [0xc820cf5780] } +&{operator= QMap::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false true 2 QMap & [0xc820cf5920] } +&{operator= QMap::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false QMap & [0xc820cf5aa0] } +&{operator== QMap::operator== commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false bool [0xc820cf5c60] } +&{operator[] QMap::operator[] commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false T & [0xc820cf5e20] } +&{operator[] QMap::operator[] commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false true 2 const T [0xc820cf5f80] } +&{remove QMap::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false int [0xc820d0a0e0] } +&{size QMap::size commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false int [] } +&{swap QMap::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false void [0xc820d0a2a0] } +&{take QMap::take commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false T [0xc820d0a400] } +&{toStdMap QMap::toStdMap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false std::map [] } +&{uniqueKeys QMap::uniqueKeys commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false QList [] } +&{unite QMap::unite commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false QMap & [0xc820d0a680] } +&{upperBound QMap::upperBound commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false iterator [0xc820d0a820] } +&{upperBound QMap::upperBound commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false true 2 const_iterator [0xc820d0a980] } +&{value QMap::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false const T [0xc820d0aac0 0xc820d0ab40] } +&{values QMap::values commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false QList [] } +&{values QMap::values commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false true 2 QList [0xc820d0ad20] } +&{~QMap QMap::~QMap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QMapIterator.txt b/internal/binding/dump/QtCore/QMapIterator.txt new file mode 100755 index 00000000..13431d1a --- /dev/null +++ b/internal/binding/dump/QtCore/QMapIterator.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{QMapIterator QMapIterator::QMapIterator commendable public qmap.h non constructor false false [0xc82029a6a0] } +&{findNext QMapIterator::findNext commendable public qmap.h non plain false false bool [0xc82029abe0] } +&{findPrevious QMapIterator::findPrevious commendable public qmap.h non plain false false bool [0xc82029b140] } +&{hasNext QMapIterator::hasNext commendable public qmap.h non plain false false bool [] } +&{hasPrevious QMapIterator::hasPrevious commendable public qmap.h non plain false false bool [] } +&{key QMapIterator::key commendable public qmap.h non plain false false const Key & [] } +&{next QMapIterator::next commendable public qmap.h non plain false false Item [] } +&{operator= QMapIterator::operator= commendable public qmap.h non plain false false QMapIterator & [0xc82029bfe0] } +&{peekNext QMapIterator::peekNext commendable public qmap.h non plain false false Item [] } +&{peekPrevious QMapIterator::peekPrevious commendable public qmap.h non plain false false Item [] } +&{previous QMapIterator::previous commendable public qmap.h non plain false false Item [] } +&{toBack QMapIterator::toBack commendable public qmap.h non plain false false void [] } +&{toFront QMapIterator::toFront commendable public qmap.h non plain false false void [] } +&{value QMapIterator::value commendable public qmap.h non plain false false const T & [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QMargins.txt b/internal/binding/dump/QtCore/QMargins.txt new file mode 100755 index 00000000..b73d180d --- /dev/null +++ b/internal/binding/dump/QtCore/QMargins.txt @@ -0,0 +1,21 @@ +######################################## FUNCTIONS ######################################## +&{QMargins QMargins::QMargins commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non constructor false false [] } +&{QMargins QMargins::QMargins commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non constructor false true 2 [0xc820d25c60 0xc820d25ce0 0xc820d25d60 0xc820d25de0] } +&{bottom QMargins::bottom commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false false int [] } +&{isNull QMargins::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false false bool [] } +&{left QMargins::left commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false false int [] } +&{operator*= QMargins::operator*= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false false QMargins & [0xc820d36180] } +&{operator*= QMargins::operator*= commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false true 2 QMargins & [0xc820d36340] } +&{operator+= QMargins::operator+= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false false QMargins & [0xc820d36500] } +&{operator+= QMargins::operator+= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false true 2 QMargins & [0xc820d366e0] } +&{operator-= QMargins::operator-= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false false QMargins & [0xc820d368a0] } +&{operator-= QMargins::operator-= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false true 2 QMargins & [0xc820d36a60] } +&{operator/= QMargins::operator/= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false false QMargins & [0xc820d36c20] } +&{operator/= QMargins::operator/= commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false true 2 QMargins & [0xc820d36de0] } +&{right QMargins::right commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false false int [] } +&{setBottom QMargins::setBottom commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false false void [0xc820d37060] } +&{setLeft QMargins::setLeft commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false false void [0xc820d37240] } +&{setRight QMargins::setRight commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false false void [0xc820d37440] } +&{setTop QMargins::setTop commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false false void [0xc820d375c0] } +&{top QMargins::top commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false false int [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QMarginsF.txt b/internal/binding/dump/QtCore/QMarginsF.txt new file mode 100755 index 00000000..4cf852df --- /dev/null +++ b/internal/binding/dump/QtCore/QMarginsF.txt @@ -0,0 +1,21 @@ +######################################## FUNCTIONS ######################################## +&{QMarginsF QMarginsF::QMarginsF commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non constructor false false [] } +&{QMarginsF QMarginsF::QMarginsF commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non constructor false true 3 [0xc820d379a0] } +&{QMarginsF QMarginsF::QMarginsF commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non constructor false true 2 [0xc820d37b60 0xc820d37be0 0xc820d37c60 0xc820d37ce0] } +&{bottom QMarginsF::bottom commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false false qreal [] } +&{isNull QMarginsF::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false false bool [] } +&{left QMarginsF::left commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false false qreal [] } +&{operator*= QMarginsF::operator*= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false false QMarginsF & [0xc820d50160] } +&{operator+= QMarginsF::operator+= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false false QMarginsF & [0xc820d50340] } +&{operator+= QMarginsF::operator+= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false true 2 QMarginsF & [0xc820d50560] } +&{operator-= QMarginsF::operator-= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false false QMarginsF & [0xc820d50740] } +&{operator-= QMarginsF::operator-= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false true 2 QMarginsF & [0xc820d50940] } +&{operator/= QMarginsF::operator/= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false false QMarginsF & [0xc820d50b00] } +&{right QMarginsF::right commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false false qreal [] } +&{setBottom QMarginsF::setBottom commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false false void [0xc820d50d80] } +&{setLeft QMarginsF::setLeft commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false false void [0xc820d50f60] } +&{setRight QMarginsF::setRight commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false false void [0xc820d51140] } +&{setTop QMarginsF::setTop commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false false void [0xc820d51340] } +&{toMargins QMarginsF::toMargins commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false false QMargins [] } +&{top QMarginsF::top commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmargins.h non plain false false qreal [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QMessageAuthenticationCode.txt b/internal/binding/dump/QtCore/QMessageAuthenticationCode.txt new file mode 100755 index 00000000..88840586 --- /dev/null +++ b/internal/binding/dump/QtCore/QMessageAuthenticationCode.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{QMessageAuthenticationCode QMessageAuthenticationCode::QMessageAuthenticationCode commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmessageauthenticationcode.h non constructor false false [0xc820d63da0 0xc820d63e80] } +&{addData QMessageAuthenticationCode::addData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmessageauthenticationcode.h non plain false true 2 bool [0xc820d82040] } +&{addData QMessageAuthenticationCode::addData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmessageauthenticationcode.h non plain false true 3 void [0xc820d821c0] } +&{addData QMessageAuthenticationCode::addData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmessageauthenticationcode.h non plain false false void [0xc820d82360 0xc820d823e0] } +&{hash QMessageAuthenticationCode::hash commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmessageauthenticationcode.h non plain true false QByteArray [0xc820d825e0 0xc820d826c0 0xc820d827a0] } +&{reset QMessageAuthenticationCode::reset commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmessageauthenticationcode.h non plain false false void [] } +&{result QMessageAuthenticationCode::result commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmessageauthenticationcode.h non plain false false QByteArray [] } +&{setKey QMessageAuthenticationCode::setKey commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmessageauthenticationcode.h non plain false false void [0xc820d82a80] } +&{~QMessageAuthenticationCode QMessageAuthenticationCode::~QMessageAuthenticationCode commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmessageauthenticationcode.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QMessageLogContext.txt b/internal/binding/dump/QtCore/QMessageLogContext.txt new file mode 100755 index 00000000..72799661 --- /dev/null +++ b/internal/binding/dump/QtCore/QMessageLogContext.txt @@ -0,0 +1,2 @@ +######################################## FUNCTIONS ######################################## +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QMessageLogger.txt b/internal/binding/dump/QtCore/QMessageLogger.txt new file mode 100755 index 00000000..01c9fa44 --- /dev/null +++ b/internal/binding/dump/QtCore/QMessageLogger.txt @@ -0,0 +1,29 @@ +######################################## FUNCTIONS ######################################## +&{QMessageLogger QMessageLogger::QMessageLogger commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlogging.h non constructor false false [] } +&{QMessageLogger QMessageLogger::QMessageLogger commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlogging.h non constructor false true 2 [0xc8200e1a40 0xc8200e1ac0 0xc8200e1b60] } +&{QMessageLogger QMessageLogger::QMessageLogger commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlogging.h non constructor false true 3 [0xc8200e1da0 0xc8200e1e20 0xc8200e1ea0 0xc8200e1f80] } +&{critical QMessageLogger::critical commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlogging.h non plain false true 4 QDebug [] } +&{critical QMessageLogger::critical commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlogging.h non plain false true 6 QDebug [0xc8200d2320] } +&{critical QMessageLogger::critical commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlogging.h non plain false true 5 QDebug [0xc8200d25c0] } +&{critical QMessageLogger::critical commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlogging.h non plain false true 3 void [0xc8200d27e0 0xc8200d2880 0xc8200d2940] } +&{critical QMessageLogger::critical commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlogging.h non plain false true 2 void [0xc8200d2b80 0xc8200d2cc0 0xc8200d2d60] } +&{critical QMessageLogger::critical commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlogging.h non plain false false void [0xc8200d2f80 0xc8200d3000] } +&{debug QMessageLogger::debug commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlogging.h non plain false true 4 QDebug [] } +&{debug QMessageLogger::debug commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlogging.h non plain false true 6 QDebug [0xc8200d32c0] } +&{debug QMessageLogger::debug commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlogging.h non plain false true 5 QDebug [0xc8200d34a0] } +&{debug QMessageLogger::debug commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlogging.h non plain false true 3 void [0xc8200d36a0 0xc8200d3720 0xc8200d37a0] } +&{debug QMessageLogger::debug commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlogging.h non plain false true 2 void [0xc8200d3980 0xc8200d3a60 0xc8200d3b40] } +&{debug QMessageLogger::debug commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlogging.h non plain false false void [0xc8200d3d80 0xc8200d3e20] } +&{fatal QMessageLogger::fatal commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlogging.h non plain false false void [0xc8200a4060 0xc8200a40e0] } +&{info QMessageLogger::info commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlogging.h non plain false true 3 QDebug [] } +&{info QMessageLogger::info commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlogging.h non plain false true 5 QDebug [0xc8200a4480] } +&{info QMessageLogger::info commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlogging.h non plain false true 4 QDebug [0xc8200a46c0] } +&{info QMessageLogger::info commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlogging.h non plain false true 2 void [0xc8200a4960 0xc8200a49e0 0xc8200a4ac0] } +&{info QMessageLogger::info commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlogging.h non plain false false void [0xc8200a4d20 0xc8200a4e20 0xc8200a4ea0] } +&{warning QMessageLogger::warning commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlogging.h non plain false true 4 QDebug [] } +&{warning QMessageLogger::warning commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlogging.h non plain false true 6 QDebug [0xc8200a5600] } +&{warning QMessageLogger::warning commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlogging.h non plain false true 5 QDebug [0xc8200a5860] } +&{warning QMessageLogger::warning commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlogging.h non plain false true 3 void [0xc8200a5ac0 0xc8200a5b60 0xc8200a5be0] } +&{warning QMessageLogger::warning commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlogging.h non plain false true 2 void [0xc8200a5e20 0xc8200a5f00 0xc8200a5f80] } +&{warning QMessageLogger::warning commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qlogging.h non plain false false void [0xc8200702e0 0xc820070360] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QMetaClassInfo.txt b/internal/binding/dump/QtCore/QMetaClassInfo.txt new file mode 100755 index 00000000..ef678d42 --- /dev/null +++ b/internal/binding/dump/QtCore/QMetaClassInfo.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{name QMetaClassInfo::name commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false const char * [] } +&{value QMetaClassInfo::value commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false const char * [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QMetaEnum.txt b/internal/binding/dump/QtCore/QMetaEnum.txt new file mode 100755 index 00000000..4d276363 --- /dev/null +++ b/internal/binding/dump/QtCore/QMetaEnum.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{fromType QMetaEnum::fromType commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain true false QMetaEnum [] } +&{isFlag QMetaEnum::isFlag commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false bool [] } +&{isValid QMetaEnum::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false bool [] } +&{key QMetaEnum::key commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false const char * [0xc82061df40] } +&{keyCount QMetaEnum::keyCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false int [] } +&{keyToValue QMetaEnum::keyToValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false int [0xc8206062c0 0xc820606340] } +&{keysToValue QMetaEnum::keysToValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false int [0xc8206065a0 0xc820606660] } +&{name QMetaEnum::name commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false const char * [] } +&{scope QMetaEnum::scope commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false const char * [] } +&{value QMetaEnum::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false int [0xc8206069e0] } +&{valueToKey QMetaEnum::valueToKey commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false const char * [0xc820606c00] } +&{valueToKeys QMetaEnum::valueToKeys commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false QByteArray [0xc820606e00] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QMetaMethod.txt b/internal/binding/dump/QtCore/QMetaMethod.txt new file mode 100755 index 00000000..9363c975 --- /dev/null +++ b/internal/binding/dump/QtCore/QMetaMethod.txt @@ -0,0 +1,25 @@ +######################################## FUNCTIONS ######################################## +&{access QMetaMethod::access commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false Access [] } +&{fromSignal QMetaMethod::fromSignal commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain true false QMetaMethod [0xc8205f0640] } +&{invoke QMetaMethod::invoke commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false true 4 bool [0xc8205f0ba0 0xc8205f0c80 0xc8205f0d20 0xc8205f0de0 0xc8205f0ea0 0xc8205f0f40 0xc8205f1000 0xc8205f10c0 0xc8205f11c0 0xc8205f1280 0xc8205f1360] } +&{invoke QMetaMethod::invoke commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false true 2 bool [0xc8205f15a0 0xc8205f1660 0xc8205f1760 0xc8205f1840 0xc8205f1920 0xc8205f1a00 0xc8205f1aa0 0xc8205f1ba0 0xc8205f1c60 0xc8205f1d20 0xc8205f1e20 0xc8205f1ec0] } +&{invoke QMetaMethod::invoke commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false true 3 bool [0xc8205e0120 0xc8205e0200 0xc8205e0300 0xc8205e03a0 0xc8205e0460 0xc8205e0500 0xc8205e0600 0xc8205e06a0 0xc8205e07c0 0xc8205e0860 0xc8205e0960 0xc8205e0a00] } +&{invoke QMetaMethod::invoke commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false bool [0xc8205e0c40 0xc8205e0d40 0xc8205e0e40 0xc8205e0f40 0xc8205e1060 0xc8205e1140 0xc8205e11e0 0xc8205e12a0 0xc8205e1380 0xc8205e1460 0xc8205e1500 0xc8205e15c0 0xc8205e1680] } +&{invokeOnGadget QMetaMethod::invokeOnGadget commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false true 2 bool [0xc8205e18a0 0xc8205e1960 0xc8205e1a60 0xc8205e1b00 0xc8205e1c20 0xc8205e1ce0 0xc8205e1da0 0xc8205e1e80 0xc8205e1f60 0xc8205c6040 0xc8205c60e0] } +&{invokeOnGadget QMetaMethod::invokeOnGadget commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false bool [0xc8205c62a0 0xc8205c6340 0xc8205c6420 0xc8205c64c0 0xc8205c6580 0xc8205c6620 0xc8205c66c0 0xc8205c6760 0xc8205c6820 0xc8205c68c0 0xc8205c6960 0xc8205c6a00] } +&{isValid QMetaMethod::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false bool [] } +&{methodIndex QMetaMethod::methodIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false int [] } +&{methodSignature QMetaMethod::methodSignature commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false QByteArray [] } +&{methodType QMetaMethod::methodType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false MethodType [] } +&{name QMetaMethod::name commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false QByteArray [] } +&{parameterCount QMetaMethod::parameterCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false int [] } +&{parameterNames QMetaMethod::parameterNames commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false QList [] } +&{parameterType QMetaMethod::parameterType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false int [0xc8205c7400] } +&{parameterTypes QMetaMethod::parameterTypes commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false QList [] } +&{returnType QMetaMethod::returnType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false int [] } +&{revision QMetaMethod::revision commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false int [] } +&{tag QMetaMethod::tag commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false const char * [] } +&{typeName QMetaMethod::typeName commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false const char * [] } +######################################## ENUMS ######################################## +&{Access QMetaMethod::Access commendable public [0xc820607160 0xc820607200 0xc8206072c0]} +&{MethodType QMetaMethod::MethodType commendable public [0xc820607800 0xc8206078a0 0xc820607920 0xc8206079c0]} diff --git a/internal/binding/dump/QtCore/QMetaObject.txt b/internal/binding/dump/QtCore/QMetaObject.txt new file mode 100755 index 00000000..8b60aba8 --- /dev/null +++ b/internal/binding/dump/QtCore/QMetaObject.txt @@ -0,0 +1,36 @@ +######################################## FUNCTIONS ######################################## +&{connectSlotsByName QMetaObject::connectSlotsByName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.cpp non plain true false void [0xc820403d20] } +&{checkConnectArgs QMetaObject::checkConnectArgs commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain true true 2 bool [0xc8203dbec0 0xc8203c6020] } +&{checkConnectArgs QMetaObject::checkConnectArgs commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain true false bool [0xc8203c6320 0xc8203c63e0] } +&{classInfo QMetaObject::classInfo commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain false false QMetaClassInfo [0xc8203c66a0] } +&{classInfoCount QMetaObject::classInfoCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain false false int [] } +&{classInfoOffset QMetaObject::classInfoOffset commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain false false int [] } +&{className QMetaObject::className commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain false false const char * [] } +&{constructor QMetaObject::constructor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain false false QMetaMethod [0xc8203c6e60] } +&{constructorCount QMetaObject::constructorCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain false false int [] } +&{enumerator QMetaObject::enumerator commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain false false QMetaEnum [0xc8203c7240] } +&{enumeratorCount QMetaObject::enumeratorCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain false false int [] } +&{enumeratorOffset QMetaObject::enumeratorOffset commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain false false int [] } +&{indexOfClassInfo QMetaObject::indexOfClassInfo commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain false false int [0xc8203c77c0] } +&{indexOfConstructor QMetaObject::indexOfConstructor commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain false false int [0xc8203c7b20] } +&{indexOfEnumerator QMetaObject::indexOfEnumerator commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain false false int [0xc8203c7e20] } +&{indexOfMethod QMetaObject::indexOfMethod commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain false false int [0xc8203ae140] } +&{indexOfProperty QMetaObject::indexOfProperty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain false false int [0xc8203ae400] } +&{indexOfSignal QMetaObject::indexOfSignal commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain false false int [0xc8203ae640] } +&{indexOfSlot QMetaObject::indexOfSlot commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain false false int [0xc8203ae920] } +&{invokeMethod QMetaObject::invokeMethod commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain true true 4 bool [0xc8203aeba0 0xc8203aec60 0xc8203aed60 0xc8203aee00 0xc8203aef40 0xc8203aefe0 0xc8203af0e0 0xc8203af1c0 0xc8203af2c0 0xc8203af360 0xc8203af440 0xc8203af4e0] } +&{invokeMethod QMetaObject::invokeMethod commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain true true 2 bool [0xc8203af720 0xc8203af7a0 0xc8203af8a0 0xc8203af980 0xc8203afa60 0xc8203afb40 0xc8203afbe0 0xc8203afc80 0xc8203afd80 0xc8203afe20 0xc8203aff00 0xc8203affa0 0xc82039a0c0] } +&{invokeMethod QMetaObject::invokeMethod commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain true true 3 bool [0xc82039a3c0 0xc82039a460 0xc82039a520 0xc82039a640 0xc82039a760 0xc82039a820 0xc82039a9a0 0xc82039aa40 0xc82039abe0 0xc82039ace0 0xc82039ade0 0xc82039af00 0xc82039afe0] } +&{invokeMethod QMetaObject::invokeMethod commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain true false bool [0xc82039b240 0xc82039b2e0 0xc82039b400 0xc82039b560 0xc82039b680 0xc82039b7a0 0xc82039b840 0xc82039b940 0xc82039ba00 0xc82039bac0 0xc82039bc00 0xc82039bca0 0xc82039bda0 0xc82039be40] } +&{method QMetaObject::method commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain false false QMetaMethod [0xc820384500] } +&{methodCount QMetaObject::methodCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain false false int [] } +&{methodOffset QMetaObject::methodOffset commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain false false int [] } +&{newInstance QMetaObject::newInstance commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain false false QObject * [0xc8203849c0 0xc820384aa0 0xc820384b40 0xc820384c20 0xc820384ce0 0xc820384de0 0xc820384f00 0xc820384fa0 0xc8203850e0 0xc820385180] } +&{normalizedSignature QMetaObject::normalizedSignature commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain true false QByteArray [0xc8203854c0] } +&{normalizedType QMetaObject::normalizedType commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain true false QByteArray [0xc8203857a0] } +&{property QMetaObject::property commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain false false QMetaProperty [0xc820385a00] } +&{propertyCount QMetaObject::propertyCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain false false int [] } +&{propertyOffset QMetaObject::propertyOffset commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain false false int [] } +&{superClass QMetaObject::superClass commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain false false const QMetaObject * [] } +&{userProperty QMetaObject::userProperty commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectdefs.h non plain false false QMetaProperty [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QMetaProperty.txt b/internal/binding/dump/QtCore/QMetaProperty.txt new file mode 100755 index 00000000..7478b3c9 --- /dev/null +++ b/internal/binding/dump/QtCore/QMetaProperty.txt @@ -0,0 +1,30 @@ +######################################## FUNCTIONS ######################################## +&{enumerator QMetaProperty::enumerator commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false QMetaEnum [] } +&{hasNotifySignal QMetaProperty::hasNotifySignal commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false bool [] } +&{isConstant QMetaProperty::isConstant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false bool [] } +&{isDesignable QMetaProperty::isDesignable commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false bool [0xc82059a640] } +&{isEnumType QMetaProperty::isEnumType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false bool [] } +&{isFinal QMetaProperty::isFinal commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false bool [] } +&{isFlagType QMetaProperty::isFlagType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false bool [] } +&{isReadable QMetaProperty::isReadable commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false bool [] } +&{isResettable QMetaProperty::isResettable commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false bool [] } +&{isScriptable QMetaProperty::isScriptable commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false bool [0xc82059b100] } +&{isStored QMetaProperty::isStored commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false bool [0xc82059b340] } +&{isUser QMetaProperty::isUser commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false bool [0xc82059b580] } +&{isValid QMetaProperty::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false bool [] } +&{isWritable QMetaProperty::isWritable commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false bool [] } +&{name QMetaProperty::name commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false const char * [] } +&{notifySignal QMetaProperty::notifySignal commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false QMetaMethod [] } +&{notifySignalIndex QMetaProperty::notifySignalIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false int [] } +&{propertyIndex QMetaProperty::propertyIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false int [] } +&{read QMetaProperty::read commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false QVariant [0xc820586020] } +&{readOnGadget QMetaProperty::readOnGadget commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false QVariant [0xc820586200] } +&{reset QMetaProperty::reset commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false bool [0xc820586560] } +&{resetOnGadget QMetaProperty::resetOnGadget commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false bool [0xc820586780] } +&{revision QMetaProperty::revision commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false int [] } +&{type QMetaProperty::type commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false QVariant::Type [] } +&{typeName QMetaProperty::typeName commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false const char * [] } +&{userType QMetaProperty::userType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false int [] } +&{write QMetaProperty::write commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false bool [0xc820586ea0 0xc820586f20] } +&{writeOnGadget QMetaProperty::writeOnGadget commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetaobject.h non plain false false bool [0xc8205871a0 0xc820587220] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QMetaType.txt b/internal/binding/dump/QtCore/QMetaType.txt new file mode 100755 index 00000000..ea6cb240 --- /dev/null +++ b/internal/binding/dump/QtCore/QMetaType.txt @@ -0,0 +1,45 @@ +######################################## FUNCTIONS ######################################## +&{QMetaType QMetaType::QMetaType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.cpp non constructor false false [0xc820574020] } +&{compare QMetaType::compare commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true false bool [0xc820524a60 0xc820524ae0 0xc820524b60 0xc820524be0] } +&{construct QMetaType::construct commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true false void * [0xc820524fe0 0xc820525060 0xc8205250e0] } +&{construct QMetaType::construct commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain false true 3 void * [0xc8205252a0 0xc820525320] } +&{convert QMetaType::convert commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true false bool [0xc8205254e0 0xc820525560 0xc8205255e0 0xc820525660] } +&{create QMetaType::create commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true false void * [0xc820525820 0xc8205258a0] } +&{create QMetaType::create commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain false true 2 void * [0xc820525a60] } +&{debugStream QMetaType::debugStream commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true false bool [0xc820525c20 0xc820525ca0 0xc820525d20] } +&{destroy QMetaType::destroy commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true false void [0xc820525ee0 0xc820525f60] } +&{destroy QMetaType::destroy commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain false true 2 void [0xc820514140] } +&{destruct QMetaType::destruct commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true false void [0xc820514320 0xc8205143e0] } +&{destruct QMetaType::destruct commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain false true 2 void [0xc820514640] } +&{equals QMetaType::equals commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true false bool [0xc820514880 0xc820514920 0xc8205149a0 0xc820514a40] } +&{flags QMetaType::flags commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain false false TypeFlags [] } +&{hasRegisteredComparators QMetaType::hasRegisteredComparators commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true false bool [] } +&{hasRegisteredComparators QMetaType::hasRegisteredComparators commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true true 2 bool [0xc820514e80] } +&{hasRegisteredConverterFunction QMetaType::hasRegisteredConverterFunction commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true true 2 bool [] } +&{hasRegisteredConverterFunction QMetaType::hasRegisteredConverterFunction commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true false bool [0xc8205151c0 0xc820515240] } +&{hasRegisteredDebugStreamOperator QMetaType::hasRegisteredDebugStreamOperator commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true false bool [] } +&{hasRegisteredDebugStreamOperator QMetaType::hasRegisteredDebugStreamOperator commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true true 2 bool [0xc820515520] } +&{isRegistered QMetaType::isRegistered commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true false bool [0xc820515a60] } +&{isRegistered QMetaType::isRegistered commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain false true 2 bool [] } +&{isValid QMetaType::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain false false bool [] } +&{load QMetaType::load commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true false bool [0xc820515ee0 0xc820515f80 0xc820504000] } +&{metaObject QMetaType::metaObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain false false const QMetaObject * [] } +&{registerComparators QMetaType::registerComparators commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true false bool [] } +&{registerConverter QMetaType::registerConverter commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true true 2 bool [0xc8205045c0] } +&{registerConverter QMetaType::registerConverter commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true true 3 bool [0xc820504860] } +&{registerConverter QMetaType::registerConverter commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true true 4 bool [0xc820504ae0] } +&{registerDebugStreamOperator QMetaType::registerDebugStreamOperator commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true false bool [] } +&{registerEqualsComparator QMetaType::registerEqualsComparator commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true false bool [] } +&{metaObjectForType QMetaType::metaObjectForType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true false const QMetaObject * [0xc820505f20] } +&{registerConverter QMetaType::registerConverter commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true false bool [] } +&{save QMetaType::save commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true false bool [0xc8204f5e40 0xc8204f5ee0 0xc8204f5f60] } +&{sizeOf QMetaType::sizeOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true false int [0xc8204ce1a0] } +&{sizeOf QMetaType::sizeOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain false true 2 int [] } +&{type QMetaType::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true true 2 int [0xc8204ce420] } +&{type QMetaType::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true false int [0xc8204ce660] } +&{typeFlags QMetaType::typeFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true false TypeFlags [0xc8204ce8e0] } +&{typeName QMetaType::typeName commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non plain true false const char * [0xc8204ceb00] } +&{~QMetaType QMetaType::~QMetaType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmetatype.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Type QMetaType::Type commendable public [0xc82055e780 0xc82055e860 0xc82055e8e0 0xc82055e9a0 0xc82055ea40 0xc82055eae0 0xc82055eb60 0xc82055ec00 0xc82055eca0 0xc82055ed80 0xc82055ee00 0xc82055ee80 0xc82055ef20 0xc82055efc0 0xc82055f040 0xc82055f0e0 0xc82055f1a0 0xc82055f280 0xc82055f300 0xc82055f380 0xc82055f420 0xc82055f4c0 0xc82055f540 0xc82055f5c0 0xc82055f640 0xc82055f6c0 0xc82055f7a0 0xc82055f820 0xc82055f8a0 0xc82055f940 0xc82055f9e0 0xc82055fac0 0xc82055fb60 0xc82055fc00 0xc82055fce0 0xc82055fd60 0xc82055fde0 0xc82055fe80 0xc82055ff80 0xc820548060 0xc820548120 0xc8205481a0 0xc820548220 0xc8205482a0 0xc820548320 0xc8205483a0 0xc820548420 0xc8205484a0 0xc820548520 0xc8205485a0 0xc820548620 0xc8205486a0 0xc820548720 0xc8205487a0 0xc820548820 0xc8205488a0 0xc820548920 0xc8205489a0 0xc820548a20 0xc820548aa0 0xc820548b20 0xc820548ba0 0xc820548c20 0xc820548ca0 0xc820548d40 0xc820548dc0 0xc820548e40 0xc820548ec0 0xc820548f40 0xc820548fc0 0xc820549040 0xc8205490c0 0xc820549140 0xc8205491c0 0xc820549240 0xc8205492c0]} +&{TypeFlag QMetaType::TypeFlag commendable public QMetaType::TypeFlags [0xc820549500 0xc8205495c0 0xc820549640 0xc8205496c0 0xc820549760 0xc820549800 0xc8205498e0 0xc8205499c0 0xc820549ac0 0xc820549b80]} diff --git a/internal/binding/dump/QtCore/QMimeData.txt b/internal/binding/dump/QtCore/QMimeData.txt new file mode 100755 index 00000000..130fbf15 --- /dev/null +++ b/internal/binding/dump/QtCore/QMimeData.txt @@ -0,0 +1,26 @@ +######################################## FUNCTIONS ######################################## +&{QMimeData QMimeData::QMimeData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmimedata.h non constructor false false [] } +&{clear QMimeData::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmimedata.h non plain false false void [] } +&{colorData QMimeData::colorData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmimedata.h non plain false false QVariant [] } +&{data QMimeData::data commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmimedata.h non plain false false QByteArray [0xc8204cfb00] } +&{formats QMimeData::formats commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmimedata.h impure plain false false QStringList [] } +&{hasColor QMimeData::hasColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmimedata.h non plain false false bool [] } +&{hasFormat QMimeData::hasFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmimedata.h impure plain false false bool [0xc8204cffe0] } +&{hasHtml QMimeData::hasHtml commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmimedata.h non plain false false bool [] } +&{hasImage QMimeData::hasImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmimedata.h non plain false false bool [] } +&{hasText QMimeData::hasText commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmimedata.h non plain false false bool [] } +&{hasUrls QMimeData::hasUrls commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmimedata.h non plain false false bool [] } +&{html QMimeData::html commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmimedata.h non plain false false QString [] } +&{imageData QMimeData::imageData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmimedata.h non plain false false QVariant [] } +&{removeFormat QMimeData::removeFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmimedata.h non plain false false void [0xc8204be960] } +&{retrieveData QMimeData::retrieveData commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmimedata.h impure plain false false QVariant [0xc8204beba0 0xc8204bec20] } +&{setColorData QMimeData::setColorData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmimedata.h non plain false false void [0xc8204bee20] } +&{setData QMimeData::setData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmimedata.h non plain false false void [0xc8204bf060 0xc8204bf160] } +&{setHtml QMimeData::setHtml commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmimedata.h non plain false false void [0xc8204bf3e0] } +&{setImageData QMimeData::setImageData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmimedata.h non plain false false void [0xc8204bf620] } +&{setText QMimeData::setText commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmimedata.h non plain false false void [0xc8204bf820] } +&{setUrls QMimeData::setUrls commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmimedata.h non plain false false void [0xc8204bfa60] } +&{text QMimeData::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmimedata.h non plain false false QString [] } +&{urls QMimeData::urls commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmimedata.h non plain false false QList [] } +&{~QMimeData QMimeData::~QMimeData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qmimedata.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QMimeDatabase.txt b/internal/binding/dump/QtCore/QMimeDatabase.txt new file mode 100755 index 00000000..c1c83ba4 --- /dev/null +++ b/internal/binding/dump/QtCore/QMimeDatabase.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{QMimeDatabase QMimeDatabase::QMimeDatabase commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimedatabase.cpp non constructor false false [] } +&{mimeTypeForName QMimeDatabase::mimeTypeForName commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimedatabase.cpp non plain false false QMimeType [0xc8201dd320] } +&{~QMimeDatabase QMimeDatabase::~QMimeDatabase commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimedatabase.cpp non destructor false false [] } +&{allMimeTypes QMimeDatabase::allMimeTypes commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimedatabase.h non plain false false QList [] } +&{mimeTypeForData QMimeDatabase::mimeTypeForData commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimedatabase.h non plain false true 2 QMimeType [0xc8201dde40] } +&{mimeTypeForData QMimeDatabase::mimeTypeForData commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimedatabase.h non plain false false QMimeType [0xc8201d2140] } +&{mimeTypeForFile QMimeDatabase::mimeTypeForFile commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimedatabase.h non plain false false QMimeType [0xc8201d2460 0xc8201d2600] } +&{mimeTypeForFile QMimeDatabase::mimeTypeForFile commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimedatabase.h non plain false true 2 QMimeType [0xc8201d2880 0xc8201d2960] } +&{mimeTypeForFileNameAndData QMimeDatabase::mimeTypeForFileNameAndData commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimedatabase.h non plain false false QMimeType [0xc8201d2c80 0xc8201d2d20] } +&{mimeTypeForFileNameAndData QMimeDatabase::mimeTypeForFileNameAndData commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimedatabase.h non plain false true 2 QMimeType [0xc8201d2fe0 0xc8201d3100] } +&{mimeTypeForUrl QMimeDatabase::mimeTypeForUrl commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimedatabase.h non plain false false QMimeType [0xc8201d34a0] } +&{mimeTypesForFileName QMimeDatabase::mimeTypesForFileName commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimedatabase.h non plain false false QList [0xc8201d3780] } +&{suffixForFileName QMimeDatabase::suffixForFileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimedatabase.h non plain false false QString [0xc8201d3ae0] } +######################################## ENUMS ######################################## +&{MatchMode QMimeDatabase::MatchMode commendable public [0xc8201dd7c0 0xc8201dd860 0xc8201dd940]} diff --git a/internal/binding/dump/QtCore/QMimeType.txt b/internal/binding/dump/QtCore/QMimeType.txt new file mode 100755 index 00000000..d3592c80 --- /dev/null +++ b/internal/binding/dump/QtCore/QMimeType.txt @@ -0,0 +1,24 @@ +######################################## FUNCTIONS ######################################## +&{QMimeType QMimeType::QMimeType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimetype.cpp non constructor false false [] } +&{QMimeType QMimeType::QMimeType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimetype.cpp non constructor false true 2 [0xc8201ca140] } +&{filterString QMimeType::filterString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimetype.cpp non plain false false QString [] } +&{genericIconName QMimeType::genericIconName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimetype.cpp non plain false false QString [] } +&{globPatterns QMimeType::globPatterns commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimetype.cpp non plain false false QStringList [] } +&{iconName QMimeType::iconName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimetype.cpp non plain false false QString [] } +&{inherits QMimeType::inherits commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimetype.cpp non plain false false bool [0xc8201caf00] } +&{isDefault QMimeType::isDefault commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimetype.cpp non plain false false bool [] } +&{isValid QMimeType::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimetype.cpp non plain false false bool [] } +&{name QMimeType::name commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimetype.cpp non plain false false QString [] } +&{operator= QMimeType::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimetype.cpp non plain false false QMimeType & [0xc8201cb6c0] } +&{operator== QMimeType::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimetype.cpp non plain false false bool [0xc8201cbaa0] } +&{~QMimeType QMimeType::~QMimeType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimetype.cpp non destructor false false [] } +&{aliases QMimeType::aliases commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimetype.h non plain false false QStringList [] } +&{allAncestors QMimeType::allAncestors commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimetype.h non plain false false QStringList [] } +&{comment QMimeType::comment commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimetype.h non plain false false QString [] } +&{operator!= QMimeType::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimetype.h non plain false false bool [0xc8201c44c0] } +&{operator= QMimeType::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimetype.h non plain false true 2 QMimeType & [0xc8201c4860] } +&{parentMimeTypes QMimeType::parentMimeTypes commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimetype.h non plain false false QStringList [] } +&{preferredSuffix QMimeType::preferredSuffix commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimetype.h non plain false false QString [] } +&{suffixes QMimeType::suffixes commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimetype.h non plain false false QStringList [] } +&{swap QMimeType::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/mimetypes/qmimetype.h non plain false false void [0xc8201c4fa0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QModelIndex.txt b/internal/binding/dump/QtCore/QModelIndex.txt new file mode 100755 index 00000000..ecc0d94b --- /dev/null +++ b/internal/binding/dump/QtCore/QModelIndex.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{QModelIndex QModelIndex::QModelIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non constructor false false [] } +&{child QModelIndex::child commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false QModelIndex [0xc82017fae0 0xc82017fb60] } +&{column QModelIndex::column commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false int [] } +&{data QModelIndex::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false QVariant [0xc82017ff80] } +&{flags QModelIndex::flags commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false Qt::ItemFlags [] } +&{internalId QModelIndex::internalId commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false quintptr [] } +&{internalPointer QModelIndex::internalPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false void * [] } +&{isValid QModelIndex::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false bool [] } +&{model QModelIndex::model commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false const QAbstractItemModel * [] } +&{operator!= QModelIndex::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false bool [0xc820070980] } +&{operator< QModelIndex::operator< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false bool [0xc820070c40] } +&{operator== QModelIndex::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false bool [0xc820070f20] } +&{parent QModelIndex::parent commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false QModelIndex [] } +&{row QModelIndex::row commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false int [] } +&{sibling QModelIndex::sibling commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false QModelIndex [0xc820071480 0xc820071500] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QModulesPrivate.txt b/internal/binding/dump/QtCore/QModulesPrivate.txt new file mode 100755 index 00000000..62fcea75 --- /dev/null +++ b/internal/binding/dump/QtCore/QModulesPrivate.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +######################################## ENUMS ######################################## +&{Names QModulesPrivate::Names commendable public [0xc820797a40 0xc820797b60 0xc820797be0 0xc820797c80 0xc820797d80]} diff --git a/internal/binding/dump/QtCore/QMultiHash.txt b/internal/binding/dump/QtCore/QMultiHash.txt new file mode 100755 index 00000000..c8d1668b --- /dev/null +++ b/internal/binding/dump/QtCore/QMultiHash.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{QMultiHash QMultiHash::QMultiHash commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non constructor false false [] } +&{QMultiHash QMultiHash::QMultiHash commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non constructor false true 3 [0xc820525240] } +&{QMultiHash QMultiHash::QMultiHash commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non constructor false true 2 [0xc820525500] } +&{constFind QMultiHash::constFind commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false QHash::const_iterator [0xc820525780 0xc820525860] } +&{contains QMultiHash::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false bool [0xc820525ac0 0xc820525b40] } +&{count QMultiHash::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false int [0xc820525da0 0xc820525e20] } +&{find QMultiHash::find commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false QHash::iterator [0xc820514060 0xc820514100] } +&{find QMultiHash::find commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false true 2 QHash::const_iterator [0xc820514380 0xc820514460] } +&{insert QMultiHash::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false QHash::iterator [0xc8205147c0 0xc820514900] } +&{operator+ QMultiHash::operator+ commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false QMultiHash [0xc820514bc0] } +&{operator+= QMultiHash::operator+= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false QMultiHash & [0xc820514f20] } +&{remove QMultiHash::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false int [0xc820515860 0xc820515940] } +&{replace QMultiHash::replace commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false QHash::iterator [0xc820515cc0 0xc820515d40] } +&{swap QMultiHash::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qhash.h non plain false false void [0xc820515fc0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QMultiMap.txt b/internal/binding/dump/QtCore/QMultiMap.txt new file mode 100755 index 00000000..f511a0cb --- /dev/null +++ b/internal/binding/dump/QtCore/QMultiMap.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{QMultiMap QMultiMap::QMultiMap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non constructor false false [] } +&{QMultiMap QMultiMap::QMultiMap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non constructor false true 3 [0xc820d0b120] } +&{QMultiMap QMultiMap::QMultiMap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non constructor false true 2 [0xc820d0b320] } +&{constFind QMultiMap::constFind commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false QMap::const_iterator [0xc820d0b540 0xc820d0b5c0] } +&{contains QMultiMap::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false bool [0xc820d0b7a0 0xc820d0b820] } +&{count QMultiMap::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false int [0xc820d0b980 0xc820d0ba00] } +&{find QMultiMap::find commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false QMap::iterator [0xc820d0bbc0 0xc820d0bc40] } +&{find QMultiMap::find commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false true 2 QMap::const_iterator [0xc820d0be00 0xc820d0be80] } +&{insert QMultiMap::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false true 2 QMap::iterator [0xc820d240e0 0xc820d241a0 0xc820d24220] } +&{insert QMultiMap::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false QMap::iterator [0xc820d24440 0xc820d244c0] } +&{operator+ QMultiMap::operator+ commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false QMultiMap [0xc820d246a0] } +&{operator+= QMultiMap::operator+= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false QMultiMap & [0xc820d248c0] } +&{remove QMultiMap::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false int [0xc820d24e60 0xc820d24ee0] } +&{replace QMultiMap::replace commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false QMap::iterator [0xc820d25100 0xc820d25180] } +&{swap QMultiMap::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qmap.h non plain false false void [0xc820d25320] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QMutableHashIterator.txt b/internal/binding/dump/QtCore/QMutableHashIterator.txt new file mode 100755 index 00000000..1d0e583a --- /dev/null +++ b/internal/binding/dump/QtCore/QMutableHashIterator.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{QMutableHashIterator QMutableHashIterator::QMutableHashIterator commendable public qhash.h non constructor false false [0xc820357080] } +&{findNext QMutableHashIterator::findNext commendable public qhash.h non plain false false bool [0xc820357500] } +&{findPrevious QMutableHashIterator::findPrevious commendable public qhash.h non plain false false bool [0xc820357920] } +&{hasNext QMutableHashIterator::hasNext commendable public qhash.h non plain false false bool [] } +&{hasPrevious QMutableHashIterator::hasPrevious commendable public qhash.h non plain false false bool [] } +&{key QMutableHashIterator::key commendable public qhash.h non plain false false const Key & [] } +&{next QMutableHashIterator::next commendable public qhash.h non plain false false Item [] } +&{operator= QMutableHashIterator::operator= commendable public qhash.h non plain false false QMutableHashIterator & [0xc8203448e0] } +&{peekNext QMutableHashIterator::peekNext commendable public qhash.h non plain false false Item [] } +&{peekPrevious QMutableHashIterator::peekPrevious commendable public qhash.h non plain false false Item [] } +&{previous QMutableHashIterator::previous commendable public qhash.h non plain false false Item [] } +&{remove QMutableHashIterator::remove commendable public qhash.h non plain false false void [] } +&{setValue QMutableHashIterator::setValue commendable public qhash.h non plain false false void [0xc8203453e0] } +&{toBack QMutableHashIterator::toBack commendable public qhash.h non plain false false void [] } +&{toFront QMutableHashIterator::toFront commendable public qhash.h non plain false false void [] } +&{value QMutableHashIterator::value commendable public qhash.h non plain false true 2 T & [] } +&{value QMutableHashIterator::value commendable public qhash.h non plain false false const T & [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QMutableLinkedListIterator.txt b/internal/binding/dump/QtCore/QMutableLinkedListIterator.txt new file mode 100755 index 00000000..bf69f4f8 --- /dev/null +++ b/internal/binding/dump/QtCore/QMutableLinkedListIterator.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{QMutableLinkedListIterator QMutableLinkedListIterator::QMutableLinkedListIterator commendable public qlinkedlist.h non constructor false false [0xc820315aa0] } +&{findNext QMutableLinkedListIterator::findNext commendable public qlinkedlist.h non plain false false bool [0xc820315ec0] } +&{findPrevious QMutableLinkedListIterator::findPrevious commendable public qlinkedlist.h non plain false false bool [0xc8202fe220] } +&{hasNext QMutableLinkedListIterator::hasNext commendable public qlinkedlist.h non plain false false bool [] } +&{hasPrevious QMutableLinkedListIterator::hasPrevious commendable public qlinkedlist.h non plain false false bool [] } +&{insert QMutableLinkedListIterator::insert commendable public qlinkedlist.h non plain false false void [0xc8202fe7e0] } +&{next QMutableLinkedListIterator::next commendable public qlinkedlist.h non plain false false T & [] } +&{operator= QMutableLinkedListIterator::operator= commendable public qlinkedlist.h non plain false false QMutableLinkedListIterator & [0xc8202ff0a0] } +&{peekNext QMutableLinkedListIterator::peekNext commendable public qlinkedlist.h non plain false false T & [] } +&{peekPrevious QMutableLinkedListIterator::peekPrevious commendable public qlinkedlist.h non plain false false T & [] } +&{previous QMutableLinkedListIterator::previous commendable public qlinkedlist.h non plain false false T & [] } +&{remove QMutableLinkedListIterator::remove commendable public qlinkedlist.h non plain false false void [] } +&{setValue QMutableLinkedListIterator::setValue commendable public qlinkedlist.h non plain false false void [0xc8202ff800] } +&{toBack QMutableLinkedListIterator::toBack commendable public qlinkedlist.h non plain false false void [] } +&{toFront QMutableLinkedListIterator::toFront commendable public qlinkedlist.h non plain false false void [] } +&{value QMutableLinkedListIterator::value commendable public qlinkedlist.h non plain false true 2 T & [] } +&{value QMutableLinkedListIterator::value commendable public qlinkedlist.h non plain false false const T & [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QMutableListIterator.txt b/internal/binding/dump/QtCore/QMutableListIterator.txt new file mode 100755 index 00000000..5ffd2a4b --- /dev/null +++ b/internal/binding/dump/QtCore/QMutableListIterator.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{QMutableListIterator QMutableListIterator::QMutableListIterator commendable public qlist.h non constructor false false [0xc8202c2a80] } +&{findNext QMutableListIterator::findNext commendable public qlist.h non plain false false bool [0xc8202c2e80] } +&{findPrevious QMutableListIterator::findPrevious commendable public qlist.h non plain false false bool [0xc8202c3260] } +&{hasNext QMutableListIterator::hasNext commendable public qlist.h non plain false false bool [] } +&{hasPrevious QMutableListIterator::hasPrevious commendable public qlist.h non plain false false bool [] } +&{insert QMutableListIterator::insert commendable public qlist.h non plain false false void [0xc8202c3cc0] } +&{next QMutableListIterator::next commendable public qlist.h non plain false false T & [] } +&{operator= QMutableListIterator::operator= commendable public qlist.h non plain false false QMutableListIterator & [0xc8202b25e0] } +&{peekNext QMutableListIterator::peekNext commendable public qlist.h non plain false false T & [] } +&{peekPrevious QMutableListIterator::peekPrevious commendable public qlist.h non plain false false T & [] } +&{previous QMutableListIterator::previous commendable public qlist.h non plain false false T & [] } +&{remove QMutableListIterator::remove commendable public qlist.h non plain false false void [] } +&{setValue QMutableListIterator::setValue commendable public qlist.h non plain false false void [0xc8202b33c0] } +&{toBack QMutableListIterator::toBack commendable public qlist.h non plain false false void [] } +&{toFront QMutableListIterator::toFront commendable public qlist.h non plain false false void [] } +&{value QMutableListIterator::value commendable public qlist.h non plain false true 2 T & [] } +&{value QMutableListIterator::value commendable public qlist.h non plain false false const T & [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QMutableMapIterator.txt b/internal/binding/dump/QtCore/QMutableMapIterator.txt new file mode 100755 index 00000000..1bb55e7a --- /dev/null +++ b/internal/binding/dump/QtCore/QMutableMapIterator.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{QMutableMapIterator QMutableMapIterator::QMutableMapIterator commendable public qmap.h non constructor false false [0xc820291780] } +&{findNext QMutableMapIterator::findNext commendable public qmap.h non plain false false bool [0xc820291ae0] } +&{findPrevious QMutableMapIterator::findPrevious commendable public qmap.h non plain false false bool [0xc820291d40] } +&{hasNext QMutableMapIterator::hasNext commendable public qmap.h non plain false false bool [] } +&{hasPrevious QMutableMapIterator::hasPrevious commendable public qmap.h non plain false false bool [] } +&{key QMutableMapIterator::key commendable public qmap.h non plain false false const Key & [] } +&{next QMutableMapIterator::next commendable public qmap.h non plain false false Item [] } +&{operator= QMutableMapIterator::operator= commendable public qmap.h non plain false false QMutableMapIterator & [0xc82027ae20] } +&{peekNext QMutableMapIterator::peekNext commendable public qmap.h non plain false false Item [] } +&{peekPrevious QMutableMapIterator::peekPrevious commendable public qmap.h non plain false false Item [] } +&{previous QMutableMapIterator::previous commendable public qmap.h non plain false false Item [] } +&{remove QMutableMapIterator::remove commendable public qmap.h non plain false false void [] } +&{setValue QMutableMapIterator::setValue commendable public qmap.h non plain false false void [0xc82027b700] } +&{toBack QMutableMapIterator::toBack commendable public qmap.h non plain false false void [] } +&{toFront QMutableMapIterator::toFront commendable public qmap.h non plain false false void [] } +&{value QMutableMapIterator::value commendable public qmap.h non plain false true 2 T & [] } +&{value QMutableMapIterator::value commendable public qmap.h non plain false false const T & [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QMutableSetIterator.txt b/internal/binding/dump/QtCore/QMutableSetIterator.txt new file mode 100755 index 00000000..218f860f --- /dev/null +++ b/internal/binding/dump/QtCore/QMutableSetIterator.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{QMutableSetIterator QMutableSetIterator::QMutableSetIterator commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non constructor false false [0xc820c25920] } +&{findNext QMutableSetIterator::findNext commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false bool [0xc820c25b80] } +&{findPrevious QMutableSetIterator::findPrevious commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false bool [0xc820c25d40] } +&{hasNext QMutableSetIterator::hasNext commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false bool [] } +&{hasPrevious QMutableSetIterator::hasPrevious commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false bool [] } +&{next QMutableSetIterator::next commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false const T & [] } +&{operator= QMutableSetIterator::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false QMutableSetIterator & [0xc820c164e0] } +&{peekNext QMutableSetIterator::peekNext commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false const T & [] } +&{peekPrevious QMutableSetIterator::peekPrevious commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false const T & [] } +&{previous QMutableSetIterator::previous commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false const T & [] } +&{remove QMutableSetIterator::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false void [] } +&{toBack QMutableSetIterator::toBack commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false void [] } +&{toFront QMutableSetIterator::toFront commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false void [] } +&{value QMutableSetIterator::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false const T & [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QMutableVectorIterator.txt b/internal/binding/dump/QtCore/QMutableVectorIterator.txt new file mode 100755 index 00000000..26de1ab6 --- /dev/null +++ b/internal/binding/dump/QtCore/QMutableVectorIterator.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{QMutableVectorIterator QMutableVectorIterator::QMutableVectorIterator commendable public qvector.h non constructor false false [0xc82026b000] } +&{findNext QMutableVectorIterator::findNext commendable public qvector.h non plain false false bool [0xc82026b480] } +&{findPrevious QMutableVectorIterator::findPrevious commendable public qvector.h non plain false false bool [0xc82026b6c0] } +&{hasNext QMutableVectorIterator::hasNext commendable public qvector.h non plain false false bool [] } +&{hasPrevious QMutableVectorIterator::hasPrevious commendable public qvector.h non plain false false bool [] } +&{insert QMutableVectorIterator::insert commendable public qvector.h non plain false false void [0xc82026bec0] } +&{next QMutableVectorIterator::next commendable public qvector.h non plain false false T & [] } +&{operator= QMutableVectorIterator::operator= commendable public qvector.h non plain false false QMutableVectorIterator & [0xc820264640] } +&{peekNext QMutableVectorIterator::peekNext commendable public qvector.h non plain false false T & [] } +&{peekPrevious QMutableVectorIterator::peekPrevious commendable public qvector.h non plain false false T & [] } +&{previous QMutableVectorIterator::previous commendable public qvector.h non plain false false T & [] } +&{remove QMutableVectorIterator::remove commendable public qvector.h non plain false false void [] } +&{setValue QMutableVectorIterator::setValue commendable public qvector.h non plain false false void [0xc8202655c0] } +&{toBack QMutableVectorIterator::toBack commendable public qvector.h non plain false false void [] } +&{toFront QMutableVectorIterator::toFront commendable public qvector.h non plain false false void [] } +&{value QMutableVectorIterator::value commendable public qvector.h non plain false true 2 T & [] } +&{value QMutableVectorIterator::value commendable public qvector.h non plain false false const T & [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QMutex.txt b/internal/binding/dump/QtCore/QMutex.txt new file mode 100755 index 00000000..06754951 --- /dev/null +++ b/internal/binding/dump/QtCore/QMutex.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{lock QMutex::lock commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qmutex.cpp non plain false false void [] } +&{tryLock QMutex::tryLock commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qmutex.cpp non plain false false bool [0xc820700b40] } +&{unlock QMutex::unlock commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qmutex.cpp non plain false false void [] } +&{QMutex QMutex::QMutex commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qmutex.h non constructor false false [0xc820700fc0] } +&{isRecursive QMutex::isRecursive commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qmutex.h non plain false false bool [] } +######################################## ENUMS ######################################## +&{RecursionMode QMutex::RecursionMode commendable public [0xc820700dc0 0xc820700e40]} diff --git a/internal/binding/dump/QtCore/QMutexLocker.txt b/internal/binding/dump/QtCore/QMutexLocker.txt new file mode 100755 index 00000000..b849da02 --- /dev/null +++ b/internal/binding/dump/QtCore/QMutexLocker.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{QMutexLocker QMutexLocker::QMutexLocker commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qmutex.h non constructor false false [0xc8207013a0] } +&{mutex QMutexLocker::mutex commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qmutex.h non plain false false QMutex * [] } +&{relock QMutexLocker::relock commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qmutex.h non plain false false void [] } +&{unlock QMutexLocker::unlock commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qmutex.h non plain false false void [] } +&{~QMutexLocker QMutexLocker::~QMutexLocker commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qmutex.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QObject.txt b/internal/binding/dump/QtCore/QObject.txt new file mode 100755 index 00000000..95b6f278 --- /dev/null +++ b/internal/binding/dump/QtCore/QObject.txt @@ -0,0 +1,57 @@ +######################################## FUNCTIONS ######################################## +&{installEventFilter QObject::installEventFilter commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.cpp non plain false false void [0xc8204a9b00] } +&{objectName QObject::objectName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.cpp non plain false false QString [] } +&{setObjectName QObject::setObjectName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.cpp non plain false false void [0xc8204a9ec0] } +&{timerEvent QObject::timerEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.cpp impure plain false false void [0xc8204960e0] } +&{QObject QObject::QObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non constructor false false [0xc820496320] } +&{blockSignals QObject::blockSignals commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false false bool [0xc820496520] } +&{childEvent QObject::childEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h impure plain false false void [0xc820496780] } +&{children QObject::children commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false false const QObjectList & [] } +&{connect QObject::connect commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain true true 5 QMetaObject::Connection [0xc820496b60 0xc820496c60 0xc820496d40] } +&{connect QObject::connect commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain true true 6 QMetaObject::Connection [0xc820496f80 0xc820497040 0xc820497160 0xc8204971e0 0xc820497300] } +&{connect QObject::connect commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain true true 4 QMetaObject::Connection [0xc820497580 0xc820497640 0xc820497720 0xc8204977c0 0xc820497980] } +&{connect QObject::connect commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain true true 2 QMetaObject::Connection [0xc820497c20 0xc820497cc0 0xc820497da0 0xc820497ec0 0xc820484000] } +&{connect QObject::connect commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain true false QMetaObject::Connection [0xc8204842c0 0xc820484340 0xc8204843e0 0xc8204844c0 0xc820484600] } +&{connect QObject::connect commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false true 3 QMetaObject::Connection [0xc820484840 0xc8204848e0 0xc820484980 0xc820484a80] } +&{connectNotify QObject::connectNotify commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h impure plain false false void [0xc820485aa0] } +&{customEvent QObject::customEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h impure plain false false void [0xc820485d60] } +&{deleteLater QObject::deleteLater commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non slot false false void [] } +&{destroyed QObject::destroyed commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non signal false false void [0xc8204780e0] } +&{disconnect QObject::disconnect commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain true true 3 bool [0xc820478360] } +&{disconnect QObject::disconnect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain true true 6 bool [0xc820478600 0xc8204786a0 0xc8204787a0 0xc820478880] } +&{disconnect QObject::disconnect commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain true true 2 bool [0xc820478b20 0xc820478c00 0xc820478cc0 0xc820478d80] } +&{disconnect QObject::disconnect commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain true false bool [0xc820479040 0xc8204790c0 0xc820479160 0xc820479240] } +&{disconnect QObject::disconnect commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false true 5 bool [0xc820479440 0xc8204794e0] } +&{disconnect QObject::disconnect commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false true 4 bool [0xc8204796c0 0xc820479760 0xc820479840] } +&{disconnectNotify QObject::disconnectNotify commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h impure plain false false void [0xc820479a80] } +&{dumpObjectInfo QObject::dumpObjectInfo commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false false void [] } +&{dumpObjectTree QObject::dumpObjectTree commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false false void [] } +&{dynamicPropertyNames QObject::dynamicPropertyNames commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false false QList [] } +&{event QObject::event commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h impure plain false false bool [0xc82046a160] } +&{eventFilter QObject::eventFilter commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h impure plain false false bool [0xc82046a3c0 0xc82046a440] } +&{findChild QObject::findChild commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false false T [0xc82046a6a0 0xc82046a780] } +&{findChildren QObject::findChildren commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false true 2 QList [0xc82046aa00 0xc82046ab00] } +&{findChildren QObject::findChildren commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false true 3 QList [0xc82046adc0 0xc82046aee0] } +&{findChildren QObject::findChildren commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false false QList [0xc82046b1a0 0xc82046b2a0] } +&{inherits QObject::inherits commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false false bool [0xc82046b500] } +&{isSignalConnected QObject::isSignalConnected commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false false bool [0xc82046b800] } +&{isWidgetType QObject::isWidgetType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false false bool [] } +&{isWindowType QObject::isWindowType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false false bool [] } +&{killTimer QObject::killTimer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false false void [0xc82046bd80] } +&{metaObject QObject::metaObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h impure plain false false const QMetaObject * [] } +&{moveToThread QObject::moveToThread commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false false void [0xc820458120] } +&{objectNameChanged QObject::objectNameChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non signal false false void [0xc820458400] } +&{parent QObject::parent commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false false QObject * [] } +&{property QObject::property commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false false QVariant [0xc820458700] } +&{receivers QObject::receivers commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false false int [0xc820458920] } +&{removeEventFilter QObject::removeEventFilter commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false false void [0xc820458be0] } +&{sender QObject::sender commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false false QObject * [] } +&{senderSignalIndex QObject::senderSignalIndex commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false false int [] } +&{setParent QObject::setParent commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false false void [0xc8204590e0] } +&{setProperty QObject::setProperty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false false bool [0xc820459320 0xc8204593a0] } +&{startTimer QObject::startTimer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false false int [0xc820459900 0xc8204599a0] } +&{signalsBlocked QObject::signalsBlocked commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false false bool [] } +&{thread QObject::thread commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false false QThread * [] } +&{tr QObject::tr commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain true false QString [0xc82044a020 0xc82044a0a0 0xc82044a180] } +&{~QObject QObject::~QObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QObjectCleanupHandler.txt b/internal/binding/dump/QtCore/QObjectCleanupHandler.txt new file mode 100755 index 00000000..a9cd1693 --- /dev/null +++ b/internal/binding/dump/QtCore/QObjectCleanupHandler.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{QObjectCleanupHandler QObjectCleanupHandler::QObjectCleanupHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectcleanuphandler.h non constructor false false [] } +&{add QObjectCleanupHandler::add commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectcleanuphandler.h non plain false false QObject * [0xc8204029e0] } +&{clear QObjectCleanupHandler::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectcleanuphandler.h non plain false false void [] } +&{isEmpty QObjectCleanupHandler::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectcleanuphandler.h non plain false false bool [] } +&{remove QObjectCleanupHandler::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectcleanuphandler.h non plain false false void [0xc820402f00] } +&{~QObjectCleanupHandler QObjectCleanupHandler::~QObjectCleanupHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobjectcleanuphandler.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QPair.txt b/internal/binding/dump/QtCore/QPair.txt new file mode 100755 index 00000000..e95456ef --- /dev/null +++ b/internal/binding/dump/QtCore/QPair.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QPair QPair::QPair commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpair.h non constructor false false [] } +&{QPair QPair::QPair commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpair.h non constructor false true 4 [0xc820d82fe0] } +&{QPair QPair::QPair commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpair.h non constructor false true 3 [0xc820d831c0] } +&{QPair QPair::QPair commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpair.h non constructor false true 2 [0xc820d83360 0xc820d833e0] } +&{operator= QPair::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpair.h non plain false true 2 QPair & [0xc820d83580] } +&{operator= QPair::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpair.h non plain false false QPair & [0xc820d92080] } +&{swap QPair::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpair.h non plain false false void [0xc820d92220] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QParallelAnimationGroup.txt b/internal/binding/dump/QtCore/QParallelAnimationGroup.txt new file mode 100755 index 00000000..094ae842 --- /dev/null +++ b/internal/binding/dump/QtCore/QParallelAnimationGroup.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QParallelAnimationGroup QParallelAnimationGroup::QParallelAnimationGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qparallelanimationgroup.h non constructor false false [0xc8200e1320] } +&{duration QParallelAnimationGroup::duration commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qparallelanimationgroup.h impure plain false false int [] } +&{event QParallelAnimationGroup::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qparallelanimationgroup.h impure plain false false bool [0xc8200e19e0] } +&{updateCurrentTime QParallelAnimationGroup::updateCurrentTime commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qparallelanimationgroup.h impure plain false false void [0xc8200e1ba0] } +&{updateDirection QParallelAnimationGroup::updateDirection commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qparallelanimationgroup.h impure plain false false void [0xc8200e1d20] } +&{updateState QParallelAnimationGroup::updateState commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qparallelanimationgroup.h impure plain false false void [0xc8200e1ee0 0xc8200e1fc0] } +&{~QParallelAnimationGroup QParallelAnimationGroup::~QParallelAnimationGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qparallelanimationgroup.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QPauseAnimation.txt b/internal/binding/dump/QtCore/QPauseAnimation.txt new file mode 100755 index 00000000..6baa091f --- /dev/null +++ b/internal/binding/dump/QtCore/QPauseAnimation.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{duration QPauseAnimation::duration commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qpauseanimation.cpp impure plain false false int [] } +&{setDuration QPauseAnimation::setDuration commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qpauseanimation.cpp non plain false false void [0xc8200ee5a0] } +&{QPauseAnimation QPauseAnimation::QPauseAnimation commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qpauseanimation.h non constructor false false [0xc8200ee780] } +&{QPauseAnimation QPauseAnimation::QPauseAnimation commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qpauseanimation.h non constructor false true 2 [0xc8200ee940 0xc8200ee9c0] } +&{event QPauseAnimation::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qpauseanimation.h impure plain false false bool [0xc8200eebe0] } +&{updateCurrentTime QPauseAnimation::updateCurrentTime commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qpauseanimation.h impure plain false false void [0xc8200eedc0] } +&{~QPauseAnimation QPauseAnimation::~QPauseAnimation commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qpauseanimation.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QPersistentModelIndex.txt b/internal/binding/dump/QtCore/QPersistentModelIndex.txt new file mode 100755 index 00000000..e7159668 --- /dev/null +++ b/internal/binding/dump/QtCore/QPersistentModelIndex.txt @@ -0,0 +1,24 @@ +######################################## FUNCTIONS ######################################## +&{QPersistentModelIndex QPersistentModelIndex::QPersistentModelIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.cpp non constructor false true 3 [0xc820071960] } +&{column QPersistentModelIndex::column commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.cpp non plain false false int [] } +&{isValid QPersistentModelIndex::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.cpp non plain false false bool [] } +&{operator const QModelIndex & QPersistentModelIndex::operator const QModelIndex & commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.cpp non plain false false [] } +&{operator!= QPersistentModelIndex::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.cpp non plain false true 2 bool [0xc82000e520] } +&{operator== QPersistentModelIndex::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.cpp non plain false true 2 bool [0xc82000e780] } +&{row QPersistentModelIndex::row commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.cpp non plain false false int [] } +&{QPersistentModelIndex QPersistentModelIndex::QPersistentModelIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non constructor false true 4 [0xc82000eb80] } +&{QPersistentModelIndex QPersistentModelIndex::QPersistentModelIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non constructor false false [0xc82000eec0] } +&{child QPersistentModelIndex::child commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false QModelIndex [0xc82000f120 0xc82000f1c0] } +&{data QPersistentModelIndex::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false QVariant [0xc82000f440] } +&{flags QPersistentModelIndex::flags commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false Qt::ItemFlags [] } +&{model QPersistentModelIndex::model commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false const QAbstractItemModel * [] } +&{operator!= QPersistentModelIndex::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false bool [0xc82000fa60] } +&{operator< QPersistentModelIndex::operator< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false bool [0xc82000fd40] } +&{operator= QPersistentModelIndex::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false true 2 QPersistentModelIndex & [0xc8204020e0] } +&{operator= QPersistentModelIndex::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false true 3 QPersistentModelIndex & [0xc8204023c0] } +&{operator= QPersistentModelIndex::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false QPersistentModelIndex & [0xc8204026c0] } +&{operator== QPersistentModelIndex::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false bool [0xc8204028e0] } +&{parent QPersistentModelIndex::parent commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false QModelIndex [] } +&{sibling QPersistentModelIndex::sibling commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false QModelIndex [0xc820402c60 0xc820402ce0] } +&{swap QPersistentModelIndex::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qabstractitemmodel.h non plain false false void [0xc820402ee0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QPluginLoader.txt b/internal/binding/dump/QtCore/QPluginLoader.txt new file mode 100755 index 00000000..f843791e --- /dev/null +++ b/internal/binding/dump/QtCore/QPluginLoader.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{fileName QPluginLoader::fileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qpluginloader.cpp non plain false false QString [] } +&{loadHints QPluginLoader::loadHints commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qpluginloader.cpp non plain false false QLibrary::LoadHints [] } +&{setFileName QPluginLoader::setFileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qpluginloader.cpp non plain false false void [0xc8201a5260] } +&{setLoadHints QPluginLoader::setLoadHints commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qpluginloader.cpp non plain false false void [0xc8201a5560] } +&{QPluginLoader QPluginLoader::QPluginLoader commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qpluginloader.h non constructor false false [0xc8201a5920] } +&{QPluginLoader QPluginLoader::QPluginLoader commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qpluginloader.h non constructor false true 2 [0xc8201a5ba0 0xc8201a5ca0] } +&{errorString QPluginLoader::errorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qpluginloader.h non plain false false QString [] } +&{instance QPluginLoader::instance commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qpluginloader.h non plain false false QObject * [] } +&{isLoaded QPluginLoader::isLoaded commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qpluginloader.h non plain false false bool [] } +&{load QPluginLoader::load commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qpluginloader.h non plain false false bool [] } +&{metaData QPluginLoader::metaData commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qpluginloader.h non plain false false QJsonObject [] } +&{staticInstances QPluginLoader::staticInstances commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qpluginloader.h non plain true false QObjectList [] } +&{staticPlugins QPluginLoader::staticPlugins commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qpluginloader.h non plain true false QVector [] } +&{unload QPluginLoader::unload commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qpluginloader.h non plain false false bool [] } +&{~QPluginLoader QPluginLoader::~QPluginLoader commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qpluginloader.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QPoint.txt b/internal/binding/dump/QtCore/QPoint.txt new file mode 100755 index 00000000..c80e3d8c --- /dev/null +++ b/internal/binding/dump/QtCore/QPoint.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{QPoint QPoint::QPoint commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non constructor false false [] } +&{QPoint QPoint::QPoint commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non constructor false true 2 [0xc82000e460 0xc82000e6a0] } +&{dotProduct QPoint::dotProduct commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain true false int [0xc82000ed00 0xc82000efa0] } +&{isNull QPoint::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain false false bool [] } +&{manhattanLength QPoint::manhattanLength commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain false false int [] } +&{operator*= QPoint::operator*= commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain false true 2 QPoint & [0xc82000fae0] } +&{operator*= QPoint::operator*= commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain false false QPoint & [0xc82012a0e0] } +&{operator*= QPoint::operator*= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain false true 3 QPoint & [0xc82012a4e0] } +&{operator+= QPoint::operator+= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain false false QPoint & [0xc82012aac0] } +&{operator-= QPoint::operator-= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain false false QPoint & [0xc82012afa0] } +&{operator/= QPoint::operator/= commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain false false QPoint & [0xc82012b540] } +&{rx QPoint::rx commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain false false int & [] } +&{ry QPoint::ry commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain false false int & [] } +&{setX QPoint::setX commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain false false void [0xc82012b960] } +&{setY QPoint::setY commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain false false void [0xc82012bc60] } +&{x QPoint::x commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain false false int [] } +&{y QPoint::y commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain false false int [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QPointF.txt b/internal/binding/dump/QtCore/QPointF.txt new file mode 100755 index 00000000..1329d3b5 --- /dev/null +++ b/internal/binding/dump/QtCore/QPointF.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{QPointF QPointF::QPointF commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non constructor false false [] } +&{QPointF QPointF::QPointF commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non constructor false true 2 [0xc8201f46a0] } +&{QPointF QPointF::QPointF commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non constructor false true 3 [0xc8201f4aa0 0xc8201f4ba0] } +&{dotProduct QPointF::dotProduct commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain true false qreal [0xc8201f5040 0xc8201f51c0] } +&{isNull QPointF::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain false false bool [] } +&{manhattanLength QPointF::manhattanLength commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain false false qreal [] } +&{operator*= QPointF::operator*= commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain false false QPointF & [0xc8201f59c0] } +&{operator+= QPointF::operator+= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain false false QPointF & [0xc8201f5da0] } +&{operator-= QPointF::operator-= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain false false QPointF & [0xc8202ec1c0] } +&{operator/= QPointF::operator/= commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain false false QPointF & [0xc8202ec600] } +&{rx QPointF::rx commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain false false qreal & [] } +&{ry QPointF::ry commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain false false qreal & [] } +&{setX QPointF::setX commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain false false void [0xc8202eca80] } +&{setY QPointF::setY commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain false false void [0xc8202ecda0] } +&{toPoint QPointF::toPoint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain false false QPoint [] } +&{x QPointF::x commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain false false qreal [] } +&{y QPointF::y commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qpoint.h non plain false false qreal [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QPointer.txt b/internal/binding/dump/QtCore/QPointer.txt new file mode 100755 index 00000000..22635cdb --- /dev/null +++ b/internal/binding/dump/QtCore/QPointer.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{QPointer QPointer::QPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qpointer.h non constructor false false [] } +&{QPointer QPointer::QPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qpointer.h non constructor false true 2 [0xc82036cd60] } +&{clear QPointer::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qpointer.h non plain false false void [] } +&{data QPointer::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qpointer.h non plain false false T * [] } +&{isNull QPointer::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qpointer.h non plain false false bool [] } +&{operator T * QPointer::operator T * commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qpointer.h non plain false false [] } +&{operator* QPointer::operator* commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qpointer.h non plain false false T & [] } +&{operator-> QPointer::operator-> commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qpointer.h non plain false false T * [] } +&{operator= QPointer::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qpointer.h non plain false false QPointer & [0xc82036d7c0] } +&{~QPointer QPointer::~QPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qpointer.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QProcess.txt b/internal/binding/dump/QtCore/QProcess.txt new file mode 100755 index 00000000..9d4af8d4 --- /dev/null +++ b/internal/binding/dump/QtCore/QProcess.txt @@ -0,0 +1,71 @@ +######################################## FUNCTIONS ######################################## +&{QProcess QProcess::QProcess commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non constructor false false [0xc820356880] } +&{arguments QProcess::arguments commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false QStringList [] } +&{atEnd QProcess::atEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h impure plain false false bool [] } +&{bytesAvailable QProcess::bytesAvailable commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h impure plain false false qint64 [] } +&{bytesToWrite QProcess::bytesToWrite commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h impure plain false false qint64 [] } +&{canReadLine QProcess::canReadLine commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h impure plain false false bool [] } +&{close QProcess::close commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h impure plain false false void [] } +&{closeReadChannel QProcess::closeReadChannel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false void [0xc8203573a0] } +&{closeWriteChannel QProcess::closeWriteChannel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false void [] } +&{error QProcess::error commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non signal false true 2 void [0xc8203577a0] } +&{error QProcess::error commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false QProcess::ProcessError [] } +&{execute QProcess::execute commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain true true 2 int [0xc820357b00] } +&{execute QProcess::execute commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain true false int [0xc820357d40 0xc820357e00] } +&{exitCode QProcess::exitCode commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false int [] } +&{exitStatus QProcess::exitStatus commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false QProcess::ExitStatus [] } +&{finished QProcess::finished commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non signal false false void [0xc8203445a0 0xc820344660] } +&{inputChannelMode QProcess::inputChannelMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false InputChannelMode [] } +&{isSequential QProcess::isSequential commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h impure plain false false bool [] } +&{kill QProcess::kill commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non slot false false void [] } +&{nativeArguments QProcess::nativeArguments commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false QString [] } +&{nullDevice QProcess::nullDevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain true false QString [] } +&{open QProcess::open commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h impure plain false false bool [0xc820344ce0] } +&{processChannelMode QProcess::processChannelMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false ProcessChannelMode [] } +&{processEnvironment QProcess::processEnvironment commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false QProcessEnvironment [] } +&{processId QProcess::processId commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false qint64 [] } +&{program QProcess::program commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false QString [] } +&{readAllStandardError QProcess::readAllStandardError commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false QByteArray [] } +&{readAllStandardOutput QProcess::readAllStandardOutput commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false QByteArray [] } +&{readChannel QProcess::readChannel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false ProcessChannel [] } +&{readData QProcess::readData commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h impure plain false false qint64 [0xc820345c20 0xc820345ce0] } +&{readyReadStandardError QProcess::readyReadStandardError commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non signal false false void [] } +&{readyReadStandardOutput QProcess::readyReadStandardOutput commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non signal false false void [] } +&{setArguments QProcess::setArguments commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false void [0xc82032e240] } +&{setInputChannelMode QProcess::setInputChannelMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false void [0xc82032e760] } +&{setNativeArguments QProcess::setNativeArguments commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false void [0xc82032ea20] } +&{setProcessChannelMode QProcess::setProcessChannelMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false void [0xc82032ecc0] } +&{setProcessEnvironment QProcess::setProcessEnvironment commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false void [0xc82032efc0] } +&{setProcessState QProcess::setProcessState commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false void [0xc82032f280] } +&{setProgram QProcess::setProgram commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false void [0xc82032f4c0] } +&{setReadChannel QProcess::setReadChannel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false void [0xc82032f700] } +&{setStandardErrorFile QProcess::setStandardErrorFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false void [0xc82032fc80 0xc82032fd00] } +&{setStandardInputFile QProcess::setStandardInputFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false void [0xc82032ffa0] } +&{setStandardOutputFile QProcess::setStandardOutputFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false void [0xc8203141a0 0xc820314220] } +&{setStandardOutputProcess QProcess::setStandardOutputProcess commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false void [0xc8203143c0] } +&{setWorkingDirectory QProcess::setWorkingDirectory commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false void [0xc820314600] } +&{setupChildProcess QProcess::setupChildProcess commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h impure plain false false void [] } +&{start QProcess::start commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false true 2 void [0xc820314960] } +&{start QProcess::start commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false true 3 void [0xc820314b00 0xc820314ba0] } +&{start QProcess::start commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false void [0xc820314d60 0xc820314e00 0xc820314ee0] } +&{startDetached QProcess::startDetached commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain true true 2 bool [0xc8203150c0] } +&{startDetached QProcess::startDetached commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain true false bool [0xc820315320 0xc8203153c0 0xc8203154e0 0xc820315560] } +&{started QProcess::started commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non signal false false void [] } +&{state QProcess::state commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false QProcess::ProcessState [] } +&{stateChanged QProcess::stateChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non signal false false void [0xc8203159e0] } +&{systemEnvironment QProcess::systemEnvironment commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain true false QStringList [] } +&{terminate QProcess::terminate commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non slot false false void [] } +&{waitForBytesWritten QProcess::waitForBytesWritten commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h impure plain false false bool [0xc820315fa0] } +&{waitForFinished QProcess::waitForFinished commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false bool [0xc8202fe1c0] } +&{waitForReadyRead QProcess::waitForReadyRead commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h impure plain false false bool [0xc8202fe3a0] } +&{waitForStarted QProcess::waitForStarted commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false bool [0xc8202fe580] } +&{workingDirectory QProcess::workingDirectory commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false QString [] } +&{writeData QProcess::writeData commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h impure plain false false qint64 [0xc8202fe840 0xc8202fe8c0] } +&{~QProcess QProcess::~QProcess commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{ExitStatus QProcess::ExitStatus commendable public [0xc82036d000 0xc82036d0e0]} +&{InputChannelMode QProcess::InputChannelMode commendable public [0xc82036d2c0 0xc82036d400]} +&{ProcessChannel QProcess::ProcessChannel commendable public [0xc82036d660 0xc82036d6e0]} +&{ProcessChannelMode QProcess::ProcessChannelMode commendable public [0xc82036d960 0xc82036d9e0 0xc82036daa0 0xc82036dbc0 0xc82036dd00]} +&{ProcessError QProcess::ProcessError commendable public [0xc82036dfa0 0xc820356020 0xc8203560a0 0xc820356120 0xc8203561c0 0xc820356240]} +&{ProcessState QProcess::ProcessState commendable public [0xc820356480 0xc820356540 0xc8203565e0]} diff --git a/internal/binding/dump/QtCore/QProcessEnvironment.txt b/internal/binding/dump/QtCore/QProcessEnvironment.txt new file mode 100755 index 00000000..1f685416 --- /dev/null +++ b/internal/binding/dump/QtCore/QProcessEnvironment.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{QProcessEnvironment QProcessEnvironment::QProcessEnvironment commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non constructor false false [] } +&{QProcessEnvironment QProcessEnvironment::QProcessEnvironment commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non constructor false true 2 [0xc8202feda0] } +&{clear QProcessEnvironment::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false void [] } +&{contains QProcessEnvironment::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false bool [0xc8202ff060] } +&{insert QProcessEnvironment::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false true 2 void [0xc8202ff240] } +&{insert QProcessEnvironment::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false void [0xc8202ff440 0xc8202ff500] } +&{isEmpty QProcessEnvironment::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false bool [] } +&{keys QProcessEnvironment::keys commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false QStringList [] } +&{operator!= QProcessEnvironment::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false bool [0xc8202ff940] } +&{operator= QProcessEnvironment::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false QProcessEnvironment & [0xc8202ffba0] } +&{operator== QProcessEnvironment::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false bool [0xc8202ffda0] } +&{remove QProcessEnvironment::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false void [0xc8202fffc0] } +&{swap QProcessEnvironment::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false void [0xc8202ec260] } +&{toStringList QProcessEnvironment::toStringList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false QStringList [] } +&{value QProcessEnvironment::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non plain false false QString [0xc8202ec560 0xc8202ec640] } +&{~QProcessEnvironment QProcessEnvironment::~QProcessEnvironment commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess.h non destructor false false [] } +&{systemEnvironment QProcessEnvironment::systemEnvironment commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qprocess_wince.cpp non plain true false QProcessEnvironment [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QPropertyAnimation.txt b/internal/binding/dump/QtCore/QPropertyAnimation.txt new file mode 100755 index 00000000..583739de --- /dev/null +++ b/internal/binding/dump/QtCore/QPropertyAnimation.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{propertyName QPropertyAnimation::propertyName commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qpropertyanimation.cpp non plain false false QByteArray [] } +&{setPropertyName QPropertyAnimation::setPropertyName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qpropertyanimation.cpp non plain false false void [0xc8200ef500] } +&{setTargetObject QPropertyAnimation::setTargetObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qpropertyanimation.cpp non plain false false void [0xc8200ef6c0] } +&{targetObject QPropertyAnimation::targetObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qpropertyanimation.cpp non plain false false QObject * [] } +&{QPropertyAnimation QPropertyAnimation::QPropertyAnimation commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qpropertyanimation.h non constructor false false [0xc8200ef9c0] } +&{QPropertyAnimation QPropertyAnimation::QPropertyAnimation commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qpropertyanimation.h non constructor false true 2 [0xc8200efb80 0xc8200efc20 0xc8200efce0] } +&{event QPropertyAnimation::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qpropertyanimation.h impure plain false false bool [0xc8200efee0] } +&{updateCurrentValue QPropertyAnimation::updateCurrentValue commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qpropertyanimation.h impure plain false false void [0xc8201020a0] } +&{updateState QPropertyAnimation::updateState commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qpropertyanimation.h impure plain false false void [0xc8201022a0 0xc820102380] } +&{~QPropertyAnimation QPropertyAnimation::~QPropertyAnimation commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qpropertyanimation.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QQueue.txt b/internal/binding/dump/QtCore/QQueue.txt new file mode 100755 index 00000000..4b954764 --- /dev/null +++ b/internal/binding/dump/QtCore/QQueue.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QQueue QQueue::QQueue commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qqueue.h non constructor false false [] } +&{dequeue QQueue::dequeue commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qqueue.h non plain false false T [] } +&{enqueue QQueue::enqueue commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qqueue.h non plain false false void [0xc8205256a0] } +&{head QQueue::head commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qqueue.h non plain false false T & [] } +&{head QQueue::head commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qqueue.h non plain false true 2 const T & [] } +&{swap QQueue::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qqueue.h non plain false false void [0xc820525b80] } +&{~QQueue QQueue::~QQueue commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qqueue.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QReadLocker.txt b/internal/binding/dump/QtCore/QReadLocker.txt new file mode 100755 index 00000000..694a094f --- /dev/null +++ b/internal/binding/dump/QtCore/QReadLocker.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{QReadLocker QReadLocker::QReadLocker commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qreadwritelock.h non constructor false false [0xc8207019c0] } +&{readWriteLock QReadLocker::readWriteLock commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qreadwritelock.h non plain false false QReadWriteLock * [] } +&{relock QReadLocker::relock commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qreadwritelock.h non plain false false void [] } +&{unlock QReadLocker::unlock commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qreadwritelock.h non plain false false void [] } +&{~QReadLocker QReadLocker::~QReadLocker commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qreadwritelock.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QReadWriteLock.txt b/internal/binding/dump/QtCore/QReadWriteLock.txt new file mode 100755 index 00000000..acb801b3 --- /dev/null +++ b/internal/binding/dump/QtCore/QReadWriteLock.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{QReadWriteLock QReadWriteLock::QReadWriteLock commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qreadwritelock.h non constructor false false [0xc820716280] } +&{lockForRead QReadWriteLock::lockForRead commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qreadwritelock.h non plain false false void [] } +&{lockForWrite QReadWriteLock::lockForWrite commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qreadwritelock.h non plain false false void [] } +&{tryLockForRead QReadWriteLock::tryLockForRead commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qreadwritelock.h non plain false false bool [] } +&{tryLockForRead QReadWriteLock::tryLockForRead commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qreadwritelock.h non plain false true 2 bool [0xc820716740] } +&{tryLockForWrite QReadWriteLock::tryLockForWrite commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qreadwritelock.h non plain false false bool [] } +&{tryLockForWrite QReadWriteLock::tryLockForWrite commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qreadwritelock.h non plain false true 2 bool [0xc8207169c0] } +&{unlock QReadWriteLock::unlock commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qreadwritelock.h non plain false false void [] } +&{~QReadWriteLock QReadWriteLock::~QReadWriteLock commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qreadwritelock.h non destructor false false [] } +######################################## ENUMS ######################################## +&{RecursionMode QReadWriteLock::RecursionMode commendable public [0xc820716020 0xc8207160a0]} diff --git a/internal/binding/dump/QtCore/QRect.txt b/internal/binding/dump/QtCore/QRect.txt new file mode 100755 index 00000000..faddf885 --- /dev/null +++ b/internal/binding/dump/QtCore/QRect.txt @@ -0,0 +1,73 @@ +######################################## FUNCTIONS ######################################## +&{contains QRect::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.cpp non plain false false bool [0xc820aea8a0 0xc820aea940] } +&{contains QRect::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.cpp non plain false true 4 bool [0xc820aeab20 0xc820aeabc0] } +&{intersects QRect::intersects commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.cpp non plain false false bool [0xc820aeae20] } +&{operator& QRect::operator& commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.cpp non plain false false QRect [0xc820aeafe0] } +&{operator| QRect::operator| commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.cpp non plain false false QRect [0xc820aeb1e0] } +&{QRect QRect::QRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non constructor false false [] } +&{QRect QRect::QRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non constructor false true 2 [0xc820aeb440 0xc820aeb4e0] } +&{QRect QRect::QRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non constructor false true 3 [0xc820aeb6c0 0xc820aeb760] } +&{QRect QRect::QRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non constructor false true 4 [0xc820aeb960 0xc820aeba20 0xc820aebac0 0xc820aebb60] } +&{adjust QRect::adjust commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820aebd40 0xc820aebde0 0xc820aebea0 0xc820aebf40] } +&{adjusted QRect::adjusted commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QRect [0xc82080c240 0xc82080c300 0xc82080c440 0xc82080c4e0] } +&{bottom QRect::bottom commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false int [] } +&{bottomLeft QRect::bottomLeft commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QPoint [] } +&{bottomRight QRect::bottomRight commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QPoint [] } +&{center QRect::center commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QPoint [] } +&{contains QRect::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false true 3 bool [0xc82080cf80 0xc82080d0e0] } +&{contains QRect::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false true 2 bool [0xc82080d3c0 0xc82080d460 0xc82080d5c0] } +&{getCoords QRect::getCoords commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc82080d780 0xc82080d900 0xc82080da00 0xc82080db60] } +&{getRect QRect::getRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc82080de80 0xc82080df60 0xc82080dfe0 0xc8209080a0] } +&{height QRect::height commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false int [] } +&{intersected QRect::intersected commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QRect [0xc820908660] } +&{isEmpty QRect::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false bool [] } +&{isNull QRect::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false bool [] } +&{isValid QRect::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false bool [] } +&{left QRect::left commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false int [] } +&{marginsAdded QRect::marginsAdded commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QRect [0xc820908bc0] } +&{marginsRemoved QRect::marginsRemoved commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QRect [0xc820908e00] } +&{moveBottom QRect::moveBottom commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820909060] } +&{moveBottomLeft QRect::moveBottomLeft commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820909280] } +&{moveBottomRight QRect::moveBottomRight commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820909480] } +&{moveCenter QRect::moveCenter commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc8209096c0] } +&{moveLeft QRect::moveLeft commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc8209098c0] } +&{moveRight QRect::moveRight commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820909ac0] } +&{moveTo QRect::moveTo commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false true 2 void [0xc820909c40] } +&{moveTo QRect::moveTo commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820909ee0 0xc820909f60] } +&{moveTop QRect::moveTop commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820acc240] } +&{moveTopLeft QRect::moveTopLeft commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820acc500] } +&{moveTopRight QRect::moveTopRight commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820acc7e0] } +&{normalized QRect::normalized commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QRect [] } +&{operator&= QRect::operator&= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QRect & [0xc820accc00] } +&{operator+= QRect::operator+= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QRect & [0xc820accee0] } +&{operator-= QRect::operator-= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QRect & [0xc820acd120] } +&{operator|= QRect::operator|= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QRect & [0xc820acd360] } +&{right QRect::right commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false int [] } +&{setBottom QRect::setBottom commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820acd5e0] } +&{setBottomLeft QRect::setBottomLeft commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820acd7c0] } +&{setBottomRight QRect::setBottomRight commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820acdaa0] } +&{setCoords QRect::setCoords commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820acdc60 0xc820acdd00 0xc820acdde0 0xc820acdea0] } +&{setHeight QRect::setHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820c060e0] } +&{setLeft QRect::setLeft commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820c06300] } +&{setRect QRect::setRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820c06480 0xc820c06520 0xc820c065a0 0xc820c06640] } +&{setRight QRect::setRight commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820c06840] } +&{setSize QRect::setSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820c06a40] } +&{setTop QRect::setTop commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820c06c40] } +&{setTopLeft QRect::setTopLeft commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820c06ea0] } +&{setTopRight QRect::setTopRight commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820c070e0] } +&{setWidth QRect::setWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820c072e0] } +&{setX QRect::setX commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820c074a0] } +&{setY QRect::setY commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820c07640] } +&{size QRect::size commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QSize [] } +&{top QRect::top commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false int [] } +&{topLeft QRect::topLeft commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QPoint [] } +&{topRight QRect::topRight commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QPoint [] } +&{translate QRect::translate commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false true 2 void [0xc820c07b20] } +&{translate QRect::translate commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820c07d20 0xc820c07dc0] } +&{translated QRect::translated commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false true 2 QRect [0xc820d62020] } +&{translated QRect::translated commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QRect [0xc820d621e0 0xc820d62260] } +&{united QRect::united commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QRect [0xc820d62520] } +&{width QRect::width commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false int [] } +&{x QRect::x commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false int [] } +&{y QRect::y commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false int [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QRectF.txt b/internal/binding/dump/QtCore/QRectF.txt new file mode 100755 index 00000000..8ee6e72b --- /dev/null +++ b/internal/binding/dump/QtCore/QRectF.txt @@ -0,0 +1,75 @@ +######################################## FUNCTIONS ######################################## +&{contains QRectF::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.cpp non plain false false bool [0xc820d62940] } +&{contains QRectF::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.cpp non plain false true 3 bool [0xc820d62aa0] } +&{intersects QRectF::intersects commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.cpp non plain false false bool [0xc820d62c60] } +&{operator& QRectF::operator& commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.cpp non plain false false QRectF [0xc820d62e20] } +&{operator| QRectF::operator| commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.cpp non plain false false QRectF [0xc820d63000] } +&{toAlignedRect QRectF::toAlignedRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.cpp non plain false false QRect [] } +&{QRectF QRectF::QRectF commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non constructor false false [] } +&{QRectF QRectF::QRectF commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non constructor false true 3 [0xc820d632e0 0xc820d63360] } +&{QRectF QRectF::QRectF commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non constructor false true 2 [0xc820d634e0 0xc820d63560] } +&{QRectF QRectF::QRectF commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non constructor false true 5 [0xc820d636e0] } +&{QRectF QRectF::QRectF commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non constructor false true 4 [0xc820d63840 0xc820d638c0 0xc820d63940 0xc820d639c0] } +&{adjust QRectF::adjust commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d63b20 0xc820d63ba0 0xc820d63c40 0xc820d63cc0] } +&{adjusted QRectF::adjusted commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QRectF [0xc820d63ee0 0xc820d63f60 0xc820d63fe0 0xc820d50060] } +&{bottom QRectF::bottom commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false qreal [] } +&{bottomLeft QRectF::bottomLeft commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QPointF [] } +&{bottomRight QRectF::bottomRight commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QPointF [] } +&{center QRectF::center commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QPointF [] } +&{contains QRectF::contains commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false true 2 bool [0xc820d50660 0xc820d50700] } +&{getCoords QRectF::getCoords commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d50980 0xc820d50a00 0xc820d50aa0 0xc820d50b60] } +&{getRect QRectF::getRect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d50cc0 0xc820d50da0 0xc820d50e20 0xc820d50ea0] } +&{height QRectF::height commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false qreal [] } +&{intersected QRectF::intersected commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QRectF [0xc820d513e0] } +&{isEmpty QRectF::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false bool [] } +&{isNull QRectF::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false bool [] } +&{isValid QRectF::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false bool [] } +&{left QRectF::left commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false qreal [] } +&{marginsAdded QRectF::marginsAdded commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QRectF [0xc820d51840] } +&{marginsRemoved QRectF::marginsRemoved commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QRectF [0xc820d51a60] } +&{moveBottom QRectF::moveBottom commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d51c80] } +&{moveBottomLeft QRectF::moveBottomLeft commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d51e40] } +&{moveBottomRight QRectF::moveBottomRight commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d36000] } +&{moveCenter QRectF::moveCenter commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d36240] } +&{moveLeft QRectF::moveLeft commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d36420] } +&{moveRight QRectF::moveRight commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d36680] } +&{moveTo QRectF::moveTo commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false true 2 void [0xc820d36840] } +&{moveTo QRectF::moveTo commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d36a20 0xc820d36ae0] } +&{moveTop QRectF::moveTop commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d36cc0] } +&{moveTopLeft QRectF::moveTopLeft commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d36ee0] } +&{moveTopRight QRectF::moveTopRight commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d37100] } +&{normalized QRectF::normalized commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QRectF [] } +&{operator&= QRectF::operator&= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QRectF & [0xc820d37480] } +&{operator+= QRectF::operator+= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QRectF & [0xc820d376a0] } +&{operator-= QRectF::operator-= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QRectF & [0xc820d378e0] } +&{operator|= QRectF::operator|= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QRectF & [0xc820d37ba0] } +&{right QRectF::right commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false qreal [] } +&{setBottom QRectF::setBottom commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d37ea0] } +&{setBottomLeft QRectF::setBottomLeft commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d24100] } +&{setBottomRight QRectF::setBottomRight commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d24320] } +&{setCoords QRectF::setCoords commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d24580 0xc820d24620 0xc820d24700 0xc820d24780] } +&{setHeight QRectF::setHeight commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d249e0] } +&{setLeft QRectF::setLeft commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d24bc0] } +&{setRect QRectF::setRect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d24d80 0xc820d24e20 0xc820d24f00 0xc820d24f80] } +&{setRight QRectF::setRight commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d251a0] } +&{setSize QRectF::setSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d25380] } +&{setTop QRectF::setTop commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d25500] } +&{setTopLeft QRectF::setTopLeft commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d256c0] } +&{setTopRight QRectF::setTopRight commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d25880] } +&{setWidth QRectF::setWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d25a00] } +&{setX QRectF::setX commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d25b80] } +&{setY QRectF::setY commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d25d80] } +&{size QRectF::size commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QSizeF [] } +&{toRect QRectF::toRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QRect [] } +&{top QRectF::top commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false qreal [] } +&{topLeft QRectF::topLeft commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QPointF [] } +&{topRight QRectF::topRight commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QPointF [] } +&{translate QRectF::translate commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false true 2 void [0xc820d0a2e0] } +&{translate QRectF::translate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false void [0xc820d0a4e0 0xc820d0a560] } +&{translated QRectF::translated commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false true 2 QRectF [0xc820d0a780] } +&{translated QRectF::translated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QRectF [0xc820d0a9c0 0xc820d0aa40] } +&{united QRectF::united commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false QRectF [0xc820d0ada0] } +&{width QRectF::width commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false qreal [] } +&{x QRectF::x commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false qreal [] } +&{y QRectF::y commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qrect.h non plain false false qreal [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QRegExp.txt b/internal/binding/dump/QtCore/QRegExp.txt new file mode 100755 index 00000000..a65cb168 --- /dev/null +++ b/internal/binding/dump/QtCore/QRegExp.txt @@ -0,0 +1,33 @@ +######################################## FUNCTIONS ######################################## +&{QRegExp QRegExp::QRegExp commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non constructor false false [] } +&{QRegExp QRegExp::QRegExp commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non constructor false true 3 [0xc820cf5940] } +&{QRegExp QRegExp::QRegExp commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non constructor false true 2 [0xc820cf5b00 0xc820cf5bc0 0xc820cf5ce0] } +&{cap QRegExp::cap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non plain false false QString [0xc820cf5e80] } +&{errorString QRegExp::errorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non plain false false QString [] } +&{captureCount QRegExp::captureCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non plain false false int [] } +&{capturedTexts QRegExp::capturedTexts commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non plain false false QStringList [] } +&{caseSensitivity QRegExp::caseSensitivity commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non plain false false Qt::CaseSensitivity [] } +&{escape QRegExp::escape commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non plain true false QString [0xc820cd48a0] } +&{exactMatch QRegExp::exactMatch commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non plain false false bool [0xc820cd4b00] } +&{indexIn QRegExp::indexIn commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non plain false false int [0xc820cd4c60 0xc820cd4ce0 0xc820cd4d60] } +&{isEmpty QRegExp::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non plain false false bool [] } +&{isMinimal QRegExp::isMinimal commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non plain false false bool [] } +&{isValid QRegExp::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non plain false false bool [] } +&{lastIndexIn QRegExp::lastIndexIn commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non plain false false int [0xc820cd5200 0xc820cd5280 0xc820cd5340] } +&{matchedLength QRegExp::matchedLength commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non plain false false int [] } +&{operator!= QRegExp::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non plain false false bool [0xc820cd5620] } +&{operator= QRegExp::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non plain false true 2 QRegExp & [0xc820cd5860] } +&{operator= QRegExp::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non plain false false QRegExp & [0xc820cd5a60] } +&{operator== QRegExp::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non plain false false bool [0xc820cd5ca0] } +&{pattern QRegExp::pattern commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non plain false false QString [] } +&{patternSyntax QRegExp::patternSyntax commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non plain false false PatternSyntax [] } +&{pos QRegExp::pos commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non plain false false int [0xc820cd5fe0] } +&{setCaseSensitivity QRegExp::setCaseSensitivity commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non plain false false void [0xc820ca0440] } +&{setMinimal QRegExp::setMinimal commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non plain false false void [0xc820ca0700] } +&{setPattern QRegExp::setPattern commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non plain false false void [0xc820ca0940] } +&{setPatternSyntax QRegExp::setPatternSyntax commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non plain false false void [0xc820ca0b80] } +&{swap QRegExp::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non plain false false void [0xc820ca0d40] } +&{~QRegExp QRegExp::~QRegExp commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregexp.h non destructor false false [] } +######################################## ENUMS ######################################## +&{CaretMode QRegExp::CaretMode commendable public [0xc820cf5040 0xc820cf50c0 0xc820cf5140]} +&{PatternSyntax QRegExp::PatternSyntax commendable public [0xc820cf5340 0xc820cf53c0 0xc820cf5440 0xc820cf5500 0xc820cf55a0 0xc820cf5660]} diff --git a/internal/binding/dump/QtCore/QRegularExpression.txt b/internal/binding/dump/QtCore/QRegularExpression.txt new file mode 100755 index 00000000..732d0643 --- /dev/null +++ b/internal/binding/dump/QtCore/QRegularExpression.txt @@ -0,0 +1,29 @@ +######################################## FUNCTIONS ######################################## +&{QRegularExpression QRegularExpression::QRegularExpression commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non constructor false false [] } +&{QRegularExpression QRegularExpression::QRegularExpression commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non constructor false true 3 [0xc820c8dca0] } +&{QRegularExpression QRegularExpression::QRegularExpression commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non constructor false true 2 [0xc820c8df00 0xc820c8dfa0] } +&{captureCount QRegularExpression::captureCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false int [] } +&{errorString QRegularExpression::errorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false QString [] } +&{escape QRegularExpression::escape commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain true false QString [0xc820c767a0] } +&{globalMatch QRegularExpression::globalMatch commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false QRegularExpressionMatchIterator [0xc820c76a40 0xc820c76b20 0xc820c76bc0 0xc820c76c40] } +&{globalMatch QRegularExpression::globalMatch commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false true 2 QRegularExpressionMatchIterator [0xc820c76f40 0xc820c77080 0xc820c77100 0xc820c771c0] } +&{isValid QRegularExpression::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false bool [] } +&{match QRegularExpression::match commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false QRegularExpressionMatch [0xc820c77600 0xc820c776a0 0xc820c77720 0xc820c777a0] } +&{match QRegularExpression::match commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false true 2 QRegularExpressionMatch [0xc820c77b00 0xc820c77bc0 0xc820c77c60 0xc820c77d40] } +&{namedCaptureGroups QRegularExpression::namedCaptureGroups commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false QStringList [] } +&{operator!= QRegularExpression::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false bool [0xc820c62060] } +&{operator= QRegularExpression::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false true 2 QRegularExpression & [0xc820c62380] } +&{operator= QRegularExpression::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false QRegularExpression & [0xc820c626c0] } +&{operator== QRegularExpression::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false bool [0xc820c62960] } +&{optimize QRegularExpression::optimize commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false void [] } +&{pattern QRegularExpression::pattern commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false QString [] } +&{patternErrorOffset QRegularExpression::patternErrorOffset commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false int [] } +&{patternOptions QRegularExpression::patternOptions commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false PatternOptions [] } +&{setPattern QRegularExpression::setPattern commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false void [0xc820c630c0] } +&{setPatternOptions QRegularExpression::setPatternOptions commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false void [0xc820c63320] } +&{swap QRegularExpression::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false void [0xc820c635c0] } +&{~QRegularExpression QRegularExpression::~QRegularExpression commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non destructor false false [] } +######################################## ENUMS ######################################## +&{MatchOption QRegularExpression::MatchOption commendable public QRegularExpression::MatchOptions [0xc820c8c420 0xc820c8c520 0xc820c8c600]} +&{MatchType QRegularExpression::MatchType commendable public [0xc820c8c840 0xc820c8c900 0xc820c8ca60 0xc820c8cb20]} +&{PatternOption QRegularExpression::PatternOption commendable public QRegularExpression::PatternOptions [0xc820c8cd20 0xc820c8cdc0 0xc820c8cf20 0xc820c8cfe0 0xc820c8d100 0xc820c8d200 0xc820c8d340 0xc820c8d460 0xc820c8d580 0xc820c8d6e0]} diff --git a/internal/binding/dump/QtCore/QRegularExpressionMatch.txt b/internal/binding/dump/QtCore/QRegularExpressionMatch.txt new file mode 100755 index 00000000..6d7f6705 --- /dev/null +++ b/internal/binding/dump/QtCore/QRegularExpressionMatch.txt @@ -0,0 +1,26 @@ +######################################## FUNCTIONS ######################################## +&{QRegularExpressionMatch QRegularExpressionMatch::QRegularExpressionMatch commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non constructor false false [] } +&{QRegularExpressionMatch QRegularExpressionMatch::QRegularExpressionMatch commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non constructor false true 2 [0xc820c63d60] } +&{captured QRegularExpressionMatch::captured commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false true 2 QString [0xc820c48240] } +&{captured QRegularExpressionMatch::captured commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false QString [0xc820c48460] } +&{capturedEnd QRegularExpressionMatch::capturedEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false true 2 int [0xc820c48640] } +&{capturedEnd QRegularExpressionMatch::capturedEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false int [0xc820c487e0] } +&{capturedLength QRegularExpressionMatch::capturedLength commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false true 2 int [0xc820c48980] } +&{capturedLength QRegularExpressionMatch::capturedLength commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false int [0xc820c48b40] } +&{capturedRef QRegularExpressionMatch::capturedRef commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false true 2 QStringRef [0xc820c48ce0] } +&{capturedRef QRegularExpressionMatch::capturedRef commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false QStringRef [0xc820c48ea0] } +&{capturedStart QRegularExpressionMatch::capturedStart commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false true 2 int [0xc820c490a0] } +&{capturedStart QRegularExpressionMatch::capturedStart commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false int [0xc820c49280] } +&{capturedTexts QRegularExpressionMatch::capturedTexts commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false QStringList [] } +&{hasMatch QRegularExpressionMatch::hasMatch commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false bool [] } +&{hasPartialMatch QRegularExpressionMatch::hasPartialMatch commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false bool [] } +&{isValid QRegularExpressionMatch::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false bool [] } +&{lastCapturedIndex QRegularExpressionMatch::lastCapturedIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false int [] } +&{matchOptions QRegularExpressionMatch::matchOptions commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false QRegularExpression::MatchOptions [] } +&{matchType QRegularExpressionMatch::matchType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false QRegularExpression::MatchType [] } +&{operator= QRegularExpressionMatch::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false true 2 QRegularExpressionMatch & [0xc820c49ba0] } +&{operator= QRegularExpressionMatch::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false QRegularExpressionMatch & [0xc820c49de0] } +&{regularExpression QRegularExpressionMatch::regularExpression commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false QRegularExpression [] } +&{swap QRegularExpressionMatch::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false void [0xc820c34260] } +&{~QRegularExpressionMatch QRegularExpressionMatch::~QRegularExpressionMatch commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QRegularExpressionMatchIterator.txt b/internal/binding/dump/QtCore/QRegularExpressionMatchIterator.txt new file mode 100755 index 00000000..0ad4b79a --- /dev/null +++ b/internal/binding/dump/QtCore/QRegularExpressionMatchIterator.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QRegularExpressionMatchIterator QRegularExpressionMatchIterator::QRegularExpressionMatchIterator commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non constructor false false [] } +&{QRegularExpressionMatchIterator QRegularExpressionMatchIterator::QRegularExpressionMatchIterator commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non constructor false true 2 [0xc820c34a20] } +&{hasNext QRegularExpressionMatchIterator::hasNext commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false bool [] } +&{isValid QRegularExpressionMatchIterator::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false bool [] } +&{matchOptions QRegularExpressionMatchIterator::matchOptions commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false QRegularExpression::MatchOptions [] } +&{matchType QRegularExpressionMatchIterator::matchType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false QRegularExpression::MatchType [] } +&{next QRegularExpressionMatchIterator::next commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false QRegularExpressionMatch [] } +&{operator= QRegularExpressionMatchIterator::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false true 2 QRegularExpressionMatchIterator & [0xc820c35340] } +&{operator= QRegularExpressionMatchIterator::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false QRegularExpressionMatchIterator & [0xc820c354e0] } +&{peekNext QRegularExpressionMatchIterator::peekNext commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false QRegularExpressionMatch [] } +&{regularExpression QRegularExpressionMatchIterator::regularExpression commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false QRegularExpression [] } +&{swap QRegularExpressionMatchIterator::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non plain false false void [0xc820c358c0] } +&{~QRegularExpressionMatchIterator QRegularExpressionMatchIterator::~QRegularExpressionMatchIterator commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qregularexpression.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QResource.txt b/internal/binding/dump/QtCore/QResource.txt new file mode 100755 index 00000000..b2ca231b --- /dev/null +++ b/internal/binding/dump/QtCore/QResource.txt @@ -0,0 +1,20 @@ +######################################## FUNCTIONS ######################################## +&{registerResource QResource::registerResource commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qresource.cpp non plain true false bool [0xc8202ecd80 0xc8202ece00] } +&{registerResource QResource::registerResource commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qresource.cpp non plain true true 2 bool [0xc8202ed020 0xc8202ed0c0] } +&{unregisterResource QResource::unregisterResource commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qresource.cpp non plain true false bool [0xc8202ed360 0xc8202ed3e0] } +&{unregisterResource QResource::unregisterResource commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qresource.cpp non plain true true 2 bool [0xc8202ed660 0xc8202ed6e0] } +&{QResource QResource::QResource commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qresource.h non constructor false false [0xc8202ed920 0xc8202eda00] } +&{absoluteFilePath QResource::absoluteFilePath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qresource.h non plain false false QString [] } +&{children QResource::children commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qresource.h non plain false false QStringList [] } +&{data QResource::data commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qresource.h non plain false false const uchar * [] } +&{fileName QResource::fileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qresource.h non plain false false QString [] } +&{isCompressed QResource::isCompressed commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qresource.h non plain false false bool [] } +&{isDir QResource::isDir commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qresource.h non plain false false bool [] } +&{isFile QResource::isFile commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qresource.h non plain false false bool [] } +&{isValid QResource::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qresource.h non plain false false bool [] } +&{locale QResource::locale commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qresource.h non plain false false QLocale [] } +&{setFileName QResource::setFileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qresource.h non plain false false void [0xc8202d09a0] } +&{setLocale QResource::setLocale commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qresource.h non plain false false void [0xc8202d0bc0] } +&{size QResource::size commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qresource.h non plain false false qint64 [] } +&{~QResource QResource::~QResource commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qresource.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QRunnable.txt b/internal/binding/dump/QtCore/QRunnable.txt new file mode 100755 index 00000000..217f9393 --- /dev/null +++ b/internal/binding/dump/QtCore/QRunnable.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{QRunnable QRunnable::QRunnable commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qrunnable.h non constructor false false [] } +&{autoDelete QRunnable::autoDelete commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qrunnable.h non plain false false bool [] } +&{run QRunnable::run commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qrunnable.h pure plain false false void [] } +&{setAutoDelete QRunnable::setAutoDelete commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qrunnable.h non plain false false void [0xc8207176a0] } +&{~QRunnable QRunnable::~QRunnable commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qrunnable.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QSaveFile.txt b/internal/binding/dump/QtCore/QSaveFile.txt new file mode 100755 index 00000000..67d07bcf --- /dev/null +++ b/internal/binding/dump/QtCore/QSaveFile.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QSaveFile QSaveFile::QSaveFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsavefile.h non constructor false true 2 [0xc8202d1200] } +&{QSaveFile QSaveFile::QSaveFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsavefile.h non constructor false false [0xc8202d1440] } +&{QSaveFile QSaveFile::QSaveFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsavefile.h non constructor false true 3 [0xc8202d16c0 0xc8202d1740] } +&{cancelWriting QSaveFile::cancelWriting commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsavefile.h non plain false false void [] } +&{commit QSaveFile::commit commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsavefile.h non plain false false bool [] } +&{directWriteFallback QSaveFile::directWriteFallback commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsavefile.h non plain false false bool [] } +&{fileName QSaveFile::fileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsavefile.h impure plain false false QString [] } +&{open QSaveFile::open commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsavefile.h impure plain false false bool [0xc8202d1f80] } +&{setDirectWriteFallback QSaveFile::setDirectWriteFallback commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsavefile.h non plain false false void [0xc8202c2180] } +&{setFileName QSaveFile::setFileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsavefile.h non plain false false void [0xc8202c23c0] } +&{writeData QSaveFile::writeData commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsavefile.h impure plain false false qint64 [0xc8202c2620 0xc8202c26c0] } +&{~QSaveFile QSaveFile::~QSaveFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsavefile.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QScopedArrayPointer.txt b/internal/binding/dump/QtCore/QScopedArrayPointer.txt new file mode 100755 index 00000000..8246b824 --- /dev/null +++ b/internal/binding/dump/QtCore/QScopedArrayPointer.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{QScopedArrayPointer QScopedArrayPointer::QScopedArrayPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qscopedpointer.h non constructor false false [] } +&{operator[] QScopedArrayPointer::operator[] commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qscopedpointer.h non plain false false T & [0xc820c2cec0] } +&{operator[] QScopedArrayPointer::operator[] commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qscopedpointer.h non plain false true 2 const T & [0xc820c2d120] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QScopedPointer.txt b/internal/binding/dump/QtCore/QScopedPointer.txt new file mode 100755 index 00000000..3057b136 --- /dev/null +++ b/internal/binding/dump/QtCore/QScopedPointer.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QScopedPointer QScopedPointer::QScopedPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qscopedpointer.h non constructor false false [0xc820c2d700] } +&{data QScopedPointer::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qscopedpointer.h non plain false false T * [] } +&{isNull QScopedPointer::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qscopedpointer.h non plain false false bool [] } +&{operator bool QScopedPointer::operator bool commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qscopedpointer.h non plain false false [] } +&{operator! QScopedPointer::operator! commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qscopedpointer.h non plain false false bool [] } +&{operator* QScopedPointer::operator* commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qscopedpointer.h non plain false false T & [] } +&{operator-> QScopedPointer::operator-> commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qscopedpointer.h non plain false false T * [] } +&{reset QScopedPointer::reset commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qscopedpointer.h non plain false false void [0xc820c24140] } +&{swap QScopedPointer::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qscopedpointer.h non plain false false void [0xc820c243c0] } +&{take QScopedPointer::take commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qscopedpointer.h non plain false false T * [] } +&{~QScopedPointer QScopedPointer::~QScopedPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qscopedpointer.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QScopedValueRollback.txt b/internal/binding/dump/QtCore/QScopedValueRollback.txt new file mode 100755 index 00000000..eadb1476 --- /dev/null +++ b/internal/binding/dump/QtCore/QScopedValueRollback.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QScopedValueRollback QScopedValueRollback::QScopedValueRollback commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qscopedvaluerollback.h non constructor false false [0xc820c24f00] } +&{QScopedValueRollback QScopedValueRollback::QScopedValueRollback commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qscopedvaluerollback.h non constructor false true 2 [0xc820c25160 0xc820c25200] } +&{commit QScopedValueRollback::commit commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qscopedvaluerollback.h non plain false false void [] } +&{~QScopedValueRollback QScopedValueRollback::~QScopedValueRollback commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qscopedvaluerollback.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QSemaphore.txt b/internal/binding/dump/QtCore/QSemaphore.txt new file mode 100755 index 00000000..a2ce6b60 --- /dev/null +++ b/internal/binding/dump/QtCore/QSemaphore.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QSemaphore QSemaphore::QSemaphore commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qsemaphore.h non constructor false false [0xc820717aa0] } +&{acquire QSemaphore::acquire commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qsemaphore.h non plain false false void [0xc820717c80] } +&{available QSemaphore::available commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qsemaphore.h non plain false false int [] } +&{release QSemaphore::release commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qsemaphore.h non plain false false void [0xc820717f60] } +&{tryAcquire QSemaphore::tryAcquire commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qsemaphore.h non plain false false bool [0xc82072c160] } +&{tryAcquire QSemaphore::tryAcquire commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qsemaphore.h non plain false true 2 bool [0xc82072c320 0xc82072c3a0] } +&{~QSemaphore QSemaphore::~QSemaphore commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qsemaphore.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QSequentialAnimationGroup.txt b/internal/binding/dump/QtCore/QSequentialAnimationGroup.txt new file mode 100755 index 00000000..8923f361 --- /dev/null +++ b/internal/binding/dump/QtCore/QSequentialAnimationGroup.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{currentAnimation QSequentialAnimationGroup::currentAnimation commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qsequentialanimationgroup.cpp non plain false false QAbstractAnimation * [] } +&{QSequentialAnimationGroup QSequentialAnimationGroup::QSequentialAnimationGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qsequentialanimationgroup.h non constructor false false [0xc820102c40] } +&{addPause QSequentialAnimationGroup::addPause commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qsequentialanimationgroup.h non plain false false QPauseAnimation * [0xc8201031e0] } +&{currentAnimationChanged QSequentialAnimationGroup::currentAnimationChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qsequentialanimationgroup.h non signal false false void [0xc8201033e0] } +&{duration QSequentialAnimationGroup::duration commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qsequentialanimationgroup.h impure plain false false int [] } +&{event QSequentialAnimationGroup::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qsequentialanimationgroup.h impure plain false false bool [0xc8201036a0] } +&{insertPause QSequentialAnimationGroup::insertPause commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qsequentialanimationgroup.h non plain false false QPauseAnimation * [0xc820103880 0xc820103900] } +&{updateCurrentTime QSequentialAnimationGroup::updateCurrentTime commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qsequentialanimationgroup.h impure plain false false void [0xc820103ac0] } +&{updateDirection QSequentialAnimationGroup::updateDirection commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qsequentialanimationgroup.h impure plain false false void [0xc820103c40] } +&{updateState QSequentialAnimationGroup::updateState commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qsequentialanimationgroup.h impure plain false false void [0xc820103e00 0xc820103ee0] } +&{~QSequentialAnimationGroup QSequentialAnimationGroup::~QSequentialAnimationGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qsequentialanimationgroup.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QSequentialIterable.txt b/internal/binding/dump/QtCore/QSequentialIterable.txt new file mode 100755 index 00000000..20c64f45 --- /dev/null +++ b/internal/binding/dump/QtCore/QSequentialIterable.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{begin QSequentialIterable::begin commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non plain false false const_iterator [] } +&{at QSequentialIterable::at commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false QVariant [0xc820274440] } +&{canReverseIterate QSequentialIterable::canReverseIterate commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false bool [] } +&{end QSequentialIterable::end commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false const_iterator [] } +&{size QSequentialIterable::size commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false int [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QSet.txt b/internal/binding/dump/QtCore/QSet.txt new file mode 100755 index 00000000..3f04cf37 --- /dev/null +++ b/internal/binding/dump/QtCore/QSet.txt @@ -0,0 +1,54 @@ +######################################## FUNCTIONS ######################################## +&{QSet QSet::QSet commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non constructor false false [] } +&{QSet QSet::QSet commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non constructor false true 4 [0xc820be4e20] } +&{QSet QSet::QSet commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non constructor false true 3 [0xc820be4f80] } +&{QSet QSet::QSet commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non constructor false true 2 [0xc820be50e0] } +&{begin QSet::begin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false true 2 iterator [] } +&{begin QSet::begin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false const_iterator [] } +&{capacity QSet::capacity commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false int [] } +&{cbegin QSet::cbegin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false const_iterator [] } +&{cend QSet::cend commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false const_iterator [] } +&{clear QSet::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false void [] } +&{constBegin QSet::constBegin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false const_iterator [] } +&{constEnd QSet::constEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false const_iterator [] } +&{constFind QSet::constFind commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false const_iterator [0xc820be5880] } +&{contains QSet::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false true 2 bool [0xc820be5a40] } +&{contains QSet::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false bool [0xc820be5c00] } +&{count QSet::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false int [] } +&{empty QSet::empty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false bool [] } +&{end QSet::end commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false true 2 iterator [] } +&{end QSet::end commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false const_iterator [] } +&{erase QSet::erase commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false iterator [0xc820bc8140] } +&{find QSet::find commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false true 2 iterator [0xc820bc8340] } +&{find QSet::find commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false const_iterator [0xc820bc84c0] } +&{fromList QSet::fromList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain true false QSet [0xc820bc8660] } +&{insert QSet::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false iterator [0xc820bc8840] } +&{intersect QSet::intersect commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false QSet & [0xc820bc8a00] } +&{isEmpty QSet::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false bool [] } +&{operator!= QSet::operator!= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false bool [0xc820bc8fc0] } +&{operator& QSet::operator& commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false QSet [0xc820bc91a0] } +&{operator&= QSet::operator&= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false QSet & [0xc820bc93a0] } +&{operator&= QSet::operator&= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false true 2 QSet & [0xc820bc95c0] } +&{operator+ QSet::operator+ commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false QSet [0xc820bc9760] } +&{operator+= QSet::operator+= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false QSet & [0xc820bc9920] } +&{operator+= QSet::operator+= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false true 2 QSet & [0xc820bc9b60] } +&{operator- QSet::operator- commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false QSet [0xc820bc9d40] } +&{operator-= QSet::operator-= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false QSet & [0xc820bc9f60] } +&{operator-= QSet::operator-= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false true 2 QSet & [0xc820bc0120] } +&{operator<< QSet::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false QSet & [0xc820bc02a0] } +&{operator= QSet::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false true 2 QSet & [0xc820bc0400] } +&{operator= QSet::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false QSet & [0xc820bc05c0] } +&{operator== QSet::operator== commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false bool [0xc820bc07c0] } +&{operator| QSet::operator| commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false QSet [0xc820bc09a0] } +&{operator|= QSet::operator|= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false QSet & [0xc820bc0ba0] } +&{operator|= QSet::operator|= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false true 2 QSet & [0xc820bc0d80] } +&{remove QSet::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false bool [0xc820bc0f60] } +&{reserve QSet::reserve commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false void [0xc820bc1160] } +&{size QSet::size commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false int [] } +&{squeeze QSet::squeeze commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false void [] } +&{subtract QSet::subtract commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false QSet & [0xc820bc16e0] } +&{swap QSet::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false void [0xc820bc18c0] } +&{toList QSet::toList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false QList [] } +&{unite QSet::unite commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false QSet & [0xc820bc1b00] } +&{values QSet::values commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qset.h non plain false false QList [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QSetIterator.txt b/internal/binding/dump/QtCore/QSetIterator.txt new file mode 100755 index 00000000..0c35c741 --- /dev/null +++ b/internal/binding/dump/QtCore/QSetIterator.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QSetIterator QSetIterator::QSetIterator commendable public qset.h non constructor false false [0xc8202742c0] } +&{findNext QSetIterator::findNext commendable public qset.h non plain false false bool [0xc8202747c0] } +&{findPrevious QSetIterator::findPrevious commendable public qset.h non plain false false bool [0xc820274ca0] } +&{hasNext QSetIterator::hasNext commendable public qset.h non plain false false bool [] } +&{hasPrevious QSetIterator::hasPrevious commendable public qset.h non plain false false bool [] } +&{next QSetIterator::next commendable public qset.h non plain false false const T & [] } +&{operator= QSetIterator::operator= commendable public qset.h non plain false false QSetIterator & [0xc820275a20] } +&{peekNext QSetIterator::peekNext commendable public qset.h non plain false false const T & [] } +&{peekPrevious QSetIterator::peekPrevious commendable public qset.h non plain false false const T & [] } +&{previous QSetIterator::previous commendable public qset.h non plain false false const T & [] } +&{toBack QSetIterator::toBack commendable public qset.h non plain false false void [] } +&{toFront QSetIterator::toFront commendable public qset.h non plain false false void [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QSettings.txt b/internal/binding/dump/QtCore/QSettings.txt new file mode 100755 index 00000000..6aab51da --- /dev/null +++ b/internal/binding/dump/QtCore/QSettings.txt @@ -0,0 +1,44 @@ +######################################## FUNCTIONS ######################################## +&{QSettings QSettings::QSettings commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non constructor false true 3 [0xc8202b2860 0xc8202b28e0 0xc8202b29a0 0xc8202b2a20 0xc8202b2ac0] } +&{QSettings QSettings::QSettings commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non constructor false true 5 [0xc8202b2d20] } +&{QSettings QSettings::QSettings commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non constructor false true 2 [0xc8202b2f80 0xc8202b3000 0xc8202b3080 0xc8202b3160] } +&{QSettings QSettings::QSettings commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non constructor false true 4 [0xc8202b3380 0xc8202b3400 0xc8202b3480] } +&{QSettings QSettings::QSettings commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non constructor false false [0xc8202b36e0 0xc8202b3780 0xc8202b3800] } +&{allKeys QSettings::allKeys commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false false QStringList [] } +&{applicationName QSettings::applicationName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false false QString [] } +&{beginGroup QSettings::beginGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false false void [0xc8202b3c20] } +&{beginReadArray QSettings::beginReadArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false false int [0xc8202b3e60] } +&{beginWriteArray QSettings::beginWriteArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false false void [0xc82029a0e0 0xc82029a180] } +&{childGroups QSettings::childGroups commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false false QStringList [] } +&{childKeys QSettings::childKeys commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false false QStringList [] } +&{clear QSettings::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false false void [] } +&{contains QSettings::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false false bool [0xc82029a720] } +&{defaultFormat QSettings::defaultFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain true false Format [] } +&{endArray QSettings::endArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false false void [] } +&{endGroup QSettings::endGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false false void [] } +&{event QSettings::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h impure plain false false bool [0xc82029ace0] } +&{fallbacksEnabled QSettings::fallbacksEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false false bool [] } +&{fileName QSettings::fileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false false QString [] } +&{format QSettings::format commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false false Format [] } +&{group QSettings::group commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false false QString [] } +&{iniCodec QSettings::iniCodec commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false false QTextCodec * [] } +&{isWritable QSettings::isWritable commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false false bool [] } +&{organizationName QSettings::organizationName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false false QString [] } +&{registerFormat QSettings::registerFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain true false Format [0xc82029b6c0 0xc82029b760 0xc82029b7e0 0xc82029b8c0] } +&{remove QSettings::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false false void [0xc82029bb20] } +&{scope QSettings::scope commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false false Scope [] } +&{setArrayIndex QSettings::setArrayIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false false void [0xc82029be00] } +&{setDefaultFormat QSettings::setDefaultFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain true false void [0xc820290020] } +&{setFallbacksEnabled QSettings::setFallbacksEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false false void [0xc8202902a0] } +&{setIniCodec QSettings::setIniCodec commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false false void [0xc820290520] } +&{setIniCodec QSettings::setIniCodec commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false true 2 void [0xc820290760] } +&{setPath QSettings::setPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain true false void [0xc8202909a0 0xc820290a60 0xc820290b00] } +&{setValue QSettings::setValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false false void [0xc8202911a0 0xc820291240] } +&{status QSettings::status commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false false Status [] } +&{sync QSettings::sync commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false false void [] } +&{value QSettings::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non plain false false QVariant [0xc820291620 0xc8202916c0] } +&{~QSettings QSettings::~QSettings commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qsettings.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Format QSettings::Format commendable public [0xc8202c32a0 0xc8202c3340 0xc8202c3400 0xc8202c3480 0xc8202c3540 0xc8202c35c0 0xc8202c3660 0xc8202c3720 0xc8202c37c0 0xc8202c3860 0xc8202c3940 0xc8202c39c0 0xc8202c3a40 0xc8202c3ae0 0xc8202c3b80 0xc8202c3c00 0xc8202c3ce0 0xc8202c3d60 0xc8202c3e40]} +&{Scope QSettings::Scope commendable public [0xc8202b2000 0xc8202b2080]} +&{Status QSettings::Status commendable public [0xc8202b2280 0xc8202b2300 0xc8202b2380]} diff --git a/internal/binding/dump/QtCore/QSharedData.txt b/internal/binding/dump/QtCore/QSharedData.txt new file mode 100755 index 00000000..b4835eb0 --- /dev/null +++ b/internal/binding/dump/QtCore/QSharedData.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{QSharedData QSharedData::QSharedData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non constructor false false [] } +&{QSharedData QSharedData::QSharedData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non constructor false true 2 [0xc820ba9fe0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QSharedDataPointer.txt b/internal/binding/dump/QtCore/QSharedDataPointer.txt new file mode 100755 index 00000000..25293336 --- /dev/null +++ b/internal/binding/dump/QtCore/QSharedDataPointer.txt @@ -0,0 +1,25 @@ +######################################## FUNCTIONS ######################################## +&{detach QSharedDataPointer::detach commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.cpp non plain false false void [] } +&{QSharedDataPointer QSharedDataPointer::QSharedDataPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non constructor false false [] } +&{QSharedDataPointer QSharedDataPointer::QSharedDataPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non constructor false true 4 [0xc820b8ebe0] } +&{QSharedDataPointer QSharedDataPointer::QSharedDataPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non constructor false true 2 [0xc820b8edc0] } +&{QSharedDataPointer QSharedDataPointer::QSharedDataPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non constructor false true 3 [0xc820b8efe0] } +&{constData QSharedDataPointer::constData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false false const T * [] } +&{data QSharedDataPointer::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false false T * [] } +&{data QSharedDataPointer::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false true 2 const T * [] } +&{operator T * QSharedDataPointer::operator T * commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false false [] } +&{operator const T * QSharedDataPointer::operator const T * commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false false [] } +&{operator! QSharedDataPointer::operator! commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false false bool [] } +&{operator!= QSharedDataPointer::operator!= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false false bool [0xc820b8f920] } +&{operator* QSharedDataPointer::operator* commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false false T & [] } +&{operator* QSharedDataPointer::operator* commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false true 2 const T & [] } +&{operator-> QSharedDataPointer::operator-> commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false false T * [] } +&{operator-> QSharedDataPointer::operator-> commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false true 2 const T * [] } +&{operator= QSharedDataPointer::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false true 2 QSharedDataPointer & [0xc820b8fec0] } +&{operator= QSharedDataPointer::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false true 3 QSharedDataPointer & [0xc820b7e1a0] } +&{operator= QSharedDataPointer::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false false QSharedDataPointer & [0xc820b7e440] } +&{operator== QSharedDataPointer::operator== commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false false bool [0xc820b7e700] } +&{swap QSharedDataPointer::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non plain false false void [0xc820b7e960] } +&{~QSharedDataPointer QSharedDataPointer::~QSharedDataPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qshareddata.h non destructor false false [] } +&{clone QSharedDataPointer::clone commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezoneprivate.cpp non plain false false T * [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QSharedMemory.txt b/internal/binding/dump/QtCore/QSharedMemory.txt new file mode 100755 index 00000000..652bdf96 --- /dev/null +++ b/internal/binding/dump/QtCore/QSharedMemory.txt @@ -0,0 +1,23 @@ +######################################## FUNCTIONS ######################################## +&{QSharedMemory QSharedMemory::QSharedMemory commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsharedmemory.h non constructor false true 2 [0xc820344060] } +&{QSharedMemory QSharedMemory::QSharedMemory commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsharedmemory.h non constructor false false [0xc820344300 0xc8203443e0] } +&{attach QSharedMemory::attach commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsharedmemory.h non plain false false bool [0xc820344700] } +&{constData QSharedMemory::constData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsharedmemory.h non plain false false const void * [] } +&{create QSharedMemory::create commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsharedmemory.h non plain false false bool [0xc820344a40 0xc820344ae0] } +&{data QSharedMemory::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsharedmemory.h non plain false false void * [] } +&{data QSharedMemory::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsharedmemory.h non plain false true 2 const void * [] } +&{detach QSharedMemory::detach commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsharedmemory.h non plain false false bool [] } +&{error QSharedMemory::error commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsharedmemory.h non plain false false SharedMemoryError [] } +&{errorString QSharedMemory::errorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsharedmemory.h non plain false false QString [] } +&{isAttached QSharedMemory::isAttached commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsharedmemory.h non plain false false bool [] } +&{key QSharedMemory::key commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsharedmemory.h non plain false false QString [] } +&{lock QSharedMemory::lock commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsharedmemory.h non plain false false bool [] } +&{nativeKey QSharedMemory::nativeKey commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsharedmemory.h non plain false false QString [] } +&{setKey QSharedMemory::setKey commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsharedmemory.h non plain false false void [0xc820345b40] } +&{setNativeKey QSharedMemory::setNativeKey commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsharedmemory.h non plain false false void [0xc820345e20] } +&{size QSharedMemory::size commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsharedmemory.h non plain false false int [] } +&{unlock QSharedMemory::unlock commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsharedmemory.h non plain false false bool [] } +&{~QSharedMemory QSharedMemory::~QSharedMemory commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsharedmemory.h non destructor false false [] } +######################################## ENUMS ######################################## +&{AccessMode QSharedMemory::AccessMode commendable public [0xc820357320 0xc820357420]} +&{SharedMemoryError QSharedMemory::SharedMemoryError commendable public [0xc8203576a0 0xc820357720 0xc820357880 0xc820357900 0xc8203579e0 0xc820357a60 0xc820357b40 0xc820357c20 0xc820357d00]} diff --git a/internal/binding/dump/QtCore/QSharedPointer.txt b/internal/binding/dump/QtCore/QSharedPointer.txt new file mode 100755 index 00000000..00f3c612 --- /dev/null +++ b/internal/binding/dump/QtCore/QSharedPointer.txt @@ -0,0 +1,28 @@ +######################################## FUNCTIONS ######################################## +&{QSharedPointer QSharedPointer::QSharedPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non constructor false false [] } +&{QSharedPointer QSharedPointer::QSharedPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non constructor false true 2 [0xc820b7f5a0] } +&{QSharedPointer QSharedPointer::QSharedPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non constructor false true 3 [0xc820b7f740 0xc820b7f7e0] } +&{QSharedPointer QSharedPointer::QSharedPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non constructor false true 4 [0xc820b7fa20] } +&{QSharedPointer QSharedPointer::QSharedPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non constructor false true 5 [0xc820b7fcc0] } +&{clear QSharedPointer::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false false void [] } +&{constCast QSharedPointer::constCast commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false false QSharedPointer [] } +&{create QSharedPointer::create commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain true false QSharedPointer [] } +&{create QSharedPointer::create commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain true true 2 QSharedPointer [0xc820b66440] } +&{data QSharedPointer::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false false T * [] } +&{dynamicCast QSharedPointer::dynamicCast commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false false QSharedPointer [] } +&{isNull QSharedPointer::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false false bool [] } +&{objectCast QSharedPointer::objectCast commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false false QSharedPointer [] } +&{operator bool QSharedPointer::operator bool commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false false [] } +&{operator! QSharedPointer::operator! commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false false bool [] } +&{operator* QSharedPointer::operator* commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false false T & [] } +&{operator-> QSharedPointer::operator-> commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false false T * [] } +&{operator= QSharedPointer::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false false QSharedPointer & [0xc820b66f80] } +&{operator= QSharedPointer::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false true 2 QSharedPointer & [0xc820b67200] } +&{reset QSharedPointer::reset commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false false void [] } +&{reset QSharedPointer::reset commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false true 2 void [0xc820b675c0] } +&{reset QSharedPointer::reset commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false true 3 void [0xc820b677e0 0xc820b67880] } +&{staticCast QSharedPointer::staticCast commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false false QSharedPointer [] } +&{swap QSharedPointer::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false false void [0xc820b67c20] } +&{toWeakRef QSharedPointer::toWeakRef commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false false QWeakPointer [] } +&{~QSharedPointer QSharedPointer::~QSharedPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QSignalBlocker.txt b/internal/binding/dump/QtCore/QSignalBlocker.txt new file mode 100755 index 00000000..dc79eac8 --- /dev/null +++ b/internal/binding/dump/QtCore/QSignalBlocker.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QSignalBlocker QSignalBlocker::QSignalBlocker commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non constructor false true 3 [0xc82044ae20] } +&{QSignalBlocker QSignalBlocker::QSignalBlocker commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non constructor false false [0xc82044b060] } +&{QSignalBlocker QSignalBlocker::QSignalBlocker commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non constructor false true 2 [0xc82044b2a0] } +&{operator= QSignalBlocker::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false false QSignalBlocker & [0xc82044b560] } +&{reblock QSignalBlocker::reblock commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false false void [] } +&{unblock QSignalBlocker::unblock commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non plain false false void [] } +&{~QSignalBlocker QSignalBlocker::~QSignalBlocker commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qobject.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QSignalMapper.txt b/internal/binding/dump/QtCore/QSignalMapper.txt new file mode 100755 index 00000000..4127366b --- /dev/null +++ b/internal/binding/dump/QtCore/QSignalMapper.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{QSignalMapper QSignalMapper::QSignalMapper commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsignalmapper.h non constructor false false [0xc8203145c0] } +&{map QSignalMapper::map commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsignalmapper.h non slot false false void [] } +&{map QSignalMapper::map commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsignalmapper.h non slot false true 2 void [0xc820314c40] } +&{mapped QSignalMapper::mapped commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsignalmapper.h non signal false true 4 void [0xc820314f60] } +&{mapped QSignalMapper::mapped commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsignalmapper.h non signal false true 3 void [0xc820315200] } +&{mapped QSignalMapper::mapped commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsignalmapper.h non signal false true 2 void [0xc820315580] } +&{mapped QSignalMapper::mapped commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsignalmapper.h non signal false false void [0xc820315820] } +&{mapping QSignalMapper::mapping commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsignalmapper.h non plain false true 4 QObject * [0xc820315b40] } +&{mapping QSignalMapper::mapping commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsignalmapper.h non plain false true 3 QObject * [0xc820315de0] } +&{mapping QSignalMapper::mapping commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsignalmapper.h non plain false true 2 QObject * [0xc8202fe0a0] } +&{mapping QSignalMapper::mapping commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsignalmapper.h non plain false false QObject * [0xc8202fe2e0] } +&{removeMappings QSignalMapper::removeMappings commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsignalmapper.h non plain false false void [0xc8202fe4e0] } +&{setMapping QSignalMapper::setMapping commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsignalmapper.h non plain false true 4 void [0xc8202fe720 0xc8202fe7a0] } +&{setMapping QSignalMapper::setMapping commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsignalmapper.h non plain false true 3 void [0xc8202fe9e0 0xc8202fea80] } +&{setMapping QSignalMapper::setMapping commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsignalmapper.h non plain false true 2 void [0xc8202fec80 0xc8202fed20] } +&{setMapping QSignalMapper::setMapping commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsignalmapper.h non plain false false void [0xc8202fef80 0xc8202ff020] } +&{~QSignalMapper QSignalMapper::~QSignalMapper commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsignalmapper.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QSignalTransition.txt b/internal/binding/dump/QtCore/QSignalTransition.txt new file mode 100755 index 00000000..da1035f0 --- /dev/null +++ b/internal/binding/dump/QtCore/QSignalTransition.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QSignalTransition QSignalTransition::QSignalTransition commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qsignaltransition.h non constructor false false [0xc8200a4ba0] } +&{QSignalTransition QSignalTransition::QSignalTransition commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qsignaltransition.h non constructor false true 2 [0xc8200a4f60 0xc8200a5020 0xc8200a5200] } +&{event QSignalTransition::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qsignaltransition.h impure plain false false bool [0xc8200a5540] } +&{eventTest QSignalTransition::eventTest commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qsignaltransition.h impure plain false false bool [0xc8200a5980] } +&{onTransition QSignalTransition::onTransition commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qsignaltransition.h impure plain false false void [0xc8200a5d40] } +&{senderObject QSignalTransition::senderObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qsignaltransition.h non plain false false QObject * [] } +&{senderObjectChanged QSignalTransition::senderObjectChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qsignaltransition.h non signal false false void [] } +&{setSenderObject QSignalTransition::setSenderObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qsignaltransition.h non plain false false void [0xc82017e440] } +&{setSignal QSignalTransition::setSignal commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qsignaltransition.h non plain false false void [0xc82017e780] } +&{signal QSignalTransition::signal commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qsignaltransition.h non plain false false QByteArray [] } +&{signalChanged QSignalTransition::signalChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qsignaltransition.h non signal false false void [] } +&{~QSignalTransition QSignalTransition::~QSignalTransition commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qsignaltransition.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QSize.txt b/internal/binding/dump/QtCore/QSize.txt new file mode 100755 index 00000000..f240f96b --- /dev/null +++ b/internal/binding/dump/QtCore/QSize.txt @@ -0,0 +1,25 @@ +######################################## FUNCTIONS ######################################## +&{QSize QSize::QSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non constructor false false [] } +&{QSize QSize::QSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non constructor false true 2 [0xc820b28500 0xc820b285e0] } +&{boundedTo QSize::boundedTo commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false QSize [0xc820b28800] } +&{expandedTo QSize::expandedTo commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false QSize [0xc820b28b00] } +&{height QSize::height commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false int [] } +&{isEmpty QSize::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false bool [] } +&{isNull QSize::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false bool [] } +&{isValid QSize::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false bool [] } +&{operator*= QSize::operator*= commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false QSize & [0xc820b29200] } +&{operator+= QSize::operator+= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false QSize & [0xc820b29440] } +&{operator-= QSize::operator-= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false QSize & [0xc820b296a0] } +&{operator/= QSize::operator/= commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false QSize & [0xc820b298c0] } +&{rheight QSize::rheight commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false int & [] } +&{rwidth QSize::rwidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false int & [] } +&{scale QSize::scale commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false true 2 void [0xc820b29be0 0xc820b29d00] } +&{scale QSize::scale commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false void [0xc820b29f80 0xc820b18060 0xc820b18120] } +&{scaled QSize::scaled commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false true 2 QSize [0xc820b18360 0xc820b18420] } +&{scaled QSize::scaled commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false QSize [0xc820b185c0 0xc820b18660 0xc820b18700] } +&{setHeight QSize::setHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false void [0xc820b18940] } +&{setWidth QSize::setWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false void [0xc820b18ae0] } +&{transpose QSize::transpose commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false void [] } +&{transposed QSize::transposed commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false QSize [] } +&{width QSize::width commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false int [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QSizeF.txt b/internal/binding/dump/QtCore/QSizeF.txt new file mode 100755 index 00000000..3abf488c --- /dev/null +++ b/internal/binding/dump/QtCore/QSizeF.txt @@ -0,0 +1,27 @@ +######################################## FUNCTIONS ######################################## +&{QSizeF QSizeF::QSizeF commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non constructor false false [] } +&{QSizeF QSizeF::QSizeF commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non constructor false true 2 [0xc820b190a0] } +&{QSizeF QSizeF::QSizeF commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non constructor false true 3 [0xc820b19280 0xc820b19300] } +&{boundedTo QSizeF::boundedTo commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false QSizeF [0xc820b19560] } +&{expandedTo QSizeF::expandedTo commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false QSizeF [0xc820b19780] } +&{height QSizeF::height commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false qreal [] } +&{isEmpty QSizeF::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false bool [] } +&{isNull QSizeF::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false bool [] } +&{isValid QSizeF::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false bool [] } +&{operator*= QSizeF::operator*= commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false QSizeF & [0xc820b19dc0] } +&{operator+= QSizeF::operator+= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false QSizeF & [0xc820af00a0] } +&{operator-= QSizeF::operator-= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false QSizeF & [0xc820af02c0] } +&{operator/= QSizeF::operator/= commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false QSizeF & [0xc820af04a0] } +&{rheight QSizeF::rheight commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false qreal & [] } +&{rwidth QSizeF::rwidth commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false qreal & [] } +&{scale QSizeF::scale commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false true 2 void [0xc820af07a0 0xc820af0900] } +&{scale QSizeF::scale commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false void [0xc820af0b60 0xc820af0ca0 0xc820af0da0] } +&{scaled QSizeF::scaled commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false true 2 QSizeF [0xc820af1020 0xc820af10e0] } +&{scaled QSizeF::scaled commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false QSizeF [0xc820af1340 0xc820af1400 0xc820af14c0] } +&{setHeight QSizeF::setHeight commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false void [0xc820af18c0] } +&{setWidth QSizeF::setWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false void [0xc820af1ae0] } +&{toSize QSizeF::toSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false QSize [] } +&{transpose QSizeF::transpose commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false void [] } +&{transposed QSizeF::transposed commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false QSizeF [] } +&{width QSizeF::width commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsize.h non plain false false qreal [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QSocketNotifier.txt b/internal/binding/dump/QtCore/QSocketNotifier.txt new file mode 100755 index 00000000..c83fd5c7 --- /dev/null +++ b/internal/binding/dump/QtCore/QSocketNotifier.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{QSocketNotifier QSocketNotifier::QSocketNotifier commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsocketnotifier.h non constructor false false [0xc8202ff9c0 0xc8202ffa40 0xc8202ffae0] } +&{activated QSocketNotifier::activated commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsocketnotifier.h non signal false false void [0xc8202ffdc0] } +&{event QSocketNotifier::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsocketnotifier.h impure plain false false bool [0xc8202ec0a0] } +&{isEnabled QSocketNotifier::isEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsocketnotifier.h non plain false false bool [] } +&{setEnabled QSocketNotifier::setEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsocketnotifier.h non slot false false void [0xc8202ec5e0] } +&{socket QSocketNotifier::socket commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsocketnotifier.h non plain false false qintptr [] } +&{type QSocketNotifier::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsocketnotifier.h non plain false false Type [] } +&{~QSocketNotifier QSocketNotifier::~QSocketNotifier commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsocketnotifier.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Type QSocketNotifier::Type commendable public [0xc8202ff600 0xc8202ff680 0xc8202ff720]} diff --git a/internal/binding/dump/QtCore/QSortFilterProxyModel.txt b/internal/binding/dump/QtCore/QSortFilterProxyModel.txt new file mode 100755 index 00000000..3e03afcf --- /dev/null +++ b/internal/binding/dump/QtCore/QSortFilterProxyModel.txt @@ -0,0 +1,60 @@ +######################################## FUNCTIONS ######################################## +&{dynamicSortFilter QSortFilterProxyModel::dynamicSortFilter commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.cpp non plain false false bool [] } +&{filterCaseSensitivity QSortFilterProxyModel::filterCaseSensitivity commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.cpp non plain false false Qt::CaseSensitivity [] } +&{filterKeyColumn QSortFilterProxyModel::filterKeyColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.cpp non plain false false int [] } +&{filterRegExp QSortFilterProxyModel::filterRegExp commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.cpp non plain false false QRegExp [] } +&{filterRole QSortFilterProxyModel::filterRole commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.cpp non plain false false int [] } +&{isSortLocaleAware QSortFilterProxyModel::isSortLocaleAware commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.cpp non plain false false bool [] } +&{setDynamicSortFilter QSortFilterProxyModel::setDynamicSortFilter commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.cpp non plain false false void [0xc8204ce620] } +&{setFilterCaseSensitivity QSortFilterProxyModel::setFilterCaseSensitivity commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.cpp non plain false false void [0xc8204ce840] } +&{setFilterKeyColumn QSortFilterProxyModel::setFilterKeyColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.cpp non plain false false void [0xc8204cea80] } +&{setFilterRegExp QSortFilterProxyModel::setFilterRegExp commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.cpp non plain false false void [0xc8204cec00] } +&{setFilterRole QSortFilterProxyModel::setFilterRole commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.cpp non plain false false void [0xc8204ceda0] } +&{setSortCaseSensitivity QSortFilterProxyModel::setSortCaseSensitivity commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.cpp non plain false false void [0xc8204cefc0] } +&{setSortLocaleAware QSortFilterProxyModel::setSortLocaleAware commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.cpp non plain false false void [0xc8204cf220] } +&{setSortRole QSortFilterProxyModel::setSortRole commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.cpp non plain false false void [0xc8204cf3c0] } +&{sortCaseSensitivity QSortFilterProxyModel::sortCaseSensitivity commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.cpp non plain false false Qt::CaseSensitivity [] } +&{sortRole QSortFilterProxyModel::sortRole commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.cpp non plain false false int [] } +&{QSortFilterProxyModel QSortFilterProxyModel::QSortFilterProxyModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h non constructor false false [0xc8204cf840] } +&{buddy QSortFilterProxyModel::buddy commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false QModelIndex [0xc8204cfbc0] } +&{canFetchMore QSortFilterProxyModel::canFetchMore commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false bool [0xc8204cfd80] } +&{columnCount QSortFilterProxyModel::columnCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false int [0xc8204e4020] } +&{data QSortFilterProxyModel::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false QVariant [0xc8204e4260 0xc8204e4320] } +&{dropMimeData QSortFilterProxyModel::dropMimeData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false bool [0xc8204e44a0 0xc8204e4560 0xc8204e45e0 0xc8204e4660 0xc8204e4720] } +&{fetchMore QSortFilterProxyModel::fetchMore commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false void [0xc8204e4940] } +&{filterAcceptsColumn QSortFilterProxyModel::filterAcceptsColumn commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false bool [0xc8204e4b40 0xc8204e4be0] } +&{filterAcceptsRow QSortFilterProxyModel::filterAcceptsRow commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false bool [0xc8204e4d80 0xc8204e4e20] } +&{flags QSortFilterProxyModel::flags commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false Qt::ItemFlags [0xc8204e5100] } +&{hasChildren QSortFilterProxyModel::hasChildren commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false bool [0xc8204e52c0] } +&{headerData QSortFilterProxyModel::headerData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false QVariant [0xc8204e5460 0xc8204e54e0 0xc8204e5560] } +&{index QSortFilterProxyModel::index commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false QModelIndex [0xc8204e5740 0xc8204e57c0 0xc8204e5860] } +&{insertColumns QSortFilterProxyModel::insertColumns commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false bool [0xc8204e5a20 0xc8204e5aa0 0xc8204e5b40] } +&{insertRows QSortFilterProxyModel::insertRows commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false bool [0xc8204e5ce0 0xc8204e5d60 0xc8204e5e00] } +&{invalidate QSortFilterProxyModel::invalidate commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h non slot false false void [] } +&{invalidateFilter QSortFilterProxyModel::invalidateFilter commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h non plain false false void [] } +&{lessThan QSortFilterProxyModel::lessThan commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false bool [0xc8204f4160 0xc8204f4240] } +&{mapFromSource QSortFilterProxyModel::mapFromSource commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false QModelIndex [0xc8204f4400] } +&{mapSelectionFromSource QSortFilterProxyModel::mapSelectionFromSource commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false QItemSelection [0xc8204f4620] } +&{mapSelectionToSource QSortFilterProxyModel::mapSelectionToSource commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false QItemSelection [0xc8204f4840] } +&{mapToSource QSortFilterProxyModel::mapToSource commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false QModelIndex [0xc8204f4a00] } +&{match QSortFilterProxyModel::match commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false QModelIndexList [0xc8204f4c40 0xc8204f4d00 0xc8204f4d80 0xc8204f4e00 0xc8204f4ea0] } +&{mimeData QSortFilterProxyModel::mimeData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false QMimeData * [0xc8204f5080] } +&{mimeTypes QSortFilterProxyModel::mimeTypes commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false QStringList [] } +&{parent QSortFilterProxyModel::parent commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false QModelIndex [0xc8204f53a0] } +&{removeColumns QSortFilterProxyModel::removeColumns commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false bool [0xc8204f5540 0xc8204f55c0 0xc8204f5660] } +&{removeRows QSortFilterProxyModel::removeRows commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false bool [0xc8204f5800 0xc8204f5880 0xc8204f5920] } +&{rowCount QSortFilterProxyModel::rowCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false int [0xc8204f5b40] } +&{setData QSortFilterProxyModel::setData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false bool [0xc8204f5d60 0xc8204f5e20 0xc8204f5ea0] } +&{setFilterFixedString QSortFilterProxyModel::setFilterFixedString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h non slot false false void [0xc820504060] } +&{setFilterRegExp QSortFilterProxyModel::setFilterRegExp commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h non slot false true 2 void [0xc8205041e0] } +&{setFilterWildcard QSortFilterProxyModel::setFilterWildcard commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h non slot false false void [0xc8205043a0] } +&{setHeaderData QSortFilterProxyModel::setHeaderData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false bool [0xc820504500 0xc820504580 0xc820504600 0xc820504680] } +&{setSourceModel QSortFilterProxyModel::setSourceModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false void [0xc820504800] } +&{sibling QSortFilterProxyModel::sibling commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false QModelIndex [0xc820504a00 0xc820504a80 0xc820504b20] } +&{sort QSortFilterProxyModel::sort commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false void [0xc820504d40 0xc820504de0] } +&{sortColumn QSortFilterProxyModel::sortColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h non plain false false int [] } +&{sortOrder QSortFilterProxyModel::sortOrder commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h non plain false false Qt::SortOrder [] } +&{span QSortFilterProxyModel::span commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false QSize [0xc820505180] } +&{supportedDropActions QSortFilterProxyModel::supportedDropActions commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h impure plain false false Qt::DropActions [] } +&{~QSortFilterProxyModel QSortFilterProxyModel::~QSortFilterProxyModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qsortfilterproxymodel.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QStack.txt b/internal/binding/dump/QtCore/QStack.txt new file mode 100755 index 00000000..65e21391 --- /dev/null +++ b/internal/binding/dump/QtCore/QStack.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QStack QStack::QStack commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstack.h non constructor false false [] } +&{pop QStack::pop commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstack.h non plain false false T [] } +&{push QStack::push commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstack.h non plain false false void [0xc820adf900] } +&{swap QStack::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstack.h non plain false false void [0xc820adfa60] } +&{top QStack::top commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstack.h non plain false false T & [] } +&{top QStack::top commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstack.h non plain false true 2 const T & [] } +&{~QStack QStack::~QStack commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstack.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QStandardPaths.txt b/internal/binding/dump/QtCore/QStandardPaths.txt new file mode 100755 index 00000000..6e039ae4 --- /dev/null +++ b/internal/binding/dump/QtCore/QStandardPaths.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{setTestModeEnabled QStandardPaths::setTestModeEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstandardpaths.cpp non plain true false void [0xc820291ec0] } +&{findExecutable QStandardPaths::findExecutable commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstandardpaths.h non plain true false QString [0xc82027b400 0xc82027b4a0] } +&{locate QStandardPaths::locate commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstandardpaths.h non plain true false QString [0xc82027b6a0 0xc82027b720 0xc82027b7a0] } +&{locateAll QStandardPaths::locateAll commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstandardpaths.h non plain true false QStringList [0xc82027b960 0xc82027b9e0 0xc82027ba60] } +&{displayName QStandardPaths::displayName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstandardpaths_mac.mm non plain true false QString [0xc82027bd40] } +&{standardLocations QStandardPaths::standardLocations commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstandardpaths_winrt.cpp non plain true false QStringList [0xc82027bf00] } +&{writableLocation QStandardPaths::writableLocation commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstandardpaths_winrt.cpp non plain true false QString [0xc820274120] } +######################################## ENUMS ######################################## +&{LocateOption QStandardPaths::LocateOption commendable public QStandardPaths::LocateOptions [0xc82027a1c0 0xc82027a280]} +&{StandardLocation QStandardPaths::StandardLocation commendable public [0xc82027a460 0xc82027a500 0xc82027a5c0 0xc82027a660 0xc82027a740 0xc82027a7c0 0xc82027a840 0xc82027a8c0 0xc82027a960 0xc82027a9e0 0xc82027aa60 0xc82027ab00 0xc82027abc0 0xc82027ac40 0xc82027acc0 0xc82027ad60 0xc82027ae60 0xc82027af20 0xc82027afc0 0xc82027b0a0]} diff --git a/internal/binding/dump/QtCore/QState.txt b/internal/binding/dump/QtCore/QState.txt new file mode 100755 index 00000000..7481444e --- /dev/null +++ b/internal/binding/dump/QtCore/QState.txt @@ -0,0 +1,28 @@ +######################################## FUNCTIONS ######################################## +&{QState QState::QState commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstate.h non constructor false true 2 [0xc82000e100 0xc82000e1c0] } +&{QState QState::QState commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstate.h non constructor false false [0xc82000e400] } +&{addTransition QState::addTransition commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstate.h non plain false true 3 QAbstractTransition * [0xc82000eaa0] } +&{addTransition QState::addTransition commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstate.h non plain false true 4 QSignalTransition * [0xc82000eee0 0xc82000efe0 0xc82000f0c0] } +&{addTransition QState::addTransition commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstate.h non plain false true 2 QSignalTransition * [0xc82000f400 0xc82000f4c0 0xc82000f5a0] } +&{addTransition QState::addTransition commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstate.h non plain false false void [0xc82000f940] } +&{assignProperty QState::assignProperty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstate.h non plain false false void [0xc82000fca0 0xc82000fda0 0xc82000fe60] } +&{childMode QState::childMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstate.h non plain false false ChildMode [] } +&{childModeChanged QState::childModeChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstate.h non signal false false void [] } +&{errorState QState::errorState commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstate.h non plain false false QAbstractState * [] } +&{errorStateChanged QState::errorStateChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstate.h non signal false false void [] } +&{event QState::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstate.h impure plain false false bool [0xc82068d260] } +&{finished QState::finished commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstate.h non signal false false void [] } +&{initialState QState::initialState commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstate.h non plain false false QAbstractState * [] } +&{initialStateChanged QState::initialStateChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstate.h non signal false false void [] } +&{onEntry QState::onEntry commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstate.h impure plain false false void [0xc82068d700] } +&{onExit QState::onExit commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstate.h impure plain false false void [0xc82068d880] } +&{propertiesAssigned QState::propertiesAssigned commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstate.h non signal false false void [] } +&{removeTransition QState::removeTransition commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstate.h non plain false false void [0xc82068dbc0] } +&{setChildMode QState::setChildMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstate.h non plain false false void [0xc82068dde0] } +&{setErrorState QState::setErrorState commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstate.h non plain false false void [0xc82068dfc0] } +&{setInitialState QState::setInitialState commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstate.h non plain false false void [0xc820670240] } +&{transitions QState::transitions commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstate.h non plain false false QList [] } +&{~QState QState::~QState commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstate.h non destructor false false [] } +######################################## ENUMS ######################################## +&{ChildMode QState::ChildMode commendable public [0xc82017f8e0 0xc82017f980]} +&{RestorePolicy QState::RestorePolicy commendable public [0xc82017fc60 0xc82017fdc0]} diff --git a/internal/binding/dump/QtCore/QStateMachine.txt b/internal/binding/dump/QtCore/QStateMachine.txt new file mode 100755 index 00000000..b8cadfe7 --- /dev/null +++ b/internal/binding/dump/QtCore/QStateMachine.txt @@ -0,0 +1,34 @@ +######################################## FUNCTIONS ######################################## +&{QStateMachine QStateMachine::QStateMachine commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h non constructor false false [0xc820671fc0] } +&{QStateMachine QStateMachine::QStateMachine commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h non constructor false true 2 [0xc820558180 0xc820558240] } +&{addDefaultAnimation QStateMachine::addDefaultAnimation commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h non plain false false void [0xc820558860] } +&{addState QStateMachine::addState commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h non plain false false void [0xc820558a60] } +&{clearError QStateMachine::clearError commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h non plain false false void [] } +&{cancelDelayedEvent QStateMachine::cancelDelayedEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h non plain false false bool [0xc820559400] } +&{configuration QStateMachine::configuration commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h non plain false false QSet [] } +&{defaultAnimations QStateMachine::defaultAnimations commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h non plain false false QList [] } +&{error QStateMachine::error commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h non plain false false Error [] } +&{errorString QStateMachine::errorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h non plain false false QString [] } +&{event QStateMachine::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h impure plain false false bool [0xc820559ac0] } +&{eventFilter QStateMachine::eventFilter commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h impure plain false false bool [0xc820559c80 0xc820559d00] } +&{globalRestorePolicy QStateMachine::globalRestorePolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h non plain false false QState::RestorePolicy [] } +&{isAnimated QStateMachine::isAnimated commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h non plain false false bool [] } +&{isRunning QStateMachine::isRunning commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h non plain false false bool [] } +&{onEntry QStateMachine::onEntry commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h impure plain false false void [0xc8204c8280] } +&{onExit QStateMachine::onExit commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h impure plain false false void [0xc8204c8460] } +&{postDelayedEvent QStateMachine::postDelayedEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h non plain false false int [0xc8204c8600 0xc8204c8680] } +&{postEvent QStateMachine::postEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h non plain false false void [0xc8204c8840 0xc8204c88c0] } +&{removeDefaultAnimation QStateMachine::removeDefaultAnimation commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h non plain false false void [0xc8204c8a80] } +&{removeState QStateMachine::removeState commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h non plain false false void [0xc8204c8c80] } +&{runningChanged QStateMachine::runningChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h non signal false false void [0xc8204c8e60] } +&{setAnimated QStateMachine::setAnimated commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h non plain false false void [0xc8204c9060] } +&{setGlobalRestorePolicy QStateMachine::setGlobalRestorePolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h non plain false false void [0xc8204c9260] } +&{setRunning QStateMachine::setRunning commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h non slot false false void [0xc8204c94a0] } +&{start QStateMachine::start commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h non slot false false void [] } +&{started QStateMachine::started commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h non signal false false void [] } +&{stop QStateMachine::stop commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h non slot false false void [] } +&{stopped QStateMachine::stopped commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h non signal false false void [] } +&{~QStateMachine QStateMachine::~QStateMachine commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/statemachine/qstatemachine.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Error QStateMachine::Error commendable public [0xc820671820 0xc8206718e0 0xc820671a00 0xc820671aa0]} +&{EventPriority QStateMachine::EventPriority commendable public [0xc820671c80 0xc820671d60]} diff --git a/internal/binding/dump/QtCore/QStaticPlugin.txt b/internal/binding/dump/QtCore/QStaticPlugin.txt new file mode 100755 index 00000000..5d62c0d6 --- /dev/null +++ b/internal/binding/dump/QtCore/QStaticPlugin.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{instance QStaticPlugin::instance commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qplugin.h non plain false false QObject * [] } +&{metaData QStaticPlugin::metaData commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qplugin.h non plain false false QJsonObject [] } +&{rawMetaData QStaticPlugin::rawMetaData commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/qplugin.h non plain false false const char * [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QStorageInfo.txt b/internal/binding/dump/QtCore/QStorageInfo.txt new file mode 100755 index 00000000..5bb8e5fe --- /dev/null +++ b/internal/binding/dump/QtCore/QStorageInfo.txt @@ -0,0 +1,26 @@ +######################################## FUNCTIONS ######################################## +&{QStorageInfo QStorageInfo::QStorageInfo commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstorageinfo.h non constructor false false [] } +&{QStorageInfo QStorageInfo::QStorageInfo commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstorageinfo.h non constructor false true 3 [0xc820274580] } +&{QStorageInfo QStorageInfo::QStorageInfo commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstorageinfo.h non constructor false true 4 [0xc820274800] } +&{QStorageInfo QStorageInfo::QStorageInfo commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstorageinfo.h non constructor false true 2 [0xc820274ac0] } +&{bytesAvailable QStorageInfo::bytesAvailable commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstorageinfo.h non plain false false qint64 [] } +&{bytesFree QStorageInfo::bytesFree commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstorageinfo.h non plain false false qint64 [] } +&{bytesTotal QStorageInfo::bytesTotal commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstorageinfo.h non plain false false qint64 [] } +&{device QStorageInfo::device commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstorageinfo.h non plain false false QByteArray [] } +&{displayName QStorageInfo::displayName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstorageinfo.h non plain false false QString [] } +&{fileSystemType QStorageInfo::fileSystemType commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstorageinfo.h non plain false false QByteArray [] } +&{isReadOnly QStorageInfo::isReadOnly commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstorageinfo.h non plain false false bool [] } +&{isReady QStorageInfo::isReady commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstorageinfo.h non plain false false bool [] } +&{isRoot QStorageInfo::isRoot commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstorageinfo.h non plain false false bool [] } +&{isValid QStorageInfo::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstorageinfo.h non plain false false bool [] } +&{mountedVolumes QStorageInfo::mountedVolumes commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstorageinfo.h non plain true false QList [] } +&{name QStorageInfo::name commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstorageinfo.h non plain false false QString [] } +&{operator= QStorageInfo::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstorageinfo.h non plain false true 2 QStorageInfo & [0xc820275e60] } +&{operator= QStorageInfo::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstorageinfo.h non plain false false QStorageInfo & [0xc82026a120] } +&{refresh QStorageInfo::refresh commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstorageinfo.h non plain false false void [] } +&{root QStorageInfo::root commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstorageinfo.h non plain true false QStorageInfo [] } +&{rootPath QStorageInfo::rootPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstorageinfo.h non plain false false QString [] } +&{setPath QStorageInfo::setPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstorageinfo.h non plain false false void [0xc82026a7e0] } +&{swap QStorageInfo::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstorageinfo.h non plain false false void [0xc82026aa60] } +&{~QStorageInfo QStorageInfo::~QStorageInfo commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qstorageinfo.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QString.txt b/internal/binding/dump/QtCore/QString.txt new file mode 100755 index 00000000..acf8f746 --- /dev/null +++ b/internal/binding/dump/QtCore/QString.txt @@ -0,0 +1,272 @@ +######################################## FUNCTIONS ######################################## +&{append QString::append commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.cpp non plain false true 2 QString & [0xc820a7e340] } +&{arg QString::arg commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.cpp non plain false true 20 QString [0xc820a7eda0 0xc820a7ee20 0xc820a7ef00 0xc820a7f060 0xc820a7f1c0] } +&{insert QString::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.cpp non plain false true 4 QString & [0xc820a6c560 0xc820a6c5e0] } +&{insert QString::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.cpp non plain false true 2 QString & [0xc820a6c7e0 0xc820a6c900] } +&{insert QString::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.cpp non plain false true 3 QString & [0xc820a6ca80 0xc820a6cb20 0xc820a6cba0] } +&{isRightToLeft QString::isRightToLeft commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.cpp non plain false false bool [] } +&{number QString::number commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.cpp non plain true true 2 QString [0xc820a6d020 0xc820a6d0c0 0xc820a6d1c0] } +&{number QString::number commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.cpp non plain true false QString [0xc820a6d380 0xc820a6d4c0] } +&{number QString::number commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.cpp non plain true true 3 QString [0xc820a6d6e0 0xc820a6d7a0] } +&{operator= QString::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.cpp non plain false false QString & [0xc820a6db00] } +&{remove QString::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.cpp non plain false false QString & [0xc820a5a2c0 0xc820a5a360] } +&{replace QString::replace commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.cpp non plain false true 3 QString & [0xc820a5a540 0xc820a5a5e0 0xc820a5a6c0] } +&{replace QString::replace commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.cpp non plain false true 2 QString & [0xc820a5a840 0xc820a5a900 0xc820a5a980 0xc820a5aa20] } +&{replace QString::replace commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.cpp non plain false false QString & [0xc820a5abc0 0xc820a5ac60 0xc820a5ad00] } +&{setNum QString::setNum commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.cpp non plain false true 9 QString & [0xc820a5aec0 0xc820a5af80 0xc820a5b020] } +&{toLong QString::toLong commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.cpp non plain false false long [0xc820a269a0 0xc820a26ac0] } +&{toULong QString::toULong commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.cpp non plain false false ulong [0xc82015a360 0xc82015a3e0] } +&{truncate QString::truncate commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.cpp non plain false false void [0xc82015ad40] } +&{utf16 QString::utf16 commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.cpp non plain false false const ushort * [] } +&{vasprintf QString::vasprintf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.cpp non plain true false QString [0xc82015b020 0xc82015b0a0] } +&{QString QString::QString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non constructor false false [] } +&{QString QString::QString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non constructor false true 3 [0xc8209e2ea0] } +&{QString QString::QString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non constructor false true 5 [0xc8209e3020] } +&{QString QString::QString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non constructor false true 7 [0xc8209e3220] } +&{QString QString::QString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non constructor false true 9 [0xc8209e3440] } +&{QString QString::QString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non constructor false true 2 [0xc8209e3600 0xc8209e36a0] } +&{QString QString::QString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non constructor false true 6 [0xc8209e3840] } +&{QString QString::QString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non constructor false true 8 [0xc8209e3a20] } +&{QString QString::QString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non constructor false true 4 [0xc8209e3bc0 0xc8209e3c40] } +&{append QString::append commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 7 QString & [0xc8209ce1e0] } +&{append QString::append commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 QString & [0xc8209ce3c0] } +&{append QString::append commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 5 QString & [0xc8209ce6a0] } +&{append QString::append commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 QString & [0xc8209ce9a0 0xc8209cea60] } +&{append QString::append commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QString & [0xc8209cec40] } +&{append QString::append commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 6 QString & [0xc8209cee20] } +&{arg QString::arg commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 18 QString [0xc8209cf060 0xc8209cf100 0xc8209cf220] } +&{arg QString::arg commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 19 QString [0xc8209cf4a0 0xc8209cf520 0xc8209cf6c0] } +&{arg QString::arg commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QString [0xc8209cf940 0xc8209cfa00 0xc8209cfb20] } +&{arg QString::arg commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 QString [0xc8209cfe00 0xc8209cff20] } +&{arg QString::arg commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 QString [0xc8209bc280 0xc8209bc380 0xc8209bc400] } +&{arg QString::arg commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 QString [0xc8209bc7a0 0xc8209bc880 0xc8209bc980 0xc8209bcaa0] } +&{arg QString::arg commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 5 QString [0xc8209bccc0 0xc8209bcd80 0xc8209bce40 0xc8209bcf00 0xc8209bd040] } +&{arg QString::arg commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 6 QString [0xc8209bd2c0 0xc8209bd360 0xc8209bd440 0xc8209bd540 0xc8209bd5e0 0xc8209bd6e0] } +&{arg QString::arg commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 7 QString [0xc8209bd940 0xc8209bda00 0xc8209bdb40 0xc8209bdca0 0xc8209bddc0 0xc8209bdea0 0xc8209bdf40] } +&{arg QString::arg commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 8 QString [0xc8209b0200 0xc8209b0300 0xc8209b03e0 0xc8209b0500 0xc8209b06a0 0xc8209b0720 0xc8209b0880 0xc8209b09c0] } +&{arg QString::arg commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 9 QString [0xc8209b0c00 0xc8209b0ce0 0xc8209b0d80 0xc8209b0f60 0xc8209b1000 0xc8209b10e0 0xc8209b11c0 0xc8209b1300 0xc8209b14a0] } +&{arg QString::arg commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 10 QString [0xc8209b16e0 0xc8209b1820 0xc8209b18e0 0xc8209b1a20] } +&{arg QString::arg commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 12 QString [0xc8209b1c20 0xc8209b1d00 0xc8209b1dc0 0xc8209b1ea0] } +&{arg QString::arg commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 14 QString [0xc82099c0c0 0xc82099c220 0xc82099c300 0xc82099c3e0] } +&{arg QString::arg commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 15 QString [0xc82099c640 0xc82099c720 0xc82099c7e0 0xc82099c8a0] } +&{arg QString::arg commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 16 QString [0xc82099cb60 0xc82099cc20 0xc82099cd20 0xc82099ce20] } +&{arg QString::arg commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 11 QString [0xc82099cfe0 0xc82099d0c0 0xc82099d140 0xc82099d240] } +&{arg QString::arg commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 13 QString [0xc82099d4a0 0xc82099d520 0xc82099d5c0 0xc82099d6a0] } +&{arg QString::arg commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 17 QString [0xc82099d8c0 0xc82099d9a0 0xc82099daa0 0xc82099dba0] } +&{asprintf QString::asprintf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true false QString [0xc82099de60 0xc82099df40] } +&{at QString::at commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false const QChar [0xc8201aa120] } +&{begin QString::begin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false iterator [] } +&{begin QString::begin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 const_iterator [] } +&{capacity QString::capacity commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false int [] } +&{cbegin QString::cbegin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false const_iterator [] } +&{cend QString::cend commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false const_iterator [] } +&{chop QString::chop commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false void [0xc8201aa6a0] } +&{clear QString::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false void [] } +&{compare QString::compare commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true true 3 int [0xc8201aa900 0xc8201aa980 0xc8201aaa60] } +&{compare QString::compare commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true true 2 int [0xc8201aac60 0xc8201aad00 0xc8201aae00] } +&{compare QString::compare commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true false int [0xc8201ab000 0xc8201ab080 0xc8201ab1a0] } +&{compare QString::compare commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true true 7 int [0xc8201ab3a0 0xc8201ab440 0xc8201ab5a0] } +&{compare QString::compare commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 5 int [0xc8201ab7a0 0xc8201ab880] } +&{compare QString::compare commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 int [0xc8201aba60 0xc8201abb80] } +&{compare QString::compare commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 6 int [0xc8201abd80 0xc8201abea0] } +&{constBegin QString::constBegin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false const_iterator [] } +&{constData QString::constData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false const QChar * [] } +&{constEnd QString::constEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false const_iterator [] } +&{contains QString::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 bool [0xc820979900 0xc820979a00] } +&{contains QString::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 bool [0xc820979d00 0xc820979e20] } +&{contains QString::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 6 bool [0xc8209a20c0] } +&{contains QString::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 5 bool [0xc8209a2280] } +&{contains QString::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 7 bool [0xc8209a2460] } +&{contains QString::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 8 bool [0xc8209a2680 0xc8209a2760] } +&{contains QString::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [0xc8209a2a20 0xc8209a2ae0] } +&{contains QString::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 bool [0xc8209a2e20 0xc8209a3020] } +&{count QString::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 6 int [] } +&{count QString::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 int [0xc8209a33c0 0xc8209a34a0] } +&{count QString::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 int [0xc8209a3720] } +&{count QString::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 5 int [0xc8209a38e0] } +&{count QString::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false int [0xc8209a3b40 0xc8209a3c00] } +&{count QString::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 int [0xc8209a3ee0 0xc82095e0c0] } +&{data QString::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QChar * [] } +&{data QString::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 const QChar * [] } +&{end QString::end commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false iterator [] } +&{end QString::end commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 const_iterator [] } +&{endsWith QString::endsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 bool [0xc82095e9c0 0xc82095eb80] } +&{endsWith QString::endsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 bool [0xc82095eec0 0xc82095f0e0] } +&{endsWith QString::endsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [0xc82095f3c0 0xc82095f4a0] } +&{endsWith QString::endsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 bool [0xc82095f820 0xc82095f960] } +&{fill QString::fill commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QString & [0xc82095fbc0 0xc82095fc60] } +&{fromLatin1 QString::fromLatin1 commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true true 2 QString [0xc82094a460] } +&{fromLatin1 QString::fromLatin1 commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true false QString [0xc82094a6a0 0xc82094a720] } +&{fromLocal8Bit QString::fromLocal8Bit commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true true 2 QString [0xc82094a900] } +&{fromLocal8Bit QString::fromLocal8Bit commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true false QString [0xc82094ab00 0xc82094ab80] } +&{fromRawData QString::fromRawData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true false QString [0xc82094ad60 0xc82094ade0] } +&{fromStdString QString::fromStdString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true false QString [0xc82094b040] } +&{fromStdU16String QString::fromStdU16String commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true false QString [0xc82094b300] } +&{fromStdU32String QString::fromStdU32String commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true false QString [0xc82094b5c0] } +&{fromStdWString QString::fromStdWString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true false QString [0xc82094b860] } +&{fromUcs4 QString::fromUcs4 commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true false QString [0xc82094bac0 0xc82094bb60] } +&{fromUtf16 QString::fromUtf16 commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true false QString [0xc82094bd40 0xc82094be20] } +&{fromUtf8 QString::fromUtf8 commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true true 2 QString [0xc820928040] } +&{fromUtf8 QString::fromUtf8 commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true false QString [0xc8209282c0 0xc820928360] } +&{fromWCharArray QString::fromWCharArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true false QString [0xc820928540 0xc8209285e0] } +&{indexOf QString::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 int [0xc820928760 0xc820928800 0xc8209288e0] } +&{indexOf QString::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 int [0xc820928ac0 0xc820928b60 0xc820928c80] } +&{indexOf QString::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 6 int [0xc820928e40 0xc820928ee0] } +&{indexOf QString::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 5 int [0xc820929060 0xc820929120] } +&{indexOf QString::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 7 int [0xc8209293c0 0xc820929480] } +&{indexOf QString::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 8 int [0xc820929760 0xc820929840 0xc820929900] } +&{indexOf QString::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false int [0xc820929b20 0xc820929ba0 0xc820929c60] } +&{indexOf QString::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 int [0xc820929e20 0xc820929ee0 0xc820929fa0] } +&{insert QString::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QString & [0xc8205b62a0 0xc8205b6320] } +&{isEmpty QString::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [] } +&{isNull QString::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [] } +&{lastIndexOf QString::lastIndexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 int [0xc8205b6980 0xc8205b6a00 0xc8205b6ac0] } +&{lastIndexOf QString::lastIndexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 int [0xc8205b6ce0 0xc8205b6d80 0xc8205b6e40] } +&{lastIndexOf QString::lastIndexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 6 int [0xc8205b7040 0xc8205b70c0] } +&{lastIndexOf QString::lastIndexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 5 int [0xc8205b7280 0xc8205b7300] } +&{lastIndexOf QString::lastIndexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 7 int [0xc8205b7540 0xc8205b7660] } +&{lastIndexOf QString::lastIndexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 8 int [0xc8205b78c0 0xc8205b79a0 0xc8205b7a60] } +&{lastIndexOf QString::lastIndexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false int [0xc8205b7ca0 0xc8205b7d40 0xc8205b7e20] } +&{lastIndexOf QString::lastIndexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 int [0xc82091c0c0 0xc82091c1a0 0xc82091c2c0] } +&{left QString::left commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QString [0xc82091c580] } +&{leftJustified QString::leftJustified commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QString [0xc82091c820 0xc82091c8e0 0xc82091ca00] } +&{leftRef QString::leftRef commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QStringRef [0xc82091cbe0] } +&{length QString::length commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false int [] } +&{localeAwareCompare QString::localeAwareCompare commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true false int [0xc82091d020 0xc82091d0c0] } +&{localeAwareCompare QString::localeAwareCompare commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true true 3 int [0xc82091d3a0 0xc82091d4e0] } +&{localeAwareCompare QString::localeAwareCompare commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 int [0xc82091d8e0] } +&{localeAwareCompare QString::localeAwareCompare commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 int [0xc82091dc40] } +&{mid QString::mid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QString [0xc8208f83a0 0xc8208f8420] } +&{midRef QString::midRef commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QStringRef [0xc8208f8640 0xc8208f86e0] } +&{normalized QString::normalized commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QString [0xc8208f8a40 0xc8208f8bc0] } +&{number QString::number commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true true 4 QString [0xc8208f8e80 0xc8208f8f20] } +&{number QString::number commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true true 6 QString [0xc8208f90e0 0xc8208f91e0] } +&{number QString::number commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true true 7 QString [0xc8208f9440 0xc8208f9520] } +&{number QString::number commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true true 5 QString [0xc8208f97a0 0xc8208f9820] } +&{operator!= QString::operator!= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [0xc8208f9b00] } +&{operator!= QString::operator!= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 bool [0xc8208f9d00] } +&{operator!= QString::operator!= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 bool [0xc8208f9f60] } +&{operator+= QString::operator+= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 7 QString & [0xc8208f6180] } +&{operator+= QString::operator+= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 QString & [0xc8208f6420] } +&{operator+= QString::operator+= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 6 QString & [0xc8208f66e0] } +&{operator+= QString::operator+= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 QString & [0xc8208f6980] } +&{operator+= QString::operator+= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QString & [0xc8208f6c20] } +&{operator+= QString::operator+= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 5 QString & [0xc8208f6e60] } +&{operator+= QString::operator+= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 QString & [0xc8208f7120] } +&{operator< QString::operator< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [0xc8208f7720] } +&{operator< QString::operator< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 bool [0xc8208f7a60] } +&{operator< QString::operator< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 bool [0xc8208f7f00] } +&{operator<= QString::operator<= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [0xc8208d21c0] } +&{operator<= QString::operator<= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 bool [0xc8208d2480] } +&{operator<= QString::operator<= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 bool [0xc8208d27a0] } +&{operator= QString::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 8 QString & [0xc8208d2aa0] } +&{operator= QString::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 QString & [0xc8208d2d60] } +&{operator= QString::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 QString & [0xc8208d3020] } +&{operator= QString::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 7 QString & [0xc8208d33a0] } +&{operator= QString::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 5 QString & [0xc8208d36a0] } +&{operator= QString::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 6 QString & [0xc8208d3a00] } +&{operator== QString::operator== commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [0xc8208d3fe0] } +&{operator== QString::operator== commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 bool [0xc8208c2280] } +&{operator> QString::operator> commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [0xc8208c24c0] } +&{operator> QString::operator> commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 bool [0xc8208c2740] } +&{operator> QString::operator> commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 bool [0xc8208c2a60] } +&{operator>= QString::operator>= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [0xc8208c2d80] } +&{operator>= QString::operator>= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 bool [0xc8208c3020] } +&{operator>= QString::operator>= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 bool [0xc8208c3340] } +&{operator[] QString::operator[] commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QCharRef [0xc8208c3680] } +&{operator[] QString::operator[] commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 QCharRef [0xc8208c3980] } +&{operator[] QString::operator[] commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 const QChar [0xc8208c3c40] } +&{operator[] QString::operator[] commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 const QChar [0xc8208c3f20] } +&{prepend QString::prepend commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 5 QString & [0xc8208ae1c0] } +&{prepend QString::prepend commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 QString & [0xc8208ae480] } +&{prepend QString::prepend commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 QString & [0xc8208ae820] } +&{prepend QString::prepend commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QString & [0xc8208aebc0] } +&{prepend QString::prepend commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 QString & [0xc8208aeee0] } +&{push_back QString::push_back commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 void [0xc8208af280] } +&{push_back QString::push_back commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false void [0xc8208af5c0] } +&{push_front QString::push_front commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 void [0xc8208af960] } +&{push_front QString::push_front commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false void [0xc8208afcc0] } +&{remove QString::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 QString & [0xc8208aff40 0xc82089c080] } +&{remove QString::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 QString & [0xc82089c3a0] } +&{remove QString::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 5 QString & [0xc82089c6c0] } +&{remove QString::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 QString & [0xc82089ca80 0xc82089cc00] } +&{repeated QString::repeated commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QString [0xc82089d160] } +&{replace QString::replace commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 7 QString & [0xc82089d4c0 0xc82089d580 0xc82089d7c0] } +&{replace QString::replace commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 11 QString & [0xc82089dc40 0xc82089dd60 0xc82089df40] } +&{replace QString::replace commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 6 QString & [0xc82078c260 0xc82078c340 0xc82078c420] } +&{replace QString::replace commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 8 QString & [0xc82078c760 0xc82078c860 0xc82078c940] } +&{replace QString::replace commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 9 QString & [0xc82078cc80 0xc82078cd80 0xc82078ce60] } +&{replace QString::replace commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 5 QString & [0xc82078d160 0xc82078d260 0xc82078d300 0xc82078d3a0 0xc82078d560] } +&{replace QString::replace commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 12 QString & [0xc82078d820 0xc82078d900] } +&{replace QString::replace commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 13 QString & [0xc82078db80 0xc82078dca0] } +&{replace QString::replace commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 10 QString & [0xc82078dea0 0xc82078df60 0xc820888060] } +&{replace QString::replace commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 QString & [0xc820888500 0xc8208885c0 0xc8208887c0] } +&{reserve QString::reserve commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false void [0xc820889500] } +&{resize QString::resize commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false void [0xc820889780] } +&{right QString::right commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QString [0xc820889b20] } +&{rightJustified QString::rightJustified commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QString [0xc820889e60 0xc820876000 0xc8208760c0] } +&{rightRef QString::rightRef commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QStringRef [0xc820876400] } +&{section QString::section commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QString [0xc820876620 0xc820876740 0xc820876800 0xc820876980] } +&{section QString::section commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 QString [0xc820876c80 0xc820876e20 0xc820876f20 0xc8208770a0] } +&{section QString::section commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 QString [0xc8208773c0 0xc8208775e0 0xc8208776a0 0xc820877760] } +&{section QString::section commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 QString [0xc820877ae0 0xc820877d00 0xc820877dc0 0xc820877e60] } +&{setNum QString::setNum commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 10 QString & [0xc82085e1a0 0xc82085e2a0 0xc82085e400] } +&{setNum QString::setNum commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QString & [0xc82085e600 0xc82085e6e0] } +&{setNum QString::setNum commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 QString & [0xc82085e9c0 0xc82085eac0] } +&{setNum QString::setNum commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 5 QString & [0xc82085ee20 0xc82085eea0] } +&{setNum QString::setNum commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 6 QString & [0xc82085f1e0 0xc82085f260] } +&{setNum QString::setNum commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 7 QString & [0xc82085f5e0 0xc82085f660] } +&{setNum QString::setNum commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 QString & [0xc82085f960 0xc82085fa20] } +&{setNum QString::setNum commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 QString & [0xc82085fd00 0xc82085fec0] } +&{setNum QString::setNum commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 8 QString & [0xc82084c200 0xc82084c300] } +&{setRawData QString::setRawData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QString & [0xc82084c6e0 0xc82084c820] } +&{setUnicode QString::setUnicode commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QString & [0xc82084cbe0 0xc82084ccc0] } +&{setUtf16 QString::setUtf16 commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QString & [0xc82084d060 0xc82084d100] } +&{size QString::size commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false int [] } +&{split QString::split commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 QStringList [0xc82084d380 0xc82084d4a0 0xc82084d660] } +&{split QString::split commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 QStringList [0xc82084d940 0xc82084da20] } +&{split QString::split commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 QStringList [0xc82084dc60 0xc82084dda0] } +&{split QString::split commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QStringList [0xc82077a020 0xc82077a180 0xc82077a240] } +&{splitRef QString::splitRef commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 QVector [0xc82077a520 0xc82077a5c0 0xc82077a6a0] } +&{splitRef QString::splitRef commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 QVector [0xc82077aa00 0xc82077aaa0] } +&{splitRef QString::splitRef commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 QVector [0xc82077ae60 0xc82077af80] } +&{splitRef QString::splitRef commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QVector [0xc82077b300 0xc82077b380 0xc82077b500] } +&{squeeze QString::squeeze commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false void [] } +&{startsWith QString::startsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 bool [0xc82077bb20 0xc82077bc20] } +&{startsWith QString::startsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 bool [0xc82077bec0 0xc82077bfc0] } +&{startsWith QString::startsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [0xc820a54280 0xc820a54380] } +&{startsWith QString::startsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 bool [0xc820a54660 0xc820a547a0] } +&{swap QString::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false void [0xc820a54a00] } +&{toDouble QString::toDouble commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false double [0xc820a54d60] } +&{toFloat QString::toFloat commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false float [0xc820a54f40] } +&{toHtmlEscaped QString::toHtmlEscaped commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QString [] } +&{toInt QString::toInt commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false int [0xc820a55280 0xc820a55320] } +&{toLongLong QString::toLongLong commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false qlonglong [0xc820a55a40 0xc820a55b00] } +&{toShort QString::toShort commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false short [0xc820a55cc0 0xc820a55d80] } +&{toStdString QString::toStdString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false std::string [] } +&{toStdU16String QString::toStdU16String commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false std::u16string [] } +&{toStdU32String QString::toStdU32String commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false std::u32string [] } +&{toStdWString QString::toStdWString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false std::wstring [] } +&{toUInt QString::toUInt commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false uint [0xc82083e360 0xc82083e440] } +&{toULongLong QString::toULongLong commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false qulonglong [0xc82083e720 0xc82083e7c0] } +&{toUShort QString::toUShort commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false ushort [0xc82083eac0 0xc82083eb60] } +&{toUcs4 QString::toUcs4 commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QVector [] } +&{toWCharArray QString::toWCharArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false int [0xc82083efc0] } +&{unicode QString::unicode commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false const QChar * [] } +&{~QString QString::~QString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non destructor false false [] } +&{simplified QString::simplified commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring_compat.cpp non plain false false QString [] } +&{toCaseFolded QString::toCaseFolded commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring_compat.cpp non plain false false QString [] } +&{toLatin1 QString::toLatin1 commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring_compat.cpp non plain false false QByteArray [] } +&{toLocal8Bit QString::toLocal8Bit commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring_compat.cpp non plain false false QByteArray [] } +&{toLower QString::toLower commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring_compat.cpp non plain false false QString [] } +&{toUpper QString::toUpper commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring_compat.cpp non plain false false QString [] } +&{toUtf8 QString::toUtf8 commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring_compat.cpp non plain false false QByteArray [] } +&{trimmed QString::trimmed commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring_compat.cpp non plain false false QString [] } +&{fromCFString QString::fromCFString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring_mac.mm non plain true false QString [0xc820784780] } +&{fromNSString QString::fromNSString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring_mac.mm non plain true false QString [0xc8207849e0] } +&{toCFString QString::toCFString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring_mac.mm non plain false false CFStringRef [] } +&{toNSString QString::toNSString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring_mac.mm non plain false false NSString * [] } +######################################## ENUMS ######################################## +&{NormalizationForm QString::NormalizationForm commendable public [0xc82015b380 0xc82015b460 0xc82015b540 0xc82015b620]} +&{SectionFlag QString::SectionFlag commendable public QString::SectionFlags [0xc82015b8e0 0xc82015b960 0xc82015baa0 0xc82015bbc0 0xc82015bd60]} +&{SplitBehavior QString::SplitBehavior commendable public [0xc8209e2020 0xc8209e20c0]} diff --git a/internal/binding/dump/QtCore/QStringList.txt b/internal/binding/dump/QtCore/QStringList.txt new file mode 100755 index 00000000..5efe6a46 --- /dev/null +++ b/internal/binding/dump/QtCore/QStringList.txt @@ -0,0 +1,30 @@ +######################################## FUNCTIONS ######################################## +&{QStringList QStringList::QStringList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non constructor false false [] } +&{QStringList QStringList::QStringList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non constructor false true 5 [0xc8207808e0] } +&{QStringList QStringList::QStringList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non constructor false true 3 [0xc820780c80] } +&{QStringList QStringList::QStringList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non constructor false true 2 [0xc820780fa0] } +&{QStringList QStringList::QStringList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non constructor false true 4 [0xc8207812e0] } +&{contains QStringList::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non plain false false bool [0xc8207815c0 0xc820781780] } +&{filter QStringList::filter commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non plain false true 2 QStringList [0xc820781ae0] } +&{filter QStringList::filter commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non plain false true 3 QStringList [0xc820781e40] } +&{filter QStringList::filter commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non plain false false QStringList [0xc8207681e0 0xc8207683e0] } +&{indexOf QStringList::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non plain false true 2 int [0xc820768700 0xc8207687c0] } +&{indexOf QStringList::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non plain false false int [0xc820768a40 0xc820768ae0] } +&{indexOf QStringList::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non plain false true 3 int [0xc820768ea0 0xc820769000] } +&{join QStringList::join commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non plain false true 2 QString [0xc8207692e0] } +&{join QStringList::join commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non plain false false QString [0xc820769580] } +&{lastIndexOf QStringList::lastIndexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non plain false true 2 int [0xc8207697e0 0xc8207698c0] } +&{lastIndexOf QStringList::lastIndexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non plain false false int [0xc820769bc0 0xc820769cc0] } +&{lastIndexOf QStringList::lastIndexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non plain false true 3 int [0xc8207580c0 0xc8207582e0] } +&{operator+ QStringList::operator+ commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non plain false false QStringList [0xc820758720] } +&{operator<< QStringList::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non plain false true 3 QStringList & [0xc820758b60] } +&{operator<< QStringList::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non plain false false QStringList & [0xc820758e60] } +&{operator<< QStringList::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non plain false true 2 QStringList & [0xc8207591a0] } +&{operator= QStringList::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non plain false true 2 QStringList & [0xc8207596a0] } +&{operator= QStringList::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non plain false false QStringList & [0xc820759ba0] } +&{removeDuplicates QStringList::removeDuplicates commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non plain false false int [] } +&{replaceInStrings QStringList::replaceInStrings commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non plain false true 2 QStringList & [0xc8209f2220 0xc8209f2320] } +&{replaceInStrings QStringList::replaceInStrings commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non plain false true 3 QStringList & [0xc8209f25a0 0xc8209f2660] } +&{replaceInStrings QStringList::replaceInStrings commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non plain false false QStringList & [0xc8209f2900 0xc8209f29c0 0xc8209f2b80] } +&{sort QStringList::sort commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringlist.h non plain false false void [0xc8209f2f60] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QStringListModel.txt b/internal/binding/dump/QtCore/QStringListModel.txt new file mode 100755 index 00000000..bad7b006 --- /dev/null +++ b/internal/binding/dump/QtCore/QStringListModel.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QStringListModel QStringListModel::QStringListModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qstringlistmodel.h non constructor false false [0xc8205143c0] } +&{QStringListModel QStringListModel::QStringListModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qstringlistmodel.h non constructor false true 2 [0xc820514540 0xc820514600] } +&{data QStringListModel::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qstringlistmodel.h impure plain false false QVariant [0xc820514800 0xc8205148c0] } +&{flags QStringListModel::flags commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qstringlistmodel.h impure plain false false Qt::ItemFlags [0xc820514ac0] } +&{insertRows QStringListModel::insertRows commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qstringlistmodel.h impure plain false false bool [0xc820514d00 0xc820514d80 0xc820514e20] } +&{removeRows QStringListModel::removeRows commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qstringlistmodel.h impure plain false false bool [0xc820515040 0xc8205150c0 0xc820515160] } +&{rowCount QStringListModel::rowCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qstringlistmodel.h impure plain false false int [0xc8205153a0] } +&{setData QStringListModel::setData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qstringlistmodel.h impure plain false false bool [0xc8205155e0 0xc8205156a0 0xc820515720] } +&{setStringList QStringListModel::setStringList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qstringlistmodel.h non plain false false void [0xc820515920] } +&{sibling QStringListModel::sibling commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qstringlistmodel.h impure plain false false QModelIndex [0xc820515b40 0xc820515bc0 0xc820515c60] } +&{sort QStringListModel::sort commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qstringlistmodel.h impure plain false false void [0xc820515e80 0xc820515f20] } +&{stringList QStringListModel::stringList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qstringlistmodel.h non plain false false QStringList [] } +&{supportedDropActions QStringListModel::supportedDropActions commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/itemmodels/qstringlistmodel.h impure plain false false Qt::DropActions [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QStringMatcher.txt b/internal/binding/dump/QtCore/QStringMatcher.txt new file mode 100755 index 00000000..0e4c685d --- /dev/null +++ b/internal/binding/dump/QtCore/QStringMatcher.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QStringMatcher QStringMatcher::QStringMatcher commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringmatcher.cpp non constructor false true 3 [0xc8209f3480 0xc8209f3540 0xc8209f3620] } +&{pattern QStringMatcher::pattern commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringmatcher.cpp non plain false false QString [] } +&{QStringMatcher QStringMatcher::QStringMatcher commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringmatcher.h non constructor false false [] } +&{QStringMatcher QStringMatcher::QStringMatcher commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringmatcher.h non constructor false true 2 [0xc8209f3ec0 0xc820740000] } +&{QStringMatcher QStringMatcher::QStringMatcher commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringmatcher.h non constructor false true 4 [0xc820740540] } +&{caseSensitivity QStringMatcher::caseSensitivity commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringmatcher.h non plain false false Qt::CaseSensitivity [] } +&{indexIn QStringMatcher::indexIn commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringmatcher.h non plain false true 2 int [0xc820740d00 0xc820740d80 0xc820740f00] } +&{indexIn QStringMatcher::indexIn commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringmatcher.h non plain false false int [0xc8207412c0 0xc8207413c0] } +&{operator= QStringMatcher::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringmatcher.h non plain false false QStringMatcher & [0xc820741840] } +&{setCaseSensitivity QStringMatcher::setCaseSensitivity commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringmatcher.h non plain false false void [0xc820741d20] } +&{setPattern QStringMatcher::setPattern commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringmatcher.h non plain false false void [0xc82072c1e0] } +&{~QStringMatcher QStringMatcher::~QStringMatcher commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstringmatcher.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QStringRef.txt b/internal/binding/dump/QtCore/QStringRef.txt new file mode 100755 index 00000000..6e8a16b2 --- /dev/null +++ b/internal/binding/dump/QtCore/QStringRef.txt @@ -0,0 +1,86 @@ +######################################## FUNCTIONS ######################################## +&{left QStringRef::left commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.cpp non plain false false QStringRef [0xc820784fe0] } +&{mid QStringRef::mid commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.cpp non plain false false QStringRef [0xc8207851a0 0xc820785260] } +&{right QStringRef::right commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.cpp non plain false false QStringRef [0xc8207854c0] } +&{toLong QStringRef::toLong commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.cpp non plain false false long [0xc820785740 0xc8207857e0] } +&{toULong QStringRef::toULong commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.cpp non plain false false ulong [0xc820785a60 0xc820785b20] } +&{QStringRef QStringRef::QStringRef commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non constructor false false [] } +&{QStringRef QStringRef::QStringRef commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non constructor false true 3 [0xc820838300] } +&{QStringRef QStringRef::QStringRef commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non constructor false true 2 [0xc8208387a0 0xc820838900 0xc8208389c0] } +&{QStringRef QStringRef::QStringRef commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non constructor false true 4 [0xc820838ee0] } +&{appendTo QStringRef::appendTo commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QStringRef [0xc820839480] } +&{at QStringRef::at commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false const QChar [0xc820839860] } +&{begin QStringRef::begin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false const QChar * [] } +&{cbegin QStringRef::cbegin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false const QChar * [] } +&{cend QStringRef::cend commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false const QChar * [] } +&{clear QStringRef::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false void [] } +&{compare QStringRef::compare commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true true 3 int [0xc820822700 0xc820822840 0xc8208229a0] } +&{compare QStringRef::compare commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true false int [0xc820822f60 0xc820823140 0xc8208232c0] } +&{compare QStringRef::compare commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true true 2 int [0xc820823700 0xc820823900 0xc820823ae0] } +&{compare QStringRef::compare commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 6 int [0xc820823e80 0xc820823fa0] } +&{compare QStringRef::compare commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 int [0xc82080e2c0 0xc82080e440] } +&{compare QStringRef::compare commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 5 int [0xc82080e7a0 0xc82080e940] } +&{constData QStringRef::constData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false const QChar * [] } +&{contains QStringRef::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 bool [0xc82080edc0 0xc82080eec0] } +&{contains QStringRef::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 bool [0xc82080f240 0xc82080f480] } +&{contains QStringRef::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [0xc82080f880 0xc82080f9e0] } +&{contains QStringRef::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 bool [0xc82080fdc0 0xc82080fec0] } +&{count QStringRef::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false int [] } +&{count QStringRef::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 int [0xc8208c6340 0xc8208c6440] } +&{count QStringRef::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 int [0xc8208c66e0 0xc8208c6800] } +&{count QStringRef::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 int [0xc8208c6ae0 0xc8208c6c40] } +&{data QStringRef::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false const QChar * [] } +&{end QStringRef::end commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false const QChar * [] } +&{endsWith QStringRef::endsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 bool [0xc8208c70c0 0xc8208c71c0] } +&{endsWith QStringRef::endsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 bool [0xc8208c7460 0xc8208c7560] } +&{endsWith QStringRef::endsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [0xc8208c7820 0xc8208c7940] } +&{endsWith QStringRef::endsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 bool [0xc8208c7be0 0xc8208c7d60] } +&{indexOf QStringRef::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 int [0xc8207f8020 0xc8207f8100 0xc8207f81e0] } +&{indexOf QStringRef::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 int [0xc8207f8480 0xc8207f8620 0xc8207f8760] } +&{indexOf QStringRef::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false int [0xc8207f8be0 0xc8207f8ca0 0xc8207f8ee0] } +&{indexOf QStringRef::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 int [0xc8207f9460 0xc8207f95c0 0xc8207f96c0] } +&{isEmpty QStringRef::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [] } +&{isNull QStringRef::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [] } +&{lastIndexOf QStringRef::lastIndexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 int [0xc8207f9ec0 0xc8207f9fc0 0xc8207bc100] } +&{lastIndexOf QStringRef::lastIndexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 int [0xc8207bc520 0xc8207bc660 0xc8207bc880] } +&{lastIndexOf QStringRef::lastIndexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false int [0xc8207bce20 0xc8207bcfc0 0xc8207bd140] } +&{lastIndexOf QStringRef::lastIndexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 int [0xc8207bd6e0 0xc8207bd960 0xc8207bdb80] } +&{length QStringRef::length commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false int [] } +&{localeAwareCompare QStringRef::localeAwareCompare commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true false int [0xc8207a82e0 0xc8207a8520] } +&{localeAwareCompare QStringRef::localeAwareCompare commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain true true 2 int [0xc8207a8a40 0xc8207a8be0] } +&{localeAwareCompare QStringRef::localeAwareCompare commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 int [0xc8207a9080] } +&{localeAwareCompare QStringRef::localeAwareCompare commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 int [0xc8207a9440] } +&{operator!= QStringRef::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [0xc8207a9780] } +&{operator< QStringRef::operator< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [0xc8207a9a20] } +&{operator<= QStringRef::operator<= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [0xc8207a9cc0] } +&{operator= QStringRef::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 QStringRef & [0xc8207a9fc0] } +&{operator= QStringRef::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QStringRef & [0xc820b0e260] } +&{operator== QStringRef::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [0xc820b0e500] } +&{operator> QStringRef::operator> commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [0xc820b0e760] } +&{operator>= QStringRef::operator>= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [0xc820b0e9c0] } +&{position QStringRef::position commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false int [] } +&{size QStringRef::size commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false int [] } +&{split QStringRef::split commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 QVector [0xc820b0eea0 0xc820b0efa0 0xc820b0f0e0] } +&{split QStringRef::split commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QVector [0xc820b0f420 0xc820b0f520 0xc820b0f660] } +&{startsWith QStringRef::startsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 4 bool [0xc820b0f920 0xc820b0fa20] } +&{startsWith QStringRef::startsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 2 bool [0xc820b0fce0 0xc820b0fde0] } +&{startsWith QStringRef::startsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false bool [0xc820796100 0xc8207961e0] } +&{startsWith QStringRef::startsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false true 3 bool [0xc820796520 0xc8207966c0] } +&{string QStringRef::string commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false const QString * [] } +&{toDouble QStringRef::toDouble commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false double [0xc820796e40] } +&{toFloat QStringRef::toFloat commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false float [0xc8207971c0] } +&{toInt QStringRef::toInt commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false int [0xc820797620 0xc820797780] } +&{toLatin1 QStringRef::toLatin1 commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QByteArray [] } +&{toLocal8Bit QStringRef::toLocal8Bit commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QByteArray [] } +&{toLongLong QStringRef::toLongLong commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false qlonglong [0xc820797fc0 0xc820b06060] } +&{toShort QStringRef::toShort commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false short [0xc820b062c0 0xc820b06360] } +&{toString QStringRef::toString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QString [] } +&{toUInt QStringRef::toUInt commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false uint [0xc820b06700 0xc820b067c0] } +&{toULongLong QStringRef::toULongLong commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false qulonglong [0xc820b06a00 0xc820b06ac0] } +&{toUShort QStringRef::toUShort commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false ushort [0xc820b06d00 0xc820b06dc0] } +&{toUcs4 QStringRef::toUcs4 commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QVector [] } +&{toUtf8 QStringRef::toUtf8 commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QByteArray [] } +&{trimmed QStringRef::trimmed commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false QStringRef [] } +&{unicode QStringRef::unicode commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non plain false false const QChar * [] } +&{~QStringRef QStringRef::~QStringRef commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qstring.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QSysInfo.txt b/internal/binding/dump/QtCore/QSysInfo.txt new file mode 100755 index 00000000..b64e30dd --- /dev/null +++ b/internal/binding/dump/QtCore/QSysInfo.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{macVersion QSysInfo::macVersion commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qglobal.cpp non plain true false MacVersion [] } +&{buildAbi QSysInfo::buildAbi commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qsysinfo.h non plain true false QString [] } +&{buildCpuArchitecture QSysInfo::buildCpuArchitecture commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qsysinfo.h non plain true false QString [] } +&{currentCpuArchitecture QSysInfo::currentCpuArchitecture commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qsysinfo.h non plain true false QString [] } +&{kernelType QSysInfo::kernelType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qsysinfo.h non plain true false QString [] } +&{kernelVersion QSysInfo::kernelVersion commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qsysinfo.h non plain true false QString [] } +&{prettyProductName QSysInfo::prettyProductName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qsysinfo.h non plain true false QString [] } +&{productType QSysInfo::productType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qsysinfo.h non plain true false QString [] } +&{productVersion QSysInfo::productVersion commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qsysinfo.h non plain true false QString [] } +&{windowsVersion QSysInfo::windowsVersion commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/global/qsysinfo.h non plain true false WinVersion [] } +######################################## ENUMS ######################################## +&{Endian QSysInfo::Endian commendable public [0xc820290300 0xc820290380 0xc820290420 0xc8202904e0]} +&{MacVersion QSysInfo::MacVersion commendable public [0xc8202906a0 0xc820290720 0xc8202907a0 0xc820290820 0xc8202908c0 0xc820290940 0xc8202909c0 0xc820290a40 0xc820290ae0 0xc820290b60 0xc820290be0 0xc820290c60 0xc820290ce0 0xc820290d60 0xc820290de0 0xc820290e60 0xc820290f00 0xc820290f80 0xc820291000 0xc820291080 0xc820291100 0xc820291180 0xc820291200 0xc820291280 0xc820291300 0xc820291380 0xc820291400 0xc820291480 0xc820291500 0xc820291580 0xc820291600 0xc820291680 0xc820291720 0xc8202917a0 0xc820291820 0xc8202918a0 0xc820291920 0xc8202919a0 0xc820291a20 0xc820291aa0 0xc820291b20]} +&{Sizes QSysInfo::Sizes commendable public [0xc820291ca0]} +&{WinVersion QSysInfo::WinVersion commendable public [0xc820291ea0 0xc820291f20 0xc820291fa0 0xc82029a020 0xc82029a0c0 0xc82029a140 0xc82029a1c0 0xc82029a240 0xc82029a2e0 0xc82029a360 0xc82029a3e0 0xc82029a460 0xc82029a4e0 0xc82029a560 0xc82029a5e0 0xc82029a660 0xc82029a700 0xc82029a780 0xc82029a800 0xc82029a880 0xc82029a900 0xc82029a980 0xc82029aa00 0xc82029aa80 0xc82029ab00 0xc82029ab80 0xc82029ac00 0xc82029ac80 0xc82029ad00 0xc82029ad80]} diff --git a/internal/binding/dump/QtCore/QSystemSemaphore.txt b/internal/binding/dump/QtCore/QSystemSemaphore.txt new file mode 100755 index 00000000..1724801b --- /dev/null +++ b/internal/binding/dump/QtCore/QSystemSemaphore.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{QSystemSemaphore QSystemSemaphore::QSystemSemaphore commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsystemsemaphore.h non constructor false false [0xc8202eda60 0xc8202edae0 0xc8202edbe0] } +&{acquire QSystemSemaphore::acquire commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsystemsemaphore.h non plain false false bool [] } +&{error QSystemSemaphore::error commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsystemsemaphore.h non plain false false SystemSemaphoreError [] } +&{errorString QSystemSemaphore::errorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsystemsemaphore.h non plain false false QString [] } +&{key QSystemSemaphore::key commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsystemsemaphore.h non plain false false QString [] } +&{release QSystemSemaphore::release commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsystemsemaphore.h non plain false false bool [0xc8202d04c0] } +&{setKey QSystemSemaphore::setKey commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsystemsemaphore.h non plain false false void [0xc8202d0760 0xc8202d0840 0xc8202d08e0] } +&{~QSystemSemaphore QSystemSemaphore::~QSystemSemaphore commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qsystemsemaphore.h non destructor false false [] } +######################################## ENUMS ######################################## +&{AccessMode QSystemSemaphore::AccessMode commendable public [0xc8202ecf00 0xc8202ecfc0]} +&{SystemSemaphoreError QSystemSemaphore::SystemSemaphoreError commendable public [0xc8202ed280 0xc8202ed3a0 0xc8202ed460 0xc8202ed520 0xc8202ed600 0xc8202ed720 0xc8202ed7a0]} diff --git a/internal/binding/dump/QtCore/QTemporaryDir.txt b/internal/binding/dump/QtCore/QTemporaryDir.txt new file mode 100755 index 00000000..ef7f8230 --- /dev/null +++ b/internal/binding/dump/QtCore/QTemporaryDir.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{QTemporaryDir QTemporaryDir::QTemporaryDir commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtemporarydir.h non constructor false false [] } +&{QTemporaryDir QTemporaryDir::QTemporaryDir commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtemporarydir.h non constructor false true 2 [0xc82026b440] } +&{autoRemove QTemporaryDir::autoRemove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtemporarydir.h non plain false false bool [] } +&{isValid QTemporaryDir::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtemporarydir.h non plain false false bool [] } +&{path QTemporaryDir::path commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtemporarydir.h non plain false false QString [] } +&{remove QTemporaryDir::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtemporarydir.h non plain false false bool [] } +&{setAutoRemove QTemporaryDir::setAutoRemove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtemporarydir.h non plain false false void [0xc82026bbe0] } +&{~QTemporaryDir QTemporaryDir::~QTemporaryDir commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtemporarydir.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QTemporaryFile.txt b/internal/binding/dump/QtCore/QTemporaryFile.txt new file mode 100755 index 00000000..8b424dda --- /dev/null +++ b/internal/binding/dump/QtCore/QTemporaryFile.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{QTemporaryFile QTemporaryFile::QTemporaryFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtemporaryfile.h non constructor false false [] } +&{QTemporaryFile QTemporaryFile::QTemporaryFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtemporaryfile.h non constructor false true 3 [0xc8202640e0] } +&{QTemporaryFile QTemporaryFile::QTemporaryFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtemporaryfile.h non constructor false true 2 [0xc820264320] } +&{QTemporaryFile QTemporaryFile::QTemporaryFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtemporaryfile.h non constructor false true 4 [0xc820264560 0xc820264620] } +&{autoRemove QTemporaryFile::autoRemove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtemporaryfile.h non plain false false bool [] } +&{createNativeFile QTemporaryFile::createNativeFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtemporaryfile.h non plain true false QTemporaryFile * [0xc820264e40] } +&{createNativeFile QTemporaryFile::createNativeFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtemporaryfile.h non plain true true 2 QTemporaryFile * [0xc8202650c0] } +&{fileName QTemporaryFile::fileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtemporaryfile.h impure plain false false QString [] } +&{fileTemplate QTemporaryFile::fileTemplate commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtemporaryfile.h non plain false false QString [] } +&{open QTemporaryFile::open commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtemporaryfile.h non plain false false bool [] } +&{open QTemporaryFile::open commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtemporaryfile.h impure plain false true 2 bool [0xc820265760] } +&{setAutoRemove QTemporaryFile::setAutoRemove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtemporaryfile.h non plain false false void [0xc8202659c0] } +&{setFileTemplate QTemporaryFile::setFileTemplate commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtemporaryfile.h non plain false false void [0xc820265c00] } +&{~QTemporaryFile QTemporaryFile::~QTemporaryFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtemporaryfile.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QTextBoundaryFinder.txt b/internal/binding/dump/QtCore/QTextBoundaryFinder.txt new file mode 100755 index 00000000..8fea3f5c --- /dev/null +++ b/internal/binding/dump/QtCore/QTextBoundaryFinder.txt @@ -0,0 +1,21 @@ +######################################## FUNCTIONS ######################################## +&{QTextBoundaryFinder QTextBoundaryFinder::QTextBoundaryFinder commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtextboundaryfinder.h non constructor false false [] } +&{QTextBoundaryFinder QTextBoundaryFinder::QTextBoundaryFinder commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtextboundaryfinder.h non constructor false true 4 [0xc82072dd40 0xc82072de20 0xc82072dfc0 0xc8207160e0 0xc8207162c0] } +&{QTextBoundaryFinder QTextBoundaryFinder::QTextBoundaryFinder commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtextboundaryfinder.h non constructor false true 3 [0xc8207166a0 0xc820716860] } +&{QTextBoundaryFinder QTextBoundaryFinder::QTextBoundaryFinder commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtextboundaryfinder.h non constructor false true 2 [0xc820716ca0] } +&{boundaryReasons QTextBoundaryFinder::boundaryReasons commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtextboundaryfinder.h non plain false false BoundaryReasons [] } +&{isAtBoundary QTextBoundaryFinder::isAtBoundary commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtextboundaryfinder.h non plain false false bool [] } +&{isValid QTextBoundaryFinder::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtextboundaryfinder.h non plain false false bool [] } +&{operator= QTextBoundaryFinder::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtextboundaryfinder.h non plain false false QTextBoundaryFinder & [0xc820717860] } +&{position QTextBoundaryFinder::position commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtextboundaryfinder.h non plain false false int [] } +&{setPosition QTextBoundaryFinder::setPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtextboundaryfinder.h non plain false false void [0xc8207000e0] } +&{string QTextBoundaryFinder::string commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtextboundaryfinder.h non plain false false QString [] } +&{toEnd QTextBoundaryFinder::toEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtextboundaryfinder.h non plain false false void [] } +&{toNextBoundary QTextBoundaryFinder::toNextBoundary commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtextboundaryfinder.h non plain false false int [] } +&{toPreviousBoundary QTextBoundaryFinder::toPreviousBoundary commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtextboundaryfinder.h non plain false false int [] } +&{toStart QTextBoundaryFinder::toStart commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtextboundaryfinder.h non plain false false void [] } +&{type QTextBoundaryFinder::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtextboundaryfinder.h non plain false false BoundaryType [] } +&{~QTextBoundaryFinder QTextBoundaryFinder::~QTextBoundaryFinder commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtextboundaryfinder.h non destructor false false [] } +######################################## ENUMS ######################################## +&{BoundaryReason QTextBoundaryFinder::BoundaryReason commendable public QTextBoundaryFinder::BoundaryReasons [0xc82072c9a0 0xc82072cb00 0xc82072cc20 0xc82072ccc0 0xc82072ce00 0xc82072cf00]} +&{BoundaryType QTextBoundaryFinder::BoundaryType commendable public [0xc82072d1e0 0xc82072d320 0xc82072d400 0xc82072d540]} diff --git a/internal/binding/dump/QtCore/QTextCodec.txt b/internal/binding/dump/QtCore/QTextCodec.txt new file mode 100755 index 00000000..3bd029d2 --- /dev/null +++ b/internal/binding/dump/QtCore/QTextCodec.txt @@ -0,0 +1,30 @@ +######################################## FUNCTIONS ######################################## +&{QTextCodec QTextCodec::QTextCodec commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non constructor false false [] } +&{aliases QTextCodec::aliases commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h impure plain false false QList [] } +&{availableCodecs QTextCodec::availableCodecs commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non plain true false QList [] } +&{availableMibs QTextCodec::availableMibs commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non plain true false QList [] } +&{canEncode QTextCodec::canEncode commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non plain false false bool [0xc82013ce20] } +&{canEncode QTextCodec::canEncode commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non plain false true 2 bool [0xc82013cfe0] } +&{codecForHtml QTextCodec::codecForHtml commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non plain true true 2 QTextCodec * [0xc82013d1c0] } +&{codecForHtml QTextCodec::codecForHtml commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non plain true false QTextCodec * [0xc82013d3e0 0xc82013d4a0] } +&{codecForLocale QTextCodec::codecForLocale commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non plain true false QTextCodec * [] } +&{codecForMib QTextCodec::codecForMib commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non plain true false QTextCodec * [0xc82013d780] } +&{codecForName QTextCodec::codecForName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non plain true false QTextCodec * [0xc82013d960] } +&{codecForName QTextCodec::codecForName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non plain true true 2 QTextCodec * [0xc82013db60] } +&{codecForUtfText QTextCodec::codecForUtfText commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non plain true true 2 QTextCodec * [0xc82013de00] } +&{codecForUtfText QTextCodec::codecForUtfText commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non plain true false QTextCodec * [0xc820152020 0xc8201520e0] } +&{convertFromUnicode QTextCodec::convertFromUnicode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h pure plain false false QByteArray [0xc8201522e0 0xc820152360 0xc8201523e0] } +&{convertToUnicode QTextCodec::convertToUnicode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h pure plain false false QString [0xc8201525c0 0xc820152640 0xc8201526c0] } +&{fromUnicode QTextCodec::fromUnicode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non plain false true 2 QByteArray [0xc820152880 0xc820152900 0xc820152980] } +&{fromUnicode QTextCodec::fromUnicode commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non plain false false QByteArray [0xc820152b40] } +&{makeDecoder QTextCodec::makeDecoder commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non plain false false QTextDecoder * [0xc820152d20] } +&{makeEncoder QTextCodec::makeEncoder commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non plain false false QTextEncoder * [0xc820152f00] } +&{mibEnum QTextCodec::mibEnum commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h pure plain false false int [] } +&{name QTextCodec::name commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h pure plain false false QByteArray [] } +&{setCodecForLocale QTextCodec::setCodecForLocale commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non plain true false void [0xc8201532a0] } +&{toUnicode QTextCodec::toUnicode commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non plain false false QString [0xc820153480] } +&{toUnicode QTextCodec::toUnicode commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non plain false true 3 QString [0xc820153680] } +&{toUnicode QTextCodec::toUnicode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non plain false true 2 QString [0xc820153840 0xc8201538c0 0xc820153940] } +&{~QTextCodec QTextCodec::~QTextCodec commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{ConversionFlag QTextCodec::ConversionFlag commendable public QTextCodec::ConversionFlags [0xc82013c4c0 0xc82013c5a0 0xc82013c660 0xc82013c6e0]} diff --git a/internal/binding/dump/QtCore/QTextDecoder.txt b/internal/binding/dump/QtCore/QTextDecoder.txt new file mode 100755 index 00000000..6bf37911 --- /dev/null +++ b/internal/binding/dump/QtCore/QTextDecoder.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{toUnicode QTextDecoder::toUnicode commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.cpp non plain false false QString [0xc820153d40 0xc820153dc0] } +&{QTextDecoder QTextDecoder::QTextDecoder commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non constructor false false [0xc820153fa0] } +&{QTextDecoder QTextDecoder::QTextDecoder commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non constructor false true 2 [0xc8201621c0 0xc8201622a0] } +&{toUnicode QTextDecoder::toUnicode commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non plain false true 3 QString [0xc8201625e0] } +&{toUnicode QTextDecoder::toUnicode commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non plain false true 2 void [0xc8201627e0 0xc820162860 0xc8201628e0] } +&{~QTextDecoder QTextDecoder::~QTextDecoder commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QTextEncoder.txt b/internal/binding/dump/QtCore/QTextEncoder.txt new file mode 100755 index 00000000..e7e53b4c --- /dev/null +++ b/internal/binding/dump/QtCore/QTextEncoder.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{QTextEncoder QTextEncoder::QTextEncoder commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non constructor false false [0xc820162cc0] } +&{QTextEncoder QTextEncoder::QTextEncoder commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non constructor false true 2 [0xc820162ee0 0xc820162fc0] } +&{fromUnicode QTextEncoder::fromUnicode commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non plain false true 2 QByteArray [0xc8201631c0 0xc820163240] } +&{fromUnicode QTextEncoder::fromUnicode commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non plain false false QByteArray [0xc820163400] } +&{~QTextEncoder QTextEncoder::~QTextEncoder commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/codecs/qtextcodec.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QTextStream.txt b/internal/binding/dump/QtCore/QTextStream.txt new file mode 100755 index 00000000..e5b00762 --- /dev/null +++ b/internal/binding/dump/QtCore/QTextStream.txt @@ -0,0 +1,85 @@ +######################################## FUNCTIONS ######################################## +&{QTextStream QTextStream::QTextStream commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non constructor false false [] } +&{QTextStream QTextStream::QTextStream commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non constructor false true 3 [0xc82025d820 0xc82025d920] } +&{QTextStream QTextStream::QTextStream commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non constructor false true 5 [0xc82025dbe0 0xc82025dce0] } +&{QTextStream QTextStream::QTextStream commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non constructor false true 2 [0xc82025dfc0] } +&{QTextStream QTextStream::QTextStream commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non constructor false true 4 [0xc820252200 0xc820252300] } +&{QTextStream QTextStream::QTextStream commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non constructor false true 6 [0xc8202525a0 0xc820252700] } +&{atEnd QTextStream::atEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false bool [] } +&{autoDetectUnicode QTextStream::autoDetectUnicode commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false bool [] } +&{codec QTextStream::codec commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false QTextCodec * [] } +&{device QTextStream::device commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false QIODevice * [] } +&{fieldAlignment QTextStream::fieldAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false FieldAlignment [] } +&{fieldWidth QTextStream::fieldWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false int [] } +&{flush QTextStream::flush commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false void [] } +&{generateByteOrderMark QTextStream::generateByteOrderMark commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false bool [] } +&{integerBase QTextStream::integerBase commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false int [] } +&{locale QTextStream::locale commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false QLocale [] } +&{numberFlags QTextStream::numberFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false NumberFlags [] } +&{operator<< QTextStream::operator<< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false QTextStream & [0xc820253820] } +&{operator<< QTextStream::operator<< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 14 QTextStream & [0xc820253a40] } +&{operator<< QTextStream::operator<< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 5 QTextStream & [0xc820253ca0] } +&{operator<< QTextStream::operator<< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 15 QTextStream & [0xc820253ec0] } +&{operator<< QTextStream::operator<< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 4 QTextStream & [0xc820244100] } +&{operator<< QTextStream::operator<< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 16 QTextStream & [0xc820244340] } +&{operator<< QTextStream::operator<< commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 17 QTextStream & [0xc820244540] } +&{operator<< QTextStream::operator<< commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 13 QTextStream & [0xc820244760] } +&{operator<< QTextStream::operator<< commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 3 QTextStream & [0xc820244980] } +&{operator<< QTextStream::operator<< commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 11 QTextStream & [0xc820244bc0] } +&{operator<< QTextStream::operator<< commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 12 QTextStream & [0xc820244de0] } +&{operator<< QTextStream::operator<< commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 7 QTextStream & [0xc820245000] } +&{operator<< QTextStream::operator<< commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 9 QTextStream & [0xc820245200] } +&{operator<< QTextStream::operator<< commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 2 QTextStream & [0xc820245460] } +&{operator<< QTextStream::operator<< commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 8 QTextStream & [0xc8202456a0] } +&{operator<< QTextStream::operator<< commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 10 QTextStream & [0xc8202458e0] } +&{operator<< QTextStream::operator<< commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 6 QTextStream & [0xc820245b00] } +&{operator>> QTextStream::operator>> commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 14 QTextStream & [0xc820245d20] } +&{operator>> QTextStream::operator>> commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false QTextStream & [0xc820245f40] } +&{operator>> QTextStream::operator>> commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 4 QTextStream & [0xc82023a160] } +&{operator>> QTextStream::operator>> commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 5 QTextStream & [0xc82023a380] } +&{operator>> QTextStream::operator>> commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 15 QTextStream & [0xc82023a580] } +&{operator>> QTextStream::operator>> commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 13 QTextStream & [0xc82023a7e0] } +&{operator>> QTextStream::operator>> commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 3 QTextStream & [0xc82023aa00] } +&{operator>> QTextStream::operator>> commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 11 QTextStream & [0xc82023ac20] } +&{operator>> QTextStream::operator>> commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 12 QTextStream & [0xc82023ae40] } +&{operator>> QTextStream::operator>> commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 7 QTextStream & [0xc82023b060] } +&{operator>> QTextStream::operator>> commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 9 QTextStream & [0xc82023b280] } +&{operator>> QTextStream::operator>> commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 2 QTextStream & [0xc82023b4a0] } +&{operator>> QTextStream::operator>> commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 8 QTextStream & [0xc82023b6c0] } +&{operator>> QTextStream::operator>> commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 10 QTextStream & [0xc82023b8c0] } +&{operator>> QTextStream::operator>> commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 6 QTextStream & [0xc82023bac0] } +&{padChar QTextStream::padChar commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false QChar [] } +&{pos QTextStream::pos commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false qint64 [] } +&{read QTextStream::read commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false QString [0xc82023bf60] } +&{readAll QTextStream::readAll commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false QString [] } +&{readLine QTextStream::readLine commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false QString [0xc82022e2e0] } +&{readLineInto QTextStream::readLineInto commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false bool [0xc82022e580 0xc82022e600] } +&{realNumberNotation QTextStream::realNumberNotation commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false RealNumberNotation [] } +&{realNumberPrecision QTextStream::realNumberPrecision commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false int [] } +&{reset QTextStream::reset commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false void [] } +&{resetStatus QTextStream::resetStatus commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false void [] } +&{seek QTextStream::seek commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false bool [0xc82022eec0] } +&{setAutoDetectUnicode QTextStream::setAutoDetectUnicode commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false void [0xc82022f0e0] } +&{setCodec QTextStream::setCodec commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false void [0xc82022f360] } +&{setCodec QTextStream::setCodec commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false true 2 void [0xc82022f5e0] } +&{setDevice QTextStream::setDevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false void [0xc82022f800] } +&{setFieldAlignment QTextStream::setFieldAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false void [0xc82022fac0] } +&{setFieldWidth QTextStream::setFieldWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false void [0xc82022fd00] } +&{setGenerateByteOrderMark QTextStream::setGenerateByteOrderMark commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false void [0xc82022fee0] } +&{setIntegerBase QTextStream::setIntegerBase commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false void [0xc820224140] } +&{setLocale QTextStream::setLocale commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false void [0xc820224360] } +&{setNumberFlags QTextStream::setNumberFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false void [0xc8202245c0] } +&{setPadChar QTextStream::setPadChar commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false void [0xc820224840] } +&{setRealNumberNotation QTextStream::setRealNumberNotation commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false void [0xc820224a40] } +&{setRealNumberPrecision QTextStream::setRealNumberPrecision commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false void [0xc820224cc0] } +&{setStatus QTextStream::setStatus commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false void [0xc820224f00] } +&{setString QTextStream::setString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false void [0xc820225160 0xc820225260] } +&{skipWhiteSpace QTextStream::skipWhiteSpace commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false void [] } +&{status QTextStream::status commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false Status [] } +&{string QTextStream::string commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h non plain false false QString * [] } +&{~QTextStream QTextStream::~QTextStream commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qtextstream.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{FieldAlignment QTextStream::FieldAlignment commendable public [0xc82025c180 0xc82025c240 0xc82025c300 0xc82025c3e0]} +&{NumberFlag QTextStream::NumberFlag commendable public QTextStream::NumberFlags [0xc82025c720 0xc82025c7c0 0xc82025c860 0xc82025c920 0xc82025ca00]} +&{RealNumberNotation QTextStream::RealNumberNotation commendable public [0xc82025ccc0 0xc82025cd80 0xc82025ce40]} +&{Status QTextStream::Status commendable public [0xc82025d100 0xc82025d1c0 0xc82025d260 0xc82025d300]} diff --git a/internal/binding/dump/QtCore/QThread.txt b/internal/binding/dump/QtCore/QThread.txt new file mode 100755 index 00000000..7869d99a --- /dev/null +++ b/internal/binding/dump/QtCore/QThread.txt @@ -0,0 +1,34 @@ +######################################## FUNCTIONS ######################################## +&{setPriority QThread::setPriority commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread.cpp non plain false false void [0xc82072c760] } +&{QThread QThread::QThread commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread.h non constructor false false [0xc82072cee0] } +&{currentThread QThread::currentThread commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread.h non plain true false QThread * [] } +&{event QThread::event commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread.h impure plain false false bool [0xc82072d360] } +&{eventDispatcher QThread::eventDispatcher commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread.h non plain false false QAbstractEventDispatcher * [] } +&{exec QThread::exec commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread.h non plain false false int [] } +&{exit QThread::exit commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread.h non plain false false void [0xc82072d6a0] } +&{finished QThread::finished commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread.h non signal false false void [] } +&{isFinished QThread::isFinished commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread.h non plain false false bool [] } +&{isInterruptionRequested QThread::isInterruptionRequested commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread.h non plain false false bool [] } +&{isRunning QThread::isRunning commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread.h non plain false false bool [] } +&{loopLevel QThread::loopLevel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread.h non plain false false int [] } +&{priority QThread::priority commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread.h non plain false false Priority [] } +&{quit QThread::quit commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread.h non slot false false void [] } +&{requestInterruption QThread::requestInterruption commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread.h non plain false false void [] } +&{run QThread::run commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread.h impure plain false false void [] } +&{setEventDispatcher QThread::setEventDispatcher commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread.h non plain false false void [0xc820740160] } +&{setStackSize QThread::setStackSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread.h non plain false false void [0xc820740360] } +&{stackSize QThread::stackSize commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread.h non plain false false uint [] } +&{started QThread::started commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread.h non signal false false void [] } +&{~QThread QThread::~QThread commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread.h non destructor false false [] } +&{currentThreadId QThread::currentThreadId commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread_win.cpp non plain true false Qt::HANDLE [] } +&{idealThreadCount QThread::idealThreadCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread_win.cpp non plain true false int [] } +&{msleep QThread::msleep commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread_win.cpp non plain true false void [0xc820740940] } +&{setTerminationEnabled QThread::setTerminationEnabled commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread_win.cpp non plain true false void [0xc820740b40] } +&{sleep QThread::sleep commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread_win.cpp non plain true false void [0xc820740cc0] } +&{start QThread::start commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread_win.cpp non slot false false void [0xc820740e40] } +&{terminate QThread::terminate commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread_win.cpp non slot false false void [] } +&{usleep QThread::usleep commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread_win.cpp non plain true false void [0xc8207410a0] } +&{wait QThread::wait commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread_win.cpp non plain false false bool [0xc820741220] } +&{yieldCurrentThread QThread::yieldCurrentThread commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthread_win.cpp non plain true false void [] } +######################################## ENUMS ######################################## +&{Priority QThread::Priority commendable public [0xc82072c960 0xc82072c9e0 0xc82072ca60 0xc82072cae0 0xc82072cb80 0xc82072cc00 0xc82072cca0 0xc82072cd60]} diff --git a/internal/binding/dump/QtCore/QThreadPool.txt b/internal/binding/dump/QtCore/QThreadPool.txt new file mode 100755 index 00000000..0036a820 --- /dev/null +++ b/internal/binding/dump/QtCore/QThreadPool.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{activeThreadCount QThreadPool::activeThreadCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthreadpool.cpp non plain false false int [] } +&{expiryTimeout QThreadPool::expiryTimeout commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthreadpool.cpp non plain false false int [] } +&{maxThreadCount QThreadPool::maxThreadCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthreadpool.cpp non plain false false int [] } +&{setExpiryTimeout QThreadPool::setExpiryTimeout commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthreadpool.cpp non plain false false void [0xc8207419e0] } +&{setMaxThreadCount QThreadPool::setMaxThreadCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthreadpool.cpp non plain false false void [0xc820741c20] } +&{QThreadPool QThreadPool::QThreadPool commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthreadpool.h non constructor false false [0xc820741e00] } +&{cancel QThreadPool::cancel commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthreadpool.h non plain false false void [0xc820741fe0] } +&{clear QThreadPool::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthreadpool.h non plain false false void [] } +&{globalInstance QThreadPool::globalInstance commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthreadpool.h non plain true false QThreadPool * [] } +&{releaseThread QThreadPool::releaseThread commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthreadpool.h non plain false false void [] } +&{reserveThread QThreadPool::reserveThread commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthreadpool.h non plain false false void [] } +&{start QThreadPool::start commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthreadpool.h non plain false false void [0xc8207585a0 0xc820758620] } +&{tryStart QThreadPool::tryStart commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthreadpool.h non plain false false bool [0xc8207587e0] } +&{waitForDone QThreadPool::waitForDone commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthreadpool.h non plain false false bool [0xc8207589c0] } +&{~QThreadPool QThreadPool::~QThreadPool commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthreadpool.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QThreadStorage.txt b/internal/binding/dump/QtCore/QThreadStorage.txt new file mode 100755 index 00000000..b84aa5cb --- /dev/null +++ b/internal/binding/dump/QtCore/QThreadStorage.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{QThreadStorage QThreadStorage::QThreadStorage commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthreadstorage.h non constructor false false [] } +&{hasLocalData QThreadStorage::hasLocalData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthreadstorage.h non plain false false bool [] } +&{localData QThreadStorage::localData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthreadstorage.h non plain false false T & [] } +&{localData QThreadStorage::localData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthreadstorage.h non plain false true 2 T [] } +&{setLocalData QThreadStorage::setLocalData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthreadstorage.h non plain false false void [0xc8207597c0] } +&{~QThreadStorage QThreadStorage::~QThreadStorage commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qthreadstorage.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QTime.txt b/internal/binding/dump/QtCore/QTime.txt new file mode 100755 index 00000000..602d29b6 --- /dev/null +++ b/internal/binding/dump/QtCore/QTime.txt @@ -0,0 +1,32 @@ +######################################## FUNCTIONS ######################################## +&{currentTime QTime::currentTime commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.cpp non plain true false QTime [] } +&{fromString QTime::fromString commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.cpp non plain true false QTime [0xc82065baa0 0xc82065bba0] } +&{fromString QTime::fromString commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.cpp non plain true true 2 QTime [0xc82065be60 0xc82065bee0] } +&{QTime QTime::QTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non constructor false false [] } +&{QTime QTime::QTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non constructor false true 3 [0xc820642400 0xc820642480 0xc820642520 0xc8206425a0] } +&{addMSecs QTime::addMSecs commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false QTime [0xc820642a60] } +&{addSecs QTime::addSecs commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false QTime [0xc820642ca0] } +&{elapsed QTime::elapsed commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false int [] } +&{fromMSecsSinceStartOfDay QTime::fromMSecsSinceStartOfDay commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain true false QTime [0xc820643080] } +&{hour QTime::hour commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false int [] } +&{isNull QTime::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false bool [] } +&{isValid QTime::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain true true 2 bool [0xc8206434c0 0xc820643560 0xc820643600 0xc8206436a0] } +&{isValid QTime::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false bool [] } +&{minute QTime::minute commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false int [] } +&{msec QTime::msec commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false int [] } +&{msecsSinceStartOfDay QTime::msecsSinceStartOfDay commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false int [] } +&{msecsTo QTime::msecsTo commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false int [0xc820643c60] } +&{operator!= QTime::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false bool [0xc820643e60] } +&{operator< QTime::operator< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false bool [0xc820643fe0] } +&{operator<= QTime::operator<= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false bool [0xc82061c220] } +&{operator== QTime::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false bool [0xc82061c420] } +&{operator> QTime::operator> commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false bool [0xc82061c600] } +&{operator>= QTime::operator>= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false bool [0xc82061c860] } +&{restart QTime::restart commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false int [] } +&{second QTime::second commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false int [] } +&{secsTo QTime::secsTo commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false int [0xc82061cb80] } +&{setHMS QTime::setHMS commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false bool [0xc82061cd60 0xc82061cde0 0xc82061ce80 0xc82061cf40] } +&{start QTime::start commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false void [] } +&{toString QTime::toString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false true 2 QString [0xc82061d120] } +&{toString QTime::toString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qdatetime.h non plain false false QString [0xc82061d2a0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QTimeLine.txt b/internal/binding/dump/QtCore/QTimeLine.txt new file mode 100755 index 00000000..2c793307 --- /dev/null +++ b/internal/binding/dump/QtCore/QTimeLine.txt @@ -0,0 +1,41 @@ +######################################## FUNCTIONS ######################################## +&{currentTime QTimeLine::currentTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.cpp non plain false false int [] } +&{curveShape QTimeLine::curveShape commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.cpp non plain false false CurveShape [] } +&{direction QTimeLine::direction commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.cpp non plain false false Direction [] } +&{duration QTimeLine::duration commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.cpp non plain false false int [] } +&{easingCurve QTimeLine::easingCurve commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.cpp non plain false false QEasingCurve [] } +&{loopCount QTimeLine::loopCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.cpp non plain false false int [] } +&{setCurrentTime QTimeLine::setCurrentTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.cpp non slot false false void [0xc8206e86a0] } +&{setCurveShape QTimeLine::setCurveShape commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.cpp non plain false false void [0xc8206e8b00] } +&{setDirection QTimeLine::setDirection commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.cpp non plain false false void [0xc8206e9040] } +&{setDuration QTimeLine::setDuration commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.cpp non plain false false void [0xc8206e9480] } +&{setEasingCurve QTimeLine::setEasingCurve commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.cpp non plain false false void [0xc8206e9a20] } +&{setLoopCount QTimeLine::setLoopCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.cpp non plain false false void [0xc8206e9f80] } +&{setUpdateInterval QTimeLine::setUpdateInterval commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.cpp non plain false false void [0xc8206d6360] } +&{updateInterval QTimeLine::updateInterval commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.cpp non plain false false int [] } +&{QTimeLine QTimeLine::QTimeLine commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.h non constructor false false [0xc8206d7cc0 0xc8206d7de0] } +&{currentFrame QTimeLine::currentFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.h non plain false false int [] } +&{currentValue QTimeLine::currentValue commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.h non plain false false qreal [] } +&{endFrame QTimeLine::endFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.h non plain false false int [] } +&{finished QTimeLine::finished commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.h non signal false false void [] } +&{frameChanged QTimeLine::frameChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.h non signal false false void [0xc82098c700] } +&{frameForTime QTimeLine::frameForTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.h non plain false false int [0xc82098c9e0] } +&{resume QTimeLine::resume commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.h non slot false false void [] } +&{setEndFrame QTimeLine::setEndFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.h non plain false false void [0xc82098ce20] } +&{setFrameRange QTimeLine::setFrameRange commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.h non plain false false void [0xc82098d140 0xc82098d200] } +&{setPaused QTimeLine::setPaused commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.h non slot false false void [0xc82098d4e0] } +&{setStartFrame QTimeLine::setStartFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.h non plain false false void [0xc82098d780] } +&{start QTimeLine::start commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.h non slot false false void [] } +&{startFrame QTimeLine::startFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.h non plain false false int [] } +&{state QTimeLine::state commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.h non plain false false State [] } +&{stateChanged QTimeLine::stateChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.h non signal false false void [0xc82098dd40] } +&{stop QTimeLine::stop commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.h non slot false false void [] } +&{timerEvent QTimeLine::timerEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.h impure plain false false void [0xc8206bc120] } +&{toggleDirection QTimeLine::toggleDirection commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.h non slot false false void [] } +&{valueChanged QTimeLine::valueChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.h non signal false false void [0xc8206bc600] } +&{valueForTime QTimeLine::valueForTime commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.h impure plain false false qreal [0xc8206bc8e0] } +&{~QTimeLine QTimeLine::~QTimeLine commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimeline.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{CurveShape QTimeLine::CurveShape commendable public [0xc8206d6960 0xc8206d6a00 0xc8206d6ae0 0xc8206d6c40 0xc8206d6da0 0xc8206d6f40]} +&{Direction QTimeLine::Direction commendable public [0xc8206d7340 0xc8206d74e0]} +&{State QTimeLine::State commendable public [0xc8206d77c0 0xc8206d78a0 0xc8206d7980]} diff --git a/internal/binding/dump/QtCore/QTimeZone.txt b/internal/binding/dump/QtCore/QTimeZone.txt new file mode 100755 index 00000000..c051cff6 --- /dev/null +++ b/internal/binding/dump/QtCore/QTimeZone.txt @@ -0,0 +1,44 @@ +######################################## FUNCTIONS ######################################## +&{QTimeZone QTimeZone::QTimeZone commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non constructor false false [] } +&{QTimeZone QTimeZone::QTimeZone commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non constructor false true 2 [0xc82068c700] } +&{QTimeZone QTimeZone::QTimeZone commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non constructor false true 4 [0xc82068cb20 0xc82068cca0 0xc82068cd60 0xc82068cf20 0xc82068d0a0 0xc82068d1c0] } +&{QTimeZone QTimeZone::QTimeZone commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non constructor false true 5 [0xc82068d620] } +&{QTimeZone QTimeZone::QTimeZone commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non constructor false true 3 [0xc82068db60] } +&{abbreviation QTimeZone::abbreviation commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain false false QString [0xc820670780] } +&{availableTimeZoneIds QTimeZone::availableTimeZoneIds commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain true false QList [] } +&{availableTimeZoneIds QTimeZone::availableTimeZoneIds commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain true true 2 QList [0xc820671140] } +&{availableTimeZoneIds QTimeZone::availableTimeZoneIds commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain true true 3 QList [0xc820671600] } +&{comment QTimeZone::comment commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain false false QString [] } +&{country QTimeZone::country commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain false false QLocale::Country [] } +&{daylightTimeOffset QTimeZone::daylightTimeOffset commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain false false int [0xc82065a180] } +&{displayName QTimeZone::displayName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain false true 2 QString [0xc82065a740 0xc82065aa00 0xc82065ac20] } +&{displayName QTimeZone::displayName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain false false QString [0xc82065b160 0xc82065b440 0xc82065b600] } +&{hasDaylightTime QTimeZone::hasDaylightTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain false false bool [] } +&{hasTransitions QTimeZone::hasTransitions commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain false false bool [] } +&{ianaIdToWindowsId QTimeZone::ianaIdToWindowsId commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain true false QByteArray [0xc8208e4060] } +&{id QTimeZone::id commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain false false QByteArray [] } +&{isDaylightTime QTimeZone::isDaylightTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain false false bool [0xc8208e4540] } +&{isTimeZoneIdAvailable QTimeZone::isTimeZoneIdAvailable commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain true false bool [0xc8208e49a0] } +&{isValid QTimeZone::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain false false bool [] } +&{nextTransition QTimeZone::nextTransition commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain false false OffsetData [0xc8208e4ea0] } +&{offsetData QTimeZone::offsetData commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain false false OffsetData [0xc8208e5220] } +&{offsetFromUtc QTimeZone::offsetFromUtc commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain false false int [0xc8208e5560] } +&{operator!= QTimeZone::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain false false bool [0xc8208e58c0] } +&{operator= QTimeZone::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain false true 2 QTimeZone & [0xc8208e5c00] } +&{operator= QTimeZone::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain false false QTimeZone & [0xc8208e5e60] } +&{operator== QTimeZone::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain false false bool [0xc8206422c0] } +&{previousTransition QTimeZone::previousTransition commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain false false OffsetData [0xc820642720] } +&{standardTimeOffset QTimeZone::standardTimeOffset commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain false false int [0xc820642dc0] } +&{swap QTimeZone::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain false false void [0xc8206433c0] } +&{systemTimeZone QTimeZone::systemTimeZone commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain true false QTimeZone [] } +&{systemTimeZoneId QTimeZone::systemTimeZoneId commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain true false QByteArray [] } +&{transitions QTimeZone::transitions commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain false false OffsetDataList [0xc820643d20 0xc820643f20] } +&{utc QTimeZone::utc commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain true false QTimeZone [] } +&{windowsIdToDefaultIanaId QTimeZone::windowsIdToDefaultIanaId commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain true false QByteArray [0xc8206306c0] } +&{windowsIdToDefaultIanaId QTimeZone::windowsIdToDefaultIanaId commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain true true 2 QByteArray [0xc820630b80 0xc820630d60] } +&{windowsIdToIanaIds QTimeZone::windowsIdToIanaIds commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain true false QList [0xc8206313e0] } +&{windowsIdToIanaIds QTimeZone::windowsIdToIanaIds commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non plain true true 2 QList [0xc820631ba0 0xc820631d20] } +&{~QTimeZone QTimeZone::~QTimeZone commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qtimezone.h non destructor false false [] } +######################################## ENUMS ######################################## +&{NameType QTimeZone::NameType commendable public [0xc8206a7440 0xc8206a7500 0xc8206a7620 0xc8206a7760]} +&{TimeType QTimeZone::TimeType commendable public [0xc8206a7bc0 0xc8206a7ce0 0xc8206a7d80]} diff --git a/internal/binding/dump/QtCore/QTimer.txt b/internal/binding/dump/QtCore/QTimer.txt new file mode 100755 index 00000000..d75c2482 --- /dev/null +++ b/internal/binding/dump/QtCore/QTimer.txt @@ -0,0 +1,26 @@ +######################################## FUNCTIONS ######################################## +&{remainingTime QTimer::remainingTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtimer.cpp non plain false false int [] } +&{setInterval QTimer::setInterval commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtimer.cpp non plain false false void [0xc8202d1260] } +&{QTimer QTimer::QTimer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtimer.h non constructor false false [0xc8202d14c0] } +&{interval QTimer::interval commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtimer.h non plain false false int [] } +&{isActive QTimer::isActive commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtimer.h non plain false false bool [] } +&{isSingleShot QTimer::isSingleShot commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtimer.h non plain false false bool [] } +&{setSingleShot QTimer::setSingleShot commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtimer.h non plain false false void [0xc8202d1ea0] } +&{setTimerType QTimer::setTimerType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtimer.h non plain false false void [0xc8202c21e0] } +&{singleShot QTimer::singleShot commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtimer.h non plain true true 5 void [0xc8202c24a0 0xc8202c25a0] } +&{singleShot QTimer::singleShot commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtimer.h non plain true true 6 void [0xc8202c2860 0xc8202c2900 0xc8202c29c0] } +&{singleShot QTimer::singleShot commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtimer.h non plain true true 8 void [0xc8202c2c00 0xc8202c2ca0 0xc8202c2d40 0xc8202c2e00] } +&{singleShot QTimer::singleShot commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtimer.h non plain true true 4 void [0xc8202c3040 0xc8202c30e0 0xc8202c31c0 0xc8202c32e0] } +&{singleShot QTimer::singleShot commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtimer.h non plain true true 2 void [0xc8202c3600 0xc8202c3700 0xc8202c37a0 0xc8202c3880] } +&{singleShot QTimer::singleShot commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtimer.h non plain true true 7 void [0xc8202c3b40 0xc8202c3c20 0xc8202c3d00] } +&{singleShot QTimer::singleShot commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtimer.h non plain true true 3 void [0xc8202c3fc0 0xc8202b20a0 0xc8202b2140] } +&{singleShot QTimer::singleShot commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtimer.h non plain true false void [0xc8202b24a0 0xc8202b2540 0xc8202b25c0] } +&{start QTimer::start commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtimer.h non slot false true 2 void [] } +&{start QTimer::start commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtimer.h non slot false false void [0xc8202b3180] } +&{stop QTimer::stop commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtimer.h non slot false false void [] } +&{timeout QTimer::timeout commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtimer.h non signal false false void [] } +&{timerEvent QTimer::timerEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtimer.h impure plain false false void [0xc8202b35a0] } +&{timerId QTimer::timerId commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtimer.h non plain false false int [] } +&{timerType QTimer::timerType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtimer.h non plain false false Qt::TimerType [] } +&{~QTimer QTimer::~QTimer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtimer.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QTimerEvent.txt b/internal/binding/dump/QtCore/QTimerEvent.txt new file mode 100755 index 00000000..2d333a95 --- /dev/null +++ b/internal/binding/dump/QtCore/QTimerEvent.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{QTimerEvent QTimerEvent::QTimerEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreevent.h non constructor false false [0xc820642920] } +&{timerId QTimerEvent::timerId commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qcoreevent.h non plain false false int [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QTranslator.txt b/internal/binding/dump/QtCore/QTranslator.txt new file mode 100755 index 00000000..f4429847 --- /dev/null +++ b/internal/binding/dump/QtCore/QTranslator.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QTranslator QTranslator::QTranslator commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtranslator.h non constructor false false [0xc82029a8a0] } +&{isEmpty QTranslator::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtranslator.h impure plain false false bool [] } +&{load QTranslator::load commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtranslator.h non plain false true 2 bool [0xc82029ad20 0xc82029adc0 0xc82029ae40 0xc82029af00 0xc82029afc0] } +&{load QTranslator::load commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtranslator.h non plain false false bool [0xc82029b220 0xc82029b2c0 0xc82029b3a0 0xc82029b480] } +&{load QTranslator::load commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtranslator.h non plain false true 3 bool [0xc82029b780 0xc82029b840 0xc82029b8e0] } +&{translate QTranslator::translate commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtranslator.h impure plain false false QString [0xc82029bb80 0xc82029bc00 0xc82029bc80 0xc82029bd40] } +&{~QTranslator QTranslator::~QTranslator commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qtranslator.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QUnhandledException.txt b/internal/binding/dump/QtCore/QUnhandledException.txt new file mode 100755 index 00000000..72799661 --- /dev/null +++ b/internal/binding/dump/QtCore/QUnhandledException.txt @@ -0,0 +1,2 @@ +######################################## FUNCTIONS ######################################## +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QUnicodeTables.txt b/internal/binding/dump/QtCore/QUnicodeTables.txt new file mode 100755 index 00000000..bf034597 --- /dev/null +++ b/internal/binding/dump/QtCore/QUnicodeTables.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +######################################## ENUMS ######################################## +&{GraphemeBreakClass QUnicodeTables::GraphemeBreakClass commendable public [0xc82083e340 0xc82083e400 0xc82083e480 0xc82083e520 0xc82083e620 0xc82083e700 0xc82083e7e0 0xc82083e8c0 0xc82083e9a0 0xc82083ea20 0xc82083eaa0 0xc82083eb20 0xc82083ebc0]} +&{LineBreakClass QUnicodeTables::LineBreakClass commendable public [0xc82083edc0 0xc82083ee40 0xc82083eec0 0xc82083ef40 0xc82083efe0 0xc82083f060 0xc82083f0e0 0xc82083f160 0xc82083f200 0xc82083f280 0xc82083f300 0xc82083f380 0xc82083f400 0xc82083f480 0xc82083f500 0xc82083f580 0xc82083f620 0xc82083f6a0 0xc82083f720 0xc82083f7a0 0xc82083f820 0xc82083f8a0 0xc82083f920 0xc82083f9a0 0xc82083fa20 0xc82083faa0 0xc82083fb20 0xc82083fba0 0xc82083fc20 0xc82083fca0 0xc82083fd20 0xc82083fda0 0xc82083fe40 0xc82083fec0 0xc82083ff40 0xc82083ffc0]} +&{SentenceBreakClass QUnicodeTables::SentenceBreakClass commendable public [0xc82080e1a0 0xc82080e260 0xc82080e2e0 0xc82080e380 0xc82080e480 0xc82080e540 0xc82080e5e0 0xc82080e6c0 0xc82080e7c0 0xc82080e8a0 0xc82080e980 0xc82080ea60 0xc82080eb40 0xc82080ec20]} +&{WordBreakClass QUnicodeTables::WordBreakClass commendable public [0xc82080ee20 0xc82080eea0 0xc82080ef20 0xc82080efc0 0xc82080f0a0 0xc82080f140 0xc82080f220 0xc82080f300 0xc82080f400 0xc82080f4e0 0xc82080f5c0 0xc82080f6a0 0xc82080f780 0xc82080f840 0xc82080f8e0 0xc82080f9c0]} diff --git a/internal/binding/dump/QtCore/QUnicodeTools.txt b/internal/binding/dump/QtCore/QUnicodeTools.txt new file mode 100755 index 00000000..67b68920 --- /dev/null +++ b/internal/binding/dump/QtCore/QUnicodeTools.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +######################################## ENUMS ######################################## +&{CharAttributeOption QUnicodeTools::CharAttributeOption commendable public QUnicodeTools::CharAttributeOptions [0xc8208c36e0 0xc8208c3760 0xc8208c37e0 0xc8208c3860 0xc8208c3900 0xc8208c39a0 0xc8208c3a80]} diff --git a/internal/binding/dump/QtCore/QUrl.txt b/internal/binding/dump/QtCore/QUrl.txt new file mode 100755 index 00000000..5b88162f --- /dev/null +++ b/internal/binding/dump/QtCore/QUrl.txt @@ -0,0 +1,74 @@ +######################################## FUNCTIONS ######################################## +&{fromEncoded QUrl::fromEncoded commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.cpp non plain true false QUrl [0xc8202081e0 0xc8202082e0] } +&{QUrl QUrl::QUrl commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non constructor false false [] } +&{QUrl QUrl::QUrl commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non constructor false true 4 [0xc820200700] } +&{QUrl QUrl::QUrl commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non constructor false true 3 [0xc8202008c0 0xc820200980] } +&{QUrl QUrl::QUrl commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non constructor false true 2 [0xc820200b80] } +&{adjusted QUrl::adjusted commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false QUrl [0xc820201520] } +&{authority QUrl::authority commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false QString [0xc820201e00] } +&{clear QUrl::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false void [] } +&{errorString QUrl::errorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false QString [] } +&{fileName QUrl::fileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false QString [0xc8201f5720] } +&{fragment QUrl::fragment commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false QString [0xc8201f5980] } +&{fromAce QUrl::fromAce commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain true false QString [0xc8201f5be0] } +&{fromLocalFile QUrl::fromLocalFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain true false QUrl [0xc8201f5e80] } +&{fromPercentEncoding QUrl::fromPercentEncoding commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain true false QString [0xc8201ea1c0] } +&{fromStringList QUrl::fromStringList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain true false QList [0xc8201ea7a0 0xc8201ea8a0] } +&{fromUserInput QUrl::fromUserInput commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain true false QUrl [0xc8201eaae0] } +&{fromUserInput QUrl::fromUserInput commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain true true 2 QUrl [0xc8201ead40 0xc8201eade0 0xc8201eaee0] } +&{hasFragment QUrl::hasFragment commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false bool [] } +&{hasQuery QUrl::hasQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false bool [] } +&{host QUrl::host commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false QString [0xc8201eb8c0] } +&{idnWhitelist QUrl::idnWhitelist commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain true false QStringList [] } +&{isEmpty QUrl::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false bool [] } +&{isLocalFile QUrl::isLocalFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false bool [] } +&{isParentOf QUrl::isParentOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false bool [0xc8201ebe60] } +&{isRelative QUrl::isRelative commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false bool [] } +&{isValid QUrl::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false bool [] } +&{matches QUrl::matches commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false bool [0xc8201dc200 0xc8201dc2c0] } +&{operator!= QUrl::operator!= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false bool [0xc8201dc500] } +&{operator= QUrl::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false true 3 QUrl & [0xc8201dc700] } +&{operator= QUrl::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false true 2 QUrl & [0xc8201dc8c0] } +&{operator= QUrl::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false QUrl & [0xc8201dcaa0] } +&{operator== QUrl::operator== commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false bool [0xc8201dcc60] } +&{password QUrl::password commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false QString [0xc8201dce60] } +&{path QUrl::path commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false QString [0xc8201dd0a0] } +&{port QUrl::port commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false int [0xc8201dd2c0] } +&{query QUrl::query commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false QString [0xc8201dd4a0] } +&{resolved QUrl::resolved commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false QUrl [0xc8201d2540] } +&{scheme QUrl::scheme commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false QString [] } +&{setAuthority QUrl::setAuthority commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false void [0xc8201d2860 0xc8201d2900] } +&{setFragment QUrl::setFragment commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false void [0xc8201ca300 0xc8201ca3a0] } +&{setHost QUrl::setHost commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false void [0xc8201ca560 0xc8201ca620] } +&{setIdnWhitelist QUrl::setIdnWhitelist commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain true false void [0xc8201ca8c0] } +&{setPassword QUrl::setPassword commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false void [0xc8201cab20 0xc8201cabc0] } +&{setPath QUrl::setPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false void [0xc8201cada0 0xc8201cae40] } +&{setPort QUrl::setPort commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false void [0xc8201cb040] } +&{setQuery QUrl::setQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false void [0xc8201cb220 0xc8201cb2c0] } +&{setQuery QUrl::setQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false true 2 void [0xc8201cb4e0] } +&{setScheme QUrl::setScheme commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false void [0xc8201cb980] } +&{setUrl QUrl::setUrl commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false void [0xc8201cbb20 0xc8201cbba0] } +&{setUserInfo QUrl::setUserInfo commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false void [0xc8201cbe00 0xc8201cbea0] } +&{setUserName QUrl::setUserName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false void [0xc8201c4100 0xc8201c41a0] } +&{swap QUrl::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false void [0xc8201c43a0] } +&{toAce QUrl::toAce commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain true false QByteArray [0xc8201c4540] } +&{toDisplayString QUrl::toDisplayString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false QString [0xc8201c47c0] } +&{toEncoded QUrl::toEncoded commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false QByteArray [0xc8201c4a20] } +&{toLocalFile QUrl::toLocalFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false QString [] } +&{toPercentEncoding QUrl::toPercentEncoding commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain true false QByteArray [0xc8201c4e60 0xc8201c4f20 0xc8201c5040] } +&{toString QUrl::toString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false QString [0xc8201c54a0] } +&{toStringList QUrl::toStringList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain true false QStringList [0xc8201c5780 0xc8201c58a0] } +&{topLevelDomain QUrl::topLevelDomain commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false QString [0xc8201c5b80] } +&{url QUrl::url commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false QString [0xc8201c5d80] } +&{userInfo QUrl::userInfo commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false QString [0xc8201c5fe0] } +&{userName QUrl::userName commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non plain false false QString [0xc8201b6220] } +&{~QUrl QUrl::~QUrl commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl.h non destructor false false [] } +&{fromCFURL QUrl::fromCFURL commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl_mac.mm non plain true false QUrl [0xc8201b64e0] } +&{fromNSURL QUrl::fromNSURL commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl_mac.mm non plain true false QUrl [0xc8201b6740] } +&{toCFURL QUrl::toCFURL commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl_mac.mm non plain false false CFURLRef [] } +&{toNSURL QUrl::toNSURL commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurl_mac.mm non plain false false NSURL * [] } +######################################## ENUMS ######################################## +&{ComponentFormattingOption QUrl::ComponentFormattingOption commendable public QUrl::ComponentFormattingOptions [0xc820208660 0xc820208700 0xc8202087c0 0xc820208880 0xc8202089c0 0xc820208a60 0xc820208b00 0xc820208bc0]} +&{ParsingMode QUrl::ParsingMode commendable public [0xc820208e20 0xc820208ec0 0xc820208f80]} +&{UrlFormattingOption QUrl::UrlFormattingOption commendable public QUrl::FormattingOptions [0xc8202092c0 0xc820209360 0xc820209420 0xc8202094e0 0xc820209600 0xc8202096c0 0xc820209780 0xc820209820 0xc8202098e0 0xc8202099a0 0xc820209a80 0xc820209b80 0xc820209c60]} +&{UserInputResolutionOption QUrl::UserInputResolutionOption commendable public QUrl::UserInputResolutionOptions [0xc820200000 0xc820200100]} diff --git a/internal/binding/dump/QtCore/QUrlQuery.txt b/internal/binding/dump/QtCore/QUrlQuery.txt new file mode 100755 index 00000000..7ad7ccd8 --- /dev/null +++ b/internal/binding/dump/QtCore/QUrlQuery.txt @@ -0,0 +1,30 @@ +######################################## FUNCTIONS ######################################## +&{QUrlQuery QUrlQuery::QUrlQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non constructor false false [] } +&{QUrlQuery QUrlQuery::QUrlQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non constructor false true 3 [0xc8201b7520] } +&{QUrlQuery QUrlQuery::QUrlQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non constructor false true 2 [0xc8201b77a0] } +&{QUrlQuery QUrlQuery::QUrlQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non constructor false true 4 [0xc8201b7a20] } +&{addQueryItem QUrlQuery::addQueryItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non plain false false void [0xc8201b7ce0 0xc8201b7d80] } +&{allQueryItemValues QUrlQuery::allQueryItemValues commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non plain false false QStringList [0xc8201ae020 0xc8201ae140] } +&{clear QUrlQuery::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non plain false false void [] } +&{defaultQueryPairDelimiter QUrlQuery::defaultQueryPairDelimiter commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non plain true false QChar [] } +&{defaultQueryValueDelimiter QUrlQuery::defaultQueryValueDelimiter commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non plain true false QChar [] } +&{hasQueryItem QUrlQuery::hasQueryItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non plain false false bool [0xc8201ae800] } +&{isEmpty QUrlQuery::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non plain false false bool [] } +&{operator!= QUrlQuery::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non plain false false bool [0xc8201aed00] } +&{operator= QUrlQuery::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non plain false true 2 QUrlQuery & [0xc8201aefa0] } +&{operator= QUrlQuery::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non plain false false QUrlQuery & [0xc8201af200] } +&{operator== QUrlQuery::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non plain false false bool [0xc8201af500] } +&{query QUrlQuery::query commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non plain false false QString [0xc8201af780] } +&{queryItemValue QUrlQuery::queryItemValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non plain false false QString [0xc8201af9e0 0xc8201afae0] } +&{queryItems QUrlQuery::queryItems commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non plain false false QList > [0xc8201afe20] } +&{queryPairDelimiter QUrlQuery::queryPairDelimiter commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non plain false false QChar [] } +&{queryValueDelimiter QUrlQuery::queryValueDelimiter commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non plain false false QChar [] } +&{removeAllQueryItems QUrlQuery::removeAllQueryItems commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non plain false false void [0xc8201a4380] } +&{removeQueryItem QUrlQuery::removeQueryItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non plain false false void [0xc8201a4580] } +&{setQuery QUrlQuery::setQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non plain false false void [0xc8201a4780] } +&{setQueryDelimiters QUrlQuery::setQueryDelimiters commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non plain false false void [0xc8201a4a20 0xc8201a4aa0] } +&{setQueryItems QUrlQuery::setQueryItems commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non plain false false void [0xc8201a4d00] } +&{swap QUrlQuery::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non plain false false void [0xc8201a4ec0] } +&{toString QUrlQuery::toString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non plain false false QString [0xc8201a5120] } +&{~QUrlQuery QUrlQuery::~QUrlQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/io/qurlquery.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QUuid.txt b/internal/binding/dump/QtCore/QUuid.txt new file mode 100755 index 00000000..9abda89b --- /dev/null +++ b/internal/binding/dump/QtCore/QUuid.txt @@ -0,0 +1,29 @@ +######################################## FUNCTIONS ######################################## +&{createUuid QUuid::createUuid commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/quuid.cpp non plain true false QUuid [] } +&{createUuidV3 QUuid::createUuidV3 commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/quuid.cpp non plain true false QUuid [0xc82018d880 0xc82018d980] } +&{createUuidV5 QUuid::createUuidV5 commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/quuid.cpp non plain true false QUuid [0xc82018dce0 0xc82018de40] } +&{operator< QUuid::operator< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/quuid.cpp non plain false false bool [0xc8201620c0] } +&{operator> QUuid::operator> commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/quuid.cpp non plain false false bool [0xc8201623c0] } +&{variant QUuid::variant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/quuid.cpp non plain false false QUuid::Variant [] } +&{version QUuid::version commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/quuid.cpp non plain false false QUuid::Version [] } +&{QUuid QUuid::QUuid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/quuid.h non constructor false false [] } +&{QUuid QUuid::QUuid commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/quuid.h non constructor false true 6 [0xc8201638e0] } +&{QUuid QUuid::QUuid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/quuid.h non constructor false true 5 [0xc820163b00] } +&{QUuid QUuid::QUuid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/quuid.h non constructor false true 3 [0xc820163d20] } +&{QUuid QUuid::QUuid commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/quuid.h non constructor false true 2 [0xc820163f00 0xc820163f80 0xc8201520c0 0xc820152180 0xc820152280 0xc820152340 0xc820152460 0xc820152520 0xc820152660 0xc820152700 0xc8201527c0] } +&{createUuidV3 QUuid::createUuidV3 commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/quuid.h non plain true true 2 QUuid [0xc820152d40 0xc820152de0] } +&{createUuidV5 QUuid::createUuidV5 commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/quuid.h non plain true true 2 QUuid [0xc820153080 0xc820153160] } +&{fromRfc4122 QUuid::fromRfc4122 commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/quuid.h non plain true false QUuid [0xc820153440] } +&{isNull QUuid::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/quuid.h non plain false false bool [] } +&{operator GUID QUuid::operator GUID commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/quuid.h non plain false false [] } +&{operator!= QUuid::operator!= commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/quuid.h non plain false true 2 bool [0xc820153aa0] } +&{operator!= QUuid::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/quuid.h non plain false false bool [0xc820153d80] } +&{operator= QUuid::operator= commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/quuid.h non plain false false QUuid & [0xc82013c000] } +&{operator== QUuid::operator== commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/quuid.h non plain false true 2 bool [0xc82013c240] } +&{operator== QUuid::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/quuid.h non plain false false bool [0xc82013c520] } +&{toByteArray QUuid::toByteArray commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/quuid.h non plain false false QByteArray [] } +&{toRfc4122 QUuid::toRfc4122 commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/quuid.h non plain false false QByteArray [] } +&{toString QUuid::toString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/plugin/quuid.h non plain false false QString [] } +######################################## ENUMS ######################################## +&{Variant QUuid::Variant commendable public [0xc8201629c0 0xc820162a80 0xc820162ba0 0xc820162c40 0xc820162e00]} +&{Version QUuid::Version commendable public [0xc820163080 0xc820163200 0xc8201632e0 0xc820163360 0xc820163480 0xc820163560 0xc820163620]} diff --git a/internal/binding/dump/QtCore/QVarLengthArray.txt b/internal/binding/dump/QtCore/QVarLengthArray.txt new file mode 100755 index 00000000..b918b306 --- /dev/null +++ b/internal/binding/dump/QtCore/QVarLengthArray.txt @@ -0,0 +1,62 @@ +######################################## FUNCTIONS ######################################## +&{QVarLengthArray QVarLengthArray::QVarLengthArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non constructor false true 2 [0xc82061cfc0] } +&{QVarLengthArray QVarLengthArray::QVarLengthArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non constructor false false [0xc82061d260] } +&{QVarLengthArray QVarLengthArray::QVarLengthArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non constructor false true 3 [0xc82061d580] } +&{append QVarLengthArray::append commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false void [0xc82061d8a0] } +&{append QVarLengthArray::append commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false true 2 void [0xc82061dc20 0xc82061dcc0] } +&{at QVarLengthArray::at commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false const T & [0xc8206060a0] } +&{back QVarLengthArray::back commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false T & [] } +&{back QVarLengthArray::back commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false true 2 const T & [] } +&{begin QVarLengthArray::begin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false iterator [] } +&{begin QVarLengthArray::begin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false true 2 const_iterator [] } +&{capacity QVarLengthArray::capacity commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false int [] } +&{cbegin QVarLengthArray::cbegin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false const_iterator [] } +&{cend QVarLengthArray::cend commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false const_iterator [] } +&{clear QVarLengthArray::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false void [] } +&{constBegin QVarLengthArray::constBegin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false const_iterator [] } +&{constData QVarLengthArray::constData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false const T * [] } +&{constEnd QVarLengthArray::constEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false const_iterator [] } +&{contains QVarLengthArray::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false bool [0xc8205f0fa0] } +&{count QVarLengthArray::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false int [] } +&{data QVarLengthArray::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false T * [] } +&{data QVarLengthArray::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false true 2 const T * [] } +&{empty QVarLengthArray::empty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false bool [] } +&{end QVarLengthArray::end commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false iterator [] } +&{end QVarLengthArray::end commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false true 2 const_iterator [] } +&{erase QVarLengthArray::erase commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false true 2 iterator [0xc8205e0a20 0xc8205e0b80] } +&{erase QVarLengthArray::erase commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false iterator [0xc8205e1080] } +&{first QVarLengthArray::first commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false T & [] } +&{first QVarLengthArray::first commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false true 2 const T & [] } +&{front QVarLengthArray::front commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false T & [] } +&{front QVarLengthArray::front commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false true 2 const T & [] } +&{indexOf QVarLengthArray::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false int [0xc8205ce1c0 0xc8205ce280] } +&{insert QVarLengthArray::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false true 4 iterator [0xc8205ce4e0 0xc8205ce5c0] } +&{insert QVarLengthArray::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false true 2 iterator [0xc8205ce860 0xc8205ce900 0xc8205ce9a0] } +&{insert QVarLengthArray::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false void [0xc8205cebc0 0xc8205cec40] } +&{insert QVarLengthArray::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false true 3 void [0xc8205cee60 0xc8205cef80 0xc8205cf060] } +&{isEmpty QVarLengthArray::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false bool [] } +&{last QVarLengthArray::last commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false T & [] } +&{last QVarLengthArray::last commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false true 2 const T & [] } +&{lastIndexOf QVarLengthArray::lastIndexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false int [0xc8205cff80 0xc8204a0000] } +&{length QVarLengthArray::length commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false int [] } +&{operator+= QVarLengthArray::operator+= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false QVarLengthArray & [0xc8204a0500] } +&{operator<< QVarLengthArray::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false QVarLengthArray & [0xc8204a08c0] } +&{operator= QVarLengthArray::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false QVarLengthArray & [0xc8204a0c20] } +&{operator= QVarLengthArray::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false true 2 QVarLengthArray & [0xc8204a0e60] } +&{operator[] QVarLengthArray::operator[] commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false T & [0xc8204a1100] } +&{operator[] QVarLengthArray::operator[] commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false true 2 const T & [0xc8204a1360] } +&{pop_back QVarLengthArray::pop_back commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false void [] } +&{prepend QVarLengthArray::prepend commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false void [0xc8204a1720] } +&{push_back QVarLengthArray::push_back commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false void [0xc8204a1980] } +&{remove QVarLengthArray::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false void [0xc8204a1ba0] } +&{remove QVarLengthArray::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false true 2 void [0xc8204a1e40 0xc8204a1ee0] } +&{removeLast QVarLengthArray::removeLast commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false void [] } +&{replace QVarLengthArray::replace commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false void [0xc8205c63e0 0xc8205c64a0] } +&{reserve QVarLengthArray::reserve commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false void [0xc8205c6860] } +&{resize QVarLengthArray::resize commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false void [0xc8205c6ca0] } +&{size QVarLengthArray::size commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false int [] } +&{squeeze QVarLengthArray::squeeze commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false void [] } +&{value QVarLengthArray::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false false T [0xc8205c7700] } +&{value QVarLengthArray::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non plain false true 2 T [0xc8205c7c20 0xc8205c7d40] } +&{~QVarLengthArray QVarLengthArray::~QVarLengthArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvarlengtharray.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QVariant.txt b/internal/binding/dump/QtCore/QVariant.txt new file mode 100755 index 00000000..35849d7e --- /dev/null +++ b/internal/binding/dump/QtCore/QVariant.txt @@ -0,0 +1,111 @@ +######################################## FUNCTIONS ######################################## +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 20 [0xc820274f60] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 18 [0xc820275240] } +&{QVariant QVariant::QVariant commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 2 [0xc820275580] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 11 [0xc820275860] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 16 [0xc820275be0] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 15 [0xc820275fc0] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 21 [0xc82026a380] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 23 [0xc82026a6a0] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 39 [0xc82026aae0] } +&{QVariant QVariant::QVariant commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 26 [0xc82026ade0] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 45 [0xc82026b120] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 46 [0xc82026b460] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 44 [0xc82026b7a0] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 43 [0xc82026bae0] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 31 [0xc82026be60] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 32 [0xc820264120] } +&{QVariant QVariant::QVariant commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 24 [0xc820264460] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 35 [0xc8202647e0] } +&{QVariant QVariant::QVariant commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 25 [0xc820264b40] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 41 [0xc820264f60] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 42 [0xc820265320] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 29 [0xc820265640] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 30 [0xc820265a00] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 33 [0xc820265d20] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 34 [0xc820265fc0] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 36 [0xc82025c380] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 37 [0xc82025c6c0] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 27 [0xc82025ca80] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 28 [0xc82025ce00] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 17 [0xc82025d160] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 19 [0xc82025d4a0] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 22 [0xc82025d840] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 38 [0xc82025db80] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 40 [0xc82025dec0] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 5 [0xc8202521a0] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 14 [0xc8202524e0] } +&{QVariant QVariant::QVariant commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 12 [0xc820252800] } +&{QVariant QVariant::QVariant commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 13 [0xc820252b20] } +&{QVariant QVariant::QVariant commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 3 [0xc820252d80 0xc820252e40] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 7 [0xc820253180] } +&{QVariant QVariant::QVariant commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 9 [0xc820253480] } +&{QVariant QVariant::QVariant commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 10 [0xc820253700] } +&{QVariant QVariant::QVariant commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non constructor false true 8 [0xc820253a60] } +&{toByteArray QVariant::toByteArray commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non plain false false QByteArray [] } +&{toChar QVariant::toChar commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non plain false false QChar [] } +&{toDate QVariant::toDate commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non plain false false QDate [] } +&{toDateTime QVariant::toDateTime commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non plain false false QDateTime [] } +&{toEasingCurve QVariant::toEasingCurve commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non plain false false QEasingCurve [] } +&{toLine QVariant::toLine commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non plain false false QLine [] } +&{toLineF QVariant::toLineF commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non plain false false QLineF [] } +&{toLocale QVariant::toLocale commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non plain false false QLocale [] } +&{toPoint QVariant::toPoint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non plain false false QPoint [] } +&{toPointF QVariant::toPointF commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non plain false false QPointF [] } +&{toRect QVariant::toRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non plain false false QRect [] } +&{toRectF QVariant::toRectF commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non plain false false QRectF [] } +&{toRegExp QVariant::toRegExp commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non plain false false QRegExp [] } +&{toRegularExpression QVariant::toRegularExpression commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non plain false false QRegularExpression [] } +&{toSize QVariant::toSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non plain false false QSize [] } +&{toSizeF QVariant::toSizeF commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non plain false false QSizeF [] } +&{toStringList QVariant::toStringList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non plain false false QStringList [] } +&{toTime QVariant::toTime commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non plain false false QTime [] } +&{toUrl QVariant::toUrl commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non plain false false QUrl [] } +&{~QVariant QVariant::~QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.cpp non destructor false false [] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non constructor false false [] } +&{QVariant QVariant::QVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non constructor false true 6 [0xc8202256c0] } +&{QVariant QVariant::QVariant commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non constructor false true 47 [0xc8202259a0] } +&{canConvert QVariant::canConvert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false true 2 bool [] } +&{canConvert QVariant::canConvert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false bool [0xc820225d40] } +&{clear QVariant::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false void [] } +&{convert QVariant::convert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false bool [0xc82021c060] } +&{fromValue QVariant::fromValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain true false QVariant [0xc820210580] } +&{isNull QVariant::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false bool [] } +&{isValid QVariant::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false bool [] } +&{nameToType QVariant::nameToType commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain true false Type [0xc820210c60] } +&{operator!= QVariant::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false bool [0xc820210f40] } +&{operator< QVariant::operator< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false bool [0xc8202111e0] } +&{operator<= QVariant::operator<= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false bool [0xc820211440] } +&{operator= QVariant::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false true 2 QVariant & [0xc8202116a0] } +&{operator= QVariant::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false QVariant & [0xc8202119a0] } +&{operator== QVariant::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false bool [0xc820211ca0] } +&{operator> QVariant::operator> commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false bool [0xc820211f80] } +&{operator>= QVariant::operator>= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false bool [0xc820208280] } +&{setValue QVariant::setValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false void [0xc8202085e0] } +&{swap QVariant::swap commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false void [0xc820208860] } +&{toBitArray QVariant::toBitArray commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false QBitArray [] } +&{toBool QVariant::toBool commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false bool [] } +&{toDouble QVariant::toDouble commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false double [0xc820208ea0] } +&{toFloat QVariant::toFloat commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false float [0xc8202091e0] } +&{toHash QVariant::toHash commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false QHash [] } +&{toInt QVariant::toInt commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false int [0xc820209640] } +&{toJsonArray QVariant::toJsonArray commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false QJsonArray [] } +&{toJsonDocument QVariant::toJsonDocument commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false QJsonDocument [] } +&{toJsonObject QVariant::toJsonObject commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false QJsonObject [] } +&{toJsonValue QVariant::toJsonValue commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false QJsonValue [] } +&{toList QVariant::toList commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false QList [] } +&{toLongLong QVariant::toLongLong commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false qlonglong [0xc8201f4160] } +&{toMap QVariant::toMap commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false QMap [] } +&{toModelIndex QVariant::toModelIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false QModelIndex [] } +&{toPersistentModelIndex QVariant::toPersistentModelIndex commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false QPersistentModelIndex [] } +&{toReal QVariant::toReal commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false qreal [0xc8201f4920] } +&{toString QVariant::toString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false QString [] } +&{toUInt QVariant::toUInt commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false uint [0xc8201f4ce0] } +&{toULongLong QVariant::toULongLong commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false qulonglong [0xc8201f4fa0] } +&{toUuid QVariant::toUuid commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false QUuid [] } +&{type QVariant::type commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false Type [] } +&{typeName QVariant::typeName commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false const char * [] } +&{typeToName QVariant::typeToName commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain true false const char * [0xc8201f5660] } +&{userType QVariant::userType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false int [] } +&{value QVariant::value commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qvariant.h non plain false false T [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QVariantAnimation.txt b/internal/binding/dump/QtCore/QVariantAnimation.txt new file mode 100755 index 00000000..73113dbe --- /dev/null +++ b/internal/binding/dump/QtCore/QVariantAnimation.txt @@ -0,0 +1,23 @@ +######################################## FUNCTIONS ######################################## +&{currentValue QVariantAnimation::currentValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qvariantanimation.cpp non plain false false QVariant [] } +&{duration QVariantAnimation::duration commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qvariantanimation.cpp impure plain false false int [] } +&{easingCurve QVariantAnimation::easingCurve commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qvariantanimation.cpp non plain false false QEasingCurve [] } +&{endValue QVariantAnimation::endValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qvariantanimation.cpp non plain false false QVariant [] } +&{setDuration QVariantAnimation::setDuration commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qvariantanimation.cpp non plain false false void [0xc820116a20] } +&{setEasingCurve QVariantAnimation::setEasingCurve commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qvariantanimation.cpp non plain false false void [0xc820116bc0] } +&{setEndValue QVariantAnimation::setEndValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qvariantanimation.cpp non plain false false void [0xc820116de0] } +&{setStartValue QVariantAnimation::setStartValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qvariantanimation.cpp non plain false false void [0xc820116fc0] } +&{startValue QVariantAnimation::startValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qvariantanimation.cpp non plain false false QVariant [] } +&{QVariantAnimation QVariantAnimation::QVariantAnimation commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qvariantanimation.h non constructor false false [0xc820117400] } +&{keyValueAt QVariantAnimation::keyValueAt commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qvariantanimation.h non plain false false QVariant [0xc8201175c0] } +&{event QVariantAnimation::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qvariantanimation.h impure plain false false bool [0xc820117da0] } +&{interpolated QVariantAnimation::interpolated commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qvariantanimation.h impure plain false false QVariant [0xc820117f60 0xc820117fe0 0xc82012a060] } +&{keyValues QVariantAnimation::keyValues commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qvariantanimation.h non plain false false KeyValues [] } +&{setKeyValueAt QVariantAnimation::setKeyValueAt commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qvariantanimation.h non plain false false void [0xc82012a360 0xc82012a3e0] } +&{setKeyValues QVariantAnimation::setKeyValues commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qvariantanimation.h non plain false false void [0xc82012a5c0] } +&{updateCurrentTime QVariantAnimation::updateCurrentTime commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qvariantanimation.h impure plain false false void [0xc82012a7e0] } +&{updateCurrentValue QVariantAnimation::updateCurrentValue commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qvariantanimation.h impure plain false false void [0xc82012a9a0] } +&{updateState QVariantAnimation::updateState commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qvariantanimation.h impure plain false false void [0xc82012ab80 0xc82012ac60] } +&{valueChanged QVariantAnimation::valueChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qvariantanimation.h non signal false false void [0xc82012ae80] } +&{~QVariantAnimation QVariantAnimation::~QVariantAnimation commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/animation/qvariantanimation.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QVector.txt b/internal/binding/dump/QtCore/QVector.txt new file mode 100755 index 00000000..86a69824 --- /dev/null +++ b/internal/binding/dump/QtCore/QVector.txt @@ -0,0 +1,89 @@ +######################################## FUNCTIONS ######################################## +&{QVector QVector::QVector commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non constructor false false [] } +&{QVector QVector::QVector commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non constructor false true 5 [0xc8205add20] } +&{QVector QVector::QVector commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non constructor false true 4 [0xc82059a000] } +&{QVector QVector::QVector commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non constructor false true 2 [0xc82059a300] } +&{QVector QVector::QVector commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non constructor false true 3 [0xc82059a560 0xc82059a680] } +&{QVector QVector::QVector commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non constructor false true 6 [0xc82059aa00] } +&{append QVector::append commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false true 2 void [0xc82059ad60] } +&{append QVector::append commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false void [0xc82059b140] } +&{at QVector::at commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false const T & [0xc82059b420] } +&{back QVector::back commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false reference [] } +&{back QVector::back commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false true 2 const_reference [] } +&{begin QVector::begin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false iterator [] } +&{begin QVector::begin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false true 2 const_iterator [] } +&{capacity QVector::capacity commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false int [] } +&{cbegin QVector::cbegin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false const_iterator [] } +&{cend QVector::cend commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false const_iterator [] } +&{clear QVector::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false void [] } +&{constBegin QVector::constBegin commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false const_iterator [] } +&{constData QVector::constData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false const T * [] } +&{constEnd QVector::constEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false const_iterator [] } +&{contains QVector::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false bool [0xc820586a60] } +&{count QVector::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false true 2 int [] } +&{count QVector::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false int [0xc820587980] } +&{data QVector::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false T * [] } +&{data QVector::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false true 2 const T * [] } +&{empty QVector::empty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false bool [] } +&{end QVector::end commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false iterator [] } +&{end QVector::end commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false true 2 const_iterator [] } +&{endsWith QVector::endsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false bool [0xc820574a40] } +&{erase QVector::erase commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false true 2 iterator [0xc820574d80 0xc820574f40] } +&{erase QVector::erase commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false iterator [0xc8205753a0] } +&{fill QVector::fill commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false QVector & [0xc820575620 0xc8205757c0] } +&{first QVector::first commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false T & [] } +&{first QVector::first commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false true 2 const T & [] } +&{fromList QVector::fromList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain true false QVector [0xc82055e620] } +&{fromStdVector QVector::fromStdVector commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain true false QVector [0xc82055e9c0] } +&{front QVector::front commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false T & [] } +&{front QVector::front commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false true 2 const_reference [] } +&{indexOf QVector::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false int [0xc82055efe0 0xc82055f180] } +&{insert QVector::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false true 4 iterator [0xc82055f5a0 0xc82055f6a0] } +&{insert QVector::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false true 2 iterator [0xc82055fa60 0xc82055fb80 0xc82055fdc0] } +&{insert QVector::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false void [0xc820548240 0xc820548360] } +&{insert QVector::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false true 3 void [0xc8205485e0 0xc8205486e0 0xc8205487e0] } +&{isEmpty QVector::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false bool [] } +&{last QVector::last commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false T & [] } +&{last QVector::last commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false true 2 const T & [] } +&{lastIndexOf QVector::lastIndexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false int [0xc820549c00 0xc820549d80] } +&{length QVector::length commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false int [] } +&{mid QVector::mid commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false QVector [0xc820514000 0xc8205140e0] } +&{operator!= QVector::operator!= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false bool [0xc820514480] } +&{operator+ QVector::operator+ commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false QVector [0xc820514a60] } +&{operator+= QVector::operator+= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false QVector & [0xc820515060] } +&{operator+= QVector::operator+= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false true 2 QVector & [0xc8205155a0] } +&{operator<< QVector::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false true 2 QVector & [0xc820515a00] } +&{operator<< QVector::operator<< commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false QVector & [0xc820515f40] } +&{operator= QVector::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false QVector & [0xc820504440] } +&{operator= QVector::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false true 2 QVector [0xc8205049a0] } +&{operator== QVector::operator== commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false bool [0xc820504e60] } +&{operator[] QVector::operator[] commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false T & [0xc820505260] } +&{operator[] QVector::operator[] commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false true 2 const T & [0xc820505580] } +&{pop_back QVector::pop_back commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false void [] } +&{pop_front QVector::pop_front commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false void [] } +&{prepend QVector::prepend commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false void [0xc820505b40] } +&{push_back QVector::push_back commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false void [0xc820505f40] } +&{push_front QVector::push_front commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false void [0xc8204f4380] } +&{remove QVector::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false void [0xc8204f52c0] } +&{remove QVector::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false true 2 void [0xc8204f5680 0xc8204f5820] } +&{removeAll QVector::removeAll commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false int [0xc8204f5d20] } +&{removeAt QVector::removeAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false void [0xc8204e42e0] } +&{removeFirst QVector::removeFirst commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false void [] } +&{removeLast QVector::removeLast commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false void [] } +&{removeOne QVector::removeOne commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false bool [0xc8204e4cc0] } +&{replace QVector::replace commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false void [0xc8204e5080 0xc8204e51a0] } +&{reserve QVector::reserve commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false void [0xc8204e5500] } +&{resize QVector::resize commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false void [0xc8204e5940] } +&{size QVector::size commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false int [] } +&{squeeze QVector::squeeze commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false void [] } +&{startsWith QVector::startsWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false bool [0xc8204ce1c0] } +&{swap QVector::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false void [0xc8204ce360] } +&{takeAt QVector::takeAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false T [0xc8204ce5e0] } +&{takeFirst QVector::takeFirst commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false T [] } +&{takeLast QVector::takeLast commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false T [] } +&{toList QVector::toList commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false QList [] } +&{toStdVector QVector::toStdVector commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false std::vector [] } +&{value QVector::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false false T [0xc8204cf0a0] } +&{value QVector::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non plain false true 2 T [0xc8204cf320 0xc8204cf440] } +&{~QVector QVector::~QVector commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qvector.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QVectorIterator.txt b/internal/binding/dump/QtCore/QVectorIterator.txt new file mode 100755 index 00000000..7bc0792e --- /dev/null +++ b/internal/binding/dump/QtCore/QVectorIterator.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QVectorIterator QVectorIterator::QVectorIterator commendable public qvector.h non constructor false false [0xc82025d2c0] } +&{findNext QVectorIterator::findNext commendable public qvector.h non plain false false bool [0xc82025da20] } +&{findPrevious QVectorIterator::findPrevious commendable public qvector.h non plain false false bool [0xc820252020] } +&{hasNext QVectorIterator::hasNext commendable public qvector.h non plain false false bool [] } +&{hasPrevious QVectorIterator::hasPrevious commendable public qvector.h non plain false false bool [] } +&{next QVectorIterator::next commendable public qvector.h non plain false false const T & [] } +&{operator= QVectorIterator::operator= commendable public qvector.h non plain false false QVectorIterator & [0xc8202536a0] } +&{peekNext QVectorIterator::peekNext commendable public qvector.h non plain false false const T & [] } +&{peekPrevious QVectorIterator::peekPrevious commendable public qvector.h non plain false false const T & [] } +&{previous QVectorIterator::previous commendable public qvector.h non plain false false const T & [] } +&{toBack QVectorIterator::toBack commendable public qvector.h non plain false false void [] } +&{toFront QVectorIterator::toFront commendable public qvector.h non plain false false void [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QWaitCondition.txt b/internal/binding/dump/QtCore/QWaitCondition.txt new file mode 100755 index 00000000..2ff69135 --- /dev/null +++ b/internal/binding/dump/QtCore/QWaitCondition.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{QWaitCondition QWaitCondition::QWaitCondition commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qwaitcondition_win.cpp non constructor false false [] } +&{wait QWaitCondition::wait commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qwaitcondition_win.cpp non plain false false bool [0xc820759c40 0xc820759cc0] } +&{wait QWaitCondition::wait commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qwaitcondition_win.cpp non plain false true 2 bool [0xc820759ec0 0xc820759f80] } +&{wakeAll QWaitCondition::wakeAll commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qwaitcondition_win.cpp non plain false false void [] } +&{wakeOne QWaitCondition::wakeOne commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qwaitcondition_win.cpp non plain false false void [] } +&{~QWaitCondition QWaitCondition::~QWaitCondition commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qwaitcondition_win.cpp non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QWeakPointer.txt b/internal/binding/dump/QtCore/QWeakPointer.txt new file mode 100755 index 00000000..aa5815b1 --- /dev/null +++ b/internal/binding/dump/QtCore/QWeakPointer.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{QWeakPointer QWeakPointer::QWeakPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non constructor false false [] } +&{QWeakPointer QWeakPointer::QWeakPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non constructor false true 3 [0xc820b56560] } +&{QWeakPointer QWeakPointer::QWeakPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non constructor false true 2 [0xc820b56820] } +&{clear QWeakPointer::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false false void [] } +&{data QWeakPointer::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false false T * [] } +&{isNull QWeakPointer::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false false bool [] } +&{lock QWeakPointer::lock commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false false QSharedPointer [] } +&{operator bool QWeakPointer::operator bool commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false false [] } +&{operator! QWeakPointer::operator! commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false false bool [] } +&{operator= QWeakPointer::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false true 2 QWeakPointer [0xc820b57360] } +&{operator= QWeakPointer::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false false QWeakPointer [0xc820b575c0] } +&{swap QWeakPointer::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false false void [0xc820b578a0] } +&{toStrongRef QWeakPointer::toStrongRef commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non plain false false QSharedPointer [] } +&{~QWeakPointer QWeakPointer::~QWeakPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/tools/qsharedpointer.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QWinEventNotifier.txt b/internal/binding/dump/QtCore/QWinEventNotifier.txt new file mode 100755 index 00000000..1c1b8b5d --- /dev/null +++ b/internal/binding/dump/QtCore/QWinEventNotifier.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{QWinEventNotifier QWinEventNotifier::QWinEventNotifier commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qwineventnotifier.h non constructor false true 2 [0xc8201eb740 0xc8201eb7e0] } +&{QWinEventNotifier QWinEventNotifier::QWinEventNotifier commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qwineventnotifier.h non constructor false false [0xc8201ebac0] } +&{activated QWinEventNotifier::activated commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qwineventnotifier.h non signal false false void [0xc8201ebdc0] } +&{event QWinEventNotifier::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qwineventnotifier.h impure plain false false bool [0xc8201dc0c0] } +&{handle QWinEventNotifier::handle commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qwineventnotifier.h non plain false false HANDLE [] } +&{isEnabled QWinEventNotifier::isEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qwineventnotifier.h non plain false false bool [] } +&{setEnabled QWinEventNotifier::setEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qwineventnotifier.h non slot false false void [0xc8201dc7c0] } +&{setHandle QWinEventNotifier::setHandle commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qwineventnotifier.h non plain false false void [0xc8201dcb20] } +&{~QWinEventNotifier QWinEventNotifier::~QWinEventNotifier commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/kernel/qwineventnotifier.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QWriteLocker.txt b/internal/binding/dump/QtCore/QWriteLocker.txt new file mode 100755 index 00000000..a9c1732d --- /dev/null +++ b/internal/binding/dump/QtCore/QWriteLocker.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{QWriteLocker QWriteLocker::QWriteLocker commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qreadwritelock.h non constructor false false [0xc820716e40] } +&{readWriteLock QWriteLocker::readWriteLock commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qreadwritelock.h non plain false false QReadWriteLock * [] } +&{relock QWriteLocker::relock commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qreadwritelock.h non plain false false void [] } +&{unlock QWriteLocker::unlock commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qreadwritelock.h non plain false false void [] } +&{~QWriteLocker QWriteLocker::~QWriteLocker commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/thread/qreadwritelock.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QXmlStreamAttribute.txt b/internal/binding/dump/QtCore/QXmlStreamAttribute.txt new file mode 100755 index 00000000..09b51290 --- /dev/null +++ b/internal/binding/dump/QtCore/QXmlStreamAttribute.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{QXmlStreamAttribute QXmlStreamAttribute::QXmlStreamAttribute commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non constructor false false [] } +&{QXmlStreamAttribute QXmlStreamAttribute::QXmlStreamAttribute commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non constructor false true 3 [0xc82093d120 0xc82093d1a0 0xc82093d220] } +&{QXmlStreamAttribute QXmlStreamAttribute::QXmlStreamAttribute commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non constructor false true 2 [0xc82093d4e0 0xc82093d5c0] } +&{QXmlStreamAttribute QXmlStreamAttribute::QXmlStreamAttribute commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non constructor false true 4 [0xc82093d7e0] } +&{isDefault QXmlStreamAttribute::isDefault commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false bool [] } +&{name QXmlStreamAttribute::name commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [] } +&{namespaceUri QXmlStreamAttribute::namespaceUri commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [] } +&{operator!= QXmlStreamAttribute::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false bool [0xc82093de40] } +&{operator= QXmlStreamAttribute::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QXmlStreamAttribute & [0xc8204be260] } +&{operator== QXmlStreamAttribute::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false bool [0xc8204be6e0] } +&{prefix QXmlStreamAttribute::prefix commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [] } +&{qualifiedName QXmlStreamAttribute::qualifiedName commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [] } +&{value QXmlStreamAttribute::value commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [] } +&{~QXmlStreamAttribute QXmlStreamAttribute::~QXmlStreamAttribute commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QXmlStreamAttributes.txt b/internal/binding/dump/QtCore/QXmlStreamAttributes.txt new file mode 100755 index 00000000..b77f01a8 --- /dev/null +++ b/internal/binding/dump/QtCore/QXmlStreamAttributes.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QXmlStreamAttributes QXmlStreamAttributes::QXmlStreamAttributes commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non constructor false false [] } +&{append QXmlStreamAttributes::append commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [0xc8204bf700 0xc8204bf7e0 0xc8204bf8a0] } +&{append QXmlStreamAttributes::append commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false true 2 void [0xc8204bfba0 0xc8204bfc40] } +&{hasAttribute QXmlStreamAttributes::hasAttribute commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false true 2 bool [0xc8204bfe40] } +&{hasAttribute QXmlStreamAttributes::hasAttribute commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false true 3 bool [0xc8204a8040 0xc8204a80e0] } +&{hasAttribute QXmlStreamAttributes::hasAttribute commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false bool [0xc8204a8280] } +&{value QXmlStreamAttributes::value commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false true 3 QStringRef [0xc8204a85a0 0xc8204a8660] } +&{value QXmlStreamAttributes::value commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false true 5 QStringRef [0xc8204a88e0] } +&{value QXmlStreamAttributes::value commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false true 2 QStringRef [0xc8204a8b80 0xc8204a8c20] } +&{value QXmlStreamAttributes::value commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [0xc8204a8e00 0xc8204a8e80] } +&{value QXmlStreamAttributes::value commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false true 4 QStringRef [0xc8204a9040] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QXmlStreamEntityDeclaration.txt b/internal/binding/dump/QtCore/QXmlStreamEntityDeclaration.txt new file mode 100755 index 00000000..8854b8eb --- /dev/null +++ b/internal/binding/dump/QtCore/QXmlStreamEntityDeclaration.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QXmlStreamEntityDeclaration QXmlStreamEntityDeclaration::QXmlStreamEntityDeclaration commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non constructor false false [] } +&{QXmlStreamEntityDeclaration QXmlStreamEntityDeclaration::QXmlStreamEntityDeclaration commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non constructor false true 2 [0xc8204a9aa0] } +&{name QXmlStreamEntityDeclaration::name commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [] } +&{notationName QXmlStreamEntityDeclaration::notationName commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [] } +&{operator!= QXmlStreamEntityDeclaration::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false bool [0xc820496160] } +&{operator= QXmlStreamEntityDeclaration::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QXmlStreamEntityDeclaration & [0xc8204965a0] } +&{operator== QXmlStreamEntityDeclaration::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false bool [0xc820496900] } +&{publicId QXmlStreamEntityDeclaration::publicId commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [] } +&{systemId QXmlStreamEntityDeclaration::systemId commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [] } +&{value QXmlStreamEntityDeclaration::value commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [] } +&{~QXmlStreamEntityDeclaration QXmlStreamEntityDeclaration::~QXmlStreamEntityDeclaration commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QXmlStreamEntityResolver.txt b/internal/binding/dump/QtCore/QXmlStreamEntityResolver.txt new file mode 100755 index 00000000..238969d6 --- /dev/null +++ b/internal/binding/dump/QtCore/QXmlStreamEntityResolver.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{resolveUndeclaredEntity QXmlStreamEntityResolver::resolveUndeclaredEntity commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h impure plain false false QString [0xc820497920] } +&{~QXmlStreamEntityResolver QXmlStreamEntityResolver::~QXmlStreamEntityResolver commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QXmlStreamNamespaceDeclaration.txt b/internal/binding/dump/QtCore/QXmlStreamNamespaceDeclaration.txt new file mode 100755 index 00000000..b9337144 --- /dev/null +++ b/internal/binding/dump/QtCore/QXmlStreamNamespaceDeclaration.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{QXmlStreamNamespaceDeclaration QXmlStreamNamespaceDeclaration::QXmlStreamNamespaceDeclaration commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non constructor false false [] } +&{QXmlStreamNamespaceDeclaration QXmlStreamNamespaceDeclaration::QXmlStreamNamespaceDeclaration commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non constructor false true 3 [0xc8204843c0 0xc8204845a0] } +&{QXmlStreamNamespaceDeclaration QXmlStreamNamespaceDeclaration::QXmlStreamNamespaceDeclaration commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non constructor false true 2 [0xc820484940] } +&{namespaceUri QXmlStreamNamespaceDeclaration::namespaceUri commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [] } +&{operator!= QXmlStreamNamespaceDeclaration::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false bool [0xc820484d40] } +&{operator= QXmlStreamNamespaceDeclaration::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QXmlStreamNamespaceDeclaration & [0xc820485140] } +&{operator== QXmlStreamNamespaceDeclaration::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false bool [0xc820485400] } +&{prefix QXmlStreamNamespaceDeclaration::prefix commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [] } +&{~QXmlStreamNamespaceDeclaration QXmlStreamNamespaceDeclaration::~QXmlStreamNamespaceDeclaration commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QXmlStreamNotationDeclaration.txt b/internal/binding/dump/QtCore/QXmlStreamNotationDeclaration.txt new file mode 100755 index 00000000..d117c680 --- /dev/null +++ b/internal/binding/dump/QtCore/QXmlStreamNotationDeclaration.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{QXmlStreamNotationDeclaration QXmlStreamNotationDeclaration::QXmlStreamNotationDeclaration commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non constructor false false [] } +&{QXmlStreamNotationDeclaration QXmlStreamNotationDeclaration::QXmlStreamNotationDeclaration commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non constructor false true 2 [0xc820485fa0] } +&{name QXmlStreamNotationDeclaration::name commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [] } +&{operator!= QXmlStreamNotationDeclaration::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false bool [0xc820478400] } +&{operator= QXmlStreamNotationDeclaration::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QXmlStreamNotationDeclaration & [0xc820478820] } +&{operator== QXmlStreamNotationDeclaration::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false bool [0xc820478ac0] } +&{publicId QXmlStreamNotationDeclaration::publicId commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [] } +&{systemId QXmlStreamNotationDeclaration::systemId commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [] } +&{~QXmlStreamNotationDeclaration QXmlStreamNotationDeclaration::~QXmlStreamNotationDeclaration commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/QXmlStreamReader.txt b/internal/binding/dump/QtCore/QXmlStreamReader.txt new file mode 100755 index 00000000..9061a524 --- /dev/null +++ b/internal/binding/dump/QtCore/QXmlStreamReader.txt @@ -0,0 +1,65 @@ +######################################## FUNCTIONS ######################################## +&{namespaceProcessing QXmlStreamReader::namespaceProcessing commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.cpp non plain false false bool [] } +&{setNamespaceProcessing QXmlStreamReader::setNamespaceProcessing commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.cpp non plain false false void [0xc820479d40] } +&{QXmlStreamReader QXmlStreamReader::QXmlStreamReader commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non constructor false false [] } +&{QXmlStreamReader QXmlStreamReader::QXmlStreamReader commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non constructor false true 2 [0xc820458da0] } +&{QXmlStreamReader QXmlStreamReader::QXmlStreamReader commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non constructor false true 3 [0xc820459100] } +&{QXmlStreamReader QXmlStreamReader::QXmlStreamReader commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non constructor false true 4 [0xc820459460] } +&{QXmlStreamReader QXmlStreamReader::QXmlStreamReader commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non constructor false true 5 [0xc820459780] } +&{addData QXmlStreamReader::addData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [0xc820459bc0] } +&{addData QXmlStreamReader::addData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false true 2 void [0xc820459f40] } +&{addData QXmlStreamReader::addData commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false true 3 void [0xc82044a440] } +&{addExtraNamespaceDeclaration QXmlStreamReader::addExtraNamespaceDeclaration commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [0xc82044a7c0] } +&{addExtraNamespaceDeclarations QXmlStreamReader::addExtraNamespaceDeclarations commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [0xc82044ab00] } +&{atEnd QXmlStreamReader::atEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false bool [] } +&{attributes QXmlStreamReader::attributes commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QXmlStreamAttributes [] } +&{characterOffset QXmlStreamReader::characterOffset commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false qint64 [] } +&{clear QXmlStreamReader::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [] } +&{columnNumber QXmlStreamReader::columnNumber commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false qint64 [] } +&{device QXmlStreamReader::device commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QIODevice * [] } +&{documentEncoding QXmlStreamReader::documentEncoding commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [] } +&{documentVersion QXmlStreamReader::documentVersion commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [] } +&{dtdName QXmlStreamReader::dtdName commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [] } +&{dtdPublicId QXmlStreamReader::dtdPublicId commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [] } +&{dtdSystemId QXmlStreamReader::dtdSystemId commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [] } +&{entityDeclarations QXmlStreamReader::entityDeclarations commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QXmlStreamEntityDeclarations [] } +&{entityResolver QXmlStreamReader::entityResolver commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QXmlStreamEntityResolver * [] } +&{error QXmlStreamReader::error commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false Error [] } +&{errorString QXmlStreamReader::errorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QString [] } +&{hasError QXmlStreamReader::hasError commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false bool [] } +&{isCDATA QXmlStreamReader::isCDATA commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false bool [] } +&{isCharacters QXmlStreamReader::isCharacters commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false bool [] } +&{isComment QXmlStreamReader::isComment commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false bool [] } +&{isDTD QXmlStreamReader::isDTD commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false bool [] } +&{isEndDocument QXmlStreamReader::isEndDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false bool [] } +&{isEndElement QXmlStreamReader::isEndElement commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false bool [] } +&{isEntityReference QXmlStreamReader::isEntityReference commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false bool [] } +&{isProcessingInstruction QXmlStreamReader::isProcessingInstruction commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false bool [] } +&{isStandaloneDocument QXmlStreamReader::isStandaloneDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false bool [] } +&{isStartDocument QXmlStreamReader::isStartDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false bool [] } +&{isStartElement QXmlStreamReader::isStartElement commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false bool [] } +&{isWhitespace QXmlStreamReader::isWhitespace commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false bool [] } +&{lineNumber QXmlStreamReader::lineNumber commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false qint64 [] } +&{name QXmlStreamReader::name commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [] } +&{namespaceDeclarations QXmlStreamReader::namespaceDeclarations commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QXmlStreamNamespaceDeclarations [] } +&{namespaceUri QXmlStreamReader::namespaceUri commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [] } +&{notationDeclarations QXmlStreamReader::notationDeclarations commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QXmlStreamNotationDeclarations [] } +&{prefix QXmlStreamReader::prefix commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [] } +&{processingInstructionData QXmlStreamReader::processingInstructionData commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [] } +&{processingInstructionTarget QXmlStreamReader::processingInstructionTarget commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [] } +&{qualifiedName QXmlStreamReader::qualifiedName commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [] } +&{raiseError QXmlStreamReader::raiseError commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [0xc820a4d080] } +&{readElementText QXmlStreamReader::readElementText commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QString [0xc820a4d280] } +&{readNext QXmlStreamReader::readNext commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false TokenType [] } +&{readNextStartElement QXmlStreamReader::readNextStartElement commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false bool [] } +&{setDevice QXmlStreamReader::setDevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [0xc820a4d840] } +&{setEntityResolver QXmlStreamReader::setEntityResolver commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [0xc820a4dae0] } +&{skipCurrentElement QXmlStreamReader::skipCurrentElement commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [] } +&{text QXmlStreamReader::text commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QStringRef [] } +&{tokenString QXmlStreamReader::tokenString commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QString [] } +&{tokenType QXmlStreamReader::tokenType commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false TokenType [] } +&{~QXmlStreamReader QXmlStreamReader::~QXmlStreamReader commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Error QXmlStreamReader::Error commendable public [0xc82046a220 0xc82046a380 0xc82046a580 0xc82046a760 0xc82046aa60]} +&{ReadElementTextBehaviour QXmlStreamReader::ReadElementTextBehaviour commendable public [0xc82046afe0 0xc82046b200 0xc82046b4a0]} +&{TokenType QXmlStreamReader::TokenType commendable public [0xc82046bb40 0xc82046bc20 0xc82046bdc0 0xc82046bea0 0xc820458020 0xc8204581c0 0xc8204582a0 0xc820458480 0xc820458560 0xc820458640 0xc820458800]} diff --git a/internal/binding/dump/QtCore/QXmlStreamWriter.txt b/internal/binding/dump/QtCore/QXmlStreamWriter.txt new file mode 100755 index 00000000..d085aeda --- /dev/null +++ b/internal/binding/dump/QtCore/QXmlStreamWriter.txt @@ -0,0 +1,41 @@ +######################################## FUNCTIONS ######################################## +&{autoFormattingIndent QXmlStreamWriter::autoFormattingIndent commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.cpp non plain false false int [] } +&{setAutoFormattingIndent QXmlStreamWriter::setAutoFormattingIndent commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.cpp non plain false false void [0xc820403400] } +&{QXmlStreamWriter QXmlStreamWriter::QXmlStreamWriter commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non constructor false false [] } +&{QXmlStreamWriter QXmlStreamWriter::QXmlStreamWriter commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non constructor false true 3 [0xc820403a80] } +&{QXmlStreamWriter QXmlStreamWriter::QXmlStreamWriter commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non constructor false true 2 [0xc820403e60] } +&{QXmlStreamWriter QXmlStreamWriter::QXmlStreamWriter commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non constructor false true 4 [0xc8204c81e0] } +&{autoFormatting QXmlStreamWriter::autoFormatting commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false bool [] } +&{codec QXmlStreamWriter::codec commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QTextCodec * [] } +&{device QXmlStreamWriter::device commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false QIODevice * [] } +&{hasError QXmlStreamWriter::hasError commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false bool [] } +&{setAutoFormatting QXmlStreamWriter::setAutoFormatting commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [0xc8204c8f00] } +&{setCodec QXmlStreamWriter::setCodec commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [0xc8204c9200] } +&{setCodec QXmlStreamWriter::setCodec commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false true 2 void [0xc8204c95c0] } +&{setDevice QXmlStreamWriter::setDevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [0xc8204c9980] } +&{writeAttribute QXmlStreamWriter::writeAttribute commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [0xc8204c9c60 0xc8204c9d20 0xc8204c9e60] } +&{writeAttribute QXmlStreamWriter::writeAttribute commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false true 2 void [0xc8203ec0e0 0xc8203ec280] } +&{writeAttribute QXmlStreamWriter::writeAttribute commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false true 3 void [0xc8203ec6c0] } +&{writeAttributes QXmlStreamWriter::writeAttributes commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [0xc8203eca40] } +&{writeCDATA QXmlStreamWriter::writeCDATA commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [0xc8203ed000] } +&{writeCharacters QXmlStreamWriter::writeCharacters commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [0xc8203ed400] } +&{writeComment QXmlStreamWriter::writeComment commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [0xc8203ed740] } +&{writeCurrentToken QXmlStreamWriter::writeCurrentToken commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [0xc8203edb80] } +&{writeDTD QXmlStreamWriter::writeDTD commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [0xc8203da000] } +&{writeDefaultNamespace QXmlStreamWriter::writeDefaultNamespace commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [0xc8203da4c0] } +&{writeEmptyElement QXmlStreamWriter::writeEmptyElement commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [0xc8203daa60 0xc8203dab00] } +&{writeEmptyElement QXmlStreamWriter::writeEmptyElement commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false true 2 void [0xc8203daf40] } +&{writeEndDocument QXmlStreamWriter::writeEndDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [] } +&{writeEndElement QXmlStreamWriter::writeEndElement commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [] } +&{writeEntityReference QXmlStreamWriter::writeEntityReference commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [0xc8203db5a0] } +&{writeNamespace QXmlStreamWriter::writeNamespace commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [0xc8203dbb00 0xc8203dbd00] } +&{writeProcessingInstruction QXmlStreamWriter::writeProcessingInstruction commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [0xc8203c6360 0xc8203c6600] } +&{writeStartDocument QXmlStreamWriter::writeStartDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false true 3 void [] } +&{writeStartDocument QXmlStreamWriter::writeStartDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [0xc8203c7020] } +&{writeStartDocument QXmlStreamWriter::writeStartDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false true 2 void [0xc8203c7520 0xc8203c7740] } +&{writeStartElement QXmlStreamWriter::writeStartElement commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [0xc8203c7d00 0xc8203c7fe0] } +&{writeStartElement QXmlStreamWriter::writeStartElement commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false true 2 void [0xc8203ae3c0] } +&{writeTextElement QXmlStreamWriter::writeTextElement commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false false void [0xc8203ae780 0xc8203aea40 0xc8203aec20] } +&{writeTextElement QXmlStreamWriter::writeTextElement commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non plain false true 2 void [0xc8203aef80 0xc8203af100] } +&{~QXmlStreamWriter QXmlStreamWriter::~QXmlStreamWriter commendable public /work/build/qt5_workdir/w/s/qtbase/src/corelib/xml/qxmlstream.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtCore/Qt.txt b/internal/binding/dump/QtCore/Qt.txt new file mode 100755 index 00000000..0e9cc2dd --- /dev/null +++ b/internal/binding/dump/QtCore/Qt.txt @@ -0,0 +1,83 @@ +######################################## FUNCTIONS ######################################## +######################################## ENUMS ######################################## +&{AlignmentFlag Qt::AlignmentFlag commendable public Qt::Alignment [0xc820070c20 0xc820070ca0 0xc820070d20 0xc820070da0 0xc820070e40 0xc820070ec0 0xc820070f40 0xc820070fe0 0xc8200710c0 0xc820071140 0xc8200711c0 0xc820071240 0xc8200712e0 0xc8200713c0]} +&{AnchorPoint Qt::AnchorPoint commendable public [0xc820071560 0xc820071600 0xc8200716c0 0xc820071740 0xc820071800 0xc8200718c0]} +&{ApplicationAttribute Qt::ApplicationAttribute commendable public [0xc820071ae0 0xc820071bc0 0xc820071ca0 0xc820071d60 0xc820071e00 0xc820071ea0 0xc820071f80 0xc82000e120 0xc82000e200 0xc82000e2a0 0xc82000e360 0xc82000e3e0 0xc82000e480 0xc82000e560 0xc82000e640 0xc82000e700 0xc82000e7c0 0xc82000e8a0 0xc82000e960 0xc82000ea00]} +&{ApplicationState Qt::ApplicationState commendable public Qt::ApplicationStates [0xc82000ec80 0xc82000ed60 0xc82000ee40 0xc82000ef20]} +&{ArrowType Qt::ArrowType commendable public [0xc82000f180 0xc82000f200 0xc82000f280 0xc82000f300 0xc82000f3a0]} +&{AspectRatioMode Qt::AspectRatioMode commendable public [0xc82000f580 0xc82000f640 0xc82000f700]} +&{Axis Qt::Axis commendable public [0xc82000f920 0xc82000f9a0 0xc82000fa20]} +&{BGMode Qt::BGMode commendable public [0xc82000fba0 0xc82000fc40]} +&{BrushStyle Qt::BrushStyle commendable public [0xc82000fde0 0xc82000fe80 0xc82000ff00 0xc82018c000 0xc82018c0a0 0xc82018c120 0xc82018c1a0 0xc82018c220 0xc82018c2c0 0xc82018c340 0xc82018c3c0 0xc82018c440 0xc82018c4c0 0xc82018c540 0xc82018c5c0 0xc82018c660 0xc82018c760 0xc82018c840 0xc82018c900]} +&{CaseSensitivity Qt::CaseSensitivity commendable public [0xc82018cb20 0xc82018cba0]} +&{CheckState Qt::CheckState commendable public [0xc82018cd40 0xc82018ce00 0xc82018ce80]} +&{ClipOperation Qt::ClipOperation commendable public [0xc82018d080 0xc82018d120 0xc82018d1a0]} +&{ConnectionType Qt::ConnectionType commendable public [0xc82018d380 0xc82018d400 0xc82018d480 0xc82018d520 0xc82018d600]} +&{ContextMenuPolicy Qt::ContextMenuPolicy commendable public [0xc82018d820 0xc82018d8c0 0xc82018d9a0 0xc82018da80 0xc82018db80]} +&{CoordinateSystem Qt::CoordinateSystem commendable public [0xc82018dda0 0xc82018de80]} +&{Corner Qt::Corner commendable public [0xc82017e020 0xc82017e0a0 0xc82017e120 0xc82017e1c0]} +&{CursorMoveStyle Qt::CursorMoveStyle commendable public [0xc82017e3e0 0xc82017e460]} +&{CursorShape Qt::CursorShape commendable public [0xc82017e5c0 0xc82017e640 0xc82017e6c0 0xc82017e740 0xc82017e7e0 0xc82017e860 0xc82017e8e0 0xc82017e960 0xc82017ea00 0xc82017ea80 0xc82017eb00 0xc82017eb80 0xc82017ec00 0xc82017eca0 0xc82017ed60 0xc82017ede0 0xc82017ee80 0xc82017ef00 0xc82017ef80 0xc82017f000 0xc82017f080 0xc82017f100 0xc82017f180 0xc82017f200 0xc82017f280]} +&{DateFormat Qt::DateFormat commendable public [0xc82017f3e0 0xc82017f460 0xc82017f4e0 0xc82017f560 0xc82017f600 0xc82017f6a0 0xc82017f780 0xc82017f860 0xc82017f960 0xc82017fa20]} +&{DayOfWeek Qt::DayOfWeek commendable public [0xc82017fb80 0xc82017fc00 0xc82017fc80 0xc82017fd00 0xc82017fda0 0xc82017fe20 0xc82017fea0]} +&{DockWidgetArea Qt::DockWidgetArea commendable public Qt::DockWidgetAreas [0xc8201ae0e0 0xc8201ae1c0 0xc8201ae2a0 0xc8201ae380 0xc8201ae480 0xc8201ae580 0xc8201ae680]} +&{DropAction Qt::DropAction commendable public Qt::DropActions [0xc8201aea00 0xc8201aea80 0xc8201aeb00 0xc8201aeb80 0xc8201aec20 0xc8201aeca0]} +&{Edge Qt::Edge commendable public Qt::Edges [0xc8201aee00 0xc8201aee80 0xc8201aef00 0xc8201aef80]} +&{EventPriority Qt::EventPriority commendable public [0xc8201af160 0xc8201af240 0xc8201af300]} +&{FillRule Qt::FillRule commendable public [0xc8201af460 0xc8201af4e0]} +&{FindChildOption Qt::FindChildOption commendable public Qt::FindChildOptions [0xc8201af720 0xc8201af800]} +&{FocusPolicy Qt::FocusPolicy commendable public [0xc8201af9a0 0xc8201afa20 0xc8201afaa0 0xc8201afb40 0xc8201afc40]} +&{FocusReason Qt::FocusReason commendable public [0xc8201afde0 0xc8201afe60 0xc8201aff00 0xc8201affe0 0xc8201b60c0 0xc8201b6160 0xc8201b6240 0xc8201b6300 0xc8201b63a0]} +&{GestureFlag Qt::GestureFlag commendable public Qt::GestureFlags [0xc8201b6520 0xc8201b6600 0xc8201b66e0]} +&{GestureState Qt::GestureState commendable public [0xc8201b6880 0xc8201b6900 0xc8201b6980 0xc8201b6a00 0xc8201b6aa0]} +&{GestureType Qt::GestureType commendable public [0xc8201b6c00 0xc8201b6ca0 0xc8201b6d60 0xc8201b6de0 0xc8201b6e80 0xc8201b6f00 0xc8201b6f80]} +&{GlobalColor Qt::GlobalColor commendable public [0xc8201b7100 0xc8201b7180 0xc8201b7200 0xc8201b7280 0xc8201b7320 0xc8201b73a0 0xc8201b7420 0xc8201b74a0 0xc8201b7540 0xc8201b75c0 0xc8201b7640 0xc8201b76c0 0xc8201b7740 0xc8201b77c0 0xc8201b7840 0xc8201b78c0 0xc8201b7960 0xc8201b79e0 0xc8201b7a60 0xc8201b7ae0]} +&{HitTestAccuracy Qt::HitTestAccuracy commendable public [0xc8201b7ca0 0xc8201b7d20]} +&{ImageConversionFlag Qt::ImageConversionFlag commendable public Qt::ImageConversionFlags [0xc8201b7fa0 0xc8201c4020 0xc8201c40a0 0xc8201c4120 0xc8201c41c0 0xc8201c4260 0xc8201c4340 0xc8201c4420 0xc8201c4500 0xc8201c4580 0xc8201c4600 0xc8201c4680 0xc8201c4700 0xc8201c4780 0xc8201c4800 0xc8201c4880 0xc8201c4920 0xc8201c49c0 0xc8201c4aa0]} +&{InputMethodHint Qt::InputMethodHint commendable public Qt::InputMethodHints [0xc8201c4ec0 0xc8201c4f40 0xc8201c4fc0 0xc8201c5060 0xc8201c5140 0xc8201c51e0 0xc8201c52c0 0xc8201c53a0 0xc8201c5480 0xc8201c5500 0xc8201c5580 0xc8201c5600 0xc8201c5680 0xc8201c5720 0xc8201c57e0 0xc8201c5860 0xc8201c5920 0xc8201c5a00 0xc8201c5ae0 0xc8201c5ba0 0xc8201c5c40]} +&{InputMethodQuery Qt::InputMethodQuery commendable public Qt::InputMethodQueries [0xc8201c5ea0 0xc8201c5f40 0xc8201ca000 0xc8201ca080 0xc8201ca120 0xc8201ca1c0 0xc8201ca2a0 0xc8201ca380 0xc8201ca460 0xc8201ca4e0 0xc8201ca580 0xc8201ca660 0xc8201ca740 0xc8201ca820 0xc8201ca8e0 0xc8201ca960 0xc8201caa00]} +&{ItemDataRole Qt::ItemDataRole commendable public [0xc8201cab60 0xc8201cabe0 0xc8201cac60 0xc8201cace0 0xc8201cad80 0xc8201cae00 0xc8201cae80 0xc8201caf20 0xc8201cb020 0xc8201cb0e0 0xc8201cb160 0xc8201cb1e0 0xc8201cb260 0xc8201cb300 0xc8201cb3e0 0xc8201cb4a0 0xc8201cb560 0xc8201cb640 0xc8201cb720 0xc8201cb800 0xc8201cb8e0 0xc8201cb9c0 0xc8201cba80]} +&{ItemFlag Qt::ItemFlag commendable public Qt::ItemFlags [0xc8201cbbe0 0xc8201cbc60 0xc8201cbce0 0xc8201cbd80 0xc8201cbe80 0xc8201cbf60 0xc8201d2020 0xc8201d20a0 0xc8201d2160 0xc8201d2240]} +&{ItemSelectionMode Qt::ItemSelectionMode commendable public [0xc8201d24c0 0xc8201d25a0 0xc8201d2680 0xc8201d2760]} +&{ItemSelectionOperation Qt::ItemSelectionOperation commendable public [0xc8201d29a0 0xc8201d2a20]} +&{Key Qt::Key commendable public [0xc8201d2b60 0xc8201d2be0 0xc8201d2c60 0xc8201d2ce0 0xc8201d2d80 0xc8201d2e00 0xc8201d2e80 0xc8201d2f00 0xc8201d2fa0 0xc8201d3020 0xc8201d30a0 0xc8201d3120 0xc8201d31a0 0xc8201d3220 0xc8201d32a0 0xc8201d3320 0xc8201d33c0 0xc8201d3440 0xc8201d34c0 0xc8201d3540 0xc8201d35c0 0xc8201d3640 0xc8201d36c0 0xc8201d3740 0xc8201d37c0 0xc8201d3840 0xc8201d38c0 0xc8201d3940 0xc8201d39c0 0xc8201d3a40 0xc8201d3ac0 0xc8201d3b40 0xc8201d3be0 0xc8201d3c60 0xc8201d3ce0 0xc8201d3d60 0xc8201d3de0 0xc8201d3e60 0xc8201d3ee0 0xc8201d3f60 0xc8201d3fe0 0xc8201dc060 0xc8201dc0e0 0xc8201dc160 0xc8201dc1e0 0xc8201dc260 0xc8201dc2e0 0xc8201dc360 0xc8201dc3e0 0xc8201dc460 0xc8201dc4e0 0xc8201dc560 0xc8201dc5e0 0xc8201dc660 0xc8201dc6e0 0xc8201dc760 0xc8201dc7e0 0xc8201dc860 0xc8201dc8e0 0xc8201dc960 0xc8201dc9e0 0xc8201dca60 0xc8201dcae0 0xc8201dcb60 0xc8201dcc00 0xc8201dcc80 0xc8201dcd00 0xc8201dcd80 0xc8201dce00 0xc8201dce80 0xc8201dcf00 0xc8201dcf80 0xc8201dd000 0xc8201dd080 0xc8201dd100 0xc8201dd180 0xc8201dd200 0xc8201dd280 0xc8201dd300 0xc8201dd380 0xc8201dd400 0xc8201dd480 0xc8201dd500 0xc8201dd580 0xc8201dd600 0xc8201dd680 0xc8201dd700 0xc8201dd780 0xc8201dd800 0xc8201dd880 0xc8201dd900 0xc8201dd980 0xc8201dda00 0xc8201dda80 0xc8201ddb00 0xc8201ddb80 0xc8201ddc00 0xc8201ddc80 0xc8201ddd00 0xc8201ddd80 0xc8201dde00 0xc8201dde80 0xc8201ddf00 0xc8201ddf80 0xc8201ea000 0xc8201ea080 0xc8201ea100 0xc8201ea180 0xc8201ea200 0xc8201ea280 0xc8201ea300 0xc8201ea380 0xc8201ea400 0xc8201ea480 0xc8201ea500 0xc8201ea580 0xc8201ea600 0xc8201ea680 0xc8201ea700 0xc8201ea780 0xc8201ea800 0xc8201ea880 0xc8201ea900 0xc8201ea980 0xc8201eaa00 0xc8201eaa80 0xc8201eab00 0xc8201eab80 0xc8201eac20 0xc8201eaca0 0xc8201ead20 0xc8201eada0 0xc8201eae20 0xc8201eaea0 0xc8201eaf20 0xc8201eafa0 0xc8201eb020 0xc8201eb0a0 0xc8201eb120 0xc8201eb1a0 0xc8201eb220 0xc8201eb2a0 0xc8201eb320 0xc8201eb3a0 0xc8201eb420 0xc8201eb4a0 0xc8201eb520 0xc8201eb5a0 0xc8201eb620 0xc8201eb6a0 0xc8201eb720 0xc8201eb7c0 0xc8201eb880 0xc8201eb900 0xc8201eb980 0xc8201eba00 0xc8201eba80 0xc8201ebb00 0xc8201ebb80 0xc8201ebc20 0xc8201ebce0 0xc8201ebd60 0xc8201ebde0 0xc8201ebe80 0xc8201ebf40 0xc8201ebfc0 0xc8201f4040 0xc8201f40e0 0xc8201f41a0 0xc8201f4220 0xc8201f42c0 0xc8201f4380 0xc8201f4400 0xc8201f4480 0xc8201f4500 0xc8201f4580 0xc8201f4600 0xc8201f4680 0xc8201f4700 0xc8201f4780 0xc8201f4800 0xc8201f4880 0xc8201f4900 0xc8201f4980 0xc8201f4a00 0xc8201f4a80 0xc8201f4b00 0xc8201f4b80 0xc8201f4c00 0xc8201f4c80 0xc8201f4d00 0xc8201f4d80 0xc8201f4e00 0xc8201f4e80 0xc8201f4f00 0xc8201f4f80 0xc8201f5000 0xc8201f5080 0xc8201f5100 0xc8201f5180 0xc8201f5200 0xc8201f5280 0xc8201f5300 0xc8201f5380 0xc8201f5400 0xc8201f5480 0xc8201f5500 0xc8201f5580 0xc8201f5600 0xc8201f56a0 0xc8201f5780 0xc8201f5860 0xc8201f5920 0xc8201f59a0 0xc8201f5a20 0xc8201f5aa0 0xc8201f5b20 0xc8201f5ba0 0xc8201f5c20 0xc8201f5cc0 0xc8201f5d80 0xc8201f5e00 0xc8201f5ea0 0xc8201f5f60 0xc8201f5fe0 0xc820200060 0xc8202000e0 0xc820200160 0xc8202001e0 0xc820200260 0xc8202002e0 0xc820200360 0xc8202003e0 0xc820200460 0xc820200500 0xc8202005e0 0xc8202006a0 0xc820200740 0xc820200820 0xc820200900 0xc8202009c0 0xc820200a40 0xc820200ae0 0xc820200ba0 0xc820200c20 0xc820200ca0 0xc820200d40 0xc820200e20 0xc820200f00 0xc820200fe0 0xc8202010a0 0xc820201120 0xc8202011a0 0xc820201220 0xc8202012c0 0xc8202013a0 0xc8202014a0 0xc820201560 0xc8202015e0 0xc820201660 0xc8202016e0 0xc820201760 0xc8202017e0 0xc820201860 0xc8202018e0 0xc820201960 0xc8202019e0 0xc820201a60 0xc820201ae0 0xc820201b60 0xc820201be0 0xc820201c60 0xc820201ce0 0xc820201d80 0xc820201e40 0xc820201ec0 0xc820201f40 0xc820201fe0 0xc8202080a0 0xc820208120 0xc8202081a0 0xc820208220 0xc8202082a0 0xc820208320 0xc8202083a0 0xc820208420 0xc8202084a0 0xc820208520 0xc8202085a0 0xc820208620 0xc8202086a0 0xc820208720 0xc8202087a0 0xc820208820 0xc8202088a0 0xc820208920 0xc8202089a0 0xc820208a20 0xc820208aa0 0xc820208b20 0xc820208ba0 0xc820208c40 0xc820208d20 0xc820208e00 0xc820208ee0 0xc820208fc0 0xc820209080 0xc820209100 0xc820209180 0xc820209200 0xc820209280 0xc820209300 0xc820209380 0xc820209400 0xc820209480 0xc820209500 0xc820209580 0xc820209620 0xc8202096e0 0xc820209760 0xc8202097e0 0xc820209860 0xc820209900 0xc8202099e0 0xc820209aa0 0xc820209b20 0xc820209ba0 0xc820209c20 0xc820209ca0 0xc820209d20 0xc820209da0 0xc820209e20 0xc820209ea0 0xc820209f20 0xc820209fa0 0xc820210020 0xc8202100a0 0xc820210120 0xc8202101a0 0xc820210220 0xc8202102a0 0xc820210320 0xc8202103a0 0xc820210420 0xc8202104a0 0xc820210520 0xc8202105a0 0xc820210620 0xc8202106a0 0xc820210720 0xc8202107a0 0xc820210820 0xc8202108a0 0xc820210920 0xc8202109c0 0xc820210a80 0xc820210b00 0xc820210b80 0xc820210c00 0xc820210c80 0xc820210d00 0xc820210d80 0xc820210e00 0xc820210e80 0xc820210f00 0xc820210f80 0xc820211000 0xc820211080 0xc820211100 0xc820211180 0xc820211200 0xc820211280 0xc820211300 0xc820211380 0xc820211400 0xc820211480 0xc820211500 0xc820211580 0xc820211600 0xc820211680 0xc820211700 0xc820211780 0xc820211800 0xc8202118a0 0xc820211960 0xc820211a00 0xc820211ac0 0xc820211b40 0xc820211bc0 0xc820211c40 0xc820211cc0 0xc820211d40 0xc820211de0 0xc820211ea0 0xc820211f20 0xc820211fc0 0xc82021c080 0xc82021c100 0xc82021c180 0xc82021c200 0xc82021c280 0xc82021c300 0xc82021c380 0xc82021c400 0xc82021c480 0xc82021c500 0xc82021c580 0xc82021c600 0xc82021c680 0xc82021c720 0xc82021c7e0 0xc82021c860 0xc82021c8e0 0xc82021c960 0xc82021c9e0 0xc82021ca60 0xc82021cae0 0xc82021cb60 0xc82021cbe0 0xc82021cc60 0xc82021cce0 0xc82021cd60 0xc82021cde0 0xc82021ce60 0xc82021cee0 0xc82021cf60 0xc82021cfe0 0xc82021d060 0xc82021d0e0 0xc82021d160 0xc82021d1e0 0xc82021d260 0xc82021d2e0 0xc82021d380 0xc82021d440 0xc82021d4e0 0xc82021d5a0 0xc82021d620 0xc82021d6a0]} +&{KeyboardModifier Qt::KeyboardModifier commendable public Qt::KeyboardModifiers [0xc82021d8c0 0xc82021d940 0xc82021d9c0 0xc82021da40 0xc82021dae0 0xc82021db60 0xc82021dc00 0xc82021dce0]} +&{LayoutDirection Qt::LayoutDirection commendable public [0xc82021dee0 0xc82021df60 0xc820224000]} +&{MaskMode Qt::MaskMode commendable public [0xc8202241a0 0xc820224220]} +&{MatchFlag Qt::MatchFlag commendable public Qt::MatchFlags [0xc820224380 0xc820224400 0xc820224480 0xc820224500 0xc8202245a0 0xc820224620 0xc8202246a0 0xc820224740 0xc820224820 0xc8202248a0]} +&{Modifier Qt::Modifier commendable public [0xc820224a00 0xc820224aa0 0xc820224b80 0xc820224c40 0xc820224d00 0xc820224dc0]} +&{MouseButton Qt::MouseButton commendable public Qt::MouseButtons [0xc820224f20 0xc820224fa0 0xc820225020 0xc8202250a0 0xc820225140 0xc8202251c0 0xc820225240 0xc8202252c0 0xc820225360 0xc8202253e0 0xc820225460 0xc8202254e0 0xc820225560 0xc8202255e0 0xc820225660 0xc8202256e0 0xc820225780 0xc820225800 0xc820225880 0xc820225900 0xc820225980 0xc820225a00 0xc820225a80 0xc820225b00 0xc820225b80 0xc820225c00 0xc820225c80 0xc820225d00 0xc820225d80 0xc820225e00 0xc820225e80 0xc820225f00 0xc820225fa0 0xc82022e020 0xc82022e0a0 0xc82022e120 0xc82022e1a0]} +&{MouseEventFlag Qt::MouseEventFlag commendable public Qt::MouseEventFlags [0xc82022e3e0 0xc82022e4c0]} +&{MouseEventSource Qt::MouseEventSource commendable public [0xc82022e6e0 0xc82022e7c0 0xc82022e8a0]} +&{NativeGestureType Qt::NativeGestureType commendable public [0xc82022eb20 0xc82022ebe0 0xc82022ec60 0xc82022ed00 0xc82022ee00 0xc82022eee0 0xc82022efc0]} +&{NavigationMode Qt::NavigationMode commendable public [0xc82022f1e0 0xc82022f2c0 0xc82022f3a0 0xc82022f480 0xc82022f580]} +&{Orientation Qt::Orientation commendable public Qt::Orientations [0xc82022f720 0xc82022f7a0]} +&{PenCapStyle Qt::PenCapStyle commendable public [0xc82022f900 0xc82022f980 0xc82022fa00 0xc82022fa80]} +&{PenJoinStyle Qt::PenJoinStyle commendable public [0xc82022fbe0 0xc82022fc60 0xc82022fce0 0xc82022fd60 0xc82022fe00]} +&{PenStyle Qt::PenStyle commendable public [0xc82022ff60 0xc82022ffe0 0xc82023a060 0xc82023a0e0 0xc82023a180 0xc82023a200 0xc82023a280 0xc82023a300]} +&{ScreenOrientation Qt::ScreenOrientation commendable public Qt::ScreenOrientations [0xc82023a5a0 0xc82023a680 0xc82023a760 0xc82023a840 0xc82023a940]} +&{ScrollBarPolicy Qt::ScrollBarPolicy commendable public [0xc82023ab60 0xc82023ac40 0xc82023ad20]} +&{ScrollPhase Qt::ScrollPhase commendable public [0xc82023aec0 0xc82023af40 0xc82023afc0]} +&{ShortcutContext Qt::ShortcutContext commendable public [0xc82023b180 0xc82023b200 0xc82023b2a0 0xc82023b380]} +&{SizeHint Qt::SizeHint commendable public [0xc82023b520 0xc82023b5a0 0xc82023b620 0xc82023b6a0 0xc82023b740]} +&{SizeMode Qt::SizeMode commendable public [0xc82023b8a0 0xc82023b920]} +&{SortOrder Qt::SortOrder commendable public [0xc82023ba80 0xc82023bb00]} +&{TabFocusBehavior Qt::TabFocusBehavior commendable public [0xc82023bce0 0xc82023bd80 0xc82023be60 0xc82023bf40]} +&{TextElideMode Qt::TextElideMode commendable public [0xc820244140 0xc8202441c0 0xc820244240 0xc8202442c0]} +&{TextFlag Qt::TextFlag commendable public [0xc820244420 0xc8202444a0 0xc820244520 0xc8202445a0 0xc820244640 0xc8202446c0 0xc820244740 0xc8202447e0 0xc8202448c0 0xc820244960 0xc820244a40 0xc820244b20 0xc820244c00 0xc820244ce0]} +&{TextFormat Qt::TextFormat commendable public [0xc820244e80 0xc820244f00 0xc820244f80]} +&{TextInteractionFlag Qt::TextInteractionFlag commendable public Qt::TextInteractionFlags [0xc820245220 0xc820245300 0xc8202453e0 0xc8202454c0 0xc8202455c0 0xc820245680 0xc820245720 0xc820245800]} +&{TileRule Qt::TileRule commendable public [0xc8202459a0 0xc820245a20 0xc820245aa0]} +&{TimeSpec Qt::TimeSpec commendable public [0xc820245c00 0xc820245c80 0xc820245d00 0xc820245d80]} +&{TimerType Qt::TimerType commendable public [0xc820245ee0 0xc820245f60 0xc820245fe0]} +&{ToolBarArea Qt::ToolBarArea commendable public Qt::ToolBarAreas [0xc820252140 0xc8202521c0 0xc820252240 0xc8202522e0 0xc8202523c0 0xc820252440 0xc8202524c0]} +&{ToolButtonStyle Qt::ToolButtonStyle commendable public [0xc820252860 0xc820252940 0xc820252a20 0xc820252b00 0xc820252c00]} +&{TouchPointState Qt::TouchPointState commendable public Qt::TouchPointStates [0xc820252e80 0xc820252f40 0xc820252fe0 0xc8202530c0]} +&{TransformationMode Qt::TransformationMode commendable public [0xc820253340 0xc820253420]} +&{UIEffect Qt::UIEffect commendable public [0xc8202535c0 0xc820253640 0xc8202536c0 0xc820253740 0xc820253800 0xc8202538c0 0xc820253960]} +&{WhiteSpaceMode Qt::WhiteSpaceMode commendable public [0xc820253b60 0xc820253be0 0xc820253c60 0xc820253d00]} +&{WidgetAttribute Qt::WidgetAttribute commendable public [0xc820253f00 0xc820253f80 0xc82025c000 0xc82025c0a0 0xc82025c1a0 0xc82025c280 0xc82025c360 0xc82025c420 0xc82025c4c0 0xc82025c560 0xc82025c640 0xc82025c700 0xc82025c7a0 0xc82025c880 0xc82025c960 0xc82025ca20 0xc82025cac0 0xc82025cb60 0xc82025cc40 0xc82025cd20 0xc82025cde0 0xc82025ce60 0xc82025cee0 0xc82025cf80 0xc82025d060 0xc82025d120 0xc82025d1a0 0xc82025d220 0xc82025d2a0 0xc82025d340 0xc82025d420 0xc82025d500 0xc82025d600 0xc82025d6e0 0xc82025d7c0 0xc82025d8a0 0xc82025d980 0xc82025da40 0xc82025dac0 0xc82025db40 0xc82025dbc0 0xc82025dc60 0xc82025dd40 0xc82025de20 0xc82025df00 0xc82025dfe0 0xc8202640c0 0xc8202641a0 0xc820264280 0xc820264360 0xc820264420 0xc8202644c0 0xc8202645a0 0xc820264660 0xc8202646e0 0xc820264760 0xc820264800 0xc8202648c0 0xc820264960 0xc820264a20 0xc820264ac0 0xc820264b80 0xc820264c20 0xc820264d20 0xc820264e60 0xc820264f40 0xc820265020 0xc820265100 0xc8202651e0 0xc8202652c0 0xc820265380 0xc820265400 0xc8202654a0 0xc820265560 0xc8202655e0 0xc820265660 0xc820265700 0xc8202657e0 0xc8202658c0 0xc8202659a0 0xc820265a80 0xc820265b40 0xc820265be0 0xc820265cc0 0xc820265d80 0xc820265e20 0xc820265f00 0xc820265fe0 0xc82026a0c0 0xc82026a1a0 0xc82026a280 0xc82026a360 0xc82026a440 0xc82026a520 0xc82026a600 0xc82026a6c0 0xc82026a760 0xc82026a840 0xc82026a900 0xc82026a9a0 0xc82026aa80 0xc82026ab60 0xc82026ac40 0xc82026ad20 0xc82026ae00 0xc82026aee0 0xc82026afa0 0xc82026b020 0xc82026b0c0 0xc82026b180 0xc82026b220 0xc82026b300]} +&{WindowFrameSection Qt::WindowFrameSection commendable public [0xc82026b600 0xc82026b680 0xc82026b700 0xc82026b780 0xc82026b820 0xc82026b8a0 0xc82026b940 0xc82026ba00 0xc82026bac0 0xc82026bb80]} +&{WindowModality Qt::WindowModality commendable public [0xc82026bd40 0xc82026bdc0 0xc82026be40]} +&{WindowState Qt::WindowState commendable public Qt::WindowStates [0xc820274000 0xc820274080 0xc820274100 0xc820274180 0xc820274220]} +&{WindowType Qt::WindowType commendable public Qt::WindowFlags [0xc8202743e0 0xc820274460 0xc820274500 0xc8202745e0 0xc8202746c0 0xc820274760 0xc820274820 0xc8202748a0 0xc820274940 0xc8202749e0 0xc820274aa0 0xc820274b40 0xc820274c20 0xc820274ce0 0xc820274d80 0xc820274e40 0xc820274f00 0xc820275000 0xc820275120 0xc8202751e0 0xc820275280 0xc820275360 0xc820275440 0xc820275520 0xc820275600 0xc8202756e0 0xc8202757c0 0xc8202758a0 0xc820275980 0xc820275a60 0xc820275b20 0xc820275bc0 0xc820275cc0 0xc820275da0 0xc820275e80 0xc820275f60 0xc82027a040 0xc82027a120 0xc82027a200 0xc82027a2e0]} diff --git a/internal/binding/dump/QtCore/QtGlobalStatic.txt b/internal/binding/dump/QtCore/QtGlobalStatic.txt new file mode 100755 index 00000000..e69936a9 --- /dev/null +++ b/internal/binding/dump/QtCore/QtGlobalStatic.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +######################################## ENUMS ######################################## +&{GuardValues QtGlobalStatic::GuardValues commendable public [0xc820a94c60 0xc820a94d00 0xc820a94da0 0xc820a94e20]} diff --git a/internal/binding/dump/QtCore/QtMetaTypePrivate.txt b/internal/binding/dump/QtCore/QtMetaTypePrivate.txt new file mode 100755 index 00000000..9908b0ba --- /dev/null +++ b/internal/binding/dump/QtCore/QtMetaTypePrivate.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +######################################## ENUMS ######################################## +&{IteratorCapability QtMetaTypePrivate::IteratorCapability commendable public [0xc820264d00 0xc820264fa0 0xc8202651a0]} diff --git a/internal/binding/dump/QtDBus/QDBusAbstractAdaptor.txt b/internal/binding/dump/QtDBus/QDBusAbstractAdaptor.txt new file mode 100755 index 00000000..b051d332 --- /dev/null +++ b/internal/binding/dump/QtDBus/QDBusAbstractAdaptor.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QDBusAbstractAdaptor QDBusAbstractAdaptor::QDBusAbstractAdaptor commendable protected /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusabstractadaptor.h non constructor false false [0xc821a0bfc0] } +&{autoRelaySignals QDBusAbstractAdaptor::autoRelaySignals commendable protected /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusabstractadaptor.h non plain false false bool [] } +&{setAutoRelaySignals QDBusAbstractAdaptor::setAutoRelaySignals commendable protected /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusabstractadaptor.h non plain false false void [0xc8219f2220] } +&{~QDBusAbstractAdaptor QDBusAbstractAdaptor::~QDBusAbstractAdaptor commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusabstractadaptor.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtDBus/QDBusAbstractInterface.txt b/internal/binding/dump/QtDBus/QDBusAbstractInterface.txt new file mode 100755 index 00000000..ca9f98f6 --- /dev/null +++ b/internal/binding/dump/QtDBus/QDBusAbstractInterface.txt @@ -0,0 +1,18 @@ +######################################## FUNCTIONS ######################################## +&{asyncCall QDBusAbstractInterface::asyncCall commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusabstractinterface.h non plain false false QDBusPendingCall [0xc8219f2e40 0xc8219f2ec0 0xc8219f2f40 0xc8219f2fc0 0xc8219f3060 0xc8219f30e0 0xc8219f3160 0xc8219f31e0 0xc8219f3280] } +&{asyncCallWithArgumentList QDBusAbstractInterface::asyncCallWithArgumentList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusabstractinterface.h non plain false false QDBusPendingCall [0xc8219f3460 0xc8219f3500] } +&{call QDBusAbstractInterface::call commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusabstractinterface.h non plain false true 2 QDBusMessage [0xc8219f3700 0xc8219f3780 0xc8219f3800 0xc8219f3880 0xc8219f3920 0xc8219f39a0 0xc8219f3a20 0xc8219f3aa0 0xc8219f3b40 0xc8219f3bc0] } +&{call QDBusAbstractInterface::call commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusabstractinterface.h non plain false false QDBusMessage [0xc8219f3da0 0xc8219f3e20 0xc8219f3ea0 0xc8219f3f20 0xc8219f3fc0 0xc8219c8040 0xc8219c80c0 0xc8219c8140 0xc8219c81e0] } +&{callWithArgumentList QDBusAbstractInterface::callWithArgumentList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusabstractinterface.h non plain false false QDBusMessage [0xc8219c83a0 0xc8219c8420 0xc8219c84c0] } +&{callWithCallback QDBusAbstractInterface::callWithCallback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusabstractinterface.h non plain false false bool [0xc8219c8680 0xc8219c8720 0xc8219c87e0 0xc8219c8860 0xc8219c8900] } +&{callWithCallback QDBusAbstractInterface::callWithCallback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusabstractinterface.h non plain false true 2 bool [0xc8219c8a60 0xc8219c8b00 0xc8219c8bc0 0xc8219c8c40] } +&{connection QDBusAbstractInterface::connection commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusabstractinterface.h non plain false false QDBusConnection [] } +&{interface QDBusAbstractInterface::interface commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusabstractinterface.h non plain false false QString [] } +&{isValid QDBusAbstractInterface::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusabstractinterface.h non plain false false bool [] } +&{lastError QDBusAbstractInterface::lastError commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusabstractinterface.h non plain false false QDBusError [] } +&{path QDBusAbstractInterface::path commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusabstractinterface.h non plain false false QString [] } +&{service QDBusAbstractInterface::service commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusabstractinterface.h non plain false false QString [] } +&{setTimeout QDBusAbstractInterface::setTimeout commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusabstractinterface.h non plain false false void [0xc8219c9cc0] } +&{timeout QDBusAbstractInterface::timeout commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusabstractinterface.h non plain false false int [] } +&{~QDBusAbstractInterface QDBusAbstractInterface::~QDBusAbstractInterface commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusabstractinterface.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtDBus/QDBusArgument.txt b/internal/binding/dump/QtDBus/QDBusArgument.txt new file mode 100755 index 00000000..99cabe6f --- /dev/null +++ b/internal/binding/dump/QtDBus/QDBusArgument.txt @@ -0,0 +1,52 @@ +######################################## FUNCTIONS ######################################## +&{QDBusArgument QDBusArgument::QDBusArgument commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non constructor false false [] } +&{QDBusArgument QDBusArgument::QDBusArgument commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non constructor false true 2 [0xc82198e740] } +&{asVariant QDBusArgument::asVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false false QVariant [] } +&{atEnd QDBusArgument::atEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false false bool [] } +&{beginArray QDBusArgument::beginArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false false void [0xc82198f700] } +&{beginArray QDBusArgument::beginArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 2 void [] } +&{beginMap QDBusArgument::beginMap commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false false void [0xc82198f9e0 0xc82198fa60] } +&{beginMap QDBusArgument::beginMap commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 2 void [] } +&{beginMapEntry QDBusArgument::beginMapEntry commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false false void [] } +&{beginMapEntry QDBusArgument::beginMapEntry commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 2 void [] } +&{beginStructure QDBusArgument::beginStructure commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false false void [] } +&{beginStructure QDBusArgument::beginStructure commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 2 void [] } +&{currentType QDBusArgument::currentType commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false false ElementType [] } +&{endArray QDBusArgument::endArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false false void [] } +&{endArray QDBusArgument::endArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 2 void [] } +&{endMap QDBusArgument::endMap commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false false void [] } +&{endMap QDBusArgument::endMap commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 2 void [] } +&{endMapEntry QDBusArgument::endMapEntry commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false false void [] } +&{endMapEntry QDBusArgument::endMapEntry commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 2 void [] } +&{endStructure QDBusArgument::endStructure commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false false void [] } +&{endStructure QDBusArgument::endStructure commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 2 void [] } +&{operator<< QDBusArgument::operator<< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 2 QDBusArgument & [0xc82220e960] } +&{operator<< QDBusArgument::operator<< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 16 QDBusArgument & [0xc82220eb20] } +&{operator<< QDBusArgument::operator<< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 14 QDBusArgument & [0xc82220ed20] } +&{operator<< QDBusArgument::operator<< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 10 QDBusArgument & [0xc82220ef00] } +&{operator<< QDBusArgument::operator<< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 15 QDBusArgument & [0xc82220f0c0] } +&{operator<< QDBusArgument::operator<< commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 9 QDBusArgument & [0xc82220f2c0] } +&{operator<< QDBusArgument::operator<< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 5 QDBusArgument & [0xc82220f460] } +&{operator<< QDBusArgument::operator<< commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 7 QDBusArgument & [0xc82220f600] } +&{operator<< QDBusArgument::operator<< commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 8 QDBusArgument & [0xc82220f7a0] } +&{operator<< QDBusArgument::operator<< commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 3 QDBusArgument & [0xc82220f940] } +&{operator<< QDBusArgument::operator<< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false false QDBusArgument & [0xc82220fae0] } +&{operator<< QDBusArgument::operator<< commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 6 QDBusArgument & [0xc82220fc80] } +&{operator<< QDBusArgument::operator<< commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 4 QDBusArgument & [0xc82220fe20] } +&{operator= QDBusArgument::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false false QDBusArgument & [0xc8218f6600] } +&{operator>> QDBusArgument::operator>> commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 16 const QDBusArgument & [0xc8218f6840] } +&{operator>> QDBusArgument::operator>> commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 14 const QDBusArgument & [0xc8218f6a40] } +&{operator>> QDBusArgument::operator>> commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 10 const QDBusArgument & [0xc8218f6c40] } +&{operator>> QDBusArgument::operator>> commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 15 const QDBusArgument & [0xc8218f6e40] } +&{operator>> QDBusArgument::operator>> commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 2 const QDBusArgument & [0xc8218f7040] } +&{operator>> QDBusArgument::operator>> commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 9 const QDBusArgument & [0xc8218f7240] } +&{operator>> QDBusArgument::operator>> commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 5 const QDBusArgument & [0xc8218f7440] } +&{operator>> QDBusArgument::operator>> commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 7 const QDBusArgument & [0xc8218f7640] } +&{operator>> QDBusArgument::operator>> commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 8 const QDBusArgument & [0xc8218f7840] } +&{operator>> QDBusArgument::operator>> commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 4 const QDBusArgument & [0xc8218f7a40] } +&{operator>> QDBusArgument::operator>> commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false false const QDBusArgument & [0xc8218f7c40] } +&{operator>> QDBusArgument::operator>> commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 6 const QDBusArgument & [0xc8218f7e40] } +&{operator>> QDBusArgument::operator>> commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non plain false true 3 const QDBusArgument & [0xc8218b2040] } +&{~QDBusArgument QDBusArgument::~QDBusArgument commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusargument.h non destructor false false [] } +######################################## ENUMS ######################################## +&{ElementType QDBusArgument::ElementType commendable public [0xc82198e140 0xc82198e1c0 0xc82198e240 0xc82198e2c0 0xc82198e360 0xc82198e3e0 0xc82198e460]} diff --git a/internal/binding/dump/QtDBus/QDBusConnection.txt b/internal/binding/dump/QtDBus/QDBusConnection.txt new file mode 100755 index 00000000..7a30ef7b --- /dev/null +++ b/internal/binding/dump/QtDBus/QDBusConnection.txt @@ -0,0 +1,40 @@ +######################################## FUNCTIONS ######################################## +&{sessionBus QDBusConnection::sessionBus commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.cpp non plain true false QDBusConnection [] } +&{systemBus QDBusConnection::systemBus commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.cpp non plain true false QDBusConnection [] } +&{QDBusConnection QDBusConnection::QDBusConnection commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non constructor false true 2 [0xc8226d43c0] } +&{QDBusConnection QDBusConnection::QDBusConnection commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non constructor false false [0xc8226d45c0] } +&{baseService QDBusConnection::baseService commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain false false QString [] } +&{connectToBus QDBusConnection::connectToBus commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain true false QDBusConnection [0xc8226d4ae0 0xc8226d4b60] } +&{connectToBus QDBusConnection::connectToBus commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain true true 2 QDBusConnection [0xc8226d4d20 0xc8226d4da0] } +&{asyncCall QDBusConnection::asyncCall commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain false false QDBusPendingCall [0xc8226d56a0 0xc8226d5760] } +&{call QDBusConnection::call commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain false false QDBusMessage [0xc8226d5960 0xc8226d5a20 0xc8226d5aa0] } +&{callWithCallback QDBusConnection::callWithCallback commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain false false bool [0xc8226d5c20 0xc8226d5ce0 0xc8226d5d60 0xc8226d5de0 0xc8226d5e80] } +&{connect QDBusConnection::connect commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain false false bool [0xc8218583a0 0xc821858420 0xc8218584a0 0xc821858520 0xc8218585c0 0xc821858640] } +&{connect QDBusConnection::connect commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain false true 2 bool [0xc821858820 0xc8218588a0 0xc821858920 0xc8218589a0 0xc821858a40 0xc821858ac0 0xc821858b40] } +&{connect QDBusConnection::connect commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain false true 3 bool [0xc821858d40 0xc821858dc0 0xc821858e40 0xc821858ec0 0xc821858f80 0xc821859040 0xc8218590c0 0xc821859140] } +&{connectToPeer QDBusConnection::connectToPeer commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain true false QDBusConnection [0xc821859300 0xc821859380] } +&{connectionCapabilities QDBusConnection::connectionCapabilities commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain false false ConnectionCapabilities [] } +&{disconnect QDBusConnection::disconnect commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain false false bool [0xc8218596a0 0xc821859720 0xc8218597a0 0xc821859820 0xc8218598c0 0xc821859940] } +&{disconnect QDBusConnection::disconnect commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain false true 2 bool [0xc821859b00 0xc821859b80 0xc821859c00 0xc821859c80 0xc821859d20 0xc821859da0 0xc821859e20] } +&{disconnect QDBusConnection::disconnect commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain false true 3 bool [0xc821859fe0 0xc821834060 0xc8218340e0 0xc821834160 0xc821834220 0xc8218342e0 0xc821834360 0xc8218343e0] } +&{disconnectFromBus QDBusConnection::disconnectFromBus commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain true false void [0xc8218345a0] } +&{disconnectFromPeer QDBusConnection::disconnectFromPeer commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain true false void [0xc821834760] } +&{interface QDBusConnection::interface commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain false false QDBusConnectionInterface * [] } +&{isConnected QDBusConnection::isConnected commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain false false bool [] } +&{lastError QDBusConnection::lastError commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain false false QDBusError [] } +&{localMachineId QDBusConnection::localMachineId commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain true false QByteArray [] } +&{name QDBusConnection::name commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain false false QString [] } +&{objectRegisteredAt QDBusConnection::objectRegisteredAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain false false QObject * [0xc821834ee0] } +&{operator= QDBusConnection::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain false false QDBusConnection & [0xc821835140] } +&{registerObject QDBusConnection::registerObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain false false bool [0xc821835340 0xc8218353c0 0xc821835440] } +&{registerObject QDBusConnection::registerObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain false true 2 bool [0xc821835620 0xc8218356a0 0xc821835720 0xc8218357a0] } +&{registerService QDBusConnection::registerService commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain false false bool [0xc821835960] } +&{send QDBusConnection::send commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain false false bool [0xc821835b60] } +&{unregisterObject QDBusConnection::unregisterObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain false false void [0xc821835e00 0xc821835e80] } +&{unregisterService QDBusConnection::unregisterService commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non plain false false bool [0xc8217e6040] } +&{~QDBusConnection QDBusConnection::~QDBusConnection commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnection.h non destructor false false [] } +######################################## ENUMS ######################################## +&{BusType QDBusConnection::BusType commendable public [0xc8218b2b60 0xc8218b2be0 0xc8218b2c60]} +&{ConnectionCapability QDBusConnection::ConnectionCapability commendable public QDBusConnection::ConnectionCapabilities [0xc8218b2e40]} +&{RegisterOption QDBusConnection::RegisterOption commendable public QDBusConnection::RegisterOptions [0xc8218b30a0 0xc8218b3140 0xc8218b3220 0xc8218b3300 0xc8218b3400 0xc8218b34e0 0xc8218b35c0 0xc8218b36a0 0xc8218b37a0 0xc8218b3880 0xc8218b3960 0xc8218b3a20 0xc8218b3aa0 0xc8218b3b40 0xc8218b3c20 0xc8218b3d00 0xc8218b3e00]} +&{UnregisterMode QDBusConnection::UnregisterMode commendable public [0xc8226d4000 0xc8226d4080]} diff --git a/internal/binding/dump/QtDBus/QDBusConnectionInterface.txt b/internal/binding/dump/QtDBus/QDBusConnectionInterface.txt new file mode 100755 index 00000000..212dc9e0 --- /dev/null +++ b/internal/binding/dump/QtDBus/QDBusConnectionInterface.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{registeredServiceNames QDBusConnectionInterface::registeredServiceNames commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnectioninterface.cpp non slot false false QDBusReply [] } +&{callWithCallbackFailed QDBusConnectionInterface::callWithCallbackFailed commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnectioninterface.h non signal false false void [0xc8217e7240 0xc8217e7320] } +&{isServiceRegistered QDBusConnectionInterface::isServiceRegistered commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnectioninterface.h non slot false false QDBusReply [0xc8217e7520] } +&{registerService QDBusConnectionInterface::registerService commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnectioninterface.h non slot false false QDBusReply [0xc8217e76a0 0xc8217e7740 0xc8217e7840] } +&{serviceOwner QDBusConnectionInterface::serviceOwner commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnectioninterface.h non slot false false QDBusReply [0xc8217e7a40] } +&{servicePid QDBusConnectionInterface::servicePid commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnectioninterface.h non slot false false QDBusReply [0xc8217e7e60] } +&{serviceRegistered QDBusConnectionInterface::serviceRegistered commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnectioninterface.h non signal false false void [0xc8217c8040] } +&{serviceUid QDBusConnectionInterface::serviceUid commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnectioninterface.h non slot false false QDBusReply [0xc8217c81a0] } +&{serviceUnregistered QDBusConnectionInterface::serviceUnregistered commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnectioninterface.h non signal false false void [0xc8217c8360] } +&{startService QDBusConnectionInterface::startService commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnectioninterface.h non slot false false QDBusReply [0xc8217c84c0] } +&{unregisterService QDBusConnectionInterface::unregisterService commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusconnectioninterface.h non slot false false QDBusReply [0xc8217c8680] } +######################################## ENUMS ######################################## +&{RegisterServiceReply QDBusConnectionInterface::RegisterServiceReply commendable public [0xc8217e6660 0xc8217e6740 0xc8217e6800]} +&{ServiceQueueOptions QDBusConnectionInterface::ServiceQueueOptions commendable public [0xc8217e69c0 0xc8217e6a40 0xc8217e6ae0]} +&{ServiceReplacementOptions QDBusConnectionInterface::ServiceReplacementOptions commendable public [0xc8217e6d00 0xc8217e6dc0]} diff --git a/internal/binding/dump/QtDBus/QDBusContext.txt b/internal/binding/dump/QtDBus/QDBusContext.txt new file mode 100755 index 00000000..392db6a5 --- /dev/null +++ b/internal/binding/dump/QtDBus/QDBusContext.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{QDBusContext QDBusContext::QDBusContext commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuscontext.h non constructor false false [] } +&{calledFromDBus QDBusContext::calledFromDBus commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuscontext.h non plain false false bool [] } +&{connection QDBusContext::connection commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuscontext.h non plain false false QDBusConnection [] } +&{isDelayedReply QDBusContext::isDelayedReply commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuscontext.h non plain false false bool [] } +&{message QDBusContext::message commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuscontext.h non plain false false const QDBusMessage & [] } +&{sendErrorReply QDBusContext::sendErrorReply commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuscontext.h non plain false true 2 void [0xc8217c9180 0xc8217c9240] } +&{sendErrorReply QDBusContext::sendErrorReply commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuscontext.h non plain false false void [0xc8217c9400 0xc8217c9480] } +&{setDelayedReply QDBusContext::setDelayedReply commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuscontext.h non plain false false void [0xc8217c9620] } +&{~QDBusContext QDBusContext::~QDBusContext commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuscontext.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtDBus/QDBusError.txt b/internal/binding/dump/QtDBus/QDBusError.txt new file mode 100755 index 00000000..f4960e0d --- /dev/null +++ b/internal/binding/dump/QtDBus/QDBusError.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{errorString QDBusError::errorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuserror.h non plain true false QString [0xc821781360] } +&{isValid QDBusError::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuserror.h non plain false false bool [] } +&{message QDBusError::message commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuserror.h non plain false false QString [] } +&{name QDBusError::name commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuserror.h non plain false false QString [] } +&{type QDBusError::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuserror.h non plain false false ErrorType [] } +######################################## ENUMS ######################################## +&{ErrorType QDBusError::ErrorType commendable public [0xc8217c9980 0xc8217c9a00 0xc8217c9a80 0xc8217c9b00 0xc8217c9ba0 0xc8217c9c20 0xc8217c9ca0 0xc8217c9d20 0xc8217c9dc0 0xc8217c9e40 0xc8217c9ec0 0xc8217c9f40 0xc8217c9fc0 0xc821780040 0xc8217800c0 0xc821780140 0xc8217801e0 0xc821780260 0xc8217802e0 0xc821780360 0xc8217803e0 0xc821780460 0xc8217804e0 0xc821780560 0xc8217805e0 0xc821780680 0xc821780740 0xc8217807c0]} diff --git a/internal/binding/dump/QtDBus/QDBusInterface.txt b/internal/binding/dump/QtDBus/QDBusInterface.txt new file mode 100755 index 00000000..5151e618 --- /dev/null +++ b/internal/binding/dump/QtDBus/QDBusInterface.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{QDBusInterface QDBusInterface::QDBusInterface commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusinterface.h non constructor false false [0xc821c765c0 0xc821c766a0 0xc821c76800 0xc821c769c0 0xc821c76b60] } +&{~QDBusInterface QDBusInterface::~QDBusInterface commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusinterface.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtDBus/QDBusMessage.txt b/internal/binding/dump/QtDBus/QDBusMessage.txt new file mode 100755 index 00000000..348f4e39 --- /dev/null +++ b/internal/binding/dump/QtDBus/QDBusMessage.txt @@ -0,0 +1,33 @@ +######################################## FUNCTIONS ######################################## +&{createErrorReply QDBusMessage::createErrorReply commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.cpp non plain false true 3 QDBusMessage [0xc821cfa240 0xc821cfa3e0] } +&{QDBusMessage QDBusMessage::QDBusMessage commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non constructor false false [] } +&{QDBusMessage QDBusMessage::QDBusMessage commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non constructor false true 2 [0xc821cfb2e0] } +&{arguments QDBusMessage::arguments commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non plain false false QList [] } +&{autoStartService QDBusMessage::autoStartService commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non plain false false bool [] } +&{createError QDBusMessage::createError commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non plain true true 3 QDBusMessage [0xc821cfbae0 0xc821cfbcc0] } +&{createError QDBusMessage::createError commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non plain true true 2 QDBusMessage [0xc822636040] } +&{createError QDBusMessage::createError commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non plain true false QDBusMessage [0xc8226363a0 0xc822636440] } +&{createErrorReply QDBusMessage::createErrorReply commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non plain false true 2 QDBusMessage [0xc822636760] } +&{createErrorReply QDBusMessage::createErrorReply commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non plain false false QDBusMessage [0xc822636a60 0xc822636b40] } +&{createMethodCall QDBusMessage::createMethodCall commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non plain true false QDBusMessage [0xc822636dc0 0xc822636ea0 0xc822636f20 0xc822637040] } +&{createReply QDBusMessage::createReply commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non plain false false QDBusMessage [0xc822637360] } +&{createReply QDBusMessage::createReply commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non plain false true 2 QDBusMessage [0xc822637680] } +&{createSignal QDBusMessage::createSignal commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non plain true false QDBusMessage [0xc822637960 0xc822637a20 0xc822637b20] } +&{errorMessage QDBusMessage::errorMessage commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non plain false false QString [] } +&{errorName QDBusMessage::errorName commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non plain false false QString [] } +&{interface QDBusMessage::interface commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non plain false false QString [] } +&{isDelayedReply QDBusMessage::isDelayedReply commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non plain false false bool [] } +&{isReplyRequired QDBusMessage::isReplyRequired commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non plain false false bool [] } +&{member QDBusMessage::member commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non plain false false QString [] } +&{operator<< QDBusMessage::operator<< commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non plain false false QDBusMessage & [0xc82257a940] } +&{operator= QDBusMessage::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non plain false false QDBusMessage & [0xc82257ace0] } +&{path QDBusMessage::path commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non plain false false QString [] } +&{service QDBusMessage::service commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non plain false false QString [] } +&{setArguments QDBusMessage::setArguments commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non plain false false void [0xc82257b520] } +&{setAutoStartService QDBusMessage::setAutoStartService commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non plain false false void [0xc82257b8e0] } +&{setDelayedReply QDBusMessage::setDelayedReply commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non plain false false void [0xc82257bba0] } +&{signature QDBusMessage::signature commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non plain false false QString [] } +&{type QDBusMessage::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non plain false false MessageType [] } +&{~QDBusMessage QDBusMessage::~QDBusMessage commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusmessage.h non destructor false false [] } +######################################## ENUMS ######################################## +&{MessageType QDBusMessage::MessageType commendable public [0xc821cfa740 0xc821cfa860 0xc821cfaa20 0xc821cfab40 0xc821cfac80]} diff --git a/internal/binding/dump/QtDBus/QDBusObjectPath.txt b/internal/binding/dump/QtDBus/QDBusObjectPath.txt new file mode 100755 index 00000000..49991bd9 --- /dev/null +++ b/internal/binding/dump/QtDBus/QDBusObjectPath.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{QDBusObjectPath QDBusObjectPath::QDBusObjectPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusextratypes.h non constructor false false [] } +&{QDBusObjectPath QDBusObjectPath::QDBusObjectPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusextratypes.h non constructor false true 3 [0xc821781fc0] } +&{QDBusObjectPath QDBusObjectPath::QDBusObjectPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusextratypes.h non constructor false true 4 [0xc82174c180] } +&{QDBusObjectPath QDBusObjectPath::QDBusObjectPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusextratypes.h non constructor false true 2 [0xc82174c360] } +&{path QDBusObjectPath::path commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusextratypes.h non plain false false QString [] } +&{setPath QDBusObjectPath::setPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusextratypes.h non plain false false void [0xc82174c660] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtDBus/QDBusPendingCall.txt b/internal/binding/dump/QtDBus/QDBusPendingCall.txt new file mode 100755 index 00000000..ef6e119e --- /dev/null +++ b/internal/binding/dump/QtDBus/QDBusPendingCall.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{QDBusPendingCall QDBusPendingCall::QDBusPendingCall commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingcall.h non constructor false false [0xc82217c460] } +&{fromCompletedCall QDBusPendingCall::fromCompletedCall commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingcall.h non plain true false QDBusPendingCall [0xc82217c8e0] } +&{fromError QDBusPendingCall::fromError commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingcall.h non plain true false QDBusPendingCall [0xc82217cba0] } +&{operator= QDBusPendingCall::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingcall.h non plain false false QDBusPendingCall & [0xc82217cec0] } +&{swap QDBusPendingCall::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingcall.h non plain false false void [0xc82217d1c0] } +&{~QDBusPendingCall QDBusPendingCall::~QDBusPendingCall commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingcall.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtDBus/QDBusPendingCallWatcher.txt b/internal/binding/dump/QtDBus/QDBusPendingCallWatcher.txt new file mode 100755 index 00000000..38c93b7e --- /dev/null +++ b/internal/binding/dump/QtDBus/QDBusPendingCallWatcher.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{waitForFinished QDBusPendingCallWatcher::waitForFinished commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingcall.cpp non plain false false void [] } +&{QDBusPendingCallWatcher QDBusPendingCallWatcher::QDBusPendingCallWatcher commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingcall.h non constructor false false [0xc82217d960 0xc82217da20] } +&{finished QDBusPendingCallWatcher::finished commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingcall.h non signal false false void [0xc82217dda0] } +&{isFinished QDBusPendingCallWatcher::isFinished commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingcall.h non plain false false bool [] } +&{~QDBusPendingCallWatcher QDBusPendingCallWatcher::~QDBusPendingCallWatcher commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingcall.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtDBus/QDBusPendingReply.txt b/internal/binding/dump/QtDBus/QDBusPendingReply.txt new file mode 100755 index 00000000..f2c5a159 --- /dev/null +++ b/internal/binding/dump/QtDBus/QDBusPendingReply.txt @@ -0,0 +1,20 @@ +######################################## FUNCTIONS ######################################## +&{QDBusPendingReply QDBusPendingReply::QDBusPendingReply commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingreply.h non constructor false true 3 [0xc822298520] } +&{QDBusPendingReply QDBusPendingReply::QDBusPendingReply commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingreply.h non constructor false false [] } +&{QDBusPendingReply QDBusPendingReply::QDBusPendingReply commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingreply.h non constructor false true 4 [0xc822299120] } +&{QDBusPendingReply QDBusPendingReply::QDBusPendingReply commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingreply.h non constructor false true 2 [0xc8222993e0] } +&{argumentAt QDBusPendingReply::argumentAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingreply.h non plain false false QVariant [0xc822299680] } +&{argumentAt QDBusPendingReply::argumentAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingreply.h non plain false true 2 Type [] } +&{count QDBusPendingReply::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingreply.h non plain false false int [] } +&{error QDBusPendingReply::error commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingreply.h non plain false false QDBusError [] } +&{isError QDBusPendingReply::isError commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingreply.h non plain false false bool [] } +&{isFinished QDBusPendingReply::isFinished commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingreply.h non plain false false bool [] } +&{isValid QDBusPendingReply::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingreply.h non plain false false bool [] } +&{operator T1 QDBusPendingReply::operator T1 commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingreply.h non plain false false [] } +&{operator= QDBusPendingReply::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingreply.h non plain false true 3 QDBusPendingReply & [0xc821ff01e0] } +&{operator= QDBusPendingReply::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingreply.h non plain false true 2 QDBusPendingReply & [0xc821ff0520] } +&{operator= QDBusPendingReply::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingreply.h non plain false false QDBusPendingReply & [0xc821ff0840] } +&{reply QDBusPendingReply::reply commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingreply.h non plain false false QDBusMessage [] } +&{value QDBusPendingReply::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingreply.h non plain false false T1 [] } +&{waitForFinished QDBusPendingReply::waitForFinished commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbuspendingreply.h non plain false false void [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtDBus/QDBusReply.txt b/internal/binding/dump/QtDBus/QDBusReply.txt new file mode 100755 index 00000000..339e0cf7 --- /dev/null +++ b/internal/binding/dump/QtDBus/QDBusReply.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QDBusReply QDBusReply::QDBusReply commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusreply.h non constructor false true 4 [0xc821ff1100] } +&{QDBusReply QDBusReply::QDBusReply commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusreply.h non constructor false false [0xc821ff1320] } +&{QDBusReply QDBusReply::QDBusReply commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusreply.h non constructor false true 2 [0xc821ff1580] } +&{QDBusReply QDBusReply::QDBusReply commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusreply.h non constructor false true 3 [0xc821ff17c0] } +&{error QDBusReply::error commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusreply.h non plain false true 2 const QDBusError & [] } +&{error QDBusReply::error commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusreply.h non plain false false const QDBusError & [] } +&{isValid QDBusReply::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusreply.h non plain false false bool [] } +&{operator Type QDBusReply::operator Type commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusreply.h non plain false false [] } +&{operator= QDBusReply::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusreply.h non plain false true 3 QDBusReply & [0xc821ff1fa0] } +&{operator= QDBusReply::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusreply.h non plain false false QDBusReply & [0xc8224aa240] } +&{operator= QDBusReply::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusreply.h non plain false true 2 QDBusReply & [0xc8224aa520] } +&{operator= QDBusReply::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusreply.h non plain false true 4 QDBusReply & [0xc8224aa7a0] } +&{value QDBusReply::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusreply.h non plain false false Type [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtDBus/QDBusServer.txt b/internal/binding/dump/QtDBus/QDBusServer.txt new file mode 100755 index 00000000..47b6aa94 --- /dev/null +++ b/internal/binding/dump/QtDBus/QDBusServer.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{QDBusServer QDBusServer::QDBusServer commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusserver.h non constructor false true 2 [0xc8224aad00] } +&{QDBusServer QDBusServer::QDBusServer commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusserver.h non constructor false false [0xc8224aaf20 0xc8224aafc0] } +&{address QDBusServer::address commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusserver.h non plain false false QString [] } +&{isAnonymousAuthenticationAllowed QDBusServer::isAnonymousAuthenticationAllowed commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusserver.h non plain false false bool [] } +&{isConnected QDBusServer::isConnected commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusserver.h non plain false false bool [] } +&{lastError QDBusServer::lastError commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusserver.h non plain false false QDBusError [] } +&{newConnection QDBusServer::newConnection commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusserver.h non signal false false void [0xc8224ab720] } +&{setAnonymousAuthenticationAllowed QDBusServer::setAnonymousAuthenticationAllowed commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusserver.h non plain false false void [0xc8224ab900] } +&{~QDBusServer QDBusServer::~QDBusServer commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusserver.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtDBus/QDBusServiceWatcher.txt b/internal/binding/dump/QtDBus/QDBusServiceWatcher.txt new file mode 100755 index 00000000..26da7a35 --- /dev/null +++ b/internal/binding/dump/QtDBus/QDBusServiceWatcher.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{setWatchMode QDBusServiceWatcher::setWatchMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusservicewatcher.cpp non plain false false void [0xc8224abe20] } +&{watchMode QDBusServiceWatcher::watchMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusservicewatcher.cpp non plain false false WatchMode [] } +&{QDBusServiceWatcher QDBusServiceWatcher::QDBusServiceWatcher commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusservicewatcher.h non constructor false false [0xc822718a60] } +&{QDBusServiceWatcher QDBusServiceWatcher::QDBusServiceWatcher commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusservicewatcher.h non constructor false true 2 [0xc822718d40 0xc822718e20 0xc822718f40 0xc822718fe0] } +&{addWatchedService QDBusServiceWatcher::addWatchedService commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusservicewatcher.h non plain false false void [0xc822719580] } +&{connection QDBusServiceWatcher::connection commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusservicewatcher.h non plain false false QDBusConnection [] } +&{removeWatchedService QDBusServiceWatcher::removeWatchedService commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusservicewatcher.h non plain false false bool [0xc8227199c0] } +&{serviceOwnerChanged QDBusServiceWatcher::serviceOwnerChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusservicewatcher.h non signal false false void [0xc822719d00 0xc822719d80 0xc822719e60] } +&{serviceRegistered QDBusServiceWatcher::serviceRegistered commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusservicewatcher.h non signal false false void [0xc822a040a0] } +&{serviceUnregistered QDBusServiceWatcher::serviceUnregistered commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusservicewatcher.h non signal false false void [0xc822a042e0] } +&{setConnection QDBusServiceWatcher::setConnection commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusservicewatcher.h non plain false false void [0xc822a04500] } +&{setWatchedServices QDBusServiceWatcher::setWatchedServices commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusservicewatcher.h non plain false false void [0xc822a047c0] } +&{watchedServices QDBusServiceWatcher::watchedServices commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusservicewatcher.h non plain false false QStringList [] } +&{~QDBusServiceWatcher QDBusServiceWatcher::~QDBusServiceWatcher commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusservicewatcher.h non destructor false false [] } +######################################## ENUMS ######################################## +&{WatchModeFlag QDBusServiceWatcher::WatchModeFlag commendable public QDBusServiceWatcher::WatchMode [0xc822718300 0xc822718480 0xc8227185c0]} diff --git a/internal/binding/dump/QtDBus/QDBusSignature.txt b/internal/binding/dump/QtDBus/QDBusSignature.txt new file mode 100755 index 00000000..9a5a0322 --- /dev/null +++ b/internal/binding/dump/QtDBus/QDBusSignature.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{QDBusSignature QDBusSignature::QDBusSignature commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusextratypes.h non constructor false false [] } +&{QDBusSignature QDBusSignature::QDBusSignature commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusextratypes.h non constructor false true 3 [0xc82174cb20] } +&{QDBusSignature QDBusSignature::QDBusSignature commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusextratypes.h non constructor false true 4 [0xc82174cce0] } +&{QDBusSignature QDBusSignature::QDBusSignature commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusextratypes.h non constructor false true 2 [0xc82174cec0] } +&{setSignature QDBusSignature::setSignature commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusextratypes.h non plain false false void [0xc82174d0a0] } +&{signature QDBusSignature::signature commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusextratypes.h non plain false false QString [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtDBus/QDBusUnixFileDescriptor.txt b/internal/binding/dump/QtDBus/QDBusUnixFileDescriptor.txt new file mode 100755 index 00000000..6a42626f --- /dev/null +++ b/internal/binding/dump/QtDBus/QDBusUnixFileDescriptor.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QDBusUnixFileDescriptor QDBusUnixFileDescriptor::QDBusUnixFileDescriptor commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusunixfiledescriptor.h non constructor false false [] } +&{QDBusUnixFileDescriptor QDBusUnixFileDescriptor::QDBusUnixFileDescriptor commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusunixfiledescriptor.h non constructor false true 3 [0xc822a05500] } +&{QDBusUnixFileDescriptor QDBusUnixFileDescriptor::QDBusUnixFileDescriptor commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusunixfiledescriptor.h non constructor false true 2 [0xc822a057a0] } +&{fileDescriptor QDBusUnixFileDescriptor::fileDescriptor commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusunixfiledescriptor.h non plain false false int [] } +&{isSupported QDBusUnixFileDescriptor::isSupported commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusunixfiledescriptor.h non plain true false bool [] } +&{isValid QDBusUnixFileDescriptor::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusunixfiledescriptor.h non plain false false bool [] } +&{operator= QDBusUnixFileDescriptor::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusunixfiledescriptor.h non plain false true 2 QDBusUnixFileDescriptor & [0xc822a05f20] } +&{operator= QDBusUnixFileDescriptor::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusunixfiledescriptor.h non plain false false QDBusUnixFileDescriptor & [0xc82227a220] } +&{setFileDescriptor QDBusUnixFileDescriptor::setFileDescriptor commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusunixfiledescriptor.h non plain false false void [0xc82227a4a0] } +&{swap QDBusUnixFileDescriptor::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusunixfiledescriptor.h non plain false false void [0xc82227a720] } +&{~QDBusUnixFileDescriptor QDBusUnixFileDescriptor::~QDBusUnixFileDescriptor commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusunixfiledescriptor.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtDBus/QDBusVariant.txt b/internal/binding/dump/QtDBus/QDBusVariant.txt new file mode 100755 index 00000000..699cd34f --- /dev/null +++ b/internal/binding/dump/QtDBus/QDBusVariant.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QDBusVariant QDBusVariant::QDBusVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusextratypes.h non constructor false false [] } +&{QDBusVariant QDBusVariant::QDBusVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusextratypes.h non constructor false true 2 [0xc82174d5a0] } +&{setVariant QDBusVariant::setVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusextratypes.h non plain false false void [0xc82174d780] } +&{variant QDBusVariant::variant commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusextratypes.h non plain false false QVariant [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtDBus/QDBusVirtualObject.txt b/internal/binding/dump/QtDBus/QDBusVirtualObject.txt new file mode 100755 index 00000000..98845edc --- /dev/null +++ b/internal/binding/dump/QtDBus/QDBusVirtualObject.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QDBusVirtualObject QDBusVirtualObject::QDBusVirtualObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusvirtualobject.h non constructor false false [0xc82227aec0] } +&{handleMessage QDBusVirtualObject::handleMessage commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusvirtualobject.h pure plain false false bool [0xc82227b0a0 0xc82227b1c0] } +&{introspect QDBusVirtualObject::introspect commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusvirtualobject.h pure plain false false QString [0xc822a28100] } +&{~QDBusVirtualObject QDBusVirtualObject::~QDBusVirtualObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/dbus/qdbusvirtualobject.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QAbstractOpenGLFunctions.txt b/internal/binding/dump/QtGui/QAbstractOpenGLFunctions.txt new file mode 100755 index 00000000..8dbb1ee4 --- /dev/null +++ b/internal/binding/dump/QtGui/QAbstractOpenGLFunctions.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{QAbstractOpenGLFunctions QAbstractOpenGLFunctions::QAbstractOpenGLFunctions commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglversionfunctions.h non constructor false false [] } +&{~QAbstractOpenGLFunctions QAbstractOpenGLFunctions::~QAbstractOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglversionfunctions.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QAbstractTextDocumentLayout.txt b/internal/binding/dump/QtGui/QAbstractTextDocumentLayout.txt new file mode 100755 index 00000000..d8ecf425 --- /dev/null +++ b/internal/binding/dump/QtGui/QAbstractTextDocumentLayout.txt @@ -0,0 +1,25 @@ +######################################## FUNCTIONS ######################################## +&{anchorAt QAbstractTextDocumentLayout::anchorAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qabstracttextdocumentlayout.cpp non plain false false QString [0xc8231148e0] } +&{drawInlineObject QAbstractTextDocumentLayout::drawInlineObject commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qabstracttextdocumentlayout.cpp impure plain false false void [0xc823114a40 0xc823114ac0 0xc823114b60 0xc823114c20 0xc823114ce0] } +&{format QAbstractTextDocumentLayout::format commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qabstracttextdocumentlayout.cpp non plain false false QTextCharFormat [0xc823114e80] } +&{QAbstractTextDocumentLayout QAbstractTextDocumentLayout::QAbstractTextDocumentLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qabstracttextdocumentlayout.h non constructor false false [0xc823115560] } +&{blockBoundingRect QAbstractTextDocumentLayout::blockBoundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qabstracttextdocumentlayout.h pure plain false false QRectF [0xc823115b20] } +&{document QAbstractTextDocumentLayout::document commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qabstracttextdocumentlayout.h non plain false false QTextDocument * [] } +&{documentChanged QAbstractTextDocumentLayout::documentChanged commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qabstracttextdocumentlayout.h pure plain false false void [0xc823115d80 0xc823115e00 0xc823115e80] } +&{documentSize QAbstractTextDocumentLayout::documentSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qabstracttextdocumentlayout.h pure plain false false QSizeF [] } +&{documentSizeChanged QAbstractTextDocumentLayout::documentSizeChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qabstracttextdocumentlayout.h non signal false false void [0xc82312a0e0] } +&{draw QAbstractTextDocumentLayout::draw commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qabstracttextdocumentlayout.h pure plain false false void [0xc82312a240 0xc82312a2e0] } +&{frameBoundingRect QAbstractTextDocumentLayout::frameBoundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qabstracttextdocumentlayout.h pure plain false false QRectF [0xc82312a660] } +&{handlerForObject QAbstractTextDocumentLayout::handlerForObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qabstracttextdocumentlayout.h non plain false false QTextObjectInterface * [0xc82312a820] } +&{hitTest QAbstractTextDocumentLayout::hitTest commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qabstracttextdocumentlayout.h pure plain false false int [0xc82312a980 0xc82312aa20] } +&{pageCount QAbstractTextDocumentLayout::pageCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qabstracttextdocumentlayout.h pure plain false false int [] } +&{pageCountChanged QAbstractTextDocumentLayout::pageCountChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qabstracttextdocumentlayout.h non signal false false void [0xc82312ac80] } +&{paintDevice QAbstractTextDocumentLayout::paintDevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qabstracttextdocumentlayout.h non plain false false QPaintDevice * [] } +&{positionInlineObject QAbstractTextDocumentLayout::positionInlineObject commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qabstracttextdocumentlayout.h impure plain false false void [0xc82312aee0 0xc82312afa0 0xc82312b040] } +&{registerHandler QAbstractTextDocumentLayout::registerHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qabstracttextdocumentlayout.h non plain false false void [0xc82312b1e0 0xc82312b260] } +&{resizeInlineObject QAbstractTextDocumentLayout::resizeInlineObject commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qabstracttextdocumentlayout.h impure plain false false void [0xc82312b440 0xc82312b500 0xc82312b5a0] } +&{setPaintDevice QAbstractTextDocumentLayout::setPaintDevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qabstracttextdocumentlayout.h non plain false false void [0xc82312b740] } +&{unregisterHandler QAbstractTextDocumentLayout::unregisterHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qabstracttextdocumentlayout.h non plain false false void [0xc82312b900 0xc82312b980] } +&{update QAbstractTextDocumentLayout::update commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qabstracttextdocumentlayout.h non signal false false void [0xc82312bb00] } +&{updateBlock QAbstractTextDocumentLayout::updateBlock commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qabstracttextdocumentlayout.h non signal false false void [0xc82312bc80] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QAccessible.txt b/internal/binding/dump/QtGui/QAccessible.txt new file mode 100755 index 00000000..052bf709 --- /dev/null +++ b/internal/binding/dump/QtGui/QAccessible.txt @@ -0,0 +1,18 @@ +######################################## FUNCTIONS ######################################## +&{accessibleInterface QAccessible::accessibleInterface commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain true false QAccessibleInterface * [0xc820d37dc0] } +&{deleteAccessibleInterface QAccessible::deleteAccessibleInterface commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain true false void [0xc820d24660] } +&{installFactory QAccessible::installFactory commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain true false void [0xc820d251e0] } +&{isActive QAccessible::isActive commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain true false bool [] } +&{queryAccessibleInterface QAccessible::queryAccessibleInterface commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain true false QAccessibleInterface * [0xc820d25c80] } +&{registerAccessibleInterface QAccessible::registerAccessibleInterface commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain true false Id [0xc820d25ee0] } +&{removeFactory QAccessible::removeFactory commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain true false void [0xc820d0a120] } +&{setRootObject QAccessible::setRootObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain true false void [0xc820d0a380] } +&{uniqueId QAccessible::uniqueId commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain true false Id [0xc820d0a640] } +&{updateAccessibility QAccessible::updateAccessibility commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain true false void [0xc820d0aa60] } +######################################## ENUMS ######################################## +&{Event QAccessible::Event commendable public [0xc820d933a0 0xc820d93420 0xc820d934c0 0xc820d93580 0xc820d93620 0xc820d936a0 0xc820d93720 0xc820d937a0 0xc820d93840 0xc820d938c0 0xc820d93940 0xc820d939c0 0xc820d93a40 0xc820d93ac0 0xc820d93b40 0xc820d93bc0 0xc820d93c60 0xc820d93d00 0xc820d93dc0 0xc820d93e60 0xc820d93f40 0xc820d82060 0xc820d82120 0xc820d82220 0xc820d82300 0xc820d82440 0xc820d82520 0xc820d82680 0xc820d827c0 0xc820d828a0 0xc820d82940 0xc820d82a20 0xc820d82b60 0xc820d82be0 0xc820d82ca0 0xc820d82d80 0xc820d82e60 0xc820d82f40 0xc820d83080 0xc820d83160 0xc820d832a0 0xc820d833c0 0xc820d834a0 0xc820d83540 0xc820d83660 0xc820d836e0 0xc820d83760 0xc820d83800 0xc820d838e0 0xc820d839a0 0xc820d83a20 0xc820d83aa0 0xc820d83b20 0xc820d83ba0 0xc820d83c20 0xc820d83ca0 0xc820d83d20 0xc820d83da0 0xc820d83e20 0xc820d83ea0 0xc820d83f20 0xc820d83fa0 0xc820d62080 0xc820d62140 0xc820d62240 0xc820d622e0 0xc820d62380 0xc820d62460 0xc820d62560]} +&{InterfaceType QAccessible::InterfaceType commendable public [0xc820d62700 0xc820d627a0 0xc820d62860 0xc820d628e0 0xc820d629c0 0xc820d62a40 0xc820d62b20]} +&{RelationFlag QAccessible::RelationFlag commendable public QAccessible::Relation [0xc820d62de0 0xc820d62ea0 0xc820d62f20 0xc820d62fc0 0xc820d630a0]} +&{Role QAccessible::Role commendable public [0xc820d63280 0xc820d63340 0xc820d633e0 0xc820d63460 0xc820d63540 0xc820d635e0 0xc820d63660 0xc820d63720 0xc820d637c0 0xc820d63880 0xc820d63920 0xc820d639e0 0xc820d63a60 0xc820d63ae0 0xc820d63bc0 0xc820d63c80 0xc820d63d60 0xc820d63e40 0xc820d63f40 0xc820d50000 0xc820d500a0 0xc820d50180 0xc820d50200 0xc820d50280 0xc820d503a0 0xc820d50420 0xc820d504c0 0xc820d505a0 0xc820d50620 0xc820d50760 0xc820d50800 0xc820d50880 0xc820d509e0 0xc820d50ac0 0xc820d50ba0 0xc820d50c20 0xc820d50ce0 0xc820d50de0 0xc820d50e80 0xc820d50f80 0xc820d51000 0xc820d51080 0xc820d51160 0xc820d511e0 0xc820d51260 0xc820d51300 0xc820d51420 0xc820d514c0 0xc820d51540 0xc820d515c0 0xc820d51640 0xc820d516c0 0xc820d51740 0xc820d517e0 0xc820d518c0 0xc820d51940 0xc820d519e0 0xc820d51ac0 0xc820d51b40 0xc820d51bc0 0xc820d51ca0 0xc820d51d20 0xc820d51da0 0xc820d51e80 0xc820d51f20 0xc820d51fc0 0xc820d36080 0xc820d36120 0xc820d36200 0xc820d362e0 0xc820d363a0 0xc820d36460 0xc820d36540 0xc820d36600 0xc820d36760]} +&{Text QAccessible::Text commendable public [0xc820d36a80 0xc820d36b20 0xc820d36bc0 0xc820d36c80 0xc820d36d80 0xc820d36e40 0xc820d36f20]} +&{TextBoundaryType QAccessible::TextBoundaryType commendable public [0xc820d37180 0xc820d37260 0xc820d37300 0xc820d373e0 0xc820d37540 0xc820d37620]} diff --git a/internal/binding/dump/QtGui/QAccessibleActionInterface.txt b/internal/binding/dump/QtGui/QAccessibleActionInterface.txt new file mode 100755 index 00000000..fb69b5aa --- /dev/null +++ b/internal/binding/dump/QtGui/QAccessibleActionInterface.txt @@ -0,0 +1,20 @@ +######################################## FUNCTIONS ######################################## +&{localizedActionDescription QAccessibleActionInterface::localizedActionDescription commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.cpp impure plain false false QString [0xc820d0b200] } +&{localizedActionName QAccessibleActionInterface::localizedActionName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.cpp impure plain false false QString [0xc820d0b400] } +&{actionNames QAccessibleActionInterface::actionNames commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QStringList [] } +&{decreaseAction QAccessibleActionInterface::decreaseAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain true false const QString & [] } +&{doAction QAccessibleActionInterface::doAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false void [0xc820d0b700] } +&{increaseAction QAccessibleActionInterface::increaseAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain true false const QString & [] } +&{keyBindingsForAction QAccessibleActionInterface::keyBindingsForAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QStringList [0xc820d0b9e0] } +&{nextPageAction QAccessibleActionInterface::nextPageAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain true false QString [] } +&{pressAction QAccessibleActionInterface::pressAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain true false const QString & [] } +&{previousPageAction QAccessibleActionInterface::previousPageAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain true false QString [] } +&{scrollDownAction QAccessibleActionInterface::scrollDownAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain true false QString [] } +&{scrollLeftAction QAccessibleActionInterface::scrollLeftAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain true false QString [] } +&{scrollRightAction QAccessibleActionInterface::scrollRightAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain true false QString [] } +&{scrollUpAction QAccessibleActionInterface::scrollUpAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain true false QString [] } +&{setFocusAction QAccessibleActionInterface::setFocusAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain true false const QString & [] } +&{showMenuAction QAccessibleActionInterface::showMenuAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain true false const QString & [] } +&{toggleAction QAccessibleActionInterface::toggleAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain true false const QString & [] } +&{~QAccessibleActionInterface QAccessibleActionInterface::~QAccessibleActionInterface commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QAccessibleEditableTextInterface.txt b/internal/binding/dump/QtGui/QAccessibleEditableTextInterface.txt new file mode 100755 index 00000000..71727bd9 --- /dev/null +++ b/internal/binding/dump/QtGui/QAccessibleEditableTextInterface.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{deleteText QAccessibleEditableTextInterface::deleteText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false void [0xc820cf4560 0xc820cf4620] } +&{insertText QAccessibleEditableTextInterface::insertText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false void [0xc820cf47a0 0xc820cf4820] } +&{replaceText QAccessibleEditableTextInterface::replaceText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false void [0xc820cf4960 0xc820cf49e0 0xc820cf4a60] } +&{~QAccessibleEditableTextInterface QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QAccessibleEvent.txt b/internal/binding/dump/QtGui/QAccessibleEvent.txt new file mode 100755 index 00000000..f2157240 --- /dev/null +++ b/internal/binding/dump/QtGui/QAccessibleEvent.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{QAccessibleEvent QAccessibleEvent::QAccessibleEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non constructor false true 2 [0xc820cf4d00 0xc820cf4de0] } +&{QAccessibleEvent QAccessibleEvent::QAccessibleEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non constructor false false [0xc820cf4fe0 0xc820cf5100] } +&{accessibleInterface QAccessibleEvent::accessibleInterface commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h impure plain false false QAccessibleInterface * [] } +&{child QAccessibleEvent::child commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false int [] } +&{object QAccessibleEvent::object commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false QObject * [] } +&{setChild QAccessibleEvent::setChild commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false void [0xc820cf5880] } +&{type QAccessibleEvent::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false QAccessible::Event [] } +&{~QAccessibleEvent QAccessibleEvent::~QAccessibleEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QAccessibleInterface.txt b/internal/binding/dump/QtGui/QAccessibleInterface.txt new file mode 100755 index 00000000..499d5ba4 --- /dev/null +++ b/internal/binding/dump/QtGui/QAccessibleInterface.txt @@ -0,0 +1,26 @@ +######################################## FUNCTIONS ######################################## +&{~QAccessibleInterface QAccessibleInterface::~QAccessibleInterface commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.cpp impure destructor false false [] } +&{actionInterface QAccessibleInterface::actionInterface commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false QAccessibleActionInterface * [] } +&{backgroundColor QAccessibleInterface::backgroundColor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h impure plain false false QColor [] } +&{child QAccessibleInterface::child commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QAccessibleInterface * [0xc820cd4800] } +&{childAt QAccessibleInterface::childAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QAccessibleInterface * [0xc820cd4b60 0xc820cd4be0] } +&{childCount QAccessibleInterface::childCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false int [] } +&{focusChild QAccessibleInterface::focusChild commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h impure plain false false QAccessibleInterface * [] } +&{foregroundColor QAccessibleInterface::foregroundColor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h impure plain false false QColor [] } +&{indexOfChild QAccessibleInterface::indexOfChild commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false int [0xc820cd5360] } +&{interface_cast QAccessibleInterface::interface_cast commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h impure plain false false void * [0xc820cd5520] } +&{isValid QAccessibleInterface::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false bool [] } +&{object QAccessibleInterface::object commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QObject * [] } +&{parent QAccessibleInterface::parent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QAccessibleInterface * [] } +&{rect QAccessibleInterface::rect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QRect [] } +&{relations QAccessibleInterface::relations commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h impure plain false false QVector > [0xc820cd5e40] } +&{role QAccessibleInterface::role commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QAccessible::Role [] } +&{setText QAccessibleInterface::setText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false void [0xc820ca02c0 0xc820ca0460] } +&{state QAccessibleInterface::state commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QAccessible::State [] } +&{tableCellInterface QAccessibleInterface::tableCellInterface commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false QAccessibleTableCellInterface * [] } +&{tableInterface QAccessibleInterface::tableInterface commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false QAccessibleTableInterface * [] } +&{text QAccessibleInterface::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QString [0xc820ca0c80] } +&{textInterface QAccessibleInterface::textInterface commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false QAccessibleTextInterface * [] } +&{valueInterface QAccessibleInterface::valueInterface commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false QAccessibleValueInterface * [] } +&{window QAccessibleInterface::window commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h impure plain false false QWindow * [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QAccessibleObject.txt b/internal/binding/dump/QtGui/QAccessibleObject.txt new file mode 100755 index 00000000..59a628d6 --- /dev/null +++ b/internal/binding/dump/QtGui/QAccessibleObject.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QAccessibleObject QAccessibleObject::QAccessibleObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessibleobject.h non constructor false false [0xc820c25e00] } +&{childAt QAccessibleObject::childAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessibleobject.h impure plain false false QAccessibleInterface * [0xc820c16160 0xc820c16220] } +&{isValid QAccessibleObject::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessibleobject.h impure plain false false bool [] } +&{object QAccessibleObject::object commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessibleobject.h impure plain false false QObject * [] } +&{rect QAccessibleObject::rect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessibleobject.h impure plain false false QRect [] } +&{setText QAccessibleObject::setText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessibleobject.h impure plain false false void [0xc820c16ae0 0xc820c16c00] } +&{~QAccessibleObject QAccessibleObject::~QAccessibleObject commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessibleobject.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QAccessiblePlugin.txt b/internal/binding/dump/QtGui/QAccessiblePlugin.txt new file mode 100755 index 00000000..89806675 --- /dev/null +++ b/internal/binding/dump/QtGui/QAccessiblePlugin.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{QAccessiblePlugin QAccessiblePlugin::QAccessiblePlugin commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessibleplugin.h non constructor false false [0xc820c17200] } +&{create QAccessiblePlugin::create commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessibleplugin.h pure plain false false QAccessibleInterface * [0xc820c17500 0xc820c175a0] } +&{~QAccessiblePlugin QAccessiblePlugin::~QAccessiblePlugin commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessibleplugin.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QAccessibleStateChangeEvent.txt b/internal/binding/dump/QtGui/QAccessibleStateChangeEvent.txt new file mode 100755 index 00000000..ff8b1536 --- /dev/null +++ b/internal/binding/dump/QtGui/QAccessibleStateChangeEvent.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{QAccessibleStateChangeEvent QAccessibleStateChangeEvent::QAccessibleStateChangeEvent commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non constructor false true 2 [0xc820ca16a0 0xc820ca17c0] } +&{QAccessibleStateChangeEvent QAccessibleStateChangeEvent::QAccessibleStateChangeEvent commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non constructor false false [0xc820ca19e0 0xc820ca1a80] } +&{changedStates QAccessibleStateChangeEvent::changedStates commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false QAccessible::State [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QAccessibleTableCellInterface.txt b/internal/binding/dump/QtGui/QAccessibleTableCellInterface.txt new file mode 100755 index 00000000..03121eb1 --- /dev/null +++ b/internal/binding/dump/QtGui/QAccessibleTableCellInterface.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{columnExtent QAccessibleTableCellInterface::columnExtent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false int [] } +&{columnHeaderCells QAccessibleTableCellInterface::columnHeaderCells commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QList [] } +&{columnIndex QAccessibleTableCellInterface::columnIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false int [] } +&{isSelected QAccessibleTableCellInterface::isSelected commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false bool [] } +&{rowExtent QAccessibleTableCellInterface::rowExtent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false int [] } +&{rowHeaderCells QAccessibleTableCellInterface::rowHeaderCells commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QList [] } +&{rowIndex QAccessibleTableCellInterface::rowIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false int [] } +&{table QAccessibleTableCellInterface::table commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QAccessibleInterface * [] } +&{~QAccessibleTableCellInterface QAccessibleTableCellInterface::~QAccessibleTableCellInterface commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QAccessibleTableInterface.txt b/internal/binding/dump/QtGui/QAccessibleTableInterface.txt new file mode 100755 index 00000000..7a14b7c4 --- /dev/null +++ b/internal/binding/dump/QtGui/QAccessibleTableInterface.txt @@ -0,0 +1,23 @@ +######################################## FUNCTIONS ######################################## +&{caption QAccessibleTableInterface::caption commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QAccessibleInterface * [] } +&{cellAt QAccessibleTableInterface::cellAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QAccessibleInterface * [0xc820c8cba0 0xc820c8cc80] } +&{columnCount QAccessibleTableInterface::columnCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false int [] } +&{columnDescription QAccessibleTableInterface::columnDescription commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QString [0xc820c8d000] } +&{isColumnSelected QAccessibleTableInterface::isColumnSelected commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false bool [0xc820c8d260] } +&{isRowSelected QAccessibleTableInterface::isRowSelected commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false bool [0xc820c8d4c0] } +&{modelChange QAccessibleTableInterface::modelChange commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false void [0xc820c8d700] } +&{rowCount QAccessibleTableInterface::rowCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false int [] } +&{rowDescription QAccessibleTableInterface::rowDescription commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QString [0xc820c8d960] } +&{selectColumn QAccessibleTableInterface::selectColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false bool [0xc820c8db40] } +&{selectRow QAccessibleTableInterface::selectRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false bool [0xc820c8dda0] } +&{selectedCellCount QAccessibleTableInterface::selectedCellCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false int [] } +&{selectedCells QAccessibleTableInterface::selectedCells commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QList [] } +&{selectedColumnCount QAccessibleTableInterface::selectedColumnCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false int [] } +&{selectedColumns QAccessibleTableInterface::selectedColumns commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QList [] } +&{selectedRowCount QAccessibleTableInterface::selectedRowCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false int [] } +&{selectedRows QAccessibleTableInterface::selectedRows commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QList [] } +&{summary QAccessibleTableInterface::summary commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QAccessibleInterface * [] } +&{unselectColumn QAccessibleTableInterface::unselectColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false bool [0xc820c766a0] } +&{unselectRow QAccessibleTableInterface::unselectRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false bool [0xc820c768e0] } +&{~QAccessibleTableInterface QAccessibleTableInterface::~QAccessibleTableInterface commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QAccessibleTableModelChangeEvent.txt b/internal/binding/dump/QtGui/QAccessibleTableModelChangeEvent.txt new file mode 100755 index 00000000..69082685 --- /dev/null +++ b/internal/binding/dump/QtGui/QAccessibleTableModelChangeEvent.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QAccessibleTableModelChangeEvent QAccessibleTableModelChangeEvent::QAccessibleTableModelChangeEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non constructor false true 2 [0xc820c77640 0xc820c77760] } +&{QAccessibleTableModelChangeEvent QAccessibleTableModelChangeEvent::QAccessibleTableModelChangeEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non constructor false false [0xc820c779c0 0xc820c77b20] } +&{firstColumn QAccessibleTableModelChangeEvent::firstColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false int [] } +&{firstRow QAccessibleTableModelChangeEvent::firstRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false int [] } +&{lastColumn QAccessibleTableModelChangeEvent::lastColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false int [] } +&{lastRow QAccessibleTableModelChangeEvent::lastRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false int [] } +&{modelChangeType QAccessibleTableModelChangeEvent::modelChangeType commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false ModelChangeType [] } +&{setFirstColumn QAccessibleTableModelChangeEvent::setFirstColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false void [0xc820c62120] } +&{setFirstRow QAccessibleTableModelChangeEvent::setFirstRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false void [0xc820c623a0] } +&{setLastColumn QAccessibleTableModelChangeEvent::setLastColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false void [0xc820c625a0] } +&{setLastRow QAccessibleTableModelChangeEvent::setLastRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false void [0xc820c62800] } +&{setModelChangeType QAccessibleTableModelChangeEvent::setModelChangeType commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false void [0xc820c62ae0] } +######################################## ENUMS ######################################## +&{ModelChangeType QAccessibleTableModelChangeEvent::ModelChangeType commendable public [0xc820c76e60 0xc820c76fa0 0xc820c770a0 0xc820c77140 0xc820c77260 0xc820c772e0]} diff --git a/internal/binding/dump/QtGui/QAccessibleTextCursorEvent.txt b/internal/binding/dump/QtGui/QAccessibleTextCursorEvent.txt new file mode 100755 index 00000000..13c4184f --- /dev/null +++ b/internal/binding/dump/QtGui/QAccessibleTextCursorEvent.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QAccessibleTextCursorEvent QAccessibleTextCursorEvent::QAccessibleTextCursorEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non constructor false true 2 [0xc820c632a0 0xc820c63400] } +&{QAccessibleTextCursorEvent QAccessibleTextCursorEvent::QAccessibleTextCursorEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non constructor false false [0xc820c636a0 0xc820c63780] } +&{cursorPosition QAccessibleTextCursorEvent::cursorPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false int [] } +&{setCursorPosition QAccessibleTextCursorEvent::setCursorPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false void [0xc820c63a80] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QAccessibleTextInsertEvent.txt b/internal/binding/dump/QtGui/QAccessibleTextInsertEvent.txt new file mode 100755 index 00000000..e596c204 --- /dev/null +++ b/internal/binding/dump/QtGui/QAccessibleTextInsertEvent.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QAccessibleTextInsertEvent QAccessibleTextInsertEvent::QAccessibleTextInsertEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non constructor false true 2 [0xc820c48080 0xc820c481a0 0xc820c48260] } +&{QAccessibleTextInsertEvent QAccessibleTextInsertEvent::QAccessibleTextInsertEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non constructor false false [0xc820c48500 0xc820c48580 0xc820c48680] } +&{changePosition QAccessibleTextInsertEvent::changePosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false int [] } +&{textInserted QAccessibleTextInsertEvent::textInserted commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false QString [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QAccessibleTextInterface.txt b/internal/binding/dump/QtGui/QAccessibleTextInterface.txt new file mode 100755 index 00000000..413873f5 --- /dev/null +++ b/internal/binding/dump/QtGui/QAccessibleTextInterface.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{addSelection QAccessibleTextInterface::addSelection commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false void [0xc820c48c40 0xc820c48d60] } +&{attributes QAccessibleTextInterface::attributes commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QString [0xc820c48f40 0xc820c49000 0xc820c490e0] } +&{characterCount QAccessibleTextInterface::characterCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false int [] } +&{characterRect QAccessibleTextInterface::characterRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QRect [0xc820c49360] } +&{cursorPosition QAccessibleTextInterface::cursorPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false int [] } +&{offsetAtPoint QAccessibleTextInterface::offsetAtPoint commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false int [0xc820c495a0] } +&{removeSelection QAccessibleTextInterface::removeSelection commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false void [0xc820c49740] } +&{scrollToSubstring QAccessibleTextInterface::scrollToSubstring commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false void [0xc820c49980 0xc820c49a40] } +&{selection QAccessibleTextInterface::selection commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false void [0xc820c49c80 0xc820c49d00 0xc820c49e00] } +&{selectionCount QAccessibleTextInterface::selectionCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false int [] } +&{setCursorPosition QAccessibleTextInterface::setCursorPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false void [0xc820c34160] } +&{setSelection QAccessibleTextInterface::setSelection commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false void [0xc820c343c0 0xc820c34460 0xc820c34540] } +&{text QAccessibleTextInterface::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QString [0xc820c347a0 0xc820c34880] } +&{textAfterOffset QAccessibleTextInterface::textAfterOffset commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h impure plain false false QString [0xc820c34aa0 0xc820c34b80 0xc820c34c80 0xc820c34d00] } +&{textAtOffset QAccessibleTextInterface::textAtOffset commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h impure plain false false QString [0xc820c34e40 0xc820c34f40 0xc820c35020 0xc820c35120] } +&{textBeforeOffset QAccessibleTextInterface::textBeforeOffset commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h impure plain false false QString [0xc820c352a0 0xc820c353c0 0xc820c35500 0xc820c35580] } +&{~QAccessibleTextInterface QAccessibleTextInterface::~QAccessibleTextInterface commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QAccessibleTextRemoveEvent.txt b/internal/binding/dump/QtGui/QAccessibleTextRemoveEvent.txt new file mode 100755 index 00000000..ac7f384d --- /dev/null +++ b/internal/binding/dump/QtGui/QAccessibleTextRemoveEvent.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QAccessibleTextRemoveEvent QAccessibleTextRemoveEvent::QAccessibleTextRemoveEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non constructor false true 2 [0xc820c35b20 0xc820c35be0 0xc820c35cc0] } +&{QAccessibleTextRemoveEvent QAccessibleTextRemoveEvent::QAccessibleTextRemoveEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non constructor false false [0xc820c35ee0 0xc820c35f80 0xc820c2c020] } +&{changePosition QAccessibleTextRemoveEvent::changePosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false int [] } +&{textRemoved QAccessibleTextRemoveEvent::textRemoved commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false QString [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QAccessibleTextSelectionEvent.txt b/internal/binding/dump/QtGui/QAccessibleTextSelectionEvent.txt new file mode 100755 index 00000000..f07d4e25 --- /dev/null +++ b/internal/binding/dump/QtGui/QAccessibleTextSelectionEvent.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{QAccessibleTextSelectionEvent QAccessibleTextSelectionEvent::QAccessibleTextSelectionEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non constructor false true 2 [0xc820c2c700 0xc820c2c820 0xc820c2c8e0] } +&{QAccessibleTextSelectionEvent QAccessibleTextSelectionEvent::QAccessibleTextSelectionEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non constructor false false [0xc820c2cb00 0xc820c2cbc0 0xc820c2cc60] } +&{selectionEnd QAccessibleTextSelectionEvent::selectionEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false int [] } +&{selectionStart QAccessibleTextSelectionEvent::selectionStart commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false int [] } +&{setSelection QAccessibleTextSelectionEvent::setSelection commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false void [0xc820c2d020 0xc820c2d140] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QAccessibleTextUpdateEvent.txt b/internal/binding/dump/QtGui/QAccessibleTextUpdateEvent.txt new file mode 100755 index 00000000..3a1d8dfb --- /dev/null +++ b/internal/binding/dump/QtGui/QAccessibleTextUpdateEvent.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{QAccessibleTextUpdateEvent QAccessibleTextUpdateEvent::QAccessibleTextUpdateEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non constructor false true 2 [0xc820c2d760 0xc820c2d860 0xc820c2d940 0xc820c2d9e0] } +&{QAccessibleTextUpdateEvent QAccessibleTextUpdateEvent::QAccessibleTextUpdateEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non constructor false false [0xc820c2dc60 0xc820c2dd40 0xc820c2dde0 0xc820c2dec0] } +&{changePosition QAccessibleTextUpdateEvent::changePosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false int [] } +&{textInserted QAccessibleTextUpdateEvent::textInserted commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false QString [] } +&{textRemoved QAccessibleTextUpdateEvent::textRemoved commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false QString [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QAccessibleValueChangeEvent.txt b/internal/binding/dump/QtGui/QAccessibleValueChangeEvent.txt new file mode 100755 index 00000000..89d74204 --- /dev/null +++ b/internal/binding/dump/QtGui/QAccessibleValueChangeEvent.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QAccessibleValueChangeEvent QAccessibleValueChangeEvent::QAccessibleValueChangeEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non constructor false true 2 [0xc820c247e0 0xc820c248e0] } +&{QAccessibleValueChangeEvent QAccessibleValueChangeEvent::QAccessibleValueChangeEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non constructor false false [0xc820c24b00 0xc820c24ba0] } +&{setValue QAccessibleValueChangeEvent::setValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false void [0xc820c24d80] } +&{value QAccessibleValueChangeEvent::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h non plain false false QVariant [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QAccessibleValueInterface.txt b/internal/binding/dump/QtGui/QAccessibleValueInterface.txt new file mode 100755 index 00000000..533240a6 --- /dev/null +++ b/internal/binding/dump/QtGui/QAccessibleValueInterface.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{currentValue QAccessibleValueInterface::currentValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QVariant [] } +&{maximumValue QAccessibleValueInterface::maximumValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QVariant [] } +&{minimumStepSize QAccessibleValueInterface::minimumStepSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QVariant [] } +&{minimumValue QAccessibleValueInterface::minimumValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false QVariant [] } +&{setCurrentValue QAccessibleValueInterface::setCurrentValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h pure plain false false void [0xc820c256a0] } +&{~QAccessibleValueInterface QAccessibleValueInterface::~QAccessibleValueInterface commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/accessible/qaccessible.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QActionEvent.txt b/internal/binding/dump/QtGui/QActionEvent.txt new file mode 100755 index 00000000..c682b887 --- /dev/null +++ b/internal/binding/dump/QtGui/QActionEvent.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{QActionEvent QActionEvent::QActionEvent commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [0xc820909820 0xc8209098e0 0xc820909960] } +&{action QActionEvent::action commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QAction * [] } +&{before QActionEvent::before commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QAction * [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QBackingStore.txt b/internal/binding/dump/QtGui/QBackingStore.txt new file mode 100755 index 00000000..df302e95 --- /dev/null +++ b/internal/binding/dump/QtGui/QBackingStore.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{paintDevice QBackingStore::paintDevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbackingstore.cpp non plain false false QPaintDevice * [] } +&{QBackingStore QBackingStore::QBackingStore commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbackingstore.h non constructor false false [0xc8224ea160] } +&{beginPaint QBackingStore::beginPaint commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbackingstore.h non plain false false void [0xc8224ea320] } +&{endPaint QBackingStore::endPaint commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbackingstore.h non plain false false void [] } +&{flush QBackingStore::flush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbackingstore.h non plain false false void [0xc8224ea5e0 0xc8224ea660 0xc8224ea6e0] } +&{handle QBackingStore::handle commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbackingstore.h non plain false false QPlatformBackingStore * [] } +&{hasStaticContents QBackingStore::hasStaticContents commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbackingstore.h non plain false false bool [] } +&{resize QBackingStore::resize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbackingstore.h non plain false false void [0xc8224eab40] } +&{scroll QBackingStore::scroll commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbackingstore.h non plain false false bool [0xc8224ead20 0xc8224eada0 0xc8224eae20] } +&{setStaticContents QBackingStore::setStaticContents commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbackingstore.h non plain false false void [0xc8224eb020] } +&{size QBackingStore::size commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbackingstore.h non plain false false QSize [] } +&{staticContents QBackingStore::staticContents commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbackingstore.h non plain false false QRegion [] } +&{window QBackingStore::window commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbackingstore.h non plain false false QWindow * [] } +&{~QBackingStore QBackingStore::~QBackingStore commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbackingstore.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QBitmap.txt b/internal/binding/dump/QtGui/QBitmap.txt new file mode 100755 index 00000000..3cb007e6 --- /dev/null +++ b/internal/binding/dump/QtGui/QBitmap.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QBitmap QBitmap::QBitmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qbitmap.cpp non constructor false true 3 [0xc820c0c480 0xc820c0c540] } +&{QBitmap QBitmap::QBitmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qbitmap.h non constructor false false [] } +&{QBitmap QBitmap::QBitmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qbitmap.h non constructor false true 2 [0xc820c0c880] } +&{QBitmap QBitmap::QBitmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qbitmap.h non constructor false true 4 [0xc820c0cae0] } +&{QBitmap QBitmap::QBitmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qbitmap.h non constructor false true 5 [0xc820c0cce0 0xc820c0cd80] } +&{clear QBitmap::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qbitmap.h non plain false false void [] } +&{fromData QBitmap::fromData commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qbitmap.h non plain true false QBitmap [0xc820c0d080 0xc820c0d140 0xc820c0d200] } +&{fromImage QBitmap::fromImage commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qbitmap.h non plain true false QBitmap [0xc820c0d460 0xc820c0d540] } +&{operator QVariant QBitmap::operator QVariant commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qbitmap.h non plain false false [] } +&{operator= QBitmap::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qbitmap.h non plain false false QBitmap & [0xc820c0d9e0] } +&{swap QBitmap::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qbitmap.h non plain false false void [0xc820c0dbe0] } +&{transformed QBitmap::transformed commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qbitmap.h non plain false false QBitmap [0xc820c06340] } +&{~QBitmap QBitmap::~QBitmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qbitmap.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QBrush.txt b/internal/binding/dump/QtGui/QBrush.txt new file mode 100755 index 00000000..566b3f26 --- /dev/null +++ b/internal/binding/dump/QtGui/QBrush.txt @@ -0,0 +1,34 @@ +######################################## FUNCTIONS ######################################## +&{QBrush QBrush::QBrush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.cpp non constructor false true 4 [0xc8224eb8a0 0xc8224eb920] } +&{operator= QBrush::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.cpp non plain false false QBrush & [0xc8224ebdc0] } +&{operator== QBrush::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.cpp non plain false false bool [0xc8224ebfa0] } +&{setColor QBrush::setColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.cpp non plain false false void [0xc822500100] } +&{texture QBrush::texture commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.cpp non plain false false QPixmap [] } +&{QBrush QBrush::QBrush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non constructor false false [] } +&{QBrush QBrush::QBrush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non constructor false true 2 [0xc822500440] } +&{QBrush QBrush::QBrush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non constructor false true 6 [0xc8225005a0 0xc822500620] } +&{QBrush QBrush::QBrush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non constructor false true 9 [0xc8225007a0] } +&{QBrush QBrush::QBrush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non constructor false true 3 [0xc822500900 0xc822500980] } +&{QBrush QBrush::QBrush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non constructor false true 5 [0xc822500ae0 0xc822500b60] } +&{QBrush QBrush::QBrush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non constructor false true 10 [0xc822500ce0] } +&{QBrush QBrush::QBrush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non constructor false true 8 [0xc822500ea0] } +&{QBrush QBrush::QBrush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non constructor false true 7 [0xc822501020] } +&{color QBrush::color commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false const QColor & [] } +&{gradient QBrush::gradient commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false const QGradient * [] } +&{isOpaque QBrush::isOpaque commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false bool [] } +&{matrix QBrush::matrix commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false const QMatrix & [] } +&{operator QVariant QBrush::operator QVariant commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false [] } +&{operator!= QBrush::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false bool [0xc822501980] } +&{operator= QBrush::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false true 2 QBrush & [0xc822501b40] } +&{setColor QBrush::setColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false true 2 void [0xc822501ca0] } +&{setMatrix QBrush::setMatrix commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false void [0xc822501e60] } +&{setStyle QBrush::setStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false void [0xc822501fc0] } +&{setTexture QBrush::setTexture commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false void [0xc822518180] } +&{setTextureImage QBrush::setTextureImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false void [0xc822518340] } +&{setTransform QBrush::setTransform commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false void [0xc822518520] } +&{style QBrush::style commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false Qt::BrushStyle [] } +&{swap QBrush::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false void [0xc822518780] } +&{textureImage QBrush::textureImage commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false QImage [] } +&{transform QBrush::transform commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false QTransform [] } +&{~QBrush QBrush::~QBrush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QClipboard.txt b/internal/binding/dump/QtGui/QClipboard.txt new file mode 100755 index 00000000..0f266697 --- /dev/null +++ b/internal/binding/dump/QtGui/QClipboard.txt @@ -0,0 +1,22 @@ +######################################## FUNCTIONS ######################################## +&{clear QClipboard::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qclipboard.cpp non plain false false void [0xc82094bde0] } +&{mimeData QClipboard::mimeData commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qclipboard.cpp non plain false false const QMimeData * [0xc8209280a0] } +&{setMimeData QClipboard::setMimeData commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qclipboard.cpp non plain false false void [0xc820928de0 0xc820928ea0] } +&{changed QClipboard::changed commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qclipboard.h non signal false false void [0xc8209292a0] } +&{dataChanged QClipboard::dataChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qclipboard.h non signal false false void [] } +&{findBufferChanged QClipboard::findBufferChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qclipboard.h non signal false false void [] } +&{image QClipboard::image commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qclipboard.h non plain false false QImage [0xc8209297c0] } +&{ownsClipboard QClipboard::ownsClipboard commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qclipboard.h non plain false false bool [] } +&{ownsFindBuffer QClipboard::ownsFindBuffer commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qclipboard.h non plain false false bool [] } +&{ownsSelection QClipboard::ownsSelection commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qclipboard.h non plain false false bool [] } +&{pixmap QClipboard::pixmap commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qclipboard.h non plain false false QPixmap [0xc820929da0] } +&{selectionChanged QClipboard::selectionChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qclipboard.h non signal false false void [] } +&{setImage QClipboard::setImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qclipboard.h non plain false false void [0xc8205b6140 0xc8205b61c0] } +&{setPixmap QClipboard::setPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qclipboard.h non plain false false void [0xc8205b63e0 0xc8205b6460] } +&{setText QClipboard::setText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qclipboard.h non plain false false void [0xc8205b6620 0xc8205b66a0] } +&{supportsFindBuffer QClipboard::supportsFindBuffer commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qclipboard.h non plain false false bool [] } +&{supportsSelection QClipboard::supportsSelection commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qclipboard.h non plain false false bool [] } +&{text QClipboard::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qclipboard.h non plain false false QString [0xc8205b6b60] } +&{text QClipboard::text commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qclipboard.h non plain false true 2 QString [0xc8205b6d20 0xc8205b6dc0] } +######################################## ENUMS ######################################## +&{Mode QClipboard::Mode commendable public [0xc820928260 0xc820928320 0xc8209283c0 0xc820928440]} diff --git a/internal/binding/dump/QtGui/QCloseEvent.txt b/internal/binding/dump/QtGui/QCloseEvent.txt new file mode 100755 index 00000000..647de571 --- /dev/null +++ b/internal/binding/dump/QtGui/QCloseEvent.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{QCloseEvent QCloseEvent::QCloseEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QColor.txt b/internal/binding/dump/QtGui/QColor.txt new file mode 100755 index 00000000..c6109b5a --- /dev/null +++ b/internal/binding/dump/QtGui/QColor.txt @@ -0,0 +1,100 @@ +######################################## FUNCTIONS ######################################## +&{convertTo QColor::convertTo commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.cpp non plain false false QColor [0xc821fb5ac0] } +&{rgb QColor::rgb commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.cpp non plain false false QRgb [] } +&{rgba QColor::rgba commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.cpp non plain false false QRgb [] } +&{setRgbF QColor::setRgbF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.cpp non plain false false void [0xc821fb5f40 0xc821fb5fc0 0xc821fcc040 0xc821fcc0c0] } +&{QColor QColor::QColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non constructor false false [] } +&{QColor QColor::QColor commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non constructor false true 3 [0xc821fcc8c0] } +&{QColor QColor::QColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non constructor false true 8 [0xc821fcca40] } +&{QColor QColor::QColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non constructor false true 6 [0xc821fccbe0] } +&{QColor QColor::QColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non constructor false true 4 [0xc821fccd60] } +&{QColor QColor::QColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non constructor false true 5 [0xc821fccee0] } +&{QColor QColor::QColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non constructor false true 2 [0xc821fcd040 0xc821fcd0c0 0xc821fcd140 0xc821fcd1c0] } +&{alpha QColor::alpha commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false int [] } +&{alphaF QColor::alphaF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false qreal [] } +&{black QColor::black commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false int [] } +&{blackF QColor::blackF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false qreal [] } +&{blue QColor::blue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false int [] } +&{blueF QColor::blueF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false qreal [] } +&{colorNames QColor::colorNames commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain true false QStringList [] } +&{cyan QColor::cyan commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false int [] } +&{cyanF QColor::cyanF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false qreal [] } +&{darker QColor::darker commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false QColor [0xc821fcdbe0] } +&{fromCmyk QColor::fromCmyk commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain true false QColor [0xc821fcdd40 0xc821fcddc0 0xc821fcde40 0xc821fcdec0 0xc821fcdf60] } +&{fromCmykF QColor::fromCmykF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain true false QColor [0xc821fe2120 0xc821fe21a0 0xc821fe2220 0xc821fe22a0 0xc821fe2340] } +&{fromHsl QColor::fromHsl commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain true false QColor [0xc821fe24a0 0xc821fe2520 0xc821fe25a0 0xc821fe2620] } +&{fromHslF QColor::fromHslF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain true false QColor [0xc821fe2780 0xc821fe2800 0xc821fe2880 0xc821fe2900] } +&{fromHsv QColor::fromHsv commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain true false QColor [0xc821fe2a60 0xc821fe2ae0 0xc821fe2b60 0xc821fe2be0] } +&{fromHsvF QColor::fromHsvF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain true false QColor [0xc821fe2d40 0xc821fe2dc0 0xc821fe2e40 0xc821fe2ec0] } +&{fromRgb QColor::fromRgb commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain true false QColor [0xc821fe3040] } +&{fromRgb QColor::fromRgb commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain true true 2 QColor [0xc821fe31a0 0xc821fe3220 0xc821fe32a0 0xc821fe3320] } +&{fromRgbF QColor::fromRgbF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain true false QColor [0xc821fe34a0 0xc821fe3520 0xc821fe35a0 0xc821fe3620] } +&{fromRgba QColor::fromRgba commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain true false QColor [0xc821fe37a0] } +&{getCmyk QColor::getCmyk commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false void [0xc821fe3900 0xc821fe3980 0xc821fe3a00 0xc821fe3a80 0xc821fe3b20] } +&{getCmykF QColor::getCmykF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false void [0xc821fe3c80 0xc821fe3d00 0xc821fe3d80 0xc821fe3e00 0xc821fe3ea0] } +&{getHsl QColor::getHsl commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false void [0xc821ff0000 0xc821ff0080 0xc821ff0100 0xc821ff0180] } +&{getHslF QColor::getHslF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false void [0xc821ff02e0 0xc821ff0360 0xc821ff03e0 0xc821ff0460] } +&{getHsv QColor::getHsv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false void [0xc821ff05c0 0xc821ff0640 0xc821ff06c0 0xc821ff0740] } +&{getHsvF QColor::getHsvF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false void [0xc821ff08a0 0xc821ff0920 0xc821ff09a0 0xc821ff0a20] } +&{getRgb QColor::getRgb commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false void [0xc821ff0b80 0xc821ff0c00 0xc821ff0c80 0xc821ff0d00] } +&{getRgbF QColor::getRgbF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false void [0xc821ff0e60 0xc821ff0ee0 0xc821ff0f60 0xc821ff0fe0] } +&{green QColor::green commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false int [] } +&{greenF QColor::greenF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false qreal [] } +&{hslHue QColor::hslHue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false int [] } +&{hslHueF QColor::hslHueF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false qreal [] } +&{hslSaturation QColor::hslSaturation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false int [] } +&{hslSaturationF QColor::hslSaturationF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false qreal [] } +&{hsvHue QColor::hsvHue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false int [] } +&{hsvHueF QColor::hsvHueF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false qreal [] } +&{hsvSaturation QColor::hsvSaturation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false int [] } +&{hsvSaturationF QColor::hsvSaturationF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false qreal [] } +&{hue QColor::hue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false int [] } +&{hueF QColor::hueF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false qreal [] } +&{isValid QColor::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false bool [] } +&{isValidColor QColor::isValidColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain true false bool [0xc821ff1be0] } +&{lighter QColor::lighter commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false QColor [0xc821ff1ee0] } +&{lightness QColor::lightness commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false int [] } +&{lightnessF QColor::lightnessF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false qreal [] } +&{magenta QColor::magenta commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false int [] } +&{magentaF QColor::magentaF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false qreal [] } +&{name QColor::name commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false QString [] } +&{name QColor::name commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false true 2 QString [0xc82200c420] } +&{operator QVariant QColor::operator QVariant commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false [] } +&{operator!= QColor::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false bool [0xc82200c740] } +&{operator= QColor::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false true 2 QColor & [0xc82200c900] } +&{operator= QColor::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false QColor & [0xc82200cac0] } +&{operator== QColor::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false bool [0xc82200cc80] } +&{red QColor::red commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false int [] } +&{redF QColor::redF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false qreal [] } +&{saturation QColor::saturation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false int [] } +&{saturationF QColor::saturationF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false qreal [] } +&{setAlpha QColor::setAlpha commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false void [0xc82200d0e0] } +&{setAlphaF QColor::setAlphaF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false void [0xc82200d2c0] } +&{setBlue QColor::setBlue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false void [0xc82200d440] } +&{setBlueF QColor::setBlueF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false void [0xc82200d5c0] } +&{setCmyk QColor::setCmyk commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false void [0xc82200d720 0xc82200d7a0 0xc82200d820 0xc82200d8a0 0xc82200d940] } +&{setCmykF QColor::setCmykF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false void [0xc82200daa0 0xc82200db20 0xc82200dba0 0xc82200dc20 0xc82200dcc0] } +&{setGreen QColor::setGreen commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false void [0xc82200de40] } +&{setGreenF QColor::setGreenF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false void [0xc822020020] } +&{setHsl QColor::setHsl commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false void [0xc822020180 0xc822020200 0xc822020280 0xc822020300] } +&{setHslF QColor::setHslF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false void [0xc822020460 0xc8220204e0 0xc822020560 0xc8220205e0] } +&{setHsv QColor::setHsv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false void [0xc822020740 0xc8220207c0 0xc822020840 0xc8220208c0] } +&{setHsvF QColor::setHsvF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false void [0xc822020a20 0xc822020aa0 0xc822020b20 0xc822020ba0] } +&{setNamedColor QColor::setNamedColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false void [0xc822020d60] } +&{setRed QColor::setRed commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false void [0xc822020ee0] } +&{setRedF QColor::setRedF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false void [0xc822021060] } +&{setRgb QColor::setRgb commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false true 2 void [0xc8220211e0] } +&{setRgb QColor::setRgb commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false void [0xc822021340 0xc8220213c0 0xc822021440 0xc8220214c0] } +&{setRgba QColor::setRgba commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false void [0xc822021640] } +&{spec QColor::spec commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false Spec [] } +&{toCmyk QColor::toCmyk commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false QColor [] } +&{toHsl QColor::toHsl commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false QColor [] } +&{toHsv QColor::toHsv commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false QColor [] } +&{toRgb QColor::toRgb commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false QColor [] } +&{value QColor::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false int [] } +&{valueF QColor::valueF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false qreal [] } +&{yellow QColor::yellow commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false int [] } +&{yellowF QColor::yellowF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qcolor.h non plain false false qreal [] } +######################################## ENUMS ######################################## +&{NameFormat QColor::NameFormat commendable public [0xc821fcc2c0 0xc821fcc340]} +&{Spec QColor::Spec commendable public [0xc821fcc4a0 0xc821fcc520 0xc821fcc5a0 0xc821fcc620 0xc821fcc6c0]} diff --git a/internal/binding/dump/QtGui/QConicalGradient.txt b/internal/binding/dump/QtGui/QConicalGradient.txt new file mode 100755 index 00000000..e1a2feb8 --- /dev/null +++ b/internal/binding/dump/QtGui/QConicalGradient.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{QConicalGradient QConicalGradient::QConicalGradient commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non constructor false false [] } +&{QConicalGradient QConicalGradient::QConicalGradient commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non constructor false true 2 [0xc822518ca0 0xc822518d20] } +&{QConicalGradient QConicalGradient::QConicalGradient commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non constructor false true 3 [0xc822518e60 0xc822518ee0 0xc822518f60] } +&{angle QConicalGradient::angle commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false qreal [] } +&{center QConicalGradient::center commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false QPointF [] } +&{setAngle QConicalGradient::setAngle commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false void [0xc822519360] } +&{setCenter QConicalGradient::setCenter commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false void [0xc822519520] } +&{setCenter QConicalGradient::setCenter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false true 2 void [0xc8225196e0 0xc822519760] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QContextMenuEvent.txt b/internal/binding/dump/QtGui/QContextMenuEvent.txt new file mode 100755 index 00000000..0d1c1873 --- /dev/null +++ b/internal/binding/dump/QtGui/QContextMenuEvent.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QContextMenuEvent QContextMenuEvent::QContextMenuEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false true 3 [0xc8208f8580 0xc8208f8620] } +&{QContextMenuEvent QContextMenuEvent::QContextMenuEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false true 2 [0xc8208f8800 0xc8208f8880 0xc8208f8920] } +&{QContextMenuEvent QContextMenuEvent::QContextMenuEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [0xc8208f8b20 0xc8208f8ba0 0xc8208f8c60 0xc8208f8d00] } +&{globalPos QContextMenuEvent::globalPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QPoint & [] } +&{globalX QContextMenuEvent::globalX commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +&{globalY QContextMenuEvent::globalY commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +&{pos QContextMenuEvent::pos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QPoint & [] } +&{reason QContextMenuEvent::reason commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false Reason [] } +&{x QContextMenuEvent::x commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +&{y QContextMenuEvent::y commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +######################################## ENUMS ######################################## +&{Reason QContextMenuEvent::Reason commendable public [0xc8208f8240 0xc8208f82c0 0xc8208f8340]} diff --git a/internal/binding/dump/QtGui/QCursor.txt b/internal/binding/dump/QtGui/QCursor.txt new file mode 100755 index 00000000..5662f080 --- /dev/null +++ b/internal/binding/dump/QtGui/QCursor.txt @@ -0,0 +1,24 @@ +######################################## FUNCTIONS ######################################## +&{pos QCursor::pos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qcursor.cpp non plain true false QPoint [] } +&{pos QCursor::pos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qcursor.cpp non plain true true 2 QPoint [0xc8205b7680] } +&{setPos QCursor::setPos commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qcursor.cpp non plain true true 2 void [0xc8205b7800 0xc8205b7880 0xc8205b7960] } +&{setPos QCursor::setPos commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qcursor.cpp non plain true false void [0xc8205b7b40 0xc8205b7bc0] } +&{QCursor QCursor::QCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qcursor.h non constructor false false [] } +&{QCursor QCursor::QCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qcursor.h non constructor false true 6 [0xc8205b7ea0] } +&{QCursor QCursor::QCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qcursor.h non constructor false true 2 [0xc82091c040] } +&{QCursor QCursor::QCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qcursor.h non constructor false true 3 [0xc82091c220 0xc82091c2a0 0xc82091c360 0xc82091c3e0] } +&{QCursor QCursor::QCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qcursor.h non constructor false true 5 [0xc82091c5c0] } +&{QCursor QCursor::QCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qcursor.h non constructor false true 4 [0xc82091c720 0xc82091c7c0 0xc82091c880] } +&{bitmap QCursor::bitmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qcursor.h non plain false false const QBitmap * [] } +&{hotSpot QCursor::hotSpot commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qcursor.h non plain false false QPoint [] } +&{mask QCursor::mask commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qcursor.h non plain false false const QBitmap * [] } +&{operator QVariant QCursor::operator QVariant commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qcursor.h non plain false false [] } +&{operator= QCursor::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qcursor.h non plain false true 2 QCursor & [0xc82091ce00] } +&{operator= QCursor::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qcursor.h non plain false false QCursor & [0xc82091d040] } +&{pixmap QCursor::pixmap commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qcursor.h non plain false false QPixmap [] } +&{setPos QCursor::setPos commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qcursor.h non plain true true 4 void [0xc82091d280 0xc82091d340] } +&{setPos QCursor::setPos commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qcursor.h non plain true true 3 void [0xc82091d540] } +&{setShape QCursor::setShape commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qcursor.h non plain false false void [0xc82091d700] } +&{shape QCursor::shape commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qcursor.h non plain false false Qt::CursorShape [] } +&{~QCursor QCursor::~QCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qcursor.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QDesktopServices.txt b/internal/binding/dump/QtGui/QDesktopServices.txt new file mode 100755 index 00000000..e465507e --- /dev/null +++ b/internal/binding/dump/QtGui/QDesktopServices.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{openUrl QDesktopServices::openUrl commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qdesktopservices.h non plain true false bool [0xc820d056a0] } +&{setUrlHandler QDesktopServices::setUrlHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qdesktopservices.h non plain true false void [0xc820d05900 0xc820d059a0 0xc820d05a60] } +&{unsetUrlHandler QDesktopServices::unsetUrlHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qdesktopservices.h non plain true false void [0xc820d05e00] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QDoubleValidator.txt b/internal/binding/dump/QtGui/QDoubleValidator.txt new file mode 100755 index 00000000..64f03bec --- /dev/null +++ b/internal/binding/dump/QtGui/QDoubleValidator.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{notation QDoubleValidator::notation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.cpp non plain false false Notation [] } +&{setBottom QDoubleValidator::setBottom commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.cpp non plain false false void [0xc822de08a0] } +&{setDecimals QDoubleValidator::setDecimals commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.cpp non plain false false void [0xc822de0b80] } +&{setNotation QDoubleValidator::setNotation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.cpp non plain false false void [0xc822de0ea0] } +&{setTop QDoubleValidator::setTop commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.cpp non plain false false void [0xc822de1240] } +&{validate QDoubleValidator::validate commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.cpp impure plain false false QValidator::State [0xc822de15a0 0xc822de1660] } +&{QDoubleValidator QDoubleValidator::QDoubleValidator commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h non constructor false false [0xc822de1d20] } +&{QDoubleValidator QDoubleValidator::QDoubleValidator commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h non constructor false true 2 [0xc822de1f00 0xc822de1fe0 0xc822ef20c0 0xc822ef21c0] } +&{bottom QDoubleValidator::bottom commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h non plain false false double [] } +&{decimals QDoubleValidator::decimals commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h non plain false false int [] } +&{setRange QDoubleValidator::setRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h impure plain false false void [0xc822ef3260 0xc822ef3360 0xc822ef3400] } +&{top QDoubleValidator::top commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h non plain false false double [] } +&{~QDoubleValidator QDoubleValidator::~QDoubleValidator commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Notation QDoubleValidator::Notation commendable public [0xc822de19a0 0xc822de1ac0]} diff --git a/internal/binding/dump/QtGui/QDrag.txt b/internal/binding/dump/QtGui/QDrag.txt new file mode 100755 index 00000000..28ba0303 --- /dev/null +++ b/internal/binding/dump/QtGui/QDrag.txt @@ -0,0 +1,20 @@ +######################################## FUNCTIONS ######################################## +&{QDrag QDrag::QDrag commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qdrag.h non constructor false false [0xc82091db60] } +&{actionChanged QDrag::actionChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qdrag.h non signal false false void [0xc82091dd80] } +&{defaultAction QDrag::defaultAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qdrag.h non plain false false Qt::DropAction [] } +&{dragCursor QDrag::dragCursor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qdrag.h non plain false false QPixmap [0xc820908020] } +&{exec QDrag::exec commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qdrag.h non plain false false Qt::DropAction [0xc8209081a0] } +&{exec QDrag::exec commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qdrag.h non plain false true 2 Qt::DropAction [0xc820908300 0xc8209083a0] } +&{hotSpot QDrag::hotSpot commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qdrag.h non plain false false QPoint [] } +&{mimeData QDrag::mimeData commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qdrag.h non plain false false QMimeData * [] } +&{pixmap QDrag::pixmap commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qdrag.h non plain false false QPixmap [] } +&{setDragCursor QDrag::setDragCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qdrag.h non plain false false void [0xc820908800 0xc820908880] } +&{setHotSpot QDrag::setHotSpot commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qdrag.h non plain false false void [0xc820908a40] } +&{setMimeData QDrag::setMimeData commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qdrag.h non plain false false void [0xc820908c60] } +&{setPixmap QDrag::setPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qdrag.h non plain false false void [0xc820908e20] } +&{source QDrag::source commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qdrag.h non plain false false QObject * [] } +&{supportedActions QDrag::supportedActions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qdrag.h non plain false false Qt::DropActions [] } +&{target QDrag::target commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qdrag.h non plain false false QObject * [] } +&{targetChanged QDrag::targetChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qdrag.h non signal false false void [0xc8209094a0] } +&{~QDrag QDrag::~QDrag commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qdrag.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QDragEnterEvent.txt b/internal/binding/dump/QtGui/QDragEnterEvent.txt new file mode 100755 index 00000000..346e766c --- /dev/null +++ b/internal/binding/dump/QtGui/QDragEnterEvent.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{QDragEnterEvent QDragEnterEvent::QDragEnterEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [0xc8208f9b80 0xc8208f9c00 0xc8208f9cc0 0xc8208f9de0 0xc8208f9ec0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QDragLeaveEvent.txt b/internal/binding/dump/QtGui/QDragLeaveEvent.txt new file mode 100755 index 00000000..e5a20b87 --- /dev/null +++ b/internal/binding/dump/QtGui/QDragLeaveEvent.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{QDragLeaveEvent QDragLeaveEvent::QDragLeaveEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QDragMoveEvent.txt b/internal/binding/dump/QtGui/QDragMoveEvent.txt new file mode 100755 index 00000000..6d87eca2 --- /dev/null +++ b/internal/binding/dump/QtGui/QDragMoveEvent.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QDragMoveEvent QDragMoveEvent::QDragMoveEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [0xc8208f6580 0xc8208f6620 0xc8208f6700 0xc8208f67c0 0xc8208f68a0 0xc8208f69a0] } +&{accept QDragMoveEvent::accept commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false true 2 void [] } +&{accept QDragMoveEvent::accept commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false void [0xc8208f6cc0] } +&{answerRect QDragMoveEvent::answerRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QRect [] } +&{ignore QDragMoveEvent::ignore commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false true 2 void [] } +&{ignore QDragMoveEvent::ignore commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false void [0xc8208f7160] } +&{~QDragMoveEvent QDragMoveEvent::~QDragMoveEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QDropEvent.txt b/internal/binding/dump/QtGui/QDropEvent.txt new file mode 100755 index 00000000..bf123c19 --- /dev/null +++ b/internal/binding/dump/QtGui/QDropEvent.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{setDropAction QDropEvent::setDropAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.cpp non plain false false void [0xc8208f7580] } +&{QDropEvent QDropEvent::QDropEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [0xc8208f77a0 0xc8208f7820 0xc8208f78c0 0xc8208f79a0 0xc8208f7aa0 0xc8208f7b80] } +&{acceptProposedAction QDropEvent::acceptProposedAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false void [] } +&{dropAction QDropEvent::dropAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false Qt::DropAction [] } +&{keyboardModifiers QDropEvent::keyboardModifiers commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false Qt::KeyboardModifiers [] } +&{mimeData QDropEvent::mimeData commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QMimeData * [] } +&{mouseButtons QDropEvent::mouseButtons commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false Qt::MouseButtons [] } +&{pos QDropEvent::pos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QPoint [] } +&{posF QDropEvent::posF commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QPointF & [] } +&{possibleActions QDropEvent::possibleActions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false Qt::DropActions [] } +&{proposedAction QDropEvent::proposedAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false Qt::DropAction [] } +&{source QDropEvent::source commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QObject * [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QEnterEvent.txt b/internal/binding/dump/QtGui/QEnterEvent.txt new file mode 100755 index 00000000..8f22d09a --- /dev/null +++ b/internal/binding/dump/QtGui/QEnterEvent.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{QEnterEvent QEnterEvent::QEnterEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [0xc8208d2fa0 0xc8208d3060 0xc8208d30e0] } +&{globalPos QEnterEvent::globalPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QPoint [] } +&{globalX QEnterEvent::globalX commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +&{globalY QEnterEvent::globalY commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +&{localPos QEnterEvent::localPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QPointF & [] } +&{pos QEnterEvent::pos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QPoint [] } +&{screenPos QEnterEvent::screenPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QPointF & [] } +&{windowPos QEnterEvent::windowPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QPointF & [] } +&{x QEnterEvent::x commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +&{y QEnterEvent::y commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QExposeEvent.txt b/internal/binding/dump/QtGui/QExposeEvent.txt new file mode 100755 index 00000000..20f6f978 --- /dev/null +++ b/internal/binding/dump/QtGui/QExposeEvent.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{QExposeEvent QExposeEvent::QExposeEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [0xc8208d3d20] } +&{region QExposeEvent::region commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QRegion & [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QFileOpenEvent.txt b/internal/binding/dump/QtGui/QFileOpenEvent.txt new file mode 100755 index 00000000..311af10e --- /dev/null +++ b/internal/binding/dump/QtGui/QFileOpenEvent.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{openFile QFileOpenEvent::openFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.cpp non plain false false bool [0xc8208c2300 0xc8208c23a0] } +&{file QFileOpenEvent::file commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QString [] } +&{url QFileOpenEvent::url commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QUrl [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QFocusEvent.txt b/internal/binding/dump/QtGui/QFocusEvent.txt new file mode 100755 index 00000000..d26baa30 --- /dev/null +++ b/internal/binding/dump/QtGui/QFocusEvent.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QFocusEvent QFocusEvent::QFocusEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [0xc8208c2e40 0xc8208c2f00] } +&{gotFocus QFocusEvent::gotFocus commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false bool [] } +&{lostFocus QFocusEvent::lostFocus commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false bool [] } +&{reason QFocusEvent::reason commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false Qt::FocusReason [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QFont.txt b/internal/binding/dump/QtGui/QFont.txt new file mode 100755 index 00000000..fcaf8d89 --- /dev/null +++ b/internal/binding/dump/QtGui/QFont.txt @@ -0,0 +1,80 @@ +######################################## FUNCTIONS ######################################## +&{defaultFamily QFont::defaultFamily commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.cpp non plain false false QString [] } +&{lastResortFamily QFont::lastResortFamily commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.cpp non plain false false QString [] } +&{lastResortFont QFont::lastResortFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.cpp non plain false false QString [] } +&{QFont QFont::QFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non constructor false false [] } +&{QFont QFont::QFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non constructor false true 4 [0xc82314bc20] } +&{QFont QFont::QFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non constructor false true 3 [0xc82314bd80 0xc82314be00] } +&{QFont QFont::QFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non constructor false true 2 [0xc82314bf60 0xc82314bfe0 0xc82315a060 0xc82315a0e0] } +&{bold QFont::bold commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false bool [] } +&{capitalization QFont::capitalization commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false Capitalization [] } +&{exactMatch QFont::exactMatch commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false bool [] } +&{family QFont::family commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false QString [] } +&{fixedPitch QFont::fixedPitch commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false bool [] } +&{fromString QFont::fromString commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false bool [0xc82315bb80] } +&{hintingPreference QFont::hintingPreference commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false HintingPreference [] } +&{insertSubstitution QFont::insertSubstitution commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain true false void [0xc82315bf40 0xc82315bfc0] } +&{insertSubstitutions QFont::insertSubstitutions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain true false void [0xc82316a1e0 0xc82316a280] } +&{isCopyOf QFont::isCopyOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false bool [0xc82316a420] } +&{italic QFont::italic commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false bool [] } +&{kerning QFont::kerning commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false bool [] } +&{key QFont::key commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false QString [] } +&{letterSpacing QFont::letterSpacing commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false qreal [] } +&{letterSpacingType QFont::letterSpacingType commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false SpacingType [] } +&{operator QVariant QFont::operator QVariant commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false [] } +&{operator!= QFont::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false bool [0xc82316ab60] } +&{operator< QFont::operator< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false bool [0xc82316acc0] } +&{operator= QFont::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false true 2 QFont & [0xc82316ae40] } +&{operator= QFont::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false QFont & [0xc82316afa0] } +&{operator== QFont::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false bool [0xc82316b160] } +&{overline QFont::overline commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false bool [] } +&{pixelSize QFont::pixelSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false int [] } +&{pointSize QFont::pointSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false int [] } +&{pointSizeF QFont::pointSizeF commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false qreal [] } +&{removeSubstitutions QFont::removeSubstitutions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain true false void [0xc82316b900] } +&{resolve QFont::resolve commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false QFont [0xc82316ba60] } +&{setBold QFont::setBold commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false void [0xc82316bbe0] } +&{setCapitalization QFont::setCapitalization commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false void [0xc82316be00] } +&{setFamily QFont::setFamily commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false void [0xc82316bf60] } +&{setFixedPitch QFont::setFixedPitch commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false void [0xc823182140] } +&{setHintingPreference QFont::setHintingPreference commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false void [0xc8231823a0] } +&{setItalic QFont::setItalic commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false void [0xc8231825a0] } +&{setKerning QFont::setKerning commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false void [0xc823182780] } +&{setLetterSpacing QFont::setLetterSpacing commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false void [0xc823182940 0xc8231829c0] } +&{setOverline QFont::setOverline commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false void [0xc823182ba0] } +&{setPixelSize QFont::setPixelSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false void [0xc823182d80] } +&{setPointSize QFont::setPointSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false void [0xc823182f60] } +&{setPointSizeF QFont::setPointSizeF commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false void [0xc823183120] } +&{setStretch QFont::setStretch commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false void [0xc823183300] } +&{setStrikeOut QFont::setStrikeOut commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false void [0xc8231834e0] } +&{setStyle QFont::setStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false void [0xc823183660] } +&{setStyleHint QFont::setStyleHint commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false void [0xc823183820 0xc8231838a0] } +&{setStyleName QFont::setStyleName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false void [0xc823183a60] } +&{setStyleStrategy QFont::setStyleStrategy commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false void [0xc823183c20] } +&{setUnderline QFont::setUnderline commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false void [0xc823183e20] } +&{setWeight QFont::setWeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false void [0xc823183fa0] } +&{setWordSpacing QFont::setWordSpacing commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false void [0xc823190160] } +&{stretch QFont::stretch commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false int [] } +&{strikeOut QFont::strikeOut commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false bool [] } +&{style QFont::style commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false Style [] } +&{styleHint QFont::styleHint commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false StyleHint [] } +&{styleName QFont::styleName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false QString [] } +&{styleStrategy QFont::styleStrategy commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false StyleStrategy [] } +&{substitute QFont::substitute commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain true false QString [0xc823190700] } +&{substitutes QFont::substitutes commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain true false QStringList [0xc8231908c0] } +&{substitutions QFont::substitutions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain true false QStringList [] } +&{swap QFont::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false void [0xc823190b20] } +&{toString QFont::toString commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false QString [] } +&{underline QFont::underline commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false bool [] } +&{weight QFont::weight commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false int [] } +&{wordSpacing QFont::wordSpacing commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non plain false false qreal [] } +&{~QFont QFont::~QFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfont.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Capitalization QFont::Capitalization commendable public [0xc82313f2a0 0xc82313f320 0xc82313f3a0 0xc82313f420 0xc82313f4c0]} +&{HintingPreference QFont::HintingPreference commendable public [0xc82313f6e0 0xc82313f7a0 0xc82313f840 0xc82313f920]} +&{SpacingType QFont::SpacingType commendable public [0xc82313fb40 0xc82313fc00]} +&{Stretch QFont::Stretch commendable public [0xc82313fd60 0xc82313fde0 0xc82313fe60 0xc82313fee0 0xc82313ff80 0xc82314a000 0xc82314a080 0xc82314a100 0xc82314a1a0]} +&{Style QFont::Style commendable public [0xc82314a320 0xc82314a3a0 0xc82314a420]} +&{StyleHint QFont::StyleHint commendable public [0xc82314a580 0xc82314a600 0xc82314a680 0xc82314a700 0xc82314a7a0 0xc82314a820 0xc82314a8a0 0xc82314a920 0xc82314a9c0 0xc82314aa40 0xc82314aac0 0xc82314ab40 0xc82314abc0]} +&{StyleStrategy QFont::StyleStrategy commendable public [0xc82314ad80 0xc82314ae00 0xc82314ae80 0xc82314af00 0xc82314afa0 0xc82314b020 0xc82314b0a0 0xc82314b120 0xc82314b1c0 0xc82314b240 0xc82314b2e0 0xc82314b3c0 0xc82314b480]} +&{Weight QFont::Weight commendable public [0xc82314b5e0 0xc82314b660 0xc82314b6e0 0xc82314b760 0xc82314b800 0xc82314b880 0xc82314b900 0xc82314b980 0xc82314ba20]} diff --git a/internal/binding/dump/QtGui/QFontDatabase.txt b/internal/binding/dump/QtGui/QFontDatabase.txt new file mode 100755 index 00000000..072022ab --- /dev/null +++ b/internal/binding/dump/QtGui/QFontDatabase.txt @@ -0,0 +1,31 @@ +######################################## FUNCTIONS ######################################## +&{removeAllApplicationFonts QFontDatabase::removeAllApplicationFonts commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontdatabase.cpp non plain true false bool [] } +&{removeApplicationFont QFontDatabase::removeApplicationFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontdatabase.cpp non plain true false bool [0xc823191ea0] } +&{QFontDatabase QFontDatabase::QFontDatabase commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontdatabase.h non constructor false false [] } +&{addApplicationFont QFontDatabase::addApplicationFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontdatabase.h non plain true false int [0xc8231abaa0] } +&{addApplicationFontFromData QFontDatabase::addApplicationFontFromData commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontdatabase.h non plain true false int [0xc8231abc60] } +&{applicationFontFamilies QFontDatabase::applicationFontFamilies commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontdatabase.h non plain true false QStringList [0xc8231abe40] } +&{bold QFontDatabase::bold commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontdatabase.h non plain false false bool [0xc8231ba000 0xc8231ba080] } +&{families QFontDatabase::families commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontdatabase.h non plain false false QStringList [0xc8231ba240] } +&{font QFontDatabase::font commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontdatabase.h non plain false false QFont [0xc8231ba640 0xc8231ba6c0 0xc8231ba740] } +&{isBitmapScalable QFontDatabase::isBitmapScalable commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontdatabase.h non plain false false bool [0xc8231baac0 0xc8231bab40] } +&{isFixedPitch QFontDatabase::isFixedPitch commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontdatabase.h non plain false false bool [0xc8231bad00 0xc8231bad80] } +&{isPrivateFamily QFontDatabase::isPrivateFamily commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontdatabase.h non plain false false bool [0xc8231baf20] } +&{isScalable QFontDatabase::isScalable commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontdatabase.h non plain false false bool [0xc8231bb0e0 0xc8231bb160] } +&{isSmoothlyScalable QFontDatabase::isSmoothlyScalable commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontdatabase.h non plain false false bool [0xc8231bb300 0xc8231bb380] } +&{italic QFontDatabase::italic commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontdatabase.h non plain false false bool [0xc8231bb540 0xc8231bb5c0] } +&{pointSizes QFontDatabase::pointSizes commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontdatabase.h non plain false false QList [0xc8231bb780 0xc8231bb800] } +&{smoothSizes QFontDatabase::smoothSizes commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontdatabase.h non plain false false QList [0xc8231bb9c0 0xc8231bba40] } +&{standardSizes QFontDatabase::standardSizes commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontdatabase.h non plain true false QList [] } +&{styleString QFontDatabase::styleString commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontdatabase.h non plain false false QString [0xc8231bbd00] } +&{styleString QFontDatabase::styleString commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontdatabase.h non plain false true 2 QString [0xc8231bbee0] } +&{styles QFontDatabase::styles commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontdatabase.h non plain false false QStringList [0xc8231c80e0] } +&{systemFont QFontDatabase::systemFont commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontdatabase.h non plain true false QFont [0xc8231c82a0] } +&{weight QFontDatabase::weight commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontdatabase.h non plain false false int [0xc8231c8460 0xc8231c84e0] } +&{writingSystemName QFontDatabase::writingSystemName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontdatabase.h non plain true false QString [0xc8231c86e0] } +&{writingSystemSample QFontDatabase::writingSystemSample commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontdatabase.h non plain true false QString [0xc8231c8880] } +&{writingSystems QFontDatabase::writingSystems commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontdatabase.h non plain false false QList [] } +&{writingSystems QFontDatabase::writingSystems commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontdatabase.h non plain false true 2 QList [0xc8231c8bc0] } +######################################## ENUMS ######################################## +&{SystemFont QFontDatabase::SystemFont commendable public [0xc8231aa160 0xc8231aa1e0 0xc8231aa260 0xc8231aa300]} +&{WritingSystem QFontDatabase::WritingSystem commendable public [0xc8231aa4e0 0xc8231aa560 0xc8231aa5e0 0xc8231aa660 0xc8231aa700 0xc8231aa780 0xc8231aa800 0xc8231aa880 0xc8231aa920 0xc8231aa9a0 0xc8231aaa20 0xc8231aaaa0 0xc8231aab20 0xc8231aaba0 0xc8231aac20 0xc8231aaca0 0xc8231aad40 0xc8231aadc0 0xc8231aae40 0xc8231aaec0 0xc8231aaf40 0xc8231aafc0 0xc8231ab040 0xc8231ab0c0 0xc8231ab140 0xc8231ab1e0 0xc8231ab2c0 0xc8231ab380 0xc8231ab400 0xc8231ab480 0xc8231ab500 0xc8231ab580 0xc8231ab620 0xc8231ab6a0 0xc8231ab720 0xc8231ab7c0]} diff --git a/internal/binding/dump/QtGui/QFontInfo.txt b/internal/binding/dump/QtGui/QFontInfo.txt new file mode 100755 index 00000000..64bc3008 --- /dev/null +++ b/internal/binding/dump/QtGui/QFontInfo.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{QFontInfo QFontInfo::QFontInfo commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontinfo.h non constructor false false [0xc8231c8ee0] } +&{QFontInfo QFontInfo::QFontInfo commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontinfo.h non constructor false true 2 [0xc8231c90e0] } +&{bold QFontInfo::bold commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontinfo.h non plain false false bool [] } +&{exactMatch QFontInfo::exactMatch commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontinfo.h non plain false false bool [] } +&{family QFontInfo::family commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontinfo.h non plain false false QString [] } +&{fixedPitch QFontInfo::fixedPitch commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontinfo.h non plain false false bool [] } +&{italic QFontInfo::italic commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontinfo.h non plain false false bool [] } +&{operator= QFontInfo::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontinfo.h non plain false false QFontInfo & [0xc8231c97c0] } +&{pixelSize QFontInfo::pixelSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontinfo.h non plain false false int [] } +&{pointSize QFontInfo::pointSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontinfo.h non plain false false int [] } +&{pointSizeF QFontInfo::pointSizeF commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontinfo.h non plain false false qreal [] } +&{style QFontInfo::style commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontinfo.h non plain false false QFont::Style [] } +&{styleName QFontInfo::styleName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontinfo.h non plain false false QString [] } +&{swap QFontInfo::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontinfo.h non plain false false void [0xc8231c9e40] } +&{styleHint QFontInfo::styleHint commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontinfo.h non plain false false QFont::StyleHint [] } +&{weight QFontInfo::weight commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontinfo.h non plain false false int [] } +&{~QFontInfo QFontInfo::~QFontInfo commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontinfo.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QFontMetrics.txt b/internal/binding/dump/QtGui/QFontMetrics.txt new file mode 100755 index 00000000..c72963f1 --- /dev/null +++ b/internal/binding/dump/QtGui/QFontMetrics.txt @@ -0,0 +1,38 @@ +######################################## FUNCTIONS ######################################## +&{QFontMetrics QFontMetrics::QFontMetrics commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non constructor false false [0xc8231de840] } +&{QFontMetrics QFontMetrics::QFontMetrics commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non constructor false true 2 [0xc8231dea00 0xc8231dea80] } +&{QFontMetrics QFontMetrics::QFontMetrics commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non constructor false true 3 [0xc8231dec60] } +&{ascent QFontMetrics::ascent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false int [] } +&{averageCharWidth QFontMetrics::averageCharWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false int [] } +&{boundingRect QFontMetrics::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false QRect [0xc8231df060] } +&{boundingRect QFontMetrics::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false true 4 QRect [0xc8231df220 0xc8231df2a0 0xc8231df320 0xc8231df3a0 0xc8231df440] } +&{boundingRect QFontMetrics::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false true 2 QRect [0xc8231df600] } +&{boundingRect QFontMetrics::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false true 3 QRect [0xc8231df7e0 0xc8231df860 0xc8231df8e0 0xc8231df960 0xc8231dfa00 0xc8231dfa80 0xc8231dfb00 0xc8231dfb80] } +&{descent QFontMetrics::descent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false int [] } +&{elidedText QFontMetrics::elidedText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false QString [0xc8231f4060 0xc8231f4100 0xc8231f41c0 0xc8231f4240] } +&{height QFontMetrics::height commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false int [] } +&{inFont QFontMetrics::inFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false bool [0xc8231f4520] } +&{inFontUcs4 QFontMetrics::inFontUcs4 commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false bool [0xc8231f4700] } +&{leading QFontMetrics::leading commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false int [] } +&{leftBearing QFontMetrics::leftBearing commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false int [0xc8231f4a00] } +&{lineSpacing QFontMetrics::lineSpacing commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false int [] } +&{lineWidth QFontMetrics::lineWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false int [] } +&{maxWidth QFontMetrics::maxWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false int [] } +&{minLeftBearing QFontMetrics::minLeftBearing commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false int [] } +&{minRightBearing QFontMetrics::minRightBearing commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false int [] } +&{operator!= QFontMetrics::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false bool [0xc8231f50a0] } +&{operator= QFontMetrics::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false true 2 QFontMetrics & [0xc8231f52a0] } +&{operator= QFontMetrics::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false QFontMetrics & [0xc8231f5480] } +&{operator== QFontMetrics::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false bool [0xc8231f56a0] } +&{overlinePos QFontMetrics::overlinePos commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false int [] } +&{rightBearing QFontMetrics::rightBearing commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false int [0xc8231f59c0] } +&{size QFontMetrics::size commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false QSize [0xc8231f5b80 0xc8231f5c00 0xc8231f5c80 0xc8231f5d00] } +&{strikeOutPos QFontMetrics::strikeOutPos commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false int [] } +&{swap QFontMetrics::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false void [0xc8231f5fe0] } +&{tightBoundingRect QFontMetrics::tightBoundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false QRect [0xc8232021e0] } +&{underlinePos QFontMetrics::underlinePos commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false int [] } +&{width QFontMetrics::width commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false true 3 int [0xc8232024e0] } +&{width QFontMetrics::width commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false int [0xc8232026a0 0xc823202720] } +&{xHeight QFontMetrics::xHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false int [] } +&{~QFontMetrics QFontMetrics::~QFontMetrics commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QFontMetricsF.txt b/internal/binding/dump/QtGui/QFontMetricsF.txt new file mode 100755 index 00000000..cae59efc --- /dev/null +++ b/internal/binding/dump/QtGui/QFontMetricsF.txt @@ -0,0 +1,39 @@ +######################################## FUNCTIONS ######################################## +&{inFontUcs4 QFontMetricsF::inFontUcs4 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.cpp non plain false false bool [0xc823202ec0] } +&{QFontMetricsF QFontMetricsF::QFontMetricsF commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non constructor false false [0xc8232030a0] } +&{QFontMetricsF QFontMetricsF::QFontMetricsF commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non constructor false true 2 [0xc823203240 0xc8232032c0] } +&{QFontMetricsF QFontMetricsF::QFontMetricsF commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non constructor false true 3 [0xc823203480] } +&{QFontMetricsF QFontMetricsF::QFontMetricsF commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non constructor false true 4 [0xc8232036a0] } +&{ascent QFontMetricsF::ascent commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false qreal [] } +&{averageCharWidth QFontMetricsF::averageCharWidth commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false qreal [] } +&{boundingRect QFontMetricsF::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false true 2 QRectF [0xc823203a60] } +&{boundingRect QFontMetricsF::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false true 3 QRectF [0xc823203c20 0xc823203ca0 0xc823203d20 0xc823203da0 0xc823203e40] } +&{boundingRect QFontMetricsF::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false QRectF [0xc82321a000] } +&{descent QFontMetricsF::descent commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false qreal [] } +&{elidedText QFontMetricsF::elidedText commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false QString [0xc82321a2c0 0xc82321a360 0xc82321a420 0xc82321a4a0] } +&{height QFontMetricsF::height commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false qreal [] } +&{inFont QFontMetricsF::inFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false bool [0xc82321a780] } +&{leading QFontMetricsF::leading commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false qreal [] } +&{leftBearing QFontMetricsF::leftBearing commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false qreal [0xc82321aa40] } +&{lineSpacing QFontMetricsF::lineSpacing commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false qreal [] } +&{lineWidth QFontMetricsF::lineWidth commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false qreal [] } +&{maxWidth QFontMetricsF::maxWidth commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false qreal [] } +&{minLeftBearing QFontMetricsF::minLeftBearing commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false qreal [] } +&{minRightBearing QFontMetricsF::minRightBearing commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false qreal [] } +&{operator!= QFontMetricsF::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false bool [0xc82321b0e0] } +&{operator= QFontMetricsF::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false true 3 QFontMetricsF & [0xc82321b2e0] } +&{operator= QFontMetricsF::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false true 2 QFontMetricsF & [0xc82321b4c0] } +&{operator= QFontMetricsF::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false QFontMetricsF & [0xc82321b6e0] } +&{operator== QFontMetricsF::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false bool [0xc82321b8e0] } +&{overlinePos QFontMetricsF::overlinePos commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false qreal [] } +&{rightBearing QFontMetricsF::rightBearing commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false qreal [0xc82321bbe0] } +&{size QFontMetricsF::size commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false QSizeF [0xc82321bda0 0xc82321be20 0xc82321bea0 0xc82321bf20] } +&{strikeOutPos QFontMetricsF::strikeOutPos commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false qreal [] } +&{swap QFontMetricsF::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false void [0xc82322e200] } +&{tightBoundingRect QFontMetricsF::tightBoundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false QRectF [0xc82322e400] } +&{underlinePos QFontMetricsF::underlinePos commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false qreal [] } +&{width QFontMetricsF::width commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false true 2 qreal [0xc82322e700] } +&{width QFontMetricsF::width commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false qreal [0xc82322e8c0] } +&{xHeight QFontMetricsF::xHeight commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non plain false false qreal [] } +&{~QFontMetricsF QFontMetricsF::~QFontMetricsF commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qfontmetrics.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QGenericMatrix.txt b/internal/binding/dump/QtGui/QGenericMatrix.txt new file mode 100755 index 00000000..4b62a9bf --- /dev/null +++ b/internal/binding/dump/QtGui/QGenericMatrix.txt @@ -0,0 +1,20 @@ +######################################## FUNCTIONS ######################################## +&{QGenericMatrix QGenericMatrix::QGenericMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qgenericmatrix.h non constructor false false [] } +&{QGenericMatrix QGenericMatrix::QGenericMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qgenericmatrix.h non constructor false true 3 [0xc8203da9a0] } +&{constData QGenericMatrix::constData commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qgenericmatrix.h non plain false false const T * [] } +&{copyDataTo QGenericMatrix::copyDataTo commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qgenericmatrix.h non plain false false void [0xc8203db1c0] } +&{data QGenericMatrix::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qgenericmatrix.h non plain false false T * [] } +&{data QGenericMatrix::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qgenericmatrix.h non plain false true 2 const T * [] } +&{fill QGenericMatrix::fill commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qgenericmatrix.h non plain false false void [0xc8203dbae0] } +&{isIdentity QGenericMatrix::isIdentity commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qgenericmatrix.h non plain false false bool [] } +&{operator!= QGenericMatrix::operator!= commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qgenericmatrix.h non plain false false bool [0xc8203dbfe0] } +&{operator() QGenericMatrix::operator() commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qgenericmatrix.h non plain false true 2 T & [0xc8203c64a0 0xc8203c6560] } +&{operator() QGenericMatrix::operator() commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qgenericmatrix.h non plain false false const T & [0xc8203c6780 0xc8203c6820] } +&{operator*= QGenericMatrix::operator*= commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qgenericmatrix.h non plain false false QGenericMatrix & [0xc8203c6c00] } +&{operator+= QGenericMatrix::operator+= commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qgenericmatrix.h non plain false false QGenericMatrix & [0xc8203c70c0] } +&{operator-= QGenericMatrix::operator-= commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qgenericmatrix.h non plain false false QGenericMatrix & [0xc8203c7620] } +&{operator/= QGenericMatrix::operator/= commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qgenericmatrix.h non plain false false QGenericMatrix & [0xc8203c7b80] } +&{operator== QGenericMatrix::operator== commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qgenericmatrix.h non plain false false bool [0xc8203ae020] } +&{setToIdentity QGenericMatrix::setToIdentity commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qgenericmatrix.h non plain false false void [] } +&{transposed QGenericMatrix::transposed commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qgenericmatrix.h non plain false false QGenericMatrix [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QGenericPlugin.txt b/internal/binding/dump/QtGui/QGenericPlugin.txt new file mode 100755 index 00000000..303b389a --- /dev/null +++ b/internal/binding/dump/QtGui/QGenericPlugin.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{QGenericPlugin QGenericPlugin::QGenericPlugin commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qgenericplugin.h non constructor false false [0xc8206d6d20] } +&{create QGenericPlugin::create commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qgenericplugin.h pure plain false false QObject * [0xc8206d6fc0 0xc8206d70a0] } +&{~QGenericPlugin QGenericPlugin::~QGenericPlugin commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qgenericplugin.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QGenericPluginFactory.txt b/internal/binding/dump/QtGui/QGenericPluginFactory.txt new file mode 100755 index 00000000..ee2d905e --- /dev/null +++ b/internal/binding/dump/QtGui/QGenericPluginFactory.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{create QGenericPluginFactory::create commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qgenericpluginfactory.h non plain true false QObject * [0xc8206d77a0 0xc8206d7880] } +&{keys QGenericPluginFactory::keys commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qgenericpluginfactory.h non plain true false QStringList [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QGlyphRun.txt b/internal/binding/dump/QtGui/QGlyphRun.txt new file mode 100755 index 00000000..759456f0 --- /dev/null +++ b/internal/binding/dump/QtGui/QGlyphRun.txt @@ -0,0 +1,32 @@ +######################################## FUNCTIONS ######################################## +&{QGlyphRun QGlyphRun::QGlyphRun commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non constructor false false [] } +&{QGlyphRun QGlyphRun::QGlyphRun commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non constructor false true 2 [0xc82322f340] } +&{boundingRect QGlyphRun::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non plain false false QRectF [] } +&{clear QGlyphRun::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non plain false false void [] } +&{flags QGlyphRun::flags commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non plain false false GlyphRunFlags [] } +&{glyphIndexes QGlyphRun::glyphIndexes commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non plain false false QVector [] } +&{isEmpty QGlyphRun::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non plain false false bool [] } +&{isRightToLeft QGlyphRun::isRightToLeft commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non plain false false bool [] } +&{operator!= QGlyphRun::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non plain false false bool [0xc82322fb80] } +&{operator= QGlyphRun::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non plain false false QGlyphRun & [0xc8232421e0] } +&{operator== QGlyphRun::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non plain false false bool [0xc823242400] } +&{overline QGlyphRun::overline commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non plain false false bool [] } +&{positions QGlyphRun::positions commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non plain false false QVector [] } +&{rawFont QGlyphRun::rawFont commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non plain false false QRawFont [] } +&{setBoundingRect QGlyphRun::setBoundingRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non plain false false void [0xc823242900] } +&{setFlag QGlyphRun::setFlag commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non plain false false void [0xc823242ac0 0xc823242b40] } +&{setFlags QGlyphRun::setFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non plain false false void [0xc823242d00] } +&{setGlyphIndexes QGlyphRun::setGlyphIndexes commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non plain false false void [0xc823242ee0] } +&{setOverline QGlyphRun::setOverline commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non plain false false void [0xc823243100] } +&{setPositions QGlyphRun::setPositions commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non plain false false void [0xc8232432e0] } +&{setRawData QGlyphRun::setRawData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non plain false false void [0xc8232434e0 0xc823243580 0xc823243640] } +&{setRawFont QGlyphRun::setRawFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non plain false false void [0xc823243800] } +&{setRightToLeft QGlyphRun::setRightToLeft commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non plain false false void [0xc8232439c0] } +&{setStrikeOut QGlyphRun::setStrikeOut commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non plain false false void [0xc823243b80] } +&{setUnderline QGlyphRun::setUnderline commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non plain false false void [0xc823243d40] } +&{strikeOut QGlyphRun::strikeOut commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non plain false false bool [] } +&{swap QGlyphRun::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non plain false false void [0xc823243fc0] } +&{underline QGlyphRun::underline commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non plain false false bool [] } +&{~QGlyphRun QGlyphRun::~QGlyphRun commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qglyphrun.h non destructor false false [] } +######################################## ENUMS ######################################## +&{GlyphRunFlag QGlyphRun::GlyphRunFlag commendable public QGlyphRun::GlyphRunFlags [0xc82322ed60 0xc82322ede0 0xc82322ee60 0xc82322eee0 0xc82322ef80]} diff --git a/internal/binding/dump/QtGui/QGradient.txt b/internal/binding/dump/QtGui/QGradient.txt new file mode 100755 index 00000000..4d6b16ba --- /dev/null +++ b/internal/binding/dump/QtGui/QGradient.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{setColorAt QGradient::setColorAt commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.cpp non plain false false void [0xc8225199e0 0xc822519a60] } +&{setStops QGradient::setStops commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.cpp non plain false false void [0xc822519c40] } +&{coordinateMode QGradient::coordinateMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false CoordinateMode [] } +&{operator!= QGradient::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false bool [0xc821f8ce60] } +&{operator== QGradient::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false bool [0xc821f8d080] } +&{setCoordinateMode QGradient::setCoordinateMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false void [0xc821f8d2e0] } +&{setSpread QGradient::setSpread commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false void [0xc821f8d740] } +&{spread QGradient::spread commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false Spread [] } +&{stops QGradient::stops commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false QGradientStops [] } +&{type QGradient::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false Type [] } +######################################## ENUMS ######################################## +&{CoordinateMode QGradient::CoordinateMode commendable public [0xc822519e60 0xc822519f00 0xc822519fe0]} +&{Spread QGradient::Spread commendable public [0xc821f8c520 0xc821f8c5a0 0xc821f8c620]} +&{Type QGradient::Type commendable public [0xc821f8c780 0xc821f8c800 0xc821f8c880 0xc821f8c900]} diff --git a/internal/binding/dump/QtGui/QGuiApplication.txt b/internal/binding/dump/QtGui/QGuiApplication.txt new file mode 100755 index 00000000..128481f0 --- /dev/null +++ b/internal/binding/dump/QtGui/QGuiApplication.txt @@ -0,0 +1,62 @@ +######################################## FUNCTIONS ######################################## +&{allWindows QGuiApplication::allWindows commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.cpp non plain true false QWindowList [] } +&{applicationDisplayName QGuiApplication::applicationDisplayName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.cpp non plain true false QString [] } +&{applicationState QGuiApplication::applicationState commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.cpp non plain true false Qt::ApplicationState [] } +&{isSavingSession QGuiApplication::isSavingSession commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.cpp non plain false false bool [] } +&{isSessionRestored QGuiApplication::isSessionRestored commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.cpp non plain false false bool [] } +&{layoutDirection QGuiApplication::layoutDirection commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.cpp non plain true false Qt::LayoutDirection [] } +&{overrideCursor QGuiApplication::overrideCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.cpp non plain true false QCursor * [] } +&{platformName QGuiApplication::platformName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.cpp non plain true false QString [] } +&{queryKeyboardModifiers QGuiApplication::queryKeyboardModifiers commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.cpp non plain true false Qt::KeyboardModifiers [] } +&{quitOnLastWindowClosed QGuiApplication::quitOnLastWindowClosed commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.cpp non plain true false bool [] } +&{restoreOverrideCursor QGuiApplication::restoreOverrideCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.cpp non plain true false void [] } +&{sessionId QGuiApplication::sessionId commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.cpp non plain false false QString [] } +&{sessionKey QGuiApplication::sessionKey commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.cpp non plain false false QString [] } +&{setApplicationDisplayName QGuiApplication::setApplicationDisplayName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.cpp non plain true false void [0xc8206a77c0] } +&{setLayoutDirection QGuiApplication::setLayoutDirection commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.cpp non plain true false void [0xc8206a7b40] } +&{setOverrideCursor QGuiApplication::setOverrideCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.cpp non plain true false void [0xc8206a7ec0] } +&{setQuitOnLastWindowClosed QGuiApplication::setQuitOnLastWindowClosed commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.cpp non plain true false void [0xc8208e4180] } +&{setWindowIcon QGuiApplication::setWindowIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.cpp non plain true false void [0xc8208e4360] } +&{topLevelWindows QGuiApplication::topLevelWindows commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.cpp non plain true false QWindowList [] } +&{windowIcon QGuiApplication::windowIcon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.cpp non plain true false QIcon [] } +&{QGuiApplication QGuiApplication::QGuiApplication commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non constructor false false [0xc8208e47e0 0xc8208e4880] } +&{applicationStateChanged QGuiApplication::applicationStateChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non signal false false void [0xc8208e52a0] } +&{changeOverrideCursor QGuiApplication::changeOverrideCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non plain true false void [0xc8208e54c0] } +&{clipboard QGuiApplication::clipboard commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non plain true false QClipboard * [] } +&{commitDataRequest QGuiApplication::commitDataRequest commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non signal false false void [0xc8208e5840] } +&{desktopSettingsAware QGuiApplication::desktopSettingsAware commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non plain true false bool [] } +&{devicePixelRatio QGuiApplication::devicePixelRatio commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non plain false false qreal [] } +&{event QGuiApplication::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h impure plain false false bool [0xc8208e5ce0] } +&{exec QGuiApplication::exec commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non plain true false int [] } +&{focusObject QGuiApplication::focusObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non plain true false QObject * [] } +&{focusObjectChanged QGuiApplication::focusObjectChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non signal false false void [0xc82061c260] } +&{focusWindow QGuiApplication::focusWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non plain true false QWindow * [] } +&{focusWindowChanged QGuiApplication::focusWindowChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non signal false false void [0xc82061c700] } +&{font QGuiApplication::font commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non plain true false QFont [] } +&{fontDatabaseChanged QGuiApplication::fontDatabaseChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non signal false false void [] } +&{inputMethod QGuiApplication::inputMethod commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non plain true false QInputMethod * [] } +&{isLeftToRight QGuiApplication::isLeftToRight commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non plain true false bool [] } +&{isRightToLeft QGuiApplication::isRightToLeft commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non plain true false bool [] } +&{keyboardModifiers QGuiApplication::keyboardModifiers commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non plain true false Qt::KeyboardModifiers [] } +&{lastWindowClosed QGuiApplication::lastWindowClosed commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non signal false false void [] } +&{layoutDirectionChanged QGuiApplication::layoutDirectionChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non signal false false void [0xc82061d4e0] } +&{modalWindow QGuiApplication::modalWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non plain true false QWindow * [] } +&{mouseButtons QGuiApplication::mouseButtons commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non plain true false Qt::MouseButtons [] } +&{notify QGuiApplication::notify commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h impure plain false false bool [0xc82061daa0 0xc82061db20] } +&{palette QGuiApplication::palette commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non plain true false QPalette [] } +&{paletteChanged QGuiApplication::paletteChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non signal false false void [0xc82061df00] } +&{platformFunction QGuiApplication::platformFunction commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non plain true false QFunctionPointer [0xc8205e0180] } +&{platformNativeInterface QGuiApplication::platformNativeInterface commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non plain true false QPlatformNativeInterface * [] } +&{primaryScreen QGuiApplication::primaryScreen commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non plain true false QScreen * [] } +&{saveStateRequest QGuiApplication::saveStateRequest commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non signal false false void [0xc8205e0980] } +&{screenAdded QGuiApplication::screenAdded commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non signal false false void [0xc8205e0e20] } +&{screenRemoved QGuiApplication::screenRemoved commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non signal false false void [0xc8205e1240] } +&{screens QGuiApplication::screens commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non plain true false QList [] } +&{setDesktopSettingsAware QGuiApplication::setDesktopSettingsAware commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non plain true false void [0xc8205e16e0] } +&{setFont QGuiApplication::setFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non plain true false void [0xc8205e1b80] } +&{setPalette QGuiApplication::setPalette commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non plain true false void [0xc8205e1fc0] } +&{styleHints QGuiApplication::styleHints commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non plain true false QStyleHints * [] } +&{sync QGuiApplication::sync commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non plain true false void [] } +&{topLevelAt QGuiApplication::topLevelAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h non plain true false QWindow * [0xc8205ac820] } +&{~QGuiApplication QGuiApplication::~QGuiApplication commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qguiapplication.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QHelpEvent.txt b/internal/binding/dump/QtGui/QHelpEvent.txt new file mode 100755 index 00000000..d3261cc8 --- /dev/null +++ b/internal/binding/dump/QtGui/QHelpEvent.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QHelpEvent QHelpEvent::QHelpEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [0xc8208c36c0 0xc8208c3780 0xc8208c3820] } +&{globalPos QHelpEvent::globalPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QPoint & [] } +&{globalX QHelpEvent::globalX commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +&{globalY QHelpEvent::globalY commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +&{pos QHelpEvent::pos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QPoint & [] } +&{x QHelpEvent::x commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +&{y QHelpEvent::y commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QHideEvent.txt b/internal/binding/dump/QtGui/QHideEvent.txt new file mode 100755 index 00000000..6065e4bd --- /dev/null +++ b/internal/binding/dump/QtGui/QHideEvent.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{QHideEvent QHideEvent::QHideEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QHoverEvent.txt b/internal/binding/dump/QtGui/QHoverEvent.txt new file mode 100755 index 00000000..b71ae26f --- /dev/null +++ b/internal/binding/dump/QtGui/QHoverEvent.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{QHoverEvent QHoverEvent::QHoverEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [0xc8208ae980 0xc8208aea20 0xc8208aeb00 0xc8208aec60] } +&{oldPos QHoverEvent::oldPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QPoint [] } +&{oldPosF QHoverEvent::oldPosF commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QPointF & [] } +&{pos QHoverEvent::pos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QPoint [] } +&{posF QHoverEvent::posF commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QPointF & [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QIcon.txt b/internal/binding/dump/QtGui/QIcon.txt new file mode 100755 index 00000000..c0b420d2 --- /dev/null +++ b/internal/binding/dump/QtGui/QIcon.txt @@ -0,0 +1,35 @@ +######################################## FUNCTIONS ######################################## +&{QIcon QIcon::QIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non constructor false false [] } +&{QIcon QIcon::QIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non constructor false true 4 [0xc820c07720] } +&{QIcon QIcon::QIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non constructor false true 6 [0xc820c07920] } +&{QIcon QIcon::QIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non constructor false true 3 [0xc820c07b80] } +&{QIcon QIcon::QIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non constructor false true 2 [0xc820c07e20] } +&{QIcon QIcon::QIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non constructor false true 5 [0xc820bc8040] } +&{actualSize QIcon::actualSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non plain false true 2 QSize [0xc820bc8240 0xc820bc82c0 0xc820bc8380 0xc820bc8400] } +&{actualSize QIcon::actualSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non plain false false QSize [0xc820bc8600 0xc820bc86c0 0xc820bc8740] } +&{addFile QIcon::addFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non plain false false void [0xc820bc8900 0xc820bc8980 0xc820bc8a40 0xc820bc8ac0] } +&{addPixmap QIcon::addPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non plain false false void [0xc820bc8c20 0xc820bc8ca0 0xc820bc8d20] } +&{availableSizes QIcon::availableSizes commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non plain false false QList [0xc820bc8ee0 0xc820bc8f60] } +&{cacheKey QIcon::cacheKey commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non plain false false qint64 [] } +&{fromTheme QIcon::fromTheme commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non plain true false QIcon [0xc820bc9440 0xc820bc94c0] } +&{hasThemeIcon QIcon::hasThemeIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non plain true false bool [0xc820bc96e0] } +&{isNull QIcon::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non plain false false bool [] } +&{name QIcon::name commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non plain false false QString [] } +&{operator QVariant QIcon::operator QVariant commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non plain false false [] } +&{operator= QIcon::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non plain false true 2 QIcon & [0xc820bc9ba0] } +&{operator= QIcon::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non plain false false QIcon & [0xc820bc9d00] } +&{paint QIcon::paint commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non plain false false void [0xc820bc9e80 0xc820bc9f00 0xc820bc9fc0 0xc820b060c0 0xc820b06260] } +&{paint QIcon::paint commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non plain false true 2 void [0xc820b064c0 0xc820b06580 0xc820b06640 0xc820b06760 0xc820b06860 0xc820b06900 0xc820b06a40 0xc820b06b00] } +&{pixmap QIcon::pixmap commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non plain false true 2 QPixmap [0xc820b06d60 0xc820b06e40 0xc820b06ee0 0xc820b06fc0] } +&{pixmap QIcon::pixmap commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non plain false false QPixmap [0xc820b071c0 0xc820b07280 0xc820b07340] } +&{pixmap QIcon::pixmap commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non plain false true 4 QPixmap [0xc820b07560 0xc820b07600 0xc820b076c0] } +&{pixmap QIcon::pixmap commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non plain false true 3 QPixmap [0xc820b07880 0xc820b07940 0xc820b079e0 0xc820b07a80] } +&{setThemeName QIcon::setThemeName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non plain true false void [0xc820b07e40] } +&{setThemeSearchPaths QIcon::setThemeSearchPaths commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non plain true false void [0xc820cd4100] } +&{swap QIcon::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non plain false false void [0xc820cd42c0] } +&{themeName QIcon::themeName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non plain true false QString [] } +&{themeSearchPaths QIcon::themeSearchPaths commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non plain true false QStringList [] } +&{~QIcon QIcon::~QIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qicon.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Mode QIcon::Mode commendable public [0xc820c06d20 0xc820c06dc0 0xc820c06ee0 0xc820c06fa0]} +&{State QIcon::State commendable public [0xc820c071e0 0xc820c072a0]} diff --git a/internal/binding/dump/QtGui/QIconDragEvent.txt b/internal/binding/dump/QtGui/QIconDragEvent.txt new file mode 100755 index 00000000..b016d747 --- /dev/null +++ b/internal/binding/dump/QtGui/QIconDragEvent.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{QIconDragEvent QIconDragEvent::QIconDragEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QIconEngine.txt b/internal/binding/dump/QtGui/QIconEngine.txt new file mode 100755 index 00000000..159901c9 --- /dev/null +++ b/internal/binding/dump/QtGui/QIconEngine.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{actualSize QIconEngine::actualSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qiconengine.h impure plain false false QSize [0xc820cd5220 0xc820cd52c0 0xc820cd5400] } +&{addFile QIconEngine::addFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qiconengine.h impure plain false false void [0xc820cd56a0 0xc820cd5760 0xc820cd58a0 0xc820cd5980] } +&{addPixmap QIconEngine::addPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qiconengine.h impure plain false false void [0xc820cd5ce0 0xc820cd5d60 0xc820cd5e00] } +&{availableSizes QIconEngine::availableSizes commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qiconengine.h impure plain false false QList [0xc820d92140 0xc820d921c0] } +&{clone QIconEngine::clone commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qiconengine.h pure plain false false QIconEngine * [] } +&{iconName QIconEngine::iconName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qiconengine.h impure plain false false QString [] } +&{key QIconEngine::key commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qiconengine.h impure plain false false QString [] } +&{paint QIconEngine::paint commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qiconengine.h pure plain false false void [0xc820d92680 0xc820d92700 0xc820d92780 0xc820d92800] } +&{pixmap QIconEngine::pixmap commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qiconengine.h impure plain false false QPixmap [0xc820d929e0 0xc820d92a60 0xc820d92ae0] } +&{read QIconEngine::read commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qiconengine.h impure plain false false bool [0xc820d92cc0] } +&{virtual_hook QIconEngine::virtual_hook commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qiconengine.h impure plain false false void [0xc820d92e80 0xc820d92f00] } +&{write QIconEngine::write commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qiconengine.h impure plain false false bool [0xc820d930c0] } +&{~QIconEngine QIconEngine::~QIconEngine commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qiconengine.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{IconEngineHook QIconEngine::IconEngineHook commendable public [0xc820cd4de0 0xc820cd4ee0]} diff --git a/internal/binding/dump/QtGui/QIconEnginePlugin.txt b/internal/binding/dump/QtGui/QIconEnginePlugin.txt new file mode 100755 index 00000000..a444589a --- /dev/null +++ b/internal/binding/dump/QtGui/QIconEnginePlugin.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{QIconEnginePlugin QIconEnginePlugin::QIconEnginePlugin commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qiconengineplugin.h non constructor false false [0xc820d93540] } +&{create QIconEnginePlugin::create commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qiconengineplugin.h pure plain false false QIconEngine * [0xc820d937c0] } +&{~QIconEnginePlugin QIconEnginePlugin::~QIconEnginePlugin commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qiconengineplugin.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QImage.txt b/internal/binding/dump/QtGui/QImage.txt new file mode 100755 index 00000000..51ec6ccc --- /dev/null +++ b/internal/binding/dump/QtGui/QImage.txt @@ -0,0 +1,100 @@ +######################################## FUNCTIONS ######################################## +&{colorCount QImage::colorCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.cpp non plain false false int [] } +&{copy QImage::copy commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.cpp non plain false false QImage [0xc820d82840] } +&{fill QImage::fill commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.cpp non plain false true 2 void [0xc820d82a40] } +&{fill QImage::fill commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.cpp non plain false true 3 void [0xc820d82cc0] } +&{fill QImage::fill commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.cpp non plain false false void [0xc820d82ee0] } +&{fromData QImage::fromData commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.cpp non plain true false QImage [0xc820d83120 0xc820d83240 0xc820d83300] } +&{height QImage::height commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.cpp non plain false false int [] } +&{isNull QImage::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.cpp non plain false false bool [] } +&{loadFromData QImage::loadFromData commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.cpp non plain false false bool [0xc820d837e0 0xc820d838a0 0xc820d83960] } +&{offset QImage::offset commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.cpp non plain false false QPoint [] } +&{operator!= QImage::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.cpp non plain false false bool [0xc820d83c80] } +&{operator== QImage::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.cpp non plain false false bool [0xc820d83ee0] } +&{rect QImage::rect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.cpp non plain false false QRect [] } +&{scaled QImage::scaled commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.cpp non plain false false QImage [0xc820d62200 0xc820d62320 0xc820d62480] } +&{scaledToHeight QImage::scaledToHeight commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.cpp non plain false false QImage [0xc820d62740 0xc820d62840] } +&{scaledToWidth QImage::scaledToWidth commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.cpp non plain false false QImage [0xc820d62b80 0xc820d62ca0] } +&{setColor QImage::setColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.cpp non plain false false void [0xc820d62f60 0xc820d63060] } +&{setOffset QImage::setOffset commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.cpp non plain false false void [0xc820d632a0] } +&{setText QImage::setText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.cpp non plain false false void [0xc820d63500 0xc820d635c0] } +&{size QImage::size commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.cpp non plain false false QSize [] } +&{trueMatrix QImage::trueMatrix commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.cpp non plain true false QMatrix [0xc820d63980 0xc820d63a40 0xc820d63b40] } +&{trueMatrix QImage::trueMatrix commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.cpp non plain true true 2 QTransform [0xc820d63f20 0xc820d50080 0xc820d501a0] } +&{width QImage::width commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.cpp non plain false false int [] } +&{QImage QImage::QImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non constructor false false [] } +&{QImage QImage::QImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non constructor false true 11 [0xc820d36be0] } +&{QImage QImage::QImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non constructor false true 10 [0xc820d36f00] } +&{QImage QImage::QImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non constructor false true 2 [0xc820d37160 0xc820d37280] } +&{QImage QImage::QImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non constructor false true 9 [0xc820d37520 0xc820d37640] } +&{QImage QImage::QImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non constructor false true 8 [0xc820d37880] } +&{QImage QImage::QImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non constructor false true 5 [0xc820d37bc0 0xc820d37c80 0xc820d37d80 0xc820d37ec0 0xc820d37fc0 0xc820d24240] } +&{QImage QImage::QImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non constructor false true 7 [0xc820d244a0 0xc820d245c0 0xc820d24740 0xc820d247e0 0xc820d24920 0xc820d24a60 0xc820d24b40] } +&{QImage QImage::QImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non constructor false true 3 [0xc820d24da0 0xc820d24f40 0xc820d24fe0] } +&{QImage QImage::QImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non constructor false true 4 [0xc820d252a0 0xc820d253e0 0xc820d254c0 0xc820d255a0 0xc820d256e0 0xc820d257e0] } +&{QImage QImage::QImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non constructor false true 6 [0xc820d259a0 0xc820d25a80 0xc820d25b40 0xc820d25cc0 0xc820d25e00 0xc820d25f00 0xc820d25fe0] } +&{allGray QImage::allGray commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false bool [] } +&{bitPlaneCount QImage::bitPlaneCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false int [] } +&{bits QImage::bits commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false uchar * [] } +&{bits QImage::bits commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false true 2 const uchar * [] } +&{byteCount QImage::byteCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false int [] } +&{bytesPerLine QImage::bytesPerLine commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false int [] } +&{cacheKey QImage::cacheKey commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false qint64 [] } +&{color QImage::color commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false QRgb [0xc820d0ae40] } +&{colorTable QImage::colorTable commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false QVector [] } +&{constBits QImage::constBits commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false const uchar * [] } +&{constScanLine QImage::constScanLine commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false const uchar * [0xc820d0b3c0] } +&{convertToFormat QImage::convertToFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false true 2 QImage [0xc820d0b660 0xc820d0b760 0xc820d0b8a0] } +&{copy QImage::copy commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false true 2 QImage [0xc820cf4280 0xc820cf4340 0xc820cf4420 0xc820cf44e0] } +&{createAlphaMask QImage::createAlphaMask commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false QImage [0xc820cf4800] } +&{createHeuristicMask QImage::createHeuristicMask commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false QImage [0xc820cf4b00] } +&{createMaskFromColor QImage::createMaskFromColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false QImage [0xc820cf4d80 0xc820cf4e40] } +&{depth QImage::depth commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false int [] } +&{devicePixelRatio QImage::devicePixelRatio commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false qreal [] } +&{dotsPerMeterX QImage::dotsPerMeterX commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false int [] } +&{dotsPerMeterY QImage::dotsPerMeterY commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false int [] } +&{format QImage::format commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false Format [] } +&{fromData QImage::fromData commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain true true 2 QImage [0xc820cf5ba0 0xc820cf5d40] } +&{hasAlphaChannel QImage::hasAlphaChannel commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false bool [] } +&{invertPixels QImage::invertPixels commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false void [0xc820ca0120] } +&{isGrayscale QImage::isGrayscale commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false bool [] } +&{load QImage::load commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false true 2 bool [0xc820ca0800 0xc820ca0980] } +&{load QImage::load commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false bool [0xc820ca0c00 0xc820ca0ce0] } +&{loadFromData QImage::loadFromData commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false true 2 bool [0xc820ca1060 0xc820ca11a0] } +&{operator QVariant QImage::operator QVariant commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false [] } +&{operator= QImage::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false true 2 QImage & [0xc820c8c1c0] } +&{operator= QImage::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false QImage & [0xc820c8c5a0] } +&{pixel QImage::pixel commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false QRgb [0xc820c8c7e0] } +&{pixel QImage::pixel commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false true 2 QRgb [0xc820c8cb40 0xc820c8cca0] } +&{pixelFormat QImage::pixelFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false QPixelFormat [] } +&{pixelIndex QImage::pixelIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false int [0xc820c8d1e0] } +&{pixelIndex QImage::pixelIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false true 2 int [0xc820c8d620 0xc820c8d760] } +&{save QImage::save commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false true 2 bool [0xc820c8de60 0xc820c8df40 0xc820c760a0] } +&{save QImage::save commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false bool [0xc820c76260 0xc820c76340 0xc820c763c0] } +&{scaled QImage::scaled commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false true 2 QImage [0xc820c765e0 0xc820c76700 0xc820c76840 0xc820c76a80] } +&{scanLine QImage::scanLine commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false uchar * [0xc820c76de0] } +&{scanLine QImage::scanLine commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false true 2 const uchar * [0xc820c77120] } +&{setColorCount QImage::setColorCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false void [0xc820c77960] } +&{setColorTable QImage::setColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false void [0xc820c77dc0] } +&{setDevicePixelRatio QImage::setDevicePixelRatio commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false void [0xc820c62160] } +&{setDotsPerMeterX QImage::setDotsPerMeterX commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false void [0xc820c62500] } +&{setDotsPerMeterY QImage::setDotsPerMeterY commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false void [0xc820c628e0] } +&{setPixel QImage::setPixel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false void [0xc820c62e40 0xc820c62ee0] } +&{setPixel QImage::setPixel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false true 2 void [0xc820c631a0 0xc820c63340 0xc820c63420] } +&{smoothScaled QImage::smoothScaled commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false QImage [0xc820c63ba0 0xc820c63c80] } +&{swap QImage::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false void [0xc820c63f40] } +&{text QImage::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false QString [0xc820c48660] } +&{textKeys QImage::textKeys commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false QStringList [] } +&{toImageFormat QImage::toImageFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain true false QImage::Format [0xc820c49040] } +&{toPixelFormat QImage::toPixelFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain true false QPixelFormat [0xc820c49380] } +&{transformed QImage::transformed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false QImage [0xc820c495e0 0xc820c49700] } +&{transformed QImage::transformed commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false true 2 QImage [0xc820c49b40 0xc820c49ce0] } +&{valid QImage::valid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false false bool [0xc820c49fe0] } +&{valid QImage::valid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non plain false true 2 bool [0xc820c34360 0xc820c344c0] } +&{~QImage QImage::~QImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage.h non destructor false false [] } +&{convertToFormat QImage::convertToFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage_compat.cpp non plain false false QImage [0xc820c34900 0xc820c34ae0] } +&{mirrored QImage::mirrored commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage_compat.cpp non plain false false QImage [0xc820c34d80 0xc820c34e00] } +&{rgbSwapped QImage::rgbSwapped commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimage_compat.cpp non plain false false QImage [] } +######################################## ENUMS ######################################## +&{Format QImage::Format commendable public [0xc820d505c0 0xc820d506c0 0xc820d507e0 0xc820d508e0 0xc820d50a40 0xc820d50b80 0xc820d50c60 0xc820d50e40 0xc820d50fc0 0xc820d510e0 0xc820d51200 0xc820d51380 0xc820d51480 0xc820d515a0 0xc820d51660 0xc820d51720 0xc820d518e0 0xc820d51980 0xc820d51ae0 0xc820d51be0 0xc820d51d00 0xc820d51e60 0xc820d51f40 0xc820d360a0 0xc820d361e0]} +&{InvertMode QImage::InvertMode commendable public [0xc820d365c0 0xc820d36740]} diff --git a/internal/binding/dump/QtGui/QImageIOHandler.txt b/internal/binding/dump/QtGui/QImageIOHandler.txt new file mode 100755 index 00000000..d9cb91d6 --- /dev/null +++ b/internal/binding/dump/QtGui/QImageIOHandler.txt @@ -0,0 +1,24 @@ +######################################## FUNCTIONS ######################################## +&{QImageIOHandler QImageIOHandler::QImageIOHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimageiohandler.h non constructor false false [] } +&{canRead QImageIOHandler::canRead commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimageiohandler.h pure plain false false bool [] } +&{currentImageNumber QImageIOHandler::currentImageNumber commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimageiohandler.h impure plain false false int [] } +&{currentImageRect QImageIOHandler::currentImageRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimageiohandler.h impure plain false false QRect [] } +&{device QImageIOHandler::device commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimageiohandler.h non plain false false QIODevice * [] } +&{format QImageIOHandler::format commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimageiohandler.h non plain false false QByteArray [] } +&{imageCount QImageIOHandler::imageCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimageiohandler.h impure plain false false int [] } +&{jumpToImage QImageIOHandler::jumpToImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimageiohandler.h impure plain false false bool [0xc820c25080] } +&{jumpToNextImage QImageIOHandler::jumpToNextImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimageiohandler.h impure plain false false bool [] } +&{loopCount QImageIOHandler::loopCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimageiohandler.h impure plain false false int [] } +&{nextImageDelay QImageIOHandler::nextImageDelay commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimageiohandler.h impure plain false false int [] } +&{option QImageIOHandler::option commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimageiohandler.h impure plain false false QVariant [0xc820c25b00] } +&{read QImageIOHandler::read commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimageiohandler.h pure plain false false bool [0xc820c25f60] } +&{setDevice QImageIOHandler::setDevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimageiohandler.h non plain false false void [0xc820c16320] } +&{setFormat QImageIOHandler::setFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimageiohandler.h non plain false false void [0xc820c16720] } +&{setFormat QImageIOHandler::setFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimageiohandler.h non plain false true 2 void [0xc820c16b80] } +&{setOption QImageIOHandler::setOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimageiohandler.h impure plain false false void [0xc820c16f00 0xc820c16fa0] } +&{supportsOption QImageIOHandler::supportsOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimageiohandler.h impure plain false false bool [0xc820c172e0] } +&{write QImageIOHandler::write commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimageiohandler.h impure plain false false bool [0xc820c17640] } +&{~QImageIOHandler QImageIOHandler::~QImageIOHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimageiohandler.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{ImageOption QImageIOHandler::ImageOption commendable public [0xc820c35620 0xc820c356c0 0xc820c35780 0xc820c35840 0xc820c35940 0xc820c35a00 0xc820c35ae0 0xc820c35bc0 0xc820c35d00 0xc820c35d80 0xc820c35f20 0xc820c2c040 0xc820c2c100 0xc820c2c1a0 0xc820c2c260 0xc820c2c320 0xc820c2c440 0xc820c2c580 0xc820c2c780 0xc820c2c920]} +&{Transformation QImageIOHandler::Transformation commendable public QImageIOHandler::Transformations [0xc820c2cd60 0xc820c2cf20 0xc820c2d0c0 0xc820c2d280 0xc820c2d3c0 0xc820c2d560 0xc820c2d780 0xc820c2d960]} diff --git a/internal/binding/dump/QtGui/QImageIOPlugin.txt b/internal/binding/dump/QtGui/QImageIOPlugin.txt new file mode 100755 index 00000000..7a922c62 --- /dev/null +++ b/internal/binding/dump/QtGui/QImageIOPlugin.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{QImageIOPlugin QImageIOPlugin::QImageIOPlugin commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimageiohandler.h non constructor false false [0xc820bc01e0] } +&{capabilities QImageIOPlugin::capabilities commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimageiohandler.h pure plain false false Capabilities [0xc820bc0440 0xc820bc04e0] } +&{create QImageIOPlugin::create commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimageiohandler.h pure plain false false QImageIOHandler * [0xc820bc07e0 0xc820bc0880] } +&{~QImageIOPlugin QImageIOPlugin::~QImageIOPlugin commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimageiohandler.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{Capability QImageIOPlugin::Capability commendable public QImageIOPlugin::Capabilities [0xc820c17c60 0xc820c17d20 0xc820c17dc0]} diff --git a/internal/binding/dump/QtGui/QImageReader.txt b/internal/binding/dump/QtGui/QImageReader.txt new file mode 100755 index 00000000..50d980af --- /dev/null +++ b/internal/binding/dump/QtGui/QImageReader.txt @@ -0,0 +1,54 @@ +######################################## FUNCTIONS ######################################## +&{QImageReader QImageReader::QImageReader commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non constructor false false [] } +&{QImageReader QImageReader::QImageReader commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non constructor false true 2 [0xc820bc1400 0xc820bc14a0] } +&{QImageReader QImageReader::QImageReader commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non constructor false true 3 [0xc820bc16a0 0xc820bc1780] } +&{autoDetectImageFormat QImageReader::autoDetectImageFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false bool [] } +&{autoTransform QImageReader::autoTransform commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false bool [] } +&{backgroundColor QImageReader::backgroundColor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false QColor [] } +&{canRead QImageReader::canRead commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false bool [] } +&{clipRect QImageReader::clipRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false QRect [] } +&{currentImageNumber QImageReader::currentImageNumber commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false int [] } +&{currentImageRect QImageReader::currentImageRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false QRect [] } +&{decideFormatFromContent QImageReader::decideFormatFromContent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false bool [] } +&{device QImageReader::device commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false QIODevice * [] } +&{error QImageReader::error commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false ImageReaderError [] } +&{errorString QImageReader::errorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false QString [] } +&{fileName QImageReader::fileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false QString [] } +&{format QImageReader::format commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false QByteArray [] } +&{imageCount QImageReader::imageCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false int [] } +&{imageFormat QImageReader::imageFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain true true 3 QByteArray [0xc820ba89c0] } +&{imageFormat QImageReader::imageFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain true true 2 QByteArray [0xc820ba8b80] } +&{imageFormat QImageReader::imageFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false QImage::Format [] } +&{jumpToImage QImageReader::jumpToImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false bool [0xc820ba8e60] } +&{jumpToNextImage QImageReader::jumpToNextImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false bool [] } +&{loopCount QImageReader::loopCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false int [] } +&{nextImageDelay QImageReader::nextImageDelay commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false int [] } +&{quality QImageReader::quality commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false int [] } +&{read QImageReader::read commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false QImage [] } +&{read QImageReader::read commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false true 2 bool [0xc820ba9620] } +&{scaledClipRect QImageReader::scaledClipRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false QRect [] } +&{scaledSize QImageReader::scaledSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false QSize [] } +&{setAutoDetectImageFormat QImageReader::setAutoDetectImageFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false void [0xc820ba9a80] } +&{setAutoTransform QImageReader::setAutoTransform commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false void [0xc820ba9c60] } +&{setBackgroundColor QImageReader::setBackgroundColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false void [0xc820ba9ea0] } +&{setClipRect QImageReader::setClipRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false void [0xc820b8e100] } +&{setDecideFormatFromContent QImageReader::setDecideFormatFromContent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false void [0xc820b8e320] } +&{setDevice QImageReader::setDevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false void [0xc820b8e500] } +&{setFileName QImageReader::setFileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false void [0xc820b8e6c0] } +&{setFormat QImageReader::setFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false void [0xc820b8e8c0] } +&{setQuality QImageReader::setQuality commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false void [0xc820b8eb00] } +&{setScaledClipRect QImageReader::setScaledClipRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false void [0xc820b8ede0] } +&{setScaledSize QImageReader::setScaledSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false void [0xc820b8f000] } +&{size QImageReader::size commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false QSize [] } +&{subType QImageReader::subType commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false QByteArray [] } +&{supportedImageFormats QImageReader::supportedImageFormats commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain true false QList [] } +&{supportedMimeTypes QImageReader::supportedMimeTypes commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain true false QList [] } +&{supportedSubTypes QImageReader::supportedSubTypes commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false QList [] } +&{supportsAnimation QImageReader::supportsAnimation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false bool [] } +&{supportsOption QImageReader::supportsOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false bool [0xc820b8fac0] } +&{text QImageReader::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false QString [0xc820b8fd00] } +&{textKeys QImageReader::textKeys commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false QStringList [] } +&{transformation QImageReader::transformation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non plain false false QImageIOHandler::Transformations [] } +&{~QImageReader QImageReader::~QImageReader commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagereader.h non destructor false false [] } +######################################## ENUMS ######################################## +&{ImageReaderError QImageReader::ImageReaderError commendable public [0xc820bc0dc0 0xc820bc0e60 0xc820bc0f20 0xc820bc1000 0xc820bc10e0]} diff --git a/internal/binding/dump/QtGui/QImageWriter.txt b/internal/binding/dump/QtGui/QImageWriter.txt new file mode 100755 index 00000000..0e0a839b --- /dev/null +++ b/internal/binding/dump/QtGui/QImageWriter.txt @@ -0,0 +1,36 @@ +######################################## FUNCTIONS ######################################## +&{QImageWriter QImageWriter::QImageWriter commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non constructor false false [] } +&{QImageWriter QImageWriter::QImageWriter commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non constructor false true 2 [0xc820b7e980 0xc820b7ea40] } +&{QImageWriter QImageWriter::QImageWriter commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non constructor false true 3 [0xc820b7ec60 0xc820b7ed20] } +&{canWrite QImageWriter::canWrite commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain false false bool [] } +&{compression QImageWriter::compression commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain false false int [] } +&{device QImageWriter::device commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain false false QIODevice * [] } +&{error QImageWriter::error commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain false false ImageWriterError [] } +&{errorString QImageWriter::errorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain false false QString [] } +&{fileName QImageWriter::fileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain false false QString [] } +&{format QImageWriter::format commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain false false QByteArray [] } +&{gamma QImageWriter::gamma commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain false false float [] } +&{optimizedWrite QImageWriter::optimizedWrite commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain false false bool [] } +&{progressiveScanWrite QImageWriter::progressiveScanWrite commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain false false bool [] } +&{quality QImageWriter::quality commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain false false int [] } +&{setCompression QImageWriter::setCompression commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain false false void [0xc820b7fd80] } +&{setDevice QImageWriter::setDevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain false false void [0xc820b66180] } +&{setFileName QImageWriter::setFileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain false false void [0xc820b66360] } +&{setFormat QImageWriter::setFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain false false void [0xc820b665c0] } +&{setGamma QImageWriter::setGamma commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain false false void [0xc820b66840] } +&{setOptimizedWrite QImageWriter::setOptimizedWrite commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain false false void [0xc820b66ac0] } +&{setProgressiveScanWrite QImageWriter::setProgressiveScanWrite commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain false false void [0xc820b66ca0] } +&{setQuality QImageWriter::setQuality commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain false false void [0xc820b66ec0] } +&{setSubType QImageWriter::setSubType commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain false false void [0xc820b67160] } +&{setText QImageWriter::setText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain false false void [0xc820b673c0 0xc820b67460] } +&{setTransformation QImageWriter::setTransformation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain false false void [0xc820b676e0] } +&{subType QImageWriter::subType commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain false false QByteArray [] } +&{supportedImageFormats QImageWriter::supportedImageFormats commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain true false QList [] } +&{supportedMimeTypes QImageWriter::supportedMimeTypes commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain true false QList [] } +&{supportedSubTypes QImageWriter::supportedSubTypes commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain false false QList [] } +&{supportsOption QImageWriter::supportsOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain false false bool [0xc820b67fa0] } +&{transformation QImageWriter::transformation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain false false QImageIOHandler::Transformations [] } +&{write QImageWriter::write commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non plain false false bool [0xc820b56340] } +&{~QImageWriter QImageWriter::~QImageWriter commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qimagewriter.h non destructor false false [] } +######################################## ENUMS ######################################## +&{ImageWriterError QImageWriter::ImageWriterError commendable public [0xc820b7e400 0xc820b7e4e0 0xc820b7e580]} diff --git a/internal/binding/dump/QtGui/QInputEvent.txt b/internal/binding/dump/QtGui/QInputEvent.txt new file mode 100755 index 00000000..67c0a460 --- /dev/null +++ b/internal/binding/dump/QtGui/QInputEvent.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{modifiers QInputEvent::modifiers commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false Qt::KeyboardModifiers [] } +&{timestamp QInputEvent::timestamp commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false ulong [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QInputMethod.txt b/internal/binding/dump/QtGui/QInputMethod.txt new file mode 100755 index 00000000..e7adc915 --- /dev/null +++ b/internal/binding/dump/QtGui/QInputMethod.txt @@ -0,0 +1,27 @@ +######################################## FUNCTIONS ######################################## +&{cursorRectangle QInputMethod::cursorRectangle commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qinputmethod.cpp non plain false false QRectF [] } +&{inputDirection QInputMethod::inputDirection commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qinputmethod.cpp non plain false false Qt::LayoutDirection [] } +&{isAnimating QInputMethod::isAnimating commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qinputmethod.cpp non plain false false bool [] } +&{isVisible QInputMethod::isVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qinputmethod.cpp non plain false false bool [] } +&{keyboardRectangle QInputMethod::keyboardRectangle commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qinputmethod.cpp non plain false false QRectF [] } +&{locale QInputMethod::locale commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qinputmethod.cpp non plain false false QLocale [] } +&{animatingChanged QInputMethod::animatingChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qinputmethod.h non signal false false void [] } +&{commit QInputMethod::commit commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qinputmethod.h non slot false false void [] } +&{cursorRectangleChanged QInputMethod::cursorRectangleChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qinputmethod.h non signal false false void [] } +&{hide QInputMethod::hide commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qinputmethod.h non slot false false void [] } +&{inputDirectionChanged QInputMethod::inputDirectionChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qinputmethod.h non signal false false void [0xc820574f60] } +&{inputItemRectangle QInputMethod::inputItemRectangle commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qinputmethod.h non plain false false QRectF [] } +&{inputItemTransform QInputMethod::inputItemTransform commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qinputmethod.h non plain false false QTransform [] } +&{invokeAction QInputMethod::invokeAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qinputmethod.h non slot false false void [0xc8205754c0 0xc820575540] } +&{keyboardRectangleChanged QInputMethod::keyboardRectangleChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qinputmethod.h non signal false false void [] } +&{localeChanged QInputMethod::localeChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qinputmethod.h non signal false false void [] } +&{queryFocusObject QInputMethod::queryFocusObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qinputmethod.h non plain true false QVariant [0xc820575ae0 0xc820575c20] } +&{reset QInputMethod::reset commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qinputmethod.h non slot false false void [] } +&{setInputItemRectangle QInputMethod::setInputItemRectangle commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qinputmethod.h non plain false false void [0xc820575f20] } +&{setInputItemTransform QInputMethod::setInputItemTransform commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qinputmethod.h non plain false false void [0xc820524140] } +&{setVisible QInputMethod::setVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qinputmethod.h non plain false false void [0xc820524420] } +&{show QInputMethod::show commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qinputmethod.h non slot false false void [] } +&{update QInputMethod::update commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qinputmethod.h non slot false false void [0xc820524740] } +&{visibleChanged QInputMethod::visibleChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qinputmethod.h non signal false false void [] } +######################################## ENUMS ######################################## +&{Action QInputMethod::Action commendable public [0xc8205744e0 0xc820574560]} diff --git a/internal/binding/dump/QtGui/QInputMethodEvent.txt b/internal/binding/dump/QtGui/QInputMethodEvent.txt new file mode 100755 index 00000000..e1f52201 --- /dev/null +++ b/internal/binding/dump/QtGui/QInputMethodEvent.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{QInputMethodEvent QInputMethodEvent::QInputMethodEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [] } +&{QInputMethodEvent QInputMethodEvent::QInputMethodEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false true 3 [0xc82078c400] } +&{QInputMethodEvent QInputMethodEvent::QInputMethodEvent commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false true 2 [0xc82078c620 0xc82078c6c0] } +&{attributes QInputMethodEvent::attributes commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QList & [] } +&{commitString QInputMethodEvent::commitString commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QString & [] } +&{preeditString QInputMethodEvent::preeditString commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QString & [] } +&{replacementLength QInputMethodEvent::replacementLength commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +&{replacementStart QInputMethodEvent::replacementStart commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +&{setCommitString QInputMethodEvent::setCommitString commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false void [0xc82078cd60 0xc82078ce00 0xc82078cea0] } +######################################## ENUMS ######################################## +&{AttributeType QInputMethodEvent::AttributeType commendable public [0xc82089dd40 0xc82089de00 0xc82089df20 0xc82078c020 0xc82078c0c0]} diff --git a/internal/binding/dump/QtGui/QInputMethodQueryEvent.txt b/internal/binding/dump/QtGui/QInputMethodQueryEvent.txt new file mode 100755 index 00000000..1b9a0f9a --- /dev/null +++ b/internal/binding/dump/QtGui/QInputMethodQueryEvent.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QInputMethodQueryEvent QInputMethodQueryEvent::QInputMethodQueryEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [0xc82078d380] } +&{queries QInputMethodQueryEvent::queries commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false Qt::InputMethodQueries [] } +&{setValue QInputMethodQueryEvent::setValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false void [0xc82078d700 0xc82078d7c0] } +&{value QInputMethodQueryEvent::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QVariant [0xc82078d9e0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QIntValidator.txt b/internal/binding/dump/QtGui/QIntValidator.txt new file mode 100755 index 00000000..4af7eae4 --- /dev/null +++ b/internal/binding/dump/QtGui/QIntValidator.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{setBottom QIntValidator::setBottom commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.cpp non plain false false void [0xc82300e620] } +&{setTop QIntValidator::setTop commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.cpp non plain false false void [0xc82300e980] } +&{validate QIntValidator::validate commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.cpp impure plain false false QValidator::State [0xc82300ed20 0xc82300ede0] } +&{QIntValidator QIntValidator::QIntValidator commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h non constructor false false [0xc82300f0c0] } +&{QIntValidator QIntValidator::QIntValidator commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h non constructor false true 2 [0xc82300f3c0 0xc82300f460 0xc82300f540] } +&{bottom QIntValidator::bottom commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h non plain false false int [] } +&{fixup QIntValidator::fixup commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h impure plain false false void [0xc82300fd40] } +&{setRange QIntValidator::setRange commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h impure plain false false void [0xc823114020 0xc8231140a0] } +&{top QIntValidator::top commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h non plain false false int [] } +&{~QIntValidator QIntValidator::~QIntValidator commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QKeyEvent.txt b/internal/binding/dump/QtGui/QKeyEvent.txt new file mode 100755 index 00000000..8a06fdc9 --- /dev/null +++ b/internal/binding/dump/QtGui/QKeyEvent.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{matches QKeyEvent::matches commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.cpp non plain false false bool [0xc82078dee0] } +&{QKeyEvent QKeyEvent::QKeyEvent commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [0xc820888240 0xc820888320 0xc820888400 0xc820888620 0xc820888740 0xc8208888a0] } +&{QKeyEvent QKeyEvent::QKeyEvent commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false true 2 [0xc820888ba0 0xc820888c40 0xc820888dc0 0xc820888ec0 0xc820889040 0xc820889100 0xc8208891c0 0xc8208892c0 0xc8208893c0] } +&{count QKeyEvent::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +&{isAutoRepeat QKeyEvent::isAutoRepeat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false bool [] } +&{key QKeyEvent::key commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +&{modifiers QKeyEvent::modifiers commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false Qt::KeyboardModifiers [] } +&{nativeModifiers QKeyEvent::nativeModifiers commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false quint32 [] } +&{nativeScanCode QKeyEvent::nativeScanCode commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false quint32 [] } +&{nativeVirtualKey QKeyEvent::nativeVirtualKey commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false quint32 [] } +&{text QKeyEvent::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QString [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QKeySequence.txt b/internal/binding/dump/QtGui/QKeySequence.txt new file mode 100755 index 00000000..ede8e16b --- /dev/null +++ b/internal/binding/dump/QtGui/QKeySequence.txt @@ -0,0 +1,31 @@ +######################################## FUNCTIONS ######################################## +&{QKeySequence QKeySequence::QKeySequence commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qkeysequence.h non constructor false false [] } +&{QKeySequence QKeySequence::QKeySequence commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qkeysequence.h non constructor false true 5 [0xc820479ba0] } +&{QKeySequence QKeySequence::QKeySequence commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qkeysequence.h non constructor false true 4 [0xc820479ee0] } +&{QKeySequence QKeySequence::QKeySequence commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qkeysequence.h non constructor false true 2 [0xc8202902c0 0xc8202903a0] } +&{QKeySequence QKeySequence::QKeySequence commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qkeysequence.h non constructor false true 3 [0xc820290680 0xc8202907c0 0xc820290860 0xc820290960] } +&{count QKeySequence::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qkeysequence.h non plain false false int [] } +&{fromString QKeySequence::fromString commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qkeysequence.h non plain true false QKeySequence [0xc8202919c0 0xc820291ac0] } +&{isEmpty QKeySequence::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qkeysequence.h non plain false false bool [] } +&{keyBindings QKeySequence::keyBindings commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qkeysequence.h non plain true false QList [0xc82022e180] } +&{listFromString QKeySequence::listFromString commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qkeysequence.h non plain true false QList [0xc82022e6a0 0xc82022e7e0] } +&{listToString QKeySequence::listToString commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qkeysequence.h non plain true false QString [0xc82022ec20 0xc82022edc0] } +&{matches QKeySequence::matches commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qkeysequence.h non plain false false SequenceMatch [0xc82022f200] } +&{mnemonic QKeySequence::mnemonic commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qkeysequence.h non plain true false QKeySequence [0xc82022f6a0] } +&{operator QVariant QKeySequence::operator QVariant commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qkeysequence.h non plain false false [] } +&{operator!= QKeySequence::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qkeysequence.h non plain false false bool [0xc820208180] } +&{operator< QKeySequence::operator< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qkeysequence.h non plain false false bool [0xc820208740] } +&{operator<= QKeySequence::operator<= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qkeysequence.h non plain false false bool [0xc820208ce0] } +&{operator= QKeySequence::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qkeysequence.h non plain false true 2 QKeySequence & [0xc820209240] } +&{operator= QKeySequence::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qkeysequence.h non plain false false QKeySequence & [0xc8202096a0] } +&{operator== QKeySequence::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qkeysequence.h non plain false false bool [0xc820209bc0] } +&{operator> QKeySequence::operator> commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qkeysequence.h non plain false false bool [0xc8201ea040] } +&{operator>= QKeySequence::operator>= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qkeysequence.h non plain false false bool [0xc8201ea3e0] } +&{operator[] QKeySequence::operator[] commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qkeysequence.h non plain false false int [0xc8201ea6e0] } +&{swap QKeySequence::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qkeysequence.h non plain false false void [0xc8201eaa60] } +&{toString QKeySequence::toString commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qkeysequence.h non plain false false QString [0xc8201ead80] } +&{~QKeySequence QKeySequence::~QKeySequence commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qkeysequence.h non destructor false false [] } +######################################## ENUMS ######################################## +&{SequenceFormat QKeySequence::SequenceFormat commendable public [0xc8204f4720 0xc8204f47c0]} +&{SequenceMatch QKeySequence::SequenceMatch commendable public [0xc8204f49c0 0xc8204f4aa0 0xc8204f4b20]} +&{StandardKey QKeySequence::StandardKey commendable public [0xc8204f4d40 0xc8204f4de0 0xc8204f4e80 0xc8204f4f20 0xc8204f4fc0 0xc8204f50a0 0xc8204f5140 0xc8204f51c0 0xc8204f5280 0xc8204f5360 0xc8204f5440 0xc8204f54c0 0xc8204f5580 0xc8204f5620 0xc8204f5720 0xc8204f57a0 0xc8204f58c0 0xc8204f5980 0xc8204f5a00 0xc8204f5a80 0xc8204f5b60 0xc8204f5c20 0xc8204f5ca0 0xc8204f5de0 0xc8204f5f00 0xc8204f5fa0 0xc8204be080 0xc8204be160 0xc8204be2c0 0xc8204be380 0xc8204be440 0xc8204be580 0xc8204be680 0xc8204be7c0 0xc8204be8c0 0xc8204be9a0 0xc8204bea80 0xc8204beb40 0xc8204becc0 0xc8204bede0 0xc8204beec0 0xc8204bf020 0xc8204bf180 0xc8204bf320 0xc8204bf460 0xc8204bf580 0xc8204bf720 0xc8204bf860 0xc8204bf960 0xc8204bfac0 0xc8204bfc00 0xc8204bfce0 0xc8204bfe00 0xc8204bff00 0xc8204bffc0 0xc820478100 0xc8204781e0 0xc820478380 0xc8204784e0 0xc820478680 0xc8204787e0 0xc820478940 0xc820478b40 0xc820478c80 0xc820478d60 0xc820478e80 0xc820478f00 0xc820479000 0xc820479140 0xc8204792a0]} diff --git a/internal/binding/dump/QtGui/QLinearGradient.txt b/internal/binding/dump/QtGui/QLinearGradient.txt new file mode 100755 index 00000000..f4ffe26f --- /dev/null +++ b/internal/binding/dump/QtGui/QLinearGradient.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{QLinearGradient QLinearGradient::QLinearGradient commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.cpp non constructor false true 3 [0xc821f8dc00 0xc821f8dc80 0xc821f8dd00 0xc821f8dd80] } +&{QLinearGradient QLinearGradient::QLinearGradient commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non constructor false false [] } +&{QLinearGradient QLinearGradient::QLinearGradient commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non constructor false true 2 [0xc821f9e000 0xc821f9e080] } +&{finalStop QLinearGradient::finalStop commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false QPointF [] } +&{setFinalStop QLinearGradient::setFinalStop commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false void [0xc821f9e340] } +&{setFinalStop QLinearGradient::setFinalStop commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false true 2 void [0xc821f9e4e0 0xc821f9e560] } +&{setStart QLinearGradient::setStart commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false void [0xc821f9e720] } +&{setStart QLinearGradient::setStart commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false true 2 void [0xc821f9e900 0xc821f9e980] } +&{start QLinearGradient::start commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false QPointF [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QMatrix4x4.txt b/internal/binding/dump/QtGui/QMatrix4x4.txt new file mode 100755 index 00000000..79477221 --- /dev/null +++ b/internal/binding/dump/QtGui/QMatrix4x4.txt @@ -0,0 +1,64 @@ +######################################## FUNCTIONS ######################################## +&{QMatrix4x4 QMatrix4x4::QMatrix4x4 commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non constructor false false [] } +&{QMatrix4x4 QMatrix4x4::QMatrix4x4 commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non constructor false true 5 [0xc82039b020] } +&{QMatrix4x4 QMatrix4x4::QMatrix4x4 commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non constructor false true 8 [0xc82039b3c0] } +&{QMatrix4x4 QMatrix4x4::QMatrix4x4 commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non constructor false true 7 [0xc82039b7e0] } +&{QMatrix4x4 QMatrix4x4::QMatrix4x4 commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non constructor false true 3 [0xc82039bba0] } +&{QMatrix4x4 QMatrix4x4::QMatrix4x4 commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non constructor false true 4 [0xc82039bee0 0xc82039bfe0 0xc820384060 0xc820384120 0xc820384220 0xc8203842a0 0xc820384320 0xc8203843a0 0xc820384480 0xc8203845a0 0xc820384660 0xc820384700 0xc820384800 0xc8203848e0 0xc8203849a0 0xc820384ae0] } +&{determinant QMatrix4x4::determinant commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false double [] } +&{column QMatrix4x4::column commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false QVector4D [0xc82036c8c0] } +&{constData QMatrix4x4::constData commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false const float * [] } +&{copyDataTo QMatrix4x4::copyDataTo commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false void [0xc82036cd00] } +&{data QMatrix4x4::data commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false float * [] } +&{data QMatrix4x4::data commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false true 2 const float * [] } +&{fill QMatrix4x4::fill commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false void [0xc82036d180] } +&{frustum QMatrix4x4::frustum commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false void [0xc82036d6c0 0xc82036d800 0xc82036d920 0xc82036da20 0xc82036db60 0xc82036dca0] } +&{inverted QMatrix4x4::inverted commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false QMatrix4x4 [0xc82036df40] } +&{isAffine QMatrix4x4::isAffine commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false bool [] } +&{isIdentity QMatrix4x4::isIdentity commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false bool [] } +&{lookAt QMatrix4x4::lookAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false void [0xc820356580 0xc820356700 0xc820356800] } +&{map QMatrix4x4::map commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false QPoint [0xc820356a60] } +&{map QMatrix4x4::map commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false true 2 QPointF [0xc820356c00] } +&{map QMatrix4x4::map commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false true 3 QVector3D [0xc820356da0] } +&{map QMatrix4x4::map commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false true 4 QVector4D [0xc820357040] } +&{mapRect QMatrix4x4::mapRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false QRect [0xc820357460] } +&{mapRect QMatrix4x4::mapRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false true 2 QRectF [0xc820357740] } +&{mapVector QMatrix4x4::mapVector commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false QVector3D [0xc820357a40] } +&{normalMatrix QMatrix4x4::normalMatrix commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false QMatrix3x3 [] } +&{operator QVariant QMatrix4x4::operator QVariant commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false [] } +&{operator!= QMatrix4x4::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false bool [0xc820344380] } +&{operator() QMatrix4x4::operator() commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false true 2 float & [0xc820344760 0xc820344860] } +&{operator() QMatrix4x4::operator() commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false const float & [0xc820344b60 0xc820344c00] } +&{operator*= QMatrix4x4::operator*= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false QMatrix4x4 & [0xc820344ee0] } +&{operator*= QMatrix4x4::operator*= commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false true 2 QMatrix4x4 & [0xc820345360] } +&{operator+= QMatrix4x4::operator+= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false QMatrix4x4 & [0xc8203457a0] } +&{operator-= QMatrix4x4::operator-= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false QMatrix4x4 & [0xc820345bc0] } +&{operator/= QMatrix4x4::operator/= commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false QMatrix4x4 & [0xc820345fc0] } +&{operator== QMatrix4x4::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false bool [0xc82032e3a0] } +&{optimize QMatrix4x4::optimize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false void [] } +&{ortho QMatrix4x4::ortho commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false true 2 void [0xc82032ea40] } +&{ortho QMatrix4x4::ortho commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false true 3 void [0xc82032ee20] } +&{ortho QMatrix4x4::ortho commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false void [0xc82032f2e0 0xc82032f3a0 0xc82032f440 0xc82032f560 0xc82032f620 0xc82032f6c0] } +&{perspective QMatrix4x4::perspective commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false void [0xc82032f9c0 0xc82032fa40 0xc82032fb00 0xc82032fba0] } +&{rotate QMatrix4x4::rotate commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false true 2 void [0xc82032fe80] } +&{rotate QMatrix4x4::rotate commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false void [0xc820314260 0xc8203143e0] } +&{rotate QMatrix4x4::rotate commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false true 3 void [0xc820314760 0xc820314820 0xc8203148e0 0xc8203149a0] } +&{row QMatrix4x4::row commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false QVector4D [0xc820314ca0] } +&{scale QMatrix4x4::scale commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false void [0xc820315000] } +&{scale QMatrix4x4::scale commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false true 4 void [0xc820315520] } +&{scale QMatrix4x4::scale commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false true 2 void [0xc8203158e0 0xc820315a20] } +&{scale QMatrix4x4::scale commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false true 3 void [0xc820315e20 0xc820315f60 0xc8202fe060] } +&{setColumn QMatrix4x4::setColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false void [0xc8202fe3e0 0xc8202fe4a0] } +&{setRow QMatrix4x4::setRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false void [0xc8202fe8a0 0xc8202fe980] } +&{setToIdentity QMatrix4x4::setToIdentity commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false void [] } +&{toAffine QMatrix4x4::toAffine commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false QMatrix [] } +&{toGenericMatrix QMatrix4x4::toGenericMatrix commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false QGenericMatrix [] } +&{toTransform QMatrix4x4::toTransform commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false QTransform [] } +&{toTransform QMatrix4x4::toTransform commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false true 2 QTransform [0xc8202ff740] } +&{translate QMatrix4x4::translate commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false void [0xc8202ffbc0] } +&{translate QMatrix4x4::translate commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false true 2 void [0xc8202ec020 0xc8202ec140] } +&{translate QMatrix4x4::translate commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false true 3 void [0xc8202ec680 0xc8202ec700 0xc8202ec800] } +&{transposed QMatrix4x4::transposed commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false QMatrix4x4 [] } +&{viewport QMatrix4x4::viewport commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false true 2 void [0xc8202ecc20] } +&{viewport QMatrix4x4::viewport commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qmatrix4x4.h non plain false false void [0xc8202ed0a0 0xc8202ed180 0xc8202ed220 0xc8202ed3c0 0xc8202ed500 0xc8202ed5e0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QMouseEvent.txt b/internal/binding/dump/QtGui/QMouseEvent.txt new file mode 100755 index 00000000..d803c6a9 --- /dev/null +++ b/internal/binding/dump/QtGui/QMouseEvent.txt @@ -0,0 +1,18 @@ +######################################## FUNCTIONS ######################################## +&{QMouseEvent QMouseEvent::QMouseEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [0xc820877fe0 0xc82085e0c0 0xc82085e1c0 0xc82085e300 0xc82085e440] } +&{QMouseEvent QMouseEvent::QMouseEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false true 2 [0xc82085e800 0xc82085e8c0 0xc82085e9e0 0xc82085eae0 0xc82085eba0 0xc82085ecc0] } +&{QMouseEvent QMouseEvent::QMouseEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false true 3 [0xc82085f060 0xc82085f0e0 0xc82085f240 0xc82085f2e0 0xc82085f3e0 0xc82085f460 0xc82085f620] } +&{button QMouseEvent::button commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false Qt::MouseButton [] } +&{buttons QMouseEvent::buttons commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false Qt::MouseButtons [] } +&{flags QMouseEvent::flags commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false Qt::MouseEventFlags [] } +&{globalPos QMouseEvent::globalPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QPoint [] } +&{globalX QMouseEvent::globalX commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +&{globalY QMouseEvent::globalY commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +&{localPos QMouseEvent::localPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QPointF & [] } +&{pos QMouseEvent::pos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QPoint [] } +&{screenPos QMouseEvent::screenPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QPointF & [] } +&{source QMouseEvent::source commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false Qt::MouseEventSource [] } +&{windowPos QMouseEvent::windowPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QPointF & [] } +&{x QMouseEvent::x commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +&{y QMouseEvent::y commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QMoveEvent.txt b/internal/binding/dump/QtGui/QMoveEvent.txt new file mode 100755 index 00000000..ca5cfaa7 --- /dev/null +++ b/internal/binding/dump/QtGui/QMoveEvent.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{QMoveEvent QMoveEvent::QMoveEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [0xc82084d780 0xc82084d8a0] } +&{oldPos QMoveEvent::oldPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QPoint & [] } +&{pos QMoveEvent::pos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QPoint & [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QMovie.txt b/internal/binding/dump/QtGui/QMovie.txt new file mode 100755 index 00000000..b87359d9 --- /dev/null +++ b/internal/binding/dump/QtGui/QMovie.txt @@ -0,0 +1,44 @@ +######################################## FUNCTIONS ######################################## +&{cacheMode QMovie::cacheMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.cpp non plain false false CacheMode [] } +&{setCacheMode QMovie::setCacheMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.cpp non plain false false void [0xc820b568c0] } +&{setSpeed QMovie::setSpeed commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.cpp non slot false false void [0xc820b56a80] } +&{speed QMovie::speed commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.cpp non plain false false int [] } +&{QMovie QMovie::QMovie commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non constructor false true 2 [0xc820b572e0 0xc820b573e0 0xc820b574a0] } +&{QMovie QMovie::QMovie commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non constructor false false [0xc820b576a0] } +&{QMovie QMovie::QMovie commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non constructor false true 3 [0xc820b57820 0xc820b57900 0xc820b579e0] } +&{backgroundColor QMovie::backgroundColor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non plain false false QColor [] } +&{currentFrameNumber QMovie::currentFrameNumber commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non plain false false int [] } +&{currentImage QMovie::currentImage commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non plain false false QImage [] } +&{currentPixmap QMovie::currentPixmap commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non plain false false QPixmap [] } +&{device QMovie::device commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non plain false false QIODevice * [] } +&{error QMovie::error commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non signal false false void [0xc820b282c0] } +&{fileName QMovie::fileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non plain false false QString [] } +&{finished QMovie::finished commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non signal false false void [] } +&{format QMovie::format commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non plain false false QByteArray [] } +&{frameChanged QMovie::frameChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non signal false false void [0xc820b28700] } +&{frameCount QMovie::frameCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non plain false false int [] } +&{frameRect QMovie::frameRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non plain false false QRect [] } +&{isValid QMovie::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non plain false false bool [] } +&{jumpToFrame QMovie::jumpToFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non plain false false bool [0xc820b28c00] } +&{jumpToNextFrame QMovie::jumpToNextFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non slot false false bool [] } +&{loopCount QMovie::loopCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non plain false false int [] } +&{nextFrameDelay QMovie::nextFrameDelay commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non plain false false int [] } +&{resized QMovie::resized commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non signal false false void [0xc820b29080] } +&{scaledSize QMovie::scaledSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non plain false false QSize [] } +&{setBackgroundColor QMovie::setBackgroundColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non plain false false void [0xc820b29460] } +&{setDevice QMovie::setDevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non plain false false void [0xc820b29640] } +&{setFileName QMovie::setFileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non plain false false void [0xc820b29860] } +&{setFormat QMovie::setFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non plain false false void [0xc820b29a80] } +&{setPaused QMovie::setPaused commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non slot false false void [0xc820b29ce0] } +&{setScaledSize QMovie::setScaledSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non plain false false void [0xc820b29f00] } +&{start QMovie::start commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non slot false false void [] } +&{started QMovie::started commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non signal false false void [] } +&{state QMovie::state commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non plain false false MovieState [] } +&{stateChanged QMovie::stateChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non signal false false void [0xc820b18320] } +&{stop QMovie::stop commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non slot false false void [] } +&{supportedFormats QMovie::supportedFormats commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non plain true false QList [] } +&{updated QMovie::updated commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non signal false false void [0xc820b187a0] } +&{~QMovie QMovie::~QMovie commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qmovie.h non destructor false false [] } +######################################## ENUMS ######################################## +&{CacheMode QMovie::CacheMode commendable public [0xc820b56dc0 0xc820b56e60]} +&{MovieState QMovie::MovieState commendable public [0xc820b57040 0xc820b570c0 0xc820b57140]} diff --git a/internal/binding/dump/QtGui/QNativeGestureEvent.txt b/internal/binding/dump/QtGui/QNativeGestureEvent.txt new file mode 100755 index 00000000..5f7a9075 --- /dev/null +++ b/internal/binding/dump/QtGui/QNativeGestureEvent.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{QNativeGestureEvent QNativeGestureEvent::QNativeGestureEvent commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [0xc82077a140 0xc82077a220 0xc82077a2e0 0xc82077a360 0xc82077a400 0xc82077a4c0 0xc82077a580] } +&{gestureType QNativeGestureEvent::gestureType commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false Qt::NativeGestureType [] } +&{globalPos QNativeGestureEvent::globalPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QPoint [] } +&{localPos QNativeGestureEvent::localPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QPointF & [] } +&{pos QNativeGestureEvent::pos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QPoint [] } +&{screenPos QNativeGestureEvent::screenPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QPointF & [] } +&{value QNativeGestureEvent::value commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false qreal [] } +&{windowPos QNativeGestureEvent::windowPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QPointF & [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOffscreenSurface.txt b/internal/binding/dump/QtGui/QOffscreenSurface.txt new file mode 100755 index 00000000..22621c25 --- /dev/null +++ b/internal/binding/dump/QtGui/QOffscreenSurface.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QOffscreenSurface QOffscreenSurface::QOffscreenSurface commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qoffscreensurface.h non constructor false false [0xc8201eb340] } +&{create QOffscreenSurface::create commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qoffscreensurface.h non plain false false void [] } +&{destroy QOffscreenSurface::destroy commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qoffscreensurface.h non plain false false void [] } +&{format QOffscreenSurface::format commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qoffscreensurface.h impure plain false false QSurfaceFormat [] } +&{isValid QOffscreenSurface::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qoffscreensurface.h non plain false false bool [] } +&{requestedFormat QOffscreenSurface::requestedFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qoffscreensurface.h non plain false false QSurfaceFormat [] } +&{screen QOffscreenSurface::screen commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qoffscreensurface.h non plain false false QScreen * [] } +&{screenChanged QOffscreenSurface::screenChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qoffscreensurface.h non signal false false void [0xc8201c4720] } +&{setFormat QOffscreenSurface::setFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qoffscreensurface.h non plain false false void [0xc8201c4d20] } +&{setScreen QOffscreenSurface::setScreen commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qoffscreensurface.h non plain false false void [0xc8201c51a0] } +&{size QOffscreenSurface::size commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qoffscreensurface.h impure plain false false QSize [] } +&{surfaceType QOffscreenSurface::surfaceType commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qoffscreensurface.h impure plain false false SurfaceType [] } +&{~QOffscreenSurface QOffscreenSurface::~QOffscreenSurface commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qoffscreensurface.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLBuffer.txt b/internal/binding/dump/QtGui/QOpenGLBuffer.txt new file mode 100755 index 00000000..e3f8feec --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLBuffer.txt @@ -0,0 +1,29 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLBuffer QOpenGLBuffer::QOpenGLBuffer commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglbuffer.h non constructor false false [] } +&{QOpenGLBuffer QOpenGLBuffer::QOpenGLBuffer commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglbuffer.h non constructor false true 2 [0xc8201b70e0] } +&{QOpenGLBuffer QOpenGLBuffer::QOpenGLBuffer commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglbuffer.h non constructor false true 3 [0xc8201b7660] } +&{allocate QOpenGLBuffer::allocate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglbuffer.h non plain false false void [0xc8201b7b00 0xc8201b7d00] } +&{allocate QOpenGLBuffer::allocate commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglbuffer.h non plain false true 2 void [0xc8201ae1a0] } +&{bind QOpenGLBuffer::bind commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglbuffer.h non plain false false bool [] } +&{bufferId QOpenGLBuffer::bufferId commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglbuffer.h non plain false false GLuint [] } +&{create QOpenGLBuffer::create commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglbuffer.h non plain false false bool [] } +&{destroy QOpenGLBuffer::destroy commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglbuffer.h non plain false false void [] } +&{isCreated QOpenGLBuffer::isCreated commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglbuffer.h non plain false false bool [] } +&{map QOpenGLBuffer::map commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglbuffer.h non plain false false void * [0xc8201aef20] } +&{mapRange QOpenGLBuffer::mapRange commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglbuffer.h non plain false false void * [0xc8201af3c0 0xc8201af560 0xc8201af620] } +&{operator= QOpenGLBuffer::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglbuffer.h non plain false false QOpenGLBuffer & [0xc8201afa80] } +&{read QOpenGLBuffer::read commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglbuffer.h non plain false false bool [0xc8201afec0 0xc8201affc0 0xc820a1c060] } +&{release QOpenGLBuffer::release commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglbuffer.h non plain false false void [] } +&{release QOpenGLBuffer::release commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglbuffer.h non plain true true 2 void [0xc820a1c380] } +&{setUsagePattern QOpenGLBuffer::setUsagePattern commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglbuffer.h non plain false false void [0xc820a1c600] } +&{size QOpenGLBuffer::size commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglbuffer.h non plain false false int [] } +&{type QOpenGLBuffer::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglbuffer.h non plain false false QOpenGLBuffer::Type [] } +&{unmap QOpenGLBuffer::unmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglbuffer.h non plain false false bool [] } +&{usagePattern QOpenGLBuffer::usagePattern commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglbuffer.h non plain false false QOpenGLBuffer::UsagePattern [] } +&{write QOpenGLBuffer::write commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglbuffer.h non plain false false void [0xc820a1cd40 0xc820a1ce00 0xc820a1ce80] } +&{~QOpenGLBuffer QOpenGLBuffer::~QOpenGLBuffer commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglbuffer.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Access QOpenGLBuffer::Access commendable public [0xc8201ca720 0xc8201ca880 0xc8201ca9a0]} +&{RangeAccessFlag QOpenGLBuffer::RangeAccessFlag commendable public QOpenGLBuffer::RangeAccessFlags [0xc8201cade0 0xc8201caf40 0xc8201cb080 0xc8201cb140 0xc8201cb3a0 0xc8201cb540]} +&{Type QOpenGLBuffer::Type commendable public [0xc8201cb8c0 0xc8201cba40 0xc8201cbb80 0xc8201cbd20]} +&{UsagePattern QOpenGLBuffer::UsagePattern commendable public [0xc8201b6120 0xc8201b61e0 0xc8201b6340 0xc8201b6440 0xc8201b66a0 0xc8201b67e0 0xc8201b68a0 0xc8201b69c0 0xc8201b6b00]} diff --git a/internal/binding/dump/QtGui/QOpenGLContext.txt b/internal/binding/dump/QtGui/QOpenGLContext.txt new file mode 100755 index 00000000..ebb7bc43 --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLContext.txt @@ -0,0 +1,35 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLContext QOpenGLContext::QOpenGLContext commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non constructor false false [0xc82018c800] } +&{aboutToBeDestroyed QOpenGLContext::aboutToBeDestroyed commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non signal false false void [] } +&{areSharing QOpenGLContext::areSharing commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain true false bool [0xc82018ce20 0xc82018cee0] } +&{create QOpenGLContext::create commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false bool [] } +&{currentContext QOpenGLContext::currentContext commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain true false QOpenGLContext * [] } +&{defaultFramebufferObject QOpenGLContext::defaultFramebufferObject commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false GLuint [] } +&{doneCurrent QOpenGLContext::doneCurrent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false void [] } +&{extensions QOpenGLContext::extensions commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false QSet [] } +&{format QOpenGLContext::format commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false QSurfaceFormat [] } +&{functions QOpenGLContext::functions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false QOpenGLFunctions * [] } +&{getProcAddress QOpenGLContext::getProcAddress commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false QFunctionPointer [0xc820162420] } +&{globalShareContext QOpenGLContext::globalShareContext commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain true false QOpenGLContext * [] } +&{hasExtension QOpenGLContext::hasExtension commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false bool [0xc820162a20] } +&{isOpenGLES QOpenGLContext::isOpenGLES commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false bool [] } +&{isValid QOpenGLContext::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false bool [] } +&{makeCurrent QOpenGLContext::makeCurrent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false bool [0xc82012a2c0] } +&{nativeHandle QOpenGLContext::nativeHandle commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false QVariant [] } +&{openGLModuleHandle QOpenGLContext::openGLModuleHandle commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain true false void * [] } +&{openGLModuleType QOpenGLContext::openGLModuleType commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain true false OpenGLModuleType [] } +&{setFormat QOpenGLContext::setFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false void [0xc82012b1a0] } +&{setNativeHandle QOpenGLContext::setNativeHandle commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false void [0xc82012b560] } +&{screen QOpenGLContext::screen commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false QScreen * [] } +&{setScreen QOpenGLContext::setScreen commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false void [0xc8200ee3c0] } +&{setShareContext QOpenGLContext::setShareContext commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false void [0xc8200ee6e0] } +&{shareContext QOpenGLContext::shareContext commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false QOpenGLContext * [] } +&{shareGroup QOpenGLContext::shareGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false QOpenGLContextGroup * [] } +&{supportsThreadedOpenGL QOpenGLContext::supportsThreadedOpenGL commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain true false bool [] } +&{surface QOpenGLContext::surface commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false QSurface * [] } +&{swapBuffers QOpenGLContext::swapBuffers commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false void [0xc8200ef760] } +&{versionFunctions QOpenGLContext::versionFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false QAbstractOpenGLFunctions * [0xc8200a42e0] } +&{versionFunctions QOpenGLContext::versionFunctions commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false true 2 TYPE * [] } +&{~QOpenGLContext QOpenGLContext::~QOpenGLContext commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non destructor false false [] } +######################################## ENUMS ######################################## +&{OpenGLModuleType QOpenGLContext::OpenGLModuleType commendable public [0xc82018c320 0xc82018c400]} diff --git a/internal/binding/dump/QtGui/QOpenGLContextGroup.txt b/internal/binding/dump/QtGui/QOpenGLContextGroup.txt new file mode 100755 index 00000000..b3286f67 --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLContextGroup.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{currentContextGroup QOpenGLContextGroup::currentContextGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain true false QOpenGLContextGroup * [] } +&{shares QOpenGLContextGroup::shares commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false QList [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLDebugLogger.txt b/internal/binding/dump/QtGui/QOpenGLDebugLogger.txt new file mode 100755 index 00000000..942ad686 --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLDebugLogger.txt @@ -0,0 +1,20 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLDebugLogger QOpenGLDebugLogger::QOpenGLDebugLogger commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non constructor false false [0xc820a1d920] } +&{disableMessages QOpenGLDebugLogger::disableMessages commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non plain false false void [0xc820a1dc00 0xc820a1dd00 0xc820a1de00] } +&{disableMessages QOpenGLDebugLogger::disableMessages commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non plain false true 2 void [0xc820a1dfa0 0xc8201a4100 0xc8201a4240] } +&{enableMessages QOpenGLDebugLogger::enableMessages commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non plain false false void [0xc8201a4540 0xc8201a46c0 0xc8201a4860] } +&{enableMessages QOpenGLDebugLogger::enableMessages commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non plain false true 2 void [0xc8201a4b00 0xc8201a4c20 0xc8201a4d80] } +&{initialize QOpenGLDebugLogger::initialize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non plain false false bool [] } +&{isLogging QOpenGLDebugLogger::isLogging commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non plain false false bool [] } +&{logMessage QOpenGLDebugLogger::logMessage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non slot false false void [0xc8201a5400] } +&{loggedMessages QOpenGLDebugLogger::loggedMessages commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non plain false false QList [] } +&{loggingMode QOpenGLDebugLogger::loggingMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non plain false false LoggingMode [] } +&{maximumMessageLength QOpenGLDebugLogger::maximumMessageLength commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non plain false false qint64 [] } +&{messageLogged QOpenGLDebugLogger::messageLogged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non signal false false void [0xc8201a5d00] } +&{popGroup QOpenGLDebugLogger::popGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non plain false false void [] } +&{pushGroup QOpenGLDebugLogger::pushGroup commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non plain false false void [0xc8205ba140 0xc8205ba1c0 0xc8205ba280] } +&{startLogging QOpenGLDebugLogger::startLogging commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non slot false false void [0xc8205ba4c0] } +&{stopLogging QOpenGLDebugLogger::stopLogging commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non slot false false void [] } +&{~QOpenGLDebugLogger QOpenGLDebugLogger::~QOpenGLDebugLogger commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non destructor false false [] } +######################################## ENUMS ######################################## +&{LoggingMode QOpenGLDebugLogger::LoggingMode commendable public [0xc820a1d620 0xc820a1d700]} diff --git a/internal/binding/dump/QtGui/QOpenGLDebugMessage.txt b/internal/binding/dump/QtGui/QOpenGLDebugMessage.txt new file mode 100755 index 00000000..2b06d0f6 --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLDebugMessage.txt @@ -0,0 +1,20 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLDebugMessage QOpenGLDebugMessage::QOpenGLDebugMessage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non constructor false false [] } +&{QOpenGLDebugMessage QOpenGLDebugMessage::QOpenGLDebugMessage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non constructor false true 2 [0xc820153740] } +&{createApplicationMessage QOpenGLDebugMessage::createApplicationMessage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non plain true false QOpenGLDebugMessage [0xc820153b80 0xc820153ce0 0xc820153e20 0xc820153ec0] } +&{createThirdPartyMessage QOpenGLDebugMessage::createThirdPartyMessage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non plain true false QOpenGLDebugMessage [0xc82013c2e0 0xc82013c360 0xc82013c480 0xc82013c6a0] } +&{id QOpenGLDebugMessage::id commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non plain false false GLuint [] } +&{message QOpenGLDebugMessage::message commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non plain false false QString [] } +&{operator!= QOpenGLDebugMessage::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non plain false false bool [0xc82013cc40] } +&{operator= QOpenGLDebugMessage::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non plain false true 2 QOpenGLDebugMessage & [0xc82013cf20] } +&{operator= QOpenGLDebugMessage::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non plain false false QOpenGLDebugMessage & [0xc82013d280] } +&{operator== QOpenGLDebugMessage::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non plain false false bool [0xc82013d520] } +&{severity QOpenGLDebugMessage::severity commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non plain false false Severity [] } +&{source QOpenGLDebugMessage::source commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non plain false false Source [] } +&{swap QOpenGLDebugMessage::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non plain false false void [0xc82013da40] } +&{type QOpenGLDebugMessage::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non plain false false Type [] } +&{~QOpenGLDebugMessage QOpenGLDebugMessage::~QOpenGLDebugMessage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengldebug.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Severity QOpenGLDebugMessage::Severity commendable public QOpenGLDebugMessage::Severities [0xc8205bac80 0xc8205bad40 0xc8205badc0 0xc8205bae60 0xc8205baf80 0xc8205bb060 0xc8205bb180]} +&{Source QOpenGLDebugMessage::Source commendable public QOpenGLDebugMessage::Sources [0xc8205bb400 0xc8205bb480 0xc8205bb540 0xc8205bb660 0xc8205bb7a0 0xc8205bb860 0xc8205bb9a0 0xc8205bba40 0xc8205bbb60]} +&{Type QOpenGLDebugMessage::Type commendable public QOpenGLDebugMessage::Types [0xc8205bbea0 0xc8205bbf40 0xc820152100 0xc8201522a0 0xc820152580 0xc8201526a0 0xc820152760 0xc8201528e0 0xc820152a20 0xc820152aa0 0xc820152ba0 0xc820152cc0]} diff --git a/internal/binding/dump/QtGui/QOpenGLFramebufferObject.txt b/internal/binding/dump/QtGui/QOpenGLFramebufferObject.txt new file mode 100755 index 00000000..259634de --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFramebufferObject.txt @@ -0,0 +1,30 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFramebufferObject QOpenGLFramebufferObject::QOpenGLFramebufferObject commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.cpp non constructor false false [0xc820116ce0 0xc820116e20] } +&{bind QOpenGLFramebufferObject::bind commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.cpp non plain false false bool [] } +&{bindDefault QOpenGLFramebufferObject::bindDefault commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.cpp non plain true false bool [] } +&{handle QOpenGLFramebufferObject::handle commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.cpp non plain false false GLuint [] } +&{hasOpenGLFramebufferBlit QOpenGLFramebufferObject::hasOpenGLFramebufferBlit commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.cpp non plain true false bool [] } +&{hasOpenGLFramebufferObjects QOpenGLFramebufferObject::hasOpenGLFramebufferObjects commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.cpp non plain true false bool [] } +&{isValid QOpenGLFramebufferObject::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.cpp non plain false false bool [] } +&{release QOpenGLFramebufferObject::release commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.cpp non plain false false bool [] } +&{size QOpenGLFramebufferObject::size commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.cpp non plain false false QSize [] } +&{takeTexture QOpenGLFramebufferObject::takeTexture commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.cpp non plain false false GLuint [] } +&{texture QOpenGLFramebufferObject::texture commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.cpp non plain false false GLuint [] } +&{toImage QOpenGLFramebufferObject::toImage commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.cpp non plain false true 2 QImage [] } +&{toImage QOpenGLFramebufferObject::toImage commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.cpp non plain false false QImage [0xc820117fa0] } +&{~QOpenGLFramebufferObject QOpenGLFramebufferObject::~QOpenGLFramebufferObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.cpp impure destructor false false [] } +&{QOpenGLFramebufferObject QOpenGLFramebufferObject::QOpenGLFramebufferObject commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non constructor false true 6 [0xc820102aa0 0xc820102ba0 0xc820102d00 0xc820102da0] } +&{QOpenGLFramebufferObject QOpenGLFramebufferObject::QOpenGLFramebufferObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non constructor false true 3 [0xc820103000 0xc820103080] } +&{QOpenGLFramebufferObject QOpenGLFramebufferObject::QOpenGLFramebufferObject commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non constructor false true 5 [0xc820103460 0xc820103500 0xc8201035e0 0xc8201036e0 0xc8201037c0] } +&{QOpenGLFramebufferObject QOpenGLFramebufferObject::QOpenGLFramebufferObject commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non constructor false true 2 [0xc820103b60 0xc820103ce0 0xc820103d60] } +&{QOpenGLFramebufferObject QOpenGLFramebufferObject::QOpenGLFramebufferObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non constructor false true 4 [0xc8200e0120 0xc8200e0280 0xc8200e0340] } +&{attachment QOpenGLFramebufferObject::attachment commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non plain false false Attachment [] } +&{blitFramebuffer QOpenGLFramebufferObject::blitFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non plain true true 2 void [0xc8200e0760 0xc8200e09a0 0xc8200e0c20 0xc8200e0da0] } +&{blitFramebuffer QOpenGLFramebufferObject::blitFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non plain true false void [0xc8200e1080 0xc8200e1200 0xc8200e13c0 0xc8200e14e0 0xc8200e15e0 0xc8200e1680] } +&{format QOpenGLFramebufferObject::format commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non plain false false QOpenGLFramebufferObjectFormat [] } +&{height QOpenGLFramebufferObject::height commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non plain false false int [] } +&{isBound QOpenGLFramebufferObject::isBound commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non plain false false bool [] } +&{setAttachment QOpenGLFramebufferObject::setAttachment commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non plain false false void [0xc8205300a0] } +&{width QOpenGLFramebufferObject::width commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non plain false false int [] } +######################################## ENUMS ######################################## +&{Attachment QOpenGLFramebufferObject::Attachment commendable public [0xc8201025c0 0xc820102680 0xc820102780]} diff --git a/internal/binding/dump/QtGui/QOpenGLFramebufferObjectFormat.txt b/internal/binding/dump/QtGui/QOpenGLFramebufferObjectFormat.txt new file mode 100755 index 00000000..0a044cf4 --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFramebufferObjectFormat.txt @@ -0,0 +1,18 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFramebufferObjectFormat QOpenGLFramebufferObjectFormat::QOpenGLFramebufferObjectFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non constructor false false [] } +&{QOpenGLFramebufferObjectFormat QOpenGLFramebufferObjectFormat::QOpenGLFramebufferObjectFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non constructor false true 2 [0xc820530860] } +&{attachment QOpenGLFramebufferObjectFormat::attachment commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non plain false false QOpenGLFramebufferObject::Attachment [] } +&{internalTextureFormat QOpenGLFramebufferObjectFormat::internalTextureFormat commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non plain false false GLenum [] } +&{mipmap QOpenGLFramebufferObjectFormat::mipmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non plain false false bool [] } +&{operator!= QOpenGLFramebufferObjectFormat::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non plain false false bool [0xc820530da0] } +&{operator= QOpenGLFramebufferObjectFormat::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non plain false false QOpenGLFramebufferObjectFormat & [0xc820530fe0] } +&{operator== QOpenGLFramebufferObjectFormat::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non plain false false bool [0xc820531260] } +&{samples QOpenGLFramebufferObjectFormat::samples commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non plain false false int [] } +&{setAttachment QOpenGLFramebufferObjectFormat::setAttachment commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non plain false false void [0xc820531540] } +&{setInternalTextureFormat QOpenGLFramebufferObjectFormat::setInternalTextureFormat commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non plain false false void [0xc820531840] } +&{setMipmap QOpenGLFramebufferObjectFormat::setMipmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non plain false false void [0xc820531a60] } +&{setSamples QOpenGLFramebufferObjectFormat::setSamples commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non plain false false void [0xc820531c60] } +&{setTextureTarget QOpenGLFramebufferObjectFormat::setTextureTarget commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non plain false false void [0xc820531ea0] } +&{textureTarget QOpenGLFramebufferObjectFormat::textureTarget commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non plain false false GLenum [] } +&{~QOpenGLFramebufferObjectFormat QOpenGLFramebufferObjectFormat::~QOpenGLFramebufferObjectFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglframebufferobject.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions.txt b/internal/binding/dump/QtGui/QOpenGLFunctions.txt new file mode 100755 index 00000000..7e4fc264 --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions.txt @@ -0,0 +1,151 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions QOpenGLFunctions::QOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non constructor false false [] } +&{QOpenGLFunctions QOpenGLFunctions::QOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non constructor false true 2 [0xc82017e400] } +&{glActiveTexture QOpenGLFunctions::glActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc82017e6e0] } +&{glAttachShader QOpenGLFunctions::glAttachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc82017ea40 0xc82017eb60] } +&{glBindAttribLocation QOpenGLFunctions::glBindAttribLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc82017eec0 0xc82017efa0 0xc82017f040] } +&{glBindBuffer QOpenGLFunctions::glBindBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc82017f300 0xc82017f380] } +&{glBindFramebuffer QOpenGLFunctions::glBindFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc82017f5c0 0xc82017f660] } +&{glBindRenderbuffer QOpenGLFunctions::glBindRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc82017fa40 0xc82017fb20] } +&{glBindTexture QOpenGLFunctions::glBindTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc82017ffa0 0xc820070140] } +&{glBlendColor QOpenGLFunctions::glBlendColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820070460 0xc820070500 0xc8200705a0 0xc820070640] } +&{glBlendEquation QOpenGLFunctions::glBlendEquation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820070920] } +&{glBlendEquationSeparate QOpenGLFunctions::glBlendEquationSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820070d60 0xc820070ee0] } +&{glBlendFunc QOpenGLFunctions::glBlendFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc8200712c0 0xc820071440] } +&{glBlendFuncSeparate QOpenGLFunctions::glBlendFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc8200717c0 0xc820071980 0xc820071a80 0xc820071b60] } +&{glBufferData QOpenGLFunctions::glBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820071e80 0xc820071fa0 0xc82000e220 0xc82000e320] } +&{glBufferSubData QOpenGLFunctions::glBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc82000e720 0xc82000e860 0xc82000e9a0 0xc82000eca0] } +&{glCheckFramebufferStatus QOpenGLFunctions::glCheckFramebufferStatus commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false GLenum [0xc82000f260] } +&{glClear QOpenGLFunctions::glClear commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc82000f820] } +&{glClearColor QOpenGLFunctions::glClearColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc82000fec0 0xc820d9e040 0xc820d9e0c0 0xc820d9e140] } +&{glClearDepthf QOpenGLFunctions::glClearDepthf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820d9e300] } +&{glClearStencil QOpenGLFunctions::glClearStencil commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820d9e4e0] } +&{glColorMask QOpenGLFunctions::glColorMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820d9e6a0 0xc820d9e720 0xc820d9e7a0 0xc820d9e820] } +&{glCompileShader QOpenGLFunctions::glCompileShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820d9e980] } +&{glCompressedTexImage2D QOpenGLFunctions::glCompressedTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820d9eb40 0xc820d9ebc0 0xc820d9ec40 0xc820d9ecc0 0xc820d9ed60 0xc820d9ede0 0xc820d9ee60 0xc820d9eee0] } +&{glCompressedTexSubImage2D QOpenGLFunctions::glCompressedTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820d9f0a0 0xc820d9f120 0xc820d9f1a0 0xc820d9f220 0xc820d9f2c0 0xc820d9f340 0xc820d9f3c0 0xc820d9f440 0xc820d9f4e0] } +&{glCopyTexImage2D QOpenGLFunctions::glCopyTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820d9f640 0xc820d9f6c0 0xc820d9f740 0xc820d9f7c0 0xc820d9f860 0xc820d9f8e0 0xc820d9f960 0xc820d9f9e0] } +&{glCopyTexSubImage2D QOpenGLFunctions::glCopyTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820d9fba0 0xc820d9fc20 0xc820d9fca0 0xc820d9fd20 0xc820d9fdc0 0xc820d9fe40 0xc820d9fec0 0xc820d9ff40] } +&{glCreateProgram QOpenGLFunctions::glCreateProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false GLuint [] } +&{glCreateShader QOpenGLFunctions::glCreateShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false GLuint [0xc820cbc1a0] } +&{glCullFace QOpenGLFunctions::glCullFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820cbc3a0] } +&{glDeleteBuffers QOpenGLFunctions::glDeleteBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820cbc500 0xc820cbc580] } +&{glDeleteFramebuffers QOpenGLFunctions::glDeleteFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820cbc740 0xc820cbc7c0] } +&{glDeleteProgram QOpenGLFunctions::glDeleteProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820cbc940] } +&{glDeleteRenderbuffers QOpenGLFunctions::glDeleteRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820cbcb00 0xc820cbcb80] } +&{glDeleteShader QOpenGLFunctions::glDeleteShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820cbcd40] } +&{glDeleteTextures QOpenGLFunctions::glDeleteTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820cbcea0 0xc820cbcf20] } +&{glDepthFunc QOpenGLFunctions::glDepthFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820cbd100] } +&{glDepthMask QOpenGLFunctions::glDepthMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820cbd2e0] } +&{glDepthRangef QOpenGLFunctions::glDepthRangef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820cbd4a0 0xc820cbd520] } +&{glDetachShader QOpenGLFunctions::glDetachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820cbd6e0 0xc820cbd760] } +&{glDisable QOpenGLFunctions::glDisable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820cbd960] } +&{glDisableVertexAttribArray QOpenGLFunctions::glDisableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820cbdb20] } +&{glDrawArrays QOpenGLFunctions::glDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820cbdce0 0xc820cbdd60 0xc820cbdde0] } +&{glDrawElements QOpenGLFunctions::glDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820cbdfa0 0xc820e92020 0xc820e920a0 0xc820e92120] } +&{glEnable QOpenGLFunctions::glEnable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820e92320] } +&{glEnableVertexAttribArray QOpenGLFunctions::glEnableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820e924e0] } +&{glFinish QOpenGLFunctions::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [] } +&{glFlush QOpenGLFunctions::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [] } +&{glFramebufferRenderbuffer QOpenGLFunctions::glFramebufferRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820e928a0 0xc820e92920 0xc820e929c0 0xc820e92a80] } +&{glFramebufferTexture2D QOpenGLFunctions::glFramebufferTexture2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820e92c40 0xc820e92cc0 0xc820e92d40 0xc820e92dc0 0xc820e92e60] } +&{glFrontFace QOpenGLFunctions::glFrontFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820e93040] } +&{glGenBuffers QOpenGLFunctions::glGenBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820e93200 0xc820e93280] } +&{glGenFramebuffers QOpenGLFunctions::glGenFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820e93440 0xc820e934c0] } +&{glGenRenderbuffers QOpenGLFunctions::glGenRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820e93680 0xc820e93700] } +&{glGenTextures QOpenGLFunctions::glGenTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820e938c0 0xc820e93940] } +&{glGenerateMipmap QOpenGLFunctions::glGenerateMipmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820e93aa0] } +&{glGetActiveAttrib QOpenGLFunctions::glGetActiveAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820e93c60 0xc820e93ce0 0xc820e93d60 0xc820e93de0 0xc820e93e80 0xc820e93f00 0xc820e93f80] } +&{glGetActiveUniform QOpenGLFunctions::glGetActiveUniform commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ea0140 0xc820ea01c0 0xc820ea0240 0xc820ea02c0 0xc820ea0360 0xc820ea03e0 0xc820ea0460] } +&{glGetAttachedShaders QOpenGLFunctions::glGetAttachedShaders commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ea0620 0xc820ea06a0 0xc820ea0720 0xc820ea07a0] } +&{glGetAttribLocation QOpenGLFunctions::glGetAttribLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false GLint [0xc820ea0960 0xc820ea09e0] } +&{glGetBooleanv QOpenGLFunctions::glGetBooleanv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ea0ba0 0xc820ea0c20] } +&{glGetBufferParameteriv QOpenGLFunctions::glGetBufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ea0de0 0xc820ea0e60 0xc820ea0ee0] } +&{glGetError QOpenGLFunctions::glGetError commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false GLenum [] } +&{glGetFloatv QOpenGLFunctions::glGetFloatv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ea11c0 0xc820ea1240] } +&{glGetFramebufferAttachmentParameteriv QOpenGLFunctions::glGetFramebufferAttachmentParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ea13c0 0xc820ea1440 0xc820ea14c0 0xc820ea1540] } +&{glGetIntegerv QOpenGLFunctions::glGetIntegerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ea1700 0xc820ea1780] } +&{glGetProgramInfoLog QOpenGLFunctions::glGetProgramInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ea1940 0xc820ea19c0 0xc820ea1a40 0xc820ea1ac0] } +&{glGetProgramiv QOpenGLFunctions::glGetProgramiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ea1c80 0xc820ea1d00 0xc820ea1d80] } +&{glGetRenderbufferParameteriv QOpenGLFunctions::glGetRenderbufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ea1f40 0xc820ea1fc0 0xc820eae040] } +&{glGetShaderInfoLog QOpenGLFunctions::glGetShaderInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820eae200 0xc820eae280 0xc820eae300 0xc820eae380] } +&{glGetShaderPrecisionFormat QOpenGLFunctions::glGetShaderPrecisionFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820eae540 0xc820eae5c0 0xc820eae640 0xc820eae6c0] } +&{glGetShaderSource QOpenGLFunctions::glGetShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820eae880 0xc820eae900 0xc820eae980 0xc820eaea00] } +&{glGetShaderiv QOpenGLFunctions::glGetShaderiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820eaebc0 0xc820eaec40 0xc820eaecc0] } +&{glGetString QOpenGLFunctions::glGetString commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false const GLubyte * [0xc820eaee80] } +&{glGetTexParameterfv QOpenGLFunctions::glGetTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820eaf040 0xc820eaf0c0 0xc820eaf140] } +&{glGetTexParameteriv QOpenGLFunctions::glGetTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820eaf300 0xc820eaf380 0xc820eaf400] } +&{glGetUniformLocation QOpenGLFunctions::glGetUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false GLint [0xc820eaf5c0 0xc820eaf640] } +&{glGetUniformfv QOpenGLFunctions::glGetUniformfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820eaf800 0xc820eaf880 0xc820eaf900] } +&{glGetUniformiv QOpenGLFunctions::glGetUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820eafac0 0xc820eafb40 0xc820eafbc0] } +&{glGetVertexAttribPointerv QOpenGLFunctions::glGetVertexAttribPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820eafd80 0xc820eafe00 0xc820eafe80] } +&{glGetVertexAttribfv QOpenGLFunctions::glGetVertexAttribfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ebe040 0xc820ebe0c0 0xc820ebe140] } +&{glGetVertexAttribiv QOpenGLFunctions::glGetVertexAttribiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ebe300 0xc820ebe380 0xc820ebe400] } +&{glHint QOpenGLFunctions::glHint commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ebe5e0 0xc820ebe660] } +&{glIsBuffer QOpenGLFunctions::glIsBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false GLboolean [0xc820ebe840] } +&{glIsEnabled QOpenGLFunctions::glIsEnabled commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false GLboolean [0xc820ebea00] } +&{glIsFramebuffer QOpenGLFunctions::glIsFramebuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false GLboolean [0xc820ebeb60] } +&{glIsProgram QOpenGLFunctions::glIsProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false GLboolean [0xc820ebed20] } +&{glIsRenderbuffer QOpenGLFunctions::glIsRenderbuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false GLboolean [0xc820ebee80] } +&{glIsShader QOpenGLFunctions::glIsShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false GLboolean [0xc820ebf060] } +&{glIsTexture QOpenGLFunctions::glIsTexture commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false GLboolean [0xc820ebf220] } +&{glLineWidth QOpenGLFunctions::glLineWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ebf400] } +&{glLinkProgram QOpenGLFunctions::glLinkProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ebf5c0] } +&{glPixelStorei QOpenGLFunctions::glPixelStorei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ebf780 0xc820ebf800] } +&{glPolygonOffset QOpenGLFunctions::glPolygonOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ebf960 0xc820ebf9e0] } +&{glReadPixels QOpenGLFunctions::glReadPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ebfba0 0xc820ebfc20 0xc820ebfca0 0xc820ebfd20 0xc820ebfdc0 0xc820ebfe40 0xc820ebfec0] } +&{glReleaseShaderCompiler QOpenGLFunctions::glReleaseShaderCompiler commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [] } +&{glRenderbufferStorage QOpenGLFunctions::glRenderbufferStorage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ed2180 0xc820ed2200 0xc820ed2280 0xc820ed2300] } +&{glSampleCoverage QOpenGLFunctions::glSampleCoverage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ed2460 0xc820ed24e0] } +&{glScissor QOpenGLFunctions::glScissor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ed26c0 0xc820ed2740 0xc820ed27c0 0xc820ed2840] } +&{glShaderBinary QOpenGLFunctions::glShaderBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ed2a00 0xc820ed2a80 0xc820ed2b00 0xc820ed2b80 0xc820ed2c20] } +&{glShaderSource QOpenGLFunctions::glShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ed2de0 0xc820ed2e60 0xc820ed2ee0 0xc820ed2f60] } +&{glStencilFunc QOpenGLFunctions::glStencilFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ed3120 0xc820ed31a0 0xc820ed3220] } +&{glStencilFuncSeparate QOpenGLFunctions::glStencilFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ed33e0 0xc820ed3460 0xc820ed34e0 0xc820ed3560] } +&{glStencilMask QOpenGLFunctions::glStencilMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ed3740] } +&{glStencilMaskSeparate QOpenGLFunctions::glStencilMaskSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ed3900 0xc820ed3980] } +&{glStencilOp QOpenGLFunctions::glStencilOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ed3b40 0xc820ed3bc0 0xc820ed3c40] } +&{glStencilOpSeparate QOpenGLFunctions::glStencilOpSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ed3e00 0xc820ed3e80 0xc820ed3f00 0xc820ed3f80] } +&{glTexImage2D QOpenGLFunctions::glTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ee0140 0xc820ee01c0 0xc820ee0240 0xc820ee02c0 0xc820ee0360 0xc820ee03e0 0xc820ee0460 0xc820ee04e0 0xc820ee0580] } +&{glTexParameterf QOpenGLFunctions::glTexParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ee06e0 0xc820ee0760 0xc820ee07e0] } +&{glTexParameterfv QOpenGLFunctions::glTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ee0940 0xc820ee09c0 0xc820ee0a40] } +&{glTexParameteri QOpenGLFunctions::glTexParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ee0ba0 0xc820ee0c20 0xc820ee0ca0] } +&{glTexParameteriv QOpenGLFunctions::glTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ee0e00 0xc820ee0e80 0xc820ee0f00] } +&{glTexSubImage2D QOpenGLFunctions::glTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ee1060 0xc820ee10e0 0xc820ee1160 0xc820ee11e0 0xc820ee1280 0xc820ee1300 0xc820ee1380 0xc820ee1400 0xc820ee14a0] } +&{glUniform1f QOpenGLFunctions::glUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ee1660 0xc820ee16e0] } +&{glUniform1fv QOpenGLFunctions::glUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ee18a0 0xc820ee1920 0xc820ee19a0] } +&{glUniform1i QOpenGLFunctions::glUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ee1b60 0xc820ee1be0] } +&{glUniform1iv QOpenGLFunctions::glUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820ee1da0 0xc820ee1e20 0xc820ee1ea0] } +&{glUniform2f QOpenGLFunctions::glUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820dc6060 0xc820dc60e0 0xc820dc6160] } +&{glUniform2fv QOpenGLFunctions::glUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820dc6320 0xc820dc63a0 0xc820dc6420] } +&{glUniform2i QOpenGLFunctions::glUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820dc65e0 0xc820dc6660 0xc820dc66e0] } +&{glUniform2iv QOpenGLFunctions::glUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820dc68a0 0xc820dc6920 0xc820dc69a0] } +&{glUniform3f QOpenGLFunctions::glUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820dc6b60 0xc820dc6be0 0xc820dc6c60 0xc820dc6ce0] } +&{glUniform3fv QOpenGLFunctions::glUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820dc6ea0 0xc820dc6f20 0xc820dc6fa0] } +&{glUniform3i QOpenGLFunctions::glUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820dc7160 0xc820dc71e0 0xc820dc7260 0xc820dc72e0] } +&{glUniform3iv QOpenGLFunctions::glUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820dc74a0 0xc820dc7520 0xc820dc75a0] } +&{glUniform4f QOpenGLFunctions::glUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820dc7760 0xc820dc77e0 0xc820dc7860 0xc820dc78e0 0xc820dc7980] } +&{glUniform4fv QOpenGLFunctions::glUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820dc7b40 0xc820dc7bc0 0xc820dc7c40] } +&{glUniform4i QOpenGLFunctions::glUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820dc7e00 0xc820dc7e80 0xc820dc7f00 0xc820dc7f80 0xc820dd4020] } +&{glUniform4iv QOpenGLFunctions::glUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820dd4200 0xc820dd4280 0xc820dd4300] } +&{glUniformMatrix2fv QOpenGLFunctions::glUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820dd44c0 0xc820dd4540 0xc820dd45c0 0xc820dd4640] } +&{glUniformMatrix3fv QOpenGLFunctions::glUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820dd4800 0xc820dd4880 0xc820dd4900 0xc820dd4980] } +&{glUniformMatrix4fv QOpenGLFunctions::glUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820dd4b40 0xc820dd4bc0 0xc820dd4c40 0xc820dd4cc0] } +&{glUseProgram QOpenGLFunctions::glUseProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820dd4e80] } +&{glValidateProgram QOpenGLFunctions::glValidateProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820dd5040] } +&{glVertexAttrib1f QOpenGLFunctions::glVertexAttrib1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820dd51a0 0xc820dd5220] } +&{glVertexAttrib1fv QOpenGLFunctions::glVertexAttrib1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820dd53e0 0xc820dd5460] } +&{glVertexAttrib2f QOpenGLFunctions::glVertexAttrib2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820dd55c0 0xc820dd5640 0xc820dd56c0] } +&{glVertexAttrib2fv QOpenGLFunctions::glVertexAttrib2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820dd5880 0xc820dd5900] } +&{glVertexAttrib3f QOpenGLFunctions::glVertexAttrib3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820dd5a60 0xc820dd5ae0 0xc820dd5b60 0xc820dd5be0] } +&{glVertexAttrib3fv QOpenGLFunctions::glVertexAttrib3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820dd5da0 0xc820dd5e20] } +&{glVertexAttrib4f QOpenGLFunctions::glVertexAttrib4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820dd5f80 0xc820de2000 0xc820de2080 0xc820de2100 0xc820de21a0] } +&{glVertexAttrib4fv QOpenGLFunctions::glVertexAttrib4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820de2360 0xc820de23e0] } +&{glVertexAttribPointer QOpenGLFunctions::glVertexAttribPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820de25a0 0xc820de2620 0xc820de26a0 0xc820de2720 0xc820de27c0 0xc820de2840] } +&{glViewport QOpenGLFunctions::glViewport commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [0xc820de2a20 0xc820de2aa0 0xc820de2b20 0xc820de2ba0] } +&{hasOpenGLFeature QOpenGLFunctions::hasOpenGLFeature commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false bool [0xc820de2d20] } +&{initializeOpenGLFunctions QOpenGLFunctions::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false void [] } +&{openGLFeatures QOpenGLFunctions::openGLFeatures commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non plain false false QOpenGLFunctions::OpenGLFeatures [] } +&{~QOpenGLFunctions QOpenGLFunctions::~QOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions.h non destructor false false [] } +######################################## ENUMS ######################################## +&{OpenGLFeature QOpenGLFunctions::OpenGLFeature commendable public QOpenGLFunctions::OpenGLFeatures [0xc8200d28e0 0xc8200d2a60 0xc8200d2c80 0xc8200d2dc0 0xc8200d2e60 0xc8200d2f40 0xc8200d3040 0xc8200d3200 0xc8200d33a0 0xc8200d3560 0xc8200d3700 0xc8200d3820 0xc8200d3940 0xc8200d3b60 0xc8200d3c60 0xc8200d3dc0]} diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions_1_0.txt b/internal/binding/dump/QtGui/QOpenGLFunctions_1_0.txt new file mode 100755 index 00000000..08c39883 --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions_1_0.txt @@ -0,0 +1,311 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions_1_0 QOpenGLFunctions_1_0::QOpenGLFunctions_1_0 commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.cpp non constructor false false [] } +&{initializeOpenGLFunctions QOpenGLFunctions_1_0::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.cpp impure plain false false bool [] } +&{~QOpenGLFunctions_1_0 QOpenGLFunctions_1_0::~QOpenGLFunctions_1_0 commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.cpp non destructor false false [] } +&{glAccum QOpenGLFunctions_1_0::glAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820de3de0 0xc820de3e60] } +&{glAlphaFunc QOpenGLFunctions_1_0::glAlphaFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820de3fc0 0xc820df2040] } +&{glBegin QOpenGLFunctions_1_0::glBegin commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820df2220] } +&{glBitmap QOpenGLFunctions_1_0::glBitmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820df2400 0xc820df2480 0xc820df2500 0xc820df2580 0xc820df2620 0xc820df26a0 0xc820df2720] } +&{glBlendFunc QOpenGLFunctions_1_0::glBlendFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820df2880 0xc820df2900] } +&{glCallList QOpenGLFunctions_1_0::glCallList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820df2ae0] } +&{glCallLists QOpenGLFunctions_1_0::glCallLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820df2c40 0xc820df2cc0 0xc820df2d40] } +&{glClear QOpenGLFunctions_1_0::glClear commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820df2f20] } +&{glClearAccum QOpenGLFunctions_1_0::glClearAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820df3080 0xc820df3100 0xc820df3180 0xc820df3200] } +&{glClearColor QOpenGLFunctions_1_0::glClearColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820df3360 0xc820df33e0 0xc820df3460 0xc820df34e0] } +&{glClearDepth QOpenGLFunctions_1_0::glClearDepth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820df3640] } +&{glClearIndex QOpenGLFunctions_1_0::glClearIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820df37e0] } +&{glClearStencil QOpenGLFunctions_1_0::glClearStencil commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820df3960] } +&{glClipPlane QOpenGLFunctions_1_0::glClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820df3ac0 0xc820df3b40] } +&{glColor3b QOpenGLFunctions_1_0::glColor3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820df3d00 0xc820df3d80 0xc820df3e00] } +&{glColor3bv QOpenGLFunctions_1_0::glColor3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820df3fe0] } +&{glColor3d QOpenGLFunctions_1_0::glColor3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e021a0 0xc820e02220 0xc820e022a0] } +&{glColor3dv QOpenGLFunctions_1_0::glColor3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e02460] } +&{glColor3f QOpenGLFunctions_1_0::glColor3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e02620 0xc820e026a0 0xc820e02720] } +&{glColor3fv QOpenGLFunctions_1_0::glColor3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e028e0] } +&{glColor3i QOpenGLFunctions_1_0::glColor3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e02aa0 0xc820e02b20 0xc820e02ba0] } +&{glColor3iv QOpenGLFunctions_1_0::glColor3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e02d80] } +&{glColor3s QOpenGLFunctions_1_0::glColor3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e02f40 0xc820e02fc0 0xc820e03040] } +&{glColor3sv QOpenGLFunctions_1_0::glColor3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e03200] } +&{glColor3ub QOpenGLFunctions_1_0::glColor3ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e033c0 0xc820e03440 0xc820e034c0] } +&{glColor3ubv QOpenGLFunctions_1_0::glColor3ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e03620] } +&{glColor3ui QOpenGLFunctions_1_0::glColor3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e037e0 0xc820e03860 0xc820e038e0] } +&{glColor3uiv QOpenGLFunctions_1_0::glColor3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e03a60] } +&{glColor3us QOpenGLFunctions_1_0::glColor3us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e03c20 0xc820e03ca0 0xc820e03d20] } +&{glColor3usv QOpenGLFunctions_1_0::glColor3usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e03e80] } +&{glColor4b QOpenGLFunctions_1_0::glColor4b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e10040 0xc820e100c0 0xc820e10140 0xc820e101c0] } +&{glColor4bv QOpenGLFunctions_1_0::glColor4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e103a0] } +&{glColor4d QOpenGLFunctions_1_0::glColor4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e10560 0xc820e105e0 0xc820e10660 0xc820e106e0] } +&{glColor4dv QOpenGLFunctions_1_0::glColor4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e108a0] } +&{glColor4f QOpenGLFunctions_1_0::glColor4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e10a60 0xc820e10ae0 0xc820e10b60 0xc820e10be0] } +&{glColor4fv QOpenGLFunctions_1_0::glColor4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e10da0] } +&{glColor4i QOpenGLFunctions_1_0::glColor4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e10f60 0xc820e10fe0 0xc820e11060 0xc820e110e0] } +&{glColor4iv QOpenGLFunctions_1_0::glColor4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e112c0] } +&{glColor4s QOpenGLFunctions_1_0::glColor4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e11480 0xc820e11500 0xc820e11580 0xc820e11600] } +&{glColor4sv QOpenGLFunctions_1_0::glColor4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e117c0] } +&{glColor4ub QOpenGLFunctions_1_0::glColor4ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e11980 0xc820e11a00 0xc820e11a80 0xc820e11b00] } +&{glColor4ubv QOpenGLFunctions_1_0::glColor4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e11c60] } +&{glColor4ui QOpenGLFunctions_1_0::glColor4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e11e20 0xc820e11ea0 0xc820e11f20 0xc820e11fa0] } +&{glColor4uiv QOpenGLFunctions_1_0::glColor4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e1c100] } +&{glColor4us QOpenGLFunctions_1_0::glColor4us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e1c2c0 0xc820e1c340 0xc820e1c3c0 0xc820e1c440] } +&{glColor4usv QOpenGLFunctions_1_0::glColor4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e1c5a0] } +&{glColorMask QOpenGLFunctions_1_0::glColorMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e1c700 0xc820e1c780 0xc820e1c800 0xc820e1c880] } +&{glColorMaterial QOpenGLFunctions_1_0::glColorMaterial commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e1c9e0 0xc820e1ca60] } +&{glCopyPixels QOpenGLFunctions_1_0::glCopyPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e1cbc0 0xc820e1cc40 0xc820e1ccc0 0xc820e1cd40 0xc820e1cde0] } +&{glCullFace QOpenGLFunctions_1_0::glCullFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e1cfc0] } +&{glDeleteLists QOpenGLFunctions_1_0::glDeleteLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e1d120 0xc820e1d1a0] } +&{glDepthFunc QOpenGLFunctions_1_0::glDepthFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e1d320] } +&{glDepthMask QOpenGLFunctions_1_0::glDepthMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e1d4a0] } +&{glDepthRange QOpenGLFunctions_1_0::glDepthRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e1d600 0xc820e1d680] } +&{glDisable QOpenGLFunctions_1_0::glDisable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e1d860] } +&{glDrawBuffer QOpenGLFunctions_1_0::glDrawBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e1d9e0] } +&{glDrawPixels QOpenGLFunctions_1_0::glDrawPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e1db40 0xc820e1dbc0 0xc820e1dc40 0xc820e1dcc0 0xc820e1dd60] } +&{glEdgeFlag QOpenGLFunctions_1_0::glEdgeFlag commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e1df40] } +&{glEdgeFlagv QOpenGLFunctions_1_0::glEdgeFlagv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e2c0c0] } +&{glEnable QOpenGLFunctions_1_0::glEnable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e2c300] } +&{glEnd QOpenGLFunctions_1_0::glEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [] } +&{glEndList QOpenGLFunctions_1_0::glEndList commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [] } +&{glEvalCoord1d QOpenGLFunctions_1_0::glEvalCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e2c660] } +&{glEvalCoord1dv QOpenGLFunctions_1_0::glEvalCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e2c7c0] } +&{glEvalCoord1f QOpenGLFunctions_1_0::glEvalCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e2c940] } +&{glEvalCoord1fv QOpenGLFunctions_1_0::glEvalCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e2caa0] } +&{glEvalCoord2d QOpenGLFunctions_1_0::glEvalCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e2cc00 0xc820e2cc80] } +&{glEvalCoord2dv QOpenGLFunctions_1_0::glEvalCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e2cde0] } +&{glEvalCoord2f QOpenGLFunctions_1_0::glEvalCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e2cf40 0xc820e2cfc0] } +&{glEvalCoord2fv QOpenGLFunctions_1_0::glEvalCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e2d120] } +&{glEvalMesh1 QOpenGLFunctions_1_0::glEvalMesh1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e2d280 0xc820e2d300 0xc820e2d380] } +&{glEvalMesh2 QOpenGLFunctions_1_0::glEvalMesh2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e2d4e0 0xc820e2d560 0xc820e2d5e0 0xc820e2d660 0xc820e2d700] } +&{glEvalPoint1 QOpenGLFunctions_1_0::glEvalPoint1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e2d880] } +&{glEvalPoint2 QOpenGLFunctions_1_0::glEvalPoint2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e2d9e0 0xc820e2da60] } +&{glFeedbackBuffer QOpenGLFunctions_1_0::glFeedbackBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e2dbc0 0xc820e2dc40 0xc820e2dcc0] } +&{glFinish QOpenGLFunctions_1_0::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [] } +&{glFlush QOpenGLFunctions_1_0::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [] } +&{glFogf QOpenGLFunctions_1_0::glFogf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e42060 0xc820e420e0] } +&{glFogfv QOpenGLFunctions_1_0::glFogfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e422a0 0xc820e42320] } +&{glFogi QOpenGLFunctions_1_0::glFogi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e42500 0xc820e42580] } +&{glFogiv QOpenGLFunctions_1_0::glFogiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e42740 0xc820e427c0] } +&{glFrontFace QOpenGLFunctions_1_0::glFrontFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e42940] } +&{glFrustum QOpenGLFunctions_1_0::glFrustum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e42b00 0xc820e42b80 0xc820e42c00 0xc820e42c80 0xc820e42d20 0xc820e42da0] } +&{glGenLists QOpenGLFunctions_1_0::glGenLists commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false GLuint [0xc820e42f80] } +&{glGetBooleanv QOpenGLFunctions_1_0::glGetBooleanv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e430e0 0xc820e43160] } +&{glGetClipPlane QOpenGLFunctions_1_0::glGetClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e432c0 0xc820e43340] } +&{glGetDoublev QOpenGLFunctions_1_0::glGetDoublev commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e434a0 0xc820e43520] } +&{glGetError QOpenGLFunctions_1_0::glGetError commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false GLenum [] } +&{glGetFloatv QOpenGLFunctions_1_0::glGetFloatv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e43780 0xc820e43800] } +&{glGetIntegerv QOpenGLFunctions_1_0::glGetIntegerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e43960 0xc820e439e0] } +&{glGetLightfv QOpenGLFunctions_1_0::glGetLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e43b40 0xc820e43bc0 0xc820e43c40] } +&{glGetLightiv QOpenGLFunctions_1_0::glGetLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e43da0 0xc820e43e20 0xc820e43ea0] } +&{glGetMapdv QOpenGLFunctions_1_0::glGetMapdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e50060 0xc820e500e0 0xc820e50160] } +&{glGetMapfv QOpenGLFunctions_1_0::glGetMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e50320 0xc820e503a0 0xc820e50420] } +&{glGetMapiv QOpenGLFunctions_1_0::glGetMapiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e505e0 0xc820e50660 0xc820e506e0] } +&{glGetMaterialfv QOpenGLFunctions_1_0::glGetMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e50840 0xc820e508c0 0xc820e50940] } +&{glGetMaterialiv QOpenGLFunctions_1_0::glGetMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e50aa0 0xc820e50b20 0xc820e50ba0] } +&{glGetPixelMapfv QOpenGLFunctions_1_0::glGetPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e50d00 0xc820e50d80] } +&{glGetPixelMapuiv QOpenGLFunctions_1_0::glGetPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e50ee0 0xc820e50f60] } +&{glGetPixelMapusv QOpenGLFunctions_1_0::glGetPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e510c0 0xc820e51140] } +&{glGetPolygonStipple QOpenGLFunctions_1_0::glGetPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e51300] } +&{glGetString QOpenGLFunctions_1_0::glGetString commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false const GLubyte * [0xc820e51460] } +&{glGetTexEnvfv QOpenGLFunctions_1_0::glGetTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e515c0 0xc820e51640 0xc820e516c0] } +&{glGetTexEnviv QOpenGLFunctions_1_0::glGetTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e51820 0xc820e518a0 0xc820e51920] } +&{glGetTexGendv QOpenGLFunctions_1_0::glGetTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e51a80 0xc820e51b00 0xc820e51b80] } +&{glGetTexGenfv QOpenGLFunctions_1_0::glGetTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e51ce0 0xc820e51d60 0xc820e51de0] } +&{glGetTexGeniv QOpenGLFunctions_1_0::glGetTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e51f40 0xc820e51fc0 0xc820e62040] } +&{glGetTexImage QOpenGLFunctions_1_0::glGetTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e621a0 0xc820e62220 0xc820e622a0 0xc820e62320 0xc820e623c0] } +&{glGetTexLevelParameterfv QOpenGLFunctions_1_0::glGetTexLevelParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e62580 0xc820e62600 0xc820e62680 0xc820e62700] } +&{glGetTexLevelParameteriv QOpenGLFunctions_1_0::glGetTexLevelParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e628c0 0xc820e62940 0xc820e629c0 0xc820e62a40] } +&{glGetTexParameterfv QOpenGLFunctions_1_0::glGetTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e62c00 0xc820e62c80 0xc820e62d00] } +&{glGetTexParameteriv QOpenGLFunctions_1_0::glGetTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e62ec0 0xc820e62f40 0xc820e62fc0] } +&{glHint QOpenGLFunctions_1_0::glHint commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e631a0 0xc820e63220] } +&{glIndexMask QOpenGLFunctions_1_0::glIndexMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e633a0] } +&{glIndexd QOpenGLFunctions_1_0::glIndexd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e63580] } +&{glIndexdv QOpenGLFunctions_1_0::glIndexdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e63740] } +&{glIndexf QOpenGLFunctions_1_0::glIndexf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e63920] } +&{glIndexfv QOpenGLFunctions_1_0::glIndexfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e63b00] } +&{glIndexi QOpenGLFunctions_1_0::glIndexi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e63ce0] } +&{glIndexiv QOpenGLFunctions_1_0::glIndexiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e63ec0] } +&{glIndexs QOpenGLFunctions_1_0::glIndexs commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e6e0a0] } +&{glIndexsv QOpenGLFunctions_1_0::glIndexsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e6e280] } +&{glInitNames QOpenGLFunctions_1_0::glInitNames commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [] } +&{glIsEnabled QOpenGLFunctions_1_0::glIsEnabled commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false GLboolean [0xc820e6e4a0] } +&{glIsList QOpenGLFunctions_1_0::glIsList commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false GLboolean [0xc820e6e680] } +&{glLightModelf QOpenGLFunctions_1_0::glLightModelf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e6e7e0 0xc820e6e860] } +&{glLightModelfv QOpenGLFunctions_1_0::glLightModelfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e6e9c0 0xc820e6ea40] } +&{glLightModeli QOpenGLFunctions_1_0::glLightModeli commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e6eba0 0xc820e6ec20] } +&{glLightModeliv QOpenGLFunctions_1_0::glLightModeliv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e6ed80 0xc820e6ee00] } +&{glLightf QOpenGLFunctions_1_0::glLightf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e6efc0 0xc820e6f040 0xc820e6f0c0] } +&{glLightfv QOpenGLFunctions_1_0::glLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e6f280 0xc820e6f300 0xc820e6f380] } +&{glLighti QOpenGLFunctions_1_0::glLighti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e6f540 0xc820e6f5c0 0xc820e6f640] } +&{glLightiv QOpenGLFunctions_1_0::glLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e6f800 0xc820e6f880 0xc820e6f900] } +&{glLineStipple QOpenGLFunctions_1_0::glLineStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e6fa60 0xc820e6fae0] } +&{glLineWidth QOpenGLFunctions_1_0::glLineWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e6fc60] } +&{glListBase QOpenGLFunctions_1_0::glListBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e6fe40] } +&{glLoadIdentity QOpenGLFunctions_1_0::glLoadIdentity commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [] } +&{glLoadMatrixd QOpenGLFunctions_1_0::glLoadMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e7e040] } +&{glLoadMatrixf QOpenGLFunctions_1_0::glLoadMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e7e1a0] } +&{glLoadName QOpenGLFunctions_1_0::glLoadName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e7e380] } +&{glLogicOp QOpenGLFunctions_1_0::glLogicOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e7e560] } +&{glMap1d QOpenGLFunctions_1_0::glMap1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e7e720 0xc820e7e7a0 0xc820e7e820 0xc820e7e8a0 0xc820e7e940 0xc820e7e9c0] } +&{glMap1f QOpenGLFunctions_1_0::glMap1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e7eb80 0xc820e7ec00 0xc820e7ec80 0xc820e7ed00 0xc820e7eda0 0xc820e7ee20] } +&{glMap2d QOpenGLFunctions_1_0::glMap2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e7efe0 0xc820e7f060 0xc820e7f0e0 0xc820e7f160 0xc820e7f200 0xc820e7f280 0xc820e7f300 0xc820e7f380 0xc820e7f420 0xc820e7f4a0] } +&{glMap2f QOpenGLFunctions_1_0::glMap2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e7f660 0xc820e7f6e0 0xc820e7f760 0xc820e7f7e0 0xc820e7f880 0xc820e7f900 0xc820e7f980 0xc820e7fa00 0xc820e7faa0 0xc820e7fb20] } +&{glMapGrid1d QOpenGLFunctions_1_0::glMapGrid1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e7fc80 0xc820e7fd00 0xc820e7fd80] } +&{glMapGrid1f QOpenGLFunctions_1_0::glMapGrid1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc820e7fee0 0xc820e7ff60 0xc820e7ffe0] } +&{glMapGrid2d QOpenGLFunctions_1_0::glMapGrid2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a5a140 0xc826a5a1c0 0xc826a5a240 0xc826a5a2c0 0xc826a5a360 0xc826a5a3e0] } +&{glMapGrid2f QOpenGLFunctions_1_0::glMapGrid2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a5a540 0xc826a5a5c0 0xc826a5a640 0xc826a5a6c0 0xc826a5a760 0xc826a5a7e0] } +&{glMaterialf QOpenGLFunctions_1_0::glMaterialf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a5a940 0xc826a5a9c0 0xc826a5aa40] } +&{glMaterialfv QOpenGLFunctions_1_0::glMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a5aba0 0xc826a5ac20 0xc826a5aca0] } +&{glMateriali QOpenGLFunctions_1_0::glMateriali commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a5ae00 0xc826a5ae80 0xc826a5af00] } +&{glMaterialiv QOpenGLFunctions_1_0::glMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a5b060 0xc826a5b0e0 0xc826a5b160] } +&{glMatrixMode QOpenGLFunctions_1_0::glMatrixMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a5b2e0] } +&{glMultMatrixd QOpenGLFunctions_1_0::glMultMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a5b440] } +&{glMultMatrixf QOpenGLFunctions_1_0::glMultMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a5b5a0] } +&{glNewList QOpenGLFunctions_1_0::glNewList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a5b760 0xc826a5b7e0] } +&{glNormal3b QOpenGLFunctions_1_0::glNormal3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a5b9a0 0xc826a5ba20 0xc826a5baa0] } +&{glNormal3bv QOpenGLFunctions_1_0::glNormal3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a5bc00] } +&{glNormal3d QOpenGLFunctions_1_0::glNormal3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a5bdc0 0xc826a5be40 0xc826a5bec0] } +&{glNormal3dv QOpenGLFunctions_1_0::glNormal3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a68020] } +&{glNormal3f QOpenGLFunctions_1_0::glNormal3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a681e0 0xc826a68260 0xc826a682e0] } +&{glNormal3fv QOpenGLFunctions_1_0::glNormal3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a68440] } +&{glNormal3i QOpenGLFunctions_1_0::glNormal3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a68600 0xc826a68680 0xc826a68700] } +&{glNormal3iv QOpenGLFunctions_1_0::glNormal3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a68880] } +&{glNormal3s QOpenGLFunctions_1_0::glNormal3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a68a40 0xc826a68ac0 0xc826a68b40] } +&{glNormal3sv QOpenGLFunctions_1_0::glNormal3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a68ca0] } +&{glOrtho QOpenGLFunctions_1_0::glOrtho commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a68e60 0xc826a68ee0 0xc826a68f60 0xc826a68fe0 0xc826a69080 0xc826a69100] } +&{glPassThrough QOpenGLFunctions_1_0::glPassThrough commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a69260] } +&{glPixelMapfv QOpenGLFunctions_1_0::glPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a693c0 0xc826a69440 0xc826a694c0] } +&{glPixelMapuiv QOpenGLFunctions_1_0::glPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a69620 0xc826a696a0 0xc826a69720] } +&{glPixelMapusv QOpenGLFunctions_1_0::glPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a69880 0xc826a69900 0xc826a69980] } +&{glPixelStoref QOpenGLFunctions_1_0::glPixelStoref commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a69ae0 0xc826a69b60] } +&{glPixelStorei QOpenGLFunctions_1_0::glPixelStorei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a69cc0 0xc826a69d40] } +&{glPixelTransferf QOpenGLFunctions_1_0::glPixelTransferf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a69ea0 0xc826a69f20] } +&{glPixelTransferi QOpenGLFunctions_1_0::glPixelTransferi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a78080 0xc826a78100] } +&{glPixelZoom QOpenGLFunctions_1_0::glPixelZoom commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a78260 0xc826a782e0] } +&{glPointSize QOpenGLFunctions_1_0::glPointSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a78460] } +&{glPolygonMode QOpenGLFunctions_1_0::glPolygonMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a785c0 0xc826a78640] } +&{glPolygonStipple QOpenGLFunctions_1_0::glPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a787a0] } +&{glPopAttrib QOpenGLFunctions_1_0::glPopAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [] } +&{glPopMatrix QOpenGLFunctions_1_0::glPopMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [] } +&{glPopName QOpenGLFunctions_1_0::glPopName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [] } +&{glPushAttrib QOpenGLFunctions_1_0::glPushAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a78b20] } +&{glPushMatrix QOpenGLFunctions_1_0::glPushMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [] } +&{glPushName QOpenGLFunctions_1_0::glPushName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a78da0] } +&{glRasterPos2d QOpenGLFunctions_1_0::glRasterPos2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a78f00 0xc826a78f80] } +&{glRasterPos2dv QOpenGLFunctions_1_0::glRasterPos2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a790e0] } +&{glRasterPos2f QOpenGLFunctions_1_0::glRasterPos2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a79240 0xc826a792c0] } +&{glRasterPos2fv QOpenGLFunctions_1_0::glRasterPos2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a79420] } +&{glRasterPos2i QOpenGLFunctions_1_0::glRasterPos2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a79580 0xc826a79600] } +&{glRasterPos2iv QOpenGLFunctions_1_0::glRasterPos2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a79760] } +&{glRasterPos2s QOpenGLFunctions_1_0::glRasterPos2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a798c0 0xc826a79940] } +&{glRasterPos2sv QOpenGLFunctions_1_0::glRasterPos2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a79aa0] } +&{glRasterPos3d QOpenGLFunctions_1_0::glRasterPos3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a79c00 0xc826a79c80 0xc826a79d00] } +&{glRasterPos3dv QOpenGLFunctions_1_0::glRasterPos3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a79e60] } +&{glRasterPos3f QOpenGLFunctions_1_0::glRasterPos3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a79fc0 0xc826a8e040 0xc826a8e0c0] } +&{glRasterPos3fv QOpenGLFunctions_1_0::glRasterPos3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a8e220] } +&{glRasterPos3i QOpenGLFunctions_1_0::glRasterPos3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a8e380 0xc826a8e400 0xc826a8e480] } +&{glRasterPos3iv QOpenGLFunctions_1_0::glRasterPos3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a8e5e0] } +&{glRasterPos3s QOpenGLFunctions_1_0::glRasterPos3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a8e740 0xc826a8e7c0 0xc826a8e840] } +&{glRasterPos3sv QOpenGLFunctions_1_0::glRasterPos3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a8e9a0] } +&{glRasterPos4d QOpenGLFunctions_1_0::glRasterPos4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a8eb00 0xc826a8eb80 0xc826a8ec00 0xc826a8ec80] } +&{glRasterPos4dv QOpenGLFunctions_1_0::glRasterPos4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a8ede0] } +&{glRasterPos4f QOpenGLFunctions_1_0::glRasterPos4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a8ef40 0xc826a8efc0 0xc826a8f040 0xc826a8f0c0] } +&{glRasterPos4fv QOpenGLFunctions_1_0::glRasterPos4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a8f220] } +&{glRasterPos4i QOpenGLFunctions_1_0::glRasterPos4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a8f380 0xc826a8f400 0xc826a8f480 0xc826a8f500] } +&{glRasterPos4iv QOpenGLFunctions_1_0::glRasterPos4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a8f660] } +&{glRasterPos4s QOpenGLFunctions_1_0::glRasterPos4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a8f7c0 0xc826a8f840 0xc826a8f8c0 0xc826a8f940] } +&{glRasterPos4sv QOpenGLFunctions_1_0::glRasterPos4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a8faa0] } +&{glReadBuffer QOpenGLFunctions_1_0::glReadBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a8fc20] } +&{glReadPixels QOpenGLFunctions_1_0::glReadPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a8fd80 0xc826a8fe00 0xc826a8fe80 0xc826a8ff00 0xc826a8ffa0 0xc826a9c020 0xc826a9c0a0] } +&{glRectd QOpenGLFunctions_1_0::glRectd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a9c260 0xc826a9c2e0 0xc826a9c360 0xc826a9c3e0] } +&{glRectdv QOpenGLFunctions_1_0::glRectdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a9c5a0 0xc826a9c620] } +&{glRectf QOpenGLFunctions_1_0::glRectf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a9c7e0 0xc826a9c860 0xc826a9c8e0 0xc826a9c960] } +&{glRectfv QOpenGLFunctions_1_0::glRectfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a9cb20 0xc826a9cba0] } +&{glRecti QOpenGLFunctions_1_0::glRecti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a9cd60 0xc826a9cde0 0xc826a9ce60 0xc826a9cee0] } +&{glRectiv QOpenGLFunctions_1_0::glRectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a9d0a0 0xc826a9d120] } +&{glRects QOpenGLFunctions_1_0::glRects commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a9d2e0 0xc826a9d360 0xc826a9d3e0 0xc826a9d460] } +&{glRectsv QOpenGLFunctions_1_0::glRectsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a9d620 0xc826a9d6a0] } +&{glRenderMode QOpenGLFunctions_1_0::glRenderMode commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false GLint [0xc826a9d820] } +&{glRotated QOpenGLFunctions_1_0::glRotated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a9d9e0 0xc826a9da60 0xc826a9dae0 0xc826a9db60] } +&{glRotatef QOpenGLFunctions_1_0::glRotatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826a9dd20 0xc826a9dda0 0xc826a9de20 0xc826a9dea0] } +&{glScaled QOpenGLFunctions_1_0::glScaled commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aaa060 0xc826aaa0e0 0xc826aaa160] } +&{glScalef QOpenGLFunctions_1_0::glScalef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aaa320 0xc826aaa3a0 0xc826aaa420] } +&{glScissor QOpenGLFunctions_1_0::glScissor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aaa5e0 0xc826aaa660 0xc826aaa6e0 0xc826aaa760] } +&{glSelectBuffer QOpenGLFunctions_1_0::glSelectBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aaa8c0 0xc826aaa940] } +&{glShadeModel QOpenGLFunctions_1_0::glShadeModel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aaaac0] } +&{glStencilFunc QOpenGLFunctions_1_0::glStencilFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aaac20 0xc826aaaca0 0xc826aaad20] } +&{glStencilMask QOpenGLFunctions_1_0::glStencilMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aaaea0] } +&{glStencilOp QOpenGLFunctions_1_0::glStencilOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aab000 0xc826aab080 0xc826aab100] } +&{glTexCoord1d QOpenGLFunctions_1_0::glTexCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aab280] } +&{glTexCoord1dv QOpenGLFunctions_1_0::glTexCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aab3e0] } +&{glTexCoord1f QOpenGLFunctions_1_0::glTexCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aab560] } +&{glTexCoord1fv QOpenGLFunctions_1_0::glTexCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aab6c0] } +&{glTexCoord1i QOpenGLFunctions_1_0::glTexCoord1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aab840] } +&{glTexCoord1iv QOpenGLFunctions_1_0::glTexCoord1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aab9a0] } +&{glTexCoord1s QOpenGLFunctions_1_0::glTexCoord1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aabb20] } +&{glTexCoord1sv QOpenGLFunctions_1_0::glTexCoord1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aabc80] } +&{glTexCoord2d QOpenGLFunctions_1_0::glTexCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aabde0 0xc826aabe60] } +&{glTexCoord2dv QOpenGLFunctions_1_0::glTexCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aabfc0] } +&{glTexCoord2f QOpenGLFunctions_1_0::glTexCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826abc120 0xc826abc1a0] } +&{glTexCoord2fv QOpenGLFunctions_1_0::glTexCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826abc300] } +&{glTexCoord2i QOpenGLFunctions_1_0::glTexCoord2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826abc460 0xc826abc4e0] } +&{glTexCoord2iv QOpenGLFunctions_1_0::glTexCoord2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826abc640] } +&{glTexCoord2s QOpenGLFunctions_1_0::glTexCoord2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826abc7a0 0xc826abc820] } +&{glTexCoord2sv QOpenGLFunctions_1_0::glTexCoord2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826abc980] } +&{glTexCoord3d QOpenGLFunctions_1_0::glTexCoord3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826abcae0 0xc826abcb60 0xc826abcbe0] } +&{glTexCoord3dv QOpenGLFunctions_1_0::glTexCoord3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826abcd40] } +&{glTexCoord3f QOpenGLFunctions_1_0::glTexCoord3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826abcea0 0xc826abcf20 0xc826abcfa0] } +&{glTexCoord3fv QOpenGLFunctions_1_0::glTexCoord3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826abd100] } +&{glTexCoord3i QOpenGLFunctions_1_0::glTexCoord3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826abd280 0xc826abd300 0xc826abd380] } +&{glTexCoord3iv QOpenGLFunctions_1_0::glTexCoord3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826abd4e0] } +&{glTexCoord3s QOpenGLFunctions_1_0::glTexCoord3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826abd640 0xc826abd6c0 0xc826abd740] } +&{glTexCoord3sv QOpenGLFunctions_1_0::glTexCoord3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826abd8a0] } +&{glTexCoord4d QOpenGLFunctions_1_0::glTexCoord4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826abda00 0xc826abda80 0xc826abdb00 0xc826abdb80] } +&{glTexCoord4dv QOpenGLFunctions_1_0::glTexCoord4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826abdce0] } +&{glTexCoord4f QOpenGLFunctions_1_0::glTexCoord4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826abde40 0xc826abdec0 0xc826abdf40 0xc826abdfc0] } +&{glTexCoord4fv QOpenGLFunctions_1_0::glTexCoord4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826ace120] } +&{glTexCoord4i QOpenGLFunctions_1_0::glTexCoord4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826ace280 0xc826ace300 0xc826ace380 0xc826ace400] } +&{glTexCoord4iv QOpenGLFunctions_1_0::glTexCoord4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826ace560] } +&{glTexCoord4s QOpenGLFunctions_1_0::glTexCoord4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826ace6c0 0xc826ace740 0xc826ace7c0 0xc826ace840] } +&{glTexCoord4sv QOpenGLFunctions_1_0::glTexCoord4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826ace9a0] } +&{glTexEnvf QOpenGLFunctions_1_0::glTexEnvf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aceb60 0xc826acebe0 0xc826acec60] } +&{glTexEnvfv QOpenGLFunctions_1_0::glTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826acee20 0xc826aceea0 0xc826acef20] } +&{glTexEnvi QOpenGLFunctions_1_0::glTexEnvi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826acf0e0 0xc826acf160 0xc826acf1e0] } +&{glTexEnviv QOpenGLFunctions_1_0::glTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826acf3a0 0xc826acf420 0xc826acf4a0] } +&{glTexGend QOpenGLFunctions_1_0::glTexGend commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826acf660 0xc826acf6e0 0xc826acf760] } +&{glTexGendv QOpenGLFunctions_1_0::glTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826acf920 0xc826acf9a0 0xc826acfa20] } +&{glTexGenf QOpenGLFunctions_1_0::glTexGenf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826acfbe0 0xc826acfc60 0xc826acfce0] } +&{glTexGenfv QOpenGLFunctions_1_0::glTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826acfea0 0xc826acff20 0xc826acffa0] } +&{glTexGeni QOpenGLFunctions_1_0::glTexGeni commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826ada160 0xc826ada1e0 0xc826ada260] } +&{glTexGeniv QOpenGLFunctions_1_0::glTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826ada420 0xc826ada4a0 0xc826ada520] } +&{glTexImage1D QOpenGLFunctions_1_0::glTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826ada680 0xc826ada700 0xc826ada780 0xc826ada800 0xc826ada8a0 0xc826ada920 0xc826ada9a0 0xc826adaa20] } +&{glTexImage2D QOpenGLFunctions_1_0::glTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826adab80 0xc826adac00 0xc826adac80 0xc826adad00 0xc826adada0 0xc826adae20 0xc826adaea0 0xc826adaf20 0xc826adafc0] } +&{glTexParameterf QOpenGLFunctions_1_0::glTexParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826adb120 0xc826adb1a0 0xc826adb220] } +&{glTexParameterfv QOpenGLFunctions_1_0::glTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826adb380 0xc826adb400 0xc826adb480] } +&{glTexParameteri QOpenGLFunctions_1_0::glTexParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826adb5e0 0xc826adb660 0xc826adb6e0] } +&{glTexParameteriv QOpenGLFunctions_1_0::glTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826adb840 0xc826adb8c0 0xc826adb940] } +&{glTranslated QOpenGLFunctions_1_0::glTranslated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826adbaa0 0xc826adbb20 0xc826adbba0] } +&{glTranslatef QOpenGLFunctions_1_0::glTranslatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826adbd00 0xc826adbd80 0xc826adbe00] } +&{glVertex2d QOpenGLFunctions_1_0::glVertex2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826adbfc0 0xc826aea040] } +&{glVertex2dv QOpenGLFunctions_1_0::glVertex2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aea1a0] } +&{glVertex2f QOpenGLFunctions_1_0::glVertex2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aea360 0xc826aea3e0] } +&{glVertex2fv QOpenGLFunctions_1_0::glVertex2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aea540] } +&{glVertex2i QOpenGLFunctions_1_0::glVertex2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aea700 0xc826aea780] } +&{glVertex2iv QOpenGLFunctions_1_0::glVertex2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aea900] } +&{glVertex2s QOpenGLFunctions_1_0::glVertex2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aeaac0 0xc826aeab40] } +&{glVertex2sv QOpenGLFunctions_1_0::glVertex2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aeaca0] } +&{glVertex3d QOpenGLFunctions_1_0::glVertex3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aeae60 0xc826aeaee0 0xc826aeaf60] } +&{glVertex3dv QOpenGLFunctions_1_0::glVertex3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aeb0c0] } +&{glVertex3f QOpenGLFunctions_1_0::glVertex3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aeb280 0xc826aeb300 0xc826aeb380] } +&{glVertex3fv QOpenGLFunctions_1_0::glVertex3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aeb4e0] } +&{glVertex3i QOpenGLFunctions_1_0::glVertex3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aeb6a0 0xc826aeb720 0xc826aeb7a0] } +&{glVertex3iv QOpenGLFunctions_1_0::glVertex3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aeb920] } +&{glVertex3s QOpenGLFunctions_1_0::glVertex3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aebae0 0xc826aebb60 0xc826aebbe0] } +&{glVertex3sv QOpenGLFunctions_1_0::glVertex3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aebd40] } +&{glVertex4d QOpenGLFunctions_1_0::glVertex4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826aebf00 0xc826aebf80 0xc826afa000 0xc826afa080] } +&{glVertex4dv QOpenGLFunctions_1_0::glVertex4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826afa1e0] } +&{glVertex4f QOpenGLFunctions_1_0::glVertex4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826afa3a0 0xc826afa420 0xc826afa4a0 0xc826afa520] } +&{glVertex4fv QOpenGLFunctions_1_0::glVertex4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826afa680] } +&{glVertex4i QOpenGLFunctions_1_0::glVertex4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826afa840 0xc826afa8c0 0xc826afa940 0xc826afa9c0] } +&{glVertex4iv QOpenGLFunctions_1_0::glVertex4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826afab40] } +&{glVertex4s QOpenGLFunctions_1_0::glVertex4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826afad00 0xc826afad80 0xc826afae00 0xc826afae80] } +&{glVertex4sv QOpenGLFunctions_1_0::glVertex4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826afafe0] } +&{glViewport QOpenGLFunctions_1_0::glViewport commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_0.h non plain false false void [0xc826afb1a0 0xc826afb220 0xc826afb2a0 0xc826afb320] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions_1_1.txt b/internal/binding/dump/QtGui/QOpenGLFunctions_1_1.txt new file mode 100755 index 00000000..dfbb365c --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions_1_1.txt @@ -0,0 +1,341 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions_1_1 QOpenGLFunctions_1_1::QOpenGLFunctions_1_1 commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.cpp non constructor false false [] } +&{initializeOpenGLFunctions QOpenGLFunctions_1_1::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.cpp impure plain false false bool [] } +&{~QOpenGLFunctions_1_1 QOpenGLFunctions_1_1::~QOpenGLFunctions_1_1 commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.cpp non destructor false false [] } +&{glAccum QOpenGLFunctions_1_1::glAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826afbc60 0xc826afbce0] } +&{glAlphaFunc QOpenGLFunctions_1_1::glAlphaFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826afbe40 0xc826afbec0] } +&{glAreTexturesResident QOpenGLFunctions_1_1::glAreTexturesResident commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false GLboolean [0xc826b0a080 0xc826b0a100 0xc826b0a180] } +&{glArrayElement QOpenGLFunctions_1_1::glArrayElement commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b0a320] } +&{glBegin QOpenGLFunctions_1_1::glBegin commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b0a500] } +&{glBindTexture QOpenGLFunctions_1_1::glBindTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b0a660 0xc826b0a6e0] } +&{glBitmap QOpenGLFunctions_1_1::glBitmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b0a8a0 0xc826b0a920 0xc826b0a9a0 0xc826b0aa20 0xc826b0aac0 0xc826b0ab40 0xc826b0abc0] } +&{glBlendFunc QOpenGLFunctions_1_1::glBlendFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b0ad20 0xc826b0ada0] } +&{glCallList QOpenGLFunctions_1_1::glCallList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b0af80] } +&{glCallLists QOpenGLFunctions_1_1::glCallLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b0b0e0 0xc826b0b160 0xc826b0b1e0] } +&{glClear QOpenGLFunctions_1_1::glClear commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b0b3c0] } +&{glClearAccum QOpenGLFunctions_1_1::glClearAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b0b540 0xc826b0b5c0 0xc826b0b640 0xc826b0b6c0] } +&{glClearColor QOpenGLFunctions_1_1::glClearColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b0b820 0xc826b0b8a0 0xc826b0b920 0xc826b0b9a0] } +&{glClearDepth QOpenGLFunctions_1_1::glClearDepth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b0bb00] } +&{glClearIndex QOpenGLFunctions_1_1::glClearIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b0bc80] } +&{glClearStencil QOpenGLFunctions_1_1::glClearStencil commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b0be00] } +&{glClipPlane QOpenGLFunctions_1_1::glClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b0bf60 0xc826b0bfe0] } +&{glColor3b QOpenGLFunctions_1_1::glColor3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b1a1a0 0xc826b1a220 0xc826b1a2a0] } +&{glColor3bv QOpenGLFunctions_1_1::glColor3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b1a480] } +&{glColor3d QOpenGLFunctions_1_1::glColor3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b1a640 0xc826b1a6c0 0xc826b1a740] } +&{glColor3dv QOpenGLFunctions_1_1::glColor3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b1a900] } +&{glColor3f QOpenGLFunctions_1_1::glColor3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b1aac0 0xc826b1ab40 0xc826b1abc0] } +&{glColor3fv QOpenGLFunctions_1_1::glColor3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b1ad80] } +&{glColor3i QOpenGLFunctions_1_1::glColor3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b1af40 0xc826b1afc0 0xc826b1b040] } +&{glColor3iv QOpenGLFunctions_1_1::glColor3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b1b220] } +&{glColor3s QOpenGLFunctions_1_1::glColor3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b1b3e0 0xc826b1b460 0xc826b1b4e0] } +&{glColor3sv QOpenGLFunctions_1_1::glColor3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b1b6a0] } +&{glColor3ub QOpenGLFunctions_1_1::glColor3ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b1b880 0xc826b1b900 0xc826b1b980] } +&{glColor3ubv QOpenGLFunctions_1_1::glColor3ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b1bae0] } +&{glColor3ui QOpenGLFunctions_1_1::glColor3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b1bca0 0xc826b1bd20 0xc826b1bda0] } +&{glColor3uiv QOpenGLFunctions_1_1::glColor3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b1bf00] } +&{glColor3us QOpenGLFunctions_1_1::glColor3us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b2a0c0 0xc826b2a140 0xc826b2a1c0] } +&{glColor3usv QOpenGLFunctions_1_1::glColor3usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b2a320] } +&{glColor4b QOpenGLFunctions_1_1::glColor4b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b2a4e0 0xc826b2a560 0xc826b2a5e0 0xc826b2a660] } +&{glColor4bv QOpenGLFunctions_1_1::glColor4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b2a840] } +&{glColor4d QOpenGLFunctions_1_1::glColor4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b2aa00 0xc826b2aa80 0xc826b2ab00 0xc826b2ab80] } +&{glColor4dv QOpenGLFunctions_1_1::glColor4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b2ad40] } +&{glColor4f QOpenGLFunctions_1_1::glColor4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b2af00 0xc826b2af80 0xc826b2b000 0xc826b2b080] } +&{glColor4fv QOpenGLFunctions_1_1::glColor4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b2b240] } +&{glColor4i QOpenGLFunctions_1_1::glColor4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b2b400 0xc826b2b480 0xc826b2b500 0xc826b2b580] } +&{glColor4iv QOpenGLFunctions_1_1::glColor4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b2b760] } +&{glColor4s QOpenGLFunctions_1_1::glColor4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b2b920 0xc826b2b9a0 0xc826b2ba20 0xc826b2baa0] } +&{glColor4sv QOpenGLFunctions_1_1::glColor4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b2bc60] } +&{glColor4ub QOpenGLFunctions_1_1::glColor4ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b2be20 0xc826b2bea0 0xc826b2bf20 0xc826b2bfa0] } +&{glColor4ubv QOpenGLFunctions_1_1::glColor4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b3a100] } +&{glColor4ui QOpenGLFunctions_1_1::glColor4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b3a2c0 0xc826b3a340 0xc826b3a3c0 0xc826b3a440] } +&{glColor4uiv QOpenGLFunctions_1_1::glColor4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b3a5a0] } +&{glColor4us QOpenGLFunctions_1_1::glColor4us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b3a760 0xc826b3a7e0 0xc826b3a860 0xc826b3a8e0] } +&{glColor4usv QOpenGLFunctions_1_1::glColor4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b3aa40] } +&{glColorMask QOpenGLFunctions_1_1::glColorMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b3aba0 0xc826b3ac20 0xc826b3aca0 0xc826b3ad20] } +&{glColorMaterial QOpenGLFunctions_1_1::glColorMaterial commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b3ae80 0xc826b3af00] } +&{glColorPointer QOpenGLFunctions_1_1::glColorPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b3b060 0xc826b3b0e0 0xc826b3b160 0xc826b3b1e0] } +&{glCopyPixels QOpenGLFunctions_1_1::glCopyPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b3b340 0xc826b3b3c0 0xc826b3b440 0xc826b3b4c0 0xc826b3b560] } +&{glCopyTexImage1D QOpenGLFunctions_1_1::glCopyTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b3b6c0 0xc826b3b740 0xc826b3b7c0 0xc826b3b840 0xc826b3b8e0 0xc826b3b960 0xc826b3b9e0] } +&{glCopyTexImage2D QOpenGLFunctions_1_1::glCopyTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b3bb40 0xc826b3bbc0 0xc826b3bc40 0xc826b3bcc0 0xc826b3bd60 0xc826b3bde0 0xc826b3be60 0xc826b3bee0] } +&{glCopyTexSubImage1D QOpenGLFunctions_1_1::glCopyTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b460a0 0xc826b46120 0xc826b461a0 0xc826b46220 0xc826b462c0 0xc826b46340] } +&{glCopyTexSubImage2D QOpenGLFunctions_1_1::glCopyTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b46500 0xc826b46580 0xc826b46600 0xc826b46680 0xc826b46720 0xc826b467a0 0xc826b46820 0xc826b468a0] } +&{glCullFace QOpenGLFunctions_1_1::glCullFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b46a80] } +&{glDeleteLists QOpenGLFunctions_1_1::glDeleteLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b46be0 0xc826b46c60] } +&{glDeleteTextures QOpenGLFunctions_1_1::glDeleteTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b46de0 0xc826b46e60] } +&{glDepthFunc QOpenGLFunctions_1_1::glDepthFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b46fe0] } +&{glDepthMask QOpenGLFunctions_1_1::glDepthMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b47160] } +&{glDepthRange QOpenGLFunctions_1_1::glDepthRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b472c0 0xc826b47340] } +&{glDisable QOpenGLFunctions_1_1::glDisable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b47520] } +&{glDisableClientState QOpenGLFunctions_1_1::glDisableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b476e0] } +&{glDrawArrays QOpenGLFunctions_1_1::glDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b47840 0xc826b478c0 0xc826b47940] } +&{glDrawBuffer QOpenGLFunctions_1_1::glDrawBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b47ac0] } +&{glDrawElements QOpenGLFunctions_1_1::glDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b47c20 0xc826b47ca0 0xc826b47d20 0xc826b47da0] } +&{glDrawPixels QOpenGLFunctions_1_1::glDrawPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b47f00 0xc826b47f80 0xc826b56000 0xc826b56080 0xc826b56120] } +&{glEdgeFlag QOpenGLFunctions_1_1::glEdgeFlag commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b56300] } +&{glEdgeFlagPointer QOpenGLFunctions_1_1::glEdgeFlagPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b564c0 0xc826b56540] } +&{glEdgeFlagv QOpenGLFunctions_1_1::glEdgeFlagv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b566c0] } +&{glEnable QOpenGLFunctions_1_1::glEnable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b568e0] } +&{glEnableClientState QOpenGLFunctions_1_1::glEnableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b56aa0] } +&{glEnd QOpenGLFunctions_1_1::glEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [] } +&{glEndList QOpenGLFunctions_1_1::glEndList commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [] } +&{glEvalCoord1d QOpenGLFunctions_1_1::glEvalCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b56e00] } +&{glEvalCoord1dv QOpenGLFunctions_1_1::glEvalCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b56f60] } +&{glEvalCoord1f QOpenGLFunctions_1_1::glEvalCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b570e0] } +&{glEvalCoord1fv QOpenGLFunctions_1_1::glEvalCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b57240] } +&{glEvalCoord2d QOpenGLFunctions_1_1::glEvalCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b573a0 0xc826b57420] } +&{glEvalCoord2dv QOpenGLFunctions_1_1::glEvalCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b57580] } +&{glEvalCoord2f QOpenGLFunctions_1_1::glEvalCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b576e0 0xc826b57760] } +&{glEvalCoord2fv QOpenGLFunctions_1_1::glEvalCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b578c0] } +&{glEvalMesh1 QOpenGLFunctions_1_1::glEvalMesh1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b57a20 0xc826b57aa0 0xc826b57b20] } +&{glEvalMesh2 QOpenGLFunctions_1_1::glEvalMesh2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc826b57c80 0xc826b57d00 0xc826b57d80 0xc826b57e00 0xc826b57ea0] } +&{glEvalPoint1 QOpenGLFunctions_1_1::glEvalPoint1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820efc020] } +&{glEvalPoint2 QOpenGLFunctions_1_1::glEvalPoint2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820efc180 0xc820efc200] } +&{glFeedbackBuffer QOpenGLFunctions_1_1::glFeedbackBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820efc360 0xc820efc3e0 0xc820efc460] } +&{glFinish QOpenGLFunctions_1_1::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [] } +&{glFlush QOpenGLFunctions_1_1::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [] } +&{glFogf QOpenGLFunctions_1_1::glFogf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820efc800 0xc820efc880] } +&{glFogfv QOpenGLFunctions_1_1::glFogfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820efca40 0xc820efcac0] } +&{glFogi QOpenGLFunctions_1_1::glFogi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820efcca0 0xc820efcd20] } +&{glFogiv QOpenGLFunctions_1_1::glFogiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820efcee0 0xc820efcf60] } +&{glFrontFace QOpenGLFunctions_1_1::glFrontFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820efd0e0] } +&{glFrustum QOpenGLFunctions_1_1::glFrustum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820efd2a0 0xc820efd320 0xc820efd3a0 0xc820efd420 0xc820efd4c0 0xc820efd540] } +&{glGenLists QOpenGLFunctions_1_1::glGenLists commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false GLuint [0xc820efd720] } +&{glGenTextures QOpenGLFunctions_1_1::glGenTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820efd880 0xc820efd900] } +&{glGetBooleanv QOpenGLFunctions_1_1::glGetBooleanv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820efda60 0xc820efdae0] } +&{glGetClipPlane QOpenGLFunctions_1_1::glGetClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820efdc40 0xc820efdcc0] } +&{glGetDoublev QOpenGLFunctions_1_1::glGetDoublev commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820efde20 0xc820efdea0] } +&{glGetError QOpenGLFunctions_1_1::glGetError commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false GLenum [] } +&{glGetFloatv QOpenGLFunctions_1_1::glGetFloatv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f0a100 0xc820f0a180] } +&{glGetIntegerv QOpenGLFunctions_1_1::glGetIntegerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f0a2e0 0xc820f0a360] } +&{glGetLightfv QOpenGLFunctions_1_1::glGetLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f0a4c0 0xc820f0a540 0xc820f0a5c0] } +&{glGetLightiv QOpenGLFunctions_1_1::glGetLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f0a720 0xc820f0a7a0 0xc820f0a820] } +&{glGetMapdv QOpenGLFunctions_1_1::glGetMapdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f0a9e0 0xc820f0aa60 0xc820f0aae0] } +&{glGetMapfv QOpenGLFunctions_1_1::glGetMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f0aca0 0xc820f0ad20 0xc820f0ada0] } +&{glGetMapiv QOpenGLFunctions_1_1::glGetMapiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f0af60 0xc820f0afe0 0xc820f0b060] } +&{glGetMaterialfv QOpenGLFunctions_1_1::glGetMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f0b1c0 0xc820f0b240 0xc820f0b2c0] } +&{glGetMaterialiv QOpenGLFunctions_1_1::glGetMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f0b420 0xc820f0b4a0 0xc820f0b520] } +&{glGetPixelMapfv QOpenGLFunctions_1_1::glGetPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f0b680 0xc820f0b700] } +&{glGetPixelMapuiv QOpenGLFunctions_1_1::glGetPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f0b860 0xc820f0b8e0] } +&{glGetPixelMapusv QOpenGLFunctions_1_1::glGetPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f0ba40 0xc820f0bac0] } +&{glGetPointerv QOpenGLFunctions_1_1::glGetPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f0bc20 0xc820f0bca0] } +&{glGetPolygonStipple QOpenGLFunctions_1_1::glGetPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f0be60] } +&{glGetString QOpenGLFunctions_1_1::glGetString commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false const GLubyte * [0xc820f0bfc0] } +&{glGetTexEnvfv QOpenGLFunctions_1_1::glGetTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f1e120 0xc820f1e1a0 0xc820f1e220] } +&{glGetTexEnviv QOpenGLFunctions_1_1::glGetTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f1e380 0xc820f1e400 0xc820f1e480] } +&{glGetTexGendv QOpenGLFunctions_1_1::glGetTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f1e5e0 0xc820f1e660 0xc820f1e6e0] } +&{glGetTexGenfv QOpenGLFunctions_1_1::glGetTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f1e840 0xc820f1e8c0 0xc820f1e940] } +&{glGetTexGeniv QOpenGLFunctions_1_1::glGetTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f1eaa0 0xc820f1eb20 0xc820f1eba0] } +&{glGetTexImage QOpenGLFunctions_1_1::glGetTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f1ed20 0xc820f1eda0 0xc820f1ee20 0xc820f1eea0 0xc820f1ef40] } +&{glGetTexLevelParameterfv QOpenGLFunctions_1_1::glGetTexLevelParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f1f100 0xc820f1f180 0xc820f1f200 0xc820f1f280] } +&{glGetTexLevelParameteriv QOpenGLFunctions_1_1::glGetTexLevelParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f1f440 0xc820f1f4c0 0xc820f1f540 0xc820f1f5c0] } +&{glGetTexParameterfv QOpenGLFunctions_1_1::glGetTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f1f780 0xc820f1f800 0xc820f1f880] } +&{glGetTexParameteriv QOpenGLFunctions_1_1::glGetTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f1fa40 0xc820f1fac0 0xc820f1fb40] } +&{glHint QOpenGLFunctions_1_1::glHint commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f1fd20 0xc820f1fda0] } +&{glIndexMask QOpenGLFunctions_1_1::glIndexMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f1ff20] } +&{glIndexPointer QOpenGLFunctions_1_1::glIndexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f2e080 0xc820f2e100 0xc820f2e180] } +&{glIndexd QOpenGLFunctions_1_1::glIndexd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f2e360] } +&{glIndexdv QOpenGLFunctions_1_1::glIndexdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f2e520] } +&{glIndexf QOpenGLFunctions_1_1::glIndexf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f2e700] } +&{glIndexfv QOpenGLFunctions_1_1::glIndexfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f2e8e0] } +&{glIndexi QOpenGLFunctions_1_1::glIndexi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f2eac0] } +&{glIndexiv QOpenGLFunctions_1_1::glIndexiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f2eca0] } +&{glIndexs QOpenGLFunctions_1_1::glIndexs commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f2ee80] } +&{glIndexsv QOpenGLFunctions_1_1::glIndexsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f2f060] } +&{glIndexub QOpenGLFunctions_1_1::glIndexub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f2f240] } +&{glIndexubv QOpenGLFunctions_1_1::glIndexubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f2f400] } +&{glInitNames QOpenGLFunctions_1_1::glInitNames commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [] } +&{glInterleavedArrays QOpenGLFunctions_1_1::glInterleavedArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f2f660 0xc820f2f6e0 0xc820f2f760] } +&{glIsEnabled QOpenGLFunctions_1_1::glIsEnabled commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false GLboolean [0xc820f2f8c0] } +&{glIsList QOpenGLFunctions_1_1::glIsList commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false GLboolean [0xc820f2faa0] } +&{glIsTexture QOpenGLFunctions_1_1::glIsTexture commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false GLboolean [0xc820f2fc00] } +&{glLightModelf QOpenGLFunctions_1_1::glLightModelf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f2fd60 0xc820f2fde0] } +&{glLightModelfv QOpenGLFunctions_1_1::glLightModelfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f2ff40 0xc820f2ffc0] } +&{glLightModeli QOpenGLFunctions_1_1::glLightModeli commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f40120 0xc820f401a0] } +&{glLightModeliv QOpenGLFunctions_1_1::glLightModeliv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f40300 0xc820f40380] } +&{glLightf QOpenGLFunctions_1_1::glLightf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f40540 0xc820f405c0 0xc820f40640] } +&{glLightfv QOpenGLFunctions_1_1::glLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f40800 0xc820f40880 0xc820f40900] } +&{glLighti QOpenGLFunctions_1_1::glLighti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f40ac0 0xc820f40b40 0xc820f40bc0] } +&{glLightiv QOpenGLFunctions_1_1::glLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f40d80 0xc820f40e00 0xc820f40e80] } +&{glLineStipple QOpenGLFunctions_1_1::glLineStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f40fe0 0xc820f41060] } +&{glLineWidth QOpenGLFunctions_1_1::glLineWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f411e0] } +&{glListBase QOpenGLFunctions_1_1::glListBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f413c0] } +&{glLoadIdentity QOpenGLFunctions_1_1::glLoadIdentity commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [] } +&{glLoadMatrixd QOpenGLFunctions_1_1::glLoadMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f415c0] } +&{glLoadMatrixf QOpenGLFunctions_1_1::glLoadMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f41720] } +&{glLoadName QOpenGLFunctions_1_1::glLoadName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f41900] } +&{glLogicOp QOpenGLFunctions_1_1::glLogicOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f41ae0] } +&{glMap1d QOpenGLFunctions_1_1::glMap1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f41ca0 0xc820f41d20 0xc820f41da0 0xc820f41e20 0xc820f41ec0 0xc820f41f40] } +&{glMap1f QOpenGLFunctions_1_1::glMap1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f4e100 0xc820f4e180 0xc820f4e200 0xc820f4e280 0xc820f4e320 0xc820f4e3a0] } +&{glMap2d QOpenGLFunctions_1_1::glMap2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f4e560 0xc820f4e5e0 0xc820f4e660 0xc820f4e6e0 0xc820f4e780 0xc820f4e800 0xc820f4e880 0xc820f4e900 0xc820f4e9a0 0xc820f4ea20] } +&{glMap2f QOpenGLFunctions_1_1::glMap2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f4ebe0 0xc820f4ec60 0xc820f4ece0 0xc820f4ed60 0xc820f4ee00 0xc820f4ee80 0xc820f4ef00 0xc820f4ef80 0xc820f4f020 0xc820f4f0a0] } +&{glMapGrid1d QOpenGLFunctions_1_1::glMapGrid1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f4f200 0xc820f4f280 0xc820f4f300] } +&{glMapGrid1f QOpenGLFunctions_1_1::glMapGrid1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f4f460 0xc820f4f4e0 0xc820f4f560] } +&{glMapGrid2d QOpenGLFunctions_1_1::glMapGrid2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f4f6c0 0xc820f4f740 0xc820f4f7c0 0xc820f4f840 0xc820f4f8e0 0xc820f4f960] } +&{glMapGrid2f QOpenGLFunctions_1_1::glMapGrid2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f4fac0 0xc820f4fb40 0xc820f4fbc0 0xc820f4fc40 0xc820f4fce0 0xc820f4fd60] } +&{glMaterialf QOpenGLFunctions_1_1::glMaterialf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f4fec0 0xc820f4ff40 0xc820f4ffc0] } +&{glMaterialfv QOpenGLFunctions_1_1::glMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f5c120 0xc820f5c1a0 0xc820f5c220] } +&{glMateriali QOpenGLFunctions_1_1::glMateriali commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f5c380 0xc820f5c400 0xc820f5c480] } +&{glMaterialiv QOpenGLFunctions_1_1::glMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f5c5e0 0xc820f5c660 0xc820f5c6e0] } +&{glMatrixMode QOpenGLFunctions_1_1::glMatrixMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f5c860] } +&{glMultMatrixd QOpenGLFunctions_1_1::glMultMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f5c9c0] } +&{glMultMatrixf QOpenGLFunctions_1_1::glMultMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f5cb20] } +&{glNewList QOpenGLFunctions_1_1::glNewList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f5cce0 0xc820f5cd60] } +&{glNormal3b QOpenGLFunctions_1_1::glNormal3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f5cf20 0xc820f5cfa0 0xc820f5d020] } +&{glNormal3bv QOpenGLFunctions_1_1::glNormal3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f5d180] } +&{glNormal3d QOpenGLFunctions_1_1::glNormal3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f5d340 0xc820f5d3c0 0xc820f5d440] } +&{glNormal3dv QOpenGLFunctions_1_1::glNormal3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f5d5a0] } +&{glNormal3f QOpenGLFunctions_1_1::glNormal3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f5d760 0xc820f5d7e0 0xc820f5d860] } +&{glNormal3fv QOpenGLFunctions_1_1::glNormal3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f5d9c0] } +&{glNormal3i QOpenGLFunctions_1_1::glNormal3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f5db80 0xc820f5dc00 0xc820f5dc80] } +&{glNormal3iv QOpenGLFunctions_1_1::glNormal3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f5de00] } +&{glNormal3s QOpenGLFunctions_1_1::glNormal3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f5dfc0 0xc820f6e040 0xc820f6e0c0] } +&{glNormal3sv QOpenGLFunctions_1_1::glNormal3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f6e220] } +&{glNormalPointer QOpenGLFunctions_1_1::glNormalPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f6e380 0xc820f6e400 0xc820f6e480] } +&{glOrtho QOpenGLFunctions_1_1::glOrtho commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f6e640 0xc820f6e6c0 0xc820f6e740 0xc820f6e7c0 0xc820f6e860 0xc820f6e8e0] } +&{glPassThrough QOpenGLFunctions_1_1::glPassThrough commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f6ea40] } +&{glPixelMapfv QOpenGLFunctions_1_1::glPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f6eba0 0xc820f6ec20 0xc820f6eca0] } +&{glPixelMapuiv QOpenGLFunctions_1_1::glPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f6ee00 0xc820f6ee80 0xc820f6ef00] } +&{glPixelMapusv QOpenGLFunctions_1_1::glPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f6f060 0xc820f6f0e0 0xc820f6f160] } +&{glPixelStoref QOpenGLFunctions_1_1::glPixelStoref commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f6f2c0 0xc820f6f340] } +&{glPixelStorei QOpenGLFunctions_1_1::glPixelStorei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f6f4a0 0xc820f6f520] } +&{glPixelTransferf QOpenGLFunctions_1_1::glPixelTransferf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f6f680 0xc820f6f700] } +&{glPixelTransferi QOpenGLFunctions_1_1::glPixelTransferi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f6f860 0xc820f6f8e0] } +&{glPixelZoom QOpenGLFunctions_1_1::glPixelZoom commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f6fa40 0xc820f6fac0] } +&{glPointSize QOpenGLFunctions_1_1::glPointSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f6fc40] } +&{glPolygonMode QOpenGLFunctions_1_1::glPolygonMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f6fda0 0xc820f6fe20] } +&{glPolygonOffset QOpenGLFunctions_1_1::glPolygonOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f6ff80 0xc820f80000] } +&{glPolygonStipple QOpenGLFunctions_1_1::glPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f80160] } +&{glPopAttrib QOpenGLFunctions_1_1::glPopAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [] } +&{glPopClientAttrib QOpenGLFunctions_1_1::glPopClientAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [] } +&{glPopMatrix QOpenGLFunctions_1_1::glPopMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [] } +&{glPopName QOpenGLFunctions_1_1::glPopName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [] } +&{glPrioritizeTextures QOpenGLFunctions_1_1::glPrioritizeTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f80640 0xc820f806c0 0xc820f80740] } +&{glPushAttrib QOpenGLFunctions_1_1::glPushAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f808a0] } +&{glPushClientAttrib QOpenGLFunctions_1_1::glPushClientAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f80a60] } +&{glPushMatrix QOpenGLFunctions_1_1::glPushMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [] } +&{glPushName QOpenGLFunctions_1_1::glPushName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f80ce0] } +&{glRasterPos2d QOpenGLFunctions_1_1::glRasterPos2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f80e40 0xc820f80ec0] } +&{glRasterPos2dv QOpenGLFunctions_1_1::glRasterPos2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f81020] } +&{glRasterPos2f QOpenGLFunctions_1_1::glRasterPos2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f81180 0xc820f81200] } +&{glRasterPos2fv QOpenGLFunctions_1_1::glRasterPos2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f81360] } +&{glRasterPos2i QOpenGLFunctions_1_1::glRasterPos2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f814c0 0xc820f81540] } +&{glRasterPos2iv QOpenGLFunctions_1_1::glRasterPos2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f816a0] } +&{glRasterPos2s QOpenGLFunctions_1_1::glRasterPos2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f81800 0xc820f81880] } +&{glRasterPos2sv QOpenGLFunctions_1_1::glRasterPos2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f819e0] } +&{glRasterPos3d QOpenGLFunctions_1_1::glRasterPos3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f81b40 0xc820f81bc0 0xc820f81c40] } +&{glRasterPos3dv QOpenGLFunctions_1_1::glRasterPos3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f81da0] } +&{glRasterPos3f QOpenGLFunctions_1_1::glRasterPos3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f81f00 0xc820f81f80 0xc820f96000] } +&{glRasterPos3fv QOpenGLFunctions_1_1::glRasterPos3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f96160] } +&{glRasterPos3i QOpenGLFunctions_1_1::glRasterPos3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f962c0 0xc820f96340 0xc820f963c0] } +&{glRasterPos3iv QOpenGLFunctions_1_1::glRasterPos3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f96520] } +&{glRasterPos3s QOpenGLFunctions_1_1::glRasterPos3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f96680 0xc820f96700 0xc820f96780] } +&{glRasterPos3sv QOpenGLFunctions_1_1::glRasterPos3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f968e0] } +&{glRasterPos4d QOpenGLFunctions_1_1::glRasterPos4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f96a40 0xc820f96ac0 0xc820f96b40 0xc820f96bc0] } +&{glRasterPos4dv QOpenGLFunctions_1_1::glRasterPos4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f96d20] } +&{glRasterPos4f QOpenGLFunctions_1_1::glRasterPos4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f96e80 0xc820f96f00 0xc820f96f80 0xc820f97000] } +&{glRasterPos4fv QOpenGLFunctions_1_1::glRasterPos4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f97160] } +&{glRasterPos4i QOpenGLFunctions_1_1::glRasterPos4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f972c0 0xc820f97340 0xc820f973c0 0xc820f97440] } +&{glRasterPos4iv QOpenGLFunctions_1_1::glRasterPos4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f975a0] } +&{glRasterPos4s QOpenGLFunctions_1_1::glRasterPos4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f97700 0xc820f97780 0xc820f97800 0xc820f97880] } +&{glRasterPos4sv QOpenGLFunctions_1_1::glRasterPos4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f979e0] } +&{glReadBuffer QOpenGLFunctions_1_1::glReadBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f97b60] } +&{glReadPixels QOpenGLFunctions_1_1::glReadPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820f97cc0 0xc820f97d40 0xc820f97dc0 0xc820f97e40 0xc820f97ee0 0xc820f97f60 0xc820f97fe0] } +&{glRectd QOpenGLFunctions_1_1::glRectd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820faa1a0 0xc820faa220 0xc820faa2a0 0xc820faa320] } +&{glRectdv QOpenGLFunctions_1_1::glRectdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820faa4e0 0xc820faa560] } +&{glRectf QOpenGLFunctions_1_1::glRectf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820faa720 0xc820faa7a0 0xc820faa820 0xc820faa8a0] } +&{glRectfv QOpenGLFunctions_1_1::glRectfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820faaa60 0xc820faaae0] } +&{glRecti QOpenGLFunctions_1_1::glRecti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820faaca0 0xc820faad20 0xc820faada0 0xc820faae20] } +&{glRectiv QOpenGLFunctions_1_1::glRectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820faafe0 0xc820fab060] } +&{glRects QOpenGLFunctions_1_1::glRects commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fab220 0xc820fab2a0 0xc820fab320 0xc820fab3a0] } +&{glRectsv QOpenGLFunctions_1_1::glRectsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fab560 0xc820fab5e0] } +&{glRenderMode QOpenGLFunctions_1_1::glRenderMode commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false GLint [0xc820fab760] } +&{glRotated QOpenGLFunctions_1_1::glRotated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fab920 0xc820fab9a0 0xc820faba20 0xc820fabaa0] } +&{glRotatef QOpenGLFunctions_1_1::glRotatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fabc60 0xc820fabce0 0xc820fabd60 0xc820fabde0] } +&{glScaled QOpenGLFunctions_1_1::glScaled commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fabfa0 0xc820fb8020 0xc820fb80a0] } +&{glScalef QOpenGLFunctions_1_1::glScalef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fb8260 0xc820fb82e0 0xc820fb8360] } +&{glScissor QOpenGLFunctions_1_1::glScissor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fb8540 0xc820fb85c0 0xc820fb8640 0xc820fb86c0] } +&{glSelectBuffer QOpenGLFunctions_1_1::glSelectBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fb8820 0xc820fb88a0] } +&{glShadeModel QOpenGLFunctions_1_1::glShadeModel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fb8a20] } +&{glStencilFunc QOpenGLFunctions_1_1::glStencilFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fb8b80 0xc820fb8c00 0xc820fb8c80] } +&{glStencilMask QOpenGLFunctions_1_1::glStencilMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fb8e00] } +&{glStencilOp QOpenGLFunctions_1_1::glStencilOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fb8f60 0xc820fb8fe0 0xc820fb9060] } +&{glTexCoord1d QOpenGLFunctions_1_1::glTexCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fb91e0] } +&{glTexCoord1dv QOpenGLFunctions_1_1::glTexCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fb9340] } +&{glTexCoord1f QOpenGLFunctions_1_1::glTexCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fb94c0] } +&{glTexCoord1fv QOpenGLFunctions_1_1::glTexCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fb9620] } +&{glTexCoord1i QOpenGLFunctions_1_1::glTexCoord1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fb97a0] } +&{glTexCoord1iv QOpenGLFunctions_1_1::glTexCoord1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fb9900] } +&{glTexCoord1s QOpenGLFunctions_1_1::glTexCoord1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fb9a80] } +&{glTexCoord1sv QOpenGLFunctions_1_1::glTexCoord1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fb9be0] } +&{glTexCoord2d QOpenGLFunctions_1_1::glTexCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fb9d40 0xc820fb9dc0] } +&{glTexCoord2dv QOpenGLFunctions_1_1::glTexCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fb9f20] } +&{glTexCoord2f QOpenGLFunctions_1_1::glTexCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fca080 0xc820fca100] } +&{glTexCoord2fv QOpenGLFunctions_1_1::glTexCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fca260] } +&{glTexCoord2i QOpenGLFunctions_1_1::glTexCoord2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fca3c0 0xc820fca440] } +&{glTexCoord2iv QOpenGLFunctions_1_1::glTexCoord2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fca5a0] } +&{glTexCoord2s QOpenGLFunctions_1_1::glTexCoord2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fca700 0xc820fca780] } +&{glTexCoord2sv QOpenGLFunctions_1_1::glTexCoord2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fca8e0] } +&{glTexCoord3d QOpenGLFunctions_1_1::glTexCoord3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fcaa40 0xc820fcaac0 0xc820fcab40] } +&{glTexCoord3dv QOpenGLFunctions_1_1::glTexCoord3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fcaca0] } +&{glTexCoord3f QOpenGLFunctions_1_1::glTexCoord3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fcae00 0xc820fcae80 0xc820fcaf00] } +&{glTexCoord3fv QOpenGLFunctions_1_1::glTexCoord3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fcb060] } +&{glTexCoord3i QOpenGLFunctions_1_1::glTexCoord3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fcb1c0 0xc820fcb240 0xc820fcb2c0] } +&{glTexCoord3iv QOpenGLFunctions_1_1::glTexCoord3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fcb420] } +&{glTexCoord3s QOpenGLFunctions_1_1::glTexCoord3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fcb580 0xc820fcb600 0xc820fcb680] } +&{glTexCoord3sv QOpenGLFunctions_1_1::glTexCoord3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fcb7e0] } +&{glTexCoord4d QOpenGLFunctions_1_1::glTexCoord4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fcb940 0xc820fcb9c0 0xc820fcba40 0xc820fcbac0] } +&{glTexCoord4dv QOpenGLFunctions_1_1::glTexCoord4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fcbc20] } +&{glTexCoord4f QOpenGLFunctions_1_1::glTexCoord4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fcbd80 0xc820fcbe00 0xc820fcbe80 0xc820fcbf00] } +&{glTexCoord4fv QOpenGLFunctions_1_1::glTexCoord4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fe0060] } +&{glTexCoord4i QOpenGLFunctions_1_1::glTexCoord4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fe01c0 0xc820fe0240 0xc820fe02c0 0xc820fe0340] } +&{glTexCoord4iv QOpenGLFunctions_1_1::glTexCoord4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fe04a0] } +&{glTexCoord4s QOpenGLFunctions_1_1::glTexCoord4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fe0600 0xc820fe0680 0xc820fe0700 0xc820fe0780] } +&{glTexCoord4sv QOpenGLFunctions_1_1::glTexCoord4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fe08e0] } +&{glTexCoordPointer QOpenGLFunctions_1_1::glTexCoordPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fe0aa0 0xc820fe0b20 0xc820fe0ba0 0xc820fe0c20] } +&{glTexEnvf QOpenGLFunctions_1_1::glTexEnvf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fe0de0 0xc820fe0e60 0xc820fe0ee0] } +&{glTexEnvfv QOpenGLFunctions_1_1::glTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fe10a0 0xc820fe1120 0xc820fe11a0] } +&{glTexEnvi QOpenGLFunctions_1_1::glTexEnvi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fe1360 0xc820fe13e0 0xc820fe1460] } +&{glTexEnviv QOpenGLFunctions_1_1::glTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fe1620 0xc820fe16a0 0xc820fe1720] } +&{glTexGend QOpenGLFunctions_1_1::glTexGend commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fe18e0 0xc820fe1960 0xc820fe19e0] } +&{glTexGendv QOpenGLFunctions_1_1::glTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fe1ba0 0xc820fe1c20 0xc820fe1ca0] } +&{glTexGenf QOpenGLFunctions_1_1::glTexGenf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820fe1e60 0xc820fe1ee0 0xc820fe1f60] } +&{glTexGenfv QOpenGLFunctions_1_1::glTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820ff0120 0xc820ff01a0 0xc820ff0220] } +&{glTexGeni QOpenGLFunctions_1_1::glTexGeni commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820ff03e0 0xc820ff0460 0xc820ff04e0] } +&{glTexGeniv QOpenGLFunctions_1_1::glTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820ff06a0 0xc820ff0720 0xc820ff07a0] } +&{glTexImage1D QOpenGLFunctions_1_1::glTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820ff0900 0xc820ff0980 0xc820ff0a00 0xc820ff0a80 0xc820ff0b20 0xc820ff0ba0 0xc820ff0c20 0xc820ff0ca0] } +&{glTexImage2D QOpenGLFunctions_1_1::glTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820ff0e00 0xc820ff0e80 0xc820ff0f00 0xc820ff0f80 0xc820ff1020 0xc820ff10a0 0xc820ff1120 0xc820ff11a0 0xc820ff1240] } +&{glTexParameterf QOpenGLFunctions_1_1::glTexParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820ff13a0 0xc820ff1420 0xc820ff14a0] } +&{glTexParameterfv QOpenGLFunctions_1_1::glTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820ff1600 0xc820ff1680 0xc820ff1700] } +&{glTexParameteri QOpenGLFunctions_1_1::glTexParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820ff1860 0xc820ff18e0 0xc820ff1960] } +&{glTexParameteriv QOpenGLFunctions_1_1::glTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820ff1ac0 0xc820ff1b40 0xc820ff1bc0] } +&{glTexSubImage1D QOpenGLFunctions_1_1::glTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc820ff1d20 0xc820ff1da0 0xc820ff1e20 0xc820ff1ea0 0xc820ff1f40 0xc820ff1fc0 0xc821000040] } +&{glTexSubImage2D QOpenGLFunctions_1_1::glTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc8210001a0 0xc821000220 0xc8210002a0 0xc821000320 0xc8210003c0 0xc821000440 0xc8210004c0 0xc821000540 0xc8210005e0] } +&{glTranslated QOpenGLFunctions_1_1::glTranslated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc821000740 0xc8210007c0 0xc821000840] } +&{glTranslatef QOpenGLFunctions_1_1::glTranslatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc8210009a0 0xc821000a20 0xc821000aa0] } +&{glVertex2d QOpenGLFunctions_1_1::glVertex2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc821000c60 0xc821000ce0] } +&{glVertex2dv QOpenGLFunctions_1_1::glVertex2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc821000e40] } +&{glVertex2f QOpenGLFunctions_1_1::glVertex2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc821001000 0xc821001080] } +&{glVertex2fv QOpenGLFunctions_1_1::glVertex2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc8210011e0] } +&{glVertex2i QOpenGLFunctions_1_1::glVertex2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc8210013a0 0xc821001420] } +&{glVertex2iv QOpenGLFunctions_1_1::glVertex2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc8210015a0] } +&{glVertex2s QOpenGLFunctions_1_1::glVertex2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc821001760 0xc8210017e0] } +&{glVertex2sv QOpenGLFunctions_1_1::glVertex2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc821001940] } +&{glVertex3d QOpenGLFunctions_1_1::glVertex3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc821001b00 0xc821001b80 0xc821001c00] } +&{glVertex3dv QOpenGLFunctions_1_1::glVertex3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc821001d60] } +&{glVertex3f QOpenGLFunctions_1_1::glVertex3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc821001f20 0xc821001fa0 0xc82100e020] } +&{glVertex3fv QOpenGLFunctions_1_1::glVertex3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc82100e180] } +&{glVertex3i QOpenGLFunctions_1_1::glVertex3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc82100e340 0xc82100e3c0 0xc82100e440] } +&{glVertex3iv QOpenGLFunctions_1_1::glVertex3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc82100e5c0] } +&{glVertex3s QOpenGLFunctions_1_1::glVertex3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc82100e780 0xc82100e800 0xc82100e880] } +&{glVertex3sv QOpenGLFunctions_1_1::glVertex3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc82100e9e0] } +&{glVertex4d QOpenGLFunctions_1_1::glVertex4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc82100eba0 0xc82100ec20 0xc82100eca0 0xc82100ed20] } +&{glVertex4dv QOpenGLFunctions_1_1::glVertex4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc82100ee80] } +&{glVertex4f QOpenGLFunctions_1_1::glVertex4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc82100f040 0xc82100f0c0 0xc82100f140 0xc82100f1c0] } +&{glVertex4fv QOpenGLFunctions_1_1::glVertex4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc82100f320] } +&{glVertex4i QOpenGLFunctions_1_1::glVertex4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc82100f4e0 0xc82100f560 0xc82100f5e0 0xc82100f660] } +&{glVertex4iv QOpenGLFunctions_1_1::glVertex4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc82100f7e0] } +&{glVertex4s QOpenGLFunctions_1_1::glVertex4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc82100f9a0 0xc82100fa20 0xc82100faa0 0xc82100fb20] } +&{glVertex4sv QOpenGLFunctions_1_1::glVertex4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc82100fc80] } +&{glVertexPointer QOpenGLFunctions_1_1::glVertexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc82100fde0 0xc82100fe60 0xc82100fee0 0xc82100ff60] } +&{glViewport QOpenGLFunctions_1_1::glViewport commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_1.h non plain false false void [0xc821020120 0xc8210201a0 0xc821020220 0xc8210202a0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions_1_2.txt b/internal/binding/dump/QtGui/QOpenGLFunctions_1_2.txt new file mode 100755 index 00000000..1f3d873f --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions_1_2.txt @@ -0,0 +1,379 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions_1_2 QOpenGLFunctions_1_2::QOpenGLFunctions_1_2 commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.cpp non constructor false false [] } +&{initializeOpenGLFunctions QOpenGLFunctions_1_2::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.cpp impure plain false false bool [] } +&{~QOpenGLFunctions_1_2 QOpenGLFunctions_1_2::~QOpenGLFunctions_1_2 commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.cpp non destructor false false [] } +&{glAccum QOpenGLFunctions_1_2::glAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821020be0 0xc821020c60] } +&{glAlphaFunc QOpenGLFunctions_1_2::glAlphaFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821020dc0 0xc821020e40] } +&{glAreTexturesResident QOpenGLFunctions_1_2::glAreTexturesResident commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false GLboolean [0xc821021000 0xc821021080 0xc821021100] } +&{glArrayElement QOpenGLFunctions_1_2::glArrayElement commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210212a0] } +&{glBegin QOpenGLFunctions_1_2::glBegin commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821021480] } +&{glBindTexture QOpenGLFunctions_1_2::glBindTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210215e0 0xc821021660] } +&{glBitmap QOpenGLFunctions_1_2::glBitmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821021820 0xc8210218a0 0xc821021920 0xc8210219a0 0xc821021a40 0xc821021ac0 0xc821021b40] } +&{glBlendColor QOpenGLFunctions_1_2::glBlendColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821021ca0 0xc821021d20 0xc821021da0 0xc821021e20] } +&{glBlendEquation QOpenGLFunctions_1_2::glBlendEquation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821021f80] } +&{glBlendFunc QOpenGLFunctions_1_2::glBlendFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210300e0 0xc821030160] } +&{glCallList QOpenGLFunctions_1_2::glCallList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821030340] } +&{glCallLists QOpenGLFunctions_1_2::glCallLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210304c0 0xc821030540 0xc8210305c0] } +&{glClear QOpenGLFunctions_1_2::glClear commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210307a0] } +&{glClearAccum QOpenGLFunctions_1_2::glClearAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821030900 0xc821030980 0xc821030a00 0xc821030a80] } +&{glClearColor QOpenGLFunctions_1_2::glClearColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821030be0 0xc821030c60 0xc821030ce0 0xc821030d60] } +&{glClearDepth QOpenGLFunctions_1_2::glClearDepth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821030ec0] } +&{glClearIndex QOpenGLFunctions_1_2::glClearIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821031040] } +&{glClearStencil QOpenGLFunctions_1_2::glClearStencil commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210311c0] } +&{glClipPlane QOpenGLFunctions_1_2::glClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821031320 0xc8210313a0] } +&{glColor3b QOpenGLFunctions_1_2::glColor3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821031560 0xc8210315e0 0xc821031660] } +&{glColor3bv QOpenGLFunctions_1_2::glColor3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821031840] } +&{glColor3d QOpenGLFunctions_1_2::glColor3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821031a00 0xc821031a80 0xc821031b00] } +&{glColor3dv QOpenGLFunctions_1_2::glColor3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821031cc0] } +&{glColor3f QOpenGLFunctions_1_2::glColor3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821031e80 0xc821031f00 0xc821031f80] } +&{glColor3fv QOpenGLFunctions_1_2::glColor3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821042140] } +&{glColor3i QOpenGLFunctions_1_2::glColor3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821042300 0xc821042380 0xc821042400] } +&{glColor3iv QOpenGLFunctions_1_2::glColor3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210425e0] } +&{glColor3s QOpenGLFunctions_1_2::glColor3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210427c0 0xc821042840 0xc8210428c0] } +&{glColor3sv QOpenGLFunctions_1_2::glColor3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821042a80] } +&{glColor3ub QOpenGLFunctions_1_2::glColor3ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821042c40 0xc821042cc0 0xc821042d40] } +&{glColor3ubv QOpenGLFunctions_1_2::glColor3ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821042ea0] } +&{glColor3ui QOpenGLFunctions_1_2::glColor3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821043060 0xc8210430e0 0xc821043160] } +&{glColor3uiv QOpenGLFunctions_1_2::glColor3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210432c0] } +&{glColor3us QOpenGLFunctions_1_2::glColor3us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821043480 0xc821043500 0xc821043580] } +&{glColor3usv QOpenGLFunctions_1_2::glColor3usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210436e0] } +&{glColor4b QOpenGLFunctions_1_2::glColor4b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210438a0 0xc821043920 0xc8210439a0 0xc821043a20] } +&{glColor4bv QOpenGLFunctions_1_2::glColor4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821043c00] } +&{glColor4d QOpenGLFunctions_1_2::glColor4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821043dc0 0xc821043e40 0xc821043ec0 0xc821043f40] } +&{glColor4dv QOpenGLFunctions_1_2::glColor4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821050100] } +&{glColor4f QOpenGLFunctions_1_2::glColor4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210502c0 0xc821050340 0xc8210503c0 0xc821050440] } +&{glColor4fv QOpenGLFunctions_1_2::glColor4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821050600] } +&{glColor4i QOpenGLFunctions_1_2::glColor4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210507c0 0xc821050840 0xc8210508c0 0xc821050940] } +&{glColor4iv QOpenGLFunctions_1_2::glColor4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821050b20] } +&{glColor4s QOpenGLFunctions_1_2::glColor4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821050ce0 0xc821050d60 0xc821050de0 0xc821050e60] } +&{glColor4sv QOpenGLFunctions_1_2::glColor4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821051020] } +&{glColor4ub QOpenGLFunctions_1_2::glColor4ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210511e0 0xc821051260 0xc8210512e0 0xc821051360] } +&{glColor4ubv QOpenGLFunctions_1_2::glColor4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210514c0] } +&{glColor4ui QOpenGLFunctions_1_2::glColor4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821051680 0xc821051700 0xc821051780 0xc821051800] } +&{glColor4uiv QOpenGLFunctions_1_2::glColor4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821051960] } +&{glColor4us QOpenGLFunctions_1_2::glColor4us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821051b20 0xc821051ba0 0xc821051c20 0xc821051ca0] } +&{glColor4usv QOpenGLFunctions_1_2::glColor4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821051e00] } +&{glColorMask QOpenGLFunctions_1_2::glColorMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821051f60 0xc821051fe0 0xc821064060 0xc8210640e0] } +&{glColorMaterial QOpenGLFunctions_1_2::glColorMaterial commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821064240 0xc8210642c0] } +&{glColorPointer QOpenGLFunctions_1_2::glColorPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821064420 0xc8210644a0 0xc821064520 0xc8210645a0] } +&{glColorSubTable QOpenGLFunctions_1_2::glColorSubTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821064700 0xc821064780 0xc821064800 0xc821064880 0xc821064920 0xc8210649a0] } +&{glColorTable QOpenGLFunctions_1_2::glColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821064b00 0xc821064b80 0xc821064c00 0xc821064c80 0xc821064d20 0xc821064da0] } +&{glColorTableParameterfv QOpenGLFunctions_1_2::glColorTableParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821064f60 0xc821064fe0 0xc821065060] } +&{glColorTableParameteriv QOpenGLFunctions_1_2::glColorTableParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821065220 0xc8210652a0 0xc821065320] } +&{glConvolutionFilter1D QOpenGLFunctions_1_2::glConvolutionFilter1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210654e0 0xc821065560 0xc8210655e0 0xc821065660 0xc821065700 0xc821065780] } +&{glConvolutionFilter2D QOpenGLFunctions_1_2::glConvolutionFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821065960 0xc8210659e0 0xc821065a60 0xc821065ae0 0xc821065b80 0xc821065c00 0xc821065c80] } +&{glConvolutionParameterf QOpenGLFunctions_1_2::glConvolutionParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821065e40 0xc821065ec0 0xc821065f40] } +&{glConvolutionParameterfv QOpenGLFunctions_1_2::glConvolutionParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821072100 0xc821072180 0xc821072200] } +&{glConvolutionParameteri QOpenGLFunctions_1_2::glConvolutionParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210723c0 0xc821072440 0xc8210724c0] } +&{glConvolutionParameteriv QOpenGLFunctions_1_2::glConvolutionParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821072680 0xc821072700 0xc821072780] } +&{glCopyColorSubTable QOpenGLFunctions_1_2::glCopyColorSubTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821072940 0xc8210729c0 0xc821072a40 0xc821072ac0 0xc821072b60] } +&{glCopyColorTable QOpenGLFunctions_1_2::glCopyColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821072cc0 0xc821072d40 0xc821072dc0 0xc821072e40 0xc821072ee0] } +&{glCopyConvolutionFilter1D QOpenGLFunctions_1_2::glCopyConvolutionFilter1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210730a0 0xc821073120 0xc8210731a0 0xc821073220 0xc8210732c0] } +&{glCopyConvolutionFilter2D QOpenGLFunctions_1_2::glCopyConvolutionFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821073480 0xc821073500 0xc821073580 0xc821073600 0xc8210736a0 0xc821073720] } +&{glCopyPixels QOpenGLFunctions_1_2::glCopyPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821073880 0xc821073900 0xc821073980 0xc821073a00 0xc821073aa0] } +&{glCopyTexImage1D QOpenGLFunctions_1_2::glCopyTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821073c00 0xc821073c80 0xc821073d00 0xc821073d80 0xc821073e20 0xc821073ea0 0xc821073f20] } +&{glCopyTexImage2D QOpenGLFunctions_1_2::glCopyTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82107e080 0xc82107e100 0xc82107e180 0xc82107e200 0xc82107e2a0 0xc82107e320 0xc82107e3a0 0xc82107e420] } +&{glCopyTexSubImage1D QOpenGLFunctions_1_2::glCopyTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82107e5e0 0xc82107e660 0xc82107e6e0 0xc82107e760 0xc82107e800 0xc82107e880] } +&{glCopyTexSubImage2D QOpenGLFunctions_1_2::glCopyTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82107ea40 0xc82107eac0 0xc82107eb40 0xc82107ebc0 0xc82107ec60 0xc82107ece0 0xc82107ed60 0xc82107ede0] } +&{glCopyTexSubImage3D QOpenGLFunctions_1_2::glCopyTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82107efa0 0xc82107f020 0xc82107f0a0 0xc82107f120 0xc82107f1c0 0xc82107f240 0xc82107f2c0 0xc82107f340 0xc82107f3e0] } +&{glCullFace QOpenGLFunctions_1_2::glCullFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82107f5c0] } +&{glDeleteLists QOpenGLFunctions_1_2::glDeleteLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82107f720 0xc82107f7a0] } +&{glDeleteTextures QOpenGLFunctions_1_2::glDeleteTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82107f900 0xc82107f980] } +&{glDepthFunc QOpenGLFunctions_1_2::glDepthFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82107fb00] } +&{glDepthMask QOpenGLFunctions_1_2::glDepthMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82107fc80] } +&{glDepthRange QOpenGLFunctions_1_2::glDepthRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82107fde0 0xc82107fe60] } +&{glDisable QOpenGLFunctions_1_2::glDisable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82108e040] } +&{glDisableClientState QOpenGLFunctions_1_2::glDisableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82108e200] } +&{glDrawArrays QOpenGLFunctions_1_2::glDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82108e360 0xc82108e3e0 0xc82108e460] } +&{glDrawBuffer QOpenGLFunctions_1_2::glDrawBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82108e5e0] } +&{glDrawElements QOpenGLFunctions_1_2::glDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82108e740 0xc82108e7c0 0xc82108e840 0xc82108e8c0] } +&{glDrawPixels QOpenGLFunctions_1_2::glDrawPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82108ea20 0xc82108eaa0 0xc82108eb20 0xc82108eba0 0xc82108ec40] } +&{glDrawRangeElements QOpenGLFunctions_1_2::glDrawRangeElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82108ee00 0xc82108ee80 0xc82108ef00 0xc82108ef80 0xc82108f020 0xc82108f0a0] } +&{glEdgeFlag QOpenGLFunctions_1_2::glEdgeFlag commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82108f280] } +&{glEdgeFlagPointer QOpenGLFunctions_1_2::glEdgeFlagPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82108f440 0xc82108f4c0] } +&{glEdgeFlagv QOpenGLFunctions_1_2::glEdgeFlagv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82108f640] } +&{glEnable QOpenGLFunctions_1_2::glEnable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82108f860] } +&{glEnableClientState QOpenGLFunctions_1_2::glEnableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82108fa20] } +&{glEnd QOpenGLFunctions_1_2::glEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [] } +&{glEndList QOpenGLFunctions_1_2::glEndList commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [] } +&{glEvalCoord1d QOpenGLFunctions_1_2::glEvalCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82108fd80] } +&{glEvalCoord1dv QOpenGLFunctions_1_2::glEvalCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82108fee0] } +&{glEvalCoord1f QOpenGLFunctions_1_2::glEvalCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210a0060] } +&{glEvalCoord1fv QOpenGLFunctions_1_2::glEvalCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210a01c0] } +&{glEvalCoord2d QOpenGLFunctions_1_2::glEvalCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210a0320 0xc8210a03a0] } +&{glEvalCoord2dv QOpenGLFunctions_1_2::glEvalCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210a0500] } +&{glEvalCoord2f QOpenGLFunctions_1_2::glEvalCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210a0660 0xc8210a06e0] } +&{glEvalCoord2fv QOpenGLFunctions_1_2::glEvalCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210a0840] } +&{glEvalMesh1 QOpenGLFunctions_1_2::glEvalMesh1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210a09a0 0xc8210a0a20 0xc8210a0aa0] } +&{glEvalMesh2 QOpenGLFunctions_1_2::glEvalMesh2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210a0c00 0xc8210a0c80 0xc8210a0d00 0xc8210a0d80 0xc8210a0e20] } +&{glEvalPoint1 QOpenGLFunctions_1_2::glEvalPoint1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210a0fa0] } +&{glEvalPoint2 QOpenGLFunctions_1_2::glEvalPoint2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210a1100 0xc8210a1180] } +&{glFeedbackBuffer QOpenGLFunctions_1_2::glFeedbackBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210a12e0 0xc8210a1360 0xc8210a13e0] } +&{glFinish QOpenGLFunctions_1_2::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [] } +&{glFlush QOpenGLFunctions_1_2::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [] } +&{glFogf QOpenGLFunctions_1_2::glFogf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210a1780 0xc8210a1800] } +&{glFogfv QOpenGLFunctions_1_2::glFogfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210a19c0 0xc8210a1a40] } +&{glFogi QOpenGLFunctions_1_2::glFogi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210a1c20 0xc8210a1ca0] } +&{glFogiv QOpenGLFunctions_1_2::glFogiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210a1e60 0xc8210a1ee0] } +&{glFrontFace QOpenGLFunctions_1_2::glFrontFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210b4060] } +&{glFrustum QOpenGLFunctions_1_2::glFrustum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210b4220 0xc8210b42a0 0xc8210b4320 0xc8210b43a0 0xc8210b4440 0xc8210b44c0] } +&{glGenLists QOpenGLFunctions_1_2::glGenLists commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false GLuint [0xc8210b46a0] } +&{glGenTextures QOpenGLFunctions_1_2::glGenTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210b4800 0xc8210b4880] } +&{glGetBooleanv QOpenGLFunctions_1_2::glGetBooleanv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210b49e0 0xc8210b4a60] } +&{glGetClipPlane QOpenGLFunctions_1_2::glGetClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210b4bc0 0xc8210b4c40] } +&{glGetColorTable QOpenGLFunctions_1_2::glGetColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210b4da0 0xc8210b4e20 0xc8210b4ea0 0xc8210b4f20] } +&{glGetColorTableParameterfv QOpenGLFunctions_1_2::glGetColorTableParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210b50e0 0xc8210b5160 0xc8210b51e0] } +&{glGetColorTableParameteriv QOpenGLFunctions_1_2::glGetColorTableParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210b53a0 0xc8210b5420 0xc8210b54a0] } +&{glGetConvolutionFilter QOpenGLFunctions_1_2::glGetConvolutionFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210b5660 0xc8210b56e0 0xc8210b5760 0xc8210b57e0] } +&{glGetConvolutionParameterfv QOpenGLFunctions_1_2::glGetConvolutionParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210b59c0 0xc8210b5a40 0xc8210b5ac0] } +&{glGetConvolutionParameteriv QOpenGLFunctions_1_2::glGetConvolutionParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210b5c80 0xc8210b5d00 0xc8210b5d80] } +&{glGetDoublev QOpenGLFunctions_1_2::glGetDoublev commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210b5ee0 0xc8210b5f60] } +&{glGetError QOpenGLFunctions_1_2::glGetError commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false GLenum [] } +&{glGetFloatv QOpenGLFunctions_1_2::glGetFloatv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210c41c0 0xc8210c4240] } +&{glGetHistogram QOpenGLFunctions_1_2::glGetHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210c43a0 0xc8210c4420 0xc8210c44a0 0xc8210c4520 0xc8210c45c0] } +&{glGetHistogramParameterfv QOpenGLFunctions_1_2::glGetHistogramParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210c4780 0xc8210c4800 0xc8210c4880] } +&{glGetHistogramParameteriv QOpenGLFunctions_1_2::glGetHistogramParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210c4a40 0xc8210c4ac0 0xc8210c4b40] } +&{glGetIntegerv QOpenGLFunctions_1_2::glGetIntegerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210c4ca0 0xc8210c4d20] } +&{glGetLightfv QOpenGLFunctions_1_2::glGetLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210c4e80 0xc8210c4f00 0xc8210c4f80] } +&{glGetLightiv QOpenGLFunctions_1_2::glGetLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210c50e0 0xc8210c5160 0xc8210c51e0] } +&{glGetMapdv QOpenGLFunctions_1_2::glGetMapdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210c53a0 0xc8210c5420 0xc8210c54a0] } +&{glGetMapfv QOpenGLFunctions_1_2::glGetMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210c5660 0xc8210c56e0 0xc8210c5760] } +&{glGetMapiv QOpenGLFunctions_1_2::glGetMapiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210c5920 0xc8210c59a0 0xc8210c5a20] } +&{glGetMaterialfv QOpenGLFunctions_1_2::glGetMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210c5b80 0xc8210c5c00 0xc8210c5c80] } +&{glGetMaterialiv QOpenGLFunctions_1_2::glGetMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210c5de0 0xc8210c5e60 0xc8210c5ee0] } +&{glGetMinmax QOpenGLFunctions_1_2::glGetMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210d2040 0xc8210d20c0 0xc8210d2140 0xc8210d21c0 0xc8210d2260] } +&{glGetMinmaxParameterfv QOpenGLFunctions_1_2::glGetMinmaxParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210d2420 0xc8210d24a0 0xc8210d2520] } +&{glGetMinmaxParameteriv QOpenGLFunctions_1_2::glGetMinmaxParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210d26e0 0xc8210d2760 0xc8210d27e0] } +&{glGetPixelMapfv QOpenGLFunctions_1_2::glGetPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210d2940 0xc8210d29c0] } +&{glGetPixelMapuiv QOpenGLFunctions_1_2::glGetPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210d2b20 0xc8210d2ba0] } +&{glGetPixelMapusv QOpenGLFunctions_1_2::glGetPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210d2d00 0xc8210d2d80] } +&{glGetPointerv QOpenGLFunctions_1_2::glGetPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210d2ee0 0xc8210d2f60] } +&{glGetPolygonStipple QOpenGLFunctions_1_2::glGetPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210d3120] } +&{glGetSeparableFilter QOpenGLFunctions_1_2::glGetSeparableFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210d32e0 0xc8210d3360 0xc8210d33e0 0xc8210d3460 0xc8210d3500 0xc8210d3580] } +&{glGetString QOpenGLFunctions_1_2::glGetString commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false const GLubyte * [0xc8210d36e0] } +&{glGetTexEnvfv QOpenGLFunctions_1_2::glGetTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210d3840 0xc8210d38c0 0xc8210d3940] } +&{glGetTexEnviv QOpenGLFunctions_1_2::glGetTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210d3aa0 0xc8210d3b20 0xc8210d3ba0] } +&{glGetTexGendv QOpenGLFunctions_1_2::glGetTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210d3d00 0xc8210d3d80 0xc8210d3e00] } +&{glGetTexGenfv QOpenGLFunctions_1_2::glGetTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210d3f60 0xc8210d3fe0 0xc8210e4060] } +&{glGetTexGeniv QOpenGLFunctions_1_2::glGetTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210e41c0 0xc8210e4240 0xc8210e42c0] } +&{glGetTexImage QOpenGLFunctions_1_2::glGetTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210e4420 0xc8210e44a0 0xc8210e4520 0xc8210e45a0 0xc8210e4640] } +&{glGetTexLevelParameterfv QOpenGLFunctions_1_2::glGetTexLevelParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210e4800 0xc8210e4880 0xc8210e4900 0xc8210e4980] } +&{glGetTexLevelParameteriv QOpenGLFunctions_1_2::glGetTexLevelParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210e4b40 0xc8210e4bc0 0xc8210e4c40 0xc8210e4cc0] } +&{glGetTexParameterfv QOpenGLFunctions_1_2::glGetTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210e4e80 0xc8210e4f00 0xc8210e4f80] } +&{glGetTexParameteriv QOpenGLFunctions_1_2::glGetTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210e5140 0xc8210e51c0 0xc8210e5240] } +&{glHint QOpenGLFunctions_1_2::glHint commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210e5420 0xc8210e54a0] } +&{glHistogram QOpenGLFunctions_1_2::glHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210e5600 0xc8210e5680 0xc8210e5700 0xc8210e5780] } +&{glIndexMask QOpenGLFunctions_1_2::glIndexMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210e5900] } +&{glIndexPointer QOpenGLFunctions_1_2::glIndexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210e5a60 0xc8210e5ae0 0xc8210e5b60] } +&{glIndexd QOpenGLFunctions_1_2::glIndexd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210e5d40] } +&{glIndexdv QOpenGLFunctions_1_2::glIndexdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210e5f00] } +&{glIndexf QOpenGLFunctions_1_2::glIndexf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210f80e0] } +&{glIndexfv QOpenGLFunctions_1_2::glIndexfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210f82c0] } +&{glIndexi QOpenGLFunctions_1_2::glIndexi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210f84a0] } +&{glIndexiv QOpenGLFunctions_1_2::glIndexiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210f8680] } +&{glIndexs QOpenGLFunctions_1_2::glIndexs commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210f8860] } +&{glIndexsv QOpenGLFunctions_1_2::glIndexsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210f8a40] } +&{glIndexub QOpenGLFunctions_1_2::glIndexub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210f8c20] } +&{glIndexubv QOpenGLFunctions_1_2::glIndexubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210f8de0] } +&{glInitNames QOpenGLFunctions_1_2::glInitNames commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [] } +&{glInterleavedArrays QOpenGLFunctions_1_2::glInterleavedArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210f9040 0xc8210f90c0 0xc8210f9140] } +&{glIsEnabled QOpenGLFunctions_1_2::glIsEnabled commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false GLboolean [0xc8210f92a0] } +&{glIsList QOpenGLFunctions_1_2::glIsList commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false GLboolean [0xc8210f9480] } +&{glIsTexture QOpenGLFunctions_1_2::glIsTexture commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false GLboolean [0xc8210f95e0] } +&{glLightModelf QOpenGLFunctions_1_2::glLightModelf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210f9740 0xc8210f97c0] } +&{glLightModelfv QOpenGLFunctions_1_2::glLightModelfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210f9920 0xc8210f99a0] } +&{glLightModeli QOpenGLFunctions_1_2::glLightModeli commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210f9b00 0xc8210f9b80] } +&{glLightModeliv QOpenGLFunctions_1_2::glLightModeliv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210f9ce0 0xc8210f9d60] } +&{glLightf QOpenGLFunctions_1_2::glLightf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8210f9f20 0xc8210f9fa0 0xc821106020] } +&{glLightfv QOpenGLFunctions_1_2::glLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211061e0 0xc821106260 0xc8211062e0] } +&{glLighti QOpenGLFunctions_1_2::glLighti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211064a0 0xc821106520 0xc8211065a0] } +&{glLightiv QOpenGLFunctions_1_2::glLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821106760 0xc8211067e0 0xc821106860] } +&{glLineStipple QOpenGLFunctions_1_2::glLineStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211069c0 0xc821106a40] } +&{glLineWidth QOpenGLFunctions_1_2::glLineWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821106bc0] } +&{glListBase QOpenGLFunctions_1_2::glListBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821106da0] } +&{glLoadIdentity QOpenGLFunctions_1_2::glLoadIdentity commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [] } +&{glLoadMatrixd QOpenGLFunctions_1_2::glLoadMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821106fa0] } +&{glLoadMatrixf QOpenGLFunctions_1_2::glLoadMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821107100] } +&{glLoadName QOpenGLFunctions_1_2::glLoadName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211072e0] } +&{glLogicOp QOpenGLFunctions_1_2::glLogicOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211074c0] } +&{glMap1d QOpenGLFunctions_1_2::glMap1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821107680 0xc821107700 0xc821107780 0xc821107800 0xc8211078a0 0xc821107920] } +&{glMap1f QOpenGLFunctions_1_2::glMap1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821107ae0 0xc821107b60 0xc821107be0 0xc821107c60 0xc821107d00 0xc821107d80] } +&{glMap2d QOpenGLFunctions_1_2::glMap2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821107f40 0xc821107fc0 0xc821118040 0xc8211180c0 0xc821118160 0xc8211181e0 0xc821118260 0xc8211182e0 0xc821118380 0xc821118400] } +&{glMap2f QOpenGLFunctions_1_2::glMap2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211185c0 0xc821118640 0xc8211186c0 0xc821118740 0xc8211187e0 0xc821118860 0xc8211188e0 0xc821118960 0xc821118a00 0xc821118a80] } +&{glMapGrid1d QOpenGLFunctions_1_2::glMapGrid1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821118be0 0xc821118c60 0xc821118ce0] } +&{glMapGrid1f QOpenGLFunctions_1_2::glMapGrid1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821118e40 0xc821118ec0 0xc821118f40] } +&{glMapGrid2d QOpenGLFunctions_1_2::glMapGrid2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211190a0 0xc821119120 0xc8211191a0 0xc821119220 0xc8211192c0 0xc821119340] } +&{glMapGrid2f QOpenGLFunctions_1_2::glMapGrid2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211194a0 0xc821119520 0xc8211195a0 0xc821119620 0xc8211196c0 0xc821119740] } +&{glMaterialf QOpenGLFunctions_1_2::glMaterialf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211198a0 0xc821119920 0xc8211199a0] } +&{glMaterialfv QOpenGLFunctions_1_2::glMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821119b00 0xc821119b80 0xc821119c00] } +&{glMateriali QOpenGLFunctions_1_2::glMateriali commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821119d60 0xc821119de0 0xc821119e60] } +&{glMaterialiv QOpenGLFunctions_1_2::glMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821119fc0 0xc821124040 0xc8211240c0] } +&{glMatrixMode QOpenGLFunctions_1_2::glMatrixMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821124240] } +&{glMinmax QOpenGLFunctions_1_2::glMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821124400 0xc821124480 0xc821124500] } +&{glMultMatrixd QOpenGLFunctions_1_2::glMultMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821124660] } +&{glMultMatrixf QOpenGLFunctions_1_2::glMultMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211247c0] } +&{glNewList QOpenGLFunctions_1_2::glNewList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821124980 0xc821124a00] } +&{glNormal3b QOpenGLFunctions_1_2::glNormal3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821124bc0 0xc821124c40 0xc821124cc0] } +&{glNormal3bv QOpenGLFunctions_1_2::glNormal3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821124e20] } +&{glNormal3d QOpenGLFunctions_1_2::glNormal3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821124fe0 0xc821125060 0xc8211250e0] } +&{glNormal3dv QOpenGLFunctions_1_2::glNormal3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821125240] } +&{glNormal3f QOpenGLFunctions_1_2::glNormal3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821125400 0xc821125480 0xc821125500] } +&{glNormal3fv QOpenGLFunctions_1_2::glNormal3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821125660] } +&{glNormal3i QOpenGLFunctions_1_2::glNormal3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821125820 0xc8211258a0 0xc821125920] } +&{glNormal3iv QOpenGLFunctions_1_2::glNormal3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821125aa0] } +&{glNormal3s QOpenGLFunctions_1_2::glNormal3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821125c60 0xc821125ce0 0xc821125d60] } +&{glNormal3sv QOpenGLFunctions_1_2::glNormal3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821125ec0] } +&{glNormalPointer QOpenGLFunctions_1_2::glNormalPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82113a020 0xc82113a0a0 0xc82113a120] } +&{glOrtho QOpenGLFunctions_1_2::glOrtho commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82113a2e0 0xc82113a360 0xc82113a3e0 0xc82113a460 0xc82113a500 0xc82113a580] } +&{glPassThrough QOpenGLFunctions_1_2::glPassThrough commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82113a6e0] } +&{glPixelMapfv QOpenGLFunctions_1_2::glPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82113a840 0xc82113a8c0 0xc82113a940] } +&{glPixelMapuiv QOpenGLFunctions_1_2::glPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82113aaa0 0xc82113ab20 0xc82113aba0] } +&{glPixelMapusv QOpenGLFunctions_1_2::glPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82113ad00 0xc82113ad80 0xc82113ae00] } +&{glPixelStoref QOpenGLFunctions_1_2::glPixelStoref commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82113af60 0xc82113afe0] } +&{glPixelStorei QOpenGLFunctions_1_2::glPixelStorei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82113b140 0xc82113b1c0] } +&{glPixelTransferf QOpenGLFunctions_1_2::glPixelTransferf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82113b320 0xc82113b3a0] } +&{glPixelTransferi QOpenGLFunctions_1_2::glPixelTransferi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82113b500 0xc82113b580] } +&{glPixelZoom QOpenGLFunctions_1_2::glPixelZoom commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82113b6e0 0xc82113b760] } +&{glPointSize QOpenGLFunctions_1_2::glPointSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82113b8e0] } +&{glPolygonMode QOpenGLFunctions_1_2::glPolygonMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82113ba40 0xc82113bac0] } +&{glPolygonOffset QOpenGLFunctions_1_2::glPolygonOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82113bc20 0xc82113bca0] } +&{glPolygonStipple QOpenGLFunctions_1_2::glPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82113be00] } +&{glPopAttrib QOpenGLFunctions_1_2::glPopAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [] } +&{glPopClientAttrib QOpenGLFunctions_1_2::glPopClientAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [] } +&{glPopMatrix QOpenGLFunctions_1_2::glPopMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [] } +&{glPopName QOpenGLFunctions_1_2::glPopName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [] } +&{glPrioritizeTextures QOpenGLFunctions_1_2::glPrioritizeTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211482e0 0xc821148360 0xc8211483e0] } +&{glPushAttrib QOpenGLFunctions_1_2::glPushAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821148540] } +&{glPushClientAttrib QOpenGLFunctions_1_2::glPushClientAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821148700] } +&{glPushMatrix QOpenGLFunctions_1_2::glPushMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [] } +&{glPushName QOpenGLFunctions_1_2::glPushName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821148980] } +&{glRasterPos2d QOpenGLFunctions_1_2::glRasterPos2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821148ae0 0xc821148b60] } +&{glRasterPos2dv QOpenGLFunctions_1_2::glRasterPos2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821148cc0] } +&{glRasterPos2f QOpenGLFunctions_1_2::glRasterPos2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821148e20 0xc821148ea0] } +&{glRasterPos2fv QOpenGLFunctions_1_2::glRasterPos2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821149000] } +&{glRasterPos2i QOpenGLFunctions_1_2::glRasterPos2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821149160 0xc8211491e0] } +&{glRasterPos2iv QOpenGLFunctions_1_2::glRasterPos2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821149340] } +&{glRasterPos2s QOpenGLFunctions_1_2::glRasterPos2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211494c0 0xc821149540] } +&{glRasterPos2sv QOpenGLFunctions_1_2::glRasterPos2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211496a0] } +&{glRasterPos3d QOpenGLFunctions_1_2::glRasterPos3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821149800 0xc821149880 0xc821149900] } +&{glRasterPos3dv QOpenGLFunctions_1_2::glRasterPos3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821149a60] } +&{glRasterPos3f QOpenGLFunctions_1_2::glRasterPos3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821149bc0 0xc821149c40 0xc821149cc0] } +&{glRasterPos3fv QOpenGLFunctions_1_2::glRasterPos3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821149e20] } +&{glRasterPos3i QOpenGLFunctions_1_2::glRasterPos3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821149f80 0xc821160000 0xc821160080] } +&{glRasterPos3iv QOpenGLFunctions_1_2::glRasterPos3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211601e0] } +&{glRasterPos3s QOpenGLFunctions_1_2::glRasterPos3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821160340 0xc8211603c0 0xc821160440] } +&{glRasterPos3sv QOpenGLFunctions_1_2::glRasterPos3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211605a0] } +&{glRasterPos4d QOpenGLFunctions_1_2::glRasterPos4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821160700 0xc821160780 0xc821160800 0xc821160880] } +&{glRasterPos4dv QOpenGLFunctions_1_2::glRasterPos4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211609e0] } +&{glRasterPos4f QOpenGLFunctions_1_2::glRasterPos4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821160b40 0xc821160bc0 0xc821160c40 0xc821160cc0] } +&{glRasterPos4fv QOpenGLFunctions_1_2::glRasterPos4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821160e20] } +&{glRasterPos4i QOpenGLFunctions_1_2::glRasterPos4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821160f80 0xc821161000 0xc821161080 0xc821161100] } +&{glRasterPos4iv QOpenGLFunctions_1_2::glRasterPos4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821161260] } +&{glRasterPos4s QOpenGLFunctions_1_2::glRasterPos4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211613c0 0xc821161440 0xc8211614c0 0xc821161540] } +&{glRasterPos4sv QOpenGLFunctions_1_2::glRasterPos4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211616a0] } +&{glReadBuffer QOpenGLFunctions_1_2::glReadBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821161820] } +&{glReadPixels QOpenGLFunctions_1_2::glReadPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821161980 0xc821161a00 0xc821161a80 0xc821161b00 0xc821161ba0 0xc821161c20 0xc821161ca0] } +&{glRectd QOpenGLFunctions_1_2::glRectd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821161e60 0xc821161ee0 0xc821161f60 0xc821161fe0] } +&{glRectdv QOpenGLFunctions_1_2::glRectdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211721a0 0xc821172220] } +&{glRectf QOpenGLFunctions_1_2::glRectf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211723e0 0xc821172460 0xc8211724e0 0xc821172560] } +&{glRectfv QOpenGLFunctions_1_2::glRectfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821172720 0xc8211727a0] } +&{glRecti QOpenGLFunctions_1_2::glRecti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821172960 0xc8211729e0 0xc821172a60 0xc821172ae0] } +&{glRectiv QOpenGLFunctions_1_2::glRectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821172ca0 0xc821172d20] } +&{glRects QOpenGLFunctions_1_2::glRects commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821172ee0 0xc821172f60 0xc821172fe0 0xc821173060] } +&{glRectsv QOpenGLFunctions_1_2::glRectsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821173220 0xc8211732a0] } +&{glRenderMode QOpenGLFunctions_1_2::glRenderMode commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false GLint [0xc821173420] } +&{glResetHistogram QOpenGLFunctions_1_2::glResetHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821173580] } +&{glResetMinmax QOpenGLFunctions_1_2::glResetMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211736e0] } +&{glRotated QOpenGLFunctions_1_2::glRotated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211738a0 0xc821173920 0xc8211739a0 0xc821173a20] } +&{glRotatef QOpenGLFunctions_1_2::glRotatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821173be0 0xc821173c60 0xc821173ce0 0xc821173d60] } +&{glScaled QOpenGLFunctions_1_2::glScaled commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821173f20 0xc821173fa0 0xc82117e020] } +&{glScalef QOpenGLFunctions_1_2::glScalef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82117e1e0 0xc82117e260 0xc82117e2e0] } +&{glScissor QOpenGLFunctions_1_2::glScissor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82117e4a0 0xc82117e520 0xc82117e5a0 0xc82117e620] } +&{glSelectBuffer QOpenGLFunctions_1_2::glSelectBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82117e780 0xc82117e800] } +&{glSeparableFilter2D QOpenGLFunctions_1_2::glSeparableFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82117e9c0 0xc82117ea40 0xc82117eac0 0xc82117eb40 0xc82117ebe0 0xc82117ec60 0xc82117ece0 0xc82117ed60] } +&{glShadeModel QOpenGLFunctions_1_2::glShadeModel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82117eee0] } +&{glStencilFunc QOpenGLFunctions_1_2::glStencilFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82117f040 0xc82117f0c0 0xc82117f140] } +&{glStencilMask QOpenGLFunctions_1_2::glStencilMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82117f2c0] } +&{glStencilOp QOpenGLFunctions_1_2::glStencilOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82117f420 0xc82117f4a0 0xc82117f520] } +&{glTexCoord1d QOpenGLFunctions_1_2::glTexCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82117f6a0] } +&{glTexCoord1dv QOpenGLFunctions_1_2::glTexCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82117f800] } +&{glTexCoord1f QOpenGLFunctions_1_2::glTexCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82117f980] } +&{glTexCoord1fv QOpenGLFunctions_1_2::glTexCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82117fae0] } +&{glTexCoord1i QOpenGLFunctions_1_2::glTexCoord1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82117fc60] } +&{glTexCoord1iv QOpenGLFunctions_1_2::glTexCoord1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82117fdc0] } +&{glTexCoord1s QOpenGLFunctions_1_2::glTexCoord1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc82117ff40] } +&{glTexCoord1sv QOpenGLFunctions_1_2::glTexCoord1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211900a0] } +&{glTexCoord2d QOpenGLFunctions_1_2::glTexCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821190200 0xc821190280] } +&{glTexCoord2dv QOpenGLFunctions_1_2::glTexCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211903e0] } +&{glTexCoord2f QOpenGLFunctions_1_2::glTexCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821190540 0xc8211905c0] } +&{glTexCoord2fv QOpenGLFunctions_1_2::glTexCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821190720] } +&{glTexCoord2i QOpenGLFunctions_1_2::glTexCoord2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821190880 0xc821190900] } +&{glTexCoord2iv QOpenGLFunctions_1_2::glTexCoord2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821190a60] } +&{glTexCoord2s QOpenGLFunctions_1_2::glTexCoord2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821190bc0 0xc821190c40] } +&{glTexCoord2sv QOpenGLFunctions_1_2::glTexCoord2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821190da0] } +&{glTexCoord3d QOpenGLFunctions_1_2::glTexCoord3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821190f00 0xc821190f80 0xc821191000] } +&{glTexCoord3dv QOpenGLFunctions_1_2::glTexCoord3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821191160] } +&{glTexCoord3f QOpenGLFunctions_1_2::glTexCoord3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211912c0 0xc821191340 0xc8211913c0] } +&{glTexCoord3fv QOpenGLFunctions_1_2::glTexCoord3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821191520] } +&{glTexCoord3i QOpenGLFunctions_1_2::glTexCoord3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821191680 0xc821191700 0xc821191780] } +&{glTexCoord3iv QOpenGLFunctions_1_2::glTexCoord3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211918e0] } +&{glTexCoord3s QOpenGLFunctions_1_2::glTexCoord3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821191a40 0xc821191ac0 0xc821191b40] } +&{glTexCoord3sv QOpenGLFunctions_1_2::glTexCoord3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821191ca0] } +&{glTexCoord4d QOpenGLFunctions_1_2::glTexCoord4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc821191e00 0xc821191e80 0xc821191f00 0xc821191f80] } +&{glTexCoord4dv QOpenGLFunctions_1_2::glTexCoord4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211a40e0] } +&{glTexCoord4f QOpenGLFunctions_1_2::glTexCoord4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211a4240 0xc8211a42c0 0xc8211a4340 0xc8211a43c0] } +&{glTexCoord4fv QOpenGLFunctions_1_2::glTexCoord4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211a4520] } +&{glTexCoord4i QOpenGLFunctions_1_2::glTexCoord4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211a4680 0xc8211a4700 0xc8211a4780 0xc8211a4800] } +&{glTexCoord4iv QOpenGLFunctions_1_2::glTexCoord4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211a4960] } +&{glTexCoord4s QOpenGLFunctions_1_2::glTexCoord4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211a4ac0 0xc8211a4b40 0xc8211a4bc0 0xc8211a4c40] } +&{glTexCoord4sv QOpenGLFunctions_1_2::glTexCoord4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211a4da0] } +&{glTexCoordPointer QOpenGLFunctions_1_2::glTexCoordPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211a4f60 0xc8211a4fe0 0xc8211a5060 0xc8211a50e0] } +&{glTexEnvf QOpenGLFunctions_1_2::glTexEnvf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211a52a0 0xc8211a5320 0xc8211a53a0] } +&{glTexEnvfv QOpenGLFunctions_1_2::glTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211a5560 0xc8211a55e0 0xc8211a5660] } +&{glTexEnvi QOpenGLFunctions_1_2::glTexEnvi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211a5820 0xc8211a58a0 0xc8211a5920] } +&{glTexEnviv QOpenGLFunctions_1_2::glTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211a5ae0 0xc8211a5b60 0xc8211a5be0] } +&{glTexGend QOpenGLFunctions_1_2::glTexGend commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211a5da0 0xc8211a5e20 0xc8211a5ea0] } +&{glTexGendv QOpenGLFunctions_1_2::glTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211b4060 0xc8211b40e0 0xc8211b4160] } +&{glTexGenf QOpenGLFunctions_1_2::glTexGenf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211b4320 0xc8211b43a0 0xc8211b4420] } +&{glTexGenfv QOpenGLFunctions_1_2::glTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211b45e0 0xc8211b4660 0xc8211b46e0] } +&{glTexGeni QOpenGLFunctions_1_2::glTexGeni commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211b48a0 0xc8211b4920 0xc8211b49a0] } +&{glTexGeniv QOpenGLFunctions_1_2::glTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211b4b60 0xc8211b4be0 0xc8211b4c60] } +&{glTexImage1D QOpenGLFunctions_1_2::glTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211b4dc0 0xc8211b4e40 0xc8211b4ec0 0xc8211b4f40 0xc8211b4fe0 0xc8211b5060 0xc8211b50e0 0xc8211b5160] } +&{glTexImage2D QOpenGLFunctions_1_2::glTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211b52c0 0xc8211b5340 0xc8211b53c0 0xc8211b5440 0xc8211b54e0 0xc8211b5560 0xc8211b55e0 0xc8211b5660 0xc8211b5700] } +&{glTexImage3D QOpenGLFunctions_1_2::glTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211b5860 0xc8211b58e0 0xc8211b5960 0xc8211b59e0 0xc8211b5a80 0xc8211b5b00 0xc8211b5b80 0xc8211b5c00 0xc8211b5ca0 0xc8211b5d20] } +&{glTexParameterf QOpenGLFunctions_1_2::glTexParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211b5e80 0xc8211b5f00 0xc8211b5f80] } +&{glTexParameterfv QOpenGLFunctions_1_2::glTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211c20e0 0xc8211c2160 0xc8211c21e0] } +&{glTexParameteri QOpenGLFunctions_1_2::glTexParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211c2340 0xc8211c23c0 0xc8211c2440] } +&{glTexParameteriv QOpenGLFunctions_1_2::glTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211c25a0 0xc8211c2620 0xc8211c26a0] } +&{glTexSubImage1D QOpenGLFunctions_1_2::glTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211c2800 0xc8211c2880 0xc8211c2900 0xc8211c2980 0xc8211c2a20 0xc8211c2aa0 0xc8211c2b20] } +&{glTexSubImage2D QOpenGLFunctions_1_2::glTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211c2c80 0xc8211c2d00 0xc8211c2d80 0xc8211c2e00 0xc8211c2ea0 0xc8211c2f20 0xc8211c2fa0 0xc8211c3020 0xc8211c30c0] } +&{glTexSubImage3D QOpenGLFunctions_1_2::glTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211c3220 0xc8211c32a0 0xc8211c3320 0xc8211c33a0 0xc8211c3440 0xc8211c34c0 0xc8211c3540 0xc8211c35c0 0xc8211c3660 0xc8211c36e0 0xc8211c3760] } +&{glTranslated QOpenGLFunctions_1_2::glTranslated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211c38c0 0xc8211c3940 0xc8211c39c0] } +&{glTranslatef QOpenGLFunctions_1_2::glTranslatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211c3b20 0xc8211c3ba0 0xc8211c3c20] } +&{glVertex2d QOpenGLFunctions_1_2::glVertex2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211c3de0 0xc8211c3e60] } +&{glVertex2dv QOpenGLFunctions_1_2::glVertex2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211c3fc0] } +&{glVertex2f QOpenGLFunctions_1_2::glVertex2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211d0180 0xc8211d0200] } +&{glVertex2fv QOpenGLFunctions_1_2::glVertex2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211d0360] } +&{glVertex2i QOpenGLFunctions_1_2::glVertex2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211d0520 0xc8211d05a0] } +&{glVertex2iv QOpenGLFunctions_1_2::glVertex2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211d0720] } +&{glVertex2s QOpenGLFunctions_1_2::glVertex2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211d08e0 0xc8211d0960] } +&{glVertex2sv QOpenGLFunctions_1_2::glVertex2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211d0ac0] } +&{glVertex3d QOpenGLFunctions_1_2::glVertex3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211d0c80 0xc8211d0d00 0xc8211d0d80] } +&{glVertex3dv QOpenGLFunctions_1_2::glVertex3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211d0ee0] } +&{glVertex3f QOpenGLFunctions_1_2::glVertex3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211d10a0 0xc8211d1120 0xc8211d11a0] } +&{glVertex3fv QOpenGLFunctions_1_2::glVertex3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211d1300] } +&{glVertex3i QOpenGLFunctions_1_2::glVertex3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211d14c0 0xc8211d1540 0xc8211d15c0] } +&{glVertex3iv QOpenGLFunctions_1_2::glVertex3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211d1740] } +&{glVertex3s QOpenGLFunctions_1_2::glVertex3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211d1900 0xc8211d1980 0xc8211d1a00] } +&{glVertex3sv QOpenGLFunctions_1_2::glVertex3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211d1b60] } +&{glVertex4d QOpenGLFunctions_1_2::glVertex4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211d1d20 0xc8211d1da0 0xc8211d1e20 0xc8211d1ea0] } +&{glVertex4dv QOpenGLFunctions_1_2::glVertex4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211e4000] } +&{glVertex4f QOpenGLFunctions_1_2::glVertex4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211e41c0 0xc8211e4240 0xc8211e42c0 0xc8211e4340] } +&{glVertex4fv QOpenGLFunctions_1_2::glVertex4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211e44a0] } +&{glVertex4i QOpenGLFunctions_1_2::glVertex4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211e4660 0xc8211e46e0 0xc8211e4760 0xc8211e47e0] } +&{glVertex4iv QOpenGLFunctions_1_2::glVertex4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211e4960] } +&{glVertex4s QOpenGLFunctions_1_2::glVertex4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211e4b20 0xc8211e4ba0 0xc8211e4c20 0xc8211e4ca0] } +&{glVertex4sv QOpenGLFunctions_1_2::glVertex4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211e4e00] } +&{glVertexPointer QOpenGLFunctions_1_2::glVertexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211e4f60 0xc8211e4fe0 0xc8211e5060 0xc8211e50e0] } +&{glViewport QOpenGLFunctions_1_2::glViewport commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_2.h non plain false false void [0xc8211e52a0 0xc8211e5320 0xc8211e53a0 0xc8211e5420] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions_1_3.txt b/internal/binding/dump/QtGui/QOpenGLFunctions_1_3.txt new file mode 100755 index 00000000..b01c82fa --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions_1_3.txt @@ -0,0 +1,425 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions_1_3 QOpenGLFunctions_1_3::QOpenGLFunctions_1_3 commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.cpp non constructor false false [] } +&{initializeOpenGLFunctions QOpenGLFunctions_1_3::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.cpp impure plain false false bool [] } +&{~QOpenGLFunctions_1_3 QOpenGLFunctions_1_3::~QOpenGLFunctions_1_3 commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.cpp non destructor false false [] } +&{glAccum QOpenGLFunctions_1_3::glAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211e5d60 0xc8211e5de0] } +&{glActiveTexture QOpenGLFunctions_1_3::glActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211e5f40] } +&{glAlphaFunc QOpenGLFunctions_1_3::glAlphaFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211f40a0 0xc8211f4120] } +&{glAreTexturesResident QOpenGLFunctions_1_3::glAreTexturesResident commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false GLboolean [0xc8211f4300 0xc8211f4380 0xc8211f4400] } +&{glArrayElement QOpenGLFunctions_1_3::glArrayElement commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211f4580] } +&{glBegin QOpenGLFunctions_1_3::glBegin commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211f4760] } +&{glBindTexture QOpenGLFunctions_1_3::glBindTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211f48c0 0xc8211f4940] } +&{glBitmap QOpenGLFunctions_1_3::glBitmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211f4b00 0xc8211f4b80 0xc8211f4c00 0xc8211f4c80 0xc8211f4d20 0xc8211f4da0 0xc8211f4e20] } +&{glBlendColor QOpenGLFunctions_1_3::glBlendColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211f4f80 0xc8211f5000 0xc8211f5080 0xc8211f5100] } +&{glBlendEquation QOpenGLFunctions_1_3::glBlendEquation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211f5260] } +&{glBlendFunc QOpenGLFunctions_1_3::glBlendFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211f53c0 0xc8211f5440] } +&{glCallList QOpenGLFunctions_1_3::glCallList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211f5640] } +&{glCallLists QOpenGLFunctions_1_3::glCallLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211f57a0 0xc8211f5820 0xc8211f58a0] } +&{glClear QOpenGLFunctions_1_3::glClear commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211f5a80] } +&{glClearAccum QOpenGLFunctions_1_3::glClearAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211f5be0 0xc8211f5c60 0xc8211f5ce0 0xc8211f5d60] } +&{glClearColor QOpenGLFunctions_1_3::glClearColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211f5ec0 0xc8211f5f40 0xc8211f5fc0 0xc821206040] } +&{glClearDepth QOpenGLFunctions_1_3::glClearDepth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8212061a0] } +&{glClearIndex QOpenGLFunctions_1_3::glClearIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821206320] } +&{glClearStencil QOpenGLFunctions_1_3::glClearStencil commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8212064a0] } +&{glClientActiveTexture QOpenGLFunctions_1_3::glClientActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821206660] } +&{glClipPlane QOpenGLFunctions_1_3::glClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8212067c0 0xc821206840] } +&{glColor3b QOpenGLFunctions_1_3::glColor3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821206a00 0xc821206a80 0xc821206b00] } +&{glColor3bv QOpenGLFunctions_1_3::glColor3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821206ce0] } +&{glColor3d QOpenGLFunctions_1_3::glColor3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821206ea0 0xc821206f20 0xc821206fa0] } +&{glColor3dv QOpenGLFunctions_1_3::glColor3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821207160] } +&{glColor3f QOpenGLFunctions_1_3::glColor3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821207320 0xc8212073a0 0xc821207420] } +&{glColor3fv QOpenGLFunctions_1_3::glColor3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8212075e0] } +&{glColor3i QOpenGLFunctions_1_3::glColor3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8212077c0 0xc821207840 0xc8212078c0] } +&{glColor3iv QOpenGLFunctions_1_3::glColor3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821207aa0] } +&{glColor3s QOpenGLFunctions_1_3::glColor3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821207c60 0xc821207ce0 0xc821207d60] } +&{glColor3sv QOpenGLFunctions_1_3::glColor3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821207f20] } +&{glColor3ub QOpenGLFunctions_1_3::glColor3ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8212160e0 0xc821216160 0xc8212161e0] } +&{glColor3ubv QOpenGLFunctions_1_3::glColor3ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821216340] } +&{glColor3ui QOpenGLFunctions_1_3::glColor3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821216500 0xc821216580 0xc821216600] } +&{glColor3uiv QOpenGLFunctions_1_3::glColor3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821216760] } +&{glColor3us QOpenGLFunctions_1_3::glColor3us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821216920 0xc8212169a0 0xc821216a20] } +&{glColor3usv QOpenGLFunctions_1_3::glColor3usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821216b80] } +&{glColor4b QOpenGLFunctions_1_3::glColor4b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821216d40 0xc821216dc0 0xc821216e40 0xc821216ec0] } +&{glColor4bv QOpenGLFunctions_1_3::glColor4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8212170a0] } +&{glColor4d QOpenGLFunctions_1_3::glColor4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821217260 0xc8212172e0 0xc821217360 0xc8212173e0] } +&{glColor4dv QOpenGLFunctions_1_3::glColor4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8212175a0] } +&{glColor4f QOpenGLFunctions_1_3::glColor4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821217760 0xc8212177e0 0xc821217860 0xc8212178e0] } +&{glColor4fv QOpenGLFunctions_1_3::glColor4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821217aa0] } +&{glColor4i QOpenGLFunctions_1_3::glColor4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821217c60 0xc821217ce0 0xc82122e000 0xc82122e080] } +&{glColor4iv QOpenGLFunctions_1_3::glColor4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82123c0c0] } +&{glColor4s QOpenGLFunctions_1_3::glColor4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82123c280 0xc82123c300 0xc82123c380 0xc82123c400] } +&{glColor4sv QOpenGLFunctions_1_3::glColor4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82123c5c0] } +&{glColor4ub QOpenGLFunctions_1_3::glColor4ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82123c780 0xc82123c800 0xc82123c880 0xc82123c900] } +&{glColor4ubv QOpenGLFunctions_1_3::glColor4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82123ca60] } +&{glColor4ui QOpenGLFunctions_1_3::glColor4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82123cc20 0xc82123cca0 0xc82123cd20 0xc82123cda0] } +&{glColor4uiv QOpenGLFunctions_1_3::glColor4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82123cf00] } +&{glColor4us QOpenGLFunctions_1_3::glColor4us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82123d0c0 0xc82123d140 0xc82123d1c0 0xc82123d240] } +&{glColor4usv QOpenGLFunctions_1_3::glColor4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82123d3a0] } +&{glColorMask QOpenGLFunctions_1_3::glColorMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82123d500 0xc82123d580 0xc82123d600 0xc82123d680] } +&{glColorMaterial QOpenGLFunctions_1_3::glColorMaterial commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82123d7e0 0xc82123d860] } +&{glColorPointer QOpenGLFunctions_1_3::glColorPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82123d9c0 0xc82123da40 0xc82123dac0 0xc82123db40] } +&{glColorSubTable QOpenGLFunctions_1_3::glColorSubTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821216080 0xc821216140 0xc821216200 0xc821216280 0xc821216360 0xc8212163e0] } +&{glColorTable QOpenGLFunctions_1_3::glColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8212165c0 0xc821216660 0xc8212166e0 0xc8212167a0 0xc821216840 0xc8212168e0] } +&{glColorTableParameterfv QOpenGLFunctions_1_3::glColorTableParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821216b20 0xc821216be0 0xc821216c60] } +&{glColorTableParameteriv QOpenGLFunctions_1_3::glColorTableParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821216f00 0xc821216f80 0xc821217000] } +&{glCompressedTexImage1D QOpenGLFunctions_1_3::glCompressedTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821217280 0xc821217320 0xc8212173c0 0xc821217460 0xc821217500 0xc8212175e0 0xc821217660] } +&{glCompressedTexImage2D QOpenGLFunctions_1_3::glCompressedTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8212178c0 0xc821217960 0xc8212179e0 0xc821217ac0 0xc821217b60 0xc821217c80 0xc821217d20 0xc821217da0] } +&{glCompressedTexImage3D QOpenGLFunctions_1_3::glCompressedTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821217f60 0xc821217fe0 0xc8201d20e0 0xc8201d2200 0xc8201d22e0 0xc8201d23a0 0xc8201d2560 0xc8201d2660 0xc8201d27c0] } +&{glCompressedTexSubImage1D QOpenGLFunctions_1_3::glCompressedTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8201d2ba0 0xc8201d2ca0 0xc8201d2d60 0xc8201d2e40 0xc8201d2f80 0xc8201d3080 0xc8201d3160] } +&{glCompressedTexSubImage2D QOpenGLFunctions_1_3::glCompressedTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8201d3400 0xc8201d3500 0xc8201d35a0 0xc8201d3680 0xc8201d37a0 0xc8201d3860 0xc8201d3900 0xc8201d39e0 0xc8201d3b60] } +&{glCompressedTexSubImage3D QOpenGLFunctions_1_3::glCompressedTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8201d3da0 0xc8201d3e80 0xc8201d3f20 0xc820290060 0xc820290160 0xc820290340 0xc820290440 0xc820290560 0xc8202906e0 0xc820290800 0xc820290920] } +&{glConvolutionFilter1D QOpenGLFunctions_1_3::glConvolutionFilter1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820290ca0 0xc820290d80 0xc820290ea0 0xc820290f60 0xc820291060 0xc8202911c0] } +&{glConvolutionFilter2D QOpenGLFunctions_1_3::glConvolutionFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820291520 0xc820291660 0xc8202917e0 0xc8202918c0 0xc820291a40 0xc820291b60 0xc820291be0] } +&{glConvolutionParameterf QOpenGLFunctions_1_3::glConvolutionParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820291f40 0xc820356000 0xc8203560c0] } +&{glConvolutionParameterfv QOpenGLFunctions_1_3::glConvolutionParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8203563a0 0xc8203565c0 0xc8203566e0] } +&{glConvolutionParameteri QOpenGLFunctions_1_3::glConvolutionParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8203569c0 0xc820356ac0 0xc820356b80] } +&{glConvolutionParameteriv QOpenGLFunctions_1_3::glConvolutionParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820356e00 0xc820356f00 0xc820356fa0] } +&{glCopyColorSubTable QOpenGLFunctions_1_3::glCopyColorSubTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820357480 0xc820357580 0xc820357660 0xc8203577c0 0xc8203578a0] } +&{glCopyColorTable QOpenGLFunctions_1_3::glCopyColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820357c60 0xc820357d80 0xc820357ee0 0xc820357f80 0xc820558100] } +&{glCopyConvolutionFilter1D QOpenGLFunctions_1_3::glCopyConvolutionFilter1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820558440 0xc820558560 0xc8205585e0 0xc8205586c0 0xc820558880] } +&{glCopyConvolutionFilter2D QOpenGLFunctions_1_3::glCopyConvolutionFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820558b60 0xc820558c00 0xc820558ca0 0xc820558d60 0xc820558e20 0xc820558f00] } +&{glCopyPixels QOpenGLFunctions_1_3::glCopyPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820559120 0xc820559200 0xc8205592c0 0xc8205593a0 0xc8205594c0] } +&{glCopyTexImage1D QOpenGLFunctions_1_3::glCopyTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8205597e0 0xc8205598e0 0xc820559980 0xc820559a00 0xc820559bc0 0xc820559d40 0xc820559dc0] } +&{glCopyTexImage2D QOpenGLFunctions_1_3::glCopyTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820524000 0xc8205240c0 0xc820524200 0xc820524280 0xc820524340 0xc820524460 0xc8205244e0 0xc8205245a0] } +&{glCopyTexSubImage1D QOpenGLFunctions_1_3::glCopyTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820524820 0xc8205248e0 0xc820524980 0xc820524b00 0xc820524bc0 0xc820524c60] } +&{glCopyTexSubImage2D QOpenGLFunctions_1_3::glCopyTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820524e60 0xc820524ee0 0xc820524f80 0xc820525040 0xc820525140 0xc8205251e0 0xc820525340 0xc8205253c0] } +&{glCopyTexSubImage3D QOpenGLFunctions_1_3::glCopyTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820525720 0xc820525840 0xc820525900 0xc820525980 0xc820525ae0 0xc820525be0 0xc820525cc0 0xc820525dc0 0xc820525ea0] } +&{glCullFace QOpenGLFunctions_1_3::glCullFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82061c280] } +&{glDeleteLists QOpenGLFunctions_1_3::glDeleteLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82061c520 0xc82061c5a0] } +&{glDeleteTextures QOpenGLFunctions_1_3::glDeleteTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82061c8c0 0xc82061c980] } +&{glDepthFunc QOpenGLFunctions_1_3::glDepthFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82061cbc0] } +&{glDepthMask QOpenGLFunctions_1_3::glDepthMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82061cea0] } +&{glDepthRange QOpenGLFunctions_1_3::glDepthRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82061d160 0xc82061d2c0] } +&{glDisable QOpenGLFunctions_1_3::glDisable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82061d600] } +&{glDisableClientState QOpenGLFunctions_1_3::glDisableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82061d8e0] } +&{glDrawArrays QOpenGLFunctions_1_3::glDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82061dac0 0xc82061db80 0xc82061dc60] } +&{glDrawBuffer QOpenGLFunctions_1_3::glDrawBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82061dea0] } +&{glDrawElements QOpenGLFunctions_1_3::glDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820e620e0 0xc820e62160 0xc820e62200 0xc820e622c0] } +&{glDrawPixels QOpenGLFunctions_1_3::glDrawPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820e62460 0xc820e624e0 0xc820e625c0 0xc820e62660 0xc820e62740] } +&{glDrawRangeElements QOpenGLFunctions_1_3::glDrawRangeElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820e62980 0xc820e62a20 0xc820e62ac0 0xc820e62b40 0xc820e62c40 0xc820e62ce0] } +&{glEdgeFlag QOpenGLFunctions_1_3::glEdgeFlag commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820e62f60] } +&{glEdgeFlagPointer QOpenGLFunctions_1_3::glEdgeFlagPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820e63160 0xc820e63240] } +&{glEdgeFlagv QOpenGLFunctions_1_3::glEdgeFlagv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820e63400] } +&{glEnable QOpenGLFunctions_1_3::glEnable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820e63680] } +&{glEnableClientState QOpenGLFunctions_1_3::glEnableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820e638c0] } +&{glEnd QOpenGLFunctions_1_3::glEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [] } +&{glEndList QOpenGLFunctions_1_3::glEndList commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [] } +&{glEvalCoord1d QOpenGLFunctions_1_3::glEvalCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820e63d20] } +&{glEvalCoord1dv QOpenGLFunctions_1_3::glEvalCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820e63ee0] } +&{glEvalCoord1f QOpenGLFunctions_1_3::glEvalCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8208c2080] } +&{glEvalCoord1fv QOpenGLFunctions_1_3::glEvalCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8208c2200] } +&{glEvalCoord2d QOpenGLFunctions_1_3::glEvalCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8208c2460 0xc8208c2520] } +&{glEvalCoord2dv QOpenGLFunctions_1_3::glEvalCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8208c2700] } +&{glEvalCoord2f QOpenGLFunctions_1_3::glEvalCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8208c2920 0xc8208c2a00] } +&{glEvalCoord2fv QOpenGLFunctions_1_3::glEvalCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8208c2ba0] } +&{glEvalMesh1 QOpenGLFunctions_1_3::glEvalMesh1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8208c2d40 0xc8208c2e60 0xc8208c2f20] } +&{glEvalMesh2 QOpenGLFunctions_1_3::glEvalMesh2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8208c3100 0xc8208c3180 0xc8208c3220 0xc8208c32c0 0xc8208c33c0] } +&{glEvalPoint1 QOpenGLFunctions_1_3::glEvalPoint1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8208c3560] } +&{glEvalPoint2 QOpenGLFunctions_1_3::glEvalPoint2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8208c3840 0xc8208c3920] } +&{glFeedbackBuffer QOpenGLFunctions_1_3::glFeedbackBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8208c3b80 0xc8208c3c60 0xc8208c3ce0] } +&{glFinish QOpenGLFunctions_1_3::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [] } +&{glFlush QOpenGLFunctions_1_3::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [] } +&{glFogf QOpenGLFunctions_1_3::glFogf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820a26100 0xc820a26180] } +&{glFogfv QOpenGLFunctions_1_3::glFogfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820a26340 0xc820a263c0] } +&{glFogi QOpenGLFunctions_1_3::glFogi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820a265a0 0xc820a26620] } +&{glFogiv QOpenGLFunctions_1_3::glFogiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820a26840 0xc820a26900] } +&{glFrontFace QOpenGLFunctions_1_3::glFrontFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820a26b60] } +&{glFrustum QOpenGLFunctions_1_3::glFrustum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820a26da0 0xc820a26e20 0xc820a26ec0 0xc820a26f80 0xc820a27040 0xc820a270c0] } +&{glGenLists QOpenGLFunctions_1_3::glGenLists commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false GLuint [0xc820a27380] } +&{glGenTextures QOpenGLFunctions_1_3::glGenTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820a27500 0xc820a275e0] } +&{glGetBooleanv QOpenGLFunctions_1_3::glGetBooleanv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820a277a0 0xc820a27820] } +&{glGetClipPlane QOpenGLFunctions_1_3::glGetClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820a27a00 0xc820a27a80] } +&{glGetColorTable QOpenGLFunctions_1_3::glGetColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820a27c40 0xc820a27cc0 0xc820a27d40 0xc820a27dc0] } +&{glGetColorTableParameterfv QOpenGLFunctions_1_3::glGetColorTableParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820a27f80 0xc820e1c000 0xc820e1c080] } +&{glGetColorTableParameteriv QOpenGLFunctions_1_3::glGetColorTableParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820e1c2e0 0xc820e1c380 0xc820e1c420] } +&{glGetCompressedTexImage QOpenGLFunctions_1_3::glGetCompressedTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820e1c640 0xc820e1c6c0 0xc820e1c7a0] } +&{glGetConvolutionFilter QOpenGLFunctions_1_3::glGetConvolutionFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820e1c9a0 0xc820e1ca80 0xc820e1cb00 0xc820e1cb80] } +&{glGetConvolutionParameterfv QOpenGLFunctions_1_3::glGetConvolutionParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820e1cdc0 0xc820e1ce60 0xc820e1cee0] } +&{glGetConvolutionParameteriv QOpenGLFunctions_1_3::glGetConvolutionParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820e1d140 0xc820e1d1e0 0xc820e1d260] } +&{glGetDoublev QOpenGLFunctions_1_3::glGetDoublev commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820e1d400 0xc820e1d4c0] } +&{glGetError QOpenGLFunctions_1_3::glGetError commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false GLenum [] } +&{glGetFloatv QOpenGLFunctions_1_3::glGetFloatv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820e1d780 0xc820e1d820] } +&{glGetHistogram QOpenGLFunctions_1_3::glGetHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820e1da00 0xc820e1da80 0xc820e1db00 0xc820e1dba0 0xc820e1dc80] } +&{glGetHistogramParameterfv QOpenGLFunctions_1_3::glGetHistogramParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820e1de80 0xc820e1df60 0xc820e1dfe0] } +&{glGetHistogramParameteriv QOpenGLFunctions_1_3::glGetHistogramParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820d244e0 0xc820d246c0 0xc820d247c0] } +&{glGetIntegerv QOpenGLFunctions_1_3::glGetIntegerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820d24b00 0xc820d24c40] } +&{glGetLightfv QOpenGLFunctions_1_3::glGetLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820d24fa0 0xc820d25060 0xc820d25200] } +&{glGetLightiv QOpenGLFunctions_1_3::glGetLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820d25540 0xc820d255e0 0xc820d25740] } +&{glGetMapdv QOpenGLFunctions_1_3::glGetMapdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820d259c0 0xc820d25ac0 0xc820d25ca0] } +&{glGetMapfv QOpenGLFunctions_1_3::glGetMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820ea0020 0xc820ea00a0 0xc820ea0160] } +&{glGetMapiv QOpenGLFunctions_1_3::glGetMapiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820ea03a0 0xc820ea0440 0xc820ea04e0] } +&{glGetMaterialfv QOpenGLFunctions_1_3::glGetMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820ea06c0 0xc820ea0760 0xc820ea0800] } +&{glGetMaterialiv QOpenGLFunctions_1_3::glGetMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820ea09c0 0xc820ea0a60 0xc820ea0ae0] } +&{glGetMinmax QOpenGLFunctions_1_3::glGetMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820ea0cc0 0xc820ea0d40 0xc820ea0e20 0xc820ea0ec0 0xc820ea0f80] } +&{glGetMinmaxParameterfv QOpenGLFunctions_1_3::glGetMinmaxParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820ea1180 0xc820ea1260 0xc820ea12e0] } +&{glGetMinmaxParameteriv QOpenGLFunctions_1_3::glGetMinmaxParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820ea1520 0xc820ea15c0 0xc820ea1640] } +&{glGetPixelMapfv QOpenGLFunctions_1_3::glGetPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820ea1820 0xc820ea18a0] } +&{glGetPixelMapuiv QOpenGLFunctions_1_3::glGetPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820ea1aa0 0xc820ea1b40] } +&{glGetPixelMapusv QOpenGLFunctions_1_3::glGetPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820ea1d20 0xc820ea1dc0] } +&{glGetPointerv QOpenGLFunctions_1_3::glGetPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820ea1f80 0xc826b1a020] } +&{glGetPolygonStipple QOpenGLFunctions_1_3::glGetPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc826b1a260] } +&{glGetSeparableFilter QOpenGLFunctions_1_3::glGetSeparableFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc826b1a4a0 0xc826b1a520 0xc826b1a5a0 0xc826b1a680 0xc826b1a760 0xc826b1a7e0] } +&{glGetString QOpenGLFunctions_1_3::glGetString commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false const GLubyte * [0xc826b1a9a0] } +&{glGetTexEnvfv QOpenGLFunctions_1_3::glGetTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc826b1ab80 0xc826b1ac20 0xc826b1aca0] } +&{glGetTexEnviv QOpenGLFunctions_1_3::glGetTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc826b1ae60 0xc826b1af00 0xc826b1afe0] } +&{glGetTexGendv QOpenGLFunctions_1_3::glGetTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc826b1b160 0xc826b1b240 0xc826b1b2c0] } +&{glGetTexGenfv QOpenGLFunctions_1_3::glGetTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc826b1b4a0 0xc826b1b540 0xc826b1b5c0] } +&{glGetTexGeniv QOpenGLFunctions_1_3::glGetTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc826b1b780 0xc826b1b820 0xc826b1b8e0] } +&{glGetTexImage QOpenGLFunctions_1_3::glGetTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc826b1ba80 0xc826b1bb40 0xc826b1bbc0 0xc826b1bc60 0xc826b1bd60] } +&{glGetTexLevelParameterfv QOpenGLFunctions_1_3::glGetTexLevelParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc826b1bf80 0xc820fe0000 0xc820fe00c0 0xc820fe0140] } +&{glGetTexLevelParameteriv QOpenGLFunctions_1_3::glGetTexLevelParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820fe03a0 0xc820fe0420 0xc820fe04e0 0xc820fe0560] } +&{glGetTexParameterfv QOpenGLFunctions_1_3::glGetTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820fe07c0 0xc820fe0840 0xc820fe0900] } +&{glGetTexParameteriv QOpenGLFunctions_1_3::glGetTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820fe0b40 0xc820fe0be0 0xc820fe0c80] } +&{glHint QOpenGLFunctions_1_3::glHint commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820fe0f00 0xc820fe0f80] } +&{glHistogram QOpenGLFunctions_1_3::glHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820fe1160 0xc820fe1200 0xc820fe1280 0xc820fe1320] } +&{glIndexMask QOpenGLFunctions_1_3::glIndexMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820fe1520] } +&{glIndexPointer QOpenGLFunctions_1_3::glIndexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820fe1700 0xc820fe17a0 0xc820fe1820] } +&{glIndexd QOpenGLFunctions_1_3::glIndexd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820fe1aa0] } +&{glIndexdv QOpenGLFunctions_1_3::glIndexdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820fe1d00] } +&{glIndexf QOpenGLFunctions_1_3::glIndexf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc820fe1f80] } +&{glIndexfv QOpenGLFunctions_1_3::glIndexfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211061a0] } +&{glIndexi QOpenGLFunctions_1_3::glIndexi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821106400] } +&{glIndexiv QOpenGLFunctions_1_3::glIndexiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821106680] } +&{glIndexs QOpenGLFunctions_1_3::glIndexs commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821106900] } +&{glIndexsv QOpenGLFunctions_1_3::glIndexsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821106b40] } +&{glIndexub QOpenGLFunctions_1_3::glIndexub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821106dc0] } +&{glIndexubv QOpenGLFunctions_1_3::glIndexubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821106fc0] } +&{glInitNames QOpenGLFunctions_1_3::glInitNames commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [] } +&{glInterleavedArrays QOpenGLFunctions_1_3::glInterleavedArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821107280 0xc821107340 0xc8211073c0] } +&{glIsEnabled QOpenGLFunctions_1_3::glIsEnabled commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false GLboolean [0xc821107580] } +&{glIsList QOpenGLFunctions_1_3::glIsList commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false GLboolean [0xc8211077e0] } +&{glIsTexture QOpenGLFunctions_1_3::glIsTexture commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false GLboolean [0xc8211079a0] } +&{glLightModelf QOpenGLFunctions_1_3::glLightModelf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821107b40 0xc821107c00] } +&{glLightModelfv QOpenGLFunctions_1_3::glLightModelfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821107dc0 0xc821107e40] } +&{glLightModeli QOpenGLFunctions_1_3::glLightModeli commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821206000 0xc8212060a0] } +&{glLightModeliv QOpenGLFunctions_1_3::glLightModeliv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821206240 0xc8212062c0] } +&{glLightf QOpenGLFunctions_1_3::glLightf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821206500 0xc821206580 0xc821206620] } +&{glLightfv QOpenGLFunctions_1_3::glLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821206880 0xc821206900 0xc8212069a0] } +&{glLighti QOpenGLFunctions_1_3::glLighti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821206be0 0xc821206c80 0xc821206d40] } +&{glLightiv QOpenGLFunctions_1_3::glLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821206f80 0xc821207020 0xc8212070a0] } +&{glLineStipple QOpenGLFunctions_1_3::glLineStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821207260 0xc821207340] } +&{glLineWidth QOpenGLFunctions_1_3::glLineWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821207500] } +&{glListBase QOpenGLFunctions_1_3::glListBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821207760] } +&{glLoadIdentity QOpenGLFunctions_1_3::glLoadIdentity commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [] } +&{glLoadMatrixd QOpenGLFunctions_1_3::glLoadMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8212079e0] } +&{glLoadMatrixf QOpenGLFunctions_1_3::glLoadMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821207ba0] } +&{glLoadName QOpenGLFunctions_1_3::glLoadName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821207e20] } +&{glLoadTransposeMatrixd QOpenGLFunctions_1_3::glLoadTransposeMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211f4040] } +&{glLoadTransposeMatrixf QOpenGLFunctions_1_3::glLoadTransposeMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211f4260] } +&{glLogicOp QOpenGLFunctions_1_3::glLogicOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211f44e0] } +&{glMap1d QOpenGLFunctions_1_3::glMap1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211f4700 0xc8211f47c0 0xc8211f4840 0xc8211f4900 0xc8211f49c0 0xc8211f4a40] } +&{glMap1f QOpenGLFunctions_1_3::glMap1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211f4ca0 0xc8211f4d40 0xc8211f4de0 0xc8211f4e80 0xc8211f4f20 0xc8211f4fe0] } +&{glMap2d QOpenGLFunctions_1_3::glMap2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211f5200 0xc8211f52c0 0xc8211f5340 0xc8211f5400 0xc8211f54c0 0xc8211f5540 0xc8211f55e0 0xc8211f56a0 0xc8211f5740 0xc8211f5800] } +&{glMap2f QOpenGLFunctions_1_3::glMap2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211f5a20 0xc8211f5ae0 0xc8211f5b60 0xc8211f5c20 0xc8211f5d00 0xc8211f5da0 0xc8211f5e20 0xc8211f5ee0 0xc8211f5fa0 0xc8211e4060] } +&{glMapGrid1d QOpenGLFunctions_1_3::glMapGrid1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211e4220 0xc8211e42e0 0xc8211e4380] } +&{glMapGrid1f QOpenGLFunctions_1_3::glMapGrid1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211e4520 0xc8211e45a0 0xc8211e4680] } +&{glMapGrid2d QOpenGLFunctions_1_3::glMapGrid2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211e4840 0xc8211e48c0 0xc8211e4980 0xc8211e4a00 0xc8211e4ac0 0xc8211e4b80] } +&{glMapGrid2f QOpenGLFunctions_1_3::glMapGrid2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211e4d40 0xc8211e4dc0 0xc8211e4e80 0xc8211e4f00 0xc8211e5000 0xc8211e50a0] } +&{glMaterialf QOpenGLFunctions_1_3::glMaterialf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211e5240 0xc8211e5300 0xc8211e53c0] } +&{glMaterialfv QOpenGLFunctions_1_3::glMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211e5540 0xc8211e5680 0xc8211e5700] } +&{glMateriali QOpenGLFunctions_1_3::glMateriali commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211e58a0 0xc8211e5940 0xc8211e59c0] } +&{glMaterialiv QOpenGLFunctions_1_3::glMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211e5b80 0xc8211e5c20 0xc8211e5ca0] } +&{glMatrixMode QOpenGLFunctions_1_3::glMatrixMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211e5ea0] } +&{glMinmax QOpenGLFunctions_1_3::glMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211d00a0 0xc8211d0140 0xc8211d0220] } +&{glMultMatrixd QOpenGLFunctions_1_3::glMultMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211d03c0] } +&{glMultMatrixf QOpenGLFunctions_1_3::glMultMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211d0580] } +&{glMultTransposeMatrixd QOpenGLFunctions_1_3::glMultTransposeMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211d07a0] } +&{glMultTransposeMatrixf QOpenGLFunctions_1_3::glMultTransposeMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211d09e0] } +&{glMultiTexCoord1d QOpenGLFunctions_1_3::glMultiTexCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211d0be0 0xc8211d0cc0] } +&{glMultiTexCoord1dv QOpenGLFunctions_1_3::glMultiTexCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211d0f00 0xc8211d0f80] } +&{glMultiTexCoord1f QOpenGLFunctions_1_3::glMultiTexCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211d11e0 0xc8211d1260] } +&{glMultiTexCoord1fv QOpenGLFunctions_1_3::glMultiTexCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211d1480 0xc8211d1560] } +&{glMultiTexCoord1i QOpenGLFunctions_1_3::glMultiTexCoord1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211d1780 0xc8211d1800] } +&{glMultiTexCoord1iv QOpenGLFunctions_1_3::glMultiTexCoord1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211d1a60 0xc8211d1ae0] } +&{glMultiTexCoord1s QOpenGLFunctions_1_3::glMultiTexCoord1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211d1d40 0xc8211d1de0] } +&{glMultiTexCoord1sv QOpenGLFunctions_1_3::glMultiTexCoord1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211c2000 0xc8211c2080] } +&{glMultiTexCoord2d QOpenGLFunctions_1_3::glMultiTexCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211c22c0 0xc8211c2380 0xc8211c2420] } +&{glMultiTexCoord2dv QOpenGLFunctions_1_3::glMultiTexCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211c2660 0xc8211c2700] } +&{glMultiTexCoord2f QOpenGLFunctions_1_3::glMultiTexCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211c2920 0xc8211c29c0 0xc8211c2a60] } +&{glMultiTexCoord2fv QOpenGLFunctions_1_3::glMultiTexCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211c2c60 0xc8211c2d20] } +&{glMultiTexCoord2i QOpenGLFunctions_1_3::glMultiTexCoord2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211c2f60 0xc8211c3000 0xc8211c30a0] } +&{glMultiTexCoord2iv QOpenGLFunctions_1_3::glMultiTexCoord2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211c32c0 0xc8211c3360] } +&{glMultiTexCoord2s QOpenGLFunctions_1_3::glMultiTexCoord2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211c35a0 0xc8211c3640 0xc8211c3700] } +&{glMultiTexCoord2sv QOpenGLFunctions_1_3::glMultiTexCoord2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211c3920 0xc8211c39e0] } +&{glMultiTexCoord3d QOpenGLFunctions_1_3::glMultiTexCoord3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211c3c00 0xc8211c3ca0 0xc8211c3d20 0xc8211c3e00] } +&{glMultiTexCoord3dv QOpenGLFunctions_1_3::glMultiTexCoord3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211b4020 0xc8211b4100] } +&{glMultiTexCoord3f QOpenGLFunctions_1_3::glMultiTexCoord3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211b4340 0xc8211b43e0 0xc8211b4480 0xc8211b4500] } +&{glMultiTexCoord3fv QOpenGLFunctions_1_3::glMultiTexCoord3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211b4760 0xc8211b47e0] } +&{glMultiTexCoord3i QOpenGLFunctions_1_3::glMultiTexCoord3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211b4a40 0xc8211b4ac0 0xc8211b4ba0 0xc8211b4c40] } +&{glMultiTexCoord3iv QOpenGLFunctions_1_3::glMultiTexCoord3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211b4e60 0xc8211b4f00] } +&{glMultiTexCoord3s QOpenGLFunctions_1_3::glMultiTexCoord3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211b5140 0xc8211b51e0 0xc8211b5260 0xc8211b5300] } +&{glMultiTexCoord3sv QOpenGLFunctions_1_3::glMultiTexCoord3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211b5540 0xc8211b5600] } +&{glMultiTexCoord4d QOpenGLFunctions_1_3::glMultiTexCoord4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211b5800 0xc8211b58a0 0xc8211b5940 0xc8211b5a00 0xc8211b5ac0] } +&{glMultiTexCoord4dv QOpenGLFunctions_1_3::glMultiTexCoord4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211b5d00 0xc8211b5da0] } +&{glMultiTexCoord4f QOpenGLFunctions_1_3::glMultiTexCoord4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211b5fe0 0xc8211a4060 0xc8211a4120 0xc8211a41a0 0xc8211a4280] } +&{glMultiTexCoord4fv QOpenGLFunctions_1_3::glMultiTexCoord4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211a44a0 0xc8211a4560] } +&{glMultiTexCoord4i QOpenGLFunctions_1_3::glMultiTexCoord4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211a47c0 0xc8211a4860 0xc8211a48e0 0xc8211a49a0 0xc8211a4a40] } +&{glMultiTexCoord4iv QOpenGLFunctions_1_3::glMultiTexCoord4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211a4ca0 0xc8211a4d20] } +&{glMultiTexCoord4s QOpenGLFunctions_1_3::glMultiTexCoord4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211a4f80 0xc8211a5020 0xc8211a50c0 0xc8211a5160 0xc8211a5200] } +&{glMultiTexCoord4sv QOpenGLFunctions_1_3::glMultiTexCoord4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211a5460 0xc8211a5500] } +&{glNewList QOpenGLFunctions_1_3::glNewList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211a5740 0xc8211a57e0] } +&{glNormal3b QOpenGLFunctions_1_3::glNormal3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211a5a20 0xc8211a5b00 0xc8211a5ba0] } +&{glNormal3bv QOpenGLFunctions_1_3::glNormal3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211a5d40] } +&{glNormal3d QOpenGLFunctions_1_3::glNormal3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211a5f80 0xc821190020 0xc8211900e0] } +&{glNormal3dv QOpenGLFunctions_1_3::glNormal3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211902a0] } +&{glNormal3f QOpenGLFunctions_1_3::glNormal3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211904a0 0xc821190560 0xc821190600] } +&{glNormal3fv QOpenGLFunctions_1_3::glNormal3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211907a0] } +&{glNormal3i QOpenGLFunctions_1_3::glNormal3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211909c0 0xc821190a80 0xc821190b00] } +&{glNormal3iv QOpenGLFunctions_1_3::glNormal3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821190ce0] } +&{glNormal3s QOpenGLFunctions_1_3::glNormal3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821190f20 0xc821190fc0 0xc821191060] } +&{glNormal3sv QOpenGLFunctions_1_3::glNormal3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821191200] } +&{glNormalPointer QOpenGLFunctions_1_3::glNormalPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211913e0 0xc821191460 0xc8211914e0] } +&{glOrtho QOpenGLFunctions_1_3::glOrtho commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821191740 0xc8211917e0 0xc821191860 0xc821191920 0xc8211919c0 0xc821191a80] } +&{glPassThrough QOpenGLFunctions_1_3::glPassThrough commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821191c20] } +&{glPixelMapfv QOpenGLFunctions_1_3::glPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821191dc0 0xc821191ea0 0xc821191f40] } +&{glPixelMapuiv QOpenGLFunctions_1_3::glPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82117e0e0 0xc82117e180 0xc82117e240] } +&{glPixelMapusv QOpenGLFunctions_1_3::glPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82117e3e0 0xc82117e4c0 0xc82117e560] } +&{glPixelStoref QOpenGLFunctions_1_3::glPixelStoref commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82117e700 0xc82117e7c0] } +&{glPixelStorei QOpenGLFunctions_1_3::glPixelStorei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82117e960 0xc82117ea00] } +&{glPixelTransferf QOpenGLFunctions_1_3::glPixelTransferf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82117ebc0 0xc82117ec80] } +&{glPixelTransferi QOpenGLFunctions_1_3::glPixelTransferi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82117ee20 0xc82117eea0] } +&{glPixelZoom QOpenGLFunctions_1_3::glPixelZoom commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82117f080 0xc82117f120] } +&{glPointSize QOpenGLFunctions_1_3::glPointSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82117f300] } +&{glPolygonMode QOpenGLFunctions_1_3::glPolygonMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82117f4c0 0xc82117f560] } +&{glPolygonOffset QOpenGLFunctions_1_3::glPolygonOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82117f700 0xc82117f780] } +&{glPolygonStipple QOpenGLFunctions_1_3::glPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82117f920] } +&{glPopAttrib QOpenGLFunctions_1_3::glPopAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [] } +&{glPopClientAttrib QOpenGLFunctions_1_3::glPopClientAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [] } +&{glPopMatrix QOpenGLFunctions_1_3::glPopMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [] } +&{glPopName QOpenGLFunctions_1_3::glPopName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [] } +&{glPrioritizeTextures QOpenGLFunctions_1_3::glPrioritizeTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82117ff00 0xc82117ffc0 0xc821172040] } +&{glPushAttrib QOpenGLFunctions_1_3::glPushAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821172200] } +&{glPushClientAttrib QOpenGLFunctions_1_3::glPushClientAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821172440] } +&{glPushMatrix QOpenGLFunctions_1_3::glPushMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [] } +&{glPushName QOpenGLFunctions_1_3::glPushName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821172780] } +&{glRasterPos2d QOpenGLFunctions_1_3::glRasterPos2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821172920 0xc821172a00] } +&{glRasterPos2dv QOpenGLFunctions_1_3::glRasterPos2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821172ba0] } +&{glRasterPos2f QOpenGLFunctions_1_3::glRasterPos2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821172d80 0xc821172e00] } +&{glRasterPos2fv QOpenGLFunctions_1_3::glRasterPos2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821173000] } +&{glRasterPos2i QOpenGLFunctions_1_3::glRasterPos2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821173180 0xc821173260] } +&{glRasterPos2iv QOpenGLFunctions_1_3::glRasterPos2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211733e0] } +&{glRasterPos2s QOpenGLFunctions_1_3::glRasterPos2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211735c0 0xc821173640] } +&{glRasterPos2sv QOpenGLFunctions_1_3::glRasterPos2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211737e0] } +&{glRasterPos3d QOpenGLFunctions_1_3::glRasterPos3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211739e0 0xc821173a80 0xc821173b00] } +&{glRasterPos3dv QOpenGLFunctions_1_3::glRasterPos3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821173d00] } +&{glRasterPos3f QOpenGLFunctions_1_3::glRasterPos3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821173e80 0xc821173f60 0xc821160020] } +&{glRasterPos3fv QOpenGLFunctions_1_3::glRasterPos3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211601a0] } +&{glRasterPos3i QOpenGLFunctions_1_3::glRasterPos3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821160380 0xc821160420 0xc8211604c0] } +&{glRasterPos3iv QOpenGLFunctions_1_3::glRasterPos3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821160660] } +&{glRasterPos3s QOpenGLFunctions_1_3::glRasterPos3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821160840 0xc8211608e0 0xc821160960] } +&{glRasterPos3sv QOpenGLFunctions_1_3::glRasterPos3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821160b00] } +&{glRasterPos4d QOpenGLFunctions_1_3::glRasterPos4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821160d00 0xc821160d80 0xc821160e40 0xc821160ec0] } +&{glRasterPos4dv QOpenGLFunctions_1_3::glRasterPos4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211610a0] } +&{glRasterPos4f QOpenGLFunctions_1_3::glRasterPos4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821161220 0xc8211612e0 0xc821161360 0xc821161420] } +&{glRasterPos4fv QOpenGLFunctions_1_3::glRasterPos4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211615e0] } +&{glRasterPos4i QOpenGLFunctions_1_3::glRasterPos4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821161780 0xc821161840 0xc8211618c0 0xc821161940] } +&{glRasterPos4iv QOpenGLFunctions_1_3::glRasterPos4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821161b20] } +&{glRasterPos4s QOpenGLFunctions_1_3::glRasterPos4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821161ce0 0xc821161d60 0xc821161e00 0xc821161ec0] } +&{glRasterPos4sv QOpenGLFunctions_1_3::glRasterPos4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211480a0] } +&{glReadBuffer QOpenGLFunctions_1_3::glReadBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821148240] } +&{glReadPixels QOpenGLFunctions_1_3::glReadPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821148440 0xc8211484c0 0xc821148580 0xc821148600 0xc8211486c0 0xc821148780 0xc821148800] } +&{glRectd QOpenGLFunctions_1_3::glRectd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821148a20 0xc821148aa0 0xc821148b80 0xc821148c00] } +&{glRectdv QOpenGLFunctions_1_3::glRectdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821148e40 0xc821148ee0] } +&{glRectf QOpenGLFunctions_1_3::glRectf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211490e0 0xc8211491a0 0xc821149240 0xc8211492c0] } +&{glRectfv QOpenGLFunctions_1_3::glRectfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821149500 0xc8211495a0] } +&{glRecti QOpenGLFunctions_1_3::glRecti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211497a0 0xc821149860 0xc821149920 0xc8211499a0] } +&{glRectiv QOpenGLFunctions_1_3::glRectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821149be0 0xc821149c80] } +&{glRects QOpenGLFunctions_1_3::glRects commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821149ea0 0xc821149f20 0xc821149fe0 0xc82113a0c0] } +&{glRectsv QOpenGLFunctions_1_3::glRectsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82113a2c0 0xc82113a380] } +&{glRenderMode QOpenGLFunctions_1_3::glRenderMode commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false GLint [0xc82113a560] } +&{glResetHistogram QOpenGLFunctions_1_3::glResetHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82113a720] } +&{glResetMinmax QOpenGLFunctions_1_3::glResetMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82113a8e0] } +&{glRotated QOpenGLFunctions_1_3::glRotated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82113ab00 0xc82113abc0 0xc82113ac40 0xc82113acc0] } +&{glRotatef QOpenGLFunctions_1_3::glRotatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82113af00 0xc82113afc0 0xc82113b060 0xc82113b0e0] } +&{glSampleCoverage QOpenGLFunctions_1_3::glSampleCoverage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82113b2a0 0xc82113b360] } +&{glScaled QOpenGLFunctions_1_3::glScaled commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82113b5a0 0xc82113b620 0xc82113b6a0] } +&{glScalef QOpenGLFunctions_1_3::glScalef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82113b900 0xc82113b980 0xc82113ba00] } +&{glScissor QOpenGLFunctions_1_3::glScissor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82113bc60 0xc82113bd00 0xc82113bd80 0xc82113be40] } +&{glSelectBuffer QOpenGLFunctions_1_3::glSelectBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc82113bfa0 0xc821124020] } +&{glSeparableFilter2D QOpenGLFunctions_1_3::glSeparableFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821124260 0xc8211242e0 0xc821124360 0xc821124440 0xc821124520 0xc8211245a0 0xc821124620 0xc8211246e0] } +&{glShadeModel QOpenGLFunctions_1_3::glShadeModel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211248a0] } +&{glStencilFunc QOpenGLFunctions_1_3::glStencilFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821124a80 0xc821124b00 0xc821124be0] } +&{glStencilMask QOpenGLFunctions_1_3::glStencilMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821124da0] } +&{glStencilOp QOpenGLFunctions_1_3::glStencilOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821124f40 0xc821125020 0xc8211250c0] } +&{glTexCoord1d QOpenGLFunctions_1_3::glTexCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211252a0] } +&{glTexCoord1dv QOpenGLFunctions_1_3::glTexCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821125460] } +&{glTexCoord1f QOpenGLFunctions_1_3::glTexCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821125620] } +&{glTexCoord1fv QOpenGLFunctions_1_3::glTexCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211257e0] } +&{glTexCoord1i QOpenGLFunctions_1_3::glTexCoord1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211259e0] } +&{glTexCoord1iv QOpenGLFunctions_1_3::glTexCoord1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821125b80] } +&{glTexCoord1s QOpenGLFunctions_1_3::glTexCoord1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821125da0] } +&{glTexCoord1sv QOpenGLFunctions_1_3::glTexCoord1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821125f40] } +&{glTexCoord2d QOpenGLFunctions_1_3::glTexCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211180e0 0xc821118180] } +&{glTexCoord2dv QOpenGLFunctions_1_3::glTexCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821118340] } +&{glTexCoord2f QOpenGLFunctions_1_3::glTexCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211184e0 0xc821118580] } +&{glTexCoord2fv QOpenGLFunctions_1_3::glTexCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821118760] } +&{glTexCoord2i QOpenGLFunctions_1_3::glTexCoord2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821118920 0xc8211189c0] } +&{glTexCoord2iv QOpenGLFunctions_1_3::glTexCoord2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821118b60] } +&{glTexCoord2s QOpenGLFunctions_1_3::glTexCoord2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821118d40 0xc821118dc0] } +&{glTexCoord2sv QOpenGLFunctions_1_3::glTexCoord2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821118fa0] } +&{glTexCoord3d QOpenGLFunctions_1_3::glTexCoord3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821119140 0xc8211191e0 0xc821119280] } +&{glTexCoord3dv QOpenGLFunctions_1_3::glTexCoord3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821119420] } +&{glTexCoord3f QOpenGLFunctions_1_3::glTexCoord3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211195e0 0xc821119680 0xc821119720] } +&{glTexCoord3fv QOpenGLFunctions_1_3::glTexCoord3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8211198e0] } +&{glTexCoord3i QOpenGLFunctions_1_3::glTexCoord3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821119a80 0xc821119b40 0xc821119be0] } +&{glTexCoord3iv QOpenGLFunctions_1_3::glTexCoord3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821119da0] } +&{glTexCoord3s QOpenGLFunctions_1_3::glTexCoord3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc821119f40 0xc8210f8000 0xc8210f80a0] } +&{glTexCoord3sv QOpenGLFunctions_1_3::glTexCoord3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210f8260] } +&{glTexCoord4d QOpenGLFunctions_1_3::glTexCoord4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210f8400 0xc8210f84e0 0xc8210f8560 0xc8210f85e0] } +&{glTexCoord4dv QOpenGLFunctions_1_3::glTexCoord4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210f87a0] } +&{glTexCoord4f QOpenGLFunctions_1_3::glTexCoord4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210f8960 0xc8210f8a00 0xc8210f8ac0 0xc8210f8b40] } +&{glTexCoord4fv QOpenGLFunctions_1_3::glTexCoord4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210f8d00] } +&{glTexCoord4i QOpenGLFunctions_1_3::glTexCoord4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210f8ec0 0xc8210f8f40 0xc8210f8fe0 0xc8210f90a0] } +&{glTexCoord4iv QOpenGLFunctions_1_3::glTexCoord4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210f9240] } +&{glTexCoord4s QOpenGLFunctions_1_3::glTexCoord4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210f93e0 0xc8210f94c0 0xc8210f9540 0xc8210f9600] } +&{glTexCoord4sv QOpenGLFunctions_1_3::glTexCoord4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210f97a0] } +&{glTexCoordPointer QOpenGLFunctions_1_3::glTexCoordPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210f99e0 0xc8210f9a60 0xc8210f9b20 0xc8210f9bc0] } +&{glTexEnvf QOpenGLFunctions_1_3::glTexEnvf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210f9de0 0xc8210f9e60 0xc8210f9f40] } +&{glTexEnvfv QOpenGLFunctions_1_3::glTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210e4140 0xc8210e4200 0xc8210e42a0] } +&{glTexEnvi QOpenGLFunctions_1_3::glTexEnvi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210e44c0 0xc8210e4560 0xc8210e4600] } +&{glTexEnviv QOpenGLFunctions_1_3::glTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210e4840 0xc8210e48e0 0xc8210e49a0] } +&{glTexGend QOpenGLFunctions_1_3::glTexGend commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210e4be0 0xc8210e4c80 0xc8210e4d20] } +&{glTexGendv QOpenGLFunctions_1_3::glTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210e4f60 0xc8210e5000 0xc8210e5080] } +&{glTexGenf QOpenGLFunctions_1_3::glTexGenf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210e52e0 0xc8210e5360 0xc8210e5440] } +&{glTexGenfv QOpenGLFunctions_1_3::glTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210e5660 0xc8210e5720 0xc8210e57c0] } +&{glTexGeni QOpenGLFunctions_1_3::glTexGeni commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210e59c0 0xc8210e5a80 0xc8210e5b20] } +&{glTexGeniv QOpenGLFunctions_1_3::glTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210e5d60 0xc8210e5de0 0xc8210e5e60] } +&{glTexImage1D QOpenGLFunctions_1_3::glTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210d2020 0xc8210d20e0 0xc8210d2180 0xc8210d2220 0xc8210d22e0 0xc8210d2360 0xc8210d2440 0xc8210d24e0] } +&{glTexImage2D QOpenGLFunctions_1_3::glTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210d2680 0xc8210d2740 0xc8210d2800 0xc8210d2880 0xc8210d2960 0xc8210d2a00 0xc8210d2a80 0xc8210d2b40 0xc8210d2c00] } +&{glTexImage3D QOpenGLFunctions_1_3::glTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210d2dc0 0xc8210d2e40 0xc8210d2f00 0xc8210d2fa0 0xc8210d3040 0xc8210d30e0 0xc8210d31a0 0xc8210d3220 0xc8210d3300 0xc8210d33a0] } +&{glTexParameterf QOpenGLFunctions_1_3::glTexParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210d3560 0xc8210d3600 0xc8210d3680] } +&{glTexParameterfv QOpenGLFunctions_1_3::glTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210d3860 0xc8210d3900 0xc8210d39a0] } +&{glTexParameteri QOpenGLFunctions_1_3::glTexParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210d3b60 0xc8210d3c00 0xc8210d3c80] } +&{glTexParameteriv QOpenGLFunctions_1_3::glTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210d3e60 0xc8210d3ee0 0xc8210d3fa0] } +&{glTexSubImage1D QOpenGLFunctions_1_3::glTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210c4140 0xc8210c4200 0xc8210c42a0 0xc8210c4320 0xc8210c43e0 0xc8210c4480 0xc8210c4540] } +&{glTexSubImage2D QOpenGLFunctions_1_3::glTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210c46c0 0xc8210c47a0 0xc8210c4840 0xc8210c48e0 0xc8210c4980 0xc8210c4a60 0xc8210c4b00 0xc8210c4ba0 0xc8210c4c40] } +&{glTexSubImage3D QOpenGLFunctions_1_3::glTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210c4e00 0xc8210c4ec0 0xc8210c4f60 0xc8210c5000 0xc8210c50a0 0xc8210c5180 0xc8210c5220 0xc8210c52a0 0xc8210c5360 0xc8210c5440 0xc8210c54e0] } +&{glTranslated QOpenGLFunctions_1_3::glTranslated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210c56a0 0xc8210c5740 0xc8210c57e0] } +&{glTranslatef QOpenGLFunctions_1_3::glTranslatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210c59c0 0xc8210c5a60 0xc8210c5ae0] } +&{glVertex2d QOpenGLFunctions_1_3::glVertex2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210c5d20 0xc8210c5da0] } +&{glVertex2dv QOpenGLFunctions_1_3::glVertex2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210c5f80] } +&{glVertex2f QOpenGLFunctions_1_3::glVertex2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210b4180 0xc8210b4240] } +&{glVertex2fv QOpenGLFunctions_1_3::glVertex2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210b4400] } +&{glVertex2i QOpenGLFunctions_1_3::glVertex2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210b4600 0xc8210b46e0] } +&{glVertex2iv QOpenGLFunctions_1_3::glVertex2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210b48c0] } +&{glVertex2s QOpenGLFunctions_1_3::glVertex2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210b4ae0 0xc8210b4b60] } +&{glVertex2sv QOpenGLFunctions_1_3::glVertex2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210b4d20] } +&{glVertex3d QOpenGLFunctions_1_3::glVertex3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210b4f80 0xc8210b5000 0xc8210b50a0] } +&{glVertex3dv QOpenGLFunctions_1_3::glVertex3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210b5280] } +&{glVertex3f QOpenGLFunctions_1_3::glVertex3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210b54e0 0xc8210b5560 0xc8210b5600] } +&{glVertex3fv QOpenGLFunctions_1_3::glVertex3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210b5800] } +&{glVertex3i QOpenGLFunctions_1_3::glVertex3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210b5a20 0xc8210b5ae0 0xc8210b5b60] } +&{glVertex3iv QOpenGLFunctions_1_3::glVertex3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210b5d60] } +&{glVertex3s QOpenGLFunctions_1_3::glVertex3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210b5fa0 0xc8210a0020 0xc8210a00e0] } +&{glVertex3sv QOpenGLFunctions_1_3::glVertex3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210a0280] } +&{glVertex4d QOpenGLFunctions_1_3::glVertex4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210a04a0 0xc8210a0560 0xc8210a05e0 0xc8210a06a0] } +&{glVertex4dv QOpenGLFunctions_1_3::glVertex4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210a0860] } +&{glVertex4f QOpenGLFunctions_1_3::glVertex4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210a0a80 0xc8210a0b20 0xc8210a0ba0 0xc8210a0c40] } +&{glVertex4fv QOpenGLFunctions_1_3::glVertex4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210a0e00] } +&{glVertex4i QOpenGLFunctions_1_3::glVertex4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210a1020 0xc8210a10a0 0xc8210a1160 0xc8210a1200] } +&{glVertex4iv QOpenGLFunctions_1_3::glVertex4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210a1400] } +&{glVertex4s QOpenGLFunctions_1_3::glVertex4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210a15e0 0xc8210a1680 0xc8210a1720 0xc8210a17e0] } +&{glVertex4sv QOpenGLFunctions_1_3::glVertex4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210a1980] } +&{glVertexPointer QOpenGLFunctions_1_3::glVertexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210a1b40 0xc8210a1be0 0xc8210a1cc0 0xc8210a1d40] } +&{glViewport QOpenGLFunctions_1_3::glViewport commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_3.h non plain false false void [0xc8210a1f80 0xc82108e000 0xc82108e0c0 0xc82108e140] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions_1_4.txt b/internal/binding/dump/QtGui/QOpenGLFunctions_1_4.txt new file mode 100755 index 00000000..1d251afd --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions_1_4.txt @@ -0,0 +1,470 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions_1_4 QOpenGLFunctions_1_4::QOpenGLFunctions_1_4 commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.cpp non constructor false false [] } +&{initializeOpenGLFunctions QOpenGLFunctions_1_4::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.cpp impure plain false false bool [] } +&{~QOpenGLFunctions_1_4 QOpenGLFunctions_1_4::~QOpenGLFunctions_1_4 commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.cpp non destructor false false [] } +&{glAccum QOpenGLFunctions_1_4::glAccum commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc82108ece0 0xc82108ed60] } +&{glActiveTexture QOpenGLFunctions_1_4::glActiveTexture commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc82108ef40] } +&{glAlphaFunc QOpenGLFunctions_1_4::glAlphaFunc commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc82108f100 0xc82108f180] } +&{glAreTexturesResident QOpenGLFunctions_1_4::glAreTexturesResident commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false GLboolean [0xc82108f3e0 0xc82108f4a0 0xc82108f540] } +&{glArrayElement QOpenGLFunctions_1_4::glArrayElement commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc82108f720] } +&{glBegin QOpenGLFunctions_1_4::glBegin commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc82108f960] } +&{glBindTexture QOpenGLFunctions_1_4::glBindTexture commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc82108fb20 0xc82108fbc0] } +&{glBitmap QOpenGLFunctions_1_4::glBitmap commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc82108fde0 0xc82108fe60 0xc82108ff20 0xc82108ffa0 0xc82107e040 0xc82107e0e0 0xc82107e1a0] } +&{glBlendColor QOpenGLFunctions_1_4::glBlendColor commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc82107e360 0xc82107e400 0xc82107e4a0 0xc82107e520] } +&{glBlendEquation QOpenGLFunctions_1_4::glBlendEquation commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc82107e700] } +&{glBlendFunc QOpenGLFunctions_1_4::glBlendFunc commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc82107e8c0 0xc82107e940] } +&{glBlendFuncSeparate QOpenGLFunctions_1_4::glBlendFuncSeparate commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc82107eba0 0xc82107ec40 0xc82107ed00 0xc82107eda0] } +&{glCallList QOpenGLFunctions_1_4::glCallList commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc82107efe0] } +&{glCallLists QOpenGLFunctions_1_4::glCallLists commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc82107f1a0 0xc82107f260 0xc82107f300] } +&{glClear QOpenGLFunctions_1_4::glClear commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc82107f520] } +&{glClearAccum QOpenGLFunctions_1_4::glClearAccum commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc82107f6e0 0xc82107f7c0 0xc82107f840 0xc82107f8c0] } +&{glClearColor QOpenGLFunctions_1_4::glClearColor commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc82107fa80 0xc82107fb40 0xc82107fbc0 0xc82107fc40] } +&{glClearDepth QOpenGLFunctions_1_4::glClearDepth commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc82107fe20] } +&{glClearIndex QOpenGLFunctions_1_4::glClearIndex commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc82107ffe0] } +&{glClearStencil QOpenGLFunctions_1_4::glClearStencil commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc8210721e0] } +&{glClientActiveTexture QOpenGLFunctions_1_4::glClientActiveTexture commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821072420] } +&{glClipPlane QOpenGLFunctions_1_4::glClipPlane commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc8210725c0 0xc8210726a0] } +&{glColor3b QOpenGLFunctions_1_4::glColor3b commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc8210728a0 0xc821072960 0xc821072a00] } +&{glColor3bv QOpenGLFunctions_1_4::glColor3bv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821072c40] } +&{glColor3d QOpenGLFunctions_1_4::glColor3d commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821072e80 0xc821072f20 0xc821072fa0] } +&{glColor3dv QOpenGLFunctions_1_4::glColor3dv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc8210731e0] } +&{glColor3f QOpenGLFunctions_1_4::glColor3f commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc8210733e0 0xc8210734a0 0xc821073540] } +&{glColor3fv QOpenGLFunctions_1_4::glColor3fv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc8210737a0] } +&{glColor3i QOpenGLFunctions_1_4::glColor3i commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc8210739c0 0xc821073a60 0xc821073b00] } +&{glColor3iv QOpenGLFunctions_1_4::glColor3iv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821073d40] } +&{glColor3s QOpenGLFunctions_1_4::glColor3s commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821073f80 0xc821064000 0xc8210640a0] } +&{glColor3sv QOpenGLFunctions_1_4::glColor3sv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc8210642e0] } +&{glColor3ub QOpenGLFunctions_1_4::glColor3ub commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821064500 0xc8210645c0 0xc821064640] } +&{glColor3ubv QOpenGLFunctions_1_4::glColor3ubv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc8210647e0] } +&{glColor3ui QOpenGLFunctions_1_4::glColor3ui commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821064a20 0xc821064aa0 0xc821064b40] } +&{glColor3uiv QOpenGLFunctions_1_4::glColor3uiv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821064d00] } +&{glColor3us QOpenGLFunctions_1_4::glColor3us commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821064f20 0xc821065000 0xc8210650a0] } +&{glColor3usv QOpenGLFunctions_1_4::glColor3usv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821065260] } +&{glColor4b QOpenGLFunctions_1_4::glColor4b commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821065480 0xc821065520 0xc8210655c0 0xc821065680] } +&{glColor4bv QOpenGLFunctions_1_4::glColor4bv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc8210658a0] } +&{glColor4d QOpenGLFunctions_1_4::glColor4d commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821065b00 0xc821065ba0 0xc821065c40 0xc821065ce0] } +&{glColor4dv QOpenGLFunctions_1_4::glColor4dv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821065f20] } +&{glColor4f QOpenGLFunctions_1_4::glColor4f commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821050160 0xc8210501e0 0xc821050280 0xc821050360] } +&{glColor4fv QOpenGLFunctions_1_4::glColor4fv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821050560] } +&{glColor4i QOpenGLFunctions_1_4::glColor4i commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc8210507e0 0xc821050880 0xc821050920 0xc8210509c0] } +&{glColor4iv QOpenGLFunctions_1_4::glColor4iv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821050c00] } +&{glColor4s QOpenGLFunctions_1_4::glColor4s commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821050e80 0xc821050f00 0xc821050f80 0xc821051060] } +&{glColor4sv QOpenGLFunctions_1_4::glColor4sv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc8210512a0] } +&{glColor4ub QOpenGLFunctions_1_4::glColor4ub commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc8210514e0 0xc821051560 0xc8210515e0 0xc8210516c0] } +&{glColor4ubv QOpenGLFunctions_1_4::glColor4ubv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821051880] } +&{glColor4ui QOpenGLFunctions_1_4::glColor4ui commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821051a80 0xc821051b60 0xc821051c00 0xc821051cc0] } +&{glColor4uiv QOpenGLFunctions_1_4::glColor4uiv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821051e60] } +&{glColor4us QOpenGLFunctions_1_4::glColor4us commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821042080 0xc821042160 0xc8210421e0 0xc821042260] } +&{glColor4usv QOpenGLFunctions_1_4::glColor4usv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821042460] } +&{glColorMask QOpenGLFunctions_1_4::glColorMask commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821042620 0xc8210426a0 0xc821042720 0xc821042800] } +&{glColorMaterial QOpenGLFunctions_1_4::glColorMaterial commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc8210429a0 0xc821042a40] } +&{glColorPointer QOpenGLFunctions_1_4::glColorPointer commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821042c00 0xc821042ce0 0xc821042d80 0xc821042e00] } +&{glColorSubTable QOpenGLFunctions_1_4::glColorSubTable commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821042fa0 0xc821043080 0xc821043120 0xc8210431c0 0xc821043260 0xc821043320] } +&{glColorTable QOpenGLFunctions_1_4::glColorTable commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc8210434e0 0xc8210435a0 0xc821043620 0xc8210436a0 0xc821043780 0xc821043800] } +&{glColorTableParameterfv QOpenGLFunctions_1_4::glColorTableParameterfv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821043aa0 0xc821043b20 0xc821043bc0] } +&{glColorTableParameteriv QOpenGLFunctions_1_4::glColorTableParameteriv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821043e20 0xc821043ee0 0xc821043f80] } +&{glCompressedTexImage1D QOpenGLFunctions_1_4::glCompressedTexImage1D commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc8210301a0 0xc821030220 0xc8210302a0 0xc821030380 0xc821030420 0xc8210304e0 0xc821030580] } +&{glCompressedTexImage2D QOpenGLFunctions_1_4::glCompressedTexImage2D commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc8210307c0 0xc821030840 0xc8210308c0 0xc8210309a0 0xc821030a60 0xc821030b00 0xc821030b80 0xc821030c40] } +&{glCompressedTexImage3D QOpenGLFunctions_1_4::glCompressedTexImage3D commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821030e60 0xc821030f20 0xc821030fa0 0xc821031060 0xc821031100 0xc821031180 0xc821031240 0xc8210312c0 0xc8210313c0] } +&{glCompressedTexSubImage1D QOpenGLFunctions_1_4::glCompressedTexSubImage1D commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821031600 0xc8210316a0 0xc821031720 0xc8210317a0 0xc8210318a0 0xc821031920 0xc8210319c0] } +&{glCompressedTexSubImage2D QOpenGLFunctions_1_4::glCompressedTexSubImage2D commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821031c00 0xc821031ce0 0xc821031d60 0xc821031de0 0xc821031ee0 0xc821031fa0 0xc821020020 0xc8210200c0 0xc8210201c0] } +&{glCompressedTexSubImage3D QOpenGLFunctions_1_4::glCompressedTexSubImage3D commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc8210203c0 0xc821020440 0xc821020500 0xc821020580 0xc821020640 0xc8210206e0 0xc821020760 0xc821020800 0xc8210208c0 0xc821020980 0xc821020a00] } +&{glConvolutionFilter1D QOpenGLFunctions_1_4::glConvolutionFilter1D commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821020c40 0xc821020ce0 0xc821020d60 0xc821020e20 0xc821020ee0 0xc821020f60] } +&{glConvolutionFilter2D QOpenGLFunctions_1_4::glConvolutionFilter2D commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc8210211c0 0xc821021240 0xc821021300 0xc821021380 0xc821021440 0xc821021500 0xc821021580] } +&{glConvolutionParameterf QOpenGLFunctions_1_4::glConvolutionParameterf commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc8210217c0 0xc821021860 0xc821021900] } +&{glConvolutionParameterfv QOpenGLFunctions_1_4::glConvolutionParameterfv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821021b60 0xc821021be0 0xc821021c60] } +&{glConvolutionParameteri QOpenGLFunctions_1_4::glConvolutionParameteri commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821021ec0 0xc821021f40 0xc82100e000] } +&{glConvolutionParameteriv QOpenGLFunctions_1_4::glConvolutionParameteriv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc82100e220 0xc82100e2a0 0xc82100e380] } +&{glCopyColorSubTable QOpenGLFunctions_1_4::glCopyColorSubTable commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc82100e580 0xc82100e640 0xc82100e6c0 0xc82100e7a0 0xc82100e860] } +&{glCopyColorTable QOpenGLFunctions_1_4::glCopyColorTable commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc82100ea20 0xc82100eaa0 0xc82100eb40 0xc82100ec00 0xc82100ece0] } +&{glCopyConvolutionFilter1D QOpenGLFunctions_1_4::glCopyConvolutionFilter1D commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc82100ef00 0xc82100ef80 0xc82100f060 0xc82100f100 0xc82100f1e0] } +&{glCopyConvolutionFilter2D QOpenGLFunctions_1_4::glCopyConvolutionFilter2D commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc82100f3e0 0xc82100f480 0xc82100f540 0xc82100f600 0xc82100f6c0 0xc82100f740] } +&{glCopyPixels QOpenGLFunctions_1_4::glCopyPixels commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc82100f8e0 0xc82100f9c0 0xc82100fa60 0xc82100fb00 0xc82100fbc0] } +&{glCopyTexImage1D QOpenGLFunctions_1_4::glCopyTexImage1D commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc82100fd60 0xc82100fe20 0xc82100fec0 0xc82100ff80 0xc821000020 0xc8210000c0 0xc821000140] } +&{glCopyTexImage2D QOpenGLFunctions_1_4::glCopyTexImage2D commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821000300 0xc8210003a0 0xc821000460 0xc821000500 0xc8210005c0 0xc821000660 0xc8210006e0 0xc8210007a0] } +&{glCopyTexSubImage1D QOpenGLFunctions_1_4::glCopyTexSubImage1D commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc8210009e0 0xc821000a80 0xc821000b20 0xc821000ba0 0xc821000ca0 0xc821000d40] } +&{glCopyTexSubImage2D QOpenGLFunctions_1_4::glCopyTexSubImage2D commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821000f40 0xc821001020 0xc8210010c0 0xc821001140 0xc821001220 0xc8210012a0 0xc821001340 0xc821001400] } +&{glCopyTexSubImage3D QOpenGLFunctions_1_4::glCopyTexSubImage3D commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821001620 0xc8210016a0 0xc821001780 0xc821001820 0xc8210018c0 0xc821001980 0xc821001a00 0xc821001aa0 0xc821001ba0] } +&{glCullFace QOpenGLFunctions_1_4::glCullFace commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821001de0] } +&{glDeleteLists QOpenGLFunctions_1_4::glDeleteLists commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc821001fc0 0xc820ff0040] } +&{glDeleteTextures QOpenGLFunctions_1_4::glDeleteTextures commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ff0240 0xc820ff02c0] } +&{glDepthFunc QOpenGLFunctions_1_4::glDepthFunc commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ff04c0] } +&{glDepthMask QOpenGLFunctions_1_4::glDepthMask commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ff06c0] } +&{glDepthRange QOpenGLFunctions_1_4::glDepthRange commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ff0860 0xc820ff08e0] } +&{glDisable QOpenGLFunctions_1_4::glDisable commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ff0b60] } +&{glDisableClientState QOpenGLFunctions_1_4::glDisableClientState commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ff0d80] } +&{glDrawArrays QOpenGLFunctions_1_4::glDrawArrays commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ff0f40 0xc820ff0fe0 0xc820ff1080] } +&{glDrawBuffer QOpenGLFunctions_1_4::glDrawBuffer commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ff1280] } +&{glDrawElements QOpenGLFunctions_1_4::glDrawElements commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ff1440 0xc820ff14e0 0xc820ff1560 0xc820ff1620] } +&{glDrawPixels QOpenGLFunctions_1_4::glDrawPixels commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ff17c0 0xc820ff1880 0xc820ff1920 0xc820ff19c0 0xc820ff1a60] } +&{glDrawRangeElements QOpenGLFunctions_1_4::glDrawRangeElements commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ff1ca0 0xc820ff1d40 0xc820ff1de0 0xc820ff1e80 0xc820ff1f60 0xc820fca000] } +&{glEdgeFlag QOpenGLFunctions_1_4::glEdgeFlag commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fca280] } +&{glEdgeFlagPointer QOpenGLFunctions_1_4::glEdgeFlagPointer commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fca4a0 0xc820fca520] } +&{glEdgeFlagv QOpenGLFunctions_1_4::glEdgeFlagv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fca720] } +&{glEnable QOpenGLFunctions_1_4::glEnable commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fca9a0] } +&{glEnableClientState QOpenGLFunctions_1_4::glEnableClientState commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fcabe0] } +&{glEnd QOpenGLFunctions_1_4::glEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [] } +&{glEndList QOpenGLFunctions_1_4::glEndList commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [] } +&{glEvalCoord1d QOpenGLFunctions_1_4::glEvalCoord1d commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fcb000] } +&{glEvalCoord1dv QOpenGLFunctions_1_4::glEvalCoord1dv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fcb1e0] } +&{glEvalCoord1f QOpenGLFunctions_1_4::glEvalCoord1f commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fcb3a0] } +&{glEvalCoord1fv QOpenGLFunctions_1_4::glEvalCoord1fv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fcb540] } +&{glEvalCoord2d QOpenGLFunctions_1_4::glEvalCoord2d commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fcb720 0xc820fcb7a0] } +&{glEvalCoord2dv QOpenGLFunctions_1_4::glEvalCoord2dv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fcb980] } +&{glEvalCoord2f QOpenGLFunctions_1_4::glEvalCoord2f commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fcbb40 0xc820fcbbc0] } +&{glEvalCoord2fv QOpenGLFunctions_1_4::glEvalCoord2fv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fcbda0] } +&{glEvalMesh1 QOpenGLFunctions_1_4::glEvalMesh1 commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fcbf60 0xc820fcbfe0 0xc820fb8080] } +&{glEvalMesh2 QOpenGLFunctions_1_4::glEvalMesh2 commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fb8220 0xc820fb8300 0xc820fb83a0 0xc820fb8420 0xc820fb84e0] } +&{glEvalPoint1 QOpenGLFunctions_1_4::glEvalPoint1 commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fb8700] } +&{glEvalPoint2 QOpenGLFunctions_1_4::glEvalPoint2 commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fb88c0 0xc820fb8940] } +&{glFeedbackBuffer QOpenGLFunctions_1_4::glFeedbackBuffer commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fb8ae0 0xc820fb8ba0 0xc820fb8c40] } +&{glFinish QOpenGLFunctions_1_4::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [] } +&{glFlush QOpenGLFunctions_1_4::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [] } +&{glFogCoordPointer QOpenGLFunctions_1_4::glFogCoordPointer commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fb90a0 0xc820fb9120 0xc820fb91a0] } +&{glFogCoordd QOpenGLFunctions_1_4::glFogCoordd commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fb93a0] } +&{glFogCoorddv QOpenGLFunctions_1_4::glFogCoorddv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fb9540] } +&{glFogCoordf QOpenGLFunctions_1_4::glFogCoordf commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fb9700] } +&{glFogCoordfv QOpenGLFunctions_1_4::glFogCoordfv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fb98a0] } +&{glFogf QOpenGLFunctions_1_4::glFogf commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fb9b20 0xc820fb9ba0] } +&{glFogfv QOpenGLFunctions_1_4::glFogfv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fb9e00 0xc820fb9e80] } +&{glFogi QOpenGLFunctions_1_4::glFogi commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820faa0a0 0xc820faa140] } +&{glFogiv QOpenGLFunctions_1_4::glFogiv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820faa3a0 0xc820faa420] } +&{glFrontFace QOpenGLFunctions_1_4::glFrontFace commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820faa620] } +&{glFrustum QOpenGLFunctions_1_4::glFrustum commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820faa880 0xc820faa920 0xc820faa9a0 0xc820faaa80 0xc820faab40 0xc820faabc0] } +&{glGenLists QOpenGLFunctions_1_4::glGenLists commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false GLuint [0xc820faae60] } +&{glGenTextures QOpenGLFunctions_1_4::glGenTextures commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fab020 0xc820fab0c0] } +&{glGetBooleanv QOpenGLFunctions_1_4::glGetBooleanv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fab280 0xc820fab340] } +&{glGetClipPlane QOpenGLFunctions_1_4::glGetClipPlane commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fab4c0 0xc820fab5a0] } +&{glGetColorTable QOpenGLFunctions_1_4::glGetColorTable commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fab720 0xc820fab7e0 0xc820fab860 0xc820fab940] } +&{glGetColorTableParameterfv QOpenGLFunctions_1_4::glGetColorTableParameterfv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fabb60 0xc820fabc00 0xc820fabcc0] } +&{glGetColorTableParameteriv QOpenGLFunctions_1_4::glGetColorTableParameteriv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820fabee0 0xc820fabfc0 0xc820f96060] } +&{glGetCompressedTexImage QOpenGLFunctions_1_4::glGetCompressedTexImage commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f96260 0xc820f96320 0xc820f963e0] } +&{glGetConvolutionFilter QOpenGLFunctions_1_4::glGetConvolutionFilter commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f965e0 0xc820f966a0 0xc820f96740 0xc820f967e0] } +&{glGetConvolutionParameterfv QOpenGLFunctions_1_4::glGetConvolutionParameterfv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f969e0 0xc820f96aa0 0xc820f96b60] } +&{glGetConvolutionParameteriv QOpenGLFunctions_1_4::glGetConvolutionParameteriv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f96d80 0xc820f96e00 0xc820f96ec0] } +&{glGetDoublev QOpenGLFunctions_1_4::glGetDoublev commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f97080 0xc820f97100] } +&{glGetError QOpenGLFunctions_1_4::glGetError commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false GLenum [] } +&{glGetFloatv QOpenGLFunctions_1_4::glGetFloatv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f97420 0xc820f974c0] } +&{glGetHistogram QOpenGLFunctions_1_4::glGetHistogram commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f97660 0xc820f97720 0xc820f977c0 0xc820f97860 0xc820f97920] } +&{glGetHistogramParameterfv QOpenGLFunctions_1_4::glGetHistogramParameterfv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f97b20 0xc820f97be0 0xc820f97c60] } +&{glGetHistogramParameteriv QOpenGLFunctions_1_4::glGetHistogramParameteriv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f97ea0 0xc820f97f40 0xc820f80020] } +&{glGetIntegerv QOpenGLFunctions_1_4::glGetIntegerv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f801c0 0xc820f80240] } +&{glGetLightfv QOpenGLFunctions_1_4::glGetLightfv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f803c0 0xc820f80440 0xc820f804c0] } +&{glGetLightiv QOpenGLFunctions_1_4::glGetLightiv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f806a0 0xc820f80760 0xc820f807e0] } +&{glGetMapdv QOpenGLFunctions_1_4::glGetMapdv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f80a00 0xc820f80ac0 0xc820f80b40] } +&{glGetMapfv QOpenGLFunctions_1_4::glGetMapfv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f80d60 0xc820f80de0 0xc820f80ea0] } +&{glGetMapiv QOpenGLFunctions_1_4::glGetMapiv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f810c0 0xc820f81140 0xc820f81220] } +&{glGetMaterialfv QOpenGLFunctions_1_4::glGetMaterialfv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f813c0 0xc820f81440 0xc820f81500] } +&{glGetMaterialiv QOpenGLFunctions_1_4::glGetMaterialiv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f816c0 0xc820f81740 0xc820f817c0] } +&{glGetMinmax QOpenGLFunctions_1_4::glGetMinmax commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f81980 0xc820f81a40 0xc820f81ac0 0xc820f81b80 0xc820f81c60] } +&{glGetMinmaxParameterfv QOpenGLFunctions_1_4::glGetMinmaxParameterfv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f81e60 0xc820f81f20 0xc820f81fc0] } +&{glGetMinmaxParameteriv QOpenGLFunctions_1_4::glGetMinmaxParameteriv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f6e1c0 0xc820f6e280 0xc820f6e300] } +&{glGetPixelMapfv QOpenGLFunctions_1_4::glGetPixelMapfv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f6e4e0 0xc820f6e560] } +&{glGetPixelMapuiv QOpenGLFunctions_1_4::glGetPixelMapuiv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f6e720 0xc820f6e7e0] } +&{glGetPixelMapusv QOpenGLFunctions_1_4::glGetPixelMapusv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f6e980 0xc820f6ea00] } +&{glGetPointerv QOpenGLFunctions_1_4::glGetPointerv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f6ebe0 0xc820f6ec80] } +&{glGetPolygonStipple QOpenGLFunctions_1_4::glGetPolygonStipple commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f6eec0] } +&{glGetSeparableFilter QOpenGLFunctions_1_4::glGetSeparableFilter commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f6f100 0xc820f6f1a0 0xc820f6f220 0xc820f6f2e0 0xc820f6f3a0 0xc820f6f420] } +&{glGetString QOpenGLFunctions_1_4::glGetString commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false const GLubyte * [0xc820f6f5e0] } +&{glGetTexEnvfv QOpenGLFunctions_1_4::glGetTexEnvfv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f6f7a0 0xc820f6f820 0xc820f6f900] } +&{glGetTexEnviv QOpenGLFunctions_1_4::glGetTexEnviv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f6faa0 0xc820f6fb40 0xc820f6fbc0] } +&{glGetTexGendv QOpenGLFunctions_1_4::glGetTexGendv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f6fd60 0xc820f6fe40 0xc820f6fec0] } +&{glGetTexGenfv QOpenGLFunctions_1_4::glGetTexGenfv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f5c060 0xc820f5c0e0 0xc820f5c1c0] } +&{glGetTexGeniv QOpenGLFunctions_1_4::glGetTexGeniv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f5c340 0xc820f5c420 0xc820f5c4c0] } +&{glGetTexImage QOpenGLFunctions_1_4::glGetTexImage commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f5c680 0xc820f5c720 0xc820f5c7a0 0xc820f5c820 0xc820f5c900] } +&{glGetTexLevelParameterfv QOpenGLFunctions_1_4::glGetTexLevelParameterfv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f5cb40 0xc820f5cbc0 0xc820f5cc40 0xc820f5cd20] } +&{glGetTexLevelParameteriv QOpenGLFunctions_1_4::glGetTexLevelParameteriv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f5cf60 0xc820f5d000 0xc820f5d0a0 0xc820f5d120] } +&{glGetTexParameterfv QOpenGLFunctions_1_4::glGetTexParameterfv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f5d380 0xc820f5d420 0xc820f5d4c0] } +&{glGetTexParameteriv QOpenGLFunctions_1_4::glGetTexParameteriv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f5d6c0 0xc820f5d7a0 0xc820f5d840] } +&{glHint QOpenGLFunctions_1_4::glHint commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f5da80 0xc820f5db20] } +&{glHistogram QOpenGLFunctions_1_4::glHistogram commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f5dd00 0xc820f5dd80 0xc820f5de40 0xc820f5dec0] } +&{glIndexMask QOpenGLFunctions_1_4::glIndexMask commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f4e0c0] } +&{glIndexPointer QOpenGLFunctions_1_4::glIndexPointer commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f4e2a0 0xc820f4e340 0xc820f4e3e0] } +&{glIndexd QOpenGLFunctions_1_4::glIndexd commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f4e620] } +&{glIndexdv QOpenGLFunctions_1_4::glIndexdv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f4e860] } +&{glIndexf QOpenGLFunctions_1_4::glIndexf commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f4eac0] } +&{glIndexfv QOpenGLFunctions_1_4::glIndexfv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f4ed20] } +&{glIndexi QOpenGLFunctions_1_4::glIndexi commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f4efa0] } +&{glIndexiv QOpenGLFunctions_1_4::glIndexiv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f4f1c0] } +&{glIndexs QOpenGLFunctions_1_4::glIndexs commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f4f420] } +&{glIndexsv QOpenGLFunctions_1_4::glIndexsv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f4f680] } +&{glIndexub QOpenGLFunctions_1_4::glIndexub commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f4f900] } +&{glIndexubv QOpenGLFunctions_1_4::glIndexubv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f4fb00] } +&{glInitNames QOpenGLFunctions_1_4::glInitNames commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [] } +&{glInterleavedArrays QOpenGLFunctions_1_4::glInterleavedArrays commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f4fe00 0xc820f4fe80 0xc820f4ff60] } +&{glIsEnabled QOpenGLFunctions_1_4::glIsEnabled commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false GLboolean [0xc820f400e0] } +&{glIsList QOpenGLFunctions_1_4::glIsList commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false GLboolean [0xc820f40360] } +&{glIsTexture QOpenGLFunctions_1_4::glIsTexture commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false GLboolean [0xc820f40500] } +&{glLightModelf QOpenGLFunctions_1_4::glLightModelf commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f406e0 0xc820f40760] } +&{glLightModelfv QOpenGLFunctions_1_4::glLightModelfv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f40960 0xc820f409e0] } +&{glLightModeli QOpenGLFunctions_1_4::glLightModeli commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f40be0 0xc820f40c60] } +&{glLightModeliv QOpenGLFunctions_1_4::glLightModeliv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f40e40 0xc820f40ee0] } +&{glLightf QOpenGLFunctions_1_4::glLightf commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f41100 0xc820f41180 0xc820f41240] } +&{glLightfv QOpenGLFunctions_1_4::glLightfv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f41460 0xc820f414e0 0xc820f41560] } +&{glLighti QOpenGLFunctions_1_4::glLighti commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f417a0 0xc820f41820 0xc820f418c0] } +&{glLightiv QOpenGLFunctions_1_4::glLightiv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f41b20 0xc820f41ba0 0xc820f41c40] } +&{glLineStipple QOpenGLFunctions_1_4::glLineStipple commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f41e00 0xc820f41ea0] } +&{glLineWidth QOpenGLFunctions_1_4::glLineWidth commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f2e0a0] } +&{glListBase QOpenGLFunctions_1_4::glListBase commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f2e2c0] } +&{glLoadIdentity QOpenGLFunctions_1_4::glLoadIdentity commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [] } +&{glLoadMatrixd QOpenGLFunctions_1_4::glLoadMatrixd commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f2e580] } +&{glLoadMatrixf QOpenGLFunctions_1_4::glLoadMatrixf commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f2e740] } +&{glLoadName QOpenGLFunctions_1_4::glLoadName commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f2e980] } +&{glLoadTransposeMatrixd QOpenGLFunctions_1_4::glLoadTransposeMatrixd commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f2eba0] } +&{glLoadTransposeMatrixf QOpenGLFunctions_1_4::glLoadTransposeMatrixf commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f2edc0] } +&{glLogicOp QOpenGLFunctions_1_4::glLogicOp commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f2f020] } +&{glMap1d QOpenGLFunctions_1_4::glMap1d commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f2f280 0xc820f2f300 0xc820f2f3a0 0xc820f2f460 0xc820f2f500 0xc820f2f580] } +&{glMap1f QOpenGLFunctions_1_4::glMap1f commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f2f7e0 0xc820f2f860 0xc820f2f920 0xc820f2f9a0 0xc820f2fa60 0xc820f2fb20] } +&{glMap2d QOpenGLFunctions_1_4::glMap2d commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f2fd20 0xc820f2fe00 0xc820f2fe80 0xc820f2ff00 0xc820f1e000 0xc820f1e080 0xc820f1e140 0xc820f1e1e0 0xc820f1e2a0 0xc820f1e320] } +&{glMap2f QOpenGLFunctions_1_4::glMap2f commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f1e560 0xc820f1e620 0xc820f1e6c0 0xc820f1e760 0xc820f1e800 0xc820f1e8e0 0xc820f1e980 0xc820f1ea00 0xc820f1eae0 0xc820f1eb80] } +&{glMapGrid1d QOpenGLFunctions_1_4::glMapGrid1d commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f1ed00 0xc820f1edc0 0xc820f1ee60] } +&{glMapGrid1f QOpenGLFunctions_1_4::glMapGrid1f commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f1f000 0xc820f1f0a0 0xc820f1f160] } +&{glMapGrid2d QOpenGLFunctions_1_4::glMapGrid2d commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f1f320 0xc820f1f3a0 0xc820f1f480 0xc820f1f520 0xc820f1f600 0xc820f1f680] } +&{glMapGrid2f QOpenGLFunctions_1_4::glMapGrid2f commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f1f860 0xc820f1f900 0xc820f1f980 0xc820f1fa60 0xc820f1fb20 0xc820f1fbc0] } +&{glMaterialf QOpenGLFunctions_1_4::glMaterialf commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f1fd80 0xc820f1fe20 0xc820f1fea0] } +&{glMaterialfv QOpenGLFunctions_1_4::glMaterialfv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f0a060 0xc820f0a120 0xc820f0a1c0] } +&{glMateriali QOpenGLFunctions_1_4::glMateriali commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f0a380 0xc820f0a400 0xc820f0a480] } +&{glMaterialiv QOpenGLFunctions_1_4::glMaterialiv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f0a660 0xc820f0a6e0 0xc820f0a7c0] } +&{glMatrixMode QOpenGLFunctions_1_4::glMatrixMode commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f0a980] } +&{glMinmax QOpenGLFunctions_1_4::glMinmax commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f0abc0 0xc820f0ac60 0xc820f0ad40] } +&{glMultMatrixd QOpenGLFunctions_1_4::glMultMatrixd commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f0aec0] } +&{glMultMatrixf QOpenGLFunctions_1_4::glMultMatrixf commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f0b0c0] } +&{glMultTransposeMatrixd QOpenGLFunctions_1_4::glMultTransposeMatrixd commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f0b300] } +&{glMultTransposeMatrixf QOpenGLFunctions_1_4::glMultTransposeMatrixf commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f0b540] } +&{glMultiDrawArrays QOpenGLFunctions_1_4::glMultiDrawArrays commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f0b760 0xc820f0b7e0 0xc820f0b8a0 0xc820f0b940] } +&{glMultiDrawElements QOpenGLFunctions_1_4::glMultiDrawElements commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820f0bb60 0xc820f0bbe0 0xc820f0bcc0 0xc820f0bd60 0xc820f0bea0] } +&{glMultiTexCoord1d QOpenGLFunctions_1_4::glMultiTexCoord1d commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820efc0e0 0xc820efc1a0] } +&{glMultiTexCoord1dv QOpenGLFunctions_1_4::glMultiTexCoord1dv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820efc3c0 0xc820efc480] } +&{glMultiTexCoord1f QOpenGLFunctions_1_4::glMultiTexCoord1f commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820efc660 0xc820efc700] } +&{glMultiTexCoord1fv QOpenGLFunctions_1_4::glMultiTexCoord1fv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820efc940 0xc820efc9e0] } +&{glMultiTexCoord1i QOpenGLFunctions_1_4::glMultiTexCoord1i commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820efcc00 0xc820efcce0] } +&{glMultiTexCoord1iv QOpenGLFunctions_1_4::glMultiTexCoord1iv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820efcf20 0xc820efcfc0] } +&{glMultiTexCoord1s QOpenGLFunctions_1_4::glMultiTexCoord1s commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820efd1c0 0xc820efd260] } +&{glMultiTexCoord1sv QOpenGLFunctions_1_4::glMultiTexCoord1sv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820efd4a0 0xc820efd560] } +&{glMultiTexCoord2d QOpenGLFunctions_1_4::glMultiTexCoord2d commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820efd780 0xc820efd800 0xc820efd8c0] } +&{glMultiTexCoord2dv QOpenGLFunctions_1_4::glMultiTexCoord2dv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820efdb00 0xc820efdb80] } +&{glMultiTexCoord2f QOpenGLFunctions_1_4::glMultiTexCoord2f commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820efdda0 0xc820efde60 0xc820efdf00] } +&{glMultiTexCoord2fv QOpenGLFunctions_1_4::glMultiTexCoord2fv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b56100 0xc826b561a0] } +&{glMultiTexCoord2i QOpenGLFunctions_1_4::glMultiTexCoord2i commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b563c0 0xc826b56460 0xc826b56520] } +&{glMultiTexCoord2iv QOpenGLFunctions_1_4::glMultiTexCoord2iv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b56760 0xc826b567e0] } +&{glMultiTexCoord2s QOpenGLFunctions_1_4::glMultiTexCoord2s commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b56a00 0xc826b56ae0 0xc826b56b60] } +&{glMultiTexCoord2sv QOpenGLFunctions_1_4::glMultiTexCoord2sv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b56d60 0xc826b56e20] } +&{glMultiTexCoord3d QOpenGLFunctions_1_4::glMultiTexCoord3d commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b57020 0xc826b570a0 0xc826b57160 0xc826b571e0] } +&{glMultiTexCoord3dv QOpenGLFunctions_1_4::glMultiTexCoord3dv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b57440 0xc826b574c0] } +&{glMultiTexCoord3f QOpenGLFunctions_1_4::glMultiTexCoord3f commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b57700 0xc826b577a0 0xc826b57820 0xc826b578e0] } +&{glMultiTexCoord3fv QOpenGLFunctions_1_4::glMultiTexCoord3fv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b57b00 0xc826b57ba0] } +&{glMultiTexCoord3i QOpenGLFunctions_1_4::glMultiTexCoord3i commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b57de0 0xc826b57e80 0xc826b57f20 0xc826b57fa0] } +&{glMultiTexCoord3iv QOpenGLFunctions_1_4::glMultiTexCoord3iv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b461e0 0xc826b46280] } +&{glMultiTexCoord3s QOpenGLFunctions_1_4::glMultiTexCoord3s commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b464a0 0xc826b46540 0xc826b465e0 0xc826b466a0] } +&{glMultiTexCoord3sv QOpenGLFunctions_1_4::glMultiTexCoord3sv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b468e0 0xc826b46960] } +&{glMultiTexCoord4d QOpenGLFunctions_1_4::glMultiTexCoord4d commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b46b80 0xc826b46c40 0xc826b46ce0 0xc826b46d60 0xc826b46e40] } +&{glMultiTexCoord4dv QOpenGLFunctions_1_4::glMultiTexCoord4dv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b47060 0xc826b470e0] } +&{glMultiTexCoord4f QOpenGLFunctions_1_4::glMultiTexCoord4f commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b47320 0xc826b473c0 0xc826b47440 0xc826b474e0 0xc826b475c0] } +&{glMultiTexCoord4fv QOpenGLFunctions_1_4::glMultiTexCoord4fv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b477e0 0xc826b478a0] } +&{glMultiTexCoord4i QOpenGLFunctions_1_4::glMultiTexCoord4i commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b47ae0 0xc826b47b60 0xc826b47be0 0xc826b47cc0 0xc826b47d80] } +&{glMultiTexCoord4iv QOpenGLFunctions_1_4::glMultiTexCoord4iv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b47fa0 0xc826b3a020] } +&{glMultiTexCoord4s QOpenGLFunctions_1_4::glMultiTexCoord4s commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b3a220 0xc826b3a300 0xc826b3a3a0 0xc826b3a460 0xc826b3a500] } +&{glMultiTexCoord4sv QOpenGLFunctions_1_4::glMultiTexCoord4sv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b3a720 0xc826b3a800] } +&{glNewList QOpenGLFunctions_1_4::glNewList commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b3aa00 0xc826b3aac0] } +&{glNormal3b QOpenGLFunctions_1_4::glNormal3b commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b3ad00 0xc826b3ada0 0xc826b3ae20] } +&{glNormal3bv QOpenGLFunctions_1_4::glNormal3bv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b3afe0] } +&{glNormal3d QOpenGLFunctions_1_4::glNormal3d commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b3b240 0xc826b3b2c0 0xc826b3b360] } +&{glNormal3dv QOpenGLFunctions_1_4::glNormal3dv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b3b520] } +&{glNormal3f QOpenGLFunctions_1_4::glNormal3f commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b3b720 0xc826b3b7e0 0xc826b3b880] } +&{glNormal3fv QOpenGLFunctions_1_4::glNormal3fv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b3ba40] } +&{glNormal3i QOpenGLFunctions_1_4::glNormal3i commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b3bc60 0xc826b3bd00 0xc826b3bda0] } +&{glNormal3iv QOpenGLFunctions_1_4::glNormal3iv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b3bf80] } +&{glNormal3s QOpenGLFunctions_1_4::glNormal3s commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b2a1e0 0xc826b2a260 0xc826b2a2e0] } +&{glNormal3sv QOpenGLFunctions_1_4::glNormal3sv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b2a4a0] } +&{glNormalPointer QOpenGLFunctions_1_4::glNormalPointer commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b2a6a0 0xc826b2a720 0xc826b2a7a0] } +&{glOrtho QOpenGLFunctions_1_4::glOrtho commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b2aa20 0xc826b2aac0 0xc826b2ab60 0xc826b2ac00 0xc826b2aca0 0xc826b2ad80] } +&{glPassThrough QOpenGLFunctions_1_4::glPassThrough commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b2af40] } +&{glPixelMapfv QOpenGLFunctions_1_4::glPixelMapfv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b2b100 0xc826b2b180 0xc826b2b260] } +&{glPixelMapuiv QOpenGLFunctions_1_4::glPixelMapuiv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b2b420 0xc826b2b4c0 0xc826b2b560] } +&{glPixelMapusv QOpenGLFunctions_1_4::glPixelMapusv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b2b700 0xc826b2b7c0 0xc826b2b840] } +&{glPixelStoref QOpenGLFunctions_1_4::glPixelStoref commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b2ba40 0xc826b2bae0] } +&{glPixelStorei QOpenGLFunctions_1_4::glPixelStorei commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b2bca0 0xc826b2bd20] } +&{glPixelTransferf QOpenGLFunctions_1_4::glPixelTransferf commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b2bf00 0xc826b2bfc0] } +&{glPixelTransferi QOpenGLFunctions_1_4::glPixelTransferi commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b0a1c0 0xc826b0a240] } +&{glPixelZoom QOpenGLFunctions_1_4::glPixelZoom commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b0a3e0 0xc826b0a460] } +&{glPointParameterf QOpenGLFunctions_1_4::glPointParameterf commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b0a6c0 0xc826b0a760] } +&{glPointParameterfv QOpenGLFunctions_1_4::glPointParameterfv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b0a980 0xc826b0aa40] } +&{glPointParameteri QOpenGLFunctions_1_4::glPointParameteri commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b0ac60 0xc826b0ace0] } +&{glPointParameteriv QOpenGLFunctions_1_4::glPointParameteriv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b0af20 0xc826b0afe0] } +&{glPointSize QOpenGLFunctions_1_4::glPointSize commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b0b1c0] } +&{glPolygonMode QOpenGLFunctions_1_4::glPolygonMode commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b0b360 0xc826b0b420] } +&{glPolygonOffset QOpenGLFunctions_1_4::glPolygonOffset commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b0b5e0 0xc826b0b680] } +&{glPolygonStipple QOpenGLFunctions_1_4::glPolygonStipple commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b0b840] } +&{glPopAttrib QOpenGLFunctions_1_4::glPopAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [] } +&{glPopClientAttrib QOpenGLFunctions_1_4::glPopClientAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [] } +&{glPopMatrix QOpenGLFunctions_1_4::glPopMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [] } +&{glPopName QOpenGLFunctions_1_4::glPopName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [] } +&{glPrioritizeTextures QOpenGLFunctions_1_4::glPrioritizeTextures commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826b0be40 0xc826b0bec0 0xc826b0bf80] } +&{glPushAttrib QOpenGLFunctions_1_4::glPushAttrib commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826afa140] } +&{glPushClientAttrib QOpenGLFunctions_1_4::glPushClientAttrib commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826afa360] } +&{glPushMatrix QOpenGLFunctions_1_4::glPushMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [] } +&{glPushName QOpenGLFunctions_1_4::glPushName commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826afa6c0] } +&{glRasterPos2d QOpenGLFunctions_1_4::glRasterPos2d commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826afa880 0xc826afa920] } +&{glRasterPos2dv QOpenGLFunctions_1_4::glRasterPos2dv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826afaac0] } +&{glRasterPos2f QOpenGLFunctions_1_4::glRasterPos2f commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826afac60 0xc826afad40] } +&{glRasterPos2fv QOpenGLFunctions_1_4::glRasterPos2fv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826afaf00] } +&{glRasterPos2i QOpenGLFunctions_1_4::glRasterPos2i commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826afb0a0 0xc826afb140] } +&{glRasterPos2iv QOpenGLFunctions_1_4::glRasterPos2iv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826afb340] } +&{glRasterPos2s QOpenGLFunctions_1_4::glRasterPos2s commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826afb4a0 0xc826afb560] } +&{glRasterPos2sv QOpenGLFunctions_1_4::glRasterPos2sv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826afb6e0] } +&{glRasterPos3d QOpenGLFunctions_1_4::glRasterPos3d commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826afb880 0xc826afb920 0xc826afb9e0] } +&{glRasterPos3dv QOpenGLFunctions_1_4::glRasterPos3dv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826afbb60] } +&{glRasterPos3f QOpenGLFunctions_1_4::glRasterPos3f commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826afbd40 0xc826afbdc0 0xc826afbe80] } +&{glRasterPos3fv QOpenGLFunctions_1_4::glRasterPos3fv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826aea000] } +&{glRasterPos3i QOpenGLFunctions_1_4::glRasterPos3i commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826aea1c0 0xc826aea240 0xc826aea2c0] } +&{glRasterPos3iv QOpenGLFunctions_1_4::glRasterPos3iv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826aea4a0] } +&{glRasterPos3s QOpenGLFunctions_1_4::glRasterPos3s commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826aea640 0xc826aea720 0xc826aea7c0] } +&{glRasterPos3sv QOpenGLFunctions_1_4::glRasterPos3sv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826aea960] } +&{glRasterPos4d QOpenGLFunctions_1_4::glRasterPos4d commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826aeab20 0xc826aeabc0 0xc826aeac40 0xc826aead00] } +&{glRasterPos4dv QOpenGLFunctions_1_4::glRasterPos4dv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826aeaec0] } +&{glRasterPos4f QOpenGLFunctions_1_4::glRasterPos4f commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826aeb060 0xc826aeb120 0xc826aeb1a0 0xc826aeb240] } +&{glRasterPos4fv QOpenGLFunctions_1_4::glRasterPos4fv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826aeb420] } +&{glRasterPos4i QOpenGLFunctions_1_4::glRasterPos4i commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826aeb5c0 0xc826aeb660 0xc826aeb740 0xc826aeb7e0] } +&{glRasterPos4iv QOpenGLFunctions_1_4::glRasterPos4iv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826aeb980] } +&{glRasterPos4s QOpenGLFunctions_1_4::glRasterPos4s commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826aebb40 0xc826aebc00 0xc826aebc80 0xc826aebd00] } +&{glRasterPos4sv QOpenGLFunctions_1_4::glRasterPos4sv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826aebec0] } +&{glReadBuffer QOpenGLFunctions_1_4::glReadBuffer commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826ada0a0] } +&{glReadPixels QOpenGLFunctions_1_4::glReadPixels commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826ada2a0 0xc826ada320 0xc826ada3c0 0xc826ada480 0xc826ada560 0xc826ada5e0 0xc826ada660] } +&{glRectd QOpenGLFunctions_1_4::glRectd commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826ada8c0 0xc826ada960 0xc826adaa00 0xc826adaaa0] } +&{glRectdv QOpenGLFunctions_1_4::glRectdv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826adacc0 0xc826adad60] } +&{glRectf QOpenGLFunctions_1_4::glRectf commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826adafa0 0xc826adb040 0xc826adb0c0 0xc826adb180] } +&{glRectfv QOpenGLFunctions_1_4::glRectfv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826adb3c0 0xc826adb460] } +&{glRecti QOpenGLFunctions_1_4::glRecti commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826adb6a0 0xc826adb740 0xc826adb7c0 0xc826adb880] } +&{glRectiv QOpenGLFunctions_1_4::glRectiv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826adbac0 0xc826adbb60] } +&{glRects QOpenGLFunctions_1_4::glRects commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826adbda0 0xc826adbe40 0xc826adbec0 0xc826adbf60] } +&{glRectsv QOpenGLFunctions_1_4::glRectsv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826ace1a0 0xc826ace220] } +&{glRenderMode QOpenGLFunctions_1_4::glRenderMode commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false GLint [0xc826ace440] } +&{glResetHistogram QOpenGLFunctions_1_4::glResetHistogram commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826ace5e0] } +&{glResetMinmax QOpenGLFunctions_1_4::glResetMinmax commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826ace7a0] } +&{glRotated QOpenGLFunctions_1_4::glRotated commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826ace9e0 0xc826acea60 0xc826aceb00 0xc826acebc0] } +&{glRotatef QOpenGLFunctions_1_4::glRotatef commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826acede0 0xc826aceec0 0xc826acef60 0xc826acefe0] } +&{glSampleCoverage QOpenGLFunctions_1_4::glSampleCoverage commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826acf1c0 0xc826acf260] } +&{glScaled QOpenGLFunctions_1_4::glScaled commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826acf4c0 0xc826acf540 0xc826acf5c0] } +&{glScalef QOpenGLFunctions_1_4::glScalef commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826acf820 0xc826acf8c0 0xc826acf980] } +&{glScissor QOpenGLFunctions_1_4::glScissor commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826acfba0 0xc826acfc80 0xc826acfd20 0xc826acfda0] } +&{glSecondaryColor3b QOpenGLFunctions_1_4::glSecondaryColor3b commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826abc000 0xc826abc080 0xc826abc140] } +&{glSecondaryColor3bv QOpenGLFunctions_1_4::glSecondaryColor3bv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826abc360] } +&{glSecondaryColor3d QOpenGLFunctions_1_4::glSecondaryColor3d commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826abc580 0xc826abc600 0xc826abc6c0] } +&{glSecondaryColor3dv QOpenGLFunctions_1_4::glSecondaryColor3dv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826abc8e0] } +&{glSecondaryColor3f QOpenGLFunctions_1_4::glSecondaryColor3f commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826abcb20 0xc826abcbc0 0xc826abcc60] } +&{glSecondaryColor3fv QOpenGLFunctions_1_4::glSecondaryColor3fv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826abce60] } +&{glSecondaryColor3i QOpenGLFunctions_1_4::glSecondaryColor3i commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826abd0a0 0xc826abd160 0xc826abd1e0] } +&{glSecondaryColor3iv QOpenGLFunctions_1_4::glSecondaryColor3iv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826abd420] } +&{glSecondaryColor3s QOpenGLFunctions_1_4::glSecondaryColor3s commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826abd660 0xc826abd700 0xc826abd7a0] } +&{glSecondaryColor3sv QOpenGLFunctions_1_4::glSecondaryColor3sv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826abd9a0] } +&{glSecondaryColor3ub QOpenGLFunctions_1_4::glSecondaryColor3ub commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826abdc00 0xc826abdc80 0xc826abdd40] } +&{glSecondaryColor3ubv QOpenGLFunctions_1_4::glSecondaryColor3ubv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826abdf80] } +&{glSecondaryColor3ui QOpenGLFunctions_1_4::glSecondaryColor3ui commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826aaa1e0 0xc826aaa260 0xc826aaa340] } +&{glSecondaryColor3uiv QOpenGLFunctions_1_4::glSecondaryColor3uiv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826aaa540] } +&{glSecondaryColor3us QOpenGLFunctions_1_4::glSecondaryColor3us commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826aaa7c0 0xc826aaa840 0xc826aaa900] } +&{glSecondaryColor3usv QOpenGLFunctions_1_4::glSecondaryColor3usv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826aaab20] } +&{glSecondaryColorPointer QOpenGLFunctions_1_4::glSecondaryColorPointer commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826aaad60 0xc826aaade0 0xc826aaae60 0xc826aaaf20] } +&{glSelectBuffer QOpenGLFunctions_1_4::glSelectBuffer commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826aab0e0 0xc826aab180] } +&{glSeparableFilter2D QOpenGLFunctions_1_4::glSeparableFilter2D commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826aab380 0xc826aab440 0xc826aab4c0 0xc826aab580 0xc826aab620 0xc826aab6e0 0xc826aab760 0xc826aab7e0] } +&{glShadeModel QOpenGLFunctions_1_4::glShadeModel commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826aab9e0] } +&{glStencilFunc QOpenGLFunctions_1_4::glStencilFunc commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826aabb80 0xc826aabc00 0xc826aabcc0] } +&{glStencilMask QOpenGLFunctions_1_4::glStencilMask commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826aabea0] } +&{glStencilOp QOpenGLFunctions_1_4::glStencilOp commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a9c060 0xc826a9c100 0xc826a9c180] } +&{glTexCoord1d QOpenGLFunctions_1_4::glTexCoord1d commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a9c3a0] } +&{glTexCoord1dv QOpenGLFunctions_1_4::glTexCoord1dv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a9c540] } +&{glTexCoord1f QOpenGLFunctions_1_4::glTexCoord1f commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a9c720] } +&{glTexCoord1fv QOpenGLFunctions_1_4::glTexCoord1fv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a9c920] } +&{glTexCoord1i QOpenGLFunctions_1_4::glTexCoord1i commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a9cae0] } +&{glTexCoord1iv QOpenGLFunctions_1_4::glTexCoord1iv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a9cca0] } +&{glTexCoord1s QOpenGLFunctions_1_4::glTexCoord1s commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a9cec0] } +&{glTexCoord1sv QOpenGLFunctions_1_4::glTexCoord1sv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a9d060] } +&{glTexCoord2d QOpenGLFunctions_1_4::glTexCoord2d commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a9d220 0xc826a9d300] } +&{glTexCoord2dv QOpenGLFunctions_1_4::glTexCoord2dv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a9d4c0] } +&{glTexCoord2f QOpenGLFunctions_1_4::glTexCoord2f commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a9d680 0xc826a9d720] } +&{glTexCoord2fv QOpenGLFunctions_1_4::glTexCoord2fv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a9d8c0] } +&{glTexCoord2i QOpenGLFunctions_1_4::glTexCoord2i commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a9daa0 0xc826a9db40] } +&{glTexCoord2iv QOpenGLFunctions_1_4::glTexCoord2iv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a9dce0] } +&{glTexCoord2s QOpenGLFunctions_1_4::glTexCoord2s commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a9dee0 0xc826a9df60] } +&{glTexCoord2sv QOpenGLFunctions_1_4::glTexCoord2sv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a8e120] } +&{glTexCoord3d QOpenGLFunctions_1_4::glTexCoord3d commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a8e2c0 0xc826a8e340 0xc826a8e420] } +&{glTexCoord3dv QOpenGLFunctions_1_4::glTexCoord3dv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a8e5a0] } +&{glTexCoord3f QOpenGLFunctions_1_4::glTexCoord3f commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a8e780 0xc826a8e820 0xc826a8e8c0] } +&{glTexCoord3fv QOpenGLFunctions_1_4::glTexCoord3fv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a8ea60] } +&{glTexCoord3i QOpenGLFunctions_1_4::glTexCoord3i commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a8ec40 0xc826a8ece0 0xc826a8ed60] } +&{glTexCoord3iv QOpenGLFunctions_1_4::glTexCoord3iv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a8ef00] } +&{glTexCoord3s QOpenGLFunctions_1_4::glTexCoord3s commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a8f100 0xc826a8f180 0xc826a8f240] } +&{glTexCoord3sv QOpenGLFunctions_1_4::glTexCoord3sv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a8f3e0] } +&{glTexCoord4d QOpenGLFunctions_1_4::glTexCoord4d commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a8f5a0 0xc826a8f620 0xc826a8f6e0 0xc826a8f760] } +&{glTexCoord4dv QOpenGLFunctions_1_4::glTexCoord4dv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a8f960] } +&{glTexCoord4f QOpenGLFunctions_1_4::glTexCoord4f commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a8fb00 0xc826a8fb80 0xc826a8fc40 0xc826a8fcc0] } +&{glTexCoord4fv QOpenGLFunctions_1_4::glTexCoord4fv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a8fe60] } +&{glTexCoord4i QOpenGLFunctions_1_4::glTexCoord4i commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a78020 0xc826a780e0 0xc826a78180 0xc826a78200] } +&{glTexCoord4iv QOpenGLFunctions_1_4::glTexCoord4iv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a783c0] } +&{glTexCoord4s QOpenGLFunctions_1_4::glTexCoord4s commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a78560 0xc826a78620 0xc826a786c0 0xc826a78740] } +&{glTexCoord4sv QOpenGLFunctions_1_4::glTexCoord4sv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a788e0] } +&{glTexCoordPointer QOpenGLFunctions_1_4::glTexCoordPointer commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a78ac0 0xc826a78b80 0xc826a78c00 0xc826a78c80] } +&{glTexEnvf QOpenGLFunctions_1_4::glTexEnvf commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a78ea0 0xc826a78f60 0xc826a79000] } +&{glTexEnvfv QOpenGLFunctions_1_4::glTexEnvfv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a79200 0xc826a792e0 0xc826a79360] } +&{glTexEnvi QOpenGLFunctions_1_4::glTexEnvi commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a795a0 0xc826a79640 0xc826a796c0] } +&{glTexEnviv QOpenGLFunctions_1_4::glTexEnviv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a79900 0xc826a799a0 0xc826a79a20] } +&{glTexGend QOpenGLFunctions_1_4::glTexGend commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a79c60 0xc826a79d20 0xc826a79da0] } +&{glTexGendv QOpenGLFunctions_1_4::glTexGendv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc826a79fe0 0xc820d9e080 0xc820d9e120] } +&{glTexGenf QOpenGLFunctions_1_4::glTexGenf commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820d9e360 0xc820d9e3e0 0xc820d9e480] } +&{glTexGenfv QOpenGLFunctions_1_4::glTexGenfv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820d9e6e0 0xc820d9e780 0xc820d9e840] } +&{glTexGeni QOpenGLFunctions_1_4::glTexGeni commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820d9ea40 0xc820d9eae0 0xc820d9eb80] } +&{glTexGeniv QOpenGLFunctions_1_4::glTexGeniv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820d9edc0 0xc820d9ee80 0xc820d9ef20] } +&{glTexImage1D QOpenGLFunctions_1_4::glTexImage1D commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820d9f0c0 0xc820d9f160 0xc820d9f200 0xc820d9f2a0 0xc820d9f380 0xc820d9f420 0xc820d9f4c0 0xc820d9f560] } +&{glTexImage2D QOpenGLFunctions_1_4::glTexImage2D commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820d9f700 0xc820d9f7a0 0xc820d9f840 0xc820d9f900 0xc820d9f9c0 0xc820d9fa60 0xc820d9fae0 0xc820d9fb80 0xc820d9fc60] } +&{glTexImage3D QOpenGLFunctions_1_4::glTexImage3D commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820d9fe20 0xc820d9fee0 0xc820d9ff80 0xc820cbc000 0xc820cbc0a0 0xc820cbc140 0xc820cbc200 0xc820cbc280 0xc820cbc340 0xc820cbc400] } +&{glTexParameterf QOpenGLFunctions_1_4::glTexParameterf commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820cbc5c0 0xc820cbc640 0xc820cbc6e0] } +&{glTexParameterfv QOpenGLFunctions_1_4::glTexParameterfv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820cbc8a0 0xc820cbc960 0xc820cbc9e0] } +&{glTexParameteri QOpenGLFunctions_1_4::glTexParameteri commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820cbcbc0 0xc820cbcc40 0xc820cbcce0] } +&{glTexParameteriv QOpenGLFunctions_1_4::glTexParameteriv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820cbcec0 0xc820cbcf60 0xc820cbcfe0] } +&{glTexSubImage1D QOpenGLFunctions_1_4::glTexSubImage1D commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820cbd1a0 0xc820cbd220 0xc820cbd300 0xc820cbd380 0xc820cbd440 0xc820cbd500 0xc820cbd5a0] } +&{glTexSubImage2D QOpenGLFunctions_1_4::glTexSubImage2D commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820cbd780 0xc820cbd800 0xc820cbd880 0xc820cbd920 0xc820cbda00 0xc820cbda80 0xc820cbdb60 0xc820cbdbe0 0xc820cbdca0] } +&{glTexSubImage3D QOpenGLFunctions_1_4::glTexSubImage3D commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820cbde80 0xc820cbdf00 0xc820cbdfe0 0xc820e92080 0xc820e92160 0xc820e921e0 0xc820e92260 0xc820e92340 0xc820e923e0 0xc820e92480 0xc820e92540] } +&{glTranslated QOpenGLFunctions_1_4::glTranslated commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820e926c0 0xc820e92760 0xc820e927e0] } +&{glTranslatef QOpenGLFunctions_1_4::glTranslatef commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820e929e0 0xc820e92aa0 0xc820e92b20] } +&{glVertex2d QOpenGLFunctions_1_4::glVertex2d commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820e92d60 0xc820e92e00] } +&{glVertex2dv QOpenGLFunctions_1_4::glVertex2dv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820e92f80] } +&{glVertex2f QOpenGLFunctions_1_4::glVertex2f commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820e931c0 0xc820e932a0] } +&{glVertex2fv QOpenGLFunctions_1_4::glVertex2fv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820e93460] } +&{glVertex2i QOpenGLFunctions_1_4::glVertex2i commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820e936a0 0xc820e93740] } +&{glVertex2iv QOpenGLFunctions_1_4::glVertex2iv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820e93920] } +&{glVertex2s QOpenGLFunctions_1_4::glVertex2s commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820e93b40 0xc820e93bc0] } +&{glVertex2sv QOpenGLFunctions_1_4::glVertex2sv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820e93da0] } +&{glVertex3d QOpenGLFunctions_1_4::glVertex3d commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820e93fe0 0xc820eae080 0xc820eae100] } +&{glVertex3dv QOpenGLFunctions_1_4::glVertex3dv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820eae2e0] } +&{glVertex3f QOpenGLFunctions_1_4::glVertex3f commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820eae500 0xc820eae5e0 0xc820eae680] } +&{glVertex3fv QOpenGLFunctions_1_4::glVertex3fv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820eae820] } +&{glVertex3i QOpenGLFunctions_1_4::glVertex3i commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820eaea80 0xc820eaeb00 0xc820eaebe0] } +&{glVertex3iv QOpenGLFunctions_1_4::glVertex3iv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820eaeda0] } +&{glVertex3s QOpenGLFunctions_1_4::glVertex3s commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820eaefe0 0xc820eaf0a0 0xc820eaf160] } +&{glVertex3sv QOpenGLFunctions_1_4::glVertex3sv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820eaf320] } +&{glVertex4d QOpenGLFunctions_1_4::glVertex4d commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820eaf520 0xc820eaf600 0xc820eaf6a0 0xc820eaf720] } +&{glVertex4dv QOpenGLFunctions_1_4::glVertex4dv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820eaf920] } +&{glVertex4f QOpenGLFunctions_1_4::glVertex4f commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820eafb60 0xc820eafc00 0xc820eafc80 0xc820eafd20] } +&{glVertex4fv QOpenGLFunctions_1_4::glVertex4fv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820eaff00] } +&{glVertex4i QOpenGLFunctions_1_4::glVertex4i commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ebe160 0xc820ebe1e0 0xc820ebe260 0xc820ebe340] } +&{glVertex4iv QOpenGLFunctions_1_4::glVertex4iv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ebe500] } +&{glVertex4s QOpenGLFunctions_1_4::glVertex4s commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ebe740 0xc820ebe7e0 0xc820ebe8a0 0xc820ebe920] } +&{glVertex4sv QOpenGLFunctions_1_4::glVertex4sv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ebeae0] } +&{glVertexPointer QOpenGLFunctions_1_4::glVertexPointer commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ebec80 0xc820ebed60 0xc820ebede0 0xc820ebeea0] } +&{glViewport QOpenGLFunctions_1_4::glViewport commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ebf0c0 0xc820ebf140 0xc820ebf1e0 0xc820ebf2a0] } +&{glWindowPos2d QOpenGLFunctions_1_4::glWindowPos2d commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ebf460 0xc820ebf4e0] } +&{glWindowPos2dv QOpenGLFunctions_1_4::glWindowPos2dv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ebf6a0] } +&{glWindowPos2f QOpenGLFunctions_1_4::glWindowPos2f commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ebf880 0xc820ebf900] } +&{glWindowPos2fv QOpenGLFunctions_1_4::glWindowPos2fv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ebfac0] } +&{glWindowPos2i QOpenGLFunctions_1_4::glWindowPos2i commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ebfc80 0xc820ebfd40] } +&{glWindowPos2iv QOpenGLFunctions_1_4::glWindowPos2iv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ebff00] } +&{glWindowPos2s QOpenGLFunctions_1_4::glWindowPos2s commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ed2080 0xc820ed2120] } +&{glWindowPos2sv QOpenGLFunctions_1_4::glWindowPos2sv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ed2320] } +&{glWindowPos3d QOpenGLFunctions_1_4::glWindowPos3d commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ed24c0 0xc820ed2560 0xc820ed25e0] } +&{glWindowPos3dv QOpenGLFunctions_1_4::glWindowPos3dv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ed27e0] } +&{glWindowPos3f QOpenGLFunctions_1_4::glWindowPos3f commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ed2960 0xc820ed2a20 0xc820ed2ac0] } +&{glWindowPos3fv QOpenGLFunctions_1_4::glWindowPos3fv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ed2c80] } +&{glWindowPos3i QOpenGLFunctions_1_4::glWindowPos3i commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ed2e40 0xc820ed2f00 0xc820ed2fa0] } +&{glWindowPos3iv QOpenGLFunctions_1_4::glWindowPos3iv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ed3160] } +&{glWindowPos3s QOpenGLFunctions_1_4::glWindowPos3s commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ed3300 0xc820ed33a0 0xc820ed3480] } +&{glWindowPos3sv QOpenGLFunctions_1_4::glWindowPos3sv commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_4.h non plain false false void [0xc820ed3620] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions_1_5.txt b/internal/binding/dump/QtGui/QOpenGLFunctions_1_5.txt new file mode 100755 index 00000000..21af57db --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions_1_5.txt @@ -0,0 +1,489 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions_1_5 QOpenGLFunctions_1_5::QOpenGLFunctions_1_5 commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.cpp non constructor false false [] } +&{initializeOpenGLFunctions QOpenGLFunctions_1_5::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.cpp impure plain false false bool [] } +&{~QOpenGLFunctions_1_5 QOpenGLFunctions_1_5::~QOpenGLFunctions_1_5 commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.cpp non destructor false false [] } +&{glAccum QOpenGLFunctions_1_5::glAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ee0200 0xc820ee02a0] } +&{glActiveTexture QOpenGLFunctions_1_5::glActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ee0480] } +&{glAlphaFunc QOpenGLFunctions_1_5::glAlphaFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ee0620 0xc820ee06a0] } +&{glAreTexturesResident QOpenGLFunctions_1_5::glAreTexturesResident commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false GLboolean [0xc820ee0900 0xc820ee09e0 0xc820ee0a80] } +&{glArrayElement QOpenGLFunctions_1_5::glArrayElement commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ee0c60] } +&{glBegin QOpenGLFunctions_1_5::glBegin commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ee0ec0] } +&{glBeginQuery QOpenGLFunctions_1_5::glBeginQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ee1040 0xc820ee1100] } +&{glBindBuffer QOpenGLFunctions_1_5::glBindBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ee12c0 0xc820ee1360] } +&{glBindTexture QOpenGLFunctions_1_5::glBindTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ee1520 0xc820ee15a0] } +&{glBitmap QOpenGLFunctions_1_5::glBitmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ee17e0 0xc820ee18c0 0xc820ee1960 0xc820ee1a00 0xc820ee1aa0 0xc820ee1b80 0xc820ee1c20] } +&{glBlendColor QOpenGLFunctions_1_5::glBlendColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ee1de0 0xc820ee1e80 0xc820ee1f20 0xc820ee1fa0] } +&{glBlendEquation QOpenGLFunctions_1_5::glBlendEquation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820dc61c0] } +&{glBlendFunc QOpenGLFunctions_1_5::glBlendFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820dc6380 0xc820dc6440] } +&{glBlendFuncSeparate QOpenGLFunctions_1_5::glBlendFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820dc6680 0xc820dc6720 0xc820dc67a0 0xc820dc6840] } +&{glBufferData QOpenGLFunctions_1_5::glBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820dc6a20 0xc820dc6aa0 0xc820dc6b80 0xc820dc6c20] } +&{glBufferSubData QOpenGLFunctions_1_5::glBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820dc6dc0 0xc820dc6e60 0xc820dc6f40 0xc820dc6fe0] } +&{glCallList QOpenGLFunctions_1_5::glCallList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820dc7240] } +&{glCallLists QOpenGLFunctions_1_5::glCallLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820dc73e0 0xc820dc74c0 0xc820dc7560] } +&{glClear QOpenGLFunctions_1_5::glClear commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820dc77a0] } +&{glClearAccum QOpenGLFunctions_1_5::glClearAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820dc7960 0xc820dc7a00 0xc820dc7a80 0xc820dc7b60] } +&{glClearColor QOpenGLFunctions_1_5::glClearColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820dc7d00 0xc820dc7da0 0xc820dc7e40 0xc820dc7ee0] } +&{glClearDepth QOpenGLFunctions_1_5::glClearDepth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d92100] } +&{glClearIndex QOpenGLFunctions_1_5::glClearIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d92320] } +&{glClearStencil QOpenGLFunctions_1_5::glClearStencil commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d924e0] } +&{glClientActiveTexture QOpenGLFunctions_1_5::glClientActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d92720] } +&{glClipPlane QOpenGLFunctions_1_5::glClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d928c0 0xc820d92940] } +&{glColor3b QOpenGLFunctions_1_5::glColor3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d92ba0 0xc820d92c20 0xc820d92d00] } +&{glColor3bv QOpenGLFunctions_1_5::glColor3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d92f80] } +&{glColor3d QOpenGLFunctions_1_5::glColor3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d931a0 0xc820d93240 0xc820d932c0] } +&{glColor3dv QOpenGLFunctions_1_5::glColor3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d935e0] } +&{glColor3f QOpenGLFunctions_1_5::glColor3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d938a0 0xc820d93960 0xc820d93a20] } +&{glColor3fv QOpenGLFunctions_1_5::glColor3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d93c80] } +&{glColor3i QOpenGLFunctions_1_5::glColor3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d93ee0 0xc820d93fa0 0xc820d82080] } +&{glColor3iv QOpenGLFunctions_1_5::glColor3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d823c0] } +&{glColor3s QOpenGLFunctions_1_5::glColor3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d82740 0xc820d82880 0xc820d82920] } +&{glColor3sv QOpenGLFunctions_1_5::glColor3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d82c60] } +&{glColor3ub QOpenGLFunctions_1_5::glColor3ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d82fa0 0xc820d830a0 0xc820d83220] } +&{glColor3ubv QOpenGLFunctions_1_5::glColor3ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d834c0] } +&{glColor3ui QOpenGLFunctions_1_5::glColor3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d837a0 0xc820d838c0 0xc820d839c0] } +&{glColor3uiv QOpenGLFunctions_1_5::glColor3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d83b80] } +&{glColor3us QOpenGLFunctions_1_5::glColor3us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d83e80 0xc820d83f80 0xc820d62060] } +&{glColor3usv QOpenGLFunctions_1_5::glColor3usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d62340] } +&{glColor4b QOpenGLFunctions_1_5::glColor4b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d62640 0xc820d62760 0xc820d62820 0xc820d62960] } +&{glColor4bv QOpenGLFunctions_1_5::glColor4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d62d20] } +&{glColor4d QOpenGLFunctions_1_5::glColor4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d630c0 0xc820d63140 0xc820d63220 0xc820d63380] } +&{glColor4dv QOpenGLFunctions_1_5::glColor4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d636a0] } +&{glColor4f QOpenGLFunctions_1_5::glColor4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d63a80 0xc820d63b80 0xc820d63ca0 0xc820d63e00] } +&{glColor4fv QOpenGLFunctions_1_5::glColor4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d50260] } +&{glColor4i QOpenGLFunctions_1_5::glColor4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d50680 0xc820d50820 0xc820d509a0 0xc820d50b20] } +&{glColor4iv QOpenGLFunctions_1_5::glColor4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d50fe0] } +&{glColor4s QOpenGLFunctions_1_5::glColor4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d51440 0xc820d51560 0xc820d51620 0xc820d51700] } +&{glColor4sv QOpenGLFunctions_1_5::glColor4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d51b60] } +&{glColor4ub QOpenGLFunctions_1_5::glColor4ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d51f00 0xc820d36060 0xc820d361a0 0xc820d36360] } +&{glColor4ubv QOpenGLFunctions_1_5::glColor4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d36720] } +&{glColor4ui QOpenGLFunctions_1_5::glColor4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d36aa0 0xc820d36b60 0xc820d36d00 0xc820d36e00] } +&{glColor4uiv QOpenGLFunctions_1_5::glColor4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d37120] } +&{glColor4us QOpenGLFunctions_1_5::glColor4us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d37580 0xc820d37700 0xc820d37780 0xc820d37800] } +&{glColor4usv QOpenGLFunctions_1_5::glColor4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d37b20] } +&{glColorMask QOpenGLFunctions_1_5::glColorMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d37f00 0xc820d37fe0 0xc820d0a080 0xc820d0a180] } +&{glColorMaterial QOpenGLFunctions_1_5::glColorMaterial commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d0a480 0xc820d0a580] } +&{glColorPointer QOpenGLFunctions_1_5::glColorPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d0a860 0xc820d0a9e0 0xc820d0ab20 0xc820d0abe0] } +&{glColorSubTable QOpenGLFunctions_1_5::glColorSubTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d0aec0 0xc820d0af40 0xc820d0b000 0xc820d0b0c0 0xc820d0b240 0xc820d0b340] } +&{glColorTable QOpenGLFunctions_1_5::glColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d0b600 0xc820d0b6c0 0xc820d0b840 0xc820d0b900 0xc820d0ba60 0xc820d0bb00] } +&{glColorTableParameterfv QOpenGLFunctions_1_5::glColorTableParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820d0be60 0xc820d0bf60 0xc820cf4020] } +&{glColorTableParameteriv QOpenGLFunctions_1_5::glColorTableParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820cf4320 0xc820cf4440 0xc820cf4580] } +&{glCompressedTexImage1D QOpenGLFunctions_1_5::glCompressedTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820cf48c0 0xc820cf4980 0xc820cf4a40 0xc820cf4b40 0xc820cf4be0 0xc820cf4c80 0xc820cf4dc0] } +&{glCompressedTexImage2D QOpenGLFunctions_1_5::glCompressedTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820cf5180 0xc820cf5240 0xc820cf52e0 0xc820cf53e0 0xc820cf5540 0xc820cf5620 0xc820cf5700 0xc820cf57e0] } +&{glCompressedTexImage3D QOpenGLFunctions_1_5::glCompressedTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820cf5be0 0xc820cf5d60 0xc820cf5de0 0xc820cf5f00 0xc820cd4020 0xc820cd4120 0xc820cd41e0 0xc820cd4260 0xc820cd4340] } +&{glCompressedTexSubImage1D QOpenGLFunctions_1_5::glCompressedTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820cd45a0 0xc820cd4660 0xc820cd47c0 0xc820cd48c0 0xc820cd49c0 0xc820cd4b20 0xc820cd4c00] } +&{glCompressedTexSubImage2D QOpenGLFunctions_1_5::glCompressedTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820cd4fc0 0xc820cd5060 0xc820cd5160 0xc820cd52a0 0xc820cd5440 0xc820cd54e0 0xc820cd5640 0xc820cd5720 0xc820cd5900] } +&{glCompressedTexSubImage3D QOpenGLFunctions_1_5::glCompressedTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820cd5d20 0xc820cd5de0 0xc820cd5f40 0xc820de2040 0xc820de2120 0xc820de21c0 0xc820de2240 0xc820de22c0 0xc820de23c0 0xc820de2460 0xc820de24e0] } +&{glConvolutionFilter1D QOpenGLFunctions_1_5::glConvolutionFilter1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820de2740 0xc820de27e0 0xc820de2880 0xc820de2900 0xc820de29c0 0xc820de2a80] } +&{glConvolutionFilter2D QOpenGLFunctions_1_5::glConvolutionFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820de2ca0 0xc820de2d80 0xc820de2e00 0xc820de2e80 0xc820de2f40 0xc820de2fe0 0xc820de3060] } +&{glConvolutionParameterf QOpenGLFunctions_1_5::glConvolutionParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820de32a0 0xc820de3360 0xc820de33e0] } +&{glConvolutionParameterfv QOpenGLFunctions_1_5::glConvolutionParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820de35c0 0xc820de3640 0xc820de3700] } +&{glConvolutionParameteri QOpenGLFunctions_1_5::glConvolutionParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820de3900 0xc820de3980 0xc820de3a20] } +&{glConvolutionParameteriv QOpenGLFunctions_1_5::glConvolutionParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820de3c40 0xc820de3ce0 0xc820de3d80] } +&{glCopyColorSubTable QOpenGLFunctions_1_5::glCopyColorSubTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820de3fe0 0xc820ca0080 0xc820ca01e0 0xc820ca0280 0xc820ca04c0] } +&{glCopyColorTable QOpenGLFunctions_1_5::glCopyColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ca07a0 0xc820ca0960 0xc820ca0a40 0xc820ca0b00 0xc820ca0d80] } +&{glCopyConvolutionFilter1D QOpenGLFunctions_1_5::glCopyConvolutionFilter1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ca1160 0xc820ca1240 0xc820ca1320 0xc820ca13e0 0xc820ca1500] } +&{glCopyConvolutionFilter2D QOpenGLFunctions_1_5::glCopyConvolutionFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ca18a0 0xc820ca1920 0xc820ca1aa0 0xc820ca1b40 0xc820ca1c20 0xc820ca1ce0] } +&{glCopyPixels QOpenGLFunctions_1_5::glCopyPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ca1ea0 0xc820ca1fc0 0xc820c8c080 0xc820c8c120 0xc820c8c2a0] } +&{glCopyTexImage1D QOpenGLFunctions_1_5::glCopyTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c8c640 0xc820c8c720 0xc820c8c880 0xc820c8c9e0 0xc820c8cbc0 0xc820c8cd00 0xc820c8cda0] } +&{glCopyTexImage2D QOpenGLFunctions_1_5::glCopyTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c8d180 0xc820c8d320 0xc820c8d420 0xc820c8d560 0xc820c8d7a0 0xc820c8d840 0xc820c8d900 0xc820c8da20] } +&{glCopyTexSubImage1D QOpenGLFunctions_1_5::glCopyTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c8dea0 0xc820c76020 0xc820c76140 0xc820c761c0 0xc820c76360 0xc820c76400] } +&{glCopyTexSubImage2D QOpenGLFunctions_1_5::glCopyTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c767e0 0xc820c76960 0xc820c76aa0 0xc820c76c00 0xc820c76ce0 0xc820c76ea0 0xc820c77020 0xc820c771e0] } +&{glCopyTexSubImage3D QOpenGLFunctions_1_5::glCopyTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c77520 0xc820c77740 0xc820c77860 0xc820c77a20 0xc820c77ba0 0xc820c77ce0 0xc820c77e20 0xc820c77f00 0xc820c77fa0] } +&{glCullFace QOpenGLFunctions_1_5::glCullFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c62480] } +&{glDeleteBuffers QOpenGLFunctions_1_5::glDeleteBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c62820 0xc820c62980] } +&{glDeleteLists QOpenGLFunctions_1_5::glDeleteLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c62cc0 0xc820c62dc0] } +&{glDeleteQueries QOpenGLFunctions_1_5::glDeleteQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c62fe0 0xc820c631e0] } +&{glDeleteTextures QOpenGLFunctions_1_5::glDeleteTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c63560 0xc820c63720] } +&{glDepthFunc QOpenGLFunctions_1_5::glDepthFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c63a40] } +&{glDepthMask QOpenGLFunctions_1_5::glDepthMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c63d80] } +&{glDepthRange QOpenGLFunctions_1_5::glDepthRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c48160 0xc820c48200] } +&{glDisable QOpenGLFunctions_1_5::glDisable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c48740] } +&{glDisableClientState QOpenGLFunctions_1_5::glDisableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c48a40] } +&{glDrawArrays QOpenGLFunctions_1_5::glDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c48d00 0xc820c48e00 0xc820c48fa0] } +&{glDrawBuffer QOpenGLFunctions_1_5::glDrawBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c492e0] } +&{glDrawElements QOpenGLFunctions_1_5::glDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c49560 0xc820c496c0 0xc820c49820 0xc820c498e0] } +&{glDrawPixels QOpenGLFunctions_1_5::glDrawPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c49ca0 0xc820c49e40 0xc820c49ee0 0xc820c34020 0xc820c341e0] } +&{glDrawRangeElements QOpenGLFunctions_1_5::glDrawRangeElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c34620 0xc820c34720 0xc820c348a0 0xc820c349e0 0xc820c34c20 0xc820c34cc0] } +&{glEdgeFlag QOpenGLFunctions_1_5::glEdgeFlag commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c35040] } +&{glEdgeFlagPointer QOpenGLFunctions_1_5::glEdgeFlagPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c353e0 0xc820c35520] } +&{glEdgeFlagv QOpenGLFunctions_1_5::glEdgeFlagv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c357e0] } +&{glEnable QOpenGLFunctions_1_5::glEnable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c35ca0] } +&{glEnableClientState QOpenGLFunctions_1_5::glEnableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c2c080] } +&{glEnd QOpenGLFunctions_1_5::glEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [] } +&{glEndList QOpenGLFunctions_1_5::glEndList commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [] } +&{glEndQuery QOpenGLFunctions_1_5::glEndQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c2c900] } +&{glEvalCoord1d QOpenGLFunctions_1_5::glEvalCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c2cc40] } +&{glEvalCoord1dv QOpenGLFunctions_1_5::glEvalCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c2cfa0] } +&{glEvalCoord1f QOpenGLFunctions_1_5::glEvalCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c2d340] } +&{glEvalCoord1fv QOpenGLFunctions_1_5::glEvalCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c2d680] } +&{glEvalCoord2d QOpenGLFunctions_1_5::glEvalCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c2dac0 0xc820c2dba0] } +&{glEvalCoord2dv QOpenGLFunctions_1_5::glEvalCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c2df00] } +&{glEvalCoord2f QOpenGLFunctions_1_5::glEvalCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c241e0 0xc820c24280] } +&{glEvalCoord2fv QOpenGLFunctions_1_5::glEvalCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c24540] } +&{glEvalMesh1 QOpenGLFunctions_1_5::glEvalMesh1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c24880 0xc820c24960 0xc820c24a20] } +&{glEvalMesh2 QOpenGLFunctions_1_5::glEvalMesh2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c24ce0 0xc820c24e80 0xc820c24f80 0xc820c250e0 0xc820c25220] } +&{glEvalPoint1 QOpenGLFunctions_1_5::glEvalPoint1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c254a0] } +&{glEvalPoint2 QOpenGLFunctions_1_5::glEvalPoint2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c25780 0xc820c25840] } +&{glFeedbackBuffer QOpenGLFunctions_1_5::glFeedbackBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c25c40 0xc820c25ce0 0xc820c25e60] } +&{glFinish QOpenGLFunctions_1_5::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [] } +&{glFlush QOpenGLFunctions_1_5::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [] } +&{glFogCoordPointer QOpenGLFunctions_1_5::glFogCoordPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c16740 0xc820c16820 0xc820c16920] } +&{glFogCoordd QOpenGLFunctions_1_5::glFogCoordd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c16d20] } +&{glFogCoorddv QOpenGLFunctions_1_5::glFogCoorddv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c17000] } +&{glFogCoordf QOpenGLFunctions_1_5::glFogCoordf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c17360] } +&{glFogCoordfv QOpenGLFunctions_1_5::glFogCoordfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c17660] } +&{glFogf QOpenGLFunctions_1_5::glFogf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c17920 0xc820c179c0] } +&{glFogfv QOpenGLFunctions_1_5::glFogfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c17d00 0xc820c17da0] } +&{glFogi QOpenGLFunctions_1_5::glFogi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c0c0c0 0xc820c0c160] } +&{glFogiv QOpenGLFunctions_1_5::glFogiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c0c3e0 0xc820c0c4e0] } +&{glFrontFace QOpenGLFunctions_1_5::glFrontFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c0c700] } +&{glFrustum QOpenGLFunctions_1_5::glFrustum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c0c9c0 0xc820c0ca60 0xc820c0cb60 0xc820c0cc00 0xc820c0cd40 0xc820c0ce00] } +&{glGenBuffers QOpenGLFunctions_1_5::glGenBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c0d000 0xc820c0d100] } +&{glGenLists QOpenGLFunctions_1_5::glGenLists commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false GLuint [0xc820c0d400] } +&{glGenQueries QOpenGLFunctions_1_5::glGenQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c0d680 0xc820c0d740] } +&{glGenTextures QOpenGLFunctions_1_5::glGenTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c0d980 0xc820c0da80] } +&{glGetBooleanv QOpenGLFunctions_1_5::glGetBooleanv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c0dcc0 0xc820c0dd80] } +&{glGetBufferParameteriv QOpenGLFunctions_1_5::glGetBufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c06040 0xc820c06100 0xc820c06180] } +&{glGetBufferPointerv QOpenGLFunctions_1_5::glGetBufferPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c06400 0xc820c064c0 0xc820c06580] } +&{glGetBufferSubData QOpenGLFunctions_1_5::glGetBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c06860 0xc820c06920 0xc820c069c0 0xc820c06ac0] } +&{glGetClipPlane QOpenGLFunctions_1_5::glGetClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c06d80 0xc820c06ec0] } +&{glGetColorTable QOpenGLFunctions_1_5::glGetColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c07160 0xc820c07260 0xc820c073a0 0xc820c07440] } +&{glGetColorTableParameterfv QOpenGLFunctions_1_5::glGetColorTableParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c077a0 0xc820c07840 0xc820c07940] } +&{glGetColorTableParameteriv QOpenGLFunctions_1_5::glGetColorTableParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820c07c40 0xc820c07d40 0xc820c07e80] } +&{glGetCompressedTexImage QOpenGLFunctions_1_5::glGetCompressedTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e10120 0xc820e101e0 0xc820e10260] } +&{glGetConvolutionFilter QOpenGLFunctions_1_5::glGetConvolutionFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e10480 0xc820e10520 0xc820e10600 0xc820e106a0] } +&{glGetConvolutionParameterfv QOpenGLFunctions_1_5::glGetConvolutionParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e108e0 0xc820e10960 0xc820e10a00] } +&{glGetConvolutionParameteriv QOpenGLFunctions_1_5::glGetConvolutionParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e10c60 0xc820e10ce0 0xc820e10dc0] } +&{glGetDoublev QOpenGLFunctions_1_5::glGetDoublev commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e10f80 0xc820e11020] } +&{glGetError QOpenGLFunctions_1_5::glGetError commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false GLenum [] } +&{glGetFloatv QOpenGLFunctions_1_5::glGetFloatv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e11320 0xc820e113a0] } +&{glGetHistogram QOpenGLFunctions_1_5::glGetHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e115a0 0xc820e11640 0xc820e116c0 0xc820e11760 0xc820e11840] } +&{glGetHistogramParameterfv QOpenGLFunctions_1_5::glGetHistogramParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e11aa0 0xc820e11b40 0xc820e11bc0] } +&{glGetHistogramParameteriv QOpenGLFunctions_1_5::glGetHistogramParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e11de0 0xc820e11ec0 0xc820e11f60] } +&{glGetIntegerv QOpenGLFunctions_1_5::glGetIntegerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820be40e0 0xc820be4160] } +&{glGetLightfv QOpenGLFunctions_1_5::glGetLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820be42c0 0xc820be4340 0xc820be43c0] } +&{glGetLightiv QOpenGLFunctions_1_5::glGetLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820be4520 0xc820be45a0 0xc820be4620] } +&{glGetMapdv QOpenGLFunctions_1_5::glGetMapdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820be47e0 0xc820be4860 0xc820be48e0] } +&{glGetMapfv QOpenGLFunctions_1_5::glGetMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820be4aa0 0xc820be4b20 0xc820be4ba0] } +&{glGetMapiv QOpenGLFunctions_1_5::glGetMapiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820be4d60 0xc820be4de0 0xc820be4ea0] } +&{glGetMaterialfv QOpenGLFunctions_1_5::glGetMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820be5040 0xc820be5100 0xc820be51a0] } +&{glGetMaterialiv QOpenGLFunctions_1_5::glGetMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820be5300 0xc820be5380 0xc820be5400] } +&{glGetMinmax QOpenGLFunctions_1_5::glGetMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820be5560 0xc820be55e0 0xc820be5660 0xc820be56e0 0xc820be5780] } +&{glGetMinmaxParameterfv QOpenGLFunctions_1_5::glGetMinmaxParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820be5980 0xc820be5a00 0xc820be5ac0] } +&{glGetMinmaxParameteriv QOpenGLFunctions_1_5::glGetMinmaxParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820be5cc0 0xc820be5d40 0xc820be5dc0] } +&{glGetPixelMapfv QOpenGLFunctions_1_5::glGetPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820be5f20 0xc820be5fa0] } +&{glGetPixelMapuiv QOpenGLFunctions_1_5::glGetPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820bc8180 0xc820bc8260] } +&{glGetPixelMapusv QOpenGLFunctions_1_5::glGetPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820bc8460 0xc820bc8520] } +&{glGetPointerv QOpenGLFunctions_1_5::glGetPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820bc8760 0xc820bc87e0] } +&{glGetPolygonStipple QOpenGLFunctions_1_5::glGetPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820bc8aa0] } +&{glGetQueryObjectiv QOpenGLFunctions_1_5::glGetQueryObjectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820bc8ce0 0xc820bc8d80 0xc820bc8e00] } +&{glGetQueryObjectuiv QOpenGLFunctions_1_5::glGetQueryObjectuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820bc9080 0xc820bc9100 0xc820bc91c0] } +&{glGetQueryiv QOpenGLFunctions_1_5::glGetQueryiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820bc9340 0xc820bc9400 0xc820bc94e0] } +&{glGetSeparableFilter QOpenGLFunctions_1_5::glGetSeparableFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820bc9780 0xc820bc9800 0xc820bc9880 0xc820bc9940 0xc820bc99e0 0xc820bc9aa0] } +&{glGetString QOpenGLFunctions_1_5::glGetString commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false const GLubyte * [0xc820bc9c80] } +&{glGetTexEnvfv QOpenGLFunctions_1_5::glGetTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820bc9e60 0xc820bc9f20 0xc820bc0000] } +&{glGetTexEnviv QOpenGLFunctions_1_5::glGetTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820bc0220 0xc820bc02e0 0xc820bc0360] } +&{glGetTexGendv QOpenGLFunctions_1_5::glGetTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820bc05e0 0xc820bc0660 0xc820bc0700] } +&{glGetTexGenfv QOpenGLFunctions_1_5::glGetTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820bc0940 0xc820bc0a00 0xc820bc0aa0] } +&{glGetTexGeniv QOpenGLFunctions_1_5::glGetTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820bc0c40 0xc820bc0ce0 0xc820bc0de0] } +&{glGetTexImage QOpenGLFunctions_1_5::glGetTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820bc0fe0 0xc820bc10a0 0xc820bc1180 0xc820bc1200 0xc820bc12c0] } +&{glGetTexLevelParameterfv QOpenGLFunctions_1_5::glGetTexLevelParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820bc1520 0xc820bc15a0 0xc820bc1640 0xc820bc1740] } +&{glGetTexLevelParameteriv QOpenGLFunctions_1_5::glGetTexLevelParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820bc19a0 0xc820bc1a20 0xc820bc1ac0 0xc820bc1ba0] } +&{glGetTexParameterfv QOpenGLFunctions_1_5::glGetTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820bc1da0 0xc820bc1e20 0xc820bc1ee0] } +&{glGetTexParameteriv QOpenGLFunctions_1_5::glGetTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ba8100 0xc820ba81c0 0xc820ba8260] } +&{glHint QOpenGLFunctions_1_5::glHint commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ba8500 0xc820ba85e0] } +&{glHistogram QOpenGLFunctions_1_5::glHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ba87c0 0xc820ba8860 0xc820ba8960 0xc820ba8a20] } +&{glIndexMask QOpenGLFunctions_1_5::glIndexMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ba8c00] } +&{glIndexPointer QOpenGLFunctions_1_5::glIndexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ba8d80 0xc820ba8ea0 0xc820ba8f60] } +&{glIndexd QOpenGLFunctions_1_5::glIndexd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ba9180] } +&{glIndexdv QOpenGLFunctions_1_5::glIndexdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ba9420] } +&{glIndexf QOpenGLFunctions_1_5::glIndexf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ba96c0] } +&{glIndexfv QOpenGLFunctions_1_5::glIndexfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ba9960] } +&{glIndexi QOpenGLFunctions_1_5::glIndexi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ba9c80] } +&{glIndexiv QOpenGLFunctions_1_5::glIndexiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ba9f40] } +&{glIndexs QOpenGLFunctions_1_5::glIndexs commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b8e240] } +&{glIndexsv QOpenGLFunctions_1_5::glIndexsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b8e520] } +&{glIndexub QOpenGLFunctions_1_5::glIndexub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b8e760] } +&{glIndexubv QOpenGLFunctions_1_5::glIndexubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b8e9c0] } +&{glInitNames QOpenGLFunctions_1_5::glInitNames commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [] } +&{glInterleavedArrays QOpenGLFunctions_1_5::glInterleavedArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b8ee00 0xc820b8ee80 0xc820b8ef20] } +&{glIsBuffer QOpenGLFunctions_1_5::glIsBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false GLboolean [0xc820b8f1c0] } +&{glIsEnabled QOpenGLFunctions_1_5::glIsEnabled commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false GLboolean [0xc820b8f380] } +&{glIsList QOpenGLFunctions_1_5::glIsList commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false GLboolean [0xc820b8f640] } +&{glIsQuery QOpenGLFunctions_1_5::glIsQuery commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false GLboolean [0xc820b8f980] } +&{glIsTexture QOpenGLFunctions_1_5::glIsTexture commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false GLboolean [0xc820b8fba0] } +&{glLightModelf QOpenGLFunctions_1_5::glLightModelf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b8fda0 0xc820b8fe60] } +&{glLightModelfv QOpenGLFunctions_1_5::glLightModelfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b7e060 0xc820b7e120] } +&{glLightModeli QOpenGLFunctions_1_5::glLightModeli commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b7e320 0xc820b7e480] } +&{glLightModeliv QOpenGLFunctions_1_5::glLightModeliv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b7e680 0xc820b7e760] } +&{glLightf QOpenGLFunctions_1_5::glLightf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b7ea20 0xc820b7eae0 0xc820b7eb80] } +&{glLightfv QOpenGLFunctions_1_5::glLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b7ee00 0xc820b7eea0 0xc820b7ef80] } +&{glLighti QOpenGLFunctions_1_5::glLighti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b7f1a0 0xc820b7f220 0xc820b7f2c0] } +&{glLightiv QOpenGLFunctions_1_5::glLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b7f4e0 0xc820b7f5c0 0xc820b7f660] } +&{glLineStipple QOpenGLFunctions_1_5::glLineStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b7f880 0xc820b7f900] } +&{glLineWidth QOpenGLFunctions_1_5::glLineWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b7fb40] } +&{glListBase QOpenGLFunctions_1_5::glListBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b7fe20] } +&{glLoadIdentity QOpenGLFunctions_1_5::glLoadIdentity commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [] } +&{glLoadMatrixd QOpenGLFunctions_1_5::glLoadMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b66100] } +&{glLoadMatrixf QOpenGLFunctions_1_5::glLoadMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b66300] } +&{glLoadName QOpenGLFunctions_1_5::glLoadName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b66640] } +&{glLoadTransposeMatrixd QOpenGLFunctions_1_5::glLoadTransposeMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b668c0] } +&{glLoadTransposeMatrixf QOpenGLFunctions_1_5::glLoadTransposeMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b66b60] } +&{glLogicOp QOpenGLFunctions_1_5::glLogicOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b66e00] } +&{glMap1d QOpenGLFunctions_1_5::glMap1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b670e0 0xc820b67240 0xc820b672e0 0xc820b67380 0xc820b674a0 0xc820b67520] } +&{glMap1f QOpenGLFunctions_1_5::glMap1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b67840 0xc820b678e0 0xc820b67980 0xc820b67a60 0xc820b67b20 0xc820b67c80] } +&{glMap2d QOpenGLFunctions_1_5::glMap2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b67ec0 0xc820b67fc0 0xc820b56060 0xc820b560e0 0xc820b561e0 0xc820b56260 0xc820b56300 0xc820b563c0 0xc820b56480 0xc820b56520] } +&{glMap2f QOpenGLFunctions_1_5::glMap2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b56780 0xc820b56880 0xc820b56940 0xc820b569e0 0xc820b56ae0 0xc820b56b60 0xc820b56c00 0xc820b56c80 0xc820b56de0 0xc820b56ea0] } +&{glMapBuffer QOpenGLFunctions_1_5::glMapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false GLvoid * [0xc820b57080 0xc820b57120] } +&{glMapGrid1d QOpenGLFunctions_1_5::glMapGrid1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b57300 0xc820b57400 0xc820b574c0] } +&{glMapGrid1f QOpenGLFunctions_1_5::glMapGrid1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b576e0 0xc820b57760 0xc820b57840] } +&{glMapGrid2d QOpenGLFunctions_1_5::glMapGrid2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b57a60 0xc820b57ae0 0xc820b57bc0 0xc820b57ca0 0xc820b57d40 0xc820b57de0] } +&{glMapGrid2f QOpenGLFunctions_1_5::glMapGrid2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b57f80 0xc820b28020 0xc820b280a0 0xc820b28140 0xc820b281e0 0xc820b28260] } +&{glMaterialf QOpenGLFunctions_1_5::glMaterialf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b28420 0xc820b284a0 0xc820b28560] } +&{glMaterialfv QOpenGLFunctions_1_5::glMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b28740 0xc820b287e0 0xc820b28880] } +&{glMateriali QOpenGLFunctions_1_5::glMateriali commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b28a40 0xc820b28ae0 0xc820b28ba0] } +&{glMaterialiv QOpenGLFunctions_1_5::glMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b28d40 0xc820b28de0 0xc820b28e80] } +&{glMatrixMode QOpenGLFunctions_1_5::glMatrixMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b29020] } +&{glMinmax QOpenGLFunctions_1_5::glMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b292a0 0xc820b29320 0xc820b29480] } +&{glMultMatrixd QOpenGLFunctions_1_5::glMultMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b29660] } +&{glMultMatrixf QOpenGLFunctions_1_5::glMultMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b298a0] } +&{glMultTransposeMatrixd QOpenGLFunctions_1_5::glMultTransposeMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b29b00] } +&{glMultTransposeMatrixf QOpenGLFunctions_1_5::glMultTransposeMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b29da0] } +&{glMultiDrawArrays QOpenGLFunctions_1_5::glMultiDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b18000 0xc820b180a0 0xc820b18140 0xc820b181e0] } +&{glMultiDrawElements QOpenGLFunctions_1_5::glMultiDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b184a0 0xc820b18520 0xc820b18600 0xc820b186e0 0xc820b18840] } +&{glMultiTexCoord1d QOpenGLFunctions_1_5::glMultiTexCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b18a40 0xc820b18b00] } +&{glMultiTexCoord1dv QOpenGLFunctions_1_5::glMultiTexCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b18cc0 0xc820b18d60] } +&{glMultiTexCoord1f QOpenGLFunctions_1_5::glMultiTexCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b18f40 0xc820b18fc0] } +&{glMultiTexCoord1fv QOpenGLFunctions_1_5::glMultiTexCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b19240 0xc820b19360] } +&{glMultiTexCoord1i QOpenGLFunctions_1_5::glMultiTexCoord1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b195a0 0xc820b19620] } +&{glMultiTexCoord1iv QOpenGLFunctions_1_5::glMultiTexCoord1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b198c0 0xc820b199a0] } +&{glMultiTexCoord1s QOpenGLFunctions_1_5::glMultiTexCoord1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b19bc0 0xc820b19c60] } +&{glMultiTexCoord1sv QOpenGLFunctions_1_5::glMultiTexCoord1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820b19ec0 0xc820b19f40] } +&{glMultiTexCoord2d QOpenGLFunctions_1_5::glMultiTexCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e02100 0xc820e021e0 0xc820e02280] } +&{glMultiTexCoord2dv QOpenGLFunctions_1_5::glMultiTexCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e024c0 0xc820e02540] } +&{glMultiTexCoord2f QOpenGLFunctions_1_5::glMultiTexCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e027a0 0xc820e02820 0xc820e02900] } +&{glMultiTexCoord2fv QOpenGLFunctions_1_5::glMultiTexCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e02b40 0xc820e02be0] } +&{glMultiTexCoord2i QOpenGLFunctions_1_5::glMultiTexCoord2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e02e00 0xc820e02e80 0xc820e02f60] } +&{glMultiTexCoord2iv QOpenGLFunctions_1_5::glMultiTexCoord2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e03160 0xc820e03240] } +&{glMultiTexCoord2s QOpenGLFunctions_1_5::glMultiTexCoord2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e03480 0xc820e03520 0xc820e035a0] } +&{glMultiTexCoord2sv QOpenGLFunctions_1_5::glMultiTexCoord2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e03800 0xc820e038a0] } +&{glMultiTexCoord3d QOpenGLFunctions_1_5::glMultiTexCoord3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e03ac0 0xc820e03b40 0xc820e03be0 0xc820e03cc0] } +&{glMultiTexCoord3dv QOpenGLFunctions_1_5::glMultiTexCoord3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e03ee0 0xc820e03f60] } +&{glMultiTexCoord3f QOpenGLFunctions_1_5::glMultiTexCoord3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820af01e0 0xc820af02e0 0xc820af0360 0xc820af0440] } +&{glMultiTexCoord3fv QOpenGLFunctions_1_5::glMultiTexCoord3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820af06a0 0xc820af0780] } +&{glMultiTexCoord3i QOpenGLFunctions_1_5::glMultiTexCoord3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820af0a20 0xc820af0aa0 0xc820af0b20 0xc820af0c40] } +&{glMultiTexCoord3iv QOpenGLFunctions_1_5::glMultiTexCoord3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820af0ea0 0xc820af0f40] } +&{glMultiTexCoord3s QOpenGLFunctions_1_5::glMultiTexCoord3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820af1220 0xc820af12a0 0xc820af1360 0xc820af1460] } +&{glMultiTexCoord3sv QOpenGLFunctions_1_5::glMultiTexCoord3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820af16c0 0xc820af1740] } +&{glMultiTexCoord4d QOpenGLFunctions_1_5::glMultiTexCoord4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820af19e0 0xc820af1ac0 0xc820af1b80 0xc820af1c00 0xc820af1ce0] } +&{glMultiTexCoord4dv QOpenGLFunctions_1_5::glMultiTexCoord4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820af1f00 0xc820af1f80] } +&{glMultiTexCoord4f QOpenGLFunctions_1_5::glMultiTexCoord4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ade1e0 0xc820ade260 0xc820ade300 0xc820ade3e0 0xc820ade480] } +&{glMultiTexCoord4fv QOpenGLFunctions_1_5::glMultiTexCoord4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ade6c0 0xc820ade780] } +&{glMultiTexCoord4i QOpenGLFunctions_1_5::glMultiTexCoord4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820ade980 0xc820adea20 0xc820adeaa0 0xc820adeb40 0xc820adec00] } +&{glMultiTexCoord4iv QOpenGLFunctions_1_5::glMultiTexCoord4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820adede0 0xc820adee60] } +&{glMultiTexCoord4s QOpenGLFunctions_1_5::glMultiTexCoord4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820adf080 0xc820adf140 0xc820adf1c0 0xc820adf260 0xc820adf300] } +&{glMultiTexCoord4sv QOpenGLFunctions_1_5::glMultiTexCoord4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820adf540 0xc820adf5e0] } +&{glNewList QOpenGLFunctions_1_5::glNewList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820adf800 0xc820adf880] } +&{glNormal3b QOpenGLFunctions_1_5::glNormal3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820adfb20 0xc820adfc00 0xc820adfc80] } +&{glNormal3bv QOpenGLFunctions_1_5::glNormal3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820adfe40] } +&{glNormal3d QOpenGLFunctions_1_5::glNormal3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820acc060 0xc820acc100 0xc820acc1c0] } +&{glNormal3dv QOpenGLFunctions_1_5::glNormal3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820acc3c0] } +&{glNormal3f QOpenGLFunctions_1_5::glNormal3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820acc640 0xc820acc6e0 0xc820acc800] } +&{glNormal3fv QOpenGLFunctions_1_5::glNormal3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820acc9c0] } +&{glNormal3i QOpenGLFunctions_1_5::glNormal3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820accc20 0xc820acccc0 0xc820accd60] } +&{glNormal3iv QOpenGLFunctions_1_5::glNormal3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820accf40] } +&{glNormal3s QOpenGLFunctions_1_5::glNormal3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820acd160 0xc820acd1e0 0xc820acd280] } +&{glNormal3sv QOpenGLFunctions_1_5::glNormal3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820acd4a0] } +&{glNormalPointer QOpenGLFunctions_1_5::glNormalPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820acd680 0xc820acd780 0xc820acd860] } +&{glOrtho QOpenGLFunctions_1_5::glOrtho commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820acdb00 0xc820acdb80 0xc820acdc00 0xc820acdce0 0xc820acdda0 0xc820acde40] } +&{glPassThrough QOpenGLFunctions_1_5::glPassThrough commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820acdfc0] } +&{glPixelMapfv QOpenGLFunctions_1_5::glPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820aaa120 0xc820aaa1e0 0xc820aaa280] } +&{glPixelMapuiv QOpenGLFunctions_1_5::glPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820aaa420 0xc820aaa4a0 0xc820aaa540] } +&{glPixelMapusv QOpenGLFunctions_1_5::glPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820aaa7a0 0xc820aaa860 0xc820aaa900] } +&{glPixelStoref QOpenGLFunctions_1_5::glPixelStoref commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820aaab60 0xc820aaac20] } +&{glPixelStorei QOpenGLFunctions_1_5::glPixelStorei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820aaae20 0xc820aaaea0] } +&{glPixelTransferf QOpenGLFunctions_1_5::glPixelTransferf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820aab100 0xc820aab200] } +&{glPixelTransferi QOpenGLFunctions_1_5::glPixelTransferi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820aab3e0 0xc820aab460] } +&{glPixelZoom QOpenGLFunctions_1_5::glPixelZoom commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820aab660 0xc820aab700] } +&{glPointParameterf QOpenGLFunctions_1_5::glPointParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820aab9e0 0xc820aaba60] } +&{glPointParameterfv QOpenGLFunctions_1_5::glPointParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820aabcc0 0xc820aabd80] } +&{glPointParameteri QOpenGLFunctions_1_5::glPointParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a94000 0xc820a94140] } +&{glPointParameteriv QOpenGLFunctions_1_5::glPointParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a943a0 0xc820a94480] } +&{glPointSize QOpenGLFunctions_1_5::glPointSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a946c0] } +&{glPolygonMode QOpenGLFunctions_1_5::glPolygonMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a948e0 0xc820a949c0] } +&{glPolygonOffset QOpenGLFunctions_1_5::glPolygonOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a94b80 0xc820a94c80] } +&{glPolygonStipple QOpenGLFunctions_1_5::glPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a94ee0] } +&{glPopAttrib QOpenGLFunctions_1_5::glPopAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [] } +&{glPopClientAttrib QOpenGLFunctions_1_5::glPopClientAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [] } +&{glPopMatrix QOpenGLFunctions_1_5::glPopMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [] } +&{glPopName QOpenGLFunctions_1_5::glPopName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [] } +&{glPrioritizeTextures QOpenGLFunctions_1_5::glPrioritizeTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a95760 0xc820a95820 0xc820a958e0] } +&{glPushAttrib QOpenGLFunctions_1_5::glPushAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a95ac0] } +&{glPushClientAttrib QOpenGLFunctions_1_5::glPushClientAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a95d00] } +&{glPushMatrix QOpenGLFunctions_1_5::glPushMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [] } +&{glPushName QOpenGLFunctions_1_5::glPushName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e2c060] } +&{glRasterPos2d QOpenGLFunctions_1_5::glRasterPos2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e2c220 0xc820e2c2c0] } +&{glRasterPos2dv QOpenGLFunctions_1_5::glRasterPos2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e2c480] } +&{glRasterPos2f QOpenGLFunctions_1_5::glRasterPos2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e2c600 0xc820e2c6c0] } +&{glRasterPos2fv QOpenGLFunctions_1_5::glRasterPos2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e2c860] } +&{glRasterPos2i QOpenGLFunctions_1_5::glRasterPos2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e2ca00 0xc820e2cac0] } +&{glRasterPos2iv QOpenGLFunctions_1_5::glRasterPos2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e2cc60] } +&{glRasterPos2s QOpenGLFunctions_1_5::glRasterPos2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e2ce20 0xc820e2cea0] } +&{glRasterPos2sv QOpenGLFunctions_1_5::glRasterPos2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e2d060] } +&{glRasterPos3d QOpenGLFunctions_1_5::glRasterPos3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e2d200 0xc820e2d2c0 0xc820e2d360] } +&{glRasterPos3dv QOpenGLFunctions_1_5::glRasterPos3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e2d500] } +&{glRasterPos3f QOpenGLFunctions_1_5::glRasterPos3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e2d6c0 0xc820e2d760 0xc820e2d7e0] } +&{glRasterPos3fv QOpenGLFunctions_1_5::glRasterPos3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e2d980] } +&{glRasterPos3i QOpenGLFunctions_1_5::glRasterPos3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e2db40 0xc820e2dc00 0xc820e2dca0] } +&{glRasterPos3iv QOpenGLFunctions_1_5::glRasterPos3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e2de40] } +&{glRasterPos3s QOpenGLFunctions_1_5::glRasterPos3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e2dfc0 0xc820a7e080 0xc820a7e120] } +&{glRasterPos3sv QOpenGLFunctions_1_5::glRasterPos3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a7e2a0] } +&{glRasterPos4d QOpenGLFunctions_1_5::glRasterPos4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a7e4e0 0xc820a7e5a0 0xc820a7e660 0xc820a7e700] } +&{glRasterPos4dv QOpenGLFunctions_1_5::glRasterPos4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a7e8e0] } +&{glRasterPos4f QOpenGLFunctions_1_5::glRasterPos4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a7ea60 0xc820a7eae0 0xc820a7eb80 0xc820a7ec20] } +&{glRasterPos4fv QOpenGLFunctions_1_5::glRasterPos4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a7ee40] } +&{glRasterPos4i QOpenGLFunctions_1_5::glRasterPos4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a7efe0 0xc820a7f0e0 0xc820a7f160 0xc820a7f200] } +&{glRasterPos4iv QOpenGLFunctions_1_5::glRasterPos4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a7f3e0] } +&{glRasterPos4s QOpenGLFunctions_1_5::glRasterPos4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a7f560 0xc820a7f5e0 0xc820a7f660 0xc820a7f6e0] } +&{glRasterPos4sv QOpenGLFunctions_1_5::glRasterPos4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a7f8a0] } +&{glReadBuffer QOpenGLFunctions_1_5::glReadBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a7faa0] } +&{glReadPixels QOpenGLFunctions_1_5::glReadPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a7fc60 0xc820a7fd00 0xc820a7fda0 0xc820a7fe20 0xc820a7ff20 0xc820a7ffc0 0xc820dd4080] } +&{glRectd QOpenGLFunctions_1_5::glRectd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820dd42c0 0xc820dd4360 0xc820dd43e0 0xc820dd4480] } +&{glRectdv QOpenGLFunctions_1_5::glRectdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820dd46e0 0xc820dd4760] } +&{glRectf QOpenGLFunctions_1_5::glRectf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820dd49e0 0xc820dd4a60 0xc820dd4b00 0xc820dd4be0] } +&{glRectfv QOpenGLFunctions_1_5::glRectfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820dd4de0 0xc820dd4ec0] } +&{glRecti QOpenGLFunctions_1_5::glRecti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820dd50e0 0xc820dd5160 0xc820dd5240 0xc820dd52c0] } +&{glRectiv QOpenGLFunctions_1_5::glRectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820dd5500 0xc820dd5580] } +&{glRects QOpenGLFunctions_1_5::glRects commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820dd57c0 0xc820dd58a0 0xc820dd5940 0xc820dd59c0] } +&{glRectsv QOpenGLFunctions_1_5::glRectsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820dd5c20 0xc820dd5ca0] } +&{glRenderMode QOpenGLFunctions_1_5::glRenderMode commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false GLint [0xc820dd5ea0] } +&{glResetHistogram QOpenGLFunctions_1_5::glResetHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a6c020] } +&{glResetMinmax QOpenGLFunctions_1_5::glResetMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a6c1e0] } +&{glRotated QOpenGLFunctions_1_5::glRotated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a6c400 0xc820a6c4a0 0xc820a6c5a0 0xc820a6c660] } +&{glRotatef QOpenGLFunctions_1_5::glRotatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a6c880 0xc820a6c940 0xc820a6c9c0 0xc820a6cae0] } +&{glSampleCoverage QOpenGLFunctions_1_5::glSampleCoverage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a6ccc0 0xc820a6cd80] } +&{glScaled QOpenGLFunctions_1_5::glScaled commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a6d040 0xc820a6d0e0 0xc820a6d180] } +&{glScalef QOpenGLFunctions_1_5::glScalef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a6d400 0xc820a6d4e0 0xc820a6d560] } +&{glScissor QOpenGLFunctions_1_5::glScissor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a6d820 0xc820a6d8c0 0xc820a6d960 0xc820a6d9e0] } +&{glSecondaryColor3b QOpenGLFunctions_1_5::glSecondaryColor3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a6dc80 0xc820a6dd40 0xc820a6dde0] } +&{glSecondaryColor3bv QOpenGLFunctions_1_5::glSecondaryColor3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a5a020] } +&{glSecondaryColor3d QOpenGLFunctions_1_5::glSecondaryColor3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a5a260 0xc820a5a340 0xc820a5a3e0] } +&{glSecondaryColor3dv QOpenGLFunctions_1_5::glSecondaryColor3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a5a680] } +&{glSecondaryColor3f QOpenGLFunctions_1_5::glSecondaryColor3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a5a920 0xc820a5a9e0 0xc820a5aaa0] } +&{glSecondaryColor3fv QOpenGLFunctions_1_5::glSecondaryColor3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a5ad60] } +&{glSecondaryColor3i QOpenGLFunctions_1_5::glSecondaryColor3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a5b000 0xc820a5b0a0 0xc820a5b160] } +&{glSecondaryColor3iv QOpenGLFunctions_1_5::glSecondaryColor3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a5b340] } +&{glSecondaryColor3s QOpenGLFunctions_1_5::glSecondaryColor3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a5b580 0xc820a5b620 0xc820a5b700] } +&{glSecondaryColor3sv QOpenGLFunctions_1_5::glSecondaryColor3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a5b920] } +&{glSecondaryColor3ub QOpenGLFunctions_1_5::glSecondaryColor3ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a5bb60 0xc820a5bc00 0xc820a5bc80] } +&{glSecondaryColor3ubv QOpenGLFunctions_1_5::glSecondaryColor3ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820a5be40] } +&{glSecondaryColor3ui QOpenGLFunctions_1_5::glSecondaryColor3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820df2000 0xc820df20a0 0xc820df2120] } +&{glSecondaryColor3uiv QOpenGLFunctions_1_5::glSecondaryColor3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820df2340] } +&{glSecondaryColor3us QOpenGLFunctions_1_5::glSecondaryColor3us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820df25a0 0xc820df2640 0xc820df26e0] } +&{glSecondaryColor3usv QOpenGLFunctions_1_5::glSecondaryColor3usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820df2920] } +&{glSecondaryColorPointer QOpenGLFunctions_1_5::glSecondaryColorPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820df2b40 0xc820df2bc0 0xc820df2c80 0xc820df2d20] } +&{glSelectBuffer QOpenGLFunctions_1_5::glSelectBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820df2ec0 0xc820df2f80] } +&{glSeparableFilter2D QOpenGLFunctions_1_5::glSeparableFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820df31c0 0xc820df3260 0xc820df32e0 0xc820df33a0 0xc820df3480 0xc820df3520 0xc820df35a0 0xc820df3660] } +&{glShadeModel QOpenGLFunctions_1_5::glShadeModel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820df3820] } +&{glStencilFunc QOpenGLFunctions_1_5::glStencilFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820df39c0 0xc820df3a40 0xc820df3b00] } +&{glStencilMask QOpenGLFunctions_1_5::glStencilMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820df3cc0] } +&{glStencilOp QOpenGLFunctions_1_5::glStencilOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820df3ea0 0xc820df3f20 0xc820e50000] } +&{glTexCoord1d QOpenGLFunctions_1_5::glTexCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e50200] } +&{glTexCoord1dv QOpenGLFunctions_1_5::glTexCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e503e0] } +&{glTexCoord1f QOpenGLFunctions_1_5::glTexCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e505a0] } +&{glTexCoord1fv QOpenGLFunctions_1_5::glTexCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e50780] } +&{glTexCoord1i QOpenGLFunctions_1_5::glTexCoord1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e50980] } +&{glTexCoord1iv QOpenGLFunctions_1_5::glTexCoord1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e50b40] } +&{glTexCoord1s QOpenGLFunctions_1_5::glTexCoord1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e50d20] } +&{glTexCoord1sv QOpenGLFunctions_1_5::glTexCoord1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e50ea0] } +&{glTexCoord2d QOpenGLFunctions_1_5::glTexCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e51060 0xc820e51120] } +&{glTexCoord2dv QOpenGLFunctions_1_5::glTexCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e512c0] } +&{glTexCoord2f QOpenGLFunctions_1_5::glTexCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e514a0 0xc820e51520] } +&{glTexCoord2fv QOpenGLFunctions_1_5::glTexCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e51700] } +&{glTexCoord2i QOpenGLFunctions_1_5::glTexCoord2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e518c0 0xc820e51960] } +&{glTexCoord2iv QOpenGLFunctions_1_5::glTexCoord2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e51b20] } +&{glTexCoord2s QOpenGLFunctions_1_5::glTexCoord2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e51ca0 0xc820e51d80] } +&{glTexCoord2sv QOpenGLFunctions_1_5::glTexCoord2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e51f00] } +&{glTexCoord3d QOpenGLFunctions_1_5::glTexCoord3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc82015a0c0 0xc82015a140 0xc82015a1c0] } +&{glTexCoord3dv QOpenGLFunctions_1_5::glTexCoord3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc82015a400] } +&{glTexCoord3f QOpenGLFunctions_1_5::glTexCoord3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc82015a580 0xc82015a620 0xc82015a6c0] } +&{glTexCoord3fv QOpenGLFunctions_1_5::glTexCoord3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc82015a880] } +&{glTexCoord3i QOpenGLFunctions_1_5::glTexCoord3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc82015aa40 0xc82015aae0 0xc82015abc0] } +&{glTexCoord3iv QOpenGLFunctions_1_5::glTexCoord3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc82015ada0] } +&{glTexCoord3s QOpenGLFunctions_1_5::glTexCoord3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc82015af60 0xc82015b0c0 0xc82015b160] } +&{glTexCoord3sv QOpenGLFunctions_1_5::glTexCoord3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc82015b340] } +&{glTexCoord4d QOpenGLFunctions_1_5::glTexCoord4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc82015b5c0 0xc82015b6e0 0xc82015b760 0xc82015b820] } +&{glTexCoord4dv QOpenGLFunctions_1_5::glTexCoord4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc82015ba20] } +&{glTexCoord4f QOpenGLFunctions_1_5::glTexCoord4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc82015bc80 0xc82015bd00 0xc82015be20 0xc82015bec0] } +&{glTexCoord4fv QOpenGLFunctions_1_5::glTexCoord4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209e20a0] } +&{glTexCoord4i QOpenGLFunctions_1_5::glTexCoord4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209e2260 0xc8209e2320 0xc8209e23c0 0xc8209e2440] } +&{glTexCoord4iv QOpenGLFunctions_1_5::glTexCoord4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209e25c0] } +&{glTexCoord4s QOpenGLFunctions_1_5::glTexCoord4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209e2760 0xc8209e27e0 0xc8209e2880 0xc8209e2940] } +&{glTexCoord4sv QOpenGLFunctions_1_5::glTexCoord4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209e2ac0] } +&{glTexCoordPointer QOpenGLFunctions_1_5::glTexCoordPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209e2cc0 0xc8209e2d40 0xc8209e2de0 0xc8209e2e60] } +&{glTexEnvf QOpenGLFunctions_1_5::glTexEnvf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209e30e0 0xc8209e3180 0xc8209e3240] } +&{glTexEnvfv QOpenGLFunctions_1_5::glTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209e3500 0xc8209e3580 0xc8209e36c0] } +&{glTexEnvi QOpenGLFunctions_1_5::glTexEnvi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209e3900 0xc8209e39e0 0xc8209e3aa0] } +&{glTexEnviv QOpenGLFunctions_1_5::glTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209e3d60 0xc8209e3de0 0xc8209e3e60] } +&{glTexGend QOpenGLFunctions_1_5::glTexGend commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209ce0c0 0xc8209ce160 0xc8209ce260] } +&{glTexGendv QOpenGLFunctions_1_5::glTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209ce4a0 0xc8209ce520 0xc8209ce5c0] } +&{glTexGenf QOpenGLFunctions_1_5::glTexGenf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209ce800 0xc8209ce8a0 0xc8209ce920] } +&{glTexGenfv QOpenGLFunctions_1_5::glTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209ceb80 0xc8209cec60 0xc8209cece0] } +&{glTexGeni QOpenGLFunctions_1_5::glTexGeni commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209cef80 0xc8209cf040 0xc8209cf0e0] } +&{glTexGeniv QOpenGLFunctions_1_5::glTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209cf360 0xc8209cf400 0xc8209cf4c0] } +&{glTexImage1D QOpenGLFunctions_1_5::glTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209cf6a0 0xc8209cf740 0xc8209cf820 0xc8209cf8a0 0xc8209cf980 0xc8209cfa80 0xc8209cfb40 0xc8209cfbc0] } +&{glTexImage2D QOpenGLFunctions_1_5::glTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209cfd80 0xc8209cfe40 0xc8209cff40 0xc8209cffe0 0xc8209bc080 0xc8209bc120 0xc8209bc1c0 0xc8209bc260 0xc8209bc320] } +&{glTexImage3D QOpenGLFunctions_1_5::glTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209bc540 0xc8209bc5e0 0xc8209bc6c0 0xc8209bc760 0xc8209bc840 0xc8209bc920 0xc8209bc9c0 0xc8209bca60 0xc8209bcb60 0xc8209bcbe0] } +&{glTexParameterf QOpenGLFunctions_1_5::glTexParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209bcde0 0xc8209bcea0 0xc8209bcf80] } +&{glTexParameterfv QOpenGLFunctions_1_5::glTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209bd140 0xc8209bd200 0xc8209bd2e0] } +&{glTexParameteri QOpenGLFunctions_1_5::glTexParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209bd4a0 0xc8209bd580 0xc8209bd620] } +&{glTexParameteriv QOpenGLFunctions_1_5::glTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209bd820 0xc8209bd8a0 0xc8209bd9a0] } +&{glTexSubImage1D QOpenGLFunctions_1_5::glTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209bdba0 0xc8209bdc20 0xc8209bdcc0 0xc8209bdd60 0xc8209bde60 0xc8209bdf00 0xc8209bdfc0] } +&{glTexSubImage2D QOpenGLFunctions_1_5::glTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e6e1a0 0xc820e6e240 0xc820e6e300 0xc820e6e380 0xc820e6e420 0xc820e6e4e0 0xc820e6e560 0xc820e6e5e0 0xc820e6e6e0] } +&{glTexSubImage3D QOpenGLFunctions_1_5::glTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e6e8a0 0xc820e6e920 0xc820e6e9e0 0xc820e6ea80 0xc820e6eb20 0xc820e6ebe0 0xc820e6ec80 0xc820e6ed00 0xc820e6ede0 0xc820e6ee80 0xc820e6ef00] } +&{glTranslated QOpenGLFunctions_1_5::glTranslated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e6f100 0xc820e6f180 0xc820e6f220] } +&{glTranslatef QOpenGLFunctions_1_5::glTranslatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e6f400 0xc820e6f480 0xc820e6f560] } +&{glUnmapBuffer QOpenGLFunctions_1_5::glUnmapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false GLboolean [0xc820e6f700] } +&{glVertex2d QOpenGLFunctions_1_5::glVertex2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e6f960 0xc820e6f9e0] } +&{glVertex2dv QOpenGLFunctions_1_5::glVertex2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e6fba0] } +&{glVertex2f QOpenGLFunctions_1_5::glVertex2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e6fda0 0xc820e6fe80] } +&{glVertex2fv QOpenGLFunctions_1_5::glVertex2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820e6ffe0] } +&{glVertex2i QOpenGLFunctions_1_5::glVertex2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209b0240 0xc8209b02c0] } +&{glVertex2iv QOpenGLFunctions_1_5::glVertex2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209b04e0] } +&{glVertex2s QOpenGLFunctions_1_5::glVertex2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209b0760 0xc8209b07e0] } +&{glVertex2sv QOpenGLFunctions_1_5::glVertex2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209b09e0] } +&{glVertex3d QOpenGLFunctions_1_5::glVertex3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209b0c20 0xc8209b0d20 0xc8209b0dc0] } +&{glVertex3dv QOpenGLFunctions_1_5::glVertex3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209b0fa0] } +&{glVertex3f QOpenGLFunctions_1_5::glVertex3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209b1220 0xc8209b12a0 0xc8209b13a0] } +&{glVertex3fv QOpenGLFunctions_1_5::glVertex3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209b1580] } +&{glVertex3i QOpenGLFunctions_1_5::glVertex3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209b17e0 0xc8209b1880 0xc8209b1940] } +&{glVertex3iv QOpenGLFunctions_1_5::glVertex3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209b1b40] } +&{glVertex3s QOpenGLFunctions_1_5::glVertex3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209b1de0 0xc8209b1e60 0xc8209b1f60] } +&{glVertex3sv QOpenGLFunctions_1_5::glVertex3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc82099c120] } +&{glVertex4d QOpenGLFunctions_1_5::glVertex4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc82099c3a0 0xc82099c460 0xc82099c4e0 0xc82099c560] } +&{glVertex4dv QOpenGLFunctions_1_5::glVertex4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc82099c7a0] } +&{glVertex4f QOpenGLFunctions_1_5::glVertex4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc82099ca20 0xc82099cac0 0xc82099cb80 0xc82099cc40] } +&{glVertex4fv QOpenGLFunctions_1_5::glVertex4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc82099cde0] } +&{glVertex4i QOpenGLFunctions_1_5::glVertex4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc82099d040 0xc82099d100 0xc82099d1e0 0xc82099d280] } +&{glVertex4iv QOpenGLFunctions_1_5::glVertex4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc82099d420] } +&{glVertex4s QOpenGLFunctions_1_5::glVertex4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc82099d6c0 0xc82099d760 0xc82099d820 0xc82099d8e0] } +&{glVertex4sv QOpenGLFunctions_1_5::glVertex4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc82099dac0] } +&{glVertexPointer QOpenGLFunctions_1_5::glVertexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc82099dca0 0xc82099dd80 0xc82099de80 0xc82099df00] } +&{glViewport QOpenGLFunctions_1_5::glViewport commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8201aa160 0xc8201aa240 0xc8201aa300 0xc8201aa380] } +&{glWindowPos2d QOpenGLFunctions_1_5::glWindowPos2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8201aa580 0xc8201aa600] } +&{glWindowPos2dv QOpenGLFunctions_1_5::glWindowPos2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8201aa800] } +&{glWindowPos2f QOpenGLFunctions_1_5::glWindowPos2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8201aaa40 0xc8201aab00] } +&{glWindowPos2fv QOpenGLFunctions_1_5::glWindowPos2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8201aace0] } +&{glWindowPos2i QOpenGLFunctions_1_5::glWindowPos2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8201aaf00 0xc8201ab020] } +&{glWindowPos2iv QOpenGLFunctions_1_5::glWindowPos2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8201ab220] } +&{glWindowPos2s QOpenGLFunctions_1_5::glWindowPos2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8201ab460 0xc8201ab520] } +&{glWindowPos2sv QOpenGLFunctions_1_5::glWindowPos2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8201ab720] } +&{glWindowPos3d QOpenGLFunctions_1_5::glWindowPos3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8201ab980 0xc8201aba80 0xc8201abb00] } +&{glWindowPos3dv QOpenGLFunctions_1_5::glWindowPos3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8201abd20] } +&{glWindowPos3f QOpenGLFunctions_1_5::glWindowPos3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8201abf80 0xc820978020 0xc8209780a0] } +&{glWindowPos3fv QOpenGLFunctions_1_5::glWindowPos3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc8209782a0] } +&{glWindowPos3i QOpenGLFunctions_1_5::glWindowPos3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820978460 0xc8209784e0 0xc820978560] } +&{glWindowPos3iv QOpenGLFunctions_1_5::glWindowPos3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820978760] } +&{glWindowPos3s QOpenGLFunctions_1_5::glWindowPos3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820978920 0xc8209789c0 0xc820978a40] } +&{glWindowPos3sv QOpenGLFunctions_1_5::glWindowPos3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_1_5.h non plain false false void [0xc820978c40] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions_2_0.txt b/internal/binding/dump/QtGui/QOpenGLFunctions_2_0.txt new file mode 100755 index 00000000..39ce367f --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions_2_0.txt @@ -0,0 +1,582 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions_2_0 QOpenGLFunctions_2_0::QOpenGLFunctions_2_0 commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.cpp non constructor false false [] } +&{initializeOpenGLFunctions QOpenGLFunctions_2_0::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.cpp impure plain false false bool [] } +&{~QOpenGLFunctions_2_0 QOpenGLFunctions_2_0::~QOpenGLFunctions_2_0 commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.cpp non destructor false false [] } +&{glAccum QOpenGLFunctions_2_0::glAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8209798c0 0xc8209799c0] } +&{glActiveTexture QOpenGLFunctions_2_0::glActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820979bc0] } +&{glAlphaFunc QOpenGLFunctions_2_0::glAlphaFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820979de0 0xc820979ea0] } +&{glAreTexturesResident QOpenGLFunctions_2_0::glAreTexturesResident commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false GLboolean [0xc8209a2180 0xc8209a2220 0xc8209a2300] } +&{glArrayElement QOpenGLFunctions_2_0::glArrayElement commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8209a2560] } +&{glAttachShader QOpenGLFunctions_2_0::glAttachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8209a2800 0xc8209a28c0] } +&{glBegin QOpenGLFunctions_2_0::glBegin commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8209a2b80] } +&{glBeginQuery QOpenGLFunctions_2_0::glBeginQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8209a2d80 0xc8209a2e40] } +&{glBindAttribLocation QOpenGLFunctions_2_0::glBindAttribLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8209a3100 0xc8209a3180 0xc8209a3240] } +&{glBindBuffer QOpenGLFunctions_2_0::glBindBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8209a3440 0xc8209a34e0] } +&{glBindTexture QOpenGLFunctions_2_0::glBindTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8209a3740 0xc8209a37e0] } +&{glBitmap QOpenGLFunctions_2_0::glBitmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8209a3aa0 0xc8209a3b60 0xc8209a3c60 0xc8209a3ce0 0xc8209a3da0 0xc8209a3e80 0xc8209a3f80] } +&{glBlendColor QOpenGLFunctions_2_0::glBlendColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82095e180 0xc82095e220 0xc82095e2e0 0xc82095e360] } +&{glBlendEquation QOpenGLFunctions_2_0::glBlendEquation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82095e540] } +&{glBlendEquationSeparate QOpenGLFunctions_2_0::glBlendEquationSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82095e780 0xc82095e800] } +&{glBlendFunc QOpenGLFunctions_2_0::glBlendFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82095ea40 0xc82095eac0] } +&{glBlendFuncSeparate QOpenGLFunctions_2_0::glBlendFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82095ed60 0xc82095ede0 0xc82095eee0 0xc82095efc0] } +&{glBufferData QOpenGLFunctions_2_0::glBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82095f1a0 0xc82095f280 0xc82095f320 0xc82095f3e0] } +&{glBufferSubData QOpenGLFunctions_2_0::glBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82095f5e0 0xc82095f6c0 0xc82095f760 0xc82095f840] } +&{glCallList QOpenGLFunctions_2_0::glCallList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82095fb00] } +&{glCallLists QOpenGLFunctions_2_0::glCallLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82095fd20 0xc82095fe00 0xc82095fea0] } +&{glClear QOpenGLFunctions_2_0::glClear commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82094a0e0] } +&{glClearAccum QOpenGLFunctions_2_0::glClearAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82094a2a0 0xc82094a340 0xc82094a3e0 0xc82094a500] } +&{glClearColor QOpenGLFunctions_2_0::glClearColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82094a740 0xc82094a800 0xc82094a8a0 0xc82094a9a0] } +&{glClearDepth QOpenGLFunctions_2_0::glClearDepth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82094abe0] } +&{glClearIndex QOpenGLFunctions_2_0::glClearIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82094ae60] } +&{glClearStencil QOpenGLFunctions_2_0::glClearStencil commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82094b0a0] } +&{glClientActiveTexture QOpenGLFunctions_2_0::glClientActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82094b3a0] } +&{glClipPlane QOpenGLFunctions_2_0::glClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82094b520 0xc82094b5e0] } +&{glColor3b QOpenGLFunctions_2_0::glColor3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82094b7e0 0xc82094b8a0 0xc82094b940] } +&{glColor3bv QOpenGLFunctions_2_0::glColor3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82094bba0] } +&{glColor3d QOpenGLFunctions_2_0::glColor3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82094be40 0xc82094bec0 0xc82094bf40] } +&{glColor3dv QOpenGLFunctions_2_0::glColor3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820928280] } +&{glColor3f QOpenGLFunctions_2_0::glColor3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820928560 0xc820928600 0xc8209286a0] } +&{glColor3fv QOpenGLFunctions_2_0::glColor3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8209289a0] } +&{glColor3i QOpenGLFunctions_2_0::glColor3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820928c20 0xc820928ce0 0xc820928d80] } +&{glColor3iv QOpenGLFunctions_2_0::glColor3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820929080] } +&{glColor3s QOpenGLFunctions_2_0::glColor3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820929300 0xc820929380 0xc820929460] } +&{glColor3sv QOpenGLFunctions_2_0::glColor3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8209296a0] } +&{glColor3ub QOpenGLFunctions_2_0::glColor3ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8209299a0 0xc820929a20 0xc820929ac0] } +&{glColor3ubv QOpenGLFunctions_2_0::glColor3ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820929ce0] } +&{glColor3ui QOpenGLFunctions_2_0::glColor3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820929fc0 0xc8205b6060 0xc8205b6100] } +&{glColor3uiv QOpenGLFunctions_2_0::glColor3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205b6300] } +&{glColor3us QOpenGLFunctions_2_0::glColor3us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205b6560 0xc8205b6640 0xc8205b66e0] } +&{glColor3usv QOpenGLFunctions_2_0::glColor3usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205b6880] } +&{glColor4b QOpenGLFunctions_2_0::glColor4b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205b6b80 0xc8205b6c00 0xc8205b6ca0 0xc8205b6de0] } +&{glColor4bv QOpenGLFunctions_2_0::glColor4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205b7080] } +&{glColor4d QOpenGLFunctions_2_0::glColor4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205b72c0 0xc8205b7360 0xc8205b73e0 0xc8205b7480] } +&{glColor4dv QOpenGLFunctions_2_0::glColor4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205b7700] } +&{glColor4f QOpenGLFunctions_2_0::glColor4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205b79e0 0xc8205b7a80 0xc8205b7b60 0xc8205b7c00] } +&{glColor4fv QOpenGLFunctions_2_0::glColor4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205b7ec0] } +&{glColor4i QOpenGLFunctions_2_0::glColor4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82091c140 0xc82091c1e0 0xc82091c2e0 0xc82091c3a0] } +&{glColor4iv QOpenGLFunctions_2_0::glColor4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82091c620] } +&{glColor4s QOpenGLFunctions_2_0::glColor4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82091c8c0 0xc82091c960 0xc82091c9e0 0xc82091ca80] } +&{glColor4sv QOpenGLFunctions_2_0::glColor4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82091ccc0] } +&{glColor4ub QOpenGLFunctions_2_0::glColor4ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82091cf00 0xc82091cfc0 0xc82091d0e0 0xc82091d160] } +&{glColor4ubv QOpenGLFunctions_2_0::glColor4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82091d360] } +&{glColor4ui QOpenGLFunctions_2_0::glColor4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82091d5e0 0xc82091d660 0xc82091d740 0xc82091d7e0] } +&{glColor4uiv QOpenGLFunctions_2_0::glColor4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82091d9c0] } +&{glColor4us QOpenGLFunctions_2_0::glColor4us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82091dc60 0xc82091dd20 0xc82091dde0 0xc82091de60] } +&{glColor4usv QOpenGLFunctions_2_0::glColor4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820e42000] } +&{glColorMask QOpenGLFunctions_2_0::glColorMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820e421c0 0xc820e42260 0xc820e42340 0xc820e423c0] } +&{glColorMaterial QOpenGLFunctions_2_0::glColorMaterial commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820e425a0 0xc820e42620] } +&{glColorPointer QOpenGLFunctions_2_0::glColorPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820e42800 0xc820e42880 0xc820e42900 0xc820e429c0] } +&{glColorSubTable QOpenGLFunctions_2_0::glColorSubTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820e42b60 0xc820e42c20 0xc820e42cc0 0xc820e42d60 0xc820e42e20 0xc820e42ea0] } +&{glColorTable QOpenGLFunctions_2_0::glColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820e43060 0xc820e43120 0xc820e431c0 0xc820e43240 0xc820e43320 0xc820e433c0] } +&{glColorTableParameterfv QOpenGLFunctions_2_0::glColorTableParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820e435e0 0xc820e43660 0xc820e43700] } +&{glColorTableParameteriv QOpenGLFunctions_2_0::glColorTableParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820e43920 0xc820e43a00 0xc820e43a80] } +&{glCompileShader QOpenGLFunctions_2_0::glCompileShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820e43c60] } +&{glCompressedTexImage1D QOpenGLFunctions_2_0::glCompressedTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820e43e80 0xc820e43f20 0xc820e43fa0 0xc820908080 0xc820908140 0xc820908200 0xc820908280] } +&{glCompressedTexImage2D QOpenGLFunctions_2_0::glCompressedTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8209084c0 0xc820908560 0xc8209085e0 0xc8209086a0 0xc820908740 0xc820908820 0xc8209088c0 0xc820908940] } +&{glCompressedTexImage3D QOpenGLFunctions_2_0::glCompressedTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820908b80 0xc820908ca0 0xc820908d20 0xc820908e40 0xc820908ee0 0xc820908f60 0xc820909000 0xc820909100 0xc8209091a0] } +&{glCompressedTexSubImage1D QOpenGLFunctions_2_0::glCompressedTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820909420 0xc820909520 0xc8209095a0 0xc820909640 0xc820909720 0xc8209097e0 0xc820909900] } +&{glCompressedTexSubImage2D QOpenGLFunctions_2_0::glCompressedTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820909b40 0xc820909bc0 0xc820909ca0 0xc820909d40 0xc820909de0 0xc820909e80 0xc820909f80 0xc8208f8020 0xc8208f80c0] } +&{glCompressedTexSubImage3D QOpenGLFunctions_2_0::glCompressedTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208f8360 0xc8208f8440 0xc8208f84c0 0xc8208f85a0 0xc8208f86a0 0xc8208f8740 0xc8208f8820 0xc8208f88c0 0xc8208f89a0 0xc8208f8a60 0xc8208f8b60] } +&{glConvolutionFilter1D QOpenGLFunctions_2_0::glConvolutionFilter1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208f8de0 0xc8208f8ea0 0xc8208f8f60 0xc8208f8fe0 0xc8208f90a0 0xc8208f9180] } +&{glConvolutionFilter2D QOpenGLFunctions_2_0::glConvolutionFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208f93a0 0xc8208f9460 0xc8208f9500 0xc8208f95a0 0xc8208f9660 0xc8208f9700 0xc8208f97c0] } +&{glConvolutionParameterf QOpenGLFunctions_2_0::glConvolutionParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208f99a0 0xc8208f9a20 0xc8208f9b40] } +&{glConvolutionParameterfv QOpenGLFunctions_2_0::glConvolutionParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208f9e20 0xc8208f9ee0 0xc8208f9fc0] } +&{glConvolutionParameteri QOpenGLFunctions_2_0::glConvolutionParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208f61e0 0xc8208f62a0 0xc8208f6340] } +&{glConvolutionParameteriv QOpenGLFunctions_2_0::glConvolutionParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208f6560 0xc8208f6640 0xc8208f6720] } +&{glCopyColorSubTable QOpenGLFunctions_2_0::glCopyColorSubTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208f6a00 0xc8208f6a80 0xc8208f6b20 0xc8208f6bc0 0xc8208f6d00] } +&{glCopyColorTable QOpenGLFunctions_2_0::glCopyColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208f6f00 0xc8208f6f80 0xc8208f7020 0xc8208f7100 0xc8208f7200] } +&{glCopyConvolutionFilter1D QOpenGLFunctions_2_0::glCopyConvolutionFilter1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208f73e0 0xc8208f7460 0xc8208f74e0 0xc8208f75c0 0xc8208f7680] } +&{glCopyConvolutionFilter2D QOpenGLFunctions_2_0::glCopyConvolutionFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208f7920 0xc8208f79e0 0xc8208f7ae0 0xc8208f7ba0 0xc8208f7c40 0xc8208f7cc0] } +&{glCopyPixels QOpenGLFunctions_2_0::glCopyPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208f7ea0 0xc8208f7f60 0xc8208d2040 0xc8208d20c0 0xc8208d2200] } +&{glCopyTexImage1D QOpenGLFunctions_2_0::glCopyTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208d23a0 0xc8208d2420 0xc8208d24e0 0xc8208d25a0 0xc8208d2660 0xc8208d26e0 0xc8208d27e0] } +&{glCopyTexImage2D QOpenGLFunctions_2_0::glCopyTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208d2960 0xc8208d2a00 0xc8208d2ac0 0xc8208d2b40 0xc8208d2be0 0xc8208d2c60 0xc8208d2d00 0xc8208d2dc0] } +&{glCopyTexSubImage1D QOpenGLFunctions_2_0::glCopyTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208d3040 0xc8208d3100 0xc8208d3180 0xc8208d3200 0xc8208d32e0 0xc8208d33c0] } +&{glCopyTexSubImage2D QOpenGLFunctions_2_0::glCopyTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208d35c0 0xc8208d3680 0xc8208d3740 0xc8208d37e0 0xc8208d3880 0xc8208d3940 0xc8208d39c0 0xc8208d3a80] } +&{glCopyTexSubImage3D QOpenGLFunctions_2_0::glCopyTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208d3c80 0xc8208d3d60 0xc8208d3de0 0xc8208d3e60 0xc8208d3f40 0xc8208ae060 0xc8208ae160 0xc8208ae280 0xc8208ae400] } +&{glCreateProgram QOpenGLFunctions_2_0::glCreateProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false GLuint [] } +&{glCreateShader QOpenGLFunctions_2_0::glCreateShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false GLuint [0xc8208ae900] } +&{glCullFace QOpenGLFunctions_2_0::glCullFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208aeda0] } +&{glDeleteBuffers QOpenGLFunctions_2_0::glDeleteBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208af0a0 0xc8208af200] } +&{glDeleteLists QOpenGLFunctions_2_0::glDeleteLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208af4a0 0xc8208af620] } +&{glDeleteProgram QOpenGLFunctions_2_0::glDeleteProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208af860] } +&{glDeleteQueries QOpenGLFunctions_2_0::glDeleteQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208afba0 0xc8208afce0] } +&{glDeleteShader QOpenGLFunctions_2_0::glDeleteShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208affe0] } +&{glDeleteTextures QOpenGLFunctions_2_0::glDeleteTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82089c1e0 0xc82089c340] } +&{glDepthFunc QOpenGLFunctions_2_0::glDepthFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82089c760] } +&{glDepthMask QOpenGLFunctions_2_0::glDepthMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82089cac0] } +&{glDepthRange QOpenGLFunctions_2_0::glDepthRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82089cda0 0xc82089ce80] } +&{glDetachShader QOpenGLFunctions_2_0::glDetachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82089d0e0 0xc82089d280] } +&{glDisable QOpenGLFunctions_2_0::glDisable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82089d600] } +&{glDisableClientState QOpenGLFunctions_2_0::glDisableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82089d9c0] } +&{glDisableVertexAttribArray QOpenGLFunctions_2_0::glDisableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82089de40] } +&{glDrawArrays QOpenGLFunctions_2_0::glDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82078c100 0xc82078c180 0xc82078c200] } +&{glDrawBuffer QOpenGLFunctions_2_0::glDrawBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82078c4a0] } +&{glDrawBuffers QOpenGLFunctions_2_0::glDrawBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82078c680 0xc82078c780] } +&{glDrawElements QOpenGLFunctions_2_0::glDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82078c960 0xc82078ca20 0xc82078caa0 0xc82078cb40] } +&{glDrawPixels QOpenGLFunctions_2_0::glDrawPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82078cd00 0xc82078cde0 0xc82078cec0 0xc82078cf60 0xc82078d000] } +&{glDrawRangeElements QOpenGLFunctions_2_0::glDrawRangeElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82078d200 0xc82078d2a0 0xc82078d3c0 0xc82078d460 0xc82078d500 0xc82078d600] } +&{glEdgeFlag QOpenGLFunctions_2_0::glEdgeFlag commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82078d8c0] } +&{glEdgeFlagPointer QOpenGLFunctions_2_0::glEdgeFlagPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82078db20 0xc82078dc20] } +&{glEdgeFlagv QOpenGLFunctions_2_0::glEdgeFlagv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82078dde0] } +&{glEnable QOpenGLFunctions_2_0::glEnable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208882a0] } +&{glEnableClientState QOpenGLFunctions_2_0::glEnableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820888720] } +&{glEnableVertexAttribArray QOpenGLFunctions_2_0::glEnableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820888b40] } +&{glEnd QOpenGLFunctions_2_0::glEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [] } +&{glEndList QOpenGLFunctions_2_0::glEndList commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [] } +&{glEndQuery QOpenGLFunctions_2_0::glEndQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208893e0] } +&{glEvalCoord1d QOpenGLFunctions_2_0::glEvalCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820889720] } +&{glEvalCoord1dv QOpenGLFunctions_2_0::glEvalCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820889ac0] } +&{glEvalCoord1f QOpenGLFunctions_2_0::glEvalCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820889f40] } +&{glEvalCoord1fv QOpenGLFunctions_2_0::glEvalCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820e7e160] } +&{glEvalCoord2d QOpenGLFunctions_2_0::glEvalCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820e7e320 0xc820e7e3e0] } +&{glEvalCoord2dv QOpenGLFunctions_2_0::glEvalCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820e7e5a0] } +&{glEvalCoord2f QOpenGLFunctions_2_0::glEvalCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820e7e740 0xc820e7e7e0] } +&{glEvalCoord2fv QOpenGLFunctions_2_0::glEvalCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820e7e9a0] } +&{glEvalMesh1 QOpenGLFunctions_2_0::glEvalMesh1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820e7eb40 0xc820e7ebe0 0xc820e7eca0] } +&{glEvalMesh2 QOpenGLFunctions_2_0::glEvalMesh2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820e7ee60 0xc820e7eee0 0xc820e7ef80 0xc820e7f020 0xc820e7f100] } +&{glEvalPoint1 QOpenGLFunctions_2_0::glEvalPoint1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820e7f2e0] } +&{glEvalPoint2 QOpenGLFunctions_2_0::glEvalPoint2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820e7f4c0 0xc820e7f540] } +&{glFeedbackBuffer QOpenGLFunctions_2_0::glFeedbackBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820e7f700 0xc820e7f7a0 0xc820e7f840] } +&{glFinish QOpenGLFunctions_2_0::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [] } +&{glFlush QOpenGLFunctions_2_0::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [] } +&{glFogCoordPointer QOpenGLFunctions_2_0::glFogCoordPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820e7fcc0 0xc820e7fd60 0xc820e7fe00] } +&{glFogCoordd QOpenGLFunctions_2_0::glFogCoordd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820876020] } +&{glFogCoorddv QOpenGLFunctions_2_0::glFogCoorddv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208763c0] } +&{glFogCoordf QOpenGLFunctions_2_0::glFogCoordf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820876760] } +&{glFogCoordfv QOpenGLFunctions_2_0::glFogCoordfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820876a40] } +&{glFogf QOpenGLFunctions_2_0::glFogf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820876ee0 0xc820877040] } +&{glFogfv QOpenGLFunctions_2_0::glFogfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820877360 0xc820877520] } +&{glFogi QOpenGLFunctions_2_0::glFogi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820877900 0xc8208779c0] } +&{glFogiv QOpenGLFunctions_2_0::glFogiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820877da0 0xc820877e40] } +&{glFrontFace QOpenGLFunctions_2_0::glFrontFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82085e160] } +&{glFrustum QOpenGLFunctions_2_0::glFrustum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82085e580 0xc82085e700 0xc82085e820 0xc82085e900 0xc82085eb00 0xc82085ec40] } +&{glGenBuffers QOpenGLFunctions_2_0::glGenBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82085eee0 0xc82085f020] } +&{glGenLists QOpenGLFunctions_2_0::glGenLists commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false GLuint [0xc82085f400] } +&{glGenQueries QOpenGLFunctions_2_0::glGenQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82085f780 0xc82085f800] } +&{glGenTextures QOpenGLFunctions_2_0::glGenTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82085fb40 0xc82085fc00] } +&{glGetActiveAttrib QOpenGLFunctions_2_0::glGetActiveAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82084c000 0xc82084c0c0 0xc82084c260 0xc82084c320 0xc82084c400 0xc82084c540 0xc82084c5e0] } +&{glGetActiveUniform QOpenGLFunctions_2_0::glGetActiveUniform commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82084c8e0 0xc82084ca40 0xc82084cb20 0xc82084cd00 0xc82084cdc0 0xc82084cec0 0xc82084cf80] } +&{glGetAttachedShaders QOpenGLFunctions_2_0::glGetAttachedShaders commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82084d2c0 0xc82084d340 0xc82084d480 0xc82084d560] } +&{glGetAttribLocation QOpenGLFunctions_2_0::glGetAttribLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false GLint [0xc82084d9a0 0xc82084da80] } +&{glGetBooleanv QOpenGLFunctions_2_0::glGetBooleanv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82084ddc0 0xc82084de60] } +&{glGetBufferParameteriv QOpenGLFunctions_2_0::glGetBufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82077a100 0xc82077a1e0 0xc82077a2c0] } +&{glGetBufferPointerv QOpenGLFunctions_2_0::glGetBufferPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82077a5a0 0xc82077a640 0xc82077a700] } +&{glGetBufferSubData QOpenGLFunctions_2_0::glGetBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82077a9a0 0xc82077aa40 0xc82077ab00 0xc82077ab80] } +&{glGetClipPlane QOpenGLFunctions_2_0::glGetClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82077ad60 0xc82077ae00] } +&{glGetColorTable QOpenGLFunctions_2_0::glGetColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82077afe0 0xc82077b060 0xc82077b0e0 0xc82077b160] } +&{glGetColorTableParameterfv QOpenGLFunctions_2_0::glGetColorTableParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82077b3c0 0xc82077b440 0xc82077b560] } +&{glGetColorTableParameteriv QOpenGLFunctions_2_0::glGetColorTableParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82077b780 0xc82077b800 0xc82077b8a0] } +&{glGetCompressedTexImage QOpenGLFunctions_2_0::glGetCompressedTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82077bac0 0xc82077bb80 0xc82077bc00] } +&{glGetConvolutionFilter QOpenGLFunctions_2_0::glGetConvolutionFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82077be20 0xc82077bf60 0xc820a54060 0xc820a54120] } +&{glGetConvolutionParameterfv QOpenGLFunctions_2_0::glGetConvolutionParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820a54500 0xc820a545e0 0xc820a54720] } +&{glGetConvolutionParameteriv QOpenGLFunctions_2_0::glGetConvolutionParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820a54a80 0xc820a54b80 0xc820a54c60] } +&{glGetDoublev QOpenGLFunctions_2_0::glGetDoublev commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820a54ec0 0xc820a55000] } +&{glGetError QOpenGLFunctions_2_0::glGetError commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false GLenum [] } +&{glGetFloatv QOpenGLFunctions_2_0::glGetFloatv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820a55480 0xc820a555a0] } +&{glGetHistogram QOpenGLFunctions_2_0::glGetHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820a557a0 0xc820a55880 0xc820a55980 0xc820a55b20 0xc820a55c20] } +&{glGetHistogramParameterfv QOpenGLFunctions_2_0::glGetHistogramParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820a55fa0 0xc82083e040 0xc82083e100] } +&{glGetHistogramParameteriv QOpenGLFunctions_2_0::glGetHistogramParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82083e3e0 0xc82083e4e0 0xc82083e600] } +&{glGetIntegerv QOpenGLFunctions_2_0::glGetIntegerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82083e8e0 0xc82083e980] } +&{glGetLightfv QOpenGLFunctions_2_0::glGetLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82083ec60 0xc82083ed60 0xc82083ee00] } +&{glGetLightiv QOpenGLFunctions_2_0::glGetLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82083f0a0 0xc82083f180 0xc82083f220] } +&{glGetMapdv QOpenGLFunctions_2_0::glGetMapdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82083f4a0 0xc82083f560 0xc82083f680] } +&{glGetMapfv QOpenGLFunctions_2_0::glGetMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82083f980 0xc82083fa40 0xc82083fb00] } +&{glGetMapiv QOpenGLFunctions_2_0::glGetMapiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82083fe00 0xc82083fee0 0xc82083ff80] } +&{glGetMaterialfv QOpenGLFunctions_2_0::glGetMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820784180 0xc820784260 0xc820784360] } +&{glGetMaterialiv QOpenGLFunctions_2_0::glGetMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820784560 0xc820784600 0xc820784740] } +&{glGetMinmax QOpenGLFunctions_2_0::glGetMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820784a60 0xc820784b00 0xc820784c00 0xc820784ca0 0xc820784da0] } +&{glGetMinmaxParameterfv QOpenGLFunctions_2_0::glGetMinmaxParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207851e0 0xc8207852a0 0xc820785380] } +&{glGetMinmaxParameteriv QOpenGLFunctions_2_0::glGetMinmaxParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207857a0 0xc8207858a0 0xc8207859a0] } +&{glGetPixelMapfv QOpenGLFunctions_2_0::glGetPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820785c40 0xc820785d00] } +&{glGetPixelMapuiv QOpenGLFunctions_2_0::glGetPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820785fa0 0xc820838080] } +&{glGetPixelMapusv QOpenGLFunctions_2_0::glGetPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820838360 0xc820838460] } +&{glGetPointerv QOpenGLFunctions_2_0::glGetPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820838760 0xc8208388c0] } +&{glGetPolygonStipple QOpenGLFunctions_2_0::glGetPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820838be0] } +&{glGetProgramInfoLog QOpenGLFunctions_2_0::glGetProgramInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820838f20 0xc820839060 0xc820839140 0xc8208392a0] } +&{glGetProgramiv QOpenGLFunctions_2_0::glGetProgramiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820839640 0xc820839740 0xc8208397c0] } +&{glGetQueryObjectiv QOpenGLFunctions_2_0::glGetQueryObjectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820839b60 0xc820839c60 0xc820839da0] } +&{glGetQueryObjectuiv QOpenGLFunctions_2_0::glGetQueryObjectuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820822140 0xc820822200 0xc820822360] } +&{glGetQueryiv QOpenGLFunctions_2_0::glGetQueryiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820822600 0xc8208226a0 0xc8208227e0] } +&{glGetSeparableFilter QOpenGLFunctions_2_0::glGetSeparableFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820822a40 0xc820822b20 0xc820822bc0 0xc820822c80 0xc820822d20 0xc820822e20] } +&{glGetShaderInfoLog QOpenGLFunctions_2_0::glGetShaderInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820823240 0xc8208232e0 0xc820823440 0xc8208234c0] } +&{glGetShaderSource QOpenGLFunctions_2_0::glGetShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820823860 0xc820823980 0xc820823ac0 0xc820823bc0] } +&{glGetShaderiv QOpenGLFunctions_2_0::glGetShaderiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820823e40 0xc820823f20 0xc82080e040] } +&{glGetString QOpenGLFunctions_2_0::glGetString commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false const GLubyte * [0xc82080e200] } +&{glGetTexEnvfv QOpenGLFunctions_2_0::glGetTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82080e460 0xc82080e560 0xc82080e600] } +&{glGetTexEnviv QOpenGLFunctions_2_0::glGetTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82080e880 0xc82080e960 0xc82080ea40] } +&{glGetTexGendv QOpenGLFunctions_2_0::glGetTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82080ec80 0xc82080ed00 0xc82080ee00] } +&{glGetTexGenfv QOpenGLFunctions_2_0::glGetTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82080f040 0xc82080f0e0 0xc82080f1c0] } +&{glGetTexGeniv QOpenGLFunctions_2_0::glGetTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82080f3e0 0xc82080f4c0 0xc82080f5a0] } +&{glGetTexImage QOpenGLFunctions_2_0::glGetTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82080f7e0 0xc82080f8c0 0xc82080f980 0xc82080fa60 0xc82080fb20] } +&{glGetTexLevelParameterfv QOpenGLFunctions_2_0::glGetTexLevelParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82080fd00 0xc82080fd80 0xc82080fe60 0xc82080ff00] } +&{glGetTexLevelParameteriv QOpenGLFunctions_2_0::glGetTexLevelParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208c6120 0xc8208c6200 0xc8208c62e0 0xc8208c63e0] } +&{glGetTexParameterfv QOpenGLFunctions_2_0::glGetTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208c6720 0xc8208c67c0 0xc8208c68e0] } +&{glGetTexParameteriv QOpenGLFunctions_2_0::glGetTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208c6be0 0xc8208c6ce0 0xc8208c6d80] } +&{glGetUniformLocation QOpenGLFunctions_2_0::glGetUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false GLint [0xc8208c6fe0 0xc8208c7120] } +&{glGetUniformfv QOpenGLFunctions_2_0::glGetUniformfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208c7340 0xc8208c7420 0xc8208c7500] } +&{glGetUniformiv QOpenGLFunctions_2_0::glGetUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208c7740 0xc8208c7880 0xc8208c7960] } +&{glGetVertexAttribPointerv QOpenGLFunctions_2_0::glGetVertexAttribPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208c7ca0 0xc8208c7d40 0xc8208c7e40] } +&{glGetVertexAttribdv QOpenGLFunctions_2_0::glGetVertexAttribdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82080c160 0xc82080c220 0xc82080c320] } +&{glGetVertexAttribfv QOpenGLFunctions_2_0::glGetVertexAttribfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82080c620 0xc82080c6c0 0xc82080c820] } +&{glGetVertexAttribiv QOpenGLFunctions_2_0::glGetVertexAttribiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82080cb20 0xc82080cc40 0xc82080cdc0] } +&{glHint QOpenGLFunctions_2_0::glHint commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82080d1a0 0xc82080d220] } +&{glHistogram QOpenGLFunctions_2_0::glHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82080d540 0xc82080d620 0xc82080d720 0xc82080d880] } +&{glIndexMask QOpenGLFunctions_2_0::glIndexMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82080dc40] } +&{glIndexPointer QOpenGLFunctions_2_0::glIndexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82080df00 0xc8207f8000 0xc8207f8140] } +&{glIndexd QOpenGLFunctions_2_0::glIndexd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207f8460] } +&{glIndexdv QOpenGLFunctions_2_0::glIndexdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207f86e0] } +&{glIndexf QOpenGLFunctions_2_0::glIndexf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207f89e0] } +&{glIndexfv QOpenGLFunctions_2_0::glIndexfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207f8c40] } +&{glIndexi QOpenGLFunctions_2_0::glIndexi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207f8ec0] } +&{glIndexiv QOpenGLFunctions_2_0::glIndexiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207f91a0] } +&{glIndexs QOpenGLFunctions_2_0::glIndexs commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207f94a0] } +&{glIndexsv QOpenGLFunctions_2_0::glIndexsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207f9760] } +&{glIndexub QOpenGLFunctions_2_0::glIndexub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207f99c0] } +&{glIndexubv QOpenGLFunctions_2_0::glIndexubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207f9c80] } +&{glInitNames QOpenGLFunctions_2_0::glInitNames commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [] } +&{glInterleavedArrays QOpenGLFunctions_2_0::glInterleavedArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207bc0c0 0xc8207bc1c0 0xc8207bc280] } +&{glIsBuffer QOpenGLFunctions_2_0::glIsBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false GLboolean [0xc8207bc5c0] } +&{glIsEnabled QOpenGLFunctions_2_0::glIsEnabled commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false GLboolean [0xc8207bc840] } +&{glIsList QOpenGLFunctions_2_0::glIsList commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false GLboolean [0xc8207bcc80] } +&{glIsProgram QOpenGLFunctions_2_0::glIsProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false GLboolean [0xc8207bd000] } +&{glIsQuery QOpenGLFunctions_2_0::glIsQuery commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false GLboolean [0xc8207bd4a0] } +&{glIsShader QOpenGLFunctions_2_0::glIsShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false GLboolean [0xc8207bd940] } +&{glIsTexture QOpenGLFunctions_2_0::glIsTexture commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false GLboolean [0xc8207bdba0] } +&{glLightModelf QOpenGLFunctions_2_0::glLightModelf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207bdd60 0xc8207bde00] } +&{glLightModelfv QOpenGLFunctions_2_0::glLightModelfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207a8040 0xc8207a81c0] } +&{glLightModeli QOpenGLFunctions_2_0::glLightModeli commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207a8460 0xc8207a85c0] } +&{glLightModeliv QOpenGLFunctions_2_0::glLightModeliv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207a8920 0xc8207a8a80] } +&{glLightf QOpenGLFunctions_2_0::glLightf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207a8e80 0xc8207a8fc0 0xc8207a9120] } +&{glLightfv QOpenGLFunctions_2_0::glLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207a9520 0xc8207a9600 0xc8207a9700] } +&{glLighti QOpenGLFunctions_2_0::glLighti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207a9aa0 0xc8207a9b80 0xc8207a9c40] } +&{glLightiv QOpenGLFunctions_2_0::glLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820b0e040 0xc820b0e160 0xc820b0e280] } +&{glLineStipple QOpenGLFunctions_2_0::glLineStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820b0e5c0 0xc820b0e660] } +&{glLineWidth QOpenGLFunctions_2_0::glLineWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820b0e960] } +&{glLinkProgram QOpenGLFunctions_2_0::glLinkProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820b0ebe0] } +&{glListBase QOpenGLFunctions_2_0::glListBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820b0f0a0] } +&{glLoadIdentity QOpenGLFunctions_2_0::glLoadIdentity commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [] } +&{glLoadMatrixd QOpenGLFunctions_2_0::glLoadMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820b0f4c0] } +&{glLoadMatrixf QOpenGLFunctions_2_0::glLoadMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820b0f7c0] } +&{glLoadName QOpenGLFunctions_2_0::glLoadName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820b0fbe0] } +&{glLoadTransposeMatrixd QOpenGLFunctions_2_0::glLoadTransposeMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820b0ffc0] } +&{glLoadTransposeMatrixf QOpenGLFunctions_2_0::glLoadTransposeMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820796360] } +&{glLogicOp QOpenGLFunctions_2_0::glLogicOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820796740] } +&{glMap1d QOpenGLFunctions_2_0::glMap1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820796a00 0xc820796ae0 0xc820796ba0 0xc820796d00 0xc820796e20 0xc820796fe0] } +&{glMap1f QOpenGLFunctions_2_0::glMap1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820797400 0xc820797520 0xc8207976c0 0xc8207977e0 0xc820797900 0xc8207979a0] } +&{glMap2d QOpenGLFunctions_2_0::glMap2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820797e40 0xc820b06040 0xc820b061e0 0xc820b06340 0xc820b06440 0xc820b06500 0xc820b06600 0xc820b06780 0xc820b068c0 0xc820b069c0] } +&{glMap2f QOpenGLFunctions_2_0::glMap2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820b06de0 0xc820b06ec0 0xc820b06fe0 0xc820b07080 0xc820b071e0 0xc820b072e0 0xc820b073e0 0xc820b07480 0xc820b075e0 0xc820b076e0] } +&{glMapBuffer QOpenGLFunctions_2_0::glMapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false GLvoid * [0xc820b07900 0xc820b07a00] } +&{glMapGrid1d QOpenGLFunctions_2_0::glMapGrid1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820b07c00 0xc820b07ce0 0xc820b07dc0] } +&{glMapGrid1f QOpenGLFunctions_2_0::glMapGrid1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820b07fe0 0xc820ae60c0 0xc820ae6160] } +&{glMapGrid2d QOpenGLFunctions_2_0::glMapGrid2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820ae6380 0xc820ae6440 0xc820ae6540 0xc820ae6620 0xc820ae6700 0xc820ae6800] } +&{glMapGrid2f QOpenGLFunctions_2_0::glMapGrid2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820ae6a60 0xc820ae6b20 0xc820ae6c20 0xc820ae6d00 0xc820ae6e20 0xc820ae6f00] } +&{glMaterialf QOpenGLFunctions_2_0::glMaterialf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820ae7160 0xc820ae7260 0xc820ae7320] } +&{glMaterialfv QOpenGLFunctions_2_0::glMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820ae7540 0xc820ae7600 0xc820ae76c0] } +&{glMateriali QOpenGLFunctions_2_0::glMateriali commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820ae7900 0xc820ae7a20 0xc820ae7ac0] } +&{glMaterialiv QOpenGLFunctions_2_0::glMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820ae7d20 0xc820ae7e00 0xc820ae7ec0] } +&{glMatrixMode QOpenGLFunctions_2_0::glMatrixMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207801c0] } +&{glMinmax QOpenGLFunctions_2_0::glMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820780440 0xc820780520 0xc8207805a0] } +&{glMultMatrixd QOpenGLFunctions_2_0::glMultMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820780860] } +&{glMultMatrixf QOpenGLFunctions_2_0::glMultMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820780b00] } +&{glMultTransposeMatrixd QOpenGLFunctions_2_0::glMultTransposeMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820780e20] } +&{glMultTransposeMatrixf QOpenGLFunctions_2_0::glMultTransposeMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207811a0] } +&{glMultiDrawArrays QOpenGLFunctions_2_0::glMultiDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820781480 0xc8207815a0 0xc820781640 0xc820781740] } +&{glMultiDrawElements QOpenGLFunctions_2_0::glMultiDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820781a20 0xc820781b00 0xc820781be0 0xc820781d20 0xc820781f80] } +&{glMultiTexCoord1d QOpenGLFunctions_2_0::glMultiTexCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207682e0 0xc8207683c0] } +&{glMultiTexCoord1dv QOpenGLFunctions_2_0::glMultiTexCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820768720 0xc820768820] } +&{glMultiTexCoord1f QOpenGLFunctions_2_0::glMultiTexCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820768b60 0xc820768c00] } +&{glMultiTexCoord1fv QOpenGLFunctions_2_0::glMultiTexCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820768fa0 0xc8207690a0] } +&{glMultiTexCoord1i QOpenGLFunctions_2_0::glMultiTexCoord1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820769380 0xc820769420] } +&{glMultiTexCoord1iv QOpenGLFunctions_2_0::glMultiTexCoord1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820769720 0xc820769860] } +&{glMultiTexCoord1s QOpenGLFunctions_2_0::glMultiTexCoord1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820769be0 0xc820769d00] } +&{glMultiTexCoord1sv QOpenGLFunctions_2_0::glMultiTexCoord1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820769f60 0xc820758020] } +&{glMultiTexCoord2d QOpenGLFunctions_2_0::glMultiTexCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820758420 0xc820758500 0xc820758640] } +&{glMultiTexCoord2dv QOpenGLFunctions_2_0::glMultiTexCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820758a20 0xc820758b80] } +&{glMultiTexCoord2f QOpenGLFunctions_2_0::glMultiTexCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820758f00 0xc820758fa0 0xc820759120] } +&{glMultiTexCoord2fv QOpenGLFunctions_2_0::glMultiTexCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207594a0 0xc8207595e0] } +&{glMultiTexCoord2i QOpenGLFunctions_2_0::glMultiTexCoord2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820759960 0xc820759a80 0xc820759b60] } +&{glMultiTexCoord2iv QOpenGLFunctions_2_0::glMultiTexCoord2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820759fe0 0xc8209f20a0] } +&{glMultiTexCoord2s QOpenGLFunctions_2_0::glMultiTexCoord2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8209f2380 0xc8209f2400 0xc8209f2480] } +&{glMultiTexCoord2sv QOpenGLFunctions_2_0::glMultiTexCoord2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8209f2780 0xc8209f2840] } +&{glMultiTexCoord3d QOpenGLFunctions_2_0::glMultiTexCoord3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8209f2ae0 0xc8209f2be0 0xc8209f2c80 0xc8209f2d20] } +&{glMultiTexCoord3dv QOpenGLFunctions_2_0::glMultiTexCoord3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8209f3000 0xc8209f3080] } +&{glMultiTexCoord3f QOpenGLFunctions_2_0::glMultiTexCoord3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8209f32c0 0xc8209f3360 0xc8209f3420 0xc8209f3500] } +&{glMultiTexCoord3fv QOpenGLFunctions_2_0::glMultiTexCoord3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8209f37c0 0xc8209f3880] } +&{glMultiTexCoord3i QOpenGLFunctions_2_0::glMultiTexCoord3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8209f3ac0 0xc8209f3b80 0xc8209f3c20 0xc8209f3cc0] } +&{glMultiTexCoord3iv QOpenGLFunctions_2_0::glMultiTexCoord3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8209f3f80 0xc820740020] } +&{glMultiTexCoord3s QOpenGLFunctions_2_0::glMultiTexCoord3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820740420 0xc8207404e0 0xc820740600 0xc8207406c0] } +&{glMultiTexCoord3sv QOpenGLFunctions_2_0::glMultiTexCoord3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207409a0 0xc820740a40] } +&{glMultiTexCoord4d QOpenGLFunctions_2_0::glMultiTexCoord4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820740de0 0xc820740f40 0xc820741000 0xc820741100 0xc8207411a0] } +&{glMultiTexCoord4dv QOpenGLFunctions_2_0::glMultiTexCoord4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820741520 0xc8207415a0] } +&{glMultiTexCoord4f QOpenGLFunctions_2_0::glMultiTexCoord4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207418e0 0xc8207419a0 0xc820741a80 0xc820741be0 0xc820741da0] } +&{glMultiTexCoord4fv QOpenGLFunctions_2_0::glMultiTexCoord4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82072c100 0xc82072c240] } +&{glMultiTexCoord4i QOpenGLFunctions_2_0::glMultiTexCoord4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82072c520 0xc82072c5c0 0xc82072c660 0xc82072c7c0 0xc82072c8c0] } +&{glMultiTexCoord4iv QOpenGLFunctions_2_0::glMultiTexCoord4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82072cc40 0xc82072cd20] } +&{glMultiTexCoord4s QOpenGLFunctions_2_0::glMultiTexCoord4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82072d020 0xc82072d0a0 0xc82072d140 0xc82072d280 0xc82072d3c0] } +&{glMultiTexCoord4sv QOpenGLFunctions_2_0::glMultiTexCoord4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82072d740 0xc82072d7c0] } +&{glNewList QOpenGLFunctions_2_0::glNewList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82072db60 0xc82072dd00] } +&{glNormal3b QOpenGLFunctions_2_0::glNormal3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820716120 0xc820716240 0xc820716320] } +&{glNormal3bv QOpenGLFunctions_2_0::glNormal3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820716560] } +&{glNormal3d QOpenGLFunctions_2_0::glNormal3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820716960 0xc820716a20 0xc820716ae0] } +&{glNormal3dv QOpenGLFunctions_2_0::glNormal3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820716de0] } +&{glNormal3f QOpenGLFunctions_2_0::glNormal3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820717040 0xc8207171a0 0xc820717240] } +&{glNormal3fv QOpenGLFunctions_2_0::glNormal3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820717460] } +&{glNormal3i QOpenGLFunctions_2_0::glNormal3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820717740 0xc820717840 0xc820717940] } +&{glNormal3iv QOpenGLFunctions_2_0::glNormal3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820717bc0] } +&{glNormal3s QOpenGLFunctions_2_0::glNormal3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820717ea0 0xc820717fa0 0xc820700040] } +&{glNormal3sv QOpenGLFunctions_2_0::glNormal3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207003a0] } +&{glNormalPointer QOpenGLFunctions_2_0::glNormalPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8207006c0 0xc8207007c0 0xc8207008e0] } +&{glOrtho QOpenGLFunctions_2_0::glOrtho commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820700c20 0xc820700d20 0xc820700e20 0xc820700f20 0xc820701060 0xc820701120] } +&{glPassThrough QOpenGLFunctions_2_0::glPassThrough commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820701360] } +&{glPixelMapfv QOpenGLFunctions_2_0::glPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820701600 0xc8207016a0 0xc8207017c0] } +&{glPixelMapuiv QOpenGLFunctions_2_0::glPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820701a00 0xc820701b40 0xc820701c40] } +&{glPixelMapusv QOpenGLFunctions_2_0::glPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820701f00 0xc8206e8000 0xc8206e8160] } +&{glPixelStoref QOpenGLFunctions_2_0::glPixelStoref commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206e8400 0xc8206e8520] } +&{glPixelStorei QOpenGLFunctions_2_0::glPixelStorei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206e87c0 0xc8206e88a0] } +&{glPixelTransferf QOpenGLFunctions_2_0::glPixelTransferf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206e8b40 0xc8206e8c40] } +&{glPixelTransferi QOpenGLFunctions_2_0::glPixelTransferi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206e8e60 0xc8206e9000] } +&{glPixelZoom QOpenGLFunctions_2_0::glPixelZoom commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206e9260 0xc8206e92e0] } +&{glPointParameterf QOpenGLFunctions_2_0::glPointParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206e96a0 0xc8206e97e0] } +&{glPointParameterfv QOpenGLFunctions_2_0::glPointParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206e9c40 0xc8206e9d40] } +&{glPointParameteri QOpenGLFunctions_2_0::glPointParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206d6120 0xc8206d6200] } +&{glPointParameteriv QOpenGLFunctions_2_0::glPointParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206d6640 0xc8206d66c0] } +&{glPointSize QOpenGLFunctions_2_0::glPointSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206d69a0] } +&{glPolygonMode QOpenGLFunctions_2_0::glPolygonMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206d6cc0 0xc8206d6dc0] } +&{glPolygonOffset QOpenGLFunctions_2_0::glPolygonOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206d70c0 0xc8206d7160] } +&{glPolygonStipple QOpenGLFunctions_2_0::glPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206d7480] } +&{glPopAttrib QOpenGLFunctions_2_0::glPopAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [] } +&{glPopClientAttrib QOpenGLFunctions_2_0::glPopClientAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [] } +&{glPopMatrix QOpenGLFunctions_2_0::glPopMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [] } +&{glPopName QOpenGLFunctions_2_0::glPopName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [] } +&{glPrioritizeTextures QOpenGLFunctions_2_0::glPrioritizeTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206d7e40 0xc8206d7ee0 0xc8206d7f80] } +&{glPushAttrib QOpenGLFunctions_2_0::glPushAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82098c140] } +&{glPushClientAttrib QOpenGLFunctions_2_0::glPushClientAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82098c400] } +&{glPushMatrix QOpenGLFunctions_2_0::glPushMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [] } +&{glPushName QOpenGLFunctions_2_0::glPushName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82098c7a0] } +&{glRasterPos2d QOpenGLFunctions_2_0::glRasterPos2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82098c980 0xc82098ca60] } +&{glRasterPos2dv QOpenGLFunctions_2_0::glRasterPos2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82098cc60] } +&{glRasterPos2f QOpenGLFunctions_2_0::glRasterPos2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82098ce80 0xc82098cf40] } +&{glRasterPos2fv QOpenGLFunctions_2_0::glRasterPos2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82098d180] } +&{glRasterPos2i QOpenGLFunctions_2_0::glRasterPos2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82098d320 0xc82098d3c0] } +&{glRasterPos2iv QOpenGLFunctions_2_0::glRasterPos2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82098d5a0] } +&{glRasterPos2s QOpenGLFunctions_2_0::glRasterPos2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82098d7a0 0xc82098d820] } +&{glRasterPos2sv QOpenGLFunctions_2_0::glRasterPos2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82098d9c0] } +&{glRasterPos3d QOpenGLFunctions_2_0::glRasterPos3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82098db80 0xc82098dc00 0xc82098dca0] } +&{glRasterPos3dv QOpenGLFunctions_2_0::glRasterPos3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82098de80] } +&{glRasterPos3f QOpenGLFunctions_2_0::glRasterPos3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206bc060 0xc8206bc140 0xc8206bc240] } +&{glRasterPos3fv QOpenGLFunctions_2_0::glRasterPos3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206bc400] } +&{glRasterPos3i QOpenGLFunctions_2_0::glRasterPos3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206bc5c0 0xc8206bc6a0 0xc8206bc780] } +&{glRasterPos3iv QOpenGLFunctions_2_0::glRasterPos3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206bc9c0] } +&{glRasterPos3s QOpenGLFunctions_2_0::glRasterPos3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206bcc40 0xc8206bcce0 0xc8206bcd80] } +&{glRasterPos3sv QOpenGLFunctions_2_0::glRasterPos3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206bcfe0] } +&{glRasterPos4d QOpenGLFunctions_2_0::glRasterPos4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206bd220 0xc8206bd2e0 0xc8206bd400 0xc8206bd4c0] } +&{glRasterPos4dv QOpenGLFunctions_2_0::glRasterPos4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206bd760] } +&{glRasterPos4f QOpenGLFunctions_2_0::glRasterPos4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206bd940 0xc8206bd9e0 0xc8206bdae0 0xc8206bdb60] } +&{glRasterPos4fv QOpenGLFunctions_2_0::glRasterPos4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206bddc0] } +&{glRasterPos4i QOpenGLFunctions_2_0::glRasterPos4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206bdfc0 0xc8206a60e0 0xc8206a61e0 0xc8206a6280] } +&{glRasterPos4iv QOpenGLFunctions_2_0::glRasterPos4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206a64e0] } +&{glRasterPos4s QOpenGLFunctions_2_0::glRasterPos4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206a6760 0xc8206a68a0 0xc8206a6940 0xc8206a6a80] } +&{glRasterPos4sv QOpenGLFunctions_2_0::glRasterPos4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206a6d20] } +&{glReadBuffer QOpenGLFunctions_2_0::glReadBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206a6fe0] } +&{glReadPixels QOpenGLFunctions_2_0::glReadPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206a72c0 0xc8206a7400 0xc8206a7520 0xc8206a75a0 0xc8206a7740 0xc8206a7860 0xc8206a7960] } +&{glRectd QOpenGLFunctions_2_0::glRectd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206a7d60 0xc8206a7ee0 0xc8206a7fa0 0xc82068c040] } +&{glRectdv QOpenGLFunctions_2_0::glRectdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82068c320 0xc82068c460] } +&{glRectf QOpenGLFunctions_2_0::glRectf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82068c7e0 0xc82068c900 0xc82068c980 0xc82068ca80] } +&{glRectfv QOpenGLFunctions_2_0::glRectfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82068cd80 0xc82068ce40] } +&{glRecti QOpenGLFunctions_2_0::glRecti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82068d120 0xc82068d200 0xc82068d320 0xc82068d3a0] } +&{glRectiv QOpenGLFunctions_2_0::glRectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82068d720 0xc82068d800] } +&{glRects QOpenGLFunctions_2_0::glRects commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82068db00 0xc82068dc40 0xc82068dd20 0xc82068de00] } +&{glRectsv QOpenGLFunctions_2_0::glRectsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc826a5a0a0 0xc826a5a120] } +&{glRenderMode QOpenGLFunctions_2_0::glRenderMode commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false GLint [0xc826a5a320] } +&{glResetHistogram QOpenGLFunctions_2_0::glResetHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc826a5a4c0] } +&{glResetMinmax QOpenGLFunctions_2_0::glResetMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc826a5a680] } +&{glRotated QOpenGLFunctions_2_0::glRotated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc826a5a8a0 0xc826a5a960 0xc826a5aa00 0xc826a5aaa0] } +&{glRotatef QOpenGLFunctions_2_0::glRotatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc826a5ace0 0xc826a5ad60 0xc826a5ae20 0xc826a5aec0] } +&{glSampleCoverage QOpenGLFunctions_2_0::glSampleCoverage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc826a5b080 0xc826a5b120] } +&{glScaled QOpenGLFunctions_2_0::glScaled commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc826a5b340 0xc826a5b3c0 0xc826a5b480] } +&{glScalef QOpenGLFunctions_2_0::glScalef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc826a5b680 0xc826a5b720 0xc826a5b800] } +&{glScissor QOpenGLFunctions_2_0::glScissor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc826a5ba40 0xc826a5bae0 0xc826a5bb60 0xc826a5bc20] } +&{glSecondaryColor3b QOpenGLFunctions_2_0::glSecondaryColor3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc826a5be60 0xc826a5bf00 0xc826a5bf80] } +&{glSecondaryColor3bv QOpenGLFunctions_2_0::glSecondaryColor3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820aea240] } +&{glSecondaryColor3d QOpenGLFunctions_2_0::glSecondaryColor3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820aea520 0xc820aea5e0 0xc820aea6e0] } +&{glSecondaryColor3dv QOpenGLFunctions_2_0::glSecondaryColor3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820aea9e0] } +&{glSecondaryColor3f QOpenGLFunctions_2_0::glSecondaryColor3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820aeadc0 0xc820aeaf20 0xc820aeb020] } +&{glSecondaryColor3fv QOpenGLFunctions_2_0::glSecondaryColor3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820aeb2c0] } +&{glSecondaryColor3i QOpenGLFunctions_2_0::glSecondaryColor3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820aeb5e0 0xc820aeb7a0 0xc820aeb860] } +&{glSecondaryColor3iv QOpenGLFunctions_2_0::glSecondaryColor3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820aebbc0] } +&{glSecondaryColor3s QOpenGLFunctions_2_0::glSecondaryColor3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820aebf60 0xc820670020 0xc8206700a0] } +&{glSecondaryColor3sv QOpenGLFunctions_2_0::glSecondaryColor3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206703e0] } +&{glSecondaryColor3ub QOpenGLFunctions_2_0::glSecondaryColor3ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820670860 0xc820670900 0xc8206709e0] } +&{glSecondaryColor3ubv QOpenGLFunctions_2_0::glSecondaryColor3ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820670de0] } +&{glSecondaryColor3ui QOpenGLFunctions_2_0::glSecondaryColor3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820671200 0xc8206712c0 0xc820671480] } +&{glSecondaryColor3uiv QOpenGLFunctions_2_0::glSecondaryColor3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820671700] } +&{glSecondaryColor3us QOpenGLFunctions_2_0::glSecondaryColor3us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820671b20 0xc820671bc0 0xc820671da0] } +&{glSecondaryColor3usv QOpenGLFunctions_2_0::glSecondaryColor3usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82065a080] } +&{glSecondaryColorPointer QOpenGLFunctions_2_0::glSecondaryColorPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82065a4c0 0xc82065a5e0 0xc82065a820 0xc82065a940] } +&{glSelectBuffer QOpenGLFunctions_2_0::glSelectBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82065acc0 0xc82065ae00] } +&{glSeparableFilter2D QOpenGLFunctions_2_0::glSeparableFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82065b3a0 0xc82065b520 0xc82065b620 0xc82065b700 0xc82065b7e0 0xc82065b8a0 0xc82065b980 0xc82065ba40] } +&{glShadeModel QOpenGLFunctions_2_0::glShadeModel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82065bce0] } +&{glShaderSource QOpenGLFunctions_2_0::glShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208e4080 0xc8208e4140 0xc8208e4220 0xc8208e4300] } +&{glStencilFunc QOpenGLFunctions_2_0::glStencilFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208e44c0 0xc8208e45a0 0xc8208e4640] } +&{glStencilFuncSeparate QOpenGLFunctions_2_0::glStencilFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208e48e0 0xc8208e4980 0xc8208e4a60 0xc8208e4b20] } +&{glStencilMask QOpenGLFunctions_2_0::glStencilMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208e4d40] } +&{glStencilMaskSeparate QOpenGLFunctions_2_0::glStencilMaskSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208e4fc0 0xc8208e50a0] } +&{glStencilOp QOpenGLFunctions_2_0::glStencilOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208e5300 0xc8208e5380 0xc8208e5400] } +&{glStencilOpSeparate QOpenGLFunctions_2_0::glStencilOpSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208e56c0 0xc8208e5740 0xc8208e57e0 0xc8208e5920] } +&{glTexCoord1d QOpenGLFunctions_2_0::glTexCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208e5ae0] } +&{glTexCoord1dv QOpenGLFunctions_2_0::glTexCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208e5d00] } +&{glTexCoord1f QOpenGLFunctions_2_0::glTexCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8208e5f20] } +&{glTexCoord1fv QOpenGLFunctions_2_0::glTexCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206421e0] } +&{glTexCoord1i QOpenGLFunctions_2_0::glTexCoord1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820642560] } +&{glTexCoord1iv QOpenGLFunctions_2_0::glTexCoord1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206427c0] } +&{glTexCoord1s QOpenGLFunctions_2_0::glTexCoord1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820642ba0] } +&{glTexCoord1sv QOpenGLFunctions_2_0::glTexCoord1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820642f40] } +&{glTexCoord2d QOpenGLFunctions_2_0::glTexCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820643280 0xc820643440] } +&{glTexCoord2dv QOpenGLFunctions_2_0::glTexCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820643700] } +&{glTexCoord2f QOpenGLFunctions_2_0::glTexCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820643920 0xc820643a00] } +&{glTexCoord2fv QOpenGLFunctions_2_0::glTexCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820643ce0] } +&{glTexCoord2i QOpenGLFunctions_2_0::glTexCoord2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206300a0 0xc820630220] } +&{glTexCoord2iv QOpenGLFunctions_2_0::glTexCoord2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820630520] } +&{glTexCoord2s QOpenGLFunctions_2_0::glTexCoord2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820630840 0xc8206308c0] } +&{glTexCoord2sv QOpenGLFunctions_2_0::glTexCoord2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820630c80] } +&{glTexCoord3d QOpenGLFunctions_2_0::glTexCoord3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820630f00 0xc820630fa0 0xc820631040] } +&{glTexCoord3dv QOpenGLFunctions_2_0::glTexCoord3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8206313a0] } +&{glTexCoord3f QOpenGLFunctions_2_0::glTexCoord3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820631680 0xc820631760 0xc8206318a0] } +&{glTexCoord3fv QOpenGLFunctions_2_0::glTexCoord3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820631c00] } +&{glTexCoord3i QOpenGLFunctions_2_0::glTexCoord3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820631ec0 0xc820631fc0 0xc820606160] } +&{glTexCoord3iv QOpenGLFunctions_2_0::glTexCoord3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820606440] } +&{glTexCoord3s QOpenGLFunctions_2_0::glTexCoord3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820606800 0xc820606900 0xc820606aa0] } +&{glTexCoord3sv QOpenGLFunctions_2_0::glTexCoord3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820606dc0] } +&{glTexCoord4d QOpenGLFunctions_2_0::glTexCoord4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820607020 0xc820607180 0xc820607240 0xc820607320] } +&{glTexCoord4dv QOpenGLFunctions_2_0::glTexCoord4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820607600] } +&{glTexCoord4f QOpenGLFunctions_2_0::glTexCoord4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820607a00 0xc820607ac0 0xc820607b60 0xc820607d20] } +&{glTexCoord4fv QOpenGLFunctions_2_0::glTexCoord4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820607fa0] } +&{glTexCoord4i QOpenGLFunctions_2_0::glTexCoord4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205f0320 0xc8205f03e0 0xc8205f04e0 0xc8205f06c0] } +&{glTexCoord4iv QOpenGLFunctions_2_0::glTexCoord4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205f0940] } +&{glTexCoord4s QOpenGLFunctions_2_0::glTexCoord4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205f0be0 0xc8205f0ce0 0xc8205f0da0 0xc8205f0e40] } +&{glTexCoord4sv QOpenGLFunctions_2_0::glTexCoord4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205f11a0] } +&{glTexCoordPointer QOpenGLFunctions_2_0::glTexCoordPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205f1680 0xc8205f1820 0xc8205f1a20 0xc8205f1b00] } +&{glTexEnvf QOpenGLFunctions_2_0::glTexEnvf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205f1fe0 0xc8205e00a0 0xc8205e01a0] } +&{glTexEnvfv QOpenGLFunctions_2_0::glTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205e0540 0xc8205e0680 0xc8205e07a0] } +&{glTexEnvi QOpenGLFunctions_2_0::glTexEnvi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205e0ce0 0xc8205e0ec0 0xc8205e10a0] } +&{glTexEnviv QOpenGLFunctions_2_0::glTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205e13e0 0xc8205e14c0 0xc8205e1600] } +&{glTexGend QOpenGLFunctions_2_0::glTexGend commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205e1a80 0xc8205e1c80 0xc8205e1d20] } +&{glTexGendv QOpenGLFunctions_2_0::glTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205ce1a0 0xc8205ce2a0 0xc8205ce340] } +&{glTexGenf QOpenGLFunctions_2_0::glTexGenf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205ce600 0xc8205ce680 0xc8205ce720] } +&{glTexGenfv QOpenGLFunctions_2_0::glTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205ce980 0xc8205cea20 0xc8205ceaa0] } +&{glTexGeni QOpenGLFunctions_2_0::glTexGeni commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205cece0 0xc8205ced60 0xc8205cee00] } +&{glTexGeniv QOpenGLFunctions_2_0::glTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205cf020 0xc8205cf0c0 0xc8205cf140] } +&{glTexImage1D QOpenGLFunctions_2_0::glTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205cf2c0 0xc8205cf340 0xc8205cf3c0 0xc8205cf440 0xc8205cf4e0 0xc8205cf560 0xc8205cf5e0 0xc8205cf660] } +&{glTexImage2D QOpenGLFunctions_2_0::glTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205cf7c0 0xc8205cf840 0xc8205cf8c0 0xc8205cf940 0xc8205cf9e0 0xc8205cfa60 0xc8205cfb00 0xc8205cfb80 0xc8205cfc20] } +&{glTexImage3D QOpenGLFunctions_2_0::glTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205cfda0 0xc8205cfe20 0xc8205cfec0 0xc8205cff40 0xc8204a0040 0xc8204a00c0 0xc8204a0140 0xc8204a01c0 0xc8204a0260 0xc8204a0300] } +&{glTexParameterf QOpenGLFunctions_2_0::glTexParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204a04a0 0xc8204a0560 0xc8204a05e0] } +&{glTexParameterfv QOpenGLFunctions_2_0::glTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204a0760 0xc8204a0800 0xc8204a08a0] } +&{glTexParameteri QOpenGLFunctions_2_0::glTexParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204a0a20 0xc8204a0aa0 0xc8204a0b40] } +&{glTexParameteriv QOpenGLFunctions_2_0::glTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204a0d00 0xc8204a0da0 0xc8204a0e80] } +&{glTexSubImage1D QOpenGLFunctions_2_0::glTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204a1000 0xc8204a10a0 0xc8204a1160 0xc8204a11e0 0xc8204a12a0 0xc8204a1380 0xc8204a1420] } +&{glTexSubImage2D QOpenGLFunctions_2_0::glTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204a15c0 0xc8204a1640 0xc8204a1780 0xc8204a1840 0xc8204a1920 0xc8204a19e0 0xc8204a1aa0 0xc8204a1bc0 0xc8204a1ca0] } +&{glTexSubImage3D QOpenGLFunctions_2_0::glTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204a1ea0 0xc8204a1f60 0xc8204a1fe0 0xc8205c60c0 0xc8205c61e0 0xc8205c6300 0xc8205c6480 0xc8205c6560 0xc8205c6680 0xc8205c6740 0xc8205c68e0] } +&{glTranslated QOpenGLFunctions_2_0::glTranslated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205c6ae0 0xc8205c6bc0 0xc8205c6d20] } +&{glTranslatef QOpenGLFunctions_2_0::glTranslatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205c7020 0xc8205c70e0 0xc8205c7260] } +&{glUniform1f QOpenGLFunctions_2_0::glUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205c7540 0xc8205c7640] } +&{glUniform1fv QOpenGLFunctions_2_0::glUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205c7980 0xc8205c7a20 0xc8205c7c80] } +&{glUniform1i QOpenGLFunctions_2_0::glUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205c7f00 0xc8205c7fc0] } +&{glUniform1iv QOpenGLFunctions_2_0::glUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205ac2a0 0xc8205ac3e0 0xc8205ac540] } +&{glUniform2f QOpenGLFunctions_2_0::glUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205ac8c0 0xc8205ac9c0 0xc8205aca80] } +&{glUniform2fv QOpenGLFunctions_2_0::glUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205acca0 0xc8205ace00 0xc8205acea0] } +&{glUniform2i QOpenGLFunctions_2_0::glUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205ad0c0 0xc8205ad180 0xc8205ad220] } +&{glUniform2iv QOpenGLFunctions_2_0::glUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205ad400 0xc8205ad4a0 0xc8205ad560] } +&{glUniform3f QOpenGLFunctions_2_0::glUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205ad760 0xc8205ad800 0xc8205ad8c0 0xc8205ad9a0] } +&{glUniform3fv QOpenGLFunctions_2_0::glUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205adbc0 0xc8205adc80 0xc8205adda0] } +&{glUniform3i QOpenGLFunctions_2_0::glUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205adfa0 0xc82059a0c0 0xc82059a180 0xc82059a260] } +&{glUniform3iv QOpenGLFunctions_2_0::glUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82059a480 0xc82059a5c0 0xc82059a6e0] } +&{glUniform4f QOpenGLFunctions_2_0::glUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82059a8a0 0xc82059a9c0 0xc82059aae0 0xc82059ac00 0xc82059ace0] } +&{glUniform4fv QOpenGLFunctions_2_0::glUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82059afe0 0xc82059b120 0xc82059b240] } +&{glUniform4i QOpenGLFunctions_2_0::glUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82059b520 0xc82059b600 0xc82059b700 0xc82059b7a0 0xc82059b8e0] } +&{glUniform4iv QOpenGLFunctions_2_0::glUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82059bac0 0xc82059bba0 0xc82059bd00] } +&{glUniformMatrix2fv QOpenGLFunctions_2_0::glUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205860c0 0xc820586140 0xc8205862c0 0xc820586360] } +&{glUniformMatrix3fv QOpenGLFunctions_2_0::glUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820586740 0xc820586800 0xc8205868e0 0xc820586a80] } +&{glUniformMatrix4fv QOpenGLFunctions_2_0::glUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820586de0 0xc820586f40 0xc820587020 0xc8205870e0] } +&{glUnmapBuffer QOpenGLFunctions_2_0::glUnmapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false GLboolean [0xc820587400] } +&{glUseProgram QOpenGLFunctions_2_0::glUseProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820587660] } +&{glValidateProgram QOpenGLFunctions_2_0::glValidateProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205878a0] } +&{glVertex2d QOpenGLFunctions_2_0::glVertex2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820587be0 0xc820587ca0] } +&{glVertex2dv QOpenGLFunctions_2_0::glVertex2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820574060] } +&{glVertex2f QOpenGLFunctions_2_0::glVertex2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820574380 0xc820574420] } +&{glVertex2fv QOpenGLFunctions_2_0::glVertex2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820574680] } +&{glVertex2i QOpenGLFunctions_2_0::glVertex2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820574940 0xc8205749e0] } +&{glVertex2iv QOpenGLFunctions_2_0::glVertex2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820574c60] } +&{glVertex2s QOpenGLFunctions_2_0::glVertex2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820575000 0xc8205750a0] } +&{glVertex2sv QOpenGLFunctions_2_0::glVertex2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820575360] } +&{glVertex3d QOpenGLFunctions_2_0::glVertex3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820575660 0xc8205756e0 0xc8205757a0] } +&{glVertex3dv QOpenGLFunctions_2_0::glVertex3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820575a00] } +&{glVertex3f QOpenGLFunctions_2_0::glVertex3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820575ce0 0xc820575da0 0xc820575e80] } +&{glVertex3fv QOpenGLFunctions_2_0::glVertex3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82055e0e0] } +&{glVertex3i QOpenGLFunctions_2_0::glVertex3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82055e320 0xc82055e3a0 0xc82055e420] } +&{glVertex3iv QOpenGLFunctions_2_0::glVertex3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82055e5e0] } +&{glVertex3s QOpenGLFunctions_2_0::glVertex3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82055e8a0 0xc82055ea00 0xc82055eb00] } +&{glVertex3sv QOpenGLFunctions_2_0::glVertex3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82055ed20] } +&{glVertex4d QOpenGLFunctions_2_0::glVertex4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82055f020 0xc82055f140 0xc82055f2a0 0xc82055f3c0] } +&{glVertex4dv QOpenGLFunctions_2_0::glVertex4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82055f660] } +&{glVertex4f QOpenGLFunctions_2_0::glVertex4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82055f960 0xc82055fae0 0xc82055fc20 0xc82055fd20] } +&{glVertex4fv QOpenGLFunctions_2_0::glVertex4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820548000] } +&{glVertex4i QOpenGLFunctions_2_0::glVertex4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820548380 0xc820548440 0xc820548560 0xc820548780] } +&{glVertex4iv QOpenGLFunctions_2_0::glVertex4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820548a60] } +&{glVertex4s QOpenGLFunctions_2_0::glVertex4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820548e20 0xc820548ee0 0xc820549060 0xc820549100] } +&{glVertex4sv QOpenGLFunctions_2_0::glVertex4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820549340] } +&{glVertexAttrib1d QOpenGLFunctions_2_0::glVertexAttrib1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205495e0 0xc820549700] } +&{glVertexAttrib1dv QOpenGLFunctions_2_0::glVertexAttrib1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820549a40 0xc820549b40] } +&{glVertexAttrib1f QOpenGLFunctions_2_0::glVertexAttrib1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820549d00 0xc820549da0] } +&{glVertexAttrib1fv QOpenGLFunctions_2_0::glVertexAttrib1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205141a0 0xc820514260] } +&{glVertexAttrib1s QOpenGLFunctions_2_0::glVertexAttrib1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205146e0 0xc820514980] } +&{glVertexAttrib1sv QOpenGLFunctions_2_0::glVertexAttrib1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820514ec0 0xc820515120] } +&{glVertexAttrib2d QOpenGLFunctions_2_0::glVertexAttrib2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820515460 0xc820515580 0xc8205156c0] } +&{glVertexAttrib2dv QOpenGLFunctions_2_0::glVertexAttrib2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820515c00 0xc820515d20] } +&{glVertexAttrib2f QOpenGLFunctions_2_0::glVertexAttrib2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8205040c0 0xc820504160 0xc8205042c0] } +&{glVertexAttrib2fv QOpenGLFunctions_2_0::glVertexAttrib2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820504720 0xc8205048c0] } +&{glVertexAttrib2s QOpenGLFunctions_2_0::glVertexAttrib2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820504bc0 0xc820504ca0 0xc820504dc0] } +&{glVertexAttrib2sv QOpenGLFunctions_2_0::glVertexAttrib2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820505060 0xc820505100] } +&{glVertexAttrib3d QOpenGLFunctions_2_0::glVertexAttrib3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820505380 0xc820505420 0xc8205054c0 0xc8205055c0] } +&{glVertexAttrib3dv QOpenGLFunctions_2_0::glVertexAttrib3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820505840 0xc8205058c0] } +&{glVertexAttrib3f QOpenGLFunctions_2_0::glVertexAttrib3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820505aa0 0xc820505b60 0xc820505c00 0xc820505ca0] } +&{glVertexAttrib3fv QOpenGLFunctions_2_0::glVertexAttrib3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc820505fc0 0xc8204f4040] } +&{glVertexAttrib3s QOpenGLFunctions_2_0::glVertexAttrib3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204f42c0 0xc8204f4360 0xc8204f4480 0xc8204f4540] } +&{glVertexAttrib3sv QOpenGLFunctions_2_0::glVertexAttrib3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204f48a0 0xc8204f4920] } +&{glVertexAttrib4Nbv QOpenGLFunctions_2_0::glVertexAttrib4Nbv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204f4c00 0xc8204f4ce0] } +&{glVertexAttrib4Niv QOpenGLFunctions_2_0::glVertexAttrib4Niv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204f4fa0 0xc8204f50e0] } +&{glVertexAttrib4Nsv QOpenGLFunctions_2_0::glVertexAttrib4Nsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204f5400 0xc8204f54a0] } +&{glVertexAttrib4Nub QOpenGLFunctions_2_0::glVertexAttrib4Nub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204f5840 0xc8204f5900 0xc8204f59e0 0xc8204f5ac0 0xc8204f5c00] } +&{glVertexAttrib4Nubv QOpenGLFunctions_2_0::glVertexAttrib4Nubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204e40c0 0xc8204e4200] } +&{glVertexAttrib4Nuiv QOpenGLFunctions_2_0::glVertexAttrib4Nuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204e46a0 0xc8204e47c0] } +&{glVertexAttrib4Nusv QOpenGLFunctions_2_0::glVertexAttrib4Nusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204e4ca0 0xc8204e4da0] } +&{glVertexAttrib4bv QOpenGLFunctions_2_0::glVertexAttrib4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204e51e0 0xc8204e5340] } +&{glVertexAttrib4d QOpenGLFunctions_2_0::glVertexAttrib4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204e5680 0xc8204e57e0 0xc8204e5920 0xc8204e5ae0 0xc8204e5c20] } +&{glVertexAttrib4dv QOpenGLFunctions_2_0::glVertexAttrib4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204e5fc0 0xc8204ce060] } +&{glVertexAttrib4f QOpenGLFunctions_2_0::glVertexAttrib4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204ce380 0xc8204ce4e0 0xc8204ce560 0xc8204ce6e0 0xc8204ce7e0] } +&{glVertexAttrib4fv QOpenGLFunctions_2_0::glVertexAttrib4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204cebc0 0xc8204ceca0] } +&{glVertexAttrib4iv QOpenGLFunctions_2_0::glVertexAttrib4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204cef80 0xc8204cf060] } +&{glVertexAttrib4s QOpenGLFunctions_2_0::glVertexAttrib4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204cf2e0 0xc8204cf400 0xc8204cf4e0 0xc8204cf580 0xc8204cf6e0] } +&{glVertexAttrib4sv QOpenGLFunctions_2_0::glVertexAttrib4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204cf960 0xc8204cfa20] } +&{glVertexAttrib4ubv QOpenGLFunctions_2_0::glVertexAttrib4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204cfce0 0xc8204cfde0] } +&{glVertexAttrib4uiv QOpenGLFunctions_2_0::glVertexAttrib4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82093c0e0 0xc82093c180] } +&{glVertexAttrib4usv QOpenGLFunctions_2_0::glVertexAttrib4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82093c380 0xc82093c400] } +&{glVertexAttribPointer QOpenGLFunctions_2_0::glVertexAttribPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82093c5c0 0xc82093c640 0xc82093c6c0 0xc82093c740 0xc82093c820 0xc82093c8e0] } +&{glVertexPointer QOpenGLFunctions_2_0::glVertexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82093caa0 0xc82093cb40 0xc82093cc00 0xc82093cca0] } +&{glViewport QOpenGLFunctions_2_0::glViewport commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82093cf00 0xc82093cfa0 0xc82093d020 0xc82093d0e0] } +&{glWindowPos2d QOpenGLFunctions_2_0::glWindowPos2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82093d2e0 0xc82093d3a0] } +&{glWindowPos2dv QOpenGLFunctions_2_0::glWindowPos2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82093d5a0] } +&{glWindowPos2f QOpenGLFunctions_2_0::glWindowPos2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82093d780 0xc82093d8a0] } +&{glWindowPos2fv QOpenGLFunctions_2_0::glWindowPos2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82093da80] } +&{glWindowPos2i QOpenGLFunctions_2_0::glWindowPos2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82093dc60 0xc82093dce0] } +&{glWindowPos2iv QOpenGLFunctions_2_0::glWindowPos2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc82093df20] } +&{glWindowPos2s QOpenGLFunctions_2_0::glWindowPos2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204be180 0xc8204be300] } +&{glWindowPos2sv QOpenGLFunctions_2_0::glWindowPos2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204be620] } +&{glWindowPos3d QOpenGLFunctions_2_0::glWindowPos3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204be8e0 0xc8204be9c0 0xc8204beaa0] } +&{glWindowPos3dv QOpenGLFunctions_2_0::glWindowPos3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204bed40] } +&{glWindowPos3f QOpenGLFunctions_2_0::glWindowPos3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204bf100 0xc8204bf200 0xc8204bf340] } +&{glWindowPos3fv QOpenGLFunctions_2_0::glWindowPos3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204bf6c0] } +&{glWindowPos3i QOpenGLFunctions_2_0::glWindowPos3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204bfa00 0xc8204bfbc0 0xc8204bfc80] } +&{glWindowPos3iv QOpenGLFunctions_2_0::glWindowPos3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204bff20] } +&{glWindowPos3s QOpenGLFunctions_2_0::glWindowPos3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204a8160 0xc8204a8220 0xc8204a82e0] } +&{glWindowPos3sv QOpenGLFunctions_2_0::glWindowPos3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_0.h non plain false false void [0xc8204a84a0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions_2_1.txt b/internal/binding/dump/QtGui/QOpenGLFunctions_2_1.txt new file mode 100755 index 00000000..ada70ac0 --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions_2_1.txt @@ -0,0 +1,588 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions_2_1 QOpenGLFunctions_2_1::QOpenGLFunctions_2_1 commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.cpp non constructor false false [] } +&{initializeOpenGLFunctions QOpenGLFunctions_2_1::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.cpp impure plain false false bool [] } +&{~QOpenGLFunctions_2_1 QOpenGLFunctions_2_1::~QOpenGLFunctions_2_1 commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.cpp non destructor false false [] } +&{glAccum QOpenGLFunctions_2_1::glAccum commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204a9460 0xc8204a95c0] } +&{glActiveTexture QOpenGLFunctions_2_1::glActiveTexture commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204a97a0] } +&{glAlphaFunc QOpenGLFunctions_2_1::glAlphaFunc commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204a9ac0 0xc8204a9c00] } +&{glAreTexturesResident QOpenGLFunctions_2_1::glAreTexturesResident commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false GLboolean [0xc8204a9f80 0xc820496020 0xc820496180] } +&{glArrayElement QOpenGLFunctions_2_1::glArrayElement commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820496420] } +&{glAttachShader QOpenGLFunctions_2_1::glAttachShader commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204967c0 0xc820496920] } +&{glBegin QOpenGLFunctions_2_1::glBegin commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820496d80] } +&{glBeginQuery QOpenGLFunctions_2_1::glBeginQuery commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820496fe0 0xc820497180] } +&{glBindAttribLocation QOpenGLFunctions_2_1::glBindAttribLocation commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204974e0 0xc8204975e0 0xc8204976a0] } +&{glBindBuffer QOpenGLFunctions_2_1::glBindBuffer commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820497a20 0xc820497ae0] } +&{glBindTexture QOpenGLFunctions_2_1::glBindTexture commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820497e40 0xc820497fa0] } +&{glBitmap QOpenGLFunctions_2_1::glBitmap commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820484400 0xc820484500 0xc820484680 0xc820484700 0xc820484860 0xc8204849c0 0xc820484aa0] } +&{glBlendColor QOpenGLFunctions_2_1::glBlendColor commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820484dc0 0xc820484ea0 0xc820484f20 0xc820484fc0] } +&{glBlendEquation QOpenGLFunctions_2_1::glBlendEquation commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820485300] } +&{glBlendEquationSeparate QOpenGLFunctions_2_1::glBlendEquationSeparate commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820485580 0xc820485600] } +&{glBlendFunc QOpenGLFunctions_2_1::glBlendFunc commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204857a0 0xc820485880] } +&{glBlendFuncSeparate QOpenGLFunctions_2_1::glBlendFuncSeparate commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820485b80 0xc820485c20 0xc820485e00 0xc820485ea0] } +&{glBufferData QOpenGLFunctions_2_1::glBufferData commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820478220 0xc820478320 0xc8204784a0 0xc820478640] } +&{glBufferSubData QOpenGLFunctions_2_1::glBufferSubData commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204789c0 0xc820478bc0 0xc820478ce0 0xc820478e40] } +&{glCallList QOpenGLFunctions_2_1::glCallList commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820479280] } +&{glCallLists QOpenGLFunctions_2_1::glCallLists commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204794c0 0xc820479580 0xc8204796e0] } +&{glClear QOpenGLFunctions_2_1::glClear commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820479a20] } +&{glClearAccum QOpenGLFunctions_2_1::glClearAccum commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820479d60 0xc820479e80 0xc82046a020 0xc82046a1a0] } +&{glClearColor QOpenGLFunctions_2_1::glClearColor commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82046a360 0xc82046a4c0 0xc82046a540 0xc82046a6e0] } +&{glClearDepth QOpenGLFunctions_2_1::glClearDepth commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82046a900] } +&{glClearIndex QOpenGLFunctions_2_1::glClearIndex commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82046aca0] } +&{glClearStencil QOpenGLFunctions_2_1::glClearStencil commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82046b020] } +&{glClientActiveTexture QOpenGLFunctions_2_1::glClientActiveTexture commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82046b460] } +&{glClipPlane QOpenGLFunctions_2_1::glClipPlane commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82046b7c0 0xc82046b900] } +&{glColor3b QOpenGLFunctions_2_1::glColor3b commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82046bc80 0xc82046bde0 0xc82046bec0] } +&{glColor3bv QOpenGLFunctions_2_1::glColor3bv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820458300] } +&{glColor3d QOpenGLFunctions_2_1::glColor3d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820458760 0xc820458820 0xc8204589a0] } +&{glColor3dv QOpenGLFunctions_2_1::glColor3dv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820458ce0] } +&{glColor3f QOpenGLFunctions_2_1::glColor3f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820459040 0xc820459200 0xc8204592c0] } +&{glColor3fv QOpenGLFunctions_2_1::glColor3fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204595a0] } +&{glColor3i QOpenGLFunctions_2_1::glColor3i commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204598c0 0xc8204599e0 0xc820459ae0] } +&{glColor3iv QOpenGLFunctions_2_1::glColor3iv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820459d60] } +&{glColor3s QOpenGLFunctions_2_1::glColor3s commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82044a0c0 0xc82044a1c0 0xc82044a260] } +&{glColor3sv QOpenGLFunctions_2_1::glColor3sv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82044a540] } +&{glColor3ub QOpenGLFunctions_2_1::glColor3ub commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82044a900 0xc82044aa00 0xc82044ab20] } +&{glColor3ubv QOpenGLFunctions_2_1::glColor3ubv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82044ad20] } +&{glColor3ui QOpenGLFunctions_2_1::glColor3ui commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82044b160 0xc82044b260 0xc82044b380] } +&{glColor3uiv QOpenGLFunctions_2_1::glColor3uiv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82044b680] } +&{glColor3us QOpenGLFunctions_2_1::glColor3us commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82044ba60 0xc82044bae0 0xc82044bba0] } +&{glColor3usv QOpenGLFunctions_2_1::glColor3usv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82044bea0] } +&{glColor4b QOpenGLFunctions_2_1::glColor4b commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a4c0a0 0xc820a4c140 0xc820a4c200 0xc820a4c280] } +&{glColor4bv QOpenGLFunctions_2_1::glColor4bv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a4c500] } +&{glColor4d QOpenGLFunctions_2_1::glColor4d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a4c760 0xc820a4c860 0xc820a4c900 0xc820a4c980] } +&{glColor4dv QOpenGLFunctions_2_1::glColor4dv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a4cc00] } +&{glColor4f QOpenGLFunctions_2_1::glColor4f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a4ce80 0xc820a4cf60 0xc820a4cfe0 0xc820a4d120] } +&{glColor4fv QOpenGLFunctions_2_1::glColor4fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a4d3c0] } +&{glColor4i QOpenGLFunctions_2_1::glColor4i commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a4d620 0xc820a4d6a0 0xc820a4d7a0 0xc820a4d860] } +&{glColor4iv QOpenGLFunctions_2_1::glColor4iv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a4db80] } +&{glColor4s QOpenGLFunctions_2_1::glColor4s commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a4ddc0 0xc820a4de40 0xc820a4df60 0xc820a4dfe0] } +&{glColor4sv QOpenGLFunctions_2_1::glColor4sv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820410300] } +&{glColor4ub QOpenGLFunctions_2_1::glColor4ub commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204106a0 0xc820410740 0xc820410820 0xc8204109c0] } +&{glColor4ubv QOpenGLFunctions_2_1::glColor4ubv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820410c00] } +&{glColor4ui QOpenGLFunctions_2_1::glColor4ui commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820410fc0 0xc820411060 0xc820411160 0xc820411300] } +&{glColor4uiv QOpenGLFunctions_2_1::glColor4uiv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820411620] } +&{glColor4us QOpenGLFunctions_2_1::glColor4us commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204119c0 0xc820411aa0 0xc820411bc0 0xc820411d00] } +&{glColor4usv QOpenGLFunctions_2_1::glColor4usv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820411fa0] } +&{glColorMask QOpenGLFunctions_2_1::glColorMask commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820402240 0xc820402360 0xc820402460 0xc820402500] } +&{glColorMaterial QOpenGLFunctions_2_1::glColorMaterial commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820402780 0xc820402860] } +&{glColorPointer QOpenGLFunctions_2_1::glColorPointer commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820402b20 0xc820402bc0 0xc820402cc0 0xc820402d80] } +&{glColorSubTable QOpenGLFunctions_2_1::glColorSubTable commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820403000 0xc8204030c0 0xc820403160 0xc8204032a0 0xc8204033a0 0xc820403500] } +&{glColorTable QOpenGLFunctions_2_1::glColorTable commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204036e0 0xc820403780 0xc820403820 0xc8204038e0 0xc8204039e0 0xc820403b60] } +&{glColorTableParameterfv QOpenGLFunctions_2_1::glColorTableParameterfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820403ee0 0xc8204c8000 0xc8204c8080] } +&{glColorTableParameteriv QOpenGLFunctions_2_1::glColorTableParameteriv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204c8360 0xc8204c8400 0xc8204c84c0] } +&{glCompileShader QOpenGLFunctions_2_1::glCompileShader commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204c8720] } +&{glCompressedTexImage1D QOpenGLFunctions_2_1::glCompressedTexImage1D commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204c89c0 0xc8204c8b40 0xc8204c8bc0 0xc8204c8ca0 0xc8204c8e00 0xc8204c8f20 0xc8204c8fa0] } +&{glCompressedTexImage2D QOpenGLFunctions_2_1::glCompressedTexImage2D commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204c9300 0xc8204c9380 0xc8204c9400 0xc8204c9520 0xc8204c9660 0xc8204c9700 0xc8204c97a0 0xc8204c9840] } +&{glCompressedTexImage3D QOpenGLFunctions_2_1::glCompressedTexImage3D commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204c9aa0 0xc8204c9b20 0xc8204c9ba0 0xc8204c9c80 0xc8204c9d40 0xc8204c9dc0 0xc8204c9e40 0xc8204c9ee0 0xc8204c9f80] } +&{glCompressedTexSubImage1D QOpenGLFunctions_2_1::glCompressedTexSubImage1D commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203ec2a0 0xc8203ec320 0xc8203ec440 0xc8203ec500 0xc8203ec640 0xc8203ec7a0 0xc8203ec860] } +&{glCompressedTexSubImage2D QOpenGLFunctions_2_1::glCompressedTexSubImage2D commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203ecb80 0xc8203ecc00 0xc8203ecca0 0xc8203ecd40 0xc8203ece40 0xc8203ecf40 0xc8203ed020 0xc8203ed0a0 0xc8203ed1a0] } +&{glCompressedTexSubImage3D QOpenGLFunctions_2_1::glCompressedTexSubImage3D commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203ed440 0xc8203ed4c0 0xc8203ed5c0 0xc8203ed680 0xc8203ed760 0xc8203ed800 0xc8203ed8c0 0xc8203ed960 0xc8203eda60 0xc8203edae0 0xc8203edbe0] } +&{glConvolutionFilter1D QOpenGLFunctions_2_1::glConvolutionFilter1D commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203ede60 0xc8203edf20 0xc8203da020 0xc8203da100 0xc8203da200 0xc8203da2a0] } +&{glConvolutionFilter2D QOpenGLFunctions_2_1::glConvolutionFilter2D commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203da5e0 0xc8203da680 0xc8203da7c0 0xc8203da8e0 0xc8203daa80 0xc8203dab40 0xc8203daca0] } +&{glConvolutionParameterf QOpenGLFunctions_2_1::glConvolutionParameterf commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203db000 0xc8203db0a0 0xc8203db260] } +&{glConvolutionParameterfv QOpenGLFunctions_2_1::glConvolutionParameterfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203db700 0xc8203db860 0xc8203db9c0] } +&{glConvolutionParameteri QOpenGLFunctions_2_1::glConvolutionParameteri commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203dbd80 0xc8203dbee0 0xc8203c6100] } +&{glConvolutionParameteriv QOpenGLFunctions_2_1::glConvolutionParameteriv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203c65a0 0xc8203c6660 0xc8203c6740] } +&{glCopyColorSubTable QOpenGLFunctions_2_1::glCopyColorSubTable commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203c6ba0 0xc8203c6c80 0xc8203c6e20 0xc8203c7000 0xc8203c71a0] } +&{glCopyColorTable QOpenGLFunctions_2_1::glCopyColorTable commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203c74a0 0xc8203c76e0 0xc8203c7860 0xc8203c7940 0xc8203c7c60] } +&{glCopyConvolutionFilter1D QOpenGLFunctions_2_1::glCopyConvolutionFilter1D commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203ae100 0xc8203ae200 0xc8203ae420 0xc8203ae4e0 0xc8203ae660] } +&{glCopyConvolutionFilter2D QOpenGLFunctions_2_1::glCopyConvolutionFilter2D commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203aeaa0 0xc8203aeb60 0xc8203aeca0 0xc8203aed80 0xc8203aeea0 0xc8203aefa0] } +&{glCopyPixels QOpenGLFunctions_2_1::glCopyPixels commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203af240 0xc8203af300 0xc8203af3a0 0xc8203af480 0xc8203af5a0] } +&{glCopyTexImage1D QOpenGLFunctions_2_1::glCopyTexImage1D commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203af780 0xc8203af880 0xc8203af940 0xc8203afa00 0xc8203afac0 0xc8203afb60 0xc8203afc00] } +&{glCopyTexImage2D QOpenGLFunctions_2_1::glCopyTexImage2D commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203afde0 0xc8203afec0 0xc8203aff60 0xc82039a040 0xc82039a1a0 0xc82039a280 0xc82039a3a0 0xc82039a480] } +&{glCopyTexSubImage1D QOpenGLFunctions_2_1::glCopyTexSubImage1D commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82039a7a0 0xc82039a860 0xc82039a9e0 0xc82039ab40 0xc82039ad60 0xc82039ae80] } +&{glCopyTexSubImage2D QOpenGLFunctions_2_1::glCopyTexSubImage2D commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82039b200 0xc82039b480 0xc82039b580 0xc82039b640 0xc82039b860 0xc82039b960 0xc82039ba40 0xc82039bc20] } +&{glCopyTexSubImage3D QOpenGLFunctions_2_1::glCopyTexSubImage3D commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82039bf80 0xc8203840c0 0xc820384160 0xc820384260 0xc820384340 0xc8203843e0 0xc820384540 0xc820384640 0xc820384740] } +&{glCreateProgram QOpenGLFunctions_2_1::glCreateProgram commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false GLuint [] } +&{glCreateShader QOpenGLFunctions_2_1::glCreateShader commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false GLuint [0xc820384c40] } +&{glCullFace QOpenGLFunctions_2_1::glCullFace commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820384fe0] } +&{glDeleteBuffers QOpenGLFunctions_2_1::glDeleteBuffers commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203852a0 0xc8203854e0] } +&{glDeleteLists QOpenGLFunctions_2_1::glDeleteLists commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820385880 0xc820385960] } +&{glDeleteProgram QOpenGLFunctions_2_1::glDeleteProgram commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820385c60] } +&{glDeleteQueries QOpenGLFunctions_2_1::glDeleteQueries commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820385e00 0xc820385f00] } +&{glDeleteShader QOpenGLFunctions_2_1::glDeleteShader commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82036c0a0] } +&{glDeleteTextures QOpenGLFunctions_2_1::glDeleteTextures commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82036c3e0 0xc82036c520] } +&{glDepthFunc QOpenGLFunctions_2_1::glDepthFunc commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82036c860] } +&{glDepthMask QOpenGLFunctions_2_1::glDepthMask commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82036cb20] } +&{glDepthRange QOpenGLFunctions_2_1::glDepthRange commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82036ce20 0xc82036cea0] } +&{glDetachShader QOpenGLFunctions_2_1::glDetachShader commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82036d100 0xc82036d220] } +&{glDisable QOpenGLFunctions_2_1::glDisable commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82036d680] } +&{glDisableClientState QOpenGLFunctions_2_1::glDisableClientState commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82036db80] } +&{glDisableVertexAttribArray QOpenGLFunctions_2_1::glDisableVertexAttribArray commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82036df60] } +&{glDrawArrays QOpenGLFunctions_2_1::glDrawArrays commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203442c0 0xc820344400 0xc8203444e0] } +&{glDrawBuffer QOpenGLFunctions_2_1::glDrawBuffer commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820344920] } +&{glDrawBuffers QOpenGLFunctions_2_1::glDrawBuffers commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820344be0 0xc820344ca0] } +&{glDrawElements QOpenGLFunctions_2_1::glDrawElements commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820345040 0xc820345140 0xc8203452a0 0xc820345480] } +&{glDrawPixels QOpenGLFunctions_2_1::glDrawPixels commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820345860 0xc820345960 0xc8203459e0 0xc820345be0 0xc820345d60] } +&{glDrawRangeElements QOpenGLFunctions_2_1::glDrawRangeElements commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82032e260 0xc82032e340 0xc82032e480 0xc82032e520 0xc82032e700 0xc82032e8c0] } +&{glEdgeFlag QOpenGLFunctions_2_1::glEdgeFlag commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82032ee60] } +&{glEdgeFlagPointer QOpenGLFunctions_2_1::glEdgeFlagPointer commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82032f380 0xc82032f460] } +&{glEdgeFlagv QOpenGLFunctions_2_1::glEdgeFlagv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82032f780] } +&{glEnable QOpenGLFunctions_2_1::glEnable commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82032fb80] } +&{glEnableClientState QOpenGLFunctions_2_1::glEnableClientState commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82032ff60] } +&{glEnableVertexAttribArray QOpenGLFunctions_2_1::glEnableVertexAttribArray commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820314380] } +&{glEnd QOpenGLFunctions_2_1::glEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [] } +&{glEndList QOpenGLFunctions_2_1::glEndList commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [] } +&{glEndQuery QOpenGLFunctions_2_1::glEndQuery commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820314be0] } +&{glEvalCoord1d QOpenGLFunctions_2_1::glEvalCoord1d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820314fa0] } +&{glEvalCoord1dv QOpenGLFunctions_2_1::glEvalCoord1dv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820315380] } +&{glEvalCoord1f QOpenGLFunctions_2_1::glEvalCoord1f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820315740] } +&{glEvalCoord1fv QOpenGLFunctions_2_1::glEvalCoord1fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820315bc0] } +&{glEvalCoord2d QOpenGLFunctions_2_1::glEvalCoord2d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202fe040 0xc8202fe120] } +&{glEvalCoord2dv QOpenGLFunctions_2_1::glEvalCoord2dv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202fe480] } +&{glEvalCoord2f QOpenGLFunctions_2_1::glEvalCoord2f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202fe800 0xc8202fe920] } +&{glEvalCoord2fv QOpenGLFunctions_2_1::glEvalCoord2fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202feba0] } +&{glEvalMesh1 QOpenGLFunctions_2_1::glEvalMesh1 commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202fefa0 0xc8202ff160 0xc8202ff2c0] } +&{glEvalMesh2 QOpenGLFunctions_2_1::glEvalMesh2 commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202ff6a0 0xc8202ff820 0xc8202ff9e0 0xc8202ffb20 0xc8202ffd20] } +&{glEvalPoint1 QOpenGLFunctions_2_1::glEvalPoint1 commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202ec120] } +&{glEvalPoint2 QOpenGLFunctions_2_1::glEvalPoint2 commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202ec480 0xc8202ec6e0] } +&{glFeedbackBuffer QOpenGLFunctions_2_1::glFeedbackBuffer commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202ec980 0xc8202ecaa0 0xc8202ecb80] } +&{glFinish QOpenGLFunctions_2_1::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [] } +&{glFlush QOpenGLFunctions_2_1::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [] } +&{glFogCoordPointer QOpenGLFunctions_2_1::glFogCoordPointer commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202ed540 0xc8202ed6a0 0xc8202ed760] } +&{glFogCoordd QOpenGLFunctions_2_1::glFogCoordd commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202eda20] } +&{glFogCoorddv QOpenGLFunctions_2_1::glFogCoorddv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202edca0] } +&{glFogCoordf QOpenGLFunctions_2_1::glFogCoordf commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202ede60] } +&{glFogCoordfv QOpenGLFunctions_2_1::glFogCoordfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202d0020] } +&{glFogf QOpenGLFunctions_2_1::glFogf commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202d03a0 0xc8202d0500] } +&{glFogfv QOpenGLFunctions_2_1::glFogfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202d08a0 0xc8202d0a00] } +&{glFogi QOpenGLFunctions_2_1::glFogi commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202d0d80 0xc8202d0e40] } +&{glFogiv QOpenGLFunctions_2_1::glFogiv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202d1100 0xc8202d12a0] } +&{glFrontFace QOpenGLFunctions_2_1::glFrontFace commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202d1640] } +&{glFrustum QOpenGLFunctions_2_1::glFrustum commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202d1940 0xc8202d1a40 0xc8202d1b20 0xc8202d1be0 0xc8202d1ce0 0xc8202d1dc0] } +&{glGenBuffers QOpenGLFunctions_2_1::glGenBuffers commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202c2080 0xc8202c2240] } +&{glGenLists QOpenGLFunctions_2_1::glGenLists commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false GLuint [0xc8202c26a0] } +&{glGenQueries QOpenGLFunctions_2_1::glGenQueries commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202c2960 0xc8202c2a60] } +&{glGenTextures QOpenGLFunctions_2_1::glGenTextures commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202c2d00 0xc8202c2e40] } +&{glGetActiveAttrib QOpenGLFunctions_2_1::glGetActiveAttrib commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202c3160 0xc8202c3380 0xc8202c34a0 0xc8202c3640 0xc8202c3840 0xc8202c3980 0xc8202c3a80] } +&{glGetActiveUniform QOpenGLFunctions_2_1::glGetActiveUniform commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202b2040 0xc8202b2200 0xc8202b2320 0xc8202b2460 0xc8202b2560 0xc8202b2640 0xc8202b26e0] } +&{glGetAttachedShaders QOpenGLFunctions_2_1::glGetAttachedShaders commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202b2a40 0xc8202b2b00 0xc8202b2be0 0xc8202b2cc0] } +&{glGetAttribLocation QOpenGLFunctions_2_1::glGetAttribLocation commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false GLint [0xc8202b31a0 0xc8202b3260] } +&{glGetBooleanv QOpenGLFunctions_2_1::glGetBooleanv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202b36a0 0xc8202b3820] } +&{glGetBufferParameteriv QOpenGLFunctions_2_1::glGetBufferParameteriv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202b3b00 0xc8202b3c60 0xc8202b3d40] } +&{glGetBufferPointerv QOpenGLFunctions_2_1::glGetBufferPointerv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82029a1a0 0xc82029a260 0xc82029a3a0] } +&{glGetBufferSubData QOpenGLFunctions_2_1::glGetBufferSubData commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82029a820 0xc82029a9c0 0xc82029aae0 0xc82029ac40] } +&{glGetClipPlane QOpenGLFunctions_2_1::glGetClipPlane commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82029b040 0xc82029b0c0] } +&{glGetColorTable QOpenGLFunctions_2_1::glGetColorTable commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82029b520 0xc82029b600 0xc82029b820 0xc82029b940] } +&{glGetColorTableParameterfv QOpenGLFunctions_2_1::glGetColorTableParameterfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82029bda0 0xc82029be80 0xc82029bf40] } +&{glGetColorTableParameteriv QOpenGLFunctions_2_1::glGetColorTableParameteriv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc826a68200 0xc826a682a0 0xc826a68340] } +&{glGetCompressedTexImage QOpenGLFunctions_2_1::glGetCompressedTexImage commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc826a68540 0xc826a68620 0xc826a686c0] } +&{glGetConvolutionFilter QOpenGLFunctions_2_1::glGetConvolutionFilter commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc826a688e0 0xc826a68960 0xc826a68a00 0xc826a68ae0] } +&{glGetConvolutionParameterfv QOpenGLFunctions_2_1::glGetConvolutionParameterfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc826a68d00 0xc826a68d80 0xc826a68e20] } +&{glGetConvolutionParameteriv QOpenGLFunctions_2_1::glGetConvolutionParameteriv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc826a69060 0xc826a69120 0xc826a691a0] } +&{glGetDoublev QOpenGLFunctions_2_1::glGetDoublev commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc826a69340 0xc826a69400] } +&{glGetError QOpenGLFunctions_2_1::glGetError commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false GLenum [] } +&{glGetFloatv QOpenGLFunctions_2_1::glGetFloatv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc826a69700 0xc826a697a0] } +&{glGetHistogram QOpenGLFunctions_2_1::glGetHistogram commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc826a69960 0xc826a69a00 0xc826a69a80 0xc826a69b40 0xc826a69c00] } +&{glGetHistogramParameterfv QOpenGLFunctions_2_1::glGetHistogramParameterfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc826a69e20 0xc826a69ee0 0xc826a69f80] } +&{glGetHistogramParameteriv QOpenGLFunctions_2_1::glGetHistogramParameteriv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82027a440 0xc82027a5a0 0xc82027a640] } +&{glGetIntegerv QOpenGLFunctions_2_1::glGetIntegerv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82027a9c0 0xc82027aa80] } +&{glGetLightfv QOpenGLFunctions_2_1::glGetLightfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82027ad20 0xc82027ae80 0xc82027af60] } +&{glGetLightiv QOpenGLFunctions_2_1::glGetLightiv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82027b180 0xc82027b220 0xc82027b2a0] } +&{glGetMapdv QOpenGLFunctions_2_1::glGetMapdv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82027b660 0xc82027b780 0xc82027b840] } +&{glGetMapfv QOpenGLFunctions_2_1::glGetMapfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82027bb20 0xc82027bbe0 0xc82027bc80] } +&{glGetMapiv QOpenGLFunctions_2_1::glGetMapiv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82027bfe0 0xc8202740c0 0xc820274200] } +&{glGetMaterialfv QOpenGLFunctions_2_1::glGetMaterialfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820274520 0xc820274660 0xc820274900] } +&{glGetMaterialiv QOpenGLFunctions_2_1::glGetMaterialiv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820274c40 0xc820274d60 0xc820274e80] } +&{glGetMinmax QOpenGLFunctions_2_1::glGetMinmax commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202752a0 0xc8202753e0 0xc8202755c0 0xc820275740 0xc8202758c0] } +&{glGetMinmaxParameterfv QOpenGLFunctions_2_1::glGetMinmaxParameterfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820275e00 0xc820275f40 0xc82026a140] } +&{glGetMinmaxParameteriv QOpenGLFunctions_2_1::glGetMinmaxParameteriv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82026a660 0xc82026a8c0 0xc82026aa00] } +&{glGetPixelMapfv QOpenGLFunctions_2_1::glGetPixelMapfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82026ae20 0xc82026af00] } +&{glGetPixelMapuiv QOpenGLFunctions_2_1::glGetPixelMapuiv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82026b2a0 0xc82026b4c0] } +&{glGetPixelMapusv QOpenGLFunctions_2_1::glGetPixelMapusv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82026b860 0xc82026b960] } +&{glGetPointerv QOpenGLFunctions_2_1::glGetPointerv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82026bea0 0xc82026bf60] } +&{glGetPolygonStipple QOpenGLFunctions_2_1::glGetPolygonStipple commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202643e0] } +&{glGetProgramInfoLog QOpenGLFunctions_2_1::glGetProgramInfoLog commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820264900 0xc8202649e0 0xc820264aa0 0xc820264be0] } +&{glGetProgramiv QOpenGLFunctions_2_1::glGetProgramiv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820265080 0xc8202651c0 0xc8202653a0] } +&{glGetQueryObjectiv QOpenGLFunctions_2_1::glGetQueryObjectiv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202657c0 0xc820265880 0xc820265a40] } +&{glGetQueryObjectuiv QOpenGLFunctions_2_1::glGetQueryObjectuiv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820265e40 0xc820265ee0 0xc82025c040] } +&{glGetQueryiv QOpenGLFunctions_2_1::glGetQueryiv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82025c400 0xc82025c4e0 0xc82025c5e0] } +&{glGetSeparableFilter QOpenGLFunctions_2_1::glGetSeparableFilter commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82025ca40 0xc82025cb20 0xc82025cc20 0xc82025cda0 0xc82025cf20 0xc82025d000] } +&{glGetShaderInfoLog QOpenGLFunctions_2_1::glGetShaderInfoLog commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82025d520 0xc82025d5c0 0xc82025d6a0 0xc82025d860] } +&{glGetShaderSource QOpenGLFunctions_2_1::glGetShaderSource commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82025dcc0 0xc82025ddc0 0xc82025df60 0xc820252080] } +&{glGetShaderiv QOpenGLFunctions_2_1::glGetShaderiv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202523a0 0xc820252560 0xc820252660] } +&{glGetString QOpenGLFunctions_2_1::glGetString commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false const GLubyte * [0xc820252960] } +&{glGetTexEnvfv QOpenGLFunctions_2_1::glGetTexEnvfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820252d20 0xc820252f00 0xc820252fc0] } +&{glGetTexEnviv QOpenGLFunctions_2_1::glGetTexEnviv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202533e0 0xc820253560 0xc820253720] } +&{glGetTexGendv QOpenGLFunctions_2_1::glGetTexGendv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820253aa0 0xc820253c20 0xc820253d20] } +&{glGetTexGenfv QOpenGLFunctions_2_1::glGetTexGenfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820244040 0xc8202441a0 0xc820244280] } +&{glGetTexGeniv QOpenGLFunctions_2_1::glGetTexGeniv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820244600 0xc8202446e0 0xc8202448a0] } +&{glGetTexImage QOpenGLFunctions_2_1::glGetTexImage commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820244ca0 0xc820244da0 0xc820244ec0 0xc820245020 0xc8202450e0] } +&{glGetTexLevelParameterfv QOpenGLFunctions_2_1::glGetTexLevelParameterfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820245520 0xc820245640 0xc8202457a0 0xc820245920] } +&{glGetTexLevelParameteriv QOpenGLFunctions_2_1::glGetTexLevelParameteriv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820245d60 0xc820245e20 0xc820245fa0 0xc82023a080] } +&{glGetTexParameterfv QOpenGLFunctions_2_1::glGetTexParameterfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82023a5c0 0xc82023a700 0xc82023a900] } +&{glGetTexParameteriv QOpenGLFunctions_2_1::glGetTexParameteriv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82023ae80 0xc82023afa0 0xc82023b1a0] } +&{glGetUniformLocation QOpenGLFunctions_2_1::glGetUniformLocation commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false GLint [0xc82023b660 0xc82023b7a0] } +&{glGetUniformfv QOpenGLFunctions_2_1::glGetUniformfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82023bb80 0xc82023bc80 0xc82023be00] } +&{glGetUniformiv QOpenGLFunctions_2_1::glGetUniformiv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204d60c0 0xc8204d61a0 0xc8204d6240] } +&{glGetVertexAttribPointerv QOpenGLFunctions_2_1::glGetVertexAttribPointerv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204d6500 0xc8204d6580 0xc8204d6640] } +&{glGetVertexAttribdv QOpenGLFunctions_2_1::glGetVertexAttribdv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204d68a0 0xc8204d6920 0xc8204d69c0] } +&{glGetVertexAttribfv QOpenGLFunctions_2_1::glGetVertexAttribfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204d6c20 0xc8204d6ca0 0xc8204d6d40] } +&{glGetVertexAttribiv QOpenGLFunctions_2_1::glGetVertexAttribiv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204d6fa0 0xc8204d7020 0xc8204d7100] } +&{glHint QOpenGLFunctions_2_1::glHint commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204d7340 0xc8204d73e0] } +&{glHistogram QOpenGLFunctions_2_1::glHistogram commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204d75e0 0xc8204d7660 0xc8204d7700 0xc8204d77c0] } +&{glIndexMask QOpenGLFunctions_2_1::glIndexMask commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204d79a0] } +&{glIndexPointer QOpenGLFunctions_2_1::glIndexPointer commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204d7b60 0xc8204d7c00 0xc8204d7cc0] } +&{glIndexd QOpenGLFunctions_2_1::glIndexd commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204d7f20] } +&{glIndexdv QOpenGLFunctions_2_1::glIndexdv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82022e360] } +&{glIndexf QOpenGLFunctions_2_1::glIndexf commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82022e980] } +&{glIndexfv QOpenGLFunctions_2_1::glIndexfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82022ef40] } +&{glIndexi QOpenGLFunctions_2_1::glIndexi commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82022f4a0] } +&{glIndexiv QOpenGLFunctions_2_1::glIndexiv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82022f9e0] } +&{glIndexs QOpenGLFunctions_2_1::glIndexs commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82022ff00] } +&{glIndexsv QOpenGLFunctions_2_1::glIndexsv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202243a0] } +&{glIndexub QOpenGLFunctions_2_1::glIndexub commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202248e0] } +&{glIndexubv QOpenGLFunctions_2_1::glIndexubv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820224e00] } +&{glInitNames QOpenGLFunctions_2_1::glInitNames commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [] } +&{glInterleavedArrays QOpenGLFunctions_2_1::glInterleavedArrays commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820225500 0xc820225740 0xc820225860] } +&{glIsBuffer QOpenGLFunctions_2_1::glIsBuffer commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false GLboolean [0xc820225c60] } +&{glIsEnabled QOpenGLFunctions_2_1::glIsEnabled commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false GLboolean [0xc820225f60] } +&{glIsList QOpenGLFunctions_2_1::glIsList commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false GLboolean [0xc82021c340] } +&{glIsProgram QOpenGLFunctions_2_1::glIsProgram commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false GLboolean [0xc82021c620] } +&{glIsQuery QOpenGLFunctions_2_1::glIsQuery commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false GLboolean [0xc82021c9a0] } +&{glIsShader QOpenGLFunctions_2_1::glIsShader commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false GLboolean [0xc82021cda0] } +&{glIsTexture QOpenGLFunctions_2_1::glIsTexture commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false GLboolean [0xc82021cfc0] } +&{glLightModelf QOpenGLFunctions_2_1::glLightModelf commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82021d2c0 0xc82021d360] } +&{glLightModelfv QOpenGLFunctions_2_1::glLightModelfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82021d6c0 0xc82021d780] } +&{glLightModeli QOpenGLFunctions_2_1::glLightModeli commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82021d9e0 0xc82021db20] } +&{glLightModeliv QOpenGLFunctions_2_1::glLightModeliv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82021dde0 0xc82021dea0] } +&{glLightf QOpenGLFunctions_2_1::glLightf commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820210180 0xc820210340 0xc820210440] } +&{glLightfv QOpenGLFunctions_2_1::glLightfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820210900 0xc820210ae0 0xc820210be0] } +&{glLighti QOpenGLFunctions_2_1::glLighti commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202111a0 0xc8202112c0 0xc8202113e0] } +&{glLightiv QOpenGLFunctions_2_1::glLightiv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202117e0 0xc820211880 0xc820211a20] } +&{glLineStipple QOpenGLFunctions_2_1::glLineStipple commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820211f00 0xc820208040] } +&{glLineWidth QOpenGLFunctions_2_1::glLineWidth commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820208540] } +&{glLinkProgram QOpenGLFunctions_2_1::glLinkProgram commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820208a80] } +&{glListBase QOpenGLFunctions_2_1::glListBase commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202090c0] } +&{glLoadIdentity QOpenGLFunctions_2_1::glLoadIdentity commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [] } +&{glLoadMatrixd QOpenGLFunctions_2_1::glLoadMatrixd commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202097a0] } +&{glLoadMatrixf QOpenGLFunctions_2_1::glLoadMatrixf commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820209be0] } +&{glLoadName QOpenGLFunctions_2_1::glLoadName commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820436040] } +&{glLoadTransposeMatrixd QOpenGLFunctions_2_1::glLoadTransposeMatrixd commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204362e0] } +&{glLoadTransposeMatrixf QOpenGLFunctions_2_1::glLoadTransposeMatrixf commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820436520] } +&{glLogicOp QOpenGLFunctions_2_1::glLogicOp commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820436840] } +&{glMap1d QOpenGLFunctions_2_1::glMap1d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820436a80 0xc820436b00 0xc820436bc0 0xc820436c80 0xc820436d40 0xc820436e20] } +&{glMap1f QOpenGLFunctions_2_1::glMap1f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820437180 0xc820437220 0xc8204372e0 0xc820437360 0xc820437400 0xc820437500] } +&{glMap2d QOpenGLFunctions_2_1::glMap2d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8204377c0 0xc8204378e0 0xc820437980 0xc820437a80 0xc820437b80 0xc820437c40 0xc820437d40 0xc820437e60 0xc820437f20 0xc8202000a0] } +&{glMap2f QOpenGLFunctions_2_1::glMap2f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820200580 0xc820200720 0xc8202007e0 0xc8202008e0 0xc820200a20 0xc820200b40 0xc820200c60 0xc820200d00 0xc820200de0 0xc820200ea0] } +&{glMapBuffer QOpenGLFunctions_2_1::glMapBuffer commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false GLvoid * [0xc820201100 0xc8202011c0] } +&{glMapGrid1d QOpenGLFunctions_2_1::glMapGrid1d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202013c0 0xc8202014c0 0xc820201620] } +&{glMapGrid1f QOpenGLFunctions_2_1::glMapGrid1f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820201800 0xc820201900 0xc820201a80] } +&{glMapGrid2d QOpenGLFunctions_2_1::glMapGrid2d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820201c40 0xc820201d20 0xc820201e80 0xc820201fc0 0xc820a0a080 0xc820a0a100] } +&{glMapGrid2f QOpenGLFunctions_2_1::glMapGrid2f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a0a280 0xc820a0a300 0xc820a0a380 0xc820a0a400 0xc820a0a4a0 0xc820a0a520] } +&{glMaterialf QOpenGLFunctions_2_1::glMaterialf commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a0a680 0xc820a0a700 0xc820a0a780] } +&{glMaterialfv QOpenGLFunctions_2_1::glMaterialfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a0a900 0xc820a0a980 0xc820a0aa60] } +&{glMateriali QOpenGLFunctions_2_1::glMateriali commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a0abe0 0xc820a0aca0 0xc820a0ad20] } +&{glMaterialiv QOpenGLFunctions_2_1::glMaterialiv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a0af00 0xc820a0af80 0xc820a0b060] } +&{glMatrixMode QOpenGLFunctions_2_1::glMatrixMode commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a0b240] } +&{glMinmax QOpenGLFunctions_2_1::glMinmax commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a0b480 0xc820a0b520 0xc820a0b600] } +&{glMultMatrixd QOpenGLFunctions_2_1::glMultMatrixd commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a0b7a0] } +&{glMultMatrixf QOpenGLFunctions_2_1::glMultMatrixf commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a0b9a0] } +&{glMultTransposeMatrixd QOpenGLFunctions_2_1::glMultTransposeMatrixd commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a0bbc0] } +&{glMultTransposeMatrixf QOpenGLFunctions_2_1::glMultTransposeMatrixf commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a0be20] } +&{glMultiDrawArrays QOpenGLFunctions_2_1::glMultiDrawArrays commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201f4020 0xc8201f4180 0xc8201f4260 0xc8201f4340] } +&{glMultiDrawElements QOpenGLFunctions_2_1::glMultiDrawElements commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201f4660 0xc8201f47c0 0xc8201f4860 0xc8201f49e0 0xc8201f4be0] } +&{glMultiTexCoord1d QOpenGLFunctions_2_1::glMultiTexCoord1d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201f50a0 0xc8201f5140] } +&{glMultiTexCoord1dv QOpenGLFunctions_2_1::glMultiTexCoord1dv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201f54a0 0xc8201f5560] } +&{glMultiTexCoord1f QOpenGLFunctions_2_1::glMultiTexCoord1f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201f5b00 0xc8201f5ce0] } +&{glMultiTexCoord1fv QOpenGLFunctions_2_1::glMultiTexCoord1fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201ea1e0 0xc8201ea2c0] } +&{glMultiTexCoord1i QOpenGLFunctions_2_1::glMultiTexCoord1i commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201ea5c0 0xc8201ea720] } +&{glMultiTexCoord1iv QOpenGLFunctions_2_1::glMultiTexCoord1iv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201eab20 0xc8201eabc0] } +&{glMultiTexCoord1s QOpenGLFunctions_2_1::glMultiTexCoord1s commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201eafc0 0xc8201eb060] } +&{glMultiTexCoord1sv QOpenGLFunctions_2_1::glMultiTexCoord1sv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201eb360 0xc8201eb460] } +&{glMultiTexCoord2d QOpenGLFunctions_2_1::glMultiTexCoord2d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201eb780 0xc8201eb860 0xc8201eb9c0] } +&{glMultiTexCoord2dv QOpenGLFunctions_2_1::glMultiTexCoord2dv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201ebee0 0xc8201ebfe0] } +&{glMultiTexCoord2f QOpenGLFunctions_2_1::glMultiTexCoord2f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201dc4a0 0xc8201dc5c0 0xc8201dc740] } +&{glMultiTexCoord2fv QOpenGLFunctions_2_1::glMultiTexCoord2fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201dccc0 0xc8201dcde0] } +&{glMultiTexCoord2i QOpenGLFunctions_2_1::glMultiTexCoord2i commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201dd260 0xc8201dd3e0 0xc8201dd520] } +&{glMultiTexCoord2iv QOpenGLFunctions_2_1::glMultiTexCoord2iv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201dd960 0xc8201dda20] } +&{glMultiTexCoord2s QOpenGLFunctions_2_1::glMultiTexCoord2s commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201ddd60 0xc8201dde60 0xc8201ddf60] } +&{glMultiTexCoord2sv QOpenGLFunctions_2_1::glMultiTexCoord2sv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201ca340 0xc8201ca420] } +&{glMultiTexCoord3d QOpenGLFunctions_2_1::glMultiTexCoord3d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201ca980 0xc8201caa60 0xc8201caba0 0xc8201cad40] } +&{glMultiTexCoord3dv QOpenGLFunctions_2_1::glMultiTexCoord3dv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201cb2a0 0xc8201cb3c0] } +&{glMultiTexCoord3f QOpenGLFunctions_2_1::glMultiTexCoord3f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201cb7e0 0xc8201cb940 0xc8201cbb60 0xc8201cbd00] } +&{glMultiTexCoord3fv QOpenGLFunctions_2_1::glMultiTexCoord3fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201c4160 0xc8201c4220] } +&{glMultiTexCoord3i QOpenGLFunctions_2_1::glMultiTexCoord3i commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201c48c0 0xc8201c4960 0xc8201c4b20 0xc8201c4ba0] } +&{glMultiTexCoord3iv QOpenGLFunctions_2_1::glMultiTexCoord3iv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201c5000 0xc8201c5120] } +&{glMultiTexCoord3s QOpenGLFunctions_2_1::glMultiTexCoord3s commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201c5440 0xc8201c5560 0xc8201c56e0 0xc8201c5840] } +&{glMultiTexCoord3sv QOpenGLFunctions_2_1::glMultiTexCoord3sv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201c5d40 0xc8201c5e80] } +&{glMultiTexCoord4d QOpenGLFunctions_2_1::glMultiTexCoord4d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201b6420 0xc8201b6680 0xc8201b6800 0xc8201b6920 0xc8201b6ac0] } +&{glMultiTexCoord4dv QOpenGLFunctions_2_1::glMultiTexCoord4dv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201b6e20 0xc8201b6f60] } +&{glMultiTexCoord4f QOpenGLFunctions_2_1::glMultiTexCoord4f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201b73e0 0xc8201b7560 0xc8201b7820 0xc8201b78e0 0xc8201b7b20] } +&{glMultiTexCoord4fv QOpenGLFunctions_2_1::glMultiTexCoord4fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201ae060 0xc8201ae2c0] } +&{glMultiTexCoord4i QOpenGLFunctions_2_1::glMultiTexCoord4i commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201ae6e0 0xc8201ae7a0 0xc8201ae8a0 0xc8201ae980 0xc8201aeae0] } +&{glMultiTexCoord4iv QOpenGLFunctions_2_1::glMultiTexCoord4iv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201af000 0xc8201af120] } +&{glMultiTexCoord4s QOpenGLFunctions_2_1::glMultiTexCoord4s commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201af6c0 0xc8201af820 0xc8201af8c0 0xc8201afac0 0xc8201afc00] } +&{glMultiTexCoord4sv QOpenGLFunctions_2_1::glMultiTexCoord4sv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a1c0a0 0xc820a1c120] } +&{glNewList QOpenGLFunctions_2_1::glNewList commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a1c400 0xc820a1c480] } +&{glNormal3b QOpenGLFunctions_2_1::glNormal3b commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a1c740 0xc820a1c7e0 0xc820a1c860] } +&{glNormal3bv QOpenGLFunctions_2_1::glNormal3bv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a1ca40] } +&{glNormal3d QOpenGLFunctions_2_1::glNormal3d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a1ccc0 0xc820a1cde0 0xc820a1cea0] } +&{glNormal3dv QOpenGLFunctions_2_1::glNormal3dv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a1d040] } +&{glNormal3f QOpenGLFunctions_2_1::glNormal3f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a1d280 0xc820a1d300 0xc820a1d380] } +&{glNormal3fv QOpenGLFunctions_2_1::glNormal3fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a1d4e0] } +&{glNormal3i QOpenGLFunctions_2_1::glNormal3i commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a1d780 0xc820a1d800 0xc820a1d880] } +&{glNormal3iv QOpenGLFunctions_2_1::glNormal3iv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a1daa0] } +&{glNormal3s QOpenGLFunctions_2_1::glNormal3s commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a1dcc0 0xc820a1dd80 0xc820a1de20] } +&{glNormal3sv QOpenGLFunctions_2_1::glNormal3sv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201a4000] } +&{glNormalPointer QOpenGLFunctions_2_1::glNormalPointer commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201a4260 0xc8201a43c0 0xc8201a4440] } +&{glOrtho QOpenGLFunctions_2_1::glOrtho commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201a4820 0xc8201a48e0 0xc8201a4a40 0xc8201a4b20 0xc8201a4be0 0xc8201a4d20] } +&{glPassThrough QOpenGLFunctions_2_1::glPassThrough commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201a4f40] } +&{glPixelMapfv QOpenGLFunctions_2_1::glPixelMapfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201a5280 0xc8201a53a0 0xc8201a54e0] } +&{glPixelMapuiv QOpenGLFunctions_2_1::glPixelMapuiv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201a57e0 0xc8201a5980 0xc8201a5a60] } +&{glPixelMapusv QOpenGLFunctions_2_1::glPixelMapusv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201a5e20 0xc8201a5f60 0xc82018c060] } +&{glPixelStoref QOpenGLFunctions_2_1::glPixelStoref commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82018c2a0 0xc82018c3e0] } +&{glPixelStorei QOpenGLFunctions_2_1::glPixelStorei commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82018c700 0xc82018c860] } +&{glPixelTransferf QOpenGLFunctions_2_1::glPixelTransferf commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82018cc00 0xc82018cd60] } +&{glPixelTransferi QOpenGLFunctions_2_1::glPixelTransferi commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82018d140 0xc82018d240] } +&{glPixelZoom QOpenGLFunctions_2_1::glPixelZoom commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82018d4a0 0xc82018d5c0] } +&{glPointParameterf QOpenGLFunctions_2_1::glPointParameterf commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82018da60 0xc82018db60] } +&{glPointParameterfv QOpenGLFunctions_2_1::glPointParameterfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82018dfc0 0xc8205ba040] } +&{glPointParameteri QOpenGLFunctions_2_1::glPointParameteri commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8205ba360 0xc8205ba3e0] } +&{glPointParameteriv QOpenGLFunctions_2_1::glPointParameteriv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8205ba680 0xc8205ba720] } +&{glPointSize QOpenGLFunctions_2_1::glPointSize commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8205ba900] } +&{glPolygonMode QOpenGLFunctions_2_1::glPolygonMode commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8205baae0 0xc8205babc0] } +&{glPolygonOffset QOpenGLFunctions_2_1::glPolygonOffset commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8205bae20 0xc8205baee0] } +&{glPolygonStipple QOpenGLFunctions_2_1::glPolygonStipple commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8205bb160] } +&{glPopAttrib QOpenGLFunctions_2_1::glPopAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [] } +&{glPopClientAttrib QOpenGLFunctions_2_1::glPopClientAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [] } +&{glPopMatrix QOpenGLFunctions_2_1::glPopMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [] } +&{glPopName QOpenGLFunctions_2_1::glPopName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [] } +&{glPrioritizeTextures QOpenGLFunctions_2_1::glPrioritizeTextures commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8205bb9c0 0xc8205bba80 0xc8205bbbe0] } +&{glPushAttrib QOpenGLFunctions_2_1::glPushAttrib commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8205bbe80] } +&{glPushClientAttrib QOpenGLFunctions_2_1::glPushClientAttrib commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820162320] } +&{glPushMatrix QOpenGLFunctions_2_1::glPushMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [] } +&{glPushName QOpenGLFunctions_2_1::glPushName commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820162b00] } +&{glRasterPos2d QOpenGLFunctions_2_1::glRasterPos2d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820162f60 0xc8201630a0] } +&{glRasterPos2dv QOpenGLFunctions_2_1::glRasterPos2dv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820163520] } +&{glRasterPos2f QOpenGLFunctions_2_1::glRasterPos2f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820163780 0xc820163920] } +&{glRasterPos2fv QOpenGLFunctions_2_1::glRasterPos2fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820163c20] } +&{glRasterPos2i QOpenGLFunctions_2_1::glRasterPos2i commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820163f20 0xc820152040] } +&{glRasterPos2iv QOpenGLFunctions_2_1::glRasterPos2iv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820152560] } +&{glRasterPos2s QOpenGLFunctions_2_1::glRasterPos2s commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820152940 0xc820152a60] } +&{glRasterPos2sv QOpenGLFunctions_2_1::glRasterPos2sv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820152ea0] } +&{glRasterPos3d QOpenGLFunctions_2_1::glRasterPos3d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820153140 0xc820153240 0xc820153380] } +&{glRasterPos3dv QOpenGLFunctions_2_1::glRasterPos3dv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820153700] } +&{glRasterPos3f QOpenGLFunctions_2_1::glRasterPos3f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820153ac0 0xc820153c40 0xc820153de0] } +&{glRasterPos3fv QOpenGLFunctions_2_1::glRasterPos3fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82013c120] } +&{glRasterPos3i QOpenGLFunctions_2_1::glRasterPos3i commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82013c400 0xc82013c640 0xc82013c760] } +&{glRasterPos3iv QOpenGLFunctions_2_1::glRasterPos3iv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82013c9a0] } +&{glRasterPos3s QOpenGLFunctions_2_1::glRasterPos3s commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82013cc00 0xc82013cd00 0xc82013cd80] } +&{glRasterPos3sv QOpenGLFunctions_2_1::glRasterPos3sv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82013d040] } +&{glRasterPos4d QOpenGLFunctions_2_1::glRasterPos4d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82013d2a0 0xc82013d360 0xc82013d440 0xc82013d540] } +&{glRasterPos4dv QOpenGLFunctions_2_1::glRasterPos4dv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82013d720] } +&{glRasterPos4f QOpenGLFunctions_2_1::glRasterPos4f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82013d920 0xc82013da60 0xc82013db80 0xc82013dca0] } +&{glRasterPos4fv QOpenGLFunctions_2_1::glRasterPos4fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82013df60] } +&{glRasterPos4i QOpenGLFunctions_2_1::glRasterPos4i commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82012a200 0xc82012a380 0xc82012a540 0xc82012a680] } +&{glRasterPos4iv QOpenGLFunctions_2_1::glRasterPos4iv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82012a9e0] } +&{glRasterPos4s QOpenGLFunctions_2_1::glRasterPos4s commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82012aea0 0xc82012afc0 0xc82012b120 0xc82012b260] } +&{glRasterPos4sv QOpenGLFunctions_2_1::glRasterPos4sv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82012b5c0] } +&{glReadBuffer QOpenGLFunctions_2_1::glReadBuffer commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82012b860] } +&{glReadPixels QOpenGLFunctions_2_1::glReadPixels commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82012bb40 0xc82012bd80 0xc82012be80 0xc82012bf00 0xc8201160a0 0xc820116140 0xc8201161c0] } +&{glRectd QOpenGLFunctions_2_1::glRectd commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820116420 0xc8201164c0 0xc820116640 0xc8201166e0] } +&{glRectdv QOpenGLFunctions_2_1::glRectdv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820116980 0xc820116b40] } +&{glRectf QOpenGLFunctions_2_1::glRectf commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820116f00 0xc820117040 0xc820117120 0xc820117240] } +&{glRectfv QOpenGLFunctions_2_1::glRectfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820117620 0xc820117740] } +&{glRecti QOpenGLFunctions_2_1::glRecti commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201179c0 0xc820117a80 0xc820117b00 0xc820117ba0] } +&{glRectiv QOpenGLFunctions_2_1::glRectiv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201020e0 0xc8201021c0] } +&{glRects QOpenGLFunctions_2_1::glRects commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820102660 0xc820102760 0xc820102860 0xc820102940] } +&{glRectsv QOpenGLFunctions_2_1::glRectsv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820102de0 0xc820102ea0] } +&{glRenderMode QOpenGLFunctions_2_1::glRenderMode commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false GLint [0xc820103120] } +&{glResetHistogram QOpenGLFunctions_2_1::glResetHistogram commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201034a0] } +&{glResetMinmax QOpenGLFunctions_2_1::glResetMinmax commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8201037a0] } +&{glRotated QOpenGLFunctions_2_1::glRotated commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820103be0 0xc820103d80 0xc820103e80 0xc820103fa0] } +&{glRotatef QOpenGLFunctions_2_1::glRotatef commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8200ee320 0xc8200ee440 0xc8200ee4e0 0xc8200ee6a0] } +&{glSampleCoverage QOpenGLFunctions_2_1::glSampleCoverage commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8200eea80 0xc8200eeb40] } +&{glScaled QOpenGLFunctions_2_1::glScaled commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8200ef0e0 0xc8200ef240 0xc8200ef340] } +&{glScalef QOpenGLFunctions_2_1::glScalef commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8200ef920 0xc8200efa20 0xc8200efb40] } +&{glScissor QOpenGLFunctions_2_1::glScissor commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8200e01c0 0xc8200e02e0 0xc8200e0400 0xc8200e04e0] } +&{glSecondaryColor3b QOpenGLFunctions_2_1::glSecondaryColor3b commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8200e0a00 0xc8200e0be0 0xc8200e0dc0] } +&{glSecondaryColor3bv QOpenGLFunctions_2_1::glSecondaryColor3bv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8200e11e0] } +&{glSecondaryColor3d QOpenGLFunctions_2_1::glSecondaryColor3d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8200e1600 0xc8200e1700 0xc8200e17c0] } +&{glSecondaryColor3dv QOpenGLFunctions_2_1::glSecondaryColor3dv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8200e1e00] } +&{glSecondaryColor3f QOpenGLFunctions_2_1::glSecondaryColor3f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8205301a0 0xc820530280 0xc820530380] } +&{glSecondaryColor3fv QOpenGLFunctions_2_1::glSecondaryColor3fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820530680] } +&{glSecondaryColor3i QOpenGLFunctions_2_1::glSecondaryColor3i commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8205309e0 0xc820530a80 0xc820530b00] } +&{glSecondaryColor3iv QOpenGLFunctions_2_1::glSecondaryColor3iv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820530d20] } +&{glSecondaryColor3s QOpenGLFunctions_2_1::glSecondaryColor3s commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8205310a0 0xc820531180 0xc820531280] } +&{glSecondaryColor3sv QOpenGLFunctions_2_1::glSecondaryColor3sv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820531560] } +&{glSecondaryColor3ub QOpenGLFunctions_2_1::glSecondaryColor3ub commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8205318c0 0xc8205319a0 0xc820531a20] } +&{glSecondaryColor3ubv QOpenGLFunctions_2_1::glSecondaryColor3ubv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820531d60] } +&{glSecondaryColor3ui QOpenGLFunctions_2_1::glSecondaryColor3ui commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8200d2020 0xc8200d2160 0xc8200d22c0] } +&{glSecondaryColor3uiv QOpenGLFunctions_2_1::glSecondaryColor3uiv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8200d2800] } +&{glSecondaryColor3us QOpenGLFunctions_2_1::glSecondaryColor3us commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8200d2e20 0xc8200d2f20 0xc8200d3020] } +&{glSecondaryColor3usv QOpenGLFunctions_2_1::glSecondaryColor3usv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8200d3540] } +&{glSecondaryColorPointer QOpenGLFunctions_2_1::glSecondaryColorPointer commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8200d3ae0 0xc8200d3c20 0xc8200d3d20 0xc8200d3e40] } +&{glSelectBuffer QOpenGLFunctions_2_1::glSelectBuffer commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8200a4080 0xc8200a4200] } +&{glSeparableFilter2D QOpenGLFunctions_2_1::glSeparableFilter2D commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8200a4680 0xc8200a4840 0xc8200a49c0 0xc8200a4b60 0xc8200a4ca0 0xc8200a4e60 0xc8200a4f80 0xc8200a50c0] } +&{glShadeModel QOpenGLFunctions_2_1::glShadeModel commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8200a5340] } +&{glShaderSource QOpenGLFunctions_2_1::glShaderSource commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8200a5740 0xc8200a5880 0xc8200a5a00 0xc8200a5c40] } +&{glStencilFunc QOpenGLFunctions_2_1::glStencilFunc commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82017e0c0 0xc82017e1a0 0xc82017e2c0] } +&{glStencilFuncSeparate QOpenGLFunctions_2_1::glStencilFuncSeparate commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82017e7a0 0xc82017e8a0 0xc82017e9e0 0xc82017eba0] } +&{glStencilMask QOpenGLFunctions_2_1::glStencilMask commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82017eee0] } +&{glStencilMaskSeparate QOpenGLFunctions_2_1::glStencilMaskSeparate commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82017f240 0xc82017f340] } +&{glStencilOp QOpenGLFunctions_2_1::glStencilOp commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82017f540 0xc82017f640 0xc82017f740] } +&{glStencilOpSeparate QOpenGLFunctions_2_1::glStencilOpSeparate commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82017fd20 0xc82017fe40 0xc82017ff20 0xc820070160] } +&{glTexCoord1d QOpenGLFunctions_2_1::glTexCoord1d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8200704c0] } +&{glTexCoord1dv QOpenGLFunctions_2_1::glTexCoord1dv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820070720] } +&{glTexCoord1f QOpenGLFunctions_2_1::glTexCoord1f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820070ac0] } +&{glTexCoord1fv QOpenGLFunctions_2_1::glTexCoord1fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820071000] } +&{glTexCoord1i QOpenGLFunctions_2_1::glTexCoord1i commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8200714c0] } +&{glTexCoord1iv QOpenGLFunctions_2_1::glTexCoord1iv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820071900] } +&{glTexCoord1s QOpenGLFunctions_2_1::glTexCoord1s commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820071c60] } +&{glTexCoord1sv QOpenGLFunctions_2_1::glTexCoord1sv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820071fe0] } +&{glTexCoord2d QOpenGLFunctions_2_1::glTexCoord2d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82000e5c0 0xc82000e6c0] } +&{glTexCoord2dv QOpenGLFunctions_2_1::glTexCoord2dv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82000ec20] } +&{glTexCoord2f QOpenGLFunctions_2_1::glTexCoord2f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82000f1a0 0xc82000f320] } +&{glTexCoord2fv QOpenGLFunctions_2_1::glTexCoord2fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82000f960] } +&{glTexCoord2i QOpenGLFunctions_2_1::glTexCoord2i commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82000ff60 0xc82123c740] } +&{glTexCoord2iv QOpenGLFunctions_2_1::glTexCoord2iv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82123dc80] } +&{glTexCoord2s QOpenGLFunctions_2_1::glTexCoord2s commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82123dde0 0xc82123de60] } +&{glTexCoord2sv QOpenGLFunctions_2_1::glTexCoord2sv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82123dfc0] } +&{glTexCoord3d QOpenGLFunctions_2_1::glTexCoord3d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82122e2c0 0xc82122e340 0xc82122e3c0] } +&{glTexCoord3dv QOpenGLFunctions_2_1::glTexCoord3dv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82122e520] } +&{glTexCoord3f QOpenGLFunctions_2_1::glTexCoord3f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82122e680 0xc82122e700 0xc82122e780] } +&{glTexCoord3fv QOpenGLFunctions_2_1::glTexCoord3fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82122e8e0] } +&{glTexCoord3i QOpenGLFunctions_2_1::glTexCoord3i commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82122ea40 0xc82122eac0 0xc82122eb40] } +&{glTexCoord3iv QOpenGLFunctions_2_1::glTexCoord3iv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82122eca0] } +&{glTexCoord3s QOpenGLFunctions_2_1::glTexCoord3s commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82122ee00 0xc82122ee80 0xc82122ef00] } +&{glTexCoord3sv QOpenGLFunctions_2_1::glTexCoord3sv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82122f060] } +&{glTexCoord4d QOpenGLFunctions_2_1::glTexCoord4d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82122f1c0 0xc82122f240 0xc82122f2c0 0xc82122f340] } +&{glTexCoord4dv QOpenGLFunctions_2_1::glTexCoord4dv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82122f4a0] } +&{glTexCoord4f QOpenGLFunctions_2_1::glTexCoord4f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82122f600 0xc82122f680 0xc82122f700 0xc82122f780] } +&{glTexCoord4fv QOpenGLFunctions_2_1::glTexCoord4fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82122f8e0] } +&{glTexCoord4i QOpenGLFunctions_2_1::glTexCoord4i commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82122fa40 0xc82122fac0 0xc82122fb40 0xc82122fbc0] } +&{glTexCoord4iv QOpenGLFunctions_2_1::glTexCoord4iv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82122fd20] } +&{glTexCoord4s QOpenGLFunctions_2_1::glTexCoord4s commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82122fe80 0xc82122ff00 0xc82122ff80 0xc820614000] } +&{glTexCoord4sv QOpenGLFunctions_2_1::glTexCoord4sv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820614160] } +&{glTexCoordPointer QOpenGLFunctions_2_1::glTexCoordPointer commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820614320 0xc8206143a0 0xc820614420 0xc8206144a0] } +&{glTexEnvf QOpenGLFunctions_2_1::glTexEnvf commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820614660 0xc8206146e0 0xc820614760] } +&{glTexEnvfv QOpenGLFunctions_2_1::glTexEnvfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820614920 0xc8206149a0 0xc820614a20] } +&{glTexEnvi QOpenGLFunctions_2_1::glTexEnvi commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820614be0 0xc820614c60 0xc820614ce0] } +&{glTexEnviv QOpenGLFunctions_2_1::glTexEnviv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820614ea0 0xc820614f20 0xc820614fa0] } +&{glTexGend QOpenGLFunctions_2_1::glTexGend commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820615160 0xc8206151e0 0xc820615260] } +&{glTexGendv QOpenGLFunctions_2_1::glTexGendv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820615420 0xc8206154a0 0xc820615520] } +&{glTexGenf QOpenGLFunctions_2_1::glTexGenf commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8206156e0 0xc820615760 0xc8206157e0] } +&{glTexGenfv QOpenGLFunctions_2_1::glTexGenfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8206159a0 0xc820615a20 0xc820615aa0] } +&{glTexGeni QOpenGLFunctions_2_1::glTexGeni commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820615c60 0xc820615ce0 0xc820615d60] } +&{glTexGeniv QOpenGLFunctions_2_1::glTexGeniv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820615f20 0xc820615fa0 0xc82045a020] } +&{glTexImage1D QOpenGLFunctions_2_1::glTexImage1D commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82045a180 0xc82045a200 0xc82045a280 0xc82045a300 0xc82045a3a0 0xc82045a420 0xc82045a4a0 0xc82045a520] } +&{glTexImage2D QOpenGLFunctions_2_1::glTexImage2D commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82045a680 0xc82045a700 0xc82045a780 0xc82045a800 0xc82045a8a0 0xc82045a920 0xc82045a9a0 0xc82045aa20 0xc82045aac0] } +&{glTexImage3D QOpenGLFunctions_2_1::glTexImage3D commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82045ac20 0xc82045aca0 0xc82045ad20 0xc82045ada0 0xc82045ae40 0xc82045aec0 0xc82045af40 0xc82045afc0 0xc82045b060 0xc82045b0e0] } +&{glTexParameterf QOpenGLFunctions_2_1::glTexParameterf commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82045b240 0xc82045b2c0 0xc82045b340] } +&{glTexParameterfv QOpenGLFunctions_2_1::glTexParameterfv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82045b4a0 0xc82045b520 0xc82045b5a0] } +&{glTexParameteri QOpenGLFunctions_2_1::glTexParameteri commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82045b700 0xc82045b780 0xc82045b800] } +&{glTexParameteriv QOpenGLFunctions_2_1::glTexParameteriv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82045b960 0xc82045b9e0 0xc82045ba60] } +&{glTexSubImage1D QOpenGLFunctions_2_1::glTexSubImage1D commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc82045bbc0 0xc82045bc40 0xc82045bcc0 0xc82045bd40 0xc82045bde0 0xc82045be60 0xc82045bee0] } +&{glTexSubImage2D QOpenGLFunctions_2_1::glTexSubImage2D commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a40040 0xc820a400c0 0xc820a40140 0xc820a401c0 0xc820a40260 0xc820a402e0 0xc820a40360 0xc820a403e0 0xc820a40480] } +&{glTexSubImage3D QOpenGLFunctions_2_1::glTexSubImage3D commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a405e0 0xc820a40660 0xc820a406e0 0xc820a40760 0xc820a40800 0xc820a40880 0xc820a40900 0xc820a40980 0xc820a40a20 0xc820a40aa0 0xc820a40b20] } +&{glTranslated QOpenGLFunctions_2_1::glTranslated commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a40c80 0xc820a40d00 0xc820a40d80] } +&{glTranslatef QOpenGLFunctions_2_1::glTranslatef commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a40ee0 0xc820a40f60 0xc820a40fe0] } +&{glUniform1f QOpenGLFunctions_2_1::glUniform1f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a41140 0xc820a411c0] } +&{glUniform1fv QOpenGLFunctions_2_1::glUniform1fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a41320 0xc820a413a0 0xc820a41420] } +&{glUniform1i QOpenGLFunctions_2_1::glUniform1i commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a41580 0xc820a41600] } +&{glUniform1iv QOpenGLFunctions_2_1::glUniform1iv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a41760 0xc820a417e0 0xc820a41860] } +&{glUniform2f QOpenGLFunctions_2_1::glUniform2f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a419c0 0xc820a41a40 0xc820a41ac0] } +&{glUniform2fv QOpenGLFunctions_2_1::glUniform2fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a41c20 0xc820a41ca0 0xc820a41d20] } +&{glUniform2i QOpenGLFunctions_2_1::glUniform2i commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820a41e80 0xc820a41f00 0xc820a41f80] } +&{glUniform2iv QOpenGLFunctions_2_1::glUniform2iv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8205460e0 0xc820546160 0xc8205461e0] } +&{glUniform3f QOpenGLFunctions_2_1::glUniform3f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820546340 0xc8205463c0 0xc820546440 0xc8205464c0] } +&{glUniform3fv QOpenGLFunctions_2_1::glUniform3fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820546620 0xc8205466a0 0xc820546720] } +&{glUniform3i QOpenGLFunctions_2_1::glUniform3i commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820546880 0xc820546900 0xc820546980 0xc820546a00] } +&{glUniform3iv QOpenGLFunctions_2_1::glUniform3iv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820546b60 0xc820546be0 0xc820546c60] } +&{glUniform4f QOpenGLFunctions_2_1::glUniform4f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820546dc0 0xc820546e40 0xc820546ec0 0xc820546f40 0xc820546fe0] } +&{glUniform4fv QOpenGLFunctions_2_1::glUniform4fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820547140 0xc8205471c0 0xc820547240] } +&{glUniform4i QOpenGLFunctions_2_1::glUniform4i commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8205473a0 0xc820547420 0xc8205474a0 0xc820547520 0xc8205475c0] } +&{glUniform4iv QOpenGLFunctions_2_1::glUniform4iv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820547720 0xc8205477a0 0xc820547820] } +&{glUniformMatrix2fv QOpenGLFunctions_2_1::glUniformMatrix2fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8205479e0 0xc820547a60 0xc820547ae0 0xc820547b60] } +&{glUniformMatrix2x3fv QOpenGLFunctions_2_1::glUniformMatrix2x3fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820547d20 0xc820547da0 0xc820547e20 0xc820547ea0] } +&{glUniformMatrix2x4fv QOpenGLFunctions_2_1::glUniformMatrix2x4fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203a8060 0xc8203a80e0 0xc8203a8160 0xc8203a81e0] } +&{glUniformMatrix3fv QOpenGLFunctions_2_1::glUniformMatrix3fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203a83a0 0xc8203a8420 0xc8203a84a0 0xc8203a8520] } +&{glUniformMatrix3x2fv QOpenGLFunctions_2_1::glUniformMatrix3x2fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203a86e0 0xc8203a8760 0xc8203a87e0 0xc8203a8860] } +&{glUniformMatrix3x4fv QOpenGLFunctions_2_1::glUniformMatrix3x4fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203a8a20 0xc8203a8aa0 0xc8203a8b20 0xc8203a8ba0] } +&{glUniformMatrix4fv QOpenGLFunctions_2_1::glUniformMatrix4fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203a8d60 0xc8203a8de0 0xc8203a8e60 0xc8203a8ee0] } +&{glUniformMatrix4x2fv QOpenGLFunctions_2_1::glUniformMatrix4x2fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203a90a0 0xc8203a9120 0xc8203a91a0 0xc8203a9220] } +&{glUniformMatrix4x3fv QOpenGLFunctions_2_1::glUniformMatrix4x3fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203a93e0 0xc8203a9460 0xc8203a94e0 0xc8203a9560] } +&{glUnmapBuffer QOpenGLFunctions_2_1::glUnmapBuffer commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false GLboolean [0xc8203a96c0] } +&{glUseProgram QOpenGLFunctions_2_1::glUseProgram commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203a9820] } +&{glValidateProgram QOpenGLFunctions_2_1::glValidateProgram commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203a99e0] } +&{glVertex2d QOpenGLFunctions_2_1::glVertex2d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203a9ba0 0xc8203a9c20] } +&{glVertex2dv QOpenGLFunctions_2_1::glVertex2dv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203a9d80] } +&{glVertex2f QOpenGLFunctions_2_1::glVertex2f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203a9f40 0xc8203a9fc0] } +&{glVertex2fv QOpenGLFunctions_2_1::glVertex2fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820386140] } +&{glVertex2i QOpenGLFunctions_2_1::glVertex2i commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820386300 0xc820386380] } +&{glVertex2iv QOpenGLFunctions_2_1::glVertex2iv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820386500] } +&{glVertex2s QOpenGLFunctions_2_1::glVertex2s commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203866c0 0xc820386740] } +&{glVertex2sv QOpenGLFunctions_2_1::glVertex2sv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203868a0] } +&{glVertex3d QOpenGLFunctions_2_1::glVertex3d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820386a60 0xc820386ae0 0xc820386b60] } +&{glVertex3dv QOpenGLFunctions_2_1::glVertex3dv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820386cc0] } +&{glVertex3f QOpenGLFunctions_2_1::glVertex3f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820386e80 0xc820386f00 0xc820386f80] } +&{glVertex3fv QOpenGLFunctions_2_1::glVertex3fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203870e0] } +&{glVertex3i QOpenGLFunctions_2_1::glVertex3i commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203872a0 0xc820387320 0xc8203873a0] } +&{glVertex3iv QOpenGLFunctions_2_1::glVertex3iv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820387520] } +&{glVertex3s QOpenGLFunctions_2_1::glVertex3s commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203876e0 0xc820387760 0xc8203877e0] } +&{glVertex3sv QOpenGLFunctions_2_1::glVertex3sv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820387940] } +&{glVertex4d QOpenGLFunctions_2_1::glVertex4d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820387b00 0xc820387b80 0xc820387c00 0xc820387c80] } +&{glVertex4dv QOpenGLFunctions_2_1::glVertex4dv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820387de0] } +&{glVertex4f QOpenGLFunctions_2_1::glVertex4f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820387fa0 0xc820340020 0xc8203400a0 0xc820340120] } +&{glVertex4fv QOpenGLFunctions_2_1::glVertex4fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820340280] } +&{glVertex4i QOpenGLFunctions_2_1::glVertex4i commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820340440 0xc8203404c0 0xc820340540 0xc8203405c0] } +&{glVertex4iv QOpenGLFunctions_2_1::glVertex4iv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820340740] } +&{glVertex4s QOpenGLFunctions_2_1::glVertex4s commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820340900 0xc820340980 0xc820340a00 0xc820340a80] } +&{glVertex4sv QOpenGLFunctions_2_1::glVertex4sv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820340be0] } +&{glVertexAttrib1d QOpenGLFunctions_2_1::glVertexAttrib1d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820340d40 0xc820340dc0] } +&{glVertexAttrib1dv QOpenGLFunctions_2_1::glVertexAttrib1dv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820340f80 0xc820341000] } +&{glVertexAttrib1f QOpenGLFunctions_2_1::glVertexAttrib1f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820341160 0xc8203411e0] } +&{glVertexAttrib1fv QOpenGLFunctions_2_1::glVertexAttrib1fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203413a0 0xc820341420] } +&{glVertexAttrib1s QOpenGLFunctions_2_1::glVertexAttrib1s commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820341580 0xc820341600] } +&{glVertexAttrib1sv QOpenGLFunctions_2_1::glVertexAttrib1sv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203417c0 0xc820341840] } +&{glVertexAttrib2d QOpenGLFunctions_2_1::glVertexAttrib2d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8203419a0 0xc820341a20 0xc820341aa0] } +&{glVertexAttrib2dv QOpenGLFunctions_2_1::glVertexAttrib2dv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820341c60 0xc820341ce0] } +&{glVertexAttrib2f QOpenGLFunctions_2_1::glVertexAttrib2f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820341e40 0xc820341ec0 0xc820341f40] } +&{glVertexAttrib2fv QOpenGLFunctions_2_1::glVertexAttrib2fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820214100 0xc820214180] } +&{glVertexAttrib2s QOpenGLFunctions_2_1::glVertexAttrib2s commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202142e0 0xc820214360 0xc8202143e0] } +&{glVertexAttrib2sv QOpenGLFunctions_2_1::glVertexAttrib2sv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202145a0 0xc820214620] } +&{glVertexAttrib3d QOpenGLFunctions_2_1::glVertexAttrib3d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820214780 0xc820214800 0xc820214880 0xc820214900] } +&{glVertexAttrib3dv QOpenGLFunctions_2_1::glVertexAttrib3dv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820214ac0 0xc820214b40] } +&{glVertexAttrib3f QOpenGLFunctions_2_1::glVertexAttrib3f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820214ca0 0xc820214d20 0xc820214da0 0xc820214e20] } +&{glVertexAttrib3fv QOpenGLFunctions_2_1::glVertexAttrib3fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820214fe0 0xc820215060] } +&{glVertexAttrib3s QOpenGLFunctions_2_1::glVertexAttrib3s commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202151c0 0xc820215240 0xc8202152c0 0xc820215340] } +&{glVertexAttrib3sv QOpenGLFunctions_2_1::glVertexAttrib3sv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820215500 0xc820215580] } +&{glVertexAttrib4Nbv QOpenGLFunctions_2_1::glVertexAttrib4Nbv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820215740 0xc8202157c0] } +&{glVertexAttrib4Niv QOpenGLFunctions_2_1::glVertexAttrib4Niv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820215980 0xc820215a00] } +&{glVertexAttrib4Nsv QOpenGLFunctions_2_1::glVertexAttrib4Nsv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820215bc0 0xc820215c40] } +&{glVertexAttrib4Nub QOpenGLFunctions_2_1::glVertexAttrib4Nub commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820215e00 0xc820215e80 0xc820215f00 0xc820215f80 0xc820206020] } +&{glVertexAttrib4Nubv QOpenGLFunctions_2_1::glVertexAttrib4Nubv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202061e0 0xc820206260] } +&{glVertexAttrib4Nuiv QOpenGLFunctions_2_1::glVertexAttrib4Nuiv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820206420 0xc8202064a0] } +&{glVertexAttrib4Nusv QOpenGLFunctions_2_1::glVertexAttrib4Nusv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820206660 0xc8202066e0] } +&{glVertexAttrib4bv QOpenGLFunctions_2_1::glVertexAttrib4bv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202068a0 0xc820206920] } +&{glVertexAttrib4d QOpenGLFunctions_2_1::glVertexAttrib4d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820206a80 0xc820206b00 0xc820206b80 0xc820206c00 0xc820206ca0] } +&{glVertexAttrib4dv QOpenGLFunctions_2_1::glVertexAttrib4dv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820206e60 0xc820206ee0] } +&{glVertexAttrib4f QOpenGLFunctions_2_1::glVertexAttrib4f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820207040 0xc8202070c0 0xc820207140 0xc8202071c0 0xc820207260] } +&{glVertexAttrib4fv QOpenGLFunctions_2_1::glVertexAttrib4fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820207420 0xc8202074a0] } +&{glVertexAttrib4iv QOpenGLFunctions_2_1::glVertexAttrib4iv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820207660 0xc8202076e0] } +&{glVertexAttrib4s QOpenGLFunctions_2_1::glVertexAttrib4s commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820207840 0xc8202078c0 0xc820207940 0xc8202079c0 0xc820207a60] } +&{glVertexAttrib4sv QOpenGLFunctions_2_1::glVertexAttrib4sv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820207c20 0xc820207ca0] } +&{glVertexAttrib4ubv QOpenGLFunctions_2_1::glVertexAttrib4ubv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820207e60 0xc820207ee0] } +&{glVertexAttrib4uiv QOpenGLFunctions_2_1::glVertexAttrib4uiv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202d20a0 0xc8202d2120] } +&{glVertexAttrib4usv QOpenGLFunctions_2_1::glVertexAttrib4usv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202d22e0 0xc8202d2360] } +&{glVertexAttribPointer QOpenGLFunctions_2_1::glVertexAttribPointer commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202d2520 0xc8202d25a0 0xc8202d2620 0xc8202d26a0 0xc8202d2740 0xc8202d27c0] } +&{glVertexPointer QOpenGLFunctions_2_1::glVertexPointer commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202d2920 0xc8202d29a0 0xc8202d2a20 0xc8202d2aa0] } +&{glViewport QOpenGLFunctions_2_1::glViewport commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202d2c60 0xc8202d2ce0 0xc8202d2d60 0xc8202d2de0] } +&{glWindowPos2d QOpenGLFunctions_2_1::glWindowPos2d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202d2f40 0xc8202d2fc0] } +&{glWindowPos2dv QOpenGLFunctions_2_1::glWindowPos2dv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202d3120] } +&{glWindowPos2f QOpenGLFunctions_2_1::glWindowPos2f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202d3280 0xc8202d3300] } +&{glWindowPos2fv QOpenGLFunctions_2_1::glWindowPos2fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202d3460] } +&{glWindowPos2i QOpenGLFunctions_2_1::glWindowPos2i commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202d35c0 0xc8202d3640] } +&{glWindowPos2iv QOpenGLFunctions_2_1::glWindowPos2iv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202d37a0] } +&{glWindowPos2s QOpenGLFunctions_2_1::glWindowPos2s commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202d3900 0xc8202d3980] } +&{glWindowPos2sv QOpenGLFunctions_2_1::glWindowPos2sv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202d3ae0] } +&{glWindowPos3d QOpenGLFunctions_2_1::glWindowPos3d commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202d3c40 0xc8202d3cc0 0xc8202d3d40] } +&{glWindowPos3dv QOpenGLFunctions_2_1::glWindowPos3dv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202d3ea0] } +&{glWindowPos3f QOpenGLFunctions_2_1::glWindowPos3f commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820292000 0xc820292080 0xc820292100] } +&{glWindowPos3fv QOpenGLFunctions_2_1::glWindowPos3fv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820292260] } +&{glWindowPos3i QOpenGLFunctions_2_1::glWindowPos3i commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202923c0 0xc820292440 0xc8202924c0] } +&{glWindowPos3iv QOpenGLFunctions_2_1::glWindowPos3iv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820292620] } +&{glWindowPos3s QOpenGLFunctions_2_1::glWindowPos3s commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc820292780 0xc820292800 0xc820292880] } +&{glWindowPos3sv QOpenGLFunctions_2_1::glWindowPos3sv commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_2_1.h non plain false false void [0xc8202929e0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions_3_0.txt b/internal/binding/dump/QtGui/QOpenGLFunctions_3_0.txt new file mode 100755 index 00000000..db9c95dd --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions_3_0.txt @@ -0,0 +1,672 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions_3_0 QOpenGLFunctions_3_0::QOpenGLFunctions_3_0 commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.cpp non constructor false false [] } +&{initializeOpenGLFunctions QOpenGLFunctions_3_0::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.cpp impure plain false false bool [] } +&{~QOpenGLFunctions_3_0 QOpenGLFunctions_3_0::~QOpenGLFunctions_3_0 commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.cpp non destructor false false [] } +&{glAccum QOpenGLFunctions_3_0::glAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820293320 0xc8202933a0] } +&{glActiveTexture QOpenGLFunctions_3_0::glActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820293500] } +&{glAlphaFunc QOpenGLFunctions_3_0::glAlphaFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820293660 0xc8202936e0] } +&{glAreTexturesResident QOpenGLFunctions_3_0::glAreTexturesResident commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false GLboolean [0xc8202938c0 0xc820293940 0xc8202939c0] } +&{glArrayElement QOpenGLFunctions_3_0::glArrayElement commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820293b40] } +&{glAttachShader QOpenGLFunctions_3_0::glAttachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820293ca0 0xc820293d20] } +&{glBegin QOpenGLFunctions_3_0::glBegin commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820293f00] } +&{glBeginConditionalRender QOpenGLFunctions_3_0::glBeginConditionalRender commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82025e0c0 0xc82025e140] } +&{glBeginQuery QOpenGLFunctions_3_0::glBeginQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82025e2a0 0xc82025e320] } +&{glBeginTransformFeedback QOpenGLFunctions_3_0::glBeginTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82025e4e0] } +&{glBindAttribLocation QOpenGLFunctions_3_0::glBindAttribLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82025e6a0 0xc82025e720 0xc82025e7a0] } +&{glBindBuffer QOpenGLFunctions_3_0::glBindBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82025e920 0xc82025e9a0] } +&{glBindBufferBase QOpenGLFunctions_3_0::glBindBufferBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82025eb00 0xc82025eb80 0xc82025ec00] } +&{glBindBufferRange QOpenGLFunctions_3_0::glBindBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82025edc0 0xc82025ee40 0xc82025eec0 0xc82025ef40 0xc82025efe0] } +&{glBindFragDataLocation QOpenGLFunctions_3_0::glBindFragDataLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82025f1a0 0xc82025f220 0xc82025f2a0] } +&{glBindFramebuffer QOpenGLFunctions_3_0::glBindFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82025f460 0xc82025f4e0] } +&{glBindRenderbuffer QOpenGLFunctions_3_0::glBindRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82025f6a0 0xc82025f720] } +&{glBindTexture QOpenGLFunctions_3_0::glBindTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82025f880 0xc82025f900] } +&{glBindVertexArray QOpenGLFunctions_3_0::glBindVertexArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82025fac0] } +&{glBitmap QOpenGLFunctions_3_0::glBitmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82025fc80 0xc82025fd00 0xc82025fd80 0xc82025fe00 0xc82025fea0 0xc82025ff20 0xc82025ffa0] } +&{glBlendColor QOpenGLFunctions_3_0::glBlendColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820176100 0xc820176180 0xc820176200 0xc820176280] } +&{glBlendEquation QOpenGLFunctions_3_0::glBlendEquation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8201763e0] } +&{glBlendEquationSeparate QOpenGLFunctions_3_0::glBlendEquationSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8201765a0 0xc820176620] } +&{glBlendFunc QOpenGLFunctions_3_0::glBlendFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820176780 0xc820176800] } +&{glBlendFuncSeparate QOpenGLFunctions_3_0::glBlendFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8201769c0 0xc820176a40 0xc820176ac0 0xc820176b40] } +&{glBlitFramebuffer QOpenGLFunctions_3_0::glBlitFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820176d00 0xc820176d80 0xc820176e00 0xc820176e80 0xc820176f20 0xc820176fa0 0xc820177020 0xc8201770a0 0xc820177140 0xc8201771c0] } +&{glBufferData QOpenGLFunctions_3_0::glBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820177320 0xc8201773a0 0xc820177420 0xc8201774a0] } +&{glBufferSubData QOpenGLFunctions_3_0::glBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820177620 0xc8201776a0 0xc820177720 0xc8201777a0] } +&{glCallList QOpenGLFunctions_3_0::glCallList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820177980] } +&{glCallLists QOpenGLFunctions_3_0::glCallLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820177ae0 0xc820177b60 0xc820177be0] } +&{glCheckFramebufferStatus QOpenGLFunctions_3_0::glCheckFramebufferStatus commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false GLenum [0xc820177da0] } +&{glClampColor QOpenGLFunctions_3_0::glClampColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820177f00 0xc820177f80] } +&{glClear QOpenGLFunctions_3_0::glClear commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82048e160] } +&{glClearAccum QOpenGLFunctions_3_0::glClearAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82048e2c0 0xc82048e340 0xc82048e3c0 0xc82048e440] } +&{glClearBufferfi QOpenGLFunctions_3_0::glClearBufferfi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82048e5a0 0xc82048e620 0xc82048e6a0 0xc82048e720] } +&{glClearBufferfv QOpenGLFunctions_3_0::glClearBufferfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82048e880 0xc82048e900 0xc82048e980] } +&{glClearBufferiv QOpenGLFunctions_3_0::glClearBufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82048eae0 0xc82048eb60 0xc82048ebe0] } +&{glClearBufferuiv QOpenGLFunctions_3_0::glClearBufferuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82048ed40 0xc82048edc0 0xc82048ee40] } +&{glClearColor QOpenGLFunctions_3_0::glClearColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82048efa0 0xc82048f020 0xc82048f0a0 0xc82048f120] } +&{glClearDepth QOpenGLFunctions_3_0::glClearDepth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82048f280] } +&{glClearIndex QOpenGLFunctions_3_0::glClearIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82048f400] } +&{glClearStencil QOpenGLFunctions_3_0::glClearStencil commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82048f580] } +&{glClientActiveTexture QOpenGLFunctions_3_0::glClientActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82048f740] } +&{glClipPlane QOpenGLFunctions_3_0::glClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82048f8a0 0xc82048f920] } +&{glColor3b QOpenGLFunctions_3_0::glColor3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82048fae0 0xc82048fb60 0xc82048fbe0] } +&{glColor3bv QOpenGLFunctions_3_0::glColor3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82048fdc0] } +&{glColor3d QOpenGLFunctions_3_0::glColor3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82048ff80 0xc820196000 0xc820196080] } +&{glColor3dv QOpenGLFunctions_3_0::glColor3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820196240] } +&{glColor3f QOpenGLFunctions_3_0::glColor3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820196400 0xc820196480 0xc820196500] } +&{glColor3fv QOpenGLFunctions_3_0::glColor3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8201966c0] } +&{glColor3i QOpenGLFunctions_3_0::glColor3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820196880 0xc820196900 0xc820196980] } +&{glColor3iv QOpenGLFunctions_3_0::glColor3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820196b60] } +&{glColor3s QOpenGLFunctions_3_0::glColor3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820196d20 0xc820196da0 0xc820196e20] } +&{glColor3sv QOpenGLFunctions_3_0::glColor3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820196fe0] } +&{glColor3ub QOpenGLFunctions_3_0::glColor3ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8201971a0 0xc820197220 0xc8201972a0] } +&{glColor3ubv QOpenGLFunctions_3_0::glColor3ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820197400] } +&{glColor3ui QOpenGLFunctions_3_0::glColor3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8201975c0 0xc820197640 0xc8201976c0] } +&{glColor3uiv QOpenGLFunctions_3_0::glColor3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820197820] } +&{glColor3us QOpenGLFunctions_3_0::glColor3us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8201979e0 0xc820197a60 0xc820197ae0] } +&{glColor3usv QOpenGLFunctions_3_0::glColor3usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820197c60] } +&{glColor4b QOpenGLFunctions_3_0::glColor4b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820197e20 0xc820197ea0 0xc820197f20 0xc820197fa0] } +&{glColor4bv QOpenGLFunctions_3_0::glColor4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8200f8180] } +&{glColor4d QOpenGLFunctions_3_0::glColor4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8200f8340 0xc8200f83c0 0xc8200f8440 0xc8200f84c0] } +&{glColor4dv QOpenGLFunctions_3_0::glColor4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8200f8680] } +&{glColor4f QOpenGLFunctions_3_0::glColor4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8200f8840 0xc8200f88c0 0xc8200f8940 0xc8200f89c0] } +&{glColor4fv QOpenGLFunctions_3_0::glColor4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8200f8b80] } +&{glColor4i QOpenGLFunctions_3_0::glColor4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8200f8d40 0xc8200f8dc0 0xc8200f8e40 0xc8200f8ec0] } +&{glColor4iv QOpenGLFunctions_3_0::glColor4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8200f90a0] } +&{glColor4s QOpenGLFunctions_3_0::glColor4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8200f9260 0xc8200f92e0 0xc8200f9360 0xc8200f93e0] } +&{glColor4sv QOpenGLFunctions_3_0::glColor4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8200f95a0] } +&{glColor4ub QOpenGLFunctions_3_0::glColor4ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8200f9760 0xc8200f97e0 0xc8200f9860 0xc8200f98e0] } +&{glColor4ubv QOpenGLFunctions_3_0::glColor4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8200f9a40] } +&{glColor4ui QOpenGLFunctions_3_0::glColor4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8200f9c00 0xc8200f9c80 0xc8200f9d00 0xc8200f9d80] } +&{glColor4uiv QOpenGLFunctions_3_0::glColor4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8200f9ee0] } +&{glColor4us QOpenGLFunctions_3_0::glColor4us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82013e0a0 0xc82013e120 0xc82013e1a0 0xc82013e220] } +&{glColor4usv QOpenGLFunctions_3_0::glColor4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82013e380] } +&{glColorMask QOpenGLFunctions_3_0::glColorMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82013e4e0 0xc82013e560 0xc82013e5e0 0xc82013e660] } +&{glColorMaski QOpenGLFunctions_3_0::glColorMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82013e7c0 0xc82013e840 0xc82013e8c0 0xc82013e940 0xc82013e9e0] } +&{glColorMaterial QOpenGLFunctions_3_0::glColorMaterial commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82013eb40 0xc82013ebc0] } +&{glColorPointer QOpenGLFunctions_3_0::glColorPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82013ed20 0xc82013eda0 0xc82013ee20 0xc82013eea0] } +&{glColorSubTable QOpenGLFunctions_3_0::glColorSubTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82013f000 0xc82013f080 0xc82013f100 0xc82013f180 0xc82013f220 0xc82013f2a0] } +&{glColorTable QOpenGLFunctions_3_0::glColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82013f400 0xc82013f480 0xc82013f500 0xc82013f580 0xc82013f620 0xc82013f6a0] } +&{glColorTableParameterfv QOpenGLFunctions_3_0::glColorTableParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82013f860 0xc82013f8e0 0xc82013f960] } +&{glColorTableParameteriv QOpenGLFunctions_3_0::glColorTableParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82013fb20 0xc82013fba0 0xc82013fc20] } +&{glCompileShader QOpenGLFunctions_3_0::glCompileShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82013fd80] } +&{glCompressedTexImage1D QOpenGLFunctions_3_0::glCompressedTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82013ff40 0xc82013ffc0 0xc8200e6040 0xc8200e60c0 0xc8200e6160 0xc8200e61e0 0xc8200e6260] } +&{glCompressedTexImage2D QOpenGLFunctions_3_0::glCompressedTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8200e6420 0xc8200e64a0 0xc8200e6520 0xc8200e65a0 0xc8200e6640 0xc8200e66c0 0xc8200e6740 0xc8200e67c0] } +&{glCompressedTexImage3D QOpenGLFunctions_3_0::glCompressedTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8200e6980 0xc8200e6a00 0xc8200e6a80 0xc8200e6b00 0xc8200e6ba0 0xc8200e6c20 0xc8200e6ca0 0xc8200e6d20 0xc8200e6dc0] } +&{glCompressedTexSubImage1D QOpenGLFunctions_3_0::glCompressedTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8200e6f80 0xc8200e7000 0xc8200e7080 0xc8200e7100 0xc8200e71a0 0xc8200e7220 0xc8200e72a0] } +&{glCompressedTexSubImage2D QOpenGLFunctions_3_0::glCompressedTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8200e7460 0xc8200e74e0 0xc8200e7560 0xc8200e75e0 0xc8200e7680 0xc8200e7700 0xc8200e7780 0xc8200e7800 0xc8200e78a0] } +&{glCompressedTexSubImage3D QOpenGLFunctions_3_0::glCompressedTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8200e7a60 0xc8200e7ae0 0xc8200e7b60 0xc8200e7be0 0xc8200e7c80 0xc8200e7d00 0xc8200e7d80 0xc8200e7e00 0xc8200e7ea0 0xc8200e7f20 0xc8200e7fa0] } +&{glConvolutionFilter1D QOpenGLFunctions_3_0::glConvolutionFilter1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8215f8160 0xc8215f81e0 0xc8215f8260 0xc8215f82e0 0xc8215f8380 0xc8215f8400] } +&{glConvolutionFilter2D QOpenGLFunctions_3_0::glConvolutionFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8215f85c0 0xc8215f8640 0xc8215f86c0 0xc8215f8740 0xc8215f87e0 0xc8215f8860 0xc8215f88e0] } +&{glConvolutionParameterf QOpenGLFunctions_3_0::glConvolutionParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8215f8aa0 0xc8215f8b20 0xc8215f8ba0] } +&{glConvolutionParameterfv QOpenGLFunctions_3_0::glConvolutionParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8215f8d60 0xc8215f8de0 0xc8215f8e60] } +&{glConvolutionParameteri QOpenGLFunctions_3_0::glConvolutionParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8215f9020 0xc8215f90a0 0xc8215f9120] } +&{glConvolutionParameteriv QOpenGLFunctions_3_0::glConvolutionParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8215f92e0 0xc8215f9360 0xc8215f93e0] } +&{glCopyColorSubTable QOpenGLFunctions_3_0::glCopyColorSubTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8215f95a0 0xc8215f9620 0xc8215f96a0 0xc8215f9720 0xc8215f97c0] } +&{glCopyColorTable QOpenGLFunctions_3_0::glCopyColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8215f9920 0xc8215f99a0 0xc8215f9a20 0xc8215f9aa0 0xc8215f9b40] } +&{glCopyConvolutionFilter1D QOpenGLFunctions_3_0::glCopyConvolutionFilter1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8215f9d00 0xc8215f9d80 0xc8215f9e00 0xc8215f9e80 0xc8215f9f20] } +&{glCopyConvolutionFilter2D QOpenGLFunctions_3_0::glCopyConvolutionFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82119c0e0 0xc82119c160 0xc82119c1e0 0xc82119c260 0xc82119c300 0xc82119c380] } +&{glCopyPixels QOpenGLFunctions_3_0::glCopyPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82119c4e0 0xc82119c560 0xc82119c5e0 0xc82119c660 0xc82119c700] } +&{glCopyTexImage1D QOpenGLFunctions_3_0::glCopyTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82119c860 0xc82119c8e0 0xc82119c960 0xc82119c9e0 0xc82119ca80 0xc82119cb00 0xc82119cb80] } +&{glCopyTexImage2D QOpenGLFunctions_3_0::glCopyTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82119cce0 0xc82119cd60 0xc82119cde0 0xc82119ce60 0xc82119cf00 0xc82119cf80 0xc82119d000 0xc82119d080] } +&{glCopyTexSubImage1D QOpenGLFunctions_3_0::glCopyTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82119d240 0xc82119d2c0 0xc82119d340 0xc82119d3c0 0xc82119d460 0xc82119d4e0] } +&{glCopyTexSubImage2D QOpenGLFunctions_3_0::glCopyTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82119d6a0 0xc82119d720 0xc82119d7a0 0xc82119d820 0xc82119d8c0 0xc82119d940 0xc82119d9c0 0xc82119da40] } +&{glCopyTexSubImage3D QOpenGLFunctions_3_0::glCopyTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82119dc00 0xc82119dc80 0xc82119dd00 0xc82119dd80 0xc82119de20 0xc82119dea0 0xc82119df20 0xc82119dfa0 0xc8210f6040] } +&{glCreateProgram QOpenGLFunctions_3_0::glCreateProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false GLuint [] } +&{glCreateShader QOpenGLFunctions_3_0::glCreateShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false GLuint [0xc8210f6240] } +&{glCullFace QOpenGLFunctions_3_0::glCullFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8210f6420] } +&{glDeleteBuffers QOpenGLFunctions_3_0::glDeleteBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8210f6580 0xc8210f6600] } +&{glDeleteFramebuffers QOpenGLFunctions_3_0::glDeleteFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8210f67c0 0xc8210f6840] } +&{glDeleteLists QOpenGLFunctions_3_0::glDeleteLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8210f69a0 0xc8210f6a20] } +&{glDeleteProgram QOpenGLFunctions_3_0::glDeleteProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8210f6b80] } +&{glDeleteQueries QOpenGLFunctions_3_0::glDeleteQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8210f6ce0 0xc8210f6d60] } +&{glDeleteRenderbuffers QOpenGLFunctions_3_0::glDeleteRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8210f6f20 0xc8210f6fa0] } +&{glDeleteShader QOpenGLFunctions_3_0::glDeleteShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8210f7100] } +&{glDeleteTextures QOpenGLFunctions_3_0::glDeleteTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8210f7260 0xc8210f72e0] } +&{glDeleteVertexArrays QOpenGLFunctions_3_0::glDeleteVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8210f74a0 0xc8210f7520] } +&{glDepthFunc QOpenGLFunctions_3_0::glDepthFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8210f76a0] } +&{glDepthMask QOpenGLFunctions_3_0::glDepthMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8210f7820] } +&{glDepthRange QOpenGLFunctions_3_0::glDepthRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8210f7980 0xc8210f7a00] } +&{glDetachShader QOpenGLFunctions_3_0::glDetachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8210f7b60 0xc8210f7be0] } +&{glDisable QOpenGLFunctions_3_0::glDisable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8210f7de0] } +&{glDisableClientState QOpenGLFunctions_3_0::glDisableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8210f7fa0] } +&{glDisableVertexAttribArray QOpenGLFunctions_3_0::glDisableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821034160] } +&{glDisablei QOpenGLFunctions_3_0::glDisablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821034320 0xc8210343a0] } +&{glDrawArrays QOpenGLFunctions_3_0::glDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821034500 0xc821034580 0xc821034600] } +&{glDrawBuffer QOpenGLFunctions_3_0::glDrawBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821034780] } +&{glDrawBuffers QOpenGLFunctions_3_0::glDrawBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8210348e0 0xc821034960] } +&{glDrawElements QOpenGLFunctions_3_0::glDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821034ac0 0xc821034b40 0xc821034bc0 0xc821034c40] } +&{glDrawPixels QOpenGLFunctions_3_0::glDrawPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821034da0 0xc821034e20 0xc821034ea0 0xc821034f20 0xc821034fc0] } +&{glDrawRangeElements QOpenGLFunctions_3_0::glDrawRangeElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821035180 0xc821035200 0xc821035280 0xc821035300 0xc8210353a0 0xc821035420] } +&{glEdgeFlag QOpenGLFunctions_3_0::glEdgeFlag commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821035600] } +&{glEdgeFlagPointer QOpenGLFunctions_3_0::glEdgeFlagPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8210357c0 0xc821035840] } +&{glEdgeFlagv QOpenGLFunctions_3_0::glEdgeFlagv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8210359c0] } +&{glEnable QOpenGLFunctions_3_0::glEnable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821035be0] } +&{glEnableClientState QOpenGLFunctions_3_0::glEnableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821035da0] } +&{glEnableVertexAttribArray QOpenGLFunctions_3_0::glEnableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821035f60] } +&{glEnablei QOpenGLFunctions_3_0::glEnablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820fb2120 0xc820fb21a0] } +&{glEnd QOpenGLFunctions_3_0::glEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [] } +&{glEndConditionalRender QOpenGLFunctions_3_0::glEndConditionalRender commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [] } +&{glEndList QOpenGLFunctions_3_0::glEndList commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [] } +&{glEndQuery QOpenGLFunctions_3_0::glEndQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820fb2660] } +&{glEndTransformFeedback QOpenGLFunctions_3_0::glEndTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [] } +&{glEvalCoord1d QOpenGLFunctions_3_0::glEvalCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820fb28e0] } +&{glEvalCoord1dv QOpenGLFunctions_3_0::glEvalCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820fb2a40] } +&{glEvalCoord1f QOpenGLFunctions_3_0::glEvalCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820fb2bc0] } +&{glEvalCoord1fv QOpenGLFunctions_3_0::glEvalCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820fb2d20] } +&{glEvalCoord2d QOpenGLFunctions_3_0::glEvalCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820fb2e80 0xc820fb2f00] } +&{glEvalCoord2dv QOpenGLFunctions_3_0::glEvalCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820fb3060] } +&{glEvalCoord2f QOpenGLFunctions_3_0::glEvalCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820fb31c0 0xc820fb3240] } +&{glEvalCoord2fv QOpenGLFunctions_3_0::glEvalCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820fb33a0] } +&{glEvalMesh1 QOpenGLFunctions_3_0::glEvalMesh1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820fb3500 0xc820fb3580 0xc820fb3600] } +&{glEvalMesh2 QOpenGLFunctions_3_0::glEvalMesh2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820fb3760 0xc820fb37e0 0xc820fb3860 0xc820fb38e0 0xc820fb3980] } +&{glEvalPoint1 QOpenGLFunctions_3_0::glEvalPoint1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820fb3b00] } +&{glEvalPoint2 QOpenGLFunctions_3_0::glEvalPoint2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820fb3c60 0xc820fb3ce0] } +&{glFeedbackBuffer QOpenGLFunctions_3_0::glFeedbackBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820fb3e40 0xc820fb3ec0 0xc820fb3f40] } +&{glFinish QOpenGLFunctions_3_0::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [] } +&{glFlush QOpenGLFunctions_3_0::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [] } +&{glFlushMappedBufferRange QOpenGLFunctions_3_0::glFlushMappedBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820f3a2c0 0xc820f3a340 0xc820f3a3c0] } +&{glFogCoordPointer QOpenGLFunctions_3_0::glFogCoordPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820f3a580 0xc820f3a600 0xc820f3a680] } +&{glFogCoordd QOpenGLFunctions_3_0::glFogCoordd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820f3a800] } +&{glFogCoorddv QOpenGLFunctions_3_0::glFogCoorddv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820f3a960] } +&{glFogCoordf QOpenGLFunctions_3_0::glFogCoordf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820f3aae0] } +&{glFogCoordfv QOpenGLFunctions_3_0::glFogCoordfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820f3ac40] } +&{glFogf QOpenGLFunctions_3_0::glFogf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820f3ae20 0xc820f3aea0] } +&{glFogfv QOpenGLFunctions_3_0::glFogfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820f3b060 0xc820f3b0e0] } +&{glFogi QOpenGLFunctions_3_0::glFogi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820f3b2c0 0xc820f3b340] } +&{glFogiv QOpenGLFunctions_3_0::glFogiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820f3b500 0xc820f3b580] } +&{glFramebufferRenderbuffer QOpenGLFunctions_3_0::glFramebufferRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820f3b740 0xc820f3b7c0 0xc820f3b860 0xc820f3b920] } +&{glFramebufferTexture1D QOpenGLFunctions_3_0::glFramebufferTexture1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820f3bae0 0xc820f3bb60 0xc820f3bbe0 0xc820f3bc60 0xc820f3bd00] } +&{glFramebufferTexture2D QOpenGLFunctions_3_0::glFramebufferTexture2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820f3bec0 0xc820f3bf40 0xc820f3bfc0 0xc826ae4040 0xc826ae40e0] } +&{glFramebufferTexture3D QOpenGLFunctions_3_0::glFramebufferTexture3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc826ae42a0 0xc826ae4320 0xc826ae43a0 0xc826ae4420 0xc826ae44c0 0xc826ae4540] } +&{glFramebufferTextureLayer QOpenGLFunctions_3_0::glFramebufferTextureLayer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc826ae4700 0xc826ae4780 0xc826ae4800 0xc826ae4880 0xc826ae4920] } +&{glFrontFace QOpenGLFunctions_3_0::glFrontFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc826ae4aa0] } +&{glFrustum QOpenGLFunctions_3_0::glFrustum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc826ae4c60 0xc826ae4ce0 0xc826ae4d60 0xc826ae4de0 0xc826ae4e80 0xc826ae4f00] } +&{glGenBuffers QOpenGLFunctions_3_0::glGenBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc826ae5060 0xc826ae50e0] } +&{glGenFramebuffers QOpenGLFunctions_3_0::glGenFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc826ae52a0 0xc826ae5320] } +&{glGenLists QOpenGLFunctions_3_0::glGenLists commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false GLuint [0xc826ae5500] } +&{glGenQueries QOpenGLFunctions_3_0::glGenQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc826ae5660 0xc826ae56e0] } +&{glGenRenderbuffers QOpenGLFunctions_3_0::glGenRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc826ae58a0 0xc826ae5920] } +&{glGenTextures QOpenGLFunctions_3_0::glGenTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc826ae5a80 0xc826ae5b00] } +&{glGenVertexArrays QOpenGLFunctions_3_0::glGenVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc826ae5cc0 0xc826ae5d40] } +&{glGenerateMipmap QOpenGLFunctions_3_0::glGenerateMipmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc826ae5ea0] } +&{glGetActiveAttrib QOpenGLFunctions_3_0::glGetActiveAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b2a060 0xc820b2a0e0 0xc820b2a160 0xc820b2a1e0 0xc820b2a280 0xc820b2a300 0xc820b2a380] } +&{glGetActiveUniform QOpenGLFunctions_3_0::glGetActiveUniform commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b2a540 0xc820b2a5c0 0xc820b2a640 0xc820b2a6c0 0xc820b2a760 0xc820b2a7e0 0xc820b2a860] } +&{glGetAttachedShaders QOpenGLFunctions_3_0::glGetAttachedShaders commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b2aa20 0xc820b2aaa0 0xc820b2ab20 0xc820b2aba0] } +&{glGetAttribLocation QOpenGLFunctions_3_0::glGetAttribLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false GLint [0xc820b2ad60 0xc820b2ade0] } +&{glGetBooleani_v QOpenGLFunctions_3_0::glGetBooleani_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b2af40 0xc820b2afc0 0xc820b2b040] } +&{glGetBooleanv QOpenGLFunctions_3_0::glGetBooleanv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b2b1a0 0xc820b2b220] } +&{glGetBufferParameteriv QOpenGLFunctions_3_0::glGetBufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b2b3e0 0xc820b2b460 0xc820b2b4e0] } +&{glGetBufferPointerv QOpenGLFunctions_3_0::glGetBufferPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b2b6a0 0xc820b2b720 0xc820b2b7a0] } +&{glGetBufferSubData QOpenGLFunctions_3_0::glGetBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b2b960 0xc820b2b9e0 0xc820b2ba60 0xc820b2bae0] } +&{glGetClipPlane QOpenGLFunctions_3_0::glGetClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b2bc40 0xc820b2bcc0] } +&{glGetColorTable QOpenGLFunctions_3_0::glGetColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b2be20 0xc820b2bea0 0xc820b2bf20 0xc820b2bfa0] } +&{glGetColorTableParameterfv QOpenGLFunctions_3_0::glGetColorTableParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820994160 0xc8209941e0 0xc820994260] } +&{glGetColorTableParameteriv QOpenGLFunctions_3_0::glGetColorTableParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820994420 0xc8209944a0 0xc820994520] } +&{glGetCompressedTexImage QOpenGLFunctions_3_0::glGetCompressedTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8209946e0 0xc820994760 0xc8209947e0] } +&{glGetConvolutionFilter QOpenGLFunctions_3_0::glGetConvolutionFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8209949a0 0xc820994a20 0xc820994aa0 0xc820994b20] } +&{glGetConvolutionParameterfv QOpenGLFunctions_3_0::glGetConvolutionParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820994ce0 0xc820994d60 0xc820994de0] } +&{glGetConvolutionParameteriv QOpenGLFunctions_3_0::glGetConvolutionParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820994fa0 0xc820995020 0xc8209950a0] } +&{glGetDoublev QOpenGLFunctions_3_0::glGetDoublev commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820995200 0xc820995280] } +&{glGetError QOpenGLFunctions_3_0::glGetError commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false GLenum [] } +&{glGetFloatv QOpenGLFunctions_3_0::glGetFloatv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8209954e0 0xc820995560] } +&{glGetFragDataLocation QOpenGLFunctions_3_0::glGetFragDataLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false GLint [0xc820995720 0xc8209957a0] } +&{glGetFramebufferAttachmentParameteriv QOpenGLFunctions_3_0::glGetFramebufferAttachmentParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820995900 0xc820995980 0xc820995a00 0xc820995a80] } +&{glGetHistogram QOpenGLFunctions_3_0::glGetHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820995be0 0xc820995c60 0xc820995ce0 0xc820995d60 0xc820995e00] } +&{glGetHistogramParameterfv QOpenGLFunctions_3_0::glGetHistogramParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820995fc0 0xc820d7e040 0xc820d7e0c0] } +&{glGetHistogramParameteriv QOpenGLFunctions_3_0::glGetHistogramParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820d7e280 0xc820d7e300 0xc820d7e380] } +&{glGetIntegeri_v QOpenGLFunctions_3_0::glGetIntegeri_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820d7e4e0 0xc820d7e560 0xc820d7e5e0] } +&{glGetIntegerv QOpenGLFunctions_3_0::glGetIntegerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820d7e740 0xc820d7e7c0] } +&{glGetLightfv QOpenGLFunctions_3_0::glGetLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820d7e920 0xc820d7e9a0 0xc820d7ea20] } +&{glGetLightiv QOpenGLFunctions_3_0::glGetLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820d7eb80 0xc820d7ec00 0xc820d7ec80] } +&{glGetMapdv QOpenGLFunctions_3_0::glGetMapdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820d7ee40 0xc820d7eec0 0xc820d7ef40] } +&{glGetMapfv QOpenGLFunctions_3_0::glGetMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820d7f100 0xc820d7f180 0xc820d7f200] } +&{glGetMapiv QOpenGLFunctions_3_0::glGetMapiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820d7f3c0 0xc820d7f440 0xc820d7f4c0] } +&{glGetMaterialfv QOpenGLFunctions_3_0::glGetMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820d7f620 0xc820d7f6a0 0xc820d7f720] } +&{glGetMaterialiv QOpenGLFunctions_3_0::glGetMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820d7f880 0xc820d7f900 0xc820d7f980] } +&{glGetMinmax QOpenGLFunctions_3_0::glGetMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820d7fae0 0xc820d7fb60 0xc820d7fbe0 0xc820d7fc60 0xc820d7fd00] } +&{glGetMinmaxParameterfv QOpenGLFunctions_3_0::glGetMinmaxParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820d7fec0 0xc820d7ff40 0xc820d7ffc0] } +&{glGetMinmaxParameteriv QOpenGLFunctions_3_0::glGetMinmaxParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8208dc180 0xc8208dc200 0xc8208dc280] } +&{glGetPixelMapfv QOpenGLFunctions_3_0::glGetPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8208dc3e0 0xc8208dc460] } +&{glGetPixelMapuiv QOpenGLFunctions_3_0::glGetPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8208dc5c0 0xc8208dc640] } +&{glGetPixelMapusv QOpenGLFunctions_3_0::glGetPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8208dc7a0 0xc8208dc820] } +&{glGetPointerv QOpenGLFunctions_3_0::glGetPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8208dc980 0xc8208dca00] } +&{glGetPolygonStipple QOpenGLFunctions_3_0::glGetPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8208dcbc0] } +&{glGetProgramInfoLog QOpenGLFunctions_3_0::glGetProgramInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8208dcd80 0xc8208dce00 0xc8208dce80 0xc8208dcf00] } +&{glGetProgramiv QOpenGLFunctions_3_0::glGetProgramiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8208dd060 0xc8208dd0e0 0xc8208dd160] } +&{glGetQueryObjectiv QOpenGLFunctions_3_0::glGetQueryObjectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8208dd320 0xc8208dd3a0 0xc8208dd420] } +&{glGetQueryObjectuiv QOpenGLFunctions_3_0::glGetQueryObjectuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8208dd5e0 0xc8208dd660 0xc8208dd6e0] } +&{glGetQueryiv QOpenGLFunctions_3_0::glGetQueryiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8208dd840 0xc8208dd8c0 0xc8208dd940] } +&{glGetRenderbufferParameteriv QOpenGLFunctions_3_0::glGetRenderbufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8208ddb00 0xc8208ddb80 0xc8208ddc00] } +&{glGetSeparableFilter QOpenGLFunctions_3_0::glGetSeparableFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8208dddc0 0xc8208dde40 0xc8208ddec0 0xc8208ddf40 0xc8208ddfe0 0xc820aa0060] } +&{glGetShaderInfoLog QOpenGLFunctions_3_0::glGetShaderInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820aa0220 0xc820aa02a0 0xc820aa0320 0xc820aa03a0] } +&{glGetShaderSource QOpenGLFunctions_3_0::glGetShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820aa0560 0xc820aa05e0 0xc820aa0660 0xc820aa06e0] } +&{glGetShaderiv QOpenGLFunctions_3_0::glGetShaderiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820aa0840 0xc820aa08c0 0xc820aa0940] } +&{glGetString QOpenGLFunctions_3_0::glGetString commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false const GLubyte * [0xc820aa0aa0] } +&{glGetStringi QOpenGLFunctions_3_0::glGetStringi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false const GLubyte * [0xc820aa0c00 0xc820aa0c80] } +&{glGetTexEnvfv QOpenGLFunctions_3_0::glGetTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820aa0de0 0xc820aa0e60 0xc820aa0ee0] } +&{glGetTexEnviv QOpenGLFunctions_3_0::glGetTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820aa1040 0xc820aa10c0 0xc820aa1140] } +&{glGetTexGendv QOpenGLFunctions_3_0::glGetTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820aa12a0 0xc820aa1320 0xc820aa13a0] } +&{glGetTexGenfv QOpenGLFunctions_3_0::glGetTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820aa1500 0xc820aa1580 0xc820aa1600] } +&{glGetTexGeniv QOpenGLFunctions_3_0::glGetTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820aa1760 0xc820aa17e0 0xc820aa1860] } +&{glGetTexImage QOpenGLFunctions_3_0::glGetTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820aa19c0 0xc820aa1a40 0xc820aa1ac0 0xc820aa1b40 0xc820aa1be0] } +&{glGetTexLevelParameterfv QOpenGLFunctions_3_0::glGetTexLevelParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820aa1da0 0xc820aa1e20 0xc820aa1ea0 0xc820aa1f20] } +&{glGetTexLevelParameteriv QOpenGLFunctions_3_0::glGetTexLevelParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820a160e0 0xc820a16160 0xc820a161e0 0xc820a16260] } +&{glGetTexParameterIiv QOpenGLFunctions_3_0::glGetTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820a16420 0xc820a164a0 0xc820a16520] } +&{glGetTexParameterIuiv QOpenGLFunctions_3_0::glGetTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820a166e0 0xc820a16760 0xc820a167e0] } +&{glGetTexParameterfv QOpenGLFunctions_3_0::glGetTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820a169a0 0xc820a16a20 0xc820a16aa0] } +&{glGetTexParameteriv QOpenGLFunctions_3_0::glGetTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820a16c60 0xc820a16ce0 0xc820a16d60] } +&{glGetTransformFeedbackVarying QOpenGLFunctions_3_0::glGetTransformFeedbackVarying commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820a16f40 0xc820a16fc0 0xc820a17040 0xc820a170c0 0xc820a17160 0xc820a171e0 0xc820a17260] } +&{glGetUniformLocation QOpenGLFunctions_3_0::glGetUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false GLint [0xc820a17420 0xc820a174a0] } +&{glGetUniformfv QOpenGLFunctions_3_0::glGetUniformfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820a17600 0xc820a17680 0xc820a17700] } +&{glGetUniformiv QOpenGLFunctions_3_0::glGetUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820a17860 0xc820a178e0 0xc820a17960] } +&{glGetUniformuiv QOpenGLFunctions_3_0::glGetUniformuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820a17ac0 0xc820a17b40 0xc820a17bc0] } +&{glGetVertexAttribIiv QOpenGLFunctions_3_0::glGetVertexAttribIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820a17d80 0xc820a17e00 0xc820a17e80] } +&{glGetVertexAttribIuiv QOpenGLFunctions_3_0::glGetVertexAttribIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b54040 0xc820b540c0 0xc820b54140] } +&{glGetVertexAttribPointerv QOpenGLFunctions_3_0::glGetVertexAttribPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b54300 0xc820b54380 0xc820b54400] } +&{glGetVertexAttribdv QOpenGLFunctions_3_0::glGetVertexAttribdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b545c0 0xc820b54640 0xc820b546c0] } +&{glGetVertexAttribfv QOpenGLFunctions_3_0::glGetVertexAttribfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b54880 0xc820b54900 0xc820b54980] } +&{glGetVertexAttribiv QOpenGLFunctions_3_0::glGetVertexAttribiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b54b40 0xc820b54bc0 0xc820b54c40] } +&{glHint QOpenGLFunctions_3_0::glHint commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b54e20 0xc820b54ea0] } +&{glHistogram QOpenGLFunctions_3_0::glHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b55000 0xc820b55080 0xc820b55100 0xc820b55180] } +&{glIndexMask QOpenGLFunctions_3_0::glIndexMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b55300] } +&{glIndexPointer QOpenGLFunctions_3_0::glIndexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b55460 0xc820b554e0 0xc820b55560] } +&{glIndexd QOpenGLFunctions_3_0::glIndexd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b55740] } +&{glIndexdv QOpenGLFunctions_3_0::glIndexdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b55900] } +&{glIndexf QOpenGLFunctions_3_0::glIndexf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b55ae0] } +&{glIndexfv QOpenGLFunctions_3_0::glIndexfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b55cc0] } +&{glIndexi QOpenGLFunctions_3_0::glIndexi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b55ea0] } +&{glIndexiv QOpenGLFunctions_3_0::glIndexiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820cda080] } +&{glIndexs QOpenGLFunctions_3_0::glIndexs commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820cda260] } +&{glIndexsv QOpenGLFunctions_3_0::glIndexsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820cda440] } +&{glIndexub QOpenGLFunctions_3_0::glIndexub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820cda620] } +&{glIndexubv QOpenGLFunctions_3_0::glIndexubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820cda7e0] } +&{glInitNames QOpenGLFunctions_3_0::glInitNames commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [] } +&{glInterleavedArrays QOpenGLFunctions_3_0::glInterleavedArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820cdaa40 0xc820cdaac0 0xc820cdab40] } +&{glIsBuffer QOpenGLFunctions_3_0::glIsBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false GLboolean [0xc820cdad00] } +&{glIsEnabled QOpenGLFunctions_3_0::glIsEnabled commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false GLboolean [0xc820cdae60] } +&{glIsEnabledi QOpenGLFunctions_3_0::glIsEnabledi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false GLboolean [0xc820cdafc0 0xc820cdb040] } +&{glIsFramebuffer QOpenGLFunctions_3_0::glIsFramebuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false GLboolean [0xc820cdb1a0] } +&{glIsList QOpenGLFunctions_3_0::glIsList commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false GLboolean [0xc820cdb380] } +&{glIsProgram QOpenGLFunctions_3_0::glIsProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false GLboolean [0xc820cdb4e0] } +&{glIsQuery QOpenGLFunctions_3_0::glIsQuery commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false GLboolean [0xc820cdb6c0] } +&{glIsRenderbuffer QOpenGLFunctions_3_0::glIsRenderbuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false GLboolean [0xc820cdb820] } +&{glIsShader QOpenGLFunctions_3_0::glIsShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false GLboolean [0xc820cdb9e0] } +&{glIsTexture QOpenGLFunctions_3_0::glIsTexture commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false GLboolean [0xc820cdbb40] } +&{glIsVertexArray QOpenGLFunctions_3_0::glIsVertexArray commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false GLboolean [0xc820cdbca0] } +&{glLightModelf QOpenGLFunctions_3_0::glLightModelf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820cdbe00 0xc820cdbe80] } +&{glLightModelfv QOpenGLFunctions_3_0::glLightModelfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820cdbfe0 0xc820c3e060] } +&{glLightModeli QOpenGLFunctions_3_0::glLightModeli commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820c3e1c0 0xc820c3e240] } +&{glLightModeliv QOpenGLFunctions_3_0::glLightModeliv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820c3e3a0 0xc820c3e420] } +&{glLightf QOpenGLFunctions_3_0::glLightf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820c3e5e0 0xc820c3e660 0xc820c3e6e0] } +&{glLightfv QOpenGLFunctions_3_0::glLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820c3e8a0 0xc820c3e920 0xc820c3e9a0] } +&{glLighti QOpenGLFunctions_3_0::glLighti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820c3eb60 0xc820c3ebe0 0xc820c3ec60] } +&{glLightiv QOpenGLFunctions_3_0::glLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820c3ee20 0xc820c3eea0 0xc820c3ef20] } +&{glLineStipple QOpenGLFunctions_3_0::glLineStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820c3f080 0xc820c3f100] } +&{glLineWidth QOpenGLFunctions_3_0::glLineWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820c3f280] } +&{glLinkProgram QOpenGLFunctions_3_0::glLinkProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820c3f3e0] } +&{glListBase QOpenGLFunctions_3_0::glListBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820c3f5c0] } +&{glLoadIdentity QOpenGLFunctions_3_0::glLoadIdentity commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [] } +&{glLoadMatrixd QOpenGLFunctions_3_0::glLoadMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820c3f7c0] } +&{glLoadMatrixf QOpenGLFunctions_3_0::glLoadMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820c3f920] } +&{glLoadName QOpenGLFunctions_3_0::glLoadName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820c3fb00] } +&{glLoadTransposeMatrixd QOpenGLFunctions_3_0::glLoadTransposeMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820c3fcc0] } +&{glLoadTransposeMatrixf QOpenGLFunctions_3_0::glLoadTransposeMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820c3fe80] } +&{glLogicOp QOpenGLFunctions_3_0::glLogicOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b9e060] } +&{glMap1d QOpenGLFunctions_3_0::glMap1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b9e220 0xc820b9e2a0 0xc820b9e320 0xc820b9e3a0 0xc820b9e440 0xc820b9e4c0] } +&{glMap1f QOpenGLFunctions_3_0::glMap1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b9e680 0xc820b9e700 0xc820b9e780 0xc820b9e800 0xc820b9e8a0 0xc820b9e920] } +&{glMap2d QOpenGLFunctions_3_0::glMap2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b9eae0 0xc820b9eb60 0xc820b9ebe0 0xc820b9ec60 0xc820b9ed00 0xc820b9ed80 0xc820b9ee00 0xc820b9ee80 0xc820b9ef20 0xc820b9efa0] } +&{glMap2f QOpenGLFunctions_3_0::glMap2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b9f160 0xc820b9f1e0 0xc820b9f260 0xc820b9f2e0 0xc820b9f380 0xc820b9f400 0xc820b9f480 0xc820b9f500 0xc820b9f5a0 0xc820b9f620] } +&{glMapBuffer QOpenGLFunctions_3_0::glMapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false GLvoid * [0xc820b9f780 0xc820b9f800] } +&{glMapBufferRange QOpenGLFunctions_3_0::glMapBufferRange commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false GLvoid * [0xc820b9f960 0xc820b9f9e0 0xc820b9fa60 0xc820b9fae0] } +&{glMapGrid1d QOpenGLFunctions_3_0::glMapGrid1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b9fc40 0xc820b9fcc0 0xc820b9fd40] } +&{glMapGrid1f QOpenGLFunctions_3_0::glMapGrid1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820b9fea0 0xc820b9ff20 0xc820b9ffa0] } +&{glMapGrid2d QOpenGLFunctions_3_0::glMapGrid2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820cc2100 0xc820cc2180 0xc820cc2200 0xc820cc2280 0xc820cc2320 0xc820cc23a0] } +&{glMapGrid2f QOpenGLFunctions_3_0::glMapGrid2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820cc2500 0xc820cc2580 0xc820cc2600 0xc820cc2680 0xc820cc2720 0xc820cc27a0] } +&{glMaterialf QOpenGLFunctions_3_0::glMaterialf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820cc2900 0xc820cc2980 0xc820cc2a00] } +&{glMaterialfv QOpenGLFunctions_3_0::glMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820cc2b60 0xc820cc2be0 0xc820cc2c60] } +&{glMateriali QOpenGLFunctions_3_0::glMateriali commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820cc2dc0 0xc820cc2e40 0xc820cc2ec0] } +&{glMaterialiv QOpenGLFunctions_3_0::glMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820cc3020 0xc820cc30a0 0xc820cc3120] } +&{glMatrixMode QOpenGLFunctions_3_0::glMatrixMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820cc32a0] } +&{glMinmax QOpenGLFunctions_3_0::glMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820cc3460 0xc820cc34e0 0xc820cc3560] } +&{glMultMatrixd QOpenGLFunctions_3_0::glMultMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820cc36c0] } +&{glMultMatrixf QOpenGLFunctions_3_0::glMultMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820cc3820] } +&{glMultTransposeMatrixd QOpenGLFunctions_3_0::glMultTransposeMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820cc39e0] } +&{glMultTransposeMatrixf QOpenGLFunctions_3_0::glMultTransposeMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820cc3ba0] } +&{glMultiDrawArrays QOpenGLFunctions_3_0::glMultiDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820cc3d60 0xc820cc3de0 0xc820cc3e60 0xc820cc3ee0] } +&{glMultiDrawElements QOpenGLFunctions_3_0::glMultiDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820dc40a0 0xc820dc4120 0xc820dc41a0 0xc820dc4240 0xc820dc4320] } +&{glMultiTexCoord1d QOpenGLFunctions_3_0::glMultiTexCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820dc44e0 0xc820dc4560] } +&{glMultiTexCoord1dv QOpenGLFunctions_3_0::glMultiTexCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820dc4720 0xc820dc47a0] } +&{glMultiTexCoord1f QOpenGLFunctions_3_0::glMultiTexCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820dc4960 0xc820dc49e0] } +&{glMultiTexCoord1fv QOpenGLFunctions_3_0::glMultiTexCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820dc4ba0 0xc820dc4c20] } +&{glMultiTexCoord1i QOpenGLFunctions_3_0::glMultiTexCoord1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820dc4de0 0xc820dc4e60] } +&{glMultiTexCoord1iv QOpenGLFunctions_3_0::glMultiTexCoord1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820dc5020 0xc820dc50a0] } +&{glMultiTexCoord1s QOpenGLFunctions_3_0::glMultiTexCoord1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820dc5260 0xc820dc52e0] } +&{glMultiTexCoord1sv QOpenGLFunctions_3_0::glMultiTexCoord1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820dc54a0 0xc820dc5520] } +&{glMultiTexCoord2d QOpenGLFunctions_3_0::glMultiTexCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820dc56e0 0xc820dc5760 0xc820dc57e0] } +&{glMultiTexCoord2dv QOpenGLFunctions_3_0::glMultiTexCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820dc59a0 0xc820dc5a20] } +&{glMultiTexCoord2f QOpenGLFunctions_3_0::glMultiTexCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820dc5be0 0xc820dc5c60 0xc820dc5ce0] } +&{glMultiTexCoord2fv QOpenGLFunctions_3_0::glMultiTexCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820dc5ea0 0xc820dc5f20] } +&{glMultiTexCoord2i QOpenGLFunctions_3_0::glMultiTexCoord2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8208a40e0 0xc8208a4160 0xc8208a41e0] } +&{glMultiTexCoord2iv QOpenGLFunctions_3_0::glMultiTexCoord2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8208a43a0 0xc8208a4420] } +&{glMultiTexCoord2s QOpenGLFunctions_3_0::glMultiTexCoord2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8208a45e0 0xc8208a4660 0xc8208a46e0] } +&{glMultiTexCoord2sv QOpenGLFunctions_3_0::glMultiTexCoord2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8208a48a0 0xc8208a4920] } +&{glMultiTexCoord3d QOpenGLFunctions_3_0::glMultiTexCoord3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8208a4ae0 0xc8208a4b60 0xc8208a4be0 0xc8208a4c60] } +&{glMultiTexCoord3dv QOpenGLFunctions_3_0::glMultiTexCoord3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8208a4e20 0xc8208a4ea0] } +&{glMultiTexCoord3f QOpenGLFunctions_3_0::glMultiTexCoord3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8208a5060 0xc8208a50e0 0xc8208a5160 0xc8208a51e0] } +&{glMultiTexCoord3fv QOpenGLFunctions_3_0::glMultiTexCoord3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8208a53a0 0xc8208a5420] } +&{glMultiTexCoord3i QOpenGLFunctions_3_0::glMultiTexCoord3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8208a55e0 0xc8208a5660 0xc8208a56e0 0xc8208a5760] } +&{glMultiTexCoord3iv QOpenGLFunctions_3_0::glMultiTexCoord3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8208a5920 0xc8208a59a0] } +&{glMultiTexCoord3s QOpenGLFunctions_3_0::glMultiTexCoord3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8208a5b60 0xc8208a5be0 0xc8208a5c60 0xc8208a5ce0] } +&{glMultiTexCoord3sv QOpenGLFunctions_3_0::glMultiTexCoord3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8208a5ea0 0xc8208a5f20] } +&{glMultiTexCoord4d QOpenGLFunctions_3_0::glMultiTexCoord4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820e040e0 0xc820e04160 0xc820e041e0 0xc820e04260 0xc820e04300] } +&{glMultiTexCoord4dv QOpenGLFunctions_3_0::glMultiTexCoord4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820e044c0 0xc820e04540] } +&{glMultiTexCoord4f QOpenGLFunctions_3_0::glMultiTexCoord4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820e04700 0xc820e04780 0xc820e04800 0xc820e04880 0xc820e04920] } +&{glMultiTexCoord4fv QOpenGLFunctions_3_0::glMultiTexCoord4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820e04ae0 0xc820e04b60] } +&{glMultiTexCoord4i QOpenGLFunctions_3_0::glMultiTexCoord4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820e04d20 0xc820e04da0 0xc820e04e20 0xc820e04ea0 0xc820e04f40] } +&{glMultiTexCoord4iv QOpenGLFunctions_3_0::glMultiTexCoord4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820e05100 0xc820e05180] } +&{glMultiTexCoord4s QOpenGLFunctions_3_0::glMultiTexCoord4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820e05340 0xc820e053c0 0xc820e05440 0xc820e054c0 0xc820e05560] } +&{glMultiTexCoord4sv QOpenGLFunctions_3_0::glMultiTexCoord4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820e05720 0xc820e057a0] } +&{glNewList QOpenGLFunctions_3_0::glNewList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820e05960 0xc820e059e0] } +&{glNormal3b QOpenGLFunctions_3_0::glNormal3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820e05ba0 0xc820e05c20 0xc820e05ca0] } +&{glNormal3bv QOpenGLFunctions_3_0::glNormal3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820e05e00] } +&{glNormal3d QOpenGLFunctions_3_0::glNormal3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820e05fc0 0xc820e72040 0xc820e720c0] } +&{glNormal3dv QOpenGLFunctions_3_0::glNormal3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820e72220] } +&{glNormal3f QOpenGLFunctions_3_0::glNormal3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820e723e0 0xc820e72460 0xc820e724e0] } +&{glNormal3fv QOpenGLFunctions_3_0::glNormal3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820e72640] } +&{glNormal3i QOpenGLFunctions_3_0::glNormal3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820e72800 0xc820e72880 0xc820e72900] } +&{glNormal3iv QOpenGLFunctions_3_0::glNormal3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820e72a80] } +&{glNormal3s QOpenGLFunctions_3_0::glNormal3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820e72c40 0xc820e72cc0 0xc820e72d40] } +&{glNormal3sv QOpenGLFunctions_3_0::glNormal3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820e72ea0] } +&{glNormalPointer QOpenGLFunctions_3_0::glNormalPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820e73000 0xc820e73080 0xc820e73100] } +&{glOrtho QOpenGLFunctions_3_0::glOrtho commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820e732c0 0xc820e73340 0xc820e733c0 0xc820e73440 0xc820e734e0 0xc820e73560] } +&{glPassThrough QOpenGLFunctions_3_0::glPassThrough commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820e736c0] } +&{glPixelMapfv QOpenGLFunctions_3_0::glPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820e73820 0xc820e738a0 0xc820e73920] } +&{glPixelMapuiv QOpenGLFunctions_3_0::glPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820e73a80 0xc820e73b00 0xc820e73b80] } +&{glPixelMapusv QOpenGLFunctions_3_0::glPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820e73ce0 0xc820e73d60 0xc820e73de0] } +&{glPixelStoref QOpenGLFunctions_3_0::glPixelStoref commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820e73f40 0xc820e73fc0] } +&{glPixelStorei QOpenGLFunctions_3_0::glPixelStorei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820ace120 0xc820ace1a0] } +&{glPixelTransferf QOpenGLFunctions_3_0::glPixelTransferf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820ace300 0xc820ace380] } +&{glPixelTransferi QOpenGLFunctions_3_0::glPixelTransferi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820ace4e0 0xc820ace560] } +&{glPixelZoom QOpenGLFunctions_3_0::glPixelZoom commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820ace6c0 0xc820ace740] } +&{glPointParameterf QOpenGLFunctions_3_0::glPointParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820ace900 0xc820ace980] } +&{glPointParameterfv QOpenGLFunctions_3_0::glPointParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820aceb40 0xc820acebc0] } +&{glPointParameteri QOpenGLFunctions_3_0::glPointParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820aced80 0xc820acee00] } +&{glPointParameteriv QOpenGLFunctions_3_0::glPointParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820acefc0 0xc820acf040] } +&{glPointSize QOpenGLFunctions_3_0::glPointSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820acf1c0] } +&{glPolygonMode QOpenGLFunctions_3_0::glPolygonMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820acf320 0xc820acf3a0] } +&{glPolygonOffset QOpenGLFunctions_3_0::glPolygonOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820acf500 0xc820acf580] } +&{glPolygonStipple QOpenGLFunctions_3_0::glPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820acf6e0] } +&{glPopAttrib QOpenGLFunctions_3_0::glPopAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [] } +&{glPopClientAttrib QOpenGLFunctions_3_0::glPopClientAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [] } +&{glPopMatrix QOpenGLFunctions_3_0::glPopMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [] } +&{glPopName QOpenGLFunctions_3_0::glPopName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [] } +&{glPrioritizeTextures QOpenGLFunctions_3_0::glPrioritizeTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820acfbc0 0xc820acfc40 0xc820acfcc0] } +&{glPushAttrib QOpenGLFunctions_3_0::glPushAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820acfe20] } +&{glPushClientAttrib QOpenGLFunctions_3_0::glPushClientAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc820acffe0] } +&{glPushMatrix QOpenGLFunctions_3_0::glPushMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [] } +&{glPushName QOpenGLFunctions_3_0::glPushName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821252260] } +&{glRasterPos2d QOpenGLFunctions_3_0::glRasterPos2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212523c0 0xc821252440] } +&{glRasterPos2dv QOpenGLFunctions_3_0::glRasterPos2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212525a0] } +&{glRasterPos2f QOpenGLFunctions_3_0::glRasterPos2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821252700 0xc821252780] } +&{glRasterPos2fv QOpenGLFunctions_3_0::glRasterPos2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212528e0] } +&{glRasterPos2i QOpenGLFunctions_3_0::glRasterPos2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821252a40 0xc821252ac0] } +&{glRasterPos2iv QOpenGLFunctions_3_0::glRasterPos2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821252c20] } +&{glRasterPos2s QOpenGLFunctions_3_0::glRasterPos2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821252d80 0xc821252e00] } +&{glRasterPos2sv QOpenGLFunctions_3_0::glRasterPos2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821252f60] } +&{glRasterPos3d QOpenGLFunctions_3_0::glRasterPos3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212530c0 0xc821253140 0xc8212531c0] } +&{glRasterPos3dv QOpenGLFunctions_3_0::glRasterPos3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821253320] } +&{glRasterPos3f QOpenGLFunctions_3_0::glRasterPos3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821253480 0xc821253500 0xc821253580] } +&{glRasterPos3fv QOpenGLFunctions_3_0::glRasterPos3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212536e0] } +&{glRasterPos3i QOpenGLFunctions_3_0::glRasterPos3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821253840 0xc8212538c0 0xc821253940] } +&{glRasterPos3iv QOpenGLFunctions_3_0::glRasterPos3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821253aa0] } +&{glRasterPos3s QOpenGLFunctions_3_0::glRasterPos3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821253c00 0xc821253c80 0xc821253d00] } +&{glRasterPos3sv QOpenGLFunctions_3_0::glRasterPos3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821253e60] } +&{glRasterPos4d QOpenGLFunctions_3_0::glRasterPos4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821253fc0 0xc821264040 0xc8212640c0 0xc821264140] } +&{glRasterPos4dv QOpenGLFunctions_3_0::glRasterPos4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212642a0] } +&{glRasterPos4f QOpenGLFunctions_3_0::glRasterPos4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821264400 0xc821264480 0xc821264500 0xc821264580] } +&{glRasterPos4fv QOpenGLFunctions_3_0::glRasterPos4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212646e0] } +&{glRasterPos4i QOpenGLFunctions_3_0::glRasterPos4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821264840 0xc8212648c0 0xc821264940 0xc8212649c0] } +&{glRasterPos4iv QOpenGLFunctions_3_0::glRasterPos4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821264b20] } +&{glRasterPos4s QOpenGLFunctions_3_0::glRasterPos4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821264c80 0xc821264d00 0xc821264d80 0xc821264e00] } +&{glRasterPos4sv QOpenGLFunctions_3_0::glRasterPos4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821264f60] } +&{glReadBuffer QOpenGLFunctions_3_0::glReadBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212650e0] } +&{glReadPixels QOpenGLFunctions_3_0::glReadPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821265240 0xc8212652c0 0xc821265340 0xc8212653c0 0xc821265460 0xc8212654e0 0xc821265560] } +&{glRectd QOpenGLFunctions_3_0::glRectd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821265720 0xc8212657a0 0xc821265820 0xc8212658a0] } +&{glRectdv QOpenGLFunctions_3_0::glRectdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821265a60 0xc821265ae0] } +&{glRectf QOpenGLFunctions_3_0::glRectf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821265ca0 0xc821265d20 0xc821265da0 0xc821265e20] } +&{glRectfv QOpenGLFunctions_3_0::glRectfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821265fe0 0xc821274060] } +&{glRecti QOpenGLFunctions_3_0::glRecti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821274220 0xc8212742a0 0xc821274320 0xc8212743a0] } +&{glRectiv QOpenGLFunctions_3_0::glRectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821274560 0xc8212745e0] } +&{glRects QOpenGLFunctions_3_0::glRects commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212747a0 0xc821274820 0xc8212748a0 0xc821274920] } +&{glRectsv QOpenGLFunctions_3_0::glRectsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821274ae0 0xc821274b60] } +&{glRenderMode QOpenGLFunctions_3_0::glRenderMode commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false GLint [0xc821274ce0] } +&{glRenderbufferStorage QOpenGLFunctions_3_0::glRenderbufferStorage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821274ea0 0xc821274f20 0xc821274fa0 0xc821275020] } +&{glRenderbufferStorageMultisample QOpenGLFunctions_3_0::glRenderbufferStorageMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212751e0 0xc821275260 0xc8212752e0 0xc821275360 0xc821275400] } +&{glResetHistogram QOpenGLFunctions_3_0::glResetHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821275560] } +&{glResetMinmax QOpenGLFunctions_3_0::glResetMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212756c0] } +&{glRotated QOpenGLFunctions_3_0::glRotated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821275880 0xc821275900 0xc821275980 0xc821275a00] } +&{glRotatef QOpenGLFunctions_3_0::glRotatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821275bc0 0xc821275c40 0xc821275cc0 0xc821275d40] } +&{glSampleCoverage QOpenGLFunctions_3_0::glSampleCoverage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821275ea0 0xc821275f20] } +&{glScaled QOpenGLFunctions_3_0::glScaled commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212840e0 0xc821284160 0xc8212841e0] } +&{glScalef QOpenGLFunctions_3_0::glScalef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212843a0 0xc821284420 0xc8212844a0] } +&{glScissor QOpenGLFunctions_3_0::glScissor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821284660 0xc8212846e0 0xc821284760 0xc8212847e0] } +&{glSecondaryColor3b QOpenGLFunctions_3_0::glSecondaryColor3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212849a0 0xc821284a20 0xc821284aa0] } +&{glSecondaryColor3bv QOpenGLFunctions_3_0::glSecondaryColor3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821284c60] } +&{glSecondaryColor3d QOpenGLFunctions_3_0::glSecondaryColor3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821284e20 0xc821284ea0 0xc821284f20] } +&{glSecondaryColor3dv QOpenGLFunctions_3_0::glSecondaryColor3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212850e0] } +&{glSecondaryColor3f QOpenGLFunctions_3_0::glSecondaryColor3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212852a0 0xc821285320 0xc8212853a0] } +&{glSecondaryColor3fv QOpenGLFunctions_3_0::glSecondaryColor3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821285560] } +&{glSecondaryColor3i QOpenGLFunctions_3_0::glSecondaryColor3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821285720 0xc8212857a0 0xc821285820] } +&{glSecondaryColor3iv QOpenGLFunctions_3_0::glSecondaryColor3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212859e0] } +&{glSecondaryColor3s QOpenGLFunctions_3_0::glSecondaryColor3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821285ba0 0xc821285c20 0xc821285ca0] } +&{glSecondaryColor3sv QOpenGLFunctions_3_0::glSecondaryColor3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821285e60] } +&{glSecondaryColor3ub QOpenGLFunctions_3_0::glSecondaryColor3ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821292020 0xc8212920a0 0xc821292120] } +&{glSecondaryColor3ubv QOpenGLFunctions_3_0::glSecondaryColor3ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212922e0] } +&{glSecondaryColor3ui QOpenGLFunctions_3_0::glSecondaryColor3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212924a0 0xc821292520 0xc8212925a0] } +&{glSecondaryColor3uiv QOpenGLFunctions_3_0::glSecondaryColor3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821292760] } +&{glSecondaryColor3us QOpenGLFunctions_3_0::glSecondaryColor3us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821292920 0xc8212929a0 0xc821292a20] } +&{glSecondaryColor3usv QOpenGLFunctions_3_0::glSecondaryColor3usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821292be0] } +&{glSecondaryColorPointer QOpenGLFunctions_3_0::glSecondaryColorPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821292da0 0xc821292e20 0xc821292ea0 0xc821292f20] } +&{glSelectBuffer QOpenGLFunctions_3_0::glSelectBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821293080 0xc821293100] } +&{glSeparableFilter2D QOpenGLFunctions_3_0::glSeparableFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212932c0 0xc821293340 0xc8212933c0 0xc821293440 0xc8212934e0 0xc821293560 0xc8212935e0 0xc821293660] } +&{glShadeModel QOpenGLFunctions_3_0::glShadeModel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212937e0] } +&{glShaderSource QOpenGLFunctions_3_0::glShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821293940 0xc8212939c0 0xc821293a60 0xc821293b20] } +&{glStencilFunc QOpenGLFunctions_3_0::glStencilFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821293c80 0xc821293d00 0xc821293d80] } +&{glStencilFuncSeparate QOpenGLFunctions_3_0::glStencilFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821293f40 0xc821293fc0 0xc8212a4040 0xc8212a40c0] } +&{glStencilMask QOpenGLFunctions_3_0::glStencilMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212a4240] } +&{glStencilMaskSeparate QOpenGLFunctions_3_0::glStencilMaskSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212a4400 0xc8212a4480] } +&{glStencilOp QOpenGLFunctions_3_0::glStencilOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212a45e0 0xc8212a4660 0xc8212a46e0] } +&{glStencilOpSeparate QOpenGLFunctions_3_0::glStencilOpSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212a48a0 0xc8212a4920 0xc8212a49a0 0xc8212a4a20] } +&{glTexCoord1d QOpenGLFunctions_3_0::glTexCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212a4ba0] } +&{glTexCoord1dv QOpenGLFunctions_3_0::glTexCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212a4d00] } +&{glTexCoord1f QOpenGLFunctions_3_0::glTexCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212a4e80] } +&{glTexCoord1fv QOpenGLFunctions_3_0::glTexCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212a4fe0] } +&{glTexCoord1i QOpenGLFunctions_3_0::glTexCoord1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212a5160] } +&{glTexCoord1iv QOpenGLFunctions_3_0::glTexCoord1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212a52c0] } +&{glTexCoord1s QOpenGLFunctions_3_0::glTexCoord1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212a5440] } +&{glTexCoord1sv QOpenGLFunctions_3_0::glTexCoord1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212a55a0] } +&{glTexCoord2d QOpenGLFunctions_3_0::glTexCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212a5700 0xc8212a5780] } +&{glTexCoord2dv QOpenGLFunctions_3_0::glTexCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212a58e0] } +&{glTexCoord2f QOpenGLFunctions_3_0::glTexCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212a5a40 0xc8212a5ac0] } +&{glTexCoord2fv QOpenGLFunctions_3_0::glTexCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212a5c20] } +&{glTexCoord2i QOpenGLFunctions_3_0::glTexCoord2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212a5d80 0xc8212a5e00] } +&{glTexCoord2iv QOpenGLFunctions_3_0::glTexCoord2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212a5f60] } +&{glTexCoord2s QOpenGLFunctions_3_0::glTexCoord2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212b40c0 0xc8212b4140] } +&{glTexCoord2sv QOpenGLFunctions_3_0::glTexCoord2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212b42a0] } +&{glTexCoord3d QOpenGLFunctions_3_0::glTexCoord3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212b4400 0xc8212b4480 0xc8212b4500] } +&{glTexCoord3dv QOpenGLFunctions_3_0::glTexCoord3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212b4660] } +&{glTexCoord3f QOpenGLFunctions_3_0::glTexCoord3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212b47c0 0xc8212b4840 0xc8212b48c0] } +&{glTexCoord3fv QOpenGLFunctions_3_0::glTexCoord3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212b4a20] } +&{glTexCoord3i QOpenGLFunctions_3_0::glTexCoord3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212b4b80 0xc8212b4c00 0xc8212b4c80] } +&{glTexCoord3iv QOpenGLFunctions_3_0::glTexCoord3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212b4de0] } +&{glTexCoord3s QOpenGLFunctions_3_0::glTexCoord3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212b4f40 0xc8212b4fc0 0xc8212b5040] } +&{glTexCoord3sv QOpenGLFunctions_3_0::glTexCoord3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212b51a0] } +&{glTexCoord4d QOpenGLFunctions_3_0::glTexCoord4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212b5300 0xc8212b5380 0xc8212b5400 0xc8212b5480] } +&{glTexCoord4dv QOpenGLFunctions_3_0::glTexCoord4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212b55e0] } +&{glTexCoord4f QOpenGLFunctions_3_0::glTexCoord4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212b5740 0xc8212b57c0 0xc8212b5840 0xc8212b58c0] } +&{glTexCoord4fv QOpenGLFunctions_3_0::glTexCoord4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212b5a20] } +&{glTexCoord4i QOpenGLFunctions_3_0::glTexCoord4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212b5b80 0xc8212b5c00 0xc8212b5c80 0xc8212b5d00] } +&{glTexCoord4iv QOpenGLFunctions_3_0::glTexCoord4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212b5e60] } +&{glTexCoord4s QOpenGLFunctions_3_0::glTexCoord4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212b5fc0 0xc8212cc040 0xc8212cc0c0 0xc8212cc140] } +&{glTexCoord4sv QOpenGLFunctions_3_0::glTexCoord4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212cc2a0] } +&{glTexCoordPointer QOpenGLFunctions_3_0::glTexCoordPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212cc460 0xc8212cc4e0 0xc8212cc560 0xc8212cc5e0] } +&{glTexEnvf QOpenGLFunctions_3_0::glTexEnvf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212cc7a0 0xc8212cc820 0xc8212cc8a0] } +&{glTexEnvfv QOpenGLFunctions_3_0::glTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212cca80 0xc8212ccb00 0xc8212ccb80] } +&{glTexEnvi QOpenGLFunctions_3_0::glTexEnvi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212ccd40 0xc8212ccdc0 0xc8212cce40] } +&{glTexEnviv QOpenGLFunctions_3_0::glTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212cd000 0xc8212cd080 0xc8212cd100] } +&{glTexGend QOpenGLFunctions_3_0::glTexGend commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212cd2c0 0xc8212cd340 0xc8212cd3c0] } +&{glTexGendv QOpenGLFunctions_3_0::glTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212cd580 0xc8212cd600 0xc8212cd680] } +&{glTexGenf QOpenGLFunctions_3_0::glTexGenf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212cd840 0xc8212cd8c0 0xc8212cd940] } +&{glTexGenfv QOpenGLFunctions_3_0::glTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212cdb00 0xc8212cdb80 0xc8212cdc00] } +&{glTexGeni QOpenGLFunctions_3_0::glTexGeni commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212cddc0 0xc8212cde40 0xc8212cdec0] } +&{glTexGeniv QOpenGLFunctions_3_0::glTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212d8080 0xc8212d8100 0xc8212d8180] } +&{glTexImage1D QOpenGLFunctions_3_0::glTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212d82e0 0xc8212d8360 0xc8212d83e0 0xc8212d8460 0xc8212d8500 0xc8212d8580 0xc8212d8600 0xc8212d8680] } +&{glTexImage2D QOpenGLFunctions_3_0::glTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212d87e0 0xc8212d8860 0xc8212d88e0 0xc8212d8960 0xc8212d8a00 0xc8212d8a80 0xc8212d8b00 0xc8212d8b80 0xc8212d8c20] } +&{glTexImage3D QOpenGLFunctions_3_0::glTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212d8d80 0xc8212d8e00 0xc8212d8e80 0xc8212d8f00 0xc8212d8fa0 0xc8212d9020 0xc8212d90a0 0xc8212d9120 0xc8212d91c0 0xc8212d9240] } +&{glTexParameterIiv QOpenGLFunctions_3_0::glTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212d9400 0xc8212d9480 0xc8212d9500] } +&{glTexParameterIuiv QOpenGLFunctions_3_0::glTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212d96c0 0xc8212d9740 0xc8212d97c0] } +&{glTexParameterf QOpenGLFunctions_3_0::glTexParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212d9920 0xc8212d99a0 0xc8212d9a20] } +&{glTexParameterfv QOpenGLFunctions_3_0::glTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212d9b80 0xc8212d9c00 0xc8212d9c80] } +&{glTexParameteri QOpenGLFunctions_3_0::glTexParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212d9de0 0xc8212d9e60 0xc8212d9ee0] } +&{glTexParameteriv QOpenGLFunctions_3_0::glTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212ec040 0xc8212ec0c0 0xc8212ec140] } +&{glTexSubImage1D QOpenGLFunctions_3_0::glTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212ec2a0 0xc8212ec320 0xc8212ec3a0 0xc8212ec420 0xc8212ec4c0 0xc8212ec540 0xc8212ec5c0] } +&{glTexSubImage2D QOpenGLFunctions_3_0::glTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212ec720 0xc8212ec7a0 0xc8212ec820 0xc8212ec8a0 0xc8212ec940 0xc8212ec9c0 0xc8212eca40 0xc8212ecac0 0xc8212ecb60] } +&{glTexSubImage3D QOpenGLFunctions_3_0::glTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212eccc0 0xc8212ecd40 0xc8212ecdc0 0xc8212ece40 0xc8212ecee0 0xc8212ecf60 0xc8212ecfe0 0xc8212ed060 0xc8212ed100 0xc8212ed180 0xc8212ed200] } +&{glTransformFeedbackVaryings QOpenGLFunctions_3_0::glTransformFeedbackVaryings commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212ed3c0 0xc8212ed440 0xc8212ed4e0 0xc8212ed5a0] } +&{glTranslated QOpenGLFunctions_3_0::glTranslated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212ed700 0xc8212ed780 0xc8212ed800] } +&{glTranslatef QOpenGLFunctions_3_0::glTranslatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212ed960 0xc8212ed9e0 0xc8212eda60] } +&{glUniform1f QOpenGLFunctions_3_0::glUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212edbc0 0xc8212edc40] } +&{glUniform1fv QOpenGLFunctions_3_0::glUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212edda0 0xc8212ede20 0xc8212edea0] } +&{glUniform1i QOpenGLFunctions_3_0::glUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212fa000 0xc8212fa080] } +&{glUniform1iv QOpenGLFunctions_3_0::glUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212fa1e0 0xc8212fa260 0xc8212fa2e0] } +&{glUniform1ui QOpenGLFunctions_3_0::glUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212fa440 0xc8212fa4c0] } +&{glUniform1uiv QOpenGLFunctions_3_0::glUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212fa620 0xc8212fa6a0 0xc8212fa720] } +&{glUniform2f QOpenGLFunctions_3_0::glUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212fa880 0xc8212fa900 0xc8212fa980] } +&{glUniform2fv QOpenGLFunctions_3_0::glUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212faae0 0xc8212fab60 0xc8212fabe0] } +&{glUniform2i QOpenGLFunctions_3_0::glUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212fad40 0xc8212fadc0 0xc8212fae40] } +&{glUniform2iv QOpenGLFunctions_3_0::glUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212fafa0 0xc8212fb020 0xc8212fb0a0] } +&{glUniform2ui QOpenGLFunctions_3_0::glUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212fb200 0xc8212fb280 0xc8212fb300] } +&{glUniform2uiv QOpenGLFunctions_3_0::glUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212fb460 0xc8212fb4e0 0xc8212fb560] } +&{glUniform3f QOpenGLFunctions_3_0::glUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212fb6c0 0xc8212fb740 0xc8212fb7c0 0xc8212fb840] } +&{glUniform3fv QOpenGLFunctions_3_0::glUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212fb9a0 0xc8212fba20 0xc8212fbaa0] } +&{glUniform3i QOpenGLFunctions_3_0::glUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212fbc00 0xc8212fbc80 0xc8212fbd00 0xc8212fbd80] } +&{glUniform3iv QOpenGLFunctions_3_0::glUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8212fbee0 0xc8212fbf60 0xc8212fbfe0] } +&{glUniform3ui QOpenGLFunctions_3_0::glUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821308140 0xc8213081c0 0xc821308240 0xc8213082c0] } +&{glUniform3uiv QOpenGLFunctions_3_0::glUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821308420 0xc8213084a0 0xc821308520] } +&{glUniform4f QOpenGLFunctions_3_0::glUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821308680 0xc821308700 0xc821308780 0xc821308800 0xc8213088a0] } +&{glUniform4fv QOpenGLFunctions_3_0::glUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821308a00 0xc821308a80 0xc821308b00] } +&{glUniform4i QOpenGLFunctions_3_0::glUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821308c60 0xc821308ce0 0xc821308d60 0xc821308de0 0xc821308e80] } +&{glUniform4iv QOpenGLFunctions_3_0::glUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821308fe0 0xc821309060 0xc8213090e0] } +&{glUniform4ui QOpenGLFunctions_3_0::glUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821309240 0xc8213092c0 0xc821309340 0xc8213093c0 0xc821309460] } +&{glUniform4uiv QOpenGLFunctions_3_0::glUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8213095c0 0xc821309640 0xc8213096c0] } +&{glUniformMatrix2fv QOpenGLFunctions_3_0::glUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821309880 0xc821309900 0xc821309980 0xc821309a00] } +&{glUniformMatrix2x3fv QOpenGLFunctions_3_0::glUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821309bc0 0xc821309c40 0xc821309cc0 0xc821309d40] } +&{glUniformMatrix2x4fv QOpenGLFunctions_3_0::glUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821309f00 0xc821309f80 0xc82131c000 0xc82131c080] } +&{glUniformMatrix3fv QOpenGLFunctions_3_0::glUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82131c240 0xc82131c2c0 0xc82131c340 0xc82131c3c0] } +&{glUniformMatrix3x2fv QOpenGLFunctions_3_0::glUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82131c580 0xc82131c600 0xc82131c680 0xc82131c700] } +&{glUniformMatrix3x4fv QOpenGLFunctions_3_0::glUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82131c8c0 0xc82131c940 0xc82131c9c0 0xc82131ca40] } +&{glUniformMatrix4fv QOpenGLFunctions_3_0::glUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82131cc00 0xc82131cc80 0xc82131cd00 0xc82131cd80] } +&{glUniformMatrix4x2fv QOpenGLFunctions_3_0::glUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82131cf40 0xc82131cfc0 0xc82131d040 0xc82131d0c0] } +&{glUniformMatrix4x3fv QOpenGLFunctions_3_0::glUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82131d280 0xc82131d300 0xc82131d380 0xc82131d400] } +&{glUnmapBuffer QOpenGLFunctions_3_0::glUnmapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false GLboolean [0xc82131d560] } +&{glUseProgram QOpenGLFunctions_3_0::glUseProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82131d6c0] } +&{glValidateProgram QOpenGLFunctions_3_0::glValidateProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82131d880] } +&{glVertex2d QOpenGLFunctions_3_0::glVertex2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82131da40 0xc82131dac0] } +&{glVertex2dv QOpenGLFunctions_3_0::glVertex2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82131dc20] } +&{glVertex2f QOpenGLFunctions_3_0::glVertex2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82131dde0 0xc82131de60] } +&{glVertex2fv QOpenGLFunctions_3_0::glVertex2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82131dfc0] } +&{glVertex2i QOpenGLFunctions_3_0::glVertex2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82132c180 0xc82132c200] } +&{glVertex2iv QOpenGLFunctions_3_0::glVertex2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82132c380] } +&{glVertex2s QOpenGLFunctions_3_0::glVertex2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82132c540 0xc82132c5c0] } +&{glVertex2sv QOpenGLFunctions_3_0::glVertex2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82132c720] } +&{glVertex3d QOpenGLFunctions_3_0::glVertex3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82132c8e0 0xc82132c960 0xc82132c9e0] } +&{glVertex3dv QOpenGLFunctions_3_0::glVertex3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82132cb40] } +&{glVertex3f QOpenGLFunctions_3_0::glVertex3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82132cd00 0xc82132cd80 0xc82132ce00] } +&{glVertex3fv QOpenGLFunctions_3_0::glVertex3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82132cf60] } +&{glVertex3i QOpenGLFunctions_3_0::glVertex3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82132d120 0xc82132d1a0 0xc82132d220] } +&{glVertex3iv QOpenGLFunctions_3_0::glVertex3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82132d3a0] } +&{glVertex3s QOpenGLFunctions_3_0::glVertex3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82132d560 0xc82132d5e0 0xc82132d660] } +&{glVertex3sv QOpenGLFunctions_3_0::glVertex3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82132d7c0] } +&{glVertex4d QOpenGLFunctions_3_0::glVertex4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82132d980 0xc82132da00 0xc82132da80 0xc82132db00] } +&{glVertex4dv QOpenGLFunctions_3_0::glVertex4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82132dc60] } +&{glVertex4f QOpenGLFunctions_3_0::glVertex4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82132de20 0xc82132dea0 0xc82132df20 0xc82132dfa0] } +&{glVertex4fv QOpenGLFunctions_3_0::glVertex4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821340100] } +&{glVertex4i QOpenGLFunctions_3_0::glVertex4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8213402c0 0xc821340340 0xc8213403c0 0xc821340440] } +&{glVertex4iv QOpenGLFunctions_3_0::glVertex4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8213405c0] } +&{glVertex4s QOpenGLFunctions_3_0::glVertex4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821340780 0xc821340800 0xc821340880 0xc821340900] } +&{glVertex4sv QOpenGLFunctions_3_0::glVertex4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821340a60] } +&{glVertexAttrib1d QOpenGLFunctions_3_0::glVertexAttrib1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821340bc0 0xc821340c40] } +&{glVertexAttrib1dv QOpenGLFunctions_3_0::glVertexAttrib1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821340e00 0xc821340e80] } +&{glVertexAttrib1f QOpenGLFunctions_3_0::glVertexAttrib1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821340fe0 0xc821341060] } +&{glVertexAttrib1fv QOpenGLFunctions_3_0::glVertexAttrib1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821341220 0xc8213412a0] } +&{glVertexAttrib1s QOpenGLFunctions_3_0::glVertexAttrib1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821341400 0xc821341480] } +&{glVertexAttrib1sv QOpenGLFunctions_3_0::glVertexAttrib1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821341640 0xc8213416c0] } +&{glVertexAttrib2d QOpenGLFunctions_3_0::glVertexAttrib2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821341820 0xc8213418a0 0xc821341920] } +&{glVertexAttrib2dv QOpenGLFunctions_3_0::glVertexAttrib2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821341ae0 0xc821341b60] } +&{glVertexAttrib2f QOpenGLFunctions_3_0::glVertexAttrib2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821341cc0 0xc821341d40 0xc821341dc0] } +&{glVertexAttrib2fv QOpenGLFunctions_3_0::glVertexAttrib2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821341f80 0xc821350000] } +&{glVertexAttrib2s QOpenGLFunctions_3_0::glVertexAttrib2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821350160 0xc8213501e0 0xc821350260] } +&{glVertexAttrib2sv QOpenGLFunctions_3_0::glVertexAttrib2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821350420 0xc8213504a0] } +&{glVertexAttrib3d QOpenGLFunctions_3_0::glVertexAttrib3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821350600 0xc821350680 0xc821350700 0xc821350780] } +&{glVertexAttrib3dv QOpenGLFunctions_3_0::glVertexAttrib3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821350940 0xc8213509c0] } +&{glVertexAttrib3f QOpenGLFunctions_3_0::glVertexAttrib3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821350b20 0xc821350ba0 0xc821350c20 0xc821350ca0] } +&{glVertexAttrib3fv QOpenGLFunctions_3_0::glVertexAttrib3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821350e60 0xc821350ee0] } +&{glVertexAttrib3s QOpenGLFunctions_3_0::glVertexAttrib3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821351040 0xc8213510c0 0xc821351140 0xc8213511c0] } +&{glVertexAttrib3sv QOpenGLFunctions_3_0::glVertexAttrib3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821351380 0xc821351400] } +&{glVertexAttrib4Nbv QOpenGLFunctions_3_0::glVertexAttrib4Nbv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8213515c0 0xc821351640] } +&{glVertexAttrib4Niv QOpenGLFunctions_3_0::glVertexAttrib4Niv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821351800 0xc821351880] } +&{glVertexAttrib4Nsv QOpenGLFunctions_3_0::glVertexAttrib4Nsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821351a40 0xc821351ac0] } +&{glVertexAttrib4Nub QOpenGLFunctions_3_0::glVertexAttrib4Nub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821351c80 0xc821351d00 0xc821351d80 0xc821351e00 0xc821351ea0] } +&{glVertexAttrib4Nubv QOpenGLFunctions_3_0::glVertexAttrib4Nubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82135e060 0xc82135e0e0] } +&{glVertexAttrib4Nuiv QOpenGLFunctions_3_0::glVertexAttrib4Nuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82135e2a0 0xc82135e320] } +&{glVertexAttrib4Nusv QOpenGLFunctions_3_0::glVertexAttrib4Nusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82135e4e0 0xc82135e560] } +&{glVertexAttrib4bv QOpenGLFunctions_3_0::glVertexAttrib4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82135e720 0xc82135e7a0] } +&{glVertexAttrib4d QOpenGLFunctions_3_0::glVertexAttrib4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82135e900 0xc82135e980 0xc82135ea00 0xc82135ea80 0xc82135eb20] } +&{glVertexAttrib4dv QOpenGLFunctions_3_0::glVertexAttrib4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82135ece0 0xc82135ed60] } +&{glVertexAttrib4f QOpenGLFunctions_3_0::glVertexAttrib4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82135eec0 0xc82135ef40 0xc82135efc0 0xc82135f040 0xc82135f0e0] } +&{glVertexAttrib4fv QOpenGLFunctions_3_0::glVertexAttrib4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82135f2a0 0xc82135f320] } +&{glVertexAttrib4iv QOpenGLFunctions_3_0::glVertexAttrib4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82135f4e0 0xc82135f560] } +&{glVertexAttrib4s QOpenGLFunctions_3_0::glVertexAttrib4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82135f6c0 0xc82135f740 0xc82135f7c0 0xc82135f840 0xc82135f8e0] } +&{glVertexAttrib4sv QOpenGLFunctions_3_0::glVertexAttrib4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82135faa0 0xc82135fb20] } +&{glVertexAttrib4ubv QOpenGLFunctions_3_0::glVertexAttrib4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82135fce0 0xc82135fd60] } +&{glVertexAttrib4uiv QOpenGLFunctions_3_0::glVertexAttrib4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82135ff20 0xc82135ffa0] } +&{glVertexAttrib4usv QOpenGLFunctions_3_0::glVertexAttrib4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82136e160 0xc82136e1e0] } +&{glVertexAttribI1i QOpenGLFunctions_3_0::glVertexAttribI1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82136e3a0 0xc82136e420] } +&{glVertexAttribI1iv QOpenGLFunctions_3_0::glVertexAttribI1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82136e5e0 0xc82136e660] } +&{glVertexAttribI1ui QOpenGLFunctions_3_0::glVertexAttribI1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82136e820 0xc82136e8a0] } +&{glVertexAttribI1uiv QOpenGLFunctions_3_0::glVertexAttribI1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82136ea60 0xc82136eae0] } +&{glVertexAttribI2i QOpenGLFunctions_3_0::glVertexAttribI2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82136eca0 0xc82136ed20 0xc82136eda0] } +&{glVertexAttribI2iv QOpenGLFunctions_3_0::glVertexAttribI2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82136ef60 0xc82136efe0] } +&{glVertexAttribI2ui QOpenGLFunctions_3_0::glVertexAttribI2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82136f1a0 0xc82136f220 0xc82136f2a0] } +&{glVertexAttribI2uiv QOpenGLFunctions_3_0::glVertexAttribI2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82136f460 0xc82136f4e0] } +&{glVertexAttribI3i QOpenGLFunctions_3_0::glVertexAttribI3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82136f6a0 0xc82136f720 0xc82136f7a0 0xc82136f820] } +&{glVertexAttribI3iv QOpenGLFunctions_3_0::glVertexAttribI3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82136f9e0 0xc82136fa60] } +&{glVertexAttribI3ui QOpenGLFunctions_3_0::glVertexAttribI3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82136fc20 0xc82136fca0 0xc82136fd20 0xc82136fda0] } +&{glVertexAttribI3uiv QOpenGLFunctions_3_0::glVertexAttribI3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82136ff60 0xc82136ffe0] } +&{glVertexAttribI4bv QOpenGLFunctions_3_0::glVertexAttribI4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82137c1a0 0xc82137c220] } +&{glVertexAttribI4i QOpenGLFunctions_3_0::glVertexAttribI4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82137c3e0 0xc82137c460 0xc82137c4e0 0xc82137c560 0xc82137c600] } +&{glVertexAttribI4iv QOpenGLFunctions_3_0::glVertexAttribI4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82137c7c0 0xc82137c840] } +&{glVertexAttribI4sv QOpenGLFunctions_3_0::glVertexAttribI4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82137ca00 0xc82137ca80] } +&{glVertexAttribI4ubv QOpenGLFunctions_3_0::glVertexAttribI4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82137cc40 0xc82137ccc0] } +&{glVertexAttribI4ui QOpenGLFunctions_3_0::glVertexAttribI4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82137ce80 0xc82137cf00 0xc82137cf80 0xc82137d000 0xc82137d0a0] } +&{glVertexAttribI4uiv QOpenGLFunctions_3_0::glVertexAttribI4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82137d260 0xc82137d2e0] } +&{glVertexAttribI4usv QOpenGLFunctions_3_0::glVertexAttribI4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82137d4a0 0xc82137d520] } +&{glVertexAttribIPointer QOpenGLFunctions_3_0::glVertexAttribIPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82137d6e0 0xc82137d760 0xc82137d7e0 0xc82137d860 0xc82137d900] } +&{glVertexAttribPointer QOpenGLFunctions_3_0::glVertexAttribPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82137dac0 0xc82137db40 0xc82137dbc0 0xc82137dc40 0xc82137dce0 0xc82137dd60] } +&{glVertexPointer QOpenGLFunctions_3_0::glVertexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc82137dec0 0xc82137df40 0xc82137dfc0 0xc821390040] } +&{glViewport QOpenGLFunctions_3_0::glViewport commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821390200 0xc821390280 0xc821390300 0xc821390380] } +&{glWindowPos2d QOpenGLFunctions_3_0::glWindowPos2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8213904e0 0xc821390560] } +&{glWindowPos2dv QOpenGLFunctions_3_0::glWindowPos2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8213906c0] } +&{glWindowPos2f QOpenGLFunctions_3_0::glWindowPos2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821390820 0xc8213908a0] } +&{glWindowPos2fv QOpenGLFunctions_3_0::glWindowPos2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821390a00] } +&{glWindowPos2i QOpenGLFunctions_3_0::glWindowPos2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821390b60 0xc821390be0] } +&{glWindowPos2iv QOpenGLFunctions_3_0::glWindowPos2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821390d40] } +&{glWindowPos2s QOpenGLFunctions_3_0::glWindowPos2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821390ea0 0xc821390f20] } +&{glWindowPos2sv QOpenGLFunctions_3_0::glWindowPos2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821391080] } +&{glWindowPos3d QOpenGLFunctions_3_0::glWindowPos3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8213911e0 0xc821391260 0xc8213912e0] } +&{glWindowPos3dv QOpenGLFunctions_3_0::glWindowPos3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821391440] } +&{glWindowPos3f QOpenGLFunctions_3_0::glWindowPos3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc8213915a0 0xc821391620 0xc8213916a0] } +&{glWindowPos3fv QOpenGLFunctions_3_0::glWindowPos3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821391800] } +&{glWindowPos3i QOpenGLFunctions_3_0::glWindowPos3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821391960 0xc8213919e0 0xc821391a60] } +&{glWindowPos3iv QOpenGLFunctions_3_0::glWindowPos3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821391bc0] } +&{glWindowPos3s QOpenGLFunctions_3_0::glWindowPos3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821391d20 0xc821391da0 0xc821391e20] } +&{glWindowPos3sv QOpenGLFunctions_3_0::glWindowPos3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_0.h non plain false false void [0xc821391f80] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions_3_1.txt b/internal/binding/dump/QtGui/QOpenGLFunctions_3_1.txt new file mode 100755 index 00000000..8678531c --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions_3_1.txt @@ -0,0 +1,249 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions_3_1 QOpenGLFunctions_3_1::QOpenGLFunctions_3_1 commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.cpp non constructor false false [] } +&{initializeOpenGLFunctions QOpenGLFunctions_3_1::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.cpp impure plain false false bool [] } +&{~QOpenGLFunctions_3_1 QOpenGLFunctions_3_1::~QOpenGLFunctions_3_1 commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.cpp non destructor false false [] } +&{glActiveTexture QOpenGLFunctions_3_1::glActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213a0860] } +&{glAttachShader QOpenGLFunctions_3_1::glAttachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213a09c0 0xc8213a0a40] } +&{glBeginConditionalRender QOpenGLFunctions_3_1::glBeginConditionalRender commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213a0c00 0xc8213a0c80] } +&{glBeginQuery QOpenGLFunctions_3_1::glBeginQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213a0e00 0xc8213a0e80] } +&{glBeginTransformFeedback QOpenGLFunctions_3_1::glBeginTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213a1040] } +&{glBindAttribLocation QOpenGLFunctions_3_1::glBindAttribLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213a1200 0xc8213a1280 0xc8213a1300] } +&{glBindBuffer QOpenGLFunctions_3_1::glBindBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213a1460 0xc8213a14e0] } +&{glBindBufferBase QOpenGLFunctions_3_1::glBindBufferBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213a1640 0xc8213a16c0 0xc8213a1740] } +&{glBindBufferRange QOpenGLFunctions_3_1::glBindBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213a1900 0xc8213a1980 0xc8213a1a00 0xc8213a1a80 0xc8213a1b20] } +&{glBindFragDataLocation QOpenGLFunctions_3_1::glBindFragDataLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213a1ce0 0xc8213a1d60 0xc8213a1de0] } +&{glBindFramebuffer QOpenGLFunctions_3_1::glBindFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213a1fa0 0xc8213b4020] } +&{glBindRenderbuffer QOpenGLFunctions_3_1::glBindRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213b4200 0xc8213b4280] } +&{glBindTexture QOpenGLFunctions_3_1::glBindTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213b43e0 0xc8213b4460] } +&{glBindVertexArray QOpenGLFunctions_3_1::glBindVertexArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213b4620] } +&{glBlendColor QOpenGLFunctions_3_1::glBlendColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213b4780 0xc8213b4800 0xc8213b4880 0xc8213b4900] } +&{glBlendEquation QOpenGLFunctions_3_1::glBlendEquation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213b4a60] } +&{glBlendEquationSeparate QOpenGLFunctions_3_1::glBlendEquationSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213b4c20 0xc8213b4ca0] } +&{glBlendFunc QOpenGLFunctions_3_1::glBlendFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213b4e00 0xc8213b4e80] } +&{glBlendFuncSeparate QOpenGLFunctions_3_1::glBlendFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213b5040 0xc8213b50c0 0xc8213b5140 0xc8213b51c0] } +&{glBlitFramebuffer QOpenGLFunctions_3_1::glBlitFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213b5380 0xc8213b5400 0xc8213b5480 0xc8213b5500 0xc8213b55a0 0xc8213b5620 0xc8213b56a0 0xc8213b5720 0xc8213b57c0 0xc8213b5840] } +&{glBufferData QOpenGLFunctions_3_1::glBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213b59a0 0xc8213b5a20 0xc8213b5aa0 0xc8213b5b20] } +&{glBufferSubData QOpenGLFunctions_3_1::glBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213b5c80 0xc8213b5d00 0xc8213b5d80 0xc8213b5e00] } +&{glCheckFramebufferStatus QOpenGLFunctions_3_1::glCheckFramebufferStatus commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false GLenum [0xc8213b5fc0] } +&{glClampColor QOpenGLFunctions_3_1::glClampColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213c2120 0xc8213c21a0] } +&{glClear QOpenGLFunctions_3_1::glClear commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213c2380] } +&{glClearBufferfi QOpenGLFunctions_3_1::glClearBufferfi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213c24e0 0xc8213c2560 0xc8213c25e0 0xc8213c2660] } +&{glClearBufferfv QOpenGLFunctions_3_1::glClearBufferfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213c27c0 0xc8213c2840 0xc8213c28c0] } +&{glClearBufferiv QOpenGLFunctions_3_1::glClearBufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213c2a40 0xc8213c2ac0 0xc8213c2b40] } +&{glClearBufferuiv QOpenGLFunctions_3_1::glClearBufferuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213c2ca0 0xc8213c2d20 0xc8213c2da0] } +&{glClearColor QOpenGLFunctions_3_1::glClearColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213c2f00 0xc8213c2f80 0xc8213c3000 0xc8213c3080] } +&{glClearDepth QOpenGLFunctions_3_1::glClearDepth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213c31e0] } +&{glClearStencil QOpenGLFunctions_3_1::glClearStencil commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213c3360] } +&{glColorMask QOpenGLFunctions_3_1::glColorMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213c34c0 0xc8213c3540 0xc8213c35c0 0xc8213c3640] } +&{glColorMaski QOpenGLFunctions_3_1::glColorMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213c37a0 0xc8213c3820 0xc8213c38a0 0xc8213c3920 0xc8213c39c0] } +&{glCompileShader QOpenGLFunctions_3_1::glCompileShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213c3b20] } +&{glCompressedTexImage1D QOpenGLFunctions_3_1::glCompressedTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213c3ce0 0xc8213c3d60 0xc8213c3de0 0xc8213c3e60 0xc8213c3f00 0xc8213c3f80 0xc8213d2000] } +&{glCompressedTexImage2D QOpenGLFunctions_3_1::glCompressedTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213d21c0 0xc8213d2240 0xc8213d22c0 0xc8213d2340 0xc8213d23e0 0xc8213d2460 0xc8213d24e0 0xc8213d2560] } +&{glCompressedTexImage3D QOpenGLFunctions_3_1::glCompressedTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213d2720 0xc8213d27a0 0xc8213d2820 0xc8213d28a0 0xc8213d2940 0xc8213d29c0 0xc8213d2a40 0xc8213d2ac0 0xc8213d2b60] } +&{glCompressedTexSubImage1D QOpenGLFunctions_3_1::glCompressedTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213d2d20 0xc8213d2da0 0xc8213d2e20 0xc8213d2ea0 0xc8213d2f40 0xc8213d2fc0 0xc8213d3040] } +&{glCompressedTexSubImage2D QOpenGLFunctions_3_1::glCompressedTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213d3200 0xc8213d3280 0xc8213d3300 0xc8213d3380 0xc8213d3420 0xc8213d34a0 0xc8213d3520 0xc8213d35a0 0xc8213d3640] } +&{glCompressedTexSubImage3D QOpenGLFunctions_3_1::glCompressedTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213d3800 0xc8213d3880 0xc8213d3900 0xc8213d3980 0xc8213d3a20 0xc8213d3aa0 0xc8213d3b20 0xc8213d3ba0 0xc8213d3c40 0xc8213d3cc0 0xc8213d3d40] } +&{glCopyBufferSubData QOpenGLFunctions_3_1::glCopyBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213d3f00 0xc8213d3f80 0xc8213de000 0xc8213de080 0xc8213de120] } +&{glCopyTexImage1D QOpenGLFunctions_3_1::glCopyTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213de280 0xc8213de300 0xc8213de380 0xc8213de400 0xc8213de4a0 0xc8213de520 0xc8213de5a0] } +&{glCopyTexImage2D QOpenGLFunctions_3_1::glCopyTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213de700 0xc8213de780 0xc8213de800 0xc8213de880 0xc8213de920 0xc8213de9a0 0xc8213dea20 0xc8213deaa0] } +&{glCopyTexSubImage1D QOpenGLFunctions_3_1::glCopyTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213dec60 0xc8213dece0 0xc8213ded60 0xc8213dede0 0xc8213dee80 0xc8213def00] } +&{glCopyTexSubImage2D QOpenGLFunctions_3_1::glCopyTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213df0c0 0xc8213df140 0xc8213df1c0 0xc8213df240 0xc8213df2e0 0xc8213df360 0xc8213df3e0 0xc8213df460] } +&{glCopyTexSubImage3D QOpenGLFunctions_3_1::glCopyTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213df620 0xc8213df6a0 0xc8213df720 0xc8213df7a0 0xc8213df840 0xc8213df8c0 0xc8213df940 0xc8213df9c0 0xc8213dfa60] } +&{glCreateProgram QOpenGLFunctions_3_1::glCreateProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false GLuint [] } +&{glCreateShader QOpenGLFunctions_3_1::glCreateShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false GLuint [0xc8213dfc60] } +&{glCullFace QOpenGLFunctions_3_1::glCullFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213dfe40] } +&{glDeleteBuffers QOpenGLFunctions_3_1::glDeleteBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213dffa0 0xc8213f0020] } +&{glDeleteFramebuffers QOpenGLFunctions_3_1::glDeleteFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213f01e0 0xc8213f0260] } +&{glDeleteProgram QOpenGLFunctions_3_1::glDeleteProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213f03c0] } +&{glDeleteQueries QOpenGLFunctions_3_1::glDeleteQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213f0520 0xc8213f05a0] } +&{glDeleteRenderbuffers QOpenGLFunctions_3_1::glDeleteRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213f0760 0xc8213f07e0] } +&{glDeleteShader QOpenGLFunctions_3_1::glDeleteShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213f0940] } +&{glDeleteTextures QOpenGLFunctions_3_1::glDeleteTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213f0aa0 0xc8213f0b20] } +&{glDeleteVertexArrays QOpenGLFunctions_3_1::glDeleteVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213f0ce0 0xc8213f0d60] } +&{glDepthFunc QOpenGLFunctions_3_1::glDepthFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213f0ee0] } +&{glDepthMask QOpenGLFunctions_3_1::glDepthMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213f1080] } +&{glDepthRange QOpenGLFunctions_3_1::glDepthRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213f11e0 0xc8213f1260] } +&{glDetachShader QOpenGLFunctions_3_1::glDetachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213f13c0 0xc8213f1440] } +&{glDisable QOpenGLFunctions_3_1::glDisable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213f1620] } +&{glDisableVertexAttribArray QOpenGLFunctions_3_1::glDisableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213f17e0] } +&{glDisablei QOpenGLFunctions_3_1::glDisablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213f19a0 0xc8213f1a20] } +&{glDrawArrays QOpenGLFunctions_3_1::glDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213f1b80 0xc8213f1c00 0xc8213f1c80] } +&{glDrawArraysInstanced QOpenGLFunctions_3_1::glDrawArraysInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8213f1e40 0xc8213f1ec0 0xc8213f1f40 0xc8213f1fc0] } +&{glDrawBuffer QOpenGLFunctions_3_1::glDrawBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821400140] } +&{glDrawBuffers QOpenGLFunctions_3_1::glDrawBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214002a0 0xc821400320] } +&{glDrawElements QOpenGLFunctions_3_1::glDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821400480 0xc821400500 0xc821400580 0xc821400600] } +&{glDrawElementsInstanced QOpenGLFunctions_3_1::glDrawElementsInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214007c0 0xc821400840 0xc8214008c0 0xc821400940 0xc8214009e0] } +&{glDrawRangeElements QOpenGLFunctions_3_1::glDrawRangeElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821400ba0 0xc821400c20 0xc821400ca0 0xc821400d20 0xc821400dc0 0xc821400e40] } +&{glEnable QOpenGLFunctions_3_1::glEnable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821401020] } +&{glEnableVertexAttribArray QOpenGLFunctions_3_1::glEnableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214011e0] } +&{glEnablei QOpenGLFunctions_3_1::glEnablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214013a0 0xc821401420] } +&{glEndConditionalRender QOpenGLFunctions_3_1::glEndConditionalRender commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [] } +&{glEndQuery QOpenGLFunctions_3_1::glEndQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821401700] } +&{glEndTransformFeedback QOpenGLFunctions_3_1::glEndTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [] } +&{glFinish QOpenGLFunctions_3_1::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [] } +&{glFlush QOpenGLFunctions_3_1::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [] } +&{glFlushMappedBufferRange QOpenGLFunctions_3_1::glFlushMappedBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821401b80 0xc821401c00 0xc821401c80] } +&{glFramebufferRenderbuffer QOpenGLFunctions_3_1::glFramebufferRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821401e40 0xc821401ec0 0xc821401f60 0xc821412020] } +&{glFramebufferTexture1D QOpenGLFunctions_3_1::glFramebufferTexture1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214121e0 0xc821412260 0xc8214122e0 0xc821412360 0xc821412400] } +&{glFramebufferTexture2D QOpenGLFunctions_3_1::glFramebufferTexture2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214125c0 0xc821412640 0xc8214126c0 0xc821412740 0xc8214127e0] } +&{glFramebufferTexture3D QOpenGLFunctions_3_1::glFramebufferTexture3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214129a0 0xc821412a20 0xc821412aa0 0xc821412b20 0xc821412bc0 0xc821412c40] } +&{glFramebufferTextureLayer QOpenGLFunctions_3_1::glFramebufferTextureLayer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821412e00 0xc821412e80 0xc821412f00 0xc821412f80 0xc821413020] } +&{glFrontFace QOpenGLFunctions_3_1::glFrontFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214131a0] } +&{glGenBuffers QOpenGLFunctions_3_1::glGenBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821413300 0xc821413380] } +&{glGenFramebuffers QOpenGLFunctions_3_1::glGenFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821413540 0xc8214135c0] } +&{glGenQueries QOpenGLFunctions_3_1::glGenQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821413720 0xc8214137a0] } +&{glGenRenderbuffers QOpenGLFunctions_3_1::glGenRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821413960 0xc8214139e0] } +&{glGenTextures QOpenGLFunctions_3_1::glGenTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821413b40 0xc821413bc0] } +&{glGenVertexArrays QOpenGLFunctions_3_1::glGenVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821413d80 0xc821413e00] } +&{glGenerateMipmap QOpenGLFunctions_3_1::glGenerateMipmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821413f60] } +&{glGetActiveAttrib QOpenGLFunctions_3_1::glGetActiveAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821422120 0xc8214221a0 0xc821422220 0xc8214222a0 0xc821422340 0xc8214223c0 0xc821422440] } +&{glGetActiveUniform QOpenGLFunctions_3_1::glGetActiveUniform commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821422600 0xc821422680 0xc821422700 0xc821422780 0xc821422820 0xc8214228a0 0xc821422920] } +&{glGetActiveUniformBlockName QOpenGLFunctions_3_1::glGetActiveUniformBlockName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821422ae0 0xc821422b80 0xc821422c40 0xc821422cc0 0xc821422d60] } +&{glGetActiveUniformBlockiv QOpenGLFunctions_3_1::glGetActiveUniformBlockiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821422f20 0xc821422fc0 0xc821423080 0xc821423100] } +&{glGetActiveUniformName QOpenGLFunctions_3_1::glGetActiveUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214232c0 0xc821423340 0xc8214233c0 0xc821423440 0xc8214234e0] } +&{glGetActiveUniformsiv QOpenGLFunctions_3_1::glGetActiveUniformsiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214236a0 0xc821423720 0xc8214237a0 0xc821423820 0xc8214238c0] } +&{glGetAttachedShaders QOpenGLFunctions_3_1::glGetAttachedShaders commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821423a80 0xc821423b00 0xc821423b80 0xc821423c00] } +&{glGetAttribLocation QOpenGLFunctions_3_1::glGetAttribLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false GLint [0xc821423dc0 0xc821423e40] } +&{glGetBooleani_v QOpenGLFunctions_3_1::glGetBooleani_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821423fa0 0xc821430020 0xc8214300a0] } +&{glGetBooleanv QOpenGLFunctions_3_1::glGetBooleanv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821430200 0xc821430280] } +&{glGetBufferParameteriv QOpenGLFunctions_3_1::glGetBufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821430440 0xc8214304c0 0xc821430540] } +&{glGetBufferPointerv QOpenGLFunctions_3_1::glGetBufferPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821430700 0xc821430780 0xc821430800] } +&{glGetBufferSubData QOpenGLFunctions_3_1::glGetBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214309c0 0xc821430a40 0xc821430ac0 0xc821430b40] } +&{glGetCompressedTexImage QOpenGLFunctions_3_1::glGetCompressedTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821430d00 0xc821430d80 0xc821430e00] } +&{glGetDoublev QOpenGLFunctions_3_1::glGetDoublev commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821430f60 0xc821430fe0] } +&{glGetError QOpenGLFunctions_3_1::glGetError commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false GLenum [] } +&{glGetFloatv QOpenGLFunctions_3_1::glGetFloatv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821431240 0xc8214312c0] } +&{glGetFragDataLocation QOpenGLFunctions_3_1::glGetFragDataLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false GLint [0xc821431480 0xc821431500] } +&{glGetFramebufferAttachmentParameteriv QOpenGLFunctions_3_1::glGetFramebufferAttachmentParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821431660 0xc8214316e0 0xc821431760 0xc8214317e0] } +&{glGetIntegeri_v QOpenGLFunctions_3_1::glGetIntegeri_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821431940 0xc8214319c0 0xc821431a40] } +&{glGetIntegerv QOpenGLFunctions_3_1::glGetIntegerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821431ba0 0xc821431c20] } +&{glGetPointerv QOpenGLFunctions_3_1::glGetPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821431d80 0xc821431e00] } +&{glGetProgramInfoLog QOpenGLFunctions_3_1::glGetProgramInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821431fc0 0xc821442040 0xc8214420c0 0xc821442140] } +&{glGetProgramiv QOpenGLFunctions_3_1::glGetProgramiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214422a0 0xc821442320 0xc8214423a0] } +&{glGetQueryObjectiv QOpenGLFunctions_3_1::glGetQueryObjectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821442560 0xc8214425e0 0xc821442660] } +&{glGetQueryObjectuiv QOpenGLFunctions_3_1::glGetQueryObjectuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821442820 0xc8214428a0 0xc821442920] } +&{glGetQueryiv QOpenGLFunctions_3_1::glGetQueryiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821442a80 0xc821442b00 0xc821442b80] } +&{glGetRenderbufferParameteriv QOpenGLFunctions_3_1::glGetRenderbufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821442d40 0xc821442dc0 0xc821442e40] } +&{glGetShaderInfoLog QOpenGLFunctions_3_1::glGetShaderInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821443000 0xc821443080 0xc821443100 0xc821443180] } +&{glGetShaderSource QOpenGLFunctions_3_1::glGetShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821443360 0xc8214433e0 0xc821443460 0xc8214434e0] } +&{glGetShaderiv QOpenGLFunctions_3_1::glGetShaderiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821443640 0xc8214436c0 0xc821443740] } +&{glGetString QOpenGLFunctions_3_1::glGetString commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false const GLubyte * [0xc8214438a0] } +&{glGetStringi QOpenGLFunctions_3_1::glGetStringi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false const GLubyte * [0xc821443a00 0xc821443a80] } +&{glGetTexImage QOpenGLFunctions_3_1::glGetTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821443be0 0xc821443c60 0xc821443ce0 0xc821443d60 0xc821443e00] } +&{glGetTexLevelParameterfv QOpenGLFunctions_3_1::glGetTexLevelParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821443fc0 0xc821450040 0xc8214500c0 0xc821450140] } +&{glGetTexLevelParameteriv QOpenGLFunctions_3_1::glGetTexLevelParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821450300 0xc821450380 0xc821450400 0xc821450480] } +&{glGetTexParameterIiv QOpenGLFunctions_3_1::glGetTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821450640 0xc8214506c0 0xc821450740] } +&{glGetTexParameterIuiv QOpenGLFunctions_3_1::glGetTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821450900 0xc821450980 0xc821450a00] } +&{glGetTexParameterfv QOpenGLFunctions_3_1::glGetTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821450bc0 0xc821450c40 0xc821450cc0] } +&{glGetTexParameteriv QOpenGLFunctions_3_1::glGetTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821450e80 0xc821450f00 0xc821450f80] } +&{glGetTransformFeedbackVarying QOpenGLFunctions_3_1::glGetTransformFeedbackVarying commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821451140 0xc8214511c0 0xc821451240 0xc8214512c0 0xc821451360 0xc8214513e0 0xc821451460] } +&{glGetUniformBlockIndex QOpenGLFunctions_3_1::glGetUniformBlockIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false GLuint [0xc821451620 0xc8214516a0] } +&{glGetUniformIndices QOpenGLFunctions_3_1::glGetUniformIndices commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821451860 0xc8214518e0 0xc821451980 0xc821451a40] } +&{glGetUniformLocation QOpenGLFunctions_3_1::glGetUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false GLint [0xc821451c00 0xc821451c80] } +&{glGetUniformfv QOpenGLFunctions_3_1::glGetUniformfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821451de0 0xc821451e60 0xc821451ee0] } +&{glGetUniformiv QOpenGLFunctions_3_1::glGetUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821462040 0xc8214620c0 0xc821462140] } +&{glGetUniformuiv QOpenGLFunctions_3_1::glGetUniformuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214622a0 0xc821462320 0xc8214623a0] } +&{glGetVertexAttribIiv QOpenGLFunctions_3_1::glGetVertexAttribIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821462560 0xc8214625e0 0xc821462660] } +&{glGetVertexAttribIuiv QOpenGLFunctions_3_1::glGetVertexAttribIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821462820 0xc8214628a0 0xc821462920] } +&{glGetVertexAttribPointerv QOpenGLFunctions_3_1::glGetVertexAttribPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821462ae0 0xc821462b60 0xc821462be0] } +&{glGetVertexAttribdv QOpenGLFunctions_3_1::glGetVertexAttribdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821462da0 0xc821462e20 0xc821462ea0] } +&{glGetVertexAttribfv QOpenGLFunctions_3_1::glGetVertexAttribfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821463060 0xc8214630e0 0xc821463160] } +&{glGetVertexAttribiv QOpenGLFunctions_3_1::glGetVertexAttribiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821463320 0xc8214633a0 0xc821463420] } +&{glHint QOpenGLFunctions_3_1::glHint commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821463600 0xc821463680] } +&{glIndexub QOpenGLFunctions_3_1::glIndexub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821463860] } +&{glIndexubv QOpenGLFunctions_3_1::glIndexubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821463a20] } +&{glIsBuffer QOpenGLFunctions_3_1::glIsBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false GLboolean [0xc821463be0] } +&{glIsEnabled QOpenGLFunctions_3_1::glIsEnabled commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false GLboolean [0xc821463d40] } +&{glIsEnabledi QOpenGLFunctions_3_1::glIsEnabledi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false GLboolean [0xc821463ea0 0xc821463f20] } +&{glIsFramebuffer QOpenGLFunctions_3_1::glIsFramebuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false GLboolean [0xc821470080] } +&{glIsProgram QOpenGLFunctions_3_1::glIsProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false GLboolean [0xc8214701e0] } +&{glIsQuery QOpenGLFunctions_3_1::glIsQuery commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false GLboolean [0xc8214703c0] } +&{glIsRenderbuffer QOpenGLFunctions_3_1::glIsRenderbuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false GLboolean [0xc821470520] } +&{glIsShader QOpenGLFunctions_3_1::glIsShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false GLboolean [0xc8214706e0] } +&{glIsTexture QOpenGLFunctions_3_1::glIsTexture commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false GLboolean [0xc821470840] } +&{glIsVertexArray QOpenGLFunctions_3_1::glIsVertexArray commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false GLboolean [0xc8214709a0] } +&{glLineWidth QOpenGLFunctions_3_1::glLineWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821470b20] } +&{glLinkProgram QOpenGLFunctions_3_1::glLinkProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821470c80] } +&{glLogicOp QOpenGLFunctions_3_1::glLogicOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821470e60] } +&{glMapBuffer QOpenGLFunctions_3_1::glMapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false GLvoid * [0xc821470fc0 0xc821471040] } +&{glMapBufferRange QOpenGLFunctions_3_1::glMapBufferRange commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false GLvoid * [0xc8214711a0 0xc821471220 0xc8214712a0 0xc821471320] } +&{glMultiDrawArrays QOpenGLFunctions_3_1::glMultiDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214714e0 0xc821471560 0xc8214715e0 0xc821471660] } +&{glMultiDrawElements QOpenGLFunctions_3_1::glMultiDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821471820 0xc8214718a0 0xc821471920 0xc8214719c0 0xc821471aa0] } +&{glPixelStoref QOpenGLFunctions_3_1::glPixelStoref commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821471c00 0xc821471c80] } +&{glPixelStorei QOpenGLFunctions_3_1::glPixelStorei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821471de0 0xc821471e60] } +&{glPointParameterf QOpenGLFunctions_3_1::glPointParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821484020 0xc8214840a0] } +&{glPointParameterfv QOpenGLFunctions_3_1::glPointParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821484260 0xc8214842e0] } +&{glPointParameteri QOpenGLFunctions_3_1::glPointParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214844a0 0xc821484520] } +&{glPointParameteriv QOpenGLFunctions_3_1::glPointParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214846e0 0xc821484760] } +&{glPointSize QOpenGLFunctions_3_1::glPointSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214848e0] } +&{glPolygonMode QOpenGLFunctions_3_1::glPolygonMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821484a40 0xc821484ac0] } +&{glPolygonOffset QOpenGLFunctions_3_1::glPolygonOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821484c20 0xc821484ca0] } +&{glPrimitiveRestartIndex QOpenGLFunctions_3_1::glPrimitiveRestartIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821484e60] } +&{glReadBuffer QOpenGLFunctions_3_1::glReadBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821484fe0] } +&{glReadPixels QOpenGLFunctions_3_1::glReadPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821485140 0xc8214851c0 0xc821485240 0xc8214852c0 0xc821485360 0xc8214853e0 0xc821485460] } +&{glRenderbufferStorage QOpenGLFunctions_3_1::glRenderbufferStorage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821485620 0xc8214856a0 0xc821485720 0xc8214857a0] } +&{glRenderbufferStorageMultisample QOpenGLFunctions_3_1::glRenderbufferStorageMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821485960 0xc8214859e0 0xc821485a60 0xc821485ae0 0xc821485b80] } +&{glSampleCoverage QOpenGLFunctions_3_1::glSampleCoverage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821485ce0 0xc821485d60] } +&{glScissor QOpenGLFunctions_3_1::glScissor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821485f20 0xc821485fa0 0xc821494020 0xc8214940a0] } +&{glShaderSource QOpenGLFunctions_3_1::glShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821494200 0xc821494280 0xc821494320 0xc8214943e0] } +&{glStencilFunc QOpenGLFunctions_3_1::glStencilFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821494540 0xc8214945c0 0xc821494640] } +&{glStencilFuncSeparate QOpenGLFunctions_3_1::glStencilFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821494800 0xc821494880 0xc821494900 0xc821494980] } +&{glStencilMask QOpenGLFunctions_3_1::glStencilMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821494b00] } +&{glStencilMaskSeparate QOpenGLFunctions_3_1::glStencilMaskSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821494cc0 0xc821494d40] } +&{glStencilOp QOpenGLFunctions_3_1::glStencilOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821494ea0 0xc821494f20 0xc821494fa0] } +&{glStencilOpSeparate QOpenGLFunctions_3_1::glStencilOpSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821495160 0xc8214951e0 0xc821495260 0xc8214952e0] } +&{glTexBuffer QOpenGLFunctions_3_1::glTexBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821495440 0xc8214954c0 0xc821495540] } +&{glTexImage1D QOpenGLFunctions_3_1::glTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214956a0 0xc821495720 0xc8214957a0 0xc821495820 0xc8214958c0 0xc821495940 0xc8214959c0 0xc821495a40] } +&{glTexImage2D QOpenGLFunctions_3_1::glTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc821495ba0 0xc821495c20 0xc821495ca0 0xc821495d20 0xc821495dc0 0xc821495e40 0xc821495ec0 0xc821495f40 0xc821495fe0] } +&{glTexImage3D QOpenGLFunctions_3_1::glTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214a2140 0xc8214a21c0 0xc8214a2240 0xc8214a22c0 0xc8214a2360 0xc8214a23e0 0xc8214a2460 0xc8214a24e0 0xc8214a2580 0xc8214a2600] } +&{glTexParameterIiv QOpenGLFunctions_3_1::glTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214a27c0 0xc8214a2840 0xc8214a28c0] } +&{glTexParameterIuiv QOpenGLFunctions_3_1::glTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214a2a80 0xc8214a2b00 0xc8214a2b80] } +&{glTexParameterf QOpenGLFunctions_3_1::glTexParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214a2ce0 0xc8214a2d60 0xc8214a2de0] } +&{glTexParameterfv QOpenGLFunctions_3_1::glTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214a2f40 0xc8214a2fc0 0xc8214a3040] } +&{glTexParameteri QOpenGLFunctions_3_1::glTexParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214a31a0 0xc8214a3220 0xc8214a32a0] } +&{glTexParameteriv QOpenGLFunctions_3_1::glTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214a3400 0xc8214a3480 0xc8214a3500] } +&{glTexSubImage1D QOpenGLFunctions_3_1::glTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214a3660 0xc8214a36e0 0xc8214a3760 0xc8214a37e0 0xc8214a3880 0xc8214a3900 0xc8214a3980] } +&{glTexSubImage2D QOpenGLFunctions_3_1::glTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214a3ae0 0xc8214a3b60 0xc8214a3be0 0xc8214a3c60 0xc8214a3d00 0xc8214a3d80 0xc8214a3e00 0xc8214a3e80 0xc8214a3f20] } +&{glTexSubImage3D QOpenGLFunctions_3_1::glTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214b2080 0xc8214b2100 0xc8214b2180 0xc8214b2200 0xc8214b22a0 0xc8214b2320 0xc8214b23a0 0xc8214b2420 0xc8214b24c0 0xc8214b2540 0xc8214b25c0] } +&{glTransformFeedbackVaryings QOpenGLFunctions_3_1::glTransformFeedbackVaryings commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214b2780 0xc8214b2800 0xc8214b28a0 0xc8214b2960] } +&{glUniform1f QOpenGLFunctions_3_1::glUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214b2ac0 0xc8214b2b40] } +&{glUniform1fv QOpenGLFunctions_3_1::glUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214b2ca0 0xc8214b2d20 0xc8214b2da0] } +&{glUniform1i QOpenGLFunctions_3_1::glUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214b2f00 0xc8214b2f80] } +&{glUniform1iv QOpenGLFunctions_3_1::glUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214b30e0 0xc8214b3160 0xc8214b31e0] } +&{glUniform1ui QOpenGLFunctions_3_1::glUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214b3340 0xc8214b33c0] } +&{glUniform1uiv QOpenGLFunctions_3_1::glUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214b3520 0xc8214b35a0 0xc8214b3620] } +&{glUniform2f QOpenGLFunctions_3_1::glUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214b3780 0xc8214b3800 0xc8214b3880] } +&{glUniform2fv QOpenGLFunctions_3_1::glUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214b39e0 0xc8214b3a60 0xc8214b3ae0] } +&{glUniform2i QOpenGLFunctions_3_1::glUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214b3c40 0xc8214b3cc0 0xc8214b3d40] } +&{glUniform2iv QOpenGLFunctions_3_1::glUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214b3ea0 0xc8214b3f20 0xc8214b3fa0] } +&{glUniform2ui QOpenGLFunctions_3_1::glUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214c4100 0xc8214c4180 0xc8214c4200] } +&{glUniform2uiv QOpenGLFunctions_3_1::glUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214c4360 0xc8214c43e0 0xc8214c4460] } +&{glUniform3f QOpenGLFunctions_3_1::glUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214c45c0 0xc8214c4640 0xc8214c46c0 0xc8214c4740] } +&{glUniform3fv QOpenGLFunctions_3_1::glUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214c48a0 0xc8214c4920 0xc8214c49a0] } +&{glUniform3i QOpenGLFunctions_3_1::glUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214c4b00 0xc8214c4b80 0xc8214c4c00 0xc8214c4c80] } +&{glUniform3iv QOpenGLFunctions_3_1::glUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214c4de0 0xc8214c4e60 0xc8214c4ee0] } +&{glUniform3ui QOpenGLFunctions_3_1::glUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214c5040 0xc8214c50c0 0xc8214c5140 0xc8214c51c0] } +&{glUniform3uiv QOpenGLFunctions_3_1::glUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214c5320 0xc8214c53a0 0xc8214c5420] } +&{glUniform4f QOpenGLFunctions_3_1::glUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214c5580 0xc8214c5600 0xc8214c5680 0xc8214c5700 0xc8214c57a0] } +&{glUniform4fv QOpenGLFunctions_3_1::glUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214c5900 0xc8214c5980 0xc8214c5a00] } +&{glUniform4i QOpenGLFunctions_3_1::glUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214c5b60 0xc8214c5be0 0xc8214c5c60 0xc8214c5ce0 0xc8214c5d80] } +&{glUniform4iv QOpenGLFunctions_3_1::glUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214c5ee0 0xc8214c5f60 0xc8214c5fe0] } +&{glUniform4ui QOpenGLFunctions_3_1::glUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214d2140 0xc8214d21c0 0xc8214d2240 0xc8214d22c0 0xc8214d2360] } +&{glUniform4uiv QOpenGLFunctions_3_1::glUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214d24c0 0xc8214d2540 0xc8214d25c0] } +&{glUniformBlockBinding QOpenGLFunctions_3_1::glUniformBlockBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214d2780 0xc8214d2820 0xc8214d2900] } +&{glUniformMatrix2fv QOpenGLFunctions_3_1::glUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214d2b00 0xc8214d2b80 0xc8214d2c00 0xc8214d2c80] } +&{glUniformMatrix2x3fv QOpenGLFunctions_3_1::glUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214d2e40 0xc8214d2ec0 0xc8214d2f40 0xc8214d2fc0] } +&{glUniformMatrix2x4fv QOpenGLFunctions_3_1::glUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214d3180 0xc8214d3200 0xc8214d3280 0xc8214d3300] } +&{glUniformMatrix3fv QOpenGLFunctions_3_1::glUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214d34c0 0xc8214d3540 0xc8214d35c0 0xc8214d3640] } +&{glUniformMatrix3x2fv QOpenGLFunctions_3_1::glUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214d3800 0xc8214d3880 0xc8214d3900 0xc8214d3980] } +&{glUniformMatrix3x4fv QOpenGLFunctions_3_1::glUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214d3b40 0xc8214d3bc0 0xc8214d3c40 0xc8214d3cc0] } +&{glUniformMatrix4fv QOpenGLFunctions_3_1::glUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214d3e80 0xc8214d3f00 0xc8214d3f80 0xc8214e2000] } +&{glUniformMatrix4x2fv QOpenGLFunctions_3_1::glUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214e21c0 0xc8214e2240 0xc8214e22c0 0xc8214e2340] } +&{glUniformMatrix4x3fv QOpenGLFunctions_3_1::glUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214e2500 0xc8214e2580 0xc8214e2600 0xc8214e2680] } +&{glUnmapBuffer QOpenGLFunctions_3_1::glUnmapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false GLboolean [0xc8214e27e0] } +&{glUseProgram QOpenGLFunctions_3_1::glUseProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214e2940] } +&{glValidateProgram QOpenGLFunctions_3_1::glValidateProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214e2b00] } +&{glVertexAttribIPointer QOpenGLFunctions_3_1::glVertexAttribIPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214e2cc0 0xc8214e2d40 0xc8214e2dc0 0xc8214e2e40 0xc8214e2ee0] } +&{glVertexAttribPointer QOpenGLFunctions_3_1::glVertexAttribPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214e30a0 0xc8214e3120 0xc8214e31a0 0xc8214e3220 0xc8214e32c0 0xc8214e3340] } +&{glViewport QOpenGLFunctions_3_1::glViewport commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_1.h non plain false false void [0xc8214e3500 0xc8214e3580 0xc8214e3600 0xc8214e3680] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions_3_2_Compatibility.txt b/internal/binding/dump/QtGui/QOpenGLFunctions_3_2_Compatibility.txt new file mode 100755 index 00000000..9f78fc7d --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions_3_2_Compatibility.txt @@ -0,0 +1,703 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions_3_2_Compatibility QOpenGLFunctions_3_2_Compatibility::QOpenGLFunctions_3_2_Compatibility commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.cpp non constructor false false [] } +&{initializeOpenGLFunctions QOpenGLFunctions_3_2_Compatibility::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.cpp impure plain false false bool [] } +&{~QOpenGLFunctions_3_2_Compatibility QOpenGLFunctions_3_2_Compatibility::~QOpenGLFunctions_3_2_Compatibility commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.cpp non destructor false false [] } +&{glAccum QOpenGLFunctions_3_2_Compatibility::glAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8214e3d00 0xc8214e3d80] } +&{glActiveTexture QOpenGLFunctions_3_2_Compatibility::glActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8214e3ec0] } +&{glAlphaFunc QOpenGLFunctions_3_2_Compatibility::glAlphaFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8214f2000 0xc8214f2080] } +&{glAreTexturesResident QOpenGLFunctions_3_2_Compatibility::glAreTexturesResident commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLboolean [0xc8214f2240 0xc8214f22c0 0xc8214f2340] } +&{glArrayElement QOpenGLFunctions_3_2_Compatibility::glArrayElement commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8214f24a0] } +&{glAttachShader QOpenGLFunctions_3_2_Compatibility::glAttachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8214f25e0 0xc8214f2660] } +&{glBegin QOpenGLFunctions_3_2_Compatibility::glBegin commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8214f27c0] } +&{glBeginConditionalRender QOpenGLFunctions_3_2_Compatibility::glBeginConditionalRender commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8214f2960 0xc8214f29e0] } +&{glBeginQuery QOpenGLFunctions_3_2_Compatibility::glBeginQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8214f2b20 0xc8214f2ba0] } +&{glBeginTransformFeedback QOpenGLFunctions_3_2_Compatibility::glBeginTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8214f2d40] } +&{glBindAttribLocation QOpenGLFunctions_3_2_Compatibility::glBindAttribLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8214f2ee0 0xc8214f2f60 0xc8214f2fe0] } +&{glBindBuffer QOpenGLFunctions_3_2_Compatibility::glBindBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8214f3140 0xc8214f31c0] } +&{glBindBufferBase QOpenGLFunctions_3_2_Compatibility::glBindBufferBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8214f3300 0xc8214f3380 0xc8214f3400] } +&{glBindBufferRange QOpenGLFunctions_3_2_Compatibility::glBindBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8214f35a0 0xc8214f3620 0xc8214f36a0 0xc8214f3720 0xc8214f37c0] } +&{glBindFragDataLocation QOpenGLFunctions_3_2_Compatibility::glBindFragDataLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8214f3960 0xc8214f39e0 0xc8214f3a60] } +&{glBindFramebuffer QOpenGLFunctions_3_2_Compatibility::glBindFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8214f3c00 0xc8214f3c80] } +&{glBindRenderbuffer QOpenGLFunctions_3_2_Compatibility::glBindRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8214f3e20 0xc8214f3ea0] } +&{glBindTexture QOpenGLFunctions_3_2_Compatibility::glBindTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8214f3fe0 0xc821504060] } +&{glBindVertexArray QOpenGLFunctions_3_2_Compatibility::glBindVertexArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821504200] } +&{glBitmap QOpenGLFunctions_3_2_Compatibility::glBitmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821504340 0xc8215043c0 0xc821504440 0xc8215044c0 0xc821504560 0xc8215045e0 0xc821504660] } +&{glBlendColor QOpenGLFunctions_3_2_Compatibility::glBlendColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215047a0 0xc821504820 0xc8215048a0 0xc821504920] } +&{glBlendEquation QOpenGLFunctions_3_2_Compatibility::glBlendEquation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821504a60] } +&{glBlendEquationSeparate QOpenGLFunctions_3_2_Compatibility::glBlendEquationSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821504c00 0xc821504c80] } +&{glBlendFunc QOpenGLFunctions_3_2_Compatibility::glBlendFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821504dc0 0xc821504e40] } +&{glBlendFuncSeparate QOpenGLFunctions_3_2_Compatibility::glBlendFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821504fe0 0xc821505060 0xc8215050e0 0xc821505160] } +&{glBlitFramebuffer QOpenGLFunctions_3_2_Compatibility::glBlitFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821505300 0xc821505380 0xc821505400 0xc821505480 0xc821505520 0xc8215055a0 0xc821505620 0xc8215056a0 0xc821505740 0xc8215057c0] } +&{glBufferData QOpenGLFunctions_3_2_Compatibility::glBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821505900 0xc821505980 0xc821505a00 0xc821505a80] } +&{glBufferSubData QOpenGLFunctions_3_2_Compatibility::glBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821505be0 0xc821505c60 0xc821505ce0 0xc821505d60] } +&{glCallList QOpenGLFunctions_3_2_Compatibility::glCallList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821505ec0] } +&{glCallLists QOpenGLFunctions_3_2_Compatibility::glCallLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821514000 0xc821514080 0xc821514100] } +&{glCheckFramebufferStatus QOpenGLFunctions_3_2_Compatibility::glCheckFramebufferStatus commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLenum [0xc8215142a0] } +&{glClampColor QOpenGLFunctions_3_2_Compatibility::glClampColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215143e0 0xc821514460] } +&{glClear QOpenGLFunctions_3_2_Compatibility::glClear commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215145c0] } +&{glClearAccum QOpenGLFunctions_3_2_Compatibility::glClearAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821514700 0xc821514780 0xc821514800 0xc821514880] } +&{glClearBufferfi QOpenGLFunctions_3_2_Compatibility::glClearBufferfi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215149c0 0xc821514a40 0xc821514ac0 0xc821514b40] } +&{glClearBufferfv QOpenGLFunctions_3_2_Compatibility::glClearBufferfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821514c80 0xc821514d00 0xc821514d80] } +&{glClearBufferiv QOpenGLFunctions_3_2_Compatibility::glClearBufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821514ec0 0xc821514f40 0xc821514fc0] } +&{glClearBufferuiv QOpenGLFunctions_3_2_Compatibility::glClearBufferuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821515100 0xc821515180 0xc821515200] } +&{glClearColor QOpenGLFunctions_3_2_Compatibility::glClearColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821515340 0xc8215153c0 0xc821515440 0xc8215154c0] } +&{glClearDepth QOpenGLFunctions_3_2_Compatibility::glClearDepth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821515600] } +&{glClearIndex QOpenGLFunctions_3_2_Compatibility::glClearIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821515760] } +&{glClearStencil QOpenGLFunctions_3_2_Compatibility::glClearStencil commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215158c0] } +&{glClientActiveTexture QOpenGLFunctions_3_2_Compatibility::glClientActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821515a60] } +&{glClientWaitSync QOpenGLFunctions_3_2_Compatibility::glClientWaitSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLenum [0xc821515ba0 0xc821515c20 0xc821515ca0] } +&{glClipPlane QOpenGLFunctions_3_2_Compatibility::glClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821515de0 0xc821515e60] } +&{glColor3b QOpenGLFunctions_3_2_Compatibility::glColor3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821515fa0 0xc82152a020 0xc82152a0a0] } +&{glColor3bv QOpenGLFunctions_3_2_Compatibility::glColor3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82152a200] } +&{glColor3d QOpenGLFunctions_3_2_Compatibility::glColor3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82152a340 0xc82152a3c0 0xc82152a440] } +&{glColor3dv QOpenGLFunctions_3_2_Compatibility::glColor3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82152a580] } +&{glColor3f QOpenGLFunctions_3_2_Compatibility::glColor3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82152a6c0 0xc82152a740 0xc82152a7c0] } +&{glColor3fv QOpenGLFunctions_3_2_Compatibility::glColor3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82152a900] } +&{glColor3i QOpenGLFunctions_3_2_Compatibility::glColor3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82152aa40 0xc82152aac0 0xc82152ab40] } +&{glColor3iv QOpenGLFunctions_3_2_Compatibility::glColor3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82152aca0] } +&{glColor3s QOpenGLFunctions_3_2_Compatibility::glColor3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82152ade0 0xc82152ae60 0xc82152aee0] } +&{glColor3sv QOpenGLFunctions_3_2_Compatibility::glColor3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82152b020] } +&{glColor3ub QOpenGLFunctions_3_2_Compatibility::glColor3ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82152b160 0xc82152b1e0 0xc82152b260] } +&{glColor3ubv QOpenGLFunctions_3_2_Compatibility::glColor3ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82152b3a0] } +&{glColor3ui QOpenGLFunctions_3_2_Compatibility::glColor3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82152b4e0 0xc82152b560 0xc82152b5e0] } +&{glColor3uiv QOpenGLFunctions_3_2_Compatibility::glColor3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82152b720] } +&{glColor3us QOpenGLFunctions_3_2_Compatibility::glColor3us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82152b880 0xc82152b900 0xc82152b980] } +&{glColor3usv QOpenGLFunctions_3_2_Compatibility::glColor3usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82152bac0] } +&{glColor4b QOpenGLFunctions_3_2_Compatibility::glColor4b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82152bc00 0xc82152bc80 0xc82152bd00 0xc82152bd80] } +&{glColor4bv QOpenGLFunctions_3_2_Compatibility::glColor4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82152bee0] } +&{glColor4d QOpenGLFunctions_3_2_Compatibility::glColor4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821540020 0xc8215400a0 0xc821540120 0xc8215401a0] } +&{glColor4dv QOpenGLFunctions_3_2_Compatibility::glColor4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215402e0] } +&{glColor4f QOpenGLFunctions_3_2_Compatibility::glColor4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821540420 0xc8215404a0 0xc821540520 0xc8215405a0] } +&{glColor4fv QOpenGLFunctions_3_2_Compatibility::glColor4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215406e0] } +&{glColor4i QOpenGLFunctions_3_2_Compatibility::glColor4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821540820 0xc8215408a0 0xc821540920 0xc8215409a0] } +&{glColor4iv QOpenGLFunctions_3_2_Compatibility::glColor4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821540b00] } +&{glColor4s QOpenGLFunctions_3_2_Compatibility::glColor4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821540c40 0xc821540cc0 0xc821540d40 0xc821540dc0] } +&{glColor4sv QOpenGLFunctions_3_2_Compatibility::glColor4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821540f00] } +&{glColor4ub QOpenGLFunctions_3_2_Compatibility::glColor4ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821541040 0xc8215410c0 0xc821541140 0xc8215411c0] } +&{glColor4ubv QOpenGLFunctions_3_2_Compatibility::glColor4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821541300] } +&{glColor4ui QOpenGLFunctions_3_2_Compatibility::glColor4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821541440 0xc8215414c0 0xc821541540 0xc8215415c0] } +&{glColor4uiv QOpenGLFunctions_3_2_Compatibility::glColor4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821541700] } +&{glColor4us QOpenGLFunctions_3_2_Compatibility::glColor4us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821541840 0xc8215418c0 0xc821541940 0xc8215419c0] } +&{glColor4usv QOpenGLFunctions_3_2_Compatibility::glColor4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821541b00] } +&{glColorMask QOpenGLFunctions_3_2_Compatibility::glColorMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821541c40 0xc821541cc0 0xc821541d40 0xc821541dc0] } +&{glColorMaski QOpenGLFunctions_3_2_Compatibility::glColorMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821541f00 0xc821541f80 0xc82154e000 0xc82154e080 0xc82154e120] } +&{glColorMaterial QOpenGLFunctions_3_2_Compatibility::glColorMaterial commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82154e260 0xc82154e2e0] } +&{glColorPointer QOpenGLFunctions_3_2_Compatibility::glColorPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82154e420 0xc82154e4a0 0xc82154e520 0xc82154e5a0] } +&{glColorSubTable QOpenGLFunctions_3_2_Compatibility::glColorSubTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82154e6e0 0xc82154e760 0xc82154e7e0 0xc82154e860 0xc82154e900 0xc82154e980] } +&{glColorTable QOpenGLFunctions_3_2_Compatibility::glColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82154eac0 0xc82154eb40 0xc82154ebc0 0xc82154ec40 0xc82154ece0 0xc82154ed60] } +&{glColorTableParameterfv QOpenGLFunctions_3_2_Compatibility::glColorTableParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82154ef00 0xc82154ef80 0xc82154f000] } +&{glColorTableParameteriv QOpenGLFunctions_3_2_Compatibility::glColorTableParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82154f1a0 0xc82154f220 0xc82154f2a0] } +&{glCompileShader QOpenGLFunctions_3_2_Compatibility::glCompileShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82154f3e0] } +&{glCompressedTexImage1D QOpenGLFunctions_3_2_Compatibility::glCompressedTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82154f580 0xc82154f600 0xc82154f680 0xc82154f700 0xc82154f7a0 0xc82154f820 0xc82154f8a0] } +&{glCompressedTexImage2D QOpenGLFunctions_3_2_Compatibility::glCompressedTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82154fa40 0xc82154fac0 0xc82154fb40 0xc82154fbc0 0xc82154fc60 0xc82154fce0 0xc82154fd60 0xc82154fde0] } +&{glCompressedTexImage3D QOpenGLFunctions_3_2_Compatibility::glCompressedTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82154ff80 0xc821562000 0xc821562080 0xc821562100 0xc8215621a0 0xc821562220 0xc8215622a0 0xc821562320 0xc8215623c0] } +&{glCompressedTexSubImage1D QOpenGLFunctions_3_2_Compatibility::glCompressedTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821562560 0xc8215625e0 0xc821562660 0xc8215626e0 0xc821562780 0xc821562800 0xc821562880] } +&{glCompressedTexSubImage2D QOpenGLFunctions_3_2_Compatibility::glCompressedTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821562a20 0xc821562aa0 0xc821562b20 0xc821562ba0 0xc821562c40 0xc821562cc0 0xc821562d40 0xc821562dc0 0xc821562e60] } +&{glCompressedTexSubImage3D QOpenGLFunctions_3_2_Compatibility::glCompressedTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821563000 0xc821563080 0xc821563100 0xc821563180 0xc821563220 0xc8215632a0 0xc821563320 0xc8215633a0 0xc821563440 0xc8215634c0 0xc821563540] } +&{glConvolutionFilter1D QOpenGLFunctions_3_2_Compatibility::glConvolutionFilter1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215636e0 0xc821563760 0xc8215637e0 0xc821563860 0xc821563900 0xc821563980] } +&{glConvolutionFilter2D QOpenGLFunctions_3_2_Compatibility::glConvolutionFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821563b20 0xc821563ba0 0xc821563c20 0xc821563ca0 0xc821563d40 0xc821563dc0 0xc821563e40] } +&{glConvolutionParameterf QOpenGLFunctions_3_2_Compatibility::glConvolutionParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821563fe0 0xc82156e060 0xc82156e0e0] } +&{glConvolutionParameterfv QOpenGLFunctions_3_2_Compatibility::glConvolutionParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82156e280 0xc82156e300 0xc82156e380] } +&{glConvolutionParameteri QOpenGLFunctions_3_2_Compatibility::glConvolutionParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82156e520 0xc82156e5a0 0xc82156e620] } +&{glConvolutionParameteriv QOpenGLFunctions_3_2_Compatibility::glConvolutionParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82156e7c0 0xc82156e840 0xc82156e8c0] } +&{glCopyBufferSubData QOpenGLFunctions_3_2_Compatibility::glCopyBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82156ea60 0xc82156eae0 0xc82156eb60 0xc82156ebe0 0xc82156ec80] } +&{glCopyColorSubTable QOpenGLFunctions_3_2_Compatibility::glCopyColorSubTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82156ee20 0xc82156eea0 0xc82156ef20 0xc82156efa0 0xc82156f040] } +&{glCopyColorTable QOpenGLFunctions_3_2_Compatibility::glCopyColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82156f180 0xc82156f200 0xc82156f280 0xc82156f300 0xc82156f3a0] } +&{glCopyConvolutionFilter1D QOpenGLFunctions_3_2_Compatibility::glCopyConvolutionFilter1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82156f540 0xc82156f5c0 0xc82156f640 0xc82156f6c0 0xc82156f760] } +&{glCopyConvolutionFilter2D QOpenGLFunctions_3_2_Compatibility::glCopyConvolutionFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82156f900 0xc82156f980 0xc82156fa00 0xc82156fa80 0xc82156fb20 0xc82156fba0] } +&{glCopyPixels QOpenGLFunctions_3_2_Compatibility::glCopyPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82156fce0 0xc82156fd60 0xc82156fde0 0xc82156fe60 0xc82156ff00] } +&{glCopyTexImage1D QOpenGLFunctions_3_2_Compatibility::glCopyTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82157e040 0xc82157e0c0 0xc82157e140 0xc82157e1c0 0xc82157e260 0xc82157e2e0 0xc82157e360] } +&{glCopyTexImage2D QOpenGLFunctions_3_2_Compatibility::glCopyTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82157e4a0 0xc82157e520 0xc82157e5a0 0xc82157e620 0xc82157e6c0 0xc82157e740 0xc82157e7c0 0xc82157e840] } +&{glCopyTexSubImage1D QOpenGLFunctions_3_2_Compatibility::glCopyTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82157e9e0 0xc82157ea60 0xc82157eae0 0xc82157eb60 0xc82157ec00 0xc82157ec80] } +&{glCopyTexSubImage2D QOpenGLFunctions_3_2_Compatibility::glCopyTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82157ee20 0xc82157eea0 0xc82157ef20 0xc82157efa0 0xc82157f040 0xc82157f0c0 0xc82157f140 0xc82157f1c0] } +&{glCopyTexSubImage3D QOpenGLFunctions_3_2_Compatibility::glCopyTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82157f360 0xc82157f3e0 0xc82157f460 0xc82157f4e0 0xc82157f580 0xc82157f600 0xc82157f680 0xc82157f700 0xc82157f7a0] } +&{glCreateProgram QOpenGLFunctions_3_2_Compatibility::glCreateProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLuint [] } +&{glCreateShader QOpenGLFunctions_3_2_Compatibility::glCreateShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLuint [0xc82157f960] } +&{glCullFace QOpenGLFunctions_3_2_Compatibility::glCullFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82157fac0] } +&{glDeleteBuffers QOpenGLFunctions_3_2_Compatibility::glDeleteBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82157fc00 0xc82157fc80] } +&{glDeleteFramebuffers QOpenGLFunctions_3_2_Compatibility::glDeleteFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82157fe20 0xc82157fea0] } +&{glDeleteLists QOpenGLFunctions_3_2_Compatibility::glDeleteLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82157ffe0 0xc82158c060] } +&{glDeleteProgram QOpenGLFunctions_3_2_Compatibility::glDeleteProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82158c1a0] } +&{glDeleteQueries QOpenGLFunctions_3_2_Compatibility::glDeleteQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82158c2e0 0xc82158c360] } +&{glDeleteRenderbuffers QOpenGLFunctions_3_2_Compatibility::glDeleteRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82158c500 0xc82158c580] } +&{glDeleteShader QOpenGLFunctions_3_2_Compatibility::glDeleteShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82158c6c0] } +&{glDeleteSync QOpenGLFunctions_3_2_Compatibility::glDeleteSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82158c820] } +&{glDeleteTextures QOpenGLFunctions_3_2_Compatibility::glDeleteTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82158c960 0xc82158c9e0] } +&{glDeleteVertexArrays QOpenGLFunctions_3_2_Compatibility::glDeleteVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82158cb80 0xc82158cc00] } +&{glDepthFunc QOpenGLFunctions_3_2_Compatibility::glDepthFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82158cd60] } +&{glDepthMask QOpenGLFunctions_3_2_Compatibility::glDepthMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82158cee0] } +&{glDepthRange QOpenGLFunctions_3_2_Compatibility::glDepthRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82158d020 0xc82158d0a0] } +&{glDetachShader QOpenGLFunctions_3_2_Compatibility::glDetachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82158d1e0 0xc82158d260] } +&{glDisable QOpenGLFunctions_3_2_Compatibility::glDisable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82158d3c0] } +&{glDisableClientState QOpenGLFunctions_3_2_Compatibility::glDisableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82158d560] } +&{glDisableVertexAttribArray QOpenGLFunctions_3_2_Compatibility::glDisableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82158d700] } +&{glDisablei QOpenGLFunctions_3_2_Compatibility::glDisablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82158d840 0xc82158d8c0] } +&{glDrawArrays QOpenGLFunctions_3_2_Compatibility::glDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82158da00 0xc82158da80 0xc82158db00] } +&{glDrawArraysInstanced QOpenGLFunctions_3_2_Compatibility::glDrawArraysInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82158dca0 0xc82158dd20 0xc82158dda0 0xc82158de20] } +&{glDrawBuffer QOpenGLFunctions_3_2_Compatibility::glDrawBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82158df80] } +&{glDrawBuffers QOpenGLFunctions_3_2_Compatibility::glDrawBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215a00c0 0xc8215a0140] } +&{glDrawElements QOpenGLFunctions_3_2_Compatibility::glDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215a0280 0xc8215a0300 0xc8215a0380 0xc8215a0400] } +&{glDrawElementsBaseVertex QOpenGLFunctions_3_2_Compatibility::glDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215a05a0 0xc8215a0620 0xc8215a06a0 0xc8215a0720 0xc8215a07c0] } +&{glDrawElementsInstanced QOpenGLFunctions_3_2_Compatibility::glDrawElementsInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215a0960 0xc8215a09e0 0xc8215a0a60 0xc8215a0ae0 0xc8215a0b80] } +&{glDrawElementsInstancedBaseVertex QOpenGLFunctions_3_2_Compatibility::glDrawElementsInstancedBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215a0cc0 0xc8215a0d40 0xc8215a0dc0 0xc8215a0e40 0xc8215a0ee0 0xc8215a0f60] } +&{glDrawPixels QOpenGLFunctions_3_2_Compatibility::glDrawPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215a10a0 0xc8215a1120 0xc8215a11a0 0xc8215a1220 0xc8215a12c0] } +&{glDrawRangeElements QOpenGLFunctions_3_2_Compatibility::glDrawRangeElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215a1460 0xc8215a14e0 0xc8215a1560 0xc8215a15e0 0xc8215a1680 0xc8215a1700] } +&{glDrawRangeElementsBaseVertex QOpenGLFunctions_3_2_Compatibility::glDrawRangeElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215a18a0 0xc8215a1920 0xc8215a19a0 0xc8215a1a20 0xc8215a1ac0 0xc8215a1b40 0xc8215a1bc0] } +&{glEdgeFlag QOpenGLFunctions_3_2_Compatibility::glEdgeFlag commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215a1d20] } +&{glEdgeFlagPointer QOpenGLFunctions_3_2_Compatibility::glEdgeFlagPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215a1ec0 0xc8215a1f40] } +&{glEdgeFlagv QOpenGLFunctions_3_2_Compatibility::glEdgeFlagv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215b00a0] } +&{glEnable QOpenGLFunctions_3_2_Compatibility::glEnable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215b0240] } +&{glEnableClientState QOpenGLFunctions_3_2_Compatibility::glEnableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215b03e0] } +&{glEnableVertexAttribArray QOpenGLFunctions_3_2_Compatibility::glEnableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215b0580] } +&{glEnablei QOpenGLFunctions_3_2_Compatibility::glEnablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215b06c0 0xc8215b0740] } +&{glEnd QOpenGLFunctions_3_2_Compatibility::glEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [] } +&{glEndConditionalRender QOpenGLFunctions_3_2_Compatibility::glEndConditionalRender commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [] } +&{glEndList QOpenGLFunctions_3_2_Compatibility::glEndList commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [] } +&{glEndQuery QOpenGLFunctions_3_2_Compatibility::glEndQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215b0a40] } +&{glEndTransformFeedback QOpenGLFunctions_3_2_Compatibility::glEndTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [] } +&{glEvalCoord1d QOpenGLFunctions_3_2_Compatibility::glEvalCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215b0c80] } +&{glEvalCoord1dv QOpenGLFunctions_3_2_Compatibility::glEvalCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215b0dc0] } +&{glEvalCoord1f QOpenGLFunctions_3_2_Compatibility::glEvalCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215b0f20] } +&{glEvalCoord1fv QOpenGLFunctions_3_2_Compatibility::glEvalCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215b1060] } +&{glEvalCoord2d QOpenGLFunctions_3_2_Compatibility::glEvalCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215b11a0 0xc8215b1220] } +&{glEvalCoord2dv QOpenGLFunctions_3_2_Compatibility::glEvalCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215b1360] } +&{glEvalCoord2f QOpenGLFunctions_3_2_Compatibility::glEvalCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215b14a0 0xc8215b1520] } +&{glEvalCoord2fv QOpenGLFunctions_3_2_Compatibility::glEvalCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215b1660] } +&{glEvalMesh1 QOpenGLFunctions_3_2_Compatibility::glEvalMesh1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215b17a0 0xc8215b1820 0xc8215b18a0] } +&{glEvalMesh2 QOpenGLFunctions_3_2_Compatibility::glEvalMesh2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215b19e0 0xc8215b1a60 0xc8215b1ae0 0xc8215b1b60 0xc8215b1c00] } +&{glEvalPoint1 QOpenGLFunctions_3_2_Compatibility::glEvalPoint1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215b1d60] } +&{glEvalPoint2 QOpenGLFunctions_3_2_Compatibility::glEvalPoint2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215b1ea0 0xc8215b1f20] } +&{glFeedbackBuffer QOpenGLFunctions_3_2_Compatibility::glFeedbackBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215c8060 0xc8215c80e0 0xc8215c8160] } +&{glFenceSync QOpenGLFunctions_3_2_Compatibility::glFenceSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLsync [0xc8215c82a0 0xc8215c8320] } +&{glFinish QOpenGLFunctions_3_2_Compatibility::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [] } +&{glFlush QOpenGLFunctions_3_2_Compatibility::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [] } +&{glFlushMappedBufferRange QOpenGLFunctions_3_2_Compatibility::glFlushMappedBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215c8580 0xc8215c8600 0xc8215c8680] } +&{glFogCoordPointer QOpenGLFunctions_3_2_Compatibility::glFogCoordPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215c8820 0xc8215c88a0 0xc8215c8920] } +&{glFogCoordd QOpenGLFunctions_3_2_Compatibility::glFogCoordd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215c8a80] } +&{glFogCoorddv QOpenGLFunctions_3_2_Compatibility::glFogCoorddv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215c8bc0] } +&{glFogCoordf QOpenGLFunctions_3_2_Compatibility::glFogCoordf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215c8d20] } +&{glFogCoordfv QOpenGLFunctions_3_2_Compatibility::glFogCoordfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215c8e60] } +&{glFogf QOpenGLFunctions_3_2_Compatibility::glFogf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215c8fa0 0xc8215c9020] } +&{glFogfv QOpenGLFunctions_3_2_Compatibility::glFogfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215c9160 0xc8215c91e0] } +&{glFogi QOpenGLFunctions_3_2_Compatibility::glFogi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215c9320 0xc8215c93a0] } +&{glFogiv QOpenGLFunctions_3_2_Compatibility::glFogiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215c94e0 0xc8215c9560] } +&{glFramebufferRenderbuffer QOpenGLFunctions_3_2_Compatibility::glFramebufferRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215c9700 0xc8215c9780 0xc8215c9820 0xc8215c98e0] } +&{glFramebufferTexture QOpenGLFunctions_3_2_Compatibility::glFramebufferTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215c9a80 0xc8215c9b00 0xc8215c9b80 0xc8215c9c00] } +&{glFramebufferTexture1D QOpenGLFunctions_3_2_Compatibility::glFramebufferTexture1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215c9da0 0xc8215c9e20 0xc8215c9ea0 0xc8215c9f20 0xc8215c9fc0] } +&{glFramebufferTexture2D QOpenGLFunctions_3_2_Compatibility::glFramebufferTexture2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215dc160 0xc8215dc1e0 0xc8215dc260 0xc8215dc2e0 0xc8215dc380] } +&{glFramebufferTexture3D QOpenGLFunctions_3_2_Compatibility::glFramebufferTexture3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215dc520 0xc8215dc5a0 0xc8215dc620 0xc8215dc6a0 0xc8215dc740 0xc8215dc7c0] } +&{glFramebufferTextureLayer QOpenGLFunctions_3_2_Compatibility::glFramebufferTextureLayer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215dc960 0xc8215dc9e0 0xc8215dca60 0xc8215dcae0 0xc8215dcb80] } +&{glFrontFace QOpenGLFunctions_3_2_Compatibility::glFrontFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215dcce0] } +&{glFrustum QOpenGLFunctions_3_2_Compatibility::glFrustum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215dce20 0xc8215dcea0 0xc8215dcf20 0xc8215dcfa0 0xc8215dd040 0xc8215dd0c0] } +&{glGenBuffers QOpenGLFunctions_3_2_Compatibility::glGenBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215dd200 0xc8215dd280] } +&{glGenFramebuffers QOpenGLFunctions_3_2_Compatibility::glGenFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215dd420 0xc8215dd4a0] } +&{glGenLists QOpenGLFunctions_3_2_Compatibility::glGenLists commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLuint [0xc8215dd600] } +&{glGenQueries QOpenGLFunctions_3_2_Compatibility::glGenQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215dd740 0xc8215dd7c0] } +&{glGenRenderbuffers QOpenGLFunctions_3_2_Compatibility::glGenRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215dd960 0xc8215dd9e0] } +&{glGenTextures QOpenGLFunctions_3_2_Compatibility::glGenTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215ddb20 0xc8215ddba0] } +&{glGenVertexArrays QOpenGLFunctions_3_2_Compatibility::glGenVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215ddd40 0xc8215dddc0] } +&{glGenerateMipmap QOpenGLFunctions_3_2_Compatibility::glGenerateMipmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8215ddf00] } +&{glGetActiveAttrib QOpenGLFunctions_3_2_Compatibility::glGetActiveAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216040a0 0xc821604120 0xc8216041a0 0xc821604220 0xc8216042c0 0xc821604340 0xc8216043c0] } +&{glGetActiveUniform QOpenGLFunctions_3_2_Compatibility::glGetActiveUniform commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821604560 0xc8216045e0 0xc821604660 0xc8216046e0 0xc821604780 0xc821604800 0xc821604880] } +&{glGetActiveUniformBlockName QOpenGLFunctions_3_2_Compatibility::glGetActiveUniformBlockName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821604a20 0xc821604ac0 0xc821604b80 0xc821604c00 0xc821604ca0] } +&{glGetActiveUniformBlockiv QOpenGLFunctions_3_2_Compatibility::glGetActiveUniformBlockiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821604e40 0xc821604ee0 0xc821604fa0 0xc821605020] } +&{glGetActiveUniformName QOpenGLFunctions_3_2_Compatibility::glGetActiveUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216051c0 0xc821605240 0xc8216052c0 0xc821605340 0xc8216053e0] } +&{glGetActiveUniformsiv QOpenGLFunctions_3_2_Compatibility::glGetActiveUniformsiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821605580 0xc821605600 0xc821605680 0xc821605700 0xc8216057a0] } +&{glGetAttachedShaders QOpenGLFunctions_3_2_Compatibility::glGetAttachedShaders commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821605940 0xc8216059c0 0xc821605a40 0xc821605ac0] } +&{glGetAttribLocation QOpenGLFunctions_3_2_Compatibility::glGetAttribLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLint [0xc821605c60 0xc821605ce0] } +&{glGetBooleani_v QOpenGLFunctions_3_2_Compatibility::glGetBooleani_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821605e20 0xc821605ea0 0xc821605f20] } +&{glGetBooleanv QOpenGLFunctions_3_2_Compatibility::glGetBooleanv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821614060 0xc8216140e0] } +&{glGetBufferParameteri64v QOpenGLFunctions_3_2_Compatibility::glGetBufferParameteri64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821614280 0xc821614300 0xc821614380] } +&{glGetBufferParameteriv QOpenGLFunctions_3_2_Compatibility::glGetBufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821614520 0xc8216145a0 0xc821614620] } +&{glGetBufferPointerv QOpenGLFunctions_3_2_Compatibility::glGetBufferPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216147c0 0xc821614840 0xc8216148c0] } +&{glGetBufferSubData QOpenGLFunctions_3_2_Compatibility::glGetBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821614a60 0xc821614ae0 0xc821614b60 0xc821614be0] } +&{glGetClipPlane QOpenGLFunctions_3_2_Compatibility::glGetClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821614d20 0xc821614da0] } +&{glGetColorTable QOpenGLFunctions_3_2_Compatibility::glGetColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821614ee0 0xc821614f60 0xc821614fe0 0xc821615060] } +&{glGetColorTableParameterfv QOpenGLFunctions_3_2_Compatibility::glGetColorTableParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821615200 0xc821615280 0xc821615300] } +&{glGetColorTableParameteriv QOpenGLFunctions_3_2_Compatibility::glGetColorTableParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216154a0 0xc821615520 0xc8216155a0] } +&{glGetCompressedTexImage QOpenGLFunctions_3_2_Compatibility::glGetCompressedTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821615740 0xc8216157c0 0xc821615840] } +&{glGetConvolutionFilter QOpenGLFunctions_3_2_Compatibility::glGetConvolutionFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216159e0 0xc821615a60 0xc821615ae0 0xc821615b60] } +&{glGetConvolutionParameterfv QOpenGLFunctions_3_2_Compatibility::glGetConvolutionParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821615d00 0xc821615d80 0xc821615e00] } +&{glGetConvolutionParameteriv QOpenGLFunctions_3_2_Compatibility::glGetConvolutionParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821615fa0 0xc821624020 0xc8216240a0] } +&{glGetDoublev QOpenGLFunctions_3_2_Compatibility::glGetDoublev commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216241e0 0xc821624260] } +&{glGetError QOpenGLFunctions_3_2_Compatibility::glGetError commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLenum [] } +&{glGetFloatv QOpenGLFunctions_3_2_Compatibility::glGetFloatv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821624420 0xc8216244a0] } +&{glGetFragDataLocation QOpenGLFunctions_3_2_Compatibility::glGetFragDataLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLint [0xc821624640 0xc8216246c0] } +&{glGetFramebufferAttachmentParameteriv QOpenGLFunctions_3_2_Compatibility::glGetFramebufferAttachmentParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821624800 0xc821624880 0xc821624900 0xc821624980] } +&{glGetHistogram QOpenGLFunctions_3_2_Compatibility::glGetHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821624ac0 0xc821624b40 0xc821624bc0 0xc821624c40 0xc821624ce0] } +&{glGetHistogramParameterfv QOpenGLFunctions_3_2_Compatibility::glGetHistogramParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821624e80 0xc821624f00 0xc821624f80] } +&{glGetHistogramParameteriv QOpenGLFunctions_3_2_Compatibility::glGetHistogramParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821625120 0xc8216251a0 0xc821625220] } +&{glGetInteger64i_v QOpenGLFunctions_3_2_Compatibility::glGetInteger64i_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216253c0 0xc821625440 0xc8216254c0] } +&{glGetInteger64v QOpenGLFunctions_3_2_Compatibility::glGetInteger64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821625600 0xc821625680] } +&{glGetIntegeri_v QOpenGLFunctions_3_2_Compatibility::glGetIntegeri_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216257c0 0xc821625840 0xc8216258c0] } +&{glGetIntegerv QOpenGLFunctions_3_2_Compatibility::glGetIntegerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821625a00 0xc821625a80] } +&{glGetLightfv QOpenGLFunctions_3_2_Compatibility::glGetLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821625bc0 0xc821625c40 0xc821625cc0] } +&{glGetLightiv QOpenGLFunctions_3_2_Compatibility::glGetLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821625e00 0xc821625e80 0xc821625f00] } +&{glGetMapdv QOpenGLFunctions_3_2_Compatibility::glGetMapdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82163a040 0xc82163a0c0 0xc82163a140] } +&{glGetMapfv QOpenGLFunctions_3_2_Compatibility::glGetMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82163a280 0xc82163a300 0xc82163a380] } +&{glGetMapiv QOpenGLFunctions_3_2_Compatibility::glGetMapiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82163a4c0 0xc82163a540 0xc82163a5c0] } +&{glGetMaterialfv QOpenGLFunctions_3_2_Compatibility::glGetMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82163a700 0xc82163a780 0xc82163a800] } +&{glGetMaterialiv QOpenGLFunctions_3_2_Compatibility::glGetMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82163a940 0xc82163a9c0 0xc82163aa40] } +&{glGetMinmax QOpenGLFunctions_3_2_Compatibility::glGetMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82163ab80 0xc82163ac00 0xc82163ac80 0xc82163ad00 0xc82163ada0] } +&{glGetMinmaxParameterfv QOpenGLFunctions_3_2_Compatibility::glGetMinmaxParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82163af40 0xc82163afc0 0xc82163b040] } +&{glGetMinmaxParameteriv QOpenGLFunctions_3_2_Compatibility::glGetMinmaxParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82163b1e0 0xc82163b260 0xc82163b2e0] } +&{glGetMultisamplefv QOpenGLFunctions_3_2_Compatibility::glGetMultisamplefv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82163b480 0xc82163b500 0xc82163b580] } +&{glGetPixelMapfv QOpenGLFunctions_3_2_Compatibility::glGetPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82163b6c0 0xc82163b740] } +&{glGetPixelMapuiv QOpenGLFunctions_3_2_Compatibility::glGetPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82163b880 0xc82163b900] } +&{glGetPixelMapusv QOpenGLFunctions_3_2_Compatibility::glGetPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82163ba40 0xc82163bac0] } +&{glGetPointerv QOpenGLFunctions_3_2_Compatibility::glGetPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82163bc00 0xc82163bc80] } +&{glGetPolygonStipple QOpenGLFunctions_3_2_Compatibility::glGetPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82163be20] } +&{glGetProgramInfoLog QOpenGLFunctions_3_2_Compatibility::glGetProgramInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82163bfc0 0xc82164a040 0xc82164a0c0 0xc82164a140] } +&{glGetProgramiv QOpenGLFunctions_3_2_Compatibility::glGetProgramiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82164a280 0xc82164a300 0xc82164a380] } +&{glGetQueryObjectiv QOpenGLFunctions_3_2_Compatibility::glGetQueryObjectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82164a520 0xc82164a5a0 0xc82164a620] } +&{glGetQueryObjectuiv QOpenGLFunctions_3_2_Compatibility::glGetQueryObjectuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82164a7c0 0xc82164a840 0xc82164a8c0] } +&{glGetQueryiv QOpenGLFunctions_3_2_Compatibility::glGetQueryiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82164aa00 0xc82164aa80 0xc82164ab00] } +&{glGetRenderbufferParameteriv QOpenGLFunctions_3_2_Compatibility::glGetRenderbufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82164aca0 0xc82164ad20 0xc82164ada0] } +&{glGetSeparableFilter QOpenGLFunctions_3_2_Compatibility::glGetSeparableFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82164af60 0xc82164afe0 0xc82164b060 0xc82164b0e0 0xc82164b180 0xc82164b200] } +&{glGetShaderInfoLog QOpenGLFunctions_3_2_Compatibility::glGetShaderInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82164b3a0 0xc82164b420 0xc82164b4a0 0xc82164b520] } +&{glGetShaderSource QOpenGLFunctions_3_2_Compatibility::glGetShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82164b6c0 0xc82164b740 0xc82164b7c0 0xc82164b840] } +&{glGetShaderiv QOpenGLFunctions_3_2_Compatibility::glGetShaderiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82164b980 0xc82164ba00 0xc82164ba80] } +&{glGetString QOpenGLFunctions_3_2_Compatibility::glGetString commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false const GLubyte * [0xc82164bbc0] } +&{glGetStringi QOpenGLFunctions_3_2_Compatibility::glGetStringi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false const GLubyte * [0xc82164bd00 0xc82164bd80] } +&{glGetSynciv QOpenGLFunctions_3_2_Compatibility::glGetSynciv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82164bec0 0xc82164bf40 0xc82164bfc0 0xc82165e040 0xc82165e0e0] } +&{glGetTexEnvfv QOpenGLFunctions_3_2_Compatibility::glGetTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82165e220 0xc82165e2a0 0xc82165e320] } +&{glGetTexEnviv QOpenGLFunctions_3_2_Compatibility::glGetTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82165e460 0xc82165e4e0 0xc82165e560] } +&{glGetTexGendv QOpenGLFunctions_3_2_Compatibility::glGetTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82165e6a0 0xc82165e720 0xc82165e7a0] } +&{glGetTexGenfv QOpenGLFunctions_3_2_Compatibility::glGetTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82165e8e0 0xc82165e960 0xc82165e9e0] } +&{glGetTexGeniv QOpenGLFunctions_3_2_Compatibility::glGetTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82165eb20 0xc82165eba0 0xc82165ec20] } +&{glGetTexImage QOpenGLFunctions_3_2_Compatibility::glGetTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82165ed60 0xc82165ede0 0xc82165ee60 0xc82165eee0 0xc82165ef80] } +&{glGetTexLevelParameterfv QOpenGLFunctions_3_2_Compatibility::glGetTexLevelParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82165f120 0xc82165f1a0 0xc82165f220 0xc82165f2a0] } +&{glGetTexLevelParameteriv QOpenGLFunctions_3_2_Compatibility::glGetTexLevelParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82165f440 0xc82165f4c0 0xc82165f540 0xc82165f5c0] } +&{glGetTexParameterIiv QOpenGLFunctions_3_2_Compatibility::glGetTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82165f760 0xc82165f7e0 0xc82165f860] } +&{glGetTexParameterIuiv QOpenGLFunctions_3_2_Compatibility::glGetTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82165fa00 0xc82165fa80 0xc82165fb00] } +&{glGetTexParameterfv QOpenGLFunctions_3_2_Compatibility::glGetTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82165fca0 0xc82165fd20 0xc82165fda0] } +&{glGetTexParameteriv QOpenGLFunctions_3_2_Compatibility::glGetTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82165ff40 0xc82165ffc0 0xc82166e040] } +&{glGetTransformFeedbackVarying QOpenGLFunctions_3_2_Compatibility::glGetTransformFeedbackVarying commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82166e1e0 0xc82166e260 0xc82166e2e0 0xc82166e360 0xc82166e400 0xc82166e480 0xc82166e500] } +&{glGetUniformBlockIndex QOpenGLFunctions_3_2_Compatibility::glGetUniformBlockIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLuint [0xc82166e6a0 0xc82166e720] } +&{glGetUniformIndices QOpenGLFunctions_3_2_Compatibility::glGetUniformIndices commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82166e8c0 0xc82166e940 0xc82166e9e0 0xc82166eaa0] } +&{glGetUniformLocation QOpenGLFunctions_3_2_Compatibility::glGetUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLint [0xc82166ec40 0xc82166ecc0] } +&{glGetUniformfv QOpenGLFunctions_3_2_Compatibility::glGetUniformfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82166ee00 0xc82166ee80 0xc82166ef00] } +&{glGetUniformiv QOpenGLFunctions_3_2_Compatibility::glGetUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82166f040 0xc82166f0c0 0xc82166f140] } +&{glGetUniformuiv QOpenGLFunctions_3_2_Compatibility::glGetUniformuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82166f280 0xc82166f300 0xc82166f380] } +&{glGetVertexAttribIiv QOpenGLFunctions_3_2_Compatibility::glGetVertexAttribIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82166f520 0xc82166f5a0 0xc82166f620] } +&{glGetVertexAttribIuiv QOpenGLFunctions_3_2_Compatibility::glGetVertexAttribIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82166f7c0 0xc82166f840 0xc82166f8c0] } +&{glGetVertexAttribPointerv QOpenGLFunctions_3_2_Compatibility::glGetVertexAttribPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82166fa60 0xc82166fae0 0xc82166fb60] } +&{glGetVertexAttribdv QOpenGLFunctions_3_2_Compatibility::glGetVertexAttribdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82166fd00 0xc82166fd80 0xc82166fe00] } +&{glGetVertexAttribfv QOpenGLFunctions_3_2_Compatibility::glGetVertexAttribfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82166ffa0 0xc821680020 0xc8216800a0] } +&{glGetVertexAttribiv QOpenGLFunctions_3_2_Compatibility::glGetVertexAttribiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821680240 0xc8216802c0 0xc821680340] } +&{glHint QOpenGLFunctions_3_2_Compatibility::glHint commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821680480 0xc821680500] } +&{glHistogram QOpenGLFunctions_3_2_Compatibility::glHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821680640 0xc8216806c0 0xc821680740 0xc8216807c0] } +&{glIndexMask QOpenGLFunctions_3_2_Compatibility::glIndexMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821680920] } +&{glIndexPointer QOpenGLFunctions_3_2_Compatibility::glIndexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821680a60 0xc821680ae0 0xc821680b60] } +&{glIndexd QOpenGLFunctions_3_2_Compatibility::glIndexd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821680cc0] } +&{glIndexdv QOpenGLFunctions_3_2_Compatibility::glIndexdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821680e00] } +&{glIndexf QOpenGLFunctions_3_2_Compatibility::glIndexf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821680f60] } +&{glIndexfv QOpenGLFunctions_3_2_Compatibility::glIndexfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216810c0] } +&{glIndexi QOpenGLFunctions_3_2_Compatibility::glIndexi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821681220] } +&{glIndexiv QOpenGLFunctions_3_2_Compatibility::glIndexiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821681380] } +&{glIndexs QOpenGLFunctions_3_2_Compatibility::glIndexs commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216814e0] } +&{glIndexsv QOpenGLFunctions_3_2_Compatibility::glIndexsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821681640] } +&{glIndexub QOpenGLFunctions_3_2_Compatibility::glIndexub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216817a0] } +&{glIndexubv QOpenGLFunctions_3_2_Compatibility::glIndexubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216818e0] } +&{glInitNames QOpenGLFunctions_3_2_Compatibility::glInitNames commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [] } +&{glInterleavedArrays QOpenGLFunctions_3_2_Compatibility::glInterleavedArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821681b00 0xc821681b80 0xc821681c00] } +&{glIsBuffer QOpenGLFunctions_3_2_Compatibility::glIsBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLboolean [0xc821681d40] } +&{glIsEnabled QOpenGLFunctions_3_2_Compatibility::glIsEnabled commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLboolean [0xc821681e80] } +&{glIsEnabledi QOpenGLFunctions_3_2_Compatibility::glIsEnabledi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLboolean [0xc821681fc0 0xc821692040] } +&{glIsFramebuffer QOpenGLFunctions_3_2_Compatibility::glIsFramebuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLboolean [0xc821692180] } +&{glIsList QOpenGLFunctions_3_2_Compatibility::glIsList commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLboolean [0xc8216922e0] } +&{glIsProgram QOpenGLFunctions_3_2_Compatibility::glIsProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLboolean [0xc821692420] } +&{glIsQuery QOpenGLFunctions_3_2_Compatibility::glIsQuery commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLboolean [0xc821692580] } +&{glIsRenderbuffer QOpenGLFunctions_3_2_Compatibility::glIsRenderbuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLboolean [0xc8216926c0] } +&{glIsShader QOpenGLFunctions_3_2_Compatibility::glIsShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLboolean [0xc821692800] } +&{glIsSync QOpenGLFunctions_3_2_Compatibility::glIsSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLboolean [0xc821692960] } +&{glIsTexture QOpenGLFunctions_3_2_Compatibility::glIsTexture commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLboolean [0xc821692aa0] } +&{glIsVertexArray QOpenGLFunctions_3_2_Compatibility::glIsVertexArray commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLboolean [0xc821692be0] } +&{glLightModelf QOpenGLFunctions_3_2_Compatibility::glLightModelf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821692d20 0xc821692da0] } +&{glLightModelfv QOpenGLFunctions_3_2_Compatibility::glLightModelfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821692ee0 0xc821692f60] } +&{glLightModeli QOpenGLFunctions_3_2_Compatibility::glLightModeli commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216930a0 0xc821693120] } +&{glLightModeliv QOpenGLFunctions_3_2_Compatibility::glLightModeliv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821693260 0xc8216932e0] } +&{glLightf QOpenGLFunctions_3_2_Compatibility::glLightf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821693420 0xc8216934a0 0xc821693520] } +&{glLightfv QOpenGLFunctions_3_2_Compatibility::glLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821693660 0xc8216936e0 0xc821693760] } +&{glLighti QOpenGLFunctions_3_2_Compatibility::glLighti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216938a0 0xc821693920 0xc8216939a0] } +&{glLightiv QOpenGLFunctions_3_2_Compatibility::glLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821693ae0 0xc821693b60 0xc821693be0] } +&{glLineStipple QOpenGLFunctions_3_2_Compatibility::glLineStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821693d20 0xc821693da0] } +&{glLineWidth QOpenGLFunctions_3_2_Compatibility::glLineWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821693f00] } +&{glLinkProgram QOpenGLFunctions_3_2_Compatibility::glLinkProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216aa040] } +&{glListBase QOpenGLFunctions_3_2_Compatibility::glListBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216aa1a0] } +&{glLoadIdentity QOpenGLFunctions_3_2_Compatibility::glLoadIdentity commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [] } +&{glLoadMatrixd QOpenGLFunctions_3_2_Compatibility::glLoadMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216aa360] } +&{glLoadMatrixf QOpenGLFunctions_3_2_Compatibility::glLoadMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216aa4a0] } +&{glLoadName QOpenGLFunctions_3_2_Compatibility::glLoadName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216aa600] } +&{glLoadTransposeMatrixd QOpenGLFunctions_3_2_Compatibility::glLoadTransposeMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216aa7a0] } +&{glLoadTransposeMatrixf QOpenGLFunctions_3_2_Compatibility::glLoadTransposeMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216aa940] } +&{glLogicOp QOpenGLFunctions_3_2_Compatibility::glLogicOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216aaaa0] } +&{glMap1d QOpenGLFunctions_3_2_Compatibility::glMap1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216aabe0 0xc8216aac60 0xc8216aace0 0xc8216aad60 0xc8216aae00 0xc8216aae80] } +&{glMap1f QOpenGLFunctions_3_2_Compatibility::glMap1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216aafc0 0xc8216ab040 0xc8216ab0c0 0xc8216ab140 0xc8216ab1e0 0xc8216ab260] } +&{glMap2d QOpenGLFunctions_3_2_Compatibility::glMap2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216ab3a0 0xc8216ab420 0xc8216ab4a0 0xc8216ab520 0xc8216ab5c0 0xc8216ab640 0xc8216ab6c0 0xc8216ab740 0xc8216ab7e0 0xc8216ab860] } +&{glMap2f QOpenGLFunctions_3_2_Compatibility::glMap2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216ab9a0 0xc8216aba20 0xc8216abaa0 0xc8216abb20 0xc8216abbc0 0xc8216abc40 0xc8216abcc0 0xc8216abd40 0xc8216abde0 0xc8216abe60] } +&{glMapBuffer QOpenGLFunctions_3_2_Compatibility::glMapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLvoid * [0xc8216abfa0 0xc8216be020] } +&{glMapBufferRange QOpenGLFunctions_3_2_Compatibility::glMapBufferRange commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLvoid * [0xc8216be160 0xc8216be1e0 0xc8216be260 0xc8216be2e0] } +&{glMapGrid1d QOpenGLFunctions_3_2_Compatibility::glMapGrid1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216be420 0xc8216be4a0 0xc8216be520] } +&{glMapGrid1f QOpenGLFunctions_3_2_Compatibility::glMapGrid1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216be660 0xc8216be6e0 0xc8216be760] } +&{glMapGrid2d QOpenGLFunctions_3_2_Compatibility::glMapGrid2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216be8a0 0xc8216be920 0xc8216be9a0 0xc8216bea20 0xc8216beac0 0xc8216beb40] } +&{glMapGrid2f QOpenGLFunctions_3_2_Compatibility::glMapGrid2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216bec80 0xc8216bed00 0xc8216bed80 0xc8216bee00 0xc8216beea0 0xc8216bef20] } +&{glMaterialf QOpenGLFunctions_3_2_Compatibility::glMaterialf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216bf060 0xc8216bf0e0 0xc8216bf160] } +&{glMaterialfv QOpenGLFunctions_3_2_Compatibility::glMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216bf2a0 0xc8216bf320 0xc8216bf3a0] } +&{glMateriali QOpenGLFunctions_3_2_Compatibility::glMateriali commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216bf4e0 0xc8216bf560 0xc8216bf5e0] } +&{glMaterialiv QOpenGLFunctions_3_2_Compatibility::glMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216bf720 0xc8216bf7a0 0xc8216bf820] } +&{glMatrixMode QOpenGLFunctions_3_2_Compatibility::glMatrixMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216bf980] } +&{glMinmax QOpenGLFunctions_3_2_Compatibility::glMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216bfac0 0xc8216bfb40 0xc8216bfbc0] } +&{glMultMatrixd QOpenGLFunctions_3_2_Compatibility::glMultMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216bfd00] } +&{glMultMatrixf QOpenGLFunctions_3_2_Compatibility::glMultMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216bfe40] } +&{glMultTransposeMatrixd QOpenGLFunctions_3_2_Compatibility::glMultTransposeMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216bffe0] } +&{glMultTransposeMatrixf QOpenGLFunctions_3_2_Compatibility::glMultTransposeMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216cc180] } +&{glMultiDrawArrays QOpenGLFunctions_3_2_Compatibility::glMultiDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216cc320 0xc8216cc3a0 0xc8216cc420 0xc8216cc4a0] } +&{glMultiDrawElements QOpenGLFunctions_3_2_Compatibility::glMultiDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216cc640 0xc8216cc6c0 0xc8216cc740 0xc8216cc7e0 0xc8216cc8c0] } +&{glMultiDrawElementsBaseVertex QOpenGLFunctions_3_2_Compatibility::glMultiDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216cca60 0xc8216ccae0 0xc8216ccb60 0xc8216ccc00 0xc8216ccce0 0xc8216ccd60] } +&{glMultiTexCoord1d QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216ccf00 0xc8216ccf80] } +&{glMultiTexCoord1dv QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216cd120 0xc8216cd1a0] } +&{glMultiTexCoord1f QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216cd340 0xc8216cd3c0] } +&{glMultiTexCoord1fv QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216cd560 0xc8216cd5e0] } +&{glMultiTexCoord1i QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216cd780 0xc8216cd800] } +&{glMultiTexCoord1iv QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216cd9a0 0xc8216cda20] } +&{glMultiTexCoord1s QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216cdbc0 0xc8216cdc40] } +&{glMultiTexCoord1sv QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216cdde0 0xc8216cde60] } +&{glMultiTexCoord2d QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216e0000 0xc8216e0080 0xc8216e0100] } +&{glMultiTexCoord2dv QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216e02a0 0xc8216e0320] } +&{glMultiTexCoord2f QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216e04c0 0xc8216e0540 0xc8216e05c0] } +&{glMultiTexCoord2fv QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216e0760 0xc8216e07e0] } +&{glMultiTexCoord2i QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216e0980 0xc8216e0a00 0xc8216e0a80] } +&{glMultiTexCoord2iv QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216e0c20 0xc8216e0ca0] } +&{glMultiTexCoord2s QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216e0e40 0xc8216e0ec0 0xc8216e0f40] } +&{glMultiTexCoord2sv QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216e10e0 0xc8216e1160] } +&{glMultiTexCoord3d QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216e1300 0xc8216e1380 0xc8216e1400 0xc8216e1480] } +&{glMultiTexCoord3dv QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216e1620 0xc8216e16a0] } +&{glMultiTexCoord3f QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216e1840 0xc8216e18c0 0xc8216e1940 0xc8216e19c0] } +&{glMultiTexCoord3fv QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216e1b60 0xc8216e1be0] } +&{glMultiTexCoord3i QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216e1d80 0xc8216e1e00 0xc8216e1e80 0xc8216e1f00] } +&{glMultiTexCoord3iv QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216f00a0 0xc8216f0120] } +&{glMultiTexCoord3s QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216f02c0 0xc8216f0340 0xc8216f03c0 0xc8216f0440] } +&{glMultiTexCoord3sv QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216f05e0 0xc8216f0660] } +&{glMultiTexCoord4d QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216f0800 0xc8216f0880 0xc8216f0900 0xc8216f0980 0xc8216f0a20] } +&{glMultiTexCoord4dv QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216f0bc0 0xc8216f0c40] } +&{glMultiTexCoord4f QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216f0de0 0xc8216f0e60 0xc8216f0ee0 0xc8216f0f60 0xc8216f1000] } +&{glMultiTexCoord4fv QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216f11a0 0xc8216f1220] } +&{glMultiTexCoord4i QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216f13c0 0xc8216f1440 0xc8216f14c0 0xc8216f1540 0xc8216f15e0] } +&{glMultiTexCoord4iv QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216f1780 0xc8216f1800] } +&{glMultiTexCoord4s QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216f19a0 0xc8216f1a20 0xc8216f1aa0 0xc8216f1b20 0xc8216f1bc0] } +&{glMultiTexCoord4sv QOpenGLFunctions_3_2_Compatibility::glMultiTexCoord4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216f1d60 0xc8216f1de0] } +&{glNewList QOpenGLFunctions_3_2_Compatibility::glNewList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8216f1f20 0xc8216f1fa0] } +&{glNormal3b QOpenGLFunctions_3_2_Compatibility::glNormal3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217000e0 0xc821700160 0xc8217001e0] } +&{glNormal3bv QOpenGLFunctions_3_2_Compatibility::glNormal3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821700320] } +&{glNormal3d QOpenGLFunctions_3_2_Compatibility::glNormal3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821700460 0xc8217004e0 0xc821700560] } +&{glNormal3dv QOpenGLFunctions_3_2_Compatibility::glNormal3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217006a0] } +&{glNormal3f QOpenGLFunctions_3_2_Compatibility::glNormal3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217007e0 0xc821700860 0xc8217008e0] } +&{glNormal3fv QOpenGLFunctions_3_2_Compatibility::glNormal3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821700a20] } +&{glNormal3i QOpenGLFunctions_3_2_Compatibility::glNormal3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821700b60 0xc821700be0 0xc821700c60] } +&{glNormal3iv QOpenGLFunctions_3_2_Compatibility::glNormal3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821700dc0] } +&{glNormal3s QOpenGLFunctions_3_2_Compatibility::glNormal3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821700f00 0xc821700f80 0xc821701000] } +&{glNormal3sv QOpenGLFunctions_3_2_Compatibility::glNormal3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821701140] } +&{glNormalPointer QOpenGLFunctions_3_2_Compatibility::glNormalPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821701280 0xc821701300 0xc821701380] } +&{glOrtho QOpenGLFunctions_3_2_Compatibility::glOrtho commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217014c0 0xc821701540 0xc8217015c0 0xc821701640 0xc8217016e0 0xc821701760] } +&{glPassThrough QOpenGLFunctions_3_2_Compatibility::glPassThrough commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217018a0] } +&{glPixelMapfv QOpenGLFunctions_3_2_Compatibility::glPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217019e0 0xc821701a60 0xc821701ae0] } +&{glPixelMapuiv QOpenGLFunctions_3_2_Compatibility::glPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821701c20 0xc821701ca0 0xc821701d20] } +&{glPixelMapusv QOpenGLFunctions_3_2_Compatibility::glPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821701e60 0xc821701ee0 0xc821701f60] } +&{glPixelStoref QOpenGLFunctions_3_2_Compatibility::glPixelStoref commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217140a0 0xc821714120] } +&{glPixelStorei QOpenGLFunctions_3_2_Compatibility::glPixelStorei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821714260 0xc8217142e0] } +&{glPixelTransferf QOpenGLFunctions_3_2_Compatibility::glPixelTransferf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821714420 0xc8217144a0] } +&{glPixelTransferi QOpenGLFunctions_3_2_Compatibility::glPixelTransferi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217145e0 0xc821714660] } +&{glPixelZoom QOpenGLFunctions_3_2_Compatibility::glPixelZoom commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217147a0 0xc821714820] } +&{glPointParameterf QOpenGLFunctions_3_2_Compatibility::glPointParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217149c0 0xc821714a40] } +&{glPointParameterfv QOpenGLFunctions_3_2_Compatibility::glPointParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821714be0 0xc821714c60] } +&{glPointParameteri QOpenGLFunctions_3_2_Compatibility::glPointParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821714e00 0xc821714e80] } +&{glPointParameteriv QOpenGLFunctions_3_2_Compatibility::glPointParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821715020 0xc8217150a0] } +&{glPointSize QOpenGLFunctions_3_2_Compatibility::glPointSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821715200] } +&{glPolygonMode QOpenGLFunctions_3_2_Compatibility::glPolygonMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821715340 0xc8217153c0] } +&{glPolygonOffset QOpenGLFunctions_3_2_Compatibility::glPolygonOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821715500 0xc821715580] } +&{glPolygonStipple QOpenGLFunctions_3_2_Compatibility::glPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217156c0] } +&{glPopAttrib QOpenGLFunctions_3_2_Compatibility::glPopAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [] } +&{glPopClientAttrib QOpenGLFunctions_3_2_Compatibility::glPopClientAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [] } +&{glPopMatrix QOpenGLFunctions_3_2_Compatibility::glPopMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [] } +&{glPopName QOpenGLFunctions_3_2_Compatibility::glPopName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [] } +&{glPrimitiveRestartIndex QOpenGLFunctions_3_2_Compatibility::glPrimitiveRestartIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821715aa0] } +&{glPrioritizeTextures QOpenGLFunctions_3_2_Compatibility::glPrioritizeTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821715c40 0xc821715cc0 0xc821715d40] } +&{glProvokingVertex QOpenGLFunctions_3_2_Compatibility::glProvokingVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821715ee0] } +&{glPushAttrib QOpenGLFunctions_3_2_Compatibility::glPushAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821728020] } +&{glPushClientAttrib QOpenGLFunctions_3_2_Compatibility::glPushClientAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217281c0] } +&{glPushMatrix QOpenGLFunctions_3_2_Compatibility::glPushMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [] } +&{glPushName QOpenGLFunctions_3_2_Compatibility::glPushName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217283a0] } +&{glRasterPos2d QOpenGLFunctions_3_2_Compatibility::glRasterPos2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217284e0 0xc821728560] } +&{glRasterPos2dv QOpenGLFunctions_3_2_Compatibility::glRasterPos2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217286a0] } +&{glRasterPos2f QOpenGLFunctions_3_2_Compatibility::glRasterPos2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217287e0 0xc821728860] } +&{glRasterPos2fv QOpenGLFunctions_3_2_Compatibility::glRasterPos2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217289a0] } +&{glRasterPos2i QOpenGLFunctions_3_2_Compatibility::glRasterPos2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821728ae0 0xc821728b60] } +&{glRasterPos2iv QOpenGLFunctions_3_2_Compatibility::glRasterPos2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821728ca0] } +&{glRasterPos2s QOpenGLFunctions_3_2_Compatibility::glRasterPos2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821728de0 0xc821728e60] } +&{glRasterPos2sv QOpenGLFunctions_3_2_Compatibility::glRasterPos2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821728fa0] } +&{glRasterPos3d QOpenGLFunctions_3_2_Compatibility::glRasterPos3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217290e0 0xc821729160 0xc8217291e0] } +&{glRasterPos3dv QOpenGLFunctions_3_2_Compatibility::glRasterPos3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821729320] } +&{glRasterPos3f QOpenGLFunctions_3_2_Compatibility::glRasterPos3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821729460 0xc8217294e0 0xc821729560] } +&{glRasterPos3fv QOpenGLFunctions_3_2_Compatibility::glRasterPos3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217296a0] } +&{glRasterPos3i QOpenGLFunctions_3_2_Compatibility::glRasterPos3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217297e0 0xc821729860 0xc8217298e0] } +&{glRasterPos3iv QOpenGLFunctions_3_2_Compatibility::glRasterPos3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821729a20] } +&{glRasterPos3s QOpenGLFunctions_3_2_Compatibility::glRasterPos3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821729b60 0xc821729be0 0xc821729c60] } +&{glRasterPos3sv QOpenGLFunctions_3_2_Compatibility::glRasterPos3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821729da0] } +&{glRasterPos4d QOpenGLFunctions_3_2_Compatibility::glRasterPos4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821729ee0 0xc821729f60 0xc821729fe0 0xc82173e060] } +&{glRasterPos4dv QOpenGLFunctions_3_2_Compatibility::glRasterPos4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82173e1a0] } +&{glRasterPos4f QOpenGLFunctions_3_2_Compatibility::glRasterPos4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82173e2e0 0xc82173e360 0xc82173e3e0 0xc82173e460] } +&{glRasterPos4fv QOpenGLFunctions_3_2_Compatibility::glRasterPos4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82173e5a0] } +&{glRasterPos4i QOpenGLFunctions_3_2_Compatibility::glRasterPos4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82173e6e0 0xc82173e760 0xc82173e7e0 0xc82173e860] } +&{glRasterPos4iv QOpenGLFunctions_3_2_Compatibility::glRasterPos4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82173e9a0] } +&{glRasterPos4s QOpenGLFunctions_3_2_Compatibility::glRasterPos4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82173eae0 0xc82173eb60 0xc82173ebe0 0xc82173ec60] } +&{glRasterPos4sv QOpenGLFunctions_3_2_Compatibility::glRasterPos4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82173eda0] } +&{glReadBuffer QOpenGLFunctions_3_2_Compatibility::glReadBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82173ef00] } +&{glReadPixels QOpenGLFunctions_3_2_Compatibility::glReadPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82173f040 0xc82173f0c0 0xc82173f140 0xc82173f1c0 0xc82173f260 0xc82173f2e0 0xc82173f360] } +&{glRectd QOpenGLFunctions_3_2_Compatibility::glRectd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82173f4a0 0xc82173f520 0xc82173f5a0 0xc82173f620] } +&{glRectdv QOpenGLFunctions_3_2_Compatibility::glRectdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82173f760 0xc82173f7e0] } +&{glRectf QOpenGLFunctions_3_2_Compatibility::glRectf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82173f920 0xc82173f9a0 0xc82173fa20 0xc82173faa0] } +&{glRectfv QOpenGLFunctions_3_2_Compatibility::glRectfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82173fbe0 0xc82173fc60] } +&{glRecti QOpenGLFunctions_3_2_Compatibility::glRecti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82173fda0 0xc82173fe20 0xc82173fea0 0xc82173ff20] } +&{glRectiv QOpenGLFunctions_3_2_Compatibility::glRectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821754060 0xc8217540e0] } +&{glRects QOpenGLFunctions_3_2_Compatibility::glRects commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821754220 0xc8217542a0 0xc821754320 0xc8217543a0] } +&{glRectsv QOpenGLFunctions_3_2_Compatibility::glRectsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217544e0 0xc821754560] } +&{glRenderMode QOpenGLFunctions_3_2_Compatibility::glRenderMode commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLint [0xc8217546c0] } +&{glRenderbufferStorage QOpenGLFunctions_3_2_Compatibility::glRenderbufferStorage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821754860 0xc8217548e0 0xc821754960 0xc8217549e0] } +&{glRenderbufferStorageMultisample QOpenGLFunctions_3_2_Compatibility::glRenderbufferStorageMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821754b80 0xc821754c00 0xc821754c80 0xc821754d00 0xc821754da0] } +&{glResetHistogram QOpenGLFunctions_3_2_Compatibility::glResetHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821754ee0] } +&{glResetMinmax QOpenGLFunctions_3_2_Compatibility::glResetMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821755020] } +&{glRotated QOpenGLFunctions_3_2_Compatibility::glRotated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821755160 0xc8217551e0 0xc821755260 0xc8217552e0] } +&{glRotatef QOpenGLFunctions_3_2_Compatibility::glRotatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821755420 0xc8217554a0 0xc821755520 0xc8217555a0] } +&{glSampleCoverage QOpenGLFunctions_3_2_Compatibility::glSampleCoverage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217556e0 0xc821755760] } +&{glSampleMaski QOpenGLFunctions_3_2_Compatibility::glSampleMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217558a0 0xc821755920] } +&{glScaled QOpenGLFunctions_3_2_Compatibility::glScaled commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821755a60 0xc821755ae0 0xc821755b60] } +&{glScalef QOpenGLFunctions_3_2_Compatibility::glScalef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821755ca0 0xc821755d20 0xc821755da0] } +&{glScissor QOpenGLFunctions_3_2_Compatibility::glScissor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821755ee0 0xc821755f60 0xc821755fe0 0xc821764060] } +&{glSecondaryColor3b QOpenGLFunctions_3_2_Compatibility::glSecondaryColor3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821764200 0xc821764280 0xc821764300] } +&{glSecondaryColor3bv QOpenGLFunctions_3_2_Compatibility::glSecondaryColor3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217644a0] } +&{glSecondaryColor3d QOpenGLFunctions_3_2_Compatibility::glSecondaryColor3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821764640 0xc8217646c0 0xc821764740] } +&{glSecondaryColor3dv QOpenGLFunctions_3_2_Compatibility::glSecondaryColor3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217648e0] } +&{glSecondaryColor3f QOpenGLFunctions_3_2_Compatibility::glSecondaryColor3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821764a80 0xc821764b00 0xc821764b80] } +&{glSecondaryColor3fv QOpenGLFunctions_3_2_Compatibility::glSecondaryColor3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821764d20] } +&{glSecondaryColor3i QOpenGLFunctions_3_2_Compatibility::glSecondaryColor3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821764ec0 0xc821764f40 0xc821764fc0] } +&{glSecondaryColor3iv QOpenGLFunctions_3_2_Compatibility::glSecondaryColor3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821765160] } +&{glSecondaryColor3s QOpenGLFunctions_3_2_Compatibility::glSecondaryColor3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821765300 0xc821765380 0xc821765400] } +&{glSecondaryColor3sv QOpenGLFunctions_3_2_Compatibility::glSecondaryColor3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217655a0] } +&{glSecondaryColor3ub QOpenGLFunctions_3_2_Compatibility::glSecondaryColor3ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821765740 0xc8217657c0 0xc821765840] } +&{glSecondaryColor3ubv QOpenGLFunctions_3_2_Compatibility::glSecondaryColor3ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217659e0] } +&{glSecondaryColor3ui QOpenGLFunctions_3_2_Compatibility::glSecondaryColor3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821765b80 0xc821765c00 0xc821765c80] } +&{glSecondaryColor3uiv QOpenGLFunctions_3_2_Compatibility::glSecondaryColor3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821765e20] } +&{glSecondaryColor3us QOpenGLFunctions_3_2_Compatibility::glSecondaryColor3us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821765fc0 0xc821776040 0xc8217760c0] } +&{glSecondaryColor3usv QOpenGLFunctions_3_2_Compatibility::glSecondaryColor3usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821776260] } +&{glSecondaryColorPointer QOpenGLFunctions_3_2_Compatibility::glSecondaryColorPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821776400 0xc821776480 0xc821776500 0xc821776580] } +&{glSelectBuffer QOpenGLFunctions_3_2_Compatibility::glSelectBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217766c0 0xc821776740] } +&{glSeparableFilter2D QOpenGLFunctions_3_2_Compatibility::glSeparableFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217768e0 0xc821776960 0xc8217769e0 0xc821776a60 0xc821776b00 0xc821776b80 0xc821776c00 0xc821776c80] } +&{glShadeModel QOpenGLFunctions_3_2_Compatibility::glShadeModel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821776de0] } +&{glShaderSource QOpenGLFunctions_3_2_Compatibility::glShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821776f20 0xc821776fa0 0xc821777040 0xc821777100] } +&{glStencilFunc QOpenGLFunctions_3_2_Compatibility::glStencilFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821777240 0xc8217772c0 0xc821777340] } +&{glStencilFuncSeparate QOpenGLFunctions_3_2_Compatibility::glStencilFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217774e0 0xc821777560 0xc8217775e0 0xc821777660] } +&{glStencilMask QOpenGLFunctions_3_2_Compatibility::glStencilMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217777c0] } +&{glStencilMaskSeparate QOpenGLFunctions_3_2_Compatibility::glStencilMaskSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821777960 0xc8217779e0] } +&{glStencilOp QOpenGLFunctions_3_2_Compatibility::glStencilOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821777b20 0xc821777ba0 0xc821777c20] } +&{glStencilOpSeparate QOpenGLFunctions_3_2_Compatibility::glStencilOpSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821777dc0 0xc821777e40 0xc821777ec0 0xc821777f40] } +&{glTexBuffer QOpenGLFunctions_3_2_Compatibility::glTexBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821786080 0xc821786100 0xc821786180] } +&{glTexCoord1d QOpenGLFunctions_3_2_Compatibility::glTexCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217862e0] } +&{glTexCoord1dv QOpenGLFunctions_3_2_Compatibility::glTexCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821786420] } +&{glTexCoord1f QOpenGLFunctions_3_2_Compatibility::glTexCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821786580] } +&{glTexCoord1fv QOpenGLFunctions_3_2_Compatibility::glTexCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217866c0] } +&{glTexCoord1i QOpenGLFunctions_3_2_Compatibility::glTexCoord1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821786820] } +&{glTexCoord1iv QOpenGLFunctions_3_2_Compatibility::glTexCoord1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821786960] } +&{glTexCoord1s QOpenGLFunctions_3_2_Compatibility::glTexCoord1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821786ac0] } +&{glTexCoord1sv QOpenGLFunctions_3_2_Compatibility::glTexCoord1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821786c20] } +&{glTexCoord2d QOpenGLFunctions_3_2_Compatibility::glTexCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821786d60 0xc821786de0] } +&{glTexCoord2dv QOpenGLFunctions_3_2_Compatibility::glTexCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821786f20] } +&{glTexCoord2f QOpenGLFunctions_3_2_Compatibility::glTexCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821787060 0xc8217870e0] } +&{glTexCoord2fv QOpenGLFunctions_3_2_Compatibility::glTexCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821787220] } +&{glTexCoord2i QOpenGLFunctions_3_2_Compatibility::glTexCoord2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821787360 0xc8217873e0] } +&{glTexCoord2iv QOpenGLFunctions_3_2_Compatibility::glTexCoord2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821787520] } +&{glTexCoord2s QOpenGLFunctions_3_2_Compatibility::glTexCoord2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821787660 0xc8217876e0] } +&{glTexCoord2sv QOpenGLFunctions_3_2_Compatibility::glTexCoord2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821787820] } +&{glTexCoord3d QOpenGLFunctions_3_2_Compatibility::glTexCoord3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821787960 0xc8217879e0 0xc821787a60] } +&{glTexCoord3dv QOpenGLFunctions_3_2_Compatibility::glTexCoord3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821787ba0] } +&{glTexCoord3f QOpenGLFunctions_3_2_Compatibility::glTexCoord3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821787ce0 0xc821787d60 0xc821787de0] } +&{glTexCoord3fv QOpenGLFunctions_3_2_Compatibility::glTexCoord3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821787f20] } +&{glTexCoord3i QOpenGLFunctions_3_2_Compatibility::glTexCoord3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217a0060 0xc8217a00e0 0xc8217a0160] } +&{glTexCoord3iv QOpenGLFunctions_3_2_Compatibility::glTexCoord3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217a02a0] } +&{glTexCoord3s QOpenGLFunctions_3_2_Compatibility::glTexCoord3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217a03e0 0xc8217a0460 0xc8217a04e0] } +&{glTexCoord3sv QOpenGLFunctions_3_2_Compatibility::glTexCoord3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217a0620] } +&{glTexCoord4d QOpenGLFunctions_3_2_Compatibility::glTexCoord4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217a0760 0xc8217a07e0 0xc8217a0860 0xc8217a08e0] } +&{glTexCoord4dv QOpenGLFunctions_3_2_Compatibility::glTexCoord4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217a0a20] } +&{glTexCoord4f QOpenGLFunctions_3_2_Compatibility::glTexCoord4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217a0b60 0xc8217a0be0 0xc8217a0c60 0xc8217a0ce0] } +&{glTexCoord4fv QOpenGLFunctions_3_2_Compatibility::glTexCoord4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217a0e20] } +&{glTexCoord4i QOpenGLFunctions_3_2_Compatibility::glTexCoord4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217a0f60 0xc8217a0fe0 0xc8217a1060 0xc8217a10e0] } +&{glTexCoord4iv QOpenGLFunctions_3_2_Compatibility::glTexCoord4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217a1220] } +&{glTexCoord4s QOpenGLFunctions_3_2_Compatibility::glTexCoord4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217a1360 0xc8217a13e0 0xc8217a1460 0xc8217a14e0] } +&{glTexCoord4sv QOpenGLFunctions_3_2_Compatibility::glTexCoord4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217a1620] } +&{glTexCoordPointer QOpenGLFunctions_3_2_Compatibility::glTexCoordPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217a17c0 0xc8217a1840 0xc8217a18c0 0xc8217a1940] } +&{glTexEnvf QOpenGLFunctions_3_2_Compatibility::glTexEnvf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217a1a80 0xc8217a1b00 0xc8217a1b80] } +&{glTexEnvfv QOpenGLFunctions_3_2_Compatibility::glTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217a1cc0 0xc8217a1d40 0xc8217a1dc0] } +&{glTexEnvi QOpenGLFunctions_3_2_Compatibility::glTexEnvi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217a1f00 0xc8217a1f80 0xc8217b0000] } +&{glTexEnviv QOpenGLFunctions_3_2_Compatibility::glTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217b0140 0xc8217b01c0 0xc8217b0240] } +&{glTexGend QOpenGLFunctions_3_2_Compatibility::glTexGend commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217b0380 0xc8217b0400 0xc8217b0480] } +&{glTexGendv QOpenGLFunctions_3_2_Compatibility::glTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217b05c0 0xc8217b0640 0xc8217b06c0] } +&{glTexGenf QOpenGLFunctions_3_2_Compatibility::glTexGenf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217b0800 0xc8217b0880 0xc8217b0900] } +&{glTexGenfv QOpenGLFunctions_3_2_Compatibility::glTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217b0a40 0xc8217b0ac0 0xc8217b0b40] } +&{glTexGeni QOpenGLFunctions_3_2_Compatibility::glTexGeni commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217b0c80 0xc8217b0d00 0xc8217b0d80] } +&{glTexGeniv QOpenGLFunctions_3_2_Compatibility::glTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217b0ec0 0xc8217b0f40 0xc8217b0fc0] } +&{glTexImage1D QOpenGLFunctions_3_2_Compatibility::glTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217b1100 0xc8217b1180 0xc8217b1200 0xc8217b1280 0xc8217b1320 0xc8217b13a0 0xc8217b1420 0xc8217b14a0] } +&{glTexImage2D QOpenGLFunctions_3_2_Compatibility::glTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217b15e0 0xc8217b1660 0xc8217b16e0 0xc8217b1760 0xc8217b1800 0xc8217b1880 0xc8217b1900 0xc8217b1980 0xc8217b1a20] } +&{glTexImage2DMultisample QOpenGLFunctions_3_2_Compatibility::glTexImage2DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217b1bc0 0xc8217b1c40 0xc8217b1cc0 0xc8217b1d40 0xc8217b1de0 0xc8217b1e80] } +&{glTexImage3D QOpenGLFunctions_3_2_Compatibility::glTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217c0000 0xc8217c0080 0xc8217c0100 0xc8217c0180 0xc8217c0220 0xc8217c02a0 0xc8217c0320 0xc8217c03a0 0xc8217c0440 0xc8217c04c0] } +&{glTexImage3DMultisample QOpenGLFunctions_3_2_Compatibility::glTexImage3DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217c0660 0xc8217c06e0 0xc8217c0760 0xc8217c07e0 0xc8217c0880 0xc8217c0900 0xc8217c09a0] } +&{glTexParameterIiv QOpenGLFunctions_3_2_Compatibility::glTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217c0b80 0xc8217c0c00 0xc8217c0c80] } +&{glTexParameterIuiv QOpenGLFunctions_3_2_Compatibility::glTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217c0e20 0xc8217c0ea0 0xc8217c0f20] } +&{glTexParameterf QOpenGLFunctions_3_2_Compatibility::glTexParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217c1060 0xc8217c10e0 0xc8217c1160] } +&{glTexParameterfv QOpenGLFunctions_3_2_Compatibility::glTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217c12a0 0xc8217c1320 0xc8217c13a0] } +&{glTexParameteri QOpenGLFunctions_3_2_Compatibility::glTexParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217c14e0 0xc8217c1560 0xc8217c15e0] } +&{glTexParameteriv QOpenGLFunctions_3_2_Compatibility::glTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217c1720 0xc8217c17a0 0xc8217c1820] } +&{glTexSubImage1D QOpenGLFunctions_3_2_Compatibility::glTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217c1960 0xc8217c19e0 0xc8217c1a60 0xc8217c1ae0 0xc8217c1b80 0xc8217c1c00 0xc8217c1c80] } +&{glTexSubImage2D QOpenGLFunctions_3_2_Compatibility::glTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217c1dc0 0xc8217c1e40 0xc8217c1ec0 0xc8217c1f40 0xc8217c1fe0 0xc8217d2060 0xc8217d20e0 0xc8217d2160 0xc8217d2200] } +&{glTexSubImage3D QOpenGLFunctions_3_2_Compatibility::glTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217d2340 0xc8217d23c0 0xc8217d2440 0xc8217d24c0 0xc8217d2560 0xc8217d25e0 0xc8217d2660 0xc8217d26e0 0xc8217d2780 0xc8217d2800 0xc8217d2880] } +&{glTransformFeedbackVaryings QOpenGLFunctions_3_2_Compatibility::glTransformFeedbackVaryings commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217d2a20 0xc8217d2aa0 0xc8217d2b40 0xc8217d2c00] } +&{glTranslated QOpenGLFunctions_3_2_Compatibility::glTranslated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217d2d40 0xc8217d2dc0 0xc8217d2e40] } +&{glTranslatef QOpenGLFunctions_3_2_Compatibility::glTranslatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217d2f80 0xc8217d3000 0xc8217d3080] } +&{glUniform1f QOpenGLFunctions_3_2_Compatibility::glUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217d31c0 0xc8217d3240] } +&{glUniform1fv QOpenGLFunctions_3_2_Compatibility::glUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217d3380 0xc8217d3400 0xc8217d3480] } +&{glUniform1i QOpenGLFunctions_3_2_Compatibility::glUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217d35c0 0xc8217d3640] } +&{glUniform1iv QOpenGLFunctions_3_2_Compatibility::glUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217d3780 0xc8217d3800 0xc8217d3880] } +&{glUniform1ui QOpenGLFunctions_3_2_Compatibility::glUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217d39c0 0xc8217d3a40] } +&{glUniform1uiv QOpenGLFunctions_3_2_Compatibility::glUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217d3b80 0xc8217d3c00 0xc8217d3c80] } +&{glUniform2f QOpenGLFunctions_3_2_Compatibility::glUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217d3dc0 0xc8217d3e40 0xc8217d3ec0] } +&{glUniform2fv QOpenGLFunctions_3_2_Compatibility::glUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217e2000 0xc8217e2080 0xc8217e2100] } +&{glUniform2i QOpenGLFunctions_3_2_Compatibility::glUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217e2240 0xc8217e22c0 0xc8217e2340] } +&{glUniform2iv QOpenGLFunctions_3_2_Compatibility::glUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217e2480 0xc8217e2500 0xc8217e2580] } +&{glUniform2ui QOpenGLFunctions_3_2_Compatibility::glUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217e26c0 0xc8217e2740 0xc8217e27c0] } +&{glUniform2uiv QOpenGLFunctions_3_2_Compatibility::glUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217e2900 0xc8217e2980 0xc8217e2a00] } +&{glUniform3f QOpenGLFunctions_3_2_Compatibility::glUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217e2b40 0xc8217e2bc0 0xc8217e2c40 0xc8217e2cc0] } +&{glUniform3fv QOpenGLFunctions_3_2_Compatibility::glUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217e2e00 0xc8217e2e80 0xc8217e2f00] } +&{glUniform3i QOpenGLFunctions_3_2_Compatibility::glUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217e3040 0xc8217e30c0 0xc8217e3140 0xc8217e31c0] } +&{glUniform3iv QOpenGLFunctions_3_2_Compatibility::glUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217e3300 0xc8217e3380 0xc8217e3400] } +&{glUniform3ui QOpenGLFunctions_3_2_Compatibility::glUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217e3540 0xc8217e35c0 0xc8217e3640 0xc8217e36c0] } +&{glUniform3uiv QOpenGLFunctions_3_2_Compatibility::glUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217e3800 0xc8217e3880 0xc8217e3900] } +&{glUniform4f QOpenGLFunctions_3_2_Compatibility::glUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217e3a40 0xc8217e3ac0 0xc8217e3b40 0xc8217e3bc0 0xc8217e3c60] } +&{glUniform4fv QOpenGLFunctions_3_2_Compatibility::glUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217e3da0 0xc8217e3e20 0xc8217e3ea0] } +&{glUniform4i QOpenGLFunctions_3_2_Compatibility::glUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217e3fe0 0xc8217f6060 0xc8217f60e0 0xc8217f6160 0xc8217f6200] } +&{glUniform4iv QOpenGLFunctions_3_2_Compatibility::glUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217f6340 0xc8217f63c0 0xc8217f6440] } +&{glUniform4ui QOpenGLFunctions_3_2_Compatibility::glUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217f6580 0xc8217f6600 0xc8217f6680 0xc8217f6700 0xc8217f67a0] } +&{glUniform4uiv QOpenGLFunctions_3_2_Compatibility::glUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217f68e0 0xc8217f6960 0xc8217f69e0] } +&{glUniformBlockBinding QOpenGLFunctions_3_2_Compatibility::glUniformBlockBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217f6b80 0xc8217f6c20 0xc8217f6d00] } +&{glUniformMatrix2fv QOpenGLFunctions_3_2_Compatibility::glUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217f6ee0 0xc8217f6f60 0xc8217f6fe0 0xc8217f7060] } +&{glUniformMatrix2x3fv QOpenGLFunctions_3_2_Compatibility::glUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217f7200 0xc8217f7280 0xc8217f7300 0xc8217f7380] } +&{glUniformMatrix2x4fv QOpenGLFunctions_3_2_Compatibility::glUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217f7520 0xc8217f75a0 0xc8217f7620 0xc8217f76a0] } +&{glUniformMatrix3fv QOpenGLFunctions_3_2_Compatibility::glUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217f7840 0xc8217f78c0 0xc8217f7940 0xc8217f79c0] } +&{glUniformMatrix3x2fv QOpenGLFunctions_3_2_Compatibility::glUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217f7b60 0xc8217f7be0 0xc8217f7c60 0xc8217f7ce0] } +&{glUniformMatrix3x4fv QOpenGLFunctions_3_2_Compatibility::glUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8217f7e80 0xc8217f7f00 0xc8217f7f80 0xc821806000] } +&{glUniformMatrix4fv QOpenGLFunctions_3_2_Compatibility::glUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8218061a0 0xc821806220 0xc8218062a0 0xc821806320] } +&{glUniformMatrix4x2fv QOpenGLFunctions_3_2_Compatibility::glUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8218064c0 0xc821806540 0xc8218065c0 0xc821806640] } +&{glUniformMatrix4x3fv QOpenGLFunctions_3_2_Compatibility::glUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8218067e0 0xc821806860 0xc8218068e0 0xc821806960] } +&{glUnmapBuffer QOpenGLFunctions_3_2_Compatibility::glUnmapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false GLboolean [0xc821806aa0] } +&{glUseProgram QOpenGLFunctions_3_2_Compatibility::glUseProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821806be0] } +&{glValidateProgram QOpenGLFunctions_3_2_Compatibility::glValidateProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821806d80] } +&{glVertex2d QOpenGLFunctions_3_2_Compatibility::glVertex2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821806ec0 0xc821806f40] } +&{glVertex2dv QOpenGLFunctions_3_2_Compatibility::glVertex2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821807080] } +&{glVertex2f QOpenGLFunctions_3_2_Compatibility::glVertex2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8218071c0 0xc821807240] } +&{glVertex2fv QOpenGLFunctions_3_2_Compatibility::glVertex2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821807380] } +&{glVertex2i QOpenGLFunctions_3_2_Compatibility::glVertex2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8218074c0 0xc821807540] } +&{glVertex2iv QOpenGLFunctions_3_2_Compatibility::glVertex2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8218076a0] } +&{glVertex2s QOpenGLFunctions_3_2_Compatibility::glVertex2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8218077e0 0xc821807860] } +&{glVertex2sv QOpenGLFunctions_3_2_Compatibility::glVertex2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8218079a0] } +&{glVertex3d QOpenGLFunctions_3_2_Compatibility::glVertex3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821807ae0 0xc821807b60 0xc821807be0] } +&{glVertex3dv QOpenGLFunctions_3_2_Compatibility::glVertex3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821807d20] } +&{glVertex3f QOpenGLFunctions_3_2_Compatibility::glVertex3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821807e60 0xc821807ee0 0xc821807f60] } +&{glVertex3fv QOpenGLFunctions_3_2_Compatibility::glVertex3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8218160a0] } +&{glVertex3i QOpenGLFunctions_3_2_Compatibility::glVertex3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8218161e0 0xc821816260 0xc8218162e0] } +&{glVertex3iv QOpenGLFunctions_3_2_Compatibility::glVertex3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821816440] } +&{glVertex3s QOpenGLFunctions_3_2_Compatibility::glVertex3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821816580 0xc821816600 0xc821816680] } +&{glVertex3sv QOpenGLFunctions_3_2_Compatibility::glVertex3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8218167c0] } +&{glVertex4d QOpenGLFunctions_3_2_Compatibility::glVertex4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821816900 0xc821816980 0xc821816a00 0xc821816a80] } +&{glVertex4dv QOpenGLFunctions_3_2_Compatibility::glVertex4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821816bc0] } +&{glVertex4f QOpenGLFunctions_3_2_Compatibility::glVertex4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821816d00 0xc821816d80 0xc821816e00 0xc821816e80] } +&{glVertex4fv QOpenGLFunctions_3_2_Compatibility::glVertex4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821816fc0] } +&{glVertex4i QOpenGLFunctions_3_2_Compatibility::glVertex4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821817100 0xc821817180 0xc821817200 0xc821817280] } +&{glVertex4iv QOpenGLFunctions_3_2_Compatibility::glVertex4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8218173e0] } +&{glVertex4s QOpenGLFunctions_3_2_Compatibility::glVertex4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821817520 0xc8218175a0 0xc821817620 0xc8218176a0] } +&{glVertex4sv QOpenGLFunctions_3_2_Compatibility::glVertex4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8218177e0] } +&{glVertexAttrib1d QOpenGLFunctions_3_2_Compatibility::glVertexAttrib1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821817920 0xc8218179a0] } +&{glVertexAttrib1dv QOpenGLFunctions_3_2_Compatibility::glVertexAttrib1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821817b40 0xc821817bc0] } +&{glVertexAttrib1f QOpenGLFunctions_3_2_Compatibility::glVertexAttrib1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821817d00 0xc821817d80] } +&{glVertexAttrib1fv QOpenGLFunctions_3_2_Compatibility::glVertexAttrib1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821817f20 0xc821817fa0] } +&{glVertexAttrib1s QOpenGLFunctions_3_2_Compatibility::glVertexAttrib1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82182c0e0 0xc82182c160] } +&{glVertexAttrib1sv QOpenGLFunctions_3_2_Compatibility::glVertexAttrib1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82182c300 0xc82182c380] } +&{glVertexAttrib2d QOpenGLFunctions_3_2_Compatibility::glVertexAttrib2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82182c4c0 0xc82182c540 0xc82182c5c0] } +&{glVertexAttrib2dv QOpenGLFunctions_3_2_Compatibility::glVertexAttrib2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82182c760 0xc82182c7e0] } +&{glVertexAttrib2f QOpenGLFunctions_3_2_Compatibility::glVertexAttrib2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82182c920 0xc82182c9a0 0xc82182ca20] } +&{glVertexAttrib2fv QOpenGLFunctions_3_2_Compatibility::glVertexAttrib2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82182cbc0 0xc82182cc40] } +&{glVertexAttrib2s QOpenGLFunctions_3_2_Compatibility::glVertexAttrib2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82182cd80 0xc82182ce00 0xc82182ce80] } +&{glVertexAttrib2sv QOpenGLFunctions_3_2_Compatibility::glVertexAttrib2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82182d020 0xc82182d0a0] } +&{glVertexAttrib3d QOpenGLFunctions_3_2_Compatibility::glVertexAttrib3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82182d1e0 0xc82182d260 0xc82182d2e0 0xc82182d360] } +&{glVertexAttrib3dv QOpenGLFunctions_3_2_Compatibility::glVertexAttrib3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82182d500 0xc82182d580] } +&{glVertexAttrib3f QOpenGLFunctions_3_2_Compatibility::glVertexAttrib3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82182d6c0 0xc82182d740 0xc82182d7c0 0xc82182d840] } +&{glVertexAttrib3fv QOpenGLFunctions_3_2_Compatibility::glVertexAttrib3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82182d9e0 0xc82182da60] } +&{glVertexAttrib3s QOpenGLFunctions_3_2_Compatibility::glVertexAttrib3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82182dba0 0xc82182dc20 0xc82182dca0 0xc82182dd20] } +&{glVertexAttrib3sv QOpenGLFunctions_3_2_Compatibility::glVertexAttrib3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82182dec0 0xc82182df40] } +&{glVertexAttrib4Nbv QOpenGLFunctions_3_2_Compatibility::glVertexAttrib4Nbv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82183e0e0 0xc82183e160] } +&{glVertexAttrib4Niv QOpenGLFunctions_3_2_Compatibility::glVertexAttrib4Niv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82183e300 0xc82183e380] } +&{glVertexAttrib4Nsv QOpenGLFunctions_3_2_Compatibility::glVertexAttrib4Nsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82183e520 0xc82183e5a0] } +&{glVertexAttrib4Nub QOpenGLFunctions_3_2_Compatibility::glVertexAttrib4Nub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82183e740 0xc82183e7c0 0xc82183e840 0xc82183e8c0 0xc82183e960] } +&{glVertexAttrib4Nubv QOpenGLFunctions_3_2_Compatibility::glVertexAttrib4Nubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82183eb00 0xc82183eb80] } +&{glVertexAttrib4Nuiv QOpenGLFunctions_3_2_Compatibility::glVertexAttrib4Nuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82183ed20 0xc82183eda0] } +&{glVertexAttrib4Nusv QOpenGLFunctions_3_2_Compatibility::glVertexAttrib4Nusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82183ef40 0xc82183efc0] } +&{glVertexAttrib4bv QOpenGLFunctions_3_2_Compatibility::glVertexAttrib4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82183f160 0xc82183f1e0] } +&{glVertexAttrib4d QOpenGLFunctions_3_2_Compatibility::glVertexAttrib4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82183f320 0xc82183f3a0 0xc82183f420 0xc82183f4a0 0xc82183f540] } +&{glVertexAttrib4dv QOpenGLFunctions_3_2_Compatibility::glVertexAttrib4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82183f6e0 0xc82183f760] } +&{glVertexAttrib4f QOpenGLFunctions_3_2_Compatibility::glVertexAttrib4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82183f8a0 0xc82183f920 0xc82183f9a0 0xc82183fa20 0xc82183fac0] } +&{glVertexAttrib4fv QOpenGLFunctions_3_2_Compatibility::glVertexAttrib4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82183fc60 0xc82183fce0] } +&{glVertexAttrib4iv QOpenGLFunctions_3_2_Compatibility::glVertexAttrib4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc82183fe80 0xc82183ff00] } +&{glVertexAttrib4s QOpenGLFunctions_3_2_Compatibility::glVertexAttrib4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821852040 0xc8218520c0 0xc821852140 0xc8218521c0 0xc821852260] } +&{glVertexAttrib4sv QOpenGLFunctions_3_2_Compatibility::glVertexAttrib4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821852400 0xc821852480] } +&{glVertexAttrib4ubv QOpenGLFunctions_3_2_Compatibility::glVertexAttrib4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821852620 0xc8218526a0] } +&{glVertexAttrib4uiv QOpenGLFunctions_3_2_Compatibility::glVertexAttrib4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821852840 0xc8218528c0] } +&{glVertexAttrib4usv QOpenGLFunctions_3_2_Compatibility::glVertexAttrib4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821852a60 0xc821852ae0] } +&{glVertexAttribI1i QOpenGLFunctions_3_2_Compatibility::glVertexAttribI1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821852c80 0xc821852d00] } +&{glVertexAttribI1iv QOpenGLFunctions_3_2_Compatibility::glVertexAttribI1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821852ea0 0xc821852f20] } +&{glVertexAttribI1ui QOpenGLFunctions_3_2_Compatibility::glVertexAttribI1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8218530c0 0xc821853140] } +&{glVertexAttribI1uiv QOpenGLFunctions_3_2_Compatibility::glVertexAttribI1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8218532e0 0xc821853360] } +&{glVertexAttribI2i QOpenGLFunctions_3_2_Compatibility::glVertexAttribI2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821853500 0xc821853580 0xc821853600] } +&{glVertexAttribI2iv QOpenGLFunctions_3_2_Compatibility::glVertexAttribI2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8218537a0 0xc821853820] } +&{glVertexAttribI2ui QOpenGLFunctions_3_2_Compatibility::glVertexAttribI2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8218539c0 0xc821853a40 0xc821853ac0] } +&{glVertexAttribI2uiv QOpenGLFunctions_3_2_Compatibility::glVertexAttribI2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821853c60 0xc821853ce0] } +&{glVertexAttribI3i QOpenGLFunctions_3_2_Compatibility::glVertexAttribI3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821853e80 0xc821853f00 0xc821853f80 0xc821862000] } +&{glVertexAttribI3iv QOpenGLFunctions_3_2_Compatibility::glVertexAttribI3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8218621a0 0xc821862220] } +&{glVertexAttribI3ui QOpenGLFunctions_3_2_Compatibility::glVertexAttribI3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8218623c0 0xc821862440 0xc8218624c0 0xc821862540] } +&{glVertexAttribI3uiv QOpenGLFunctions_3_2_Compatibility::glVertexAttribI3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8218626e0 0xc821862760] } +&{glVertexAttribI4bv QOpenGLFunctions_3_2_Compatibility::glVertexAttribI4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821862900 0xc821862980] } +&{glVertexAttribI4i QOpenGLFunctions_3_2_Compatibility::glVertexAttribI4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821862b20 0xc821862ba0 0xc821862c20 0xc821862ca0 0xc821862d40] } +&{glVertexAttribI4iv QOpenGLFunctions_3_2_Compatibility::glVertexAttribI4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821862ee0 0xc821862f60] } +&{glVertexAttribI4sv QOpenGLFunctions_3_2_Compatibility::glVertexAttribI4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821863100 0xc821863180] } +&{glVertexAttribI4ubv QOpenGLFunctions_3_2_Compatibility::glVertexAttribI4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821863320 0xc8218633a0] } +&{glVertexAttribI4ui QOpenGLFunctions_3_2_Compatibility::glVertexAttribI4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821863540 0xc8218635c0 0xc821863640 0xc8218636c0 0xc821863760] } +&{glVertexAttribI4uiv QOpenGLFunctions_3_2_Compatibility::glVertexAttribI4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821863900 0xc821863980] } +&{glVertexAttribI4usv QOpenGLFunctions_3_2_Compatibility::glVertexAttribI4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821863b20 0xc821863ba0] } +&{glVertexAttribIPointer QOpenGLFunctions_3_2_Compatibility::glVertexAttribIPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821863d40 0xc821863dc0 0xc821863e40 0xc821863ec0 0xc821863f60] } +&{glVertexAttribPointer QOpenGLFunctions_3_2_Compatibility::glVertexAttribPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821872100 0xc821872180 0xc821872200 0xc821872280 0xc821872320 0xc8218723a0] } +&{glVertexPointer QOpenGLFunctions_3_2_Compatibility::glVertexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8218724e0 0xc821872560 0xc8218725e0 0xc821872660] } +&{glViewport QOpenGLFunctions_3_2_Compatibility::glViewport commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8218727a0 0xc821872820 0xc8218728a0 0xc821872920] } +&{glWaitSync QOpenGLFunctions_3_2_Compatibility::glWaitSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821872a60 0xc821872ae0 0xc821872b60] } +&{glWindowPos2d QOpenGLFunctions_3_2_Compatibility::glWindowPos2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821872ca0 0xc821872d20] } +&{glWindowPos2dv QOpenGLFunctions_3_2_Compatibility::glWindowPos2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821872e60] } +&{glWindowPos2f QOpenGLFunctions_3_2_Compatibility::glWindowPos2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821872fa0 0xc821873020] } +&{glWindowPos2fv QOpenGLFunctions_3_2_Compatibility::glWindowPos2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821873160] } +&{glWindowPos2i QOpenGLFunctions_3_2_Compatibility::glWindowPos2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8218732a0 0xc821873320] } +&{glWindowPos2iv QOpenGLFunctions_3_2_Compatibility::glWindowPos2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821873460] } +&{glWindowPos2s QOpenGLFunctions_3_2_Compatibility::glWindowPos2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8218735a0 0xc821873620] } +&{glWindowPos2sv QOpenGLFunctions_3_2_Compatibility::glWindowPos2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821873760] } +&{glWindowPos3d QOpenGLFunctions_3_2_Compatibility::glWindowPos3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8218738a0 0xc821873920 0xc8218739a0] } +&{glWindowPos3dv QOpenGLFunctions_3_2_Compatibility::glWindowPos3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821873ae0] } +&{glWindowPos3f QOpenGLFunctions_3_2_Compatibility::glWindowPos3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821873c20 0xc821873ca0 0xc821873d20] } +&{glWindowPos3fv QOpenGLFunctions_3_2_Compatibility::glWindowPos3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821873e60] } +&{glWindowPos3i QOpenGLFunctions_3_2_Compatibility::glWindowPos3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821873fa0 0xc821886020 0xc8218860a0] } +&{glWindowPos3iv QOpenGLFunctions_3_2_Compatibility::glWindowPos3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc8218861e0] } +&{glWindowPos3s QOpenGLFunctions_3_2_Compatibility::glWindowPos3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821886320 0xc8218863a0 0xc821886420] } +&{glWindowPos3sv QOpenGLFunctions_3_2_Compatibility::glWindowPos3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_compatibility.h non plain false false void [0xc821886560] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions_3_2_Core.txt b/internal/binding/dump/QtGui/QOpenGLFunctions_3_2_Core.txt new file mode 100755 index 00000000..c71df8da --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions_3_2_Core.txt @@ -0,0 +1,268 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions_3_2_Core QOpenGLFunctions_3_2_Core::QOpenGLFunctions_3_2_Core commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.cpp non constructor false false [] } +&{initializeOpenGLFunctions QOpenGLFunctions_3_2_Core::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.cpp impure plain false false bool [] } +&{~QOpenGLFunctions_3_2_Core QOpenGLFunctions_3_2_Core::~QOpenGLFunctions_3_2_Core commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.cpp non destructor false false [] } +&{glActiveTexture QOpenGLFunctions_3_2_Core::glActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821886e40] } +&{glAttachShader QOpenGLFunctions_3_2_Core::glAttachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821886fa0 0xc821887020] } +&{glBeginConditionalRender QOpenGLFunctions_3_2_Core::glBeginConditionalRender commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218871e0 0xc821887260] } +&{glBeginQuery QOpenGLFunctions_3_2_Core::glBeginQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218873e0 0xc821887460] } +&{glBeginTransformFeedback QOpenGLFunctions_3_2_Core::glBeginTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821887620] } +&{glBindAttribLocation QOpenGLFunctions_3_2_Core::glBindAttribLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218877e0 0xc821887860 0xc8218878e0] } +&{glBindBuffer QOpenGLFunctions_3_2_Core::glBindBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821887a40 0xc821887ac0] } +&{glBindBufferBase QOpenGLFunctions_3_2_Core::glBindBufferBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821887c20 0xc821887ca0 0xc821887d20] } +&{glBindBufferRange QOpenGLFunctions_3_2_Core::glBindBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821887ee0 0xc821887f60 0xc821887fe0 0xc821898060 0xc821898100] } +&{glBindFragDataLocation QOpenGLFunctions_3_2_Core::glBindFragDataLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218982c0 0xc821898340 0xc8218983c0] } +&{glBindFramebuffer QOpenGLFunctions_3_2_Core::glBindFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821898580 0xc821898600] } +&{glBindRenderbuffer QOpenGLFunctions_3_2_Core::glBindRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218987e0 0xc821898860] } +&{glBindTexture QOpenGLFunctions_3_2_Core::glBindTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218989c0 0xc821898a40] } +&{glBindVertexArray QOpenGLFunctions_3_2_Core::glBindVertexArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821898c00] } +&{glBlendColor QOpenGLFunctions_3_2_Core::glBlendColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821898d60 0xc821898de0 0xc821898e60 0xc821898ee0] } +&{glBlendEquation QOpenGLFunctions_3_2_Core::glBlendEquation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821899040] } +&{glBlendEquationSeparate QOpenGLFunctions_3_2_Core::glBlendEquationSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821899200 0xc821899280] } +&{glBlendFunc QOpenGLFunctions_3_2_Core::glBlendFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218993e0 0xc821899460] } +&{glBlendFuncSeparate QOpenGLFunctions_3_2_Core::glBlendFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821899620 0xc8218996a0 0xc821899720 0xc8218997a0] } +&{glBlitFramebuffer QOpenGLFunctions_3_2_Core::glBlitFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821899960 0xc8218999e0 0xc821899a60 0xc821899ae0 0xc821899b80 0xc821899c00 0xc821899c80 0xc821899d00 0xc821899da0 0xc821899e20] } +&{glBufferData QOpenGLFunctions_3_2_Core::glBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821899f80 0xc8218a8000 0xc8218a8080 0xc8218a8100] } +&{glBufferSubData QOpenGLFunctions_3_2_Core::glBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218a8260 0xc8218a82e0 0xc8218a8360 0xc8218a83e0] } +&{glCheckFramebufferStatus QOpenGLFunctions_3_2_Core::glCheckFramebufferStatus commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false GLenum [0xc8218a85a0] } +&{glClampColor QOpenGLFunctions_3_2_Core::glClampColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218a8700 0xc8218a8780] } +&{glClear QOpenGLFunctions_3_2_Core::glClear commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218a8900] } +&{glClearBufferfi QOpenGLFunctions_3_2_Core::glClearBufferfi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218a8a60 0xc8218a8ae0 0xc8218a8b60 0xc8218a8be0] } +&{glClearBufferfv QOpenGLFunctions_3_2_Core::glClearBufferfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218a8d40 0xc8218a8dc0 0xc8218a8e40] } +&{glClearBufferiv QOpenGLFunctions_3_2_Core::glClearBufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218a8fc0 0xc8218a9040 0xc8218a90c0] } +&{glClearBufferuiv QOpenGLFunctions_3_2_Core::glClearBufferuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218a9220 0xc8218a92a0 0xc8218a9320] } +&{glClearColor QOpenGLFunctions_3_2_Core::glClearColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218a9480 0xc8218a9500 0xc8218a9580 0xc8218a9600] } +&{glClearDepth QOpenGLFunctions_3_2_Core::glClearDepth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218a9760] } +&{glClearStencil QOpenGLFunctions_3_2_Core::glClearStencil commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218a98e0] } +&{glClientWaitSync QOpenGLFunctions_3_2_Core::glClientWaitSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false GLenum [0xc8218a9a40 0xc8218a9ac0 0xc8218a9b40] } +&{glColorMask QOpenGLFunctions_3_2_Core::glColorMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218a9ca0 0xc8218a9d20 0xc8218a9da0 0xc8218a9e20] } +&{glColorMaski QOpenGLFunctions_3_2_Core::glColorMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218a9f80 0xc8218b8000 0xc8218b8080 0xc8218b8100 0xc8218b81a0] } +&{glCompileShader QOpenGLFunctions_3_2_Core::glCompileShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218b8300] } +&{glCompressedTexImage1D QOpenGLFunctions_3_2_Core::glCompressedTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218b84c0 0xc8218b8540 0xc8218b85c0 0xc8218b8640 0xc8218b86e0 0xc8218b8760 0xc8218b87e0] } +&{glCompressedTexImage2D QOpenGLFunctions_3_2_Core::glCompressedTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218b89a0 0xc8218b8a20 0xc8218b8aa0 0xc8218b8b20 0xc8218b8bc0 0xc8218b8c40 0xc8218b8cc0 0xc8218b8d40] } +&{glCompressedTexImage3D QOpenGLFunctions_3_2_Core::glCompressedTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218b8f00 0xc8218b8f80 0xc8218b9000 0xc8218b9080 0xc8218b9120 0xc8218b91a0 0xc8218b9220 0xc8218b92a0 0xc8218b9340] } +&{glCompressedTexSubImage1D QOpenGLFunctions_3_2_Core::glCompressedTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218b9500 0xc8218b9580 0xc8218b9600 0xc8218b9680 0xc8218b9720 0xc8218b97a0 0xc8218b9820] } +&{glCompressedTexSubImage2D QOpenGLFunctions_3_2_Core::glCompressedTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218b99e0 0xc8218b9a60 0xc8218b9ae0 0xc8218b9b60 0xc8218b9c00 0xc8218b9c80 0xc8218b9d00 0xc8218b9d80 0xc8218b9e20] } +&{glCompressedTexSubImage3D QOpenGLFunctions_3_2_Core::glCompressedTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218b9fe0 0xc8218c6060 0xc8218c60e0 0xc8218c6160 0xc8218c6200 0xc8218c6280 0xc8218c6300 0xc8218c6380 0xc8218c6420 0xc8218c64a0 0xc8218c6520] } +&{glCopyBufferSubData QOpenGLFunctions_3_2_Core::glCopyBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218c66e0 0xc8218c6760 0xc8218c67e0 0xc8218c6860 0xc8218c6900] } +&{glCopyTexImage1D QOpenGLFunctions_3_2_Core::glCopyTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218c6a60 0xc8218c6ae0 0xc8218c6b60 0xc8218c6be0 0xc8218c6c80 0xc8218c6d00 0xc8218c6d80] } +&{glCopyTexImage2D QOpenGLFunctions_3_2_Core::glCopyTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218c6ee0 0xc8218c6f60 0xc8218c6fe0 0xc8218c7060 0xc8218c7100 0xc8218c7180 0xc8218c7200 0xc8218c7280] } +&{glCopyTexSubImage1D QOpenGLFunctions_3_2_Core::glCopyTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218c7440 0xc8218c74c0 0xc8218c7540 0xc8218c75c0 0xc8218c7660 0xc8218c76e0] } +&{glCopyTexSubImage2D QOpenGLFunctions_3_2_Core::glCopyTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218c78a0 0xc8218c7920 0xc8218c79a0 0xc8218c7a20 0xc8218c7ac0 0xc8218c7b40 0xc8218c7bc0 0xc8218c7c40] } +&{glCopyTexSubImage3D QOpenGLFunctions_3_2_Core::glCopyTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218c7e00 0xc8218c7e80 0xc8218c7f00 0xc8218c7f80 0xc8218d4020 0xc8218d40a0 0xc8218d4120 0xc8218d41a0 0xc8218d4240] } +&{glCreateProgram QOpenGLFunctions_3_2_Core::glCreateProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false GLuint [] } +&{glCreateShader QOpenGLFunctions_3_2_Core::glCreateShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false GLuint [0xc8218d4440] } +&{glCullFace QOpenGLFunctions_3_2_Core::glCullFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218d45c0] } +&{glDeleteBuffers QOpenGLFunctions_3_2_Core::glDeleteBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218d4720 0xc8218d47a0] } +&{glDeleteFramebuffers QOpenGLFunctions_3_2_Core::glDeleteFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218d4960 0xc8218d49e0] } +&{glDeleteProgram QOpenGLFunctions_3_2_Core::glDeleteProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218d4b40] } +&{glDeleteQueries QOpenGLFunctions_3_2_Core::glDeleteQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218d4ca0 0xc8218d4d20] } +&{glDeleteRenderbuffers QOpenGLFunctions_3_2_Core::glDeleteRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218d4ee0 0xc8218d4f60] } +&{glDeleteShader QOpenGLFunctions_3_2_Core::glDeleteShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218d50c0] } +&{glDeleteSync QOpenGLFunctions_3_2_Core::glDeleteSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218d5240] } +&{glDeleteTextures QOpenGLFunctions_3_2_Core::glDeleteTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218d53a0 0xc8218d5420] } +&{glDeleteVertexArrays QOpenGLFunctions_3_2_Core::glDeleteVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218d5600 0xc8218d5680] } +&{glDepthFunc QOpenGLFunctions_3_2_Core::glDepthFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218d5800] } +&{glDepthMask QOpenGLFunctions_3_2_Core::glDepthMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218d5980] } +&{glDepthRange QOpenGLFunctions_3_2_Core::glDepthRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218d5ae0 0xc8218d5b60] } +&{glDetachShader QOpenGLFunctions_3_2_Core::glDetachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218d5cc0 0xc8218d5d40] } +&{glDisable QOpenGLFunctions_3_2_Core::glDisable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218d5ec0] } +&{glDisableVertexAttribArray QOpenGLFunctions_3_2_Core::glDisableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218e8080] } +&{glDisablei QOpenGLFunctions_3_2_Core::glDisablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218e81e0 0xc8218e8260] } +&{glDrawArrays QOpenGLFunctions_3_2_Core::glDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218e83c0 0xc8218e8440 0xc8218e84c0] } +&{glDrawArraysInstanced QOpenGLFunctions_3_2_Core::glDrawArraysInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218e8680 0xc8218e8700 0xc8218e8780 0xc8218e8800] } +&{glDrawBuffer QOpenGLFunctions_3_2_Core::glDrawBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218e8980] } +&{glDrawBuffers QOpenGLFunctions_3_2_Core::glDrawBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218e8ae0 0xc8218e8b60] } +&{glDrawElements QOpenGLFunctions_3_2_Core::glDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218e8cc0 0xc8218e8d40 0xc8218e8dc0 0xc8218e8e40] } +&{glDrawElementsBaseVertex QOpenGLFunctions_3_2_Core::glDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218e9000 0xc8218e9080 0xc8218e9100 0xc8218e9180 0xc8218e9220] } +&{glDrawElementsInstanced QOpenGLFunctions_3_2_Core::glDrawElementsInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218e93e0 0xc8218e9460 0xc8218e94e0 0xc8218e9560 0xc8218e9600] } +&{glDrawElementsInstancedBaseVertex QOpenGLFunctions_3_2_Core::glDrawElementsInstancedBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218e9760 0xc8218e97e0 0xc8218e9860 0xc8218e98e0 0xc8218e9980 0xc8218e9a00] } +&{glDrawRangeElements QOpenGLFunctions_3_2_Core::glDrawRangeElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218e9bc0 0xc8218e9c40 0xc8218e9cc0 0xc8218e9d40 0xc8218e9de0 0xc8218e9e60] } +&{glDrawRangeElementsBaseVertex QOpenGLFunctions_3_2_Core::glDrawRangeElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218f8020 0xc8218f80a0 0xc8218f8120 0xc8218f81a0 0xc8218f8240 0xc8218f82c0 0xc8218f8340] } +&{glEnable QOpenGLFunctions_3_2_Core::glEnable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218f84c0] } +&{glEnableVertexAttribArray QOpenGLFunctions_3_2_Core::glEnableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218f8680] } +&{glEnablei QOpenGLFunctions_3_2_Core::glEnablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218f87e0 0xc8218f8860] } +&{glEndConditionalRender QOpenGLFunctions_3_2_Core::glEndConditionalRender commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [] } +&{glEndQuery QOpenGLFunctions_3_2_Core::glEndQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218f8ae0] } +&{glEndTransformFeedback QOpenGLFunctions_3_2_Core::glEndTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [] } +&{glFenceSync QOpenGLFunctions_3_2_Core::glFenceSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false GLsync [0xc8218f8d40 0xc8218f8dc0] } +&{glFinish QOpenGLFunctions_3_2_Core::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [] } +&{glFlush QOpenGLFunctions_3_2_Core::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [] } +&{glFlushMappedBufferRange QOpenGLFunctions_3_2_Core::glFlushMappedBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218f9080 0xc8218f9100 0xc8218f9180] } +&{glFramebufferRenderbuffer QOpenGLFunctions_3_2_Core::glFramebufferRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218f9340 0xc8218f93c0 0xc8218f9460 0xc8218f9520] } +&{glFramebufferTexture QOpenGLFunctions_3_2_Core::glFramebufferTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218f96e0 0xc8218f9760 0xc8218f97e0 0xc8218f9860] } +&{glFramebufferTexture1D QOpenGLFunctions_3_2_Core::glFramebufferTexture1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218f9a20 0xc8218f9aa0 0xc8218f9b20 0xc8218f9ba0 0xc8218f9c40] } +&{glFramebufferTexture2D QOpenGLFunctions_3_2_Core::glFramebufferTexture2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8218f9e00 0xc8218f9e80 0xc8218f9f00 0xc8218f9f80 0xc821908020] } +&{glFramebufferTexture3D QOpenGLFunctions_3_2_Core::glFramebufferTexture3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219081e0 0xc821908260 0xc8219082e0 0xc821908360 0xc821908400 0xc821908480] } +&{glFramebufferTextureLayer QOpenGLFunctions_3_2_Core::glFramebufferTextureLayer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821908640 0xc8219086c0 0xc821908740 0xc8219087c0 0xc821908860] } +&{glFrontFace QOpenGLFunctions_3_2_Core::glFrontFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219089e0] } +&{glGenBuffers QOpenGLFunctions_3_2_Core::glGenBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821908b40 0xc821908bc0] } +&{glGenFramebuffers QOpenGLFunctions_3_2_Core::glGenFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821908d80 0xc821908e00] } +&{glGenQueries QOpenGLFunctions_3_2_Core::glGenQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821908f60 0xc821908fe0] } +&{glGenRenderbuffers QOpenGLFunctions_3_2_Core::glGenRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219091a0 0xc821909220] } +&{glGenTextures QOpenGLFunctions_3_2_Core::glGenTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821909380 0xc821909400] } +&{glGenVertexArrays QOpenGLFunctions_3_2_Core::glGenVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219095c0 0xc821909640] } +&{glGenerateMipmap QOpenGLFunctions_3_2_Core::glGenerateMipmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219097a0] } +&{glGetActiveAttrib QOpenGLFunctions_3_2_Core::glGetActiveAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821909960 0xc8219099e0 0xc821909a60 0xc821909ae0 0xc821909b80 0xc821909c00 0xc821909c80] } +&{glGetActiveUniform QOpenGLFunctions_3_2_Core::glGetActiveUniform commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821909e40 0xc821909ec0 0xc821909f40 0xc821909fc0 0xc821916060 0xc8219160e0 0xc821916160] } +&{glGetActiveUniformBlockName QOpenGLFunctions_3_2_Core::glGetActiveUniformBlockName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821916320 0xc8219163c0 0xc821916480 0xc821916500 0xc8219165a0] } +&{glGetActiveUniformBlockiv QOpenGLFunctions_3_2_Core::glGetActiveUniformBlockiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821916760 0xc821916800 0xc8219168c0 0xc821916940] } +&{glGetActiveUniformName QOpenGLFunctions_3_2_Core::glGetActiveUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821916b00 0xc821916b80 0xc821916c00 0xc821916c80 0xc821916d20] } +&{glGetActiveUniformsiv QOpenGLFunctions_3_2_Core::glGetActiveUniformsiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821916ee0 0xc821916f60 0xc821916fe0 0xc821917060 0xc821917100] } +&{glGetAttachedShaders QOpenGLFunctions_3_2_Core::glGetAttachedShaders commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219172c0 0xc821917340 0xc8219173c0 0xc821917440] } +&{glGetAttribLocation QOpenGLFunctions_3_2_Core::glGetAttribLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false GLint [0xc821917600 0xc821917680] } +&{glGetBooleani_v QOpenGLFunctions_3_2_Core::glGetBooleani_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219177e0 0xc821917860 0xc8219178e0] } +&{glGetBooleanv QOpenGLFunctions_3_2_Core::glGetBooleanv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821917a40 0xc821917ac0] } +&{glGetBufferParameteri64v QOpenGLFunctions_3_2_Core::glGetBufferParameteri64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821917c80 0xc821917d00 0xc821917d80] } +&{glGetBufferParameteriv QOpenGLFunctions_3_2_Core::glGetBufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821917f40 0xc821917fc0 0xc821924040] } +&{glGetBufferPointerv QOpenGLFunctions_3_2_Core::glGetBufferPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821924200 0xc821924280 0xc821924300] } +&{glGetBufferSubData QOpenGLFunctions_3_2_Core::glGetBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219244c0 0xc821924540 0xc8219245c0 0xc821924640] } +&{glGetCompressedTexImage QOpenGLFunctions_3_2_Core::glGetCompressedTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821924800 0xc821924880 0xc821924900] } +&{glGetDoublev QOpenGLFunctions_3_2_Core::glGetDoublev commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821924a60 0xc821924ae0] } +&{glGetError QOpenGLFunctions_3_2_Core::glGetError commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false GLenum [] } +&{glGetFloatv QOpenGLFunctions_3_2_Core::glGetFloatv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821924ce0 0xc821924d60] } +&{glGetFragDataLocation QOpenGLFunctions_3_2_Core::glGetFragDataLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false GLint [0xc821924f20 0xc821924fa0] } +&{glGetFramebufferAttachmentParameteriv QOpenGLFunctions_3_2_Core::glGetFramebufferAttachmentParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821925100 0xc821925180 0xc821925200 0xc821925280] } +&{glGetInteger64i_v QOpenGLFunctions_3_2_Core::glGetInteger64i_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821925440 0xc8219254c0 0xc821925540] } +&{glGetInteger64v QOpenGLFunctions_3_2_Core::glGetInteger64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219256a0 0xc821925720] } +&{glGetIntegeri_v QOpenGLFunctions_3_2_Core::glGetIntegeri_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219258a0 0xc821925920 0xc8219259a0] } +&{glGetIntegerv QOpenGLFunctions_3_2_Core::glGetIntegerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821925b00 0xc821925b80] } +&{glGetMultisamplefv QOpenGLFunctions_3_2_Core::glGetMultisamplefv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821925d40 0xc821925dc0 0xc821925e40] } +&{glGetPointerv QOpenGLFunctions_3_2_Core::glGetPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821925fa0 0xc821936020] } +&{glGetProgramInfoLog QOpenGLFunctions_3_2_Core::glGetProgramInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219361e0 0xc821936260 0xc8219362e0 0xc821936360] } +&{glGetProgramiv QOpenGLFunctions_3_2_Core::glGetProgramiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219364c0 0xc821936540 0xc8219365c0] } +&{glGetQueryObjectiv QOpenGLFunctions_3_2_Core::glGetQueryObjectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821936780 0xc821936800 0xc821936880] } +&{glGetQueryObjectuiv QOpenGLFunctions_3_2_Core::glGetQueryObjectuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821936a40 0xc821936ac0 0xc821936b40] } +&{glGetQueryiv QOpenGLFunctions_3_2_Core::glGetQueryiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821936ca0 0xc821936d20 0xc821936da0] } +&{glGetRenderbufferParameteriv QOpenGLFunctions_3_2_Core::glGetRenderbufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821936f60 0xc821936fe0 0xc821937060] } +&{glGetShaderInfoLog QOpenGLFunctions_3_2_Core::glGetShaderInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821937220 0xc8219372a0 0xc821937320 0xc8219373a0] } +&{glGetShaderSource QOpenGLFunctions_3_2_Core::glGetShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821937560 0xc8219375e0 0xc821937660 0xc8219376e0] } +&{glGetShaderiv QOpenGLFunctions_3_2_Core::glGetShaderiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821937840 0xc8219378c0 0xc821937940] } +&{glGetString QOpenGLFunctions_3_2_Core::glGetString commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false const GLubyte * [0xc821937aa0] } +&{glGetStringi QOpenGLFunctions_3_2_Core::glGetStringi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false const GLubyte * [0xc821937c00 0xc821937c80] } +&{glGetSynciv QOpenGLFunctions_3_2_Core::glGetSynciv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821937de0 0xc821937e60 0xc821937ee0 0xc821937f60 0xc821946000] } +&{glGetTexImage QOpenGLFunctions_3_2_Core::glGetTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821946160 0xc8219461e0 0xc821946260 0xc8219462e0 0xc821946380] } +&{glGetTexLevelParameterfv QOpenGLFunctions_3_2_Core::glGetTexLevelParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821946540 0xc8219465c0 0xc821946640 0xc8219466c0] } +&{glGetTexLevelParameteriv QOpenGLFunctions_3_2_Core::glGetTexLevelParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821946880 0xc821946900 0xc821946980 0xc821946a00] } +&{glGetTexParameterIiv QOpenGLFunctions_3_2_Core::glGetTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821946bc0 0xc821946c40 0xc821946cc0] } +&{glGetTexParameterIuiv QOpenGLFunctions_3_2_Core::glGetTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821946e80 0xc821946f00 0xc821946f80] } +&{glGetTexParameterfv QOpenGLFunctions_3_2_Core::glGetTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821947140 0xc8219471c0 0xc821947240] } +&{glGetTexParameteriv QOpenGLFunctions_3_2_Core::glGetTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821947400 0xc821947480 0xc821947500] } +&{glGetTransformFeedbackVarying QOpenGLFunctions_3_2_Core::glGetTransformFeedbackVarying commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219476c0 0xc821947740 0xc8219477c0 0xc821947840 0xc8219478e0 0xc821947960 0xc8219479e0] } +&{glGetUniformBlockIndex QOpenGLFunctions_3_2_Core::glGetUniformBlockIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false GLuint [0xc821947ba0 0xc821947c20] } +&{glGetUniformIndices QOpenGLFunctions_3_2_Core::glGetUniformIndices commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821947de0 0xc821947e60 0xc821947f00 0xc821947fc0] } +&{glGetUniformLocation QOpenGLFunctions_3_2_Core::glGetUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false GLint [0xc821956180 0xc821956200] } +&{glGetUniformfv QOpenGLFunctions_3_2_Core::glGetUniformfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821956360 0xc8219563e0 0xc821956460] } +&{glGetUniformiv QOpenGLFunctions_3_2_Core::glGetUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219565c0 0xc821956640 0xc8219566c0] } +&{glGetUniformuiv QOpenGLFunctions_3_2_Core::glGetUniformuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821956820 0xc8219568a0 0xc821956920] } +&{glGetVertexAttribIiv QOpenGLFunctions_3_2_Core::glGetVertexAttribIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821956ae0 0xc821956b60 0xc821956be0] } +&{glGetVertexAttribIuiv QOpenGLFunctions_3_2_Core::glGetVertexAttribIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821956da0 0xc821956e20 0xc821956ea0] } +&{glGetVertexAttribPointerv QOpenGLFunctions_3_2_Core::glGetVertexAttribPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821957060 0xc8219570e0 0xc821957160] } +&{glGetVertexAttribdv QOpenGLFunctions_3_2_Core::glGetVertexAttribdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821957320 0xc8219573a0 0xc821957420] } +&{glGetVertexAttribfv QOpenGLFunctions_3_2_Core::glGetVertexAttribfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219575e0 0xc821957660 0xc8219576e0] } +&{glGetVertexAttribiv QOpenGLFunctions_3_2_Core::glGetVertexAttribiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219578a0 0xc821957920 0xc8219579a0] } +&{glHint QOpenGLFunctions_3_2_Core::glHint commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821957b00 0xc821957b80] } +&{glIndexub QOpenGLFunctions_3_2_Core::glIndexub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821957d00] } +&{glIndexubv QOpenGLFunctions_3_2_Core::glIndexubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821957e60] } +&{glIsBuffer QOpenGLFunctions_3_2_Core::glIsBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false GLboolean [0xc821957fc0] } +&{glIsEnabled QOpenGLFunctions_3_2_Core::glIsEnabled commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false GLboolean [0xc821966120] } +&{glIsEnabledi QOpenGLFunctions_3_2_Core::glIsEnabledi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false GLboolean [0xc821966280 0xc821966300] } +&{glIsFramebuffer QOpenGLFunctions_3_2_Core::glIsFramebuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false GLboolean [0xc821966460] } +&{glIsProgram QOpenGLFunctions_3_2_Core::glIsProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false GLboolean [0xc8219665c0] } +&{glIsQuery QOpenGLFunctions_3_2_Core::glIsQuery commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false GLboolean [0xc821966740] } +&{glIsRenderbuffer QOpenGLFunctions_3_2_Core::glIsRenderbuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false GLboolean [0xc8219668a0] } +&{glIsShader QOpenGLFunctions_3_2_Core::glIsShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false GLboolean [0xc821966a00] } +&{glIsSync QOpenGLFunctions_3_2_Core::glIsSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false GLboolean [0xc821966b80] } +&{glIsTexture QOpenGLFunctions_3_2_Core::glIsTexture commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false GLboolean [0xc821966ce0] } +&{glIsVertexArray QOpenGLFunctions_3_2_Core::glIsVertexArray commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false GLboolean [0xc821966e40] } +&{glLineWidth QOpenGLFunctions_3_2_Core::glLineWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821966fc0] } +&{glLinkProgram QOpenGLFunctions_3_2_Core::glLinkProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821967120] } +&{glLogicOp QOpenGLFunctions_3_2_Core::glLogicOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219672a0] } +&{glMapBuffer QOpenGLFunctions_3_2_Core::glMapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false GLvoid * [0xc821967400 0xc821967480] } +&{glMapBufferRange QOpenGLFunctions_3_2_Core::glMapBufferRange commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false GLvoid * [0xc8219675e0 0xc821967660 0xc8219676e0 0xc821967760] } +&{glMultiDrawArrays QOpenGLFunctions_3_2_Core::glMultiDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821967920 0xc8219679a0 0xc821967a20 0xc821967aa0] } +&{glMultiDrawElements QOpenGLFunctions_3_2_Core::glMultiDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821967c60 0xc821967ce0 0xc821967d60 0xc821967e00 0xc821967ee0] } +&{glMultiDrawElementsBaseVertex QOpenGLFunctions_3_2_Core::glMultiDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc82197a0a0 0xc82197a120 0xc82197a1a0 0xc82197a240 0xc82197a320 0xc82197a3a0] } +&{glPixelStoref QOpenGLFunctions_3_2_Core::glPixelStoref commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc82197a500 0xc82197a580] } +&{glPixelStorei QOpenGLFunctions_3_2_Core::glPixelStorei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc82197a6e0 0xc82197a760] } +&{glPointParameterf QOpenGLFunctions_3_2_Core::glPointParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc82197a920 0xc82197a9a0] } +&{glPointParameterfv QOpenGLFunctions_3_2_Core::glPointParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc82197ab60 0xc82197abe0] } +&{glPointParameteri QOpenGLFunctions_3_2_Core::glPointParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc82197ada0 0xc82197ae20] } +&{glPointParameteriv QOpenGLFunctions_3_2_Core::glPointParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc82197afe0 0xc82197b060] } +&{glPointSize QOpenGLFunctions_3_2_Core::glPointSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc82197b1e0] } +&{glPolygonMode QOpenGLFunctions_3_2_Core::glPolygonMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc82197b340 0xc82197b3c0] } +&{glPolygonOffset QOpenGLFunctions_3_2_Core::glPolygonOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc82197b520 0xc82197b5a0] } +&{glPrimitiveRestartIndex QOpenGLFunctions_3_2_Core::glPrimitiveRestartIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc82197b760] } +&{glProvokingVertex QOpenGLFunctions_3_2_Core::glProvokingVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc82197b920] } +&{glReadBuffer QOpenGLFunctions_3_2_Core::glReadBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc82197baa0] } +&{glReadPixels QOpenGLFunctions_3_2_Core::glReadPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc82197bc00 0xc82197bc80 0xc82197bd00 0xc82197bd80 0xc82197be20 0xc82197bea0 0xc82197bf20] } +&{glRenderbufferStorage QOpenGLFunctions_3_2_Core::glRenderbufferStorage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc82198a0e0 0xc82198a160 0xc82198a1e0 0xc82198a260] } +&{glRenderbufferStorageMultisample QOpenGLFunctions_3_2_Core::glRenderbufferStorageMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc82198a420 0xc82198a4a0 0xc82198a520 0xc82198a5a0 0xc82198a640] } +&{glSampleCoverage QOpenGLFunctions_3_2_Core::glSampleCoverage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc82198a7a0 0xc82198a820] } +&{glSampleMaski QOpenGLFunctions_3_2_Core::glSampleMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc82198a980 0xc82198aa00] } +&{glScissor QOpenGLFunctions_3_2_Core::glScissor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc82198ab60 0xc82198abe0 0xc82198ac60 0xc82198ace0] } +&{glShaderSource QOpenGLFunctions_3_2_Core::glShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc82198ae40 0xc82198aec0 0xc82198af60 0xc82198b020] } +&{glStencilFunc QOpenGLFunctions_3_2_Core::glStencilFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc82198b180 0xc82198b200 0xc82198b280] } +&{glStencilFuncSeparate QOpenGLFunctions_3_2_Core::glStencilFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc82198b440 0xc82198b4c0 0xc82198b540 0xc82198b5c0] } +&{glStencilMask QOpenGLFunctions_3_2_Core::glStencilMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc82198b740] } +&{glStencilMaskSeparate QOpenGLFunctions_3_2_Core::glStencilMaskSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc82198b900 0xc82198b980] } +&{glStencilOp QOpenGLFunctions_3_2_Core::glStencilOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc82198bae0 0xc82198bb60 0xc82198bbe0] } +&{glStencilOpSeparate QOpenGLFunctions_3_2_Core::glStencilOpSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc82198bda0 0xc82198be20 0xc82198bea0 0xc82198bf20] } +&{glTexBuffer QOpenGLFunctions_3_2_Core::glTexBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821998080 0xc821998100 0xc821998180] } +&{glTexImage1D QOpenGLFunctions_3_2_Core::glTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219982e0 0xc821998360 0xc8219983e0 0xc821998460 0xc821998500 0xc821998580 0xc821998600 0xc821998680] } +&{glTexImage2D QOpenGLFunctions_3_2_Core::glTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219987e0 0xc821998860 0xc8219988e0 0xc821998960 0xc821998a00 0xc821998a80 0xc821998b00 0xc821998b80 0xc821998c20] } +&{glTexImage2DMultisample QOpenGLFunctions_3_2_Core::glTexImage2DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821998de0 0xc821998e60 0xc821998ee0 0xc821998f60 0xc821999000 0xc8219990a0] } +&{glTexImage3D QOpenGLFunctions_3_2_Core::glTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821999240 0xc8219992c0 0xc821999340 0xc8219993c0 0xc821999460 0xc8219994e0 0xc821999560 0xc8219995e0 0xc821999680 0xc821999700] } +&{glTexImage3DMultisample QOpenGLFunctions_3_2_Core::glTexImage3DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219998c0 0xc821999940 0xc8219999c0 0xc821999a40 0xc821999ae0 0xc821999b60 0xc821999c00] } +&{glTexParameterIiv QOpenGLFunctions_3_2_Core::glTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc821999e00 0xc821999e80 0xc821999f00] } +&{glTexParameterIuiv QOpenGLFunctions_3_2_Core::glTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219a60c0 0xc8219a6140 0xc8219a61c0] } +&{glTexParameterf QOpenGLFunctions_3_2_Core::glTexParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219a6320 0xc8219a63a0 0xc8219a6420] } +&{glTexParameterfv QOpenGLFunctions_3_2_Core::glTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219a6580 0xc8219a6600 0xc8219a6680] } +&{glTexParameteri QOpenGLFunctions_3_2_Core::glTexParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219a67e0 0xc8219a6860 0xc8219a68e0] } +&{glTexParameteriv QOpenGLFunctions_3_2_Core::glTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219a6a40 0xc8219a6ac0 0xc8219a6b40] } +&{glTexSubImage1D QOpenGLFunctions_3_2_Core::glTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219a6ca0 0xc8219a6d20 0xc8219a6da0 0xc8219a6e20 0xc8219a6ec0 0xc8219a6f40 0xc8219a6fc0] } +&{glTexSubImage2D QOpenGLFunctions_3_2_Core::glTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219a7120 0xc8219a71a0 0xc8219a7220 0xc8219a72a0 0xc8219a7340 0xc8219a73c0 0xc8219a7440 0xc8219a74c0 0xc8219a7560] } +&{glTexSubImage3D QOpenGLFunctions_3_2_Core::glTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219a76c0 0xc8219a7740 0xc8219a77c0 0xc8219a7840 0xc8219a78e0 0xc8219a7960 0xc8219a79e0 0xc8219a7a60 0xc8219a7b00 0xc8219a7b80 0xc8219a7c00] } +&{glTransformFeedbackVaryings QOpenGLFunctions_3_2_Core::glTransformFeedbackVaryings commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219a7dc0 0xc8219a7e40 0xc8219a7ee0 0xc8219a7fa0] } +&{glUniform1f QOpenGLFunctions_3_2_Core::glUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219b6100 0xc8219b6180] } +&{glUniform1fv QOpenGLFunctions_3_2_Core::glUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219b62e0 0xc8219b6360 0xc8219b63e0] } +&{glUniform1i QOpenGLFunctions_3_2_Core::glUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219b6540 0xc8219b65c0] } +&{glUniform1iv QOpenGLFunctions_3_2_Core::glUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219b6720 0xc8219b67a0 0xc8219b6820] } +&{glUniform1ui QOpenGLFunctions_3_2_Core::glUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219b6980 0xc8219b6a00] } +&{glUniform1uiv QOpenGLFunctions_3_2_Core::glUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219b6b60 0xc8219b6be0 0xc8219b6c60] } +&{glUniform2f QOpenGLFunctions_3_2_Core::glUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219b6dc0 0xc8219b6e40 0xc8219b6ec0] } +&{glUniform2fv QOpenGLFunctions_3_2_Core::glUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219b7020 0xc8219b70a0 0xc8219b7120] } +&{glUniform2i QOpenGLFunctions_3_2_Core::glUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219b7280 0xc8219b7300 0xc8219b7380] } +&{glUniform2iv QOpenGLFunctions_3_2_Core::glUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219b74e0 0xc8219b7560 0xc8219b75e0] } +&{glUniform2ui QOpenGLFunctions_3_2_Core::glUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219b7740 0xc8219b77c0 0xc8219b7840] } +&{glUniform2uiv QOpenGLFunctions_3_2_Core::glUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219b79a0 0xc8219b7a20 0xc8219b7aa0] } +&{glUniform3f QOpenGLFunctions_3_2_Core::glUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219b7c00 0xc8219b7c80 0xc8219b7d00 0xc8219b7d80] } +&{glUniform3fv QOpenGLFunctions_3_2_Core::glUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219b7ee0 0xc8219b7f60 0xc8219b7fe0] } +&{glUniform3i QOpenGLFunctions_3_2_Core::glUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219c6140 0xc8219c61c0 0xc8219c6240 0xc8219c62c0] } +&{glUniform3iv QOpenGLFunctions_3_2_Core::glUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219c6420 0xc8219c64a0 0xc8219c6520] } +&{glUniform3ui QOpenGLFunctions_3_2_Core::glUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219c6680 0xc8219c6700 0xc8219c6780 0xc8219c6800] } +&{glUniform3uiv QOpenGLFunctions_3_2_Core::glUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219c6960 0xc8219c69e0 0xc8219c6a60] } +&{glUniform4f QOpenGLFunctions_3_2_Core::glUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219c6bc0 0xc8219c6c40 0xc8219c6cc0 0xc8219c6d40 0xc8219c6de0] } +&{glUniform4fv QOpenGLFunctions_3_2_Core::glUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219c6f40 0xc8219c6fc0 0xc8219c7040] } +&{glUniform4i QOpenGLFunctions_3_2_Core::glUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219c71a0 0xc8219c7220 0xc8219c72a0 0xc8219c7320 0xc8219c73c0] } +&{glUniform4iv QOpenGLFunctions_3_2_Core::glUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219c7520 0xc8219c75a0 0xc8219c7620] } +&{glUniform4ui QOpenGLFunctions_3_2_Core::glUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219c7780 0xc8219c7800 0xc8219c7880 0xc8219c7900 0xc8219c79a0] } +&{glUniform4uiv QOpenGLFunctions_3_2_Core::glUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219c7b00 0xc8219c7b80 0xc8219c7c00] } +&{glUniformBlockBinding QOpenGLFunctions_3_2_Core::glUniformBlockBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219c7dc0 0xc8219c7e60 0xc8219c7f40] } +&{glUniformMatrix2fv QOpenGLFunctions_3_2_Core::glUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219da140 0xc8219da1c0 0xc8219da240 0xc8219da2c0] } +&{glUniformMatrix2x3fv QOpenGLFunctions_3_2_Core::glUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219da480 0xc8219da500 0xc8219da580 0xc8219da600] } +&{glUniformMatrix2x4fv QOpenGLFunctions_3_2_Core::glUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219da7c0 0xc8219da840 0xc8219da8c0 0xc8219da940] } +&{glUniformMatrix3fv QOpenGLFunctions_3_2_Core::glUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219dab00 0xc8219dab80 0xc8219dac00 0xc8219dac80] } +&{glUniformMatrix3x2fv QOpenGLFunctions_3_2_Core::glUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219dae60 0xc8219daee0 0xc8219daf60 0xc8219dafe0] } +&{glUniformMatrix3x4fv QOpenGLFunctions_3_2_Core::glUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219db1a0 0xc8219db220 0xc8219db2a0 0xc8219db320] } +&{glUniformMatrix4fv QOpenGLFunctions_3_2_Core::glUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219db4e0 0xc8219db560 0xc8219db5e0 0xc8219db660] } +&{glUniformMatrix4x2fv QOpenGLFunctions_3_2_Core::glUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219db820 0xc8219db8a0 0xc8219db920 0xc8219db9a0] } +&{glUniformMatrix4x3fv QOpenGLFunctions_3_2_Core::glUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219dbb60 0xc8219dbbe0 0xc8219dbc60 0xc8219dbce0] } +&{glUnmapBuffer QOpenGLFunctions_3_2_Core::glUnmapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false GLboolean [0xc8219dbe40] } +&{glUseProgram QOpenGLFunctions_3_2_Core::glUseProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219dbfa0] } +&{glValidateProgram QOpenGLFunctions_3_2_Core::glValidateProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219e8160] } +&{glVertexAttribIPointer QOpenGLFunctions_3_2_Core::glVertexAttribIPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219e8320 0xc8219e83a0 0xc8219e8420 0xc8219e84a0 0xc8219e8540] } +&{glVertexAttribPointer QOpenGLFunctions_3_2_Core::glVertexAttribPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219e8700 0xc8219e8780 0xc8219e8800 0xc8219e8880 0xc8219e8920 0xc8219e89a0] } +&{glViewport QOpenGLFunctions_3_2_Core::glViewport commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219e8b00 0xc8219e8b80 0xc8219e8c00 0xc8219e8c80] } +&{glWaitSync QOpenGLFunctions_3_2_Core::glWaitSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_2_core.h non plain false false void [0xc8219e8de0 0xc8219e8e60 0xc8219e8ee0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions_3_3_Compatibility.txt b/internal/binding/dump/QtGui/QOpenGLFunctions_3_3_Compatibility.txt new file mode 100755 index 00000000..84fb3e6d --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions_3_3_Compatibility.txt @@ -0,0 +1,761 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions_3_3_Compatibility QOpenGLFunctions_3_3_Compatibility::QOpenGLFunctions_3_3_Compatibility commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.cpp non constructor false false [] } +&{initializeOpenGLFunctions QOpenGLFunctions_3_3_Compatibility::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.cpp impure plain false false bool [] } +&{~QOpenGLFunctions_3_3_Compatibility QOpenGLFunctions_3_3_Compatibility::~QOpenGLFunctions_3_3_Compatibility commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.cpp non destructor false false [] } +&{glAccum QOpenGLFunctions_3_3_Compatibility::glAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8219e9560 0xc8219e95e0] } +&{glActiveTexture QOpenGLFunctions_3_3_Compatibility::glActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8219e9720] } +&{glAlphaFunc QOpenGLFunctions_3_3_Compatibility::glAlphaFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8219e9860 0xc8219e98e0] } +&{glAreTexturesResident QOpenGLFunctions_3_3_Compatibility::glAreTexturesResident commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLboolean [0xc8219e9aa0 0xc8219e9b20 0xc8219e9ba0] } +&{glArrayElement QOpenGLFunctions_3_3_Compatibility::glArrayElement commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8219e9d00] } +&{glAttachShader QOpenGLFunctions_3_3_Compatibility::glAttachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8219e9e40 0xc8219e9ec0] } +&{glBegin QOpenGLFunctions_3_3_Compatibility::glBegin commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8219fc020] } +&{glBeginConditionalRender QOpenGLFunctions_3_3_Compatibility::glBeginConditionalRender commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8219fc1c0 0xc8219fc240] } +&{glBeginQuery QOpenGLFunctions_3_3_Compatibility::glBeginQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8219fc380 0xc8219fc400] } +&{glBeginTransformFeedback QOpenGLFunctions_3_3_Compatibility::glBeginTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8219fc5a0] } +&{glBindAttribLocation QOpenGLFunctions_3_3_Compatibility::glBindAttribLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8219fc740 0xc8219fc7c0 0xc8219fc840] } +&{glBindBuffer QOpenGLFunctions_3_3_Compatibility::glBindBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8219fc9a0 0xc8219fca20] } +&{glBindBufferBase QOpenGLFunctions_3_3_Compatibility::glBindBufferBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8219fcb60 0xc8219fcbe0 0xc8219fcc60] } +&{glBindBufferRange QOpenGLFunctions_3_3_Compatibility::glBindBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8219fce00 0xc8219fce80 0xc8219fcf00 0xc8219fcf80 0xc8219fd020] } +&{glBindFragDataLocation QOpenGLFunctions_3_3_Compatibility::glBindFragDataLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8219fd1c0 0xc8219fd240 0xc8219fd2c0] } +&{glBindFragDataLocationIndexed QOpenGLFunctions_3_3_Compatibility::glBindFragDataLocationIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8219fd460 0xc8219fd4e0 0xc8219fd560 0xc8219fd5e0] } +&{glBindFramebuffer QOpenGLFunctions_3_3_Compatibility::glBindFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8219fd780 0xc8219fd800] } +&{glBindRenderbuffer QOpenGLFunctions_3_3_Compatibility::glBindRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8219fd9a0 0xc8219fda20] } +&{glBindSampler QOpenGLFunctions_3_3_Compatibility::glBindSampler commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8219fdb60 0xc8219fdbe0] } +&{glBindTexture QOpenGLFunctions_3_3_Compatibility::glBindTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8219fdd20 0xc8219fdda0] } +&{glBindVertexArray QOpenGLFunctions_3_3_Compatibility::glBindVertexArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8219fdf40] } +&{glBitmap QOpenGLFunctions_3_3_Compatibility::glBitmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a0e080 0xc821a0e100 0xc821a0e180 0xc821a0e200 0xc821a0e2a0 0xc821a0e320 0xc821a0e3a0] } +&{glBlendColor QOpenGLFunctions_3_3_Compatibility::glBlendColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a0e4e0 0xc821a0e560 0xc821a0e5e0 0xc821a0e660] } +&{glBlendEquation QOpenGLFunctions_3_3_Compatibility::glBlendEquation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a0e7a0] } +&{glBlendEquationSeparate QOpenGLFunctions_3_3_Compatibility::glBlendEquationSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a0e940 0xc821a0e9c0] } +&{glBlendFunc QOpenGLFunctions_3_3_Compatibility::glBlendFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a0eb00 0xc821a0eb80] } +&{glBlendFuncSeparate QOpenGLFunctions_3_3_Compatibility::glBlendFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a0ed20 0xc821a0eda0 0xc821a0ee20 0xc821a0eea0] } +&{glBlitFramebuffer QOpenGLFunctions_3_3_Compatibility::glBlitFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a0f060 0xc821a0f0e0 0xc821a0f160 0xc821a0f1e0 0xc821a0f280 0xc821a0f300 0xc821a0f380 0xc821a0f400 0xc821a0f4a0 0xc821a0f520] } +&{glBufferData QOpenGLFunctions_3_3_Compatibility::glBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a0f660 0xc821a0f6e0 0xc821a0f760 0xc821a0f7e0] } +&{glBufferSubData QOpenGLFunctions_3_3_Compatibility::glBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a0f920 0xc821a0f9a0 0xc821a0fa20 0xc821a0faa0] } +&{glCallList QOpenGLFunctions_3_3_Compatibility::glCallList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a0fc00] } +&{glCallLists QOpenGLFunctions_3_3_Compatibility::glCallLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a0fd40 0xc821a0fdc0 0xc821a0fe40] } +&{glCheckFramebufferStatus QOpenGLFunctions_3_3_Compatibility::glCheckFramebufferStatus commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLenum [0xc821a0ffe0] } +&{glClampColor QOpenGLFunctions_3_3_Compatibility::glClampColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a1e120 0xc821a1e1a0] } +&{glClear QOpenGLFunctions_3_3_Compatibility::glClear commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a1e300] } +&{glClearAccum QOpenGLFunctions_3_3_Compatibility::glClearAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a1e440 0xc821a1e4c0 0xc821a1e540 0xc821a1e5c0] } +&{glClearBufferfi QOpenGLFunctions_3_3_Compatibility::glClearBufferfi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a1e700 0xc821a1e780 0xc821a1e800 0xc821a1e880] } +&{glClearBufferfv QOpenGLFunctions_3_3_Compatibility::glClearBufferfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a1e9c0 0xc821a1ea40 0xc821a1eac0] } +&{glClearBufferiv QOpenGLFunctions_3_3_Compatibility::glClearBufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a1ec00 0xc821a1ec80 0xc821a1ed00] } +&{glClearBufferuiv QOpenGLFunctions_3_3_Compatibility::glClearBufferuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a1ee40 0xc821a1eec0 0xc821a1ef40] } +&{glClearColor QOpenGLFunctions_3_3_Compatibility::glClearColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a1f080 0xc821a1f100 0xc821a1f180 0xc821a1f200] } +&{glClearDepth QOpenGLFunctions_3_3_Compatibility::glClearDepth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a1f340] } +&{glClearIndex QOpenGLFunctions_3_3_Compatibility::glClearIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a1f4a0] } +&{glClearStencil QOpenGLFunctions_3_3_Compatibility::glClearStencil commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a1f600] } +&{glClientActiveTexture QOpenGLFunctions_3_3_Compatibility::glClientActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a1f7a0] } +&{glClientWaitSync QOpenGLFunctions_3_3_Compatibility::glClientWaitSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLenum [0xc821a1f8e0 0xc821a1f960 0xc821a1f9e0] } +&{glClipPlane QOpenGLFunctions_3_3_Compatibility::glClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a1fb20 0xc821a1fba0] } +&{glColor3b QOpenGLFunctions_3_3_Compatibility::glColor3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a1fce0 0xc821a1fd60 0xc821a1fde0] } +&{glColor3bv QOpenGLFunctions_3_3_Compatibility::glColor3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a1ff40] } +&{glColor3d QOpenGLFunctions_3_3_Compatibility::glColor3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a32080 0xc821a32100 0xc821a32180] } +&{glColor3dv QOpenGLFunctions_3_3_Compatibility::glColor3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a322c0] } +&{glColor3f QOpenGLFunctions_3_3_Compatibility::glColor3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a32400 0xc821a32480 0xc821a32500] } +&{glColor3fv QOpenGLFunctions_3_3_Compatibility::glColor3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a32640] } +&{glColor3i QOpenGLFunctions_3_3_Compatibility::glColor3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a32780 0xc821a32800 0xc821a32880] } +&{glColor3iv QOpenGLFunctions_3_3_Compatibility::glColor3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a329e0] } +&{glColor3s QOpenGLFunctions_3_3_Compatibility::glColor3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a32b20 0xc821a32ba0 0xc821a32c20] } +&{glColor3sv QOpenGLFunctions_3_3_Compatibility::glColor3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a32d60] } +&{glColor3ub QOpenGLFunctions_3_3_Compatibility::glColor3ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a32ea0 0xc821a32f20 0xc821a32fa0] } +&{glColor3ubv QOpenGLFunctions_3_3_Compatibility::glColor3ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a330e0] } +&{glColor3ui QOpenGLFunctions_3_3_Compatibility::glColor3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a33240 0xc821a332c0 0xc821a33340] } +&{glColor3uiv QOpenGLFunctions_3_3_Compatibility::glColor3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a33480] } +&{glColor3us QOpenGLFunctions_3_3_Compatibility::glColor3us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a335c0 0xc821a33640 0xc821a336c0] } +&{glColor3usv QOpenGLFunctions_3_3_Compatibility::glColor3usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a33800] } +&{glColor4b QOpenGLFunctions_3_3_Compatibility::glColor4b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a33940 0xc821a339c0 0xc821a33a40 0xc821a33ac0] } +&{glColor4bv QOpenGLFunctions_3_3_Compatibility::glColor4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a33c20] } +&{glColor4d QOpenGLFunctions_3_3_Compatibility::glColor4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a33d60 0xc821a33de0 0xc821a33e60 0xc821a33ee0] } +&{glColor4dv QOpenGLFunctions_3_3_Compatibility::glColor4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a44020] } +&{glColor4f QOpenGLFunctions_3_3_Compatibility::glColor4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a44160 0xc821a441e0 0xc821a44260 0xc821a442e0] } +&{glColor4fv QOpenGLFunctions_3_3_Compatibility::glColor4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a44420] } +&{glColor4i QOpenGLFunctions_3_3_Compatibility::glColor4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a44560 0xc821a445e0 0xc821a44660 0xc821a446e0] } +&{glColor4iv QOpenGLFunctions_3_3_Compatibility::glColor4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a44840] } +&{glColor4s QOpenGLFunctions_3_3_Compatibility::glColor4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a44980 0xc821a44a00 0xc821a44a80 0xc821a44b00] } +&{glColor4sv QOpenGLFunctions_3_3_Compatibility::glColor4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a44c40] } +&{glColor4ub QOpenGLFunctions_3_3_Compatibility::glColor4ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a44d80 0xc821a44e00 0xc821a44e80 0xc821a44f00] } +&{glColor4ubv QOpenGLFunctions_3_3_Compatibility::glColor4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a45040] } +&{glColor4ui QOpenGLFunctions_3_3_Compatibility::glColor4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a45180 0xc821a45200 0xc821a45280 0xc821a45300] } +&{glColor4uiv QOpenGLFunctions_3_3_Compatibility::glColor4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a45440] } +&{glColor4us QOpenGLFunctions_3_3_Compatibility::glColor4us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a45580 0xc821a45600 0xc821a45680 0xc821a45700] } +&{glColor4usv QOpenGLFunctions_3_3_Compatibility::glColor4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a45840] } +&{glColorMask QOpenGLFunctions_3_3_Compatibility::glColorMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a45980 0xc821a45a00 0xc821a45a80 0xc821a45b00] } +&{glColorMaski QOpenGLFunctions_3_3_Compatibility::glColorMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a45c40 0xc821a45cc0 0xc821a45d40 0xc821a45dc0 0xc821a45e60] } +&{glColorMaterial QOpenGLFunctions_3_3_Compatibility::glColorMaterial commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a45fa0 0xc821a58020] } +&{glColorP3ui QOpenGLFunctions_3_3_Compatibility::glColorP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a58160 0xc821a581e0] } +&{glColorP3uiv QOpenGLFunctions_3_3_Compatibility::glColorP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a58320 0xc821a583a0] } +&{glColorP4ui QOpenGLFunctions_3_3_Compatibility::glColorP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a584e0 0xc821a58560] } +&{glColorP4uiv QOpenGLFunctions_3_3_Compatibility::glColorP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a586a0 0xc821a58720] } +&{glColorPointer QOpenGLFunctions_3_3_Compatibility::glColorPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a58860 0xc821a588e0 0xc821a58960 0xc821a589e0] } +&{glColorSubTable QOpenGLFunctions_3_3_Compatibility::glColorSubTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a58b20 0xc821a58ba0 0xc821a58c20 0xc821a58ca0 0xc821a58d40 0xc821a58dc0] } +&{glColorTable QOpenGLFunctions_3_3_Compatibility::glColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a58f00 0xc821a58f80 0xc821a59000 0xc821a59080 0xc821a59120 0xc821a591a0] } +&{glColorTableParameterfv QOpenGLFunctions_3_3_Compatibility::glColorTableParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a59340 0xc821a593c0 0xc821a59440] } +&{glColorTableParameteriv QOpenGLFunctions_3_3_Compatibility::glColorTableParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a595e0 0xc821a59660 0xc821a596e0] } +&{glCompileShader QOpenGLFunctions_3_3_Compatibility::glCompileShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a59820] } +&{glCompressedTexImage1D QOpenGLFunctions_3_3_Compatibility::glCompressedTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a599c0 0xc821a59a40 0xc821a59ac0 0xc821a59b40 0xc821a59be0 0xc821a59c60 0xc821a59ce0] } +&{glCompressedTexImage2D QOpenGLFunctions_3_3_Compatibility::glCompressedTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a59e80 0xc821a59f00 0xc821a59f80 0xc821a6a000 0xc821a6a0a0 0xc821a6a120 0xc821a6a1a0 0xc821a6a220] } +&{glCompressedTexImage3D QOpenGLFunctions_3_3_Compatibility::glCompressedTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a6a3c0 0xc821a6a440 0xc821a6a4c0 0xc821a6a540 0xc821a6a5e0 0xc821a6a660 0xc821a6a6e0 0xc821a6a760 0xc821a6a800] } +&{glCompressedTexSubImage1D QOpenGLFunctions_3_3_Compatibility::glCompressedTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a6a9a0 0xc821a6aa20 0xc821a6aaa0 0xc821a6ab20 0xc821a6abc0 0xc821a6ac40 0xc821a6acc0] } +&{glCompressedTexSubImage2D QOpenGLFunctions_3_3_Compatibility::glCompressedTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a6ae60 0xc821a6aee0 0xc821a6af60 0xc821a6afe0 0xc821a6b080 0xc821a6b100 0xc821a6b180 0xc821a6b200 0xc821a6b2a0] } +&{glCompressedTexSubImage3D QOpenGLFunctions_3_3_Compatibility::glCompressedTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a6b440 0xc821a6b4c0 0xc821a6b540 0xc821a6b5c0 0xc821a6b660 0xc821a6b6e0 0xc821a6b760 0xc821a6b7e0 0xc821a6b880 0xc821a6b900 0xc821a6b980] } +&{glConvolutionFilter1D QOpenGLFunctions_3_3_Compatibility::glConvolutionFilter1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a6bb20 0xc821a6bba0 0xc821a6bc20 0xc821a6bca0 0xc821a6bd40 0xc821a6bdc0] } +&{glConvolutionFilter2D QOpenGLFunctions_3_3_Compatibility::glConvolutionFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a6bf60 0xc821a6bfe0 0xc821a7a060 0xc821a7a0e0 0xc821a7a180 0xc821a7a200 0xc821a7a280] } +&{glConvolutionParameterf QOpenGLFunctions_3_3_Compatibility::glConvolutionParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a7a420 0xc821a7a4a0 0xc821a7a520] } +&{glConvolutionParameterfv QOpenGLFunctions_3_3_Compatibility::glConvolutionParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a7a6c0 0xc821a7a740 0xc821a7a7c0] } +&{glConvolutionParameteri QOpenGLFunctions_3_3_Compatibility::glConvolutionParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a7a960 0xc821a7a9e0 0xc821a7aa60] } +&{glConvolutionParameteriv QOpenGLFunctions_3_3_Compatibility::glConvolutionParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a7ac00 0xc821a7ac80 0xc821a7ad00] } +&{glCopyBufferSubData QOpenGLFunctions_3_3_Compatibility::glCopyBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a7aea0 0xc821a7af20 0xc821a7afa0 0xc821a7b020 0xc821a7b0c0] } +&{glCopyColorSubTable QOpenGLFunctions_3_3_Compatibility::glCopyColorSubTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a7b260 0xc821a7b2e0 0xc821a7b360 0xc821a7b3e0 0xc821a7b480] } +&{glCopyColorTable QOpenGLFunctions_3_3_Compatibility::glCopyColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a7b5c0 0xc821a7b640 0xc821a7b6c0 0xc821a7b740 0xc821a7b7e0] } +&{glCopyConvolutionFilter1D QOpenGLFunctions_3_3_Compatibility::glCopyConvolutionFilter1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a7b980 0xc821a7ba00 0xc821a7ba80 0xc821a7bb00 0xc821a7bba0] } +&{glCopyConvolutionFilter2D QOpenGLFunctions_3_3_Compatibility::glCopyConvolutionFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a7bd40 0xc821a7bdc0 0xc821a7be40 0xc821a7bec0 0xc821a7bf60 0xc821a7bfe0] } +&{glCopyPixels QOpenGLFunctions_3_3_Compatibility::glCopyPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a86120 0xc821a861a0 0xc821a86220 0xc821a862a0 0xc821a86340] } +&{glCopyTexImage1D QOpenGLFunctions_3_3_Compatibility::glCopyTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a86480 0xc821a86500 0xc821a86580 0xc821a86600 0xc821a866a0 0xc821a86720 0xc821a867a0] } +&{glCopyTexImage2D QOpenGLFunctions_3_3_Compatibility::glCopyTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a868e0 0xc821a86960 0xc821a869e0 0xc821a86a60 0xc821a86b00 0xc821a86b80 0xc821a86c00 0xc821a86c80] } +&{glCopyTexSubImage1D QOpenGLFunctions_3_3_Compatibility::glCopyTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a86e20 0xc821a86ea0 0xc821a86f20 0xc821a86fa0 0xc821a87040 0xc821a870c0] } +&{glCopyTexSubImage2D QOpenGLFunctions_3_3_Compatibility::glCopyTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a87260 0xc821a872e0 0xc821a87360 0xc821a873e0 0xc821a87480 0xc821a87500 0xc821a87580 0xc821a87600] } +&{glCopyTexSubImage3D QOpenGLFunctions_3_3_Compatibility::glCopyTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a877a0 0xc821a87820 0xc821a878a0 0xc821a87920 0xc821a879c0 0xc821a87a40 0xc821a87ac0 0xc821a87b40 0xc821a87be0] } +&{glCreateProgram QOpenGLFunctions_3_3_Compatibility::glCreateProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLuint [] } +&{glCreateShader QOpenGLFunctions_3_3_Compatibility::glCreateShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLuint [0xc821a87da0] } +&{glCullFace QOpenGLFunctions_3_3_Compatibility::glCullFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a87f00] } +&{glDeleteBuffers QOpenGLFunctions_3_3_Compatibility::glDeleteBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a96040 0xc821a960c0] } +&{glDeleteFramebuffers QOpenGLFunctions_3_3_Compatibility::glDeleteFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a96260 0xc821a962e0] } +&{glDeleteLists QOpenGLFunctions_3_3_Compatibility::glDeleteLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a96420 0xc821a964a0] } +&{glDeleteProgram QOpenGLFunctions_3_3_Compatibility::glDeleteProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a965e0] } +&{glDeleteQueries QOpenGLFunctions_3_3_Compatibility::glDeleteQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a96720 0xc821a967a0] } +&{glDeleteRenderbuffers QOpenGLFunctions_3_3_Compatibility::glDeleteRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a96960 0xc821a969e0] } +&{glDeleteSamplers QOpenGLFunctions_3_3_Compatibility::glDeleteSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a96b20 0xc821a96ba0] } +&{glDeleteShader QOpenGLFunctions_3_3_Compatibility::glDeleteShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a96ce0] } +&{glDeleteSync QOpenGLFunctions_3_3_Compatibility::glDeleteSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a96e40] } +&{glDeleteTextures QOpenGLFunctions_3_3_Compatibility::glDeleteTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a96f80 0xc821a97000] } +&{glDeleteVertexArrays QOpenGLFunctions_3_3_Compatibility::glDeleteVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a971a0 0xc821a97220] } +&{glDepthFunc QOpenGLFunctions_3_3_Compatibility::glDepthFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a97380] } +&{glDepthMask QOpenGLFunctions_3_3_Compatibility::glDepthMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a974e0] } +&{glDepthRange QOpenGLFunctions_3_3_Compatibility::glDepthRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a97620 0xc821a976a0] } +&{glDetachShader QOpenGLFunctions_3_3_Compatibility::glDetachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a977e0 0xc821a97860] } +&{glDisable QOpenGLFunctions_3_3_Compatibility::glDisable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a979c0] } +&{glDisableClientState QOpenGLFunctions_3_3_Compatibility::glDisableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a97b60] } +&{glDisableVertexAttribArray QOpenGLFunctions_3_3_Compatibility::glDisableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a97d00] } +&{glDisablei QOpenGLFunctions_3_3_Compatibility::glDisablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821a97e40 0xc821a97ec0] } +&{glDrawArrays QOpenGLFunctions_3_3_Compatibility::glDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ab0000 0xc821ab0080 0xc821ab0100] } +&{glDrawArraysInstanced QOpenGLFunctions_3_3_Compatibility::glDrawArraysInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ab02a0 0xc821ab0320 0xc821ab03a0 0xc821ab0420] } +&{glDrawBuffer QOpenGLFunctions_3_3_Compatibility::glDrawBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ab0580] } +&{glDrawBuffers QOpenGLFunctions_3_3_Compatibility::glDrawBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ab06c0 0xc821ab0740] } +&{glDrawElements QOpenGLFunctions_3_3_Compatibility::glDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ab0880 0xc821ab0900 0xc821ab0980 0xc821ab0a00] } +&{glDrawElementsBaseVertex QOpenGLFunctions_3_3_Compatibility::glDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ab0ba0 0xc821ab0c20 0xc821ab0ca0 0xc821ab0d20 0xc821ab0dc0] } +&{glDrawElementsInstanced QOpenGLFunctions_3_3_Compatibility::glDrawElementsInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ab0f60 0xc821ab0fe0 0xc821ab1060 0xc821ab10e0 0xc821ab1180] } +&{glDrawElementsInstancedBaseVertex QOpenGLFunctions_3_3_Compatibility::glDrawElementsInstancedBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ab12c0 0xc821ab1340 0xc821ab13c0 0xc821ab1440 0xc821ab14e0 0xc821ab1560] } +&{glDrawPixels QOpenGLFunctions_3_3_Compatibility::glDrawPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ab16a0 0xc821ab1720 0xc821ab17a0 0xc821ab1820 0xc821ab18c0] } +&{glDrawRangeElements QOpenGLFunctions_3_3_Compatibility::glDrawRangeElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ab1a60 0xc821ab1ae0 0xc821ab1b60 0xc821ab1be0 0xc821ab1c80 0xc821ab1d00] } +&{glDrawRangeElementsBaseVertex QOpenGLFunctions_3_3_Compatibility::glDrawRangeElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ab1ea0 0xc821ab1f20 0xc821ab1fa0 0xc821aba020 0xc821aba0c0 0xc821aba140 0xc821aba1c0] } +&{glEdgeFlag QOpenGLFunctions_3_3_Compatibility::glEdgeFlag commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821aba320] } +&{glEdgeFlagPointer QOpenGLFunctions_3_3_Compatibility::glEdgeFlagPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821aba4c0 0xc821aba540] } +&{glEdgeFlagv QOpenGLFunctions_3_3_Compatibility::glEdgeFlagv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821aba6a0] } +&{glEnable QOpenGLFunctions_3_3_Compatibility::glEnable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821aba840] } +&{glEnableClientState QOpenGLFunctions_3_3_Compatibility::glEnableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821aba9e0] } +&{glEnableVertexAttribArray QOpenGLFunctions_3_3_Compatibility::glEnableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821abab80] } +&{glEnablei QOpenGLFunctions_3_3_Compatibility::glEnablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821abacc0 0xc821abad40] } +&{glEnd QOpenGLFunctions_3_3_Compatibility::glEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [] } +&{glEndConditionalRender QOpenGLFunctions_3_3_Compatibility::glEndConditionalRender commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [] } +&{glEndList QOpenGLFunctions_3_3_Compatibility::glEndList commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [] } +&{glEndQuery QOpenGLFunctions_3_3_Compatibility::glEndQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821abb040] } +&{glEndTransformFeedback QOpenGLFunctions_3_3_Compatibility::glEndTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [] } +&{glEvalCoord1d QOpenGLFunctions_3_3_Compatibility::glEvalCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821abb280] } +&{glEvalCoord1dv QOpenGLFunctions_3_3_Compatibility::glEvalCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821abb3c0] } +&{glEvalCoord1f QOpenGLFunctions_3_3_Compatibility::glEvalCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821abb520] } +&{glEvalCoord1fv QOpenGLFunctions_3_3_Compatibility::glEvalCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821abb660] } +&{glEvalCoord2d QOpenGLFunctions_3_3_Compatibility::glEvalCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821abb7a0 0xc821abb820] } +&{glEvalCoord2dv QOpenGLFunctions_3_3_Compatibility::glEvalCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821abb960] } +&{glEvalCoord2f QOpenGLFunctions_3_3_Compatibility::glEvalCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821abbaa0 0xc821abbb20] } +&{glEvalCoord2fv QOpenGLFunctions_3_3_Compatibility::glEvalCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821abbc60] } +&{glEvalMesh1 QOpenGLFunctions_3_3_Compatibility::glEvalMesh1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821abbda0 0xc821abbe20 0xc821abbea0] } +&{glEvalMesh2 QOpenGLFunctions_3_3_Compatibility::glEvalMesh2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821abbfe0 0xc821ad4060 0xc821ad40e0 0xc821ad4160 0xc821ad4200] } +&{glEvalPoint1 QOpenGLFunctions_3_3_Compatibility::glEvalPoint1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ad4360] } +&{glEvalPoint2 QOpenGLFunctions_3_3_Compatibility::glEvalPoint2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ad44a0 0xc821ad4520] } +&{glFeedbackBuffer QOpenGLFunctions_3_3_Compatibility::glFeedbackBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ad4660 0xc821ad46e0 0xc821ad4760] } +&{glFenceSync QOpenGLFunctions_3_3_Compatibility::glFenceSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLsync [0xc821ad48a0 0xc821ad4920] } +&{glFinish QOpenGLFunctions_3_3_Compatibility::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [] } +&{glFlush QOpenGLFunctions_3_3_Compatibility::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [] } +&{glFlushMappedBufferRange QOpenGLFunctions_3_3_Compatibility::glFlushMappedBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ad4b80 0xc821ad4c00 0xc821ad4c80] } +&{glFogCoordPointer QOpenGLFunctions_3_3_Compatibility::glFogCoordPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ad4e20 0xc821ad4ea0 0xc821ad4f20] } +&{glFogCoordd QOpenGLFunctions_3_3_Compatibility::glFogCoordd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ad5080] } +&{glFogCoorddv QOpenGLFunctions_3_3_Compatibility::glFogCoorddv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ad51c0] } +&{glFogCoordf QOpenGLFunctions_3_3_Compatibility::glFogCoordf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ad5320] } +&{glFogCoordfv QOpenGLFunctions_3_3_Compatibility::glFogCoordfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ad5460] } +&{glFogf QOpenGLFunctions_3_3_Compatibility::glFogf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ad55a0 0xc821ad5620] } +&{glFogfv QOpenGLFunctions_3_3_Compatibility::glFogfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ad5760 0xc821ad57e0] } +&{glFogi QOpenGLFunctions_3_3_Compatibility::glFogi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ad5920 0xc821ad59a0] } +&{glFogiv QOpenGLFunctions_3_3_Compatibility::glFogiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ad5ae0 0xc821ad5b60] } +&{glFramebufferRenderbuffer QOpenGLFunctions_3_3_Compatibility::glFramebufferRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ad5d00 0xc821ad5d80 0xc821ad5e20 0xc821ad5ee0] } +&{glFramebufferTexture QOpenGLFunctions_3_3_Compatibility::glFramebufferTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ae8080 0xc821ae8100 0xc821ae8180 0xc821ae8200] } +&{glFramebufferTexture1D QOpenGLFunctions_3_3_Compatibility::glFramebufferTexture1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ae83a0 0xc821ae8420 0xc821ae84a0 0xc821ae8520 0xc821ae85c0] } +&{glFramebufferTexture2D QOpenGLFunctions_3_3_Compatibility::glFramebufferTexture2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ae8760 0xc821ae87e0 0xc821ae8860 0xc821ae88e0 0xc821ae8980] } +&{glFramebufferTexture3D QOpenGLFunctions_3_3_Compatibility::glFramebufferTexture3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ae8b20 0xc821ae8ba0 0xc821ae8c20 0xc821ae8ca0 0xc821ae8d40 0xc821ae8dc0] } +&{glFramebufferTextureLayer QOpenGLFunctions_3_3_Compatibility::glFramebufferTextureLayer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ae8f60 0xc821ae8fe0 0xc821ae9060 0xc821ae90e0 0xc821ae9180] } +&{glFrontFace QOpenGLFunctions_3_3_Compatibility::glFrontFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ae92e0] } +&{glFrustum QOpenGLFunctions_3_3_Compatibility::glFrustum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ae9420 0xc821ae94a0 0xc821ae9520 0xc821ae95a0 0xc821ae9640 0xc821ae96c0] } +&{glGenBuffers QOpenGLFunctions_3_3_Compatibility::glGenBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ae9800 0xc821ae9880] } +&{glGenFramebuffers QOpenGLFunctions_3_3_Compatibility::glGenFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ae9a20 0xc821ae9aa0] } +&{glGenLists QOpenGLFunctions_3_3_Compatibility::glGenLists commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLuint [0xc821ae9c00] } +&{glGenQueries QOpenGLFunctions_3_3_Compatibility::glGenQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ae9d40 0xc821ae9dc0] } +&{glGenRenderbuffers QOpenGLFunctions_3_3_Compatibility::glGenRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ae9f60 0xc821ae9fe0] } +&{glGenSamplers QOpenGLFunctions_3_3_Compatibility::glGenSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821afa120 0xc821afa1a0] } +&{glGenTextures QOpenGLFunctions_3_3_Compatibility::glGenTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821afa2e0 0xc821afa360] } +&{glGenVertexArrays QOpenGLFunctions_3_3_Compatibility::glGenVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821afa500 0xc821afa580] } +&{glGenerateMipmap QOpenGLFunctions_3_3_Compatibility::glGenerateMipmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821afa6c0] } +&{glGetActiveAttrib QOpenGLFunctions_3_3_Compatibility::glGetActiveAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821afa860 0xc821afa8e0 0xc821afa960 0xc821afa9e0 0xc821afaa80 0xc821afab00 0xc821afab80] } +&{glGetActiveUniform QOpenGLFunctions_3_3_Compatibility::glGetActiveUniform commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821afad20 0xc821afada0 0xc821afae20 0xc821afaea0 0xc821afaf40 0xc821afafc0 0xc821afb040] } +&{glGetActiveUniformBlockName QOpenGLFunctions_3_3_Compatibility::glGetActiveUniformBlockName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821afb1e0 0xc821afb280 0xc821afb340 0xc821afb3c0 0xc821afb460] } +&{glGetActiveUniformBlockiv QOpenGLFunctions_3_3_Compatibility::glGetActiveUniformBlockiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821afb600 0xc821afb6a0 0xc821afb760 0xc821afb7e0] } +&{glGetActiveUniformName QOpenGLFunctions_3_3_Compatibility::glGetActiveUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821afb980 0xc821afba00 0xc821afba80 0xc821afbb00 0xc821afbba0] } +&{glGetActiveUniformsiv QOpenGLFunctions_3_3_Compatibility::glGetActiveUniformsiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821afbd40 0xc821afbdc0 0xc821afbe40 0xc821afbec0 0xc821afbf60] } +&{glGetAttachedShaders QOpenGLFunctions_3_3_Compatibility::glGetAttachedShaders commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b0a100 0xc821b0a180 0xc821b0a200 0xc821b0a280] } +&{glGetAttribLocation QOpenGLFunctions_3_3_Compatibility::glGetAttribLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLint [0xc821b0a420 0xc821b0a4a0] } +&{glGetBooleani_v QOpenGLFunctions_3_3_Compatibility::glGetBooleani_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b0a5e0 0xc821b0a660 0xc821b0a6e0] } +&{glGetBooleanv QOpenGLFunctions_3_3_Compatibility::glGetBooleanv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b0a820 0xc821b0a8a0] } +&{glGetBufferParameteri64v QOpenGLFunctions_3_3_Compatibility::glGetBufferParameteri64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b0aa40 0xc821b0aac0 0xc821b0ab40] } +&{glGetBufferParameteriv QOpenGLFunctions_3_3_Compatibility::glGetBufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b0ace0 0xc821b0ad60 0xc821b0ade0] } +&{glGetBufferPointerv QOpenGLFunctions_3_3_Compatibility::glGetBufferPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b0af80 0xc821b0b000 0xc821b0b080] } +&{glGetBufferSubData QOpenGLFunctions_3_3_Compatibility::glGetBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b0b220 0xc821b0b2a0 0xc821b0b320 0xc821b0b3a0] } +&{glGetClipPlane QOpenGLFunctions_3_3_Compatibility::glGetClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b0b4e0 0xc821b0b560] } +&{glGetColorTable QOpenGLFunctions_3_3_Compatibility::glGetColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b0b6a0 0xc821b0b720 0xc821b0b7a0 0xc821b0b820] } +&{glGetColorTableParameterfv QOpenGLFunctions_3_3_Compatibility::glGetColorTableParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b0b9c0 0xc821b0ba40 0xc821b0bac0] } +&{glGetColorTableParameteriv QOpenGLFunctions_3_3_Compatibility::glGetColorTableParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b0bc60 0xc821b0bce0 0xc821b0bd60] } +&{glGetCompressedTexImage QOpenGLFunctions_3_3_Compatibility::glGetCompressedTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b0bf00 0xc821b0bf80 0xc821b1a000] } +&{glGetConvolutionFilter QOpenGLFunctions_3_3_Compatibility::glGetConvolutionFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b1a1a0 0xc821b1a220 0xc821b1a2a0 0xc821b1a320] } +&{glGetConvolutionParameterfv QOpenGLFunctions_3_3_Compatibility::glGetConvolutionParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b1a4c0 0xc821b1a540 0xc821b1a5c0] } +&{glGetConvolutionParameteriv QOpenGLFunctions_3_3_Compatibility::glGetConvolutionParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b1a760 0xc821b1a7e0 0xc821b1a860] } +&{glGetDoublev QOpenGLFunctions_3_3_Compatibility::glGetDoublev commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b1a9a0 0xc821b1aa20] } +&{glGetError QOpenGLFunctions_3_3_Compatibility::glGetError commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLenum [] } +&{glGetFloatv QOpenGLFunctions_3_3_Compatibility::glGetFloatv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b1abe0 0xc821b1ac60] } +&{glGetFragDataIndex QOpenGLFunctions_3_3_Compatibility::glGetFragDataIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLint [0xc821b1ae00 0xc821b1ae80] } +&{glGetFragDataLocation QOpenGLFunctions_3_3_Compatibility::glGetFragDataLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLint [0xc821b1b020 0xc821b1b0a0] } +&{glGetFramebufferAttachmentParameteriv QOpenGLFunctions_3_3_Compatibility::glGetFramebufferAttachmentParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b1b1e0 0xc821b1b260 0xc821b1b2e0 0xc821b1b360] } +&{glGetHistogram QOpenGLFunctions_3_3_Compatibility::glGetHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b1b4a0 0xc821b1b520 0xc821b1b5a0 0xc821b1b620 0xc821b1b6c0] } +&{glGetHistogramParameterfv QOpenGLFunctions_3_3_Compatibility::glGetHistogramParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b1b860 0xc821b1b8e0 0xc821b1b960] } +&{glGetHistogramParameteriv QOpenGLFunctions_3_3_Compatibility::glGetHistogramParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b1bb00 0xc821b1bb80 0xc821b1bc00] } +&{glGetInteger64i_v QOpenGLFunctions_3_3_Compatibility::glGetInteger64i_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b1bda0 0xc821b1be20 0xc821b1bea0] } +&{glGetInteger64v QOpenGLFunctions_3_3_Compatibility::glGetInteger64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b1bfe0 0xc821b2a060] } +&{glGetIntegeri_v QOpenGLFunctions_3_3_Compatibility::glGetIntegeri_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b2a1a0 0xc821b2a220 0xc821b2a2a0] } +&{glGetIntegerv QOpenGLFunctions_3_3_Compatibility::glGetIntegerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b2a3e0 0xc821b2a460] } +&{glGetLightfv QOpenGLFunctions_3_3_Compatibility::glGetLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b2a5a0 0xc821b2a620 0xc821b2a6a0] } +&{glGetLightiv QOpenGLFunctions_3_3_Compatibility::glGetLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b2a7e0 0xc821b2a860 0xc821b2a8e0] } +&{glGetMapdv QOpenGLFunctions_3_3_Compatibility::glGetMapdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b2aa20 0xc821b2aaa0 0xc821b2ab20] } +&{glGetMapfv QOpenGLFunctions_3_3_Compatibility::glGetMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b2ac60 0xc821b2ace0 0xc821b2ad60] } +&{glGetMapiv QOpenGLFunctions_3_3_Compatibility::glGetMapiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b2aea0 0xc821b2af20 0xc821b2afa0] } +&{glGetMaterialfv QOpenGLFunctions_3_3_Compatibility::glGetMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b2b0e0 0xc821b2b160 0xc821b2b1e0] } +&{glGetMaterialiv QOpenGLFunctions_3_3_Compatibility::glGetMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b2b320 0xc821b2b3a0 0xc821b2b420] } +&{glGetMinmax QOpenGLFunctions_3_3_Compatibility::glGetMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b2b560 0xc821b2b5e0 0xc821b2b660 0xc821b2b6e0 0xc821b2b780] } +&{glGetMinmaxParameterfv QOpenGLFunctions_3_3_Compatibility::glGetMinmaxParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b2b920 0xc821b2b9a0 0xc821b2ba20] } +&{glGetMinmaxParameteriv QOpenGLFunctions_3_3_Compatibility::glGetMinmaxParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b2bbc0 0xc821b2bc40 0xc821b2bcc0] } +&{glGetMultisamplefv QOpenGLFunctions_3_3_Compatibility::glGetMultisamplefv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b2be60 0xc821b2bee0 0xc821b2bf60] } +&{glGetPixelMapfv QOpenGLFunctions_3_3_Compatibility::glGetPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b3a0a0 0xc821b3a120] } +&{glGetPixelMapuiv QOpenGLFunctions_3_3_Compatibility::glGetPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b3a260 0xc821b3a2e0] } +&{glGetPixelMapusv QOpenGLFunctions_3_3_Compatibility::glGetPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b3a440 0xc821b3a4c0] } +&{glGetPointerv QOpenGLFunctions_3_3_Compatibility::glGetPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b3a600 0xc821b3a680] } +&{glGetPolygonStipple QOpenGLFunctions_3_3_Compatibility::glGetPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b3a820] } +&{glGetProgramInfoLog QOpenGLFunctions_3_3_Compatibility::glGetProgramInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b3a9c0 0xc821b3aa40 0xc821b3aac0 0xc821b3ab40] } +&{glGetProgramiv QOpenGLFunctions_3_3_Compatibility::glGetProgramiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b3ac80 0xc821b3ad00 0xc821b3ad80] } +&{glGetQueryObjecti64v QOpenGLFunctions_3_3_Compatibility::glGetQueryObjecti64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b3af20 0xc821b3afa0 0xc821b3b020] } +&{glGetQueryObjectiv QOpenGLFunctions_3_3_Compatibility::glGetQueryObjectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b3b1c0 0xc821b3b240 0xc821b3b2c0] } +&{glGetQueryObjectui64v QOpenGLFunctions_3_3_Compatibility::glGetQueryObjectui64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b3b460 0xc821b3b4e0 0xc821b3b560] } +&{glGetQueryObjectuiv QOpenGLFunctions_3_3_Compatibility::glGetQueryObjectuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b3b700 0xc821b3b780 0xc821b3b800] } +&{glGetQueryiv QOpenGLFunctions_3_3_Compatibility::glGetQueryiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b3b940 0xc821b3b9c0 0xc821b3ba40] } +&{glGetRenderbufferParameteriv QOpenGLFunctions_3_3_Compatibility::glGetRenderbufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b3bbe0 0xc821b3bc60 0xc821b3bce0] } +&{glGetSamplerParameterIiv QOpenGLFunctions_3_3_Compatibility::glGetSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b3be80 0xc821b3bf00 0xc821b3bf80] } +&{glGetSamplerParameterIuiv QOpenGLFunctions_3_3_Compatibility::glGetSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b50120 0xc821b501a0 0xc821b50220] } +&{glGetSamplerParameterfv QOpenGLFunctions_3_3_Compatibility::glGetSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b503c0 0xc821b50440 0xc821b504c0] } +&{glGetSamplerParameteriv QOpenGLFunctions_3_3_Compatibility::glGetSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b50660 0xc821b506e0 0xc821b50760] } +&{glGetSeparableFilter QOpenGLFunctions_3_3_Compatibility::glGetSeparableFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b50900 0xc821b50980 0xc821b50a00 0xc821b50a80 0xc821b50b20 0xc821b50ba0] } +&{glGetShaderInfoLog QOpenGLFunctions_3_3_Compatibility::glGetShaderInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b50d40 0xc821b50dc0 0xc821b50e40 0xc821b50ec0] } +&{glGetShaderSource QOpenGLFunctions_3_3_Compatibility::glGetShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b51060 0xc821b510e0 0xc821b51160 0xc821b511e0] } +&{glGetShaderiv QOpenGLFunctions_3_3_Compatibility::glGetShaderiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b51320 0xc821b513a0 0xc821b51420] } +&{glGetString QOpenGLFunctions_3_3_Compatibility::glGetString commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false const GLubyte * [0xc821b51560] } +&{glGetStringi QOpenGLFunctions_3_3_Compatibility::glGetStringi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false const GLubyte * [0xc821b516a0 0xc821b51720] } +&{glGetSynciv QOpenGLFunctions_3_3_Compatibility::glGetSynciv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b51860 0xc821b518e0 0xc821b51960 0xc821b519e0 0xc821b51a80] } +&{glGetTexEnvfv QOpenGLFunctions_3_3_Compatibility::glGetTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b51bc0 0xc821b51c40 0xc821b51cc0] } +&{glGetTexEnviv QOpenGLFunctions_3_3_Compatibility::glGetTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b51e00 0xc821b51e80 0xc821b51f00] } +&{glGetTexGendv QOpenGLFunctions_3_3_Compatibility::glGetTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b5e040 0xc821b5e0c0 0xc821b5e140] } +&{glGetTexGenfv QOpenGLFunctions_3_3_Compatibility::glGetTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b5e280 0xc821b5e300 0xc821b5e380] } +&{glGetTexGeniv QOpenGLFunctions_3_3_Compatibility::glGetTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b5e4c0 0xc821b5e540 0xc821b5e5c0] } +&{glGetTexImage QOpenGLFunctions_3_3_Compatibility::glGetTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b5e700 0xc821b5e780 0xc821b5e800 0xc821b5e880 0xc821b5e920] } +&{glGetTexLevelParameterfv QOpenGLFunctions_3_3_Compatibility::glGetTexLevelParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b5eac0 0xc821b5eb40 0xc821b5ebc0 0xc821b5ec40] } +&{glGetTexLevelParameteriv QOpenGLFunctions_3_3_Compatibility::glGetTexLevelParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b5ede0 0xc821b5ee60 0xc821b5eee0 0xc821b5ef60] } +&{glGetTexParameterIiv QOpenGLFunctions_3_3_Compatibility::glGetTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b5f100 0xc821b5f180 0xc821b5f200] } +&{glGetTexParameterIuiv QOpenGLFunctions_3_3_Compatibility::glGetTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b5f3a0 0xc821b5f420 0xc821b5f4a0] } +&{glGetTexParameterfv QOpenGLFunctions_3_3_Compatibility::glGetTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b5f640 0xc821b5f6c0 0xc821b5f740] } +&{glGetTexParameteriv QOpenGLFunctions_3_3_Compatibility::glGetTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b5f8e0 0xc821b5f960 0xc821b5f9e0] } +&{glGetTransformFeedbackVarying QOpenGLFunctions_3_3_Compatibility::glGetTransformFeedbackVarying commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b5fb80 0xc821b5fc00 0xc821b5fc80 0xc821b5fd00 0xc821b5fda0 0xc821b5fe20 0xc821b5fea0] } +&{glGetUniformBlockIndex QOpenGLFunctions_3_3_Compatibility::glGetUniformBlockIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLuint [0xc821b6e040 0xc821b6e0c0] } +&{glGetUniformIndices QOpenGLFunctions_3_3_Compatibility::glGetUniformIndices commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b6e260 0xc821b6e2e0 0xc821b6e380 0xc821b6e440] } +&{glGetUniformLocation QOpenGLFunctions_3_3_Compatibility::glGetUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLint [0xc821b6e5e0 0xc821b6e660] } +&{glGetUniformfv QOpenGLFunctions_3_3_Compatibility::glGetUniformfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b6e7a0 0xc821b6e820 0xc821b6e8a0] } +&{glGetUniformiv QOpenGLFunctions_3_3_Compatibility::glGetUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b6e9e0 0xc821b6ea60 0xc821b6eae0] } +&{glGetUniformuiv QOpenGLFunctions_3_3_Compatibility::glGetUniformuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b6ec20 0xc821b6eca0 0xc821b6ed20] } +&{glGetVertexAttribIiv QOpenGLFunctions_3_3_Compatibility::glGetVertexAttribIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b6eec0 0xc821b6ef40 0xc821b6efc0] } +&{glGetVertexAttribIuiv QOpenGLFunctions_3_3_Compatibility::glGetVertexAttribIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b6f160 0xc821b6f1e0 0xc821b6f260] } +&{glGetVertexAttribPointerv QOpenGLFunctions_3_3_Compatibility::glGetVertexAttribPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b6f400 0xc821b6f480 0xc821b6f500] } +&{glGetVertexAttribdv QOpenGLFunctions_3_3_Compatibility::glGetVertexAttribdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b6f6a0 0xc821b6f720 0xc821b6f7a0] } +&{glGetVertexAttribfv QOpenGLFunctions_3_3_Compatibility::glGetVertexAttribfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b6f940 0xc821b6f9c0 0xc821b6fa40] } +&{glGetVertexAttribiv QOpenGLFunctions_3_3_Compatibility::glGetVertexAttribiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b6fbe0 0xc821b6fc60 0xc821b6fce0] } +&{glHint QOpenGLFunctions_3_3_Compatibility::glHint commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b6fe20 0xc821b6fea0] } +&{glHistogram QOpenGLFunctions_3_3_Compatibility::glHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b6ffe0 0xc821b82060 0xc821b820e0 0xc821b82160] } +&{glIndexMask QOpenGLFunctions_3_3_Compatibility::glIndexMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b822c0] } +&{glIndexPointer QOpenGLFunctions_3_3_Compatibility::glIndexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b82400 0xc821b82480 0xc821b82500] } +&{glIndexd QOpenGLFunctions_3_3_Compatibility::glIndexd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b82660] } +&{glIndexdv QOpenGLFunctions_3_3_Compatibility::glIndexdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b827a0] } +&{glIndexf QOpenGLFunctions_3_3_Compatibility::glIndexf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b82900] } +&{glIndexfv QOpenGLFunctions_3_3_Compatibility::glIndexfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b82a60] } +&{glIndexi QOpenGLFunctions_3_3_Compatibility::glIndexi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b82bc0] } +&{glIndexiv QOpenGLFunctions_3_3_Compatibility::glIndexiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b82d20] } +&{glIndexs QOpenGLFunctions_3_3_Compatibility::glIndexs commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b82e80] } +&{glIndexsv QOpenGLFunctions_3_3_Compatibility::glIndexsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b82fe0] } +&{glIndexub QOpenGLFunctions_3_3_Compatibility::glIndexub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b83140] } +&{glIndexubv QOpenGLFunctions_3_3_Compatibility::glIndexubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b83280] } +&{glInitNames QOpenGLFunctions_3_3_Compatibility::glInitNames commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [] } +&{glInterleavedArrays QOpenGLFunctions_3_3_Compatibility::glInterleavedArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b834a0 0xc821b83520 0xc821b835a0] } +&{glIsBuffer QOpenGLFunctions_3_3_Compatibility::glIsBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLboolean [0xc821b836e0] } +&{glIsEnabled QOpenGLFunctions_3_3_Compatibility::glIsEnabled commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLboolean [0xc821b83820] } +&{glIsEnabledi QOpenGLFunctions_3_3_Compatibility::glIsEnabledi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLboolean [0xc821b83960 0xc821b839e0] } +&{glIsFramebuffer QOpenGLFunctions_3_3_Compatibility::glIsFramebuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLboolean [0xc821b83b20] } +&{glIsList QOpenGLFunctions_3_3_Compatibility::glIsList commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLboolean [0xc821b83c80] } +&{glIsProgram QOpenGLFunctions_3_3_Compatibility::glIsProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLboolean [0xc821b83dc0] } +&{glIsQuery QOpenGLFunctions_3_3_Compatibility::glIsQuery commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLboolean [0xc821b83f20] } +&{glIsRenderbuffer QOpenGLFunctions_3_3_Compatibility::glIsRenderbuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLboolean [0xc821b9a060] } +&{glIsSampler QOpenGLFunctions_3_3_Compatibility::glIsSampler commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLboolean [0xc821b9a1a0] } +&{glIsShader QOpenGLFunctions_3_3_Compatibility::glIsShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLboolean [0xc821b9a2e0] } +&{glIsSync QOpenGLFunctions_3_3_Compatibility::glIsSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLboolean [0xc821b9a440] } +&{glIsTexture QOpenGLFunctions_3_3_Compatibility::glIsTexture commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLboolean [0xc821b9a580] } +&{glIsVertexArray QOpenGLFunctions_3_3_Compatibility::glIsVertexArray commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLboolean [0xc821b9a6c0] } +&{glLightModelf QOpenGLFunctions_3_3_Compatibility::glLightModelf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b9a800 0xc821b9a880] } +&{glLightModelfv QOpenGLFunctions_3_3_Compatibility::glLightModelfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b9a9c0 0xc821b9aa40] } +&{glLightModeli QOpenGLFunctions_3_3_Compatibility::glLightModeli commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b9ab80 0xc821b9ac00] } +&{glLightModeliv QOpenGLFunctions_3_3_Compatibility::glLightModeliv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b9ad40 0xc821b9adc0] } +&{glLightf QOpenGLFunctions_3_3_Compatibility::glLightf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b9af00 0xc821b9af80 0xc821b9b000] } +&{glLightfv QOpenGLFunctions_3_3_Compatibility::glLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b9b140 0xc821b9b1c0 0xc821b9b240] } +&{glLighti QOpenGLFunctions_3_3_Compatibility::glLighti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b9b380 0xc821b9b400 0xc821b9b480] } +&{glLightiv QOpenGLFunctions_3_3_Compatibility::glLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b9b5c0 0xc821b9b640 0xc821b9b6c0] } +&{glLineStipple QOpenGLFunctions_3_3_Compatibility::glLineStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b9b800 0xc821b9b880] } +&{glLineWidth QOpenGLFunctions_3_3_Compatibility::glLineWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b9b9e0] } +&{glLinkProgram QOpenGLFunctions_3_3_Compatibility::glLinkProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b9bb20] } +&{glListBase QOpenGLFunctions_3_3_Compatibility::glListBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b9bc80] } +&{glLoadIdentity QOpenGLFunctions_3_3_Compatibility::glLoadIdentity commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [] } +&{glLoadMatrixd QOpenGLFunctions_3_3_Compatibility::glLoadMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b9be40] } +&{glLoadMatrixf QOpenGLFunctions_3_3_Compatibility::glLoadMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821b9bf80] } +&{glLoadName QOpenGLFunctions_3_3_Compatibility::glLoadName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bac0e0] } +&{glLoadTransposeMatrixd QOpenGLFunctions_3_3_Compatibility::glLoadTransposeMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bac280] } +&{glLoadTransposeMatrixf QOpenGLFunctions_3_3_Compatibility::glLoadTransposeMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bac420] } +&{glLogicOp QOpenGLFunctions_3_3_Compatibility::glLogicOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bac580] } +&{glMap1d QOpenGLFunctions_3_3_Compatibility::glMap1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bac6c0 0xc821bac740 0xc821bac7c0 0xc821bac840 0xc821bac8e0 0xc821bac960] } +&{glMap1f QOpenGLFunctions_3_3_Compatibility::glMap1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bacaa0 0xc821bacb20 0xc821bacba0 0xc821bacc20 0xc821baccc0 0xc821bacd40] } +&{glMap2d QOpenGLFunctions_3_3_Compatibility::glMap2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bace80 0xc821bacf00 0xc821bacf80 0xc821bad000 0xc821bad0a0 0xc821bad120 0xc821bad1a0 0xc821bad220 0xc821bad2c0 0xc821bad340] } +&{glMap2f QOpenGLFunctions_3_3_Compatibility::glMap2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bad480 0xc821bad500 0xc821bad580 0xc821bad600 0xc821bad6a0 0xc821bad720 0xc821bad7a0 0xc821bad820 0xc821bad8c0 0xc821bad940] } +&{glMapBuffer QOpenGLFunctions_3_3_Compatibility::glMapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLvoid * [0xc821bada80 0xc821badb00] } +&{glMapBufferRange QOpenGLFunctions_3_3_Compatibility::glMapBufferRange commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLvoid * [0xc821badc40 0xc821badcc0 0xc821badd40 0xc821baddc0] } +&{glMapGrid1d QOpenGLFunctions_3_3_Compatibility::glMapGrid1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821badf00 0xc821badf80 0xc821bbe000] } +&{glMapGrid1f QOpenGLFunctions_3_3_Compatibility::glMapGrid1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bbe140 0xc821bbe1c0 0xc821bbe240] } +&{glMapGrid2d QOpenGLFunctions_3_3_Compatibility::glMapGrid2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bbe380 0xc821bbe400 0xc821bbe480 0xc821bbe500 0xc821bbe5a0 0xc821bbe620] } +&{glMapGrid2f QOpenGLFunctions_3_3_Compatibility::glMapGrid2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bbe760 0xc821bbe7e0 0xc821bbe860 0xc821bbe8e0 0xc821bbe980 0xc821bbea00] } +&{glMaterialf QOpenGLFunctions_3_3_Compatibility::glMaterialf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bbeb40 0xc821bbebc0 0xc821bbec40] } +&{glMaterialfv QOpenGLFunctions_3_3_Compatibility::glMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bbed80 0xc821bbee00 0xc821bbee80] } +&{glMateriali QOpenGLFunctions_3_3_Compatibility::glMateriali commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bbefc0 0xc821bbf040 0xc821bbf0c0] } +&{glMaterialiv QOpenGLFunctions_3_3_Compatibility::glMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bbf200 0xc821bbf280 0xc821bbf300] } +&{glMatrixMode QOpenGLFunctions_3_3_Compatibility::glMatrixMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bbf460] } +&{glMinmax QOpenGLFunctions_3_3_Compatibility::glMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bbf5a0 0xc821bbf620 0xc821bbf6a0] } +&{glMultMatrixd QOpenGLFunctions_3_3_Compatibility::glMultMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bbf7e0] } +&{glMultMatrixf QOpenGLFunctions_3_3_Compatibility::glMultMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bbf920] } +&{glMultTransposeMatrixd QOpenGLFunctions_3_3_Compatibility::glMultTransposeMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bbfac0] } +&{glMultTransposeMatrixf QOpenGLFunctions_3_3_Compatibility::glMultTransposeMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bbfc60] } +&{glMultiDrawArrays QOpenGLFunctions_3_3_Compatibility::glMultiDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bbfe00 0xc821bbfe80 0xc821bbff00 0xc821bbff80] } +&{glMultiDrawElements QOpenGLFunctions_3_3_Compatibility::glMultiDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bd0120 0xc821bd01a0 0xc821bd0220 0xc821bd02c0 0xc821bd03a0] } +&{glMultiDrawElementsBaseVertex QOpenGLFunctions_3_3_Compatibility::glMultiDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bd0540 0xc821bd05c0 0xc821bd0640 0xc821bd06e0 0xc821bd07c0 0xc821bd0840] } +&{glMultiTexCoord1d QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bd09e0 0xc821bd0a60] } +&{glMultiTexCoord1dv QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bd0c00 0xc821bd0c80] } +&{glMultiTexCoord1f QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bd0e20 0xc821bd0ea0] } +&{glMultiTexCoord1fv QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bd1040 0xc821bd10c0] } +&{glMultiTexCoord1i QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bd1260 0xc821bd12e0] } +&{glMultiTexCoord1iv QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bd1480 0xc821bd1500] } +&{glMultiTexCoord1s QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bd16a0 0xc821bd1720] } +&{glMultiTexCoord1sv QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bd18c0 0xc821bd1940] } +&{glMultiTexCoord2d QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bd1ae0 0xc821bd1b60 0xc821bd1be0] } +&{glMultiTexCoord2dv QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bd1d80 0xc821bd1e00] } +&{glMultiTexCoord2f QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bd1fa0 0xc821be0020 0xc821be00a0] } +&{glMultiTexCoord2fv QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821be0240 0xc821be02c0] } +&{glMultiTexCoord2i QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821be0460 0xc821be04e0 0xc821be0560] } +&{glMultiTexCoord2iv QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821be0700 0xc821be0780] } +&{glMultiTexCoord2s QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821be0920 0xc821be09a0 0xc821be0a20] } +&{glMultiTexCoord2sv QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821be0bc0 0xc821be0c40] } +&{glMultiTexCoord3d QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821be0de0 0xc821be0e60 0xc821be0ee0 0xc821be0f60] } +&{glMultiTexCoord3dv QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821be1100 0xc821be1180] } +&{glMultiTexCoord3f QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821be1320 0xc821be13a0 0xc821be1420 0xc821be14a0] } +&{glMultiTexCoord3fv QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821be1640 0xc821be16c0] } +&{glMultiTexCoord3i QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821be1860 0xc821be18e0 0xc821be1960 0xc821be19e0] } +&{glMultiTexCoord3iv QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821be1b80 0xc821be1c00] } +&{glMultiTexCoord3s QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821be1da0 0xc821be1e20 0xc821be1ea0 0xc821be1f20] } +&{glMultiTexCoord3sv QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bf20c0 0xc821bf2140] } +&{glMultiTexCoord4d QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bf22e0 0xc821bf2360 0xc821bf23e0 0xc821bf2460 0xc821bf2500] } +&{glMultiTexCoord4dv QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bf26a0 0xc821bf2720] } +&{glMultiTexCoord4f QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bf28c0 0xc821bf2940 0xc821bf29c0 0xc821bf2a40 0xc821bf2ae0] } +&{glMultiTexCoord4fv QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bf2c80 0xc821bf2d00] } +&{glMultiTexCoord4i QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bf2ea0 0xc821bf2f20 0xc821bf2fa0 0xc821bf3020 0xc821bf30c0] } +&{glMultiTexCoord4iv QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bf3260 0xc821bf32e0] } +&{glMultiTexCoord4s QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bf3480 0xc821bf3500 0xc821bf3580 0xc821bf3600 0xc821bf36a0] } +&{glMultiTexCoord4sv QOpenGLFunctions_3_3_Compatibility::glMultiTexCoord4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bf3840 0xc821bf38c0] } +&{glMultiTexCoordP1ui QOpenGLFunctions_3_3_Compatibility::glMultiTexCoordP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bf3a60 0xc821bf3ae0 0xc821bf3b60] } +&{glMultiTexCoordP1uiv QOpenGLFunctions_3_3_Compatibility::glMultiTexCoordP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bf3d00 0xc821bf3d80 0xc821bf3e00] } +&{glMultiTexCoordP2ui QOpenGLFunctions_3_3_Compatibility::glMultiTexCoordP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bf3fa0 0xc821bfe020 0xc821bfe0a0] } +&{glMultiTexCoordP2uiv QOpenGLFunctions_3_3_Compatibility::glMultiTexCoordP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bfe240 0xc821bfe2c0 0xc821bfe340] } +&{glMultiTexCoordP3ui QOpenGLFunctions_3_3_Compatibility::glMultiTexCoordP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bfe4e0 0xc821bfe560 0xc821bfe5e0] } +&{glMultiTexCoordP3uiv QOpenGLFunctions_3_3_Compatibility::glMultiTexCoordP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bfe780 0xc821bfe800 0xc821bfe880] } +&{glMultiTexCoordP4ui QOpenGLFunctions_3_3_Compatibility::glMultiTexCoordP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bfea20 0xc821bfeaa0 0xc821bfeb20] } +&{glMultiTexCoordP4uiv QOpenGLFunctions_3_3_Compatibility::glMultiTexCoordP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bfecc0 0xc821bfed40 0xc821bfedc0] } +&{glNewList QOpenGLFunctions_3_3_Compatibility::glNewList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bfef00 0xc821bfef80] } +&{glNormal3b QOpenGLFunctions_3_3_Compatibility::glNormal3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bff0c0 0xc821bff140 0xc821bff1c0] } +&{glNormal3bv QOpenGLFunctions_3_3_Compatibility::glNormal3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bff300] } +&{glNormal3d QOpenGLFunctions_3_3_Compatibility::glNormal3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bff440 0xc821bff4c0 0xc821bff540] } +&{glNormal3dv QOpenGLFunctions_3_3_Compatibility::glNormal3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bff680] } +&{glNormal3f QOpenGLFunctions_3_3_Compatibility::glNormal3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bff7c0 0xc821bff840 0xc821bff8c0] } +&{glNormal3fv QOpenGLFunctions_3_3_Compatibility::glNormal3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bffa00] } +&{glNormal3i QOpenGLFunctions_3_3_Compatibility::glNormal3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bffb40 0xc821bffbc0 0xc821bffc40] } +&{glNormal3iv QOpenGLFunctions_3_3_Compatibility::glNormal3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bffda0] } +&{glNormal3s QOpenGLFunctions_3_3_Compatibility::glNormal3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821bffee0 0xc821bfff60 0xc821bfffe0] } +&{glNormal3sv QOpenGLFunctions_3_3_Compatibility::glNormal3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c16120] } +&{glNormalP3ui QOpenGLFunctions_3_3_Compatibility::glNormalP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c16260 0xc821c162e0] } +&{glNormalP3uiv QOpenGLFunctions_3_3_Compatibility::glNormalP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c16420 0xc821c164a0] } +&{glNormalPointer QOpenGLFunctions_3_3_Compatibility::glNormalPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c165e0 0xc821c16660 0xc821c166e0] } +&{glOrtho QOpenGLFunctions_3_3_Compatibility::glOrtho commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c16820 0xc821c168a0 0xc821c16920 0xc821c169a0 0xc821c16a40 0xc821c16ac0] } +&{glPassThrough QOpenGLFunctions_3_3_Compatibility::glPassThrough commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c16c00] } +&{glPixelMapfv QOpenGLFunctions_3_3_Compatibility::glPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c16d40 0xc821c16dc0 0xc821c16e40] } +&{glPixelMapuiv QOpenGLFunctions_3_3_Compatibility::glPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c16f80 0xc821c17000 0xc821c17080] } +&{glPixelMapusv QOpenGLFunctions_3_3_Compatibility::glPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c171c0 0xc821c17240 0xc821c172c0] } +&{glPixelStoref QOpenGLFunctions_3_3_Compatibility::glPixelStoref commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c17400 0xc821c17480] } +&{glPixelStorei QOpenGLFunctions_3_3_Compatibility::glPixelStorei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c175c0 0xc821c17640] } +&{glPixelTransferf QOpenGLFunctions_3_3_Compatibility::glPixelTransferf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c17780 0xc821c17800] } +&{glPixelTransferi QOpenGLFunctions_3_3_Compatibility::glPixelTransferi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c17940 0xc821c179c0] } +&{glPixelZoom QOpenGLFunctions_3_3_Compatibility::glPixelZoom commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c17b00 0xc821c17b80] } +&{glPointParameterf QOpenGLFunctions_3_3_Compatibility::glPointParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c17d20 0xc821c17da0] } +&{glPointParameterfv QOpenGLFunctions_3_3_Compatibility::glPointParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c17f40 0xc821c17fc0] } +&{glPointParameteri QOpenGLFunctions_3_3_Compatibility::glPointParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c28160 0xc821c281e0] } +&{glPointParameteriv QOpenGLFunctions_3_3_Compatibility::glPointParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c28380 0xc821c28400] } +&{glPointSize QOpenGLFunctions_3_3_Compatibility::glPointSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c28560] } +&{glPolygonMode QOpenGLFunctions_3_3_Compatibility::glPolygonMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c286a0 0xc821c28720] } +&{glPolygonOffset QOpenGLFunctions_3_3_Compatibility::glPolygonOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c28860 0xc821c288e0] } +&{glPolygonStipple QOpenGLFunctions_3_3_Compatibility::glPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c28a20] } +&{glPopAttrib QOpenGLFunctions_3_3_Compatibility::glPopAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [] } +&{glPopClientAttrib QOpenGLFunctions_3_3_Compatibility::glPopClientAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [] } +&{glPopMatrix QOpenGLFunctions_3_3_Compatibility::glPopMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [] } +&{glPopName QOpenGLFunctions_3_3_Compatibility::glPopName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [] } +&{glPrimitiveRestartIndex QOpenGLFunctions_3_3_Compatibility::glPrimitiveRestartIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c28e00] } +&{glPrioritizeTextures QOpenGLFunctions_3_3_Compatibility::glPrioritizeTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c28fa0 0xc821c29020 0xc821c290a0] } +&{glProvokingVertex QOpenGLFunctions_3_3_Compatibility::glProvokingVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c29240] } +&{glPushAttrib QOpenGLFunctions_3_3_Compatibility::glPushAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c29380] } +&{glPushClientAttrib QOpenGLFunctions_3_3_Compatibility::glPushClientAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c29520] } +&{glPushMatrix QOpenGLFunctions_3_3_Compatibility::glPushMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [] } +&{glPushName QOpenGLFunctions_3_3_Compatibility::glPushName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c29700] } +&{glQueryCounter QOpenGLFunctions_3_3_Compatibility::glQueryCounter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c29840 0xc821c298c0] } +&{glRasterPos2d QOpenGLFunctions_3_3_Compatibility::glRasterPos2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c29a00 0xc821c29a80] } +&{glRasterPos2dv QOpenGLFunctions_3_3_Compatibility::glRasterPos2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c29bc0] } +&{glRasterPos2f QOpenGLFunctions_3_3_Compatibility::glRasterPos2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c29d00 0xc821c29d80] } +&{glRasterPos2fv QOpenGLFunctions_3_3_Compatibility::glRasterPos2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c29ec0] } +&{glRasterPos2i QOpenGLFunctions_3_3_Compatibility::glRasterPos2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c3e000 0xc821c3e080] } +&{glRasterPos2iv QOpenGLFunctions_3_3_Compatibility::glRasterPos2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c3e1c0] } +&{glRasterPos2s QOpenGLFunctions_3_3_Compatibility::glRasterPos2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c3e300 0xc821c3e380] } +&{glRasterPos2sv QOpenGLFunctions_3_3_Compatibility::glRasterPos2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c3e4c0] } +&{glRasterPos3d QOpenGLFunctions_3_3_Compatibility::glRasterPos3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c3e600 0xc821c3e680 0xc821c3e700] } +&{glRasterPos3dv QOpenGLFunctions_3_3_Compatibility::glRasterPos3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c3e840] } +&{glRasterPos3f QOpenGLFunctions_3_3_Compatibility::glRasterPos3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c3e980 0xc821c3ea00 0xc821c3ea80] } +&{glRasterPos3fv QOpenGLFunctions_3_3_Compatibility::glRasterPos3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c3ebc0] } +&{glRasterPos3i QOpenGLFunctions_3_3_Compatibility::glRasterPos3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c3ed00 0xc821c3ed80 0xc821c3ee00] } +&{glRasterPos3iv QOpenGLFunctions_3_3_Compatibility::glRasterPos3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c3ef40] } +&{glRasterPos3s QOpenGLFunctions_3_3_Compatibility::glRasterPos3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c3f080 0xc821c3f100 0xc821c3f180] } +&{glRasterPos3sv QOpenGLFunctions_3_3_Compatibility::glRasterPos3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c3f2c0] } +&{glRasterPos4d QOpenGLFunctions_3_3_Compatibility::glRasterPos4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c3f400 0xc821c3f480 0xc821c3f500 0xc821c3f580] } +&{glRasterPos4dv QOpenGLFunctions_3_3_Compatibility::glRasterPos4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c3f6c0] } +&{glRasterPos4f QOpenGLFunctions_3_3_Compatibility::glRasterPos4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c3f800 0xc821c3f880 0xc821c3f900 0xc821c3f980] } +&{glRasterPos4fv QOpenGLFunctions_3_3_Compatibility::glRasterPos4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c3fac0] } +&{glRasterPos4i QOpenGLFunctions_3_3_Compatibility::glRasterPos4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c3fc00 0xc821c3fc80 0xc821c3fd00 0xc821c3fd80] } +&{glRasterPos4iv QOpenGLFunctions_3_3_Compatibility::glRasterPos4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c3fec0] } +&{glRasterPos4s QOpenGLFunctions_3_3_Compatibility::glRasterPos4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c52000 0xc821c52080 0xc821c52100 0xc821c52180] } +&{glRasterPos4sv QOpenGLFunctions_3_3_Compatibility::glRasterPos4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c522c0] } +&{glReadBuffer QOpenGLFunctions_3_3_Compatibility::glReadBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c52420] } +&{glReadPixels QOpenGLFunctions_3_3_Compatibility::glReadPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c52560 0xc821c525e0 0xc821c52660 0xc821c526e0 0xc821c52780 0xc821c52800 0xc821c52880] } +&{glRectd QOpenGLFunctions_3_3_Compatibility::glRectd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c529c0 0xc821c52a40 0xc821c52ac0 0xc821c52b40] } +&{glRectdv QOpenGLFunctions_3_3_Compatibility::glRectdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c52c80 0xc821c52d00] } +&{glRectf QOpenGLFunctions_3_3_Compatibility::glRectf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c52e40 0xc821c52ec0 0xc821c52f40 0xc821c52fc0] } +&{glRectfv QOpenGLFunctions_3_3_Compatibility::glRectfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c53100 0xc821c53180] } +&{glRecti QOpenGLFunctions_3_3_Compatibility::glRecti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c532c0 0xc821c53340 0xc821c533c0 0xc821c53440] } +&{glRectiv QOpenGLFunctions_3_3_Compatibility::glRectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c53580 0xc821c53600] } +&{glRects QOpenGLFunctions_3_3_Compatibility::glRects commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c53740 0xc821c537c0 0xc821c53840 0xc821c538c0] } +&{glRectsv QOpenGLFunctions_3_3_Compatibility::glRectsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c53a00 0xc821c53a80] } +&{glRenderMode QOpenGLFunctions_3_3_Compatibility::glRenderMode commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLint [0xc821c53be0] } +&{glRenderbufferStorage QOpenGLFunctions_3_3_Compatibility::glRenderbufferStorage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c53d80 0xc821c53e00 0xc821c53e80 0xc821c53f00] } +&{glRenderbufferStorageMultisample QOpenGLFunctions_3_3_Compatibility::glRenderbufferStorageMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c6a0a0 0xc821c6a120 0xc821c6a1a0 0xc821c6a220 0xc821c6a2c0] } +&{glResetHistogram QOpenGLFunctions_3_3_Compatibility::glResetHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c6a400] } +&{glResetMinmax QOpenGLFunctions_3_3_Compatibility::glResetMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c6a540] } +&{glRotated QOpenGLFunctions_3_3_Compatibility::glRotated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c6a680 0xc821c6a700 0xc821c6a780 0xc821c6a800] } +&{glRotatef QOpenGLFunctions_3_3_Compatibility::glRotatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c6a940 0xc821c6a9c0 0xc821c6aa40 0xc821c6aac0] } +&{glSampleCoverage QOpenGLFunctions_3_3_Compatibility::glSampleCoverage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c6ac00 0xc821c6ac80] } +&{glSampleMaski QOpenGLFunctions_3_3_Compatibility::glSampleMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c6adc0 0xc821c6ae40] } +&{glSamplerParameterIiv QOpenGLFunctions_3_3_Compatibility::glSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c6afe0 0xc821c6b060 0xc821c6b0e0] } +&{glSamplerParameterIuiv QOpenGLFunctions_3_3_Compatibility::glSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c6b280 0xc821c6b300 0xc821c6b380] } +&{glSamplerParameterf QOpenGLFunctions_3_3_Compatibility::glSamplerParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c6b520 0xc821c6b5a0 0xc821c6b620] } +&{glSamplerParameterfv QOpenGLFunctions_3_3_Compatibility::glSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c6b7c0 0xc821c6b840 0xc821c6b8c0] } +&{glSamplerParameteri QOpenGLFunctions_3_3_Compatibility::glSamplerParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c6ba60 0xc821c6bae0 0xc821c6bb60] } +&{glSamplerParameteriv QOpenGLFunctions_3_3_Compatibility::glSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c6bd00 0xc821c6bd80 0xc821c6be00] } +&{glScaled QOpenGLFunctions_3_3_Compatibility::glScaled commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c6bf40 0xc821c6bfc0 0xc821c76040] } +&{glScalef QOpenGLFunctions_3_3_Compatibility::glScalef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c76180 0xc821c76200 0xc821c76280] } +&{glScissor QOpenGLFunctions_3_3_Compatibility::glScissor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c763c0 0xc821c76440 0xc821c764c0 0xc821c76540] } +&{glSecondaryColor3b QOpenGLFunctions_3_3_Compatibility::glSecondaryColor3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c766e0 0xc821c76760 0xc821c767e0] } +&{glSecondaryColor3bv QOpenGLFunctions_3_3_Compatibility::glSecondaryColor3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c76980] } +&{glSecondaryColor3d QOpenGLFunctions_3_3_Compatibility::glSecondaryColor3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c76b40 0xc821c76bc0 0xc821c76c40] } +&{glSecondaryColor3dv QOpenGLFunctions_3_3_Compatibility::glSecondaryColor3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c76de0] } +&{glSecondaryColor3f QOpenGLFunctions_3_3_Compatibility::glSecondaryColor3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c76f80 0xc821c77000 0xc821c77080] } +&{glSecondaryColor3fv QOpenGLFunctions_3_3_Compatibility::glSecondaryColor3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c77220] } +&{glSecondaryColor3i QOpenGLFunctions_3_3_Compatibility::glSecondaryColor3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c773c0 0xc821c77440 0xc821c774c0] } +&{glSecondaryColor3iv QOpenGLFunctions_3_3_Compatibility::glSecondaryColor3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c77660] } +&{glSecondaryColor3s QOpenGLFunctions_3_3_Compatibility::glSecondaryColor3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c77800 0xc821c77880 0xc821c77900] } +&{glSecondaryColor3sv QOpenGLFunctions_3_3_Compatibility::glSecondaryColor3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c77aa0] } +&{glSecondaryColor3ub QOpenGLFunctions_3_3_Compatibility::glSecondaryColor3ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c77c40 0xc821c77cc0 0xc821c77d40] } +&{glSecondaryColor3ubv QOpenGLFunctions_3_3_Compatibility::glSecondaryColor3ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c77ee0] } +&{glSecondaryColor3ui QOpenGLFunctions_3_3_Compatibility::glSecondaryColor3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c90080 0xc821c90100 0xc821c90180] } +&{glSecondaryColor3uiv QOpenGLFunctions_3_3_Compatibility::glSecondaryColor3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c90320] } +&{glSecondaryColor3us QOpenGLFunctions_3_3_Compatibility::glSecondaryColor3us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c904c0 0xc821c90540 0xc821c905c0] } +&{glSecondaryColor3usv QOpenGLFunctions_3_3_Compatibility::glSecondaryColor3usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c90760] } +&{glSecondaryColorP3ui QOpenGLFunctions_3_3_Compatibility::glSecondaryColorP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c90900 0xc821c90980] } +&{glSecondaryColorP3uiv QOpenGLFunctions_3_3_Compatibility::glSecondaryColorP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c90b20 0xc821c90ba0] } +&{glSecondaryColorPointer QOpenGLFunctions_3_3_Compatibility::glSecondaryColorPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c90d40 0xc821c90dc0 0xc821c90e40 0xc821c90ec0] } +&{glSelectBuffer QOpenGLFunctions_3_3_Compatibility::glSelectBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c91000 0xc821c91080] } +&{glSeparableFilter2D QOpenGLFunctions_3_3_Compatibility::glSeparableFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c91220 0xc821c912a0 0xc821c91320 0xc821c913a0 0xc821c91440 0xc821c914c0 0xc821c91540 0xc821c915c0] } +&{glShadeModel QOpenGLFunctions_3_3_Compatibility::glShadeModel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c91720] } +&{glShaderSource QOpenGLFunctions_3_3_Compatibility::glShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c91860 0xc821c918e0 0xc821c91980 0xc821c91a40] } +&{glStencilFunc QOpenGLFunctions_3_3_Compatibility::glStencilFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c91b80 0xc821c91c00 0xc821c91c80] } +&{glStencilFuncSeparate QOpenGLFunctions_3_3_Compatibility::glStencilFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c91e20 0xc821c91ea0 0xc821c91f20 0xc821c91fa0] } +&{glStencilMask QOpenGLFunctions_3_3_Compatibility::glStencilMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c9a100] } +&{glStencilMaskSeparate QOpenGLFunctions_3_3_Compatibility::glStencilMaskSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c9a2a0 0xc821c9a320] } +&{glStencilOp QOpenGLFunctions_3_3_Compatibility::glStencilOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c9a460 0xc821c9a4e0 0xc821c9a560] } +&{glStencilOpSeparate QOpenGLFunctions_3_3_Compatibility::glStencilOpSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c9a700 0xc821c9a780 0xc821c9a800 0xc821c9a880] } +&{glTexBuffer QOpenGLFunctions_3_3_Compatibility::glTexBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c9a9c0 0xc821c9aa40 0xc821c9aac0] } +&{glTexCoord1d QOpenGLFunctions_3_3_Compatibility::glTexCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c9ac20] } +&{glTexCoord1dv QOpenGLFunctions_3_3_Compatibility::glTexCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c9ad60] } +&{glTexCoord1f QOpenGLFunctions_3_3_Compatibility::glTexCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c9aec0] } +&{glTexCoord1fv QOpenGLFunctions_3_3_Compatibility::glTexCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c9b000] } +&{glTexCoord1i QOpenGLFunctions_3_3_Compatibility::glTexCoord1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c9b160] } +&{glTexCoord1iv QOpenGLFunctions_3_3_Compatibility::glTexCoord1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c9b2a0] } +&{glTexCoord1s QOpenGLFunctions_3_3_Compatibility::glTexCoord1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c9b400] } +&{glTexCoord1sv QOpenGLFunctions_3_3_Compatibility::glTexCoord1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c9b540] } +&{glTexCoord2d QOpenGLFunctions_3_3_Compatibility::glTexCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c9b680 0xc821c9b700] } +&{glTexCoord2dv QOpenGLFunctions_3_3_Compatibility::glTexCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c9b840] } +&{glTexCoord2f QOpenGLFunctions_3_3_Compatibility::glTexCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c9b980 0xc821c9ba00] } +&{glTexCoord2fv QOpenGLFunctions_3_3_Compatibility::glTexCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c9bb40] } +&{glTexCoord2i QOpenGLFunctions_3_3_Compatibility::glTexCoord2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c9bc80 0xc821c9bd00] } +&{glTexCoord2iv QOpenGLFunctions_3_3_Compatibility::glTexCoord2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c9be40] } +&{glTexCoord2s QOpenGLFunctions_3_3_Compatibility::glTexCoord2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821c9bf80 0xc821cb2000] } +&{glTexCoord2sv QOpenGLFunctions_3_3_Compatibility::glTexCoord2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cb2140] } +&{glTexCoord3d QOpenGLFunctions_3_3_Compatibility::glTexCoord3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cb2280 0xc821cb2300 0xc821cb2380] } +&{glTexCoord3dv QOpenGLFunctions_3_3_Compatibility::glTexCoord3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cb24c0] } +&{glTexCoord3f QOpenGLFunctions_3_3_Compatibility::glTexCoord3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cb2600 0xc821cb2680 0xc821cb2700] } +&{glTexCoord3fv QOpenGLFunctions_3_3_Compatibility::glTexCoord3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cb2840] } +&{glTexCoord3i QOpenGLFunctions_3_3_Compatibility::glTexCoord3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cb2980 0xc821cb2a00 0xc821cb2a80] } +&{glTexCoord3iv QOpenGLFunctions_3_3_Compatibility::glTexCoord3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cb2bc0] } +&{glTexCoord3s QOpenGLFunctions_3_3_Compatibility::glTexCoord3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cb2d00 0xc821cb2d80 0xc821cb2e00] } +&{glTexCoord3sv QOpenGLFunctions_3_3_Compatibility::glTexCoord3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cb2f40] } +&{glTexCoord4d QOpenGLFunctions_3_3_Compatibility::glTexCoord4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cb3080 0xc821cb3100 0xc821cb3180 0xc821cb3200] } +&{glTexCoord4dv QOpenGLFunctions_3_3_Compatibility::glTexCoord4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cb3340] } +&{glTexCoord4f QOpenGLFunctions_3_3_Compatibility::glTexCoord4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cb3480 0xc821cb3500 0xc821cb3580 0xc821cb3600] } +&{glTexCoord4fv QOpenGLFunctions_3_3_Compatibility::glTexCoord4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cb3740] } +&{glTexCoord4i QOpenGLFunctions_3_3_Compatibility::glTexCoord4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cb3880 0xc821cb3900 0xc821cb3980 0xc821cb3a00] } +&{glTexCoord4iv QOpenGLFunctions_3_3_Compatibility::glTexCoord4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cb3b40] } +&{glTexCoord4s QOpenGLFunctions_3_3_Compatibility::glTexCoord4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cb3c80 0xc821cb3d00 0xc821cb3d80 0xc821cb3e00] } +&{glTexCoord4sv QOpenGLFunctions_3_3_Compatibility::glTexCoord4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cb3f40] } +&{glTexCoordP1ui QOpenGLFunctions_3_3_Compatibility::glTexCoordP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cc6080 0xc821cc6100] } +&{glTexCoordP1uiv QOpenGLFunctions_3_3_Compatibility::glTexCoordP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cc6240 0xc821cc62c0] } +&{glTexCoordP2ui QOpenGLFunctions_3_3_Compatibility::glTexCoordP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cc6400 0xc821cc6480] } +&{glTexCoordP2uiv QOpenGLFunctions_3_3_Compatibility::glTexCoordP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cc65c0 0xc821cc6640] } +&{glTexCoordP3ui QOpenGLFunctions_3_3_Compatibility::glTexCoordP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cc6780 0xc821cc6800] } +&{glTexCoordP3uiv QOpenGLFunctions_3_3_Compatibility::glTexCoordP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cc6940 0xc821cc69c0] } +&{glTexCoordP4ui QOpenGLFunctions_3_3_Compatibility::glTexCoordP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cc6b00 0xc821cc6b80] } +&{glTexCoordP4uiv QOpenGLFunctions_3_3_Compatibility::glTexCoordP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cc6cc0 0xc821cc6d40] } +&{glTexCoordPointer QOpenGLFunctions_3_3_Compatibility::glTexCoordPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cc6ee0 0xc821cc6f60 0xc821cc6fe0 0xc821cc7060] } +&{glTexEnvf QOpenGLFunctions_3_3_Compatibility::glTexEnvf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cc71a0 0xc821cc7220 0xc821cc72a0] } +&{glTexEnvfv QOpenGLFunctions_3_3_Compatibility::glTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cc73e0 0xc821cc7460 0xc821cc74e0] } +&{glTexEnvi QOpenGLFunctions_3_3_Compatibility::glTexEnvi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cc7620 0xc821cc76a0 0xc821cc7720] } +&{glTexEnviv QOpenGLFunctions_3_3_Compatibility::glTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cc7860 0xc821cc78e0 0xc821cc7960] } +&{glTexGend QOpenGLFunctions_3_3_Compatibility::glTexGend commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cc7aa0 0xc821cc7b20 0xc821cc7ba0] } +&{glTexGendv QOpenGLFunctions_3_3_Compatibility::glTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cc7ce0 0xc821cc7d60 0xc821cc7de0] } +&{glTexGenf QOpenGLFunctions_3_3_Compatibility::glTexGenf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cc7f20 0xc821cc7fa0 0xc821cd8020] } +&{glTexGenfv QOpenGLFunctions_3_3_Compatibility::glTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cd8160 0xc821cd81e0 0xc821cd8260] } +&{glTexGeni QOpenGLFunctions_3_3_Compatibility::glTexGeni commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cd83a0 0xc821cd8420 0xc821cd84a0] } +&{glTexGeniv QOpenGLFunctions_3_3_Compatibility::glTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cd85e0 0xc821cd8660 0xc821cd86e0] } +&{glTexImage1D QOpenGLFunctions_3_3_Compatibility::glTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cd8820 0xc821cd88a0 0xc821cd8920 0xc821cd89a0 0xc821cd8a40 0xc821cd8ac0 0xc821cd8b40 0xc821cd8bc0] } +&{glTexImage2D QOpenGLFunctions_3_3_Compatibility::glTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cd8d00 0xc821cd8d80 0xc821cd8e00 0xc821cd8e80 0xc821cd8f20 0xc821cd8fa0 0xc821cd9020 0xc821cd90a0 0xc821cd9140] } +&{glTexImage2DMultisample QOpenGLFunctions_3_3_Compatibility::glTexImage2DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cd92e0 0xc821cd9360 0xc821cd93e0 0xc821cd9460 0xc821cd9500 0xc821cd95a0] } +&{glTexImage3D QOpenGLFunctions_3_3_Compatibility::glTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cd9720 0xc821cd97a0 0xc821cd9820 0xc821cd98a0 0xc821cd9940 0xc821cd99c0 0xc821cd9a40 0xc821cd9ac0 0xc821cd9b60 0xc821cd9be0] } +&{glTexImage3DMultisample QOpenGLFunctions_3_3_Compatibility::glTexImage3DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cd9d80 0xc821cd9e00 0xc821cd9e80 0xc821cd9f00 0xc821cd9fa0 0xc821cea020 0xc821cea0c0] } +&{glTexParameterIiv QOpenGLFunctions_3_3_Compatibility::glTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cea2a0 0xc821cea320 0xc821cea3a0] } +&{glTexParameterIuiv QOpenGLFunctions_3_3_Compatibility::glTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cea540 0xc821cea5c0 0xc821cea640] } +&{glTexParameterf QOpenGLFunctions_3_3_Compatibility::glTexParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cea780 0xc821cea800 0xc821cea880] } +&{glTexParameterfv QOpenGLFunctions_3_3_Compatibility::glTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cea9c0 0xc821ceaa40 0xc821ceaac0] } +&{glTexParameteri QOpenGLFunctions_3_3_Compatibility::glTexParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ceac00 0xc821ceac80 0xc821cead00] } +&{glTexParameteriv QOpenGLFunctions_3_3_Compatibility::glTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ceae40 0xc821ceaec0 0xc821ceaf40] } +&{glTexSubImage1D QOpenGLFunctions_3_3_Compatibility::glTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ceb080 0xc821ceb100 0xc821ceb180 0xc821ceb200 0xc821ceb2a0 0xc821ceb320 0xc821ceb3a0] } +&{glTexSubImage2D QOpenGLFunctions_3_3_Compatibility::glTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ceb4e0 0xc821ceb560 0xc821ceb5e0 0xc821ceb660 0xc821ceb700 0xc821ceb780 0xc821ceb800 0xc821ceb880 0xc821ceb920] } +&{glTexSubImage3D QOpenGLFunctions_3_3_Compatibility::glTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821ceba60 0xc821cebae0 0xc821cebb60 0xc821cebbe0 0xc821cebc80 0xc821cebd00 0xc821cebd80 0xc821cebe00 0xc821cebea0 0xc821cebf20 0xc821cebfa0] } +&{glTransformFeedbackVaryings QOpenGLFunctions_3_3_Compatibility::glTransformFeedbackVaryings commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cfa140 0xc821cfa1c0 0xc821cfa260 0xc821cfa320] } +&{glTranslated QOpenGLFunctions_3_3_Compatibility::glTranslated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cfa460 0xc821cfa4e0 0xc821cfa560] } +&{glTranslatef QOpenGLFunctions_3_3_Compatibility::glTranslatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cfa6a0 0xc821cfa720 0xc821cfa7a0] } +&{glUniform1f QOpenGLFunctions_3_3_Compatibility::glUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cfa8e0 0xc821cfa960] } +&{glUniform1fv QOpenGLFunctions_3_3_Compatibility::glUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cfaaa0 0xc821cfab20 0xc821cfaba0] } +&{glUniform1i QOpenGLFunctions_3_3_Compatibility::glUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cface0 0xc821cfad60] } +&{glUniform1iv QOpenGLFunctions_3_3_Compatibility::glUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cfaea0 0xc821cfaf20 0xc821cfafa0] } +&{glUniform1ui QOpenGLFunctions_3_3_Compatibility::glUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cfb0e0 0xc821cfb160] } +&{glUniform1uiv QOpenGLFunctions_3_3_Compatibility::glUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cfb2a0 0xc821cfb320 0xc821cfb3a0] } +&{glUniform2f QOpenGLFunctions_3_3_Compatibility::glUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cfb4e0 0xc821cfb560 0xc821cfb5e0] } +&{glUniform2fv QOpenGLFunctions_3_3_Compatibility::glUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cfb720 0xc821cfb7a0 0xc821cfb820] } +&{glUniform2i QOpenGLFunctions_3_3_Compatibility::glUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cfb960 0xc821cfb9e0 0xc821cfba60] } +&{glUniform2iv QOpenGLFunctions_3_3_Compatibility::glUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cfbba0 0xc821cfbc20 0xc821cfbca0] } +&{glUniform2ui QOpenGLFunctions_3_3_Compatibility::glUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821cfbde0 0xc821cfbe60 0xc821cfbee0] } +&{glUniform2uiv QOpenGLFunctions_3_3_Compatibility::glUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821d0a020 0xc821d0a0a0 0xc821d0a120] } +&{glUniform3f QOpenGLFunctions_3_3_Compatibility::glUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821d0a260 0xc821d0a2e0 0xc821d0a360 0xc821d0a3e0] } +&{glUniform3fv QOpenGLFunctions_3_3_Compatibility::glUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821d0a520 0xc821d0a5a0 0xc821d0a620] } +&{glUniform3i QOpenGLFunctions_3_3_Compatibility::glUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821d0a760 0xc821d0a7e0 0xc821d0a860 0xc821d0a8e0] } +&{glUniform3iv QOpenGLFunctions_3_3_Compatibility::glUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821d1c060 0xc821d1c0e0 0xc821d1c160] } +&{glUniform3ui QOpenGLFunctions_3_3_Compatibility::glUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821d1c2a0 0xc821d1c320 0xc821d1c3a0 0xc821d1c420] } +&{glUniform3uiv QOpenGLFunctions_3_3_Compatibility::glUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821d1c560 0xc821d1c5e0 0xc821d1c660] } +&{glUniform4f QOpenGLFunctions_3_3_Compatibility::glUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821d1c7a0 0xc821d1c820 0xc821d1c8a0 0xc821d1c920 0xc821d1c9c0] } +&{glUniform4fv QOpenGLFunctions_3_3_Compatibility::glUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821d1cb00 0xc821d1cb80 0xc821d1cc00] } +&{glUniform4i QOpenGLFunctions_3_3_Compatibility::glUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821d1cd40 0xc821d1cdc0 0xc821d1ce40 0xc821d1cec0 0xc821d1cf60] } +&{glUniform4iv QOpenGLFunctions_3_3_Compatibility::glUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821d1d0a0 0xc821d1d120 0xc821d1d1a0] } +&{glUniform4ui QOpenGLFunctions_3_3_Compatibility::glUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821d1d2e0 0xc821d1d360 0xc821d1d3e0 0xc821d1d460 0xc821d1d500] } +&{glUniform4uiv QOpenGLFunctions_3_3_Compatibility::glUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821d1d640 0xc821d1d6c0 0xc821d1d740] } +&{glUniformBlockBinding QOpenGLFunctions_3_3_Compatibility::glUniformBlockBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821d1d8e0 0xc821d1d980 0xc821d1da60] } +&{glUniformMatrix2fv QOpenGLFunctions_3_3_Compatibility::glUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821d1dc40 0xc821d0a040 0xc821d0a0e0 0xc821d0a180] } +&{glUniformMatrix2x3fv QOpenGLFunctions_3_3_Compatibility::glUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821d0a3a0 0xc821d0a440 0xc821d0a4c0 0xc821d0a580] } +&{glUniformMatrix2x4fv QOpenGLFunctions_3_3_Compatibility::glUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821d0a7a0 0xc821d0a840 0xc821d0a900 0xc821d0a980] } +&{glUniformMatrix3fv QOpenGLFunctions_3_3_Compatibility::glUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821d0ab20 0xc821d0aba0 0xc821d0ac20 0xc821d0aca0] } +&{glUniformMatrix3x2fv QOpenGLFunctions_3_3_Compatibility::glUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821d0ae40 0xc821d0aec0 0xc821d0af40 0xc821d0afc0] } +&{glUniformMatrix3x4fv QOpenGLFunctions_3_3_Compatibility::glUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821d0b160 0xc821d0b1e0 0xc821d0b260 0xc821d0b2e0] } +&{glUniformMatrix4fv QOpenGLFunctions_3_3_Compatibility::glUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821d0b480 0xc821d0b500 0xc821d0b580 0xc821d0b600] } +&{glUniformMatrix4x2fv QOpenGLFunctions_3_3_Compatibility::glUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821d0b7a0 0xc821d0b820 0xc821d0b8a0 0xc821d0b920] } +&{glUniformMatrix4x3fv QOpenGLFunctions_3_3_Compatibility::glUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821d0bac0 0xc821d0bb40 0xc821d0bbc0 0xc821d0bc40] } +&{glUnmapBuffer QOpenGLFunctions_3_3_Compatibility::glUnmapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false GLboolean [0xc821d0bd80] } +&{glUseProgram QOpenGLFunctions_3_3_Compatibility::glUseProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc821d0bec0] } +&{glValidateProgram QOpenGLFunctions_3_3_Compatibility::glValidateProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820208300] } +&{glVertex2d QOpenGLFunctions_3_3_Compatibility::glVertex2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820208780 0xc8202089e0] } +&{glVertex2dv QOpenGLFunctions_3_3_Compatibility::glVertex2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820208f40] } +&{glVertex2f QOpenGLFunctions_3_3_Compatibility::glVertex2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820209340 0xc820209460] } +&{glVertex2fv QOpenGLFunctions_3_3_Compatibility::glVertex2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820209920] } +&{glVertex2i QOpenGLFunctions_3_3_Compatibility::glVertex2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820209de0 0xc820209fc0] } +&{glVertex2iv QOpenGLFunctions_3_3_Compatibility::glVertex2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc82029a420] } +&{glVertex2s QOpenGLFunctions_3_3_Compatibility::glVertex2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc82029a840 0xc82029aa40] } +&{glVertex2sv QOpenGLFunctions_3_3_Compatibility::glVertex2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc82029aea0] } +&{glVertex3d QOpenGLFunctions_3_3_Compatibility::glVertex3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc82029b2a0 0xc82029b460 0xc82029b5a0] } +&{glVertex3dv QOpenGLFunctions_3_3_Compatibility::glVertex3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc82029ba00] } +&{glVertex3f QOpenGLFunctions_3_3_Compatibility::glVertex3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc82029be60 0xc82029bf60 0xc820356080] } +&{glVertex3fv QOpenGLFunctions_3_3_Compatibility::glVertex3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820356340] } +&{glVertex3i QOpenGLFunctions_3_3_Compatibility::glVertex3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820356780 0xc8203568c0 0xc820356960] } +&{glVertex3iv QOpenGLFunctions_3_3_Compatibility::glVertex3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820356c80] } +&{glVertex3s QOpenGLFunctions_3_3_Compatibility::glVertex3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820356f20 0xc8203570a0 0xc820357180] } +&{glVertex3sv QOpenGLFunctions_3_3_Compatibility::glVertex3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8203575c0] } +&{glVertex4d QOpenGLFunctions_3_3_Compatibility::glVertex4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8203578c0 0xc820357a00 0xc820357ba0 0xc820357d60] } +&{glVertex4dv QOpenGLFunctions_3_3_Compatibility::glVertex4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8205580a0] } +&{glVertex4f QOpenGLFunctions_3_3_Compatibility::glVertex4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820558380 0xc8205584a0 0xc8205585c0 0xc820558700] } +&{glVertex4fv QOpenGLFunctions_3_3_Compatibility::glVertex4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8205589a0] } +&{glVertex4i QOpenGLFunctions_3_3_Compatibility::glVertex4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820558c40 0xc820558d40 0xc820558e00 0xc820558f20] } +&{glVertex4iv QOpenGLFunctions_3_3_Compatibility::glVertex4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8205591c0] } +&{glVertex4s QOpenGLFunctions_3_3_Compatibility::glVertex4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820559480 0xc820559580 0xc820559680 0xc820559860] } +&{glVertex4sv QOpenGLFunctions_3_3_Compatibility::glVertex4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820559b20] } +&{glVertexAttrib1d QOpenGLFunctions_3_3_Compatibility::glVertexAttrib1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820559e00 0xc820559f40] } +&{glVertexAttrib1dv QOpenGLFunctions_3_3_Compatibility::glVertexAttrib1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820524260 0xc820524320] } +&{glVertexAttrib1f QOpenGLFunctions_3_3_Compatibility::glVertexAttrib1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8205245c0 0xc820524640] } +&{glVertexAttrib1fv QOpenGLFunctions_3_3_Compatibility::glVertexAttrib1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820524960 0xc820524b20] } +&{glVertexAttrib1s QOpenGLFunctions_3_3_Compatibility::glVertexAttrib1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820524d20 0xc820524da0] } +&{glVertexAttrib1sv QOpenGLFunctions_3_3_Compatibility::glVertexAttrib1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820525020 0xc820525120] } +&{glVertexAttrib2d QOpenGLFunctions_3_3_Compatibility::glVertexAttrib2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8205253e0 0xc820525520 0xc8205255c0] } +&{glVertexAttrib2dv QOpenGLFunctions_3_3_Compatibility::glVertexAttrib2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8205259a0 0xc820525b00] } +&{glVertexAttrib2f QOpenGLFunctions_3_3_Compatibility::glVertexAttrib2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820525e00 0xc820525f20 0xc820525fc0] } +&{glVertexAttrib2fv QOpenGLFunctions_3_3_Compatibility::glVertexAttrib2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc826a5a260 0xc826a5a340] } +&{glVertexAttrib2s QOpenGLFunctions_3_3_Compatibility::glVertexAttrib2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc826a5a500 0xc826a5a5a0 0xc826a5a6a0] } +&{glVertexAttrib2sv QOpenGLFunctions_3_3_Compatibility::glVertexAttrib2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc826a5a900 0xc826a5aa20] } +&{glVertexAttrib3d QOpenGLFunctions_3_3_Compatibility::glVertexAttrib3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc826a5abe0 0xc826a5ad00 0xc826a5ada0 0xc826a5aea0] } +&{glVertexAttrib3dv QOpenGLFunctions_3_3_Compatibility::glVertexAttrib3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc826a5b140 0xc826a5b1e0] } +&{glVertexAttrib3f QOpenGLFunctions_3_3_Compatibility::glVertexAttrib3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc826a5b3e0 0xc826a5b4c0 0xc826a5b540 0xc826a5b620] } +&{glVertexAttrib3fv QOpenGLFunctions_3_3_Compatibility::glVertexAttrib3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc826a5b8c0 0xc826a5b9c0] } +&{glVertexAttrib3s QOpenGLFunctions_3_3_Compatibility::glVertexAttrib3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc826a5bbc0 0xc826a5bca0 0xc826a5bd20 0xc826a5be80] } +&{glVertexAttrib3sv QOpenGLFunctions_3_3_Compatibility::glVertexAttrib3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8207a8200 0xc8207a8340] } +&{glVertexAttrib4Nbv QOpenGLFunctions_3_3_Compatibility::glVertexAttrib4Nbv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8207a87c0 0xc8207a8a00] } +&{glVertexAttrib4Niv QOpenGLFunctions_3_3_Compatibility::glVertexAttrib4Niv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8207a8ee0 0xc8207a90e0] } +&{glVertexAttrib4Nsv QOpenGLFunctions_3_3_Compatibility::glVertexAttrib4Nsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8207a9540 0xc8207a9660] } +&{glVertexAttrib4Nub QOpenGLFunctions_3_3_Compatibility::glVertexAttrib4Nub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc8207a9ae0 0xc8207a9be0 0xc8207a9d20 0xc8207a9e80 0xc820876080] } +&{glVertexAttrib4Nubv QOpenGLFunctions_3_3_Compatibility::glVertexAttrib4Nubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820876520 0xc820876660] } +&{glVertexAttrib4Nuiv QOpenGLFunctions_3_3_Compatibility::glVertexAttrib4Nuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820876b60 0xc820876c60] } +&{glVertexAttrib4Nusv QOpenGLFunctions_3_3_Compatibility::glVertexAttrib4Nusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820877160 0xc820877260] } +&{glVertexAttrib4bv QOpenGLFunctions_3_3_Compatibility::glVertexAttrib4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820877740 0xc8208778a0] } +&{glVertexAttrib4d QOpenGLFunctions_3_3_Compatibility::glVertexAttrib4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820877bc0 0xc820877d20 0xc820877ea0 0xc820877fa0 0xc820e420c0] } +&{glVertexAttrib4dv QOpenGLFunctions_3_3_Compatibility::glVertexAttrib4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820e42380 0xc820e42420] } +&{glVertexAttrib4f QOpenGLFunctions_3_3_Compatibility::glVertexAttrib4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820e42640 0xc820e426e0 0xc820e427a0 0xc820e428a0 0xc820e429a0] } +&{glVertexAttrib4fv QOpenGLFunctions_3_3_Compatibility::glVertexAttrib4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820e42be0 0xc820e42ce0] } +&{glVertexAttrib4iv QOpenGLFunctions_3_3_Compatibility::glVertexAttrib4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820e42f40 0xc820e43000] } +&{glVertexAttrib4s QOpenGLFunctions_3_3_Compatibility::glVertexAttrib4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820e43200 0xc820e432e0 0xc820e433a0 0xc820e43440 0xc820e43540] } +&{glVertexAttrib4sv QOpenGLFunctions_3_3_Compatibility::glVertexAttrib4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820e437e0 0xc820e43880] } +&{glVertexAttrib4ubv QOpenGLFunctions_3_3_Compatibility::glVertexAttrib4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820e43b60 0xc820e43c00] } +&{glVertexAttrib4uiv QOpenGLFunctions_3_3_Compatibility::glVertexAttrib4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820e43ec0 0xc820e43f60] } +&{glVertexAttrib4usv QOpenGLFunctions_3_3_Compatibility::glVertexAttrib4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc82015a1a0 0xc82015a240] } +&{glVertexAttribDivisor QOpenGLFunctions_3_3_Compatibility::glVertexAttribDivisor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc82015a520 0xc82015a600] } +&{glVertexAttribI1i QOpenGLFunctions_3_3_Compatibility::glVertexAttribI1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc82015a8a0 0xc82015a980] } +&{glVertexAttribI1iv QOpenGLFunctions_3_3_Compatibility::glVertexAttribI1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc82015ac20 0xc82015acc0] } +&{glVertexAttribI1ui QOpenGLFunctions_3_3_Compatibility::glVertexAttribI1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc82015afe0 0xc82015b140] } +&{glVertexAttribI1uiv QOpenGLFunctions_3_3_Compatibility::glVertexAttribI1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc82015b440 0xc82015b500] } +&{glVertexAttribI2i QOpenGLFunctions_3_3_Compatibility::glVertexAttribI2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc82015b900 0xc82015b9a0 0xc82015ba80] } +&{glVertexAttribI2iv QOpenGLFunctions_3_3_Compatibility::glVertexAttribI2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc82015bdc0 0xc82015bee0] } +&{glVertexAttribI2ui QOpenGLFunctions_3_3_Compatibility::glVertexAttribI2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820e02140 0xc820e02240 0xc820e02300] } +&{glVertexAttribI2uiv QOpenGLFunctions_3_3_Compatibility::glVertexAttribI2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820e02580 0xc820e02660] } +&{glVertexAttribI3i QOpenGLFunctions_3_3_Compatibility::glVertexAttribI3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820e02940 0xc820e029c0 0xc820e02ac0 0xc820e02bc0] } +&{glVertexAttribI3iv QOpenGLFunctions_3_3_Compatibility::glVertexAttribI3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820e02e40 0xc820e02f00] } +&{glVertexAttribI3ui QOpenGLFunctions_3_3_Compatibility::glVertexAttribI3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820e031c0 0xc820e032a0 0xc820e03320 0xc820e03420] } +&{glVertexAttribI3uiv QOpenGLFunctions_3_3_Compatibility::glVertexAttribI3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820e036c0 0xc820e03780] } +&{glVertexAttribI4bv QOpenGLFunctions_3_3_Compatibility::glVertexAttribI4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820e03a20 0xc820e03b20] } +&{glVertexAttribI4i QOpenGLFunctions_3_3_Compatibility::glVertexAttribI4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820e03dc0 0xc820e03ea0 0xc820e03f80 0xc820e10060 0xc820e101a0] } +&{glVertexAttribI4iv QOpenGLFunctions_3_3_Compatibility::glVertexAttribI4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820e10420 0xc820e10500] } +&{glVertexAttribI4sv QOpenGLFunctions_3_3_Compatibility::glVertexAttribI4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820e107a0 0xc820e10860] } +&{glVertexAttribI4ubv QOpenGLFunctions_3_3_Compatibility::glVertexAttribI4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820e10b40 0xc820e10c20] } +&{glVertexAttribI4ui QOpenGLFunctions_3_3_Compatibility::glVertexAttribI4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820e10ea0 0xc820e10fc0 0xc820e110a0 0xc820e11140 0xc820e11200] } +&{glVertexAttribI4uiv QOpenGLFunctions_3_3_Compatibility::glVertexAttribI4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820e114c0 0xc820e11560] } +&{glVertexAttribI4usv QOpenGLFunctions_3_3_Compatibility::glVertexAttribI4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820e11820 0xc820e118c0] } +&{glVertexAttribIPointer QOpenGLFunctions_3_3_Compatibility::glVertexAttribIPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820e11ba0 0xc820e11c80 0xc820e11d00 0xc820e11e40 0xc820e11f40] } +&{glVertexAttribP1ui QOpenGLFunctions_3_3_Compatibility::glVertexAttribP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820d0a200 0xc820d0a3a0 0xc820d0a520 0xc820d0a600] } +&{glVertexAttribP1uiv QOpenGLFunctions_3_3_Compatibility::glVertexAttribP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820d0ab80 0xc820d0ac20 0xc820d0ad60 0xc820d0aea0] } +&{glVertexAttribP2ui QOpenGLFunctions_3_3_Compatibility::glVertexAttribP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820d0b220 0xc820d0b360 0xc820d0b4a0 0xc820d0b580] } +&{glVertexAttribP2uiv QOpenGLFunctions_3_3_Compatibility::glVertexAttribP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820d0ba20 0xc820d0bac0 0xc820d0bc60 0xc820d0bd40] } +&{glVertexAttribP3ui QOpenGLFunctions_3_3_Compatibility::glVertexAttribP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820ebe100 0xc820ebe200 0xc820ebe2c0 0xc820ebe3c0] } +&{glVertexAttribP3uiv QOpenGLFunctions_3_3_Compatibility::glVertexAttribP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820ebe620 0xc820ebe6e0 0xc820ebe7a0 0xc820ebe8c0] } +&{glVertexAttribP4ui QOpenGLFunctions_3_3_Compatibility::glVertexAttribP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820ebeb20 0xc820ebebe0 0xc820ebecc0 0xc820ebeda0] } +&{glVertexAttribP4uiv QOpenGLFunctions_3_3_Compatibility::glVertexAttribP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820ebefc0 0xc820ebf100 0xc820ebf1c0 0xc820ebf2c0] } +&{glVertexAttribPointer QOpenGLFunctions_3_3_Compatibility::glVertexAttribPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820ebf520 0xc820ebf600 0xc820ebf6c0 0xc820ebf7a0 0xc820ebf8a0 0xc820ebf980] } +&{glVertexP2ui QOpenGLFunctions_3_3_Compatibility::glVertexP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820ebfb40 0xc820ebfbe0] } +&{glVertexP2uiv QOpenGLFunctions_3_3_Compatibility::glVertexP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820ebfe00 0xc820ebfea0] } +&{glVertexP3ui QOpenGLFunctions_3_3_Compatibility::glVertexP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc826a780c0 0xc826a781a0] } +&{glVertexP3uiv QOpenGLFunctions_3_3_Compatibility::glVertexP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc826a78360 0xc826a78420] } +&{glVertexP4ui QOpenGLFunctions_3_3_Compatibility::glVertexP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc826a78660 0xc826a78700] } +&{glVertexP4uiv QOpenGLFunctions_3_3_Compatibility::glVertexP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc826a788a0 0xc826a78960] } +&{glVertexPointer QOpenGLFunctions_3_3_Compatibility::glVertexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc826a78b60 0xc826a78c20 0xc826a78cc0 0xc826a78d60] } +&{glViewport QOpenGLFunctions_3_3_Compatibility::glViewport commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc826a78fc0 0xc826a79060 0xc826a79120 0xc826a791c0] } +&{glWaitSync QOpenGLFunctions_3_3_Compatibility::glWaitSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc826a793e0 0xc826a794a0 0xc826a795c0] } +&{glWindowPos2d QOpenGLFunctions_3_3_Compatibility::glWindowPos2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc826a797a0 0xc826a79820] } +&{glWindowPos2dv QOpenGLFunctions_3_3_Compatibility::glWindowPos2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc826a79a60] } +&{glWindowPos2f QOpenGLFunctions_3_3_Compatibility::glWindowPos2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc826a79ca0 0xc826a79d60] } +&{glWindowPos2fv QOpenGLFunctions_3_3_Compatibility::glWindowPos2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc826a79f00] } +&{glWindowPos2i QOpenGLFunctions_3_3_Compatibility::glWindowPos2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820f4e160 0xc820f4e220] } +&{glWindowPos2iv QOpenGLFunctions_3_3_Compatibility::glWindowPos2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820f4e440] } +&{glWindowPos2s QOpenGLFunctions_3_3_Compatibility::glWindowPos2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820f4e640 0xc820f4e700] } +&{glWindowPos2sv QOpenGLFunctions_3_3_Compatibility::glWindowPos2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820f4e920] } +&{glWindowPos3d QOpenGLFunctions_3_3_Compatibility::glWindowPos3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820f4eb00 0xc820f4eba0 0xc820f4ec40] } +&{glWindowPos3dv QOpenGLFunctions_3_3_Compatibility::glWindowPos3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820f4ee60] } +&{glWindowPos3f QOpenGLFunctions_3_3_Compatibility::glWindowPos3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820f4f080 0xc820f4f120 0xc820f4f240] } +&{glWindowPos3fv QOpenGLFunctions_3_3_Compatibility::glWindowPos3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820f4f3e0] } +&{glWindowPos3i QOpenGLFunctions_3_3_Compatibility::glWindowPos3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820f4f5e0 0xc820f4f6e0 0xc820f4f780] } +&{glWindowPos3iv QOpenGLFunctions_3_3_Compatibility::glWindowPos3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820f4f9a0] } +&{glWindowPos3s QOpenGLFunctions_3_3_Compatibility::glWindowPos3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820f4fb80 0xc820f4fc20 0xc820f4fcc0] } +&{glWindowPos3sv QOpenGLFunctions_3_3_Compatibility::glWindowPos3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_compatibility.h non plain false false void [0xc820f4ff00] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions_3_3_Core.txt b/internal/binding/dump/QtGui/QOpenGLFunctions_3_3_Core.txt new file mode 100755 index 00000000..24599d6b --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions_3_3_Core.txt @@ -0,0 +1,326 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions_3_3_Core QOpenGLFunctions_3_3_Core::QOpenGLFunctions_3_3_Core commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.cpp non constructor false false [] } +&{initializeOpenGLFunctions QOpenGLFunctions_3_3_Core::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.cpp impure plain false false bool [] } +&{~QOpenGLFunctions_3_3_Core QOpenGLFunctions_3_3_Core::~QOpenGLFunctions_3_3_Core commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.cpp non destructor false false [] } +&{glActiveTexture QOpenGLFunctions_3_3_Core::glActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8210a0d20] } +&{glAttachShader QOpenGLFunctions_3_3_Core::glAttachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8210a0f00 0xc8210a0fe0] } +&{glBeginConditionalRender QOpenGLFunctions_3_3_Core::glBeginConditionalRender commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8210a12a0 0xc8210a1380] } +&{glBeginQuery QOpenGLFunctions_3_3_Core::glBeginQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8210a15a0 0xc8210a16a0] } +&{glBeginTransformFeedback QOpenGLFunctions_3_3_Core::glBeginTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8210a1920] } +&{glBindAttribLocation QOpenGLFunctions_3_3_Core::glBindAttribLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8210a1c60 0xc8210a1d20 0xc8210a1dc0] } +&{glBindBuffer QOpenGLFunctions_3_3_Core::glBindBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8211e4020 0xc8211e40c0] } +&{glBindBufferBase QOpenGLFunctions_3_3_Core::glBindBufferBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8211e4320 0xc8211e43e0 0xc8211e4460] } +&{glBindBufferRange QOpenGLFunctions_3_3_Core::glBindBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8211e4780 0xc8211e4820 0xc8211e48e0 0xc8211e49c0 0xc8211e4a80] } +&{glBindFragDataLocation QOpenGLFunctions_3_3_Core::glBindFragDataLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8211e4d60 0xc8211e4e40 0xc8211e4ee0] } +&{glBindFragDataLocationIndexed QOpenGLFunctions_3_3_Core::glBindFragDataLocationIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8211e51a0 0xc8211e52c0 0xc8211e5380 0xc8211e5460] } +&{glBindFramebuffer QOpenGLFunctions_3_3_Core::glBindFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8211e56e0 0xc8211e57a0] } +&{glBindRenderbuffer QOpenGLFunctions_3_3_Core::glBindRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8211e5a40 0xc8211e5b00] } +&{glBindSampler QOpenGLFunctions_3_3_Core::glBindSampler commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8211e5d20 0xc8211e5e00] } +&{glBindTexture QOpenGLFunctions_3_3_Core::glBindTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8211e5fe0 0xc8212d80c0] } +&{glBindVertexArray QOpenGLFunctions_3_3_Core::glBindVertexArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8212d82c0] } +&{glBlendColor QOpenGLFunctions_3_3_Core::glBlendColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8212d84a0 0xc8212d8540 0xc8212d85e0 0xc8212d86a0] } +&{glBlendEquation QOpenGLFunctions_3_3_Core::glBlendEquation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8212d8820] } +&{glBlendEquationSeparate QOpenGLFunctions_3_3_Core::glBlendEquationSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8212d8a60 0xc8212d8b20] } +&{glBlendFunc QOpenGLFunctions_3_3_Core::glBlendFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8212d8cc0 0xc8212d8d40] } +&{glBlendFuncSeparate QOpenGLFunctions_3_3_Core::glBlendFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8212d8f80 0xc8212d9040 0xc8212d90e0 0xc8212d9180] } +&{glBlitFramebuffer QOpenGLFunctions_3_3_Core::glBlitFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8212d93a0 0xc8212d9460 0xc8212d9520 0xc8212d95a0 0xc8212d9660 0xc8212d9720 0xc8212d97e0 0xc8212d9860 0xc8212d9940 0xc8212d99e0] } +&{glBufferData QOpenGLFunctions_3_3_Core::glBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8212d9ba0 0xc8212d9c40 0xc8212d9ce0 0xc8212d9d60] } +&{glBufferSubData QOpenGLFunctions_3_3_Core::glBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8212d9f40 0xc8212d9fc0 0xc821400040 0xc8214000c0] } +&{glCheckFramebufferStatus QOpenGLFunctions_3_3_Core::glCheckFramebufferStatus commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false GLenum [0xc821400300] } +&{glClampColor QOpenGLFunctions_3_3_Core::glClampColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8214004c0 0xc821400560] } +&{glClear QOpenGLFunctions_3_3_Core::glClear commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821400720] } +&{glClearBufferfi QOpenGLFunctions_3_3_Core::glClearBufferfi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821400920 0xc8214009c0 0xc821400a60 0xc821400ae0] } +&{glClearBufferfv QOpenGLFunctions_3_3_Core::glClearBufferfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821400cc0 0xc821400d60 0xc821400e00] } +&{glClearBufferiv QOpenGLFunctions_3_3_Core::glClearBufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821400f80 0xc821401060 0xc8214010e0] } +&{glClearBufferuiv QOpenGLFunctions_3_3_Core::glClearBufferuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8214012a0 0xc821401340 0xc821401400] } +&{glClearColor QOpenGLFunctions_3_3_Core::glClearColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8214015a0 0xc821401620 0xc8214016c0 0xc821401780] } +&{glClearDepth QOpenGLFunctions_3_3_Core::glClearDepth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821401900] } +&{glClearStencil QOpenGLFunctions_3_3_Core::glClearStencil commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821401ac0] } +&{glClientWaitSync QOpenGLFunctions_3_3_Core::glClientWaitSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false GLenum [0xc821401cc0 0xc821401d40 0xc821401de0] } +&{glColorMask QOpenGLFunctions_3_3_Core::glColorMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821401fe0 0xc82154e0a0 0xc82154e140 0xc82154e1c0] } +&{glColorMaski QOpenGLFunctions_3_3_Core::glColorMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc82154e380 0xc82154e440 0xc82154e4e0 0xc82154e580 0xc82154e640] } +&{glColorP3ui QOpenGLFunctions_3_3_Core::glColorP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc82154e800 0xc82154e8a0] } +&{glColorP3uiv QOpenGLFunctions_3_3_Core::glColorP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc82154ea40 0xc82154eae0] } +&{glColorP4ui QOpenGLFunctions_3_3_Core::glColorP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc82154eca0 0xc82154ed40] } +&{glColorP4uiv QOpenGLFunctions_3_3_Core::glColorP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc82154ef20 0xc82154efc0] } +&{glCompileShader QOpenGLFunctions_3_3_Core::glCompileShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc82154f160] } +&{glCompressedTexImage1D QOpenGLFunctions_3_3_Core::glCompressedTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc82154f3a0 0xc82154f460 0xc82154f4e0 0xc82154f5a0 0xc82154f660 0xc82154f720 0xc82154f7c0] } +&{glCompressedTexImage2D QOpenGLFunctions_3_3_Core::glCompressedTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc82154f9e0 0xc82154fa80 0xc82154fb20 0xc82154fbe0 0xc82154fca0 0xc82154fd40 0xc82154fe00 0xc82154fe80] } +&{glCompressedTexImage3D QOpenGLFunctions_3_3_Core::glCompressedTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8216cc080 0xc8216cc120 0xc8216cc1e0 0xc8216cc260 0xc8216cc360 0xc8216cc400 0xc8216cc4c0 0xc8216cc540 0xc8216cc600] } +&{glCompressedTexSubImage1D QOpenGLFunctions_3_3_Core::glCompressedTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8216cc860 0xc8216cc900 0xc8216cc980 0xc8216cca20 0xc8216ccb00 0xc8216ccba0 0xc8216ccc60] } +&{glCompressedTexSubImage2D QOpenGLFunctions_3_3_Core::glCompressedTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8216cce60 0xc8216ccf40 0xc8216ccfe0 0xc8216cd060 0xc8216cd160 0xc8216cd200 0xc8216cd280 0xc8216cd360 0xc8216cd420] } +&{glCompressedTexSubImage3D QOpenGLFunctions_3_3_Core::glCompressedTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8216cd660 0xc8216cd6e0 0xc8216cd7c0 0xc8216cd860 0xc8216cd900 0xc8216cd9e0 0xc8216cda80 0xc8216cdb00 0xc8216cdc00 0xc8216cdca0 0xc8216cdd20] } +&{glCopyBufferSubData QOpenGLFunctions_3_3_Core::glCopyBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8216cdf60 0xc8217e2040 0xc8217e20e0 0xc8217e2180 0xc8217e2260] } +&{glCopyTexImage1D QOpenGLFunctions_3_3_Core::glCopyTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8217e2400 0xc8217e24c0 0xc8217e2560 0xc8217e2600 0xc8217e26e0 0xc8217e2780 0xc8217e2820] } +&{glCopyTexImage2D QOpenGLFunctions_3_3_Core::glCopyTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8217e29e0 0xc8217e2a80 0xc8217e2b00 0xc8217e2be0 0xc8217e2ca0 0xc8217e2d40 0xc8217e2dc0 0xc8217e2ea0] } +&{glCopyTexSubImage1D QOpenGLFunctions_3_3_Core::glCopyTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8217e30e0 0xc8217e3180 0xc8217e3220 0xc8217e32a0 0xc8217e33a0 0xc8217e3440] } +&{glCopyTexSubImage2D QOpenGLFunctions_3_3_Core::glCopyTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8217e3680 0xc8217e3720 0xc8217e37a0 0xc8217e3860 0xc8217e3940 0xc8217e39c0 0xc8217e3a60 0xc8217e3b00] } +&{glCopyTexSubImage3D QOpenGLFunctions_3_3_Core::glCopyTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8217e3d20 0xc8217e3de0 0xc8217e3e80 0xc8217e3f20 0xc8217e3fc0 0xc821924080 0xc821924100 0xc8219241a0 0xc8219242a0] } +&{glCreateProgram QOpenGLFunctions_3_3_Core::glCreateProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false GLuint [] } +&{glCreateShader QOpenGLFunctions_3_3_Core::glCreateShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false GLuint [0xc821924520] } +&{glCullFace QOpenGLFunctions_3_3_Core::glCullFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821924700] } +&{glDeleteBuffers QOpenGLFunctions_3_3_Core::glDeleteBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8219248e0 0xc821924980] } +&{glDeleteFramebuffers QOpenGLFunctions_3_3_Core::glDeleteFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821924ba0 0xc821924c20] } +&{glDeleteProgram QOpenGLFunctions_3_3_Core::glDeleteProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821924e00] } +&{glDeleteQueries QOpenGLFunctions_3_3_Core::glDeleteQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821924fe0 0xc821925060] } +&{glDeleteRenderbuffers QOpenGLFunctions_3_3_Core::glDeleteRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc8219252c0 0xc821925340] } +&{glDeleteSamplers QOpenGLFunctions_3_3_Core::glDeleteSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821925520 0xc8219255c0] } +&{glDeleteShader QOpenGLFunctions_3_3_Core::glDeleteShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821925780] } +&{glDeleteSync QOpenGLFunctions_3_3_Core::glDeleteSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821925960] } +&{glDeleteTextures QOpenGLFunctions_3_3_Core::glDeleteTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821925b20 0xc821925bc0] } +&{glDeleteVertexArrays QOpenGLFunctions_3_3_Core::glDeleteVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821925e00 0xc821925ea0] } +&{glDepthFunc QOpenGLFunctions_3_3_Core::glDepthFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821aba080] } +&{glDepthMask QOpenGLFunctions_3_3_Core::glDepthMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821aba260] } +&{glDepthRange QOpenGLFunctions_3_3_Core::glDepthRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821aba400 0xc821aba4e0] } +&{glDetachShader QOpenGLFunctions_3_3_Core::glDetachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821aba660 0xc821aba740] } +&{glDisable QOpenGLFunctions_3_3_Core::glDisable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821aba900] } +&{glDisableVertexAttribArray QOpenGLFunctions_3_3_Core::glDisableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821abab40] } +&{glDisablei QOpenGLFunctions_3_3_Core::glDisablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821abad20 0xc821abadc0] } +&{glDrawArrays QOpenGLFunctions_3_3_Core::glDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821abaf40 0xc821abafc0 0xc821abb080] } +&{glDrawArraysInstanced QOpenGLFunctions_3_3_Core::glDrawArraysInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821abb2a0 0xc821abb320 0xc821abb3e0 0xc821abb460] } +&{glDrawBuffer QOpenGLFunctions_3_3_Core::glDrawBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821abb620] } +&{glDrawBuffers QOpenGLFunctions_3_3_Core::glDrawBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821abb800 0xc821abb8a0] } +&{glDrawElements QOpenGLFunctions_3_3_Core::glDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821abba40 0xc821abbb00 0xc821abbba0 0xc821abbc20] } +&{glDrawElementsBaseVertex QOpenGLFunctions_3_3_Core::glDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821abbe80 0xc821abbf20 0xc821abbfa0 0xc821c3e060 0xc821c3e120] } +&{glDrawElementsInstanced QOpenGLFunctions_3_3_Core::glDrawElementsInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c3e360 0xc821c3e400 0xc821c3e480 0xc821c3e540 0xc821c3e620] } +&{glDrawElementsInstancedBaseVertex QOpenGLFunctions_3_3_Core::glDrawElementsInstancedBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c3e7c0 0xc821c3e880 0xc821c3e900 0xc821c3e9c0 0xc821c3eaa0 0xc821c3eb20] } +&{glDrawRangeElements QOpenGLFunctions_3_3_Core::glDrawRangeElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c3ed60 0xc821c3ee20 0xc821c3eea0 0xc821c3ef60 0xc821c3f000 0xc821c3f0c0] } +&{glDrawRangeElementsBaseVertex QOpenGLFunctions_3_3_Core::glDrawRangeElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c3f300 0xc821c3f380 0xc821c3f440 0xc821c3f4e0 0xc821c3f5c0 0xc821c3f640 0xc821c3f700] } +&{glEnable QOpenGLFunctions_3_3_Core::glEnable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c3f8e0] } +&{glEnableVertexAttribArray QOpenGLFunctions_3_3_Core::glEnableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c3fb20] } +&{glEnablei QOpenGLFunctions_3_3_Core::glEnablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c3fce0 0xc821c3fda0] } +&{glEndConditionalRender QOpenGLFunctions_3_3_Core::glEndConditionalRender commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [] } +&{glEndQuery QOpenGLFunctions_3_3_Core::glEndQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cfa080] } +&{glEndTransformFeedback QOpenGLFunctions_3_3_Core::glEndTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [] } +&{glFenceSync QOpenGLFunctions_3_3_Core::glFenceSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false GLsync [0xc821cfa3c0 0xc821cfa480] } +&{glFinish QOpenGLFunctions_3_3_Core::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [] } +&{glFlush QOpenGLFunctions_3_3_Core::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [] } +&{glFlushMappedBufferRange QOpenGLFunctions_3_3_Core::glFlushMappedBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cfa800 0xc821cfa880 0xc821cfa940] } +&{glFramebufferRenderbuffer QOpenGLFunctions_3_3_Core::glFramebufferRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cfab80 0xc821cfac20 0xc821cfad00 0xc821cfade0] } +&{glFramebufferTexture QOpenGLFunctions_3_3_Core::glFramebufferTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cfb020 0xc821cfb0a0 0xc821cfb180 0xc821cfb200] } +&{glFramebufferTexture1D QOpenGLFunctions_3_3_Core::glFramebufferTexture1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cfb440 0xc821cfb500 0xc821cfb5a0 0xc821cfb640 0xc821cfb6e0] } +&{glFramebufferTexture2D QOpenGLFunctions_3_3_Core::glFramebufferTexture2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cfb920 0xc821cfba00 0xc821cfbaa0 0xc821cfbb20 0xc821cfbc00] } +&{glFramebufferTexture3D QOpenGLFunctions_3_3_Core::glFramebufferTexture3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cfbe40 0xc821cfbf00 0xc821cfbf80 0xc821cea000 0xc821cea0e0 0xc821cea180] } +&{glFramebufferTextureLayer QOpenGLFunctions_3_3_Core::glFramebufferTextureLayer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cea3e0 0xc821cea460 0xc821cea500 0xc821cea5e0 0xc821cea6a0] } +&{glFrontFace QOpenGLFunctions_3_3_Core::glFrontFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cea8a0] } +&{glGenBuffers QOpenGLFunctions_3_3_Core::glGenBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821ceaa60 0xc821ceab00] } +&{glGenFramebuffers QOpenGLFunctions_3_3_Core::glGenFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cead40 0xc821ceadc0] } +&{glGenQueries QOpenGLFunctions_3_3_Core::glGenQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821ceafa0 0xc821ceb020] } +&{glGenRenderbuffers QOpenGLFunctions_3_3_Core::glGenRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821ceb260 0xc821ceb300] } +&{glGenSamplers QOpenGLFunctions_3_3_Core::glGenSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821ceb4a0 0xc821ceb540] } +&{glGenTextures QOpenGLFunctions_3_3_Core::glGenTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821ceb720 0xc821ceb7c0] } +&{glGenVertexArrays QOpenGLFunctions_3_3_Core::glGenVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821ceb9e0 0xc821ceba80] } +&{glGenerateMipmap QOpenGLFunctions_3_3_Core::glGenerateMipmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cebc40] } +&{glGetActiveAttrib QOpenGLFunctions_3_3_Core::glGetActiveAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cebe80 0xc821cebf40 0xc821cebfe0 0xc821cd8080 0xc821cd8120 0xc821cd8200 0xc821cd82a0] } +&{glGetActiveUniform QOpenGLFunctions_3_3_Core::glGetActiveUniform commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cd84e0 0xc821cd8560 0xc821cd8620 0xc821cd86c0 0xc821cd8780 0xc821cd8800 0xc821cd88c0] } +&{glGetActiveUniformBlockName QOpenGLFunctions_3_3_Core::glGetActiveUniformBlockName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cd8b00 0xc821cd8be0 0xc821cd8ca0 0xc821cd8d40 0xc821cd8e20] } +&{glGetActiveUniformBlockiv QOpenGLFunctions_3_3_Core::glGetActiveUniformBlockiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cd9060 0xc821cd9120 0xc821cd9200 0xc821cd92a0] } +&{glGetActiveUniformName QOpenGLFunctions_3_3_Core::glGetActiveUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cd94e0 0xc821cd9580 0xc821cd9640 0xc821cd96c0 0xc821cd9780] } +&{glGetActiveUniformsiv QOpenGLFunctions_3_3_Core::glGetActiveUniformsiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cd99e0 0xc821cd9a80 0xc821cd9b20 0xc821cd9bc0 0xc821cd9c80] } +&{glGetAttachedShaders QOpenGLFunctions_3_3_Core::glGetAttachedShaders commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cd9ec0 0xc821cd9f60 0xc821cc6000 0xc821cc60c0] } +&{glGetAttribLocation QOpenGLFunctions_3_3_Core::glGetAttribLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false GLint [0xc821cc6300 0xc821cc6380] } +&{glGetBooleani_v QOpenGLFunctions_3_3_Core::glGetBooleani_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cc6540 0xc821cc6600 0xc821cc66a0] } +&{glGetBooleanv QOpenGLFunctions_3_3_Core::glGetBooleanv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cc6860 0xc821cc68e0] } +&{glGetBufferParameteri64v QOpenGLFunctions_3_3_Core::glGetBufferParameteri64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cc6b40 0xc821cc6be0 0xc821cc6c60] } +&{glGetBufferParameteriv QOpenGLFunctions_3_3_Core::glGetBufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cc6ea0 0xc821cc6f80 0xc821cc7020] } +&{glGetBufferPointerv QOpenGLFunctions_3_3_Core::glGetBufferPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cc7260 0xc821cc7300 0xc821cc7380] } +&{glGetBufferSubData QOpenGLFunctions_3_3_Core::glGetBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cc75c0 0xc821cc7680 0xc821cc7740 0xc821cc77c0] } +&{glGetCompressedTexImage QOpenGLFunctions_3_3_Core::glGetCompressedTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cc7a20 0xc821cc7ae0 0xc821cc7b80] } +&{glGetDoublev QOpenGLFunctions_3_3_Core::glGetDoublev commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cc7d40 0xc821cc7e00] } +&{glGetError QOpenGLFunctions_3_3_Core::glGetError commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false GLenum [] } +&{glGetFloatv QOpenGLFunctions_3_3_Core::glGetFloatv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cb2080 0xc821cb2100] } +&{glGetFragDataIndex QOpenGLFunctions_3_3_Core::glGetFragDataIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false GLint [0xc821cb2360 0xc821cb2400] } +&{glGetFragDataLocation QOpenGLFunctions_3_3_Core::glGetFragDataLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false GLint [0xc821cb2640 0xc821cb26e0] } +&{glGetFramebufferAttachmentParameteriv QOpenGLFunctions_3_3_Core::glGetFramebufferAttachmentParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cb28a0 0xc821cb2920 0xc821cb29e0 0xc821cb2aa0] } +&{glGetInteger64i_v QOpenGLFunctions_3_3_Core::glGetInteger64i_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cb2ca0 0xc821cb2d60 0xc821cb2e20] } +&{glGetInteger64v QOpenGLFunctions_3_3_Core::glGetInteger64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cb2fc0 0xc821cb3040] } +&{glGetIntegeri_v QOpenGLFunctions_3_3_Core::glGetIntegeri_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cb3240 0xc821cb32c0 0xc821cb3380] } +&{glGetIntegerv QOpenGLFunctions_3_3_Core::glGetIntegerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cb3540 0xc821cb35e0] } +&{glGetMultisamplefv QOpenGLFunctions_3_3_Core::glGetMultisamplefv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cb3800 0xc821cb38c0 0xc821cb3960] } +&{glGetPointerv QOpenGLFunctions_3_3_Core::glGetPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cb3b00 0xc821cb3bc0] } +&{glGetProgramInfoLog QOpenGLFunctions_3_3_Core::glGetProgramInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821cb3e20 0xc821cb3ea0 0xc821cb3f60 0xc821cb3fe0] } +&{glGetProgramiv QOpenGLFunctions_3_3_Core::glGetProgramiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c9a180 0xc821c9a200 0xc821c9a2e0] } +&{glGetQueryObjecti64v QOpenGLFunctions_3_3_Core::glGetQueryObjecti64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c9a520 0xc821c9a5c0 0xc821c9a640] } +&{glGetQueryObjectiv QOpenGLFunctions_3_3_Core::glGetQueryObjectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c9a8c0 0xc821c9a940 0xc821c9aa00] } +&{glGetQueryObjectui64v QOpenGLFunctions_3_3_Core::glGetQueryObjectui64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c9ac40 0xc821c9acc0 0xc821c9ad80] } +&{glGetQueryObjectuiv QOpenGLFunctions_3_3_Core::glGetQueryObjectuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c9af80 0xc821c9b040 0xc821c9b0c0] } +&{glGetQueryiv QOpenGLFunctions_3_3_Core::glGetQueryiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c9b260 0xc821c9b320 0xc821c9b3a0] } +&{glGetRenderbufferParameteriv QOpenGLFunctions_3_3_Core::glGetRenderbufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c9b5e0 0xc821c9b6a0 0xc821c9b740] } +&{glGetSamplerParameterIiv QOpenGLFunctions_3_3_Core::glGetSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c9b940 0xc821c9ba20 0xc821c9baa0] } +&{glGetSamplerParameterIuiv QOpenGLFunctions_3_3_Core::glGetSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c9bce0 0xc821c9bd80 0xc821c9be00] } +&{glGetSamplerParameterfv QOpenGLFunctions_3_3_Core::glGetSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c900a0 0xc821c90140 0xc821c901e0] } +&{glGetSamplerParameteriv QOpenGLFunctions_3_3_Core::glGetSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c90400 0xc821c904e0 0xc821c90580] } +&{glGetShaderInfoLog QOpenGLFunctions_3_3_Core::glGetShaderInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c907c0 0xc821c90840 0xc821c90920 0xc821c909c0] } +&{glGetShaderSource QOpenGLFunctions_3_3_Core::glGetShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c90c00 0xc821c90c80 0xc821c90d60 0xc821c90e00] } +&{glGetShaderiv QOpenGLFunctions_3_3_Core::glGetShaderiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c90fa0 0xc821c91060 0xc821c91100] } +&{glGetString QOpenGLFunctions_3_3_Core::glGetString commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false const GLubyte * [0xc821c912c0] } +&{glGetStringi QOpenGLFunctions_3_3_Core::glGetStringi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false const GLubyte * [0xc821c91480 0xc821c91520] } +&{glGetSynciv QOpenGLFunctions_3_3_Core::glGetSynciv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c916c0 0xc821c91780 0xc821c91800 0xc821c918c0 0xc821c919a0] } +&{glGetTexImage QOpenGLFunctions_3_3_Core::glGetTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c91b40 0xc821c91c20 0xc821c91cc0 0xc821c91d40 0xc821c91e40] } +&{glGetTexLevelParameterfv QOpenGLFunctions_3_3_Core::glGetTexLevelParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c76080 0xc821c76100 0xc821c761c0 0xc821c76260] } +&{glGetTexLevelParameteriv QOpenGLFunctions_3_3_Core::glGetTexLevelParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c764a0 0xc821c76560 0xc821c765e0 0xc821c76680] } +&{glGetTexParameterIiv QOpenGLFunctions_3_3_Core::glGetTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c768c0 0xc821c769a0 0xc821c76a20] } +&{glGetTexParameterIuiv QOpenGLFunctions_3_3_Core::glGetTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c76c80 0xc821c76d00 0xc821c76da0] } +&{glGetTexParameterfv QOpenGLFunctions_3_3_Core::glGetTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c77020 0xc821c770c0 0xc821c77140] } +&{glGetTexParameteriv QOpenGLFunctions_3_3_Core::glGetTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c77380 0xc821c77460 0xc821c77500] } +&{glGetTransformFeedbackVarying QOpenGLFunctions_3_3_Core::glGetTransformFeedbackVarying commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c77720 0xc821c777c0 0xc821c778a0 0xc821c77940 0xc821c779e0 0xc821c77ac0 0xc821c77b40] } +&{glGetUniformBlockIndex QOpenGLFunctions_3_3_Core::glGetUniformBlockIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false GLuint [0xc821c77da0 0xc821c77e20] } +&{glGetUniformIndices QOpenGLFunctions_3_3_Core::glGetUniformIndices commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c6a060 0xc821c6a100 0xc821c6a1e0 0xc821c6a2e0] } +&{glGetUniformLocation QOpenGLFunctions_3_3_Core::glGetUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false GLint [0xc821c6a4e0 0xc821c6a5a0] } +&{glGetUniformfv QOpenGLFunctions_3_3_Core::glGetUniformfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c6a760 0xc821c6a820 0xc821c6a8a0] } +&{glGetUniformiv QOpenGLFunctions_3_3_Core::glGetUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c6aa80 0xc821c6ab20 0xc821c6aba0] } +&{glGetUniformuiv QOpenGLFunctions_3_3_Core::glGetUniformuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c6ad60 0xc821c6ae20 0xc821c6aec0] } +&{glGetVertexAttribIiv QOpenGLFunctions_3_3_Core::glGetVertexAttribIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c6b120 0xc821c6b1a0 0xc821c6b240] } +&{glGetVertexAttribIuiv QOpenGLFunctions_3_3_Core::glGetVertexAttribIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c6b480 0xc821c6b560 0xc821c6b600] } +&{glGetVertexAttribPointerv QOpenGLFunctions_3_3_Core::glGetVertexAttribPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c6b860 0xc821c6b900 0xc821c6b980] } +&{glGetVertexAttribdv QOpenGLFunctions_3_3_Core::glGetVertexAttribdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c6bbe0 0xc821c6bc60 0xc821c6bd40] } +&{glGetVertexAttribfv QOpenGLFunctions_3_3_Core::glGetVertexAttribfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c6bf80 0xc821c52040 0xc821c520e0] } +&{glGetVertexAttribiv QOpenGLFunctions_3_3_Core::glGetVertexAttribiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c52320 0xc821c523a0 0xc821c52460] } +&{glHint QOpenGLFunctions_3_3_Core::glHint commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c52600 0xc821c526a0] } +&{glIndexub QOpenGLFunctions_3_3_Core::glIndexub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c528a0] } +&{glIndexubv QOpenGLFunctions_3_3_Core::glIndexubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c52a60] } +&{glIsBuffer QOpenGLFunctions_3_3_Core::glIsBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false GLboolean [0xc821c52c00] } +&{glIsEnabled QOpenGLFunctions_3_3_Core::glIsEnabled commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false GLboolean [0xc821c52dc0] } +&{glIsEnabledi QOpenGLFunctions_3_3_Core::glIsEnabledi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false GLboolean [0xc821c52fa0 0xc821c53040] } +&{glIsFramebuffer QOpenGLFunctions_3_3_Core::glIsFramebuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false GLboolean [0xc821c53200] } +&{glIsProgram QOpenGLFunctions_3_3_Core::glIsProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false GLboolean [0xc821c533e0] } +&{glIsQuery QOpenGLFunctions_3_3_Core::glIsQuery commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false GLboolean [0xc821c535c0] } +&{glIsRenderbuffer QOpenGLFunctions_3_3_Core::glIsRenderbuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false GLboolean [0xc821c53780] } +&{glIsSampler QOpenGLFunctions_3_3_Core::glIsSampler commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false GLboolean [0xc821c53940] } +&{glIsShader QOpenGLFunctions_3_3_Core::glIsShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false GLboolean [0xc821c53b00] } +&{glIsSync QOpenGLFunctions_3_3_Core::glIsSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false GLboolean [0xc821c53cc0] } +&{glIsTexture QOpenGLFunctions_3_3_Core::glIsTexture commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false GLboolean [0xc821c53ec0] } +&{glIsVertexArray QOpenGLFunctions_3_3_Core::glIsVertexArray commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false GLboolean [0xc821c28040] } +&{glLineWidth QOpenGLFunctions_3_3_Core::glLineWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c28240] } +&{glLinkProgram QOpenGLFunctions_3_3_Core::glLinkProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c28420] } +&{glLogicOp QOpenGLFunctions_3_3_Core::glLogicOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c285e0] } +&{glMapBuffer QOpenGLFunctions_3_3_Core::glMapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false GLvoid * [0xc821c287a0 0xc821c28820] } +&{glMapBufferRange QOpenGLFunctions_3_3_Core::glMapBufferRange commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false GLvoid * [0xc821c289e0 0xc821c28aa0 0xc821c28b20 0xc821c28ba0] } +&{glMultiDrawArrays QOpenGLFunctions_3_3_Core::glMultiDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c28da0 0xc821c28e60 0xc821c28ee0 0xc821c28fc0] } +&{glMultiDrawElements QOpenGLFunctions_3_3_Core::glMultiDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c291e0 0xc821c292a0 0xc821c29320 0xc821c29400 0xc821c29540] } +&{glMultiDrawElementsBaseVertex QOpenGLFunctions_3_3_Core::glMultiDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c29740 0xc821c297c0 0xc821c29880 0xc821c29940 0xc821c29a60 0xc821c29b00] } +&{glMultiTexCoordP1ui QOpenGLFunctions_3_3_Core::glMultiTexCoordP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c29d40 0xc821c29de0 0xc821c29e60] } +&{glMultiTexCoordP1uiv QOpenGLFunctions_3_3_Core::glMultiTexCoordP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c16080 0xc821c16140 0xc821c161c0] } +&{glMultiTexCoordP2ui QOpenGLFunctions_3_3_Core::glMultiTexCoordP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c163e0 0xc821c164c0 0xc821c16540] } +&{glMultiTexCoordP2uiv QOpenGLFunctions_3_3_Core::glMultiTexCoordP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c16780 0xc821c16800 0xc821c168c0] } +&{glMultiTexCoordP3ui QOpenGLFunctions_3_3_Core::glMultiTexCoordP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c16b00 0xc821c16b80 0xc821c16c40] } +&{glMultiTexCoordP3uiv QOpenGLFunctions_3_3_Core::glMultiTexCoordP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c16e80 0xc821c16f00 0xc821c16fc0] } +&{glMultiTexCoordP4ui QOpenGLFunctions_3_3_Core::glMultiTexCoordP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c17200 0xc821c172a0 0xc821c17340] } +&{glMultiTexCoordP4uiv QOpenGLFunctions_3_3_Core::glMultiTexCoordP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c17560 0xc821c17620 0xc821c176c0] } +&{glNormalP3ui QOpenGLFunctions_3_3_Core::glNormalP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c17880 0xc821c17900] } +&{glNormalP3uiv QOpenGLFunctions_3_3_Core::glNormalP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c17ac0 0xc821c17ba0] } +&{glPixelStoref QOpenGLFunctions_3_3_Core::glPixelStoref commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c17d60 0xc821c17e00] } +&{glPixelStorei QOpenGLFunctions_3_3_Core::glPixelStorei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821c17fe0 0xc821bfe080] } +&{glPointParameterf QOpenGLFunctions_3_3_Core::glPointParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bfe2e0 0xc821bfe380] } +&{glPointParameterfv QOpenGLFunctions_3_3_Core::glPointParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bfe5c0 0xc821bfe660] } +&{glPointParameteri QOpenGLFunctions_3_3_Core::glPointParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bfe8c0 0xc821bfe940] } +&{glPointParameteriv QOpenGLFunctions_3_3_Core::glPointParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bfeba0 0xc821bfec20] } +&{glPointSize QOpenGLFunctions_3_3_Core::glPointSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bfee40] } +&{glPolygonMode QOpenGLFunctions_3_3_Core::glPolygonMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bff000 0xc821bff080] } +&{glPolygonOffset QOpenGLFunctions_3_3_Core::glPolygonOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bff260 0xc821bff320] } +&{glPrimitiveRestartIndex QOpenGLFunctions_3_3_Core::glPrimitiveRestartIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bff560] } +&{glProvokingVertex QOpenGLFunctions_3_3_Core::glProvokingVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bff760] } +&{glQueryCounter QOpenGLFunctions_3_3_Core::glQueryCounter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bff940 0xc821bff9c0] } +&{glReadBuffer QOpenGLFunctions_3_3_Core::glReadBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bffbe0] } +&{glReadPixels QOpenGLFunctions_3_3_Core::glReadPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bffd60 0xc821bffe20 0xc821bffea0 0xc821bfff80 0xc821bf2060 0xc821bf2120 0xc821bf21c0] } +&{glRenderbufferStorage QOpenGLFunctions_3_3_Core::glRenderbufferStorage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bf2400 0xc821bf24a0 0xc821bf2540 0xc821bf25c0] } +&{glRenderbufferStorageMultisample QOpenGLFunctions_3_3_Core::glRenderbufferStorageMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bf2800 0xc821bf28a0 0xc821bf2960 0xc821bf2a00 0xc821bf2ac0] } +&{glSampleCoverage QOpenGLFunctions_3_3_Core::glSampleCoverage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bf2ca0 0xc821bf2d40] } +&{glSampleMaski QOpenGLFunctions_3_3_Core::glSampleMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bf2ee0 0xc821bf2f80] } +&{glSamplerParameterIiv QOpenGLFunctions_3_3_Core::glSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bf31a0 0xc821bf3280 0xc821bf3320] } +&{glSamplerParameterIuiv QOpenGLFunctions_3_3_Core::glSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bf3540 0xc821bf35e0 0xc821bf3680] } +&{glSamplerParameterf QOpenGLFunctions_3_3_Core::glSamplerParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bf38e0 0xc821bf3960 0xc821bf3a00] } +&{glSamplerParameterfv QOpenGLFunctions_3_3_Core::glSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bf3c40 0xc821bf3d20 0xc821bf3dc0] } +&{glSamplerParameteri QOpenGLFunctions_3_3_Core::glSamplerParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821be0000 0xc821be00c0 0xc821be0140] } +&{glSamplerParameteriv QOpenGLFunctions_3_3_Core::glSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821be0380 0xc821be0420 0xc821be0500] } +&{glScissor QOpenGLFunctions_3_3_Core::glScissor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821be06a0 0xc821be0760 0xc821be0800 0xc821be0880] } +&{glSecondaryColorP3ui QOpenGLFunctions_3_3_Core::glSecondaryColorP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821be0ae0 0xc821be0b80] } +&{glSecondaryColorP3uiv QOpenGLFunctions_3_3_Core::glSecondaryColorP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821be0e00 0xc821be0ea0] } +&{glShaderSource QOpenGLFunctions_3_3_Core::glShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821be1040 0xc821be1120 0xc821be11e0 0xc821be12c0] } +&{glStencilFunc QOpenGLFunctions_3_3_Core::glStencilFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821be14c0 0xc821be1540 0xc821be15e0] } +&{glStencilFuncSeparate QOpenGLFunctions_3_3_Core::glStencilFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821be1820 0xc821be1900 0xc821be19a0 0xc821be1a40] } +&{glStencilMask QOpenGLFunctions_3_3_Core::glStencilMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821be1c40] } +&{glStencilMaskSeparate QOpenGLFunctions_3_3_Core::glStencilMaskSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821be1e80 0xc821be1f40] } +&{glStencilOp QOpenGLFunctions_3_3_Core::glStencilOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bd00c0 0xc821bd0160 0xc821bd0200] } +&{glStencilOpSeparate QOpenGLFunctions_3_3_Core::glStencilOpSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bd0440 0xc821bd04e0 0xc821bd0580 0xc821bd0620] } +&{glTexBuffer QOpenGLFunctions_3_3_Core::glTexBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bd0800 0xc821bd08a0 0xc821bd0920] } +&{glTexCoordP1ui QOpenGLFunctions_3_3_Core::glTexCoordP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bd0b00 0xc821bd0ba0] } +&{glTexCoordP1uiv QOpenGLFunctions_3_3_Core::glTexCoordP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bd0d60 0xc821bd0e40] } +&{glTexCoordP2ui QOpenGLFunctions_3_3_Core::glTexCoordP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bd0fe0 0xc821bd10a0] } +&{glTexCoordP2uiv QOpenGLFunctions_3_3_Core::glTexCoordP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bd1280 0xc821bd1320] } +&{glTexCoordP3ui QOpenGLFunctions_3_3_Core::glTexCoordP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bd14e0 0xc821bd1580] } +&{glTexCoordP3uiv QOpenGLFunctions_3_3_Core::glTexCoordP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bd1760 0xc821bd17e0] } +&{glTexCoordP4ui QOpenGLFunctions_3_3_Core::glTexCoordP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bd19c0 0xc821bd1a40] } +&{glTexCoordP4uiv QOpenGLFunctions_3_3_Core::glTexCoordP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bd1c40 0xc821bd1cc0] } +&{glTexImage1D QOpenGLFunctions_3_3_Core::glTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bd1ea0 0xc821bd1f40 0xc821bbe020 0xc821bbe0a0 0xc821bbe180 0xc821bbe220 0xc821bbe2c0 0xc821bbe340] } +&{glTexImage2D QOpenGLFunctions_3_3_Core::glTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bbe540 0xc821bbe5e0 0xc821bbe680 0xc821bbe700 0xc821bbe7c0 0xc821bbe880 0xc821bbe920 0xc821bbe9c0 0xc821bbea80] } +&{glTexImage2DMultisample QOpenGLFunctions_3_3_Core::glTexImage2DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bbecc0 0xc821bbed40 0xc821bbee20 0xc821bbeec0 0xc821bbef60 0xc821bbf060] } +&{glTexImage3D QOpenGLFunctions_3_3_Core::glTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bbf260 0xc821bbf320 0xc821bbf3a0 0xc821bbf420 0xc821bbf500 0xc821bbf5c0 0xc821bbf660 0xc821bbf700 0xc821bbf7a0 0xc821bbf860] } +&{glTexImage3DMultisample QOpenGLFunctions_3_3_Core::glTexImage3DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bbfa80 0xc821bbfb40 0xc821bbfbc0 0xc821bbfca0 0xc821bbfd40 0xc821bbfe20 0xc821bbfee0] } +&{glTexParameterIiv QOpenGLFunctions_3_3_Core::glTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bac160 0xc821bac1e0 0xc821bac2c0] } +&{glTexParameterIuiv QOpenGLFunctions_3_3_Core::glTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bac4e0 0xc821bac5a0 0xc821bac620] } +&{glTexParameterf QOpenGLFunctions_3_3_Core::glTexParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bac7e0 0xc821bac880 0xc821bac920] } +&{glTexParameterfv QOpenGLFunctions_3_3_Core::glTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bacac0 0xc821bacb60 0xc821bacc00] } +&{glTexParameteri QOpenGLFunctions_3_3_Core::glTexParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bacdc0 0xc821bace40 0xc821bacee0] } +&{glTexParameteriv QOpenGLFunctions_3_3_Core::glTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bad0c0 0xc821bad160 0xc821bad200] } +&{glTexSubImage1D QOpenGLFunctions_3_3_Core::glTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bad3c0 0xc821bad440 0xc821bad4e0 0xc821bad5a0 0xc821bad660 0xc821bad700 0xc821bad7c0] } +&{glTexSubImage2D QOpenGLFunctions_3_3_Core::glTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821bad980 0xc821bada00 0xc821badac0 0xc821badb60 0xc821badc00 0xc821badce0 0xc821badd80 0xc821bade20 0xc821badec0] } +&{glTexSubImage3D QOpenGLFunctions_3_3_Core::glTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b9a0c0 0xc821b9a140 0xc821b9a200 0xc821b9a280 0xc821b9a360 0xc821b9a3e0 0xc821b9a4a0 0xc821b9a520 0xc821b9a600 0xc821b9a680 0xc821b9a740] } +&{glTransformFeedbackVaryings QOpenGLFunctions_3_3_Core::glTransformFeedbackVaryings commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b9a960 0xc821b9aa20 0xc821b9aae0 0xc821b9abe0] } +&{glUniform1f QOpenGLFunctions_3_3_Core::glUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b9ada0 0xc821b9ae40] } +&{glUniform1fv QOpenGLFunctions_3_3_Core::glUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b9b020 0xc821b9b0a0 0xc821b9b160] } +&{glUniform1i QOpenGLFunctions_3_3_Core::glUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b9b300 0xc821b9b3c0] } +&{glUniform1iv QOpenGLFunctions_3_3_Core::glUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b9b560 0xc821b9b620 0xc821b9b6e0] } +&{glUniform1ui QOpenGLFunctions_3_3_Core::glUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b9b8a0 0xc821b9b920] } +&{glUniform1uiv QOpenGLFunctions_3_3_Core::glUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b9bac0 0xc821b9bb80 0xc821b9bc00] } +&{glUniform2f QOpenGLFunctions_3_3_Core::glUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b9bda0 0xc821b9be60 0xc821b9bee0] } +&{glUniform2fv QOpenGLFunctions_3_3_Core::glUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b820a0 0xc821b82140 0xc821b821e0] } +&{glUniform2i QOpenGLFunctions_3_3_Core::glUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b82380 0xc821b82440 0xc821b824e0] } +&{glUniform2iv QOpenGLFunctions_3_3_Core::glUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b826a0 0xc821b82720 0xc821b827e0] } +&{glUniform2ui QOpenGLFunctions_3_3_Core::glUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b82980 0xc821b82a00 0xc821b82ac0] } +&{glUniform2uiv QOpenGLFunctions_3_3_Core::glUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b82c60 0xc821b82ce0 0xc821b82da0] } +&{glUniform3f QOpenGLFunctions_3_3_Core::glUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b82f40 0xc821b83000 0xc821b83080 0xc821b83100] } +&{glUniform3fv QOpenGLFunctions_3_3_Core::glUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b832e0 0xc821b83360 0xc821b833e0] } +&{glUniform3i QOpenGLFunctions_3_3_Core::glUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b835e0 0xc821b83660 0xc821b83720 0xc821b837a0] } +&{glUniform3iv QOpenGLFunctions_3_3_Core::glUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b83980 0xc821b83a20 0xc821b83aa0] } +&{glUniform3ui QOpenGLFunctions_3_3_Core::glUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b83c40 0xc821b83d00 0xc821b83d80 0xc821b83e40] } +&{glUniform3uiv QOpenGLFunctions_3_3_Core::glUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b83fe0 0xc821b6e0a0 0xc821b6e140] } +&{glUniform4f QOpenGLFunctions_3_3_Core::glUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b6e320 0xc821b6e3e0 0xc821b6e480 0xc821b6e500 0xc821b6e600] } +&{glUniform4fv QOpenGLFunctions_3_3_Core::glUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b6e7c0 0xc821b6e860 0xc821b6e900] } +&{glUniform4i QOpenGLFunctions_3_3_Core::glUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b6eac0 0xc821b6eb60 0xc821b6ebe0 0xc821b6ecc0 0xc821b6ed80] } +&{glUniform4iv QOpenGLFunctions_3_3_Core::glUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b6ef60 0xc821b6f000 0xc821b6f080] } +&{glUniform4ui QOpenGLFunctions_3_3_Core::glUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b6f280 0xc821b6f300 0xc821b6f3a0 0xc821b6f460 0xc821b6f540] } +&{glUniform4uiv QOpenGLFunctions_3_3_Core::glUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b6f700 0xc821b6f7c0 0xc821b6f840] } +&{glUniformBlockBinding QOpenGLFunctions_3_3_Core::glUniformBlockBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b6faa0 0xc821b6fb40 0xc821b6fca0] } +&{glUniformMatrix2fv QOpenGLFunctions_3_3_Core::glUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b6ff20 0xc821b6ffa0 0xc821b5e0a0 0xc821b5e160] } +&{glUniformMatrix2x3fv QOpenGLFunctions_3_3_Core::glUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b5e3a0 0xc821b5e420 0xc821b5e4e0 0xc821b5e580] } +&{glUniformMatrix2x4fv QOpenGLFunctions_3_3_Core::glUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b5e7a0 0xc821b5e840 0xc821b5e8e0 0xc821b5e980] } +&{glUniformMatrix3fv QOpenGLFunctions_3_3_Core::glUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b5ebe0 0xc821b5ec80 0xc821b5ed00 0xc821b5eda0] } +&{glUniformMatrix3x2fv QOpenGLFunctions_3_3_Core::glUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b5f000 0xc821b5f0a0 0xc821b5f160 0xc821b5f220] } +&{glUniformMatrix3x4fv QOpenGLFunctions_3_3_Core::glUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b5f460 0xc821b5f500 0xc821b5f580 0xc821b5f660] } +&{glUniformMatrix4fv QOpenGLFunctions_3_3_Core::glUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b5f880 0xc821b5f940 0xc821b5fa00 0xc821b5fa80] } +&{glUniformMatrix4x2fv QOpenGLFunctions_3_3_Core::glUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b5fcc0 0xc821b5fd60 0xc821b5fe00 0xc821b5fec0] } +&{glUniformMatrix4x3fv QOpenGLFunctions_3_3_Core::glUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b500c0 0xc821b50180 0xc821b50240 0xc821b502c0] } +&{glUnmapBuffer QOpenGLFunctions_3_3_Core::glUnmapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false GLboolean [0xc821b504a0] } +&{glUseProgram QOpenGLFunctions_3_3_Core::glUseProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b50680] } +&{glValidateProgram QOpenGLFunctions_3_3_Core::glValidateProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b508a0] } +&{glVertexAttribDivisor QOpenGLFunctions_3_3_Core::glVertexAttribDivisor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b50ae0 0xc821b50b80] } +&{glVertexAttribIPointer QOpenGLFunctions_3_3_Core::glVertexAttribIPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b50de0 0xc821b50e80 0xc821b50f20 0xc821b50fa0 0xc821b510a0] } +&{glVertexAttribP1ui QOpenGLFunctions_3_3_Core::glVertexAttribP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b512c0 0xc821b51380 0xc821b51440 0xc821b514c0] } +&{glVertexAttribP1uiv QOpenGLFunctions_3_3_Core::glVertexAttribP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b51700 0xc821b517a0 0xc821b51820 0xc821b518c0] } +&{glVertexAttribP2ui QOpenGLFunctions_3_3_Core::glVertexAttribP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b51b00 0xc821b51b80 0xc821b51c60 0xc821b51d00] } +&{glVertexAttribP2uiv QOpenGLFunctions_3_3_Core::glVertexAttribP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b51f40 0xc821b51fc0 0xc821b3a040 0xc821b3a100] } +&{glVertexAttribP3ui QOpenGLFunctions_3_3_Core::glVertexAttribP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b3a340 0xc821b3a3c0 0xc821b3a480 0xc821b3a520] } +&{glVertexAttribP3uiv QOpenGLFunctions_3_3_Core::glVertexAttribP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b3a740 0xc821b3a7e0 0xc821b3a8a0 0xc821b3a920] } +&{glVertexAttribP4ui QOpenGLFunctions_3_3_Core::glVertexAttribP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b3aba0 0xc821b3ac20 0xc821b3ace0 0xc821b3ada0] } +&{glVertexAttribP4uiv QOpenGLFunctions_3_3_Core::glVertexAttribP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b3afe0 0xc821b3b080 0xc821b3b100 0xc821b3b1e0] } +&{glVertexAttribPointer QOpenGLFunctions_3_3_Core::glVertexAttribPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b3b400 0xc821b3b4c0 0xc821b3b580 0xc821b3b600 0xc821b3b6c0 0xc821b3b7a0] } +&{glVertexP2ui QOpenGLFunctions_3_3_Core::glVertexP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b3b960 0xc821b3ba00] } +&{glVertexP2uiv QOpenGLFunctions_3_3_Core::glVertexP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b3bba0 0xc821b3bc80] } +&{glVertexP3ui QOpenGLFunctions_3_3_Core::glVertexP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b3be20 0xc821b3bee0] } +&{glVertexP3uiv QOpenGLFunctions_3_3_Core::glVertexP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b2a0a0 0xc821b2a120] } +&{glVertexP4ui QOpenGLFunctions_3_3_Core::glVertexP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b2a300 0xc821b2a380] } +&{glVertexP4uiv QOpenGLFunctions_3_3_Core::glVertexP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b2a540 0xc821b2a600] } +&{glViewport QOpenGLFunctions_3_3_Core::glViewport commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b2a7a0 0xc821b2a880 0xc821b2a920 0xc821b2a9a0] } +&{glWaitSync QOpenGLFunctions_3_3_Core::glWaitSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_3_3_core.h non plain false false void [0xc821b2ab80 0xc821b2ac00 0xc821b2acc0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions_4_0_Compatibility.txt b/internal/binding/dump/QtGui/QOpenGLFunctions_4_0_Compatibility.txt new file mode 100755 index 00000000..8ee15b61 --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions_4_0_Compatibility.txt @@ -0,0 +1,807 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions_4_0_Compatibility QOpenGLFunctions_4_0_Compatibility::QOpenGLFunctions_4_0_Compatibility commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.cpp non constructor false false [] } +&{initializeOpenGLFunctions QOpenGLFunctions_4_0_Compatibility::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.cpp impure plain false false bool [] } +&{~QOpenGLFunctions_4_0_Compatibility QOpenGLFunctions_4_0_Compatibility::~QOpenGLFunctions_4_0_Compatibility commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.cpp non destructor false false [] } +&{glAccum QOpenGLFunctions_4_0_Compatibility::glAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821b2b500 0xc821b2b5a0] } +&{glActiveTexture QOpenGLFunctions_4_0_Compatibility::glActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821b2b740] } +&{glAlphaFunc QOpenGLFunctions_4_0_Compatibility::glAlphaFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821b2b8c0 0xc821b2b980] } +&{glAreTexturesResident QOpenGLFunctions_4_0_Compatibility::glAreTexturesResident commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLboolean [0xc821b2bbe0 0xc821b2bc80 0xc821b2bd20] } +&{glArrayElement QOpenGLFunctions_4_0_Compatibility::glArrayElement commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821b2bf00] } +&{glAttachShader QOpenGLFunctions_4_0_Compatibility::glAttachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821b1a080 0xc821b1a100] } +&{glBegin QOpenGLFunctions_4_0_Compatibility::glBegin commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821b1a300] } +&{glBeginConditionalRender QOpenGLFunctions_4_0_Compatibility::glBeginConditionalRender commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821b1a520 0xc821b1a5e0] } +&{glBeginQuery QOpenGLFunctions_4_0_Compatibility::glBeginQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821b1a780 0xc821b1a820] } +&{glBeginQueryIndexed QOpenGLFunctions_4_0_Compatibility::glBeginQueryIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821b1aa40 0xc821b1aac0 0xc821b1ab40] } +&{glBeginTransformFeedback QOpenGLFunctions_4_0_Compatibility::glBeginTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821b1ad40] } +&{glBindAttribLocation QOpenGLFunctions_4_0_Compatibility::glBindAttribLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821b1af80 0xc821b1b060 0xc821b1b100] } +&{glBindBuffer QOpenGLFunctions_4_0_Compatibility::glBindBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821b1b2a0 0xc821b1b340] } +&{glBindBufferBase QOpenGLFunctions_4_0_Compatibility::glBindBufferBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821b1b4c0 0xc821b1b560 0xc821b1b600] } +&{glBindBufferRange QOpenGLFunctions_4_0_Compatibility::glBindBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821b1b800 0xc821b1b8c0 0xc821b1b980 0xc821b1ba00 0xc821b1bac0] } +&{glBindFragDataLocation QOpenGLFunctions_4_0_Compatibility::glBindFragDataLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821b1bce0 0xc821b1bdc0 0xc821b1be60] } +&{glBindFragDataLocationIndexed QOpenGLFunctions_4_0_Compatibility::glBindFragDataLocationIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821b0a060 0xc821b0a140 0xc821b0a1e0 0xc821b0a2a0] } +&{glBindFramebuffer QOpenGLFunctions_4_0_Compatibility::glBindFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821b0a4c0 0xc821b0a540] } +&{glBindRenderbuffer QOpenGLFunctions_4_0_Compatibility::glBindRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821b0a760 0xc821b0a7e0] } +&{glBindSampler QOpenGLFunctions_4_0_Compatibility::glBindSampler commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821b0a980 0xc821b0aa60] } +&{glBindTexture QOpenGLFunctions_4_0_Compatibility::glBindTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821b0abe0 0xc821b0ac80] } +&{glBindTransformFeedback QOpenGLFunctions_4_0_Compatibility::glBindTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821b0aea0 0xc821b0af40] } +&{glBindVertexArray QOpenGLFunctions_4_0_Compatibility::glBindVertexArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821b0b160] } +&{glBitmap QOpenGLFunctions_4_0_Compatibility::glBitmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821b0b340 0xc821b0b3e0 0xc821b0b460 0xc821b0b520 0xc821b0b5e0 0xc821b0b660 0xc821b0b740] } +&{glBlendColor QOpenGLFunctions_4_0_Compatibility::glBlendColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821b0b8c0 0xc821b0b960 0xc821b0ba20 0xc821b0bae0] } +&{glBlendEquation QOpenGLFunctions_4_0_Compatibility::glBlendEquation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821b0bc80] } +&{glBlendEquationSeparate QOpenGLFunctions_4_0_Compatibility::glBlendEquationSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821b0be60 0xc821b0bf40] } +&{glBlendEquationSeparatei QOpenGLFunctions_4_0_Compatibility::glBlendEquationSeparatei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821afa160 0xc821afa200 0xc821afa280] } +&{glBlendEquationi QOpenGLFunctions_4_0_Compatibility::glBlendEquationi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821afa420 0xc821afa4c0] } +&{glBlendFunc QOpenGLFunctions_4_0_Compatibility::glBlendFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821afa660 0xc821afa720] } +&{glBlendFuncSeparate QOpenGLFunctions_4_0_Compatibility::glBlendFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821afa920 0xc821afa9c0 0xc821afaa60 0xc821afab20] } +&{glBlendFuncSeparatei QOpenGLFunctions_4_0_Compatibility::glBlendFuncSeparatei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821afad00 0xc821afadc0 0xc821afae60 0xc821afaf00 0xc821afafe0] } +&{glBlendFunci QOpenGLFunctions_4_0_Compatibility::glBlendFunci commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821afb140 0xc821afb200 0xc821afb2a0] } +&{glBlitFramebuffer QOpenGLFunctions_4_0_Compatibility::glBlitFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821afb4c0 0xc821afb540 0xc821afb620 0xc821afb6c0 0xc821afb7a0 0xc821afb840 0xc821afb8c0 0xc821afb960 0xc821afba40 0xc821afbae0] } +&{glBufferData QOpenGLFunctions_4_0_Compatibility::glBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821afbc60 0xc821afbd00 0xc821afbda0 0xc821afbe60] } +&{glBufferSubData QOpenGLFunctions_4_0_Compatibility::glBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821afbfe0 0xc821ae80c0 0xc821ae8160 0xc821ae8220] } +&{glCallList QOpenGLFunctions_4_0_Compatibility::glCallList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ae83c0] } +&{glCallLists QOpenGLFunctions_4_0_Compatibility::glCallLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ae8560 0xc821ae8600 0xc821ae8680] } +&{glCheckFramebufferStatus QOpenGLFunctions_4_0_Compatibility::glCheckFramebufferStatus commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLenum [0xc821ae88a0] } +&{glClampColor QOpenGLFunctions_4_0_Compatibility::glClampColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ae8a20 0xc821ae8ac0] } +&{glClear QOpenGLFunctions_4_0_Compatibility::glClear commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ae8c80] } +&{glClearAccum QOpenGLFunctions_4_0_Compatibility::glClearAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ae8e20 0xc821ae8ea0 0xc821ae8f40 0xc821ae9000] } +&{glClearBufferfi QOpenGLFunctions_4_0_Compatibility::glClearBufferfi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ae91a0 0xc821ae9220 0xc821ae92a0 0xc821ae9360] } +&{glClearBufferfv QOpenGLFunctions_4_0_Compatibility::glClearBufferfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ae94e0 0xc821ae9580 0xc821ae9620] } +&{glClearBufferiv QOpenGLFunctions_4_0_Compatibility::glClearBufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ae97a0 0xc821ae9860 0xc821ae9900] } +&{glClearBufferuiv QOpenGLFunctions_4_0_Compatibility::glClearBufferuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ae9ac0 0xc821ae9b40 0xc821ae9bc0] } +&{glClearColor QOpenGLFunctions_4_0_Compatibility::glClearColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ae9d80 0xc821ae9e20 0xc821ae9ea0 0xc821ae9f80] } +&{glClearDepth QOpenGLFunctions_4_0_Compatibility::glClearDepth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ad4120] } +&{glClearIndex QOpenGLFunctions_4_0_Compatibility::glClearIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ad42c0] } +&{glClearStencil QOpenGLFunctions_4_0_Compatibility::glClearStencil commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ad4460] } +&{glClientActiveTexture QOpenGLFunctions_4_0_Compatibility::glClientActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ad46a0] } +&{glClientWaitSync QOpenGLFunctions_4_0_Compatibility::glClientWaitSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLenum [0xc821ad4820 0xc821ad48e0 0xc821ad4980] } +&{glClipPlane QOpenGLFunctions_4_0_Compatibility::glClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ad4ac0 0xc821ad4ba0] } +&{glColor3b QOpenGLFunctions_4_0_Compatibility::glColor3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ad4d20 0xc821ad4dc0 0xc821ad4e80] } +&{glColor3bv QOpenGLFunctions_4_0_Compatibility::glColor3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ad5020] } +&{glColor3d QOpenGLFunctions_4_0_Compatibility::glColor3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ad51e0 0xc821ad5260 0xc821ad52e0] } +&{glColor3dv QOpenGLFunctions_4_0_Compatibility::glColor3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ad54a0] } +&{glColor3f QOpenGLFunctions_4_0_Compatibility::glColor3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ad5640 0xc821ad56c0 0xc821ad5780] } +&{glColor3fv QOpenGLFunctions_4_0_Compatibility::glColor3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ad58e0] } +&{glColor3i QOpenGLFunctions_4_0_Compatibility::glColor3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ad5aa0 0xc821ad5b80 0xc821ad5c00] } +&{glColor3iv QOpenGLFunctions_4_0_Compatibility::glColor3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ad5de0] } +&{glColor3s QOpenGLFunctions_4_0_Compatibility::glColor3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ad5f80 0xc821ab0020 0xc821ab00c0] } +&{glColor3sv QOpenGLFunctions_4_0_Compatibility::glColor3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ab0240] } +&{glColor3ub QOpenGLFunctions_4_0_Compatibility::glColor3ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ab0400 0xc821ab04a0 0xc821ab0520] } +&{glColor3ubv QOpenGLFunctions_4_0_Compatibility::glColor3ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ab06e0] } +&{glColor3ui QOpenGLFunctions_4_0_Compatibility::glColor3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ab0840 0xc821ab0920 0xc821ab09c0] } +&{glColor3uiv QOpenGLFunctions_4_0_Compatibility::glColor3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ab0b40] } +&{glColor3us QOpenGLFunctions_4_0_Compatibility::glColor3us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ab0ce0 0xc821ab0d80 0xc821ab0e20] } +&{glColor3usv QOpenGLFunctions_4_0_Compatibility::glColor3usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ab0fa0] } +&{glColor4b QOpenGLFunctions_4_0_Compatibility::glColor4b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ab1140 0xc821ab11e0 0xc821ab1260 0xc821ab1300] } +&{glColor4bv QOpenGLFunctions_4_0_Compatibility::glColor4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ab14c0] } +&{glColor4d QOpenGLFunctions_4_0_Compatibility::glColor4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ab1640 0xc821ab16e0 0xc821ab1780 0xc821ab1840] } +&{glColor4dv QOpenGLFunctions_4_0_Compatibility::glColor4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ab19a0] } +&{glColor4f QOpenGLFunctions_4_0_Compatibility::glColor4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ab1b40 0xc821ab1c00 0xc821ab1ca0 0xc821ab1d40] } +&{glColor4fv QOpenGLFunctions_4_0_Compatibility::glColor4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821ab1ec0] } +&{glColor4i QOpenGLFunctions_4_0_Compatibility::glColor4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a96080 0xc821a96120 0xc821a961a0 0xc821a96280] } +&{glColor4iv QOpenGLFunctions_4_0_Compatibility::glColor4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a96440] } +&{glColor4s QOpenGLFunctions_4_0_Compatibility::glColor4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a965a0 0xc821a96660 0xc821a966e0 0xc821a967c0] } +&{glColor4sv QOpenGLFunctions_4_0_Compatibility::glColor4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a96920] } +&{glColor4ub QOpenGLFunctions_4_0_Compatibility::glColor4ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a96ac0 0xc821a96b80 0xc821a96c20 0xc821a96ca0] } +&{glColor4ubv QOpenGLFunctions_4_0_Compatibility::glColor4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a96e60] } +&{glColor4ui QOpenGLFunctions_4_0_Compatibility::glColor4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a96fe0 0xc821a97080 0xc821a97100 0xc821a971e0] } +&{glColor4uiv QOpenGLFunctions_4_0_Compatibility::glColor4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a97340] } +&{glColor4us QOpenGLFunctions_4_0_Compatibility::glColor4us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a97500 0xc821a97580 0xc821a97640 0xc821a976e0] } +&{glColor4usv QOpenGLFunctions_4_0_Compatibility::glColor4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a97880] } +&{glColorMask QOpenGLFunctions_4_0_Compatibility::glColorMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a97a00 0xc821a97a80 0xc821a97b20 0xc821a97be0] } +&{glColorMaski QOpenGLFunctions_4_0_Compatibility::glColorMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a97d80 0xc821a97e00 0xc821a97ee0 0xc821a97f60 0xc821a86020] } +&{glColorMaterial QOpenGLFunctions_4_0_Compatibility::glColorMaterial commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a86180 0xc821a86240] } +&{glColorP3ui QOpenGLFunctions_4_0_Compatibility::glColorP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a863c0 0xc821a86440] } +&{glColorP3uiv QOpenGLFunctions_4_0_Compatibility::glColorP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a865e0 0xc821a86680] } +&{glColorP4ui QOpenGLFunctions_4_0_Compatibility::glColorP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a86820 0xc821a868a0] } +&{glColorP4uiv QOpenGLFunctions_4_0_Compatibility::glColorP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a86a40 0xc821a86ae0] } +&{glColorPointer QOpenGLFunctions_4_0_Compatibility::glColorPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a86ca0 0xc821a86d20 0xc821a86dc0 0xc821a86e60] } +&{glColorSubTable QOpenGLFunctions_4_0_Compatibility::glColorSubTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a87000 0xc821a870a0 0xc821a87140 0xc821a871c0 0xc821a872a0 0xc821a87340] } +&{glColorTable QOpenGLFunctions_4_0_Compatibility::glColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a874e0 0xc821a875a0 0xc821a87640 0xc821a876c0 0xc821a87780 0xc821a87840] } +&{glColorTableParameterfv QOpenGLFunctions_4_0_Compatibility::glColorTableParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a87a60 0xc821a87b00 0xc821a87ba0] } +&{glColorTableParameteriv QOpenGLFunctions_4_0_Compatibility::glColorTableParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a87d60 0xc821a87e20 0xc821a87ea0] } +&{glCompileShader QOpenGLFunctions_4_0_Compatibility::glCompileShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a7a020] } +&{glCompressedTexImage1D QOpenGLFunctions_4_0_Compatibility::glCompressedTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a7a240 0xc821a7a2e0 0xc821a7a360 0xc821a7a440 0xc821a7a500 0xc821a7a5a0 0xc821a7a620] } +&{glCompressedTexImage2D QOpenGLFunctions_4_0_Compatibility::glCompressedTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a7a860 0xc821a7a900 0xc821a7a9c0 0xc821a7aa80 0xc821a7ab20 0xc821a7abc0 0xc821a7aca0 0xc821a7ad40] } +&{glCompressedTexImage3D QOpenGLFunctions_4_0_Compatibility::glCompressedTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a7af40 0xc821a7afe0 0xc821a7b080 0xc821a7b120 0xc821a7b1c0 0xc821a7b280 0xc821a7b320 0xc821a7b3c0 0xc821a7b4a0] } +&{glCompressedTexSubImage1D QOpenGLFunctions_4_0_Compatibility::glCompressedTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a7b680 0xc821a7b720 0xc821a7b7c0 0xc821a7b860 0xc821a7b920 0xc821a7b9c0 0xc821a7ba60] } +&{glCompressedTexSubImage2D QOpenGLFunctions_4_0_Compatibility::glCompressedTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a7bc60 0xc821a7bd00 0xc821a7bda0 0xc821a7be60 0xc821a7bf20 0xc821a7bfc0 0xc821a6a080 0xc821a6a140 0xc821a6a200] } +&{glCompressedTexSubImage3D QOpenGLFunctions_4_0_Compatibility::glCompressedTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a6a400 0xc821a6a4a0 0xc821a6a560 0xc821a6a600 0xc821a6a6c0 0xc821a6a780 0xc821a6a820 0xc821a6a8a0 0xc821a6a960 0xc821a6aa00 0xc821a6aac0] } +&{glConvolutionFilter1D QOpenGLFunctions_4_0_Compatibility::glConvolutionFilter1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a6ace0 0xc821a6ad60 0xc821a6ae00 0xc821a6aea0 0xc821a6af80 0xc821a6b020] } +&{glConvolutionFilter2D QOpenGLFunctions_4_0_Compatibility::glConvolutionFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a6b240 0xc821a6b2e0 0xc821a6b360 0xc821a6b400 0xc821a6b4e0 0xc821a6b580 0xc821a6b620] } +&{glConvolutionParameterf QOpenGLFunctions_4_0_Compatibility::glConvolutionParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a6b840 0xc821a6b8e0 0xc821a6b9a0] } +&{glConvolutionParameterfv QOpenGLFunctions_4_0_Compatibility::glConvolutionParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a6bb80 0xc821a6bc40 0xc821a6bce0] } +&{glConvolutionParameteri QOpenGLFunctions_4_0_Compatibility::glConvolutionParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a6bec0 0xc821a6bf80 0xc821a58040] } +&{glConvolutionParameteriv QOpenGLFunctions_4_0_Compatibility::glConvolutionParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a58240 0xc821a582c0 0xc821a58380] } +&{glCopyBufferSubData QOpenGLFunctions_4_0_Compatibility::glCopyBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a585a0 0xc821a58620 0xc821a586e0 0xc821a58780 0xc821a58820] } +&{glCopyColorSubTable QOpenGLFunctions_4_0_Compatibility::glCopyColorSubTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a58a60 0xc821a58ae0 0xc821a58b80 0xc821a58c40 0xc821a58d00] } +&{glCopyColorTable QOpenGLFunctions_4_0_Compatibility::glCopyColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a58e80 0xc821a58f20 0xc821a58fc0 0xc821a59060 0xc821a59140] } +&{glCopyConvolutionFilter1D QOpenGLFunctions_4_0_Compatibility::glCopyConvolutionFilter1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a59360 0xc821a59400 0xc821a594a0 0xc821a59520 0xc821a59620] } +&{glCopyConvolutionFilter2D QOpenGLFunctions_4_0_Compatibility::glCopyConvolutionFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a59840 0xc821a598c0 0xc821a59960 0xc821a59a00 0xc821a59ae0 0xc821a59b80] } +&{glCopyPixels QOpenGLFunctions_4_0_Compatibility::glCopyPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a59d20 0xc821a59da0 0xc821a59e40 0xc821a59ee0 0xc821a59fc0] } +&{glCopyTexImage1D QOpenGLFunctions_4_0_Compatibility::glCopyTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a44180 0xc821a44220 0xc821a442c0 0xc821a44360 0xc821a44440 0xc821a444c0 0xc821a44580] } +&{glCopyTexImage2D QOpenGLFunctions_4_0_Compatibility::glCopyTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a44720 0xc821a447a0 0xc821a44860 0xc821a448e0 0xc821a449c0 0xc821a44a60 0xc821a44b20 0xc821a44ba0] } +&{glCopyTexSubImage1D QOpenGLFunctions_4_0_Compatibility::glCopyTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a44dc0 0xc821a44e60 0xc821a44f20 0xc821a44fa0 0xc821a45080 0xc821a45100] } +&{glCopyTexSubImage2D QOpenGLFunctions_4_0_Compatibility::glCopyTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a45340 0xc821a453c0 0xc821a45480 0xc821a45500 0xc821a455e0 0xc821a456a0 0xc821a45740 0xc821a457c0] } +&{glCopyTexSubImage3D QOpenGLFunctions_4_0_Compatibility::glCopyTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a459e0 0xc821a45aa0 0xc821a45b40 0xc821a45bc0 0xc821a45c80 0xc821a45d20 0xc821a45de0 0xc821a45e80 0xc821a45f20] } +&{glCreateProgram QOpenGLFunctions_4_0_Compatibility::glCreateProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLuint [] } +&{glCreateShader QOpenGLFunctions_4_0_Compatibility::glCreateShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLuint [0xc821a321a0] } +&{glCullFace QOpenGLFunctions_4_0_Compatibility::glCullFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a32360] } +&{glDeleteBuffers QOpenGLFunctions_4_0_Compatibility::glDeleteBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a32520 0xc821a325a0] } +&{glDeleteFramebuffers QOpenGLFunctions_4_0_Compatibility::glDeleteFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a327c0 0xc821a32860] } +&{glDeleteLists QOpenGLFunctions_4_0_Compatibility::glDeleteLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a32a00 0xc821a32a80] } +&{glDeleteProgram QOpenGLFunctions_4_0_Compatibility::glDeleteProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a32c40] } +&{glDeleteQueries QOpenGLFunctions_4_0_Compatibility::glDeleteQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a32dc0 0xc821a32e40] } +&{glDeleteRenderbuffers QOpenGLFunctions_4_0_Compatibility::glDeleteRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a33060 0xc821a33120] } +&{glDeleteSamplers QOpenGLFunctions_4_0_Compatibility::glDeleteSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a332a0 0xc821a33360] } +&{glDeleteShader QOpenGLFunctions_4_0_Compatibility::glDeleteShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a334e0] } +&{glDeleteSync QOpenGLFunctions_4_0_Compatibility::glDeleteSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a336a0] } +&{glDeleteTextures QOpenGLFunctions_4_0_Compatibility::glDeleteTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a33840 0xc821a338c0] } +&{glDeleteTransformFeedbacks QOpenGLFunctions_4_0_Compatibility::glDeleteTransformFeedbacks commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a33b00 0xc821a33b80] } +&{glDeleteVertexArrays QOpenGLFunctions_4_0_Compatibility::glDeleteVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a33da0 0xc821a33e40] } +&{glDepthFunc QOpenGLFunctions_4_0_Compatibility::glDepthFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a33fe0] } +&{glDepthMask QOpenGLFunctions_4_0_Compatibility::glDepthMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a1e180] } +&{glDepthRange QOpenGLFunctions_4_0_Compatibility::glDepthRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a1e320 0xc821a1e3a0] } +&{glDetachShader QOpenGLFunctions_4_0_Compatibility::glDetachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a1e560 0xc821a1e600] } +&{glDisable QOpenGLFunctions_4_0_Compatibility::glDisable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a1e7c0] } +&{glDisableClientState QOpenGLFunctions_4_0_Compatibility::glDisableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a1e9e0] } +&{glDisableVertexAttribArray QOpenGLFunctions_4_0_Compatibility::glDisableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a1ebc0] } +&{glDisablei QOpenGLFunctions_4_0_Compatibility::glDisablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a1ed80 0xc821a1ee00] } +&{glDrawArrays QOpenGLFunctions_4_0_Compatibility::glDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a1efc0 0xc821a1f040 0xc821a1f120] } +&{glDrawArraysIndirect QOpenGLFunctions_4_0_Compatibility::glDrawArraysIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a1f300 0xc821a1f3c0] } +&{glDrawArraysInstanced QOpenGLFunctions_4_0_Compatibility::glDrawArraysInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a1f5a0 0xc821a1f660 0xc821a1f6e0 0xc821a1f7c0] } +&{glDrawBuffer QOpenGLFunctions_4_0_Compatibility::glDrawBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a1f980] } +&{glDrawBuffers QOpenGLFunctions_4_0_Compatibility::glDrawBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a1fae0 0xc821a1fbc0] } +&{glDrawElements QOpenGLFunctions_4_0_Compatibility::glDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a1fd40 0xc821a1fe00 0xc821a1fe80 0xc821a1ff00] } +&{glDrawElementsBaseVertex QOpenGLFunctions_4_0_Compatibility::glDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a0e120 0xc821a0e1c0 0xc821a0e260 0xc821a0e300 0xc821a0e3e0] } +&{glDrawElementsIndirect QOpenGLFunctions_4_0_Compatibility::glDrawElementsIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a0e600 0xc821a0e6a0 0xc821a0e720] } +&{glDrawElementsInstanced QOpenGLFunctions_4_0_Compatibility::glDrawElementsInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a0e960 0xc821a0ea00 0xc821a0ea80 0xc821a0eb40 0xc821a0ec00] } +&{glDrawElementsInstancedBaseVertex QOpenGLFunctions_4_0_Compatibility::glDrawElementsInstancedBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a0edc0 0xc821a0ee60 0xc821a0ef00 0xc821a0ef80 0xc821a0f040 0xc821a0f100] } +&{glDrawPixels QOpenGLFunctions_4_0_Compatibility::glDrawPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a0f2a0 0xc821a0f340 0xc821a0f3e0 0xc821a0f480 0xc821a0f560] } +&{glDrawRangeElements QOpenGLFunctions_4_0_Compatibility::glDrawRangeElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a0f780 0xc821a0f820 0xc821a0f8a0 0xc821a0f960 0xc821a0fa40 0xc821a0fae0] } +&{glDrawRangeElementsBaseVertex QOpenGLFunctions_4_0_Compatibility::glDrawRangeElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821a0fcc0 0xc821a0fd80 0xc821a0fe20 0xc821a0fec0 0xc821a0ff80 0xc8219fc080 0xc8219fc100] } +&{glDrawTransformFeedback QOpenGLFunctions_4_0_Compatibility::glDrawTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219fc320 0xc8219fc3e0] } +&{glDrawTransformFeedbackStream QOpenGLFunctions_4_0_Compatibility::glDrawTransformFeedbackStream commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219fc600 0xc8219fc680 0xc8219fc760] } +&{glEdgeFlag QOpenGLFunctions_4_0_Compatibility::glEdgeFlag commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219fc900] } +&{glEdgeFlagPointer QOpenGLFunctions_4_0_Compatibility::glEdgeFlagPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219fcb00 0xc8219fcbc0] } +&{glEdgeFlagv QOpenGLFunctions_4_0_Compatibility::glEdgeFlagv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219fcd60] } +&{glEnable QOpenGLFunctions_4_0_Compatibility::glEnable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219fcfa0] } +&{glEnableClientState QOpenGLFunctions_4_0_Compatibility::glEnableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219fd180] } +&{glEnableVertexAttribArray QOpenGLFunctions_4_0_Compatibility::glEnableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219fd3a0] } +&{glEnablei QOpenGLFunctions_4_0_Compatibility::glEnablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219fd580 0xc8219fd620] } +&{glEnd QOpenGLFunctions_4_0_Compatibility::glEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [] } +&{glEndConditionalRender QOpenGLFunctions_4_0_Compatibility::glEndConditionalRender commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [] } +&{glEndList QOpenGLFunctions_4_0_Compatibility::glEndList commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [] } +&{glEndQuery QOpenGLFunctions_4_0_Compatibility::glEndQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219fda00] } +&{glEndQueryIndexed QOpenGLFunctions_4_0_Compatibility::glEndQueryIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219fdc20 0xc8219fdca0] } +&{glEndTransformFeedback QOpenGLFunctions_4_0_Compatibility::glEndTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [] } +&{glEvalCoord1d QOpenGLFunctions_4_0_Compatibility::glEvalCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219fdfa0] } +&{glEvalCoord1dv QOpenGLFunctions_4_0_Compatibility::glEvalCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219e8100] } +&{glEvalCoord1f QOpenGLFunctions_4_0_Compatibility::glEvalCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219e82c0] } +&{glEvalCoord1fv QOpenGLFunctions_4_0_Compatibility::glEvalCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219e8460] } +&{glEvalCoord2d QOpenGLFunctions_4_0_Compatibility::glEvalCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219e85e0 0xc8219e8660] } +&{glEvalCoord2dv QOpenGLFunctions_4_0_Compatibility::glEvalCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219e8820] } +&{glEvalCoord2f QOpenGLFunctions_4_0_Compatibility::glEvalCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219e89c0 0xc8219e8a40] } +&{glEvalCoord2fv QOpenGLFunctions_4_0_Compatibility::glEvalCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219e8be0] } +&{glEvalMesh1 QOpenGLFunctions_4_0_Compatibility::glEvalMesh1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219e8d60 0xc8219e8e20 0xc8219e8ec0] } +&{glEvalMesh2 QOpenGLFunctions_4_0_Compatibility::glEvalMesh2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219e9040 0xc8219e90e0 0xc8219e9160 0xc8219e9200 0xc8219e92c0] } +&{glEvalPoint1 QOpenGLFunctions_4_0_Compatibility::glEvalPoint1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219e9480] } +&{glEvalPoint2 QOpenGLFunctions_4_0_Compatibility::glEvalPoint2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219e9620 0xc8219e96a0] } +&{glFeedbackBuffer QOpenGLFunctions_4_0_Compatibility::glFeedbackBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219e9820 0xc8219e9900 0xc8219e9980] } +&{glFenceSync QOpenGLFunctions_4_0_Compatibility::glFenceSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLsync [0xc8219e9b40 0xc8219e9be0] } +&{glFinish QOpenGLFunctions_4_0_Compatibility::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [] } +&{glFlush QOpenGLFunctions_4_0_Compatibility::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [] } +&{glFlushMappedBufferRange QOpenGLFunctions_4_0_Compatibility::glFlushMappedBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219e9ee0 0xc8219e9f60 0xc8219e9fe0] } +&{glFogCoordPointer QOpenGLFunctions_4_0_Compatibility::glFogCoordPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219da200 0xc8219da2a0 0xc8219da340] } +&{glFogCoordd QOpenGLFunctions_4_0_Compatibility::glFogCoordd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219da520] } +&{glFogCoorddv QOpenGLFunctions_4_0_Compatibility::glFogCoorddv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219da6a0] } +&{glFogCoordf QOpenGLFunctions_4_0_Compatibility::glFogCoordf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219da880] } +&{glFogCoordfv QOpenGLFunctions_4_0_Compatibility::glFogCoordfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219daa00] } +&{glFogf QOpenGLFunctions_4_0_Compatibility::glFogf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219dabc0 0xc8219dac60] } +&{glFogfv QOpenGLFunctions_4_0_Compatibility::glFogfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219dadc0 0xc8219daea0] } +&{glFogi QOpenGLFunctions_4_0_Compatibility::glFogi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219db040 0xc8219db0c0] } +&{glFogiv QOpenGLFunctions_4_0_Compatibility::glFogiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219db280 0xc8219db340] } +&{glFramebufferRenderbuffer QOpenGLFunctions_4_0_Compatibility::glFramebufferRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219db540 0xc8219db600 0xc8219db6c0 0xc8219db780] } +&{glFramebufferTexture QOpenGLFunctions_4_0_Compatibility::glFramebufferTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219db9e0 0xc8219dba60 0xc8219dbb00 0xc8219dbbc0] } +&{glFramebufferTexture1D QOpenGLFunctions_4_0_Compatibility::glFramebufferTexture1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219dbdc0 0xc8219dbe80 0xc8219dbf00 0xc8219dbfc0 0xc8219c6060] } +&{glFramebufferTexture2D QOpenGLFunctions_4_0_Compatibility::glFramebufferTexture2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219c6280 0xc8219c6320 0xc8219c63a0 0xc8219c6460 0xc8219c6540] } +&{glFramebufferTexture3D QOpenGLFunctions_4_0_Compatibility::glFramebufferTexture3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219c6740 0xc8219c67e0 0xc8219c6880 0xc8219c6900 0xc8219c6a00 0xc8219c6aa0] } +&{glFramebufferTextureLayer QOpenGLFunctions_4_0_Compatibility::glFramebufferTextureLayer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219c6c80 0xc8219c6d20 0xc8219c6dc0 0xc8219c6e60 0xc8219c6f00] } +&{glFrontFace QOpenGLFunctions_4_0_Compatibility::glFrontFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219c70e0] } +&{glFrustum QOpenGLFunctions_4_0_Compatibility::glFrustum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219c7260 0xc8219c7300 0xc8219c73a0 0xc8219c7440 0xc8219c74e0 0xc8219c75c0] } +&{glGenBuffers QOpenGLFunctions_4_0_Compatibility::glGenBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219c7720 0xc8219c77c0] } +&{glGenFramebuffers QOpenGLFunctions_4_0_Compatibility::glGenFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219c79e0 0xc8219c7a60] } +&{glGenLists QOpenGLFunctions_4_0_Compatibility::glGenLists commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLuint [0xc8219c7c40] } +&{glGenQueries QOpenGLFunctions_4_0_Compatibility::glGenQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219c7de0 0xc8219c7e80] } +&{glGenRenderbuffers QOpenGLFunctions_4_0_Compatibility::glGenRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219b6080 0xc8219b6140] } +&{glGenSamplers QOpenGLFunctions_4_0_Compatibility::glGenSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219b62a0 0xc8219b6380] } +&{glGenTextures QOpenGLFunctions_4_0_Compatibility::glGenTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219b64e0 0xc8219b65a0] } +&{glGenTransformFeedbacks QOpenGLFunctions_4_0_Compatibility::glGenTransformFeedbacks commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219b67c0 0xc8219b6860] } +&{glGenVertexArrays QOpenGLFunctions_4_0_Compatibility::glGenVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219b6a60 0xc8219b6ae0] } +&{glGenerateMipmap QOpenGLFunctions_4_0_Compatibility::glGenerateMipmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219b6ca0] } +&{glGetActiveAttrib QOpenGLFunctions_4_0_Compatibility::glGetActiveAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219b6ea0 0xc8219b6f40 0xc8219b6fc0 0xc8219b7080 0xc8219b7160 0xc8219b71e0 0xc8219b72a0] } +&{glGetActiveSubroutineName QOpenGLFunctions_4_0_Compatibility::glGetActiveSubroutineName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219b7480 0xc8219b7540 0xc8219b7600 0xc8219b7680 0xc8219b7760 0xc8219b7800] } +&{glGetActiveSubroutineUniformName QOpenGLFunctions_4_0_Compatibility::glGetActiveSubroutineUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219b7a00 0xc8219b7ac0 0xc8219b7b40 0xc8219b7bc0 0xc8219b7cc0 0xc8219b7d60] } +&{glGetActiveSubroutineUniformiv QOpenGLFunctions_4_0_Compatibility::glGetActiveSubroutineUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219b7f80 0xc8219a6020 0xc8219a6100 0xc8219a61a0 0xc8219a6260] } +&{glGetActiveUniform QOpenGLFunctions_4_0_Compatibility::glGetActiveUniform commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219a6480 0xc8219a6500 0xc8219a65c0 0xc8219a6660 0xc8219a6720 0xc8219a67a0 0xc8219a6880] } +&{glGetActiveUniformBlockName QOpenGLFunctions_4_0_Compatibility::glGetActiveUniformBlockName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219a6a80 0xc8219a6b60 0xc8219a6c20 0xc8219a6cc0 0xc8219a6d80] } +&{glGetActiveUniformBlockiv QOpenGLFunctions_4_0_Compatibility::glGetActiveUniformBlockiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219a6fa0 0xc8219a7060 0xc8219a7140 0xc8219a71e0] } +&{glGetActiveUniformName QOpenGLFunctions_4_0_Compatibility::glGetActiveUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219a7400 0xc8219a74a0 0xc8219a7540 0xc8219a75e0 0xc8219a7680] } +&{glGetActiveUniformsiv QOpenGLFunctions_4_0_Compatibility::glGetActiveUniformsiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219a78a0 0xc8219a7940 0xc8219a7a00 0xc8219a7aa0 0xc8219a7b60] } +&{glGetAttachedShaders QOpenGLFunctions_4_0_Compatibility::glGetAttachedShaders commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219a7d60 0xc8219a7e20 0xc8219a7ec0 0xc8219a7f80] } +&{glGetAttribLocation QOpenGLFunctions_4_0_Compatibility::glGetAttribLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLint [0xc8219981c0 0xc821998240] } +&{glGetBooleani_v QOpenGLFunctions_4_0_Compatibility::glGetBooleani_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219983c0 0xc821998480 0xc821998520] } +&{glGetBooleanv QOpenGLFunctions_4_0_Compatibility::glGetBooleanv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219986c0 0xc821998740] } +&{glGetBufferParameteri64v QOpenGLFunctions_4_0_Compatibility::glGetBufferParameteri64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821998940 0xc8219989e0 0xc821998aa0] } +&{glGetBufferParameteriv QOpenGLFunctions_4_0_Compatibility::glGetBufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821998ca0 0xc821998d20 0xc821998dc0] } +&{glGetBufferPointerv QOpenGLFunctions_4_0_Compatibility::glGetBufferPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821998fe0 0xc821999080 0xc821999140] } +&{glGetBufferSubData QOpenGLFunctions_4_0_Compatibility::glGetBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821999320 0xc8219993e0 0xc821999480 0xc821999520] } +&{glGetClipPlane QOpenGLFunctions_4_0_Compatibility::glGetClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219996c0 0xc821999760] } +&{glGetColorTable QOpenGLFunctions_4_0_Compatibility::glGetColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219998e0 0xc821999980 0xc821999a20 0xc821999ac0] } +&{glGetColorTableParameterfv QOpenGLFunctions_4_0_Compatibility::glGetColorTableParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821999ce0 0xc821999d60 0xc821999e40] } +&{glGetColorTableParameteriv QOpenGLFunctions_4_0_Compatibility::glGetColorTableParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82198a020 0xc82198a100 0xc82198a1a0] } +&{glGetCompressedTexImage QOpenGLFunctions_4_0_Compatibility::glGetCompressedTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82198a380 0xc82198a440 0xc82198a4e0] } +&{glGetConvolutionFilter QOpenGLFunctions_4_0_Compatibility::glGetConvolutionFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82198a6e0 0xc82198a760 0xc82198a840 0xc82198a8c0] } +&{glGetConvolutionParameterfv QOpenGLFunctions_4_0_Compatibility::glGetConvolutionParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82198aac0 0xc82198ab80 0xc82198ac20] } +&{glGetConvolutionParameteriv QOpenGLFunctions_4_0_Compatibility::glGetConvolutionParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82198ae00 0xc82198aee0 0xc82198af80] } +&{glGetDoublev QOpenGLFunctions_4_0_Compatibility::glGetDoublev commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82198b100 0xc82198b1c0] } +&{glGetError QOpenGLFunctions_4_0_Compatibility::glGetError commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLenum [] } +&{glGetFloatv QOpenGLFunctions_4_0_Compatibility::glGetFloatv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82198b3e0 0xc82198b4a0] } +&{glGetFragDataIndex QOpenGLFunctions_4_0_Compatibility::glGetFragDataIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLint [0xc82198b6a0 0xc82198b760] } +&{glGetFragDataLocation QOpenGLFunctions_4_0_Compatibility::glGetFragDataLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLint [0xc82198b960 0xc82198ba00] } +&{glGetFramebufferAttachmentParameteriv QOpenGLFunctions_4_0_Compatibility::glGetFramebufferAttachmentParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82198bba0 0xc82198bc40 0xc82198bcc0 0xc82198bd60] } +&{glGetHistogram QOpenGLFunctions_4_0_Compatibility::glGetHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82198bf40 0xc82198bfc0 0xc82197a060 0xc82197a100 0xc82197a1e0] } +&{glGetHistogramParameterfv QOpenGLFunctions_4_0_Compatibility::glGetHistogramParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82197a400 0xc82197a480 0xc82197a540] } +&{glGetHistogramParameteriv QOpenGLFunctions_4_0_Compatibility::glGetHistogramParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82197a740 0xc82197a7e0 0xc82197a860] } +&{glGetInteger64i_v QOpenGLFunctions_4_0_Compatibility::glGetInteger64i_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82197aa80 0xc82197ab20 0xc82197ac00] } +&{glGetInteger64v QOpenGLFunctions_4_0_Compatibility::glGetInteger64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82197adc0 0xc82197ae60] } +&{glGetIntegeri_v QOpenGLFunctions_4_0_Compatibility::glGetIntegeri_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82197b000 0xc82197b0a0 0xc82197b120] } +&{glGetIntegerv QOpenGLFunctions_4_0_Compatibility::glGetIntegerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82197b2a0 0xc82197b360] } +&{glGetLightfv QOpenGLFunctions_4_0_Compatibility::glGetLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82197b4c0 0xc82197b580 0xc82197b620] } +&{glGetLightiv QOpenGLFunctions_4_0_Compatibility::glGetLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82197b7c0 0xc82197b840 0xc82197b8e0] } +&{glGetMapdv QOpenGLFunctions_4_0_Compatibility::glGetMapdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82197ba60 0xc82197bb20 0xc82197bba0] } +&{glGetMapfv QOpenGLFunctions_4_0_Compatibility::glGetMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82197bd40 0xc82197bde0 0xc82197be80] } +&{glGetMapiv QOpenGLFunctions_4_0_Compatibility::glGetMapiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821966000 0xc821966080 0xc821966140] } +&{glGetMaterialfv QOpenGLFunctions_4_0_Compatibility::glGetMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219662c0 0xc821966360 0xc8219663e0] } +&{glGetMaterialiv QOpenGLFunctions_4_0_Compatibility::glGetMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821966560 0xc821966620 0xc8219666a0] } +&{glGetMinmax QOpenGLFunctions_4_0_Compatibility::glGetMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821966820 0xc8219668e0 0xc821966960 0xc821966a20 0xc821966ac0] } +&{glGetMinmaxParameterfv QOpenGLFunctions_4_0_Compatibility::glGetMinmaxParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821966ca0 0xc821966d60 0xc821966de0] } +&{glGetMinmaxParameteriv QOpenGLFunctions_4_0_Compatibility::glGetMinmaxParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821967000 0xc821967080 0xc821967140] } +&{glGetMultisamplefv QOpenGLFunctions_4_0_Compatibility::glGetMultisamplefv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821967320 0xc8219673a0 0xc821967460] } +&{glGetPixelMapfv QOpenGLFunctions_4_0_Compatibility::glGetPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821967600 0xc8219676a0] } +&{glGetPixelMapuiv QOpenGLFunctions_4_0_Compatibility::glGetPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821967820 0xc8219678c0] } +&{glGetPixelMapusv QOpenGLFunctions_4_0_Compatibility::glGetPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821967a80 0xc821967b20] } +&{glGetPointerv QOpenGLFunctions_4_0_Compatibility::glGetPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821967ca0 0xc821967d40] } +&{glGetPolygonStipple QOpenGLFunctions_4_0_Compatibility::glGetPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821967f60] } +&{glGetProgramInfoLog QOpenGLFunctions_4_0_Compatibility::glGetProgramInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821956120 0xc8219561e0 0xc821956280 0xc821956300] } +&{glGetProgramStageiv QOpenGLFunctions_4_0_Compatibility::glGetProgramStageiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821956520 0xc8219565e0 0xc821956680 0xc821956720] } +&{glGetProgramiv QOpenGLFunctions_4_0_Compatibility::glGetProgramiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219568c0 0xc821956960 0xc8219569e0] } +&{glGetQueryIndexediv QOpenGLFunctions_4_0_Compatibility::glGetQueryIndexediv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821956c20 0xc821956ca0 0xc821956d40 0xc821956e00] } +&{glGetQueryObjecti64v QOpenGLFunctions_4_0_Compatibility::glGetQueryObjecti64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821957000 0xc8219570c0 0xc821957180] } +&{glGetQueryObjectiv QOpenGLFunctions_4_0_Compatibility::glGetQueryObjectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821957380 0xc821957440 0xc8219574c0] } +&{glGetQueryObjectui64v QOpenGLFunctions_4_0_Compatibility::glGetQueryObjectui64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821957700 0xc821957780 0xc821957800] } +&{glGetQueryObjectuiv QOpenGLFunctions_4_0_Compatibility::glGetQueryObjectuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821957a40 0xc821957ac0 0xc821957ba0] } +&{glGetQueryiv QOpenGLFunctions_4_0_Compatibility::glGetQueryiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821957d20 0xc821957da0 0xc821957e20] } +&{glGetRenderbufferParameteriv QOpenGLFunctions_4_0_Compatibility::glGetRenderbufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821946060 0xc8219460e0 0xc821946180] } +&{glGetSamplerParameterIiv QOpenGLFunctions_4_0_Compatibility::glGetSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219463a0 0xc821946420 0xc8219464a0] } +&{glGetSamplerParameterIuiv QOpenGLFunctions_4_0_Compatibility::glGetSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821946700 0xc821946780 0xc821946820] } +&{glGetSamplerParameterfv QOpenGLFunctions_4_0_Compatibility::glGetSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821946a60 0xc821946ae0 0xc821946b80] } +&{glGetSamplerParameteriv QOpenGLFunctions_4_0_Compatibility::glGetSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821946da0 0xc821946e40 0xc821946f20] } +&{glGetSeparableFilter QOpenGLFunctions_4_0_Compatibility::glGetSeparableFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821947100 0xc8219471e0 0xc821947280 0xc821947300 0xc8219473c0 0xc8219474a0] } +&{glGetShaderInfoLog QOpenGLFunctions_4_0_Compatibility::glGetShaderInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821947680 0xc821947720 0xc8219477e0 0xc821947880] } +&{glGetShaderSource QOpenGLFunctions_4_0_Compatibility::glGetShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821947a80 0xc821947b00 0xc821947be0 0xc821947c80] } +&{glGetShaderiv QOpenGLFunctions_4_0_Compatibility::glGetShaderiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821947e20 0xc821947ec0 0xc821947f80] } +&{glGetString QOpenGLFunctions_4_0_Compatibility::glGetString commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false const GLubyte * [0xc821936100] } +&{glGetStringi QOpenGLFunctions_4_0_Compatibility::glGetStringi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false const GLubyte * [0xc8219362c0 0xc821936380] } +&{glGetSubroutineIndex QOpenGLFunctions_4_0_Compatibility::glGetSubroutineIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLuint [0xc821936580 0xc821936620 0xc8219366a0] } +&{glGetSubroutineUniformLocation QOpenGLFunctions_4_0_Compatibility::glGetSubroutineUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLint [0xc8219368e0 0xc821936960 0xc821936a00] } +&{glGetSynciv QOpenGLFunctions_4_0_Compatibility::glGetSynciv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821936bc0 0xc821936c40 0xc821936d00 0xc821936dc0 0xc821936e60] } +&{glGetTexEnvfv QOpenGLFunctions_4_0_Compatibility::glGetTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821937020 0xc8219370c0 0xc821937140] } +&{glGetTexEnviv QOpenGLFunctions_4_0_Compatibility::glGetTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821937300 0xc8219373c0 0xc821937440] } +&{glGetTexGendv QOpenGLFunctions_4_0_Compatibility::glGetTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821937600 0xc8219376a0 0xc821937740] } +&{glGetTexGenfv QOpenGLFunctions_4_0_Compatibility::glGetTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219378e0 0xc821937980 0xc821937a00] } +&{glGetTexGeniv QOpenGLFunctions_4_0_Compatibility::glGetTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821937b80 0xc821937c40 0xc821937ce0] } +&{glGetTexImage QOpenGLFunctions_4_0_Compatibility::glGetTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821937e40 0xc821937f00 0xc821937fa0 0xc821916020 0xc821916100] } +&{glGetTexLevelParameterfv QOpenGLFunctions_4_0_Compatibility::glGetTexLevelParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219162e0 0xc821916380 0xc821916440 0xc8219164e0] } +&{glGetTexLevelParameteriv QOpenGLFunctions_4_0_Compatibility::glGetTexLevelParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219166c0 0xc8219167a0 0xc821916860 0xc821916900] } +&{glGetTexParameterIiv QOpenGLFunctions_4_0_Compatibility::glGetTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821916ae0 0xc821916ba0 0xc821916c40] } +&{glGetTexParameterIuiv QOpenGLFunctions_4_0_Compatibility::glGetTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821916e20 0xc821916ec0 0xc821916f80] } +&{glGetTexParameterfv QOpenGLFunctions_4_0_Compatibility::glGetTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821917180 0xc821917200 0xc8219172e0] } +&{glGetTexParameteriv QOpenGLFunctions_4_0_Compatibility::glGetTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219174e0 0xc821917560 0xc821917640] } +&{glGetTransformFeedbackVarying QOpenGLFunctions_4_0_Compatibility::glGetTransformFeedbackVarying commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821917840 0xc821917900 0xc821917980 0xc821917a00 0xc821917b00 0xc821917b80 0xc821917c20] } +&{glGetUniformBlockIndex QOpenGLFunctions_4_0_Compatibility::glGetUniformBlockIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLuint [0xc821917e40 0xc821917ee0] } +&{glGetUniformIndices QOpenGLFunctions_4_0_Compatibility::glGetUniformIndices commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821908100 0xc8219081a0 0xc821908280 0xc821908380] } +&{glGetUniformLocation QOpenGLFunctions_4_0_Compatibility::glGetUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLint [0xc821908560 0xc821908600] } +&{glGetUniformSubroutineuiv QOpenGLFunctions_4_0_Compatibility::glGetUniformSubroutineuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821908820 0xc8219088c0 0xc821908940] } +&{glGetUniformdv QOpenGLFunctions_4_0_Compatibility::glGetUniformdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821908ac0 0xc821908b80 0xc821908c20] } +&{glGetUniformfv QOpenGLFunctions_4_0_Compatibility::glGetUniformfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821908dc0 0xc821908e60 0xc821908ee0] } +&{glGetUniformiv QOpenGLFunctions_4_0_Compatibility::glGetUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821909080 0xc821909100 0xc8219091e0] } +&{glGetUniformuiv QOpenGLFunctions_4_0_Compatibility::glGetUniformuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821909340 0xc821909420 0xc8219094a0] } +&{glGetVertexAttribIiv QOpenGLFunctions_4_0_Compatibility::glGetVertexAttribIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8219096c0 0xc821909740 0xc821909800] } +&{glGetVertexAttribIuiv QOpenGLFunctions_4_0_Compatibility::glGetVertexAttribIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821909a00 0xc821909aa0 0xc821909b40] } +&{glGetVertexAttribPointerv QOpenGLFunctions_4_0_Compatibility::glGetVertexAttribPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821909d40 0xc821909de0 0xc821909e80] } +&{glGetVertexAttribdv QOpenGLFunctions_4_0_Compatibility::glGetVertexAttribdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218f80c0 0xc8218f8160 0xc8218f8200] } +&{glGetVertexAttribfv QOpenGLFunctions_4_0_Compatibility::glGetVertexAttribfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218f8400 0xc8218f8480 0xc8218f8540] } +&{glGetVertexAttribiv QOpenGLFunctions_4_0_Compatibility::glGetVertexAttribiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218f8740 0xc8218f8800 0xc8218f88a0] } +&{glHint QOpenGLFunctions_4_0_Compatibility::glHint commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218f8a00 0xc8218f8a80] } +&{glHistogram QOpenGLFunctions_4_0_Compatibility::glHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218f8c00 0xc8218f8ca0 0xc8218f8d60 0xc8218f8e00] } +&{glIndexMask QOpenGLFunctions_4_0_Compatibility::glIndexMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218f8f60] } +&{glIndexPointer QOpenGLFunctions_4_0_Compatibility::glIndexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218f9120 0xc8218f91c0 0xc8218f9240] } +&{glIndexd QOpenGLFunctions_4_0_Compatibility::glIndexd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218f9420] } +&{glIndexdv QOpenGLFunctions_4_0_Compatibility::glIndexdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218f95c0] } +&{glIndexf QOpenGLFunctions_4_0_Compatibility::glIndexf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218f97a0] } +&{glIndexfv QOpenGLFunctions_4_0_Compatibility::glIndexfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218f9940] } +&{glIndexi QOpenGLFunctions_4_0_Compatibility::glIndexi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218f9b00] } +&{glIndexiv QOpenGLFunctions_4_0_Compatibility::glIndexiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218f9cc0] } +&{glIndexs QOpenGLFunctions_4_0_Compatibility::glIndexs commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218f9e60] } +&{glIndexsv QOpenGLFunctions_4_0_Compatibility::glIndexsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218e8040] } +&{glIndexub QOpenGLFunctions_4_0_Compatibility::glIndexub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218e8220] } +&{glIndexubv QOpenGLFunctions_4_0_Compatibility::glIndexubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218e8380] } +&{glInitNames QOpenGLFunctions_4_0_Compatibility::glInitNames commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [] } +&{glInterleavedArrays QOpenGLFunctions_4_0_Compatibility::glInterleavedArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218e8640 0xc8218e8720 0xc8218e87c0] } +&{glIsBuffer QOpenGLFunctions_4_0_Compatibility::glIsBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLboolean [0xc8218e8920] } +&{glIsEnabled QOpenGLFunctions_4_0_Compatibility::glIsEnabled commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLboolean [0xc8218e8aa0] } +&{glIsEnabledi QOpenGLFunctions_4_0_Compatibility::glIsEnabledi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLboolean [0xc8218e8c40 0xc8218e8d00] } +&{glIsFramebuffer QOpenGLFunctions_4_0_Compatibility::glIsFramebuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLboolean [0xc8218e8ea0] } +&{glIsList QOpenGLFunctions_4_0_Compatibility::glIsList commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLboolean [0xc8218e9040] } +&{glIsProgram QOpenGLFunctions_4_0_Compatibility::glIsProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLboolean [0xc8218e91e0] } +&{glIsQuery QOpenGLFunctions_4_0_Compatibility::glIsQuery commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLboolean [0xc8218e9380] } +&{glIsRenderbuffer QOpenGLFunctions_4_0_Compatibility::glIsRenderbuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLboolean [0xc8218e9520] } +&{glIsSampler QOpenGLFunctions_4_0_Compatibility::glIsSampler commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLboolean [0xc8218e96a0] } +&{glIsShader QOpenGLFunctions_4_0_Compatibility::glIsShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLboolean [0xc8218e9820] } +&{glIsSync QOpenGLFunctions_4_0_Compatibility::glIsSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLboolean [0xc8218e99e0] } +&{glIsTexture QOpenGLFunctions_4_0_Compatibility::glIsTexture commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLboolean [0xc8218e9b60] } +&{glIsTransformFeedback QOpenGLFunctions_4_0_Compatibility::glIsTransformFeedback commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLboolean [0xc8218e9d80] } +&{glIsVertexArray QOpenGLFunctions_4_0_Compatibility::glIsVertexArray commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLboolean [0xc8218e9f00] } +&{glLightModelf QOpenGLFunctions_4_0_Compatibility::glLightModelf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218d4080 0xc8218d4140] } +&{glLightModelfv QOpenGLFunctions_4_0_Compatibility::glLightModelfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218d42c0 0xc8218d4340] } +&{glLightModeli QOpenGLFunctions_4_0_Compatibility::glLightModeli commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218d44c0 0xc8218d4540] } +&{glLightModeliv QOpenGLFunctions_4_0_Compatibility::glLightModeliv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218d46c0 0xc8218d4780] } +&{glLightf QOpenGLFunctions_4_0_Compatibility::glLightf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218d4900 0xc8218d49c0 0xc8218d4a60] } +&{glLightfv QOpenGLFunctions_4_0_Compatibility::glLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218d4be0 0xc8218d4c60 0xc8218d4d40] } +&{glLighti QOpenGLFunctions_4_0_Compatibility::glLighti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218d4ea0 0xc8218d4f80 0xc8218d5000] } +&{glLightiv QOpenGLFunctions_4_0_Compatibility::glLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218d5180 0xc8218d5200 0xc8218d52c0] } +&{glLineStipple QOpenGLFunctions_4_0_Compatibility::glLineStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218d5460 0xc8218d54e0] } +&{glLineWidth QOpenGLFunctions_4_0_Compatibility::glLineWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218d56c0] } +&{glLinkProgram QOpenGLFunctions_4_0_Compatibility::glLinkProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218d5840] } +&{glListBase QOpenGLFunctions_4_0_Compatibility::glListBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218d59e0] } +&{glLoadIdentity QOpenGLFunctions_4_0_Compatibility::glLoadIdentity commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [] } +&{glLoadMatrixd QOpenGLFunctions_4_0_Compatibility::glLoadMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218d5c00] } +&{glLoadMatrixf QOpenGLFunctions_4_0_Compatibility::glLoadMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218d5da0] } +&{glLoadName QOpenGLFunctions_4_0_Compatibility::glLoadName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218d5f40] } +&{glLoadTransposeMatrixd QOpenGLFunctions_4_0_Compatibility::glLoadTransposeMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218c6120] } +&{glLoadTransposeMatrixf QOpenGLFunctions_4_0_Compatibility::glLoadTransposeMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218c6340] } +&{glLogicOp QOpenGLFunctions_4_0_Compatibility::glLogicOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218c6500] } +&{glMap1d QOpenGLFunctions_4_0_Compatibility::glMap1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218c6680 0xc8218c6720 0xc8218c67c0 0xc8218c6880 0xc8218c6940 0xc8218c69c0] } +&{glMap1f QOpenGLFunctions_4_0_Compatibility::glMap1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218c6b40 0xc8218c6c00 0xc8218c6ca0 0xc8218c6d40 0xc8218c6e00 0xc8218c6e80] } +&{glMap2d QOpenGLFunctions_4_0_Compatibility::glMap2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218c7020 0xc8218c70c0 0xc8218c7160 0xc8218c7220 0xc8218c72e0 0xc8218c7360 0xc8218c7400 0xc8218c74a0 0xc8218c7580 0xc8218c7620] } +&{glMap2f QOpenGLFunctions_4_0_Compatibility::glMap2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218c77a0 0xc8218c7840 0xc8218c78e0 0xc8218c7980 0xc8218c7a60 0xc8218c7b00 0xc8218c7ba0 0xc8218c7c60 0xc8218c7d00 0xc8218c7da0] } +&{glMapBuffer QOpenGLFunctions_4_0_Compatibility::glMapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLvoid * [0xc8218c7f40 0xc8218c7fe0] } +&{glMapBufferRange QOpenGLFunctions_4_0_Compatibility::glMapBufferRange commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLvoid * [0xc8218b8180 0xc8218b8220 0xc8218b82a0 0xc8218b8360] } +&{glMapGrid1d QOpenGLFunctions_4_0_Compatibility::glMapGrid1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218b84e0 0xc8218b8580 0xc8218b8620] } +&{glMapGrid1f QOpenGLFunctions_4_0_Compatibility::glMapGrid1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218b87c0 0xc8218b8860 0xc8218b88e0] } +&{glMapGrid2d QOpenGLFunctions_4_0_Compatibility::glMapGrid2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218b8a80 0xc8218b8b40 0xc8218b8be0 0xc8218b8c80 0xc8218b8d60 0xc8218b8de0] } +&{glMapGrid2f QOpenGLFunctions_4_0_Compatibility::glMapGrid2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218b8f60 0xc8218b9020 0xc8218b90c0 0xc8218b9160 0xc8218b9240 0xc8218b92e0] } +&{glMaterialf QOpenGLFunctions_4_0_Compatibility::glMaterialf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218b9440 0xc8218b94e0 0xc8218b95a0] } +&{glMaterialfv QOpenGLFunctions_4_0_Compatibility::glMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218b9740 0xc8218b97e0 0xc8218b9880] } +&{glMateriali QOpenGLFunctions_4_0_Compatibility::glMateriali commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218b9a00 0xc8218b9aa0 0xc8218b9b40] } +&{glMaterialiv QOpenGLFunctions_4_0_Compatibility::glMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218b9ce0 0xc8218b9da0 0xc8218b9e40] } +&{glMatrixMode QOpenGLFunctions_4_0_Compatibility::glMatrixMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218b9fc0] } +&{glMinSampleShading QOpenGLFunctions_4_0_Compatibility::glMinSampleShading commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218a81e0] } +&{glMinmax QOpenGLFunctions_4_0_Compatibility::glMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218a83a0 0xc8218a8440 0xc8218a84c0] } +&{glMultMatrixd QOpenGLFunctions_4_0_Compatibility::glMultMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218a8660] } +&{glMultMatrixf QOpenGLFunctions_4_0_Compatibility::glMultMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218a8800] } +&{glMultTransposeMatrixd QOpenGLFunctions_4_0_Compatibility::glMultTransposeMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218a89e0] } +&{glMultTransposeMatrixf QOpenGLFunctions_4_0_Compatibility::glMultTransposeMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218a8c20] } +&{glMultiDrawArrays QOpenGLFunctions_4_0_Compatibility::glMultiDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218a8e20 0xc8218a8ec0 0xc8218a8f40 0xc8218a9000] } +&{glMultiDrawElements QOpenGLFunctions_4_0_Compatibility::glMultiDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218a91e0 0xc8218a92c0 0xc8218a9360 0xc8218a9400 0xc8218a9540] } +&{glMultiDrawElementsBaseVertex QOpenGLFunctions_4_0_Compatibility::glMultiDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218a9720 0xc8218a97e0 0xc8218a9860 0xc8218a9940 0xc8218a9a60 0xc8218a9b00] } +&{glMultiTexCoord1d QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218a9d00 0xc8218a9dc0] } +&{glMultiTexCoord1dv QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218a9fa0 0xc821898020] } +&{glMultiTexCoord1f QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821898200 0xc8218982e0] } +&{glMultiTexCoord1fv QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218984c0 0xc8218985a0] } +&{glMultiTexCoord1i QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821898780 0xc821898840] } +&{glMultiTexCoord1iv QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821898a60 0xc821898ae0] } +&{glMultiTexCoord1s QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821898ce0 0xc821898da0] } +&{glMultiTexCoord1sv QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821898fa0 0xc821899060] } +&{glMultiTexCoord2d QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821899260 0xc821899300 0xc821899380] } +&{glMultiTexCoord2dv QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821899580 0xc821899660] } +&{glMultiTexCoord2f QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821899860 0xc821899900 0xc8218999a0] } +&{glMultiTexCoord2fv QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821899bc0 0xc821899c60] } +&{glMultiTexCoord2i QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821899e80 0xc821899f00 0xc821899fc0] } +&{glMultiTexCoord2iv QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218861a0 0xc821886260] } +&{glMultiTexCoord2s QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821886480 0xc821886500 0xc8218865c0] } +&{glMultiTexCoord2sv QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218867a0 0xc821886820] } +&{glMultiTexCoord3d QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821886a00 0xc821886aa0 0xc821886b20 0xc821886c00] } +&{glMultiTexCoord3dv QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821886dc0 0xc821886e80] } +&{glMultiTexCoord3f QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821887080 0xc821887100 0xc8218871a0 0xc821887280] } +&{glMultiTexCoord3fv QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821887480 0xc821887500] } +&{glMultiTexCoord3i QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821887700 0xc8218877a0 0xc821887880 0xc821887920] } +&{glMultiTexCoord3iv QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821887b20 0xc821887ba0] } +&{glMultiTexCoord3s QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821887dc0 0xc821887e40 0xc821887f00 0xc821887fa0] } +&{glMultiTexCoord3sv QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218721c0 0xc821872260] } +&{glMultiTexCoord4d QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821872460 0xc821872520 0xc8218725c0 0xc821872680 0xc821872720] } +&{glMultiTexCoord4dv QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821872960 0xc8218729e0] } +&{glMultiTexCoord4f QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821872c00 0xc821872cc0 0xc821872d60 0xc821872de0 0xc821872ec0] } +&{glMultiTexCoord4fv QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218730c0 0xc821873180] } +&{glMultiTexCoord4i QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821873380 0xc821873400 0xc8218734c0 0xc821873540 0xc821873640] } +&{glMultiTexCoord4iv QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821873820 0xc8218738e0] } +&{glMultiTexCoord4s QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821873b00 0xc821873b80 0xc821873c40 0xc821873ce0 0xc821873da0] } +&{glMultiTexCoord4sv QOpenGLFunctions_4_0_Compatibility::glMultiTexCoord4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821873fc0 0xc821862060] } +&{glMultiTexCoordP1ui QOpenGLFunctions_4_0_Compatibility::glMultiTexCoordP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821862280 0xc821862300 0xc8218623e0] } +&{glMultiTexCoordP1uiv QOpenGLFunctions_4_0_Compatibility::glMultiTexCoordP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218625e0 0xc821862680 0xc821862740] } +&{glMultiTexCoordP2ui QOpenGLFunctions_4_0_Compatibility::glMultiTexCoordP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821862960 0xc821862a00 0xc821862a80] } +&{glMultiTexCoordP2uiv QOpenGLFunctions_4_0_Compatibility::glMultiTexCoordP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821862cc0 0xc821862d60 0xc821862de0] } +&{glMultiTexCoordP3ui QOpenGLFunctions_4_0_Compatibility::glMultiTexCoordP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821863000 0xc8218630a0 0xc821863160] } +&{glMultiTexCoordP3uiv QOpenGLFunctions_4_0_Compatibility::glMultiTexCoordP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821863380 0xc821863420 0xc8218634a0] } +&{glMultiTexCoordP4ui QOpenGLFunctions_4_0_Compatibility::glMultiTexCoordP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218636e0 0xc821863780 0xc821863800] } +&{glMultiTexCoordP4uiv QOpenGLFunctions_4_0_Compatibility::glMultiTexCoordP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821863a20 0xc821863ac0 0xc821863b80] } +&{glNewList QOpenGLFunctions_4_0_Compatibility::glNewList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821863d00 0xc821863da0] } +&{glNormal3b QOpenGLFunctions_4_0_Compatibility::glNormal3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821863f40 0xc821863fe0 0xc821852080] } +&{glNormal3bv QOpenGLFunctions_4_0_Compatibility::glNormal3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821852220] } +&{glNormal3d QOpenGLFunctions_4_0_Compatibility::glNormal3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218523a0 0xc821852460 0xc821852500] } +&{glNormal3dv QOpenGLFunctions_4_0_Compatibility::glNormal3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218526c0] } +&{glNormal3f QOpenGLFunctions_4_0_Compatibility::glNormal3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821852860 0xc821852900 0xc821852980] } +&{glNormal3fv QOpenGLFunctions_4_0_Compatibility::glNormal3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821852b40] } +&{glNormal3i QOpenGLFunctions_4_0_Compatibility::glNormal3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821852ce0 0xc821852d80 0xc821852e00] } +&{glNormal3iv QOpenGLFunctions_4_0_Compatibility::glNormal3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821852fe0] } +&{glNormal3s QOpenGLFunctions_4_0_Compatibility::glNormal3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218531a0 0xc821853220 0xc821853300] } +&{glNormal3sv QOpenGLFunctions_4_0_Compatibility::glNormal3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821853460] } +&{glNormalP3ui QOpenGLFunctions_4_0_Compatibility::glNormalP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821853640 0xc8218536c0] } +&{glNormalP3uiv QOpenGLFunctions_4_0_Compatibility::glNormalP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821853880 0xc821853900] } +&{glNormalPointer QOpenGLFunctions_4_0_Compatibility::glNormalPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821853ae0 0xc821853b60 0xc821853c00] } +&{glOrtho QOpenGLFunctions_4_0_Compatibility::glOrtho commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821853da0 0xc821853e40 0xc821853f20 0xc821853fc0 0xc82183e080 0xc82183e140] } +&{glPassThrough QOpenGLFunctions_4_0_Compatibility::glPassThrough commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82183e2c0] } +&{glPatchParameterfv QOpenGLFunctions_4_0_Compatibility::glPatchParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82183e4e0 0xc82183e5c0] } +&{glPatchParameteri QOpenGLFunctions_4_0_Compatibility::glPatchParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82183e7a0 0xc82183e860] } +&{glPauseTransformFeedback QOpenGLFunctions_4_0_Compatibility::glPauseTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [] } +&{glPixelMapfv QOpenGLFunctions_4_0_Compatibility::glPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82183eb20 0xc82183ebc0 0xc82183ec40] } +&{glPixelMapuiv QOpenGLFunctions_4_0_Compatibility::glPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82183ee00 0xc82183ee80 0xc82183ef60] } +&{glPixelMapusv QOpenGLFunctions_4_0_Compatibility::glPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82183f0c0 0xc82183f1a0 0xc82183f240] } +&{glPixelStoref QOpenGLFunctions_4_0_Compatibility::glPixelStoref commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82183f3c0 0xc82183f460] } +&{glPixelStorei QOpenGLFunctions_4_0_Compatibility::glPixelStorei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82183f5e0 0xc82183f680] } +&{glPixelTransferf QOpenGLFunctions_4_0_Compatibility::glPixelTransferf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82183f820 0xc82183f8c0] } +&{glPixelTransferi QOpenGLFunctions_4_0_Compatibility::glPixelTransferi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82183fa60 0xc82183fb00] } +&{glPixelZoom QOpenGLFunctions_4_0_Compatibility::glPixelZoom commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82183fca0 0xc82183fd40] } +&{glPointParameterf QOpenGLFunctions_4_0_Compatibility::glPointParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82183ff60 0xc82183ffe0] } +&{glPointParameterfv QOpenGLFunctions_4_0_Compatibility::glPointParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82182c1e0 0xc82182c260] } +&{glPointParameteri QOpenGLFunctions_4_0_Compatibility::glPointParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82182c480 0xc82182c560] } +&{glPointParameteriv QOpenGLFunctions_4_0_Compatibility::glPointParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82182c780 0xc82182c820] } +&{glPointSize QOpenGLFunctions_4_0_Compatibility::glPointSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82182c9e0] } +&{glPolygonMode QOpenGLFunctions_4_0_Compatibility::glPolygonMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82182cb60 0xc82182cc20] } +&{glPolygonOffset QOpenGLFunctions_4_0_Compatibility::glPolygonOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82182cdc0 0xc82182ce60] } +&{glPolygonStipple QOpenGLFunctions_4_0_Compatibility::glPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82182cfe0] } +&{glPopAttrib QOpenGLFunctions_4_0_Compatibility::glPopAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [] } +&{glPopClientAttrib QOpenGLFunctions_4_0_Compatibility::glPopClientAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [] } +&{glPopMatrix QOpenGLFunctions_4_0_Compatibility::glPopMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [] } +&{glPopName QOpenGLFunctions_4_0_Compatibility::glPopName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [] } +&{glPrimitiveRestartIndex QOpenGLFunctions_4_0_Compatibility::glPrimitiveRestartIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82182d520] } +&{glPrioritizeTextures QOpenGLFunctions_4_0_Compatibility::glPrioritizeTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82182d720 0xc82182d7e0 0xc82182d880] } +&{glProvokingVertex QOpenGLFunctions_4_0_Compatibility::glProvokingVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82182daa0] } +&{glPushAttrib QOpenGLFunctions_4_0_Compatibility::glPushAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82182dc40] } +&{glPushClientAttrib QOpenGLFunctions_4_0_Compatibility::glPushClientAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82182de20] } +&{glPushMatrix QOpenGLFunctions_4_0_Compatibility::glPushMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [] } +&{glPushName QOpenGLFunctions_4_0_Compatibility::glPushName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218160c0] } +&{glQueryCounter QOpenGLFunctions_4_0_Compatibility::glQueryCounter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821816240 0xc821816300] } +&{glRasterPos2d QOpenGLFunctions_4_0_Compatibility::glRasterPos2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821816480 0xc821816500] } +&{glRasterPos2dv QOpenGLFunctions_4_0_Compatibility::glRasterPos2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218166c0] } +&{glRasterPos2f QOpenGLFunctions_4_0_Compatibility::glRasterPos2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821816840 0xc8218168c0] } +&{glRasterPos2fv QOpenGLFunctions_4_0_Compatibility::glRasterPos2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821816aa0] } +&{glRasterPos2i QOpenGLFunctions_4_0_Compatibility::glRasterPos2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821816c20 0xc821816ca0] } +&{glRasterPos2iv QOpenGLFunctions_4_0_Compatibility::glRasterPos2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821816e60] } +&{glRasterPos2s QOpenGLFunctions_4_0_Compatibility::glRasterPos2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821817000 0xc821817080] } +&{glRasterPos2sv QOpenGLFunctions_4_0_Compatibility::glRasterPos2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821817240] } +&{glRasterPos3d QOpenGLFunctions_4_0_Compatibility::glRasterPos3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218173a0 0xc821817460 0xc8218174e0] } +&{glRasterPos3dv QOpenGLFunctions_4_0_Compatibility::glRasterPos3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218176c0] } +&{glRasterPos3f QOpenGLFunctions_4_0_Compatibility::glRasterPos3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821817840 0xc8218178c0 0xc821817980] } +&{glRasterPos3fv QOpenGLFunctions_4_0_Compatibility::glRasterPos3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821817b00] } +&{glRasterPos3i QOpenGLFunctions_4_0_Compatibility::glRasterPos3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821817ca0 0xc821817d60 0xc821817e00] } +&{glRasterPos3iv QOpenGLFunctions_4_0_Compatibility::glRasterPos3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821817fc0] } +&{glRasterPos3s QOpenGLFunctions_4_0_Compatibility::glRasterPos3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821806140 0xc821806200 0xc8218062c0] } +&{glRasterPos3sv QOpenGLFunctions_4_0_Compatibility::glRasterPos3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821806420] } +&{glRasterPos4d QOpenGLFunctions_4_0_Compatibility::glRasterPos4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821806600 0xc8218066a0 0xc821806720 0xc821806800] } +&{glRasterPos4dv QOpenGLFunctions_4_0_Compatibility::glRasterPos4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218069a0] } +&{glRasterPos4f QOpenGLFunctions_4_0_Compatibility::glRasterPos4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821806b20 0xc821806ba0 0xc821806c60 0xc821806ce0] } +&{glRasterPos4fv QOpenGLFunctions_4_0_Compatibility::glRasterPos4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821806e80] } +&{glRasterPos4i QOpenGLFunctions_4_0_Compatibility::glRasterPos4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821807020 0xc8218070e0 0xc821807160 0xc821807220] } +&{glRasterPos4iv QOpenGLFunctions_4_0_Compatibility::glRasterPos4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218073c0] } +&{glRasterPos4s QOpenGLFunctions_4_0_Compatibility::glRasterPos4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821807560 0xc8218075e0 0xc821807660 0xc821807720] } +&{glRasterPos4sv QOpenGLFunctions_4_0_Compatibility::glRasterPos4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8218078c0] } +&{glReadBuffer QOpenGLFunctions_4_0_Compatibility::glReadBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821807a60] } +&{glReadPixels QOpenGLFunctions_4_0_Compatibility::glReadPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821807c20 0xc821807ca0 0xc821807d60 0xc821807de0 0xc821807ec0 0xc821807f80 0xc8217f6000] } +&{glRectd QOpenGLFunctions_4_0_Compatibility::glRectd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217f61a0 0xc8217f6240 0xc8217f62c0 0xc8217f6380] } +&{glRectdv QOpenGLFunctions_4_0_Compatibility::glRectdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217f6520 0xc8217f65c0] } +&{glRectf QOpenGLFunctions_4_0_Compatibility::glRectf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217f6760 0xc8217f6800 0xc8217f6880 0xc8217f6940] } +&{glRectfv QOpenGLFunctions_4_0_Compatibility::glRectfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217f6ac0 0xc8217f6ba0] } +&{glRecti QOpenGLFunctions_4_0_Compatibility::glRecti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217f6d60 0xc8217f6de0 0xc8217f6e80 0xc8217f6f40] } +&{glRectiv QOpenGLFunctions_4_0_Compatibility::glRectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217f70e0 0xc8217f7160] } +&{glRects QOpenGLFunctions_4_0_Compatibility::glRects commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217f7340 0xc8217f73e0 0xc8217f7460 0xc8217f7540] } +&{glRectsv QOpenGLFunctions_4_0_Compatibility::glRectsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217f76e0 0xc8217f7760] } +&{glRenderMode QOpenGLFunctions_4_0_Compatibility::glRenderMode commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLint [0xc8217f7960] } +&{glRenderbufferStorage QOpenGLFunctions_4_0_Compatibility::glRenderbufferStorage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217f7b80 0xc8217f7c20 0xc8217f7cc0 0xc8217f7d60] } +&{glRenderbufferStorageMultisample QOpenGLFunctions_4_0_Compatibility::glRenderbufferStorageMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217f7fa0 0xc8217d2020 0xc8217d20c0 0xc8217d2180 0xc8217d2240] } +&{glResetHistogram QOpenGLFunctions_4_0_Compatibility::glResetHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217d23a0] } +&{glResetMinmax QOpenGLFunctions_4_0_Compatibility::glResetMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217d2540] } +&{glResumeTransformFeedback QOpenGLFunctions_4_0_Compatibility::glResumeTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [] } +&{glRotated QOpenGLFunctions_4_0_Compatibility::glRotated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217d2820 0xc8217d28c0 0xc8217d2940 0xc8217d29e0] } +&{glRotatef QOpenGLFunctions_4_0_Compatibility::glRotatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217d2bc0 0xc8217d2c60 0xc8217d2ce0 0xc8217d2da0] } +&{glSampleCoverage QOpenGLFunctions_4_0_Compatibility::glSampleCoverage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217d2f20 0xc8217d2fe0] } +&{glSampleMaski QOpenGLFunctions_4_0_Compatibility::glSampleMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217d3160 0xc8217d3220] } +&{glSamplerParameterIiv QOpenGLFunctions_4_0_Compatibility::glSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217d3440 0xc8217d34e0 0xc8217d3560] } +&{glSamplerParameterIuiv QOpenGLFunctions_4_0_Compatibility::glSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217d37a0 0xc8217d3840 0xc8217d38e0] } +&{glSamplerParameterf QOpenGLFunctions_4_0_Compatibility::glSamplerParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217d3ae0 0xc8217d3ba0 0xc8217d3c40] } +&{glSamplerParameterfv QOpenGLFunctions_4_0_Compatibility::glSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217d3e60 0xc8217d3f00 0xc8217d3f80] } +&{glSamplerParameteri QOpenGLFunctions_4_0_Compatibility::glSamplerParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217c01c0 0xc8217c0260 0xc8217c0300] } +&{glSamplerParameteriv QOpenGLFunctions_4_0_Compatibility::glSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217c0520 0xc8217c05a0 0xc8217c0640] } +&{glScaled QOpenGLFunctions_4_0_Compatibility::glScaled commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217c0800 0xc8217c08a0 0xc8217c0940] } +&{glScalef QOpenGLFunctions_4_0_Compatibility::glScalef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217c0ac0 0xc8217c0ba0 0xc8217c0c40] } +&{glScissor QOpenGLFunctions_4_0_Compatibility::glScissor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217c0dc0 0xc8217c0e80 0xc8217c0f40 0xc8217c0fc0] } +&{glSecondaryColor3b QOpenGLFunctions_4_0_Compatibility::glSecondaryColor3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217c11e0 0xc8217c1260 0xc8217c1340] } +&{glSecondaryColor3bv QOpenGLFunctions_4_0_Compatibility::glSecondaryColor3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217c1540] } +&{glSecondaryColor3d QOpenGLFunctions_4_0_Compatibility::glSecondaryColor3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217c1760 0xc8217c1800 0xc8217c18a0] } +&{glSecondaryColor3dv QOpenGLFunctions_4_0_Compatibility::glSecondaryColor3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217c1aa0] } +&{glSecondaryColor3f QOpenGLFunctions_4_0_Compatibility::glSecondaryColor3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217c1cc0 0xc8217c1d40 0xc8217c1de0] } +&{glSecondaryColor3fv QOpenGLFunctions_4_0_Compatibility::glSecondaryColor3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217b0020] } +&{glSecondaryColor3i QOpenGLFunctions_4_0_Compatibility::glSecondaryColor3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217b0220 0xc8217b02c0 0xc8217b0340] } +&{glSecondaryColor3iv QOpenGLFunctions_4_0_Compatibility::glSecondaryColor3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217b0560] } +&{glSecondaryColor3s QOpenGLFunctions_4_0_Compatibility::glSecondaryColor3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217b0780 0xc8217b0840 0xc8217b08e0] } +&{glSecondaryColor3sv QOpenGLFunctions_4_0_Compatibility::glSecondaryColor3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217b0b00] } +&{glSecondaryColor3ub QOpenGLFunctions_4_0_Compatibility::glSecondaryColor3ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217b0d20 0xc8217b0dc0 0xc8217b0e40] } +&{glSecondaryColor3ubv QOpenGLFunctions_4_0_Compatibility::glSecondaryColor3ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217b1060] } +&{glSecondaryColor3ui QOpenGLFunctions_4_0_Compatibility::glSecondaryColor3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217b1260 0xc8217b1300 0xc8217b13c0] } +&{glSecondaryColor3uiv QOpenGLFunctions_4_0_Compatibility::glSecondaryColor3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217b15a0] } +&{glSecondaryColor3us QOpenGLFunctions_4_0_Compatibility::glSecondaryColor3us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217b17c0 0xc8217b1860 0xc8217b1920] } +&{glSecondaryColor3usv QOpenGLFunctions_4_0_Compatibility::glSecondaryColor3usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217b1b00] } +&{glSecondaryColorP3ui QOpenGLFunctions_4_0_Compatibility::glSecondaryColorP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217b1d20 0xc8217b1dc0] } +&{glSecondaryColorP3uiv QOpenGLFunctions_4_0_Compatibility::glSecondaryColorP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217b1fc0 0xc8217a0080] } +&{glSecondaryColorPointer QOpenGLFunctions_4_0_Compatibility::glSecondaryColorPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217a0260 0xc8217a0320 0xc8217a03a0 0xc8217a0480] } +&{glSelectBuffer QOpenGLFunctions_4_0_Compatibility::glSelectBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217a05e0 0xc8217a06a0] } +&{glSeparableFilter2D QOpenGLFunctions_4_0_Compatibility::glSeparableFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217a08c0 0xc8217a0960 0xc8217a09e0 0xc8217a0aa0 0xc8217a0b80 0xc8217a0c20 0xc8217a0cc0 0xc8217a0d60] } +&{glShadeModel QOpenGLFunctions_4_0_Compatibility::glShadeModel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217a0f00] } +&{glShaderSource QOpenGLFunctions_4_0_Compatibility::glShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217a10c0 0xc8217a1160 0xc8217a1240 0xc8217a1300] } +&{glStencilFunc QOpenGLFunctions_4_0_Compatibility::glStencilFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217a14c0 0xc8217a1560 0xc8217a15e0] } +&{glStencilFuncSeparate QOpenGLFunctions_4_0_Compatibility::glStencilFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217a1820 0xc8217a18e0 0xc8217a1980 0xc8217a1a00] } +&{glStencilMask QOpenGLFunctions_4_0_Compatibility::glStencilMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217a1be0] } +&{glStencilMaskSeparate QOpenGLFunctions_4_0_Compatibility::glStencilMaskSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217a1e00 0xc8217a1e80] } +&{glStencilOp QOpenGLFunctions_4_0_Compatibility::glStencilOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821786020 0xc8217860e0 0xc8217861a0] } +&{glStencilOpSeparate QOpenGLFunctions_4_0_Compatibility::glStencilOpSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821786380 0xc821786440 0xc8217864c0 0xc821786540] } +&{glTexBuffer QOpenGLFunctions_4_0_Compatibility::glTexBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821786700 0xc821786780 0xc821786840] } +&{glTexCoord1d QOpenGLFunctions_4_0_Compatibility::glTexCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217869e0] } +&{glTexCoord1dv QOpenGLFunctions_4_0_Compatibility::glTexCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821786b60] } +&{glTexCoord1f QOpenGLFunctions_4_0_Compatibility::glTexCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821786d00] } +&{glTexCoord1fv QOpenGLFunctions_4_0_Compatibility::glTexCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821786ea0] } +&{glTexCoord1i QOpenGLFunctions_4_0_Compatibility::glTexCoord1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821787080] } +&{glTexCoord1iv QOpenGLFunctions_4_0_Compatibility::glTexCoord1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217871e0] } +&{glTexCoord1s QOpenGLFunctions_4_0_Compatibility::glTexCoord1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217873c0] } +&{glTexCoord1sv QOpenGLFunctions_4_0_Compatibility::glTexCoord1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821787560] } +&{glTexCoord2d QOpenGLFunctions_4_0_Compatibility::glTexCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821787700 0xc821787780] } +&{glTexCoord2dv QOpenGLFunctions_4_0_Compatibility::glTexCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821787900] } +&{glTexCoord2f QOpenGLFunctions_4_0_Compatibility::glTexCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821787ac0 0xc821787b40] } +&{glTexCoord2fv QOpenGLFunctions_4_0_Compatibility::glTexCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821787d00] } +&{glTexCoord2i QOpenGLFunctions_4_0_Compatibility::glTexCoord2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821787e80 0xc821787f40] } +&{glTexCoord2iv QOpenGLFunctions_4_0_Compatibility::glTexCoord2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217760a0] } +&{glTexCoord2s QOpenGLFunctions_4_0_Compatibility::glTexCoord2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821776220 0xc8217762e0] } +&{glTexCoord2sv QOpenGLFunctions_4_0_Compatibility::glTexCoord2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217764a0] } +&{glTexCoord3d QOpenGLFunctions_4_0_Compatibility::glTexCoord3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821776620 0xc8217766e0 0xc821776780] } +&{glTexCoord3dv QOpenGLFunctions_4_0_Compatibility::glTexCoord3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821776900] } +&{glTexCoord3f QOpenGLFunctions_4_0_Compatibility::glTexCoord3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821776aa0 0xc821776b40 0xc821776be0] } +&{glTexCoord3fv QOpenGLFunctions_4_0_Compatibility::glTexCoord3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821776d60] } +&{glTexCoord3i QOpenGLFunctions_4_0_Compatibility::glTexCoord3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821776ee0 0xc821776fc0 0xc821777060] } +&{glTexCoord3iv QOpenGLFunctions_4_0_Compatibility::glTexCoord3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217771e0] } +&{glTexCoord3s QOpenGLFunctions_4_0_Compatibility::glTexCoord3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217773a0 0xc821777420 0xc821777500] } +&{glTexCoord3sv QOpenGLFunctions_4_0_Compatibility::glTexCoord3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217776a0] } +&{glTexCoord4d QOpenGLFunctions_4_0_Compatibility::glTexCoord4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821777820 0xc8217778a0 0xc821777980 0xc821777a20] } +&{glTexCoord4dv QOpenGLFunctions_4_0_Compatibility::glTexCoord4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821777bc0] } +&{glTexCoord4f QOpenGLFunctions_4_0_Compatibility::glTexCoord4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821777d20 0xc821777e00 0xc821777ea0 0xc821777f60] } +&{glTexCoord4fv QOpenGLFunctions_4_0_Compatibility::glTexCoord4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217640c0] } +&{glTexCoord4i QOpenGLFunctions_4_0_Compatibility::glTexCoord4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821764260 0xc821764320 0xc8217643a0 0xc821764440] } +&{glTexCoord4iv QOpenGLFunctions_4_0_Compatibility::glTexCoord4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217645e0] } +&{glTexCoord4s QOpenGLFunctions_4_0_Compatibility::glTexCoord4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217647a0 0xc821764820 0xc821764900 0xc821764980] } +&{glTexCoord4sv QOpenGLFunctions_4_0_Compatibility::glTexCoord4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821764b40] } +&{glTexCoordP1ui QOpenGLFunctions_4_0_Compatibility::glTexCoordP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821764cc0 0xc821764d80] } +&{glTexCoordP1uiv QOpenGLFunctions_4_0_Compatibility::glTexCoordP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821764f20 0xc821764fe0] } +&{glTexCoordP2ui QOpenGLFunctions_4_0_Compatibility::glTexCoordP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821765180 0xc821765200] } +&{glTexCoordP2uiv QOpenGLFunctions_4_0_Compatibility::glTexCoordP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217653c0 0xc821765460] } +&{glTexCoordP3ui QOpenGLFunctions_4_0_Compatibility::glTexCoordP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821765600 0xc821765680] } +&{glTexCoordP3uiv QOpenGLFunctions_4_0_Compatibility::glTexCoordP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821765860 0xc8217658e0] } +&{glTexCoordP4ui QOpenGLFunctions_4_0_Compatibility::glTexCoordP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821765a80 0xc821765b20] } +&{glTexCoordP4uiv QOpenGLFunctions_4_0_Compatibility::glTexCoordP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821765ce0 0xc821765d60] } +&{glTexCoordPointer QOpenGLFunctions_4_0_Compatibility::glTexCoordPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821765f80 0xc821754080 0xc821754120 0xc8217541a0] } +&{glTexEnvf QOpenGLFunctions_4_0_Compatibility::glTexEnvf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821754360 0xc821754400 0xc821754480] } +&{glTexEnvfv QOpenGLFunctions_4_0_Compatibility::glTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821754620 0xc8217546e0 0xc821754760] } +&{glTexEnvi QOpenGLFunctions_4_0_Compatibility::glTexEnvi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821754920 0xc8217549c0 0xc821754a60] } +&{glTexEnviv QOpenGLFunctions_4_0_Compatibility::glTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821754be0 0xc821754ca0 0xc821754d40] } +&{glTexGend QOpenGLFunctions_4_0_Compatibility::glTexGend commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821754ea0 0xc821754f60 0xc821754fe0] } +&{glTexGendv QOpenGLFunctions_4_0_Compatibility::glTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217551a0 0xc821755240 0xc821755300] } +&{glTexGenf QOpenGLFunctions_4_0_Compatibility::glTexGenf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821755480 0xc821755540 0xc8217555e0] } +&{glTexGenfv QOpenGLFunctions_4_0_Compatibility::glTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821755780 0xc821755800 0xc8217558c0] } +&{glTexGeni QOpenGLFunctions_4_0_Compatibility::glTexGeni commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821755a20 0xc821755b00 0xc821755ba0] } +&{glTexGeniv QOpenGLFunctions_4_0_Compatibility::glTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821755d40 0xc821755de0 0xc821755e60] } +&{glTexImage1D QOpenGLFunctions_4_0_Compatibility::glTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82173e020 0xc82173e0c0 0xc82173e140 0xc82173e200 0xc82173e2a0 0xc82173e380 0xc82173e420 0xc82173e4c0] } +&{glTexImage2D QOpenGLFunctions_4_0_Compatibility::glTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82173e640 0xc82173e700 0xc82173e7a0 0xc82173e840 0xc82173e900 0xc82173e9c0 0xc82173ea40 0xc82173eb00 0xc82173ebc0] } +&{glTexImage2DMultisample QOpenGLFunctions_4_0_Compatibility::glTexImage2DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82173ede0 0xc82173ee60 0xc82173ef20 0xc82173efa0 0xc82173f060 0xc82173f120] } +&{glTexImage3D QOpenGLFunctions_4_0_Compatibility::glTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82173f320 0xc82173f3c0 0xc82173f440 0xc82173f500 0xc82173f5e0 0xc82173f680 0xc82173f700 0xc82173f7c0 0xc82173f880 0xc82173f940] } +&{glTexImage3DMultisample QOpenGLFunctions_4_0_Compatibility::glTexImage3DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82173fb40 0xc82173fc00 0xc82173fca0 0xc82173fd20 0xc82173fe00 0xc82173fec0 0xc82173ff80] } +&{glTexParameterIiv QOpenGLFunctions_4_0_Compatibility::glTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821728200 0xc821728280 0xc821728300] } +&{glTexParameterIuiv QOpenGLFunctions_4_0_Compatibility::glTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821728520 0xc8217285c0 0xc821728640] } +&{glTexParameterf QOpenGLFunctions_4_0_Compatibility::glTexParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821728800 0xc8217288a0 0xc821728920] } +&{glTexParameterfv QOpenGLFunctions_4_0_Compatibility::glTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821728aa0 0xc821728b80 0xc821728c00] } +&{glTexParameteri QOpenGLFunctions_4_0_Compatibility::glTexParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821728d80 0xc821728e40 0xc821728ee0] } +&{glTexParameteriv QOpenGLFunctions_4_0_Compatibility::glTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821729060 0xc821729120 0xc8217291c0] } +&{glTexSubImage1D QOpenGLFunctions_4_0_Compatibility::glTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821729360 0xc8217293e0 0xc8217294a0 0xc821729540 0xc821729600 0xc8217296c0 0xc821729740] } +&{glTexSubImage2D QOpenGLFunctions_4_0_Compatibility::glTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821729900 0xc821729980 0xc821729a40 0xc821729ac0 0xc821729ba0 0xc821729c40 0xc821729ce0 0xc821729d60 0xc821729e40] } +&{glTexSubImage3D QOpenGLFunctions_4_0_Compatibility::glTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821714000 0xc8217140c0 0xc821714160 0xc8217141e0 0xc8217142c0 0xc821714360 0xc8217143e0 0xc8217144c0 0xc821714560 0xc821714620 0xc8217146c0] } +&{glTransformFeedbackVaryings QOpenGLFunctions_4_0_Compatibility::glTransformFeedbackVaryings commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217148c0 0xc821714960 0xc821714a60 0xc821714b20] } +&{glTranslated QOpenGLFunctions_4_0_Compatibility::glTranslated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821714ce0 0xc821714d60 0xc821714e40] } +&{glTranslatef QOpenGLFunctions_4_0_Compatibility::glTranslatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821714fc0 0xc821715080 0xc821715120] } +&{glUniform1d QOpenGLFunctions_4_0_Compatibility::glUniform1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217152a0 0xc821715360] } +&{glUniform1dv QOpenGLFunctions_4_0_Compatibility::glUniform1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217154c0 0xc8217155a0 0xc821715620] } +&{glUniform1f QOpenGLFunctions_4_0_Compatibility::glUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217157a0 0xc821715820] } +&{glUniform1fv QOpenGLFunctions_4_0_Compatibility::glUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821715980 0xc821715a00 0xc821715ae0] } +&{glUniform1i QOpenGLFunctions_4_0_Compatibility::glUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821715c80 0xc821715d20] } +&{glUniform1iv QOpenGLFunctions_4_0_Compatibility::glUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821715ea0 0xc821715f60 0xc821715fe0] } +&{glUniform1ui QOpenGLFunctions_4_0_Compatibility::glUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821700180 0xc821700220] } +&{glUniform1uiv QOpenGLFunctions_4_0_Compatibility::glUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217003a0 0xc821700420 0xc821700500] } +&{glUniform2d QOpenGLFunctions_4_0_Compatibility::glUniform2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821700660 0xc821700720 0xc8217007a0] } +&{glUniform2dv QOpenGLFunctions_4_0_Compatibility::glUniform2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821700960 0xc8217009e0 0xc821700aa0] } +&{glUniform2f QOpenGLFunctions_4_0_Compatibility::glUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821700c40 0xc821700ce0 0xc821700d60] } +&{glUniform2fv QOpenGLFunctions_4_0_Compatibility::glUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821700f20 0xc821700fc0 0xc821701060] } +&{glUniform2i QOpenGLFunctions_4_0_Compatibility::glUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217011e0 0xc8217012a0 0xc821701340] } +&{glUniform2iv QOpenGLFunctions_4_0_Compatibility::glUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217014a0 0xc821701560 0xc821701600] } +&{glUniform2ui QOpenGLFunctions_4_0_Compatibility::glUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8217017a0 0xc821701820 0xc8217018e0] } +&{glUniform2uiv QOpenGLFunctions_4_0_Compatibility::glUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821701a80 0xc821701b20 0xc821701ba0] } +&{glUniform3d QOpenGLFunctions_4_0_Compatibility::glUniform3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821701d60 0xc821701de0 0xc821701ea0 0xc821701f40] } +&{glUniform3dv QOpenGLFunctions_4_0_Compatibility::glUniform3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216f0100 0xc8216f01a0 0xc8216f0220] } +&{glUniform3f QOpenGLFunctions_4_0_Compatibility::glUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216f0400 0xc8216f04a0 0xc8216f0520 0xc8216f0600] } +&{glUniform3fv QOpenGLFunctions_4_0_Compatibility::glUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216f0760 0xc8216f0820 0xc8216f08c0] } +&{glUniform3i QOpenGLFunctions_4_0_Compatibility::glUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216f0a60 0xc8216f0ae0 0xc8216f0b80 0xc8216f0c60] } +&{glUniform3iv QOpenGLFunctions_4_0_Compatibility::glUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216f0dc0 0xc8216f0e80 0xc8216f0f20] } +&{glUniform3ui QOpenGLFunctions_4_0_Compatibility::glUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216f10a0 0xc8216f1140 0xc8216f1200 0xc8216f12a0] } +&{glUniform3uiv QOpenGLFunctions_4_0_Compatibility::glUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216f1420 0xc8216f14e0 0xc8216f1580] } +&{glUniform4d QOpenGLFunctions_4_0_Compatibility::glUniform4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216f16e0 0xc8216f17c0 0xc8216f1860 0xc8216f18e0 0xc8216f19c0] } +&{glUniform4dv QOpenGLFunctions_4_0_Compatibility::glUniform4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216f1b60 0xc8216f1c00 0xc8216f1c80] } +&{glUniform4f QOpenGLFunctions_4_0_Compatibility::glUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216f1e40 0xc8216f1ec0 0xc8216f1f80 0xc8216e0040 0xc8216e0120] } +&{glUniform4fv QOpenGLFunctions_4_0_Compatibility::glUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216e02c0 0xc8216e0360 0xc8216e03e0] } +&{glUniform4i QOpenGLFunctions_4_0_Compatibility::glUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216e05a0 0xc8216e0640 0xc8216e06c0 0xc8216e07a0 0xc8216e0860] } +&{glUniform4iv QOpenGLFunctions_4_0_Compatibility::glUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216e0a20 0xc8216e0ac0 0xc8216e0b40] } +&{glUniform4ui QOpenGLFunctions_4_0_Compatibility::glUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216e0d00 0xc8216e0d80 0xc8216e0e60 0xc8216e0f00 0xc8216e0fc0] } +&{glUniform4uiv QOpenGLFunctions_4_0_Compatibility::glUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216e1180 0xc8216e1200 0xc8216e12a0] } +&{glUniformBlockBinding QOpenGLFunctions_4_0_Compatibility::glUniformBlockBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216e14e0 0xc8216e1580 0xc8216e16e0] } +&{glUniformMatrix2dv QOpenGLFunctions_4_0_Compatibility::glUniformMatrix2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216e1960 0xc8216e1a00 0xc8216e1a80 0xc8216e1b20] } +&{glUniformMatrix2fv QOpenGLFunctions_4_0_Compatibility::glUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216e1d40 0xc8216e1e20 0xc8216e1ec0 0xc8216e1f60] } +&{glUniformMatrix2x3dv QOpenGLFunctions_4_0_Compatibility::glUniformMatrix2x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216be120 0xc8216be200 0xc8216be2a0 0xc8216be340] } +&{glUniformMatrix2x3fv QOpenGLFunctions_4_0_Compatibility::glUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216be560 0xc8216be5e0 0xc8216be6a0 0xc8216be740] } +&{glUniformMatrix2x4dv QOpenGLFunctions_4_0_Compatibility::glUniformMatrix2x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216be940 0xc8216be9e0 0xc8216bea80 0xc8216beb20] } +&{glUniformMatrix2x4fv QOpenGLFunctions_4_0_Compatibility::glUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216bed20 0xc8216bedc0 0xc8216bee60 0xc8216bef00] } +&{glUniformMatrix3dv QOpenGLFunctions_4_0_Compatibility::glUniformMatrix3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216bf120 0xc8216bf1c0 0xc8216bf240 0xc8216bf300] } +&{glUniformMatrix3fv QOpenGLFunctions_4_0_Compatibility::glUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216bf520 0xc8216bf5c0 0xc8216bf660 0xc8216bf6e0] } +&{glUniformMatrix3x2dv QOpenGLFunctions_4_0_Compatibility::glUniformMatrix3x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216bf900 0xc8216bf9c0 0xc8216bfa40 0xc8216bfb00] } +&{glUniformMatrix3x2fv QOpenGLFunctions_4_0_Compatibility::glUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216bfd20 0xc8216bfda0 0xc8216bfe60 0xc8216bfee0] } +&{glUniformMatrix3x4dv QOpenGLFunctions_4_0_Compatibility::glUniformMatrix3x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216aa120 0xc8216aa1e0 0xc8216aa260 0xc8216aa2e0] } +&{glUniformMatrix3x4fv QOpenGLFunctions_4_0_Compatibility::glUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216aa500 0xc8216aa580 0xc8216aa640 0xc8216aa6c0] } +&{glUniformMatrix4dv QOpenGLFunctions_4_0_Compatibility::glUniformMatrix4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216aa8e0 0xc8216aa9a0 0xc8216aaa20 0xc8216aaae0] } +&{glUniformMatrix4fv QOpenGLFunctions_4_0_Compatibility::glUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216aacc0 0xc8216aad80 0xc8216aae20 0xc8216aaec0] } +&{glUniformMatrix4x2dv QOpenGLFunctions_4_0_Compatibility::glUniformMatrix4x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216ab0a0 0xc8216ab160 0xc8216ab200 0xc8216ab2a0] } +&{glUniformMatrix4x2fv QOpenGLFunctions_4_0_Compatibility::glUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216ab480 0xc8216ab540 0xc8216ab5e0 0xc8216ab680] } +&{glUniformMatrix4x3dv QOpenGLFunctions_4_0_Compatibility::glUniformMatrix4x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216ab8a0 0xc8216ab920 0xc8216ab9c0 0xc8216aba60] } +&{glUniformMatrix4x3fv QOpenGLFunctions_4_0_Compatibility::glUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216abc80 0xc8216abd20 0xc8216abdc0 0xc8216abe80] } +&{glUniformSubroutinesuiv QOpenGLFunctions_4_0_Compatibility::glUniformSubroutinesuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821692080 0xc821692100 0xc8216921c0] } +&{glUnmapBuffer QOpenGLFunctions_4_0_Compatibility::glUnmapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false GLboolean [0xc821692340] } +&{glUseProgram QOpenGLFunctions_4_0_Compatibility::glUseProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216924c0] } +&{glValidateProgram QOpenGLFunctions_4_0_Compatibility::glValidateProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216926e0] } +&{glVertex2d QOpenGLFunctions_4_0_Compatibility::glVertex2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821692860 0xc8216928e0] } +&{glVertex2dv QOpenGLFunctions_4_0_Compatibility::glVertex2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821692a60] } +&{glVertex2f QOpenGLFunctions_4_0_Compatibility::glVertex2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821692c20 0xc821692ca0] } +&{glVertex2fv QOpenGLFunctions_4_0_Compatibility::glVertex2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821692e40] } +&{glVertex2i QOpenGLFunctions_4_0_Compatibility::glVertex2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821692fe0 0xc821693060] } +&{glVertex2iv QOpenGLFunctions_4_0_Compatibility::glVertex2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821693220] } +&{glVertex2s QOpenGLFunctions_4_0_Compatibility::glVertex2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216933c0 0xc821693480] } +&{glVertex2sv QOpenGLFunctions_4_0_Compatibility::glVertex2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821693600] } +&{glVertex3d QOpenGLFunctions_4_0_Compatibility::glVertex3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216937c0 0xc821693840 0xc821693900] } +&{glVertex3dv QOpenGLFunctions_4_0_Compatibility::glVertex3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821693a80] } +&{glVertex3f QOpenGLFunctions_4_0_Compatibility::glVertex3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821693c40 0xc821693cc0 0xc821693d80] } +&{glVertex3fv QOpenGLFunctions_4_0_Compatibility::glVertex3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821693f20] } +&{glVertex3i QOpenGLFunctions_4_0_Compatibility::glVertex3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821680080 0xc821680120 0xc8216801a0] } +&{glVertex3iv QOpenGLFunctions_4_0_Compatibility::glVertex3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216803a0] } +&{glVertex3s QOpenGLFunctions_4_0_Compatibility::glVertex3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821680540 0xc8216805c0 0xc821680680] } +&{glVertex3sv QOpenGLFunctions_4_0_Compatibility::glVertex3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821680820] } +&{glVertex4d QOpenGLFunctions_4_0_Compatibility::glVertex4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216809a0 0xc821680a20 0xc821680b00 0xc821680ba0] } +&{glVertex4dv QOpenGLFunctions_4_0_Compatibility::glVertex4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821680d20] } +&{glVertex4f QOpenGLFunctions_4_0_Compatibility::glVertex4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821680ea0 0xc821680f20 0xc821680fe0 0xc821681060] } +&{glVertex4fv QOpenGLFunctions_4_0_Compatibility::glVertex4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216811e0] } +&{glVertex4i QOpenGLFunctions_4_0_Compatibility::glVertex4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216813a0 0xc821681420 0xc8216814a0 0xc821681560] } +&{glVertex4iv QOpenGLFunctions_4_0_Compatibility::glVertex4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821681700] } +&{glVertex4s QOpenGLFunctions_4_0_Compatibility::glVertex4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821681880 0xc821681940 0xc8216819c0 0xc821681a40] } +&{glVertex4sv QOpenGLFunctions_4_0_Compatibility::glVertex4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821681c20] } +&{glVertexAttrib1d QOpenGLFunctions_4_0_Compatibility::glVertexAttrib1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821681da0 0xc821681e20] } +&{glVertexAttrib1dv QOpenGLFunctions_4_0_Compatibility::glVertexAttrib1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82166e060 0xc82166e0e0] } +&{glVertexAttrib1f QOpenGLFunctions_4_0_Compatibility::glVertexAttrib1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82166e280 0xc82166e320] } +&{glVertexAttrib1fv QOpenGLFunctions_4_0_Compatibility::glVertexAttrib1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82166e540 0xc82166e5c0] } +&{glVertexAttrib1s QOpenGLFunctions_4_0_Compatibility::glVertexAttrib1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82166e780 0xc82166e800] } +&{glVertexAttrib1sv QOpenGLFunctions_4_0_Compatibility::glVertexAttrib1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82166ea60 0xc82166eb00] } +&{glVertexAttrib2d QOpenGLFunctions_4_0_Compatibility::glVertexAttrib2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82166eca0 0xc82166ed40 0xc82166edc0] } +&{glVertexAttrib2dv QOpenGLFunctions_4_0_Compatibility::glVertexAttrib2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82166efe0 0xc82166f0a0] } +&{glVertexAttrib2f QOpenGLFunctions_4_0_Compatibility::glVertexAttrib2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82166f220 0xc82166f2e0 0xc82166f3a0] } +&{glVertexAttrib2fv QOpenGLFunctions_4_0_Compatibility::glVertexAttrib2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82166f5c0 0xc82166f660] } +&{glVertexAttrib2s QOpenGLFunctions_4_0_Compatibility::glVertexAttrib2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82166f800 0xc82166f8a0 0xc82166f940] } +&{glVertexAttrib2sv QOpenGLFunctions_4_0_Compatibility::glVertexAttrib2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82166fb80 0xc82166fc00] } +&{glVertexAttrib3d QOpenGLFunctions_4_0_Compatibility::glVertexAttrib3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82166fdc0 0xc82166fe60 0xc82166fee0 0xc82166ffc0] } +&{glVertexAttrib3dv QOpenGLFunctions_4_0_Compatibility::glVertexAttrib3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82165e1a0 0xc82165e260] } +&{glVertexAttrib3f QOpenGLFunctions_4_0_Compatibility::glVertexAttrib3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82165e3e0 0xc82165e4a0 0xc82165e540 0xc82165e5e0] } +&{glVertexAttrib3fv QOpenGLFunctions_4_0_Compatibility::glVertexAttrib3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82165e800 0xc82165e880] } +&{glVertexAttrib3s QOpenGLFunctions_4_0_Compatibility::glVertexAttrib3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82165ea40 0xc82165eac0 0xc82165eb80 0xc82165ec40] } +&{glVertexAttrib3sv QOpenGLFunctions_4_0_Compatibility::glVertexAttrib3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82165ee20 0xc82165eec0] } +&{glVertexAttrib4Nbv QOpenGLFunctions_4_0_Compatibility::glVertexAttrib4Nbv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82165f0c0 0xc82165f180] } +&{glVertexAttrib4Niv QOpenGLFunctions_4_0_Compatibility::glVertexAttrib4Niv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82165f380 0xc82165f460] } +&{glVertexAttrib4Nsv QOpenGLFunctions_4_0_Compatibility::glVertexAttrib4Nsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82165f660 0xc82165f700] } +&{glVertexAttrib4Nub QOpenGLFunctions_4_0_Compatibility::glVertexAttrib4Nub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82165f920 0xc82165f9c0 0xc82165faa0 0xc82165fb40 0xc82165fbe0] } +&{glVertexAttrib4Nubv QOpenGLFunctions_4_0_Compatibility::glVertexAttrib4Nubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82165fe20 0xc82165fea0] } +&{glVertexAttrib4Nuiv QOpenGLFunctions_4_0_Compatibility::glVertexAttrib4Nuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82164a100 0xc82164a1a0] } +&{glVertexAttrib4Nusv QOpenGLFunctions_4_0_Compatibility::glVertexAttrib4Nusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82164a3c0 0xc82164a440] } +&{glVertexAttrib4bv QOpenGLFunctions_4_0_Compatibility::glVertexAttrib4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82164a680 0xc82164a700] } +&{glVertexAttrib4d QOpenGLFunctions_4_0_Compatibility::glVertexAttrib4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82164a8e0 0xc82164a960 0xc82164aa20 0xc82164aac0 0xc82164ab80] } +&{glVertexAttrib4dv QOpenGLFunctions_4_0_Compatibility::glVertexAttrib4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82164adc0 0xc82164ae40] } +&{glVertexAttrib4f QOpenGLFunctions_4_0_Compatibility::glVertexAttrib4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82164afc0 0xc82164b080 0xc82164b120 0xc82164b1c0 0xc82164b280] } +&{glVertexAttrib4fv QOpenGLFunctions_4_0_Compatibility::glVertexAttrib4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82164b4c0 0xc82164b560] } +&{glVertexAttrib4iv QOpenGLFunctions_4_0_Compatibility::glVertexAttrib4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82164b780 0xc82164b820] } +&{glVertexAttrib4s QOpenGLFunctions_4_0_Compatibility::glVertexAttrib4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82164b9c0 0xc82164ba60 0xc82164bb00 0xc82164bb80 0xc82164bc60] } +&{glVertexAttrib4sv QOpenGLFunctions_4_0_Compatibility::glVertexAttrib4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82164be60 0xc82164bf00] } +&{glVertexAttrib4ubv QOpenGLFunctions_4_0_Compatibility::glVertexAttrib4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82163a160 0xc82163a1e0] } +&{glVertexAttrib4uiv QOpenGLFunctions_4_0_Compatibility::glVertexAttrib4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82163a400 0xc82163a480] } +&{glVertexAttrib4usv QOpenGLFunctions_4_0_Compatibility::glVertexAttrib4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82163a6a0 0xc82163a760] } +&{glVertexAttribDivisor QOpenGLFunctions_4_0_Compatibility::glVertexAttribDivisor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82163a980 0xc82163aa20] } +&{glVertexAttribI1i QOpenGLFunctions_4_0_Compatibility::glVertexAttribI1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82163ac20 0xc82163acc0] } +&{glVertexAttribI1iv QOpenGLFunctions_4_0_Compatibility::glVertexAttribI1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82163aea0 0xc82163af80] } +&{glVertexAttribI1ui QOpenGLFunctions_4_0_Compatibility::glVertexAttribI1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82163b180 0xc82163b240] } +&{glVertexAttribI1uiv QOpenGLFunctions_4_0_Compatibility::glVertexAttribI1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82163b440 0xc82163b520] } +&{glVertexAttribI2i QOpenGLFunctions_4_0_Compatibility::glVertexAttribI2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82163b720 0xc82163b7c0 0xc82163b840] } +&{glVertexAttribI2iv QOpenGLFunctions_4_0_Compatibility::glVertexAttribI2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82163ba80 0xc82163bb20] } +&{glVertexAttribI2ui QOpenGLFunctions_4_0_Compatibility::glVertexAttribI2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc82163bd20 0xc82163bdc0 0xc82163be80] } +&{glVertexAttribI2uiv QOpenGLFunctions_4_0_Compatibility::glVertexAttribI2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216240c0 0xc821624140] } +&{glVertexAttribI3i QOpenGLFunctions_4_0_Compatibility::glVertexAttribI3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821624340 0xc8216243c0 0xc821624480 0xc821624520] } +&{glVertexAttribI3iv QOpenGLFunctions_4_0_Compatibility::glVertexAttribI3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821624740 0xc8216247c0] } +&{glVertexAttribI3ui QOpenGLFunctions_4_0_Compatibility::glVertexAttribI3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821624a00 0xc821624a80 0xc821624b20 0xc821624be0] } +&{glVertexAttribI3uiv QOpenGLFunctions_4_0_Compatibility::glVertexAttribI3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821624dc0 0xc821624ea0] } +&{glVertexAttribI4bv QOpenGLFunctions_4_0_Compatibility::glVertexAttribI4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821625080 0xc821625160] } +&{glVertexAttribI4i QOpenGLFunctions_4_0_Compatibility::glVertexAttribI4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821625360 0xc821625420 0xc8216254e0 0xc821625560 0xc821625640] } +&{glVertexAttribI4iv QOpenGLFunctions_4_0_Compatibility::glVertexAttribI4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821625860 0xc821625900] } +&{glVertexAttribI4sv QOpenGLFunctions_4_0_Compatibility::glVertexAttribI4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821625b00 0xc821625b80] } +&{glVertexAttribI4ubv QOpenGLFunctions_4_0_Compatibility::glVertexAttribI4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821625da0 0xc821625e60] } +&{glVertexAttribI4ui QOpenGLFunctions_4_0_Compatibility::glVertexAttribI4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821614080 0xc821614120 0xc8216141a0 0xc821614240 0xc821614340] } +&{glVertexAttribI4uiv QOpenGLFunctions_4_0_Compatibility::glVertexAttribI4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821614560 0xc821614600] } +&{glVertexAttribI4usv QOpenGLFunctions_4_0_Compatibility::glVertexAttribI4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821614820 0xc8216148e0] } +&{glVertexAttribIPointer QOpenGLFunctions_4_0_Compatibility::glVertexAttribIPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821614b00 0xc821614ba0 0xc821614c40 0xc821614cc0 0xc821614dc0] } +&{glVertexAttribP1ui QOpenGLFunctions_4_0_Compatibility::glVertexAttribP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821614fc0 0xc821615080 0xc821615100 0xc8216151a0] } +&{glVertexAttribP1uiv QOpenGLFunctions_4_0_Compatibility::glVertexAttribP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216153c0 0xc821615460 0xc821615540 0xc8216155e0] } +&{glVertexAttribP2ui QOpenGLFunctions_4_0_Compatibility::glVertexAttribP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821615800 0xc8216158a0 0xc821615920 0xc821615a00] } +&{glVertexAttribP2uiv QOpenGLFunctions_4_0_Compatibility::glVertexAttribP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821615c00 0xc821615ca0 0xc821615d60 0xc821615e20] } +&{glVertexAttribP3ui QOpenGLFunctions_4_0_Compatibility::glVertexAttribP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821604040 0xc8216040e0 0xc821604180 0xc821604240] } +&{glVertexAttribP3uiv QOpenGLFunctions_4_0_Compatibility::glVertexAttribP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821604440 0xc8216044c0 0xc821604580 0xc821604620] } +&{glVertexAttribP4ui QOpenGLFunctions_4_0_Compatibility::glVertexAttribP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821604840 0xc8216048e0 0xc821604960 0xc821604a00] } +&{glVertexAttribP4uiv QOpenGLFunctions_4_0_Compatibility::glVertexAttribP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821604c40 0xc821604ce0 0xc821604d60 0xc821604e00] } +&{glVertexAttribPointer QOpenGLFunctions_4_0_Compatibility::glVertexAttribPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821605060 0xc8216050e0 0xc821605180 0xc821605220 0xc821605300 0xc8216053a0] } +&{glVertexP2ui QOpenGLFunctions_4_0_Compatibility::glVertexP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821605520 0xc8216055c0] } +&{glVertexP2uiv QOpenGLFunctions_4_0_Compatibility::glVertexP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821605760 0xc821605800] } +&{glVertexP3ui QOpenGLFunctions_4_0_Compatibility::glVertexP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8216059a0 0xc821605a60] } +&{glVertexP3uiv QOpenGLFunctions_4_0_Compatibility::glVertexP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821605bc0 0xc821605ca0] } +&{glVertexP4ui QOpenGLFunctions_4_0_Compatibility::glVertexP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc821605e40 0xc821605ee0] } +&{glVertexP4uiv QOpenGLFunctions_4_0_Compatibility::glVertexP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8215dc040 0xc8215dc0c0] } +&{glVertexPointer QOpenGLFunctions_4_0_Compatibility::glVertexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8215dc280 0xc8215dc320 0xc8215dc3c0 0xc8215dc440] } +&{glViewport QOpenGLFunctions_4_0_Compatibility::glViewport commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8215dc5e0 0xc8215dc680 0xc8215dc720 0xc8215dc7e0] } +&{glWaitSync QOpenGLFunctions_4_0_Compatibility::glWaitSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8215dc940 0xc8215dca00 0xc8215dcaa0] } +&{glWindowPos2d QOpenGLFunctions_4_0_Compatibility::glWindowPos2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8215dcc20 0xc8215dcca0] } +&{glWindowPos2dv QOpenGLFunctions_4_0_Compatibility::glWindowPos2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8215dce40] } +&{glWindowPos2f QOpenGLFunctions_4_0_Compatibility::glWindowPos2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8215dcfe0 0xc8215dd080] } +&{glWindowPos2fv QOpenGLFunctions_4_0_Compatibility::glWindowPos2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8215dd220] } +&{glWindowPos2i QOpenGLFunctions_4_0_Compatibility::glWindowPos2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8215dd380 0xc8215dd460] } +&{glWindowPos2iv QOpenGLFunctions_4_0_Compatibility::glWindowPos2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8215dd5c0] } +&{glWindowPos2s QOpenGLFunctions_4_0_Compatibility::glWindowPos2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8215dd780 0xc8215dd820] } +&{glWindowPos2sv QOpenGLFunctions_4_0_Compatibility::glWindowPos2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8215dd9c0] } +&{glWindowPos3d QOpenGLFunctions_4_0_Compatibility::glWindowPos3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8215ddb60 0xc8215ddc00 0xc8215ddc80] } +&{glWindowPos3dv QOpenGLFunctions_4_0_Compatibility::glWindowPos3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8215dde40] } +&{glWindowPos3f QOpenGLFunctions_4_0_Compatibility::glWindowPos3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8215ddfc0 0xc8215c8080 0xc8215c8120] } +&{glWindowPos3fv QOpenGLFunctions_4_0_Compatibility::glWindowPos3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8215c82c0] } +&{glWindowPos3i QOpenGLFunctions_4_0_Compatibility::glWindowPos3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8215c8420 0xc8215c84a0 0xc8215c8540] } +&{glWindowPos3iv QOpenGLFunctions_4_0_Compatibility::glWindowPos3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8215c8700] } +&{glWindowPos3s QOpenGLFunctions_4_0_Compatibility::glWindowPos3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8215c88c0 0xc8215c8960 0xc8215c89e0] } +&{glWindowPos3sv QOpenGLFunctions_4_0_Compatibility::glWindowPos3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_compatibility.h non plain false false void [0xc8215c8b60] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions_4_0_Core.txt b/internal/binding/dump/QtGui/QOpenGLFunctions_4_0_Core.txt new file mode 100755 index 00000000..8cf855b1 --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions_4_0_Core.txt @@ -0,0 +1,372 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions_4_0_Core QOpenGLFunctions_4_0_Core::QOpenGLFunctions_4_0_Core commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.cpp non constructor false false [] } +&{initializeOpenGLFunctions QOpenGLFunctions_4_0_Core::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.cpp impure plain false false bool [] } +&{~QOpenGLFunctions_4_0_Core QOpenGLFunctions_4_0_Core::~QOpenGLFunctions_4_0_Core commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.cpp non destructor false false [] } +&{glActiveTexture QOpenGLFunctions_4_0_Core::glActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215c96a0] } +&{glAttachShader QOpenGLFunctions_4_0_Core::glAttachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215c98a0 0xc8215c9940] } +&{glBeginConditionalRender QOpenGLFunctions_4_0_Core::glBeginConditionalRender commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215c9ba0 0xc8215c9c40] } +&{glBeginQuery QOpenGLFunctions_4_0_Core::glBeginQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215c9e00 0xc8215c9ec0] } +&{glBeginQueryIndexed QOpenGLFunctions_4_0_Core::glBeginQueryIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215b0120 0xc8215b01a0 0xc8215b0260] } +&{glBeginTransformFeedback QOpenGLFunctions_4_0_Core::glBeginTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215b0480] } +&{glBindAttribLocation QOpenGLFunctions_4_0_Core::glBindAttribLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215b06e0 0xc8215b0780 0xc8215b0800] } +&{glBindBuffer QOpenGLFunctions_4_0_Core::glBindBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215b0980 0xc8215b0a00] } +&{glBindBufferBase QOpenGLFunctions_4_0_Core::glBindBufferBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215b0bc0 0xc8215b0c40 0xc8215b0d00] } +&{glBindBufferRange QOpenGLFunctions_4_0_Core::glBindBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215b0f40 0xc8215b0fc0 0xc8215b1080 0xc8215b1100 0xc8215b11e0] } +&{glBindFragDataLocation QOpenGLFunctions_4_0_Core::glBindFragDataLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215b1400 0xc8215b14c0 0xc8215b1560] } +&{glBindFragDataLocationIndexed QOpenGLFunctions_4_0_Core::glBindFragDataLocationIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215b17c0 0xc8215b1860 0xc8215b1900 0xc8215b1980] } +&{glBindFramebuffer QOpenGLFunctions_4_0_Core::glBindFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215b1bc0 0xc8215b1c60] } +&{glBindRenderbuffer QOpenGLFunctions_4_0_Core::glBindRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215b1e60 0xc8215b1f40] } +&{glBindSampler QOpenGLFunctions_4_0_Core::glBindSampler commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215a00e0 0xc8215a0180] } +&{glBindTexture QOpenGLFunctions_4_0_Core::glBindTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215a0340 0xc8215a03e0] } +&{glBindTransformFeedback QOpenGLFunctions_4_0_Core::glBindTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215a0600 0xc8215a06c0] } +&{glBindVertexArray QOpenGLFunctions_4_0_Core::glBindVertexArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215a08c0] } +&{glBlendColor QOpenGLFunctions_4_0_Core::glBlendColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215a0aa0 0xc8215a0b40 0xc8215a0be0 0xc8215a0c60] } +&{glBlendEquation QOpenGLFunctions_4_0_Core::glBlendEquation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215a0e20] } +&{glBlendEquationSeparate QOpenGLFunctions_4_0_Core::glBlendEquationSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215a1040 0xc8215a10e0] } +&{glBlendEquationSeparatei QOpenGLFunctions_4_0_Core::glBlendEquationSeparatei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215a1320 0xc8215a13a0 0xc8215a1440] } +&{glBlendEquationi QOpenGLFunctions_4_0_Core::glBlendEquationi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215a1620 0xc8215a16c0] } +&{glBlendFunc QOpenGLFunctions_4_0_Core::glBlendFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215a1860 0xc8215a1900] } +&{glBlendFuncSeparate QOpenGLFunctions_4_0_Core::glBlendFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215a1b60 0xc8215a1c00 0xc8215a1c80 0xc8215a1d40] } +&{glBlendFuncSeparatei QOpenGLFunctions_4_0_Core::glBlendFuncSeparatei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215a1f80 0xc82158c000 0xc82158c0a0 0xc82158c120 0xc82158c200] } +&{glBlendFunci QOpenGLFunctions_4_0_Core::glBlendFunci commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82158c3c0 0xc82158c440 0xc82158c520] } +&{glBlitFramebuffer QOpenGLFunctions_4_0_Core::glBlitFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82158c760 0xc82158c7e0 0xc82158c8a0 0xc82158c920 0xc82158ca20 0xc82158caa0 0xc82158cb40 0xc82158cc20 0xc82158ccc0 0xc82158cd80] } +&{glBufferData QOpenGLFunctions_4_0_Core::glBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82158cf20 0xc82158cfa0 0xc82158d060 0xc82158d100] } +&{glBufferSubData QOpenGLFunctions_4_0_Core::glBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82158d2c0 0xc82158d340 0xc82158d400 0xc82158d480] } +&{glCheckFramebufferStatus QOpenGLFunctions_4_0_Core::glCheckFramebufferStatus commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLenum [0xc82158d6c0] } +&{glClampColor QOpenGLFunctions_4_0_Core::glClampColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82158d8a0 0xc82158d940] } +&{glClear QOpenGLFunctions_4_0_Core::glClear commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82158db40] } +&{glClearBufferfi QOpenGLFunctions_4_0_Core::glClearBufferfi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82158dd00 0xc82158ddc0 0xc82158de60 0xc82158dee0] } +&{glClearBufferfv QOpenGLFunctions_4_0_Core::glClearBufferfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82157e0a0 0xc82157e160 0xc82157e200] } +&{glClearBufferiv QOpenGLFunctions_4_0_Core::glClearBufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82157e3c0 0xc82157e440 0xc82157e4e0] } +&{glClearBufferuiv QOpenGLFunctions_4_0_Core::glClearBufferuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82157e6a0 0xc82157e760 0xc82157e800] } +&{glClearColor QOpenGLFunctions_4_0_Core::glClearColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82157e9a0 0xc82157ea40 0xc82157eb00 0xc82157eba0] } +&{glClearDepth QOpenGLFunctions_4_0_Core::glClearDepth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82157ed40] } +&{glClearStencil QOpenGLFunctions_4_0_Core::glClearStencil commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82157ef40] } +&{glClientWaitSync QOpenGLFunctions_4_0_Core::glClientWaitSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLenum [0xc82157f100 0xc82157f1a0 0xc82157f240] } +&{glColorMask QOpenGLFunctions_4_0_Core::glColorMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82157f400 0xc82157f4a0 0xc82157f540 0xc82157f5e0] } +&{glColorMaski QOpenGLFunctions_4_0_Core::glColorMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82157f7c0 0xc82157f840 0xc82157f8c0 0xc82157f980 0xc82157fa20] } +&{glColorP3ui QOpenGLFunctions_4_0_Core::glColorP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82157fbc0 0xc82157fca0] } +&{glColorP3uiv QOpenGLFunctions_4_0_Core::glColorP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82157fe60 0xc82157ff00] } +&{glColorP4ui QOpenGLFunctions_4_0_Core::glColorP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82156e0c0 0xc82156e160] } +&{glColorP4uiv QOpenGLFunctions_4_0_Core::glColorP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82156e340 0xc82156e3e0] } +&{glCompileShader QOpenGLFunctions_4_0_Core::glCompileShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82156e5c0] } +&{glCompressedTexImage1D QOpenGLFunctions_4_0_Core::glCompressedTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82156e800 0xc82156e8a0 0xc82156e940 0xc82156e9c0 0xc82156eaa0 0xc82156eb40 0xc82156ec00] } +&{glCompressedTexImage2D QOpenGLFunctions_4_0_Core::glCompressedTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82156ee00 0xc82156eec0 0xc82156ef60 0xc82156f000 0xc82156f0c0 0xc82156f140 0xc82156f1e0 0xc82156f2a0] } +&{glCompressedTexImage3D QOpenGLFunctions_4_0_Core::glCompressedTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82156f4a0 0xc82156f560 0xc82156f600 0xc82156f6a0 0xc82156f780 0xc82156f800 0xc82156f8a0 0xc82156f940 0xc82156fa20] } +&{glCompressedTexSubImage1D QOpenGLFunctions_4_0_Core::glCompressedTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82156fc40 0xc82156fcc0 0xc82156fd80 0xc82156fe20 0xc82156fee0 0xc82156ff80 0xc821562020] } +&{glCompressedTexSubImage2D QOpenGLFunctions_4_0_Core::glCompressedTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821562260 0xc821562300 0xc8215623a0 0xc821562440 0xc821562500 0xc8215625a0 0xc821562640 0xc821562700 0xc8215627c0] } +&{glCompressedTexSubImage3D QOpenGLFunctions_4_0_Core::glCompressedTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215629e0 0xc821562a80 0xc821562b40 0xc821562be0 0xc821562ca0 0xc821562d60 0xc821562e00 0xc821562ea0 0xc821562f40 0xc821562fe0 0xc8215630a0] } +&{glCopyBufferSubData QOpenGLFunctions_4_0_Core::glCopyBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215632e0 0xc821563380 0xc821563420 0xc8215634e0 0xc8215635a0] } +&{glCopyTexImage1D QOpenGLFunctions_4_0_Core::glCopyTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821563740 0xc821563800 0xc8215638a0 0xc821563940 0xc821563a00 0xc821563a80 0xc821563b40] } +&{glCopyTexImage2D QOpenGLFunctions_4_0_Core::glCopyTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821563d00 0xc821563da0 0xc821563e60 0xc821563ee0 0xc821563fa0 0xc8215400c0 0xc821540160 0xc821540200] } +&{glCopyTexSubImage1D QOpenGLFunctions_4_0_Core::glCopyTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821540440 0xc8215404e0 0xc821540580 0xc821540620 0xc821540700 0xc821540780] } +&{glCopyTexSubImage2D QOpenGLFunctions_4_0_Core::glCopyTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215409e0 0xc821540a60 0xc821540b20 0xc821540ba0 0xc821540c80 0xc821540d20 0xc821540de0 0xc821540e60] } +&{glCopyTexSubImage3D QOpenGLFunctions_4_0_Core::glCopyTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215410e0 0xc821541180 0xc821541220 0xc8215412a0 0xc821541380 0xc821541400 0xc8215414e0 0xc821541580 0xc821541640] } +&{glCreateProgram QOpenGLFunctions_4_0_Core::glCreateProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLuint [] } +&{glCreateShader QOpenGLFunctions_4_0_Core::glCreateShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLuint [0xc8215418e0] } +&{glCullFace QOpenGLFunctions_4_0_Core::glCullFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821541aa0] } +&{glDeleteBuffers QOpenGLFunctions_4_0_Core::glDeleteBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821541c80 0xc821541d20] } +&{glDeleteFramebuffers QOpenGLFunctions_4_0_Core::glDeleteFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821541f40 0xc821541fe0] } +&{glDeleteProgram QOpenGLFunctions_4_0_Core::glDeleteProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82152a180] } +&{glDeleteQueries QOpenGLFunctions_4_0_Core::glDeleteQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82152a360 0xc82152a400] } +&{glDeleteRenderbuffers QOpenGLFunctions_4_0_Core::glDeleteRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82152a620 0xc82152a6e0] } +&{glDeleteSamplers QOpenGLFunctions_4_0_Core::glDeleteSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82152a880 0xc82152a940] } +&{glDeleteShader QOpenGLFunctions_4_0_Core::glDeleteShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82152ab00] } +&{glDeleteSync QOpenGLFunctions_4_0_Core::glDeleteSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82152ace0] } +&{glDeleteTextures QOpenGLFunctions_4_0_Core::glDeleteTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82152aea0 0xc82152af40] } +&{glDeleteTransformFeedbacks QOpenGLFunctions_4_0_Core::glDeleteTransformFeedbacks commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82152b180 0xc82152b220] } +&{glDeleteVertexArrays QOpenGLFunctions_4_0_Core::glDeleteVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82152b440 0xc82152b500] } +&{glDepthFunc QOpenGLFunctions_4_0_Core::glDepthFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82152b6c0] } +&{glDepthMask QOpenGLFunctions_4_0_Core::glDepthMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82152b8c0] } +&{glDepthRange QOpenGLFunctions_4_0_Core::glDepthRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82152ba60 0xc82152bb20] } +&{glDetachShader QOpenGLFunctions_4_0_Core::glDetachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82152bce0 0xc82152bda0] } +&{glDisable QOpenGLFunctions_4_0_Core::glDisable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82152bf60] } +&{glDisableVertexAttribArray QOpenGLFunctions_4_0_Core::glDisableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821514180] } +&{glDisablei QOpenGLFunctions_4_0_Core::glDisablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821514340 0xc821514400] } +&{glDrawArrays QOpenGLFunctions_4_0_Core::glDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821514580 0xc821514640 0xc8215146c0] } +&{glDrawArraysIndirect QOpenGLFunctions_4_0_Core::glDrawArraysIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821514920 0xc8215149e0] } +&{glDrawArraysInstanced QOpenGLFunctions_4_0_Core::glDrawArraysInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821514c00 0xc821514cc0 0xc821514d60 0xc821514e00] } +&{glDrawBuffer QOpenGLFunctions_4_0_Core::glDrawBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821515000] } +&{glDrawBuffers QOpenGLFunctions_4_0_Core::glDrawBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215151c0 0xc821515260] } +&{glDrawElements QOpenGLFunctions_4_0_Core::glDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821515420 0xc8215154e0 0xc821515560 0xc821515620] } +&{glDrawElementsBaseVertex QOpenGLFunctions_4_0_Core::glDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821515820 0xc8215158e0 0xc821515960 0xc821515a00 0xc821515ae0] } +&{glDrawElementsIndirect QOpenGLFunctions_4_0_Core::glDrawElementsIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821515d20 0xc821515da0 0xc821515e80] } +&{glDrawElementsInstanced QOpenGLFunctions_4_0_Core::glDrawElementsInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8215040a0 0xc821504120 0xc8215041c0 0xc821504280 0xc821504320] } +&{glDrawElementsInstancedBaseVertex QOpenGLFunctions_4_0_Core::glDrawElementsInstancedBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821504500 0xc8215045a0 0xc821504640 0xc8215046e0 0xc8215047c0 0xc821504860] } +&{glDrawRangeElements QOpenGLFunctions_4_0_Core::glDrawRangeElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821504aa0 0xc821504b20 0xc821504bc0 0xc821504ca0 0xc821504d40 0xc821504e00] } +&{glDrawRangeElementsBaseVertex QOpenGLFunctions_4_0_Core::glDrawRangeElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821505040 0xc821505100 0xc8215051a0 0xc821505220 0xc8215052e0 0xc8215053a0 0xc821505440] } +&{glDrawTransformFeedback QOpenGLFunctions_4_0_Core::glDrawTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821505680 0xc821505720] } +&{glDrawTransformFeedbackStream QOpenGLFunctions_4_0_Core::glDrawTransformFeedbackStream commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821505960 0xc821505a20 0xc821505ac0] } +&{glEnable QOpenGLFunctions_4_0_Core::glEnable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821505ca0] } +&{glEnableVertexAttribArray QOpenGLFunctions_4_0_Core::glEnableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821505ee0] } +&{glEnablei QOpenGLFunctions_4_0_Core::glEnablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214f20a0 0xc8214f2120] } +&{glEndConditionalRender QOpenGLFunctions_4_0_Core::glEndConditionalRender commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [] } +&{glEndQuery QOpenGLFunctions_4_0_Core::glEndQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214f2440] } +&{glEndQueryIndexed QOpenGLFunctions_4_0_Core::glEndQueryIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214f26a0 0xc8214f2720] } +&{glEndTransformFeedback QOpenGLFunctions_4_0_Core::glEndTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [] } +&{glFenceSync QOpenGLFunctions_4_0_Core::glFenceSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLsync [0xc8214f2a40 0xc8214f2ac0] } +&{glFinish QOpenGLFunctions_4_0_Core::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [] } +&{glFlush QOpenGLFunctions_4_0_Core::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [] } +&{glFlushMappedBufferRange QOpenGLFunctions_4_0_Core::glFlushMappedBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214f2e40 0xc8214f2f20 0xc8214f2fc0] } +&{glFramebufferRenderbuffer QOpenGLFunctions_4_0_Core::glFramebufferRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214f3200 0xc8214f3280 0xc8214f3360 0xc8214f3460] } +&{glFramebufferTexture QOpenGLFunctions_4_0_Core::glFramebufferTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214f3680 0xc8214f3740 0xc8214f37e0 0xc8214f3860] } +&{glFramebufferTexture1D QOpenGLFunctions_4_0_Core::glFramebufferTexture1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214f3ac0 0xc8214f3b40 0xc8214f3c20 0xc8214f3cc0 0xc8214f3d60] } +&{glFramebufferTexture2D QOpenGLFunctions_4_0_Core::glFramebufferTexture2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214f3fa0 0xc8214e2080 0xc8214e2100 0xc8214e21e0 0xc8214e22a0] } +&{glFramebufferTexture3D QOpenGLFunctions_4_0_Core::glFramebufferTexture3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214e24c0 0xc8214e25a0 0xc8214e2640 0xc8214e26e0 0xc8214e2780 0xc8214e2840] } +&{glFramebufferTextureLayer QOpenGLFunctions_4_0_Core::glFramebufferTextureLayer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214e2a40 0xc8214e2b20 0xc8214e2ba0 0xc8214e2c20 0xc8214e2d00] } +&{glFrontFace QOpenGLFunctions_4_0_Core::glFrontFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214e2f00] } +&{glGenBuffers QOpenGLFunctions_4_0_Core::glGenBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214e3080 0xc8214e3140] } +&{glGenFramebuffers QOpenGLFunctions_4_0_Core::glGenFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214e3380 0xc8214e3400] } +&{glGenQueries QOpenGLFunctions_4_0_Core::glGenQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214e35e0 0xc8214e36a0] } +&{glGenRenderbuffers QOpenGLFunctions_4_0_Core::glGenRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214e3880 0xc8214e3900] } +&{glGenSamplers QOpenGLFunctions_4_0_Core::glGenSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214e3aa0 0xc8214e3b80] } +&{glGenTextures QOpenGLFunctions_4_0_Core::glGenTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214e3d20 0xc8214e3dc0] } +&{glGenTransformFeedbacks QOpenGLFunctions_4_0_Core::glGenTransformFeedbacks commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214e3fc0 0xc8214d2060] } +&{glGenVertexArrays QOpenGLFunctions_4_0_Core::glGenVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214d2280 0xc8214d2320] } +&{glGenerateMipmap QOpenGLFunctions_4_0_Core::glGenerateMipmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214d24e0] } +&{glGetActiveAttrib QOpenGLFunctions_4_0_Core::glGetActiveAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214d26e0 0xc8214d27c0 0xc8214d2880 0xc8214d2920 0xc8214d29e0 0xc8214d2a60 0xc8214d2b40] } +&{glGetActiveSubroutineName QOpenGLFunctions_4_0_Core::glGetActiveSubroutineName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214d2d80 0xc8214d2e60 0xc8214d2f00 0xc8214d2fa0 0xc8214d3060 0xc8214d30e0] } +&{glGetActiveSubroutineUniformName QOpenGLFunctions_4_0_Core::glGetActiveSubroutineUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214d3360 0xc8214d33e0 0xc8214d3480 0xc8214d3560 0xc8214d3620 0xc8214d36c0] } +&{glGetActiveSubroutineUniformiv QOpenGLFunctions_4_0_Core::glGetActiveSubroutineUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214d3920 0xc8214d39c0 0xc8214d3a40 0xc8214d3ae0 0xc8214d3be0] } +&{glGetActiveUniform QOpenGLFunctions_4_0_Core::glGetActiveUniform commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214d3de0 0xc8214d3ec0 0xc8214d3f60 0xc8214c4000 0xc8214c40a0 0xc8214c4160 0xc8214c4220] } +&{glGetActiveUniformBlockName QOpenGLFunctions_4_0_Core::glGetActiveUniformBlockName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214c4440 0xc8214c4500 0xc8214c4600 0xc8214c46a0 0xc8214c4780] } +&{glGetActiveUniformBlockiv QOpenGLFunctions_4_0_Core::glGetActiveUniformBlockiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214c49c0 0xc8214c4a60 0xc8214c4b60 0xc8214c4c20] } +&{glGetActiveUniformName QOpenGLFunctions_4_0_Core::glGetActiveUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214c4e40 0xc8214c4f00 0xc8214c4f80 0xc8214c5000 0xc8214c5100] } +&{glGetActiveUniformsiv QOpenGLFunctions_4_0_Core::glGetActiveUniformsiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214c5340 0xc8214c53e0 0xc8214c5480 0xc8214c5500 0xc8214c55c0] } +&{glGetAttachedShaders QOpenGLFunctions_4_0_Core::glGetAttachedShaders commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214c5800 0xc8214c5880 0xc8214c5940 0xc8214c59e0] } +&{glGetAttribLocation QOpenGLFunctions_4_0_Core::glGetAttribLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLint [0xc8214c5c00 0xc8214c5ca0] } +&{glGetBooleani_v QOpenGLFunctions_4_0_Core::glGetBooleani_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214c5e40 0xc8214c5f00 0xc8214c5fa0] } +&{glGetBooleanv QOpenGLFunctions_4_0_Core::glGetBooleanv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214b2160 0xc8214b2220] } +&{glGetBufferParameteri64v QOpenGLFunctions_4_0_Core::glGetBufferParameteri64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214b2460 0xc8214b2500 0xc8214b25a0] } +&{glGetBufferParameteriv QOpenGLFunctions_4_0_Core::glGetBufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214b27e0 0xc8214b2880 0xc8214b2940] } +&{glGetBufferPointerv QOpenGLFunctions_4_0_Core::glGetBufferPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214b2b80 0xc8214b2c00 0xc8214b2cc0] } +&{glGetBufferSubData QOpenGLFunctions_4_0_Core::glGetBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214b2ec0 0xc8214b2fa0 0xc8214b3020 0xc8214b30a0] } +&{glGetCompressedTexImage QOpenGLFunctions_4_0_Core::glGetCompressedTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214b32e0 0xc8214b33a0 0xc8214b3440] } +&{glGetDoublev QOpenGLFunctions_4_0_Core::glGetDoublev commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214b3600 0xc8214b36a0] } +&{glGetError QOpenGLFunctions_4_0_Core::glGetError commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLenum [] } +&{glGetFloatv QOpenGLFunctions_4_0_Core::glGetFloatv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214b3920 0xc8214b39a0] } +&{glGetFragDataIndex QOpenGLFunctions_4_0_Core::glGetFragDataIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLint [0xc8214b3be0 0xc8214b3ca0] } +&{glGetFragDataLocation QOpenGLFunctions_4_0_Core::glGetFragDataLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLint [0xc8214b3ee0 0xc8214b3f80] } +&{glGetFramebufferAttachmentParameteriv QOpenGLFunctions_4_0_Core::glGetFramebufferAttachmentParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214a2100 0xc8214a21a0 0xc8214a2260 0xc8214a2300] } +&{glGetInteger64i_v QOpenGLFunctions_4_0_Core::glGetInteger64i_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214a2540 0xc8214a25e0 0xc8214a2680] } +&{glGetInteger64v QOpenGLFunctions_4_0_Core::glGetInteger64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214a2860 0xc8214a2900] } +&{glGetIntegeri_v QOpenGLFunctions_4_0_Core::glGetIntegeri_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214a2ac0 0xc8214a2b60 0xc8214a2c00] } +&{glGetIntegerv QOpenGLFunctions_4_0_Core::glGetIntegerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214a2dc0 0xc8214a2e60] } +&{glGetMultisamplefv QOpenGLFunctions_4_0_Core::glGetMultisamplefv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214a30a0 0xc8214a3120 0xc8214a31e0] } +&{glGetPointerv QOpenGLFunctions_4_0_Core::glGetPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214a3380 0xc8214a3440] } +&{glGetProgramInfoLog QOpenGLFunctions_4_0_Core::glGetProgramInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214a3640 0xc8214a3700 0xc8214a37a0 0xc8214a3840] } +&{glGetProgramStageiv QOpenGLFunctions_4_0_Core::glGetProgramStageiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214a3a60 0xc8214a3b00 0xc8214a3ba0 0xc8214a3c40] } +&{glGetProgramiv QOpenGLFunctions_4_0_Core::glGetProgramiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214a3e20 0xc8214a3ec0 0xc8214a3f60] } +&{glGetQueryIndexediv QOpenGLFunctions_4_0_Core::glGetQueryIndexediv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821494160 0xc821494220 0xc8214942c0 0xc821494380] } +&{glGetQueryObjecti64v QOpenGLFunctions_4_0_Core::glGetQueryObjecti64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214945a0 0xc821494660 0xc8214946e0] } +&{glGetQueryObjectiv QOpenGLFunctions_4_0_Core::glGetQueryObjectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821494940 0xc8214949e0 0xc821494a60] } +&{glGetQueryObjectui64v QOpenGLFunctions_4_0_Core::glGetQueryObjectui64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821494c80 0xc821494d60 0xc821494de0] } +&{glGetQueryObjectuiv QOpenGLFunctions_4_0_Core::glGetQueryObjectuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821495020 0xc8214950a0 0xc821495180] } +&{glGetQueryiv QOpenGLFunctions_4_0_Core::glGetQueryiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821495340 0xc8214953c0 0xc821495480] } +&{glGetRenderbufferParameteriv QOpenGLFunctions_4_0_Core::glGetRenderbufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821495680 0xc821495740 0xc8214957e0] } +&{glGetSamplerParameterIiv QOpenGLFunctions_4_0_Core::glGetSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821495a20 0xc821495ac0 0xc821495b40] } +&{glGetSamplerParameterIuiv QOpenGLFunctions_4_0_Core::glGetSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821495d80 0xc821495e20 0xc821495ee0] } +&{glGetSamplerParameterfv QOpenGLFunctions_4_0_Core::glGetSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821484140 0xc8214841c0 0xc8214842a0] } +&{glGetSamplerParameteriv QOpenGLFunctions_4_0_Core::glGetSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214844e0 0xc821484580 0xc821484600] } +&{glGetShaderInfoLog QOpenGLFunctions_4_0_Core::glGetShaderInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821484840 0xc821484900 0xc821484980 0xc821484a00] } +&{glGetShaderSource QOpenGLFunctions_4_0_Core::glGetShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821484c60 0xc821484d00 0xc821484d80 0xc821484e20] } +&{glGetShaderiv QOpenGLFunctions_4_0_Core::glGetShaderiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821485000 0xc821485080 0xc821485100] } +&{glGetString QOpenGLFunctions_4_0_Core::glGetString commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false const GLubyte * [0xc8214852e0] } +&{glGetStringi QOpenGLFunctions_4_0_Core::glGetStringi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false const GLubyte * [0xc8214854a0 0xc821485520] } +&{glGetSubroutineIndex QOpenGLFunctions_4_0_Core::glGetSubroutineIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLuint [0xc821485780 0xc821485820 0xc8214858a0] } +&{glGetSubroutineUniformLocation QOpenGLFunctions_4_0_Core::glGetSubroutineUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLint [0xc821485b00 0xc821485ba0 0xc821485c20] } +&{glGetSynciv QOpenGLFunctions_4_0_Core::glGetSynciv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821485de0 0xc821485e60 0xc821485f40 0xc821485fe0 0xc8214700c0] } +&{glGetTexImage QOpenGLFunctions_4_0_Core::glGetTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821470260 0xc8214702e0 0xc821470380 0xc821470440 0xc8214704e0] } +&{glGetTexLevelParameterfv QOpenGLFunctions_4_0_Core::glGetTexLevelParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821470740 0xc8214707c0 0xc821470880 0xc821470900] } +&{glGetTexLevelParameteriv QOpenGLFunctions_4_0_Core::glGetTexLevelParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821470b40 0xc821470bc0 0xc821470c40 0xc821470d00] } +&{glGetTexParameterIiv QOpenGLFunctions_4_0_Core::glGetTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821470f20 0xc821470fe0 0xc821471080] } +&{glGetTexParameterIuiv QOpenGLFunctions_4_0_Core::glGetTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214712c0 0xc821471360 0xc8214713e0] } +&{glGetTexParameterfv QOpenGLFunctions_4_0_Core::glGetTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821471640 0xc8214716e0 0xc821471760] } +&{glGetTexParameteriv QOpenGLFunctions_4_0_Core::glGetTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214719a0 0xc821471a60 0xc821471b00] } +&{glGetTransformFeedbackVarying QOpenGLFunctions_4_0_Core::glGetTransformFeedbackVarying commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821471d20 0xc821471da0 0xc821471e80 0xc821471f00 0xc821471fc0 0xc821462080 0xc821462120] } +&{glGetUniformBlockIndex QOpenGLFunctions_4_0_Core::glGetUniformBlockIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLuint [0xc821462360 0xc821462400] } +&{glGetUniformIndices QOpenGLFunctions_4_0_Core::glGetUniformIndices commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821462640 0xc8214626e0 0xc821462780 0xc8214628c0] } +&{glGetUniformLocation QOpenGLFunctions_4_0_Core::glGetUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLint [0xc821462b00 0xc821462ba0] } +&{glGetUniformSubroutineuiv QOpenGLFunctions_4_0_Core::glGetUniformSubroutineuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821462de0 0xc821462e80 0xc821462f20] } +&{glGetUniformdv QOpenGLFunctions_4_0_Core::glGetUniformdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821463100 0xc8214631a0 0xc821463220] } +&{glGetUniformfv QOpenGLFunctions_4_0_Core::glGetUniformfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821463400 0xc8214634a0 0xc821463520] } +&{glGetUniformiv QOpenGLFunctions_4_0_Core::glGetUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821463700 0xc821463780 0xc821463820] } +&{glGetUniformuiv QOpenGLFunctions_4_0_Core::glGetUniformuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214639e0 0xc821463aa0 0xc821463b20] } +&{glGetVertexAttribIiv QOpenGLFunctions_4_0_Core::glGetVertexAttribIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821463d80 0xc821463e00 0xc821463ec0] } +&{glGetVertexAttribIuiv QOpenGLFunctions_4_0_Core::glGetVertexAttribIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214500e0 0xc821450180 0xc821450200] } +&{glGetVertexAttribPointerv QOpenGLFunctions_4_0_Core::glGetVertexAttribPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821450460 0xc821450500 0xc821450580] } +&{glGetVertexAttribdv QOpenGLFunctions_4_0_Core::glGetVertexAttribdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214507e0 0xc821450860 0xc821450940] } +&{glGetVertexAttribfv QOpenGLFunctions_4_0_Core::glGetVertexAttribfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821450b60 0xc821450c20 0xc821450ce0] } +&{glGetVertexAttribiv QOpenGLFunctions_4_0_Core::glGetVertexAttribiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821450f20 0xc821450fc0 0xc821451040] } +&{glHint QOpenGLFunctions_4_0_Core::glHint commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821451200 0xc8214512a0] } +&{glIndexub QOpenGLFunctions_4_0_Core::glIndexub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214514a0] } +&{glIndexubv QOpenGLFunctions_4_0_Core::glIndexubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821451660] } +&{glIsBuffer QOpenGLFunctions_4_0_Core::glIsBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLboolean [0xc821451800] } +&{glIsEnabled QOpenGLFunctions_4_0_Core::glIsEnabled commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLboolean [0xc821451a00] } +&{glIsEnabledi QOpenGLFunctions_4_0_Core::glIsEnabledi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLboolean [0xc821451ba0 0xc821451c60] } +&{glIsFramebuffer QOpenGLFunctions_4_0_Core::glIsFramebuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLboolean [0xc821451e20] } +&{glIsProgram QOpenGLFunctions_4_0_Core::glIsProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLboolean [0xc821451fc0] } +&{glIsQuery QOpenGLFunctions_4_0_Core::glIsQuery commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLboolean [0xc8214421a0] } +&{glIsRenderbuffer QOpenGLFunctions_4_0_Core::glIsRenderbuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLboolean [0xc821442360] } +&{glIsSampler QOpenGLFunctions_4_0_Core::glIsSampler commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLboolean [0xc821442500] } +&{glIsShader QOpenGLFunctions_4_0_Core::glIsShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLboolean [0xc8214426e0] } +&{glIsSync QOpenGLFunctions_4_0_Core::glIsSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLboolean [0xc8214428e0] } +&{glIsTexture QOpenGLFunctions_4_0_Core::glIsTexture commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLboolean [0xc821442aa0] } +&{glIsTransformFeedback QOpenGLFunctions_4_0_Core::glIsTransformFeedback commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLboolean [0xc821442ca0] } +&{glIsVertexArray QOpenGLFunctions_4_0_Core::glIsVertexArray commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLboolean [0xc821442ea0] } +&{glLineWidth QOpenGLFunctions_4_0_Core::glLineWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214430a0] } +&{glLinkProgram QOpenGLFunctions_4_0_Core::glLinkProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821443240] } +&{glLogicOp QOpenGLFunctions_4_0_Core::glLogicOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821443440] } +&{glMapBuffer QOpenGLFunctions_4_0_Core::glMapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLvoid * [0xc8214435e0 0xc8214436a0] } +&{glMapBufferRange QOpenGLFunctions_4_0_Core::glMapBufferRange commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLvoid * [0xc821443840 0xc821443900 0xc821443980 0xc821443a40] } +&{glMinSampleShading QOpenGLFunctions_4_0_Core::glMinSampleShading commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821443c40] } +&{glMultiDrawArrays QOpenGLFunctions_4_0_Core::glMultiDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821443e80 0xc821443f00 0xc821443fe0 0xc821430080] } +&{glMultiDrawElements QOpenGLFunctions_4_0_Core::glMultiDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214302c0 0xc821430340 0xc8214303e0 0xc8214304e0 0xc8214305e0] } +&{glMultiDrawElementsBaseVertex QOpenGLFunctions_4_0_Core::glMultiDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821430840 0xc8214308c0 0xc821430960 0xc821430a60 0xc821430b80 0xc821430c00] } +&{glMultiTexCoordP1ui QOpenGLFunctions_4_0_Core::glMultiTexCoordP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821430e60 0xc821430ee0 0xc821430fa0] } +&{glMultiTexCoordP1uiv QOpenGLFunctions_4_0_Core::glMultiTexCoordP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214311a0 0xc821431260 0xc821431300] } +&{glMultiTexCoordP2ui QOpenGLFunctions_4_0_Core::glMultiTexCoordP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821431540 0xc8214315c0 0xc821431680] } +&{glMultiTexCoordP2uiv QOpenGLFunctions_4_0_Core::glMultiTexCoordP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214318a0 0xc821431960 0xc821431a00] } +&{glMultiTexCoordP3ui QOpenGLFunctions_4_0_Core::glMultiTexCoordP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821431c40 0xc821431cc0 0xc821431d40] } +&{glMultiTexCoordP3uiv QOpenGLFunctions_4_0_Core::glMultiTexCoordP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821431f80 0xc821422040 0xc8214220e0] } +&{glMultiTexCoordP4ui QOpenGLFunctions_4_0_Core::glMultiTexCoordP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821422320 0xc8214223e0 0xc821422480] } +&{glMultiTexCoordP4uiv QOpenGLFunctions_4_0_Core::glMultiTexCoordP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214226a0 0xc821422740 0xc8214227e0] } +&{glNormalP3ui QOpenGLFunctions_4_0_Core::glNormalP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214229a0 0xc821422a20] } +&{glNormalP3uiv QOpenGLFunctions_4_0_Core::glNormalP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821422c00 0xc821422ca0] } +&{glPatchParameterfv QOpenGLFunctions_4_0_Core::glPatchParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821422ec0 0xc821422f80] } +&{glPatchParameteri QOpenGLFunctions_4_0_Core::glPatchParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214231c0 0xc821423260] } +&{glPauseTransformFeedback QOpenGLFunctions_4_0_Core::glPauseTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [] } +&{glPixelStoref QOpenGLFunctions_4_0_Core::glPixelStoref commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821423560 0xc8214235e0] } +&{glPixelStorei QOpenGLFunctions_4_0_Core::glPixelStorei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214237c0 0xc821423860] } +&{glPointParameterf QOpenGLFunctions_4_0_Core::glPointParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821423aa0 0xc821423b40] } +&{glPointParameterfv QOpenGLFunctions_4_0_Core::glPointParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821423d60 0xc821423e20] } +&{glPointParameteri QOpenGLFunctions_4_0_Core::glPointParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821412060 0xc8214120e0] } +&{glPointParameteriv QOpenGLFunctions_4_0_Core::glPointParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821412320 0xc8214123c0] } +&{glPointSize QOpenGLFunctions_4_0_Core::glPointSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821412580] } +&{glPolygonMode QOpenGLFunctions_4_0_Core::glPolygonMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821412760 0xc821412800] } +&{glPolygonOffset QOpenGLFunctions_4_0_Core::glPolygonOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821412980 0xc821412a40] } +&{glPrimitiveRestartIndex QOpenGLFunctions_4_0_Core::glPrimitiveRestartIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821412c80] } +&{glProvokingVertex QOpenGLFunctions_4_0_Core::glProvokingVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821412ea0] } +&{glQueryCounter QOpenGLFunctions_4_0_Core::glQueryCounter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821413060 0xc8214130e0] } +&{glReadBuffer QOpenGLFunctions_4_0_Core::glReadBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8214132a0] } +&{glReadPixels QOpenGLFunctions_4_0_Core::glReadPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821413460 0xc821413500 0xc8214135e0 0xc821413660 0xc821413740 0xc8214137e0 0xc821413860] } +&{glRenderbufferStorage QOpenGLFunctions_4_0_Core::glRenderbufferStorage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821413aa0 0xc821413b60 0xc821413c00 0xc821413c80] } +&{glRenderbufferStorageMultisample QOpenGLFunctions_4_0_Core::glRenderbufferStorageMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821413ec0 0xc821413f80 0xc8213f0000 0xc8213f00a0 0xc8213f0140] } +&{glResumeTransformFeedback QOpenGLFunctions_4_0_Core::glResumeTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [] } +&{glSampleCoverage QOpenGLFunctions_4_0_Core::glSampleCoverage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213f0480 0xc8213f0540] } +&{glSampleMaski QOpenGLFunctions_4_0_Core::glSampleMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213f06c0 0xc8213f07a0] } +&{glSamplerParameterIiv QOpenGLFunctions_4_0_Core::glSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213f09c0 0xc8213f0a40 0xc8213f0b00] } +&{glSamplerParameterIuiv QOpenGLFunctions_4_0_Core::glSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213f0d40 0xc8213f0de0 0xc8213f0e60] } +&{glSamplerParameterf QOpenGLFunctions_4_0_Core::glSamplerParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213f10a0 0xc8213f1120 0xc8213f11a0] } +&{glSamplerParameterfv QOpenGLFunctions_4_0_Core::glSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213f1400 0xc8213f14a0 0xc8213f1520] } +&{glSamplerParameteri QOpenGLFunctions_4_0_Core::glSamplerParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213f1740 0xc8213f1820 0xc8213f18a0] } +&{glSamplerParameteriv QOpenGLFunctions_4_0_Core::glSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213f1ae0 0xc8213f1ba0 0xc8213f1c40] } +&{glScissor QOpenGLFunctions_4_0_Core::glScissor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213f1de0 0xc8213f1ea0 0xc8213f1f60 0xc8213de020] } +&{glSecondaryColorP3ui QOpenGLFunctions_4_0_Core::glSecondaryColorP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213de220 0xc8213de2c0] } +&{glSecondaryColorP3uiv QOpenGLFunctions_4_0_Core::glSecondaryColorP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213de500 0xc8213de5c0] } +&{glShaderSource QOpenGLFunctions_4_0_Core::glShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213de740 0xc8213de7e0 0xc8213de8c0 0xc8213de9c0] } +&{glStencilFunc QOpenGLFunctions_4_0_Core::glStencilFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213deb60 0xc8213dec00 0xc8213deca0] } +&{glStencilFuncSeparate QOpenGLFunctions_4_0_Core::glStencilFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213deee0 0xc8213def80 0xc8213df000 0xc8213df0a0] } +&{glStencilMask QOpenGLFunctions_4_0_Core::glStencilMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213df2a0] } +&{glStencilMaskSeparate QOpenGLFunctions_4_0_Core::glStencilMaskSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213df4e0 0xc8213df560] } +&{glStencilOp QOpenGLFunctions_4_0_Core::glStencilOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213df740 0xc8213df7e0 0xc8213df880] } +&{glStencilOpSeparate QOpenGLFunctions_4_0_Core::glStencilOpSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213dfac0 0xc8213dfb40 0xc8213dfbc0 0xc8213dfc80] } +&{glTexBuffer QOpenGLFunctions_4_0_Core::glTexBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213dfe00 0xc8213dfec0 0xc8213dff40] } +&{glTexCoordP1ui QOpenGLFunctions_4_0_Core::glTexCoordP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213d2100 0xc8213d21a0] } +&{glTexCoordP1uiv QOpenGLFunctions_4_0_Core::glTexCoordP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213d2380 0xc8213d2420] } +&{glTexCoordP2ui QOpenGLFunctions_4_0_Core::glTexCoordP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213d25e0 0xc8213d2660] } +&{glTexCoordP2uiv QOpenGLFunctions_4_0_Core::glTexCoordP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213d2840 0xc8213d28e0] } +&{glTexCoordP3ui QOpenGLFunctions_4_0_Core::glTexCoordP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213d2aa0 0xc8213d2b40] } +&{glTexCoordP3uiv QOpenGLFunctions_4_0_Core::glTexCoordP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213d2ce0 0xc8213d2d80] } +&{glTexCoordP4ui QOpenGLFunctions_4_0_Core::glTexCoordP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213d2f60 0xc8213d3000] } +&{glTexCoordP4uiv QOpenGLFunctions_4_0_Core::glTexCoordP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213d31a0 0xc8213d3240] } +&{glTexImage1D QOpenGLFunctions_4_0_Core::glTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213d3400 0xc8213d34c0 0xc8213d3560 0xc8213d3600 0xc8213d36c0 0xc8213d3740 0xc8213d37e0 0xc8213d38a0] } +&{glTexImage2D QOpenGLFunctions_4_0_Core::glTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213d3a60 0xc8213d3b00 0xc8213d3bc0 0xc8213d3c60 0xc8213d3d20 0xc8213d3dc0 0xc8213d3e40 0xc8213d3ee0 0xc8213d3fc0] } +&{glTexImage2DMultisample QOpenGLFunctions_4_0_Core::glTexImage2DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213c21e0 0xc8213c2260 0xc8213c22e0 0xc8213c23c0 0xc8213c2460 0xc8213c2540] } +&{glTexImage3D QOpenGLFunctions_4_0_Core::glTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213c2740 0xc8213c2800 0xc8213c28a0 0xc8213c2940 0xc8213c29e0 0xc8213c2aa0 0xc8213c2b60 0xc8213c2be0 0xc8213c2cc0 0xc8213c2d60] } +&{glTexImage3DMultisample QOpenGLFunctions_4_0_Core::glTexImage3DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213c2fa0 0xc8213c3040 0xc8213c30e0 0xc8213c3160 0xc8213c3240 0xc8213c32c0 0xc8213c33a0] } +&{glTexParameterIiv QOpenGLFunctions_4_0_Core::glTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213c3620 0xc8213c36c0 0xc8213c3740] } +&{glTexParameterIuiv QOpenGLFunctions_4_0_Core::glTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213c3980 0xc8213c3a20 0xc8213c3aa0] } +&{glTexParameterf QOpenGLFunctions_4_0_Core::glTexParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213c3c40 0xc8213c3d00 0xc8213c3da0] } +&{glTexParameterfv QOpenGLFunctions_4_0_Core::glTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213c3f60 0xc8213b4000 0xc8213b40a0] } +&{glTexParameteri QOpenGLFunctions_4_0_Core::glTexParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213b4260 0xc8213b4300 0xc8213b4380] } +&{glTexParameteriv QOpenGLFunctions_4_0_Core::glTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213b4540 0xc8213b45e0 0xc8213b46a0] } +&{glTexSubImage1D QOpenGLFunctions_4_0_Core::glTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213b4860 0xc8213b4920 0xc8213b49a0 0xc8213b4a20 0xc8213b4b00 0xc8213b4b80 0xc8213b4c60] } +&{glTexSubImage2D QOpenGLFunctions_4_0_Core::glTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213b4e20 0xc8213b4ec0 0xc8213b4f40 0xc8213b4fe0 0xc8213b50e0 0xc8213b5180 0xc8213b5220 0xc8213b52a0 0xc8213b5360] } +&{glTexSubImage3D QOpenGLFunctions_4_0_Core::glTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213b5540 0xc8213b55e0 0xc8213b5680 0xc8213b5740 0xc8213b5800 0xc8213b58a0 0xc8213b5920 0xc8213b59e0 0xc8213b5ac0 0xc8213b5b60 0xc8213b5be0] } +&{glTransformFeedbackVaryings QOpenGLFunctions_4_0_Core::glTransformFeedbackVaryings commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213b5e40 0xc8213b5ec0 0xc8213b5f80 0xc8213a0080] } +&{glUniform1d QOpenGLFunctions_4_0_Core::glUniform1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213a0220 0xc8213a02c0] } +&{glUniform1dv QOpenGLFunctions_4_0_Core::glUniform1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213a0440 0xc8213a04e0 0xc8213a0580] } +&{glUniform1f QOpenGLFunctions_4_0_Core::glUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213a0720 0xc8213a07c0] } +&{glUniform1fv QOpenGLFunctions_4_0_Core::glUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213a0960 0xc8213a0a20 0xc8213a0ac0] } +&{glUniform1i QOpenGLFunctions_4_0_Core::glUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213a0ca0 0xc8213a0d20] } +&{glUniform1iv QOpenGLFunctions_4_0_Core::glUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213a0ee0 0xc8213a0f60 0xc8213a1000] } +&{glUniform1ui QOpenGLFunctions_4_0_Core::glUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213a11c0 0xc8213a12a0] } +&{glUniform1uiv QOpenGLFunctions_4_0_Core::glUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213a1420 0xc8213a1500 0xc8213a1580] } +&{glUniform2d QOpenGLFunctions_4_0_Core::glUniform2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213a1760 0xc8213a17e0 0xc8213a1860] } +&{glUniform2dv QOpenGLFunctions_4_0_Core::glUniform2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213a1a40 0xc8213a1ae0 0xc8213a1b80] } +&{glUniform2f QOpenGLFunctions_4_0_Core::glUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213a1d40 0xc8213a1e00 0xc8213a1e80] } +&{glUniform2fv QOpenGLFunctions_4_0_Core::glUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821390060 0xc8213900e0 0xc821390160] } +&{glUniform2i QOpenGLFunctions_4_0_Core::glUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821390360 0xc821390400 0xc821390480] } +&{glUniform2iv QOpenGLFunctions_4_0_Core::glUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821390640 0xc821390700 0xc821390780] } +&{glUniform2ui QOpenGLFunctions_4_0_Core::glUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821390940 0xc8213909c0 0xc821390a80] } +&{glUniform2uiv QOpenGLFunctions_4_0_Core::glUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821390c40 0xc821390cc0 0xc821390d80] } +&{glUniform3d QOpenGLFunctions_4_0_Core::glUniform3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821390f40 0xc821390fc0 0xc821391040 0xc821391100] } +&{glUniform3dv QOpenGLFunctions_4_0_Core::glUniform3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213912c0 0xc821391360 0xc8213913e0] } +&{glUniform3f QOpenGLFunctions_4_0_Core::glUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213915c0 0xc821391660 0xc821391700 0xc821391780] } +&{glUniform3fv QOpenGLFunctions_4_0_Core::glUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821391920 0xc821391a00 0xc821391aa0] } +&{glUniform3i QOpenGLFunctions_4_0_Core::glUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821391c40 0xc821391cc0 0xc821391d80 0xc821391e40] } +&{glUniform3iv QOpenGLFunctions_4_0_Core::glUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821391fe0 0xc82137c060 0xc82137c0e0] } +&{glUniform3ui QOpenGLFunctions_4_0_Core::glUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82137c2c0 0xc82137c340 0xc82137c400 0xc82137c4a0] } +&{glUniform3uiv QOpenGLFunctions_4_0_Core::glUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82137c660 0xc82137c6e0 0xc82137c780] } +&{glUniform4d QOpenGLFunctions_4_0_Core::glUniform4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82137c940 0xc82137ca20 0xc82137cac0 0xc82137cb40 0xc82137cc00] } +&{glUniform4dv QOpenGLFunctions_4_0_Core::glUniform4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82137cdc0 0xc82137ce60 0xc82137cf20] } +&{glUniform4f QOpenGLFunctions_4_0_Core::glUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82137d0e0 0xc82137d160 0xc82137d200 0xc82137d2c0 0xc82137d380] } +&{glUniform4fv QOpenGLFunctions_4_0_Core::glUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82137d560 0xc82137d5e0 0xc82137d680] } +&{glUniform4i QOpenGLFunctions_4_0_Core::glUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82137d840 0xc82137d8e0 0xc82137d980 0xc82137da00 0xc82137dae0] } +&{glUniform4iv QOpenGLFunctions_4_0_Core::glUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82137dca0 0xc82137dd40 0xc82137dde0] } +&{glUniform4ui QOpenGLFunctions_4_0_Core::glUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82137dfa0 0xc82136e040 0xc82136e0c0 0xc82136e1a0 0xc82136e260] } +&{glUniform4uiv QOpenGLFunctions_4_0_Core::glUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82136e440 0xc82136e4c0 0xc82136e540] } +&{glUniformBlockBinding QOpenGLFunctions_4_0_Core::glUniformBlockBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82136e780 0xc82136e880 0xc82136e980] } +&{glUniformMatrix2dv QOpenGLFunctions_4_0_Core::glUniformMatrix2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82136ec00 0xc82136ece0 0xc82136ed80 0xc82136ee20] } +&{glUniformMatrix2fv QOpenGLFunctions_4_0_Core::glUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82136f060 0xc82136f0e0 0xc82136f1c0 0xc82136f260] } +&{glUniformMatrix2x3dv QOpenGLFunctions_4_0_Core::glUniformMatrix2x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82136f4a0 0xc82136f540 0xc82136f5c0 0xc82136f660] } +&{glUniformMatrix2x3fv QOpenGLFunctions_4_0_Core::glUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82136f8c0 0xc82136f940 0xc82136fa20 0xc82136fac0] } +&{glUniformMatrix2x4dv QOpenGLFunctions_4_0_Core::glUniformMatrix2x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82136fd00 0xc82136fdc0 0xc82136fe40 0xc82136fec0] } +&{glUniformMatrix2x4fv QOpenGLFunctions_4_0_Core::glUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82135e160 0xc82135e1e0 0xc82135e2c0 0xc82135e360] } +&{glUniformMatrix3dv QOpenGLFunctions_4_0_Core::glUniformMatrix3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82135e5a0 0xc82135e620 0xc82135e6c0 0xc82135e780] } +&{glUniformMatrix3fv QOpenGLFunctions_4_0_Core::glUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82135e9a0 0xc82135ea40 0xc82135eae0 0xc82135eb80] } +&{glUniformMatrix3x2dv QOpenGLFunctions_4_0_Core::glUniformMatrix3x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82135edc0 0xc82135ee40 0xc82135eee0 0xc82135ef80] } +&{glUniformMatrix3x2fv QOpenGLFunctions_4_0_Core::glUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82135f1a0 0xc82135f240 0xc82135f300 0xc82135f3a0] } +&{glUniformMatrix3x4dv QOpenGLFunctions_4_0_Core::glUniformMatrix3x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82135f5e0 0xc82135f660 0xc82135f700 0xc82135f7a0] } +&{glUniformMatrix3x4fv QOpenGLFunctions_4_0_Core::glUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82135f9c0 0xc82135fa60 0xc82135fb40 0xc82135fbc0] } +&{glUniformMatrix4dv QOpenGLFunctions_4_0_Core::glUniformMatrix4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82135fe00 0xc82135fe80 0xc82135ff60 0xc821350020] } +&{glUniformMatrix4fv QOpenGLFunctions_4_0_Core::glUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821350240 0xc8213502e0 0xc821350360 0xc821350440] } +&{glUniformMatrix4x2dv QOpenGLFunctions_4_0_Core::glUniformMatrix4x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821350660 0xc821350720 0xc8213507c0 0xc821350840] } +&{glUniformMatrix4x2fv QOpenGLFunctions_4_0_Core::glUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821350a80 0xc821350b40 0xc821350be0 0xc821350c80] } +&{glUniformMatrix4x3dv QOpenGLFunctions_4_0_Core::glUniformMatrix4x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821350ec0 0xc821350f60 0xc821350fe0 0xc8213510a0] } +&{glUniformMatrix4x3fv QOpenGLFunctions_4_0_Core::glUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213512c0 0xc8213513a0 0xc821351440 0xc8213514c0] } +&{glUniformSubroutinesuiv QOpenGLFunctions_4_0_Core::glUniformSubroutinesuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821351700 0xc8213517a0 0xc821351860] } +&{glUnmapBuffer QOpenGLFunctions_4_0_Core::glUnmapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false GLboolean [0xc821351a00] } +&{glUseProgram QOpenGLFunctions_4_0_Core::glUseProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821351bc0] } +&{glValidateProgram QOpenGLFunctions_4_0_Core::glValidateProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821351e20] } +&{glVertexAttribDivisor QOpenGLFunctions_4_0_Core::glVertexAttribDivisor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821340020 0xc8213400a0] } +&{glVertexAttribIPointer QOpenGLFunctions_4_0_Core::glVertexAttribIPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821340300 0xc8213403a0 0xc821340460 0xc8213404e0 0xc821340580] } +&{glVertexAttribP1ui QOpenGLFunctions_4_0_Core::glVertexAttribP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc8213407e0 0xc8213408a0 0xc821340940 0xc8213409c0] } +&{glVertexAttribP1uiv QOpenGLFunctions_4_0_Core::glVertexAttribP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821340c00 0xc821340ca0 0xc821340d20 0xc821340dc0] } +&{glVertexAttribP2ui QOpenGLFunctions_4_0_Core::glVertexAttribP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821341020 0xc8213410c0 0xc821341140 0xc8213411e0] } +&{glVertexAttribP2uiv QOpenGLFunctions_4_0_Core::glVertexAttribP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821341440 0xc8213414e0 0xc821341560 0xc821341600] } +&{glVertexAttribP3ui QOpenGLFunctions_4_0_Core::glVertexAttribP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821341860 0xc821341900 0xc8213419a0 0xc821341a20] } +&{glVertexAttribP3uiv QOpenGLFunctions_4_0_Core::glVertexAttribP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc821341c60 0xc821341d20 0xc821341de0 0xc821341e60] } +&{glVertexAttribP4ui QOpenGLFunctions_4_0_Core::glVertexAttribP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82132c080 0xc82132c120 0xc82132c1e0 0xc82132c280] } +&{glVertexAttribP4uiv QOpenGLFunctions_4_0_Core::glVertexAttribP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82132c480 0xc82132c560 0xc82132c600 0xc82132c680] } +&{glVertexAttribPointer QOpenGLFunctions_4_0_Core::glVertexAttribPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82132c8a0 0xc82132c980 0xc82132ca20 0xc82132caa0 0xc82132cb80 0xc82132cc00] } +&{glVertexP2ui QOpenGLFunctions_4_0_Core::glVertexP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82132cde0 0xc82132ce80] } +&{glVertexP2uiv QOpenGLFunctions_4_0_Core::glVertexP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82132d020 0xc82132d0c0] } +&{glVertexP3ui QOpenGLFunctions_4_0_Core::glVertexP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82132d2a0 0xc82132d320] } +&{glVertexP3uiv QOpenGLFunctions_4_0_Core::glVertexP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82132d4c0 0xc82132d5a0] } +&{glVertexP4ui QOpenGLFunctions_4_0_Core::glVertexP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82132d740 0xc82132d800] } +&{glVertexP4uiv QOpenGLFunctions_4_0_Core::glVertexP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82132d9c0 0xc82132da60] } +&{glViewport QOpenGLFunctions_4_0_Core::glViewport commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82132dc00 0xc82132dcc0 0xc82132dd40 0xc82132dde0] } +&{glWaitSync QOpenGLFunctions_4_0_Core::glWaitSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_0_core.h non plain false false void [0xc82132dfe0 0xc82131c0a0 0xc82131c120] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions_4_1_Compatibility.txt b/internal/binding/dump/QtGui/QOpenGLFunctions_4_1_Compatibility.txt new file mode 100755 index 00000000..a0f60b73 --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions_4_1_Compatibility.txt @@ -0,0 +1,895 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions_4_1_Compatibility QOpenGLFunctions_4_1_Compatibility::QOpenGLFunctions_4_1_Compatibility commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.cpp non constructor false false [] } +&{initializeOpenGLFunctions QOpenGLFunctions_4_1_Compatibility::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.cpp impure plain false false bool [] } +&{~QOpenGLFunctions_4_1_Compatibility QOpenGLFunctions_4_1_Compatibility::~QOpenGLFunctions_4_1_Compatibility commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.cpp non destructor false false [] } +&{glAccum QOpenGLFunctions_4_1_Compatibility::glAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82131c9a0 0xc82131ca60] } +&{glActiveShaderProgram QOpenGLFunctions_4_1_Compatibility::glActiveShaderProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82131cc60 0xc82131cd20] } +&{glActiveTexture QOpenGLFunctions_4_1_Compatibility::glActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82131ce80] } +&{glAlphaFunc QOpenGLFunctions_4_1_Compatibility::glAlphaFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82131d080 0xc82131d120] } +&{glAreTexturesResident QOpenGLFunctions_4_1_Compatibility::glAreTexturesResident commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLboolean [0xc82131d340 0xc82131d3e0 0xc82131d480] } +&{glArrayElement QOpenGLFunctions_4_1_Compatibility::glArrayElement commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82131d620] } +&{glAttachShader QOpenGLFunctions_4_1_Compatibility::glAttachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82131d7a0 0xc82131d840] } +&{glBegin QOpenGLFunctions_4_1_Compatibility::glBegin commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82131da00] } +&{glBeginConditionalRender QOpenGLFunctions_4_1_Compatibility::glBeginConditionalRender commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82131dc40 0xc82131dcc0] } +&{glBeginQuery QOpenGLFunctions_4_1_Compatibility::glBeginQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82131de80 0xc82131df00] } +&{glBeginQueryIndexed QOpenGLFunctions_4_1_Compatibility::glBeginQueryIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8213080e0 0xc8213081a0 0xc821308260] } +&{glBeginTransformFeedback QOpenGLFunctions_4_1_Compatibility::glBeginTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821308480] } +&{glBindAttribLocation QOpenGLFunctions_4_1_Compatibility::glBindAttribLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821308660 0xc821308720 0xc8213087c0] } +&{glBindBuffer QOpenGLFunctions_4_1_Compatibility::glBindBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821308940 0xc8213089c0] } +&{glBindBufferBase QOpenGLFunctions_4_1_Compatibility::glBindBufferBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821308b80 0xc821308c00 0xc821308ca0] } +&{glBindBufferRange QOpenGLFunctions_4_1_Compatibility::glBindBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821308ec0 0xc821308f40 0xc821309000 0xc8213090a0 0xc821309160] } +&{glBindFragDataLocation QOpenGLFunctions_4_1_Compatibility::glBindFragDataLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821309360 0xc821309400 0xc8213094a0] } +&{glBindFragDataLocationIndexed QOpenGLFunctions_4_1_Compatibility::glBindFragDataLocationIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8213096a0 0xc821309740 0xc8213097c0 0xc8213098a0] } +&{glBindFramebuffer QOpenGLFunctions_4_1_Compatibility::glBindFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821309aa0 0xc821309b20] } +&{glBindProgramPipeline QOpenGLFunctions_4_1_Compatibility::glBindProgramPipeline commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821309d80] } +&{glBindRenderbuffer QOpenGLFunctions_4_1_Compatibility::glBindRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821309fa0 0xc8212fa040] } +&{glBindSampler QOpenGLFunctions_4_1_Compatibility::glBindSampler commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212fa1a0 0xc8212fa280] } +&{glBindTexture QOpenGLFunctions_4_1_Compatibility::glBindTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212fa3e0 0xc8212fa4a0] } +&{glBindTransformFeedback QOpenGLFunctions_4_1_Compatibility::glBindTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212fa6c0 0xc8212fa760] } +&{glBindVertexArray QOpenGLFunctions_4_1_Compatibility::glBindVertexArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212fa960] } +&{glBitmap QOpenGLFunctions_4_1_Compatibility::glBitmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212fab00 0xc8212faba0 0xc8212fac40 0xc8212facc0 0xc8212fada0 0xc8212fae60 0xc8212faee0] } +&{glBlendColor QOpenGLFunctions_4_1_Compatibility::glBlendColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212fb080 0xc8212fb120 0xc8212fb1a0 0xc8212fb260] } +&{glBlendEquation QOpenGLFunctions_4_1_Compatibility::glBlendEquation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212fb400] } +&{glBlendEquationSeparate QOpenGLFunctions_4_1_Compatibility::glBlendEquationSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212fb620 0xc8212fb6e0] } +&{glBlendEquationSeparatei QOpenGLFunctions_4_1_Compatibility::glBlendEquationSeparatei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212fb8e0 0xc8212fb960 0xc8212fba40] } +&{glBlendEquationi QOpenGLFunctions_4_1_Compatibility::glBlendEquationi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212fbba0 0xc8212fbc60] } +&{glBlendFunc QOpenGLFunctions_4_1_Compatibility::glBlendFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212fbe00 0xc8212fbe80] } +&{glBlendFuncSeparate QOpenGLFunctions_4_1_Compatibility::glBlendFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212ec100 0xc8212ec1a0 0xc8212ec220 0xc8212ec2c0] } +&{glBlendFuncSeparatei QOpenGLFunctions_4_1_Compatibility::glBlendFuncSeparatei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212ec4e0 0xc8212ec580 0xc8212ec620 0xc8212ec6a0 0xc8212ec760] } +&{glBlendFunci QOpenGLFunctions_4_1_Compatibility::glBlendFunci commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212ec900 0xc8212ec9a0 0xc8212eca60] } +&{glBlitFramebuffer QOpenGLFunctions_4_1_Compatibility::glBlitFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212ecc40 0xc8212ecce0 0xc8212ecd80 0xc8212ece20 0xc8212ecf00 0xc8212ecfa0 0xc8212ed040 0xc8212ed0e0 0xc8212ed1c0 0xc8212ed260] } +&{glBufferData QOpenGLFunctions_4_1_Compatibility::glBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212ed400 0xc8212ed4a0 0xc8212ed560 0xc8212ed600] } +&{glBufferSubData QOpenGLFunctions_4_1_Compatibility::glBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212ed7a0 0xc8212ed840 0xc8212ed8c0 0xc8212ed980] } +&{glCallList QOpenGLFunctions_4_1_Compatibility::glCallList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212edb20] } +&{glCallLists QOpenGLFunctions_4_1_Compatibility::glCallLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212edcc0 0xc8212edd40 0xc8212ede00] } +&{glCheckFramebufferStatus QOpenGLFunctions_4_1_Compatibility::glCheckFramebufferStatus commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLenum [0xc8212cc000] } +&{glClampColor QOpenGLFunctions_4_1_Compatibility::glClampColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212cc1a0 0xc8212cc220] } +&{glClear QOpenGLFunctions_4_1_Compatibility::glClear commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212cc3c0] } +&{glClearAccum QOpenGLFunctions_4_1_Compatibility::glClearAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212cc5a0 0xc8212cc640 0xc8212cc6c0 0xc8212cc760] } +&{glClearBufferfi QOpenGLFunctions_4_1_Compatibility::glClearBufferfi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212cc920 0xc8212cc9a0 0xc8212cca40 0xc8212ccb20] } +&{glClearBufferfv QOpenGLFunctions_4_1_Compatibility::glClearBufferfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212ccc80 0xc8212ccd60 0xc8212cce00] } +&{glClearBufferiv QOpenGLFunctions_4_1_Compatibility::glClearBufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212ccf60 0xc8212cd040 0xc8212cd0e0] } +&{glClearBufferuiv QOpenGLFunctions_4_1_Compatibility::glClearBufferuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212cd260 0xc8212cd320 0xc8212cd3e0] } +&{glClearColor QOpenGLFunctions_4_1_Compatibility::glClearColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212cd540 0xc8212cd620 0xc8212cd6c0 0xc8212cd740] } +&{glClearDepth QOpenGLFunctions_4_1_Compatibility::glClearDepth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212cd900] } +&{glClearDepthf QOpenGLFunctions_4_1_Compatibility::glClearDepthf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212cdaa0] } +&{glClearIndex QOpenGLFunctions_4_1_Compatibility::glClearIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212cdc80] } +&{glClearStencil QOpenGLFunctions_4_1_Compatibility::glClearStencil commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212cde60] } +&{glClientActiveTexture QOpenGLFunctions_4_1_Compatibility::glClientActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212b4020] } +&{glClientWaitSync QOpenGLFunctions_4_1_Compatibility::glClientWaitSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLenum [0xc8212b41c0 0xc8212b4240 0xc8212b4300] } +&{glClipPlane QOpenGLFunctions_4_1_Compatibility::glClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212b44a0 0xc8212b4540] } +&{glColor3b QOpenGLFunctions_4_1_Compatibility::glColor3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212b46c0 0xc8212b4740 0xc8212b4800] } +&{glColor3bv QOpenGLFunctions_4_1_Compatibility::glColor3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212b49a0] } +&{glColor3d QOpenGLFunctions_4_1_Compatibility::glColor3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212b4b20 0xc8212b4be0 0xc8212b4ca0] } +&{glColor3dv QOpenGLFunctions_4_1_Compatibility::glColor3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212b4e40] } +&{glColor3f QOpenGLFunctions_4_1_Compatibility::glColor3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212b4fe0 0xc8212b5080 0xc8212b5100] } +&{glColor3fv QOpenGLFunctions_4_1_Compatibility::glColor3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212b5280] } +&{glColor3i QOpenGLFunctions_4_1_Compatibility::glColor3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212b5440 0xc8212b54e0 0xc8212b5560] } +&{glColor3iv QOpenGLFunctions_4_1_Compatibility::glColor3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212b5700] } +&{glColor3s QOpenGLFunctions_4_1_Compatibility::glColor3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212b58e0 0xc8212b5960 0xc8212b59e0] } +&{glColor3sv QOpenGLFunctions_4_1_Compatibility::glColor3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212b5ba0] } +&{glColor3ub QOpenGLFunctions_4_1_Compatibility::glColor3ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212b5d40 0xc8212b5dc0 0xc8212b5e80] } +&{glColor3ubv QOpenGLFunctions_4_1_Compatibility::glColor3ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212a4000] } +&{glColor3ui QOpenGLFunctions_4_1_Compatibility::glColor3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212a4180 0xc8212a4200 0xc8212a42c0] } +&{glColor3uiv QOpenGLFunctions_4_1_Compatibility::glColor3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212a4460] } +&{glColor3us QOpenGLFunctions_4_1_Compatibility::glColor3us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212a4600 0xc8212a46a0 0xc8212a4740] } +&{glColor3usv QOpenGLFunctions_4_1_Compatibility::glColor3usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212a48e0] } +&{glColor4b QOpenGLFunctions_4_1_Compatibility::glColor4b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212a4a80 0xc8212a4b00 0xc8212a4bc0 0xc8212a4c40] } +&{glColor4bv QOpenGLFunctions_4_1_Compatibility::glColor4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212a4de0] } +&{glColor4d QOpenGLFunctions_4_1_Compatibility::glColor4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212a4f60 0xc8212a5020 0xc8212a50a0 0xc8212a5120] } +&{glColor4dv QOpenGLFunctions_4_1_Compatibility::glColor4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212a52e0] } +&{glColor4f QOpenGLFunctions_4_1_Compatibility::glColor4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212a5460 0xc8212a54e0 0xc8212a5560 0xc8212a5620] } +&{glColor4fv QOpenGLFunctions_4_1_Compatibility::glColor4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212a57c0] } +&{glColor4i QOpenGLFunctions_4_1_Compatibility::glColor4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212a5940 0xc8212a59c0 0xc8212a5a80 0xc8212a5b20] } +&{glColor4iv QOpenGLFunctions_4_1_Compatibility::glColor4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212a5cc0] } +&{glColor4s QOpenGLFunctions_4_1_Compatibility::glColor4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212a5e60 0xc8212a5ee0 0xc8212a5fa0 0xc821292060] } +&{glColor4sv QOpenGLFunctions_4_1_Compatibility::glColor4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212921e0] } +&{glColor4ub QOpenGLFunctions_4_1_Compatibility::glColor4ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821292380 0xc821292400 0xc8212924e0 0xc821292580] } +&{glColor4ubv QOpenGLFunctions_4_1_Compatibility::glColor4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821292700] } +&{glColor4ui QOpenGLFunctions_4_1_Compatibility::glColor4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821292880 0xc821292960 0xc821292a00 0xc821292aa0] } +&{glColor4uiv QOpenGLFunctions_4_1_Compatibility::glColor4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821292c40] } +&{glColor4us QOpenGLFunctions_4_1_Compatibility::glColor4us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821292de0 0xc821292e80 0xc821292f40 0xc821292fc0] } +&{glColor4usv QOpenGLFunctions_4_1_Compatibility::glColor4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821293160] } +&{glColorMask QOpenGLFunctions_4_1_Compatibility::glColorMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212932e0 0xc821293380 0xc821293420 0xc8212934c0] } +&{glColorMaski QOpenGLFunctions_4_1_Compatibility::glColorMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821293680 0xc821293700 0xc821293780 0xc821293840 0xc8212938e0] } +&{glColorMaterial QOpenGLFunctions_4_1_Compatibility::glColorMaterial commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821293ac0 0xc821293b60] } +&{glColorP3ui QOpenGLFunctions_4_1_Compatibility::glColorP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821293ce0 0xc821293da0] } +&{glColorP3uiv QOpenGLFunctions_4_1_Compatibility::glColorP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821293f00 0xc821293fe0] } +&{glColorP4ui QOpenGLFunctions_4_1_Compatibility::glColorP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212841a0 0xc821284240] } +&{glColorP4uiv QOpenGLFunctions_4_1_Compatibility::glColorP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212843e0 0xc821284480] } +&{glColorPointer QOpenGLFunctions_4_1_Compatibility::glColorPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821284600 0xc8212846c0 0xc821284780 0xc821284820] } +&{glColorSubTable QOpenGLFunctions_4_1_Compatibility::glColorSubTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212849c0 0xc821284a60 0xc821284b00 0xc821284b80 0xc821284c80 0xc821284d00] } +&{glColorTable QOpenGLFunctions_4_1_Compatibility::glColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821284ec0 0xc821284f60 0xc821284fe0 0xc821285080 0xc821285160 0xc8212851e0] } +&{glColorTableParameterfv QOpenGLFunctions_4_1_Compatibility::glColorTableParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821285420 0xc8212854a0 0xc821285580] } +&{glColorTableParameteriv QOpenGLFunctions_4_1_Compatibility::glColorTableParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821285780 0xc821285840 0xc8212858c0] } +&{glCompileShader QOpenGLFunctions_4_1_Compatibility::glCompileShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821285a60] } +&{glCompressedTexImage1D QOpenGLFunctions_4_1_Compatibility::glCompressedTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821285c80 0xc821285d20 0xc821285da0 0xc821285e80 0xc821285f20 0xc821285fc0 0xc821274040] } +&{glCompressedTexImage2D QOpenGLFunctions_4_1_Compatibility::glCompressedTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821274260 0xc821274300 0xc8212743c0 0xc821274440 0xc821274500 0xc8212745c0 0xc821274660 0xc8212746e0] } +&{glCompressedTexImage3D QOpenGLFunctions_4_1_Compatibility::glCompressedTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821274940 0xc8212749c0 0xc821274a40 0xc821274b20 0xc821274be0 0xc821274c60 0xc821274d20 0xc821274da0 0xc821274e60] } +&{glCompressedTexSubImage1D QOpenGLFunctions_4_1_Compatibility::glCompressedTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212750a0 0xc821275120 0xc8212751c0 0xc821275280 0xc821275340 0xc8212753e0 0xc821275480] } +&{glCompressedTexSubImage2D QOpenGLFunctions_4_1_Compatibility::glCompressedTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821275660 0xc821275720 0xc8212757a0 0xc821275840 0xc821275940 0xc8212759e0 0xc821275a80 0xc821275b00 0xc821275c00] } +&{glCompressedTexSubImage3D QOpenGLFunctions_4_1_Compatibility::glCompressedTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821275e00 0xc821275ec0 0xc821275f60 0xc821275fe0 0xc8212640a0 0xc821264160 0xc8212641e0 0xc821264260 0xc821264340 0xc8212643c0 0xc8212644a0] } +&{glConvolutionFilter1D QOpenGLFunctions_4_1_Compatibility::glConvolutionFilter1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821264680 0xc821264740 0xc8212647c0 0xc821264880 0xc821264960 0xc821264a00] } +&{glConvolutionFilter2D QOpenGLFunctions_4_1_Compatibility::glConvolutionFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821264be0 0xc821264ca0 0xc821264d40 0xc821264de0 0xc821264ea0 0xc821264f20 0xc821264fe0] } +&{glConvolutionParameterf QOpenGLFunctions_4_1_Compatibility::glConvolutionParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212651c0 0xc821265260 0xc821265300] } +&{glConvolutionParameterfv QOpenGLFunctions_4_1_Compatibility::glConvolutionParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821265520 0xc8212655c0 0xc821265640] } +&{glConvolutionParameteri QOpenGLFunctions_4_1_Compatibility::glConvolutionParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821265880 0xc821265920 0xc8212659a0] } +&{glConvolutionParameteriv QOpenGLFunctions_4_1_Compatibility::glConvolutionParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821265bc0 0xc821265c60 0xc821265d40] } +&{glCopyBufferSubData QOpenGLFunctions_4_1_Compatibility::glCopyBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821265f20 0xc821252000 0xc821252080 0xc821252100 0xc8212521a0] } +&{glCopyColorSubTable QOpenGLFunctions_4_1_Compatibility::glCopyColorSubTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212523e0 0xc821252480 0xc821252500 0xc8212525c0 0xc821252660] } +&{glCopyColorTable QOpenGLFunctions_4_1_Compatibility::glCopyColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821252800 0xc821252880 0xc821252940 0xc8212529c0 0xc821252aa0] } +&{glCopyConvolutionFilter1D QOpenGLFunctions_4_1_Compatibility::glCopyConvolutionFilter1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821252ca0 0xc821252d20 0xc821252de0 0xc821252e80 0xc821252f20] } +&{glCopyConvolutionFilter2D QOpenGLFunctions_4_1_Compatibility::glCopyConvolutionFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821253160 0xc821253200 0xc821253280 0xc821253340 0xc8212533e0 0xc8212534a0] } +&{glCopyPixels QOpenGLFunctions_4_1_Compatibility::glCopyPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821253620 0xc8212536a0 0xc821253760 0xc8212537e0 0xc8212538e0] } +&{glCopyTexImage1D QOpenGLFunctions_4_1_Compatibility::glCopyTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821253a40 0xc821253b00 0xc821253b80 0xc821253c40 0xc821253d20 0xc821253da0 0xc821253e20] } +&{glCopyTexImage2D QOpenGLFunctions_4_1_Compatibility::glCopyTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821253fe0 0xc82123c080 0xc82123c140 0xc82123c1c0 0xc82123c2c0 0xc82123c360 0xc82123c420 0xc82123c4a0] } +&{glCopyTexSubImage1D QOpenGLFunctions_4_1_Compatibility::glCopyTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82123c6a0 0xc82123c7a0 0xc82123c840 0xc82123c8e0 0xc82123c9a0 0xc82123ca20] } +&{glCopyTexSubImage2D QOpenGLFunctions_4_1_Compatibility::glCopyTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82123cc60 0xc82123cd00 0xc82123cdc0 0xc82123ce40 0xc82123cf20 0xc82123cfa0 0xc82123d020 0xc82123d100] } +&{glCopyTexSubImage3D QOpenGLFunctions_4_1_Compatibility::glCopyTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82123d320 0xc82123d3e0 0xc82123d460 0xc82123d520 0xc82123d5e0 0xc82123d6a0 0xc82123d720 0xc82123d7a0 0xc82123d8a0] } +&{glCreateProgram QOpenGLFunctions_4_1_Compatibility::glCreateProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLuint [] } +&{glCreateShader QOpenGLFunctions_4_1_Compatibility::glCreateShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLuint [0xc82123dae0] } +&{glCreateShaderProgramv QOpenGLFunctions_4_1_Compatibility::glCreateShaderProgramv commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLuint [0xc82123dce0 0xc82123dd60 0xc82123de40] } +&{glCullFace QOpenGLFunctions_4_1_Compatibility::glCullFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82122e060] } +&{glDeleteBuffers QOpenGLFunctions_4_1_Compatibility::glDeleteBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82122e1c0 0xc82122e240] } +&{glDeleteFramebuffers QOpenGLFunctions_4_1_Compatibility::glDeleteFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82122e460 0xc82122e4e0] } +&{glDeleteLists QOpenGLFunctions_4_1_Compatibility::glDeleteLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82122e6a0 0xc82122e740] } +&{glDeleteProgram QOpenGLFunctions_4_1_Compatibility::glDeleteProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82122e8a0] } +&{glDeleteProgramPipelines QOpenGLFunctions_4_1_Compatibility::glDeleteProgramPipelines commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82122eae0 0xc82122eb80] } +&{glDeleteQueries QOpenGLFunctions_4_1_Compatibility::glDeleteQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82122ed00 0xc82122ed80] } +&{glDeleteRenderbuffers QOpenGLFunctions_4_1_Compatibility::glDeleteRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82122efa0 0xc82122f020] } +&{glDeleteSamplers QOpenGLFunctions_4_1_Compatibility::glDeleteSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82122f1e0 0xc82122f280] } +&{glDeleteShader QOpenGLFunctions_4_1_Compatibility::glDeleteShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82122f400] } +&{glDeleteSync QOpenGLFunctions_4_1_Compatibility::glDeleteSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82122f5a0] } +&{glDeleteTextures QOpenGLFunctions_4_1_Compatibility::glDeleteTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82122f760 0xc82122f800] } +&{glDeleteTransformFeedbacks QOpenGLFunctions_4_1_Compatibility::glDeleteTransformFeedbacks commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82122f9e0 0xc82122faa0] } +&{glDeleteVertexArrays QOpenGLFunctions_4_1_Compatibility::glDeleteVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82122fca0 0xc82122fd60] } +&{glDepthFunc QOpenGLFunctions_4_1_Compatibility::glDepthFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82122ff20] } +&{glDepthMask QOpenGLFunctions_4_1_Compatibility::glDepthMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821216120] } +&{glDepthRange QOpenGLFunctions_4_1_Compatibility::glDepthRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821216300 0xc821216400] } +&{glDepthRangeArrayv QOpenGLFunctions_4_1_Compatibility::glDepthRangeArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821216680 0xc821216720 0xc821216800] } +&{glDepthRangeIndexed QOpenGLFunctions_4_1_Compatibility::glDepthRangeIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821216a80 0xc821216ba0 0xc821216c40] } +&{glDepthRangef QOpenGLFunctions_4_1_Compatibility::glDepthRangef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821216e20 0xc821216f40] } +&{glDetachShader QOpenGLFunctions_4_1_Compatibility::glDetachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821217120 0xc8212171c0] } +&{glDisable QOpenGLFunctions_4_1_Compatibility::glDisable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821217440] } +&{glDisableClientState QOpenGLFunctions_4_1_Compatibility::glDisableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212176c0] } +&{glDisableVertexAttribArray QOpenGLFunctions_4_1_Compatibility::glDisableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821217980] } +&{glDisablei QOpenGLFunctions_4_1_Compatibility::glDisablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821217b80 0xc821217c20] } +&{glDrawArrays QOpenGLFunctions_4_1_Compatibility::glDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821217e20 0xc821217ea0 0xc821217f40] } +&{glDrawArraysIndirect QOpenGLFunctions_4_1_Compatibility::glDrawArraysIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212061c0 0xc821206280] } +&{glDrawArraysInstanced QOpenGLFunctions_4_1_Compatibility::glDrawArraysInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821206520 0xc8212065c0 0xc8212066c0 0xc821206740] } +&{glDrawBuffer QOpenGLFunctions_4_1_Compatibility::glDrawBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212069c0] } +&{glDrawBuffers QOpenGLFunctions_4_1_Compatibility::glDrawBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821206ba0 0xc821206ca0] } +&{glDrawElements QOpenGLFunctions_4_1_Compatibility::glDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821206e60 0xc821206fc0 0xc821207060 0xc821207120] } +&{glDrawElementsBaseVertex QOpenGLFunctions_4_1_Compatibility::glDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8212073e0 0xc821207480 0xc821207540 0xc821207620 0xc8212076e0] } +&{glDrawElementsIndirect QOpenGLFunctions_4_1_Compatibility::glDrawElementsIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821207960 0xc821207a40 0xc821207b00] } +&{glDrawElementsInstanced QOpenGLFunctions_4_1_Compatibility::glDrawElementsInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821207d80 0xc821207e60 0xc821207f40 0xc821207fe0 0xc8211f4100] } +&{glDrawElementsInstancedBaseVertex QOpenGLFunctions_4_1_Compatibility::glDrawElementsInstancedBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211f4320 0xc8211f43c0 0xc8211f4480 0xc8211f4540 0xc8211f4620 0xc8211f46c0] } +&{glDrawPixels QOpenGLFunctions_4_1_Compatibility::glDrawPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211f4920 0xc8211f49e0 0xc8211f4aa0 0xc8211f4b40 0xc8211f4c40] } +&{glDrawRangeElements QOpenGLFunctions_4_1_Compatibility::glDrawRangeElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211f4ee0 0xc8211f4fc0 0xc8211f50a0 0xc8211f5140 0xc8211f5220 0xc8211f5300] } +&{glDrawRangeElementsBaseVertex QOpenGLFunctions_4_1_Compatibility::glDrawRangeElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211f5580 0xc8211f5680 0xc8211f5720 0xc8211f5840 0xc8211f5900 0xc8211f59a0 0xc8211f5aa0] } +&{glDrawTransformFeedback QOpenGLFunctions_4_1_Compatibility::glDrawTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211f5d40 0xc8211f5e00] } +&{glDrawTransformFeedbackStream QOpenGLFunctions_4_1_Compatibility::glDrawTransformFeedbackStream commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211d00e0 0xc8211d01e0 0xc8211d02a0] } +&{glEdgeFlag QOpenGLFunctions_4_1_Compatibility::glEdgeFlag commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211d0480] } +&{glEdgeFlagPointer QOpenGLFunctions_4_1_Compatibility::glEdgeFlagPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211d0740 0xc8211d0800] } +&{glEdgeFlagv QOpenGLFunctions_4_1_Compatibility::glEdgeFlagv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211d0a40] } +&{glEnable QOpenGLFunctions_4_1_Compatibility::glEnable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211d0d20] } +&{glEnableClientState QOpenGLFunctions_4_1_Compatibility::glEnableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211d0fa0] } +&{glEnableVertexAttribArray QOpenGLFunctions_4_1_Compatibility::glEnableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211d1240] } +&{glEnablei QOpenGLFunctions_4_1_Compatibility::glEnablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211d1400 0xc8211d1520] } +&{glEnd QOpenGLFunctions_4_1_Compatibility::glEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [] } +&{glEndConditionalRender QOpenGLFunctions_4_1_Compatibility::glEndConditionalRender commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [] } +&{glEndList QOpenGLFunctions_4_1_Compatibility::glEndList commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [] } +&{glEndQuery QOpenGLFunctions_4_1_Compatibility::glEndQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211d19e0] } +&{glEndQueryIndexed QOpenGLFunctions_4_1_Compatibility::glEndQueryIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211d1c40 0xc8211d1d80] } +&{glEndTransformFeedback QOpenGLFunctions_4_1_Compatibility::glEndTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [] } +&{glEvalCoord1d QOpenGLFunctions_4_1_Compatibility::glEvalCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211c2120] } +&{glEvalCoord1dv QOpenGLFunctions_4_1_Compatibility::glEvalCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211c2300] } +&{glEvalCoord1f QOpenGLFunctions_4_1_Compatibility::glEvalCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211c2520] } +&{glEvalCoord1fv QOpenGLFunctions_4_1_Compatibility::glEvalCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211c2760] } +&{glEvalCoord2d QOpenGLFunctions_4_1_Compatibility::glEvalCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211c2960 0xc8211c2a40] } +&{glEvalCoord2dv QOpenGLFunctions_4_1_Compatibility::glEvalCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211c2c00] } +&{glEvalCoord2f QOpenGLFunctions_4_1_Compatibility::glEvalCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211c2e20 0xc8211c2ee0] } +&{glEvalCoord2fv QOpenGLFunctions_4_1_Compatibility::glEvalCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211c3120] } +&{glEvalMesh1 QOpenGLFunctions_4_1_Compatibility::glEvalMesh1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211c3300 0xc8211c33e0 0xc8211c3480] } +&{glEvalMesh2 QOpenGLFunctions_4_1_Compatibility::glEvalMesh2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211c36c0 0xc8211c37a0 0xc8211c3820 0xc8211c3960 0xc8211c3a40] } +&{glEvalPoint1 QOpenGLFunctions_4_1_Compatibility::glEvalPoint1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211c3c80] } +&{glEvalPoint2 QOpenGLFunctions_4_1_Compatibility::glEvalPoint2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211c3ea0 0xc8211c3f20] } +&{glFeedbackBuffer QOpenGLFunctions_4_1_Compatibility::glFeedbackBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211b41a0 0xc8211b4220 0xc8211b4360] } +&{glFenceSync QOpenGLFunctions_4_1_Compatibility::glFenceSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLsync [0xc8211b4540 0xc8211b4620] } +&{glFinish QOpenGLFunctions_4_1_Compatibility::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [] } +&{glFlush QOpenGLFunctions_4_1_Compatibility::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [] } +&{glFlushMappedBufferRange QOpenGLFunctions_4_1_Compatibility::glFlushMappedBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211b4a00 0xc8211b4b00 0xc8211b4c00] } +&{glFogCoordPointer QOpenGLFunctions_4_1_Compatibility::glFogCoordPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211b4e80 0xc8211b4f60 0xc8211b5000] } +&{glFogCoordd QOpenGLFunctions_4_1_Compatibility::glFogCoordd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211b5240] } +&{glFogCoorddv QOpenGLFunctions_4_1_Compatibility::glFogCoorddv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211b5420] } +&{glFogCoordf QOpenGLFunctions_4_1_Compatibility::glFogCoordf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211b56a0] } +&{glFogCoordfv QOpenGLFunctions_4_1_Compatibility::glFogCoordfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211b5840] } +&{glFogf QOpenGLFunctions_4_1_Compatibility::glFogf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211b5a60 0xc8211b5b40] } +&{glFogfv QOpenGLFunctions_4_1_Compatibility::glFogfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211b5d60 0xc8211b5e00] } +&{glFogi QOpenGLFunctions_4_1_Compatibility::glFogi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211a4000 0xc8211a40a0] } +&{glFogiv QOpenGLFunctions_4_1_Compatibility::glFogiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211a42e0 0xc8211a4380] } +&{glFramebufferRenderbuffer QOpenGLFunctions_4_1_Compatibility::glFramebufferRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211a4600 0xc8211a46c0 0xc8211a47e0 0xc8211a4900] } +&{glFramebufferTexture QOpenGLFunctions_4_1_Compatibility::glFramebufferTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211a4b80 0xc8211a4c60 0xc8211a4d40 0xc8211a4e00] } +&{glFramebufferTexture1D QOpenGLFunctions_4_1_Compatibility::glFramebufferTexture1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211a50a0 0xc8211a5180 0xc8211a5240 0xc8211a5300 0xc8211a5400] } +&{glFramebufferTexture2D QOpenGLFunctions_4_1_Compatibility::glFramebufferTexture2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211a56a0 0xc8211a5780 0xc8211a5880 0xc8211a5940 0xc8211a5a40] } +&{glFramebufferTexture3D QOpenGLFunctions_4_1_Compatibility::glFramebufferTexture3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211a5cc0 0xc8211a5de0 0xc8211a5e80 0xc8211a5f40 0xc82119c040 0xc82119c100] } +&{glFramebufferTextureLayer QOpenGLFunctions_4_1_Compatibility::glFramebufferTextureLayer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82119c320 0xc82119c3c0 0xc82119c440 0xc82119c4c0 0xc82119c5a0] } +&{glFrontFace QOpenGLFunctions_4_1_Compatibility::glFrontFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82119c760] } +&{glFrustum QOpenGLFunctions_4_1_Compatibility::glFrustum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82119c8c0 0xc82119c980 0xc82119ca20 0xc82119cac0 0xc82119cba0 0xc82119cc20] } +&{glGenBuffers QOpenGLFunctions_4_1_Compatibility::glGenBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82119cda0 0xc82119ce40] } +&{glGenFramebuffers QOpenGLFunctions_4_1_Compatibility::glGenFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82119d060 0xc82119d100] } +&{glGenLists QOpenGLFunctions_4_1_Compatibility::glGenLists commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLuint [0xc82119d2a0] } +&{glGenProgramPipelines QOpenGLFunctions_4_1_Compatibility::glGenProgramPipelines commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82119d4c0 0xc82119d560] } +&{glGenQueries QOpenGLFunctions_4_1_Compatibility::glGenQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82119d6e0 0xc82119d780] } +&{glGenRenderbuffers QOpenGLFunctions_4_1_Compatibility::glGenRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82119d9a0 0xc82119da60] } +&{glGenSamplers QOpenGLFunctions_4_1_Compatibility::glGenSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82119dbc0 0xc82119dc60] } +&{glGenTextures QOpenGLFunctions_4_1_Compatibility::glGenTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82119de00 0xc82119dec0] } +&{glGenTransformFeedbacks QOpenGLFunctions_4_1_Compatibility::glGenTransformFeedbacks commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821190120 0xc8211901a0] } +&{glGenVertexArrays QOpenGLFunctions_4_1_Compatibility::glGenVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821190440 0xc821190500] } +&{glGenerateMipmap QOpenGLFunctions_4_1_Compatibility::glGenerateMipmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211906e0] } +&{glGetActiveAttrib QOpenGLFunctions_4_1_Compatibility::glGetActiveAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821190980 0xc821190aa0 0xc821190b40 0xc821190c00 0xc821190d00 0xc821190dc0 0xc821190e40] } +&{glGetActiveSubroutineName QOpenGLFunctions_4_1_Compatibility::glGetActiveSubroutineName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821191100 0xc8211911c0 0xc821191280 0xc821191360 0xc821191480 0xc821191560] } +&{glGetActiveSubroutineUniformName QOpenGLFunctions_4_1_Compatibility::glGetActiveSubroutineUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211917c0 0xc821191880 0xc821191960 0xc821191a00 0xc821191b20 0xc821191bc0] } +&{glGetActiveSubroutineUniformiv QOpenGLFunctions_4_1_Compatibility::glGetActiveSubroutineUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821191e60 0xc821191f60 0xc82117e000 0xc82117e0a0 0xc82117e200] } +&{glGetActiveUniform QOpenGLFunctions_4_1_Compatibility::glGetActiveUniform commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82117e460 0xc82117e580 0xc82117e640 0xc82117e6c0 0xc82117e820 0xc82117e8a0 0xc82117e980] } +&{glGetActiveUniformBlockName QOpenGLFunctions_4_1_Compatibility::glGetActiveUniformBlockName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82117ec20 0xc82117ed20 0xc82117ee40 0xc82117ef20 0xc82117efc0] } +&{glGetActiveUniformBlockiv QOpenGLFunctions_4_1_Compatibility::glGetActiveUniformBlockiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82117f240 0xc82117f360 0xc82117f460 0xc82117f580] } +&{glGetActiveUniformName QOpenGLFunctions_4_1_Compatibility::glGetActiveUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82117f7c0 0xc82117f880 0xc82117f940 0xc82117fa00 0xc82117faa0] } +&{glGetActiveUniformsiv QOpenGLFunctions_4_1_Compatibility::glGetActiveUniformsiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82117fce0 0xc82117fd80 0xc82117fe40 0xc82117ff60 0xc821172020] } +&{glGetAttachedShaders QOpenGLFunctions_4_1_Compatibility::glGetAttachedShaders commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211722a0 0xc821172320 0xc821172480 0xc821172520] } +&{glGetAttribLocation QOpenGLFunctions_4_1_Compatibility::glGetAttribLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLint [0xc8211727c0 0xc821172840] } +&{glGetBooleani_v QOpenGLFunctions_4_1_Compatibility::glGetBooleani_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821172a80 0xc821172b20 0xc821172be0] } +&{glGetBooleanv QOpenGLFunctions_4_1_Compatibility::glGetBooleanv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821172de0 0xc821172ea0] } +&{glGetBufferParameteri64v QOpenGLFunctions_4_1_Compatibility::glGetBufferParameteri64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821173120 0xc821173240 0xc821173300] } +&{glGetBufferParameteriv QOpenGLFunctions_4_1_Compatibility::glGetBufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821173520 0xc821173620 0xc821173700] } +&{glGetBufferPointerv QOpenGLFunctions_4_1_Compatibility::glGetBufferPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821173960 0xc821173a60 0xc821173b20] } +&{glGetBufferSubData QOpenGLFunctions_4_1_Compatibility::glGetBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821173dc0 0xc821173e40 0xc821173f80 0xc821160060] } +&{glGetClipPlane QOpenGLFunctions_4_1_Compatibility::glGetClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821160240 0xc8211602c0] } +&{glGetColorTable QOpenGLFunctions_4_1_Compatibility::glGetColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821160500 0xc8211605c0 0xc821160680 0xc821160740] } +&{glGetColorTableParameterfv QOpenGLFunctions_4_1_Compatibility::glGetColorTableParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821160a00 0xc821160a80 0xc821160b80] } +&{glGetColorTableParameteriv QOpenGLFunctions_4_1_Compatibility::glGetColorTableParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821160de0 0xc821160ee0 0xc821160fa0] } +&{glGetCompressedTexImage QOpenGLFunctions_4_1_Compatibility::glGetCompressedTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211611e0 0xc821161300 0xc8211613e0] } +&{glGetConvolutionFilter QOpenGLFunctions_4_1_Compatibility::glGetConvolutionFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821161640 0xc821161700 0xc8211617c0 0xc8211618a0] } +&{glGetConvolutionParameterfv QOpenGLFunctions_4_1_Compatibility::glGetConvolutionParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821161b40 0xc821161be0 0xc821161c80] } +&{glGetConvolutionParameteriv QOpenGLFunctions_4_1_Compatibility::glGetConvolutionParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821161f80 0xc821148040 0xc821148100] } +&{glGetDoublei_v QOpenGLFunctions_4_1_Compatibility::glGetDoublei_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821148300 0xc8211483a0 0xc821148460] } +&{glGetDoublev QOpenGLFunctions_4_1_Compatibility::glGetDoublev commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821148660 0xc821148760] } +&{glGetError QOpenGLFunctions_4_1_Compatibility::glGetError commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLenum [] } +&{glGetFloati_v QOpenGLFunctions_4_1_Compatibility::glGetFloati_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211489e0 0xc821148b00 0xc821148bc0] } +&{glGetFloatv QOpenGLFunctions_4_1_Compatibility::glGetFloatv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821148d60 0xc821148e80] } +&{glGetFragDataIndex QOpenGLFunctions_4_1_Compatibility::glGetFragDataIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLint [0xc821149100 0xc821149200] } +&{glGetFragDataLocation QOpenGLFunctions_4_1_Compatibility::glGetFragDataLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLint [0xc821149420 0xc821149560] } +&{glGetFramebufferAttachmentParameteriv QOpenGLFunctions_4_1_Compatibility::glGetFramebufferAttachmentParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821149700 0xc821149820 0xc8211498e0 0xc8211499c0] } +&{glGetHistogram QOpenGLFunctions_4_1_Compatibility::glGetHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821149b60 0xc821149ca0 0xc821149d40 0xc821149dc0 0xc821149f00] } +&{glGetHistogramParameterfv QOpenGLFunctions_4_1_Compatibility::glGetHistogramParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82113a1c0 0xc82113a280 0xc82113a3a0] } +&{glGetHistogramParameteriv QOpenGLFunctions_4_1_Compatibility::glGetHistogramParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82113a600 0xc82113a680 0xc82113a780] } +&{glGetInteger64i_v QOpenGLFunctions_4_1_Compatibility::glGetInteger64i_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82113a9e0 0xc82113aac0 0xc82113abe0] } +&{glGetInteger64v QOpenGLFunctions_4_1_Compatibility::glGetInteger64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82113adc0 0xc82113ae60] } +&{glGetIntegeri_v QOpenGLFunctions_4_1_Compatibility::glGetIntegeri_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82113b0a0 0xc82113b180 0xc82113b220] } +&{glGetIntegerv QOpenGLFunctions_4_1_Compatibility::glGetIntegerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82113b420 0xc82113b4a0] } +&{glGetLightfv QOpenGLFunctions_4_1_Compatibility::glGetLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82113b720 0xc82113b7c0 0xc82113b860] } +&{glGetLightiv QOpenGLFunctions_4_1_Compatibility::glGetLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82113baa0 0xc82113bb40 0xc82113bbe0] } +&{glGetMapdv QOpenGLFunctions_4_1_Compatibility::glGetMapdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82113be60 0xc82113bee0 0xc82113bf60] } +&{glGetMapfv QOpenGLFunctions_4_1_Compatibility::glGetMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821124140 0xc8211241e0 0xc8211242c0] } +&{glGetMapiv QOpenGLFunctions_4_1_Compatibility::glGetMapiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211244e0 0xc8211245c0 0xc8211246a0] } +&{glGetMaterialfv QOpenGLFunctions_4_1_Compatibility::glGetMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821124840 0xc821124920 0xc8211249e0] } +&{glGetMaterialiv QOpenGLFunctions_4_1_Compatibility::glGetMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821124c20 0xc821124ce0 0xc821124d60] } +&{glGetMinmax QOpenGLFunctions_4_1_Compatibility::glGetMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821124f80 0xc821125080 0xc821125140 0xc8211251c0 0xc8211252e0] } +&{glGetMinmaxParameterfv QOpenGLFunctions_4_1_Compatibility::glGetMinmaxParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821125560 0xc8211255e0 0xc8211256e0] } +&{glGetMinmaxParameteriv QOpenGLFunctions_4_1_Compatibility::glGetMinmaxParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821125960 0xc821125a20 0xc821125ae0] } +&{glGetMultisamplefv QOpenGLFunctions_4_1_Compatibility::glGetMultisamplefv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821125d40 0xc821125e20 0xc821125ee0] } +&{glGetPixelMapfv QOpenGLFunctions_4_1_Compatibility::glGetPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821118080 0xc8211181a0] } +&{glGetPixelMapuiv QOpenGLFunctions_4_1_Compatibility::glGetPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211183a0 0xc821118440] } +&{glGetPixelMapusv QOpenGLFunctions_4_1_Compatibility::glGetPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821118620 0xc8211186e0] } +&{glGetPointerv QOpenGLFunctions_4_1_Compatibility::glGetPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211188c0 0xc8211189e0] } +&{glGetPolygonStipple QOpenGLFunctions_4_1_Compatibility::glGetPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821118c40] } +&{glGetProgramBinary QOpenGLFunctions_4_1_Compatibility::glGetProgramBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821118ee0 0xc821118fc0 0xc821119040 0xc8211190e0 0xc821119240] } +&{glGetProgramInfoLog QOpenGLFunctions_4_1_Compatibility::glGetProgramInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821119480 0xc821119540 0xc821119640 0xc821119700] } +&{glGetProgramPipelineInfoLog QOpenGLFunctions_4_1_Compatibility::glGetProgramPipelineInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821119980 0xc821119a20 0xc821119b20 0xc821119c20] } +&{glGetProgramPipelineiv QOpenGLFunctions_4_1_Compatibility::glGetProgramPipelineiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821119e80 0xc821119f00 0xc821106000] } +&{glGetProgramStageiv QOpenGLFunctions_4_1_Compatibility::glGetProgramStageiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211062a0 0xc821106340 0xc821106440 0xc821106500] } +&{glGetProgramiv QOpenGLFunctions_4_1_Compatibility::glGetProgramiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821106700 0xc8211067c0 0xc8211068a0] } +&{glGetQueryIndexediv QOpenGLFunctions_4_1_Compatibility::glGetQueryIndexediv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821106b00 0xc821106c00 0xc821106c80 0xc821106d40] } +&{glGetQueryObjecti64v QOpenGLFunctions_4_1_Compatibility::glGetQueryObjecti64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821107000 0xc821107080 0xc821107140] } +&{glGetQueryObjectiv QOpenGLFunctions_4_1_Compatibility::glGetQueryObjectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8211073e0 0xc821107480 0xc821107540] } +&{glGetQueryObjectui64v QOpenGLFunctions_4_1_Compatibility::glGetQueryObjectui64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821107820 0xc8211078c0 0xc821107960] } +&{glGetQueryObjectuiv QOpenGLFunctions_4_1_Compatibility::glGetQueryObjectuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821107c20 0xc821107cc0 0xc821107d60] } +&{glGetQueryiv QOpenGLFunctions_4_1_Compatibility::glGetQueryiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821107f60 0xc8210f8040 0xc8210f8140] } +&{glGetRenderbufferParameteriv QOpenGLFunctions_4_1_Compatibility::glGetRenderbufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210f8380 0xc8210f8460 0xc8210f8540] } +&{glGetSamplerParameterIiv QOpenGLFunctions_4_1_Compatibility::glGetSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210f87c0 0xc8210f88a0 0xc8210f8920] } +&{glGetSamplerParameterIuiv QOpenGLFunctions_4_1_Compatibility::glGetSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210f8be0 0xc8210f8ca0 0xc8210f8d80] } +&{glGetSamplerParameterfv QOpenGLFunctions_4_1_Compatibility::glGetSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210f9000 0xc8210f9100 0xc8210f91a0] } +&{glGetSamplerParameteriv QOpenGLFunctions_4_1_Compatibility::glGetSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210f9420 0xc8210f9500 0xc8210f95a0] } +&{glGetSeparableFilter QOpenGLFunctions_4_1_Compatibility::glGetSeparableFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210f9840 0xc8210f98c0 0xc8210f9a00 0xc8210f9aa0 0xc8210f9be0 0xc8210f9c60] } +&{glGetShaderInfoLog QOpenGLFunctions_4_1_Compatibility::glGetShaderInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210f9f60 0xc8210f6000 0xc8210f60a0 0xc8210f6120] } +&{glGetShaderPrecisionFormat QOpenGLFunctions_4_1_Compatibility::glGetShaderPrecisionFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210f6300 0xc8210f6380 0xc8210f6460 0xc8210f64e0] } +&{glGetShaderSource QOpenGLFunctions_4_1_Compatibility::glGetShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210f66e0 0xc8210f6780 0xc8210f6860 0xc8210f68e0] } +&{glGetShaderiv QOpenGLFunctions_4_1_Compatibility::glGetShaderiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210f6a80 0xc8210f6b00 0xc8210f6bc0] } +&{glGetString QOpenGLFunctions_4_1_Compatibility::glGetString commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false const GLubyte * [0xc8210f6d40] } +&{glGetStringi QOpenGLFunctions_4_1_Compatibility::glGetStringi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false const GLubyte * [0xc8210f6ec0 0xc8210f6f80] } +&{glGetSubroutineIndex QOpenGLFunctions_4_1_Compatibility::glGetSubroutineIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLuint [0xc8210f7180 0xc8210f7200 0xc8210f72c0] } +&{glGetSubroutineUniformLocation QOpenGLFunctions_4_1_Compatibility::glGetSubroutineUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLint [0xc8210f74e0 0xc8210f7580 0xc8210f7600] } +&{glGetSynciv QOpenGLFunctions_4_1_Compatibility::glGetSynciv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210f7780 0xc8210f7840 0xc8210f78c0 0xc8210f7940 0xc8210f7a40] } +&{glGetTexEnvfv QOpenGLFunctions_4_1_Compatibility::glGetTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210f7bc0 0xc8210f7c60 0xc8210f7ce0] } +&{glGetTexEnviv QOpenGLFunctions_4_1_Compatibility::glGetTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210f7e80 0xc8210f7f00 0xc8210f7fe0] } +&{glGetTexGendv QOpenGLFunctions_4_1_Compatibility::glGetTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210e41e0 0xc8210e42e0 0xc8210e4360] } +&{glGetTexGenfv QOpenGLFunctions_4_1_Compatibility::glGetTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210e4580 0xc8210e4660 0xc8210e46e0] } +&{glGetTexGeniv QOpenGLFunctions_4_1_Compatibility::glGetTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210e4940 0xc8210e4a00 0xc8210e4a80] } +&{glGetTexImage QOpenGLFunctions_4_1_Compatibility::glGetTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210e4d00 0xc8210e4da0 0xc8210e4e40 0xc8210e4fa0 0xc8210e5060] } +&{glGetTexLevelParameterfv QOpenGLFunctions_4_1_Compatibility::glGetTexLevelParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210e5320 0xc8210e53e0 0xc8210e54e0 0xc8210e5560] } +&{glGetTexLevelParameteriv QOpenGLFunctions_4_1_Compatibility::glGetTexLevelParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210e5840 0xc8210e58c0 0xc8210e59e0 0xc8210e5ac0] } +&{glGetTexParameterIiv QOpenGLFunctions_4_1_Compatibility::glGetTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210e5d80 0xc8210e5e20 0xc8210e5f20] } +&{glGetTexParameterIuiv QOpenGLFunctions_4_1_Compatibility::glGetTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210d2160 0xc8210d2240 0xc8210d2300] } +&{glGetTexParameterfv QOpenGLFunctions_4_1_Compatibility::glGetTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210d25a0 0xc8210d2620 0xc8210d2720] } +&{glGetTexParameteriv QOpenGLFunctions_4_1_Compatibility::glGetTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210d29e0 0xc8210d2aa0 0xc8210d2b80] } +&{glGetTransformFeedbackVarying QOpenGLFunctions_4_1_Compatibility::glGetTransformFeedbackVarying commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210d2de0 0xc8210d2e80 0xc8210d2f80 0xc8210d3020 0xc8210d3160 0xc8210d3200 0xc8210d32c0] } +&{glGetUniformBlockIndex QOpenGLFunctions_4_1_Compatibility::glGetUniformBlockIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLuint [0xc8210d35a0 0xc8210d3640] } +&{glGetUniformIndices QOpenGLFunctions_4_1_Compatibility::glGetUniformIndices commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210d38e0 0xc8210d39c0 0xc8210d3a60 0xc8210d3be0] } +&{glGetUniformLocation QOpenGLFunctions_4_1_Compatibility::glGetUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLint [0xc8210d3e80 0xc8210d3f20] } +&{glGetUniformSubroutineuiv QOpenGLFunctions_4_1_Compatibility::glGetUniformSubroutineuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210c4180 0xc8210c4280 0xc8210c4340] } +&{glGetUniformdv QOpenGLFunctions_4_1_Compatibility::glGetUniformdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210c4560 0xc8210c4600 0xc8210c4680] } +&{glGetUniformfv QOpenGLFunctions_4_1_Compatibility::glGetUniformfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210c48c0 0xc8210c4960 0xc8210c4a80] } +&{glGetUniformiv QOpenGLFunctions_4_1_Compatibility::glGetUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210c4c60 0xc8210c4d40 0xc8210c4dc0] } +&{glGetUniformuiv QOpenGLFunctions_4_1_Compatibility::glGetUniformuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210c4fe0 0xc8210c5080 0xc8210c51a0] } +&{glGetVertexAttribIiv QOpenGLFunctions_4_1_Compatibility::glGetVertexAttribIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210c5460 0xc8210c5520 0xc8210c55a0] } +&{glGetVertexAttribIuiv QOpenGLFunctions_4_1_Compatibility::glGetVertexAttribIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210c5860 0xc8210c5940 0xc8210c5a40] } +&{glGetVertexAttribLdv QOpenGLFunctions_4_1_Compatibility::glGetVertexAttribLdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210c5cc0 0xc8210c5d80 0xc8210c5e80] } +&{glGetVertexAttribPointerv QOpenGLFunctions_4_1_Compatibility::glGetVertexAttribPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210b40c0 0xc8210b41c0 0xc8210b4280] } +&{glGetVertexAttribdv QOpenGLFunctions_4_1_Compatibility::glGetVertexAttribdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210b4500 0xc8210b45a0 0xc8210b46c0] } +&{glGetVertexAttribfv QOpenGLFunctions_4_1_Compatibility::glGetVertexAttribfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210b4920 0xc8210b49a0 0xc8210b4aa0] } +&{glGetVertexAttribiv QOpenGLFunctions_4_1_Compatibility::glGetVertexAttribiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210b4d40 0xc8210b4e00 0xc8210b4ec0] } +&{glHint QOpenGLFunctions_4_1_Compatibility::glHint commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210b5120 0xc8210b51c0] } +&{glHistogram QOpenGLFunctions_4_1_Compatibility::glHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210b53c0 0xc8210b5480 0xc8210b5580 0xc8210b5680] } +&{glIndexMask QOpenGLFunctions_4_1_Compatibility::glIndexMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210b5880] } +&{glIndexPointer QOpenGLFunctions_4_1_Compatibility::glIndexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210b5aa0 0xc8210b5b80 0xc8210b5c20] } +&{glIndexd QOpenGLFunctions_4_1_Compatibility::glIndexd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210b5e40] } +&{glIndexdv QOpenGLFunctions_4_1_Compatibility::glIndexdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82108e0a0] } +&{glIndexf QOpenGLFunctions_4_1_Compatibility::glIndexf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82108e2a0] } +&{glIndexfv QOpenGLFunctions_4_1_Compatibility::glIndexfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82108e4c0] } +&{glIndexi QOpenGLFunctions_4_1_Compatibility::glIndexi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82108e6a0] } +&{glIndexiv QOpenGLFunctions_4_1_Compatibility::glIndexiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82108e8a0] } +&{glIndexs QOpenGLFunctions_4_1_Compatibility::glIndexs commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82108eac0] } +&{glIndexsv QOpenGLFunctions_4_1_Compatibility::glIndexsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82108ed00] } +&{glIndexub QOpenGLFunctions_4_1_Compatibility::glIndexub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82108eee0] } +&{glIndexubv QOpenGLFunctions_4_1_Compatibility::glIndexubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82108f120] } +&{glInitNames QOpenGLFunctions_4_1_Compatibility::glInitNames commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [] } +&{glInterleavedArrays QOpenGLFunctions_4_1_Compatibility::glInterleavedArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82108f480 0xc82108f560 0xc82108f5e0] } +&{glIsBuffer QOpenGLFunctions_4_1_Compatibility::glIsBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLboolean [0xc82108f7c0] } +&{glIsEnabled QOpenGLFunctions_4_1_Compatibility::glIsEnabled commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLboolean [0xc82108f9e0] } +&{glIsEnabledi QOpenGLFunctions_4_1_Compatibility::glIsEnabledi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLboolean [0xc82108fbe0 0xc82108fc80] } +&{glIsFramebuffer QOpenGLFunctions_4_1_Compatibility::glIsFramebuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLboolean [0xc82108fe40] } +&{glIsList QOpenGLFunctions_4_1_Compatibility::glIsList commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLboolean [0xc82107e060] } +&{glIsProgram QOpenGLFunctions_4_1_Compatibility::glIsProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLboolean [0xc82107e260] } +&{glIsProgramPipeline QOpenGLFunctions_4_1_Compatibility::glIsProgramPipeline commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLboolean [0xc82107e500] } +&{glIsQuery QOpenGLFunctions_4_1_Compatibility::glIsQuery commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLboolean [0xc82107e740] } +&{glIsRenderbuffer QOpenGLFunctions_4_1_Compatibility::glIsRenderbuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLboolean [0xc82107e920] } +&{glIsSampler QOpenGLFunctions_4_1_Compatibility::glIsSampler commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLboolean [0xc82107eae0] } +&{glIsShader QOpenGLFunctions_4_1_Compatibility::glIsShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLboolean [0xc82107ed40] } +&{glIsSync QOpenGLFunctions_4_1_Compatibility::glIsSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLboolean [0xc82107ef00] } +&{glIsTexture QOpenGLFunctions_4_1_Compatibility::glIsTexture commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLboolean [0xc82107f140] } +&{glIsTransformFeedback QOpenGLFunctions_4_1_Compatibility::glIsTransformFeedback commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLboolean [0xc82107f400] } +&{glIsVertexArray QOpenGLFunctions_4_1_Compatibility::glIsVertexArray commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLboolean [0xc82107f600] } +&{glLightModelf QOpenGLFunctions_4_1_Compatibility::glLightModelf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82107f800 0xc82107f8a0] } +&{glLightModelfv QOpenGLFunctions_4_1_Compatibility::glLightModelfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82107faa0 0xc82107fb80] } +&{glLightModeli QOpenGLFunctions_4_1_Compatibility::glLightModeli commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82107fd40 0xc82107fe40] } +&{glLightModeliv QOpenGLFunctions_4_1_Compatibility::glLightModeliv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821072000 0xc8210720a0] } +&{glLightf QOpenGLFunctions_4_1_Compatibility::glLightf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210722a0 0xc821072320 0xc821072480] } +&{glLightfv QOpenGLFunctions_4_1_Compatibility::glLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821072640 0xc821072740 0xc8210727e0] } +&{glLighti QOpenGLFunctions_4_1_Compatibility::glLighti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821072a20 0xc821072ae0 0xc821072b80] } +&{glLightiv QOpenGLFunctions_4_1_Compatibility::glLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821072d60 0xc821072e20 0xc821072f40] } +&{glLineStipple QOpenGLFunctions_4_1_Compatibility::glLineStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210730e0 0xc821073200] } +&{glLineWidth QOpenGLFunctions_4_1_Compatibility::glLineWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821073420] } +&{glLinkProgram QOpenGLFunctions_4_1_Compatibility::glLinkProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821073620] } +&{glListBase QOpenGLFunctions_4_1_Compatibility::glListBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821073820] } +&{glLoadIdentity QOpenGLFunctions_4_1_Compatibility::glLoadIdentity commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [] } +&{glLoadMatrixd QOpenGLFunctions_4_1_Compatibility::glLoadMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821073b20] } +&{glLoadMatrixf QOpenGLFunctions_4_1_Compatibility::glLoadMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821073cc0] } +&{glLoadName QOpenGLFunctions_4_1_Compatibility::glLoadName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821073f00] } +&{glLoadTransposeMatrixd QOpenGLFunctions_4_1_Compatibility::glLoadTransposeMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821064180] } +&{glLoadTransposeMatrixf QOpenGLFunctions_4_1_Compatibility::glLoadTransposeMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210643e0] } +&{glLogicOp QOpenGLFunctions_4_1_Compatibility::glLogicOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821064680] } +&{glMap1d QOpenGLFunctions_4_1_Compatibility::glMap1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821064860 0xc821064900 0xc8210649e0 0xc821064ac0 0xc821064bc0 0xc821064c60] } +&{glMap1f QOpenGLFunctions_4_1_Compatibility::glMap1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821064e40 0xc821064f80 0xc821065040 0xc821065100 0xc8210651c0 0xc8210652e0] } +&{glMap2d QOpenGLFunctions_4_1_Compatibility::glMap2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210654c0 0xc8210655a0 0xc8210656a0 0xc821065740 0xc821065800 0xc821065900 0xc8210659a0 0xc821065a80 0xc821065bc0 0xc821065ca0] } +&{glMap2f QOpenGLFunctions_4_1_Compatibility::glMap2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821065e60 0xc821065f80 0xc821050000 0xc8210500c0 0xc821050200 0xc821050300 0xc8210503e0 0xc821050480 0xc8210505a0 0xc821050660] } +&{glMapBuffer QOpenGLFunctions_4_1_Compatibility::glMapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLvoid * [0xc8210508a0 0xc821050980] } +&{glMapBufferRange QOpenGLFunctions_4_1_Compatibility::glMapBufferRange commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLvoid * [0xc821050b40 0xc821050c20 0xc821050d00 0xc821050da0] } +&{glMapGrid1d QOpenGLFunctions_4_1_Compatibility::glMapGrid1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821050fe0 0xc8210510c0 0xc821051140] } +&{glMapGrid1f QOpenGLFunctions_4_1_Compatibility::glMapGrid1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210513a0 0xc821051440 0xc821051540] } +&{glMapGrid2d QOpenGLFunctions_4_1_Compatibility::glMapGrid2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821051760 0xc821051820 0xc8210518e0 0xc8210519a0 0xc821051ac0 0xc821051bc0] } +&{glMapGrid2f QOpenGLFunctions_4_1_Compatibility::glMapGrid2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821051d80 0xc821051e80 0xc821051f00 0xc821051fc0 0xc821042100 0xc821042200] } +&{glMaterialf QOpenGLFunctions_4_1_Compatibility::glMaterialf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210423e0 0xc8210424c0 0xc821042540] } +&{glMaterialfv QOpenGLFunctions_4_1_Compatibility::glMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821042780 0xc821042880 0xc821042920] } +&{glMateriali QOpenGLFunctions_4_1_Compatibility::glMateriali commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821042b20 0xc821042ba0 0xc821042d00] } +&{glMaterialiv QOpenGLFunctions_4_1_Compatibility::glMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821042ee0 0xc821042f60 0xc821043020] } +&{glMatrixMode QOpenGLFunctions_4_1_Compatibility::glMatrixMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821043280] } +&{glMinSampleShading QOpenGLFunctions_4_1_Compatibility::glMinSampleShading commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821043520] } +&{glMinmax QOpenGLFunctions_4_1_Compatibility::glMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821043720 0xc8210437c0 0xc8210438c0] } +&{glMultMatrixd QOpenGLFunctions_4_1_Compatibility::glMultMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821043ac0] } +&{glMultMatrixf QOpenGLFunctions_4_1_Compatibility::glMultMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821043ca0] } +&{glMultTransposeMatrixd QOpenGLFunctions_4_1_Compatibility::glMultTransposeMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821043fa0] } +&{glMultTransposeMatrixf QOpenGLFunctions_4_1_Compatibility::glMultTransposeMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210341a0] } +&{glMultiDrawArrays QOpenGLFunctions_4_1_Compatibility::glMultiDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210343c0 0xc821034440 0xc8210344c0 0xc8210345a0] } +&{glMultiDrawElements QOpenGLFunctions_4_1_Compatibility::glMultiDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210347a0 0xc821034820 0xc8210348a0 0xc8210349a0 0xc821034a80] } +&{glMultiDrawElementsBaseVertex QOpenGLFunctions_4_1_Compatibility::glMultiDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821034cc0 0xc821034d40 0xc821034de0 0xc821034ec0 0xc821034fe0 0xc821035060] } +&{glMultiTexCoord1d QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821035260 0xc821035320] } +&{glMultiTexCoord1dv QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821035500 0xc8210355a0] } +&{glMultiTexCoord1f QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210357e0 0xc821035880] } +&{glMultiTexCoord1fv QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821035a80 0xc821035b00] } +&{glMultiTexCoord1i QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821035d00 0xc821035de0] } +&{glMultiTexCoord1iv QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821035fe0 0xc821030060] } +&{glMultiTexCoord1s QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821030300 0xc8210303e0] } +&{glMultiTexCoord1sv QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821030660 0xc821030700] } +&{glMultiTexCoord2d QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210309e0 0xc821030ac0 0xc821030b60] } +&{glMultiTexCoord2dv QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821030e00 0xc821030ee0] } +&{glMultiTexCoord2f QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821031140 0xc821031220 0xc8210312e0] } +&{glMultiTexCoord2fv QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821031580 0xc821031640] } +&{glMultiTexCoord2i QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210318e0 0xc8210319a0 0xc821031aa0] } +&{glMultiTexCoord2iv QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821031d20 0xc821031dc0] } +&{glMultiTexCoord2s QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821020080 0xc821020180 0xc821020260] } +&{glMultiTexCoord2sv QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210204a0 0xc821020560] } +&{glMultiTexCoord3d QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210207e0 0xc8210208a0 0xc8210209a0 0xc821020a40] } +&{glMultiTexCoord3dv QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821020cc0 0xc821020d80] } +&{glMultiTexCoord3f QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821021040 0xc8210210e0 0xc8210211a0 0xc821021260] } +&{glMultiTexCoord3fv QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821021520 0xc821021600] } +&{glMultiTexCoord3i QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821021880 0xc821021960 0xc821021a00 0xc821021ae0] } +&{glMultiTexCoord3iv QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821021d80 0xc821021e60] } +&{glMultiTexCoord3s QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82100e0e0 0xc82100e1c0 0xc82100e280 0xc82100e3a0] } +&{glMultiTexCoord3sv QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82100e600 0xc82100e6a0] } +&{glMultiTexCoord4d QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82100e940 0xc82100ea00 0xc82100eac0 0xc82100ebc0 0xc82100ecc0] } +&{glMultiTexCoord4dv QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82100ef20 0xc82100efe0] } +&{glMultiTexCoord4f QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82100f280 0xc82100f340 0xc82100f400 0xc82100f500 0xc82100f620] } +&{glMultiTexCoord4fv QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82100f860 0xc82100f900] } +&{glMultiTexCoord4i QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc82100fbe0 0xc82100fca0 0xc82100fd20 0xc82100fe00 0xc82100ff20] } +&{glMultiTexCoord4iv QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821000180 0xc821000240] } +&{glMultiTexCoord4s QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8210004e0 0xc8210005a0 0xc821000680 0xc821000760 0xc821000860] } +&{glMultiTexCoord4sv QOpenGLFunctions_4_1_Compatibility::glMultiTexCoord4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821000ae0 0xc821000b80] } +&{glMultiTexCoordP1ui QOpenGLFunctions_4_1_Compatibility::glMultiTexCoordP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821000e00 0xc821000ee0 0xc821000fa0] } +&{glMultiTexCoordP1uiv QOpenGLFunctions_4_1_Compatibility::glMultiTexCoordP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821001260 0xc821001300 0xc821001440] } +&{glMultiTexCoordP2ui QOpenGLFunctions_4_1_Compatibility::glMultiTexCoordP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821001660 0xc821001720 0xc821001840] } +&{glMultiTexCoordP2uiv QOpenGLFunctions_4_1_Compatibility::glMultiTexCoordP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821001ac0 0xc821001bc0 0xc821001c60] } +&{glMultiTexCoordP3ui QOpenGLFunctions_4_1_Compatibility::glMultiTexCoordP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc821001ec0 0xc821001fe0 0xc820ff0080] } +&{glMultiTexCoordP3uiv QOpenGLFunctions_4_1_Compatibility::glMultiTexCoordP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ff0320 0xc820ff0400 0xc820ff0500] } +&{glMultiTexCoordP4ui QOpenGLFunctions_4_1_Compatibility::glMultiTexCoordP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ff0760 0xc820ff0800 0xc820ff08c0] } +&{glMultiTexCoordP4uiv QOpenGLFunctions_4_1_Compatibility::glMultiTexCoordP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ff0b80 0xc820ff0c40 0xc820ff0ce0] } +&{glNewList QOpenGLFunctions_4_1_Compatibility::glNewList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ff0ec0 0xc820ff0fc0] } +&{glNormal3b QOpenGLFunctions_4_1_Compatibility::glNormal3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ff11c0 0xc820ff12a0 0xc820ff1320] } +&{glNormal3bv QOpenGLFunctions_4_1_Compatibility::glNormal3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ff1540] } +&{glNormal3d QOpenGLFunctions_4_1_Compatibility::glNormal3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ff1740 0xc820ff17e0 0xc820ff18c0] } +&{glNormal3dv QOpenGLFunctions_4_1_Compatibility::glNormal3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ff1ae0] } +&{glNormal3f QOpenGLFunctions_4_1_Compatibility::glNormal3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ff1c80 0xc820ff1d60 0xc820ff1e40] } +&{glNormal3fv QOpenGLFunctions_4_1_Compatibility::glNormal3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fe0080] } +&{glNormal3i QOpenGLFunctions_4_1_Compatibility::glNormal3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fe0260 0xc820fe0320 0xc820fe0400] } +&{glNormal3iv QOpenGLFunctions_4_1_Compatibility::glNormal3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fe0640] } +&{glNormal3s QOpenGLFunctions_4_1_Compatibility::glNormal3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fe0860 0xc820fe0940 0xc820fe09c0] } +&{glNormal3sv QOpenGLFunctions_4_1_Compatibility::glNormal3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fe0c40] } +&{glNormalP3ui QOpenGLFunctions_4_1_Compatibility::glNormalP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fe0e00 0xc820fe0f20] } +&{glNormalP3uiv QOpenGLFunctions_4_1_Compatibility::glNormalP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fe10e0 0xc820fe11e0] } +&{glNormalPointer QOpenGLFunctions_4_1_Compatibility::glNormalPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fe1400 0xc820fe14a0 0xc820fe1560] } +&{glOrtho QOpenGLFunctions_4_1_Compatibility::glOrtho commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fe1780 0xc820fe1840 0xc820fe1920 0xc820fe19c0 0xc820fe1ae0 0xc820fe1bc0] } +&{glPassThrough QOpenGLFunctions_4_1_Compatibility::glPassThrough commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fe1da0] } +&{glPatchParameterfv QOpenGLFunctions_4_1_Compatibility::glPatchParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fca0a0 0xc820fca140] } +&{glPatchParameteri QOpenGLFunctions_4_1_Compatibility::glPatchParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fca380 0xc820fca4c0] } +&{glPauseTransformFeedback QOpenGLFunctions_4_1_Compatibility::glPauseTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [] } +&{glPixelMapfv QOpenGLFunctions_4_1_Compatibility::glPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fca800 0xc820fca880 0xc820fca960] } +&{glPixelMapuiv QOpenGLFunctions_4_1_Compatibility::glPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fcab80 0xc820fcac40 0xc820fcad00] } +&{glPixelMapusv QOpenGLFunctions_4_1_Compatibility::glPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fcaee0 0xc820fcaf80 0xc820fcb080] } +&{glPixelStoref QOpenGLFunctions_4_1_Compatibility::glPixelStoref commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fcb260 0xc820fcb300] } +&{glPixelStorei QOpenGLFunctions_4_1_Compatibility::glPixelStorei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fcb4c0 0xc820fcb5c0] } +&{glPixelTransferf QOpenGLFunctions_4_1_Compatibility::glPixelTransferf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fcb780 0xc820fcb860] } +&{glPixelTransferi QOpenGLFunctions_4_1_Compatibility::glPixelTransferi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fcba60 0xc820fcbb00] } +&{glPixelZoom QOpenGLFunctions_4_1_Compatibility::glPixelZoom commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fcbce0 0xc820fcbde0] } +&{glPointParameterf QOpenGLFunctions_4_1_Compatibility::glPointParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fb8060 0xc820fb8120] } +&{glPointParameterfv QOpenGLFunctions_4_1_Compatibility::glPointParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fb83c0 0xc820fb8460] } +&{glPointParameteri QOpenGLFunctions_4_1_Compatibility::glPointParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fb8720 0xc820fb87a0] } +&{glPointParameteriv QOpenGLFunctions_4_1_Compatibility::glPointParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fb8a40 0xc820fb8b00] } +&{glPointSize QOpenGLFunctions_4_1_Compatibility::glPointSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fb8d20] } +&{glPolygonMode QOpenGLFunctions_4_1_Compatibility::glPolygonMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fb8ee0 0xc820fb8fa0] } +&{glPolygonOffset QOpenGLFunctions_4_1_Compatibility::glPolygonOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fb9200 0xc820fb9280] } +&{glPolygonStipple QOpenGLFunctions_4_1_Compatibility::glPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fb9440] } +&{glPopAttrib QOpenGLFunctions_4_1_Compatibility::glPopAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [] } +&{glPopClientAttrib QOpenGLFunctions_4_1_Compatibility::glPopClientAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [] } +&{glPopMatrix QOpenGLFunctions_4_1_Compatibility::glPopMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [] } +&{glPopName QOpenGLFunctions_4_1_Compatibility::glPopName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [] } +&{glPrimitiveRestartIndex QOpenGLFunctions_4_1_Compatibility::glPrimitiveRestartIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fb99e0] } +&{glPrioritizeTextures QOpenGLFunctions_4_1_Compatibility::glPrioritizeTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fb9c80 0xc820fb9d00 0xc820fb9e40] } +&{glProgramBinary QOpenGLFunctions_4_1_Compatibility::glProgramBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fb9fe0 0xc820fb2060 0xc820fb2140 0xc820fb21e0] } +&{glProgramParameteri QOpenGLFunctions_4_1_Compatibility::glProgramParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fb23a0 0xc820fb2440 0xc820fb24c0] } +&{glProgramUniform1d QOpenGLFunctions_4_1_Compatibility::glProgramUniform1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fb26e0 0xc820fb2760 0xc820fb2800] } +&{glProgramUniform1dv QOpenGLFunctions_4_1_Compatibility::glProgramUniform1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fb29e0 0xc820fb2aa0 0xc820fb2b20 0xc820fb2be0] } +&{glProgramUniform1f QOpenGLFunctions_4_1_Compatibility::glProgramUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fb2dc0 0xc820fb2e40 0xc820fb2f20] } +&{glProgramUniform1fv QOpenGLFunctions_4_1_Compatibility::glProgramUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fb3100 0xc820fb3180 0xc820fb3260 0xc820fb32e0] } +&{glProgramUniform1i QOpenGLFunctions_4_1_Compatibility::glProgramUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fb34c0 0xc820fb35a0 0xc820fb3640] } +&{glProgramUniform1iv QOpenGLFunctions_4_1_Compatibility::glProgramUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fb3820 0xc820fb38c0 0xc820fb3960 0xc820fb3a00] } +&{glProgramUniform1ui QOpenGLFunctions_4_1_Compatibility::glProgramUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fb3be0 0xc820fb3ca0 0xc820fb3d40] } +&{glProgramUniform1uiv QOpenGLFunctions_4_1_Compatibility::glProgramUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fb3f60 0xc820fb3fe0 0xc820faa0c0 0xc820faa1c0] } +&{glProgramUniform2d QOpenGLFunctions_4_1_Compatibility::glProgramUniform2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820faa440 0xc820faa520 0xc820faa5c0 0xc820faa680] } +&{glProgramUniform2dv QOpenGLFunctions_4_1_Compatibility::glProgramUniform2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820faa940 0xc820faaa00 0xc820faab00 0xc820faaba0] } +&{glProgramUniform2f QOpenGLFunctions_4_1_Compatibility::glProgramUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820faae80 0xc820faaf00 0xc820faafa0 0xc820fab0e0] } +&{glProgramUniform2fv QOpenGLFunctions_4_1_Compatibility::glProgramUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fab380 0xc820fab420 0xc820fab500 0xc820fab600] } +&{glProgramUniform2i QOpenGLFunctions_4_1_Compatibility::glProgramUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fab840 0xc820fab960 0xc820faba00 0xc820fabac0] } +&{glProgramUniform2iv QOpenGLFunctions_4_1_Compatibility::glProgramUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820fabda0 0xc820fabe40 0xc820fabf40 0xc820f96040] } +&{glProgramUniform2ui QOpenGLFunctions_4_1_Compatibility::glProgramUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f96300 0xc820f96400 0xc820f96480 0xc820f96540] } +&{glProgramUniform2uiv QOpenGLFunctions_4_1_Compatibility::glProgramUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f96820 0xc820f968a0 0xc820f96980 0xc820f96a80] } +&{glProgramUniform3d QOpenGLFunctions_4_1_Compatibility::glProgramUniform3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f96ce0 0xc820f96de0 0xc820f96ee0 0xc820f96fa0 0xc820f970a0] } +&{glProgramUniform3dv QOpenGLFunctions_4_1_Compatibility::glProgramUniform3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f97300 0xc820f973a0 0xc820f974a0 0xc820f97540] } +&{glProgramUniform3f QOpenGLFunctions_4_1_Compatibility::glProgramUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f977e0 0xc820f978c0 0xc820f97960 0xc820f97a20 0xc820f97ae0] } +&{glProgramUniform3fv QOpenGLFunctions_4_1_Compatibility::glProgramUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f97d80 0xc820f97e60 0xc820f97f80 0xc820f80060] } +&{glProgramUniform3i QOpenGLFunctions_4_1_Compatibility::glProgramUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f802a0 0xc820f80320 0xc820f80400 0xc820f804a0 0xc820f80580] } +&{glProgramUniform3iv QOpenGLFunctions_4_1_Compatibility::glProgramUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f80840 0xc820f80900 0xc820f809a0 0xc820f80ae0] } +&{glProgramUniform3ui QOpenGLFunctions_4_1_Compatibility::glProgramUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f80d20 0xc820f80e00 0xc820f80f00 0xc820f80f80 0xc820f81080] } +&{glProgramUniform3uiv QOpenGLFunctions_4_1_Compatibility::glProgramUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f81300 0xc820f81400 0xc820f814e0 0xc820f815a0] } +&{glProgramUniform4d QOpenGLFunctions_4_1_Compatibility::glProgramUniform4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f81840 0xc820f818e0 0xc820f81960 0xc820f81a60 0xc820f81b60 0xc820f81c20] } +&{glProgramUniform4dv QOpenGLFunctions_4_1_Compatibility::glProgramUniform4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f81ea0 0xc820f81fa0 0xc820f6e060 0xc820f6e100] } +&{glProgramUniform4f QOpenGLFunctions_4_1_Compatibility::glProgramUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f6e3c0 0xc820f6e460 0xc820f6e540 0xc820f6e600 0xc820f6e6e0 0xc820f6e800] } +&{glProgramUniform4fv QOpenGLFunctions_4_1_Compatibility::glProgramUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f6ea80 0xc820f6eb00 0xc820f6ec00 0xc820f6ece0] } +&{glProgramUniform4i QOpenGLFunctions_4_1_Compatibility::glProgramUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f6ef60 0xc820f6efe0 0xc820f6f0c0 0xc820f6f1c0 0xc820f6f280 0xc820f6f380] } +&{glProgramUniform4iv QOpenGLFunctions_4_1_Compatibility::glProgramUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f6f600 0xc820f6f6c0 0xc820f6f760 0xc820f6f880] } +&{glProgramUniform4ui QOpenGLFunctions_4_1_Compatibility::glProgramUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f6fb00 0xc820f6fba0 0xc820f6fc80 0xc820f6fd00 0xc820f6fe60 0xc820f6ff00] } +&{glProgramUniform4uiv QOpenGLFunctions_4_1_Compatibility::glProgramUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f5c180 0xc820f5c260 0xc820f5c2e0 0xc820f5c3e0] } +&{glProgramUniformMatrix2dv QOpenGLFunctions_4_1_Compatibility::glProgramUniformMatrix2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f5c640 0xc820f5c740 0xc820f5c7e0 0xc820f5c8c0 0xc820f5c980] } +&{glProgramUniformMatrix2fv QOpenGLFunctions_4_1_Compatibility::glProgramUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f5cc20 0xc820f5cd40 0xc820f5cde0 0xc820f5ce60 0xc820f5cfe0] } +&{glProgramUniformMatrix2x3dv QOpenGLFunctions_4_1_Compatibility::glProgramUniformMatrix2x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f5d240 0xc820f5d300 0xc820f5d460 0xc820f5d500 0xc820f5d5e0] } +&{glProgramUniformMatrix2x3fv QOpenGLFunctions_4_1_Compatibility::glProgramUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f5d8c0 0xc820f5d940 0xc820f5da20 0xc820f5dae0 0xc820f5dc20] } +&{glProgramUniformMatrix2x4dv QOpenGLFunctions_4_1_Compatibility::glProgramUniformMatrix2x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f5dea0 0xc820f5df60 0xc820f40020 0xc820f400a0 0xc820f401e0] } +&{glProgramUniformMatrix2x4fv QOpenGLFunctions_4_1_Compatibility::glProgramUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f40440 0xc820f40560 0xc820f40600 0xc820f406a0 0xc820f407c0] } +&{glProgramUniformMatrix3dv QOpenGLFunctions_4_1_Compatibility::glProgramUniformMatrix3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f40a60 0xc820f40b20 0xc820f40c20 0xc820f40cc0 0xc820f40dc0] } +&{glProgramUniformMatrix3fv QOpenGLFunctions_4_1_Compatibility::glProgramUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f41040 0xc820f41140 0xc820f41220 0xc820f412c0 0xc820f41380] } +&{glProgramUniformMatrix3x2dv QOpenGLFunctions_4_1_Compatibility::glProgramUniformMatrix3x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f41640 0xc820f416c0 0xc820f417e0 0xc820f418a0 0xc820f419a0] } +&{glProgramUniformMatrix3x2fv QOpenGLFunctions_4_1_Compatibility::glProgramUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f41c60 0xc820f41d00 0xc820f41dc0 0xc820f41ee0 0xc820f41fa0] } +&{glProgramUniformMatrix3x4dv QOpenGLFunctions_4_1_Compatibility::glProgramUniformMatrix3x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f3a180 0xc820f3a200 0xc820f3a2e0 0xc820f3a380 0xc820f3a440] } +&{glProgramUniformMatrix3x4fv QOpenGLFunctions_4_1_Compatibility::glProgramUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f3a660 0xc820f3a700 0xc820f3a780 0xc820f3a840 0xc820f3a8e0] } +&{glProgramUniformMatrix4dv QOpenGLFunctions_4_1_Compatibility::glProgramUniformMatrix4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f3ab00 0xc820f3ab80 0xc820f3ac00 0xc820f3acc0 0xc820f3ad60] } +&{glProgramUniformMatrix4fv QOpenGLFunctions_4_1_Compatibility::glProgramUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f3af80 0xc820f3b020 0xc820f3b100 0xc820f3b180 0xc820f3b220] } +&{glProgramUniformMatrix4x2dv QOpenGLFunctions_4_1_Compatibility::glProgramUniformMatrix4x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f3b440 0xc820f3b520 0xc820f3b5c0 0xc820f3b640 0xc820f3b700] } +&{glProgramUniformMatrix4x2fv QOpenGLFunctions_4_1_Compatibility::glProgramUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f3b960 0xc820f3b9e0 0xc820f3ba80 0xc820f3bb20 0xc820f3bc00] } +&{glProgramUniformMatrix4x3dv QOpenGLFunctions_4_1_Compatibility::glProgramUniformMatrix4x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f3bde0 0xc820f3be80 0xc820f3bf20 0xc820f3bfe0 0xc820f2e120] } +&{glProgramUniformMatrix4x3fv QOpenGLFunctions_4_1_Compatibility::glProgramUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f2e3a0 0xc820f2e420 0xc820f2e4c0 0xc820f2e5c0 0xc820f2e660] } +&{glProvokingVertex QOpenGLFunctions_4_1_Compatibility::glProvokingVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f2e920] } +&{glPushAttrib QOpenGLFunctions_4_1_Compatibility::glPushAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f2eb00] } +&{glPushClientAttrib QOpenGLFunctions_4_1_Compatibility::glPushClientAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f2ed80] } +&{glPushMatrix QOpenGLFunctions_4_1_Compatibility::glPushMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [] } +&{glPushName QOpenGLFunctions_4_1_Compatibility::glPushName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f2f0c0] } +&{glQueryCounter QOpenGLFunctions_4_1_Compatibility::glQueryCounter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f2f2a0 0xc820f2f340] } +&{glRasterPos2d QOpenGLFunctions_4_1_Compatibility::glRasterPos2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f2f540 0xc820f2f600] } +&{glRasterPos2dv QOpenGLFunctions_4_1_Compatibility::glRasterPos2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f2f800] } +&{glRasterPos2f QOpenGLFunctions_4_1_Compatibility::glRasterPos2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f2f9e0 0xc820f2fae0] } +&{glRasterPos2fv QOpenGLFunctions_4_1_Compatibility::glRasterPos2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f2fc80] } +&{glRasterPos2i QOpenGLFunctions_4_1_Compatibility::glRasterPos2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f2fea0 0xc820f2ff80] } +&{glRasterPos2iv QOpenGLFunctions_4_1_Compatibility::glRasterPos2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f1e180] } +&{glRasterPos2s QOpenGLFunctions_4_1_Compatibility::glRasterPos2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f1e3a0 0xc820f1e440] } +&{glRasterPos2sv QOpenGLFunctions_4_1_Compatibility::glRasterPos2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f1e640] } +&{glRasterPos3d QOpenGLFunctions_4_1_Compatibility::glRasterPos3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f1e860 0xc820f1e920 0xc820f1e9e0] } +&{glRasterPos3dv QOpenGLFunctions_4_1_Compatibility::glRasterPos3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f1ec00] } +&{glRasterPos3f QOpenGLFunctions_4_1_Compatibility::glRasterPos3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f1ede0 0xc820f1eec0 0xc820f1ef60] } +&{glRasterPos3fv QOpenGLFunctions_4_1_Compatibility::glRasterPos3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f1f1a0] } +&{glRasterPos3i QOpenGLFunctions_4_1_Compatibility::glRasterPos3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f1f340 0xc820f1f400 0xc820f1f500] } +&{glRasterPos3iv QOpenGLFunctions_4_1_Compatibility::glRasterPos3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f1f6e0] } +&{glRasterPos3s QOpenGLFunctions_4_1_Compatibility::glRasterPos3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f1f8e0 0xc820f1f9a0 0xc820f1faa0] } +&{glRasterPos3sv QOpenGLFunctions_4_1_Compatibility::glRasterPos3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f1fc60] } +&{glRasterPos4d QOpenGLFunctions_4_1_Compatibility::glRasterPos4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f1fe80 0xc820f1ff60 0xc820f1ffe0 0xc820f0a0c0] } +&{glRasterPos4dv QOpenGLFunctions_4_1_Compatibility::glRasterPos4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f0a2a0] } +&{glRasterPos4f QOpenGLFunctions_4_1_Compatibility::glRasterPos4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f0a500 0xc820f0a5a0 0xc820f0a680 0xc820f0a760] } +&{glRasterPos4fv QOpenGLFunctions_4_1_Compatibility::glRasterPos4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f0a900] } +&{glRasterPos4i QOpenGLFunctions_4_1_Compatibility::glRasterPos4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f0ab20 0xc820f0ac00 0xc820f0ad00 0xc820f0ade0] } +&{glRasterPos4iv QOpenGLFunctions_4_1_Compatibility::glRasterPos4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f0afc0] } +&{glRasterPos4s QOpenGLFunctions_4_1_Compatibility::glRasterPos4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f0b180 0xc820f0b280 0xc820f0b360 0xc820f0b3e0] } +&{glRasterPos4sv QOpenGLFunctions_4_1_Compatibility::glRasterPos4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f0b600] } +&{glReadBuffer QOpenGLFunctions_4_1_Compatibility::glReadBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f0b880] } +&{glReadPixels QOpenGLFunctions_4_1_Compatibility::glReadPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820f0ba60 0xc820f0bb20 0xc820f0bbc0 0xc820f0bce0 0xc820f0bdc0 0xc820f0bec0 0xc820f0bf40] } +&{glRectd QOpenGLFunctions_4_1_Compatibility::glRectd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820efc1c0 0xc820efc260 0xc820efc2e0 0xc820efc420] } +&{glRectdv QOpenGLFunctions_4_1_Compatibility::glRectdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820efc5c0 0xc820efc6c0] } +&{glRectf QOpenGLFunctions_4_1_Compatibility::glRectf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820efc8a0 0xc820efc980 0xc820efca80 0xc820efcb20] } +&{glRectfv QOpenGLFunctions_4_1_Compatibility::glRectfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820efcd60 0xc820efcde0] } +&{glRecti QOpenGLFunctions_4_1_Compatibility::glRecti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820efd020 0xc820efd0a0 0xc820efd180 0xc820efd280] } +&{glRectiv QOpenGLFunctions_4_1_Compatibility::glRectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820efd460 0xc820efd580] } +&{glRects QOpenGLFunctions_4_1_Compatibility::glRects commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820efd740 0xc820efd820 0xc820efd920 0xc820efd9a0] } +&{glRectsv QOpenGLFunctions_4_1_Compatibility::glRectsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820efdbc0 0xc820efdc80] } +&{glReleaseShaderCompiler QOpenGLFunctions_4_1_Compatibility::glReleaseShaderCompiler commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [] } +&{glRenderMode QOpenGLFunctions_4_1_Compatibility::glRenderMode commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLint [0xc820efdfe0] } +&{glRenderbufferStorage QOpenGLFunctions_4_1_Compatibility::glRenderbufferStorage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b56260 0xc826b56360 0xc826b56420 0xc826b56560] } +&{glRenderbufferStorageMultisample QOpenGLFunctions_4_1_Compatibility::glRenderbufferStorageMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b567c0 0xc826b56880 0xc826b56940 0xc826b56a40 0xc826b56b40] } +&{glResetHistogram QOpenGLFunctions_4_1_Compatibility::glResetHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b56d00] } +&{glResetMinmax QOpenGLFunctions_4_1_Compatibility::glResetMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b56ee0] } +&{glResumeTransformFeedback QOpenGLFunctions_4_1_Compatibility::glResumeTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [] } +&{glRotated QOpenGLFunctions_4_1_Compatibility::glRotated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b57280 0xc826b57300 0xc826b573e0 0xc826b574e0] } +&{glRotatef QOpenGLFunctions_4_1_Compatibility::glRotatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b57680 0xc826b577c0 0xc826b57860 0xc826b57940] } +&{glSampleCoverage QOpenGLFunctions_4_1_Compatibility::glSampleCoverage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b57b60 0xc826b57c00] } +&{glSampleMaski QOpenGLFunctions_4_1_Compatibility::glSampleMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b57e20 0xc826b57ee0] } +&{glSamplerParameterIiv QOpenGLFunctions_4_1_Compatibility::glSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b46100 0xc826b46240 0xc826b46300] } +&{glSamplerParameterIuiv QOpenGLFunctions_4_1_Compatibility::glSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b465a0 0xc826b46660 0xc826b46740] } +&{glSamplerParameterf QOpenGLFunctions_4_1_Compatibility::glSamplerParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b469c0 0xc826b46aa0 0xc826b46b40] } +&{glSamplerParameterfv QOpenGLFunctions_4_1_Compatibility::glSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b46e00 0xc826b46ec0 0xc826b46f40] } +&{glSamplerParameteri QOpenGLFunctions_4_1_Compatibility::glSamplerParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b471e0 0xc826b47280 0xc826b47380] } +&{glSamplerParameteriv QOpenGLFunctions_4_1_Compatibility::glSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b47600 0xc826b476a0 0xc826b47780] } +&{glScaled QOpenGLFunctions_4_1_Compatibility::glScaled commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b479a0 0xc826b47a40 0xc826b47b20] } +&{glScalef QOpenGLFunctions_4_1_Compatibility::glScalef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b47d40 0xc826b47e00 0xc826b47e80] } +&{glScissor QOpenGLFunctions_4_1_Compatibility::glScissor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b3a080 0xc826b3a140 0xc826b3a1e0 0xc826b3a2e0] } +&{glScissorArrayv QOpenGLFunctions_4_1_Compatibility::glScissorArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b3a4e0 0xc826b3a5c0 0xc826b3a640] } +&{glScissorIndexed QOpenGLFunctions_4_1_Compatibility::glScissorIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b3a8a0 0xc826b3a940 0xc826b3aa60 0xc826b3ab00 0xc826b3abe0] } +&{glScissorIndexedv QOpenGLFunctions_4_1_Compatibility::glScissorIndexedv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b3aec0 0xc826b3af60] } +&{glSecondaryColor3b QOpenGLFunctions_4_1_Compatibility::glSecondaryColor3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b3b200 0xc826b3b2e0 0xc826b3b3a0] } +&{glSecondaryColor3bv QOpenGLFunctions_4_1_Compatibility::glSecondaryColor3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b3b600] } +&{glSecondaryColor3d QOpenGLFunctions_4_1_Compatibility::glSecondaryColor3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b3b8c0 0xc826b3b980 0xc826b3ba60] } +&{glSecondaryColor3dv QOpenGLFunctions_4_1_Compatibility::glSecondaryColor3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b3bce0] } +&{glSecondaryColor3f QOpenGLFunctions_4_1_Compatibility::glSecondaryColor3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b3bf40 0xc826b2a000 0xc826b2a0e0] } +&{glSecondaryColor3fv QOpenGLFunctions_4_1_Compatibility::glSecondaryColor3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b2a3a0] } +&{glSecondaryColor3i QOpenGLFunctions_4_1_Compatibility::glSecondaryColor3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b2a620 0xc826b2a700 0xc826b2a7e0] } +&{glSecondaryColor3iv QOpenGLFunctions_4_1_Compatibility::glSecondaryColor3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b2aa60] } +&{glSecondaryColor3s QOpenGLFunctions_4_1_Compatibility::glSecondaryColor3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b2ad00 0xc826b2ade0 0xc826b2ae60] } +&{glSecondaryColor3sv QOpenGLFunctions_4_1_Compatibility::glSecondaryColor3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b2b140] } +&{glSecondaryColor3ub QOpenGLFunctions_4_1_Compatibility::glSecondaryColor3ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b2b3a0 0xc826b2b4e0 0xc826b2b5c0] } +&{glSecondaryColor3ubv QOpenGLFunctions_4_1_Compatibility::glSecondaryColor3ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b2b820] } +&{glSecondaryColor3ui QOpenGLFunctions_4_1_Compatibility::glSecondaryColor3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b2bb00 0xc826b2bb80 0xc826b2bc20] } +&{glSecondaryColor3uiv QOpenGLFunctions_4_1_Compatibility::glSecondaryColor3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b2bf40] } +&{glSecondaryColor3us QOpenGLFunctions_4_1_Compatibility::glSecondaryColor3us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b1a160 0xc826b1a2c0 0xc826b1a340] } +&{glSecondaryColor3usv QOpenGLFunctions_4_1_Compatibility::glSecondaryColor3usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b1a5e0] } +&{glSecondaryColorP3ui QOpenGLFunctions_4_1_Compatibility::glSecondaryColorP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b1a860 0xc826b1a940] } +&{glSecondaryColorP3uiv QOpenGLFunctions_4_1_Compatibility::glSecondaryColorP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b1ac00 0xc826b1acc0] } +&{glSecondaryColorPointer QOpenGLFunctions_4_1_Compatibility::glSecondaryColorPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b1af80 0xc826b1b060 0xc826b1b0e0 0xc826b1b1c0] } +&{glSelectBuffer QOpenGLFunctions_4_1_Compatibility::glSelectBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b1b3a0 0xc826b1b4c0] } +&{glSeparableFilter2D QOpenGLFunctions_4_1_Compatibility::glSeparableFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b1b720 0xc826b1b7e0 0xc826b1b920 0xc826b1b9c0 0xc826b1ba60 0xc826b1bb60 0xc826b1bc00 0xc826b1bd00] } +&{glShadeModel QOpenGLFunctions_4_1_Compatibility::glShadeModel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b1bf20] } +&{glShaderBinary QOpenGLFunctions_4_1_Compatibility::glShaderBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b0a120 0xc826b0a200 0xc826b0a2a0 0xc826b0a360 0xc826b0a440] } +&{glShaderSource QOpenGLFunctions_4_1_Compatibility::glShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b0a620 0xc826b0a740 0xc826b0a800 0xc826b0a940] } +&{glStencilFunc QOpenGLFunctions_4_1_Compatibility::glStencilFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b0ab60 0xc826b0ac20 0xc826b0ad40] } +&{glStencilFuncSeparate QOpenGLFunctions_4_1_Compatibility::glStencilFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b0afc0 0xc826b0b060 0xc826b0b120 0xc826b0b220] } +&{glStencilMask QOpenGLFunctions_4_1_Compatibility::glStencilMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b0b440] } +&{glStencilMaskSeparate QOpenGLFunctions_4_1_Compatibility::glStencilMaskSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b0b6e0 0xc826b0b760] } +&{glStencilOp QOpenGLFunctions_4_1_Compatibility::glStencilOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b0b960 0xc826b0ba00 0xc826b0ba80] } +&{glStencilOpSeparate QOpenGLFunctions_4_1_Compatibility::glStencilOpSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826b0bce0 0xc826b0bd60 0xc826b0be80 0xc826b0bf20] } +&{glTexBuffer QOpenGLFunctions_4_1_Compatibility::glTexBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826afa160 0xc826afa220 0xc826afa2a0] } +&{glTexCoord1d QOpenGLFunctions_4_1_Compatibility::glTexCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826afa500] } +&{glTexCoord1dv QOpenGLFunctions_4_1_Compatibility::glTexCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826afa700] } +&{glTexCoord1f QOpenGLFunctions_4_1_Compatibility::glTexCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826afa960] } +&{glTexCoord1fv QOpenGLFunctions_4_1_Compatibility::glTexCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826afab00] } +&{glTexCoord1i QOpenGLFunctions_4_1_Compatibility::glTexCoord1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826afad60] } +&{glTexCoord1iv QOpenGLFunctions_4_1_Compatibility::glTexCoord1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826afaf40] } +&{glTexCoord1s QOpenGLFunctions_4_1_Compatibility::glTexCoord1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826afb160] } +&{glTexCoord1sv QOpenGLFunctions_4_1_Compatibility::glTexCoord1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826afb380] } +&{glTexCoord2d QOpenGLFunctions_4_1_Compatibility::glTexCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826afb520 0xc826afb5e0] } +&{glTexCoord2dv QOpenGLFunctions_4_1_Compatibility::glTexCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826afb7a0] } +&{glTexCoord2f QOpenGLFunctions_4_1_Compatibility::glTexCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826afb9c0 0xc826afba60] } +&{glTexCoord2fv QOpenGLFunctions_4_1_Compatibility::glTexCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826afbc20] } +&{glTexCoord2i QOpenGLFunctions_4_1_Compatibility::glTexCoord2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826afbe60 0xc826afbf20] } +&{glTexCoord2iv QOpenGLFunctions_4_1_Compatibility::glTexCoord2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826aea0c0] } +&{glTexCoord2s QOpenGLFunctions_4_1_Compatibility::glTexCoord2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826aea2a0 0xc826aea3a0] } +&{glTexCoord2sv QOpenGLFunctions_4_1_Compatibility::glTexCoord2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826aea580] } +&{glTexCoord3d QOpenGLFunctions_4_1_Compatibility::glTexCoord3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826aea7a0 0xc826aea840 0xc826aea8c0] } +&{glTexCoord3dv QOpenGLFunctions_4_1_Compatibility::glTexCoord3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826aeaae0] } +&{glTexCoord3f QOpenGLFunctions_4_1_Compatibility::glTexCoord3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826aead20 0xc826aeada0 0xc826aeae80] } +&{glTexCoord3fv QOpenGLFunctions_4_1_Compatibility::glTexCoord3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826aeb080] } +&{glTexCoord3i QOpenGLFunctions_4_1_Compatibility::glTexCoord3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826aeb2c0 0xc826aeb360 0xc826aeb440] } +&{glTexCoord3iv QOpenGLFunctions_4_1_Compatibility::glTexCoord3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826aeb600] } +&{glTexCoord3s QOpenGLFunctions_4_1_Compatibility::glTexCoord3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826aeb840 0xc826aeb8c0 0xc826aeb9c0] } +&{glTexCoord3sv QOpenGLFunctions_4_1_Compatibility::glTexCoord3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826aebbc0] } +&{glTexCoord4d QOpenGLFunctions_4_1_Compatibility::glTexCoord4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826aebdc0 0xc826aebe40 0xc826aebf60 0xc826ae4000] } +&{glTexCoord4dv QOpenGLFunctions_4_1_Compatibility::glTexCoord4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826ae4180] } +&{glTexCoord4f QOpenGLFunctions_4_1_Compatibility::glTexCoord4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826ae4300 0xc826ae43c0 0xc826ae4460 0xc826ae4500] } +&{glTexCoord4fv QOpenGLFunctions_4_1_Compatibility::glTexCoord4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826ae4660] } +&{glTexCoord4i QOpenGLFunctions_4_1_Compatibility::glTexCoord4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826ae4820 0xc826ae48c0 0xc826ae4960 0xc826ae49e0] } +&{glTexCoord4iv QOpenGLFunctions_4_1_Compatibility::glTexCoord4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826ae4b60] } +&{glTexCoord4s QOpenGLFunctions_4_1_Compatibility::glTexCoord4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826ae4d00 0xc826ae4da0 0xc826ae4e40 0xc826ae4ee0] } +&{glTexCoord4sv QOpenGLFunctions_4_1_Compatibility::glTexCoord4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826ae5080] } +&{glTexCoordP1ui QOpenGLFunctions_4_1_Compatibility::glTexCoordP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826ae51e0 0xc826ae52c0] } +&{glTexCoordP1uiv QOpenGLFunctions_4_1_Compatibility::glTexCoordP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826ae5420 0xc826ae54c0] } +&{glTexCoordP2ui QOpenGLFunctions_4_1_Compatibility::glTexCoordP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826ae5680 0xc826ae5720] } +&{glTexCoordP2uiv QOpenGLFunctions_4_1_Compatibility::glTexCoordP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826ae58c0 0xc826ae5960] } +&{glTexCoordP3ui QOpenGLFunctions_4_1_Compatibility::glTexCoordP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826ae5ae0 0xc826ae5b80] } +&{glTexCoordP3uiv QOpenGLFunctions_4_1_Compatibility::glTexCoordP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826ae5d20 0xc826ae5dc0] } +&{glTexCoordP4ui QOpenGLFunctions_4_1_Compatibility::glTexCoordP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826ae5f40 0xc826ae5fc0] } +&{glTexCoordP4uiv QOpenGLFunctions_4_1_Compatibility::glTexCoordP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826ada1c0 0xc826ada280] } +&{glTexCoordPointer QOpenGLFunctions_4_1_Compatibility::glTexCoordPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826ada540 0xc826ada600 0xc826ada6c0 0xc826ada760] } +&{glTexEnvf QOpenGLFunctions_4_1_Compatibility::glTexEnvf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826ada9c0 0xc826adaa80 0xc826adab20] } +&{glTexEnvfv QOpenGLFunctions_4_1_Compatibility::glTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826adad40 0xc826adae00 0xc826adaec0] } +&{glTexEnvi QOpenGLFunctions_4_1_Compatibility::glTexEnvi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826adb0e0 0xc826adb1e0 0xc826adb280] } +&{glTexEnviv QOpenGLFunctions_4_1_Compatibility::glTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826adb4c0 0xc826adb540 0xc826adb620] } +&{glTexGend QOpenGLFunctions_4_1_Compatibility::glTexGend commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826adb860 0xc826adb920 0xc826adb9c0] } +&{glTexGendv QOpenGLFunctions_4_1_Compatibility::glTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826adbc00 0xc826adbc80 0xc826adbdc0] } +&{glTexGenf QOpenGLFunctions_4_1_Compatibility::glTexGenf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826adbfe0 0xc826ace060 0xc826ace140] } +&{glTexGenfv QOpenGLFunctions_4_1_Compatibility::glTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826ace340 0xc826ace3e0 0xc826ace4c0] } +&{glTexGeni QOpenGLFunctions_4_1_Compatibility::glTexGeni commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826ace680 0xc826ace760 0xc826ace860] } +&{glTexGeniv QOpenGLFunctions_4_1_Compatibility::glTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826acea40 0xc826aceb20 0xc826acec20] } +&{glTexImage1D QOpenGLFunctions_4_1_Compatibility::glTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826acee40 0xc826acef00 0xc826acefc0 0xc826acf080 0xc826acf180 0xc826acf280 0xc826acf300 0xc826acf3e0] } +&{glTexImage2D QOpenGLFunctions_4_1_Compatibility::glTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826acf620 0xc826acf700 0xc826acf7c0 0xc826acf880 0xc826acf9e0 0xc826acfa80 0xc826acfb20 0xc826acfc40 0xc826acfd60] } +&{glTexImage2DMultisample QOpenGLFunctions_4_1_Compatibility::glTexImage2DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826abc020 0xc826abc0c0 0xc826abc1c0 0xc826abc240 0xc826abc380 0xc826abc420] } +&{glTexImage3D QOpenGLFunctions_4_1_Compatibility::glTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826abc6e0 0xc826abc760 0xc826abc840 0xc826abc920 0xc826abca00 0xc826abcaa0 0xc826abcc00 0xc826abcca0 0xc826abcd80 0xc826abce20] } +&{glTexImage3DMultisample QOpenGLFunctions_4_1_Compatibility::glTexImage3DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826abd120 0xc826abd1c0 0xc826abd2a0 0xc826abd340 0xc826abd460 0xc826abd520 0xc826abd5e0] } +&{glTexParameterIiv QOpenGLFunctions_4_1_Compatibility::glTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826abd900 0xc826abda20 0xc826abdac0] } +&{glTexParameterIuiv QOpenGLFunctions_4_1_Compatibility::glTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826abdd80 0xc826abde00 0xc826abdf00] } +&{glTexParameterf QOpenGLFunctions_4_1_Compatibility::glTexParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826aaa120 0xc826aaa220 0xc826aaa2e0] } +&{glTexParameterfv QOpenGLFunctions_4_1_Compatibility::glTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826aaa4e0 0xc826aaa600 0xc826aaa6a0] } +&{glTexParameteri QOpenGLFunctions_4_1_Compatibility::glTexParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826aaa8e0 0xc826aaa9a0 0xc826aaaa20] } +&{glTexParameteriv QOpenGLFunctions_4_1_Compatibility::glTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826aaac40 0xc826aaad00 0xc826aaae00] } +&{glTexSubImage1D QOpenGLFunctions_4_1_Compatibility::glTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826aaafc0 0xc826aab0a0 0xc826aab1a0 0xc826aab220 0xc826aab320 0xc826aab400 0xc826aab4a0] } +&{glTexSubImage2D QOpenGLFunctions_4_1_Compatibility::glTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826aab680 0xc826aab780 0xc826aab860 0xc826aab8e0 0xc826aaba00 0xc826aaba80 0xc826aabb40 0xc826aabc20 0xc826aabd20] } +&{glTexSubImage3D QOpenGLFunctions_4_1_Compatibility::glTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826aabf00 0xc826aabf80 0xc826a9c0c0 0xc826a9c160 0xc826a9c280 0xc826a9c320 0xc826a9c420 0xc826a9c4a0 0xc826a9c5e0 0xc826a9c680 0xc826a9c740] } +&{glTransformFeedbackVaryings QOpenGLFunctions_4_1_Compatibility::glTransformFeedbackVaryings commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826a9c9e0 0xc826a9ca60 0xc826a9cbc0 0xc826a9ccc0] } +&{glTranslated QOpenGLFunctions_4_1_Compatibility::glTranslated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826a9cf00 0xc826a9cf80 0xc826a9d000] } +&{glTranslatef QOpenGLFunctions_4_1_Compatibility::glTranslatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826a9d240 0xc826a9d340 0xc826a9d400] } +&{glUniform1d QOpenGLFunctions_4_1_Compatibility::glUniform1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826a9d5c0 0xc826a9d6e0] } +&{glUniform1dv QOpenGLFunctions_4_1_Compatibility::glUniform1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826a9d880 0xc826a9d940 0xc826a9da20] } +&{glUniform1f QOpenGLFunctions_4_1_Compatibility::glUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826a9dc20 0xc826a9dd40] } +&{glUniform1fv QOpenGLFunctions_4_1_Compatibility::glUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826a9df20 0xc826a9dfc0 0xc826a8e080] } +&{glUniform1i QOpenGLFunctions_4_1_Compatibility::glUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826a8e260 0xc826a8e320] } +&{glUniform1iv QOpenGLFunctions_4_1_Compatibility::glUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826a8e520 0xc826a8e620 0xc826a8e6a0] } +&{glUniform1ui QOpenGLFunctions_4_1_Compatibility::glUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826a8e8e0 0xc826a8e960] } +&{glUniform1uiv QOpenGLFunctions_4_1_Compatibility::glUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826a8eb60 0xc826a8ec60 0xc826a8ed20] } +&{glUniform2d QOpenGLFunctions_4_1_Compatibility::glUniform2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826a8eec0 0xc826a8efe0 0xc826a8f080] } +&{glUniform2dv QOpenGLFunctions_4_1_Compatibility::glUniform2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826a8f2a0 0xc826a8f320 0xc826a8f440] } +&{glUniform2f QOpenGLFunctions_4_1_Compatibility::glUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826a8f600 0xc826a8f700 0xc826a8f7e0] } +&{glUniform2fv QOpenGLFunctions_4_1_Compatibility::glUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826a8f9c0 0xc826a8fa40 0xc826a8fb40] } +&{glUniform2i QOpenGLFunctions_4_1_Compatibility::glUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc826a8fd20 0xc826a8fdc0 0xc826a8fec0] } +&{glUniform2iv QOpenGLFunctions_4_1_Compatibility::glUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820b2a040 0xc820b2a100 0xc820b2a1a0] } +&{glUniform2ui QOpenGLFunctions_4_1_Compatibility::glUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820b2a340 0xc820b2a3e0 0xc820b2a460] } +&{glUniform2uiv QOpenGLFunctions_4_1_Compatibility::glUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820b2a600 0xc820b2a6a0 0xc820b2a740] } +&{glUniform3d QOpenGLFunctions_4_1_Compatibility::glUniform3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820b2a8e0 0xc820b2a960 0xc820b2aa40 0xc820b2aae0] } +&{glUniform3dv QOpenGLFunctions_4_1_Compatibility::glUniform3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820b2ac60 0xc820b2ad00 0xc820b2adc0] } +&{glUniform3f QOpenGLFunctions_4_1_Compatibility::glUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820b2af60 0xc820b2b000 0xc820b2b0a0 0xc820b2b120] } +&{glUniform3fv QOpenGLFunctions_4_1_Compatibility::glUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820b2b2c0 0xc820b2b340 0xc820b2b420] } +&{glUniform3i QOpenGLFunctions_4_1_Compatibility::glUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820b2b5a0 0xc820b2b640 0xc820b2b700 0xc820b2b7c0] } +&{glUniform3iv QOpenGLFunctions_4_1_Compatibility::glUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820b2b920 0xc820b2ba00 0xc820b2baa0] } +&{glUniform3ui QOpenGLFunctions_4_1_Compatibility::glUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820b2bc00 0xc820b2bce0 0xc820b2bd60 0xc820b2bde0] } +&{glUniform3uiv QOpenGLFunctions_4_1_Compatibility::glUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820b2bfc0 0xc820994040 0xc8209940c0] } +&{glUniform4d QOpenGLFunctions_4_1_Compatibility::glUniform4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8209942a0 0xc820994320 0xc8209943c0 0xc820994480 0xc820994560] } +&{glUniform4dv QOpenGLFunctions_4_1_Compatibility::glUniform4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820994700 0xc8209947a0 0xc820994840] } +&{glUniform4f QOpenGLFunctions_4_1_Compatibility::glUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8209949e0 0xc820994a80 0xc820994b40 0xc820994bc0 0xc820994c80] } +&{glUniform4fv QOpenGLFunctions_4_1_Compatibility::glUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820994e40 0xc820994ec0 0xc820994f60] } +&{glUniform4i QOpenGLFunctions_4_1_Compatibility::glUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820995120 0xc8209951a0 0xc820995260 0xc820995300 0xc8209953a0] } +&{glUniform4iv QOpenGLFunctions_4_1_Compatibility::glUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820995540 0xc8209955e0 0xc820995660] } +&{glUniform4ui QOpenGLFunctions_4_1_Compatibility::glUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820995820 0xc8209958a0 0xc820995960 0xc820995a20 0xc820995ae0] } +&{glUniform4uiv QOpenGLFunctions_4_1_Compatibility::glUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820995c40 0xc820995d00 0xc820995da0] } +&{glUniformBlockBinding QOpenGLFunctions_4_1_Compatibility::glUniformBlockBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820995f80 0xc8208dc060 0xc8208dc1a0] } +&{glUniformMatrix2dv QOpenGLFunctions_4_1_Compatibility::glUniformMatrix2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8208dc400 0xc8208dc4a0 0xc8208dc520 0xc8208dc5e0] } +&{glUniformMatrix2fv QOpenGLFunctions_4_1_Compatibility::glUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8208dc7e0 0xc8208dc880 0xc8208dc900 0xc8208dc9c0] } +&{glUniformMatrix2x3dv QOpenGLFunctions_4_1_Compatibility::glUniformMatrix2x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8208dcbe0 0xc8208dcc60 0xc8208dcce0 0xc8208dcdc0] } +&{glUniformMatrix2x3fv QOpenGLFunctions_4_1_Compatibility::glUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8208dcfc0 0xc8208dd080 0xc8208dd120 0xc8208dd1c0] } +&{glUniformMatrix2x4dv QOpenGLFunctions_4_1_Compatibility::glUniformMatrix2x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8208dd3e0 0xc8208dd480 0xc8208dd500 0xc8208dd5a0] } +&{glUniformMatrix2x4fv QOpenGLFunctions_4_1_Compatibility::glUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8208dd7c0 0xc8208dd880 0xc8208dd920 0xc8208dd9c0] } +&{glUniformMatrix3dv QOpenGLFunctions_4_1_Compatibility::glUniformMatrix3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8208ddbe0 0xc8208ddc80 0xc8208ddd00 0xc8208ddda0] } +&{glUniformMatrix3fv QOpenGLFunctions_4_1_Compatibility::glUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc8208ddfc0 0xc820aa0080 0xc820aa0100 0xc820aa0180] } +&{glUniformMatrix3x2dv QOpenGLFunctions_4_1_Compatibility::glUniformMatrix3x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820aa03e0 0xc820aa0460 0xc820aa0500 0xc820aa05c0] } +&{glUniformMatrix3x2fv QOpenGLFunctions_4_1_Compatibility::glUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820aa07c0 0xc820aa0880 0xc820aa0920 0xc820aa09c0] } +&{glUniformMatrix3x4dv QOpenGLFunctions_4_1_Compatibility::glUniformMatrix3x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820aa0ba0 0xc820aa0c60 0xc820aa0d00 0xc820aa0d80] } +&{glUniformMatrix3x4fv QOpenGLFunctions_4_1_Compatibility::glUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820aa0fa0 0xc820aa1060 0xc820aa1100 0xc820aa11a0] } +&{glUniformMatrix4dv QOpenGLFunctions_4_1_Compatibility::glUniformMatrix4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820aa13c0 0xc820aa1440 0xc820aa14c0 0xc820aa15a0] } +&{glUniformMatrix4fv QOpenGLFunctions_4_1_Compatibility::glUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820aa17a0 0xc820aa1840 0xc820aa18e0 0xc820aa1960] } +&{glUniformMatrix4x2dv QOpenGLFunctions_4_1_Compatibility::glUniformMatrix4x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820aa1b80 0xc820aa1c20 0xc820aa1ca0 0xc820aa1d40] } +&{glUniformMatrix4x2fv QOpenGLFunctions_4_1_Compatibility::glUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820aa1f80 0xc820a16000 0xc820a160a0 0xc820a16180] } +&{glUniformMatrix4x3dv QOpenGLFunctions_4_1_Compatibility::glUniformMatrix4x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820a16360 0xc820a16440 0xc820a164e0 0xc820a16580] } +&{glUniformMatrix4x3fv QOpenGLFunctions_4_1_Compatibility::glUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820a167a0 0xc820a16840 0xc820a168c0 0xc820a16960] } +&{glUniformSubroutinesuiv QOpenGLFunctions_4_1_Compatibility::glUniformSubroutinesuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820a16b80 0xc820a16c20 0xc820a16d00] } +&{glUnmapBuffer QOpenGLFunctions_4_1_Compatibility::glUnmapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false GLboolean [0xc820a16e60] } +&{glUseProgram QOpenGLFunctions_4_1_Compatibility::glUseProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820a17000] } +&{glUseProgramStages QOpenGLFunctions_4_1_Compatibility::glUseProgramStages commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820a17220 0xc820a172c0 0xc820a17340] } +&{glValidateProgram QOpenGLFunctions_4_1_Compatibility::glValidateProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820a17560] } +&{glValidateProgramPipeline QOpenGLFunctions_4_1_Compatibility::glValidateProgramPipeline commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820a17780] } +&{glVertex2d QOpenGLFunctions_4_1_Compatibility::glVertex2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820a17920 0xc820a179c0] } +&{glVertex2dv QOpenGLFunctions_4_1_Compatibility::glVertex2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820a17b60] } +&{glVertex2f QOpenGLFunctions_4_1_Compatibility::glVertex2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820a17cc0 0xc820a17da0] } +&{glVertex2fv QOpenGLFunctions_4_1_Compatibility::glVertex2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820a17f20] } +&{glVertex2i QOpenGLFunctions_4_1_Compatibility::glVertex2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cda0e0 0xc820cda160] } +&{glVertex2iv QOpenGLFunctions_4_1_Compatibility::glVertex2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cda320] } +&{glVertex2s QOpenGLFunctions_4_1_Compatibility::glVertex2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cda4c0 0xc820cda540] } +&{glVertex2sv QOpenGLFunctions_4_1_Compatibility::glVertex2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cda6e0] } +&{glVertex3d QOpenGLFunctions_4_1_Compatibility::glVertex3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cda880 0xc820cda900 0xc820cda980] } +&{glVertex3dv QOpenGLFunctions_4_1_Compatibility::glVertex3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cdab60] } +&{glVertex3f QOpenGLFunctions_4_1_Compatibility::glVertex3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cdacc0 0xc820cdad80 0xc820cdae00] } +&{glVertex3fv QOpenGLFunctions_4_1_Compatibility::glVertex3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cdaf80] } +&{glVertex3i QOpenGLFunctions_4_1_Compatibility::glVertex3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cdb120 0xc820cdb1e0 0xc820cdb260] } +&{glVertex3iv QOpenGLFunctions_4_1_Compatibility::glVertex3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cdb420] } +&{glVertex3s QOpenGLFunctions_4_1_Compatibility::glVertex3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cdb5a0 0xc820cdb620 0xc820cdb700] } +&{glVertex3sv QOpenGLFunctions_4_1_Compatibility::glVertex3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cdb880] } +&{glVertex4d QOpenGLFunctions_4_1_Compatibility::glVertex4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cdba20 0xc820cdbaa0 0xc820cdbb60 0xc820cdbbe0] } +&{glVertex4dv QOpenGLFunctions_4_1_Compatibility::glVertex4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cdbd60] } +&{glVertex4f QOpenGLFunctions_4_1_Compatibility::glVertex4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cdbf00 0xc820cdbf80 0xc820b9e080 0xc820b9e100] } +&{glVertex4fv QOpenGLFunctions_4_1_Compatibility::glVertex4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820b9e280] } +&{glVertex4i QOpenGLFunctions_4_1_Compatibility::glVertex4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820b9e420 0xc820b9e4e0 0xc820b9e560 0xc820b9e5e0] } +&{glVertex4iv QOpenGLFunctions_4_1_Compatibility::glVertex4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820b9e7c0] } +&{glVertex4s QOpenGLFunctions_4_1_Compatibility::glVertex4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820b9e960 0xc820b9e9e0 0xc820b9ea80 0xc820b9eb20] } +&{glVertex4sv QOpenGLFunctions_4_1_Compatibility::glVertex4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820b9ecc0] } +&{glVertexAttrib1d QOpenGLFunctions_4_1_Compatibility::glVertexAttrib1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820b9ee60 0xc820b9ef00] } +&{glVertexAttrib1dv QOpenGLFunctions_4_1_Compatibility::glVertexAttrib1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820b9f100 0xc820b9f1a0] } +&{glVertexAttrib1f QOpenGLFunctions_4_1_Compatibility::glVertexAttrib1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820b9f340 0xc820b9f3e0] } +&{glVertexAttrib1fv QOpenGLFunctions_4_1_Compatibility::glVertexAttrib1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820b9f600 0xc820b9f6a0] } +&{glVertexAttrib1s QOpenGLFunctions_4_1_Compatibility::glVertexAttrib1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820b9f840 0xc820b9f8c0] } +&{glVertexAttrib1sv QOpenGLFunctions_4_1_Compatibility::glVertexAttrib1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820b9fb00 0xc820b9fb80] } +&{glVertexAttrib2d QOpenGLFunctions_4_1_Compatibility::glVertexAttrib2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820b9fd20 0xc820b9fdc0 0xc820b9fe40] } +&{glVertexAttrib2dv QOpenGLFunctions_4_1_Compatibility::glVertexAttrib2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820d9e0a0 0xc820d9e180] } +&{glVertexAttrib2f QOpenGLFunctions_4_1_Compatibility::glVertexAttrib2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820d9e380 0xc820d9e420 0xc820d9e520] } +&{glVertexAttrib2fv QOpenGLFunctions_4_1_Compatibility::glVertexAttrib2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820d9e7e0 0xc820d9e8a0] } +&{glVertexAttrib2s QOpenGLFunctions_4_1_Compatibility::glVertexAttrib2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820d9ea80 0xc820d9eb60 0xc820d9ec20] } +&{glVertexAttrib2sv QOpenGLFunctions_4_1_Compatibility::glVertexAttrib2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820d9ef00 0xc820d9efa0] } +&{glVertexAttrib3d QOpenGLFunctions_4_1_Compatibility::glVertexAttrib3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820d9f180 0xc820d9f260 0xc820d9f320 0xc820d9f400] } +&{glVertexAttrib3dv QOpenGLFunctions_4_1_Compatibility::glVertexAttrib3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820d9f660 0xc820d9f720] } +&{glVertexAttrib3f QOpenGLFunctions_4_1_Compatibility::glVertexAttrib3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820d9f940 0xc820d9fa20 0xc820d9fac0 0xc820d9fbc0] } +&{glVertexAttrib3fv QOpenGLFunctions_4_1_Compatibility::glVertexAttrib3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820d9fe00 0xc820d9ff00] } +&{glVertexAttrib3s QOpenGLFunctions_4_1_Compatibility::glVertexAttrib3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cbc0c0 0xc820cbc1c0 0xc820cbc260 0xc820cbc300] } +&{glVertexAttrib3sv QOpenGLFunctions_4_1_Compatibility::glVertexAttrib3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cbc5e0 0xc820cbc680] } +&{glVertexAttrib4Nbv QOpenGLFunctions_4_1_Compatibility::glVertexAttrib4Nbv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cbc900 0xc820cbca00] } +&{glVertexAttrib4Niv QOpenGLFunctions_4_1_Compatibility::glVertexAttrib4Niv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cbcc80 0xc820cbcd80] } +&{glVertexAttrib4Nsv QOpenGLFunctions_4_1_Compatibility::glVertexAttrib4Nsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cbd000 0xc820cbd0a0] } +&{glVertexAttrib4Nub QOpenGLFunctions_4_1_Compatibility::glVertexAttrib4Nub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cbd340 0xc820cbd3e0 0xc820cbd4e0 0xc820cbd5c0 0xc820cbd680] } +&{glVertexAttrib4Nubv QOpenGLFunctions_4_1_Compatibility::glVertexAttrib4Nubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cbd900 0xc820cbd9e0] } +&{glVertexAttrib4Nuiv QOpenGLFunctions_4_1_Compatibility::glVertexAttrib4Nuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cbdc80 0xc820cbdd80] } +&{glVertexAttrib4Nusv QOpenGLFunctions_4_1_Compatibility::glVertexAttrib4Nusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cc2000 0xc820cc2080] } +&{glVertexAttrib4bv QOpenGLFunctions_4_1_Compatibility::glVertexAttrib4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cc22a0 0xc820cc2340] } +&{glVertexAttrib4d QOpenGLFunctions_4_1_Compatibility::glVertexAttrib4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cc24a0 0xc820cc2540 0xc820cc25e0 0xc820cc26a0 0xc820cc2760] } +&{glVertexAttrib4dv QOpenGLFunctions_4_1_Compatibility::glVertexAttrib4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cc2960 0xc820cc2a20] } +&{glVertexAttrib4f QOpenGLFunctions_4_1_Compatibility::glVertexAttrib4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cc2ba0 0xc820cc2c40 0xc820cc2ce0 0xc820cc2d60 0xc820cc2e60] } +&{glVertexAttrib4fv QOpenGLFunctions_4_1_Compatibility::glVertexAttrib4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cc3060 0xc820cc3100] } +&{glVertexAttrib4iv QOpenGLFunctions_4_1_Compatibility::glVertexAttrib4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cc3300 0xc820cc3380] } +&{glVertexAttrib4s QOpenGLFunctions_4_1_Compatibility::glVertexAttrib4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cc3540 0xc820cc35e0 0xc820cc3660 0xc820cc3720 0xc820cc37c0] } +&{glVertexAttrib4sv QOpenGLFunctions_4_1_Compatibility::glVertexAttrib4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cc3a00 0xc820cc3a80] } +&{glVertexAttrib4ubv QOpenGLFunctions_4_1_Compatibility::glVertexAttrib4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cc3c80 0xc820cc3d20] } +&{glVertexAttrib4uiv QOpenGLFunctions_4_1_Compatibility::glVertexAttrib4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820cc3f60 0xc820cc3fe0] } +&{glVertexAttrib4usv QOpenGLFunctions_4_1_Compatibility::glVertexAttrib4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820e92240 0xc820e92360] } +&{glVertexAttribDivisor QOpenGLFunctions_4_1_Compatibility::glVertexAttribDivisor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820e925c0 0xc820e92660] } +&{glVertexAttribI1i QOpenGLFunctions_4_1_Compatibility::glVertexAttribI1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820e92900 0xc820e92a20] } +&{glVertexAttribI1iv QOpenGLFunctions_4_1_Compatibility::glVertexAttribI1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820e92c60 0xc820e92d80] } +&{glVertexAttribI1ui QOpenGLFunctions_4_1_Compatibility::glVertexAttribI1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820e92fe0 0xc820e930a0] } +&{glVertexAttribI1uiv QOpenGLFunctions_4_1_Compatibility::glVertexAttribI1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820e93340 0xc820e933e0] } +&{glVertexAttribI2i QOpenGLFunctions_4_1_Compatibility::glVertexAttribI2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820e936e0 0xc820e937a0 0xc820e93820] } +&{glVertexAttribI2iv QOpenGLFunctions_4_1_Compatibility::glVertexAttribI2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820e93ae0 0xc820e93ba0] } +&{glVertexAttribI2ui QOpenGLFunctions_4_1_Compatibility::glVertexAttribI2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820e93e40 0xc820e93ee0 0xc820ea0040] } +&{glVertexAttribI2uiv QOpenGLFunctions_4_1_Compatibility::glVertexAttribI2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ea02a0 0xc820ea03c0] } +&{glVertexAttribI3i QOpenGLFunctions_4_1_Compatibility::glVertexAttribI3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ea0640 0xc820ea0740 0xc820ea0820 0xc820ea08a0] } +&{glVertexAttribI3iv QOpenGLFunctions_4_1_Compatibility::glVertexAttribI3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ea0b60 0xc820ea0c40] } +&{glVertexAttribI3ui QOpenGLFunctions_4_1_Compatibility::glVertexAttribI3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ea0f00 0xc820ea0fa0 0xc820ea1020 0xc820ea10c0] } +&{glVertexAttribI3uiv QOpenGLFunctions_4_1_Compatibility::glVertexAttribI3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ea1380 0xc820ea1460] } +&{glVertexAttribI4bv QOpenGLFunctions_4_1_Compatibility::glVertexAttribI4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ea1740 0xc820ea17e0] } +&{glVertexAttribI4i QOpenGLFunctions_4_1_Compatibility::glVertexAttribI4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ea1ae0 0xc820ea1b80 0xc820ea1c20 0xc820ea1d40 0xc820ea1e20] } +&{glVertexAttribI4iv QOpenGLFunctions_4_1_Compatibility::glVertexAttribI4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820eae0c0 0xc820eae160] } +&{glVertexAttribI4sv QOpenGLFunctions_4_1_Compatibility::glVertexAttribI4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820eae400 0xc820eae4a0] } +&{glVertexAttribI4ubv QOpenGLFunctions_4_1_Compatibility::glVertexAttribI4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820eae780 0xc820eae8a0] } +&{glVertexAttribI4ui QOpenGLFunctions_4_1_Compatibility::glVertexAttribI4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820eaeb20 0xc820eaec20 0xc820eaece0 0xc820eaed60 0xc820eaeea0] } +&{glVertexAttribI4uiv QOpenGLFunctions_4_1_Compatibility::glVertexAttribI4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820eaf180 0xc820eaf200] } +&{glVertexAttribI4usv QOpenGLFunctions_4_1_Compatibility::glVertexAttribI4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820eaf480 0xc820eaf580] } +&{glVertexAttribIPointer QOpenGLFunctions_4_1_Compatibility::glVertexAttribIPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820eaf840 0xc820eaf940 0xc820eaf9c0 0xc820eafa60 0xc820eafbe0] } +&{glVertexAttribL1d QOpenGLFunctions_4_1_Compatibility::glVertexAttribL1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820eafe60 0xc820eaff40] } +&{glVertexAttribL1dv QOpenGLFunctions_4_1_Compatibility::glVertexAttribL1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820dc4160 0xc820dc4200] } +&{glVertexAttribL2d QOpenGLFunctions_4_1_Compatibility::glVertexAttribL2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820dc4400 0xc820dc44a0 0xc820dc4580] } +&{glVertexAttribL2dv QOpenGLFunctions_4_1_Compatibility::glVertexAttribL2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820dc4780 0xc820dc4820] } +&{glVertexAttribL3d QOpenGLFunctions_4_1_Compatibility::glVertexAttribL3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820dc4a40 0xc820dc4ac0 0xc820dc4b60 0xc820dc4c40] } +&{glVertexAttribL3dv QOpenGLFunctions_4_1_Compatibility::glVertexAttribL3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820dc4e40 0xc820dc4ee0] } +&{glVertexAttribL4d QOpenGLFunctions_4_1_Compatibility::glVertexAttribL4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820dc5100 0xc820dc5180 0xc820dc5220 0xc820dc5300 0xc820dc53a0] } +&{glVertexAttribL4dv QOpenGLFunctions_4_1_Compatibility::glVertexAttribL4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820dc55c0 0xc820dc5640] } +&{glVertexAttribLPointer QOpenGLFunctions_4_1_Compatibility::glVertexAttribLPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820dc5880 0xc820dc5900 0xc820dc59e0 0xc820dc5a80 0xc820dc5b20] } +&{glVertexAttribP1ui QOpenGLFunctions_4_1_Compatibility::glVertexAttribP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820dc5d60 0xc820dc5de0 0xc820dc5ec0 0xc820dc5f60] } +&{glVertexAttribP1uiv QOpenGLFunctions_4_1_Compatibility::glVertexAttribP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ace140 0xc820ace1e0 0xc820ace260 0xc820ace320] } +&{glVertexAttribP2ui QOpenGLFunctions_4_1_Compatibility::glVertexAttribP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ace520 0xc820ace5c0 0xc820ace640 0xc820ace700] } +&{glVertexAttribP2uiv QOpenGLFunctions_4_1_Compatibility::glVertexAttribP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ace920 0xc820ace9c0 0xc820acea40 0xc820aceae0] } +&{glVertexAttribP3ui QOpenGLFunctions_4_1_Compatibility::glVertexAttribP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820acece0 0xc820acedc0 0xc820acee60 0xc820aceee0] } +&{glVertexAttribP3uiv QOpenGLFunctions_4_1_Compatibility::glVertexAttribP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820acf100 0xc820acf180 0xc820acf240 0xc820acf2c0] } +&{glVertexAttribP4ui QOpenGLFunctions_4_1_Compatibility::glVertexAttribP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820acf4c0 0xc820acf5a0 0xc820acf620 0xc820acf6a0] } +&{glVertexAttribP4uiv QOpenGLFunctions_4_1_Compatibility::glVertexAttribP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820acf880 0xc820acf920 0xc820acf9a0 0xc820acfa20] } +&{glVertexAttribPointer QOpenGLFunctions_4_1_Compatibility::glVertexAttribPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820acfc60 0xc820acfd00 0xc820acfd80 0xc820acfe40 0xc820acfee0 0xc820acff80] } +&{glVertexP2ui QOpenGLFunctions_4_1_Compatibility::glVertexP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ed21e0 0xc820ed22a0] } +&{glVertexP2uiv QOpenGLFunctions_4_1_Compatibility::glVertexP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ed2480 0xc820ed2580] } +&{glVertexP3ui QOpenGLFunctions_4_1_Compatibility::glVertexP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ed2760 0xc820ed2860] } +&{glVertexP3uiv QOpenGLFunctions_4_1_Compatibility::glVertexP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ed2a40 0xc820ed2b20] } +&{glVertexP4ui QOpenGLFunctions_4_1_Compatibility::glVertexP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ed2ce0 0xc820ed2d80] } +&{glVertexP4uiv QOpenGLFunctions_4_1_Compatibility::glVertexP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ed2fe0 0xc820ed3060] } +&{glVertexPointer QOpenGLFunctions_4_1_Compatibility::glVertexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ed3280 0xc820ed3340 0xc820ed3440 0xc820ed3520] } +&{glViewport QOpenGLFunctions_4_1_Compatibility::glViewport commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ed36e0 0xc820ed37a0 0xc820ed3820 0xc820ed3940] } +&{glViewportArrayv QOpenGLFunctions_4_1_Compatibility::glViewportArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ed3ae0 0xc820ed3be0 0xc820ed3c80] } +&{glViewportIndexedf QOpenGLFunctions_4_1_Compatibility::glViewportIndexedf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ed3f40 0xc820ed3fe0 0xc820ee0080 0xc820ee0120 0xc820ee0280] } +&{glViewportIndexedfv QOpenGLFunctions_4_1_Compatibility::glViewportIndexedfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ee0520 0xc820ee05c0] } +&{glWaitSync QOpenGLFunctions_4_1_Compatibility::glWaitSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ee07c0 0xc820ee0860 0xc820ee0980] } +&{glWindowPos2d QOpenGLFunctions_4_1_Compatibility::glWindowPos2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ee0b40 0xc820ee0c00] } +&{glWindowPos2dv QOpenGLFunctions_4_1_Compatibility::glWindowPos2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ee0dc0] } +&{glWindowPos2f QOpenGLFunctions_4_1_Compatibility::glWindowPos2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ee0fe0 0xc820ee10c0] } +&{glWindowPos2fv QOpenGLFunctions_4_1_Compatibility::glWindowPos2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ee12e0] } +&{glWindowPos2i QOpenGLFunctions_4_1_Compatibility::glWindowPos2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ee14c0 0xc820ee1580] } +&{glWindowPos2iv QOpenGLFunctions_4_1_Compatibility::glWindowPos2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ee1780] } +&{glWindowPos2s QOpenGLFunctions_4_1_Compatibility::glWindowPos2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ee19c0 0xc820ee1a60] } +&{glWindowPos2sv QOpenGLFunctions_4_1_Compatibility::glWindowPos2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ee1c80] } +&{glWindowPos3d QOpenGLFunctions_4_1_Compatibility::glWindowPos3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820ee1ec0 0xc820ee1f60 0xc820dc6020] } +&{glWindowPos3dv QOpenGLFunctions_4_1_Compatibility::glWindowPos3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820dc6220] } +&{glWindowPos3f QOpenGLFunctions_4_1_Compatibility::glWindowPos3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820dc6460 0xc820dc64e0 0xc820dc6580] } +&{glWindowPos3fv QOpenGLFunctions_4_1_Compatibility::glWindowPos3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820dc67e0] } +&{glWindowPos3i QOpenGLFunctions_4_1_Compatibility::glWindowPos3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820dc69e0 0xc820dc6ac0 0xc820dc6bc0] } +&{glWindowPos3iv QOpenGLFunctions_4_1_Compatibility::glWindowPos3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820dc6d80] } +&{glWindowPos3s QOpenGLFunctions_4_1_Compatibility::glWindowPos3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820dc7000 0xc820dc7080 0xc820dc7120] } +&{glWindowPos3sv QOpenGLFunctions_4_1_Compatibility::glWindowPos3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_compatibility.h non plain false false void [0xc820dc7360] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions_4_1_Core.txt b/internal/binding/dump/QtGui/QOpenGLFunctions_4_1_Core.txt new file mode 100755 index 00000000..45067f04 --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions_4_1_Core.txt @@ -0,0 +1,460 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions_4_1_Core QOpenGLFunctions_4_1_Core::QOpenGLFunctions_4_1_Core commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.cpp non constructor false false [] } +&{initializeOpenGLFunctions QOpenGLFunctions_4_1_Core::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.cpp impure plain false false bool [] } +&{~QOpenGLFunctions_4_1_Core QOpenGLFunctions_4_1_Core::~QOpenGLFunctions_4_1_Core commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.cpp non destructor false false [] } +&{glActiveShaderProgram QOpenGLFunctions_4_1_Core::glActiveShaderProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822b3eda0 0xc822b3ee20] } +&{glActiveTexture QOpenGLFunctions_4_1_Core::glActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822b3ef80] } +&{glAttachShader QOpenGLFunctions_4_1_Core::glAttachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822b3f0e0 0xc822b3f160] } +&{glBeginConditionalRender QOpenGLFunctions_4_1_Core::glBeginConditionalRender commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822b3f340 0xc822b3f3c0] } +&{glBeginQuery QOpenGLFunctions_4_1_Core::glBeginQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822b3f520 0xc822b3f5a0] } +&{glBeginQueryIndexed QOpenGLFunctions_4_1_Core::glBeginQueryIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822b3f760 0xc822b3f7e0 0xc822b3f860] } +&{glBeginTransformFeedback QOpenGLFunctions_4_1_Core::glBeginTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822b3fa20] } +&{glBindAttribLocation QOpenGLFunctions_4_1_Core::glBindAttribLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822b3fbe0 0xc822b3fc60 0xc822b3fce0] } +&{glBindBuffer QOpenGLFunctions_4_1_Core::glBindBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822b3fe40 0xc822b3fec0] } +&{glBindBufferBase QOpenGLFunctions_4_1_Core::glBindBufferBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822b52020 0xc822b520a0 0xc822b52120] } +&{glBindBufferRange QOpenGLFunctions_4_1_Core::glBindBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822b522e0 0xc822b52360 0xc822b523e0 0xc822b52460 0xc822b52500] } +&{glBindFragDataLocation QOpenGLFunctions_4_1_Core::glBindFragDataLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822b526e0 0xc822b52760 0xc822b527e0] } +&{glBindFragDataLocationIndexed QOpenGLFunctions_4_1_Core::glBindFragDataLocationIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822b529a0 0xc822b52a20 0xc822b52aa0 0xc822b52b20] } +&{glBindFramebuffer QOpenGLFunctions_4_1_Core::glBindFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822b52ce0 0xc822b52d60] } +&{glBindProgramPipeline QOpenGLFunctions_4_1_Core::glBindProgramPipeline commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822b52f20] } +&{glBindRenderbuffer QOpenGLFunctions_4_1_Core::glBindRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822b530e0 0xc822b53160] } +&{glBindSampler QOpenGLFunctions_4_1_Core::glBindSampler commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822b532c0 0xc822b53340] } +&{glBindTexture QOpenGLFunctions_4_1_Core::glBindTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822b534a0 0xc822b53520] } +&{glBindTransformFeedback QOpenGLFunctions_4_1_Core::glBindTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822b536e0 0xc822b53760] } +&{glBindVertexArray QOpenGLFunctions_4_1_Core::glBindVertexArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822b53920] } +&{glBlendColor QOpenGLFunctions_4_1_Core::glBlendColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822b53a80 0xc822b53b00 0xc822b53b80 0xc822b53c00] } +&{glBlendEquation QOpenGLFunctions_4_1_Core::glBlendEquation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822b53d60] } +&{glBlendEquationSeparate QOpenGLFunctions_4_1_Core::glBlendEquationSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822b53f20 0xc822b53fa0] } +&{glBlendEquationSeparatei QOpenGLFunctions_4_1_Core::glBlendEquationSeparatei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82253e160 0xc82253e1e0 0xc82253e260] } +&{glBlendEquationi QOpenGLFunctions_4_1_Core::glBlendEquationi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82253e3c0 0xc82253e440] } +&{glBlendFunc QOpenGLFunctions_4_1_Core::glBlendFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82253e5a0 0xc82253e620] } +&{glBlendFuncSeparate QOpenGLFunctions_4_1_Core::glBlendFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82253e7e0 0xc82253e860 0xc82253e8e0 0xc82253e960] } +&{glBlendFuncSeparatei QOpenGLFunctions_4_1_Core::glBlendFuncSeparatei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82253eb40 0xc82253ebc0 0xc82253ec40 0xc82253ecc0 0xc82253ed60] } +&{glBlendFunci QOpenGLFunctions_4_1_Core::glBlendFunci commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82253eec0 0xc82253ef40 0xc82253efc0] } +&{glBlitFramebuffer QOpenGLFunctions_4_1_Core::glBlitFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82253f180 0xc82253f200 0xc82253f280 0xc82253f300 0xc82253f3a0 0xc82253f420 0xc82253f4a0 0xc82253f520 0xc82253f5c0 0xc82253f640] } +&{glBufferData QOpenGLFunctions_4_1_Core::glBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82253f7a0 0xc82253f820 0xc82253f8a0 0xc82253f920] } +&{glBufferSubData QOpenGLFunctions_4_1_Core::glBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82253fa80 0xc82253fb00 0xc82253fb80 0xc82253fc00] } +&{glCheckFramebufferStatus QOpenGLFunctions_4_1_Core::glCheckFramebufferStatus commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLenum [0xc82253fdc0] } +&{glClampColor QOpenGLFunctions_4_1_Core::glClampColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82253ff20 0xc82253ffa0] } +&{glClear QOpenGLFunctions_4_1_Core::glClear commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82254e120] } +&{glClearBufferfi QOpenGLFunctions_4_1_Core::glClearBufferfi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82254e280 0xc82254e300 0xc82254e380 0xc82254e400] } +&{glClearBufferfv QOpenGLFunctions_4_1_Core::glClearBufferfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82254e560 0xc82254e5e0 0xc82254e660] } +&{glClearBufferiv QOpenGLFunctions_4_1_Core::glClearBufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82254e7c0 0xc82254e840 0xc82254e8c0] } +&{glClearBufferuiv QOpenGLFunctions_4_1_Core::glClearBufferuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82254ea20 0xc82254eaa0 0xc82254eb20] } +&{glClearColor QOpenGLFunctions_4_1_Core::glClearColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82254ec80 0xc82254ed00 0xc82254ed80 0xc82254ee00] } +&{glClearDepth QOpenGLFunctions_4_1_Core::glClearDepth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82254ef60] } +&{glClearDepthf QOpenGLFunctions_4_1_Core::glClearDepthf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82254f0e0] } +&{glClearStencil QOpenGLFunctions_4_1_Core::glClearStencil commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82254f260] } +&{glClientWaitSync QOpenGLFunctions_4_1_Core::glClientWaitSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLenum [0xc82254f3c0 0xc82254f440 0xc82254f4c0] } +&{glColorMask QOpenGLFunctions_4_1_Core::glColorMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82254f620 0xc82254f6a0 0xc82254f720 0xc82254f7a0] } +&{glColorMaski QOpenGLFunctions_4_1_Core::glColorMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82254f900 0xc82254f980 0xc82254fa00 0xc82254fa80 0xc82254fb20] } +&{glColorP3ui QOpenGLFunctions_4_1_Core::glColorP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82254fc80 0xc82254fd00] } +&{glColorP3uiv QOpenGLFunctions_4_1_Core::glColorP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82254fe60 0xc82254fee0] } +&{glColorP4ui QOpenGLFunctions_4_1_Core::glColorP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82255e040 0xc82255e0c0] } +&{glColorP4uiv QOpenGLFunctions_4_1_Core::glColorP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82255e220 0xc82255e2a0] } +&{glCompileShader QOpenGLFunctions_4_1_Core::glCompileShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82255e400] } +&{glCompressedTexImage1D QOpenGLFunctions_4_1_Core::glCompressedTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82255e5c0 0xc82255e640 0xc82255e6c0 0xc82255e740 0xc82255e7e0 0xc82255e860 0xc82255e8e0] } +&{glCompressedTexImage2D QOpenGLFunctions_4_1_Core::glCompressedTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82255eaa0 0xc82255eb20 0xc82255eba0 0xc82255ec20 0xc82255ecc0 0xc82255ed40 0xc82255edc0 0xc82255ee40] } +&{glCompressedTexImage3D QOpenGLFunctions_4_1_Core::glCompressedTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82255f000 0xc82255f080 0xc82255f100 0xc82255f180 0xc82255f220 0xc82255f2a0 0xc82255f320 0xc82255f3a0 0xc82255f440] } +&{glCompressedTexSubImage1D QOpenGLFunctions_4_1_Core::glCompressedTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82255f600 0xc82255f680 0xc82255f700 0xc82255f780 0xc82255f820 0xc82255f8a0 0xc82255f920] } +&{glCompressedTexSubImage2D QOpenGLFunctions_4_1_Core::glCompressedTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82255fae0 0xc82255fb60 0xc82255fbe0 0xc82255fc60 0xc82255fd00 0xc82255fd80 0xc82255fe00 0xc82255fe80 0xc82255ff20] } +&{glCompressedTexSubImage3D QOpenGLFunctions_4_1_Core::glCompressedTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82256a0e0 0xc82256a160 0xc82256a1e0 0xc82256a260 0xc82256a300 0xc82256a380 0xc82256a400 0xc82256a480 0xc82256a520 0xc82256a5a0 0xc82256a620] } +&{glCopyBufferSubData QOpenGLFunctions_4_1_Core::glCopyBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82256a7e0 0xc82256a860 0xc82256a8e0 0xc82256a960 0xc82256aa00] } +&{glCopyTexImage1D QOpenGLFunctions_4_1_Core::glCopyTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82256ab60 0xc82256abe0 0xc82256ac60 0xc82256ace0 0xc82256ad80 0xc82256ae00 0xc82256ae80] } +&{glCopyTexImage2D QOpenGLFunctions_4_1_Core::glCopyTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82256b000 0xc82256b080 0xc82256b100 0xc82256b180 0xc82256b220 0xc82256b2a0 0xc82256b320 0xc82256b3a0] } +&{glCopyTexSubImage1D QOpenGLFunctions_4_1_Core::glCopyTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82256b560 0xc82256b5e0 0xc82256b660 0xc82256b6e0 0xc82256b780 0xc82256b800] } +&{glCopyTexSubImage2D QOpenGLFunctions_4_1_Core::glCopyTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82256b9c0 0xc82256ba40 0xc82256bac0 0xc82256bb40 0xc82256bbe0 0xc82256bc60 0xc82256bce0 0xc82256bd60] } +&{glCopyTexSubImage3D QOpenGLFunctions_4_1_Core::glCopyTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82256bf20 0xc82256bfa0 0xc82257a020 0xc82257a0a0 0xc82257a140 0xc82257a1c0 0xc82257a240 0xc82257a2c0 0xc82257a360] } +&{glCreateProgram QOpenGLFunctions_4_1_Core::glCreateProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLuint [] } +&{glCreateShader QOpenGLFunctions_4_1_Core::glCreateShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLuint [0xc82257a560] } +&{glCreateShaderProgramv QOpenGLFunctions_4_1_Core::glCreateShaderProgramv commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLuint [0xc82257a720 0xc82257a7a0 0xc82257a840] } +&{glCullFace QOpenGLFunctions_4_1_Core::glCullFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82257aa00] } +&{glDeleteBuffers QOpenGLFunctions_4_1_Core::glDeleteBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82257ab60 0xc82257abe0] } +&{glDeleteFramebuffers QOpenGLFunctions_4_1_Core::glDeleteFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82257ada0 0xc82257ae20] } +&{glDeleteProgram QOpenGLFunctions_4_1_Core::glDeleteProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82257af80] } +&{glDeleteProgramPipelines QOpenGLFunctions_4_1_Core::glDeleteProgramPipelines commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82257b140 0xc82257b1c0] } +&{glDeleteQueries QOpenGLFunctions_4_1_Core::glDeleteQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82257b320 0xc82257b3a0] } +&{glDeleteRenderbuffers QOpenGLFunctions_4_1_Core::glDeleteRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82257b560 0xc82257b5e0] } +&{glDeleteSamplers QOpenGLFunctions_4_1_Core::glDeleteSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82257b740 0xc82257b7c0] } +&{glDeleteShader QOpenGLFunctions_4_1_Core::glDeleteShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82257b920] } +&{glDeleteSync QOpenGLFunctions_4_1_Core::glDeleteSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82257baa0] } +&{glDeleteTextures QOpenGLFunctions_4_1_Core::glDeleteTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82257bc00 0xc82257bc80] } +&{glDeleteTransformFeedbacks QOpenGLFunctions_4_1_Core::glDeleteTransformFeedbacks commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82257be40 0xc82257bec0] } +&{glDeleteVertexArrays QOpenGLFunctions_4_1_Core::glDeleteVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822588080 0xc822588100] } +&{glDepthFunc QOpenGLFunctions_4_1_Core::glDepthFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822588280] } +&{glDepthMask QOpenGLFunctions_4_1_Core::glDepthMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822588400] } +&{glDepthRange QOpenGLFunctions_4_1_Core::glDepthRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822588560 0xc8225885e0] } +&{glDepthRangeArrayv QOpenGLFunctions_4_1_Core::glDepthRangeArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225887a0 0xc822588820 0xc8225888a0] } +&{glDepthRangeIndexed QOpenGLFunctions_4_1_Core::glDepthRangeIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822588a60 0xc822588ae0 0xc822588b60] } +&{glDepthRangef QOpenGLFunctions_4_1_Core::glDepthRangef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822588cc0 0xc822588d40] } +&{glDetachShader QOpenGLFunctions_4_1_Core::glDetachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822588ea0 0xc822588f20] } +&{glDisable QOpenGLFunctions_4_1_Core::glDisable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225890a0] } +&{glDisableVertexAttribArray QOpenGLFunctions_4_1_Core::glDisableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822589260] } +&{glDisablei QOpenGLFunctions_4_1_Core::glDisablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225893c0 0xc822589440] } +&{glDrawArrays QOpenGLFunctions_4_1_Core::glDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225895a0 0xc822589620 0xc8225896a0] } +&{glDrawArraysIndirect QOpenGLFunctions_4_1_Core::glDrawArraysIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822589860 0xc8225898e0] } +&{glDrawArraysInstanced QOpenGLFunctions_4_1_Core::glDrawArraysInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822589aa0 0xc822589b20 0xc822589ba0 0xc822589c20] } +&{glDrawBuffer QOpenGLFunctions_4_1_Core::glDrawBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822589da0] } +&{glDrawBuffers QOpenGLFunctions_4_1_Core::glDrawBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822589f00 0xc822589f80] } +&{glDrawElements QOpenGLFunctions_4_1_Core::glDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82259a0e0 0xc82259a160 0xc82259a1e0 0xc82259a260] } +&{glDrawElementsBaseVertex QOpenGLFunctions_4_1_Core::glDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82259a420 0xc82259a4a0 0xc82259a520 0xc82259a5a0 0xc82259a640] } +&{glDrawElementsIndirect QOpenGLFunctions_4_1_Core::glDrawElementsIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82259a800 0xc82259a880 0xc82259a900] } +&{glDrawElementsInstanced QOpenGLFunctions_4_1_Core::glDrawElementsInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82259aac0 0xc82259ab40 0xc82259abc0 0xc82259ac40 0xc82259ace0] } +&{glDrawElementsInstancedBaseVertex QOpenGLFunctions_4_1_Core::glDrawElementsInstancedBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82259ae40 0xc82259aec0 0xc82259af40 0xc82259afc0 0xc82259b060 0xc82259b0e0] } +&{glDrawRangeElements QOpenGLFunctions_4_1_Core::glDrawRangeElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82259b2a0 0xc82259b320 0xc82259b3a0 0xc82259b420 0xc82259b4c0 0xc82259b540] } +&{glDrawRangeElementsBaseVertex QOpenGLFunctions_4_1_Core::glDrawRangeElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82259b700 0xc82259b780 0xc82259b800 0xc82259b880 0xc82259b920 0xc82259b9a0 0xc82259ba20] } +&{glDrawTransformFeedback QOpenGLFunctions_4_1_Core::glDrawTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82259bbe0 0xc82259bc60] } +&{glDrawTransformFeedbackStream QOpenGLFunctions_4_1_Core::glDrawTransformFeedbackStream commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82259be20 0xc82259bea0 0xc82259bf20] } +&{glEnable QOpenGLFunctions_4_1_Core::glEnable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225a80a0] } +&{glEnableVertexAttribArray QOpenGLFunctions_4_1_Core::glEnableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225a8260] } +&{glEnablei QOpenGLFunctions_4_1_Core::glEnablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225a83c0 0xc8225a8440] } +&{glEndConditionalRender QOpenGLFunctions_4_1_Core::glEndConditionalRender commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [] } +&{glEndQuery QOpenGLFunctions_4_1_Core::glEndQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225a86c0] } +&{glEndQueryIndexed QOpenGLFunctions_4_1_Core::glEndQueryIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225a8880 0xc8225a8900] } +&{glEndTransformFeedback QOpenGLFunctions_4_1_Core::glEndTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [] } +&{glFenceSync QOpenGLFunctions_4_1_Core::glFenceSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLsync [0xc8225a8b60 0xc8225a8be0] } +&{glFinish QOpenGLFunctions_4_1_Core::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [] } +&{glFlush QOpenGLFunctions_4_1_Core::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [] } +&{glFlushMappedBufferRange QOpenGLFunctions_4_1_Core::glFlushMappedBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225a8ea0 0xc8225a8f20 0xc8225a8fa0] } +&{glFramebufferRenderbuffer QOpenGLFunctions_4_1_Core::glFramebufferRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225a9160 0xc8225a91e0 0xc8225a9280 0xc8225a9340] } +&{glFramebufferTexture QOpenGLFunctions_4_1_Core::glFramebufferTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225a9500 0xc8225a9580 0xc8225a9600 0xc8225a9680] } +&{glFramebufferTexture1D QOpenGLFunctions_4_1_Core::glFramebufferTexture1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225a9840 0xc8225a98c0 0xc8225a9940 0xc8225a99c0 0xc8225a9a60] } +&{glFramebufferTexture2D QOpenGLFunctions_4_1_Core::glFramebufferTexture2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225a9c20 0xc8225a9ca0 0xc8225a9d20 0xc8225a9da0 0xc8225a9e40] } +&{glFramebufferTexture3D QOpenGLFunctions_4_1_Core::glFramebufferTexture3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225ba000 0xc8225ba080 0xc8225ba100 0xc8225ba180 0xc8225ba220 0xc8225ba2a0] } +&{glFramebufferTextureLayer QOpenGLFunctions_4_1_Core::glFramebufferTextureLayer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225ba460 0xc8225ba4e0 0xc8225ba560 0xc8225ba5e0 0xc8225ba680] } +&{glFrontFace QOpenGLFunctions_4_1_Core::glFrontFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225ba800] } +&{glGenBuffers QOpenGLFunctions_4_1_Core::glGenBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225ba960 0xc8225ba9e0] } +&{glGenFramebuffers QOpenGLFunctions_4_1_Core::glGenFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225baba0 0xc8225bac20] } +&{glGenProgramPipelines QOpenGLFunctions_4_1_Core::glGenProgramPipelines commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225bae00 0xc8225bae80] } +&{glGenQueries QOpenGLFunctions_4_1_Core::glGenQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225bafe0 0xc8225bb060] } +&{glGenRenderbuffers QOpenGLFunctions_4_1_Core::glGenRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225bb220 0xc8225bb2a0] } +&{glGenSamplers QOpenGLFunctions_4_1_Core::glGenSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225bb400 0xc8225bb480] } +&{glGenTextures QOpenGLFunctions_4_1_Core::glGenTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225bb5e0 0xc8225bb660] } +&{glGenTransformFeedbacks QOpenGLFunctions_4_1_Core::glGenTransformFeedbacks commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225bb820 0xc8225bb8a0] } +&{glGenVertexArrays QOpenGLFunctions_4_1_Core::glGenVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225bba60 0xc8225bbae0] } +&{glGenerateMipmap QOpenGLFunctions_4_1_Core::glGenerateMipmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225bbc40] } +&{glGetActiveAttrib QOpenGLFunctions_4_1_Core::glGetActiveAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225bbe00 0xc8225bbe80 0xc8225bbf00 0xc8225bbf80 0xc8225ca020 0xc8225ca0a0 0xc8225ca120] } +&{glGetActiveSubroutineName QOpenGLFunctions_4_1_Core::glGetActiveSubroutineName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225ca2e0 0xc8225ca360 0xc8225ca3e0 0xc8225ca460 0xc8225ca500 0xc8225ca580] } +&{glGetActiveSubroutineUniformName QOpenGLFunctions_4_1_Core::glGetActiveSubroutineUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225ca740 0xc8225ca7c0 0xc8225ca840 0xc8225ca8c0 0xc8225ca960 0xc8225ca9e0] } +&{glGetActiveSubroutineUniformiv QOpenGLFunctions_4_1_Core::glGetActiveSubroutineUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225caba0 0xc8225cac20 0xc8225caca0 0xc8225cad20 0xc8225cadc0] } +&{glGetActiveUniform QOpenGLFunctions_4_1_Core::glGetActiveUniform commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225caf80 0xc8225cb000 0xc8225cb080 0xc8225cb100 0xc8225cb1a0 0xc8225cb220 0xc8225cb2a0] } +&{glGetActiveUniformBlockName QOpenGLFunctions_4_1_Core::glGetActiveUniformBlockName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225cb460 0xc8225cb500 0xc8225cb5c0 0xc8225cb640 0xc8225cb6e0] } +&{glGetActiveUniformBlockiv QOpenGLFunctions_4_1_Core::glGetActiveUniformBlockiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225cb8a0 0xc8225cb940 0xc8225cba00 0xc8225cba80] } +&{glGetActiveUniformName QOpenGLFunctions_4_1_Core::glGetActiveUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225cbc40 0xc8225cbcc0 0xc8225cbd40 0xc8225cbdc0 0xc8225cbe60] } +&{glGetActiveUniformsiv QOpenGLFunctions_4_1_Core::glGetActiveUniformsiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225d8020 0xc8225d80a0 0xc8225d8120 0xc8225d81a0 0xc8225d8240] } +&{glGetAttachedShaders QOpenGLFunctions_4_1_Core::glGetAttachedShaders commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225d8400 0xc8225d8480 0xc8225d8500 0xc8225d8580] } +&{glGetAttribLocation QOpenGLFunctions_4_1_Core::glGetAttribLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLint [0xc8225d8740 0xc8225d87c0] } +&{glGetBooleani_v QOpenGLFunctions_4_1_Core::glGetBooleani_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225d8920 0xc8225d89a0 0xc8225d8a20] } +&{glGetBooleanv QOpenGLFunctions_4_1_Core::glGetBooleanv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225d8b80 0xc8225d8c00] } +&{glGetBufferParameteri64v QOpenGLFunctions_4_1_Core::glGetBufferParameteri64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225d8dc0 0xc8225d8e40 0xc8225d8ec0] } +&{glGetBufferParameteriv QOpenGLFunctions_4_1_Core::glGetBufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225d9080 0xc8225d9100 0xc8225d9180] } +&{glGetBufferPointerv QOpenGLFunctions_4_1_Core::glGetBufferPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225d9340 0xc8225d93c0 0xc8225d9440] } +&{glGetBufferSubData QOpenGLFunctions_4_1_Core::glGetBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225d9600 0xc8225d9680 0xc8225d9700 0xc8225d9780] } +&{glGetCompressedTexImage QOpenGLFunctions_4_1_Core::glGetCompressedTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225d9940 0xc8225d99c0 0xc8225d9a40] } +&{glGetDoublei_v QOpenGLFunctions_4_1_Core::glGetDoublei_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225d9ba0 0xc8225d9c20 0xc8225d9ca0] } +&{glGetDoublev QOpenGLFunctions_4_1_Core::glGetDoublev commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225d9e00 0xc8225d9e80] } +&{glGetError QOpenGLFunctions_4_1_Core::glGetError commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLenum [] } +&{glGetFloati_v QOpenGLFunctions_4_1_Core::glGetFloati_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225ea080 0xc8225ea100 0xc8225ea180] } +&{glGetFloatv QOpenGLFunctions_4_1_Core::glGetFloatv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225ea2e0 0xc8225ea360] } +&{glGetFragDataIndex QOpenGLFunctions_4_1_Core::glGetFragDataIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLint [0xc8225ea520 0xc8225ea5a0] } +&{glGetFragDataLocation QOpenGLFunctions_4_1_Core::glGetFragDataLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLint [0xc8225ea760 0xc8225ea7e0] } +&{glGetFramebufferAttachmentParameteriv QOpenGLFunctions_4_1_Core::glGetFramebufferAttachmentParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225ea940 0xc8225ea9c0 0xc8225eaa40 0xc8225eaac0] } +&{glGetInteger64i_v QOpenGLFunctions_4_1_Core::glGetInteger64i_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225eac80 0xc8225ead00 0xc8225ead80] } +&{glGetInteger64v QOpenGLFunctions_4_1_Core::glGetInteger64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225eaee0 0xc8225eaf60] } +&{glGetIntegeri_v QOpenGLFunctions_4_1_Core::glGetIntegeri_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225eb0c0 0xc8225eb140 0xc8225eb1c0] } +&{glGetIntegerv QOpenGLFunctions_4_1_Core::glGetIntegerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225eb320 0xc8225eb3a0] } +&{glGetMultisamplefv QOpenGLFunctions_4_1_Core::glGetMultisamplefv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225eb560 0xc8225eb5e0 0xc8225eb660] } +&{glGetPointerv QOpenGLFunctions_4_1_Core::glGetPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225eb7c0 0xc8225eb840] } +&{glGetProgramBinary QOpenGLFunctions_4_1_Core::glGetProgramBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225eba00 0xc8225eba80 0xc8225ebb00 0xc8225ebb80 0xc8225ebc20] } +&{glGetProgramInfoLog QOpenGLFunctions_4_1_Core::glGetProgramInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225ebde0 0xc8225ebe60 0xc8225ebee0 0xc8225ebf60] } +&{glGetProgramPipelineInfoLog QOpenGLFunctions_4_1_Core::glGetProgramPipelineInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225f8120 0xc8225f81a0 0xc8225f8220 0xc8225f82a0] } +&{glGetProgramPipelineiv QOpenGLFunctions_4_1_Core::glGetProgramPipelineiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225f8460 0xc8225f84e0 0xc8225f8560] } +&{glGetProgramStageiv QOpenGLFunctions_4_1_Core::glGetProgramStageiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225f8720 0xc8225f87a0 0xc8225f8820 0xc8225f88a0] } +&{glGetProgramiv QOpenGLFunctions_4_1_Core::glGetProgramiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225f8a00 0xc8225f8a80 0xc8225f8b00] } +&{glGetQueryIndexediv QOpenGLFunctions_4_1_Core::glGetQueryIndexediv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225f8cc0 0xc8225f8d40 0xc8225f8dc0 0xc8225f8e40] } +&{glGetQueryObjecti64v QOpenGLFunctions_4_1_Core::glGetQueryObjecti64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225f9000 0xc8225f9080 0xc8225f9100] } +&{glGetQueryObjectiv QOpenGLFunctions_4_1_Core::glGetQueryObjectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225f92c0 0xc8225f9340 0xc8225f93c0] } +&{glGetQueryObjectui64v QOpenGLFunctions_4_1_Core::glGetQueryObjectui64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225f9580 0xc8225f9600 0xc8225f9680] } +&{glGetQueryObjectuiv QOpenGLFunctions_4_1_Core::glGetQueryObjectuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225f9840 0xc8225f98c0 0xc8225f9940] } +&{glGetQueryiv QOpenGLFunctions_4_1_Core::glGetQueryiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225f9aa0 0xc8225f9b20 0xc8225f9ba0] } +&{glGetRenderbufferParameteriv QOpenGLFunctions_4_1_Core::glGetRenderbufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8225f9d60 0xc8225f9de0 0xc8225f9e60] } +&{glGetSamplerParameterIiv QOpenGLFunctions_4_1_Core::glGetSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822606020 0xc8226060a0 0xc822606120] } +&{glGetSamplerParameterIuiv QOpenGLFunctions_4_1_Core::glGetSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226062e0 0xc822606360 0xc8226063e0] } +&{glGetSamplerParameterfv QOpenGLFunctions_4_1_Core::glGetSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226065a0 0xc822606620 0xc8226066a0] } +&{glGetSamplerParameteriv QOpenGLFunctions_4_1_Core::glGetSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822606860 0xc8226068e0 0xc822606960] } +&{glGetShaderInfoLog QOpenGLFunctions_4_1_Core::glGetShaderInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822606b20 0xc822606ba0 0xc822606c20 0xc822606ca0] } +&{glGetShaderPrecisionFormat QOpenGLFunctions_4_1_Core::glGetShaderPrecisionFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822606e60 0xc822606ee0 0xc822606f60 0xc822606fe0] } +&{glGetShaderSource QOpenGLFunctions_4_1_Core::glGetShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226071a0 0xc822607220 0xc8226072a0 0xc822607320] } +&{glGetShaderiv QOpenGLFunctions_4_1_Core::glGetShaderiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822607480 0xc822607500 0xc822607580] } +&{glGetString QOpenGLFunctions_4_1_Core::glGetString commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false const GLubyte * [0xc8226076e0] } +&{glGetStringi QOpenGLFunctions_4_1_Core::glGetStringi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false const GLubyte * [0xc822607840 0xc8226078c0] } +&{glGetSubroutineIndex QOpenGLFunctions_4_1_Core::glGetSubroutineIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLuint [0xc822607a80 0xc822607b00 0xc822607b80] } +&{glGetSubroutineUniformLocation QOpenGLFunctions_4_1_Core::glGetSubroutineUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLint [0xc822607d40 0xc822607dc0 0xc822607e40] } +&{glGetSynciv QOpenGLFunctions_4_1_Core::glGetSynciv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822607fa0 0xc822616020 0xc8226160a0 0xc822616120 0xc8226161c0] } +&{glGetTexImage QOpenGLFunctions_4_1_Core::glGetTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822616320 0xc8226163a0 0xc822616420 0xc8226164a0 0xc822616540] } +&{glGetTexLevelParameterfv QOpenGLFunctions_4_1_Core::glGetTexLevelParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822616700 0xc822616780 0xc822616800 0xc822616880] } +&{glGetTexLevelParameteriv QOpenGLFunctions_4_1_Core::glGetTexLevelParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822616a40 0xc822616ac0 0xc822616b40 0xc822616bc0] } +&{glGetTexParameterIiv QOpenGLFunctions_4_1_Core::glGetTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822616d80 0xc822616e00 0xc822616e80] } +&{glGetTexParameterIuiv QOpenGLFunctions_4_1_Core::glGetTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822617040 0xc8226170c0 0xc822617140] } +&{glGetTexParameterfv QOpenGLFunctions_4_1_Core::glGetTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822617300 0xc822617380 0xc822617400] } +&{glGetTexParameteriv QOpenGLFunctions_4_1_Core::glGetTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226175c0 0xc822617640 0xc8226176c0] } +&{glGetTransformFeedbackVarying QOpenGLFunctions_4_1_Core::glGetTransformFeedbackVarying commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822617880 0xc822617900 0xc822617980 0xc822617a00 0xc822617aa0 0xc822617b20 0xc822617ba0] } +&{glGetUniformBlockIndex QOpenGLFunctions_4_1_Core::glGetUniformBlockIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLuint [0xc822617d60 0xc822617de0] } +&{glGetUniformIndices QOpenGLFunctions_4_1_Core::glGetUniformIndices commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822617fa0 0xc822624020 0xc8226240c0 0xc822624180] } +&{glGetUniformLocation QOpenGLFunctions_4_1_Core::glGetUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLint [0xc822624340 0xc8226243c0] } +&{glGetUniformSubroutineuiv QOpenGLFunctions_4_1_Core::glGetUniformSubroutineuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822624580 0xc822624600 0xc822624680] } +&{glGetUniformdv QOpenGLFunctions_4_1_Core::glGetUniformdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226247e0 0xc822624860 0xc8226248e0] } +&{glGetUniformfv QOpenGLFunctions_4_1_Core::glGetUniformfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822624a40 0xc822624ac0 0xc822624b40] } +&{glGetUniformiv QOpenGLFunctions_4_1_Core::glGetUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822624ca0 0xc822624d20 0xc822624da0] } +&{glGetUniformuiv QOpenGLFunctions_4_1_Core::glGetUniformuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822624f00 0xc822624f80 0xc822625000] } +&{glGetVertexAttribIiv QOpenGLFunctions_4_1_Core::glGetVertexAttribIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226251c0 0xc822625240 0xc8226252c0] } +&{glGetVertexAttribIuiv QOpenGLFunctions_4_1_Core::glGetVertexAttribIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822625480 0xc822625500 0xc822625580] } +&{glGetVertexAttribLdv QOpenGLFunctions_4_1_Core::glGetVertexAttribLdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822625740 0xc8226257c0 0xc822625840] } +&{glGetVertexAttribPointerv QOpenGLFunctions_4_1_Core::glGetVertexAttribPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822625a00 0xc822625a80 0xc822625b00] } +&{glGetVertexAttribdv QOpenGLFunctions_4_1_Core::glGetVertexAttribdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822625cc0 0xc822625d40 0xc822625dc0] } +&{glGetVertexAttribfv QOpenGLFunctions_4_1_Core::glGetVertexAttribfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822625f80 0xc822636000 0xc822636080] } +&{glGetVertexAttribiv QOpenGLFunctions_4_1_Core::glGetVertexAttribiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822636240 0xc8226362c0 0xc822636340] } +&{glHint QOpenGLFunctions_4_1_Core::glHint commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226364a0 0xc822636520] } +&{glIndexub QOpenGLFunctions_4_1_Core::glIndexub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226366a0] } +&{glIndexubv QOpenGLFunctions_4_1_Core::glIndexubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822636800] } +&{glIsBuffer QOpenGLFunctions_4_1_Core::glIsBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLboolean [0xc822636960] } +&{glIsEnabled QOpenGLFunctions_4_1_Core::glIsEnabled commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLboolean [0xc822636ac0] } +&{glIsEnabledi QOpenGLFunctions_4_1_Core::glIsEnabledi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLboolean [0xc822636c20 0xc822636ca0] } +&{glIsFramebuffer QOpenGLFunctions_4_1_Core::glIsFramebuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLboolean [0xc822636e00] } +&{glIsProgram QOpenGLFunctions_4_1_Core::glIsProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLboolean [0xc822636f60] } +&{glIsProgramPipeline QOpenGLFunctions_4_1_Core::glIsProgramPipeline commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLboolean [0xc822637120] } +&{glIsQuery QOpenGLFunctions_4_1_Core::glIsQuery commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLboolean [0xc8226372a0] } +&{glIsRenderbuffer QOpenGLFunctions_4_1_Core::glIsRenderbuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLboolean [0xc822637400] } +&{glIsSampler QOpenGLFunctions_4_1_Core::glIsSampler commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLboolean [0xc822637560] } +&{glIsShader QOpenGLFunctions_4_1_Core::glIsShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLboolean [0xc8226376c0] } +&{glIsSync QOpenGLFunctions_4_1_Core::glIsSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLboolean [0xc822637840] } +&{glIsTexture QOpenGLFunctions_4_1_Core::glIsTexture commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLboolean [0xc8226379a0] } +&{glIsTransformFeedback QOpenGLFunctions_4_1_Core::glIsTransformFeedback commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLboolean [0xc822637b60] } +&{glIsVertexArray QOpenGLFunctions_4_1_Core::glIsVertexArray commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLboolean [0xc822637cc0] } +&{glLineWidth QOpenGLFunctions_4_1_Core::glLineWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822637e40] } +&{glLinkProgram QOpenGLFunctions_4_1_Core::glLinkProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822637fa0] } +&{glLogicOp QOpenGLFunctions_4_1_Core::glLogicOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822648120] } +&{glMapBuffer QOpenGLFunctions_4_1_Core::glMapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLvoid * [0xc822648280 0xc822648300] } +&{glMapBufferRange QOpenGLFunctions_4_1_Core::glMapBufferRange commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLvoid * [0xc822648460 0xc8226484e0 0xc822648560 0xc8226485e0] } +&{glMinSampleShading QOpenGLFunctions_4_1_Core::glMinSampleShading commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226487a0] } +&{glMultiDrawArrays QOpenGLFunctions_4_1_Core::glMultiDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822648960 0xc8226489e0 0xc822648a60 0xc822648ae0] } +&{glMultiDrawElements QOpenGLFunctions_4_1_Core::glMultiDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822648ca0 0xc822648d20 0xc822648da0 0xc822648e40 0xc822648f20] } +&{glMultiDrawElementsBaseVertex QOpenGLFunctions_4_1_Core::glMultiDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226490e0 0xc822649160 0xc8226491e0 0xc822649280 0xc822649360 0xc8226493e0] } +&{glMultiTexCoordP1ui QOpenGLFunctions_4_1_Core::glMultiTexCoordP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226495a0 0xc822649620 0xc8226496a0] } +&{glMultiTexCoordP1uiv QOpenGLFunctions_4_1_Core::glMultiTexCoordP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822649860 0xc8226498e0 0xc822649960] } +&{glMultiTexCoordP2ui QOpenGLFunctions_4_1_Core::glMultiTexCoordP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822649b20 0xc822649ba0 0xc822649c20] } +&{glMultiTexCoordP2uiv QOpenGLFunctions_4_1_Core::glMultiTexCoordP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822649de0 0xc822649e60 0xc822649ee0] } +&{glMultiTexCoordP3ui QOpenGLFunctions_4_1_Core::glMultiTexCoordP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226580a0 0xc822658120 0xc8226581a0] } +&{glMultiTexCoordP3uiv QOpenGLFunctions_4_1_Core::glMultiTexCoordP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822658360 0xc8226583e0 0xc822658460] } +&{glMultiTexCoordP4ui QOpenGLFunctions_4_1_Core::glMultiTexCoordP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822658620 0xc8226586a0 0xc822658720] } +&{glMultiTexCoordP4uiv QOpenGLFunctions_4_1_Core::glMultiTexCoordP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226588e0 0xc822658960 0xc8226589e0] } +&{glNormalP3ui QOpenGLFunctions_4_1_Core::glNormalP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822658b40 0xc822658bc0] } +&{glNormalP3uiv QOpenGLFunctions_4_1_Core::glNormalP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822658d20 0xc822658da0] } +&{glPatchParameterfv QOpenGLFunctions_4_1_Core::glPatchParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822658f60 0xc822658fe0] } +&{glPatchParameteri QOpenGLFunctions_4_1_Core::glPatchParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226591a0 0xc822659220] } +&{glPauseTransformFeedback QOpenGLFunctions_4_1_Core::glPauseTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [] } +&{glPixelStoref QOpenGLFunctions_4_1_Core::glPixelStoref commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226594a0 0xc822659520] } +&{glPixelStorei QOpenGLFunctions_4_1_Core::glPixelStorei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822659680 0xc822659700] } +&{glPointParameterf QOpenGLFunctions_4_1_Core::glPointParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226598c0 0xc822659940] } +&{glPointParameterfv QOpenGLFunctions_4_1_Core::glPointParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822659b00 0xc822659b80] } +&{glPointParameteri QOpenGLFunctions_4_1_Core::glPointParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822659d40 0xc822659dc0] } +&{glPointParameteriv QOpenGLFunctions_4_1_Core::glPointParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822659f80 0xc82266a000] } +&{glPointSize QOpenGLFunctions_4_1_Core::glPointSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82266a180] } +&{glPolygonMode QOpenGLFunctions_4_1_Core::glPolygonMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82266a2e0 0xc82266a360] } +&{glPolygonOffset QOpenGLFunctions_4_1_Core::glPolygonOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82266a4c0 0xc82266a540] } +&{glPrimitiveRestartIndex QOpenGLFunctions_4_1_Core::glPrimitiveRestartIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82266a700] } +&{glProgramBinary QOpenGLFunctions_4_1_Core::glProgramBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82266a860 0xc82266a8e0 0xc82266a960 0xc82266a9e0] } +&{glProgramParameteri QOpenGLFunctions_4_1_Core::glProgramParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82266aba0 0xc82266ac20 0xc82266aca0] } +&{glProgramUniform1d QOpenGLFunctions_4_1_Core::glProgramUniform1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82266ae60 0xc82266aee0 0xc82266af60] } +&{glProgramUniform1dv QOpenGLFunctions_4_1_Core::glProgramUniform1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82266b120 0xc82266b1a0 0xc82266b220 0xc82266b2a0] } +&{glProgramUniform1f QOpenGLFunctions_4_1_Core::glProgramUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82266b460 0xc82266b4e0 0xc82266b560] } +&{glProgramUniform1fv QOpenGLFunctions_4_1_Core::glProgramUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82266b720 0xc82266b7a0 0xc82266b820 0xc82266b8a0] } +&{glProgramUniform1i QOpenGLFunctions_4_1_Core::glProgramUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82266ba60 0xc82266bae0 0xc82266bb60] } +&{glProgramUniform1iv QOpenGLFunctions_4_1_Core::glProgramUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82266bd20 0xc82266bda0 0xc82266be20 0xc82266bea0] } +&{glProgramUniform1ui QOpenGLFunctions_4_1_Core::glProgramUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822676060 0xc8226760e0 0xc822676160] } +&{glProgramUniform1uiv QOpenGLFunctions_4_1_Core::glProgramUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822676320 0xc8226763a0 0xc822676420 0xc8226764a0] } +&{glProgramUniform2d QOpenGLFunctions_4_1_Core::glProgramUniform2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822676660 0xc8226766e0 0xc822676760 0xc8226767e0] } +&{glProgramUniform2dv QOpenGLFunctions_4_1_Core::glProgramUniform2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226769a0 0xc822676a20 0xc822676aa0 0xc822676b20] } +&{glProgramUniform2f QOpenGLFunctions_4_1_Core::glProgramUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822676ce0 0xc822676d60 0xc822676de0 0xc822676e60] } +&{glProgramUniform2fv QOpenGLFunctions_4_1_Core::glProgramUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822677020 0xc8226770a0 0xc822677120 0xc8226771a0] } +&{glProgramUniform2i QOpenGLFunctions_4_1_Core::glProgramUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822677360 0xc8226773e0 0xc822677460 0xc8226774e0] } +&{glProgramUniform2iv QOpenGLFunctions_4_1_Core::glProgramUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226776a0 0xc822677720 0xc8226777a0 0xc822677820] } +&{glProgramUniform2ui QOpenGLFunctions_4_1_Core::glProgramUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226779e0 0xc822677a60 0xc822677ae0 0xc822677b60] } +&{glProgramUniform2uiv QOpenGLFunctions_4_1_Core::glProgramUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822677d20 0xc822677da0 0xc822677e20 0xc822677ea0] } +&{glProgramUniform3d QOpenGLFunctions_4_1_Core::glProgramUniform3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822686060 0xc8226860e0 0xc822686160 0xc8226861e0 0xc822686280] } +&{glProgramUniform3dv QOpenGLFunctions_4_1_Core::glProgramUniform3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822686440 0xc8226864c0 0xc822686540 0xc8226865c0] } +&{glProgramUniform3f QOpenGLFunctions_4_1_Core::glProgramUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822686780 0xc822686800 0xc822686880 0xc822686900 0xc8226869a0] } +&{glProgramUniform3fv QOpenGLFunctions_4_1_Core::glProgramUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822686b60 0xc822686be0 0xc822686c60 0xc822686ce0] } +&{glProgramUniform3i QOpenGLFunctions_4_1_Core::glProgramUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822686ea0 0xc822686f20 0xc822686fa0 0xc822687020 0xc8226870c0] } +&{glProgramUniform3iv QOpenGLFunctions_4_1_Core::glProgramUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822687280 0xc822687300 0xc822687380 0xc822687400] } +&{glProgramUniform3ui QOpenGLFunctions_4_1_Core::glProgramUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226875c0 0xc822687640 0xc8226876c0 0xc822687740 0xc8226877e0] } +&{glProgramUniform3uiv QOpenGLFunctions_4_1_Core::glProgramUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226879a0 0xc822687a20 0xc822687aa0 0xc822687b20] } +&{glProgramUniform4d QOpenGLFunctions_4_1_Core::glProgramUniform4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822687ce0 0xc822687d60 0xc822687de0 0xc822687e60 0xc822687f00 0xc822687f80] } +&{glProgramUniform4dv QOpenGLFunctions_4_1_Core::glProgramUniform4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822694140 0xc8226941c0 0xc822694240 0xc8226942c0] } +&{glProgramUniform4f QOpenGLFunctions_4_1_Core::glProgramUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822694480 0xc822694500 0xc822694580 0xc822694600 0xc8226946a0 0xc822694720] } +&{glProgramUniform4fv QOpenGLFunctions_4_1_Core::glProgramUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226948e0 0xc822694960 0xc8226949e0 0xc822694a60] } +&{glProgramUniform4i QOpenGLFunctions_4_1_Core::glProgramUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822694c20 0xc822694ca0 0xc822694d20 0xc822694da0 0xc822694e40 0xc822694ec0] } +&{glProgramUniform4iv QOpenGLFunctions_4_1_Core::glProgramUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822695080 0xc822695100 0xc822695180 0xc822695200] } +&{glProgramUniform4ui QOpenGLFunctions_4_1_Core::glProgramUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226953c0 0xc822695440 0xc8226954c0 0xc822695540 0xc8226955e0 0xc822695660] } +&{glProgramUniform4uiv QOpenGLFunctions_4_1_Core::glProgramUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822695820 0xc8226958a0 0xc822695920 0xc8226959a0] } +&{glProgramUniformMatrix2dv QOpenGLFunctions_4_1_Core::glProgramUniformMatrix2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822695b60 0xc822695be0 0xc822695c60 0xc822695ce0 0xc822695d80] } +&{glProgramUniformMatrix2fv QOpenGLFunctions_4_1_Core::glProgramUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822695f40 0xc822695fc0 0xc8226a2040 0xc8226a20c0 0xc8226a2160] } +&{glProgramUniformMatrix2x3dv QOpenGLFunctions_4_1_Core::glProgramUniformMatrix2x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226a2320 0xc8226a23a0 0xc8226a2420 0xc8226a24a0 0xc8226a2540] } +&{glProgramUniformMatrix2x3fv QOpenGLFunctions_4_1_Core::glProgramUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226a2700 0xc8226a2780 0xc8226a2800 0xc8226a2880 0xc8226a2920] } +&{glProgramUniformMatrix2x4dv QOpenGLFunctions_4_1_Core::glProgramUniformMatrix2x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226a2ae0 0xc8226a2b60 0xc8226a2be0 0xc8226a2c60 0xc8226a2d00] } +&{glProgramUniformMatrix2x4fv QOpenGLFunctions_4_1_Core::glProgramUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226a2ec0 0xc8226a2f40 0xc8226a2fc0 0xc8226a3040 0xc8226a30e0] } +&{glProgramUniformMatrix3dv QOpenGLFunctions_4_1_Core::glProgramUniformMatrix3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226a32a0 0xc8226a3320 0xc8226a33a0 0xc8226a3420 0xc8226a34c0] } +&{glProgramUniformMatrix3fv QOpenGLFunctions_4_1_Core::glProgramUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226a3680 0xc8226a3700 0xc8226a3780 0xc8226a3800 0xc8226a38a0] } +&{glProgramUniformMatrix3x2dv QOpenGLFunctions_4_1_Core::glProgramUniformMatrix3x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226a3a60 0xc8226a3ae0 0xc8226a3b60 0xc8226a3be0 0xc8226a3c80] } +&{glProgramUniformMatrix3x2fv QOpenGLFunctions_4_1_Core::glProgramUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226a3e40 0xc8226a3ec0 0xc8226a3f40 0xc8226a3fc0 0xc8226b0060] } +&{glProgramUniformMatrix3x4dv QOpenGLFunctions_4_1_Core::glProgramUniformMatrix3x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226b0220 0xc8226b02a0 0xc8226b0320 0xc8226b03a0 0xc8226b0440] } +&{glProgramUniformMatrix3x4fv QOpenGLFunctions_4_1_Core::glProgramUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226b0600 0xc8226b0680 0xc8226b0700 0xc8226b0780 0xc8226b0820] } +&{glProgramUniformMatrix4dv QOpenGLFunctions_4_1_Core::glProgramUniformMatrix4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226b09e0 0xc8226b0a60 0xc8226b0ae0 0xc8226b0b60 0xc8226b0c00] } +&{glProgramUniformMatrix4fv QOpenGLFunctions_4_1_Core::glProgramUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226b0dc0 0xc8226b0e40 0xc8226b0ec0 0xc8226b0f40 0xc8226b0fe0] } +&{glProgramUniformMatrix4x2dv QOpenGLFunctions_4_1_Core::glProgramUniformMatrix4x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226b11a0 0xc8226b1220 0xc8226b12a0 0xc8226b1320 0xc8226b13c0] } +&{glProgramUniformMatrix4x2fv QOpenGLFunctions_4_1_Core::glProgramUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226b1580 0xc8226b1600 0xc8226b1680 0xc8226b1700 0xc8226b17a0] } +&{glProgramUniformMatrix4x3dv QOpenGLFunctions_4_1_Core::glProgramUniformMatrix4x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226b1960 0xc8226b19e0 0xc8226b1a60 0xc8226b1ae0 0xc8226b1b80] } +&{glProgramUniformMatrix4x3fv QOpenGLFunctions_4_1_Core::glProgramUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226b1d40 0xc8226b1dc0 0xc8226b1e40 0xc8226b1ec0 0xc8226b1f60] } +&{glProvokingVertex QOpenGLFunctions_4_1_Core::glProvokingVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226bc120] } +&{glQueryCounter QOpenGLFunctions_4_1_Core::glQueryCounter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226bc280 0xc8226bc300] } +&{glReadBuffer QOpenGLFunctions_4_1_Core::glReadBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226bc480] } +&{glReadPixels QOpenGLFunctions_4_1_Core::glReadPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226bc5e0 0xc8226bc660 0xc8226bc6e0 0xc8226bc760 0xc8226bc800 0xc8226bc880 0xc8226bc900] } +&{glReleaseShaderCompiler QOpenGLFunctions_4_1_Core::glReleaseShaderCompiler commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [] } +&{glRenderbufferStorage QOpenGLFunctions_4_1_Core::glRenderbufferStorage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226bcbc0 0xc8226bcc40 0xc8226bccc0 0xc8226bcd40] } +&{glRenderbufferStorageMultisample QOpenGLFunctions_4_1_Core::glRenderbufferStorageMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226bcf00 0xc8226bcf80 0xc8226bd000 0xc8226bd080 0xc8226bd120] } +&{glResumeTransformFeedback QOpenGLFunctions_4_1_Core::glResumeTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [] } +&{glSampleCoverage QOpenGLFunctions_4_1_Core::glSampleCoverage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226bd380 0xc8226bd400] } +&{glSampleMaski QOpenGLFunctions_4_1_Core::glSampleMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226bd560 0xc8226bd5e0] } +&{glSamplerParameterIiv QOpenGLFunctions_4_1_Core::glSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226bd7a0 0xc8226bd820 0xc8226bd8a0] } +&{glSamplerParameterIuiv QOpenGLFunctions_4_1_Core::glSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226bda60 0xc8226bdae0 0xc8226bdb60] } +&{glSamplerParameterf QOpenGLFunctions_4_1_Core::glSamplerParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226bdd20 0xc8226bdda0 0xc8226bde20] } +&{glSamplerParameterfv QOpenGLFunctions_4_1_Core::glSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226bdfe0 0xc8226ce060 0xc8226ce0e0] } +&{glSamplerParameteri QOpenGLFunctions_4_1_Core::glSamplerParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226ce2a0 0xc8226ce320 0xc8226ce3a0] } +&{glSamplerParameteriv QOpenGLFunctions_4_1_Core::glSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226ce560 0xc8226ce5e0 0xc8226ce660] } +&{glScissor QOpenGLFunctions_4_1_Core::glScissor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226ce7c0 0xc8226ce840 0xc8226ce8c0 0xc8226ce940] } +&{glScissorArrayv QOpenGLFunctions_4_1_Core::glScissorArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226ceaa0 0xc8226ceb20 0xc8226ceba0] } +&{glScissorIndexed QOpenGLFunctions_4_1_Core::glScissorIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226ced00 0xc8226ced80 0xc8226cee00 0xc8226cee80 0xc8226cef20] } +&{glScissorIndexedv QOpenGLFunctions_4_1_Core::glScissorIndexedv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226cf0e0 0xc8226cf160] } +&{glSecondaryColorP3ui QOpenGLFunctions_4_1_Core::glSecondaryColorP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226cf320 0xc8226cf3a0] } +&{glSecondaryColorP3uiv QOpenGLFunctions_4_1_Core::glSecondaryColorP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226cf560 0xc8226cf5e0] } +&{glShaderBinary QOpenGLFunctions_4_1_Core::glShaderBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226cf740 0xc8226cf7c0 0xc8226cf840 0xc8226cf8c0 0xc8226cf960] } +&{glShaderSource QOpenGLFunctions_4_1_Core::glShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226cfac0 0xc8226cfb40 0xc8226cfbe0 0xc8226cfca0] } +&{glStencilFunc QOpenGLFunctions_4_1_Core::glStencilFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226cfe00 0xc8226cfe80 0xc8226cff00] } +&{glStencilFuncSeparate QOpenGLFunctions_4_1_Core::glStencilFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226dc0c0 0xc8226dc140 0xc8226dc1c0 0xc8226dc240] } +&{glStencilMask QOpenGLFunctions_4_1_Core::glStencilMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226dc3c0] } +&{glStencilMaskSeparate QOpenGLFunctions_4_1_Core::glStencilMaskSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226dc580 0xc8226dc600] } +&{glStencilOp QOpenGLFunctions_4_1_Core::glStencilOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226dc760 0xc8226dc7e0 0xc8226dc860] } +&{glStencilOpSeparate QOpenGLFunctions_4_1_Core::glStencilOpSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226dca20 0xc8226dcaa0 0xc8226dcb20 0xc8226dcba0] } +&{glTexBuffer QOpenGLFunctions_4_1_Core::glTexBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226dcd00 0xc8226dcd80 0xc8226dce00] } +&{glTexCoordP1ui QOpenGLFunctions_4_1_Core::glTexCoordP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226dcf60 0xc8226dcfe0] } +&{glTexCoordP1uiv QOpenGLFunctions_4_1_Core::glTexCoordP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226dd140 0xc8226dd1c0] } +&{glTexCoordP2ui QOpenGLFunctions_4_1_Core::glTexCoordP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226dd320 0xc8226dd3a0] } +&{glTexCoordP2uiv QOpenGLFunctions_4_1_Core::glTexCoordP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226dd500 0xc8226dd580] } +&{glTexCoordP3ui QOpenGLFunctions_4_1_Core::glTexCoordP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226dd6e0 0xc8226dd760] } +&{glTexCoordP3uiv QOpenGLFunctions_4_1_Core::glTexCoordP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226dd8c0 0xc8226dd940] } +&{glTexCoordP4ui QOpenGLFunctions_4_1_Core::glTexCoordP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226ddaa0 0xc8226ddb20] } +&{glTexCoordP4uiv QOpenGLFunctions_4_1_Core::glTexCoordP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226ddc80 0xc8226ddd00] } +&{glTexImage1D QOpenGLFunctions_4_1_Core::glTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226dde60 0xc8226ddee0 0xc8226ddf60 0xc8226ddfe0 0xc8226ee080 0xc8226ee100 0xc8226ee180 0xc8226ee200] } +&{glTexImage2D QOpenGLFunctions_4_1_Core::glTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226ee360 0xc8226ee3e0 0xc8226ee460 0xc8226ee4e0 0xc8226ee580 0xc8226ee600 0xc8226ee680 0xc8226ee700 0xc8226ee7a0] } +&{glTexImage2DMultisample QOpenGLFunctions_4_1_Core::glTexImage2DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226ee960 0xc8226ee9e0 0xc8226eea60 0xc8226eeae0 0xc8226eeb80 0xc8226eec20] } +&{glTexImage3D QOpenGLFunctions_4_1_Core::glTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226eedc0 0xc8226eee40 0xc8226eeec0 0xc8226eef40 0xc8226eefe0 0xc8226ef060 0xc8226ef0e0 0xc8226ef160 0xc8226ef200 0xc8226ef280] } +&{glTexImage3DMultisample QOpenGLFunctions_4_1_Core::glTexImage3DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226ef440 0xc8226ef4c0 0xc8226ef540 0xc8226ef5c0 0xc8226ef660 0xc8226ef6e0 0xc8226ef780] } +&{glTexParameterIiv QOpenGLFunctions_4_1_Core::glTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226ef980 0xc8226efa00 0xc8226efa80] } +&{glTexParameterIuiv QOpenGLFunctions_4_1_Core::glTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226efc40 0xc8226efcc0 0xc8226efd40] } +&{glTexParameterf QOpenGLFunctions_4_1_Core::glTexParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226efea0 0xc8226eff20 0xc8226effa0] } +&{glTexParameterfv QOpenGLFunctions_4_1_Core::glTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226fc100 0xc8226fc180 0xc8226fc200] } +&{glTexParameteri QOpenGLFunctions_4_1_Core::glTexParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226fc360 0xc8226fc3e0 0xc8226fc460] } +&{glTexParameteriv QOpenGLFunctions_4_1_Core::glTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226fc5c0 0xc8226fc640 0xc8226fc6c0] } +&{glTexSubImage1D QOpenGLFunctions_4_1_Core::glTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226fc820 0xc8226fc8a0 0xc8226fc920 0xc8226fc9a0 0xc8226fca40 0xc8226fcac0 0xc8226fcb40] } +&{glTexSubImage2D QOpenGLFunctions_4_1_Core::glTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226fcca0 0xc8226fcd20 0xc8226fcda0 0xc8226fce20 0xc8226fcec0 0xc8226fcf40 0xc8226fcfc0 0xc8226fd040 0xc8226fd0e0] } +&{glTexSubImage3D QOpenGLFunctions_4_1_Core::glTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226fd240 0xc8226fd2c0 0xc8226fd340 0xc8226fd3c0 0xc8226fd460 0xc8226fd4e0 0xc8226fd560 0xc8226fd5e0 0xc8226fd680 0xc8226fd700 0xc8226fd780] } +&{glTransformFeedbackVaryings QOpenGLFunctions_4_1_Core::glTransformFeedbackVaryings commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226fd940 0xc8226fd9c0 0xc8226fda60 0xc8226fdb20] } +&{glUniform1d QOpenGLFunctions_4_1_Core::glUniform1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226fdc80 0xc8226fdd00] } +&{glUniform1dv QOpenGLFunctions_4_1_Core::glUniform1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8226fde60 0xc8226fdee0 0xc8226fdf60] } +&{glUniform1f QOpenGLFunctions_4_1_Core::glUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8227080c0 0xc822708140] } +&{glUniform1fv QOpenGLFunctions_4_1_Core::glUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8227082a0 0xc822708320 0xc8227083a0] } +&{glUniform1i QOpenGLFunctions_4_1_Core::glUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822708500 0xc822708580] } +&{glUniform1iv QOpenGLFunctions_4_1_Core::glUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8227086e0 0xc822708760 0xc8227087e0] } +&{glUniform1ui QOpenGLFunctions_4_1_Core::glUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822708940 0xc8227089c0] } +&{glUniform1uiv QOpenGLFunctions_4_1_Core::glUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822708b20 0xc822708ba0 0xc822708c20] } +&{glUniform2d QOpenGLFunctions_4_1_Core::glUniform2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822708d80 0xc822708e00 0xc822708e80] } +&{glUniform2dv QOpenGLFunctions_4_1_Core::glUniform2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822708fe0 0xc822709060 0xc8227090e0] } +&{glUniform2f QOpenGLFunctions_4_1_Core::glUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822709240 0xc8227092c0 0xc822709340] } +&{glUniform2fv QOpenGLFunctions_4_1_Core::glUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc8227094a0 0xc822709520 0xc8227095a0] } +&{glUniform2i QOpenGLFunctions_4_1_Core::glUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822709700 0xc822709780 0xc822709800] } +&{glUniform2iv QOpenGLFunctions_4_1_Core::glUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822709960 0xc8227099e0 0xc822709a60] } +&{glUniform2ui QOpenGLFunctions_4_1_Core::glUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822709bc0 0xc822709c40 0xc822709cc0] } +&{glUniform2uiv QOpenGLFunctions_4_1_Core::glUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822709e20 0xc822709ea0 0xc822709f20] } +&{glUniform3d QOpenGLFunctions_4_1_Core::glUniform3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82271a080 0xc82271a100 0xc82271a180 0xc82271a200] } +&{glUniform3dv QOpenGLFunctions_4_1_Core::glUniform3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82271a360 0xc82271a3e0 0xc82271a460] } +&{glUniform3f QOpenGLFunctions_4_1_Core::glUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82271a5c0 0xc82271a640 0xc82271a6c0 0xc82271a740] } +&{glUniform3fv QOpenGLFunctions_4_1_Core::glUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82271a8a0 0xc82271a920 0xc82271a9a0] } +&{glUniform3i QOpenGLFunctions_4_1_Core::glUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82271ab00 0xc82271ab80 0xc82271ac00 0xc82271ac80] } +&{glUniform3iv QOpenGLFunctions_4_1_Core::glUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82271ade0 0xc82271ae60 0xc82271aee0] } +&{glUniform3ui QOpenGLFunctions_4_1_Core::glUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82271b040 0xc82271b0c0 0xc82271b140 0xc82271b1c0] } +&{glUniform3uiv QOpenGLFunctions_4_1_Core::glUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82271b320 0xc82271b3a0 0xc82271b420] } +&{glUniform4d QOpenGLFunctions_4_1_Core::glUniform4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82271b580 0xc82271b600 0xc82271b680 0xc82271b700 0xc82271b7a0] } +&{glUniform4dv QOpenGLFunctions_4_1_Core::glUniform4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82271b900 0xc82271b980 0xc82271ba00] } +&{glUniform4f QOpenGLFunctions_4_1_Core::glUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82271bb60 0xc82271bbe0 0xc82271bc60 0xc82271bce0 0xc82271bd80] } +&{glUniform4fv QOpenGLFunctions_4_1_Core::glUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc82271bee0 0xc82271bf60 0xc82271bfe0] } +&{glUniform4i QOpenGLFunctions_4_1_Core::glUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d40140 0xc822d401c0 0xc822d40240 0xc822d402c0 0xc822d40360] } +&{glUniform4iv QOpenGLFunctions_4_1_Core::glUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d404c0 0xc822d40540 0xc822d405c0] } +&{glUniform4ui QOpenGLFunctions_4_1_Core::glUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d40720 0xc822d407a0 0xc822d40820 0xc822d408a0 0xc822d40940] } +&{glUniform4uiv QOpenGLFunctions_4_1_Core::glUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d40aa0 0xc822d40b20 0xc822d40ba0] } +&{glUniformBlockBinding QOpenGLFunctions_4_1_Core::glUniformBlockBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d40d60 0xc822d40e00 0xc822d40ee0] } +&{glUniformMatrix2dv QOpenGLFunctions_4_1_Core::glUniformMatrix2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d410e0 0xc822d41160 0xc822d411e0 0xc822d41260] } +&{glUniformMatrix2fv QOpenGLFunctions_4_1_Core::glUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d41420 0xc822d414a0 0xc822d41520 0xc822d415a0] } +&{glUniformMatrix2x3dv QOpenGLFunctions_4_1_Core::glUniformMatrix2x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d41760 0xc822d417e0 0xc822d41860 0xc822d418e0] } +&{glUniformMatrix2x3fv QOpenGLFunctions_4_1_Core::glUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d41aa0 0xc822d41b20 0xc822d41ba0 0xc822d41c20] } +&{glUniformMatrix2x4dv QOpenGLFunctions_4_1_Core::glUniformMatrix2x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d41de0 0xc822d41e60 0xc822d41ee0 0xc822d41f60] } +&{glUniformMatrix2x4fv QOpenGLFunctions_4_1_Core::glUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d4e120 0xc822d4e1a0 0xc822d4e220 0xc822d4e2a0] } +&{glUniformMatrix3dv QOpenGLFunctions_4_1_Core::glUniformMatrix3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d4e460 0xc822d4e4e0 0xc822d4e560 0xc822d4e5e0] } +&{glUniformMatrix3fv QOpenGLFunctions_4_1_Core::glUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d4e7a0 0xc822d4e820 0xc822d4e8a0 0xc822d4e920] } +&{glUniformMatrix3x2dv QOpenGLFunctions_4_1_Core::glUniformMatrix3x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d4eae0 0xc822d4eb60 0xc822d4ebe0 0xc822d4ec60] } +&{glUniformMatrix3x2fv QOpenGLFunctions_4_1_Core::glUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d4ee20 0xc822d4eea0 0xc822d4ef20 0xc822d4efa0] } +&{glUniformMatrix3x4dv QOpenGLFunctions_4_1_Core::glUniformMatrix3x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d4f160 0xc822d4f1e0 0xc822d4f260 0xc822d4f2e0] } +&{glUniformMatrix3x4fv QOpenGLFunctions_4_1_Core::glUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d4f4a0 0xc822d4f520 0xc822d4f5a0 0xc822d4f620] } +&{glUniformMatrix4dv QOpenGLFunctions_4_1_Core::glUniformMatrix4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d4f7e0 0xc822d4f860 0xc822d4f8e0 0xc822d4f960] } +&{glUniformMatrix4fv QOpenGLFunctions_4_1_Core::glUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d4fb20 0xc822d4fba0 0xc822d4fc20 0xc822d4fca0] } +&{glUniformMatrix4x2dv QOpenGLFunctions_4_1_Core::glUniformMatrix4x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d4fe60 0xc822d4fee0 0xc822d4ff60 0xc822d4ffe0] } +&{glUniformMatrix4x2fv QOpenGLFunctions_4_1_Core::glUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d5c1a0 0xc822d5c220 0xc822d5c2a0 0xc822d5c320] } +&{glUniformMatrix4x3dv QOpenGLFunctions_4_1_Core::glUniformMatrix4x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d5c4e0 0xc822d5c560 0xc822d5c5e0 0xc822d5c660] } +&{glUniformMatrix4x3fv QOpenGLFunctions_4_1_Core::glUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d5c820 0xc822d5c8a0 0xc822d5c920 0xc822d5c9a0] } +&{glUniformSubroutinesuiv QOpenGLFunctions_4_1_Core::glUniformSubroutinesuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d5cb60 0xc822d5cbe0 0xc822d5cc60] } +&{glUnmapBuffer QOpenGLFunctions_4_1_Core::glUnmapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false GLboolean [0xc822d5cdc0] } +&{glUseProgram QOpenGLFunctions_4_1_Core::glUseProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d5cf20] } +&{glUseProgramStages QOpenGLFunctions_4_1_Core::glUseProgramStages commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d5d0e0 0xc822d5d160 0xc822d5d1e0] } +&{glValidateProgram QOpenGLFunctions_4_1_Core::glValidateProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d5d3a0] } +&{glValidateProgramPipeline QOpenGLFunctions_4_1_Core::glValidateProgramPipeline commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d5d560] } +&{glVertexAttribDivisor QOpenGLFunctions_4_1_Core::glVertexAttribDivisor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d5d720 0xc822d5d7a0] } +&{glVertexAttribIPointer QOpenGLFunctions_4_1_Core::glVertexAttribIPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d5d960 0xc822d5d9e0 0xc822d5da60 0xc822d5dae0 0xc822d5db80] } +&{glVertexAttribL1d QOpenGLFunctions_4_1_Core::glVertexAttribL1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d5dd40 0xc822d5ddc0] } +&{glVertexAttribL1dv QOpenGLFunctions_4_1_Core::glVertexAttribL1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d5df80 0xc822d6e000] } +&{glVertexAttribL2d QOpenGLFunctions_4_1_Core::glVertexAttribL2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d6e1c0 0xc822d6e240 0xc822d6e2c0] } +&{glVertexAttribL2dv QOpenGLFunctions_4_1_Core::glVertexAttribL2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d6e480 0xc822d6e500] } +&{glVertexAttribL3d QOpenGLFunctions_4_1_Core::glVertexAttribL3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d6e6c0 0xc822d6e740 0xc822d6e7c0 0xc822d6e840] } +&{glVertexAttribL3dv QOpenGLFunctions_4_1_Core::glVertexAttribL3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d6ea00 0xc822d6ea80] } +&{glVertexAttribL4d QOpenGLFunctions_4_1_Core::glVertexAttribL4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d6ec40 0xc822d6ecc0 0xc822d6ed40 0xc822d6edc0 0xc822d6ee60] } +&{glVertexAttribL4dv QOpenGLFunctions_4_1_Core::glVertexAttribL4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d6f020 0xc822d6f0a0] } +&{glVertexAttribLPointer QOpenGLFunctions_4_1_Core::glVertexAttribLPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d6f260 0xc822d6f2e0 0xc822d6f360 0xc822d6f3e0 0xc822d6f480] } +&{glVertexAttribP1ui QOpenGLFunctions_4_1_Core::glVertexAttribP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d6f640 0xc822d6f6c0 0xc822d6f740 0xc822d6f7c0] } +&{glVertexAttribP1uiv QOpenGLFunctions_4_1_Core::glVertexAttribP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d6f980 0xc822d6fa00 0xc822d6fa80 0xc822d6fb00] } +&{glVertexAttribP2ui QOpenGLFunctions_4_1_Core::glVertexAttribP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d6fcc0 0xc822d6fd40 0xc822d6fdc0 0xc822d6fe40] } +&{glVertexAttribP2uiv QOpenGLFunctions_4_1_Core::glVertexAttribP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d78000 0xc822d78080 0xc822d78100 0xc822d78180] } +&{glVertexAttribP3ui QOpenGLFunctions_4_1_Core::glVertexAttribP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d78340 0xc822d783c0 0xc822d78440 0xc822d784c0] } +&{glVertexAttribP3uiv QOpenGLFunctions_4_1_Core::glVertexAttribP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d78680 0xc822d78700 0xc822d78780 0xc822d78800] } +&{glVertexAttribP4ui QOpenGLFunctions_4_1_Core::glVertexAttribP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d789c0 0xc822d78a40 0xc822d78ac0 0xc822d78b40] } +&{glVertexAttribP4uiv QOpenGLFunctions_4_1_Core::glVertexAttribP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d78d00 0xc822d78d80 0xc822d78e00 0xc822d78e80] } +&{glVertexAttribPointer QOpenGLFunctions_4_1_Core::glVertexAttribPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d79040 0xc822d790c0 0xc822d79140 0xc822d791c0 0xc822d79260 0xc822d792e0] } +&{glVertexP2ui QOpenGLFunctions_4_1_Core::glVertexP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d79440 0xc822d794c0] } +&{glVertexP2uiv QOpenGLFunctions_4_1_Core::glVertexP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d79620 0xc822d796a0] } +&{glVertexP3ui QOpenGLFunctions_4_1_Core::glVertexP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d79800 0xc822d79880] } +&{glVertexP3uiv QOpenGLFunctions_4_1_Core::glVertexP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d799e0 0xc822d79a60] } +&{glVertexP4ui QOpenGLFunctions_4_1_Core::glVertexP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d79bc0 0xc822d79c40] } +&{glVertexP4uiv QOpenGLFunctions_4_1_Core::glVertexP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d79da0 0xc822d79e20] } +&{glViewport QOpenGLFunctions_4_1_Core::glViewport commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d79f80 0xc822d8a000 0xc822d8a080 0xc822d8a100] } +&{glViewportArrayv QOpenGLFunctions_4_1_Core::glViewportArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d8a260 0xc822d8a2e0 0xc822d8a360] } +&{glViewportIndexedf QOpenGLFunctions_4_1_Core::glViewportIndexedf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d8a520 0xc822d8a5a0 0xc822d8a620 0xc822d8a6a0 0xc822d8a740] } +&{glViewportIndexedfv QOpenGLFunctions_4_1_Core::glViewportIndexedfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d8a900 0xc822d8a980] } +&{glWaitSync QOpenGLFunctions_4_1_Core::glWaitSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_1_core.h non plain false false void [0xc822d8aae0 0xc822d8ab60 0xc822d8abe0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions_4_2_Compatibility.txt b/internal/binding/dump/QtGui/QOpenGLFunctions_4_2_Compatibility.txt new file mode 100755 index 00000000..6604c493 --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions_4_2_Compatibility.txt @@ -0,0 +1,907 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions_4_2_Compatibility QOpenGLFunctions_4_2_Compatibility::QOpenGLFunctions_4_2_Compatibility commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.cpp non constructor false false [] } +&{initializeOpenGLFunctions QOpenGLFunctions_4_2_Compatibility::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.cpp impure plain false false bool [] } +&{~QOpenGLFunctions_4_2_Compatibility QOpenGLFunctions_4_2_Compatibility::~QOpenGLFunctions_4_2_Compatibility commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.cpp non destructor false false [] } +&{glAccum QOpenGLFunctions_4_2_Compatibility::glAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822d8b260 0xc822d8b2e0] } +&{glActiveShaderProgram QOpenGLFunctions_4_2_Compatibility::glActiveShaderProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822d8b480 0xc822d8b500] } +&{glActiveTexture QOpenGLFunctions_4_2_Compatibility::glActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822d8b640] } +&{glAlphaFunc QOpenGLFunctions_4_2_Compatibility::glAlphaFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822d8b7a0 0xc822d8b820] } +&{glAreTexturesResident QOpenGLFunctions_4_2_Compatibility::glAreTexturesResident commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLboolean [0xc822d8b9c0 0xc822d8ba40 0xc822d8bac0] } +&{glArrayElement QOpenGLFunctions_4_2_Compatibility::glArrayElement commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822d8bc20] } +&{glAttachShader QOpenGLFunctions_4_2_Compatibility::glAttachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822d8bd60 0xc822d8bde0] } +&{glBegin QOpenGLFunctions_4_2_Compatibility::glBegin commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822d8bf40] } +&{glBeginConditionalRender QOpenGLFunctions_4_2_Compatibility::glBeginConditionalRender commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822d9c0e0 0xc822d9c160] } +&{glBeginQuery QOpenGLFunctions_4_2_Compatibility::glBeginQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822d9c2a0 0xc822d9c320] } +&{glBeginQueryIndexed QOpenGLFunctions_4_2_Compatibility::glBeginQueryIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822d9c4c0 0xc822d9c540 0xc822d9c5c0] } +&{glBeginTransformFeedback QOpenGLFunctions_4_2_Compatibility::glBeginTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822d9c780] } +&{glBindAttribLocation QOpenGLFunctions_4_2_Compatibility::glBindAttribLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822d9c920 0xc822d9c9a0 0xc822d9ca20] } +&{glBindBuffer QOpenGLFunctions_4_2_Compatibility::glBindBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822d9cb60 0xc822d9cbe0] } +&{glBindBufferBase QOpenGLFunctions_4_2_Compatibility::glBindBufferBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822d9cd20 0xc822d9cda0 0xc822d9ce20] } +&{glBindBufferRange QOpenGLFunctions_4_2_Compatibility::glBindBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822d9cfc0 0xc822d9d040 0xc822d9d0c0 0xc822d9d140 0xc822d9d1e0] } +&{glBindFragDataLocation QOpenGLFunctions_4_2_Compatibility::glBindFragDataLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822d9d380 0xc822d9d400 0xc822d9d480] } +&{glBindFragDataLocationIndexed QOpenGLFunctions_4_2_Compatibility::glBindFragDataLocationIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822d9d620 0xc822d9d6a0 0xc822d9d720 0xc822d9d7a0] } +&{glBindFramebuffer QOpenGLFunctions_4_2_Compatibility::glBindFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822d9d940 0xc822d9d9c0] } +&{glBindImageTexture QOpenGLFunctions_4_2_Compatibility::glBindImageTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822d9db60 0xc822d9dbe0 0xc822d9dc60 0xc822d9dce0 0xc822d9dd80 0xc822d9de00 0xc822d9de80] } +&{glBindProgramPipeline QOpenGLFunctions_4_2_Compatibility::glBindProgramPipeline commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dae020] } +&{glBindRenderbuffer QOpenGLFunctions_4_2_Compatibility::glBindRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dae1c0 0xc822dae240] } +&{glBindSampler QOpenGLFunctions_4_2_Compatibility::glBindSampler commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dae380 0xc822dae400] } +&{glBindTexture QOpenGLFunctions_4_2_Compatibility::glBindTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dae540 0xc822dae5c0] } +&{glBindTransformFeedback QOpenGLFunctions_4_2_Compatibility::glBindTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dae760 0xc822dae7e0] } +&{glBindVertexArray QOpenGLFunctions_4_2_Compatibility::glBindVertexArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dae980] } +&{glBitmap QOpenGLFunctions_4_2_Compatibility::glBitmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822daeac0 0xc822daeb40 0xc822daebc0 0xc822daec40 0xc822daece0 0xc822daed60 0xc822daede0] } +&{glBlendColor QOpenGLFunctions_4_2_Compatibility::glBlendColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822daef40 0xc822daefc0 0xc822daf040 0xc822daf0c0] } +&{glBlendEquation QOpenGLFunctions_4_2_Compatibility::glBlendEquation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822daf200] } +&{glBlendEquationSeparate QOpenGLFunctions_4_2_Compatibility::glBlendEquationSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822daf3a0 0xc822daf420] } +&{glBlendEquationSeparatei QOpenGLFunctions_4_2_Compatibility::glBlendEquationSeparatei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822daf5c0 0xc822daf640 0xc822daf6c0] } +&{glBlendEquationi QOpenGLFunctions_4_2_Compatibility::glBlendEquationi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822daf800 0xc822daf880] } +&{glBlendFunc QOpenGLFunctions_4_2_Compatibility::glBlendFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822daf9c0 0xc822dafa40] } +&{glBlendFuncSeparate QOpenGLFunctions_4_2_Compatibility::glBlendFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dafbe0 0xc822dafc60 0xc822dafce0 0xc822dafd60] } +&{glBlendFuncSeparatei QOpenGLFunctions_4_2_Compatibility::glBlendFuncSeparatei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822daff00 0xc822daff80 0xc822dbc000 0xc822dbc080 0xc822dbc120] } +&{glBlendFunci QOpenGLFunctions_4_2_Compatibility::glBlendFunci commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dbc260 0xc822dbc2e0 0xc822dbc360] } +&{glBlitFramebuffer QOpenGLFunctions_4_2_Compatibility::glBlitFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dbc500 0xc822dbc580 0xc822dbc600 0xc822dbc680 0xc822dbc720 0xc822dbc7a0 0xc822dbc820 0xc822dbc8a0 0xc822dbc940 0xc822dbc9c0] } +&{glBufferData QOpenGLFunctions_4_2_Compatibility::glBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dbcb00 0xc822dbcb80 0xc822dbcc00 0xc822dbcc80] } +&{glBufferSubData QOpenGLFunctions_4_2_Compatibility::glBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dbcdc0 0xc822dbce40 0xc822dbcec0 0xc822dbcf40] } +&{glCallList QOpenGLFunctions_4_2_Compatibility::glCallList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dbd0a0] } +&{glCallLists QOpenGLFunctions_4_2_Compatibility::glCallLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dbd1e0 0xc822dbd260 0xc822dbd2e0] } +&{glCheckFramebufferStatus QOpenGLFunctions_4_2_Compatibility::glCheckFramebufferStatus commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLenum [0xc822dbd480] } +&{glClampColor QOpenGLFunctions_4_2_Compatibility::glClampColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dbd5c0 0xc822dbd640] } +&{glClear QOpenGLFunctions_4_2_Compatibility::glClear commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dbd7a0] } +&{glClearAccum QOpenGLFunctions_4_2_Compatibility::glClearAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dbd8e0 0xc822dbd960 0xc822dbd9e0 0xc822dbda60] } +&{glClearBufferfi QOpenGLFunctions_4_2_Compatibility::glClearBufferfi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dbdba0 0xc822dbdc20 0xc822dbdca0 0xc822dbdd20] } +&{glClearBufferfv QOpenGLFunctions_4_2_Compatibility::glClearBufferfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dbde60 0xc822dbdee0 0xc822dbdf60] } +&{glClearBufferiv QOpenGLFunctions_4_2_Compatibility::glClearBufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dcc0a0 0xc822dcc120 0xc822dcc1a0] } +&{glClearBufferuiv QOpenGLFunctions_4_2_Compatibility::glClearBufferuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dcc2e0 0xc822dcc360 0xc822dcc3e0] } +&{glClearColor QOpenGLFunctions_4_2_Compatibility::glClearColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dcc520 0xc822dcc5a0 0xc822dcc620 0xc822dcc6a0] } +&{glClearDepth QOpenGLFunctions_4_2_Compatibility::glClearDepth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dcc7e0] } +&{glClearDepthf QOpenGLFunctions_4_2_Compatibility::glClearDepthf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dcc940] } +&{glClearIndex QOpenGLFunctions_4_2_Compatibility::glClearIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dccaa0] } +&{glClearStencil QOpenGLFunctions_4_2_Compatibility::glClearStencil commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dccc00] } +&{glClientActiveTexture QOpenGLFunctions_4_2_Compatibility::glClientActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dccda0] } +&{glClientWaitSync QOpenGLFunctions_4_2_Compatibility::glClientWaitSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLenum [0xc822dccee0 0xc822dccf60 0xc822dccfe0] } +&{glClipPlane QOpenGLFunctions_4_2_Compatibility::glClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dcd120 0xc822dcd1a0] } +&{glColor3b QOpenGLFunctions_4_2_Compatibility::glColor3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dcd2e0 0xc822dcd360 0xc822dcd3e0] } +&{glColor3bv QOpenGLFunctions_4_2_Compatibility::glColor3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dcd540] } +&{glColor3d QOpenGLFunctions_4_2_Compatibility::glColor3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dcd6a0 0xc822dcd720 0xc822dcd7a0] } +&{glColor3dv QOpenGLFunctions_4_2_Compatibility::glColor3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dcd8e0] } +&{glColor3f QOpenGLFunctions_4_2_Compatibility::glColor3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dcda20 0xc822dcdaa0 0xc822dcdb20] } +&{glColor3fv QOpenGLFunctions_4_2_Compatibility::glColor3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dcdc60] } +&{glColor3i QOpenGLFunctions_4_2_Compatibility::glColor3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822dcdda0 0xc822dcde20 0xc822dcdea0] } +&{glColor3iv QOpenGLFunctions_4_2_Compatibility::glColor3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822de0000] } +&{glColor3s QOpenGLFunctions_4_2_Compatibility::glColor3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822de0140 0xc822de01c0 0xc822de0240] } +&{glColor3sv QOpenGLFunctions_4_2_Compatibility::glColor3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822de0380] } +&{glColor3ub QOpenGLFunctions_4_2_Compatibility::glColor3ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822de04c0 0xc822de0540 0xc822de05c0] } +&{glColor3ubv QOpenGLFunctions_4_2_Compatibility::glColor3ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822de0700] } +&{glColor3ui QOpenGLFunctions_4_2_Compatibility::glColor3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822de0840 0xc822de08c0 0xc822de0940] } +&{glColor3uiv QOpenGLFunctions_4_2_Compatibility::glColor3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822de0a80] } +&{glColor3us QOpenGLFunctions_4_2_Compatibility::glColor3us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822de0bc0 0xc822de0c40 0xc822de0cc0] } +&{glColor3usv QOpenGLFunctions_4_2_Compatibility::glColor3usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822de0e00] } +&{glColor4b QOpenGLFunctions_4_2_Compatibility::glColor4b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822de0f40 0xc822de0fc0 0xc822de1040 0xc822de10c0] } +&{glColor4bv QOpenGLFunctions_4_2_Compatibility::glColor4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822de1220] } +&{glColor4d QOpenGLFunctions_4_2_Compatibility::glColor4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822de1360 0xc822de13e0 0xc822de1460 0xc822de14e0] } +&{glColor4dv QOpenGLFunctions_4_2_Compatibility::glColor4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822de1620] } +&{glColor4f QOpenGLFunctions_4_2_Compatibility::glColor4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822de1760 0xc822de17e0 0xc822de1860 0xc822de18e0] } +&{glColor4fv QOpenGLFunctions_4_2_Compatibility::glColor4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822de1a20] } +&{glColor4i QOpenGLFunctions_4_2_Compatibility::glColor4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822de1b60 0xc822de1be0 0xc822de1c60 0xc822de1ce0] } +&{glColor4iv QOpenGLFunctions_4_2_Compatibility::glColor4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822de1e40] } +&{glColor4s QOpenGLFunctions_4_2_Compatibility::glColor4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822de1f80 0xc822df0000 0xc822df0080 0xc822df0100] } +&{glColor4sv QOpenGLFunctions_4_2_Compatibility::glColor4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822df0240] } +&{glColor4ub QOpenGLFunctions_4_2_Compatibility::glColor4ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822df0380 0xc822df0400 0xc822df0480 0xc822df0500] } +&{glColor4ubv QOpenGLFunctions_4_2_Compatibility::glColor4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822df0640] } +&{glColor4ui QOpenGLFunctions_4_2_Compatibility::glColor4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822df0780 0xc822df0800 0xc822df0880 0xc822df0900] } +&{glColor4uiv QOpenGLFunctions_4_2_Compatibility::glColor4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822df0a40] } +&{glColor4us QOpenGLFunctions_4_2_Compatibility::glColor4us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822df0b80 0xc822df0c00 0xc822df0c80 0xc822df0d00] } +&{glColor4usv QOpenGLFunctions_4_2_Compatibility::glColor4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822df0e40] } +&{glColorMask QOpenGLFunctions_4_2_Compatibility::glColorMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822df0f80 0xc822df1000 0xc822df1080 0xc822df1100] } +&{glColorMaski QOpenGLFunctions_4_2_Compatibility::glColorMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822df1240 0xc822df12c0 0xc822df1340 0xc822df13c0 0xc822df1460] } +&{glColorMaterial QOpenGLFunctions_4_2_Compatibility::glColorMaterial commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822df15a0 0xc822df1620] } +&{glColorP3ui QOpenGLFunctions_4_2_Compatibility::glColorP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822df1760 0xc822df17e0] } +&{glColorP3uiv QOpenGLFunctions_4_2_Compatibility::glColorP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822df1920 0xc822df19a0] } +&{glColorP4ui QOpenGLFunctions_4_2_Compatibility::glColorP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822df1ae0 0xc822df1b60] } +&{glColorP4uiv QOpenGLFunctions_4_2_Compatibility::glColorP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822df1ca0 0xc822df1d20] } +&{glColorPointer QOpenGLFunctions_4_2_Compatibility::glColorPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822df1e60 0xc822df1ee0 0xc822df1f60 0xc822df1fe0] } +&{glColorSubTable QOpenGLFunctions_4_2_Compatibility::glColorSubTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e02120 0xc822e021a0 0xc822e02220 0xc822e022a0 0xc822e02340 0xc822e023c0] } +&{glColorTable QOpenGLFunctions_4_2_Compatibility::glColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e02500 0xc822e02580 0xc822e02600 0xc822e02680 0xc822e02720 0xc822e027a0] } +&{glColorTableParameterfv QOpenGLFunctions_4_2_Compatibility::glColorTableParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e02940 0xc822e029c0 0xc822e02a40] } +&{glColorTableParameteriv QOpenGLFunctions_4_2_Compatibility::glColorTableParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e02be0 0xc822e02c60 0xc822e02ce0] } +&{glCompileShader QOpenGLFunctions_4_2_Compatibility::glCompileShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e02e20] } +&{glCompressedTexImage1D QOpenGLFunctions_4_2_Compatibility::glCompressedTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e02fc0 0xc822e03040 0xc822e030c0 0xc822e03140 0xc822e031e0 0xc822e03260 0xc822e032e0] } +&{glCompressedTexImage2D QOpenGLFunctions_4_2_Compatibility::glCompressedTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e03480 0xc822e03500 0xc822e03580 0xc822e03600 0xc822e036a0 0xc822e03720 0xc822e037a0 0xc822e03820] } +&{glCompressedTexImage3D QOpenGLFunctions_4_2_Compatibility::glCompressedTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e039c0 0xc822e03a40 0xc822e03ac0 0xc822e03b40 0xc822e03be0 0xc822e03c60 0xc822e03ce0 0xc822e03d60 0xc822e03e00] } +&{glCompressedTexSubImage1D QOpenGLFunctions_4_2_Compatibility::glCompressedTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e03fa0 0xc822e14020 0xc822e140a0 0xc822e14120 0xc822e141c0 0xc822e14240 0xc822e142c0] } +&{glCompressedTexSubImage2D QOpenGLFunctions_4_2_Compatibility::glCompressedTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e14460 0xc822e144e0 0xc822e14560 0xc822e145e0 0xc822e14680 0xc822e14700 0xc822e14780 0xc822e14800 0xc822e148a0] } +&{glCompressedTexSubImage3D QOpenGLFunctions_4_2_Compatibility::glCompressedTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e14a40 0xc822e14ac0 0xc822e14b40 0xc822e14bc0 0xc822e14c60 0xc822e14ce0 0xc822e14d60 0xc822e14de0 0xc822e14e80 0xc822e14f00 0xc822e14f80] } +&{glConvolutionFilter1D QOpenGLFunctions_4_2_Compatibility::glConvolutionFilter1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e15120 0xc822e151a0 0xc822e15220 0xc822e152a0 0xc822e15340 0xc822e153c0] } +&{glConvolutionFilter2D QOpenGLFunctions_4_2_Compatibility::glConvolutionFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e15560 0xc822e155e0 0xc822e15660 0xc822e156e0 0xc822e15780 0xc822e15800 0xc822e15880] } +&{glConvolutionParameterf QOpenGLFunctions_4_2_Compatibility::glConvolutionParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e15a20 0xc822e15aa0 0xc822e15b20] } +&{glConvolutionParameterfv QOpenGLFunctions_4_2_Compatibility::glConvolutionParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e15cc0 0xc822e15d40 0xc822e15dc0] } +&{glConvolutionParameteri QOpenGLFunctions_4_2_Compatibility::glConvolutionParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e15f60 0xc822e15fe0 0xc822e20060] } +&{glConvolutionParameteriv QOpenGLFunctions_4_2_Compatibility::glConvolutionParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e20200 0xc822e20280 0xc822e20300] } +&{glCopyBufferSubData QOpenGLFunctions_4_2_Compatibility::glCopyBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e204a0 0xc822e20520 0xc822e205a0 0xc822e20620 0xc822e206c0] } +&{glCopyColorSubTable QOpenGLFunctions_4_2_Compatibility::glCopyColorSubTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e20860 0xc822e208e0 0xc822e20960 0xc822e209e0 0xc822e20a80] } +&{glCopyColorTable QOpenGLFunctions_4_2_Compatibility::glCopyColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e20bc0 0xc822e20c40 0xc822e20cc0 0xc822e20d40 0xc822e20de0] } +&{glCopyConvolutionFilter1D QOpenGLFunctions_4_2_Compatibility::glCopyConvolutionFilter1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e20f80 0xc822e21000 0xc822e21080 0xc822e21100 0xc822e211a0] } +&{glCopyConvolutionFilter2D QOpenGLFunctions_4_2_Compatibility::glCopyConvolutionFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e21340 0xc822e213c0 0xc822e21440 0xc822e214c0 0xc822e21560 0xc822e215e0] } +&{glCopyPixels QOpenGLFunctions_4_2_Compatibility::glCopyPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e21720 0xc822e217a0 0xc822e21820 0xc822e218a0 0xc822e21940] } +&{glCopyTexImage1D QOpenGLFunctions_4_2_Compatibility::glCopyTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e21a80 0xc822e21b00 0xc822e21b80 0xc822e21c00 0xc822e21ca0 0xc822e21d20 0xc822e21da0] } +&{glCopyTexImage2D QOpenGLFunctions_4_2_Compatibility::glCopyTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e21ee0 0xc822e21f60 0xc822e21fe0 0xc822e2e060 0xc822e2e100 0xc822e2e180 0xc822e2e200 0xc822e2e280] } +&{glCopyTexSubImage1D QOpenGLFunctions_4_2_Compatibility::glCopyTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e2e420 0xc822e2e4a0 0xc822e2e520 0xc822e2e5a0 0xc822e2e640 0xc822e2e6c0] } +&{glCopyTexSubImage2D QOpenGLFunctions_4_2_Compatibility::glCopyTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e2e880 0xc822e2e900 0xc822e2e980 0xc822e2ea00 0xc822e2eaa0 0xc822e2eb20 0xc822e2eba0 0xc822e2ec20] } +&{glCopyTexSubImage3D QOpenGLFunctions_4_2_Compatibility::glCopyTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e2edc0 0xc822e2ee40 0xc822e2eec0 0xc822e2ef40 0xc822e2efe0 0xc822e2f060 0xc822e2f0e0 0xc822e2f160 0xc822e2f200] } +&{glCreateProgram QOpenGLFunctions_4_2_Compatibility::glCreateProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLuint [] } +&{glCreateShader QOpenGLFunctions_4_2_Compatibility::glCreateShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLuint [0xc822e2f3c0] } +&{glCreateShaderProgramv QOpenGLFunctions_4_2_Compatibility::glCreateShaderProgramv commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLuint [0xc822e2f560 0xc822e2f5e0 0xc822e2f680] } +&{glCullFace QOpenGLFunctions_4_2_Compatibility::glCullFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e2f820] } +&{glDeleteBuffers QOpenGLFunctions_4_2_Compatibility::glDeleteBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e2f960 0xc822e2f9e0] } +&{glDeleteFramebuffers QOpenGLFunctions_4_2_Compatibility::glDeleteFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e2fb80 0xc822e2fc00] } +&{glDeleteLists QOpenGLFunctions_4_2_Compatibility::glDeleteLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e2fd40 0xc822e2fdc0] } +&{glDeleteProgram QOpenGLFunctions_4_2_Compatibility::glDeleteProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e2ff00] } +&{glDeleteProgramPipelines QOpenGLFunctions_4_2_Compatibility::glDeleteProgramPipelines commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e3e0a0 0xc822e3e120] } +&{glDeleteQueries QOpenGLFunctions_4_2_Compatibility::glDeleteQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e3e260 0xc822e3e2e0] } +&{glDeleteRenderbuffers QOpenGLFunctions_4_2_Compatibility::glDeleteRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e3e480 0xc822e3e500] } +&{glDeleteSamplers QOpenGLFunctions_4_2_Compatibility::glDeleteSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e3e640 0xc822e3e6c0] } +&{glDeleteShader QOpenGLFunctions_4_2_Compatibility::glDeleteShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e3e800] } +&{glDeleteSync QOpenGLFunctions_4_2_Compatibility::glDeleteSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e3e960] } +&{glDeleteTextures QOpenGLFunctions_4_2_Compatibility::glDeleteTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e3eaa0 0xc822e3eb20] } +&{glDeleteTransformFeedbacks QOpenGLFunctions_4_2_Compatibility::glDeleteTransformFeedbacks commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e3ecc0 0xc822e3ed40] } +&{glDeleteVertexArrays QOpenGLFunctions_4_2_Compatibility::glDeleteVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e3eee0 0xc822e3ef60] } +&{glDepthFunc QOpenGLFunctions_4_2_Compatibility::glDepthFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e3f0c0] } +&{glDepthMask QOpenGLFunctions_4_2_Compatibility::glDepthMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e3f220] } +&{glDepthRange QOpenGLFunctions_4_2_Compatibility::glDepthRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e3f360 0xc822e3f3e0] } +&{glDepthRangeArrayv QOpenGLFunctions_4_2_Compatibility::glDepthRangeArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e3f580 0xc822e3f600 0xc822e3f680] } +&{glDepthRangeIndexed QOpenGLFunctions_4_2_Compatibility::glDepthRangeIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e3f820 0xc822e3f8a0 0xc822e3f920] } +&{glDepthRangef QOpenGLFunctions_4_2_Compatibility::glDepthRangef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e3fa60 0xc822e3fae0] } +&{glDetachShader QOpenGLFunctions_4_2_Compatibility::glDetachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e3fc20 0xc822e3fca0] } +&{glDisable QOpenGLFunctions_4_2_Compatibility::glDisable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e3fe00] } +&{glDisableClientState QOpenGLFunctions_4_2_Compatibility::glDisableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e3ffa0] } +&{glDisableVertexAttribArray QOpenGLFunctions_4_2_Compatibility::glDisableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e52140] } +&{glDisablei QOpenGLFunctions_4_2_Compatibility::glDisablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e52280 0xc822e52300] } +&{glDrawArrays QOpenGLFunctions_4_2_Compatibility::glDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e52440 0xc822e524c0 0xc822e52540] } +&{glDrawArraysIndirect QOpenGLFunctions_4_2_Compatibility::glDrawArraysIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e526e0 0xc822e52760] } +&{glDrawArraysInstanced QOpenGLFunctions_4_2_Compatibility::glDrawArraysInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e52900 0xc822e52980 0xc822e52a00 0xc822e52a80] } +&{glDrawArraysInstancedBaseInstance QOpenGLFunctions_4_2_Compatibility::glDrawArraysInstancedBaseInstance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e52bc0 0xc822e52c40 0xc822e52cc0 0xc822e52d40 0xc822e52de0] } +&{glDrawBuffer QOpenGLFunctions_4_2_Compatibility::glDrawBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e52f40] } +&{glDrawBuffers QOpenGLFunctions_4_2_Compatibility::glDrawBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e53080 0xc822e53100] } +&{glDrawElements QOpenGLFunctions_4_2_Compatibility::glDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e53240 0xc822e532c0 0xc822e53340 0xc822e533c0] } +&{glDrawElementsBaseVertex QOpenGLFunctions_4_2_Compatibility::glDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e53560 0xc822e535e0 0xc822e53660 0xc822e536e0 0xc822e53780] } +&{glDrawElementsIndirect QOpenGLFunctions_4_2_Compatibility::glDrawElementsIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e53920 0xc822e539a0 0xc822e53a20] } +&{glDrawElementsInstanced QOpenGLFunctions_4_2_Compatibility::glDrawElementsInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e53bc0 0xc822e53c40 0xc822e53cc0 0xc822e53d40 0xc822e53de0] } +&{glDrawElementsInstancedBaseInstance QOpenGLFunctions_4_2_Compatibility::glDrawElementsInstancedBaseInstance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e53f20 0xc822e53fa0 0xc822e5e020 0xc822e5e0a0 0xc822e5e140 0xc822e5e1c0] } +&{glDrawElementsInstancedBaseVertex QOpenGLFunctions_4_2_Compatibility::glDrawElementsInstancedBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e5e300 0xc822e5e380 0xc822e5e400 0xc822e5e480 0xc822e5e520 0xc822e5e5a0] } +&{glDrawElementsInstancedBaseVertexBaseInstance QOpenGLFunctions_4_2_Compatibility::glDrawElementsInstancedBaseVertexBaseInstance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e5e6e0 0xc822e5e760 0xc822e5e7e0 0xc822e5e860 0xc822e5e900 0xc822e5e980 0xc822e5ea00] } +&{glDrawPixels QOpenGLFunctions_4_2_Compatibility::glDrawPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e5eb40 0xc822e5ebc0 0xc822e5ec40 0xc822e5ecc0 0xc822e5ed60] } +&{glDrawRangeElements QOpenGLFunctions_4_2_Compatibility::glDrawRangeElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e5ef00 0xc822e5ef80 0xc822e5f000 0xc822e5f080 0xc822e5f120 0xc822e5f1a0] } +&{glDrawRangeElementsBaseVertex QOpenGLFunctions_4_2_Compatibility::glDrawRangeElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e5f340 0xc822e5f3c0 0xc822e5f440 0xc822e5f4c0 0xc822e5f560 0xc822e5f5e0 0xc822e5f660] } +&{glDrawTransformFeedback QOpenGLFunctions_4_2_Compatibility::glDrawTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e5f800 0xc822e5f880] } +&{glDrawTransformFeedbackInstanced QOpenGLFunctions_4_2_Compatibility::glDrawTransformFeedbackInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e5fa20 0xc822e5faa0 0xc822e5fb20] } +&{glDrawTransformFeedbackStream QOpenGLFunctions_4_2_Compatibility::glDrawTransformFeedbackStream commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e5fcc0 0xc822e5fd40 0xc822e5fdc0] } +&{glDrawTransformFeedbackStreamInstanced QOpenGLFunctions_4_2_Compatibility::glDrawTransformFeedbackStreamInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e5ff00 0xc822e5ff80 0xc822e70000 0xc822e70080] } +&{glEdgeFlag QOpenGLFunctions_4_2_Compatibility::glEdgeFlag commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e701e0] } +&{glEdgeFlagPointer QOpenGLFunctions_4_2_Compatibility::glEdgeFlagPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e70380 0xc822e70400] } +&{glEdgeFlagv QOpenGLFunctions_4_2_Compatibility::glEdgeFlagv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e70560] } +&{glEnable QOpenGLFunctions_4_2_Compatibility::glEnable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e70700] } +&{glEnableClientState QOpenGLFunctions_4_2_Compatibility::glEnableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e708a0] } +&{glEnableVertexAttribArray QOpenGLFunctions_4_2_Compatibility::glEnableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e70a40] } +&{glEnablei QOpenGLFunctions_4_2_Compatibility::glEnablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e70b80 0xc822e70c00] } +&{glEnd QOpenGLFunctions_4_2_Compatibility::glEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [] } +&{glEndConditionalRender QOpenGLFunctions_4_2_Compatibility::glEndConditionalRender commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [] } +&{glEndList QOpenGLFunctions_4_2_Compatibility::glEndList commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [] } +&{glEndQuery QOpenGLFunctions_4_2_Compatibility::glEndQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e70f00] } +&{glEndQueryIndexed QOpenGLFunctions_4_2_Compatibility::glEndQueryIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e710a0 0xc822e71120] } +&{glEndTransformFeedback QOpenGLFunctions_4_2_Compatibility::glEndTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [] } +&{glEvalCoord1d QOpenGLFunctions_4_2_Compatibility::glEvalCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e71360] } +&{glEvalCoord1dv QOpenGLFunctions_4_2_Compatibility::glEvalCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e714a0] } +&{glEvalCoord1f QOpenGLFunctions_4_2_Compatibility::glEvalCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e71600] } +&{glEvalCoord1fv QOpenGLFunctions_4_2_Compatibility::glEvalCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e71740] } +&{glEvalCoord2d QOpenGLFunctions_4_2_Compatibility::glEvalCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e71880 0xc822e71900] } +&{glEvalCoord2dv QOpenGLFunctions_4_2_Compatibility::glEvalCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e71a40] } +&{glEvalCoord2f QOpenGLFunctions_4_2_Compatibility::glEvalCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e71b80 0xc822e71c00] } +&{glEvalCoord2fv QOpenGLFunctions_4_2_Compatibility::glEvalCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e71d40] } +&{glEvalMesh1 QOpenGLFunctions_4_2_Compatibility::glEvalMesh1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e71e80 0xc822e71f00 0xc822e71f80] } +&{glEvalMesh2 QOpenGLFunctions_4_2_Compatibility::glEvalMesh2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e800c0 0xc822e80140 0xc822e801c0 0xc822e80240 0xc822e802e0] } +&{glEvalPoint1 QOpenGLFunctions_4_2_Compatibility::glEvalPoint1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e80440] } +&{glEvalPoint2 QOpenGLFunctions_4_2_Compatibility::glEvalPoint2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e80580 0xc822e80600] } +&{glFeedbackBuffer QOpenGLFunctions_4_2_Compatibility::glFeedbackBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e80740 0xc822e807c0 0xc822e80840] } +&{glFenceSync QOpenGLFunctions_4_2_Compatibility::glFenceSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLsync [0xc822e80980 0xc822e80a00] } +&{glFinish QOpenGLFunctions_4_2_Compatibility::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [] } +&{glFlush QOpenGLFunctions_4_2_Compatibility::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [] } +&{glFlushMappedBufferRange QOpenGLFunctions_4_2_Compatibility::glFlushMappedBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e80c60 0xc822e80ce0 0xc822e80d60] } +&{glFogCoordPointer QOpenGLFunctions_4_2_Compatibility::glFogCoordPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e80f00 0xc822e80f80 0xc822e81000] } +&{glFogCoordd QOpenGLFunctions_4_2_Compatibility::glFogCoordd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e81160] } +&{glFogCoorddv QOpenGLFunctions_4_2_Compatibility::glFogCoorddv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e812a0] } +&{glFogCoordf QOpenGLFunctions_4_2_Compatibility::glFogCoordf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e81400] } +&{glFogCoordfv QOpenGLFunctions_4_2_Compatibility::glFogCoordfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e81540] } +&{glFogf QOpenGLFunctions_4_2_Compatibility::glFogf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e81680 0xc822e81700] } +&{glFogfv QOpenGLFunctions_4_2_Compatibility::glFogfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e81840 0xc822e818c0] } +&{glFogi QOpenGLFunctions_4_2_Compatibility::glFogi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e81a00 0xc822e81a80] } +&{glFogiv QOpenGLFunctions_4_2_Compatibility::glFogiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e81bc0 0xc822e81c40] } +&{glFramebufferRenderbuffer QOpenGLFunctions_4_2_Compatibility::glFramebufferRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e81de0 0xc822e81e60 0xc822e81f00 0xc822e81fc0] } +&{glFramebufferTexture QOpenGLFunctions_4_2_Compatibility::glFramebufferTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e94160 0xc822e941e0 0xc822e94260 0xc822e942e0] } +&{glFramebufferTexture1D QOpenGLFunctions_4_2_Compatibility::glFramebufferTexture1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e94480 0xc822e94500 0xc822e94580 0xc822e94600 0xc822e946a0] } +&{glFramebufferTexture2D QOpenGLFunctions_4_2_Compatibility::glFramebufferTexture2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e94840 0xc822e948c0 0xc822e94940 0xc822e949c0 0xc822e94a60] } +&{glFramebufferTexture3D QOpenGLFunctions_4_2_Compatibility::glFramebufferTexture3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e94c00 0xc822e94c80 0xc822e94d00 0xc822e94d80 0xc822e94e20 0xc822e94ea0] } +&{glFramebufferTextureLayer QOpenGLFunctions_4_2_Compatibility::glFramebufferTextureLayer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e95040 0xc822e950c0 0xc822e95140 0xc822e951c0 0xc822e95260] } +&{glFrontFace QOpenGLFunctions_4_2_Compatibility::glFrontFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e953c0] } +&{glFrustum QOpenGLFunctions_4_2_Compatibility::glFrustum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e95500 0xc822e95580 0xc822e95600 0xc822e95680 0xc822e95720 0xc822e957a0] } +&{glGenBuffers QOpenGLFunctions_4_2_Compatibility::glGenBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e958e0 0xc822e95960] } +&{glGenFramebuffers QOpenGLFunctions_4_2_Compatibility::glGenFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e95b00 0xc822e95b80] } +&{glGenLists QOpenGLFunctions_4_2_Compatibility::glGenLists commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLuint [0xc822e95ce0] } +&{glGenProgramPipelines QOpenGLFunctions_4_2_Compatibility::glGenProgramPipelines commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822e95e80 0xc822e95f00] } +&{glGenQueries QOpenGLFunctions_4_2_Compatibility::glGenQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ea2040 0xc822ea20c0] } +&{glGenRenderbuffers QOpenGLFunctions_4_2_Compatibility::glGenRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ea2260 0xc822ea22e0] } +&{glGenSamplers QOpenGLFunctions_4_2_Compatibility::glGenSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ea2420 0xc822ea24a0] } +&{glGenTextures QOpenGLFunctions_4_2_Compatibility::glGenTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ea25e0 0xc822ea2660] } +&{glGenTransformFeedbacks QOpenGLFunctions_4_2_Compatibility::glGenTransformFeedbacks commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ea2800 0xc822ea2880] } +&{glGenVertexArrays QOpenGLFunctions_4_2_Compatibility::glGenVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ea2a20 0xc822ea2aa0] } +&{glGenerateMipmap QOpenGLFunctions_4_2_Compatibility::glGenerateMipmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ea2be0] } +&{glGetActiveAtomicCounterBufferiv QOpenGLFunctions_4_2_Compatibility::glGetActiveAtomicCounterBufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ea2d80 0xc822ea2e00 0xc822ea2e80 0xc822ea2f00] } +&{glGetActiveAttrib QOpenGLFunctions_4_2_Compatibility::glGetActiveAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ea30a0 0xc822ea3120 0xc822ea31a0 0xc822ea3220 0xc822ea32c0 0xc822ea3340 0xc822ea33c0] } +&{glGetActiveSubroutineName QOpenGLFunctions_4_2_Compatibility::glGetActiveSubroutineName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ea3560 0xc822ea35e0 0xc822ea3660 0xc822ea36e0 0xc822ea3780 0xc822ea3800] } +&{glGetActiveSubroutineUniformName QOpenGLFunctions_4_2_Compatibility::glGetActiveSubroutineUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ea39a0 0xc822ea3a20 0xc822ea3aa0 0xc822ea3b20 0xc822ea3bc0 0xc822ea3c40] } +&{glGetActiveSubroutineUniformiv QOpenGLFunctions_4_2_Compatibility::glGetActiveSubroutineUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ea3de0 0xc822ea3e60 0xc822ea3ee0 0xc822ea3f60 0xc822eb4000] } +&{glGetActiveUniform QOpenGLFunctions_4_2_Compatibility::glGetActiveUniform commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822eb41a0 0xc822eb4220 0xc822eb42a0 0xc822eb4320 0xc822eb43c0 0xc822eb4440 0xc822eb44c0] } +&{glGetActiveUniformBlockName QOpenGLFunctions_4_2_Compatibility::glGetActiveUniformBlockName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822eb4660 0xc822eb4700 0xc822eb47c0 0xc822eb4840 0xc822eb48e0] } +&{glGetActiveUniformBlockiv QOpenGLFunctions_4_2_Compatibility::glGetActiveUniformBlockiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822eb4a80 0xc822eb4b20 0xc822eb4be0 0xc822eb4c60] } +&{glGetActiveUniformName QOpenGLFunctions_4_2_Compatibility::glGetActiveUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822eb4e00 0xc822eb4e80 0xc822eb4f00 0xc822eb4f80 0xc822eb5020] } +&{glGetActiveUniformsiv QOpenGLFunctions_4_2_Compatibility::glGetActiveUniformsiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822eb51c0 0xc822eb5240 0xc822eb52c0 0xc822eb5340 0xc822eb53e0] } +&{glGetAttachedShaders QOpenGLFunctions_4_2_Compatibility::glGetAttachedShaders commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822eb5580 0xc822eb5600 0xc822eb5680 0xc822eb5700] } +&{glGetAttribLocation QOpenGLFunctions_4_2_Compatibility::glGetAttribLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLint [0xc822eb58a0 0xc822eb5920] } +&{glGetBooleani_v QOpenGLFunctions_4_2_Compatibility::glGetBooleani_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822eb5a60 0xc822eb5ae0 0xc822eb5b60] } +&{glGetBooleanv QOpenGLFunctions_4_2_Compatibility::glGetBooleanv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822eb5ca0 0xc822eb5d20] } +&{glGetBufferParameteri64v QOpenGLFunctions_4_2_Compatibility::glGetBufferParameteri64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822eb5ec0 0xc822eb5f40 0xc822eb5fc0] } +&{glGetBufferParameteriv QOpenGLFunctions_4_2_Compatibility::glGetBufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ec2160 0xc822ec21e0 0xc822ec2260] } +&{glGetBufferPointerv QOpenGLFunctions_4_2_Compatibility::glGetBufferPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ec2400 0xc822ec2480 0xc822ec2500] } +&{glGetBufferSubData QOpenGLFunctions_4_2_Compatibility::glGetBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ec26a0 0xc822ec2720 0xc822ec27a0 0xc822ec2820] } +&{glGetClipPlane QOpenGLFunctions_4_2_Compatibility::glGetClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ec2960 0xc822ec29e0] } +&{glGetColorTable QOpenGLFunctions_4_2_Compatibility::glGetColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ec2b20 0xc822ec2ba0 0xc822ec2c20 0xc822ec2ca0] } +&{glGetColorTableParameterfv QOpenGLFunctions_4_2_Compatibility::glGetColorTableParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ec2e60 0xc822ec2ee0 0xc822ec2f60] } +&{glGetColorTableParameteriv QOpenGLFunctions_4_2_Compatibility::glGetColorTableParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ec3100 0xc822ec3180 0xc822ec3200] } +&{glGetCompressedTexImage QOpenGLFunctions_4_2_Compatibility::glGetCompressedTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ec33a0 0xc822ec3420 0xc822ec34a0] } +&{glGetConvolutionFilter QOpenGLFunctions_4_2_Compatibility::glGetConvolutionFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ec3640 0xc822ec36c0 0xc822ec3740 0xc822ec37c0] } +&{glGetConvolutionParameterfv QOpenGLFunctions_4_2_Compatibility::glGetConvolutionParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ec3960 0xc822ec39e0 0xc822ec3a60] } +&{glGetConvolutionParameteriv QOpenGLFunctions_4_2_Compatibility::glGetConvolutionParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ec3c00 0xc822ec3c80 0xc822ec3d00] } +&{glGetDoublei_v QOpenGLFunctions_4_2_Compatibility::glGetDoublei_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ec3e40 0xc822ec3ec0 0xc822ec3f40] } +&{glGetDoublev QOpenGLFunctions_4_2_Compatibility::glGetDoublev commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ed2080 0xc822ed2100] } +&{glGetError QOpenGLFunctions_4_2_Compatibility::glGetError commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLenum [] } +&{glGetFloati_v QOpenGLFunctions_4_2_Compatibility::glGetFloati_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ed22c0 0xc822ed2340 0xc822ed23c0] } +&{glGetFloatv QOpenGLFunctions_4_2_Compatibility::glGetFloatv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ed2500 0xc822ed2580] } +&{glGetFragDataIndex QOpenGLFunctions_4_2_Compatibility::glGetFragDataIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLint [0xc822ed2720 0xc822ed27a0] } +&{glGetFragDataLocation QOpenGLFunctions_4_2_Compatibility::glGetFragDataLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLint [0xc822ed2940 0xc822ed29c0] } +&{glGetFramebufferAttachmentParameteriv QOpenGLFunctions_4_2_Compatibility::glGetFramebufferAttachmentParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ed2b00 0xc822ed2b80 0xc822ed2c00 0xc822ed2c80] } +&{glGetHistogram QOpenGLFunctions_4_2_Compatibility::glGetHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ed2dc0 0xc822ed2e40 0xc822ed2ec0 0xc822ed2f40 0xc822ed2fe0] } +&{glGetHistogramParameterfv QOpenGLFunctions_4_2_Compatibility::glGetHistogramParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ed3180 0xc822ed3200 0xc822ed3280] } +&{glGetHistogramParameteriv QOpenGLFunctions_4_2_Compatibility::glGetHistogramParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ed3420 0xc822ed34a0 0xc822ed3520] } +&{glGetInteger64i_v QOpenGLFunctions_4_2_Compatibility::glGetInteger64i_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ed36c0 0xc822ed3740 0xc822ed37c0] } +&{glGetInteger64v QOpenGLFunctions_4_2_Compatibility::glGetInteger64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ed3900 0xc822ed3980] } +&{glGetIntegeri_v QOpenGLFunctions_4_2_Compatibility::glGetIntegeri_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ed3ac0 0xc822ed3b40 0xc822ed3bc0] } +&{glGetIntegerv QOpenGLFunctions_4_2_Compatibility::glGetIntegerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ed3d00 0xc822ed3d80] } +&{glGetInternalformativ QOpenGLFunctions_4_2_Compatibility::glGetInternalformativ commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ed3f20 0xc822ed3fa0 0xc822ee4020 0xc822ee40a0 0xc822ee4140] } +&{glGetLightfv QOpenGLFunctions_4_2_Compatibility::glGetLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ee4280 0xc822ee4300 0xc822ee4380] } +&{glGetLightiv QOpenGLFunctions_4_2_Compatibility::glGetLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ee44c0 0xc822ee4540 0xc822ee45c0] } +&{glGetMapdv QOpenGLFunctions_4_2_Compatibility::glGetMapdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ee4700 0xc822ee4780 0xc822ee4800] } +&{glGetMapfv QOpenGLFunctions_4_2_Compatibility::glGetMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ee4940 0xc822ee49c0 0xc822ee4a40] } +&{glGetMapiv QOpenGLFunctions_4_2_Compatibility::glGetMapiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ee4b80 0xc822ee4c00 0xc822ee4c80] } +&{glGetMaterialfv QOpenGLFunctions_4_2_Compatibility::glGetMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ee4dc0 0xc822ee4e40 0xc822ee4ec0] } +&{glGetMaterialiv QOpenGLFunctions_4_2_Compatibility::glGetMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ee5000 0xc822ee5080 0xc822ee5100] } +&{glGetMinmax QOpenGLFunctions_4_2_Compatibility::glGetMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ee5240 0xc822ee52c0 0xc822ee5340 0xc822ee53c0 0xc822ee5460] } +&{glGetMinmaxParameterfv QOpenGLFunctions_4_2_Compatibility::glGetMinmaxParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ee5600 0xc822ee5680 0xc822ee5700] } +&{glGetMinmaxParameteriv QOpenGLFunctions_4_2_Compatibility::glGetMinmaxParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ee58a0 0xc822ee5920 0xc822ee59a0] } +&{glGetMultisamplefv QOpenGLFunctions_4_2_Compatibility::glGetMultisamplefv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ee5b40 0xc822ee5bc0 0xc822ee5c40] } +&{glGetPixelMapfv QOpenGLFunctions_4_2_Compatibility::glGetPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ee5d80 0xc822ee5e00] } +&{glGetPixelMapuiv QOpenGLFunctions_4_2_Compatibility::glGetPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ee5f40 0xc822ee5fc0] } +&{glGetPixelMapusv QOpenGLFunctions_4_2_Compatibility::glGetPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ef2100 0xc822ef2180] } +&{glGetPointerv QOpenGLFunctions_4_2_Compatibility::glGetPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ef22c0 0xc822ef2340] } +&{glGetPolygonStipple QOpenGLFunctions_4_2_Compatibility::glGetPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ef24e0] } +&{glGetProgramBinary QOpenGLFunctions_4_2_Compatibility::glGetProgramBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ef2680 0xc822ef2700 0xc822ef2780 0xc822ef2800 0xc822ef28a0] } +&{glGetProgramInfoLog QOpenGLFunctions_4_2_Compatibility::glGetProgramInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ef2a40 0xc822ef2ac0 0xc822ef2b40 0xc822ef2bc0] } +&{glGetProgramPipelineInfoLog QOpenGLFunctions_4_2_Compatibility::glGetProgramPipelineInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ef2d60 0xc822ef2de0 0xc822ef2e60 0xc822ef2ee0] } +&{glGetProgramPipelineiv QOpenGLFunctions_4_2_Compatibility::glGetProgramPipelineiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ef3080 0xc822ef3100 0xc822ef3180] } +&{glGetProgramStageiv QOpenGLFunctions_4_2_Compatibility::glGetProgramStageiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ef3320 0xc822ef33a0 0xc822ef3420 0xc822ef34a0] } +&{glGetProgramiv QOpenGLFunctions_4_2_Compatibility::glGetProgramiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ef35e0 0xc822ef3660 0xc822ef36e0] } +&{glGetQueryIndexediv QOpenGLFunctions_4_2_Compatibility::glGetQueryIndexediv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ef3880 0xc822ef3900 0xc822ef3980 0xc822ef3a00] } +&{glGetQueryObjecti64v QOpenGLFunctions_4_2_Compatibility::glGetQueryObjecti64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ef3ba0 0xc822ef3c20 0xc822ef3ca0] } +&{glGetQueryObjectiv QOpenGLFunctions_4_2_Compatibility::glGetQueryObjectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ef3e40 0xc822ef3ec0 0xc822ef3f40] } +&{glGetQueryObjectui64v QOpenGLFunctions_4_2_Compatibility::glGetQueryObjectui64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f020e0 0xc822f02160 0xc822f021e0] } +&{glGetQueryObjectuiv QOpenGLFunctions_4_2_Compatibility::glGetQueryObjectuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f02380 0xc822f02400 0xc822f02480] } +&{glGetQueryiv QOpenGLFunctions_4_2_Compatibility::glGetQueryiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f025c0 0xc822f02640 0xc822f026c0] } +&{glGetRenderbufferParameteriv QOpenGLFunctions_4_2_Compatibility::glGetRenderbufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f02860 0xc822f028e0 0xc822f02960] } +&{glGetSamplerParameterIiv QOpenGLFunctions_4_2_Compatibility::glGetSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f02b00 0xc822f02b80 0xc822f02c00] } +&{glGetSamplerParameterIuiv QOpenGLFunctions_4_2_Compatibility::glGetSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f02da0 0xc822f02e20 0xc822f02ea0] } +&{glGetSamplerParameterfv QOpenGLFunctions_4_2_Compatibility::glGetSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f03040 0xc822f030c0 0xc822f03140] } +&{glGetSamplerParameteriv QOpenGLFunctions_4_2_Compatibility::glGetSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f032e0 0xc822f03360 0xc822f033e0] } +&{glGetSeparableFilter QOpenGLFunctions_4_2_Compatibility::glGetSeparableFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f03580 0xc822f03600 0xc822f03680 0xc822f03700 0xc822f037a0 0xc822f03820] } +&{glGetShaderInfoLog QOpenGLFunctions_4_2_Compatibility::glGetShaderInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f039c0 0xc822f03a40 0xc822f03ac0 0xc822f03b40] } +&{glGetShaderPrecisionFormat QOpenGLFunctions_4_2_Compatibility::glGetShaderPrecisionFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f03ce0 0xc822f03d60 0xc822f03de0 0xc822f03e60] } +&{glGetShaderSource QOpenGLFunctions_4_2_Compatibility::glGetShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f10000 0xc822f10080 0xc822f10100 0xc822f10180] } +&{glGetShaderiv QOpenGLFunctions_4_2_Compatibility::glGetShaderiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f102c0 0xc822f10340 0xc822f103c0] } +&{glGetString QOpenGLFunctions_4_2_Compatibility::glGetString commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false const GLubyte * [0xc822f10500] } +&{glGetStringi QOpenGLFunctions_4_2_Compatibility::glGetStringi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false const GLubyte * [0xc822f10640 0xc822f106c0] } +&{glGetSubroutineIndex QOpenGLFunctions_4_2_Compatibility::glGetSubroutineIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLuint [0xc822f10860 0xc822f108e0 0xc822f10960] } +&{glGetSubroutineUniformLocation QOpenGLFunctions_4_2_Compatibility::glGetSubroutineUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLint [0xc822f10b00 0xc822f10b80 0xc822f10c00] } +&{glGetSynciv QOpenGLFunctions_4_2_Compatibility::glGetSynciv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f10d40 0xc822f10dc0 0xc822f10e40 0xc822f10ec0 0xc822f10f60] } +&{glGetTexEnvfv QOpenGLFunctions_4_2_Compatibility::glGetTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f110a0 0xc822f11120 0xc822f111a0] } +&{glGetTexEnviv QOpenGLFunctions_4_2_Compatibility::glGetTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f112e0 0xc822f11360 0xc822f113e0] } +&{glGetTexGendv QOpenGLFunctions_4_2_Compatibility::glGetTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f11520 0xc822f115a0 0xc822f11620] } +&{glGetTexGenfv QOpenGLFunctions_4_2_Compatibility::glGetTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f11760 0xc822f117e0 0xc822f11860] } +&{glGetTexGeniv QOpenGLFunctions_4_2_Compatibility::glGetTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f119a0 0xc822f11a20 0xc822f11aa0] } +&{glGetTexImage QOpenGLFunctions_4_2_Compatibility::glGetTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f11be0 0xc822f11c60 0xc822f11ce0 0xc822f11d60 0xc822f11e00] } +&{glGetTexLevelParameterfv QOpenGLFunctions_4_2_Compatibility::glGetTexLevelParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f11fa0 0xc822f24020 0xc822f240a0 0xc822f24120] } +&{glGetTexLevelParameteriv QOpenGLFunctions_4_2_Compatibility::glGetTexLevelParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f242c0 0xc822f24340 0xc822f243c0 0xc822f24440] } +&{glGetTexParameterIiv QOpenGLFunctions_4_2_Compatibility::glGetTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f245e0 0xc822f24660 0xc822f246e0] } +&{glGetTexParameterIuiv QOpenGLFunctions_4_2_Compatibility::glGetTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f24880 0xc822f24900 0xc822f24980] } +&{glGetTexParameterfv QOpenGLFunctions_4_2_Compatibility::glGetTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f24b20 0xc822f24ba0 0xc822f24c20] } +&{glGetTexParameteriv QOpenGLFunctions_4_2_Compatibility::glGetTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f24dc0 0xc822f24e40 0xc822f24ec0] } +&{glGetTransformFeedbackVarying QOpenGLFunctions_4_2_Compatibility::glGetTransformFeedbackVarying commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f25060 0xc822f250e0 0xc822f25160 0xc822f251e0 0xc822f25280 0xc822f25300 0xc822f25380] } +&{glGetUniformBlockIndex QOpenGLFunctions_4_2_Compatibility::glGetUniformBlockIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLuint [0xc822f25520 0xc822f255a0] } +&{glGetUniformIndices QOpenGLFunctions_4_2_Compatibility::glGetUniformIndices commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f25740 0xc822f257c0 0xc822f25860 0xc822f25920] } +&{glGetUniformLocation QOpenGLFunctions_4_2_Compatibility::glGetUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLint [0xc822f25ac0 0xc822f25b40] } +&{glGetUniformSubroutineuiv QOpenGLFunctions_4_2_Compatibility::glGetUniformSubroutineuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f25ce0 0xc822f25d60 0xc822f25de0] } +&{glGetUniformdv QOpenGLFunctions_4_2_Compatibility::glGetUniformdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f25f20 0xc822f25fa0 0xc822f30020] } +&{glGetUniformfv QOpenGLFunctions_4_2_Compatibility::glGetUniformfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f30160 0xc822f301e0 0xc822f30260] } +&{glGetUniformiv QOpenGLFunctions_4_2_Compatibility::glGetUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f303a0 0xc822f30420 0xc822f304a0] } +&{glGetUniformuiv QOpenGLFunctions_4_2_Compatibility::glGetUniformuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f305e0 0xc822f30660 0xc822f306e0] } +&{glGetVertexAttribIiv QOpenGLFunctions_4_2_Compatibility::glGetVertexAttribIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f30880 0xc822f30900 0xc822f30980] } +&{glGetVertexAttribIuiv QOpenGLFunctions_4_2_Compatibility::glGetVertexAttribIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f30b20 0xc822f30ba0 0xc822f30c20] } +&{glGetVertexAttribLdv QOpenGLFunctions_4_2_Compatibility::glGetVertexAttribLdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f30dc0 0xc822f30e40 0xc822f30ec0] } +&{glGetVertexAttribPointerv QOpenGLFunctions_4_2_Compatibility::glGetVertexAttribPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f31060 0xc822f310e0 0xc822f31160] } +&{glGetVertexAttribdv QOpenGLFunctions_4_2_Compatibility::glGetVertexAttribdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f31300 0xc822f31380 0xc822f31400] } +&{glGetVertexAttribfv QOpenGLFunctions_4_2_Compatibility::glGetVertexAttribfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f315a0 0xc822f31620 0xc822f316a0] } +&{glGetVertexAttribiv QOpenGLFunctions_4_2_Compatibility::glGetVertexAttribiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f31840 0xc822f318c0 0xc822f31940] } +&{glHint QOpenGLFunctions_4_2_Compatibility::glHint commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f31a80 0xc822f31b00] } +&{glHistogram QOpenGLFunctions_4_2_Compatibility::glHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f31c40 0xc822f31cc0 0xc822f31d40 0xc822f31dc0] } +&{glIndexMask QOpenGLFunctions_4_2_Compatibility::glIndexMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f31f20] } +&{glIndexPointer QOpenGLFunctions_4_2_Compatibility::glIndexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f42060 0xc822f420e0 0xc822f42160] } +&{glIndexd QOpenGLFunctions_4_2_Compatibility::glIndexd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f422c0] } +&{glIndexdv QOpenGLFunctions_4_2_Compatibility::glIndexdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f42400] } +&{glIndexf QOpenGLFunctions_4_2_Compatibility::glIndexf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f42560] } +&{glIndexfv QOpenGLFunctions_4_2_Compatibility::glIndexfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f426c0] } +&{glIndexi QOpenGLFunctions_4_2_Compatibility::glIndexi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f42820] } +&{glIndexiv QOpenGLFunctions_4_2_Compatibility::glIndexiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f42980] } +&{glIndexs QOpenGLFunctions_4_2_Compatibility::glIndexs commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f42ae0] } +&{glIndexsv QOpenGLFunctions_4_2_Compatibility::glIndexsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f42c40] } +&{glIndexub QOpenGLFunctions_4_2_Compatibility::glIndexub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f42da0] } +&{glIndexubv QOpenGLFunctions_4_2_Compatibility::glIndexubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f42ee0] } +&{glInitNames QOpenGLFunctions_4_2_Compatibility::glInitNames commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [] } +&{glInterleavedArrays QOpenGLFunctions_4_2_Compatibility::glInterleavedArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f43100 0xc822f43180 0xc822f43200] } +&{glIsBuffer QOpenGLFunctions_4_2_Compatibility::glIsBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLboolean [0xc822f43340] } +&{glIsEnabled QOpenGLFunctions_4_2_Compatibility::glIsEnabled commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLboolean [0xc822f43480] } +&{glIsEnabledi QOpenGLFunctions_4_2_Compatibility::glIsEnabledi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLboolean [0xc822f435c0 0xc822f43640] } +&{glIsFramebuffer QOpenGLFunctions_4_2_Compatibility::glIsFramebuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLboolean [0xc822f43780] } +&{glIsList QOpenGLFunctions_4_2_Compatibility::glIsList commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLboolean [0xc822f438e0] } +&{glIsProgram QOpenGLFunctions_4_2_Compatibility::glIsProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLboolean [0xc822f43a20] } +&{glIsProgramPipeline QOpenGLFunctions_4_2_Compatibility::glIsProgramPipeline commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLboolean [0xc822f43bc0] } +&{glIsQuery QOpenGLFunctions_4_2_Compatibility::glIsQuery commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLboolean [0xc822f43d20] } +&{glIsRenderbuffer QOpenGLFunctions_4_2_Compatibility::glIsRenderbuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLboolean [0xc822f43e60] } +&{glIsSampler QOpenGLFunctions_4_2_Compatibility::glIsSampler commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLboolean [0xc822f43fa0] } +&{glIsShader QOpenGLFunctions_4_2_Compatibility::glIsShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLboolean [0xc822f5a0e0] } +&{glIsSync QOpenGLFunctions_4_2_Compatibility::glIsSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLboolean [0xc822f5a240] } +&{glIsTexture QOpenGLFunctions_4_2_Compatibility::glIsTexture commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLboolean [0xc822f5a380] } +&{glIsTransformFeedback QOpenGLFunctions_4_2_Compatibility::glIsTransformFeedback commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLboolean [0xc822f5a520] } +&{glIsVertexArray QOpenGLFunctions_4_2_Compatibility::glIsVertexArray commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLboolean [0xc822f5a660] } +&{glLightModelf QOpenGLFunctions_4_2_Compatibility::glLightModelf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f5a7a0 0xc822f5a820] } +&{glLightModelfv QOpenGLFunctions_4_2_Compatibility::glLightModelfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f5a960 0xc822f5a9e0] } +&{glLightModeli QOpenGLFunctions_4_2_Compatibility::glLightModeli commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f5ab20 0xc822f5aba0] } +&{glLightModeliv QOpenGLFunctions_4_2_Compatibility::glLightModeliv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f5ace0 0xc822f5ad60] } +&{glLightf QOpenGLFunctions_4_2_Compatibility::glLightf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f5aea0 0xc822f5af20 0xc822f5afa0] } +&{glLightfv QOpenGLFunctions_4_2_Compatibility::glLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f5b0e0 0xc822f5b160 0xc822f5b1e0] } +&{glLighti QOpenGLFunctions_4_2_Compatibility::glLighti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f5b320 0xc822f5b3a0 0xc822f5b420] } +&{glLightiv QOpenGLFunctions_4_2_Compatibility::glLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f5b560 0xc822f5b5e0 0xc822f5b660] } +&{glLineStipple QOpenGLFunctions_4_2_Compatibility::glLineStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f5b7a0 0xc822f5b820] } +&{glLineWidth QOpenGLFunctions_4_2_Compatibility::glLineWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f5b980] } +&{glLinkProgram QOpenGLFunctions_4_2_Compatibility::glLinkProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f5bac0] } +&{glListBase QOpenGLFunctions_4_2_Compatibility::glListBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f5bc20] } +&{glLoadIdentity QOpenGLFunctions_4_2_Compatibility::glLoadIdentity commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [] } +&{glLoadMatrixd QOpenGLFunctions_4_2_Compatibility::glLoadMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f5bde0] } +&{glLoadMatrixf QOpenGLFunctions_4_2_Compatibility::glLoadMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f5bf20] } +&{glLoadName QOpenGLFunctions_4_2_Compatibility::glLoadName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f6e080] } +&{glLoadTransposeMatrixd QOpenGLFunctions_4_2_Compatibility::glLoadTransposeMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f6e220] } +&{glLoadTransposeMatrixf QOpenGLFunctions_4_2_Compatibility::glLoadTransposeMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f6e3c0] } +&{glLogicOp QOpenGLFunctions_4_2_Compatibility::glLogicOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f6e520] } +&{glMap1d QOpenGLFunctions_4_2_Compatibility::glMap1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f6e660 0xc822f6e6e0 0xc822f6e760 0xc822f6e7e0 0xc822f6e880 0xc822f6e900] } +&{glMap1f QOpenGLFunctions_4_2_Compatibility::glMap1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f6ea40 0xc822f6eac0 0xc822f6eb40 0xc822f6ebc0 0xc822f6ec60 0xc822f6ece0] } +&{glMap2d QOpenGLFunctions_4_2_Compatibility::glMap2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f6ee20 0xc822f6eea0 0xc822f6ef20 0xc822f6efa0 0xc822f6f040 0xc822f6f0c0 0xc822f6f140 0xc822f6f1c0 0xc822f6f260 0xc822f6f2e0] } +&{glMap2f QOpenGLFunctions_4_2_Compatibility::glMap2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f6f420 0xc822f6f4a0 0xc822f6f520 0xc822f6f5a0 0xc822f6f640 0xc822f6f6c0 0xc822f6f740 0xc822f6f7c0 0xc822f6f860 0xc822f6f8e0] } +&{glMapBuffer QOpenGLFunctions_4_2_Compatibility::glMapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLvoid * [0xc822f6fa20 0xc822f6faa0] } +&{glMapBufferRange QOpenGLFunctions_4_2_Compatibility::glMapBufferRange commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLvoid * [0xc822f6fbe0 0xc822f6fc60 0xc822f6fce0 0xc822f6fd60] } +&{glMapGrid1d QOpenGLFunctions_4_2_Compatibility::glMapGrid1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f6fea0 0xc822f6ff20 0xc822f6ffa0] } +&{glMapGrid1f QOpenGLFunctions_4_2_Compatibility::glMapGrid1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f7e0e0 0xc822f7e160 0xc822f7e1e0] } +&{glMapGrid2d QOpenGLFunctions_4_2_Compatibility::glMapGrid2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f7e320 0xc822f7e3a0 0xc822f7e420 0xc822f7e4a0 0xc822f7e540 0xc822f7e5c0] } +&{glMapGrid2f QOpenGLFunctions_4_2_Compatibility::glMapGrid2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f7e700 0xc822f7e780 0xc822f7e800 0xc822f7e880 0xc822f7e920 0xc822f7e9a0] } +&{glMaterialf QOpenGLFunctions_4_2_Compatibility::glMaterialf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f7eae0 0xc822f7eb60 0xc822f7ebe0] } +&{glMaterialfv QOpenGLFunctions_4_2_Compatibility::glMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f7ed20 0xc822f7eda0 0xc822f7ee20] } +&{glMateriali QOpenGLFunctions_4_2_Compatibility::glMateriali commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f7ef60 0xc822f7efe0 0xc822f7f060] } +&{glMaterialiv QOpenGLFunctions_4_2_Compatibility::glMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f7f1a0 0xc822f7f220 0xc822f7f2a0] } +&{glMatrixMode QOpenGLFunctions_4_2_Compatibility::glMatrixMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f7f400] } +&{glMemoryBarrier QOpenGLFunctions_4_2_Compatibility::glMemoryBarrier commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f7f540] } +&{glMinSampleShading QOpenGLFunctions_4_2_Compatibility::glMinSampleShading commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f7f6e0] } +&{glMinmax QOpenGLFunctions_4_2_Compatibility::glMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f7f820 0xc822f7f8a0 0xc822f7f920] } +&{glMultMatrixd QOpenGLFunctions_4_2_Compatibility::glMultMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f7fa60] } +&{glMultMatrixf QOpenGLFunctions_4_2_Compatibility::glMultMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f7fba0] } +&{glMultTransposeMatrixd QOpenGLFunctions_4_2_Compatibility::glMultTransposeMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f7fd40] } +&{glMultTransposeMatrixf QOpenGLFunctions_4_2_Compatibility::glMultTransposeMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f7fee0] } +&{glMultiDrawArrays QOpenGLFunctions_4_2_Compatibility::glMultiDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f90080 0xc822f90100 0xc822f90180 0xc822f90200] } +&{glMultiDrawElements QOpenGLFunctions_4_2_Compatibility::glMultiDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f903a0 0xc822f90420 0xc822f904a0 0xc822f90540 0xc822f90620] } +&{glMultiDrawElementsBaseVertex QOpenGLFunctions_4_2_Compatibility::glMultiDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f907c0 0xc822f90840 0xc822f908c0 0xc822f90960 0xc822f90a40 0xc822f90ac0] } +&{glMultiTexCoord1d QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f90c60 0xc822f90ce0] } +&{glMultiTexCoord1dv QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f90e80 0xc822f90f00] } +&{glMultiTexCoord1f QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f910a0 0xc822f91120] } +&{glMultiTexCoord1fv QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f912c0 0xc822f91340] } +&{glMultiTexCoord1i QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f914e0 0xc822f91560] } +&{glMultiTexCoord1iv QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f91700 0xc822f91780] } +&{glMultiTexCoord1s QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f91920 0xc822f919a0] } +&{glMultiTexCoord1sv QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f91b40 0xc822f91bc0] } +&{glMultiTexCoord2d QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f91d60 0xc822f91de0 0xc822f91e60] } +&{glMultiTexCoord2dv QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f9e000 0xc822f9e080] } +&{glMultiTexCoord2f QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f9e220 0xc822f9e2a0 0xc822f9e320] } +&{glMultiTexCoord2fv QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f9e4c0 0xc822f9e540] } +&{glMultiTexCoord2i QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f9e6e0 0xc822f9e760 0xc822f9e7e0] } +&{glMultiTexCoord2iv QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f9e980 0xc822f9ea00] } +&{glMultiTexCoord2s QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f9eba0 0xc822f9ec20 0xc822f9eca0] } +&{glMultiTexCoord2sv QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f9ee40 0xc822f9eec0] } +&{glMultiTexCoord3d QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f9f060 0xc822f9f0e0 0xc822f9f160 0xc822f9f1e0] } +&{glMultiTexCoord3dv QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f9f380 0xc822f9f400] } +&{glMultiTexCoord3f QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f9f5a0 0xc822f9f620 0xc822f9f6a0 0xc822f9f720] } +&{glMultiTexCoord3fv QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f9f8c0 0xc822f9f940] } +&{glMultiTexCoord3i QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f9fae0 0xc822f9fb60 0xc822f9fbe0 0xc822f9fc60] } +&{glMultiTexCoord3iv QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822f9fe00 0xc822f9fe80] } +&{glMultiTexCoord3s QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fb2020 0xc822fb20a0 0xc822fb2120 0xc822fb21a0] } +&{glMultiTexCoord3sv QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fb2340 0xc822fb23c0] } +&{glMultiTexCoord4d QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fb2560 0xc822fb25e0 0xc822fb2660 0xc822fb26e0 0xc822fb2780] } +&{glMultiTexCoord4dv QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fb2920 0xc822fb29a0] } +&{glMultiTexCoord4f QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fb2b40 0xc822fb2bc0 0xc822fb2c40 0xc822fb2cc0 0xc822fb2d60] } +&{glMultiTexCoord4fv QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fb2f00 0xc822fb2f80] } +&{glMultiTexCoord4i QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fb3120 0xc822fb31a0 0xc822fb3220 0xc822fb32a0 0xc822fb3340] } +&{glMultiTexCoord4iv QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fb34e0 0xc822fb3560] } +&{glMultiTexCoord4s QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fb3700 0xc822fb3780 0xc822fb3800 0xc822fb3880 0xc822fb3920] } +&{glMultiTexCoord4sv QOpenGLFunctions_4_2_Compatibility::glMultiTexCoord4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fb3ac0 0xc822fb3b40] } +&{glMultiTexCoordP1ui QOpenGLFunctions_4_2_Compatibility::glMultiTexCoordP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fb3ce0 0xc822fb3d60 0xc822fb3de0] } +&{glMultiTexCoordP1uiv QOpenGLFunctions_4_2_Compatibility::glMultiTexCoordP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fb3f80 0xc822fc0000 0xc822fc0080] } +&{glMultiTexCoordP2ui QOpenGLFunctions_4_2_Compatibility::glMultiTexCoordP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fc0220 0xc822fc02a0 0xc822fc0320] } +&{glMultiTexCoordP2uiv QOpenGLFunctions_4_2_Compatibility::glMultiTexCoordP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fc04c0 0xc822fc0540 0xc822fc05c0] } +&{glMultiTexCoordP3ui QOpenGLFunctions_4_2_Compatibility::glMultiTexCoordP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fc0760 0xc822fc07e0 0xc822fc0860] } +&{glMultiTexCoordP3uiv QOpenGLFunctions_4_2_Compatibility::glMultiTexCoordP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fc0a00 0xc822fc0a80 0xc822fc0b00] } +&{glMultiTexCoordP4ui QOpenGLFunctions_4_2_Compatibility::glMultiTexCoordP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fc0ca0 0xc822fc0d20 0xc822fc0da0] } +&{glMultiTexCoordP4uiv QOpenGLFunctions_4_2_Compatibility::glMultiTexCoordP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fc0f40 0xc822fc0fc0 0xc822fc1040] } +&{glNewList QOpenGLFunctions_4_2_Compatibility::glNewList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fc1180 0xc822fc1200] } +&{glNormal3b QOpenGLFunctions_4_2_Compatibility::glNormal3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fc1340 0xc822fc13c0 0xc822fc1440] } +&{glNormal3bv QOpenGLFunctions_4_2_Compatibility::glNormal3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fc1580] } +&{glNormal3d QOpenGLFunctions_4_2_Compatibility::glNormal3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fc16c0 0xc822fc1740 0xc822fc17c0] } +&{glNormal3dv QOpenGLFunctions_4_2_Compatibility::glNormal3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fc1900] } +&{glNormal3f QOpenGLFunctions_4_2_Compatibility::glNormal3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fc1a40 0xc822fc1ac0 0xc822fc1b40] } +&{glNormal3fv QOpenGLFunctions_4_2_Compatibility::glNormal3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fc1c80] } +&{glNormal3i QOpenGLFunctions_4_2_Compatibility::glNormal3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fc1dc0 0xc822fc1e40 0xc822fc1ec0] } +&{glNormal3iv QOpenGLFunctions_4_2_Compatibility::glNormal3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fd0020] } +&{glNormal3s QOpenGLFunctions_4_2_Compatibility::glNormal3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fd0160 0xc822fd01e0 0xc822fd0260] } +&{glNormal3sv QOpenGLFunctions_4_2_Compatibility::glNormal3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fd03a0] } +&{glNormalP3ui QOpenGLFunctions_4_2_Compatibility::glNormalP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fd04e0 0xc822fd0560] } +&{glNormalP3uiv QOpenGLFunctions_4_2_Compatibility::glNormalP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fd06a0 0xc822fd0720] } +&{glNormalPointer QOpenGLFunctions_4_2_Compatibility::glNormalPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fd0860 0xc822fd08e0 0xc822fd0960] } +&{glOrtho QOpenGLFunctions_4_2_Compatibility::glOrtho commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fd0aa0 0xc822fd0b20 0xc822fd0ba0 0xc822fd0c20 0xc822fd0cc0 0xc822fd0d40] } +&{glPassThrough QOpenGLFunctions_4_2_Compatibility::glPassThrough commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fd0e80] } +&{glPatchParameterfv QOpenGLFunctions_4_2_Compatibility::glPatchParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fd1020 0xc822fd10a0] } +&{glPatchParameteri QOpenGLFunctions_4_2_Compatibility::glPatchParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fd1240 0xc822fd12c0] } +&{glPauseTransformFeedback QOpenGLFunctions_4_2_Compatibility::glPauseTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [] } +&{glPixelMapfv QOpenGLFunctions_4_2_Compatibility::glPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fd14e0 0xc822fd1560 0xc822fd15e0] } +&{glPixelMapuiv QOpenGLFunctions_4_2_Compatibility::glPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fd1720 0xc822fd17a0 0xc822fd1820] } +&{glPixelMapusv QOpenGLFunctions_4_2_Compatibility::glPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fd1960 0xc822fd19e0 0xc822fd1a60] } +&{glPixelStoref QOpenGLFunctions_4_2_Compatibility::glPixelStoref commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fd1ba0 0xc822fd1c20] } +&{glPixelStorei QOpenGLFunctions_4_2_Compatibility::glPixelStorei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fd1d60 0xc822fd1de0] } +&{glPixelTransferf QOpenGLFunctions_4_2_Compatibility::glPixelTransferf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fd1f20 0xc822fd1fa0] } +&{glPixelTransferi QOpenGLFunctions_4_2_Compatibility::glPixelTransferi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fe80e0 0xc822fe8160] } +&{glPixelZoom QOpenGLFunctions_4_2_Compatibility::glPixelZoom commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fe82a0 0xc822fe8320] } +&{glPointParameterf QOpenGLFunctions_4_2_Compatibility::glPointParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fe84c0 0xc822fe8540] } +&{glPointParameterfv QOpenGLFunctions_4_2_Compatibility::glPointParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fe86e0 0xc822fe8760] } +&{glPointParameteri QOpenGLFunctions_4_2_Compatibility::glPointParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fe8900 0xc822fe8980] } +&{glPointParameteriv QOpenGLFunctions_4_2_Compatibility::glPointParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fe8b20 0xc822fe8ba0] } +&{glPointSize QOpenGLFunctions_4_2_Compatibility::glPointSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fe8d00] } +&{glPolygonMode QOpenGLFunctions_4_2_Compatibility::glPolygonMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fe8e40 0xc822fe8ec0] } +&{glPolygonOffset QOpenGLFunctions_4_2_Compatibility::glPolygonOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fe9000 0xc822fe9080] } +&{glPolygonStipple QOpenGLFunctions_4_2_Compatibility::glPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fe91c0] } +&{glPopAttrib QOpenGLFunctions_4_2_Compatibility::glPopAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [] } +&{glPopClientAttrib QOpenGLFunctions_4_2_Compatibility::glPopClientAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [] } +&{glPopMatrix QOpenGLFunctions_4_2_Compatibility::glPopMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [] } +&{glPopName QOpenGLFunctions_4_2_Compatibility::glPopName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [] } +&{glPrimitiveRestartIndex QOpenGLFunctions_4_2_Compatibility::glPrimitiveRestartIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fe95a0] } +&{glPrioritizeTextures QOpenGLFunctions_4_2_Compatibility::glPrioritizeTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fe9740 0xc822fe97c0 0xc822fe9840] } +&{glProgramBinary QOpenGLFunctions_4_2_Compatibility::glProgramBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fe9980 0xc822fe9a00 0xc822fe9a80 0xc822fe9b00] } +&{glProgramParameteri QOpenGLFunctions_4_2_Compatibility::glProgramParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fe9ca0 0xc822fe9d20 0xc822fe9da0] } +&{glProgramUniform1d QOpenGLFunctions_4_2_Compatibility::glProgramUniform1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822fe9f40 0xc822fe9fc0 0xc822ffc040] } +&{glProgramUniform1dv QOpenGLFunctions_4_2_Compatibility::glProgramUniform1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ffc1e0 0xc822ffc260 0xc822ffc2e0 0xc822ffc360] } +&{glProgramUniform1f QOpenGLFunctions_4_2_Compatibility::glProgramUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ffc500 0xc822ffc580 0xc822ffc600] } +&{glProgramUniform1fv QOpenGLFunctions_4_2_Compatibility::glProgramUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ffc7a0 0xc822ffc820 0xc822ffc8a0 0xc822ffc920] } +&{glProgramUniform1i QOpenGLFunctions_4_2_Compatibility::glProgramUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ffcac0 0xc822ffcb40 0xc822ffcbc0] } +&{glProgramUniform1iv QOpenGLFunctions_4_2_Compatibility::glProgramUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ffcd80 0xc822ffce00 0xc822ffce80 0xc822ffcf00] } +&{glProgramUniform1ui QOpenGLFunctions_4_2_Compatibility::glProgramUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ffd0a0 0xc822ffd120 0xc822ffd1a0] } +&{glProgramUniform1uiv QOpenGLFunctions_4_2_Compatibility::glProgramUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ffd340 0xc822ffd3c0 0xc822ffd440 0xc822ffd4c0] } +&{glProgramUniform2d QOpenGLFunctions_4_2_Compatibility::glProgramUniform2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ffd660 0xc822ffd6e0 0xc822ffd760 0xc822ffd7e0] } +&{glProgramUniform2dv QOpenGLFunctions_4_2_Compatibility::glProgramUniform2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ffd980 0xc822ffda00 0xc822ffda80 0xc822ffdb00] } +&{glProgramUniform2f QOpenGLFunctions_4_2_Compatibility::glProgramUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ffdca0 0xc822ffdd20 0xc822ffdda0 0xc822ffde20] } +&{glProgramUniform2fv QOpenGLFunctions_4_2_Compatibility::glProgramUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822ffdfc0 0xc82300e040 0xc82300e0c0 0xc82300e140] } +&{glProgramUniform2i QOpenGLFunctions_4_2_Compatibility::glProgramUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82300e2e0 0xc82300e360 0xc82300e3e0 0xc82300e460] } +&{glProgramUniform2iv QOpenGLFunctions_4_2_Compatibility::glProgramUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82300e600 0xc82300e680 0xc82300e700 0xc82300e780] } +&{glProgramUniform2ui QOpenGLFunctions_4_2_Compatibility::glProgramUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82300e920 0xc82300e9a0 0xc82300ea20 0xc82300eaa0] } +&{glProgramUniform2uiv QOpenGLFunctions_4_2_Compatibility::glProgramUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82300ec40 0xc82300ecc0 0xc82300ed40 0xc82300edc0] } +&{glProgramUniform3d QOpenGLFunctions_4_2_Compatibility::glProgramUniform3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82300ef60 0xc82300efe0 0xc82300f060 0xc82300f0e0 0xc82300f180] } +&{glProgramUniform3dv QOpenGLFunctions_4_2_Compatibility::glProgramUniform3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82300f320 0xc82300f3a0 0xc82300f420 0xc82300f4a0] } +&{glProgramUniform3f QOpenGLFunctions_4_2_Compatibility::glProgramUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82300f640 0xc82300f6c0 0xc82300f740 0xc82300f7c0 0xc82300f860] } +&{glProgramUniform3fv QOpenGLFunctions_4_2_Compatibility::glProgramUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82300fa00 0xc82300fa80 0xc82300fb00 0xc82300fb80] } +&{glProgramUniform3i QOpenGLFunctions_4_2_Compatibility::glProgramUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82300fd20 0xc82300fda0 0xc82300fe20 0xc82300fea0 0xc82300ff40] } +&{glProgramUniform3iv QOpenGLFunctions_4_2_Compatibility::glProgramUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82301e0e0 0xc82301e160 0xc82301e1e0 0xc82301e260] } +&{glProgramUniform3ui QOpenGLFunctions_4_2_Compatibility::glProgramUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82301e400 0xc82301e480 0xc82301e500 0xc82301e580 0xc82301e620] } +&{glProgramUniform3uiv QOpenGLFunctions_4_2_Compatibility::glProgramUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82301e7c0 0xc82301e840 0xc82301e8c0 0xc82301e940] } +&{glProgramUniform4d QOpenGLFunctions_4_2_Compatibility::glProgramUniform4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82301eae0 0xc82301eb60 0xc82301ebe0 0xc82301ec60 0xc82301ed00 0xc82301ed80] } +&{glProgramUniform4dv QOpenGLFunctions_4_2_Compatibility::glProgramUniform4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82301ef20 0xc82301efa0 0xc82301f020 0xc82301f0a0] } +&{glProgramUniform4f QOpenGLFunctions_4_2_Compatibility::glProgramUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82301f240 0xc82301f2c0 0xc82301f340 0xc82301f3c0 0xc82301f460 0xc82301f4e0] } +&{glProgramUniform4fv QOpenGLFunctions_4_2_Compatibility::glProgramUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82301f680 0xc82301f700 0xc82301f780 0xc82301f800] } +&{glProgramUniform4i QOpenGLFunctions_4_2_Compatibility::glProgramUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82301f9a0 0xc82301fa20 0xc82301faa0 0xc82301fb20 0xc82301fbc0 0xc82301fc40] } +&{glProgramUniform4iv QOpenGLFunctions_4_2_Compatibility::glProgramUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82301fde0 0xc82301fe60 0xc82301fee0 0xc82301ff60] } +&{glProgramUniform4ui QOpenGLFunctions_4_2_Compatibility::glProgramUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82302c100 0xc82302c180 0xc82302c200 0xc82302c280 0xc82302c320 0xc82302c3a0] } +&{glProgramUniform4uiv QOpenGLFunctions_4_2_Compatibility::glProgramUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82302c540 0xc82302c5c0 0xc82302c640 0xc82302c6c0] } +&{glProgramUniformMatrix2dv QOpenGLFunctions_4_2_Compatibility::glProgramUniformMatrix2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82302c860 0xc82302c8e0 0xc82302c960 0xc82302c9e0 0xc82302ca80] } +&{glProgramUniformMatrix2fv QOpenGLFunctions_4_2_Compatibility::glProgramUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82302cc20 0xc82302cca0 0xc82302cd20 0xc82302cda0 0xc82302ce40] } +&{glProgramUniformMatrix2x3dv QOpenGLFunctions_4_2_Compatibility::glProgramUniformMatrix2x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82302cfe0 0xc82302d060 0xc82302d0e0 0xc82302d160 0xc82302d200] } +&{glProgramUniformMatrix2x3fv QOpenGLFunctions_4_2_Compatibility::glProgramUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82302d3a0 0xc82302d420 0xc82302d4a0 0xc82302d520 0xc82302d5c0] } +&{glProgramUniformMatrix2x4dv QOpenGLFunctions_4_2_Compatibility::glProgramUniformMatrix2x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82302d760 0xc82302d7e0 0xc82302d860 0xc82302d8e0 0xc82302d980] } +&{glProgramUniformMatrix2x4fv QOpenGLFunctions_4_2_Compatibility::glProgramUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82302db20 0xc82302dba0 0xc82302dc20 0xc82302dca0 0xc82302dd40] } +&{glProgramUniformMatrix3dv QOpenGLFunctions_4_2_Compatibility::glProgramUniformMatrix3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82302dee0 0xc82302df60 0xc82302dfe0 0xc82303c060 0xc82303c100] } +&{glProgramUniformMatrix3fv QOpenGLFunctions_4_2_Compatibility::glProgramUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82303c2a0 0xc82303c320 0xc82303c3a0 0xc82303c420 0xc82303c4c0] } +&{glProgramUniformMatrix3x2dv QOpenGLFunctions_4_2_Compatibility::glProgramUniformMatrix3x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82303c660 0xc82303c6e0 0xc82303c760 0xc82303c7e0 0xc82303c880] } +&{glProgramUniformMatrix3x2fv QOpenGLFunctions_4_2_Compatibility::glProgramUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82303ca20 0xc82303caa0 0xc82303cb20 0xc82303cba0 0xc82303cc40] } +&{glProgramUniformMatrix3x4dv QOpenGLFunctions_4_2_Compatibility::glProgramUniformMatrix3x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82303cde0 0xc82303ce60 0xc82303cee0 0xc82303cf60 0xc82303d000] } +&{glProgramUniformMatrix3x4fv QOpenGLFunctions_4_2_Compatibility::glProgramUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82303d1a0 0xc82303d220 0xc82303d2a0 0xc82303d320 0xc82303d3c0] } +&{glProgramUniformMatrix4dv QOpenGLFunctions_4_2_Compatibility::glProgramUniformMatrix4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82303d560 0xc82303d5e0 0xc82303d660 0xc82303d6e0 0xc82303d780] } +&{glProgramUniformMatrix4fv QOpenGLFunctions_4_2_Compatibility::glProgramUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82303d920 0xc82303d9a0 0xc82303da20 0xc82303daa0 0xc82303db40] } +&{glProgramUniformMatrix4x2dv QOpenGLFunctions_4_2_Compatibility::glProgramUniformMatrix4x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82303dce0 0xc82303dd60 0xc82303dde0 0xc82303de60 0xc82303df00] } +&{glProgramUniformMatrix4x2fv QOpenGLFunctions_4_2_Compatibility::glProgramUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82304a0a0 0xc82304a120 0xc82304a1a0 0xc82304a220 0xc82304a2c0] } +&{glProgramUniformMatrix4x3dv QOpenGLFunctions_4_2_Compatibility::glProgramUniformMatrix4x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82304a460 0xc82304a4e0 0xc82304a560 0xc82304a5e0 0xc82304a680] } +&{glProgramUniformMatrix4x3fv QOpenGLFunctions_4_2_Compatibility::glProgramUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82304a820 0xc82304a8a0 0xc82304a920 0xc82304a9a0 0xc82304aa40] } +&{glProvokingVertex QOpenGLFunctions_4_2_Compatibility::glProvokingVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82304abe0] } +&{glPushAttrib QOpenGLFunctions_4_2_Compatibility::glPushAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82304ad20] } +&{glPushClientAttrib QOpenGLFunctions_4_2_Compatibility::glPushClientAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82304aec0] } +&{glPushMatrix QOpenGLFunctions_4_2_Compatibility::glPushMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [] } +&{glPushName QOpenGLFunctions_4_2_Compatibility::glPushName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82304b0a0] } +&{glQueryCounter QOpenGLFunctions_4_2_Compatibility::glQueryCounter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82304b1e0 0xc82304b260] } +&{glRasterPos2d QOpenGLFunctions_4_2_Compatibility::glRasterPos2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82304b3a0 0xc82304b420] } +&{glRasterPos2dv QOpenGLFunctions_4_2_Compatibility::glRasterPos2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82304b560] } +&{glRasterPos2f QOpenGLFunctions_4_2_Compatibility::glRasterPos2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82304b6a0 0xc82304b720] } +&{glRasterPos2fv QOpenGLFunctions_4_2_Compatibility::glRasterPos2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82304b860] } +&{glRasterPos2i QOpenGLFunctions_4_2_Compatibility::glRasterPos2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82304b9a0 0xc82304ba20] } +&{glRasterPos2iv QOpenGLFunctions_4_2_Compatibility::glRasterPos2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82304bb60] } +&{glRasterPos2s QOpenGLFunctions_4_2_Compatibility::glRasterPos2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82304bca0 0xc82304bd20] } +&{glRasterPos2sv QOpenGLFunctions_4_2_Compatibility::glRasterPos2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82304be60] } +&{glRasterPos3d QOpenGLFunctions_4_2_Compatibility::glRasterPos3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82304bfa0 0xc82305e020 0xc82305e0a0] } +&{glRasterPos3dv QOpenGLFunctions_4_2_Compatibility::glRasterPos3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82305e1e0] } +&{glRasterPos3f QOpenGLFunctions_4_2_Compatibility::glRasterPos3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82305e320 0xc82305e3a0 0xc82305e420] } +&{glRasterPos3fv QOpenGLFunctions_4_2_Compatibility::glRasterPos3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82305e560] } +&{glRasterPos3i QOpenGLFunctions_4_2_Compatibility::glRasterPos3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82305e6a0 0xc82305e720 0xc82305e7a0] } +&{glRasterPos3iv QOpenGLFunctions_4_2_Compatibility::glRasterPos3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82305e8e0] } +&{glRasterPos3s QOpenGLFunctions_4_2_Compatibility::glRasterPos3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82305ea20 0xc82305eaa0 0xc82305eb20] } +&{glRasterPos3sv QOpenGLFunctions_4_2_Compatibility::glRasterPos3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82305ec60] } +&{glRasterPos4d QOpenGLFunctions_4_2_Compatibility::glRasterPos4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82305eda0 0xc82305ee20 0xc82305eea0 0xc82305ef20] } +&{glRasterPos4dv QOpenGLFunctions_4_2_Compatibility::glRasterPos4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82305f060] } +&{glRasterPos4f QOpenGLFunctions_4_2_Compatibility::glRasterPos4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82305f1a0 0xc82305f220 0xc82305f2a0 0xc82305f320] } +&{glRasterPos4fv QOpenGLFunctions_4_2_Compatibility::glRasterPos4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82305f460] } +&{glRasterPos4i QOpenGLFunctions_4_2_Compatibility::glRasterPos4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82305f5a0 0xc82305f620 0xc82305f6a0 0xc82305f720] } +&{glRasterPos4iv QOpenGLFunctions_4_2_Compatibility::glRasterPos4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82305f860] } +&{glRasterPos4s QOpenGLFunctions_4_2_Compatibility::glRasterPos4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82305f9a0 0xc82305fa20 0xc82305faa0 0xc82305fb20] } +&{glRasterPos4sv QOpenGLFunctions_4_2_Compatibility::glRasterPos4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82305fc60] } +&{glReadBuffer QOpenGLFunctions_4_2_Compatibility::glReadBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82305fdc0] } +&{glReadPixels QOpenGLFunctions_4_2_Compatibility::glReadPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82305ff00 0xc82305ff80 0xc823072000 0xc823072080 0xc823072120 0xc8230721a0 0xc823072220] } +&{glRectd QOpenGLFunctions_4_2_Compatibility::glRectd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823072360 0xc8230723e0 0xc823072460 0xc8230724e0] } +&{glRectdv QOpenGLFunctions_4_2_Compatibility::glRectdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823072620 0xc8230726a0] } +&{glRectf QOpenGLFunctions_4_2_Compatibility::glRectf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230727e0 0xc823072860 0xc8230728e0 0xc823072960] } +&{glRectfv QOpenGLFunctions_4_2_Compatibility::glRectfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823072aa0 0xc823072b20] } +&{glRecti QOpenGLFunctions_4_2_Compatibility::glRecti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823072c60 0xc823072ce0 0xc823072d60 0xc823072de0] } +&{glRectiv QOpenGLFunctions_4_2_Compatibility::glRectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823072f20 0xc823072fa0] } +&{glRects QOpenGLFunctions_4_2_Compatibility::glRects commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230730e0 0xc823073160 0xc8230731e0 0xc823073260] } +&{glRectsv QOpenGLFunctions_4_2_Compatibility::glRectsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230733a0 0xc823073420] } +&{glReleaseShaderCompiler QOpenGLFunctions_4_2_Compatibility::glReleaseShaderCompiler commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [] } +&{glRenderMode QOpenGLFunctions_4_2_Compatibility::glRenderMode commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLint [0xc823073660] } +&{glRenderbufferStorage QOpenGLFunctions_4_2_Compatibility::glRenderbufferStorage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823073800 0xc823073880 0xc823073900 0xc823073980] } +&{glRenderbufferStorageMultisample QOpenGLFunctions_4_2_Compatibility::glRenderbufferStorageMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823073b20 0xc823073ba0 0xc823073c20 0xc823073ca0 0xc823073d40] } +&{glResetHistogram QOpenGLFunctions_4_2_Compatibility::glResetHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823073e80] } +&{glResetMinmax QOpenGLFunctions_4_2_Compatibility::glResetMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823073fc0] } +&{glResumeTransformFeedback QOpenGLFunctions_4_2_Compatibility::glResumeTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [] } +&{glRotated QOpenGLFunctions_4_2_Compatibility::glRotated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230841e0 0xc823084260 0xc8230842e0 0xc823084360] } +&{glRotatef QOpenGLFunctions_4_2_Compatibility::glRotatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230844a0 0xc823084520 0xc8230845a0 0xc823084620] } +&{glSampleCoverage QOpenGLFunctions_4_2_Compatibility::glSampleCoverage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823084760 0xc8230847e0] } +&{glSampleMaski QOpenGLFunctions_4_2_Compatibility::glSampleMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823084920 0xc8230849a0] } +&{glSamplerParameterIiv QOpenGLFunctions_4_2_Compatibility::glSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823084b40 0xc823084bc0 0xc823084c40] } +&{glSamplerParameterIuiv QOpenGLFunctions_4_2_Compatibility::glSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823084de0 0xc823084e60 0xc823084ee0] } +&{glSamplerParameterf QOpenGLFunctions_4_2_Compatibility::glSamplerParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823085080 0xc823085100 0xc823085180] } +&{glSamplerParameterfv QOpenGLFunctions_4_2_Compatibility::glSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823085320 0xc8230853a0 0xc823085420] } +&{glSamplerParameteri QOpenGLFunctions_4_2_Compatibility::glSamplerParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230855c0 0xc823085640 0xc8230856c0] } +&{glSamplerParameteriv QOpenGLFunctions_4_2_Compatibility::glSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823085860 0xc8230858e0 0xc823085960] } +&{glScaled QOpenGLFunctions_4_2_Compatibility::glScaled commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823085aa0 0xc823085b20 0xc823085ba0] } +&{glScalef QOpenGLFunctions_4_2_Compatibility::glScalef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823085ce0 0xc823085d60 0xc823085de0] } +&{glScissor QOpenGLFunctions_4_2_Compatibility::glScissor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823085f20 0xc823085fa0 0xc823096020 0xc8230960a0] } +&{glScissorArrayv QOpenGLFunctions_4_2_Compatibility::glScissorArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230961e0 0xc823096260 0xc8230962e0] } +&{glScissorIndexed QOpenGLFunctions_4_2_Compatibility::glScissorIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823096420 0xc8230964a0 0xc823096520 0xc8230965a0 0xc823096640] } +&{glScissorIndexedv QOpenGLFunctions_4_2_Compatibility::glScissorIndexedv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230967e0 0xc823096860] } +&{glSecondaryColor3b QOpenGLFunctions_4_2_Compatibility::glSecondaryColor3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823096a00 0xc823096a80 0xc823096b00] } +&{glSecondaryColor3bv QOpenGLFunctions_4_2_Compatibility::glSecondaryColor3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823096ca0] } +&{glSecondaryColor3d QOpenGLFunctions_4_2_Compatibility::glSecondaryColor3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823096e40 0xc823096ec0 0xc823096f40] } +&{glSecondaryColor3dv QOpenGLFunctions_4_2_Compatibility::glSecondaryColor3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230970e0] } +&{glSecondaryColor3f QOpenGLFunctions_4_2_Compatibility::glSecondaryColor3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823097280 0xc823097300 0xc823097380] } +&{glSecondaryColor3fv QOpenGLFunctions_4_2_Compatibility::glSecondaryColor3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823097520] } +&{glSecondaryColor3i QOpenGLFunctions_4_2_Compatibility::glSecondaryColor3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230976c0 0xc823097740 0xc8230977c0] } +&{glSecondaryColor3iv QOpenGLFunctions_4_2_Compatibility::glSecondaryColor3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823097960] } +&{glSecondaryColor3s QOpenGLFunctions_4_2_Compatibility::glSecondaryColor3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823097b00 0xc823097b80 0xc823097c00] } +&{glSecondaryColor3sv QOpenGLFunctions_4_2_Compatibility::glSecondaryColor3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823097da0] } +&{glSecondaryColor3ub QOpenGLFunctions_4_2_Compatibility::glSecondaryColor3ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc823097f40 0xc823097fc0 0xc8230a6040] } +&{glSecondaryColor3ubv QOpenGLFunctions_4_2_Compatibility::glSecondaryColor3ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230a61e0] } +&{glSecondaryColor3ui QOpenGLFunctions_4_2_Compatibility::glSecondaryColor3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230a6380 0xc8230a6400 0xc8230a6480] } +&{glSecondaryColor3uiv QOpenGLFunctions_4_2_Compatibility::glSecondaryColor3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230a6620] } +&{glSecondaryColor3us QOpenGLFunctions_4_2_Compatibility::glSecondaryColor3us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230a67c0 0xc8230a6840 0xc8230a68c0] } +&{glSecondaryColor3usv QOpenGLFunctions_4_2_Compatibility::glSecondaryColor3usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230a6a60] } +&{glSecondaryColorP3ui QOpenGLFunctions_4_2_Compatibility::glSecondaryColorP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230a6c00 0xc8230a6c80] } +&{glSecondaryColorP3uiv QOpenGLFunctions_4_2_Compatibility::glSecondaryColorP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230a6e20 0xc8230a6ea0] } +&{glSecondaryColorPointer QOpenGLFunctions_4_2_Compatibility::glSecondaryColorPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230a7040 0xc8230a70c0 0xc8230a7140 0xc8230a71c0] } +&{glSelectBuffer QOpenGLFunctions_4_2_Compatibility::glSelectBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230a7300 0xc8230a7380] } +&{glSeparableFilter2D QOpenGLFunctions_4_2_Compatibility::glSeparableFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230a7520 0xc8230a75a0 0xc8230a7620 0xc8230a76a0 0xc8230a7740 0xc8230a77c0 0xc8230a7840 0xc8230a78c0] } +&{glShadeModel QOpenGLFunctions_4_2_Compatibility::glShadeModel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230a7a20] } +&{glShaderBinary QOpenGLFunctions_4_2_Compatibility::glShaderBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230a7b60 0xc8230a7be0 0xc8230a7c60 0xc8230a7ce0 0xc8230a7d80] } +&{glShaderSource QOpenGLFunctions_4_2_Compatibility::glShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230a7ec0 0xc8230a7f40 0xc8230a7fe0 0xc8230b60a0] } +&{glStencilFunc QOpenGLFunctions_4_2_Compatibility::glStencilFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230b61e0 0xc8230b6260 0xc8230b62e0] } +&{glStencilFuncSeparate QOpenGLFunctions_4_2_Compatibility::glStencilFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230b6480 0xc8230b6500 0xc8230b6580 0xc8230b6600] } +&{glStencilMask QOpenGLFunctions_4_2_Compatibility::glStencilMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230b6760] } +&{glStencilMaskSeparate QOpenGLFunctions_4_2_Compatibility::glStencilMaskSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230b6900 0xc8230b6980] } +&{glStencilOp QOpenGLFunctions_4_2_Compatibility::glStencilOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230b6ac0 0xc8230b6b40 0xc8230b6bc0] } +&{glStencilOpSeparate QOpenGLFunctions_4_2_Compatibility::glStencilOpSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230b6d60 0xc8230b6de0 0xc8230b6e60 0xc8230b6ee0] } +&{glTexBuffer QOpenGLFunctions_4_2_Compatibility::glTexBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230b7020 0xc8230b70a0 0xc8230b7120] } +&{glTexCoord1d QOpenGLFunctions_4_2_Compatibility::glTexCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230b7280] } +&{glTexCoord1dv QOpenGLFunctions_4_2_Compatibility::glTexCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230b73c0] } +&{glTexCoord1f QOpenGLFunctions_4_2_Compatibility::glTexCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230b7520] } +&{glTexCoord1fv QOpenGLFunctions_4_2_Compatibility::glTexCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230b7660] } +&{glTexCoord1i QOpenGLFunctions_4_2_Compatibility::glTexCoord1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230b77c0] } +&{glTexCoord1iv QOpenGLFunctions_4_2_Compatibility::glTexCoord1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230b7900] } +&{glTexCoord1s QOpenGLFunctions_4_2_Compatibility::glTexCoord1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230b7a60] } +&{glTexCoord1sv QOpenGLFunctions_4_2_Compatibility::glTexCoord1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230b7ba0] } +&{glTexCoord2d QOpenGLFunctions_4_2_Compatibility::glTexCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230b7ce0 0xc8230b7d60] } +&{glTexCoord2dv QOpenGLFunctions_4_2_Compatibility::glTexCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230d8060] } +&{glTexCoord2f QOpenGLFunctions_4_2_Compatibility::glTexCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230e8060 0xc8230e80e0] } +&{glTexCoord2fv QOpenGLFunctions_4_2_Compatibility::glTexCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230e8220] } +&{glTexCoord2i QOpenGLFunctions_4_2_Compatibility::glTexCoord2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230e8360 0xc8230e83e0] } +&{glTexCoord2iv QOpenGLFunctions_4_2_Compatibility::glTexCoord2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230e8520] } +&{glTexCoord2s QOpenGLFunctions_4_2_Compatibility::glTexCoord2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230e8660 0xc8230e86e0] } +&{glTexCoord2sv QOpenGLFunctions_4_2_Compatibility::glTexCoord2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230e8820] } +&{glTexCoord3d QOpenGLFunctions_4_2_Compatibility::glTexCoord3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230e8960 0xc8230e89e0 0xc8230e8a60] } +&{glTexCoord3dv QOpenGLFunctions_4_2_Compatibility::glTexCoord3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230e8ba0] } +&{glTexCoord3f QOpenGLFunctions_4_2_Compatibility::glTexCoord3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230e8ce0 0xc8230e8d60 0xc8230e8de0] } +&{glTexCoord3fv QOpenGLFunctions_4_2_Compatibility::glTexCoord3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230e8f20] } +&{glTexCoord3i QOpenGLFunctions_4_2_Compatibility::glTexCoord3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230e9060 0xc8230e90e0 0xc8230e9160] } +&{glTexCoord3iv QOpenGLFunctions_4_2_Compatibility::glTexCoord3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230e92a0] } +&{glTexCoord3s QOpenGLFunctions_4_2_Compatibility::glTexCoord3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230e93e0 0xc8230e9460 0xc8230e94e0] } +&{glTexCoord3sv QOpenGLFunctions_4_2_Compatibility::glTexCoord3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230e9620] } +&{glTexCoord4d QOpenGLFunctions_4_2_Compatibility::glTexCoord4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230e9760 0xc8230e97e0 0xc8230e9860 0xc8230e98e0] } +&{glTexCoord4dv QOpenGLFunctions_4_2_Compatibility::glTexCoord4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230e9a20] } +&{glTexCoord4f QOpenGLFunctions_4_2_Compatibility::glTexCoord4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230e9b60 0xc8230e9be0 0xc8230e9c60 0xc8230e9ce0] } +&{glTexCoord4fv QOpenGLFunctions_4_2_Compatibility::glTexCoord4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230e9e20] } +&{glTexCoord4i QOpenGLFunctions_4_2_Compatibility::glTexCoord4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230e9f60 0xc8230e9fe0 0xc8230f6060 0xc8230f60e0] } +&{glTexCoord4iv QOpenGLFunctions_4_2_Compatibility::glTexCoord4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230f6220] } +&{glTexCoord4s QOpenGLFunctions_4_2_Compatibility::glTexCoord4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230f6360 0xc8230f63e0 0xc8230f6460 0xc8230f64e0] } +&{glTexCoord4sv QOpenGLFunctions_4_2_Compatibility::glTexCoord4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230f6620] } +&{glTexCoordP1ui QOpenGLFunctions_4_2_Compatibility::glTexCoordP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230f6760 0xc8230f67e0] } +&{glTexCoordP1uiv QOpenGLFunctions_4_2_Compatibility::glTexCoordP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230f6920 0xc8230f69a0] } +&{glTexCoordP2ui QOpenGLFunctions_4_2_Compatibility::glTexCoordP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230f6ae0 0xc8230f6b60] } +&{glTexCoordP2uiv QOpenGLFunctions_4_2_Compatibility::glTexCoordP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230f6ca0 0xc8230f6d20] } +&{glTexCoordP3ui QOpenGLFunctions_4_2_Compatibility::glTexCoordP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230f6e60 0xc8230f6ee0] } +&{glTexCoordP3uiv QOpenGLFunctions_4_2_Compatibility::glTexCoordP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230f7020 0xc8230f70a0] } +&{glTexCoordP4ui QOpenGLFunctions_4_2_Compatibility::glTexCoordP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230f71e0 0xc8230f7260] } +&{glTexCoordP4uiv QOpenGLFunctions_4_2_Compatibility::glTexCoordP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230f73a0 0xc8230f7420] } +&{glTexCoordPointer QOpenGLFunctions_4_2_Compatibility::glTexCoordPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230f75c0 0xc8230f7640 0xc8230f76c0 0xc8230f7740] } +&{glTexEnvf QOpenGLFunctions_4_2_Compatibility::glTexEnvf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230f7880 0xc8230f7900 0xc8230f7980] } +&{glTexEnvfv QOpenGLFunctions_4_2_Compatibility::glTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230f7ac0 0xc8230f7b40 0xc8230f7bc0] } +&{glTexEnvi QOpenGLFunctions_4_2_Compatibility::glTexEnvi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230f7d00 0xc8230f7d80 0xc8230f7e00] } +&{glTexEnviv QOpenGLFunctions_4_2_Compatibility::glTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8230f7f40 0xc8230f7fc0 0xc82310c040] } +&{glTexGend QOpenGLFunctions_4_2_Compatibility::glTexGend commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82310c180 0xc82310c200 0xc82310c280] } +&{glTexGendv QOpenGLFunctions_4_2_Compatibility::glTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8200701c0 0xc820070320 0xc820070400] } +&{glTexGenf QOpenGLFunctions_4_2_Compatibility::glTexGenf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820070740 0xc8200708a0 0xc820070a20] } +&{glTexGenfv QOpenGLFunctions_4_2_Compatibility::glTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820070fa0 0xc820071100 0xc820071300] } +&{glTexGeni QOpenGLFunctions_4_2_Compatibility::glTexGeni commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8200716e0 0xc820071a20 0xc820071b40] } +&{glTexGeniv QOpenGLFunctions_4_2_Compatibility::glTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820071ec0 0xc820116060 0xc8201161a0] } +&{glTexImage1D QOpenGLFunctions_4_2_Compatibility::glTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8201164a0 0xc8201166c0 0xc820116800 0xc820116900 0xc820116b60 0xc820116d00 0xc820116e80 0xc8201170a0] } +&{glTexImage2D QOpenGLFunctions_4_2_Compatibility::glTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8201173a0 0xc820117560 0xc820117760 0xc820117860 0xc820117a20 0xc820117b20 0xc820117ca0 0xc820117ea0 0xc8201960c0] } +&{glTexImage2DMultisample QOpenGLFunctions_4_2_Compatibility::glTexImage2DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8201962e0 0xc8201963a0 0xc8201964c0 0xc820196560 0xc820196660 0xc820196740] } +&{glTexImage3D QOpenGLFunctions_4_2_Compatibility::glTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8201969e0 0xc820196a60 0xc820196b00 0xc820196be0 0xc820196d40 0xc820196e00 0xc820196ee0 0xc820196f80 0xc820197080 0xc8201971c0] } +&{glTexImage3DMultisample QOpenGLFunctions_4_2_Compatibility::glTexImage3DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820197460 0xc8201974e0 0xc820197580 0xc8201976a0 0xc820197760 0xc820197880 0xc820197940] } +&{glTexParameterIiv QOpenGLFunctions_4_2_Compatibility::glTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820197ca0 0xc820197d20 0xc820197de0] } +&{glTexParameterIuiv QOpenGLFunctions_4_2_Compatibility::glTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc826a680c0 0xc826a68180 0xc826a682c0] } +&{glTexParameterf QOpenGLFunctions_4_2_Compatibility::glTexParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc826a68480 0xc826a68560 0xc826a68660] } +&{glTexParameterfv QOpenGLFunctions_4_2_Compatibility::glTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc826a68800 0xc826a68920 0xc826a689e0] } +&{glTexParameteri QOpenGLFunctions_4_2_Compatibility::glTexParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc826a68be0 0xc826a68cc0 0xc826a68da0] } +&{glTexParameteriv QOpenGLFunctions_4_2_Compatibility::glTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc826a68f80 0xc826a690a0 0xc826a69160] } +&{glTexStorage1D QOpenGLFunctions_4_2_Compatibility::glTexStorage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc826a69300 0xc826a69420 0xc826a694e0 0xc826a69560] } +&{glTexStorage2D QOpenGLFunctions_4_2_Compatibility::glTexStorage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc826a69780 0xc826a69820 0xc826a698e0 0xc826a699c0 0xc826a69aa0] } +&{glTexStorage3D QOpenGLFunctions_4_2_Compatibility::glTexStorage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc826a69c80 0xc826a69d60 0xc826a69e40 0xc826a69f40 0xc8203c6040 0xc8203c6340] } +&{glTexSubImage1D QOpenGLFunctions_4_2_Compatibility::glTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8203c67e0 0xc8203c6920 0xc8203c6a00 0xc8203c6e00 0xc8203c7060 0xc8203c72e0 0xc8203c73c0] } +&{glTexSubImage2D QOpenGLFunctions_4_2_Compatibility::glTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8203c7be0 0xc8203c7d80 0xc820558140 0xc8205582e0 0xc820558480 0xc820558720 0xc8205588e0 0xc8205589c0 0xc820558c80] } +&{glTexSubImage3D QOpenGLFunctions_4_2_Compatibility::glTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820559040 0xc820559100 0xc820559300 0xc820559540 0xc8205597a0 0xc8205599a0 0xc820559ba0 0xc820559d60 0xc820559fa0 0xc820496280 0xc820496380] } +&{glTransformFeedbackVaryings QOpenGLFunctions_4_2_Compatibility::glTransformFeedbackVaryings commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820496a20 0xc820496aa0 0xc820496e20 0xc820496f60] } +&{glTranslated QOpenGLFunctions_4_2_Compatibility::glTranslated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820497480 0xc820497600 0xc820497740] } +&{glTranslatef QOpenGLFunctions_4_2_Compatibility::glTranslatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820497c40 0xc820497d20 0xc820497ee0] } +&{glUniform1d QOpenGLFunctions_4_2_Compatibility::glUniform1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8205242e0 0xc820524440] } +&{glUniform1dv QOpenGLFunctions_4_2_Compatibility::glUniform1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8205246e0 0xc8205247e0 0xc820524900] } +&{glUniform1f QOpenGLFunctions_4_2_Compatibility::glUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820524c80 0xc820524d80] } +&{glUniform1fv QOpenGLFunctions_4_2_Compatibility::glUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820524fa0 0xc820525160 0xc8205252e0] } +&{glUniform1i QOpenGLFunctions_4_2_Compatibility::glUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820525620 0xc8205257c0] } +&{glUniform1iv QOpenGLFunctions_4_2_Compatibility::glUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820525bc0 0xc820525ce0 0xc820525e80] } +&{glUniform1ui QOpenGLFunctions_4_2_Compatibility::glUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82061c2a0 0xc82061c360] } +&{glUniform1uiv QOpenGLFunctions_4_2_Compatibility::glUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82061c7c0 0xc82061c900 0xc82061cac0] } +&{glUniform2d QOpenGLFunctions_4_2_Compatibility::glUniform2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82061cd80 0xc82061d020 0xc82061d0c0] } +&{glUniform2dv QOpenGLFunctions_4_2_Compatibility::glUniform2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82061d500 0xc82061d680 0xc82061d700] } +&{glUniform2f QOpenGLFunctions_4_2_Compatibility::glUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82061dae0 0xc82061dca0 0xc82061ddc0] } +&{glUniform2fv QOpenGLFunctions_4_2_Compatibility::glUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8207001c0 0xc820700280 0xc820700440] } +&{glUniform2i QOpenGLFunctions_4_2_Compatibility::glUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820700920 0xc820700a20 0xc820700bc0] } +&{glUniform2iv QOpenGLFunctions_4_2_Compatibility::glUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820701080 0xc8207011c0 0xc820701260] } +&{glUniform2ui QOpenGLFunctions_4_2_Compatibility::glUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820701620 0xc8207017e0 0xc8207018e0] } +&{glUniform2uiv QOpenGLFunctions_4_2_Compatibility::glUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820701de0 0xc820701f20 0xc820b0e0c0] } +&{glUniform3d QOpenGLFunctions_4_2_Compatibility::glUniform3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820b0e5e0 0xc820b0e6e0 0xc820b0e860 0xc820b0ea60] } +&{glUniform3dv QOpenGLFunctions_4_2_Compatibility::glUniform3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820b0edc0 0xc820b0efc0 0xc820b0f160] } +&{glUniform3f QOpenGLFunctions_4_2_Compatibility::glUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820b0f540 0xc820b0f740 0xc820b0f940 0xc820b0fac0] } +&{glUniform3fv QOpenGLFunctions_4_2_Compatibility::glUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820b0ff20 0xc82085e120 0xc82085e380] } +&{glUniform3i QOpenGLFunctions_4_2_Compatibility::glUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82085e7c0 0xc82085eaa0 0xc82085ec80 0xc82085ed80] } +&{glUniform3iv QOpenGLFunctions_4_2_Compatibility::glUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82085f280 0xc82085f3a0 0xc82085f600] } +&{glUniform3ui QOpenGLFunctions_4_2_Compatibility::glUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82085f9e0 0xc82085fc20 0xc82085fe40 0xc82085ff40] } +&{glUniform3uiv QOpenGLFunctions_4_2_Compatibility::glUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8208f6100 0xc8208f6280 0xc8208f63e0] } +&{glUniform4d QOpenGLFunctions_4_2_Compatibility::glUniform4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8208f6680 0xc8208f6820 0xc8208f6940 0xc8208f6a60 0xc8208f6ba0] } +&{glUniform4dv QOpenGLFunctions_4_2_Compatibility::glUniform4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8208f6ee0 0xc8208f6fe0 0xc8208f71a0] } +&{glUniform4f QOpenGLFunctions_4_2_Compatibility::glUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8208f7380 0xc8208f7440 0xc8208f7600 0xc8208f76c0 0xc8208f77e0] } +&{glUniform4fv QOpenGLFunctions_4_2_Compatibility::glUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8208f7bc0 0xc8208f7c60 0xc8208f7d60] } +&{glUniform4i QOpenGLFunctions_4_2_Compatibility::glUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8209ce020 0xc8209ce180 0xc8209ce2e0 0xc8209ce380 0xc8209ce540] } +&{glUniform4iv QOpenGLFunctions_4_2_Compatibility::glUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8209ce7c0 0xc8209ce8e0 0xc8209cea00] } +&{glUniform4ui QOpenGLFunctions_4_2_Compatibility::glUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8209ced00 0xc8209cedc0 0xc8209cee80 0xc8209cf0a0 0xc8209cf1a0] } +&{glUniform4uiv QOpenGLFunctions_4_2_Compatibility::glUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8209cf460 0xc8209cf580 0xc8209cf680] } +&{glUniformBlockBinding QOpenGLFunctions_4_2_Compatibility::glUniformBlockBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8209cfaa0 0xc8209cfbe0 0xc8209cfd60] } +&{glUniformMatrix2dv QOpenGLFunctions_4_2_Compatibility::glUniformMatrix2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820aaa1c0 0xc820aaa2a0 0xc820aaa380 0xc820aaa4c0] } +&{glUniformMatrix2fv QOpenGLFunctions_4_2_Compatibility::glUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820aaa8e0 0xc820aaaa20 0xc820aaab20 0xc820aaace0] } +&{glUniformMatrix2x3dv QOpenGLFunctions_4_2_Compatibility::glUniformMatrix2x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820aab0a0 0xc820aab220 0xc820aab2c0 0xc820aab440] } +&{glUniformMatrix2x3fv QOpenGLFunctions_4_2_Compatibility::glUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820aab820 0xc820aab960 0xc820aaba40 0xc820aabb20] } +&{glUniformMatrix2x4dv QOpenGLFunctions_4_2_Compatibility::glUniformMatrix2x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820aabf40 0xc820b66060 0xc820b661a0 0xc820b66260] } +&{glUniformMatrix2x4fv QOpenGLFunctions_4_2_Compatibility::glUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820b666a0 0xc820b66780 0xc820b668e0 0xc820b66a40] } +&{glUniformMatrix3dv QOpenGLFunctions_4_2_Compatibility::glUniformMatrix3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820b66d40 0xc820b66e60 0xc820b66fe0 0xc820b67220] } +&{glUniformMatrix3fv QOpenGLFunctions_4_2_Compatibility::glUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820b67500 0xc820b67620 0xc820b67700 0xc820b67820] } +&{glUniformMatrix3x2dv QOpenGLFunctions_4_2_Compatibility::glUniformMatrix3x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820b67b00 0xc820b67ca0 0xc820b67d20 0xc820b67e00] } +&{glUniformMatrix3x2fv QOpenGLFunctions_4_2_Compatibility::glUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820c342c0 0xc820c34580 0xc820c346a0 0xc820c34920] } +&{glUniformMatrix3x4dv QOpenGLFunctions_4_2_Compatibility::glUniformMatrix3x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820c34ee0 0xc820c350c0 0xc820c351c0 0xc820c35420] } +&{glUniformMatrix3x4fv QOpenGLFunctions_4_2_Compatibility::glUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820c35900 0xc820c35a40 0xc820c35d20 0xc820c35dc0] } +&{glUniformMatrix4dv QOpenGLFunctions_4_2_Compatibility::glUniformMatrix4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820de2260 0xc820de2320 0xc820de24a0 0xc820de2580] } +&{glUniformMatrix4fv QOpenGLFunctions_4_2_Compatibility::glUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820de28e0 0xc820de2980 0xc820de2b40 0xc820de2be0] } +&{glUniformMatrix4x2dv QOpenGLFunctions_4_2_Compatibility::glUniformMatrix4x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820de2f00 0xc820de2fa0 0xc820de30c0 0xc820de31c0] } +&{glUniformMatrix4x2fv QOpenGLFunctions_4_2_Compatibility::glUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820de34c0 0xc820de3560 0xc820de36e0 0xc820de3780] } +&{glUniformMatrix4x3dv QOpenGLFunctions_4_2_Compatibility::glUniformMatrix4x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820de3aa0 0xc820de3be0 0xc820de3cc0 0xc820de3da0] } +&{glUniformMatrix4x3fv QOpenGLFunctions_4_2_Compatibility::glUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820ed2220 0xc820ed2340 0xc820ed23c0 0xc820ed25c0] } +&{glUniformSubroutinesuiv QOpenGLFunctions_4_2_Compatibility::glUniformSubroutinesuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820ed29a0 0xc820ed2ae0 0xc820ed2c40] } +&{glUnmapBuffer QOpenGLFunctions_4_2_Compatibility::glUnmapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false GLboolean [0xc820ed2f40] } +&{glUseProgram QOpenGLFunctions_4_2_Compatibility::glUseProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820ed32c0] } +&{glUseProgramStages QOpenGLFunctions_4_2_Compatibility::glUseProgramStages commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820ed3760 0xc820ed38a0 0xc820ed39e0] } +&{glValidateProgram QOpenGLFunctions_4_2_Compatibility::glValidateProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820ed3d60] } +&{glValidateProgramPipeline QOpenGLFunctions_4_2_Compatibility::glValidateProgramPipeline commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820b9e1e0] } +&{glVertex2d QOpenGLFunctions_4_2_Compatibility::glVertex2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820b9e500 0xc820b9e5c0] } +&{glVertex2dv QOpenGLFunctions_4_2_Compatibility::glVertex2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820b9e820] } +&{glVertex2f QOpenGLFunctions_4_2_Compatibility::glVertex2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820b9ea00 0xc820b9eac0] } +&{glVertex2fv QOpenGLFunctions_4_2_Compatibility::glVertex2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820b9ece0] } +&{glVertex2i QOpenGLFunctions_4_2_Compatibility::glVertex2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820b9eee0 0xc820b9efc0] } +&{glVertex2iv QOpenGLFunctions_4_2_Compatibility::glVertex2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820b9f200] } +&{glVertex2s QOpenGLFunctions_4_2_Compatibility::glVertex2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820b9f420 0xc820b9f4c0] } +&{glVertex2sv QOpenGLFunctions_4_2_Compatibility::glVertex2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820b9f6e0] } +&{glVertex3d QOpenGLFunctions_4_2_Compatibility::glVertex3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820b9f8e0 0xc820b9f9a0 0xc820b9fa80] } +&{glVertex3dv QOpenGLFunctions_4_2_Compatibility::glVertex3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820b9fc80] } +&{glVertex3f QOpenGLFunctions_4_2_Compatibility::glVertex3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820b9fec0 0xc820b9ff60 0xc826b56040] } +&{glVertex3fv QOpenGLFunctions_4_2_Compatibility::glVertex3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc826b565a0] } +&{glVertex3i QOpenGLFunctions_4_2_Compatibility::glVertex3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc826b56920 0xc826b56b00 0xc826b56c20] } +&{glVertex3iv QOpenGLFunctions_4_2_Compatibility::glVertex3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc826b56fe0] } +&{glVertex3s QOpenGLFunctions_4_2_Compatibility::glVertex3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc826b57340 0xc826b57500 0xc826b57600] } +&{glVertex3sv QOpenGLFunctions_4_2_Compatibility::glVertex3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc826b579a0] } +&{glVertex4d QOpenGLFunctions_4_2_Compatibility::glVertex4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc826b57cc0 0xc826b57ec0 0xc826b57fc0 0xc820f96100] } +&{glVertex4dv QOpenGLFunctions_4_2_Compatibility::glVertex4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820f96580] } +&{glVertex4f QOpenGLFunctions_4_2_Compatibility::glVertex4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820f96a00 0xc820f96ba0 0xc820f96d40 0xc820f96f60] } +&{glVertex4fv QOpenGLFunctions_4_2_Compatibility::glVertex4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820f97380] } +&{glVertex4i QOpenGLFunctions_4_2_Compatibility::glVertex4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc820f977a0 0xc820f97900 0xc820f97ba0 0xc820f97c80] } +&{glVertex4iv QOpenGLFunctions_4_2_Compatibility::glVertex4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8210420e0] } +&{glVertex4s QOpenGLFunctions_4_2_Compatibility::glVertex4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821042500 0xc821042680 0xc821042940 0xc821042ac0] } +&{glVertex4sv QOpenGLFunctions_4_2_Compatibility::glVertex4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821042e40] } +&{glVertexAttrib1d QOpenGLFunctions_4_2_Compatibility::glVertexAttrib1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821043200 0xc821043340] } +&{glVertexAttrib1dv QOpenGLFunctions_4_2_Compatibility::glVertexAttrib1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821043760 0xc8210438e0] } +&{glVertexAttrib1f QOpenGLFunctions_4_2_Compatibility::glVertexAttrib1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821043c20 0xc821043d20] } +&{glVertexAttrib1fv QOpenGLFunctions_4_2_Compatibility::glVertexAttrib1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8210e4340 0xc8210e4440] } +&{glVertexAttrib1s QOpenGLFunctions_4_2_Compatibility::glVertexAttrib1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8210e47c0 0xc8210e4a60] } +&{glVertexAttrib1sv QOpenGLFunctions_4_2_Compatibility::glVertexAttrib1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8210e5020 0xc8210e5160] } +&{glVertexAttrib2d QOpenGLFunctions_4_2_Compatibility::glVertexAttrib2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8210e5540 0xc8210e5740 0xc8210e5980] } +&{glVertexAttrib2dv QOpenGLFunctions_4_2_Compatibility::glVertexAttrib2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8210e5f60 0xc8210e5fe0] } +&{glVertexAttrib2f QOpenGLFunctions_4_2_Compatibility::glVertexAttrib2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821190300 0xc8211903a0 0xc821190580] } +&{glVertexAttrib2fv QOpenGLFunctions_4_2_Compatibility::glVertexAttrib2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821190920 0xc821190a20] } +&{glVertexAttrib2s QOpenGLFunctions_4_2_Compatibility::glVertexAttrib2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821190e20 0xc821190fa0 0xc821191120] } +&{glVertexAttrib2sv QOpenGLFunctions_4_2_Compatibility::glVertexAttrib2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821191640 0xc8211918a0] } +&{glVertexAttrib3d QOpenGLFunctions_4_2_Compatibility::glVertexAttrib3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821191ce0 0xc821191d80 0xc821191f20 0xc82123c020] } +&{glVertexAttrib3dv QOpenGLFunctions_4_2_Compatibility::glVertexAttrib3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82123c320 0xc82123c440] } +&{glVertexAttrib3f QOpenGLFunctions_4_2_Compatibility::glVertexAttrib3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82123c640 0xc82123c720 0xc82123c920 0xc82123c9c0] } +&{glVertexAttrib3fv QOpenGLFunctions_4_2_Compatibility::glVertexAttrib3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82123cce0 0xc82123ce00] } +&{glVertexAttrib3s QOpenGLFunctions_4_2_Compatibility::glVertexAttrib3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82123d060 0xc82123d180 0xc82123d2c0 0xc82123d420] } +&{glVertexAttrib3sv QOpenGLFunctions_4_2_Compatibility::glVertexAttrib3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82123d8c0 0xc82123d960] } +&{glVertexAttrib4Nbv QOpenGLFunctions_4_2_Compatibility::glVertexAttrib4Nbv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82123dd00 0xc82123de00] } +&{glVertexAttrib4Niv QOpenGLFunctions_4_2_Compatibility::glVertexAttrib4Niv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82132c220 0xc82132c2e0] } +&{glVertexAttrib4Nsv QOpenGLFunctions_4_2_Compatibility::glVertexAttrib4Nsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82132c7a0 0xc82132c900] } +&{glVertexAttrib4Nub QOpenGLFunctions_4_2_Compatibility::glVertexAttrib4Nub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82132cd60 0xc82132cea0 0xc82132cfa0 0xc82132d0e0 0xc82132d260] } +&{glVertexAttrib4Nubv QOpenGLFunctions_4_2_Compatibility::glVertexAttrib4Nubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82132d680 0xc82132d820] } +&{glVertexAttrib4Nuiv QOpenGLFunctions_4_2_Compatibility::glVertexAttrib4Nuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82132dbc0 0xc82132dd20] } +&{glVertexAttrib4Nusv QOpenGLFunctions_4_2_Compatibility::glVertexAttrib4Nusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8213d2160 0xc8213d22e0] } +&{glVertexAttrib4bv QOpenGLFunctions_4_2_Compatibility::glVertexAttrib4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8213d2680 0xc8213d27c0] } +&{glVertexAttrib4d QOpenGLFunctions_4_2_Compatibility::glVertexAttrib4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8213d2a60 0xc8213d2b80 0xc8213d2c40 0xc8213d2d40 0xc8213d2ec0] } +&{glVertexAttrib4dv QOpenGLFunctions_4_2_Compatibility::glVertexAttrib4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8213d3140 0xc8213d32a0] } +&{glVertexAttrib4f QOpenGLFunctions_4_2_Compatibility::glVertexAttrib4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8213d34e0 0xc8213d35e0 0xc8213d36a0 0xc8213d37a0 0xc8213d38e0] } +&{glVertexAttrib4fv QOpenGLFunctions_4_2_Compatibility::glVertexAttrib4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8213d3b80 0xc8213d3c80] } +&{glVertexAttrib4iv QOpenGLFunctions_4_2_Compatibility::glVertexAttrib4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8213d3fe0 0xc8214b20a0] } +&{glVertexAttrib4s QOpenGLFunctions_4_2_Compatibility::glVertexAttrib4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8214b2340 0xc8214b24a0 0xc8214b2580 0xc8214b2640 0xc8214b2820] } +&{glVertexAttrib4sv QOpenGLFunctions_4_2_Compatibility::glVertexAttrib4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8214b2ba0 0xc8214b2c60] } +&{glVertexAttrib4ubv QOpenGLFunctions_4_2_Compatibility::glVertexAttrib4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8214b3000 0xc8214b3100] } +&{glVertexAttrib4uiv QOpenGLFunctions_4_2_Compatibility::glVertexAttrib4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8214b3420 0xc8214b34e0] } +&{glVertexAttrib4usv QOpenGLFunctions_4_2_Compatibility::glVertexAttrib4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8214b3860 0xc8214b3940] } +&{glVertexAttribDivisor QOpenGLFunctions_4_2_Compatibility::glVertexAttribDivisor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8214b3c80 0xc8214b3da0] } +&{glVertexAttribI1i QOpenGLFunctions_4_2_Compatibility::glVertexAttribI1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8215a0160 0xc8215a0200] } +&{glVertexAttribI1iv QOpenGLFunctions_4_2_Compatibility::glVertexAttribI1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8215a0580 0xc8215a0680] } +&{glVertexAttribI1ui QOpenGLFunctions_4_2_Compatibility::glVertexAttribI1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8215a0a20 0xc8215a0b20] } +&{glVertexAttribI1uiv QOpenGLFunctions_4_2_Compatibility::glVertexAttribI1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8215a0ea0 0xc8215a0f80] } +&{glVertexAttribI2i QOpenGLFunctions_4_2_Compatibility::glVertexAttribI2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8215a12e0 0xc8215a1420 0xc8215a1500] } +&{glVertexAttribI2iv QOpenGLFunctions_4_2_Compatibility::glVertexAttribI2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8215a1880 0xc8215a1980] } +&{glVertexAttribI2ui QOpenGLFunctions_4_2_Compatibility::glVertexAttribI2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8215a1ce0 0xc8215a1e00 0xc8215a1f20] } +&{glVertexAttribI2uiv QOpenGLFunctions_4_2_Compatibility::glVertexAttribI2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821692260 0xc821692360] } +&{glVertexAttribI3i QOpenGLFunctions_4_2_Compatibility::glVertexAttribI3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8216927c0 0xc821692920 0xc821692a00 0xc821692b60] } +&{glVertexAttribI3iv QOpenGLFunctions_4_2_Compatibility::glVertexAttribI3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821692f80 0xc8216930c0] } +&{glVertexAttribI3ui QOpenGLFunctions_4_2_Compatibility::glVertexAttribI3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8216934e0 0xc8216935c0 0xc821693800 0xc8216938e0] } +&{glVertexAttribI3uiv QOpenGLFunctions_4_2_Compatibility::glVertexAttribI3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821693ca0 0xc821693de0] } +&{glVertexAttribI4bv QOpenGLFunctions_4_2_Compatibility::glVertexAttribI4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8217540a0 0xc821754180] } +&{glVertexAttribI4i QOpenGLFunctions_4_2_Compatibility::glVertexAttribI4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821754580 0xc821754640 0xc8217547a0 0xc8217548a0 0xc821754a20] } +&{glVertexAttribI4iv QOpenGLFunctions_4_2_Compatibility::glVertexAttribI4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821754d80 0xc821754e60] } +&{glVertexAttribI4sv QOpenGLFunctions_4_2_Compatibility::glVertexAttribI4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821755220 0xc821755320] } +&{glVertexAttribI4ubv QOpenGLFunctions_4_2_Compatibility::glVertexAttribI4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821755640 0xc821755720] } +&{glVertexAttribI4ui QOpenGLFunctions_4_2_Compatibility::glVertexAttribI4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821755aa0 0xc821755c00 0xc821755cc0 0xc821755e00 0xc821755f80] } +&{glVertexAttribI4uiv QOpenGLFunctions_4_2_Compatibility::glVertexAttribI4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821806360 0xc821806460] } +&{glVertexAttribI4usv QOpenGLFunctions_4_2_Compatibility::glVertexAttribI4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8218068a0 0xc8218069e0] } +&{glVertexAttribIPointer QOpenGLFunctions_4_2_Compatibility::glVertexAttribIPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821806cc0 0xc821806e00 0xc821806fa0 0xc821807120 0xc821807280] } +&{glVertexAttribL1d QOpenGLFunctions_4_2_Compatibility::glVertexAttribL1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821807600 0xc821807740] } +&{glVertexAttribL1dv QOpenGLFunctions_4_2_Compatibility::glVertexAttribL1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821807a80 0xc821807b40] } +&{glVertexAttribL2d QOpenGLFunctions_4_2_Compatibility::glVertexAttribL2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821807f40 0xc8218d40e0 0xc8218d41c0] } +&{glVertexAttribL2dv QOpenGLFunctions_4_2_Compatibility::glVertexAttribL2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8218d45e0 0xc8218d4680] } +&{glVertexAttribL3d QOpenGLFunctions_4_2_Compatibility::glVertexAttribL3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8218d4aa0 0xc8218d4c00 0xc8218d4d60 0xc8218d4f00] } +&{glVertexAttribL3dv QOpenGLFunctions_4_2_Compatibility::glVertexAttribL3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8218d52a0 0xc8218d53e0] } +&{glVertexAttribL4d QOpenGLFunctions_4_2_Compatibility::glVertexAttribL4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8218d57a0 0xc8218d58a0 0xc8218d59a0 0xc8218d5b00 0xc8218d5c80] } +&{glVertexAttribL4dv QOpenGLFunctions_4_2_Compatibility::glVertexAttribL4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82198a0a0 0xc82198a280] } +&{glVertexAttribLPointer QOpenGLFunctions_4_2_Compatibility::glVertexAttribLPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82198a6a0 0xc82198a800 0xc82198a920 0xc82198ab20 0xc82198ac80] } +&{glVertexAttribP1ui QOpenGLFunctions_4_2_Compatibility::glVertexAttribP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82198b040 0xc82198b140 0xc82198b2e0 0xc82198b400] } +&{glVertexAttribP1uiv QOpenGLFunctions_4_2_Compatibility::glVertexAttribP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc82198b800 0xc82198b920 0xc82198ba40 0xc82198bca0] } +&{glVertexAttribP2ui QOpenGLFunctions_4_2_Compatibility::glVertexAttribP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821a1e040 0xc821a1e1e0 0xc821a1e260 0xc821a1e460] } +&{glVertexAttribP2uiv QOpenGLFunctions_4_2_Compatibility::glVertexAttribP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821a1e760 0xc821a1e8e0 0xc821a1ea20 0xc821a1eae0] } +&{glVertexAttribP3ui QOpenGLFunctions_4_2_Compatibility::glVertexAttribP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821a1ef20 0xc821a1f0a0 0xc821a1f1e0 0xc821a1f2a0] } +&{glVertexAttribP3uiv QOpenGLFunctions_4_2_Compatibility::glVertexAttribP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821a1f5c0 0xc821a1f740 0xc821a1f840 0xc821a1f900] } +&{glVertexAttribP4ui QOpenGLFunctions_4_2_Compatibility::glVertexAttribP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821a1fc60 0xc821a1fdc0 0xc821a1fec0 0xc821a1ffe0] } +&{glVertexAttribP4uiv QOpenGLFunctions_4_2_Compatibility::glVertexAttribP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821ae83e0 0xc821ae8480 0xc821ae8580 0xc821ae86c0] } +&{glVertexAttribPointer QOpenGLFunctions_4_2_Compatibility::glVertexAttribPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821ae8960 0xc821ae8a60 0xc821ae8b40 0xc821ae8c00 0xc821ae8d80 0xc821ae8e80] } +&{glVertexP2ui QOpenGLFunctions_4_2_Compatibility::glVertexP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821ae9120 0xc821ae9200] } +&{glVertexP2uiv QOpenGLFunctions_4_2_Compatibility::glVertexP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821ae9460 0xc821ae9600] } +&{glVertexP3ui QOpenGLFunctions_4_2_Compatibility::glVertexP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821ae9840 0xc821ae9940] } +&{glVertexP3uiv QOpenGLFunctions_4_2_Compatibility::glVertexP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821ae9c40 0xc821ae9d00] } +&{glVertexP4ui QOpenGLFunctions_4_2_Compatibility::glVertexP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821bd0020 0xc821bd0100] } +&{glVertexP4uiv QOpenGLFunctions_4_2_Compatibility::glVertexP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821bd03e0 0xc821bd04a0] } +&{glVertexPointer QOpenGLFunctions_4_2_Compatibility::glVertexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821bd0760 0xc821bd0880 0xc821bd0940 0xc821bd0a20] } +&{glViewport QOpenGLFunctions_4_2_Compatibility::glViewport commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821bd0ce0 0xc821bd0dc0 0xc821bd0ee0 0xc821bd0f80] } +&{glViewportArrayv QOpenGLFunctions_4_2_Compatibility::glViewportArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821bd12a0 0xc821bd13c0 0xc821bd14a0] } +&{glViewportIndexedf QOpenGLFunctions_4_2_Compatibility::glViewportIndexedf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821bd1820 0xc821bd1920 0xc821bd1aa0 0xc821bd1b80 0xc821bd1ca0] } +&{glViewportIndexedfv QOpenGLFunctions_4_2_Compatibility::glViewportIndexedfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821cb2020 0xc821cb21a0] } +&{glWaitSync QOpenGLFunctions_4_2_Compatibility::glWaitSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821cb2420 0xc821cb2500 0xc821cb2660] } +&{glWindowPos2d QOpenGLFunctions_4_2_Compatibility::glWindowPos2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821cb2860 0xc821cb29a0] } +&{glWindowPos2dv QOpenGLFunctions_4_2_Compatibility::glWindowPos2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821cb2c40] } +&{glWindowPos2f QOpenGLFunctions_4_2_Compatibility::glWindowPos2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821cb2ea0 0xc821cb2f80] } +&{glWindowPos2fv QOpenGLFunctions_4_2_Compatibility::glWindowPos2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821cb3280] } +&{glWindowPos2i QOpenGLFunctions_4_2_Compatibility::glWindowPos2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821cb35a0 0xc821cb3660] } +&{glWindowPos2iv QOpenGLFunctions_4_2_Compatibility::glWindowPos2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821cb3940] } +&{glWindowPos2s QOpenGLFunctions_4_2_Compatibility::glWindowPos2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821cb3ba0 0xc821cb3cc0] } +&{glWindowPos2sv QOpenGLFunctions_4_2_Compatibility::glWindowPos2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc821cb3f80] } +&{glWindowPos3d QOpenGLFunctions_4_2_Compatibility::glWindowPos3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822676180 0xc822676200 0xc822676280] } +&{glWindowPos3dv QOpenGLFunctions_4_2_Compatibility::glWindowPos3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822676460] } +&{glWindowPos3f QOpenGLFunctions_4_2_Compatibility::glWindowPos3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8226765c0 0xc8226766a0 0xc822676740] } +&{glWindowPos3fv QOpenGLFunctions_4_2_Compatibility::glWindowPos3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc8226768c0] } +&{glWindowPos3i QOpenGLFunctions_4_2_Compatibility::glWindowPos3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822676a80 0xc822676b40 0xc822676bc0] } +&{glWindowPos3iv QOpenGLFunctions_4_2_Compatibility::glWindowPos3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822676d80] } +&{glWindowPos3s QOpenGLFunctions_4_2_Compatibility::glWindowPos3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822676f00 0xc822676f80 0xc822677060] } +&{glWindowPos3sv QOpenGLFunctions_4_2_Compatibility::glWindowPos3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_compatibility.h non plain false false void [0xc822677200] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions_4_2_Core.txt b/internal/binding/dump/QtGui/QOpenGLFunctions_4_2_Core.txt new file mode 100755 index 00000000..9658b049 --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions_4_2_Core.txt @@ -0,0 +1,472 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions_4_2_Core QOpenGLFunctions_4_2_Core::QOpenGLFunctions_4_2_Core commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.cpp non constructor false false [] } +&{initializeOpenGLFunctions QOpenGLFunctions_4_2_Core::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.cpp impure plain false false bool [] } +&{~QOpenGLFunctions_4_2_Core QOpenGLFunctions_4_2_Core::~QOpenGLFunctions_4_2_Core commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.cpp non destructor false false [] } +&{glActiveShaderProgram QOpenGLFunctions_4_2_Core::glActiveShaderProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822677e00 0xc822677ec0] } +&{glActiveTexture QOpenGLFunctions_4_2_Core::glActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822b52080] } +&{glAttachShader QOpenGLFunctions_4_2_Core::glAttachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822b52220 0xc822b522c0] } +&{glBeginConditionalRender QOpenGLFunctions_4_2_Core::glBeginConditionalRender commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822b52540 0xc822b525c0] } +&{glBeginQuery QOpenGLFunctions_4_2_Core::glBeginQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822b527a0 0xc822b52840] } +&{glBeginQueryIndexed QOpenGLFunctions_4_2_Core::glBeginQueryIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822b52a80 0xc822b52b40 0xc822b52bc0] } +&{glBeginTransformFeedback QOpenGLFunctions_4_2_Core::glBeginTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822b52e00] } +&{glBindAttribLocation QOpenGLFunctions_4_2_Core::glBindAttribLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822b53020 0xc822b53100 0xc822b531a0] } +&{glBindBuffer QOpenGLFunctions_4_2_Core::glBindBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822b53360 0xc822b533e0] } +&{glBindBufferBase QOpenGLFunctions_4_2_Core::glBindBufferBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822b535a0 0xc822b53620 0xc822b53700] } +&{glBindBufferRange QOpenGLFunctions_4_2_Core::glBindBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822b53940 0xc822b539c0 0xc822b53a40 0xc822b53b20 0xc822b53be0] } +&{glBindFragDataLocation QOpenGLFunctions_4_2_Core::glBindFragDataLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822b53e20 0xc822b53ec0 0xc822b53f80] } +&{glBindFragDataLocationIndexed QOpenGLFunctions_4_2_Core::glBindFragDataLocationIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e9e160 0xc821e9e1e0 0xc821e9e260 0xc821e9e320] } +&{glBindFramebuffer QOpenGLFunctions_4_2_Core::glBindFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e9e560 0xc821e9e5e0] } +&{glBindImageTexture QOpenGLFunctions_4_2_Core::glBindImageTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e9e820 0xc821e9e8a0 0xc821e9e920 0xc821e9e9a0 0xc821e9ea40 0xc821e9eac0 0xc821e9eb40] } +&{glBindProgramPipeline QOpenGLFunctions_4_2_Core::glBindProgramPipeline commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e9ed00] } +&{glBindRenderbuffer QOpenGLFunctions_4_2_Core::glBindRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e9ef80 0xc821e9f000] } +&{glBindSampler QOpenGLFunctions_4_2_Core::glBindSampler commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e9f1c0 0xc821e9f240] } +&{glBindTexture QOpenGLFunctions_4_2_Core::glBindTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e9f3c0 0xc821e9f440] } +&{glBindTransformFeedback QOpenGLFunctions_4_2_Core::glBindTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e9f600 0xc821e9f680] } +&{glBindVertexArray QOpenGLFunctions_4_2_Core::glBindVertexArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e9f840] } +&{glBlendColor QOpenGLFunctions_4_2_Core::glBlendColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e9f9a0 0xc821e9fa20 0xc821e9faa0 0xc821e9fb20] } +&{glBlendEquation QOpenGLFunctions_4_2_Core::glBlendEquation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e9fc80] } +&{glBlendEquationSeparate QOpenGLFunctions_4_2_Core::glBlendEquationSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e9fe40 0xc821e9fec0] } +&{glBlendEquationSeparatei QOpenGLFunctions_4_2_Core::glBlendEquationSeparatei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822b3e080 0xc822b3e100 0xc822b3e180] } +&{glBlendEquationi QOpenGLFunctions_4_2_Core::glBlendEquationi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822b3e2e0 0xc822b3e360] } +&{glBlendFunc QOpenGLFunctions_4_2_Core::glBlendFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822b3e4c0 0xc822b3e540] } +&{glBlendFuncSeparate QOpenGLFunctions_4_2_Core::glBlendFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822b3e760 0xc822b3e800 0xc822b3e8a0 0xc822b3e920] } +&{glBlendFuncSeparatei QOpenGLFunctions_4_2_Core::glBlendFuncSeparatei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822b3eb60 0xc822b3ebe0 0xc822b3ec80 0xc822b3ed00 0xc822b3ee00] } +&{glBlendFunci QOpenGLFunctions_4_2_Core::glBlendFunci commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822b3efc0 0xc822b3f040 0xc822b3f100] } +&{glBlitFramebuffer QOpenGLFunctions_4_2_Core::glBlitFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822b3f300 0xc822b3f3e0 0xc822b3f460 0xc822b3f4e0 0xc822b3f5e0 0xc822b3f660 0xc822b3f700 0xc822b3f7c0 0xc822b3f8a0 0xc822b3f920] } +&{glBufferData QOpenGLFunctions_4_2_Core::glBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822b3fae0 0xc822b3fb80 0xc822b3fc40 0xc822b3fd00] } +&{glBufferSubData QOpenGLFunctions_4_2_Core::glBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822b3fea0 0xc822b3ff40 0xc822b3ffc0 0xc82254e040] } +&{glCheckFramebufferStatus QOpenGLFunctions_4_2_Core::glCheckFramebufferStatus commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLenum [0xc82254e240] } +&{glClampColor QOpenGLFunctions_4_2_Core::glClampColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82254e440 0xc82254e4c0] } +&{glClear QOpenGLFunctions_4_2_Core::glClear commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82254e6c0] } +&{glClearBufferfi QOpenGLFunctions_4_2_Core::glClearBufferfi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82254e880 0xc82254e920 0xc82254e9a0 0xc82254ea60] } +&{glClearBufferfv QOpenGLFunctions_4_2_Core::glClearBufferfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82254ec00 0xc82254ecc0 0xc82254ed60] } +&{glClearBufferiv QOpenGLFunctions_4_2_Core::glClearBufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82254ef00 0xc82254efc0 0xc82254f040] } +&{glClearBufferuiv QOpenGLFunctions_4_2_Core::glClearBufferuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82254f1e0 0xc82254f2a0 0xc82254f320] } +&{glClearColor QOpenGLFunctions_4_2_Core::glClearColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82254f500 0xc82254f580 0xc82254f640 0xc82254f6e0] } +&{glClearDepth QOpenGLFunctions_4_2_Core::glClearDepth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82254f880] } +&{glClearDepthf QOpenGLFunctions_4_2_Core::glClearDepthf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82254fa60] } +&{glClearStencil QOpenGLFunctions_4_2_Core::glClearStencil commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82254fc20] } +&{glClientWaitSync QOpenGLFunctions_4_2_Core::glClientWaitSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLenum [0xc82254fde0 0xc82254fea0 0xc82254ff40] } +&{glColorMask QOpenGLFunctions_4_2_Core::glColorMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821d3e0a0 0xc821d3e120 0xc821d3e1a0 0xc821d3e220] } +&{glColorMaski QOpenGLFunctions_4_2_Core::glColorMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821d3e3e0 0xc821d3e4a0 0xc821d3e540 0xc821d3e5c0 0xc821d3e660] } +&{glColorP3ui QOpenGLFunctions_4_2_Core::glColorP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821d3e820 0xc821d3e900] } +&{glColorP3uiv QOpenGLFunctions_4_2_Core::glColorP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821d3eae0 0xc821d3eb60] } +&{glColorP4ui QOpenGLFunctions_4_2_Core::glColorP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821d3ed20 0xc821d3eda0] } +&{glColorP4uiv QOpenGLFunctions_4_2_Core::glColorP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821d3ef40 0xc821d3efc0] } +&{glCompileShader QOpenGLFunctions_4_2_Core::glCompileShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821d3f120] } +&{glCompressedTexImage1D QOpenGLFunctions_4_2_Core::glCompressedTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821d3f2e0 0xc821d3f360 0xc821d3f3e0 0xc821d3f460 0xc821d3f500 0xc821d3f580 0xc821d3f600] } +&{glCompressedTexImage2D QOpenGLFunctions_4_2_Core::glCompressedTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821d3f7c0 0xc821d3f840 0xc821d3f8c0 0xc821d3f940 0xc821d3f9e0 0xc821d3fa60 0xc821d3fae0 0xc821d3fb60] } +&{glCompressedTexImage3D QOpenGLFunctions_4_2_Core::glCompressedTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821d3fd20 0xc821d3fda0 0xc821d3fe20 0xc821d3fea0 0xc821d3ff40 0xc821d3ffc0 0xc821e60040 0xc821e600c0 0xc821e60160] } +&{glCompressedTexSubImage1D QOpenGLFunctions_4_2_Core::glCompressedTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e60320 0xc821e603a0 0xc821e60420 0xc821e604a0 0xc821e60540 0xc821e605c0 0xc821e60640] } +&{glCompressedTexSubImage2D QOpenGLFunctions_4_2_Core::glCompressedTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e60800 0xc821e60880 0xc821e60900 0xc821e60980 0xc821e60a20 0xc821e60ae0 0xc821e60b60 0xc821e60c00 0xc821e60ce0] } +&{glCompressedTexSubImage3D QOpenGLFunctions_4_2_Core::glCompressedTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e60f20 0xc821e60fa0 0xc821e61020 0xc821e61100 0xc821e611a0 0xc821e61260 0xc821e61320 0xc821e613a0 0xc821e614a0 0xc821e61520 0xc821e615a0] } +&{glCopyBufferSubData QOpenGLFunctions_4_2_Core::glCopyBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e61800 0xc821e618a0 0xc821e61920 0xc821e619e0 0xc821e61ac0] } +&{glCopyTexImage1D QOpenGLFunctions_4_2_Core::glCopyTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e61ca0 0xc821e61d20 0xc821e61e00 0xc821e61e80 0xc821e61f60 0xc82253e000 0xc82253e080] } +&{glCopyTexImage2D QOpenGLFunctions_4_2_Core::glCopyTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82253e280 0xc82253e300 0xc82253e380 0xc82253e460 0xc82253e500 0xc82253e5c0 0xc82253e660 0xc82253e6e0] } +&{glCopyTexSubImage1D QOpenGLFunctions_4_2_Core::glCopyTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82253e940 0xc82253e9e0 0xc82253ea60 0xc82253eb00 0xc82253ebe0 0xc82253ec80] } +&{glCopyTexSubImage2D QOpenGLFunctions_4_2_Core::glCopyTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82253ee80 0xc82253ef60 0xc82253f000 0xc82253f080 0xc82253f140 0xc82253f1e0 0xc82253f2a0 0xc82253f340] } +&{glCopyTexSubImage3D QOpenGLFunctions_4_2_Core::glCopyTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82253f580 0xc82253f620 0xc82253f6c0 0xc82253f740 0xc82253f840 0xc82253f8e0 0xc82253f980 0xc82253fa00 0xc82253fae0] } +&{glCreateProgram QOpenGLFunctions_4_2_Core::glCreateProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLuint [] } +&{glCreateShader QOpenGLFunctions_4_2_Core::glCreateShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLuint [0xc82253fd60] } +&{glCreateShaderProgramv QOpenGLFunctions_4_2_Core::glCreateShaderProgramv commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLuint [0xc82253ffc0 0xc821e6c040 0xc821e6c0e0] } +&{glCullFace QOpenGLFunctions_4_2_Core::glCullFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e6c380] } +&{glDeleteBuffers QOpenGLFunctions_4_2_Core::glDeleteBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e6c540 0xc821e6c5c0] } +&{glDeleteFramebuffers QOpenGLFunctions_4_2_Core::glDeleteFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e6c7e0 0xc821e6c8a0] } +&{glDeleteProgram QOpenGLFunctions_4_2_Core::glDeleteProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e6ca20] } +&{glDeleteProgramPipelines QOpenGLFunctions_4_2_Core::glDeleteProgramPipelines commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e6ccc0 0xc821e6cd40] } +&{glDeleteQueries QOpenGLFunctions_4_2_Core::glDeleteQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e6cf20 0xc821e6cfa0] } +&{glDeleteRenderbuffers QOpenGLFunctions_4_2_Core::glDeleteRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e6d1e0 0xc821e6d260] } +&{glDeleteSamplers QOpenGLFunctions_4_2_Core::glDeleteSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e6d3c0 0xc821e6d440] } +&{glDeleteShader QOpenGLFunctions_4_2_Core::glDeleteShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e6d5a0] } +&{glDeleteSync QOpenGLFunctions_4_2_Core::glDeleteSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e6d720] } +&{glDeleteTextures QOpenGLFunctions_4_2_Core::glDeleteTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e6d880 0xc821e6d900] } +&{glDeleteTransformFeedbacks QOpenGLFunctions_4_2_Core::glDeleteTransformFeedbacks commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e6dac0 0xc821e6db40] } +&{glDeleteVertexArrays QOpenGLFunctions_4_2_Core::glDeleteVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e6dd00 0xc821e6dd80] } +&{glDepthFunc QOpenGLFunctions_4_2_Core::glDepthFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821e6df00] } +&{glDepthMask QOpenGLFunctions_4_2_Core::glDepthMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821ea8080] } +&{glDepthRange QOpenGLFunctions_4_2_Core::glDepthRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821ea81e0 0xc821ea8260] } +&{glDepthRangeArrayv QOpenGLFunctions_4_2_Core::glDepthRangeArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821ea84c0 0xc821ea8560 0xc821ea8620] } +&{glDepthRangeIndexed QOpenGLFunctions_4_2_Core::glDepthRangeIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821ea8840 0xc821ea8920 0xc821ea89a0] } +&{glDepthRangef QOpenGLFunctions_4_2_Core::glDepthRangef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821ea8b80 0xc821ea8c00] } +&{glDetachShader QOpenGLFunctions_4_2_Core::glDetachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821ea8de0 0xc821ea8e80] } +&{glDisable QOpenGLFunctions_4_2_Core::glDisable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821ea9020] } +&{glDisableVertexAttribArray QOpenGLFunctions_4_2_Core::glDisableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821ea9240] } +&{glDisablei QOpenGLFunctions_4_2_Core::glDisablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821ea9400 0xc821ea9480] } +&{glDrawArrays QOpenGLFunctions_4_2_Core::glDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821ea9640 0xc821ea96c0 0xc821ea9760] } +&{glDrawArraysIndirect QOpenGLFunctions_4_2_Core::glDrawArraysIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821ea9920 0xc821ea99a0] } +&{glDrawArraysInstanced QOpenGLFunctions_4_2_Core::glDrawArraysInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821ea9b60 0xc821ea9be0 0xc821ea9c60 0xc821ea9ce0] } +&{glDrawArraysInstancedBaseInstance QOpenGLFunctions_4_2_Core::glDrawArraysInstancedBaseInstance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821ea9e40 0xc821ea9ec0 0xc821ea9f40 0xc821ea9fc0 0xc821eb2060] } +&{glDrawBuffer QOpenGLFunctions_4_2_Core::glDrawBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821eb21e0] } +&{glDrawBuffers QOpenGLFunctions_4_2_Core::glDrawBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821eb2340 0xc821eb23c0] } +&{glDrawElements QOpenGLFunctions_4_2_Core::glDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821eb2520 0xc821eb25a0 0xc821eb2620 0xc821eb26a0] } +&{glDrawElementsBaseVertex QOpenGLFunctions_4_2_Core::glDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821eb2880 0xc821eb2900 0xc821eb29a0 0xc821eb2a20 0xc821eb2b40] } +&{glDrawElementsIndirect QOpenGLFunctions_4_2_Core::glDrawElementsIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821eb2d20 0xc821eb2e00 0xc821eb2e80] } +&{glDrawElementsInstanced QOpenGLFunctions_4_2_Core::glDrawElementsInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821eb30a0 0xc821eb3180 0xc821eb3220 0xc821eb32c0 0xc821eb3360] } +&{glDrawElementsInstancedBaseInstance QOpenGLFunctions_4_2_Core::glDrawElementsInstancedBaseInstance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821eb3540 0xc821eb3600 0xc821eb36a0 0xc821eb3720 0xc821eb37e0 0xc821eb3860] } +&{glDrawElementsInstancedBaseVertex QOpenGLFunctions_4_2_Core::glDrawElementsInstancedBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821eb39c0 0xc821eb3a40 0xc821eb3ac0 0xc821eb3b40 0xc821eb3be0 0xc821eb3c60] } +&{glDrawElementsInstancedBaseVertexBaseInstance QOpenGLFunctions_4_2_Core::glDrawElementsInstancedBaseVertexBaseInstance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc821eb3dc0 0xc821eb3e40 0xc821eb3ec0 0xc821eb3f40 0xc821eb3fe0 0xc822e20080 0xc822e20100] } +&{glDrawRangeElements QOpenGLFunctions_4_2_Core::glDrawRangeElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e20360 0xc822e203e0 0xc822e20480 0xc822e20540 0xc822e20600 0xc822e206a0] } +&{glDrawRangeElementsBaseVertex QOpenGLFunctions_4_2_Core::glDrawRangeElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e208c0 0xc822e20980 0xc822e20a20 0xc822e20ac0 0xc822e20b60 0xc822e20c00 0xc822e20ca0] } +&{glDrawTransformFeedback QOpenGLFunctions_4_2_Core::glDrawTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e20ec0 0xc822e20f60] } +&{glDrawTransformFeedbackInstanced QOpenGLFunctions_4_2_Core::glDrawTransformFeedbackInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e211c0 0xc822e21240 0xc822e212e0] } +&{glDrawTransformFeedbackStream QOpenGLFunctions_4_2_Core::glDrawTransformFeedbackStream commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e21520 0xc822e215c0 0xc822e21660] } +&{glDrawTransformFeedbackStreamInstanced QOpenGLFunctions_4_2_Core::glDrawTransformFeedbackStreamInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e21800 0xc822e218c0 0xc822e21960 0xc822e219e0] } +&{glEnable QOpenGLFunctions_4_2_Core::glEnable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e21bc0] } +&{glEnableVertexAttribArray QOpenGLFunctions_4_2_Core::glEnableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e21e00] } +&{glEnablei QOpenGLFunctions_4_2_Core::glEnablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e21fa0 0xc822f5a040] } +&{glEndConditionalRender QOpenGLFunctions_4_2_Core::glEndConditionalRender commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [] } +&{glEndQuery QOpenGLFunctions_4_2_Core::glEndQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f5a340] } +&{glEndQueryIndexed QOpenGLFunctions_4_2_Core::glEndQueryIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f5a5a0 0xc822f5a620] } +&{glEndTransformFeedback QOpenGLFunctions_4_2_Core::glEndTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [] } +&{glFenceSync QOpenGLFunctions_4_2_Core::glFenceSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLsync [0xc822f5a920 0xc822f5aa00] } +&{glFinish QOpenGLFunctions_4_2_Core::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [] } +&{glFlush QOpenGLFunctions_4_2_Core::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [] } +&{glFlushMappedBufferRange QOpenGLFunctions_4_2_Core::glFlushMappedBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f5ad80 0xc822f5ae00 0xc822f5aec0] } +&{glFramebufferRenderbuffer QOpenGLFunctions_4_2_Core::glFramebufferRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f5b100 0xc822f5b1a0 0xc822f5b260 0xc822f5b360] } +&{glFramebufferTexture QOpenGLFunctions_4_2_Core::glFramebufferTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f5b5a0 0xc822f5b640 0xc822f5b6e0 0xc822f5b760] } +&{glFramebufferTexture1D QOpenGLFunctions_4_2_Core::glFramebufferTexture1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f5b9c0 0xc822f5ba40 0xc822f5bb00 0xc822f5bb80 0xc822f5bc60] } +&{glFramebufferTexture2D QOpenGLFunctions_4_2_Core::glFramebufferTexture2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f5be80 0xc822f5bf40 0xc822f5bfc0 0xc8230a6060 0xc8230a6100] } +&{glFramebufferTexture3D QOpenGLFunctions_4_2_Core::glFramebufferTexture3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc8230a6340 0xc8230a6420 0xc8230a64c0 0xc8230a6540 0xc8230a6640 0xc8230a66c0] } +&{glFramebufferTextureLayer QOpenGLFunctions_4_2_Core::glFramebufferTextureLayer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc8230a6920 0xc8230a69a0 0xc8230a6a80 0xc8230a6b00 0xc8230a6bc0] } +&{glFrontFace QOpenGLFunctions_4_2_Core::glFrontFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc8230a6dc0] } +&{glGenBuffers QOpenGLFunctions_4_2_Core::glGenBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc8230a6f80 0xc8230a7060] } +&{glGenFramebuffers QOpenGLFunctions_4_2_Core::glGenFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc8230a7280 0xc8230a7340] } +&{glGenProgramPipelines QOpenGLFunctions_4_2_Core::glGenProgramPipelines commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc8230a7560 0xc8230a7600] } +&{glGenQueries QOpenGLFunctions_4_2_Core::glGenQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc8230a77e0 0xc8230a7880] } +&{glGenRenderbuffers QOpenGLFunctions_4_2_Core::glGenRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc8230a7aa0 0xc8230a7b20] } +&{glGenSamplers QOpenGLFunctions_4_2_Core::glGenSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc8230a7d00 0xc8230a7da0] } +&{glGenTextures QOpenGLFunctions_4_2_Core::glGenTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc8230a7f60 0xc8230f61e0] } +&{glGenTransformFeedbacks QOpenGLFunctions_4_2_Core::glGenTransformFeedbacks commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc8230f7cc0 0xc8230e8320] } +&{glGenVertexArrays QOpenGLFunctions_4_2_Core::glGenVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc8230e9b20 0xc823096040] } +&{glGenerateMipmap QOpenGLFunctions_4_2_Core::glGenerateMipmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc823096200] } +&{glGetActiveAtomicCounterBufferiv QOpenGLFunctions_4_2_Core::glGetActiveAtomicCounterBufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc823096400 0xc8230964c0 0xc823096560 0xc823096600] } +&{glGetActiveAttrib QOpenGLFunctions_4_2_Core::glGetActiveAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc823096840 0xc8230968e0 0xc823096960 0xc823096a40 0xc823096b20 0xc823096ba0 0xc823096c40] } +&{glGetActiveSubroutineName QOpenGLFunctions_4_2_Core::glGetActiveSubroutineName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc823096ea0 0xc823096f60 0xc823096fe0 0xc823097080 0xc823097160 0xc8230971e0] } +&{glGetActiveSubroutineUniformName QOpenGLFunctions_4_2_Core::glGetActiveSubroutineUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc823097440 0xc8230974e0 0xc8230975a0 0xc823097620 0xc823097720 0xc8230977e0] } +&{glGetActiveSubroutineUniformiv QOpenGLFunctions_4_2_Core::glGetActiveSubroutineUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc823097a00 0xc823097aa0 0xc823097b60 0xc823097c20 0xc823097cc0] } +&{glGetActiveUniform QOpenGLFunctions_4_2_Core::glGetActiveUniform commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc823097f00 0xc823097fe0 0xc823084060 0xc8230840e0 0xc8230841a0 0xc823084280 0xc823084320] } +&{glGetActiveUniformBlockName QOpenGLFunctions_4_2_Core::glGetActiveUniformBlockName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc823084560 0xc823084640 0xc823084700 0xc8230847c0 0xc823084880] } +&{glGetActiveUniformBlockiv QOpenGLFunctions_4_2_Core::glGetActiveUniformBlockiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc823084aa0 0xc823084ba0 0xc823084ca0 0xc823084d20] } +&{glGetActiveUniformName QOpenGLFunctions_4_2_Core::glGetActiveUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc823084f80 0xc823085020 0xc8230850e0 0xc8230851a0 0xc823085240] } +&{glGetActiveUniformsiv QOpenGLFunctions_4_2_Core::glGetActiveUniformsiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc8230854a0 0xc823085520 0xc823085600 0xc8230856a0 0xc823085760] } +&{glGetAttachedShaders QOpenGLFunctions_4_2_Core::glGetAttachedShaders commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc8230859c0 0xc823085a40 0xc823085b00 0xc823085bc0] } +&{glGetAttribLocation QOpenGLFunctions_4_2_Core::glGetAttribLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLint [0xc823085e00 0xc823085e80] } +&{glGetBooleani_v QOpenGLFunctions_4_2_Core::glGetBooleani_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc823072060 0xc823072100 0xc8230721c0] } +&{glGetBooleanv QOpenGLFunctions_4_2_Core::glGetBooleanv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc823072380 0xc823072420] } +&{glGetBufferParameteri64v QOpenGLFunctions_4_2_Core::glGetBufferParameteri64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc823072660 0xc823072700 0xc823072780] } +&{glGetBufferParameteriv QOpenGLFunctions_4_2_Core::glGetBufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc8230729e0 0xc823072a60 0xc823072b40] } +&{glGetBufferPointerv QOpenGLFunctions_4_2_Core::glGetBufferPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc823072d80 0xc823072e20 0xc823072ea0] } +&{glGetBufferSubData QOpenGLFunctions_4_2_Core::glGetBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc823073100 0xc8230731a0 0xc823073240 0xc8230732e0] } +&{glGetCompressedTexImage QOpenGLFunctions_4_2_Core::glGetCompressedTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc823073500 0xc8230735a0 0xc823073620] } +&{glGetDoublei_v QOpenGLFunctions_4_2_Core::glGetDoublei_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc823073820 0xc8230738c0 0xc823073960] } +&{glGetDoublev QOpenGLFunctions_4_2_Core::glGetDoublev commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc823073b00 0xc823073bc0] } +&{glGetError QOpenGLFunctions_4_2_Core::glGetError commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLenum [] } +&{glGetFloati_v QOpenGLFunctions_4_2_Core::glGetFloati_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc823073e20 0xc823073ee0 0xc823073f60] } +&{glGetFloatv QOpenGLFunctions_4_2_Core::glGetFloatv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82305e140 0xc82305e200] } +&{glGetFragDataIndex QOpenGLFunctions_4_2_Core::glGetFragDataIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLint [0xc82305e440 0xc82305e4c0] } +&{glGetFragDataLocation QOpenGLFunctions_4_2_Core::glGetFragDataLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLint [0xc82305e700 0xc82305e7c0] } +&{glGetFramebufferAttachmentParameteriv QOpenGLFunctions_4_2_Core::glGetFramebufferAttachmentParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82305e960 0xc82305e9e0 0xc82305eac0 0xc82305eb60] } +&{glGetInteger64i_v QOpenGLFunctions_4_2_Core::glGetInteger64i_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82305ed60 0xc82305ee40 0xc82305eee0] } +&{glGetInteger64v QOpenGLFunctions_4_2_Core::glGetInteger64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82305f0a0 0xc82305f120] } +&{glGetIntegeri_v QOpenGLFunctions_4_2_Core::glGetIntegeri_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82305f300 0xc82305f3a0 0xc82305f420] } +&{glGetIntegerv QOpenGLFunctions_4_2_Core::glGetIntegerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82305f600 0xc82305f6c0] } +&{glGetInternalformativ QOpenGLFunctions_4_2_Core::glGetInternalformativ commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82305f8e0 0xc82305f960 0xc82305fa40 0xc82305fae0 0xc82305fba0] } +&{glGetMultisamplefv QOpenGLFunctions_4_2_Core::glGetMultisamplefv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82305fde0 0xc82305fe60 0xc82305fee0] } +&{glGetPointerv QOpenGLFunctions_4_2_Core::glGetPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82304a0c0 0xc82304a160] } +&{glGetProgramBinary QOpenGLFunctions_4_2_Core::glGetProgramBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82304a380 0xc82304a420 0xc82304a4c0 0xc82304a580 0xc82304a640] } +&{glGetProgramInfoLog QOpenGLFunctions_4_2_Core::glGetProgramInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82304a860 0xc82304a900 0xc82304a9c0 0xc82304aa60] } +&{glGetProgramPipelineInfoLog QOpenGLFunctions_4_2_Core::glGetProgramPipelineInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82304ac80 0xc82304ad40 0xc82304adc0 0xc82304ae60] } +&{glGetProgramPipelineiv QOpenGLFunctions_4_2_Core::glGetProgramPipelineiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82304b060 0xc82304b120 0xc82304b1a0] } +&{glGetProgramStageiv QOpenGLFunctions_4_2_Core::glGetProgramStageiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82304b400 0xc82304b4a0 0xc82304b520 0xc82304b5e0] } +&{glGetProgramiv QOpenGLFunctions_4_2_Core::glGetProgramiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82304b7a0 0xc82304b820 0xc82304b8e0] } +&{glGetQueryIndexediv QOpenGLFunctions_4_2_Core::glGetQueryIndexediv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82304bb00 0xc82304bbc0 0xc82304bc40 0xc82304bd00] } +&{glGetQueryObjecti64v QOpenGLFunctions_4_2_Core::glGetQueryObjecti64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82304bf20 0xc82304bfe0 0xc82303c080] } +&{glGetQueryObjectiv QOpenGLFunctions_4_2_Core::glGetQueryObjectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82303c280 0xc82303c340 0xc82303c3e0] } +&{glGetQueryObjectui64v QOpenGLFunctions_4_2_Core::glGetQueryObjectui64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82303c600 0xc82303c6a0 0xc82303c740] } +&{glGetQueryObjectuiv QOpenGLFunctions_4_2_Core::glGetQueryObjectuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82303c960 0xc82303ca00 0xc82303cac0] } +&{glGetQueryiv QOpenGLFunctions_4_2_Core::glGetQueryiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82303cc80 0xc82303cd00 0xc82303cda0] } +&{glGetRenderbufferParameteriv QOpenGLFunctions_4_2_Core::glGetRenderbufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82303cfe0 0xc82303d080 0xc82303d100] } +&{glGetSamplerParameterIiv QOpenGLFunctions_4_2_Core::glGetSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82303d360 0xc82303d400 0xc82303d480] } +&{glGetSamplerParameterIuiv QOpenGLFunctions_4_2_Core::glGetSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82303d6c0 0xc82303d760 0xc82303d800] } +&{glGetSamplerParameterfv QOpenGLFunctions_4_2_Core::glGetSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82303da40 0xc82303dae0 0xc82303db80] } +&{glGetSamplerParameteriv QOpenGLFunctions_4_2_Core::glGetSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82303dda0 0xc82303de40 0xc82303dee0] } +&{glGetShaderInfoLog QOpenGLFunctions_4_2_Core::glGetShaderInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82302c0e0 0xc82302c1a0 0xc82302c240 0xc82302c2e0] } +&{glGetShaderPrecisionFormat QOpenGLFunctions_4_2_Core::glGetShaderPrecisionFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82302c500 0xc82302c5e0 0xc82302c680 0xc82302c720] } +&{glGetShaderSource QOpenGLFunctions_4_2_Core::glGetShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82302c940 0xc82302ca00 0xc82302caa0 0xc82302cb20] } +&{glGetShaderiv QOpenGLFunctions_4_2_Core::glGetShaderiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82302cce0 0xc82302cd80 0xc82302ce20] } +&{glGetString QOpenGLFunctions_4_2_Core::glGetString commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false const GLubyte * [0xc82302cfc0] } +&{glGetStringi QOpenGLFunctions_4_2_Core::glGetStringi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false const GLubyte * [0xc82302d1a0 0xc82302d240] } +&{glGetSubroutineIndex QOpenGLFunctions_4_2_Core::glGetSubroutineIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLuint [0xc82302d460 0xc82302d500 0xc82302d5a0] } +&{glGetSubroutineUniformLocation QOpenGLFunctions_4_2_Core::glGetSubroutineUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLint [0xc82302d7c0 0xc82302d880 0xc82302d920] } +&{glGetSynciv QOpenGLFunctions_4_2_Core::glGetSynciv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82302dac0 0xc82302db60 0xc82302dc00 0xc82302dcc0 0xc82302dd80] } +&{glGetTexImage QOpenGLFunctions_4_2_Core::glGetTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82302df20 0xc82302dfc0 0xc82301e080 0xc82301e140 0xc82301e220] } +&{glGetTexLevelParameterfv QOpenGLFunctions_4_2_Core::glGetTexLevelParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82301e440 0xc82301e4e0 0xc82301e5a0 0xc82301e640] } +&{glGetTexLevelParameteriv QOpenGLFunctions_4_2_Core::glGetTexLevelParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82301e880 0xc82301e920 0xc82301e9c0 0xc82301ea40] } +&{glGetTexParameterIiv QOpenGLFunctions_4_2_Core::glGetTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82301eca0 0xc82301ed40 0xc82301ede0] } +&{glGetTexParameterIuiv QOpenGLFunctions_4_2_Core::glGetTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82301f040 0xc82301f0e0 0xc82301f160] } +&{glGetTexParameterfv QOpenGLFunctions_4_2_Core::glGetTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82301f3a0 0xc82301f440 0xc82301f500] } +&{glGetTexParameteriv QOpenGLFunctions_4_2_Core::glGetTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82301f740 0xc82301f7e0 0xc82301f880] } +&{glGetTransformFeedbackVarying QOpenGLFunctions_4_2_Core::glGetTransformFeedbackVarying commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82301fac0 0xc82301fb60 0xc82301fc00 0xc82301fca0 0xc82301fd40 0xc82301fe20 0xc82301fec0] } +&{glGetUniformBlockIndex QOpenGLFunctions_4_2_Core::glGetUniformBlockIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLuint [0xc82300e100 0xc82300e1a0] } +&{glGetUniformIndices QOpenGLFunctions_4_2_Core::glGetUniformIndices commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82300e400 0xc82300e4a0 0xc82300e540 0xc82300e660] } +&{glGetUniformLocation QOpenGLFunctions_4_2_Core::glGetUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLint [0xc82300e880 0xc82300e960] } +&{glGetUniformSubroutineuiv QOpenGLFunctions_4_2_Core::glGetUniformSubroutineuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82300eb80 0xc82300ec60 0xc82300ed00] } +&{glGetUniformdv QOpenGLFunctions_4_2_Core::glGetUniformdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82300eea0 0xc82300ef40 0xc82300f000] } +&{glGetUniformfv QOpenGLFunctions_4_2_Core::glGetUniformfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82300f1c0 0xc82300f240 0xc82300f2e0] } +&{glGetUniformiv QOpenGLFunctions_4_2_Core::glGetUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82300f4e0 0xc82300f560 0xc82300f600] } +&{glGetUniformuiv QOpenGLFunctions_4_2_Core::glGetUniformuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82300f7e0 0xc82300f880 0xc82300f900] } +&{glGetVertexAttribIiv QOpenGLFunctions_4_2_Core::glGetVertexAttribIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82300fb60 0xc82300fc00 0xc82300fc80] } +&{glGetVertexAttribIuiv QOpenGLFunctions_4_2_Core::glGetVertexAttribIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc82300fee0 0xc82300ff80 0xc822ffc000] } +&{glGetVertexAttribLdv QOpenGLFunctions_4_2_Core::glGetVertexAttribLdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ffc240 0xc822ffc300 0xc822ffc3a0] } +&{glGetVertexAttribPointerv QOpenGLFunctions_4_2_Core::glGetVertexAttribPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ffc5e0 0xc822ffc680 0xc822ffc700] } +&{glGetVertexAttribdv QOpenGLFunctions_4_2_Core::glGetVertexAttribdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ffc980 0xc822ffca00 0xc822ffcae0] } +&{glGetVertexAttribfv QOpenGLFunctions_4_2_Core::glGetVertexAttribfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ffcce0 0xc822ffcdc0 0xc822ffce60] } +&{glGetVertexAttribiv QOpenGLFunctions_4_2_Core::glGetVertexAttribiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ffd0c0 0xc822ffd160 0xc822ffd200] } +&{glHint QOpenGLFunctions_4_2_Core::glHint commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ffd3e0 0xc822ffd480] } +&{glIndexub QOpenGLFunctions_4_2_Core::glIndexub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ffd680] } +&{glIndexubv QOpenGLFunctions_4_2_Core::glIndexubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ffd840] } +&{glIsBuffer QOpenGLFunctions_4_2_Core::glIsBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLboolean [0xc822ffda20] } +&{glIsEnabled QOpenGLFunctions_4_2_Core::glIsEnabled commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLboolean [0xc822ffdbc0] } +&{glIsEnabledi QOpenGLFunctions_4_2_Core::glIsEnabledi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLboolean [0xc822ffddc0 0xc822ffde60] } +&{glIsFramebuffer QOpenGLFunctions_4_2_Core::glIsFramebuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLboolean [0xc822fe8020] } +&{glIsProgram QOpenGLFunctions_4_2_Core::glIsProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLboolean [0xc822fe81e0] } +&{glIsProgramPipeline QOpenGLFunctions_4_2_Core::glIsProgramPipeline commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLboolean [0xc822fe8400] } +&{glIsQuery QOpenGLFunctions_4_2_Core::glIsQuery commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLboolean [0xc822fe8600] } +&{glIsRenderbuffer QOpenGLFunctions_4_2_Core::glIsRenderbuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLboolean [0xc822fe87e0] } +&{glIsSampler QOpenGLFunctions_4_2_Core::glIsSampler commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLboolean [0xc822fe89c0] } +&{glIsShader QOpenGLFunctions_4_2_Core::glIsShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLboolean [0xc822fe8b80] } +&{glIsSync QOpenGLFunctions_4_2_Core::glIsSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLboolean [0xc822fe8d60] } +&{glIsTexture QOpenGLFunctions_4_2_Core::glIsTexture commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLboolean [0xc822fe8f20] } +&{glIsTransformFeedback QOpenGLFunctions_4_2_Core::glIsTransformFeedback commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLboolean [0xc822fe9140] } +&{glIsVertexArray QOpenGLFunctions_4_2_Core::glIsVertexArray commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLboolean [0xc822fe92e0] } +&{glLineWidth QOpenGLFunctions_4_2_Core::glLineWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fe9480] } +&{glLinkProgram QOpenGLFunctions_4_2_Core::glLinkProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fe9640] } +&{glLogicOp QOpenGLFunctions_4_2_Core::glLogicOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fe9860] } +&{glMapBuffer QOpenGLFunctions_4_2_Core::glMapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLvoid * [0xc822fe9a20 0xc822fe9ac0] } +&{glMapBufferRange QOpenGLFunctions_4_2_Core::glMapBufferRange commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLvoid * [0xc822fe9c60 0xc822fe9d40 0xc822fe9de0 0xc822fe9e60] } +&{glMemoryBarrier QOpenGLFunctions_4_2_Core::glMemoryBarrier commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fd0080] } +&{glMinSampleShading QOpenGLFunctions_4_2_Core::glMinSampleShading commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fd02c0] } +&{glMultiDrawArrays QOpenGLFunctions_4_2_Core::glMultiDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fd0500 0xc822fd05a0 0xc822fd0620 0xc822fd06e0] } +&{glMultiDrawElements QOpenGLFunctions_4_2_Core::glMultiDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fd0920 0xc822fd09c0 0xc822fd0a40 0xc822fd0b00 0xc822fd0c40] } +&{glMultiDrawElementsBaseVertex QOpenGLFunctions_4_2_Core::glMultiDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fd0e40 0xc822fd0f00 0xc822fd0f80 0xc822fd1080 0xc822fd1180 0xc822fd1260] } +&{glMultiTexCoordP1ui QOpenGLFunctions_4_2_Core::glMultiTexCoordP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fd1460 0xc822fd1520 0xc822fd15c0] } +&{glMultiTexCoordP1uiv QOpenGLFunctions_4_2_Core::glMultiTexCoordP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fd1800 0xc822fd18a0 0xc822fd1920] } +&{glMultiTexCoordP2ui QOpenGLFunctions_4_2_Core::glMultiTexCoordP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fd1b60 0xc822fd1c40 0xc822fd1cc0] } +&{glMultiTexCoordP2uiv QOpenGLFunctions_4_2_Core::glMultiTexCoordP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fd1ee0 0xc822fd1fc0 0xc822fc0060] } +&{glMultiTexCoordP3ui QOpenGLFunctions_4_2_Core::glMultiTexCoordP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fc02e0 0xc822fc0380 0xc822fc0400] } +&{glMultiTexCoordP3uiv QOpenGLFunctions_4_2_Core::glMultiTexCoordP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fc0660 0xc822fc0700 0xc822fc07c0] } +&{glMultiTexCoordP4ui QOpenGLFunctions_4_2_Core::glMultiTexCoordP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fc0a20 0xc822fc0ac0 0xc822fc0b60] } +&{glMultiTexCoordP4uiv QOpenGLFunctions_4_2_Core::glMultiTexCoordP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fc0dc0 0xc822fc0e40 0xc822fc0ee0] } +&{glNormalP3ui QOpenGLFunctions_4_2_Core::glNormalP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fc10c0 0xc822fc1140] } +&{glNormalP3uiv QOpenGLFunctions_4_2_Core::glNormalP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fc1300 0xc822fc13e0] } +&{glPatchParameterfv QOpenGLFunctions_4_2_Core::glPatchParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fc1600 0xc822fc1680] } +&{glPatchParameteri QOpenGLFunctions_4_2_Core::glPatchParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fc18c0 0xc822fc1980] } +&{glPauseTransformFeedback QOpenGLFunctions_4_2_Core::glPauseTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [] } +&{glPixelStoref QOpenGLFunctions_4_2_Core::glPixelStoref commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fc1ca0 0xc822fc1d20] } +&{glPixelStorei QOpenGLFunctions_4_2_Core::glPixelStorei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fc1f00 0xc822fc1f80] } +&{glPointParameterf QOpenGLFunctions_4_2_Core::glPointParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fb21e0 0xc822fb2260] } +&{glPointParameterfv QOpenGLFunctions_4_2_Core::glPointParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fb24a0 0xc822fb2540] } +&{glPointParameteri QOpenGLFunctions_4_2_Core::glPointParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fb27a0 0xc822fb2820] } +&{glPointParameteriv QOpenGLFunctions_4_2_Core::glPointParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fb2a60 0xc822fb2b00] } +&{glPointSize QOpenGLFunctions_4_2_Core::glPointSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fb2d00] } +&{glPolygonMode QOpenGLFunctions_4_2_Core::glPolygonMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fb2ea0 0xc822fb2f60] } +&{glPolygonOffset QOpenGLFunctions_4_2_Core::glPolygonOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fb3100 0xc822fb31c0] } +&{glPrimitiveRestartIndex QOpenGLFunctions_4_2_Core::glPrimitiveRestartIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fb33e0] } +&{glProgramBinary QOpenGLFunctions_4_2_Core::glProgramBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fb35c0 0xc822fb3640 0xc822fb36e0 0xc822fb37a0] } +&{glProgramParameteri QOpenGLFunctions_4_2_Core::glProgramParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fb39c0 0xc822fb3a60 0xc822fb3b20] } +&{glProgramUniform1d QOpenGLFunctions_4_2_Core::glProgramUniform1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822fb3d80 0xc822fb3e20 0xc822fb3ea0] } +&{glProgramUniform1dv QOpenGLFunctions_4_2_Core::glProgramUniform1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f9e100 0xc822f9e180 0xc822f9e260 0xc822f9e300] } +&{glProgramUniform1f QOpenGLFunctions_4_2_Core::glProgramUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f9e560 0xc822f9e5e0 0xc822f9e680] } +&{glProgramUniform1fv QOpenGLFunctions_4_2_Core::glProgramUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f9e8c0 0xc822f9e9a0 0xc822f9ea40 0xc822f9eac0] } +&{glProgramUniform1i QOpenGLFunctions_4_2_Core::glProgramUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f9ed20 0xc822f9eda0 0xc822f9ee80] } +&{glProgramUniform1iv QOpenGLFunctions_4_2_Core::glProgramUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f9f0c0 0xc822f9f180 0xc822f9f220 0xc822f9f2a0] } +&{glProgramUniform1ui QOpenGLFunctions_4_2_Core::glProgramUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f9f4e0 0xc822f9f5c0 0xc822f9f660] } +&{glProgramUniform1uiv QOpenGLFunctions_4_2_Core::glProgramUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f9f880 0xc822f9f960 0xc822f9f9e0 0xc822f9fa80] } +&{glProgramUniform2d QOpenGLFunctions_4_2_Core::glProgramUniform2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f9fce0 0xc822f9fd60 0xc822f9fe40 0xc822f9fee0] } +&{glProgramUniform2dv QOpenGLFunctions_4_2_Core::glProgramUniform2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f90140 0xc822f901e0 0xc822f90280 0xc822f90300] } +&{glProgramUniform2f QOpenGLFunctions_4_2_Core::glProgramUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f90560 0xc822f90600 0xc822f906a0 0xc822f90720] } +&{glProgramUniform2fv QOpenGLFunctions_4_2_Core::glProgramUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f90980 0xc822f90a20 0xc822f90ae0 0xc822f90b60] } +&{glProgramUniform2i QOpenGLFunctions_4_2_Core::glProgramUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f90da0 0xc822f90e40 0xc822f90f20 0xc822f90fa0] } +&{glProgramUniform2iv QOpenGLFunctions_4_2_Core::glProgramUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f911e0 0xc822f91280 0xc822f91360 0xc822f913e0] } +&{glProgramUniform2ui QOpenGLFunctions_4_2_Core::glProgramUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f91620 0xc822f916c0 0xc822f917a0 0xc822f91820] } +&{glProgramUniform2uiv QOpenGLFunctions_4_2_Core::glProgramUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f91a60 0xc822f91b00 0xc822f91be0 0xc822f91c60] } +&{glProgramUniform3d QOpenGLFunctions_4_2_Core::glProgramUniform3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f91ec0 0xc822f91f40 0xc822f7e000 0xc822f7e080 0xc822f7e180] } +&{glProgramUniform3dv QOpenGLFunctions_4_2_Core::glProgramUniform3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f7e380 0xc822f7e440 0xc822f7e4e0 0xc822f7e580] } +&{glProgramUniform3f QOpenGLFunctions_4_2_Core::glProgramUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f7e7a0 0xc822f7e840 0xc822f7e8e0 0xc822f7e980 0xc822f7ea40] } +&{glProgramUniform3fv QOpenGLFunctions_4_2_Core::glProgramUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f7ec80 0xc822f7ed40 0xc822f7ede0 0xc822f7ee80] } +&{glProgramUniform3i QOpenGLFunctions_4_2_Core::glProgramUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f7f0c0 0xc822f7f140 0xc822f7f200 0xc822f7f2c0 0xc822f7f360] } +&{glProgramUniform3iv QOpenGLFunctions_4_2_Core::glProgramUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f7f5a0 0xc822f7f620 0xc822f7f700 0xc822f7f780] } +&{glProgramUniform3ui QOpenGLFunctions_4_2_Core::glProgramUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f7f9c0 0xc822f7fa80 0xc822f7fb00 0xc822f7fbc0 0xc822f7fc60] } +&{glProgramUniform3uiv QOpenGLFunctions_4_2_Core::glProgramUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f7fea0 0xc822f7ff60 0xc822f7ffe0 0xc822f6e0a0] } +&{glProgramUniform4d QOpenGLFunctions_4_2_Core::glProgramUniform4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f6e2c0 0xc822f6e360 0xc822f6e420 0xc822f6e4a0 0xc822f6e580 0xc822f6e600] } +&{glProgramUniform4dv QOpenGLFunctions_4_2_Core::glProgramUniform4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f6e840 0xc822f6e8e0 0xc822f6e980 0xc822f6ea00] } +&{glProgramUniform4f QOpenGLFunctions_4_2_Core::glProgramUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f6ec40 0xc822f6ed00 0xc822f6ed80 0xc822f6ee00 0xc822f6eee0 0xc822f6ef80] } +&{glProgramUniform4fv QOpenGLFunctions_4_2_Core::glProgramUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f6f1e0 0xc822f6f280 0xc822f6f320 0xc822f6f3a0] } +&{glProgramUniform4i QOpenGLFunctions_4_2_Core::glProgramUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f6f5e0 0xc822f6f680 0xc822f6f720 0xc822f6f7e0 0xc822f6f8a0 0xc822f6f940] } +&{glProgramUniform4iv QOpenGLFunctions_4_2_Core::glProgramUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f6fb60 0xc822f6fc20 0xc822f6fcc0 0xc822f6fd80] } +&{glProgramUniform4ui QOpenGLFunctions_4_2_Core::glProgramUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f6ffc0 0xc822f42080 0xc822f42120 0xc822f421c0 0xc822f42260 0xc822f42320] } +&{glProgramUniform4uiv QOpenGLFunctions_4_2_Core::glProgramUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f42520 0xc822f425e0 0xc822f42660 0xc822f42720] } +&{glProgramUniformMatrix2dv QOpenGLFunctions_4_2_Core::glProgramUniformMatrix2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f42920 0xc822f429e0 0xc822f42a60 0xc822f42b20 0xc822f42bc0] } +&{glProgramUniformMatrix2fv QOpenGLFunctions_4_2_Core::glProgramUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f42e00 0xc822f42e80 0xc822f42f40 0xc822f42fc0 0xc822f43060] } +&{glProgramUniformMatrix2x3dv QOpenGLFunctions_4_2_Core::glProgramUniformMatrix2x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f432c0 0xc822f43380 0xc822f43400 0xc822f434c0 0xc822f43560] } +&{glProgramUniformMatrix2x3fv QOpenGLFunctions_4_2_Core::glProgramUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f437c0 0xc822f43840 0xc822f43900 0xc822f43980 0xc822f43a60] } +&{glProgramUniformMatrix2x4dv QOpenGLFunctions_4_2_Core::glProgramUniformMatrix2x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f43c80 0xc822f43d40 0xc822f43dc0 0xc822f43e80 0xc822f43f20] } +&{glProgramUniformMatrix2x4fv QOpenGLFunctions_4_2_Core::glProgramUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f30180 0xc822f30220 0xc822f302c0 0xc822f30340 0xc822f30440] } +&{glProgramUniformMatrix3dv QOpenGLFunctions_4_2_Core::glProgramUniformMatrix3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f30680 0xc822f30720 0xc822f307a0 0xc822f30840 0xc822f30940] } +&{glProgramUniformMatrix3fv QOpenGLFunctions_4_2_Core::glProgramUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f30b80 0xc822f30c40 0xc822f30cc0 0xc822f30d60 0xc822f30e60] } +&{glProgramUniformMatrix3x2dv QOpenGLFunctions_4_2_Core::glProgramUniformMatrix3x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f310a0 0xc822f31140 0xc822f311e0 0xc822f31260 0xc822f31360] } +&{glProgramUniformMatrix3x2fv QOpenGLFunctions_4_2_Core::glProgramUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f315c0 0xc822f31660 0xc822f31700 0xc822f31780 0xc822f31880] } +&{glProgramUniformMatrix3x4dv QOpenGLFunctions_4_2_Core::glProgramUniformMatrix3x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f31ac0 0xc822f31b60 0xc822f31be0 0xc822f31ca0 0xc822f31d80] } +&{glProgramUniformMatrix3x4fv QOpenGLFunctions_4_2_Core::glProgramUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f31fa0 0xc822f24040 0xc822f240e0 0xc822f24180 0xc822f24220] } +&{glProgramUniformMatrix4dv QOpenGLFunctions_4_2_Core::glProgramUniformMatrix4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f244a0 0xc822f24520 0xc822f24600 0xc822f246a0 0xc822f24760] } +&{glProgramUniformMatrix4fv QOpenGLFunctions_4_2_Core::glProgramUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f249c0 0xc822f24a40 0xc822f24ae0 0xc822f24bc0 0xc822f24c80] } +&{glProgramUniformMatrix4x2dv QOpenGLFunctions_4_2_Core::glProgramUniformMatrix4x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f24ee0 0xc822f24f60 0xc822f25000 0xc822f250a0 0xc822f25180] } +&{glProgramUniformMatrix4x2fv QOpenGLFunctions_4_2_Core::glProgramUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f253c0 0xc822f25440 0xc822f254e0 0xc822f255c0 0xc822f25660] } +&{glProgramUniformMatrix4x3dv QOpenGLFunctions_4_2_Core::glProgramUniformMatrix4x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f258e0 0xc822f25980 0xc822f25a00 0xc822f25ae0 0xc822f25ba0] } +&{glProgramUniformMatrix4x3fv QOpenGLFunctions_4_2_Core::glProgramUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f25e00 0xc822f25e80 0xc822f25f40 0xc822f25fe0 0xc822f100c0] } +&{glProvokingVertex QOpenGLFunctions_4_2_Core::glProvokingVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f10300] } +&{glQueryCounter QOpenGLFunctions_4_2_Core::glQueryCounter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f104a0 0xc822f10560] } +&{glReadBuffer QOpenGLFunctions_4_2_Core::glReadBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f10740] } +&{glReadPixels QOpenGLFunctions_4_2_Core::glReadPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f10920 0xc822f109c0 0xc822f10a40 0xc822f10b20 0xc822f10be0 0xc822f10c80 0xc822f10d00] } +&{glReleaseShaderCompiler QOpenGLFunctions_4_2_Core::glReleaseShaderCompiler commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [] } +&{glRenderbufferStorage QOpenGLFunctions_4_2_Core::glRenderbufferStorage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f11060 0xc822f11140 0xc822f111e0 0xc822f11260] } +&{glRenderbufferStorageMultisample QOpenGLFunctions_4_2_Core::glRenderbufferStorageMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f114a0 0xc822f11560 0xc822f11600 0xc822f116a0 0xc822f11780] } +&{glResumeTransformFeedback QOpenGLFunctions_4_2_Core::glResumeTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [] } +&{glSampleCoverage QOpenGLFunctions_4_2_Core::glSampleCoverage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f11a80 0xc822f11b20] } +&{glSampleMaski QOpenGLFunctions_4_2_Core::glSampleMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f11cc0 0xc822f11d80] } +&{glSamplerParameterIiv QOpenGLFunctions_4_2_Core::glSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f11fc0 0xc822f02040 0xc822f02120] } +&{glSamplerParameterIuiv QOpenGLFunctions_4_2_Core::glSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f02340 0xc822f02420 0xc822f024c0] } +&{glSamplerParameterf QOpenGLFunctions_4_2_Core::glSamplerParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f02700 0xc822f02780 0xc822f02820] } +&{glSamplerParameterfv QOpenGLFunctions_4_2_Core::glSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f02a60 0xc822f02b40 0xc822f02be0] } +&{glSamplerParameteri QOpenGLFunctions_4_2_Core::glSamplerParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f02e40 0xc822f02ee0 0xc822f02f60] } +&{glSamplerParameteriv QOpenGLFunctions_4_2_Core::glSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f031c0 0xc822f03240 0xc822f03320] } +&{glScissor QOpenGLFunctions_4_2_Core::glScissor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f034c0 0xc822f03560 0xc822f03620 0xc822f036c0] } +&{glScissorArrayv QOpenGLFunctions_4_2_Core::glScissorArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f03880 0xc822f03900 0xc822f039e0] } +&{glScissorIndexed QOpenGLFunctions_4_2_Core::glScissorIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822f03ba0 0xc822f03c20 0xc822f03d00 0xc822f03da0 0xc822f03e80] } +&{glScissorIndexedv QOpenGLFunctions_4_2_Core::glScissorIndexedv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ef2080 0xc822ef2140] } +&{glSecondaryColorP3ui QOpenGLFunctions_4_2_Core::glSecondaryColorP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ef2380 0xc822ef2400] } +&{glSecondaryColorP3uiv QOpenGLFunctions_4_2_Core::glSecondaryColorP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ef2640 0xc822ef26e0] } +&{glShaderBinary QOpenGLFunctions_4_2_Core::glShaderBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ef28c0 0xc822ef2940 0xc822ef29e0 0xc822ef2aa0 0xc822ef2b80] } +&{glShaderSource QOpenGLFunctions_4_2_Core::glShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ef2d20 0xc822ef2e00 0xc822ef2ec0 0xc822ef2fa0] } +&{glStencilFunc QOpenGLFunctions_4_2_Core::glStencilFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ef31a0 0xc822ef3220 0xc822ef32c0] } +&{glStencilFuncSeparate QOpenGLFunctions_4_2_Core::glStencilFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ef3520 0xc822ef35a0 0xc822ef3680 0xc822ef3720] } +&{glStencilMask QOpenGLFunctions_4_2_Core::glStencilMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ef3920] } +&{glStencilMaskSeparate QOpenGLFunctions_4_2_Core::glStencilMaskSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ef3b40 0xc822ef3c00] } +&{glStencilOp QOpenGLFunctions_4_2_Core::glStencilOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ef3da0 0xc822ef3e80 0xc822ef3f20] } +&{glStencilOpSeparate QOpenGLFunctions_4_2_Core::glStencilOpSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ee4160 0xc822ee41e0 0xc822ee42a0 0xc822ee4340] } +&{glTexBuffer QOpenGLFunctions_4_2_Core::glTexBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ee4500 0xc822ee45a0 0xc822ee4640] } +&{glTexCoordP1ui QOpenGLFunctions_4_2_Core::glTexCoordP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ee4820 0xc822ee48a0] } +&{glTexCoordP1uiv QOpenGLFunctions_4_2_Core::glTexCoordP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ee4a80 0xc822ee4b00] } +&{glTexCoordP2ui QOpenGLFunctions_4_2_Core::glTexCoordP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ee4ce0 0xc822ee4d60] } +&{glTexCoordP2uiv QOpenGLFunctions_4_2_Core::glTexCoordP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ee4f40 0xc822ee4fc0] } +&{glTexCoordP3ui QOpenGLFunctions_4_2_Core::glTexCoordP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ee51a0 0xc822ee5220] } +&{glTexCoordP3uiv QOpenGLFunctions_4_2_Core::glTexCoordP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ee5400 0xc822ee54a0] } +&{glTexCoordP4ui QOpenGLFunctions_4_2_Core::glTexCoordP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ee5660 0xc822ee5720] } +&{glTexCoordP4uiv QOpenGLFunctions_4_2_Core::glTexCoordP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ee58e0 0xc822ee5980] } +&{glTexImage1D QOpenGLFunctions_4_2_Core::glTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ee5b60 0xc822ee5c00 0xc822ee5ca0 0xc822ee5d20 0xc822ee5e20 0xc822ee5ea0 0xc822ee5f60 0xc822ed2000] } +&{glTexImage2D QOpenGLFunctions_4_2_Core::glTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ed21c0 0xc822ed2240 0xc822ed2300 0xc822ed23a0 0xc822ed2460 0xc822ed2520 0xc822ed25c0 0xc822ed2640 0xc822ed2740] } +&{glTexImage2DMultisample QOpenGLFunctions_4_2_Core::glTexImage2DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ed2980 0xc822ed2a20 0xc822ed2aa0 0xc822ed2b60 0xc822ed2c40 0xc822ed2d00] } +&{glTexImage3D QOpenGLFunctions_4_2_Core::glTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ed2f00 0xc822ed2fa0 0xc822ed3040 0xc822ed30c0 0xc822ed31c0 0xc822ed3260 0xc822ed3300 0xc822ed3380 0xc822ed3480 0xc822ed3540] } +&{glTexImage3DMultisample QOpenGLFunctions_4_2_Core::glTexImage3DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ed3780 0xc822ed3820 0xc822ed38a0 0xc822ed3960 0xc822ed3a20 0xc822ed3ae0 0xc822ed3ba0] } +&{glTexParameterIiv QOpenGLFunctions_4_2_Core::glTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ed3e20 0xc822ed3ec0 0xc822ed3f60] } +&{glTexParameterIuiv QOpenGLFunctions_4_2_Core::glTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ec21a0 0xc822ec2240 0xc822ec22e0] } +&{glTexParameterf QOpenGLFunctions_4_2_Core::glTexParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ec24c0 0xc822ec2560 0xc822ec25e0] } +&{glTexParameterfv QOpenGLFunctions_4_2_Core::glTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ec27e0 0xc822ec2880 0xc822ec2900] } +&{glTexParameteri QOpenGLFunctions_4_2_Core::glTexParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ec2ac0 0xc822ec2b80 0xc822ec2c40] } +&{glTexParameteriv QOpenGLFunctions_4_2_Core::glTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ec2dc0 0xc822ec2ea0 0xc822ec2f40] } +&{glTexStorage1D QOpenGLFunctions_4_2_Core::glTexStorage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ec3120 0xc822ec31c0 0xc822ec3260 0xc822ec32e0] } +&{glTexStorage2D QOpenGLFunctions_4_2_Core::glTexStorage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ec34e0 0xc822ec3560 0xc822ec3600 0xc822ec36e0 0xc822ec37a0] } +&{glTexStorage3D QOpenGLFunctions_4_2_Core::glTexStorage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ec3980 0xc822ec3a20 0xc822ec3ac0 0xc822ec3b40 0xc822ec3c40 0xc822ec3ce0] } +&{glTexSubImage1D QOpenGLFunctions_4_2_Core::glTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ec3ea0 0xc822ec3f60 0xc822ec3fe0 0xc822eb4080 0xc822eb4140 0xc822eb41e0 0xc822eb4280] } +&{glTexSubImage2D QOpenGLFunctions_4_2_Core::glTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822eb4460 0xc822eb4500 0xc822eb4580 0xc822eb4620 0xc822eb46e0 0xc822eb47a0 0xc822eb4860 0xc822eb4900 0xc822eb49a0] } +&{glTexSubImage3D QOpenGLFunctions_4_2_Core::glTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822eb4ba0 0xc822eb4c40 0xc822eb4ce0 0xc822eb4d60 0xc822eb4e40 0xc822eb4ee0 0xc822eb4fa0 0xc822eb5040 0xc822eb50e0 0xc822eb5180 0xc822eb5220] } +&{glTransformFeedbackVaryings QOpenGLFunctions_4_2_Core::glTransformFeedbackVaryings commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822eb5460 0xc822eb54e0 0xc822eb55e0 0xc822eb56e0] } +&{glUniform1d QOpenGLFunctions_4_2_Core::glUniform1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822eb58c0 0xc822eb5960] } +&{glUniform1dv QOpenGLFunctions_4_2_Core::glUniform1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822eb5b20 0xc822eb5bc0 0xc822eb5c40] } +&{glUniform1f QOpenGLFunctions_4_2_Core::glUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822eb5e00 0xc822eb5ee0] } +&{glUniform1fv QOpenGLFunctions_4_2_Core::glUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ea20e0 0xc822ea2160 0xc822ea2200] } +&{glUniform1i QOpenGLFunctions_4_2_Core::glUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ea23c0 0xc822ea2480] } +&{glUniform1iv QOpenGLFunctions_4_2_Core::glUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ea2640 0xc822ea26e0 0xc822ea2760] } +&{glUniform1ui QOpenGLFunctions_4_2_Core::glUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ea2940 0xc822ea29e0] } +&{glUniform1uiv QOpenGLFunctions_4_2_Core::glUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ea2ba0 0xc822ea2c60 0xc822ea2ce0] } +&{glUniform2d QOpenGLFunctions_4_2_Core::glUniform2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ea2ee0 0xc822ea2f80 0xc822ea3000] } +&{glUniform2dv QOpenGLFunctions_4_2_Core::glUniform2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ea31e0 0xc822ea3280 0xc822ea3320] } +&{glUniform2f QOpenGLFunctions_4_2_Core::glUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ea34c0 0xc822ea3580 0xc822ea3620] } +&{glUniform2fv QOpenGLFunctions_4_2_Core::glUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ea37e0 0xc822ea3880 0xc822ea3900] } +&{glUniform2i QOpenGLFunctions_4_2_Core::glUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ea3ae0 0xc822ea3b80 0xc822ea3c20] } +&{glUniform2iv QOpenGLFunctions_4_2_Core::glUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822ea3dc0 0xc822ea3e80 0xc822ea3f20] } +&{glUniform2ui QOpenGLFunctions_4_2_Core::glUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e940a0 0xc822e94180 0xc822e94220] } +&{glUniform2uiv QOpenGLFunctions_4_2_Core::glUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e943c0 0xc822e94460 0xc822e94520] } +&{glUniform3d QOpenGLFunctions_4_2_Core::glUniform3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e946e0 0xc822e94760 0xc822e94800 0xc822e948a0] } +&{glUniform3dv QOpenGLFunctions_4_2_Core::glUniform3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e94a80 0xc822e94b00 0xc822e94ba0] } +&{glUniform3f QOpenGLFunctions_4_2_Core::glUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e94d60 0xc822e94e00 0xc822e94ec0 0xc822e94f40] } +&{glUniform3fv QOpenGLFunctions_4_2_Core::glUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e95100 0xc822e951a0 0xc822e95240] } +&{glUniform3i QOpenGLFunctions_4_2_Core::glUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e95400 0xc822e95480 0xc822e95520 0xc822e955c0] } +&{glUniform3iv QOpenGLFunctions_4_2_Core::glUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e95780 0xc822e95820 0xc822e958a0] } +&{glUniform3ui QOpenGLFunctions_4_2_Core::glUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e95a60 0xc822e95b40 0xc822e95be0 0xc822e95c60] } +&{glUniform3uiv QOpenGLFunctions_4_2_Core::glUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e95e20 0xc822e95ee0 0xc822e95f80] } +&{glUniform4d QOpenGLFunctions_4_2_Core::glUniform4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e80100 0xc822e801a0 0xc822e80260 0xc822e80300 0xc822e803a0] } +&{glUniform4dv QOpenGLFunctions_4_2_Core::glUniform4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e80540 0xc822e80620 0xc822e806a0] } +&{glUniform4f QOpenGLFunctions_4_2_Core::glUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e80880 0xc822e80900 0xc822e809c0 0xc822e80a60 0xc822e80b00] } +&{glUniform4fv QOpenGLFunctions_4_2_Core::glUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e80cc0 0xc822e80d80 0xc822e80e00] } +&{glUniform4i QOpenGLFunctions_4_2_Core::glUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e80fe0 0xc822e81080 0xc822e81100 0xc822e811c0 0xc822e81260] } +&{glUniform4iv QOpenGLFunctions_4_2_Core::glUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e81440 0xc822e814c0 0xc822e81580] } +&{glUniform4ui QOpenGLFunctions_4_2_Core::glUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e81740 0xc822e817c0 0xc822e81880 0xc822e81920 0xc822e819c0] } +&{glUniform4uiv QOpenGLFunctions_4_2_Core::glUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e81b80 0xc822e81c60 0xc822e81ce0] } +&{glUniformBlockBinding QOpenGLFunctions_4_2_Core::glUniformBlockBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e81f60 0xc822e70040 0xc822e70140] } +&{glUniformMatrix2dv QOpenGLFunctions_4_2_Core::glUniformMatrix2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e703e0 0xc822e70480 0xc822e70500 0xc822e705e0] } +&{glUniformMatrix2fv QOpenGLFunctions_4_2_Core::glUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e707e0 0xc822e708c0 0xc822e70940 0xc822e709e0] } +&{glUniformMatrix2x3dv QOpenGLFunctions_4_2_Core::glUniformMatrix2x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e70c40 0xc822e70cc0 0xc822e70d40 0xc822e70de0] } +&{glUniformMatrix2x3fv QOpenGLFunctions_4_2_Core::glUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e70fe0 0xc822e710c0 0xc822e71160 0xc822e711e0] } +&{glUniformMatrix2x4dv QOpenGLFunctions_4_2_Core::glUniformMatrix2x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e71400 0xc822e714c0 0xc822e71540 0xc822e715c0] } +&{glUniformMatrix2x4fv QOpenGLFunctions_4_2_Core::glUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e71800 0xc822e718c0 0xc822e71960 0xc822e719e0] } +&{glUniformMatrix3dv QOpenGLFunctions_4_2_Core::glUniformMatrix3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e71c40 0xc822e71cc0 0xc822e71d80 0xc822e71e00] } +&{glUniformMatrix3fv QOpenGLFunctions_4_2_Core::glUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e5e060 0xc822e5e100 0xc822e5e1a0 0xc822e5e240] } +&{glUniformMatrix3x2dv QOpenGLFunctions_4_2_Core::glUniformMatrix3x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e5e460 0xc822e5e500 0xc822e5e5c0 0xc822e5e640] } +&{glUniformMatrix3x2fv QOpenGLFunctions_4_2_Core::glUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e5e880 0xc822e5e920 0xc822e5e9c0 0xc822e5ea60] } +&{glUniformMatrix3x4dv QOpenGLFunctions_4_2_Core::glUniformMatrix3x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e5ec80 0xc822e5ed20 0xc822e5edc0 0xc822e5ee40] } +&{glUniformMatrix3x4fv QOpenGLFunctions_4_2_Core::glUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e5f0a0 0xc822e5f140 0xc822e5f1e0 0xc822e5f260] } +&{glUniformMatrix4dv QOpenGLFunctions_4_2_Core::glUniformMatrix4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e5f4a0 0xc822e5f540 0xc822e5f600 0xc822e5f6a0] } +&{glUniformMatrix4fv QOpenGLFunctions_4_2_Core::glUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e5f8e0 0xc822e5f960 0xc822e5fa40 0xc822e5fae0] } +&{glUniformMatrix4x2dv QOpenGLFunctions_4_2_Core::glUniformMatrix4x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e5fd20 0xc822e5fde0 0xc822e5fe60 0xc822e5ff20] } +&{glUniformMatrix4x2fv QOpenGLFunctions_4_2_Core::glUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e52160 0xc822e521e0 0xc822e522a0 0xc822e52340] } +&{glUniformMatrix4x3dv QOpenGLFunctions_4_2_Core::glUniformMatrix4x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e52580 0xc822e52600 0xc822e526a0 0xc822e52780] } +&{glUniformMatrix4x3fv QOpenGLFunctions_4_2_Core::glUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e529c0 0xc822e52a60 0xc822e52b00 0xc822e52b80] } +&{glUniformSubroutinesuiv QOpenGLFunctions_4_2_Core::glUniformSubroutinesuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e52dc0 0xc822e52e60 0xc822e52ee0] } +&{glUnmapBuffer QOpenGLFunctions_4_2_Core::glUnmapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false GLboolean [0xc822e530c0] } +&{glUseProgram QOpenGLFunctions_4_2_Core::glUseProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e53280] } +&{glUseProgramStages QOpenGLFunctions_4_2_Core::glUseProgramStages commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e534a0 0xc822e53540 0xc822e53600] } +&{glValidateProgram QOpenGLFunctions_4_2_Core::glValidateProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e53820] } +&{glValidateProgramPipeline QOpenGLFunctions_4_2_Core::glValidateProgramPipeline commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e53a80] } +&{glVertexAttribDivisor QOpenGLFunctions_4_2_Core::glVertexAttribDivisor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e53ca0 0xc822e53d60] } +&{glVertexAttribIPointer QOpenGLFunctions_4_2_Core::glVertexAttribIPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e53f60 0xc822e3e000 0xc822e3e0e0 0xc822e3e180 0xc822e3e220] } +&{glVertexAttribL1d QOpenGLFunctions_4_2_Core::glVertexAttribL1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e3e4a0 0xc822e3e540] } +&{glVertexAttribL1dv QOpenGLFunctions_4_2_Core::glVertexAttribL1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e3e760 0xc822e3e820] } +&{glVertexAttribL2d QOpenGLFunctions_4_2_Core::glVertexAttribL2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e3ea20 0xc822e3eae0 0xc822e3eb80] } +&{glVertexAttribL2dv QOpenGLFunctions_4_2_Core::glVertexAttribL2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e3edc0 0xc822e3ee40] } +&{glVertexAttribL3d QOpenGLFunctions_4_2_Core::glVertexAttribL3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e3f080 0xc822e3f140 0xc822e3f1c0 0xc822e3f280] } +&{glVertexAttribL3dv QOpenGLFunctions_4_2_Core::glVertexAttribL3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e3f4a0 0xc822e3f540] } +&{glVertexAttribL4d QOpenGLFunctions_4_2_Core::glVertexAttribL4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e3f780 0xc822e3f860 0xc822e3f900 0xc822e3f9a0 0xc822e3fa80] } +&{glVertexAttribL4dv QOpenGLFunctions_4_2_Core::glVertexAttribL4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e3fcc0 0xc822e3fd40] } +&{glVertexAttribLPointer QOpenGLFunctions_4_2_Core::glVertexAttribLPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e3ff60 0xc822e2e020 0xc822e2e0c0 0xc822e2e160 0xc822e2e240] } +&{glVertexAttribP1ui QOpenGLFunctions_4_2_Core::glVertexAttribP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e2e460 0xc822e2e500 0xc822e2e5c0 0xc822e2e660] } +&{glVertexAttribP1uiv QOpenGLFunctions_4_2_Core::glVertexAttribP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e2e860 0xc822e2e920 0xc822e2e9c0 0xc822e2ea60] } +&{glVertexAttribP2ui QOpenGLFunctions_4_2_Core::glVertexAttribP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e2eca0 0xc822e2ed20 0xc822e2ede0 0xc822e2ee80] } +&{glVertexAttribP2uiv QOpenGLFunctions_4_2_Core::glVertexAttribP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e2f0c0 0xc822e2f180 0xc822e2f220 0xc822e2f2a0] } +&{glVertexAttribP3ui QOpenGLFunctions_4_2_Core::glVertexAttribP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e2f4a0 0xc822e2f580 0xc822e2f620 0xc822e2f6e0] } +&{glVertexAttribP3uiv QOpenGLFunctions_4_2_Core::glVertexAttribP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e2f8e0 0xc822e2f9a0 0xc822e2fa40 0xc822e2fac0] } +&{glVertexAttribP4ui QOpenGLFunctions_4_2_Core::glVertexAttribP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e2fd00 0xc822e2fde0 0xc822e2fe60 0xc822e2ff20] } +&{glVertexAttribP4uiv QOpenGLFunctions_4_2_Core::glVertexAttribP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e14140 0xc822e141e0 0xc822e14280 0xc822e14320] } +&{glVertexAttribPointer QOpenGLFunctions_4_2_Core::glVertexAttribPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e14540 0xc822e14600 0xc822e146a0 0xc822e14740 0xc822e14820 0xc822e148c0] } +&{glVertexP2ui QOpenGLFunctions_4_2_Core::glVertexP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e14a60 0xc822e14b00] } +&{glVertexP2uiv QOpenGLFunctions_4_2_Core::glVertexP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e14cc0 0xc822e14d80] } +&{glVertexP3ui QOpenGLFunctions_4_2_Core::glVertexP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e14f40 0xc822e14fe0] } +&{glVertexP3uiv QOpenGLFunctions_4_2_Core::glVertexP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e15180 0xc822e15240] } +&{glVertexP4ui QOpenGLFunctions_4_2_Core::glVertexP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e15400 0xc822e15480] } +&{glVertexP4uiv QOpenGLFunctions_4_2_Core::glVertexP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e15640 0xc822e15700] } +&{glViewport QOpenGLFunctions_4_2_Core::glViewport commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e158c0 0xc822e15940 0xc822e159e0 0xc822e15ac0] } +&{glViewportArrayv QOpenGLFunctions_4_2_Core::glViewportArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e15c60 0xc822e15d20 0xc822e15de0] } +&{glViewportIndexedf QOpenGLFunctions_4_2_Core::glViewportIndexedf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e02020 0xc822e020a0 0xc822e02140 0xc822e021e0 0xc822e022c0] } +&{glViewportIndexedfv QOpenGLFunctions_4_2_Core::glViewportIndexedfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e024c0 0xc822e02560] } +&{glWaitSync QOpenGLFunctions_4_2_Core::glWaitSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_2_core.h non plain false false void [0xc822e02740 0xc822e027e0 0xc822e02860] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions_4_3_Compatibility.txt b/internal/binding/dump/QtGui/QOpenGLFunctions_4_3_Compatibility.txt new file mode 100755 index 00000000..52cde065 --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions_4_3_Compatibility.txt @@ -0,0 +1,940 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions_4_3_Compatibility QOpenGLFunctions_4_3_Compatibility::QOpenGLFunctions_4_3_Compatibility commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.cpp non constructor false false [] } +&{initializeOpenGLFunctions QOpenGLFunctions_4_3_Compatibility::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.cpp impure plain false false bool [] } +&{~QOpenGLFunctions_4_3_Compatibility QOpenGLFunctions_4_3_Compatibility::~QOpenGLFunctions_4_3_Compatibility commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.cpp non destructor false false [] } +&{glAccum QOpenGLFunctions_4_3_Compatibility::glAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822e030e0 0xc822e03180] } +&{glActiveShaderProgram QOpenGLFunctions_4_3_Compatibility::glActiveShaderProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822e03380 0xc822e03420] } +&{glActiveTexture QOpenGLFunctions_4_3_Compatibility::glActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822e035c0] } +&{glAlphaFunc QOpenGLFunctions_4_3_Compatibility::glAlphaFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822e03780 0xc822e03840] } +&{glAreTexturesResident QOpenGLFunctions_4_3_Compatibility::glAreTexturesResident commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLboolean [0xc822e03a20 0xc822e03ae0 0xc822e03b80] } +&{glArrayElement QOpenGLFunctions_4_3_Compatibility::glArrayElement commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822e03d40] } +&{glAttachShader QOpenGLFunctions_4_3_Compatibility::glAttachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822e03ec0 0xc822e03f60] } +&{glBegin QOpenGLFunctions_4_3_Compatibility::glBegin commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822df0140] } +&{glBeginConditionalRender QOpenGLFunctions_4_3_Compatibility::glBeginConditionalRender commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822df0320 0xc822df03e0] } +&{glBeginQuery QOpenGLFunctions_4_3_Compatibility::glBeginQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822df0580 0xc822df0600] } +&{glBeginQueryIndexed QOpenGLFunctions_4_3_Compatibility::glBeginQueryIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822df0840 0xc822df08e0 0xc822df0980] } +&{glBeginTransformFeedback QOpenGLFunctions_4_3_Compatibility::glBeginTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822df0bc0] } +&{glBindAttribLocation QOpenGLFunctions_4_3_Compatibility::glBindAttribLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822df0dc0 0xc822df0e80 0xc822df0f00] } +&{glBindBuffer QOpenGLFunctions_4_3_Compatibility::glBindBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822df10c0 0xc822df1160] } +&{glBindBufferBase QOpenGLFunctions_4_3_Compatibility::glBindBufferBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822df12e0 0xc822df1380 0xc822df1420] } +&{glBindBufferRange QOpenGLFunctions_4_3_Compatibility::glBindBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822df1640 0xc822df16c0 0xc822df1780 0xc822df1820 0xc822df18c0] } +&{glBindFragDataLocation QOpenGLFunctions_4_3_Compatibility::glBindFragDataLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822df1b00 0xc822df1ba0 0xc822df1c20] } +&{glBindFragDataLocationIndexed QOpenGLFunctions_4_3_Compatibility::glBindFragDataLocationIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822df1e20 0xc822df1f00 0xc822df1fa0 0xc822de0060] } +&{glBindFramebuffer QOpenGLFunctions_4_3_Compatibility::glBindFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822de0280 0xc822de0300] } +&{glBindImageTexture QOpenGLFunctions_4_3_Compatibility::glBindImageTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822de0520 0xc822de05e0 0xc822de0660 0xc822de0720 0xc822de07c0 0xc822de0880 0xc822de0920] } +&{glBindProgramPipeline QOpenGLFunctions_4_3_Compatibility::glBindProgramPipeline commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822de0b20] } +&{glBindRenderbuffer QOpenGLFunctions_4_3_Compatibility::glBindRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822de0d40 0xc822de0dc0] } +&{glBindSampler QOpenGLFunctions_4_3_Compatibility::glBindSampler commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822de0f80 0xc822de1020] } +&{glBindTexture QOpenGLFunctions_4_3_Compatibility::glBindTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822de11a0 0xc822de1260] } +&{glBindTransformFeedback QOpenGLFunctions_4_3_Compatibility::glBindTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822de1480 0xc822de1520] } +&{glBindVertexArray QOpenGLFunctions_4_3_Compatibility::glBindVertexArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822de1700] } +&{glBindVertexBuffer QOpenGLFunctions_4_3_Compatibility::glBindVertexBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822de1940 0xc822de19c0 0xc822de1a80 0xc822de1b00] } +&{glBitmap QOpenGLFunctions_4_3_Compatibility::glBitmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822de1d00 0xc822de1d80 0xc822de1e00 0xc822de1ec0 0xc822de1fa0 0xc822dcc020 0xc822dcc0e0] } +&{glBlendColor QOpenGLFunctions_4_3_Compatibility::glBlendColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822dcc260 0xc822dcc320 0xc822dcc3c0 0xc822dcc460] } +&{glBlendEquation QOpenGLFunctions_4_3_Compatibility::glBlendEquation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822dcc600] } +&{glBlendEquationSeparate QOpenGLFunctions_4_3_Compatibility::glBlendEquationSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822dcc820 0xc822dcc8a0] } +&{glBlendEquationSeparatei QOpenGLFunctions_4_3_Compatibility::glBlendEquationSeparatei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822dccac0 0xc822dccb40 0xc822dccbc0] } +&{glBlendEquationi QOpenGLFunctions_4_3_Compatibility::glBlendEquationi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822dccd60 0xc822dcce20] } +&{glBlendFunc QOpenGLFunctions_4_3_Compatibility::glBlendFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822dccfc0 0xc822dcd060] } +&{glBlendFuncSeparate QOpenGLFunctions_4_3_Compatibility::glBlendFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822dcd260 0xc822dcd320 0xc822dcd3c0 0xc822dcd460] } +&{glBlendFuncSeparatei QOpenGLFunctions_4_3_Compatibility::glBlendFuncSeparatei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822dcd640 0xc822dcd700 0xc822dcd7c0 0xc822dcd840 0xc822dcd920] } +&{glBlendFunci QOpenGLFunctions_4_3_Compatibility::glBlendFunci commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822dcdac0 0xc822dcdb60 0xc822dcdbe0] } +&{glBlitFramebuffer QOpenGLFunctions_4_3_Compatibility::glBlitFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822dcde00 0xc822dcdec0 0xc822dcdf40 0xc822dcdfc0 0xc822dbc0c0 0xc822dbc160 0xc822dbc1e0 0xc822dbc2a0 0xc822dbc380 0xc822dbc400] } +&{glBufferData QOpenGLFunctions_4_3_Compatibility::glBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822dbc5a0 0xc822dbc640 0xc822dbc6e0 0xc822dbc780] } +&{glBufferSubData QOpenGLFunctions_4_3_Compatibility::glBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822dbc920 0xc822dbc9e0 0xc822dbca60 0xc822dbcb20] } +&{glCallList QOpenGLFunctions_4_3_Compatibility::glCallList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822dbcce0] } +&{glCallLists QOpenGLFunctions_4_3_Compatibility::glCallLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822dbce80 0xc822dbcf20 0xc822dbcfc0] } +&{glCheckFramebufferStatus QOpenGLFunctions_4_3_Compatibility::glCheckFramebufferStatus commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLenum [0xc822dbd1a0] } +&{glClampColor QOpenGLFunctions_4_3_Compatibility::glClampColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822dbd360 0xc822dbd3e0] } +&{glClear QOpenGLFunctions_4_3_Compatibility::glClear commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822dbd5e0] } +&{glClearAccum QOpenGLFunctions_4_3_Compatibility::glClearAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822dbd740 0xc822dbd800 0xc822dbd880 0xc822dbd940] } +&{glClearBufferData QOpenGLFunctions_4_3_Compatibility::glClearBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822dbdb40 0xc822dbdc00 0xc822dbdcc0 0xc822dbdd60 0xc822dbde00] } +&{glClearBufferSubData QOpenGLFunctions_4_3_Compatibility::glClearBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822dae060 0xc822dae0e0 0xc822dae180 0xc822dae260 0xc822dae300 0xc822dae3c0 0xc822dae460] } +&{glClearBufferfi QOpenGLFunctions_4_3_Compatibility::glClearBufferfi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822dae600 0xc822dae680 0xc822dae720 0xc822dae800] } +&{glClearBufferfv QOpenGLFunctions_4_3_Compatibility::glClearBufferfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822dae9a0 0xc822daea20 0xc822daeaa0] } +&{glClearBufferiv QOpenGLFunctions_4_3_Compatibility::glClearBufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822daec60 0xc822daed00 0xc822daeda0] } +&{glClearBufferuiv QOpenGLFunctions_4_3_Compatibility::glClearBufferuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822daef00 0xc822daefe0 0xc822daf080] } +&{glClearColor QOpenGLFunctions_4_3_Compatibility::glClearColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822daf220 0xc822daf2a0 0xc822daf340 0xc822daf400] } +&{glClearDepth QOpenGLFunctions_4_3_Compatibility::glClearDepth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822daf580] } +&{glClearDepthf QOpenGLFunctions_4_3_Compatibility::glClearDepthf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822daf760] } +&{glClearIndex QOpenGLFunctions_4_3_Compatibility::glClearIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822daf920] } +&{glClearStencil QOpenGLFunctions_4_3_Compatibility::glClearStencil commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822dafae0] } +&{glClientActiveTexture QOpenGLFunctions_4_3_Compatibility::glClientActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822dafd20] } +&{glClientWaitSync QOpenGLFunctions_4_3_Compatibility::glClientWaitSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLenum [0xc822dafea0 0xc822daff40 0xc822daffe0] } +&{glClipPlane QOpenGLFunctions_4_3_Compatibility::glClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d9c1c0 0xc822d9c240] } +&{glColor3b QOpenGLFunctions_4_3_Compatibility::glColor3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d9c3e0 0xc822d9c480 0xc822d9c560] } +&{glColor3bv QOpenGLFunctions_4_3_Compatibility::glColor3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d9c6e0] } +&{glColor3d QOpenGLFunctions_4_3_Compatibility::glColor3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d9c880 0xc822d9c960 0xc822d9ca00] } +&{glColor3dv QOpenGLFunctions_4_3_Compatibility::glColor3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d9cba0] } +&{glColor3f QOpenGLFunctions_4_3_Compatibility::glColor3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d9cd40 0xc822d9cde0 0xc822d9ce80] } +&{glColor3fv QOpenGLFunctions_4_3_Compatibility::glColor3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d9d000] } +&{glColor3i QOpenGLFunctions_4_3_Compatibility::glColor3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d9d1a0 0xc822d9d240 0xc822d9d2c0] } +&{glColor3iv QOpenGLFunctions_4_3_Compatibility::glColor3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d9d4c0] } +&{glColor3s QOpenGLFunctions_4_3_Compatibility::glColor3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d9d660 0xc822d9d700 0xc822d9d7c0] } +&{glColor3sv QOpenGLFunctions_4_3_Compatibility::glColor3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d9d960] } +&{glColor3ub QOpenGLFunctions_4_3_Compatibility::glColor3ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d9dac0 0xc822d9db80 0xc822d9dc20] } +&{glColor3ubv QOpenGLFunctions_4_3_Compatibility::glColor3ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d9ddc0] } +&{glColor3ui QOpenGLFunctions_4_3_Compatibility::glColor3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d9df40 0xc822d9dfe0 0xc822d8a0a0] } +&{glColor3uiv QOpenGLFunctions_4_3_Compatibility::glColor3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d8a200] } +&{glColor3us QOpenGLFunctions_4_3_Compatibility::glColor3us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d8a3c0 0xc822d8a440 0xc822d8a4e0] } +&{glColor3usv QOpenGLFunctions_4_3_Compatibility::glColor3usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d8a680] } +&{glColor4b QOpenGLFunctions_4_3_Compatibility::glColor4b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d8a800 0xc822d8a8a0 0xc822d8a960 0xc822d8aa00] } +&{glColor4bv QOpenGLFunctions_4_3_Compatibility::glColor4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d8abc0] } +&{glColor4d QOpenGLFunctions_4_3_Compatibility::glColor4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d8ad40 0xc822d8ade0 0xc822d8ae60 0xc822d8af00] } +&{glColor4dv QOpenGLFunctions_4_3_Compatibility::glColor4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d8b0c0] } +&{glColor4f QOpenGLFunctions_4_3_Compatibility::glColor4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d8b200 0xc822d8b2c0 0xc822d8b360 0xc822d8b3e0] } +&{glColor4fv QOpenGLFunctions_4_3_Compatibility::glColor4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d8b5a0] } +&{glColor4i QOpenGLFunctions_4_3_Compatibility::glColor4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d8b720 0xc822d8b7e0 0xc822d8b880 0xc822d8b900] } +&{glColor4iv QOpenGLFunctions_4_3_Compatibility::glColor4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d8bb00] } +&{glColor4s QOpenGLFunctions_4_3_Compatibility::glColor4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d8bc80 0xc822d8bd00 0xc822d8bdc0 0xc822d8be60] } +&{glColor4sv QOpenGLFunctions_4_3_Compatibility::glColor4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d8bfe0] } +&{glColor4ub QOpenGLFunctions_4_3_Compatibility::glColor4ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d781a0 0xc822d78220 0xc822d782a0 0xc822d78380] } +&{glColor4ubv QOpenGLFunctions_4_3_Compatibility::glColor4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d78520] } +&{glColor4ui QOpenGLFunctions_4_3_Compatibility::glColor4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d786c0 0xc822d78760 0xc822d78820 0xc822d788a0] } +&{glColor4uiv QOpenGLFunctions_4_3_Compatibility::glColor4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d78a60] } +&{glColor4us QOpenGLFunctions_4_3_Compatibility::glColor4us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d78be0 0xc822d78c60 0xc822d78d40 0xc822d78de0] } +&{glColor4usv QOpenGLFunctions_4_3_Compatibility::glColor4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d78f60] } +&{glColorMask QOpenGLFunctions_4_3_Compatibility::glColorMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d79100 0xc822d791a0 0xc822d79240 0xc822d79300] } +&{glColorMaski QOpenGLFunctions_4_3_Compatibility::glColorMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d79480 0xc822d79520 0xc822d795a0 0xc822d79660 0xc822d79720] } +&{glColorMaterial QOpenGLFunctions_4_3_Compatibility::glColorMaterial commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d798c0 0xc822d79940] } +&{glColorP3ui QOpenGLFunctions_4_3_Compatibility::glColorP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d79ae0 0xc822d79b60] } +&{glColorP3uiv QOpenGLFunctions_4_3_Compatibility::glColorP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d79d00 0xc822d79dc0] } +&{glColorP4ui QOpenGLFunctions_4_3_Compatibility::glColorP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d79f20 0xc822d79fe0] } +&{glColorP4uiv QOpenGLFunctions_4_3_Compatibility::glColorP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d6e160 0xc822d6e220] } +&{glColorPointer QOpenGLFunctions_4_3_Compatibility::glColorPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d6e3a0 0xc822d6e440 0xc822d6e520 0xc822d6e5a0] } +&{glColorSubTable QOpenGLFunctions_4_3_Compatibility::glColorSubTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d6e760 0xc822d6e800 0xc822d6e8a0 0xc822d6e920 0xc822d6ea20 0xc822d6eac0] } +&{glColorTable QOpenGLFunctions_4_3_Compatibility::glColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d6ec20 0xc822d6ece0 0xc822d6ed80 0xc822d6ee20 0xc822d6eee0 0xc822d6ef60] } +&{glColorTableParameterfv QOpenGLFunctions_4_3_Compatibility::glColorTableParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d6f180 0xc822d6f220 0xc822d6f2c0] } +&{glColorTableParameteriv QOpenGLFunctions_4_3_Compatibility::glColorTableParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d6f4e0 0xc822d6f560 0xc822d6f600] } +&{glCompileShader QOpenGLFunctions_4_3_Compatibility::glCompileShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d6f7e0] } +&{glCompressedTexImage1D QOpenGLFunctions_4_3_Compatibility::glCompressedTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d6f9e0 0xc822d6faa0 0xc822d6fb40 0xc822d6fbc0 0xc822d6fc80 0xc822d6fd60 0xc822d6fe00] } +&{glCompressedTexImage2D QOpenGLFunctions_4_3_Compatibility::glCompressedTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d5c000 0xc822d5c080 0xc822d5c100 0xc822d5c1e0 0xc822d5c2c0 0xc822d5c360 0xc822d5c3e0 0xc822d5c480] } +&{glCompressedTexImage3D QOpenGLFunctions_4_3_Compatibility::glCompressedTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d5c6c0 0xc822d5c740 0xc822d5c7e0 0xc822d5c8c0 0xc822d5c980 0xc822d5ca20 0xc822d5caa0 0xc822d5cb80 0xc822d5cc40] } +&{glCompressedTexSubImage1D QOpenGLFunctions_4_3_Compatibility::glCompressedTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d5ce40 0xc822d5cec0 0xc822d5cf80 0xc822d5d000 0xc822d5d100 0xc822d5d1a0 0xc822d5d240] } +&{glCompressedTexSubImage2D QOpenGLFunctions_4_3_Compatibility::glCompressedTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d5d440 0xc822d5d4c0 0xc822d5d5a0 0xc822d5d620 0xc822d5d6e0 0xc822d5d7c0 0xc822d5d840 0xc822d5d8c0 0xc822d5d9a0] } +&{glCompressedTexSubImage3D QOpenGLFunctions_4_3_Compatibility::glCompressedTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d5dbc0 0xc822d5dc40 0xc822d5dce0 0xc822d5dda0 0xc822d5de60 0xc822d5dee0 0xc822d5dfc0 0xc822d4e040 0xc822d4e140 0xc822d4e1e0 0xc822d4e280] } +&{glConvolutionFilter1D QOpenGLFunctions_4_3_Compatibility::glConvolutionFilter1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d4e4a0 0xc822d4e540 0xc822d4e600 0xc822d4e680 0xc822d4e740 0xc822d4e800] } +&{glConvolutionFilter2D QOpenGLFunctions_4_3_Compatibility::glConvolutionFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d4ea00 0xc822d4eaa0 0xc822d4eb80 0xc822d4ec20 0xc822d4ece0 0xc822d4ed60 0xc822d4ee40] } +&{glConvolutionParameterf QOpenGLFunctions_4_3_Compatibility::glConvolutionParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d4f040 0xc822d4f0c0 0xc822d4f1a0] } +&{glConvolutionParameterfv QOpenGLFunctions_4_3_Compatibility::glConvolutionParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d4f3a0 0xc822d4f440 0xc822d4f500] } +&{glConvolutionParameteri QOpenGLFunctions_4_3_Compatibility::glConvolutionParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d4f700 0xc822d4f7a0 0xc822d4f880] } +&{glConvolutionParameteriv QOpenGLFunctions_4_3_Compatibility::glConvolutionParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d4fa60 0xc822d4fb40 0xc822d4fbe0] } +&{glCopyBufferSubData QOpenGLFunctions_4_3_Compatibility::glCopyBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d4fdc0 0xc822d4fea0 0xc822d4ff40 0xc822d40000 0xc822d400a0] } +&{glCopyColorSubTable QOpenGLFunctions_4_3_Compatibility::glCopyColorSubTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d402a0 0xc822d40340 0xc822d403e0 0xc822d40460 0xc822d40560] } +&{glCopyColorTable QOpenGLFunctions_4_3_Compatibility::glCopyColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d406c0 0xc822d40760 0xc822d40800 0xc822d408c0 0xc822d40980] } +&{glCopyConvolutionFilter1D QOpenGLFunctions_4_3_Compatibility::glCopyConvolutionFilter1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d40b80 0xc822d40c20 0xc822d40ca0 0xc822d40d80 0xc822d40e60] } +&{glCopyConvolutionFilter2D QOpenGLFunctions_4_3_Compatibility::glCopyConvolutionFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d41040 0xc822d41120 0xc822d411c0 0xc822d41280 0xc822d41320 0xc822d413c0] } +&{glCopyImageSubData QOpenGLFunctions_4_3_Compatibility::glCopyImageSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822d41600 0xc822d41680 0xc822d41720 0xc822d41800 0xc822d418c0 0xc822d41960 0xc822d419e0 0xc822d41ac0 0xc822d41b80 0xc822d41c40 0xc822d41cc0 0xc822d41d40 0xc822d41e20 0xc822d41ec0 0xc822d41f80] } +&{glCopyPixels QOpenGLFunctions_4_3_Compatibility::glCopyPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ec60e0 0xc821ec6160 0xc821ec61e0 0xc821ec6260 0xc821ec6300] } +&{glCopyTexImage1D QOpenGLFunctions_4_3_Compatibility::glCopyTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ec6440 0xc821ec64c0 0xc821ec6540 0xc821ec6600 0xc821ec66e0 0xc821ec6780 0xc821ec6820] } +&{glCopyTexImage2D QOpenGLFunctions_4_3_Compatibility::glCopyTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ec69c0 0xc821ec6a60 0xc821ec6ae0 0xc821ec6b60 0xc821ec6c00 0xc821ec6c80 0xc821ec6d00 0xc821ec6d80] } +&{glCopyTexSubImage1D QOpenGLFunctions_4_3_Compatibility::glCopyTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ec6f20 0xc821ec6fa0 0xc821ec7020 0xc821ec70a0 0xc821ec7140 0xc821ec71c0] } +&{glCopyTexSubImage2D QOpenGLFunctions_4_3_Compatibility::glCopyTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ec7360 0xc821ec73e0 0xc821ec7460 0xc821ec7500 0xc821ec75c0 0xc821ec7680 0xc821ec7700 0xc821ec77a0] } +&{glCopyTexSubImage3D QOpenGLFunctions_4_3_Compatibility::glCopyTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ec79a0 0xc821ec7a20 0xc821ec7aa0 0xc821ec7b40 0xc821ec7be0 0xc821ec7c80 0xc821ec7d60 0xc821ec7e20 0xc821ec7ec0] } +&{glCreateProgram QOpenGLFunctions_4_3_Compatibility::glCreateProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLuint [] } +&{glCreateShader QOpenGLFunctions_4_3_Compatibility::glCreateShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLuint [0xc821ed40c0] } +&{glCreateShaderProgramv QOpenGLFunctions_4_3_Compatibility::glCreateShaderProgramv commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLuint [0xc821ed42c0 0xc821ed4380 0xc821ed4460] } +&{glCullFace QOpenGLFunctions_4_3_Compatibility::glCullFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ed4680] } +&{glDeleteBuffers QOpenGLFunctions_4_3_Compatibility::glDeleteBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ed4800 0xc821ed4880] } +&{glDeleteFramebuffers QOpenGLFunctions_4_3_Compatibility::glDeleteFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ed4aa0 0xc821ed4b60] } +&{glDeleteLists QOpenGLFunctions_4_3_Compatibility::glDeleteLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ed4ce0 0xc821ed4dc0] } +&{glDeleteProgram QOpenGLFunctions_4_3_Compatibility::glDeleteProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ed4f20] } +&{glDeleteProgramPipelines QOpenGLFunctions_4_3_Compatibility::glDeleteProgramPipelines commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ed5100 0xc821ed5180] } +&{glDeleteQueries QOpenGLFunctions_4_3_Compatibility::glDeleteQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ed5360 0xc821ed53e0] } +&{glDeleteRenderbuffers QOpenGLFunctions_4_3_Compatibility::glDeleteRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ed55c0 0xc821ed5640] } +&{glDeleteSamplers QOpenGLFunctions_4_3_Compatibility::glDeleteSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ed57a0 0xc821ed5840] } +&{glDeleteShader QOpenGLFunctions_4_3_Compatibility::glDeleteShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ed59c0] } +&{glDeleteSync QOpenGLFunctions_4_3_Compatibility::glDeleteSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ed5bc0] } +&{glDeleteTextures QOpenGLFunctions_4_3_Compatibility::glDeleteTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ed5d00 0xc821ed5da0] } +&{glDeleteTransformFeedbacks QOpenGLFunctions_4_3_Compatibility::glDeleteTransformFeedbacks commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ed5f60 0xc821edc000] } +&{glDeleteVertexArrays QOpenGLFunctions_4_3_Compatibility::glDeleteVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821edc1e0 0xc821edc260] } +&{glDepthFunc QOpenGLFunctions_4_3_Compatibility::glDepthFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821edc400] } +&{glDepthMask QOpenGLFunctions_4_3_Compatibility::glDepthMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821edc5a0] } +&{glDepthRange QOpenGLFunctions_4_3_Compatibility::glDepthRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821edc740 0xc821edc7c0] } +&{glDepthRangeArrayv QOpenGLFunctions_4_3_Compatibility::glDepthRangeArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821edc9a0 0xc821edca20 0xc821edcaa0] } +&{glDepthRangeIndexed QOpenGLFunctions_4_3_Compatibility::glDepthRangeIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821edcca0 0xc821edcd60 0xc821edcde0] } +&{glDepthRangef QOpenGLFunctions_4_3_Compatibility::glDepthRangef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821edcf40 0xc821edd020] } +&{glDetachShader QOpenGLFunctions_4_3_Compatibility::glDetachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821edd1c0 0xc821edd240] } +&{glDisable QOpenGLFunctions_4_3_Compatibility::glDisable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821edd400] } +&{glDisableClientState QOpenGLFunctions_4_3_Compatibility::glDisableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821edd600] } +&{glDisableVertexAttribArray QOpenGLFunctions_4_3_Compatibility::glDisableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821edd800] } +&{glDisablei QOpenGLFunctions_4_3_Compatibility::glDisablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821edd9a0 0xc821edda20] } +&{glDispatchCompute QOpenGLFunctions_4_3_Compatibility::glDispatchCompute commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821eddc20 0xc821eddcc0 0xc821eddd80] } +&{glDispatchComputeIndirect QOpenGLFunctions_4_3_Compatibility::glDispatchComputeIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821eddf80] } +&{glDrawArrays QOpenGLFunctions_4_3_Compatibility::glDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821eea120 0xc821eea1a0 0xc821eea240] } +&{glDrawArraysIndirect QOpenGLFunctions_4_3_Compatibility::glDrawArraysIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821eea440 0xc821eea500] } +&{glDrawArraysInstanced QOpenGLFunctions_4_3_Compatibility::glDrawArraysInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821eea700 0xc821eea780 0xc821eea860 0xc821eea8e0] } +&{glDrawArraysInstancedBaseInstance QOpenGLFunctions_4_3_Compatibility::glDrawArraysInstancedBaseInstance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821eeaa80 0xc821eeab00 0xc821eeaba0 0xc821eeac60 0xc821eead00] } +&{glDrawBuffer QOpenGLFunctions_4_3_Compatibility::glDrawBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821eeaec0] } +&{glDrawBuffers QOpenGLFunctions_4_3_Compatibility::glDrawBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821eeb060 0xc821eeb100] } +&{glDrawElements QOpenGLFunctions_4_3_Compatibility::glDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821eeb280 0xc821eeb360 0xc821eeb3e0 0xc821eeb460] } +&{glDrawElementsBaseVertex QOpenGLFunctions_4_3_Compatibility::glDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821eeb680 0xc821eeb740 0xc821eeb7c0 0xc821eeb840 0xc821eeb900] } +&{glDrawElementsIndirect QOpenGLFunctions_4_3_Compatibility::glDrawElementsIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821eebb00 0xc821eebbe0 0xc821eebc60] } +&{glDrawElementsInstanced QOpenGLFunctions_4_3_Compatibility::glDrawElementsInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821eebe60 0xc821eebf00 0xc821eebfc0 0xc821ef8040 0xc821ef8140] } +&{glDrawElementsInstancedBaseInstance QOpenGLFunctions_4_3_Compatibility::glDrawElementsInstancedBaseInstance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ef82a0 0xc821ef8360 0xc821ef83e0 0xc821ef8480 0xc821ef8560 0xc821ef85e0] } +&{glDrawElementsInstancedBaseVertex QOpenGLFunctions_4_3_Compatibility::glDrawElementsInstancedBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ef8780 0xc821ef8820 0xc821ef88e0 0xc821ef8960 0xc821ef8a20 0xc821ef8ae0] } +&{glDrawElementsInstancedBaseVertexBaseInstance QOpenGLFunctions_4_3_Compatibility::glDrawElementsInstancedBaseVertexBaseInstance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ef8c80 0xc821ef8d00 0xc821ef8da0 0xc821ef8e60 0xc821ef8f00 0xc821ef8fe0 0xc821ef9060] } +&{glDrawPixels QOpenGLFunctions_4_3_Compatibility::glDrawPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ef9200 0xc821ef9280 0xc821ef9320 0xc821ef93e0 0xc821ef9480] } +&{glDrawRangeElements QOpenGLFunctions_4_3_Compatibility::glDrawRangeElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ef96a0 0xc821ef9760 0xc821ef97e0 0xc821ef9880 0xc821ef9960 0xc821ef99e0] } +&{glDrawRangeElementsBaseVertex QOpenGLFunctions_4_3_Compatibility::glDrawRangeElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ef9bc0 0xc821ef9c40 0xc821ef9cc0 0xc821ef9d40 0xc821ef9de0 0xc821ef9e60 0xc821ef9ee0] } +&{glDrawTransformFeedback QOpenGLFunctions_4_3_Compatibility::glDrawTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821f02080 0xc821f02100] } +&{glDrawTransformFeedbackInstanced QOpenGLFunctions_4_3_Compatibility::glDrawTransformFeedbackInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821f022a0 0xc821f02320 0xc821f023a0] } +&{glDrawTransformFeedbackStream QOpenGLFunctions_4_3_Compatibility::glDrawTransformFeedbackStream commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821f02540 0xc821f025c0 0xc821f02640] } +&{glDrawTransformFeedbackStreamInstanced QOpenGLFunctions_4_3_Compatibility::glDrawTransformFeedbackStreamInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821f02780 0xc821f02800 0xc821f02880 0xc821f02900] } +&{glEdgeFlag QOpenGLFunctions_4_3_Compatibility::glEdgeFlag commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821f02a60] } +&{glEdgeFlagPointer QOpenGLFunctions_4_3_Compatibility::glEdgeFlagPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821f02c00 0xc821f02c80] } +&{glEdgeFlagv QOpenGLFunctions_4_3_Compatibility::glEdgeFlagv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821f02de0] } +&{glEnable QOpenGLFunctions_4_3_Compatibility::glEnable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821f02f80] } +&{glEnableClientState QOpenGLFunctions_4_3_Compatibility::glEnableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821f03120] } +&{glEnableVertexAttribArray QOpenGLFunctions_4_3_Compatibility::glEnableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821f032c0] } +&{glEnablei QOpenGLFunctions_4_3_Compatibility::glEnablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821f03420 0xc821f034e0] } +&{glEnd QOpenGLFunctions_4_3_Compatibility::glEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [] } +&{glEndConditionalRender QOpenGLFunctions_4_3_Compatibility::glEndConditionalRender commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [] } +&{glEndList QOpenGLFunctions_4_3_Compatibility::glEndList commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [] } +&{glEndQuery QOpenGLFunctions_4_3_Compatibility::glEndQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821f038c0] } +&{glEndQueryIndexed QOpenGLFunctions_4_3_Compatibility::glEndQueryIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821f03b00 0xc821f03b80] } +&{glEndTransformFeedback QOpenGLFunctions_4_3_Compatibility::glEndTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [] } +&{glEvalCoord1d QOpenGLFunctions_4_3_Compatibility::glEvalCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821f03e40] } +&{glEvalCoord1dv QOpenGLFunctions_4_3_Compatibility::glEvalCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d36000] } +&{glEvalCoord1f QOpenGLFunctions_4_3_Compatibility::glEvalCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d36160] } +&{glEvalCoord1fv QOpenGLFunctions_4_3_Compatibility::glEvalCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d36300] } +&{glEvalCoord2d QOpenGLFunctions_4_3_Compatibility::glEvalCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d36480 0xc821d36520] } +&{glEvalCoord2dv QOpenGLFunctions_4_3_Compatibility::glEvalCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d36680] } +&{glEvalCoord2f QOpenGLFunctions_4_3_Compatibility::glEvalCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d36840 0xc821d368c0] } +&{glEvalCoord2fv QOpenGLFunctions_4_3_Compatibility::glEvalCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d36a00] } +&{glEvalMesh1 QOpenGLFunctions_4_3_Compatibility::glEvalMesh1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d36b40 0xc821d36bc0 0xc821d36c40] } +&{glEvalMesh2 QOpenGLFunctions_4_3_Compatibility::glEvalMesh2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d36d80 0xc821d36e00 0xc821d36e80 0xc821d36f00 0xc821d36fa0] } +&{glEvalPoint1 QOpenGLFunctions_4_3_Compatibility::glEvalPoint1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d37100] } +&{glEvalPoint2 QOpenGLFunctions_4_3_Compatibility::glEvalPoint2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d37240 0xc821d372c0] } +&{glFeedbackBuffer QOpenGLFunctions_4_3_Compatibility::glFeedbackBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d37460 0xc821d37540 0xc821d375c0] } +&{glFenceSync QOpenGLFunctions_4_3_Compatibility::glFenceSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLsync [0xc821d37780 0xc821d37800] } +&{glFinish QOpenGLFunctions_4_3_Compatibility::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [] } +&{glFlush QOpenGLFunctions_4_3_Compatibility::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [] } +&{glFlushMappedBufferRange QOpenGLFunctions_4_3_Compatibility::glFlushMappedBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d37a60 0xc821d37ae0 0xc821d37ba0] } +&{glFogCoordPointer QOpenGLFunctions_4_3_Compatibility::glFogCoordPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d37dc0 0xc821d37e40 0xc821d37ee0] } +&{glFogCoordd QOpenGLFunctions_4_3_Compatibility::glFogCoordd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d460c0] } +&{glFogCoorddv QOpenGLFunctions_4_3_Compatibility::glFogCoorddv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d46200] } +&{glFogCoordf QOpenGLFunctions_4_3_Compatibility::glFogCoordf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d46360] } +&{glFogCoordfv QOpenGLFunctions_4_3_Compatibility::glFogCoordfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d464a0] } +&{glFogf QOpenGLFunctions_4_3_Compatibility::glFogf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d465e0 0xc821d46660] } +&{glFogfv QOpenGLFunctions_4_3_Compatibility::glFogfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d467a0 0xc821d46820] } +&{glFogi QOpenGLFunctions_4_3_Compatibility::glFogi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d46960 0xc821d469e0] } +&{glFogiv QOpenGLFunctions_4_3_Compatibility::glFogiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d46b20 0xc821d46ba0] } +&{glFramebufferParameteri QOpenGLFunctions_4_3_Compatibility::glFramebufferParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d46d40 0xc821d46dc0 0xc821d46e40] } +&{glFramebufferRenderbuffer QOpenGLFunctions_4_3_Compatibility::glFramebufferRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d47060 0xc821d47100 0xc821d471a0 0xc821d47280] } +&{glFramebufferTexture QOpenGLFunctions_4_3_Compatibility::glFramebufferTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d47440 0xc821d474e0 0xc821d47560 0xc821d47620] } +&{glFramebufferTexture1D QOpenGLFunctions_4_3_Compatibility::glFramebufferTexture1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d47860 0xc821d47920 0xc821d479e0 0xc821d47a60 0xc821d47b40] } +&{glFramebufferTexture2D QOpenGLFunctions_4_3_Compatibility::glFramebufferTexture2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d47da0 0xc821d47e40 0xc821d47ee0 0xc821d47fa0 0xc821d4c040] } +&{glFramebufferTexture3D QOpenGLFunctions_4_3_Compatibility::glFramebufferTexture3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d4c260 0xc821d4c300 0xc821d4c3a0 0xc821d4c420 0xc821d4c4e0 0xc821d4c560] } +&{glFramebufferTextureLayer QOpenGLFunctions_4_3_Compatibility::glFramebufferTextureLayer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d4c780 0xc821d4c840 0xc821d4c8e0 0xc821d4c980 0xc821d4ca60] } +&{glFrontFace QOpenGLFunctions_4_3_Compatibility::glFrontFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d4cc00] } +&{glFrustum QOpenGLFunctions_4_3_Compatibility::glFrustum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d4cdc0 0xc821d4ce40 0xc821d4cf00 0xc821d4cfa0 0xc821d4d080 0xc821d4d120] } +&{glGenBuffers QOpenGLFunctions_4_3_Compatibility::glGenBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d4d2a0 0xc821d4d340] } +&{glGenFramebuffers QOpenGLFunctions_4_3_Compatibility::glGenFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d4d540 0xc821d4d5c0] } +&{glGenLists QOpenGLFunctions_4_3_Compatibility::glGenLists commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLuint [0xc821d4d720] } +&{glGenProgramPipelines QOpenGLFunctions_4_3_Compatibility::glGenProgramPipelines commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d4d8c0 0xc821d4d940] } +&{glGenQueries QOpenGLFunctions_4_3_Compatibility::glGenQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d4da80 0xc821d4db00] } +&{glGenRenderbuffers QOpenGLFunctions_4_3_Compatibility::glGenRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d4dca0 0xc821d4dd20] } +&{glGenSamplers QOpenGLFunctions_4_3_Compatibility::glGenSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d4dea0 0xc821d4df20] } +&{glGenTextures QOpenGLFunctions_4_3_Compatibility::glGenTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d56080 0xc821d56160] } +&{glGenTransformFeedbacks QOpenGLFunctions_4_3_Compatibility::glGenTransformFeedbacks commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d56360 0xc821d563e0] } +&{glGenVertexArrays QOpenGLFunctions_4_3_Compatibility::glGenVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d565e0 0xc821d566c0] } +&{glGenerateMipmap QOpenGLFunctions_4_3_Compatibility::glGenerateMipmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d56860] } +&{glGetActiveAtomicCounterBufferiv QOpenGLFunctions_4_3_Compatibility::glGetActiveAtomicCounterBufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d56a80 0xc821d56b20 0xc821d56ba0 0xc821d56c20] } +&{glGetActiveAttrib QOpenGLFunctions_4_3_Compatibility::glGetActiveAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d56e40 0xc821d56f40 0xc821d56fc0 0xc821d57040 0xc821d57160 0xc821d571e0 0xc821d57260] } +&{glGetActiveSubroutineName QOpenGLFunctions_4_3_Compatibility::glGetActiveSubroutineName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d57480 0xc821d57580 0xc821d57600 0xc821d57680 0xc821d577a0 0xc821d57820] } +&{glGetActiveSubroutineUniformName QOpenGLFunctions_4_3_Compatibility::glGetActiveSubroutineUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d57a20 0xc821d57ae0 0xc821d57b80 0xc821d57c00 0xc821d57ce0 0xc821d57da0] } +&{glGetActiveSubroutineUniformiv QOpenGLFunctions_4_3_Compatibility::glGetActiveSubroutineUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d57fc0 0xc821d64040 0xc821d64100 0xc821d641a0 0xc821d64240] } +&{glGetActiveUniform QOpenGLFunctions_4_3_Compatibility::glGetActiveUniform commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d64480 0xc821d64520 0xc821d645a0 0xc821d64680 0xc821d64720 0xc821d647a0 0xc821d64880] } +&{glGetActiveUniformBlockName QOpenGLFunctions_4_3_Compatibility::glGetActiveUniformBlockName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d64a80 0xc821d64b20 0xc821d64c40 0xc821d64cc0 0xc821d64dc0] } +&{glGetActiveUniformBlockiv QOpenGLFunctions_4_3_Compatibility::glGetActiveUniformBlockiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d64fc0 0xc821d65060 0xc821d65180 0xc821d65200] } +&{glGetActiveUniformName QOpenGLFunctions_4_3_Compatibility::glGetActiveUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d65440 0xc821d654e0 0xc821d65560 0xc821d65640 0xc821d656e0] } +&{glGetActiveUniformsiv QOpenGLFunctions_4_3_Compatibility::glGetActiveUniformsiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d658e0 0xc821d65960 0xc821d659e0 0xc821d65aa0 0xc821d65b40] } +&{glGetAttachedShaders QOpenGLFunctions_4_3_Compatibility::glGetAttachedShaders commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d65d60 0xc821d65de0 0xc821d65ec0 0xc821d65f60] } +&{glGetAttribLocation QOpenGLFunctions_4_3_Compatibility::glGetAttribLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLint [0xc821d76160 0xc821d761e0] } +&{glGetBooleani_v QOpenGLFunctions_4_3_Compatibility::glGetBooleani_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d76380 0xc821d76460 0xc821d764e0] } +&{glGetBooleanv QOpenGLFunctions_4_3_Compatibility::glGetBooleanv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d766a0 0xc821d76720] } +&{glGetBufferParameteri64v QOpenGLFunctions_4_3_Compatibility::glGetBufferParameteri64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d76920 0xc821d76a00 0xc821d76a80] } +&{glGetBufferParameteriv QOpenGLFunctions_4_3_Compatibility::glGetBufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d76c80 0xc821d76d60 0xc821d76de0] } +&{glGetBufferPointerv QOpenGLFunctions_4_3_Compatibility::glGetBufferPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d77000 0xc821d77080 0xc821d77180] } +&{glGetBufferSubData QOpenGLFunctions_4_3_Compatibility::glGetBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d77340 0xc821d77400 0xc821d774e0 0xc821d77560] } +&{glGetClipPlane QOpenGLFunctions_4_3_Compatibility::glGetClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d776a0 0xc821d77720] } +&{glGetColorTable QOpenGLFunctions_4_3_Compatibility::glGetColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d778a0 0xc821d77960 0xc821d779e0 0xc821d77a80] } +&{glGetColorTableParameterfv QOpenGLFunctions_4_3_Compatibility::glGetColorTableParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d77cc0 0xc821d77d60 0xc821d77de0] } +&{glGetColorTableParameteriv QOpenGLFunctions_4_3_Compatibility::glGetColorTableParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d80000 0xc821d80080 0xc821d80140] } +&{glGetCompressedTexImage QOpenGLFunctions_4_3_Compatibility::glGetCompressedTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d802e0 0xc821d80360 0xc821d803e0] } +&{glGetConvolutionFilter QOpenGLFunctions_4_3_Compatibility::glGetConvolutionFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d80580 0xc821d80600 0xc821d80680 0xc821d80700] } +&{glGetConvolutionParameterfv QOpenGLFunctions_4_3_Compatibility::glGetConvolutionParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d808a0 0xc821d80980 0xc821d80a20] } +&{glGetConvolutionParameteriv QOpenGLFunctions_4_3_Compatibility::glGetConvolutionParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d80c40 0xc821d80cc0 0xc821d80d40] } +&{glGetDoublei_v QOpenGLFunctions_4_3_Compatibility::glGetDoublei_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d80ec0 0xc821d80f40 0xc821d81000] } +&{glGetDoublev QOpenGLFunctions_4_3_Compatibility::glGetDoublev commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d81180 0xc821d81240] } +&{glGetError QOpenGLFunctions_4_3_Compatibility::glGetError commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLenum [] } +&{glGetFloati_v QOpenGLFunctions_4_3_Compatibility::glGetFloati_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d81460 0xc821d814e0 0xc821d815c0] } +&{glGetFloatv QOpenGLFunctions_4_3_Compatibility::glGetFloatv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d81720 0xc821d81800] } +&{glGetFragDataIndex QOpenGLFunctions_4_3_Compatibility::glGetFragDataIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLint [0xc821d819e0 0xc821d81aa0] } +&{glGetFragDataLocation QOpenGLFunctions_4_3_Compatibility::glGetFragDataLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLint [0xc821d81c80 0xc821d81d00] } +&{glGetFramebufferAttachmentParameteriv QOpenGLFunctions_4_3_Compatibility::glGetFramebufferAttachmentParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d81e80 0xc821d81f40 0xc821d81fe0 0xc821d8c060] } +&{glGetFramebufferParameteriv QOpenGLFunctions_4_3_Compatibility::glGetFramebufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d8c260 0xc821d8c320 0xc821d8c3a0] } +&{glGetHistogram QOpenGLFunctions_4_3_Compatibility::glGetHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d8c540 0xc821d8c5c0 0xc821d8c660 0xc821d8c720 0xc821d8c7c0] } +&{glGetHistogramParameterfv QOpenGLFunctions_4_3_Compatibility::glGetHistogramParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d8c9e0 0xc821d8ca80 0xc821d8cb40] } +&{glGetHistogramParameteriv QOpenGLFunctions_4_3_Compatibility::glGetHistogramParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d8cd20 0xc821d8cda0 0xc821d8ce20] } +&{glGetInteger64i_v QOpenGLFunctions_4_3_Compatibility::glGetInteger64i_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d8cfc0 0xc821d8d040 0xc821d8d0c0] } +&{glGetInteger64v QOpenGLFunctions_4_3_Compatibility::glGetInteger64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d8d200 0xc821d8d280] } +&{glGetIntegeri_v QOpenGLFunctions_4_3_Compatibility::glGetIntegeri_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d8d3c0 0xc821d8d440 0xc821d8d4c0] } +&{glGetIntegerv QOpenGLFunctions_4_3_Compatibility::glGetIntegerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d8d600 0xc821d8d680] } +&{glGetInternalformati64v QOpenGLFunctions_4_3_Compatibility::glGetInternalformati64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d8d820 0xc821d8d8a0 0xc821d8d920 0xc821d8d9a0 0xc821d8da40] } +&{glGetInternalformativ QOpenGLFunctions_4_3_Compatibility::glGetInternalformativ commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d8dbe0 0xc821d8dc60 0xc821d8dce0 0xc821d8dd60 0xc821d8de00] } +&{glGetLightfv QOpenGLFunctions_4_3_Compatibility::glGetLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d8df40 0xc821d8dfc0 0xc821d9a040] } +&{glGetLightiv QOpenGLFunctions_4_3_Compatibility::glGetLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d9a180 0xc821d9a200 0xc821d9a280] } +&{glGetMapdv QOpenGLFunctions_4_3_Compatibility::glGetMapdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d9a3e0 0xc821d9a460 0xc821d9a500] } +&{glGetMapfv QOpenGLFunctions_4_3_Compatibility::glGetMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d9a6a0 0xc821d9a780 0xc821d9a820] } +&{glGetMapiv QOpenGLFunctions_4_3_Compatibility::glGetMapiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d9a9c0 0xc821d9aa40 0xc821d9aae0] } +&{glGetMaterialfv QOpenGLFunctions_4_3_Compatibility::glGetMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d9ac80 0xc821d9ad40 0xc821d9adc0] } +&{glGetMaterialiv QOpenGLFunctions_4_3_Compatibility::glGetMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d9af60 0xc821d9afe0 0xc821d9b060] } +&{glGetMinmax QOpenGLFunctions_4_3_Compatibility::glGetMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d9b200 0xc821d9b2a0 0xc821d9b360 0xc821d9b3e0 0xc821d9b4a0] } +&{glGetMinmaxParameterfv QOpenGLFunctions_4_3_Compatibility::glGetMinmaxParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d9b6c0 0xc821d9b760 0xc821d9b7e0] } +&{glGetMinmaxParameteriv QOpenGLFunctions_4_3_Compatibility::glGetMinmaxParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d9b9e0 0xc821d9ba80 0xc821d9bb20] } +&{glGetMultisamplefv QOpenGLFunctions_4_3_Compatibility::glGetMultisamplefv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d9bd40 0xc821d9bde0 0xc821d9bea0] } +&{glGetPixelMapfv QOpenGLFunctions_4_3_Compatibility::glGetPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8223e4040 0xc8223e40e0] } +&{glGetPixelMapuiv QOpenGLFunctions_4_3_Compatibility::glGetPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8223e4260 0xc8223e4320] } +&{glGetPixelMapusv QOpenGLFunctions_4_3_Compatibility::glGetPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8223e4460 0xc8223e44e0] } +&{glGetPointerv QOpenGLFunctions_4_3_Compatibility::glGetPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8223e4640 0xc8223e46e0] } +&{glGetPolygonStipple QOpenGLFunctions_4_3_Compatibility::glGetPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8223e4900] } +&{glGetProgramBinary QOpenGLFunctions_4_3_Compatibility::glGetProgramBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8223e4b40 0xc8223e4bc0 0xc8223e4c40 0xc8223e4d20 0xc8223e4e00] } +&{glGetProgramInfoLog QOpenGLFunctions_4_3_Compatibility::glGetProgramInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8223e4fa0 0xc8223e5040 0xc8223e50e0 0xc8223e5160] } +&{glGetProgramInterfaceiv QOpenGLFunctions_4_3_Compatibility::glGetProgramInterfaceiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8223e5340 0xc8223e53c0 0xc8223e5440 0xc8223e54c0] } +&{glGetProgramPipelineInfoLog QOpenGLFunctions_4_3_Compatibility::glGetProgramPipelineInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8223e5660 0xc8223e56e0 0xc8223e5780 0xc8223e5800] } +&{glGetProgramPipelineiv QOpenGLFunctions_4_3_Compatibility::glGetProgramPipelineiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8223e59a0 0xc8223e5a20 0xc8223e5aa0] } +&{glGetProgramResourceIndex QOpenGLFunctions_4_3_Compatibility::glGetProgramResourceIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLuint [0xc8223e5c60 0xc8223e5ce0 0xc8223e5d60] } +&{glGetProgramResourceLocation QOpenGLFunctions_4_3_Compatibility::glGetProgramResourceLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLint [0xc8223e5f00 0xc8223e5f80 0xc8223f0000] } +&{glGetProgramResourceLocationIndex QOpenGLFunctions_4_3_Compatibility::glGetProgramResourceLocationIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLint [0xc8223f0140 0xc8223f01c0 0xc8223f0240] } +&{glGetProgramResourceName QOpenGLFunctions_4_3_Compatibility::glGetProgramResourceName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8223f03e0 0xc8223f0460 0xc8223f04e0 0xc8223f0560 0xc8223f0620 0xc8223f06a0] } +&{glGetProgramResourceiv QOpenGLFunctions_4_3_Compatibility::glGetProgramResourceiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8223f0880 0xc8223f0900 0xc8223f0980 0xc8223f0a00 0xc8223f0aa0 0xc8223f0b20 0xc8223f0ba0 0xc8223f0ca0] } +&{glGetProgramStageiv QOpenGLFunctions_4_3_Compatibility::glGetProgramStageiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8223f0ea0 0xc8223f0f60 0xc8223f0fe0 0xc8223f1060] } +&{glGetProgramiv QOpenGLFunctions_4_3_Compatibility::glGetProgramiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8223f11a0 0xc8223f1220 0xc8223f12a0] } +&{glGetQueryIndexediv QOpenGLFunctions_4_3_Compatibility::glGetQueryIndexediv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8223f1440 0xc8223f14c0 0xc8223f1540 0xc8223f15c0] } +&{glGetQueryObjecti64v QOpenGLFunctions_4_3_Compatibility::glGetQueryObjecti64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8223f1760 0xc8223f17e0 0xc8223f1880] } +&{glGetQueryObjectiv QOpenGLFunctions_4_3_Compatibility::glGetQueryObjectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8223f1aa0 0xc8223f1b60 0xc8223f1be0] } +&{glGetQueryObjectui64v QOpenGLFunctions_4_3_Compatibility::glGetQueryObjectui64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8223f1dc0 0xc8223f1e40 0xc8223f1ec0] } +&{glGetQueryObjectuiv QOpenGLFunctions_4_3_Compatibility::glGetQueryObjectuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822404060 0xc8224040e0 0xc822404160] } +&{glGetQueryiv QOpenGLFunctions_4_3_Compatibility::glGetQueryiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8224042a0 0xc822404320 0xc8224043a0] } +&{glGetRenderbufferParameteriv QOpenGLFunctions_4_3_Compatibility::glGetRenderbufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822404540 0xc8224045c0 0xc822404680] } +&{glGetSamplerParameterIiv QOpenGLFunctions_4_3_Compatibility::glGetSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8224048a0 0xc822404920 0xc8224049a0] } +&{glGetSamplerParameterIuiv QOpenGLFunctions_4_3_Compatibility::glGetSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822404c00 0xc822404ca0 0xc822404d20] } +&{glGetSamplerParameterfv QOpenGLFunctions_4_3_Compatibility::glGetSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822404f60 0xc822404fe0 0xc822405060] } +&{glGetSamplerParameteriv QOpenGLFunctions_4_3_Compatibility::glGetSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8224052a0 0xc822405320 0xc8224053c0] } +&{glGetSeparableFilter QOpenGLFunctions_4_3_Compatibility::glGetSeparableFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822405560 0xc822405620 0xc8224056e0 0xc822405760 0xc822405860 0xc8224058e0] } +&{glGetShaderInfoLog QOpenGLFunctions_4_3_Compatibility::glGetShaderInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822405a80 0xc822405b00 0xc822405b80 0xc822405c00] } +&{glGetShaderPrecisionFormat QOpenGLFunctions_4_3_Compatibility::glGetShaderPrecisionFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822405da0 0xc822405e20 0xc822405ea0 0xc822405f20] } +&{glGetShaderSource QOpenGLFunctions_4_3_Compatibility::glGetShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8224220c0 0xc822422140 0xc8224221c0 0xc822422240] } +&{glGetShaderiv QOpenGLFunctions_4_3_Compatibility::glGetShaderiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822422380 0xc822422400 0xc822422480] } +&{glGetString QOpenGLFunctions_4_3_Compatibility::glGetString commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false const GLubyte * [0xc8224225c0] } +&{glGetStringi QOpenGLFunctions_4_3_Compatibility::glGetStringi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false const GLubyte * [0xc822422700 0xc822422780] } +&{glGetSubroutineIndex QOpenGLFunctions_4_3_Compatibility::glGetSubroutineIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLuint [0xc8224229c0 0xc822422a60 0xc822422ae0] } +&{glGetSubroutineUniformLocation QOpenGLFunctions_4_3_Compatibility::glGetSubroutineUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLint [0xc822422d20 0xc822422dc0 0xc822422e40] } +&{glGetSynciv QOpenGLFunctions_4_3_Compatibility::glGetSynciv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822423000 0xc822423080 0xc822423100 0xc8224231e0 0xc8224232a0] } +&{glGetTexEnvfv QOpenGLFunctions_4_3_Compatibility::glGetTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822423440 0xc8224234e0 0xc822423560] } +&{glGetTexEnviv QOpenGLFunctions_4_3_Compatibility::glGetTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822423720 0xc8224237a0 0xc822423840] } +&{glGetTexGendv QOpenGLFunctions_4_3_Compatibility::glGetTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822423a00 0xc822423a80 0xc822423b20] } +&{glGetTexGenfv QOpenGLFunctions_4_3_Compatibility::glGetTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822423ce0 0xc822423d80 0xc822423e00] } +&{glGetTexGeniv QOpenGLFunctions_4_3_Compatibility::glGetTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822423f60 0xc822423fe0 0xc822428060] } +&{glGetTexImage QOpenGLFunctions_4_3_Compatibility::glGetTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8224281a0 0xc822428220 0xc8224282a0 0xc822428320 0xc8224283c0] } +&{glGetTexLevelParameterfv QOpenGLFunctions_4_3_Compatibility::glGetTexLevelParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822428620 0xc8224286a0 0xc822428740 0xc8224287e0] } +&{glGetTexLevelParameteriv QOpenGLFunctions_4_3_Compatibility::glGetTexLevelParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822428a00 0xc822428aa0 0xc822428b20 0xc822428be0] } +&{glGetTexParameterIiv QOpenGLFunctions_4_3_Compatibility::glGetTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822428de0 0xc822428e80 0xc822428f60] } +&{glGetTexParameterIuiv QOpenGLFunctions_4_3_Compatibility::glGetTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822429120 0xc8224291a0 0xc822429220] } +&{glGetTexParameterfv QOpenGLFunctions_4_3_Compatibility::glGetTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8224293c0 0xc822429440 0xc8224294c0] } +&{glGetTexParameteriv QOpenGLFunctions_4_3_Compatibility::glGetTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822429660 0xc8224296e0 0xc822429760] } +&{glGetTransformFeedbackVarying QOpenGLFunctions_4_3_Compatibility::glGetTransformFeedbackVarying commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822429900 0xc822429980 0xc822429a00 0xc822429a80 0xc822429b20 0xc822429ba0 0xc822429c20] } +&{glGetUniformBlockIndex QOpenGLFunctions_4_3_Compatibility::glGetUniformBlockIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLuint [0xc822429dc0 0xc822429e40] } +&{glGetUniformIndices QOpenGLFunctions_4_3_Compatibility::glGetUniformIndices commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822429fe0 0xc822438060 0xc822438100 0xc822438220] } +&{glGetUniformLocation QOpenGLFunctions_4_3_Compatibility::glGetUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLint [0xc822438400 0xc8224384c0] } +&{glGetUniformSubroutineuiv QOpenGLFunctions_4_3_Compatibility::glGetUniformSubroutineuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8224386a0 0xc822438720 0xc8224387c0] } +&{glGetUniformdv QOpenGLFunctions_4_3_Compatibility::glGetUniformdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822438920 0xc8224389c0 0xc822438a40] } +&{glGetUniformfv QOpenGLFunctions_4_3_Compatibility::glGetUniformfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822438bc0 0xc822438c40 0xc822438ce0] } +&{glGetUniformiv QOpenGLFunctions_4_3_Compatibility::glGetUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822438e80 0xc822438f00 0xc822438fa0] } +&{glGetUniformuiv QOpenGLFunctions_4_3_Compatibility::glGetUniformuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822439140 0xc8224391c0 0xc822439260] } +&{glGetVertexAttribIiv QOpenGLFunctions_4_3_Compatibility::glGetVertexAttribIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822439460 0xc822439500 0xc8224395c0] } +&{glGetVertexAttribIuiv QOpenGLFunctions_4_3_Compatibility::glGetVertexAttribIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8224397a0 0xc822439880 0xc822439900] } +&{glGetVertexAttribLdv QOpenGLFunctions_4_3_Compatibility::glGetVertexAttribLdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822439ac0 0xc822439b40 0xc822439bc0] } +&{glGetVertexAttribPointerv QOpenGLFunctions_4_3_Compatibility::glGetVertexAttribPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822439d60 0xc822439de0 0xc822439e60] } +&{glGetVertexAttribdv QOpenGLFunctions_4_3_Compatibility::glGetVertexAttribdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82255e000 0xc82255e0e0 0xc82255e160] } +&{glGetVertexAttribfv QOpenGLFunctions_4_3_Compatibility::glGetVertexAttribfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82255e360 0xc82255e420 0xc82255e4a0] } +&{glGetVertexAttribiv QOpenGLFunctions_4_3_Compatibility::glGetVertexAttribiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82255e6a0 0xc82255e760 0xc82255e800] } +&{glHint QOpenGLFunctions_4_3_Compatibility::glHint commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82255e980 0xc82255ea00] } +&{glHistogram QOpenGLFunctions_4_3_Compatibility::glHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82255ebc0 0xc82255ec60 0xc82255ed00 0xc82255eda0] } +&{glIndexMask QOpenGLFunctions_4_3_Compatibility::glIndexMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82255ef40] } +&{glIndexPointer QOpenGLFunctions_4_3_Compatibility::glIndexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82255f0e0 0xc82255f1a0 0xc82255f240] } +&{glIndexd QOpenGLFunctions_4_3_Compatibility::glIndexd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82255f400] } +&{glIndexdv QOpenGLFunctions_4_3_Compatibility::glIndexdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82255f560] } +&{glIndexf QOpenGLFunctions_4_3_Compatibility::glIndexf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82255f740] } +&{glIndexfv QOpenGLFunctions_4_3_Compatibility::glIndexfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82255f900] } +&{glIndexi QOpenGLFunctions_4_3_Compatibility::glIndexi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82255faa0] } +&{glIndexiv QOpenGLFunctions_4_3_Compatibility::glIndexiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82255fc80] } +&{glIndexs QOpenGLFunctions_4_3_Compatibility::glIndexs commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82255fe40] } +&{glIndexsv QOpenGLFunctions_4_3_Compatibility::glIndexsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82255ffe0] } +&{glIndexub QOpenGLFunctions_4_3_Compatibility::glIndexub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82256a1a0] } +&{glIndexubv QOpenGLFunctions_4_3_Compatibility::glIndexubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82256a340] } +&{glInitNames QOpenGLFunctions_4_3_Compatibility::glInitNames commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [] } +&{glInterleavedArrays QOpenGLFunctions_4_3_Compatibility::glInterleavedArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82256a600 0xc82256a6a0 0xc82256a720] } +&{glInvalidateBufferData QOpenGLFunctions_4_3_Compatibility::glInvalidateBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82256a940] } +&{glInvalidateBufferSubData QOpenGLFunctions_4_3_Compatibility::glInvalidateBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82256ab20 0xc82256abc0 0xc82256ac80] } +&{glInvalidateFramebuffer QOpenGLFunctions_4_3_Compatibility::glInvalidateFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82256aea0 0xc82256af20 0xc82256afa0] } +&{glInvalidateSubFramebuffer QOpenGLFunctions_4_3_Compatibility::glInvalidateSubFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82256b1c0 0xc82256b260 0xc82256b300 0xc82256b3c0 0xc82256b460 0xc82256b500 0xc82256b5a0] } +&{glInvalidateTexImage QOpenGLFunctions_4_3_Compatibility::glInvalidateTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82256b7c0 0xc82256b860] } +&{glInvalidateTexSubImage QOpenGLFunctions_4_3_Compatibility::glInvalidateTexSubImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82256ba60 0xc82256bb00 0xc82256bba0 0xc82256bc40 0xc82256bd20 0xc82256bdc0 0xc82256be40 0xc82256bee0] } +&{glIsBuffer QOpenGLFunctions_4_3_Compatibility::glIsBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLboolean [0xc82257a080] } +&{glIsEnabled QOpenGLFunctions_4_3_Compatibility::glIsEnabled commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLboolean [0xc82257a220] } +&{glIsEnabledi QOpenGLFunctions_4_3_Compatibility::glIsEnabledi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLboolean [0xc82257a3c0 0xc82257a440] } +&{glIsFramebuffer QOpenGLFunctions_4_3_Compatibility::glIsFramebuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLboolean [0xc82257a5c0] } +&{glIsList QOpenGLFunctions_4_3_Compatibility::glIsList commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLboolean [0xc82257a780] } +&{glIsProgram QOpenGLFunctions_4_3_Compatibility::glIsProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLboolean [0xc82257a920] } +&{glIsProgramPipeline QOpenGLFunctions_4_3_Compatibility::glIsProgramPipeline commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLboolean [0xc82257ab00] } +&{glIsQuery QOpenGLFunctions_4_3_Compatibility::glIsQuery commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLboolean [0xc82257acc0] } +&{glIsRenderbuffer QOpenGLFunctions_4_3_Compatibility::glIsRenderbuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLboolean [0xc82257ae80] } +&{glIsSampler QOpenGLFunctions_4_3_Compatibility::glIsSampler commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLboolean [0xc82257b000] } +&{glIsShader QOpenGLFunctions_4_3_Compatibility::glIsShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLboolean [0xc82257b1a0] } +&{glIsSync QOpenGLFunctions_4_3_Compatibility::glIsSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLboolean [0xc82257b360] } +&{glIsTexture QOpenGLFunctions_4_3_Compatibility::glIsTexture commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLboolean [0xc82257b4c0] } +&{glIsTransformFeedback QOpenGLFunctions_4_3_Compatibility::glIsTransformFeedback commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLboolean [0xc82257b6e0] } +&{glIsVertexArray QOpenGLFunctions_4_3_Compatibility::glIsVertexArray commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLboolean [0xc82257b880] } +&{glLightModelf QOpenGLFunctions_4_3_Compatibility::glLightModelf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82257ba00 0xc82257bac0] } +&{glLightModelfv QOpenGLFunctions_4_3_Compatibility::glLightModelfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82257bc40 0xc82257bce0] } +&{glLightModeli QOpenGLFunctions_4_3_Compatibility::glLightModeli commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82257be80 0xc82257bf20] } +&{glLightModeliv QOpenGLFunctions_4_3_Compatibility::glLightModeliv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225880c0 0xc822588160] } +&{glLightf QOpenGLFunctions_4_3_Compatibility::glLightf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225882e0 0xc822588360 0xc822588420] } +&{glLightfv QOpenGLFunctions_4_3_Compatibility::glLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225885a0 0xc822588640 0xc8225886c0] } +&{glLighti QOpenGLFunctions_4_3_Compatibility::glLighti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822588880 0xc822588920 0xc8225889a0] } +&{glLightiv QOpenGLFunctions_4_3_Compatibility::glLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822588b80 0xc822588c00 0xc822588c80] } +&{glLineStipple QOpenGLFunctions_4_3_Compatibility::glLineStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822588e20 0xc822588ee0] } +&{glLineWidth QOpenGLFunctions_4_3_Compatibility::glLineWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822589060] } +&{glLinkProgram QOpenGLFunctions_4_3_Compatibility::glLinkProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822589200] } +&{glListBase QOpenGLFunctions_4_3_Compatibility::glListBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225893e0] } +&{glLoadIdentity QOpenGLFunctions_4_3_Compatibility::glLoadIdentity commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [] } +&{glLoadMatrixd QOpenGLFunctions_4_3_Compatibility::glLoadMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822589600] } +&{glLoadMatrixf QOpenGLFunctions_4_3_Compatibility::glLoadMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822589780] } +&{glLoadName QOpenGLFunctions_4_3_Compatibility::glLoadName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822589960] } +&{glLoadTransposeMatrixd QOpenGLFunctions_4_3_Compatibility::glLoadTransposeMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822589b80] } +&{glLoadTransposeMatrixf QOpenGLFunctions_4_3_Compatibility::glLoadTransposeMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822589d60] } +&{glLogicOp QOpenGLFunctions_4_3_Compatibility::glLogicOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822589f40] } +&{glMap1d QOpenGLFunctions_4_3_Compatibility::glMap1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82259a0a0 0xc82259a180 0xc82259a220 0xc82259a2c0 0xc82259a360 0xc82259a400] } +&{glMap1f QOpenGLFunctions_4_3_Compatibility::glMap1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82259a5c0 0xc82259a660 0xc82259a6e0 0xc82259a760 0xc82259a860 0xc82259a920] } +&{glMap2d QOpenGLFunctions_4_3_Compatibility::glMap2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82259aa80 0xc82259ab20 0xc82259abe0 0xc82259ac80 0xc82259ad40 0xc82259adc0 0xc82259ae60 0xc82259af00 0xc82259afe0 0xc82259b080] } +&{glMap2f QOpenGLFunctions_4_3_Compatibility::glMap2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82259b1e0 0xc82259b280 0xc82259b340 0xc82259b3e0 0xc82259b4a0 0xc82259b560 0xc82259b5e0 0xc82259b660 0xc82259b740 0xc82259b7e0] } +&{glMapBuffer QOpenGLFunctions_4_3_Compatibility::glMapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLvoid * [0xc82259b980 0xc82259ba40] } +&{glMapBufferRange QOpenGLFunctions_4_3_Compatibility::glMapBufferRange commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLvoid * [0xc82259bba0 0xc82259bc80 0xc82259bd00 0xc82259bd80] } +&{glMapGrid1d QOpenGLFunctions_4_3_Compatibility::glMapGrid1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82259bf60 0xc82259bfe0 0xc8225a8060] } +&{glMapGrid1f QOpenGLFunctions_4_3_Compatibility::glMapGrid1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225a8200 0xc8225a82c0 0xc8225a8340] } +&{glMapGrid2d QOpenGLFunctions_4_3_Compatibility::glMapGrid2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225a84e0 0xc8225a8560 0xc8225a8600 0xc8225a8680 0xc8225a8760 0xc8225a87e0] } +&{glMapGrid2f QOpenGLFunctions_4_3_Compatibility::glMapGrid2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225a89a0 0xc8225a8a20 0xc8225a8ac0 0xc8225a8b80 0xc8225a8c40 0xc8225a8cc0] } +&{glMaterialf QOpenGLFunctions_4_3_Compatibility::glMaterialf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225a8e00 0xc8225a8ee0 0xc8225a8f80] } +&{glMaterialfv QOpenGLFunctions_4_3_Compatibility::glMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225a9100 0xc8225a91c0 0xc8225a9260] } +&{glMateriali QOpenGLFunctions_4_3_Compatibility::glMateriali commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225a9400 0xc8225a94a0 0xc8225a9560] } +&{glMaterialiv QOpenGLFunctions_4_3_Compatibility::glMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225a9700 0xc8225a9780 0xc8225a9820] } +&{glMatrixMode QOpenGLFunctions_4_3_Compatibility::glMatrixMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225a9a00] } +&{glMemoryBarrier QOpenGLFunctions_4_3_Compatibility::glMemoryBarrier commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225a9b60] } +&{glMinSampleShading QOpenGLFunctions_4_3_Compatibility::glMinSampleShading commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225a9d80] } +&{glMinmax QOpenGLFunctions_4_3_Compatibility::glMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225a9f00 0xc8225a9fa0 0xc8225ba040] } +&{glMultMatrixd QOpenGLFunctions_4_3_Compatibility::glMultMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225ba1e0] } +&{glMultMatrixf QOpenGLFunctions_4_3_Compatibility::glMultMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225ba360] } +&{glMultTransposeMatrixd QOpenGLFunctions_4_3_Compatibility::glMultTransposeMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225ba580] } +&{glMultTransposeMatrixf QOpenGLFunctions_4_3_Compatibility::glMultTransposeMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225ba760] } +&{glMultiDrawArrays QOpenGLFunctions_4_3_Compatibility::glMultiDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225ba980 0xc8225baa20 0xc8225baaa0 0xc8225bab40] } +&{glMultiDrawArraysIndirect QOpenGLFunctions_4_3_Compatibility::glMultiDrawArraysIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225bad40 0xc8225bae20 0xc8225baec0 0xc8225baf40] } +&{glMultiDrawElements QOpenGLFunctions_4_3_Compatibility::glMultiDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225bb140 0xc8225bb1e0 0xc8225bb2c0 0xc8225bb360 0xc8225bb4a0] } +&{glMultiDrawElementsBaseVertex QOpenGLFunctions_4_3_Compatibility::glMultiDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225bb6a0 0xc8225bb720 0xc8225bb7c0 0xc8225bb8c0 0xc8225bb9a0 0xc8225bba80] } +&{glMultiDrawElementsIndirect QOpenGLFunctions_4_3_Compatibility::glMultiDrawElementsIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225bbc80 0xc8225bbd00 0xc8225bbda0 0xc8225bbe40 0xc8225bbf20] } +&{glMultiTexCoord1d QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225ca140 0xc8225ca1c0] } +&{glMultiTexCoord1dv QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225ca3c0 0xc8225ca480] } +&{glMultiTexCoord1f QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225ca660 0xc8225ca700] } +&{glMultiTexCoord1fv QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225ca920 0xc8225ca9c0] } +&{glMultiTexCoord1i QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225cabc0 0xc8225cac60] } +&{glMultiTexCoord1iv QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225cae60 0xc8225caee0] } +&{glMultiTexCoord1s QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225cb120 0xc8225cb1c0] } +&{glMultiTexCoord1sv QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225cb3a0 0xc8225cb440] } +&{glMultiTexCoord2d QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225cb680 0xc8225cb720 0xc8225cb7a0] } +&{glMultiTexCoord2dv QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225cb9e0 0xc8225cbaa0] } +&{glMultiTexCoord2f QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225cbc80 0xc8225cbd20 0xc8225cbde0] } +&{glMultiTexCoord2fv QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225cbfc0 0xc8225d8060] } +&{glMultiTexCoord2i QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225d8280 0xc8225d8300 0xc8225d83a0] } +&{glMultiTexCoord2iv QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225d85e0 0xc8225d8660] } +&{glMultiTexCoord2s QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225d8880 0xc8225d8940 0xc8225d89e0] } +&{glMultiTexCoord2sv QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225d8be0 0xc8225d8c80] } +&{glMultiTexCoord3d QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225d8ea0 0xc8225d8f40 0xc8225d8fc0 0xc8225d90a0] } +&{glMultiTexCoord3dv QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225d9280 0xc8225d9360] } +&{glMultiTexCoord3f QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225d9540 0xc8225d9620 0xc8225d96c0 0xc8225d9760] } +&{glMultiTexCoord3fv QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225d9980 0xc8225d9a20] } +&{glMultiTexCoord3i QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225d9c40 0xc8225d9ce0 0xc8225d9d60 0xc8225d9e20] } +&{glMultiTexCoord3iv QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225d9fe0 0xc8225ea0a0] } +&{glMultiTexCoord3s QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225ea280 0xc8225ea340 0xc8225ea3e0 0xc8225ea460] } +&{glMultiTexCoord3sv QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225ea680 0xc8225ea720] } +&{glMultiTexCoord4d QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225ea960 0xc8225eaa00 0xc8225eaaa0 0xc8225eab40 0xc8225eabe0] } +&{glMultiTexCoord4dv QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225eae20 0xc8225eaea0] } +&{glMultiTexCoord4f QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225eb0e0 0xc8225eb180 0xc8225eb220 0xc8225eb2a0 0xc8225eb380] } +&{glMultiTexCoord4fv QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225eb5a0 0xc8225eb640] } +&{glMultiTexCoord4i QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225eb860 0xc8225eb8e0 0xc8225eb960 0xc8225eba20 0xc8225ebae0] } +&{glMultiTexCoord4iv QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225ebce0 0xc8225ebd80] } +&{glMultiTexCoord4s QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225ebfc0 0xc8225f8040 0xc8225f80e0 0xc8225f81c0 0xc8225f8280] } +&{glMultiTexCoord4sv QOpenGLFunctions_4_3_Compatibility::glMultiTexCoord4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225f84a0 0xc8225f8540] } +&{glMultiTexCoordP1ui QOpenGLFunctions_4_3_Compatibility::glMultiTexCoordP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225f8760 0xc8225f8800 0xc8225f88c0] } +&{glMultiTexCoordP1uiv QOpenGLFunctions_4_3_Compatibility::glMultiTexCoordP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225f8ac0 0xc8225f8b60 0xc8225f8be0] } +&{glMultiTexCoordP2ui QOpenGLFunctions_4_3_Compatibility::glMultiTexCoordP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225f8e20 0xc8225f8ec0 0xc8225f8f40] } +&{glMultiTexCoordP2uiv QOpenGLFunctions_4_3_Compatibility::glMultiTexCoordP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225f9180 0xc8225f9200 0xc8225f92e0] } +&{glMultiTexCoordP3ui QOpenGLFunctions_4_3_Compatibility::glMultiTexCoordP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225f94c0 0xc8225f95a0 0xc8225f9640] } +&{glMultiTexCoordP3uiv QOpenGLFunctions_4_3_Compatibility::glMultiTexCoordP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225f9860 0xc8225f9900 0xc8225f99a0] } +&{glMultiTexCoordP4ui QOpenGLFunctions_4_3_Compatibility::glMultiTexCoordP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225f9bc0 0xc8225f9c40 0xc8225f9cc0] } +&{glMultiTexCoordP4uiv QOpenGLFunctions_4_3_Compatibility::glMultiTexCoordP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8225f9f00 0xc8225f9f80 0xc822606060] } +&{glNewList QOpenGLFunctions_4_3_Compatibility::glNewList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226061e0 0xc822606280] } +&{glNormal3b QOpenGLFunctions_4_3_Compatibility::glNormal3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822606440 0xc8226064c0 0xc822606560] } +&{glNormal3bv QOpenGLFunctions_4_3_Compatibility::glNormal3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822606720] } +&{glNormal3d QOpenGLFunctions_4_3_Compatibility::glNormal3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226068c0 0xc822606980 0xc822606a00] } +&{glNormal3dv QOpenGLFunctions_4_3_Compatibility::glNormal3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822606bc0] } +&{glNormal3f QOpenGLFunctions_4_3_Compatibility::glNormal3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822606d40 0xc822606dc0 0xc822606ea0] } +&{glNormal3fv QOpenGLFunctions_4_3_Compatibility::glNormal3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822607040] } +&{glNormal3i QOpenGLFunctions_4_3_Compatibility::glNormal3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226071e0 0xc822607280 0xc822607340] } +&{glNormal3iv QOpenGLFunctions_4_3_Compatibility::glNormal3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226074e0] } +&{glNormal3s QOpenGLFunctions_4_3_Compatibility::glNormal3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822607660 0xc822607720 0xc8226077a0] } +&{glNormal3sv QOpenGLFunctions_4_3_Compatibility::glNormal3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822607940] } +&{glNormalP3ui QOpenGLFunctions_4_3_Compatibility::glNormalP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822607ae0 0xc822607ba0] } +&{glNormalP3uiv QOpenGLFunctions_4_3_Compatibility::glNormalP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822607d00 0xc822607de0] } +&{glNormalPointer QOpenGLFunctions_4_3_Compatibility::glNormalPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822607f40 0xc822607fe0 0xc822616080] } +&{glOrtho QOpenGLFunctions_4_3_Compatibility::glOrtho commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822616220 0xc8226162a0 0xc822616340 0xc8226163e0 0xc8226164c0 0xc822616560] } +&{glPassThrough QOpenGLFunctions_4_3_Compatibility::glPassThrough commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226166c0] } +&{glPatchParameterfv QOpenGLFunctions_4_3_Compatibility::glPatchParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822616900 0xc822616980] } +&{glPatchParameteri QOpenGLFunctions_4_3_Compatibility::glPatchParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822616be0 0xc822616c60] } +&{glPauseTransformFeedback QOpenGLFunctions_4_3_Compatibility::glPauseTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [] } +&{glPixelMapfv QOpenGLFunctions_4_3_Compatibility::glPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822616f20 0xc822616fa0 0xc822617080] } +&{glPixelMapuiv QOpenGLFunctions_4_3_Compatibility::glPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822617200 0xc8226172a0 0xc822617360] } +&{glPixelMapusv QOpenGLFunctions_4_3_Compatibility::glPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226174e0 0xc822617580 0xc822617660] } +&{glPixelStoref QOpenGLFunctions_4_3_Compatibility::glPixelStoref commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226177c0 0xc822617860] } +&{glPixelStorei QOpenGLFunctions_4_3_Compatibility::glPixelStorei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822617a20 0xc822617ac0] } +&{glPixelTransferf QOpenGLFunctions_4_3_Compatibility::glPixelTransferf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822617c40 0xc822617cc0] } +&{glPixelTransferi QOpenGLFunctions_4_3_Compatibility::glPixelTransferi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822617ea0 0xc822617f40] } +&{glPixelZoom QOpenGLFunctions_4_3_Compatibility::glPixelZoom commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822624120 0xc8226241c0] } +&{glPointParameterf QOpenGLFunctions_4_3_Compatibility::glPointParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226243e0 0xc822624460] } +&{glPointParameterfv QOpenGLFunctions_4_3_Compatibility::glPointParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226246a0 0xc822624720] } +&{glPointParameteri QOpenGLFunctions_4_3_Compatibility::glPointParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822624940 0xc8226249c0] } +&{glPointParameteriv QOpenGLFunctions_4_3_Compatibility::glPointParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822624be0 0xc822624c60] } +&{glPointSize QOpenGLFunctions_4_3_Compatibility::glPointSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822624e40] } +&{glPolygonMode QOpenGLFunctions_4_3_Compatibility::glPolygonMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822624fe0 0xc822625080] } +&{glPolygonOffset QOpenGLFunctions_4_3_Compatibility::glPolygonOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822625220 0xc8226252e0] } +&{glPolygonStipple QOpenGLFunctions_4_3_Compatibility::glPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822625440] } +&{glPopAttrib QOpenGLFunctions_4_3_Compatibility::glPopAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [] } +&{glPopClientAttrib QOpenGLFunctions_4_3_Compatibility::glPopClientAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [] } +&{glPopMatrix QOpenGLFunctions_4_3_Compatibility::glPopMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [] } +&{glPopName QOpenGLFunctions_4_3_Compatibility::glPopName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [] } +&{glPrimitiveRestartIndex QOpenGLFunctions_4_3_Compatibility::glPrimitiveRestartIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822625940] } +&{glPrioritizeTextures QOpenGLFunctions_4_3_Compatibility::glPrioritizeTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822625b80 0xc822625c00 0xc822625ce0] } +&{glProgramBinary QOpenGLFunctions_4_3_Compatibility::glProgramBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822625e60 0xc822625ee0 0xc822625fc0 0xc822636060] } +&{glProgramParameteri QOpenGLFunctions_4_3_Compatibility::glProgramParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822636280 0xc822636320 0xc8226363c0] } +&{glProgramUniform1d QOpenGLFunctions_4_3_Compatibility::glProgramUniform1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226365c0 0xc822636640 0xc822636700] } +&{glProgramUniform1dv QOpenGLFunctions_4_3_Compatibility::glProgramUniform1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226368e0 0xc8226369a0 0xc822636a20 0xc822636ae0] } +&{glProgramUniform1f QOpenGLFunctions_4_3_Compatibility::glProgramUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822636ce0 0xc822636d60 0xc822636e20] } +&{glProgramUniform1fv QOpenGLFunctions_4_3_Compatibility::glProgramUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822637000 0xc822637080 0xc822637160 0xc8226371e0] } +&{glProgramUniform1i QOpenGLFunctions_4_3_Compatibility::glProgramUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226373c0 0xc822637480 0xc822637500] } +&{glProgramUniform1iv QOpenGLFunctions_4_3_Compatibility::glProgramUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822637720 0xc8226377a0 0xc822637860 0xc8226378e0] } +&{glProgramUniform1ui QOpenGLFunctions_4_3_Compatibility::glProgramUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822637ac0 0xc822637ba0 0xc822637c20] } +&{glProgramUniform1uiv QOpenGLFunctions_4_3_Compatibility::glProgramUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822637e00 0xc822637ec0 0xc822637f40 0xc822648000] } +&{glProgramUniform2d QOpenGLFunctions_4_3_Compatibility::glProgramUniform2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226481e0 0xc8226482a0 0xc822648340 0xc8226483c0] } +&{glProgramUniform2dv QOpenGLFunctions_4_3_Compatibility::glProgramUniform2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822648600 0xc822648680 0xc822648700 0xc8226487e0] } +&{glProgramUniform2f QOpenGLFunctions_4_3_Compatibility::glProgramUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822648a00 0xc822648aa0 0xc822648b40 0xc822648bc0] } +&{glProgramUniform2fv QOpenGLFunctions_4_3_Compatibility::glProgramUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822648de0 0xc822648ea0 0xc822648f40 0xc822648fc0] } +&{glProgramUniform2i QOpenGLFunctions_4_3_Compatibility::glProgramUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226491c0 0xc822649260 0xc822649320 0xc8226493c0] } +&{glProgramUniform2iv QOpenGLFunctions_4_3_Compatibility::glProgramUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226495e0 0xc822649680 0xc822649720 0xc8226497a0] } +&{glProgramUniform2ui QOpenGLFunctions_4_3_Compatibility::glProgramUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226499e0 0xc822649a60 0xc822649b40 0xc822649be0] } +&{glProgramUniform2uiv QOpenGLFunctions_4_3_Compatibility::glProgramUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822649e00 0xc822649ea0 0xc822649f40 0xc822649fc0] } +&{glProgramUniform3d QOpenGLFunctions_4_3_Compatibility::glProgramUniform3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d301a0 0xc821d30220 0xc821d302a0 0xc821d30380 0xc821d30420] } +&{glProgramUniform3dv QOpenGLFunctions_4_3_Compatibility::glProgramUniform3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d30660 0xc821d306e0 0xc821d30760 0xc821d30860] } +&{glProgramUniform3f QOpenGLFunctions_4_3_Compatibility::glProgramUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d30a40 0xc821d30b00 0xc821d30b80 0xc821d30c40 0xc821d30d20] } +&{glProgramUniform3fv QOpenGLFunctions_4_3_Compatibility::glProgramUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d30f00 0xc821d30fa0 0xc821d31060 0xc821d31100] } +&{glProgramUniform3i QOpenGLFunctions_4_3_Compatibility::glProgramUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d31300 0xc821d31380 0xc821d31400 0xc821d314a0 0xc821d315a0] } +&{glProgramUniform3iv QOpenGLFunctions_4_3_Compatibility::glProgramUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d317a0 0xc821d31820 0xc821d318c0 0xc821d31940] } +&{glProgramUniform3ui QOpenGLFunctions_4_3_Compatibility::glProgramUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d31b60 0xc821d31be0 0xc821d31ca0 0xc821d31d60 0xc821d31e20] } +&{glProgramUniform3uiv QOpenGLFunctions_4_3_Compatibility::glProgramUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822658000 0xc8226580e0 0xc822658180 0xc822658220] } +&{glProgramUniform4d QOpenGLFunctions_4_3_Compatibility::glProgramUniform4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822658440 0xc8226584e0 0xc822658560 0xc822658640 0xc822658700 0xc8226587a0] } +&{glProgramUniform4dv QOpenGLFunctions_4_3_Compatibility::glProgramUniform4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226589c0 0xc822658a60 0xc822658ae0 0xc822658ba0] } +&{glProgramUniform4f QOpenGLFunctions_4_3_Compatibility::glProgramUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822658dc0 0xc822658e40 0xc822658ec0 0xc822658fa0 0xc822659060 0xc8226590e0] } +&{glProgramUniform4fv QOpenGLFunctions_4_3_Compatibility::glProgramUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822659300 0xc8226593a0 0xc822659420 0xc8226594e0] } +&{glProgramUniform4i QOpenGLFunctions_4_3_Compatibility::glProgramUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226596e0 0xc822659780 0xc822659800 0xc8226598e0 0xc8226599a0 0xc822659a20] } +&{glProgramUniform4iv QOpenGLFunctions_4_3_Compatibility::glProgramUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822659c40 0xc822659ce0 0xc822659da0 0xc822659e40] } +&{glProgramUniform4ui QOpenGLFunctions_4_3_Compatibility::glProgramUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82266a060 0xc82266a0e0 0xc82266a1a0 0xc82266a220 0xc82266a300 0xc82266a3a0] } +&{glProgramUniform4uiv QOpenGLFunctions_4_3_Compatibility::glProgramUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82266a5a0 0xc82266a620 0xc82266a6c0 0xc82266a780] } +&{glProgramUniformMatrix2dv QOpenGLFunctions_4_3_Compatibility::glProgramUniformMatrix2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82266a9a0 0xc82266aa40 0xc82266aac0 0xc82266ab60 0xc82266ac60] } +&{glProgramUniformMatrix2fv QOpenGLFunctions_4_3_Compatibility::glProgramUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82266ae80 0xc82266af20 0xc82266afc0 0xc82266b040 0xc82266b140] } +&{glProgramUniformMatrix2x3dv QOpenGLFunctions_4_3_Compatibility::glProgramUniformMatrix2x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82266b340 0xc82266b3c0 0xc82266b4a0 0xc82266b540 0xc82266b600] } +&{glProgramUniformMatrix2x3fv QOpenGLFunctions_4_3_Compatibility::glProgramUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82266b840 0xc82266b8e0 0xc82266b960 0xc82266ba00 0xc82266bb00] } +&{glProgramUniformMatrix2x4dv QOpenGLFunctions_4_3_Compatibility::glProgramUniformMatrix2x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc82266bce0 0xc82266bdc0 0xc82266be60 0xc82266bf00 0xc82266bfa0] } +&{glProgramUniformMatrix2x4fv QOpenGLFunctions_4_3_Compatibility::glProgramUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226861c0 0xc822686260 0xc822686300 0xc822686380 0xc822686480] } +&{glProgramUniformMatrix3dv QOpenGLFunctions_4_3_Compatibility::glProgramUniformMatrix3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822686680 0xc822686720 0xc8226867c0 0xc822686860 0xc822686940] } +&{glProgramUniformMatrix3fv QOpenGLFunctions_4_3_Compatibility::glProgramUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822686b20 0xc822686c00 0xc822686ca0 0xc822686d40 0xc822686de0] } +&{glProgramUniformMatrix3x2dv QOpenGLFunctions_4_3_Compatibility::glProgramUniformMatrix3x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822687000 0xc8226870a0 0xc822687140 0xc8226871c0 0xc8226872c0] } +&{glProgramUniformMatrix3x2fv QOpenGLFunctions_4_3_Compatibility::glProgramUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226874c0 0xc822687560 0xc822687600 0xc8226876a0 0xc822687780] } +&{glProgramUniformMatrix3x4dv QOpenGLFunctions_4_3_Compatibility::glProgramUniformMatrix3x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822687960 0xc822687a40 0xc822687ae0 0xc822687b80 0xc822687c20] } +&{glProgramUniformMatrix3x4fv QOpenGLFunctions_4_3_Compatibility::glProgramUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822687e40 0xc822687ee0 0xc822687fa0 0xc822694020 0xc8226940e0] } +&{glProgramUniformMatrix4dv QOpenGLFunctions_4_3_Compatibility::glProgramUniformMatrix4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822694320 0xc8226943a0 0xc822694440 0xc8226944e0 0xc8226945c0] } +&{glProgramUniformMatrix4fv QOpenGLFunctions_4_3_Compatibility::glProgramUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226947c0 0xc822694840 0xc822694920 0xc8226949c0 0xc822694aa0] } +&{glProgramUniformMatrix4x2dv QOpenGLFunctions_4_3_Compatibility::glProgramUniformMatrix4x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822694c80 0xc822694d40 0xc822694de0 0xc822694e80 0xc822694f40] } +&{glProgramUniformMatrix4x2fv QOpenGLFunctions_4_3_Compatibility::glProgramUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822695160 0xc822695220 0xc8226952a0 0xc822695320 0xc822695400] } +&{glProgramUniformMatrix4x3dv QOpenGLFunctions_4_3_Compatibility::glProgramUniformMatrix4x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822695620 0xc8226956c0 0xc822695740 0xc8226957e0 0xc8226958e0] } +&{glProgramUniformMatrix4x3fv QOpenGLFunctions_4_3_Compatibility::glProgramUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822695ac0 0xc822695b80 0xc822695c20 0xc822695cc0 0xc822695da0] } +&{glProvokingVertex QOpenGLFunctions_4_3_Compatibility::glProvokingVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc822695f80] } +&{glPushAttrib QOpenGLFunctions_4_3_Compatibility::glPushAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226a2120] } +&{glPushClientAttrib QOpenGLFunctions_4_3_Compatibility::glPushClientAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226a2300] } +&{glPushMatrix QOpenGLFunctions_4_3_Compatibility::glPushMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [] } +&{glPushName QOpenGLFunctions_4_3_Compatibility::glPushName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226a2580] } +&{glQueryCounter QOpenGLFunctions_4_3_Compatibility::glQueryCounter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226a26e0 0xc8226a27a0] } +&{glRasterPos2d QOpenGLFunctions_4_3_Compatibility::glRasterPos2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226a2940 0xc8226a29c0] } +&{glRasterPos2dv QOpenGLFunctions_4_3_Compatibility::glRasterPos2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226a2b40] } +&{glRasterPos2f QOpenGLFunctions_4_3_Compatibility::glRasterPos2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226a2ce0 0xc8226a2d80] } +&{glRasterPos2fv QOpenGLFunctions_4_3_Compatibility::glRasterPos2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226a2f00] } +&{glRasterPos2i QOpenGLFunctions_4_3_Compatibility::glRasterPos2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226a30a0 0xc8226a3140] } +&{glRasterPos2iv QOpenGLFunctions_4_3_Compatibility::glRasterPos2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226a32c0] } +&{glRasterPos2s QOpenGLFunctions_4_3_Compatibility::glRasterPos2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226a3460 0xc8226a3500] } +&{glRasterPos2sv QOpenGLFunctions_4_3_Compatibility::glRasterPos2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226a3660] } +&{glRasterPos3d QOpenGLFunctions_4_3_Compatibility::glRasterPos3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226a3820 0xc8226a38c0 0xc8226a3940] } +&{glRasterPos3dv QOpenGLFunctions_4_3_Compatibility::glRasterPos3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226a3ac0] } +&{glRasterPos3f QOpenGLFunctions_4_3_Compatibility::glRasterPos3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226a3c60 0xc8226a3d00 0xc8226a3d80] } +&{glRasterPos3fv QOpenGLFunctions_4_3_Compatibility::glRasterPos3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226a3f20] } +&{glRasterPos3i QOpenGLFunctions_4_3_Compatibility::glRasterPos3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226b00c0 0xc8226b0140 0xc8226b01e0] } +&{glRasterPos3iv QOpenGLFunctions_4_3_Compatibility::glRasterPos3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226b0380] } +&{glRasterPos3s QOpenGLFunctions_4_3_Compatibility::glRasterPos3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226b0500 0xc8226b05a0 0xc8226b0640] } +&{glRasterPos3sv QOpenGLFunctions_4_3_Compatibility::glRasterPos3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226b07e0] } +&{glRasterPos4d QOpenGLFunctions_4_3_Compatibility::glRasterPos4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226b0940 0xc8226b0a00 0xc8226b0aa0 0xc8226b0b40] } +&{glRasterPos4dv QOpenGLFunctions_4_3_Compatibility::glRasterPos4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226b0cc0] } +&{glRasterPos4f QOpenGLFunctions_4_3_Compatibility::glRasterPos4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226b0e60 0xc8226b0f00 0xc8226b0fa0 0xc8226b1040] } +&{glRasterPos4fv QOpenGLFunctions_4_3_Compatibility::glRasterPos4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226b11c0] } +&{glRasterPos4i QOpenGLFunctions_4_3_Compatibility::glRasterPos4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226b1360 0xc8226b1400 0xc8226b1480 0xc8226b1520] } +&{glRasterPos4iv QOpenGLFunctions_4_3_Compatibility::glRasterPos4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226b16c0] } +&{glRasterPos4s QOpenGLFunctions_4_3_Compatibility::glRasterPos4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226b1840 0xc8226b18c0 0xc8226b1980 0xc8226b1a20] } +&{glRasterPos4sv QOpenGLFunctions_4_3_Compatibility::glRasterPos4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226b1bc0] } +&{glReadBuffer QOpenGLFunctions_4_3_Compatibility::glReadBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226b1d60] } +&{glReadPixels QOpenGLFunctions_4_3_Compatibility::glReadPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226b1f00 0xc8226b1fa0 0xc8226bc020 0xc8226bc0c0 0xc8226bc1a0 0xc8226bc220 0xc8226bc2e0] } +&{glRectd QOpenGLFunctions_4_3_Compatibility::glRectd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226bc440 0xc8226bc500 0xc8226bc580 0xc8226bc620] } +&{glRectdv QOpenGLFunctions_4_3_Compatibility::glRectdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226bc7c0 0xc8226bc860] } +&{glRectf QOpenGLFunctions_4_3_Compatibility::glRectf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226bc9e0 0xc8226bca80 0xc8226bcb00 0xc8226bcbe0] } +&{glRectfv QOpenGLFunctions_4_3_Compatibility::glRectfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226bcd80 0xc8226bce00] } +&{glRecti QOpenGLFunctions_4_3_Compatibility::glRecti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226bcfa0 0xc8226bd040 0xc8226bd0e0 0xc8226bd180] } +&{glRectiv QOpenGLFunctions_4_3_Compatibility::glRectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226bd2e0 0xc8226bd3a0] } +&{glRects QOpenGLFunctions_4_3_Compatibility::glRects commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226bd500 0xc8226bd5c0 0xc8226bd660 0xc8226bd6e0] } +&{glRectsv QOpenGLFunctions_4_3_Compatibility::glRectsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226bd8c0 0xc8226bd940] } +&{glReleaseShaderCompiler QOpenGLFunctions_4_3_Compatibility::glReleaseShaderCompiler commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [] } +&{glRenderMode QOpenGLFunctions_4_3_Compatibility::glRenderMode commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLint [0xc8226bdc20] } +&{glRenderbufferStorage QOpenGLFunctions_4_3_Compatibility::glRenderbufferStorage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8226bde60 0xc8226bdee0 0xc8226bdf80 0xc821d1c080] } +&{glRenderbufferStorageMultisample QOpenGLFunctions_4_3_Compatibility::glRenderbufferStorageMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d1c260 0xc821d1c340 0xc821d1c3e0 0xc821d1c480 0xc821d1c520] } +&{glResetHistogram QOpenGLFunctions_4_3_Compatibility::glResetHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d1c6e0] } +&{glResetMinmax QOpenGLFunctions_4_3_Compatibility::glResetMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d1c860] } +&{glResumeTransformFeedback QOpenGLFunctions_4_3_Compatibility::glResumeTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [] } +&{glRotated QOpenGLFunctions_4_3_Compatibility::glRotated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d1cb20 0xc821d1cbc0 0xc821d1cc60 0xc821d1cce0] } +&{glRotatef QOpenGLFunctions_4_3_Compatibility::glRotatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d1ce80 0xc821d1cf20 0xc821d1cfc0 0xc821d1d040] } +&{glSampleCoverage QOpenGLFunctions_4_3_Compatibility::glSampleCoverage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d1d200 0xc821d1d280] } +&{glSampleMaski QOpenGLFunctions_4_3_Compatibility::glSampleMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d1d4a0 0xc821d1d560] } +&{glSamplerParameterIiv QOpenGLFunctions_4_3_Compatibility::glSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d1d800 0xc821d1d8a0 0xc821d1d960] } +&{glSamplerParameterIuiv QOpenGLFunctions_4_3_Compatibility::glSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d1db80 0xc821d1dc60 0xc821d1dce0] } +&{glSamplerParameterf QOpenGLFunctions_4_3_Compatibility::glSamplerParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d1de80 0xc821d1df00 0xc821d1df80] } +&{glSamplerParameterfv QOpenGLFunctions_4_3_Compatibility::glSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d0a220 0xc821d0a340 0xc821d0a4a0] } +&{glSamplerParameteri QOpenGLFunctions_4_3_Compatibility::glSamplerParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d0a820 0xc821d0a940 0xc821d0aa00] } +&{glSamplerParameteriv QOpenGLFunctions_4_3_Compatibility::glSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d0ac60 0xc821d0ad20 0xc821d0ae00] } +&{glScaled QOpenGLFunctions_4_3_Compatibility::glScaled commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d0b000 0xc821d0b080 0xc821d0b180] } +&{glScalef QOpenGLFunctions_4_3_Compatibility::glScalef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d0b360 0xc821d0b4a0 0xc821d0b540] } +&{glScissor QOpenGLFunctions_4_3_Compatibility::glScissor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d0b6e0 0xc821d0b7e0 0xc821d0b8e0 0xc821d0b980] } +&{glScissorArrayv QOpenGLFunctions_4_3_Compatibility::glScissorArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d0bba0 0xc821d0bc60 0xc821d0bd40] } +&{glScissorIndexed QOpenGLFunctions_4_3_Compatibility::glScissorIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821d0bf20 0xc821d0bfa0 0xc821cfa0e0 0xc821cfa220 0xc821cfa340] } +&{glScissorIndexedv QOpenGLFunctions_4_3_Compatibility::glScissorIndexedv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821cfa5e0 0xc821cfa660] } +&{glSecondaryColor3b QOpenGLFunctions_4_3_Compatibility::glSecondaryColor3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821cfa9e0 0xc821cfaa60 0xc821cfabc0] } +&{glSecondaryColor3bv QOpenGLFunctions_4_3_Compatibility::glSecondaryColor3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821cfae40] } +&{glSecondaryColor3d QOpenGLFunctions_4_3_Compatibility::glSecondaryColor3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821cfb120 0xc821cfb1e0 0xc821cfb2c0] } +&{glSecondaryColor3dv QOpenGLFunctions_4_3_Compatibility::glSecondaryColor3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821cfb540] } +&{glSecondaryColor3f QOpenGLFunctions_4_3_Compatibility::glSecondaryColor3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821cfb7e0 0xc821cfb880 0xc821cfb980] } +&{glSecondaryColor3fv QOpenGLFunctions_4_3_Compatibility::glSecondaryColor3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821cfbc40] } +&{glSecondaryColor3i QOpenGLFunctions_4_3_Compatibility::glSecondaryColor3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821cfbf20 0xc821cfbfe0 0xc821cea0a0] } +&{glSecondaryColor3iv QOpenGLFunctions_4_3_Compatibility::glSecondaryColor3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821cea400] } +&{glSecondaryColor3s QOpenGLFunctions_4_3_Compatibility::glSecondaryColor3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821cea6e0 0xc821cea7a0 0xc821cea840] } +&{glSecondaryColor3sv QOpenGLFunctions_4_3_Compatibility::glSecondaryColor3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ceab20] } +&{glSecondaryColor3ub QOpenGLFunctions_4_3_Compatibility::glSecondaryColor3ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ceae80 0xc821ceafc0 0xc821ceb060] } +&{glSecondaryColor3ubv QOpenGLFunctions_4_3_Compatibility::glSecondaryColor3ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ceb380] } +&{glSecondaryColor3ui QOpenGLFunctions_4_3_Compatibility::glSecondaryColor3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ceb600 0xc821ceb6a0 0xc821ceb840] } +&{glSecondaryColor3uiv QOpenGLFunctions_4_3_Compatibility::glSecondaryColor3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821cebb00] } +&{glSecondaryColor3us QOpenGLFunctions_4_3_Compatibility::glSecondaryColor3us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821cebdc0 0xc821cebee0 0xc821cd8000] } +&{glSecondaryColor3usv QOpenGLFunctions_4_3_Compatibility::glSecondaryColor3usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821cd82e0] } +&{glSecondaryColorP3ui QOpenGLFunctions_4_3_Compatibility::glSecondaryColorP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821cd8540 0xc821cd8640] } +&{glSecondaryColorP3uiv QOpenGLFunctions_4_3_Compatibility::glSecondaryColorP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821cd88e0 0xc821cd8980] } +&{glSecondaryColorPointer QOpenGLFunctions_4_3_Compatibility::glSecondaryColorPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821cd8c40 0xc821cd8ce0 0xc821cd8dc0 0xc821cd8ea0] } +&{glSelectBuffer QOpenGLFunctions_4_3_Compatibility::glSelectBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821cd90c0 0xc821cd91c0] } +&{glSeparableFilter2D QOpenGLFunctions_4_3_Compatibility::glSeparableFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821cd9520 0xc821cd9600 0xc821cd96a0 0xc821cd9800 0xc821cd98e0 0xc821cd9a20 0xc821cd9b00 0xc821cd9c00] } +&{glShadeModel QOpenGLFunctions_4_3_Compatibility::glShadeModel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821cd9e60] } +&{glShaderBinary QOpenGLFunctions_4_3_Compatibility::glShaderBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821cc6180 0xc821cc6280 0xc821cc6360 0xc821cc6460 0xc821cc6560] } +&{glShaderSource QOpenGLFunctions_4_3_Compatibility::glShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821cc6880 0xc821cc6960 0xc821cc6a40 0xc821cc6bc0] } +&{glShaderStorageBlockBinding QOpenGLFunctions_4_3_Compatibility::glShaderStorageBlockBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821cc6f40 0xc821cc7080 0xc821cc72c0] } +&{glStencilFunc QOpenGLFunctions_4_3_Compatibility::glStencilFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821cc7560 0xc821cc7660 0xc821cc77e0] } +&{glStencilFuncSeparate QOpenGLFunctions_4_3_Compatibility::glStencilFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821cc7b00 0xc821cc7c00 0xc821cc7c80 0xc821cc7dc0] } +&{glStencilMask QOpenGLFunctions_4_3_Compatibility::glStencilMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821cc7fe0] } +&{glStencilMaskSeparate QOpenGLFunctions_4_3_Compatibility::glStencilMaskSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c9a340 0xc821c9a3c0] } +&{glStencilOp QOpenGLFunctions_4_3_Compatibility::glStencilOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c9a6c0 0xc821c9a7c0 0xc821c9a8e0] } +&{glStencilOpSeparate QOpenGLFunctions_4_3_Compatibility::glStencilOpSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c9ab60 0xc821c9ac80 0xc821c9ad20 0xc821c9ae00] } +&{glTexBuffer QOpenGLFunctions_4_3_Compatibility::glTexBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c9b100 0xc821c9b1c0 0xc821c9b340] } +&{glTexBufferRange QOpenGLFunctions_4_3_Compatibility::glTexBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c9b500 0xc821c9b6c0 0xc821c9b7a0 0xc821c9b860 0xc821c9b9c0] } +&{glTexCoord1d QOpenGLFunctions_4_3_Compatibility::glTexCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c9bc40] } +&{glTexCoord1dv QOpenGLFunctions_4_3_Compatibility::glTexCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c9bf00] } +&{glTexCoord1f QOpenGLFunctions_4_3_Compatibility::glTexCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c90240] } +&{glTexCoord1fv QOpenGLFunctions_4_3_Compatibility::glTexCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c90560] } +&{glTexCoord1i QOpenGLFunctions_4_3_Compatibility::glTexCoord1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c907e0] } +&{glTexCoord1iv QOpenGLFunctions_4_3_Compatibility::glTexCoord1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c90a80] } +&{glTexCoord1s QOpenGLFunctions_4_3_Compatibility::glTexCoord1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c90de0] } +&{glTexCoord1sv QOpenGLFunctions_4_3_Compatibility::glTexCoord1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c90fc0] } +&{glTexCoord2d QOpenGLFunctions_4_3_Compatibility::glTexCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c911c0 0xc821c91260] } +&{glTexCoord2dv QOpenGLFunctions_4_3_Compatibility::glTexCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c914a0] } +&{glTexCoord2f QOpenGLFunctions_4_3_Compatibility::glTexCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c916e0 0xc821c917e0] } +&{glTexCoord2fv QOpenGLFunctions_4_3_Compatibility::glTexCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c91a60] } +&{glTexCoord2i QOpenGLFunctions_4_3_Compatibility::glTexCoord2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c91d00 0xc821c91dc0] } +&{glTexCoord2iv QOpenGLFunctions_4_3_Compatibility::glTexCoord2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c91fc0] } +&{glTexCoord2s QOpenGLFunctions_4_3_Compatibility::glTexCoord2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c76220 0xc821c762e0] } +&{glTexCoord2sv QOpenGLFunctions_4_3_Compatibility::glTexCoord2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c76500] } +&{glTexCoord3d QOpenGLFunctions_4_3_Compatibility::glTexCoord3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c76720 0xc821c767c0 0xc821c76880] } +&{glTexCoord3dv QOpenGLFunctions_4_3_Compatibility::glTexCoord3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c76aa0] } +&{glTexCoord3f QOpenGLFunctions_4_3_Compatibility::glTexCoord3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c76d80 0xc821c76e60 0xc821c76fc0] } +&{glTexCoord3fv QOpenGLFunctions_4_3_Compatibility::glTexCoord3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c77260] } +&{glTexCoord3i QOpenGLFunctions_4_3_Compatibility::glTexCoord3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c77540 0xc821c77600 0xc821c77740] } +&{glTexCoord3iv QOpenGLFunctions_4_3_Compatibility::glTexCoord3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c77a40] } +&{glTexCoord3s QOpenGLFunctions_4_3_Compatibility::glTexCoord3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c77c60 0xc821c77d60 0xc821c77e80] } +&{glTexCoord3sv QOpenGLFunctions_4_3_Compatibility::glTexCoord3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c6a0e0] } +&{glTexCoord4d QOpenGLFunctions_4_3_Compatibility::glTexCoord4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c6a380 0xc821c6a500 0xc821c6a5e0 0xc821c6a6a0] } +&{glTexCoord4dv QOpenGLFunctions_4_3_Compatibility::glTexCoord4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c6a980] } +&{glTexCoord4f QOpenGLFunctions_4_3_Compatibility::glTexCoord4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c6abc0 0xc821c6aca0 0xc821c6ad20 0xc821c6ae80] } +&{glTexCoord4fv QOpenGLFunctions_4_3_Compatibility::glTexCoord4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c6b160] } +&{glTexCoord4i QOpenGLFunctions_4_3_Compatibility::glTexCoord4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c6b3c0 0xc821c6b4e0 0xc821c6b660 0xc821c6b700] } +&{glTexCoord4iv QOpenGLFunctions_4_3_Compatibility::glTexCoord4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c6ba00] } +&{glTexCoord4s QOpenGLFunctions_4_3_Compatibility::glTexCoord4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c6bc40 0xc821c6bde0 0xc821c6bea0 0xc821c52020] } +&{glTexCoord4sv QOpenGLFunctions_4_3_Compatibility::glTexCoord4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c522e0] } +&{glTexCoordP1ui QOpenGLFunctions_4_3_Compatibility::glTexCoordP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c52500 0xc821c52620] } +&{glTexCoordP1uiv QOpenGLFunctions_4_3_Compatibility::glTexCoordP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c528c0 0xc821c52940] } +&{glTexCoordP2ui QOpenGLFunctions_4_3_Compatibility::glTexCoordP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c52c20 0xc821c52ce0] } +&{glTexCoordP2uiv QOpenGLFunctions_4_3_Compatibility::glTexCoordP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c52f60 0xc821c530a0] } +&{glTexCoordP3ui QOpenGLFunctions_4_3_Compatibility::glTexCoordP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c532e0 0xc821c53400] } +&{glTexCoordP3uiv QOpenGLFunctions_4_3_Compatibility::glTexCoordP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c53620 0xc821c53700] } +&{glTexCoordP4ui QOpenGLFunctions_4_3_Compatibility::glTexCoordP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c539a0 0xc821c53aa0] } +&{glTexCoordP4uiv QOpenGLFunctions_4_3_Compatibility::glTexCoordP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c53d20 0xc821c53de0] } +&{glTexCoordPointer QOpenGLFunctions_4_3_Compatibility::glTexCoordPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c3e140 0xc821c3e240 0xc821c3e340 0xc821c3e420] } +&{glTexEnvf QOpenGLFunctions_4_3_Compatibility::glTexEnvf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c3e6e0 0xc821c3e780 0xc821c3e8e0] } +&{glTexEnvfv QOpenGLFunctions_4_3_Compatibility::glTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c3eb40 0xc821c3ec40 0xc821c3ed40] } +&{glTexEnvi QOpenGLFunctions_4_3_Compatibility::glTexEnvi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c3efa0 0xc821c3f0a0 0xc821c3f1e0] } +&{glTexEnviv QOpenGLFunctions_4_3_Compatibility::glTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c3f420 0xc821c3f520 0xc821c3f600] } +&{glTexGend QOpenGLFunctions_4_3_Compatibility::glTexGend commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c3f7c0 0xc821c3f8a0 0xc821c3f9a0] } +&{glTexGendv QOpenGLFunctions_4_3_Compatibility::glTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c3fb80 0xc821c3fc40 0xc821c3fde0] } +&{glTexGenf QOpenGLFunctions_4_3_Compatibility::glTexGenf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c3ffa0 0xc821c280c0 0xc821c281a0] } +&{glTexGenfv QOpenGLFunctions_4_3_Compatibility::glTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c28480 0xc821c28500 0xc821c28620] } +&{glTexGeni QOpenGLFunctions_4_3_Compatibility::glTexGeni commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c28900 0xc821c289a0 0xc821c28ac0] } +&{glTexGeniv QOpenGLFunctions_4_3_Compatibility::glTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c28d20 0xc821c28e40 0xc821c28f40] } +&{glTexImage1D QOpenGLFunctions_4_3_Compatibility::glTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c291a0 0xc821c292e0 0xc821c29420 0xc821c294e0 0xc821c29620 0xc821c29760 0xc821c29800 0xc821c29920] } +&{glTexImage2D QOpenGLFunctions_4_3_Compatibility::glTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c29b40 0xc821c29c00 0xc821c29ca0 0xc821c29dc0 0xc821c29ee0 0xc821c29f60 0xc821c16020 0xc821c160e0 0xc821c16200] } +&{glTexImage2DMultisample QOpenGLFunctions_4_3_Compatibility::glTexImage2DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c164e0 0xc821c16580 0xc821c16640 0xc821c16720 0xc821c16840 0xc821c16940] } +&{glTexImage3D QOpenGLFunctions_4_3_Compatibility::glTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c16ba0 0xc821c16c80 0xc821c16d80 0xc821c16ee0 0xc821c17020 0xc821c170c0 0xc821c17160 0xc821c17280 0xc821c17380 0xc821c17440] } +&{glTexImage3DMultisample QOpenGLFunctions_4_3_Compatibility::glTexImage3DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821c17700 0xc821c177e0 0xc821c178c0 0xc821c17a20 0xc821c17b60 0xc821c17c20 0xc821c17de0] } +&{glTexParameterIiv QOpenGLFunctions_4_3_Compatibility::glTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821bfe160 0xc821bfe320 0xc821bfe400] } +&{glTexParameterIuiv QOpenGLFunctions_4_3_Compatibility::glTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821bfe7a0 0xc821bfe8e0 0xc821bfe9c0] } +&{glTexParameterf QOpenGLFunctions_4_3_Compatibility::glTexParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821bfec80 0xc821bfed60 0xc821bfee60] } +&{glTexParameterfv QOpenGLFunctions_4_3_Compatibility::glTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821bff100 0xc821bff220 0xc821bff340] } +&{glTexParameteri QOpenGLFunctions_4_3_Compatibility::glTexParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821bff580 0xc821bff620 0xc821bff700] } +&{glTexParameteriv QOpenGLFunctions_4_3_Compatibility::glTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821bff900 0xc821bffa20 0xc821bffaa0] } +&{glTexStorage1D QOpenGLFunctions_4_3_Compatibility::glTexStorage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821bffca0 0xc821bffd20 0xc821bfff00 0xc821bfffc0] } +&{glTexStorage2D QOpenGLFunctions_4_3_Compatibility::glTexStorage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821bf2200 0xc821bf22a0 0xc821bf2380 0xc821bf2480 0xc821bf2580] } +&{glTexStorage2DMultisample QOpenGLFunctions_4_3_Compatibility::glTexStorage2DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821bf2820 0xc821bf2900 0xc821bf29e0 0xc821bf2aa0 0xc821bf2b80 0xc821bf2cc0] } +&{glTexStorage3D QOpenGLFunctions_4_3_Compatibility::glTexStorage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821bf2f00 0xc821bf2fe0 0xc821bf3080 0xc821bf3140 0xc821bf32a0 0xc821bf3360] } +&{glTexStorage3DMultisample QOpenGLFunctions_4_3_Compatibility::glTexStorage3DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821bf3620 0xc821bf36e0 0xc821bf3760 0xc821bf3860 0xc821bf3980 0xc821bf3a80 0xc821bf3b40] } +&{glTexSubImage1D QOpenGLFunctions_4_3_Compatibility::glTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821bf3e40 0xc821bf3ee0 0xc821be0040 0xc821be0100 0xc821be01e0 0xc821be02a0 0xc821be03a0] } +&{glTexSubImage2D QOpenGLFunctions_4_3_Compatibility::glTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821be05c0 0xc821be0640 0xc821be07a0 0xc821be0840 0xc821be09e0 0xc821be0aa0 0xc821be0be0 0xc821be0ca0 0xc821be0e20] } +&{glTexSubImage3D QOpenGLFunctions_4_3_Compatibility::glTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821be10a0 0xc821be11c0 0xc821be1340 0xc821be13e0 0xc821be1500 0xc821be1600 0xc821be1700 0xc821be17c0 0xc821be19c0 0xc821be1aa0 0xc821be1ba0] } +&{glTextureView QOpenGLFunctions_4_3_Compatibility::glTextureView commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821be1e00 0xc821be1f80 0xc821bbe060 0xc821bbe1e0 0xc821bbe2e0 0xc821bbe3c0 0xc821bbe4e0 0xc821bbe600] } +&{glTransformFeedbackVaryings QOpenGLFunctions_4_3_Compatibility::glTransformFeedbackVaryings commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821bbe960 0xc821bbeaa0 0xc821bbebe0 0xc821bbed00] } +&{glTranslated QOpenGLFunctions_4_3_Compatibility::glTranslated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821bbefe0 0xc821bbf100 0xc821bbf1a0] } +&{glTranslatef QOpenGLFunctions_4_3_Compatibility::glTranslatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821bbf400 0xc821bbf4e0 0xc821bbf5e0] } +&{glUniform1d QOpenGLFunctions_4_3_Compatibility::glUniform1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821bbf800 0xc821bbf8a0] } +&{glUniform1dv QOpenGLFunctions_4_3_Compatibility::glUniform1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821bbfa60 0xc821bbfb60 0xc821bbfc20] } +&{glUniform1f QOpenGLFunctions_4_3_Compatibility::glUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821bbfea0 0xc821bbffa0] } +&{glUniform1fv QOpenGLFunctions_4_3_Compatibility::glUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821bac220 0xc821bac360 0xc821bac440] } +&{glUniform1i QOpenGLFunctions_4_3_Compatibility::glUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821bac6e0 0xc821bac780] } +&{glUniform1iv QOpenGLFunctions_4_3_Compatibility::glUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821baca20 0xc821bacb40 0xc821bacc40] } +&{glUniform1ui QOpenGLFunctions_4_3_Compatibility::glUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821bacec0 0xc821bacfc0] } +&{glUniform1uiv QOpenGLFunctions_4_3_Compatibility::glUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821bad280 0xc821bad320 0xc821bad400] } +&{glUniform2d QOpenGLFunctions_4_3_Compatibility::glUniform2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821bad640 0xc821bad760 0xc821bad860] } +&{glUniform2dv QOpenGLFunctions_4_3_Compatibility::glUniform2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821badae0 0xc821badbe0 0xc821badd00] } +&{glUniform2f QOpenGLFunctions_4_3_Compatibility::glUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821badfc0 0xc821b9a080 0xc821b9a120] } +&{glUniform2fv QOpenGLFunctions_4_3_Compatibility::glUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b9a400 0xc821b9a4e0 0xc821b9a640] } +&{glUniform2i QOpenGLFunctions_4_3_Compatibility::glUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b9a8c0 0xc821b9a9e0 0xc821b9aac0] } +&{glUniform2iv QOpenGLFunctions_4_3_Compatibility::glUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b9ace0 0xc821b9ae20 0xc821b9aec0] } +&{glUniform2ui QOpenGLFunctions_4_3_Compatibility::glUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b9b1a0 0xc821b9b2a0 0xc821b9b3a0] } +&{glUniform2uiv QOpenGLFunctions_4_3_Compatibility::glUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b9b660 0xc821b9b740 0xc821b9b840] } +&{glUniform3d QOpenGLFunctions_4_3_Compatibility::glUniform3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b9bae0 0xc821b9bbc0 0xc821b9bcc0 0xc821b9bd40] } +&{glUniform3dv QOpenGLFunctions_4_3_Compatibility::glUniform3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b9bf40 0xc821b82000 0xc821b82100] } +&{glUniform3f QOpenGLFunctions_4_3_Compatibility::glUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b822e0 0xc821b823a0 0xc821b824a0 0xc821b82560] } +&{glUniform3fv QOpenGLFunctions_4_3_Compatibility::glUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b82760 0xc821b82880 0xc821b82940] } +&{glUniform3i QOpenGLFunctions_4_3_Compatibility::glUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b82be0 0xc821b82cc0 0xc821b82de0 0xc821b82ea0] } +&{glUniform3iv QOpenGLFunctions_4_3_Compatibility::glUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b83160 0xc821b831e0 0xc821b83300] } +&{glUniform3ui QOpenGLFunctions_4_3_Compatibility::glUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b83540 0xc821b83620 0xc821b83740 0xc821b83860] } +&{glUniform3uiv QOpenGLFunctions_4_3_Compatibility::glUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b83ae0 0xc821b83bc0 0xc821b83cc0] } +&{glUniform4d QOpenGLFunctions_4_3_Compatibility::glUniform4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b83f40 0xc821b6e000 0xc821b6e180 0xc821b6e220 0xc821b6e360] } +&{glUniform4dv QOpenGLFunctions_4_3_Compatibility::glUniform4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b6e580 0xc821b6e680 0xc821b6e700] } +&{glUniform4f QOpenGLFunctions_4_3_Compatibility::glUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b6e940 0xc821b6ea00 0xc821b6eaa0 0xc821b6eb80 0xc821b6ec80] } +&{glUniform4fv QOpenGLFunctions_4_3_Compatibility::glUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b6ee60 0xc821b6ef80 0xc821b6f040] } +&{glUniform4i QOpenGLFunctions_4_3_Compatibility::glUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b6f220 0xc821b6f2e0 0xc821b6f3c0 0xc821b6f4c0 0xc821b6f5a0] } +&{glUniform4iv QOpenGLFunctions_4_3_Compatibility::glUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b6f7e0 0xc821b6f880 0xc821b6f960] } +&{glUniform4ui QOpenGLFunctions_4_3_Compatibility::glUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b6fb80 0xc821b6fc80 0xc821b6fd60 0xc821b6fde0 0xc821b6ff40] } +&{glUniform4uiv QOpenGLFunctions_4_3_Compatibility::glUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b5e200 0xc821b5e320 0xc821b5e400] } +&{glUniformBlockBinding QOpenGLFunctions_4_3_Compatibility::glUniformBlockBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b5e7c0 0xc821b5e900 0xc821b5ea60] } +&{glUniformMatrix2dv QOpenGLFunctions_4_3_Compatibility::glUniformMatrix2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b5eec0 0xc821b5efc0 0xc821b5f0c0 0xc821b5f1e0] } +&{glUniformMatrix2fv QOpenGLFunctions_4_3_Compatibility::glUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b5f560 0xc821b5f680 0xc821b5f760 0xc821b5f8a0] } +&{glUniformMatrix2x3dv QOpenGLFunctions_4_3_Compatibility::glUniformMatrix2x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b5fbe0 0xc821b5fd40 0xc821b5fe60 0xc821b5ff20] } +&{glUniformMatrix2x3fv QOpenGLFunctions_4_3_Compatibility::glUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b50200 0xc821b502e0 0xc821b50380 0xc821b50460] } +&{glUniformMatrix2x4dv QOpenGLFunctions_4_3_Compatibility::glUniformMatrix2x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b50720 0xc821b507c0 0xc821b508c0 0xc821b50960] } +&{glUniformMatrix2x4fv QOpenGLFunctions_4_3_Compatibility::glUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b50c20 0xc821b50ca0 0xc821b50da0 0xc821b50ea0] } +&{glUniformMatrix3dv QOpenGLFunctions_4_3_Compatibility::glUniformMatrix3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b51140 0xc821b51220 0xc821b51340 0xc821b51460] } +&{glUniformMatrix3fv QOpenGLFunctions_4_3_Compatibility::glUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b51780 0xc821b518a0 0xc821b519a0 0xc821b51a40] } +&{glUniformMatrix3x2dv QOpenGLFunctions_4_3_Compatibility::glUniformMatrix3x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b51dc0 0xc821b51ec0 0xc821b51fe0 0xc821b3a160] } +&{glUniformMatrix3x2fv QOpenGLFunctions_4_3_Compatibility::glUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b3a4a0 0xc821b3a580 0xc821b3a640 0xc821b3a7c0] } +&{glUniformMatrix3x4dv QOpenGLFunctions_4_3_Compatibility::glUniformMatrix3x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b3aae0 0xc821b3ac40 0xc821b3ad40 0xc821b3ae00] } +&{glUniformMatrix3x4fv QOpenGLFunctions_4_3_Compatibility::glUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b3b0c0 0xc821b3b180 0xc821b3b280 0xc821b3b320] } +&{glUniformMatrix4dv QOpenGLFunctions_4_3_Compatibility::glUniformMatrix4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b3b5e0 0xc821b3b6a0 0xc821b3b7c0 0xc821b3b860] } +&{glUniformMatrix4fv QOpenGLFunctions_4_3_Compatibility::glUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b3bae0 0xc821b3bc00 0xc821b3bcc0 0xc821b3bd60] } +&{glUniformMatrix4x2dv QOpenGLFunctions_4_3_Compatibility::glUniformMatrix4x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b2a000 0xc821b2a0e0 0xc821b2a1c0 0xc821b2a260] } +&{glUniformMatrix4x2fv QOpenGLFunctions_4_3_Compatibility::glUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b2a4e0 0xc821b2a5e0 0xc821b2a6c0 0xc821b2a740] } +&{glUniformMatrix4x3dv QOpenGLFunctions_4_3_Compatibility::glUniformMatrix4x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b2aa40 0xc821b2aae0 0xc821b2abc0 0xc821b2aca0] } +&{glUniformMatrix4x3fv QOpenGLFunctions_4_3_Compatibility::glUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b2af00 0xc821b2afc0 0xc821b2b060 0xc821b2b120] } +&{glUniformSubroutinesuiv QOpenGLFunctions_4_3_Compatibility::glUniformSubroutinesuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b2b400 0xc821b2b4a0 0xc821b2b580] } +&{glUnmapBuffer QOpenGLFunctions_4_3_Compatibility::glUnmapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false GLboolean [0xc821b2b7a0] } +&{glUseProgram QOpenGLFunctions_4_3_Compatibility::glUseProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b2b9c0] } +&{glUseProgramStages QOpenGLFunctions_4_3_Compatibility::glUseProgramStages commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b2bc60 0xc821b2bd40 0xc821b2bdc0] } +&{glValidateProgram QOpenGLFunctions_4_3_Compatibility::glValidateProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b1a0a0] } +&{glValidateProgramPipeline QOpenGLFunctions_4_3_Compatibility::glValidateProgramPipeline commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b1a360] } +&{glVertex2d QOpenGLFunctions_4_3_Compatibility::glVertex2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b1a580 0xc821b1a640] } +&{glVertex2dv QOpenGLFunctions_4_3_Compatibility::glVertex2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b1a880] } +&{glVertex2f QOpenGLFunctions_4_3_Compatibility::glVertex2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b1aa80 0xc821b1ab20] } +&{glVertex2fv QOpenGLFunctions_4_3_Compatibility::glVertex2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b1ad00] } +&{glVertex2i QOpenGLFunctions_4_3_Compatibility::glVertex2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b1af20 0xc821b1b040] } +&{glVertex2iv QOpenGLFunctions_4_3_Compatibility::glVertex2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b1b240] } +&{glVertex2s QOpenGLFunctions_4_3_Compatibility::glVertex2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b1b440 0xc821b1b540] } +&{glVertex2sv QOpenGLFunctions_4_3_Compatibility::glVertex2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b1b720] } +&{glVertex3d QOpenGLFunctions_4_3_Compatibility::glVertex3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b1b940 0xc821b1ba20 0xc821b1bb20] } +&{glVertex3dv QOpenGLFunctions_4_3_Compatibility::glVertex3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b1bd00] } +&{glVertex3f QOpenGLFunctions_4_3_Compatibility::glVertex3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b1bf20 0xc821b0a000 0xc821b0a120] } +&{glVertex3fv QOpenGLFunctions_4_3_Compatibility::glVertex3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b0a320] } +&{glVertex3i QOpenGLFunctions_4_3_Compatibility::glVertex3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b0a560 0xc821b0a620 0xc821b0a700] } +&{glVertex3iv QOpenGLFunctions_4_3_Compatibility::glVertex3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b0a920] } +&{glVertex3s QOpenGLFunctions_4_3_Compatibility::glVertex3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b0ab60 0xc821b0ac20 0xc821b0ad20] } +&{glVertex3sv QOpenGLFunctions_4_3_Compatibility::glVertex3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b0af20] } +&{glVertex4d QOpenGLFunctions_4_3_Compatibility::glVertex4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b0b120 0xc821b0b240 0xc821b0b2e0 0xc821b0b3c0] } +&{glVertex4dv QOpenGLFunctions_4_3_Compatibility::glVertex4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b0b5c0] } +&{glVertex4f QOpenGLFunctions_4_3_Compatibility::glVertex4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b0b7e0 0xc821b0b880 0xc821b0b980 0xc821b0ba80] } +&{glVertex4fv QOpenGLFunctions_4_3_Compatibility::glVertex4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b0bca0] } +&{glVertex4i QOpenGLFunctions_4_3_Compatibility::glVertex4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821b0bea0 0xc821b0bfa0 0xc821afa020 0xc821afa0c0] } +&{glVertex4iv QOpenGLFunctions_4_3_Compatibility::glVertex4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821afa340] } +&{glVertex4s QOpenGLFunctions_4_3_Compatibility::glVertex4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821afa560 0xc821afa600 0xc821afa700 0xc821afa7a0] } +&{glVertex4sv QOpenGLFunctions_4_3_Compatibility::glVertex4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821afaa00] } +&{glVertexAttrib1d QOpenGLFunctions_4_3_Compatibility::glVertexAttrib1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821afabe0 0xc821afac80] } +&{glVertexAttrib1dv QOpenGLFunctions_4_3_Compatibility::glVertexAttrib1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821afaf60 0xc821afb020] } +&{glVertexAttrib1f QOpenGLFunctions_4_3_Compatibility::glVertexAttrib1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821afb220 0xc821afb300] } +&{glVertexAttrib1fv QOpenGLFunctions_4_3_Compatibility::glVertexAttrib1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821afb560 0xc821afb660] } +&{glVertexAttrib1s QOpenGLFunctions_4_3_Compatibility::glVertexAttrib1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821afb880 0xc821afb940] } +&{glVertexAttrib1sv QOpenGLFunctions_4_3_Compatibility::glVertexAttrib1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821afbbe0 0xc821afbca0] } +&{glVertexAttrib2d QOpenGLFunctions_4_3_Compatibility::glVertexAttrib2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821afbee0 0xc821afbf80 0xc821ad4040] } +&{glVertexAttrib2dv QOpenGLFunctions_4_3_Compatibility::glVertexAttrib2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ad43a0 0xc821ad44c0] } +&{glVertexAttrib2f QOpenGLFunctions_4_3_Compatibility::glVertexAttrib2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ad4720 0xc821ad4840 0xc821ad4960] } +&{glVertexAttrib2fv QOpenGLFunctions_4_3_Compatibility::glVertexAttrib2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ad4ca0 0xc821ad4d60] } +&{glVertexAttrib2s QOpenGLFunctions_4_3_Compatibility::glVertexAttrib2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ad5040 0xc821ad5120 0xc821ad5220] } +&{glVertexAttrib2sv QOpenGLFunctions_4_3_Compatibility::glVertexAttrib2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ad5560 0xc821ad5680] } +&{glVertexAttrib3d QOpenGLFunctions_4_3_Compatibility::glVertexAttrib3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ad5960 0xc821ad5a00 0xc821ad5b20 0xc821ad5c60] } +&{glVertexAttrib3dv QOpenGLFunctions_4_3_Compatibility::glVertexAttrib3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ad5fe0 0xc821aba0e0] } +&{glVertexAttrib3f QOpenGLFunctions_4_3_Compatibility::glVertexAttrib3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821aba360 0xc821aba420 0xc821aba520 0xc821aba620] } +&{glVertexAttrib3fv QOpenGLFunctions_4_3_Compatibility::glVertexAttrib3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821aba940 0xc821abaa20] } +&{glVertexAttrib3s QOpenGLFunctions_4_3_Compatibility::glVertexAttrib3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821abad60 0xc821abae00 0xc821abae80 0xc821abafe0] } +&{glVertexAttrib3sv QOpenGLFunctions_4_3_Compatibility::glVertexAttrib3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821abb340 0xc821abb4c0] } +&{glVertexAttrib4Nbv QOpenGLFunctions_4_3_Compatibility::glVertexAttrib4Nbv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821abb8e0 0xc821abb9a0] } +&{glVertexAttrib4Niv QOpenGLFunctions_4_3_Compatibility::glVertexAttrib4Niv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821abbdc0 0xc821abbee0] } +&{glVertexAttrib4Nsv QOpenGLFunctions_4_3_Compatibility::glVertexAttrib4Nsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ab02c0 0xc821ab0460] } +&{glVertexAttrib4Nub QOpenGLFunctions_4_3_Compatibility::glVertexAttrib4Nub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ab0800 0xc821ab09e0 0xc821ab0a80 0xc821ab0b60 0xc821ab0c80] } +&{glVertexAttrib4Nubv QOpenGLFunctions_4_3_Compatibility::glVertexAttrib4Nubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ab1020 0xc821ab11c0] } +&{glVertexAttrib4Nuiv QOpenGLFunctions_4_3_Compatibility::glVertexAttrib4Nuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ab1600 0xc821ab1700] } +&{glVertexAttrib4Nusv QOpenGLFunctions_4_3_Compatibility::glVertexAttrib4Nusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ab1ac0 0xc821ab1c20] } +&{glVertexAttrib4bv QOpenGLFunctions_4_3_Compatibility::glVertexAttrib4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821ab1f80 0xc821a96100] } +&{glVertexAttrib4d QOpenGLFunctions_4_3_Compatibility::glVertexAttrib4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a96380 0xc821a96480 0xc821a96560 0xc821a96680 0xc821a96800] } +&{glVertexAttrib4dv QOpenGLFunctions_4_3_Compatibility::glVertexAttrib4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a96c00 0xc821a96d20] } +&{glVertexAttrib4f QOpenGLFunctions_4_3_Compatibility::glVertexAttrib4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a96fa0 0xc821a970c0 0xc821a97200 0xc821a972c0 0xc821a97400] } +&{glVertexAttrib4fv QOpenGLFunctions_4_3_Compatibility::glVertexAttrib4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a97760 0xc821a97820] } +&{glVertexAttrib4iv QOpenGLFunctions_4_3_Compatibility::glVertexAttrib4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a97ba0 0xc821a97c40] } +&{glVertexAttrib4s QOpenGLFunctions_4_3_Compatibility::glVertexAttrib4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a97ea0 0xc821a97f80 0xc821a86080 0xc821a86100 0xc821a86260] } +&{glVertexAttrib4sv QOpenGLFunctions_4_3_Compatibility::glVertexAttrib4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a865a0 0xc821a866c0] } +&{glVertexAttrib4ubv QOpenGLFunctions_4_3_Compatibility::glVertexAttrib4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a86aa0 0xc821a86be0] } +&{glVertexAttrib4uiv QOpenGLFunctions_4_3_Compatibility::glVertexAttrib4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a87020 0xc821a87160] } +&{glVertexAttrib4usv QOpenGLFunctions_4_3_Compatibility::glVertexAttrib4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a87520 0xc821a87660] } +&{glVertexAttribBinding QOpenGLFunctions_4_3_Compatibility::glVertexAttribBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a87a80 0xc821a87bc0] } +&{glVertexAttribDivisor QOpenGLFunctions_4_3_Compatibility::glVertexAttribDivisor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a87f40 0xc821a7a080] } +&{glVertexAttribFormat QOpenGLFunctions_4_3_Compatibility::glVertexAttribFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a7a3c0 0xc821a7a4e0 0xc821a7a660 0xc821a7a840 0xc821a7a980] } +&{glVertexAttribI1i QOpenGLFunctions_4_3_Compatibility::glVertexAttribI1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a7ad80 0xc821a7ae00] } +&{glVertexAttribI1iv QOpenGLFunctions_4_3_Compatibility::glVertexAttribI1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a7b200 0xc821a7b300] } +&{glVertexAttribI1ui QOpenGLFunctions_4_3_Compatibility::glVertexAttribI1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a7b620 0xc821a7b760] } +&{glVertexAttribI1uiv QOpenGLFunctions_4_3_Compatibility::glVertexAttribI1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a7bb80 0xc821a7bc40] } +&{glVertexAttribI2i QOpenGLFunctions_4_3_Compatibility::glVertexAttribI2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a6a040 0xc821a6a100 0xc821a6a260] } +&{glVertexAttribI2iv QOpenGLFunctions_4_3_Compatibility::glVertexAttribI2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a6a640 0xc821a6a7c0] } +&{glVertexAttribI2ui QOpenGLFunctions_4_3_Compatibility::glVertexAttribI2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a6ac00 0xc821a6ad20 0xc821a6ae80] } +&{glVertexAttribI2uiv QOpenGLFunctions_4_3_Compatibility::glVertexAttribI2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a6b2c0 0xc821a6b3a0] } +&{glVertexAttribI3i QOpenGLFunctions_4_3_Compatibility::glVertexAttribI3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a6b860 0xc821a6ba60 0xc821a6bc00 0xc821a6bd20] } +&{glVertexAttribI3iv QOpenGLFunctions_4_3_Compatibility::glVertexAttribI3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a581c0 0xc821a58360] } +&{glVertexAttribI3ui QOpenGLFunctions_4_3_Compatibility::glVertexAttribI3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a58660 0xc821a58760 0xc821a58880 0xc821a589a0] } +&{glVertexAttribI3uiv QOpenGLFunctions_4_3_Compatibility::glVertexAttribI3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a58d20 0xc821a58de0] } +&{glVertexAttribI4bv QOpenGLFunctions_4_3_Compatibility::glVertexAttribI4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a590e0 0xc821a591e0] } +&{glVertexAttribI4i QOpenGLFunctions_4_3_Compatibility::glVertexAttribI4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a59540 0xc821a59700 0xc821a597e0 0xc821a598e0 0xc821a59a80] } +&{glVertexAttribI4iv QOpenGLFunctions_4_3_Compatibility::glVertexAttribI4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a59e60 0xc821a59f40] } +&{glVertexAttribI4sv QOpenGLFunctions_4_3_Compatibility::glVertexAttribI4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a44340 0xc821a443e0] } +&{glVertexAttribI4ubv QOpenGLFunctions_4_3_Compatibility::glVertexAttribI4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a44740 0xc821a448c0] } +&{glVertexAttribI4ui QOpenGLFunctions_4_3_Compatibility::glVertexAttribI4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a44c80 0xc821a44de0 0xc821a44f40 0xc821a450a0 0xc821a451c0] } +&{glVertexAttribI4uiv QOpenGLFunctions_4_3_Compatibility::glVertexAttribI4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a45520 0xc821a45640] } +&{glVertexAttribI4usv QOpenGLFunctions_4_3_Compatibility::glVertexAttribI4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a45900 0xc821a45a40] } +&{glVertexAttribIFormat QOpenGLFunctions_4_3_Compatibility::glVertexAttribIFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a45e00 0xc821a45ee0 0xc821a32000 0xc821a320e0] } +&{glVertexAttribIPointer QOpenGLFunctions_4_3_Compatibility::glVertexAttribIPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a32420 0xc821a32540 0xc821a32680 0xc821a32840 0xc821a32960] } +&{glVertexAttribL1d QOpenGLFunctions_4_3_Compatibility::glVertexAttribL1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a32de0 0xc821a32ee0] } +&{glVertexAttribL1dv QOpenGLFunctions_4_3_Compatibility::glVertexAttribL1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a331e0 0xc821a33400] } +&{glVertexAttribL2d QOpenGLFunctions_4_3_Compatibility::glVertexAttribL2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a33740 0xc821a33860 0xc821a33960] } +&{glVertexAttribL2dv QOpenGLFunctions_4_3_Compatibility::glVertexAttribL2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a33c80 0xc821a33e00] } +&{glVertexAttribL3d QOpenGLFunctions_4_3_Compatibility::glVertexAttribL3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a0e1a0 0xc821a0e280 0xc821a0e380 0xc821a0e4a0] } +&{glVertexAttribL3dv QOpenGLFunctions_4_3_Compatibility::glVertexAttribL3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a0e800 0xc821a0e980] } +&{glVertexAttribL4d QOpenGLFunctions_4_3_Compatibility::glVertexAttribL4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a0ec60 0xc821a0ed60 0xc821a0eec0 0xc821a0efc0 0xc821a0f0c0] } +&{glVertexAttribL4dv QOpenGLFunctions_4_3_Compatibility::glVertexAttribL4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a0f420 0xc821a0f500] } +&{glVertexAttribLFormat QOpenGLFunctions_4_3_Compatibility::glVertexAttribLFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a0f860 0xc821a0f9c0 0xc821a0fa80 0xc821a0fb60] } +&{glVertexAttribLPointer QOpenGLFunctions_4_3_Compatibility::glVertexAttribLPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821a0fea0 0xc8219fc060 0xc8219fc180 0xc8219fc280 0xc8219fc480] } +&{glVertexAttribP1ui QOpenGLFunctions_4_3_Compatibility::glVertexAttribP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219fc880 0xc8219fc960 0xc8219fcac0 0xc8219fccc0] } +&{glVertexAttribP1uiv QOpenGLFunctions_4_3_Compatibility::glVertexAttribP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219fd0a0 0xc8219fd1e0 0xc8219fd300 0xc8219fd480] } +&{glVertexAttribP2ui QOpenGLFunctions_4_3_Compatibility::glVertexAttribP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219fd860 0xc8219fd900 0xc8219fdaa0 0xc8219fdba0] } +&{glVertexAttribP2uiv QOpenGLFunctions_4_3_Compatibility::glVertexAttribP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219e8000 0xc8219e80a0 0xc8219e81c0 0xc8219e82e0] } +&{glVertexAttribP3ui QOpenGLFunctions_4_3_Compatibility::glVertexAttribP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219e8740 0xc8219e8860 0xc8219e8900 0xc8219e8aa0] } +&{glVertexAttribP3uiv QOpenGLFunctions_4_3_Compatibility::glVertexAttribP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219e8e80 0xc8219e9020 0xc8219e9100 0xc8219e91c0] } +&{glVertexAttribP4ui QOpenGLFunctions_4_3_Compatibility::glVertexAttribP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219e95a0 0xc8219e96c0 0xc8219e97e0 0xc8219e9960] } +&{glVertexAttribP4uiv QOpenGLFunctions_4_3_Compatibility::glVertexAttribP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219e9d40 0xc8219e9f20 0xc8219da000 0xc8219da100] } +&{glVertexAttribPointer QOpenGLFunctions_4_3_Compatibility::glVertexAttribPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219da5e0 0xc8219da760 0xc8219da820 0xc8219da960 0xc8219dac20 0xc8219dace0] } +&{glVertexBindingDivisor QOpenGLFunctions_4_3_Compatibility::glVertexBindingDivisor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219db0e0 0xc8219db300] } +&{glVertexP2ui QOpenGLFunctions_4_3_Compatibility::glVertexP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219db620 0xc8219db720] } +&{glVertexP2uiv QOpenGLFunctions_4_3_Compatibility::glVertexP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219db980 0xc8219dbb80] } +&{glVertexP3ui QOpenGLFunctions_4_3_Compatibility::glVertexP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219dbec0 0xc8219dbf60] } +&{glVertexP3uiv QOpenGLFunctions_4_3_Compatibility::glVertexP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219c6200 0xc8219c6380] } +&{glVertexP4ui QOpenGLFunctions_4_3_Compatibility::glVertexP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219c6760 0xc8219c6860] } +&{glVertexP4uiv QOpenGLFunctions_4_3_Compatibility::glVertexP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219c6b20 0xc8219c6ce0] } +&{glVertexPointer QOpenGLFunctions_4_3_Compatibility::glVertexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219c6fa0 0xc8219c70a0 0xc8219c71e0 0xc8219c72c0] } +&{glViewport QOpenGLFunctions_4_3_Compatibility::glViewport commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219c75e0 0xc8219c77a0 0xc8219c7860 0xc8219c7920] } +&{glViewportArrayv QOpenGLFunctions_4_3_Compatibility::glViewportArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219c7c60 0xc8219c7d20 0xc8219c7ee0] } +&{glViewportIndexedf QOpenGLFunctions_4_3_Compatibility::glViewportIndexedf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219b6200 0xc8219b63a0 0xc8219b6460 0xc8219b6600 0xc8219b6740] } +&{glViewportIndexedfv QOpenGLFunctions_4_3_Compatibility::glViewportIndexedfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219b6b00 0xc8219b6c40] } +&{glWaitSync QOpenGLFunctions_4_3_Compatibility::glWaitSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219b6f60 0xc8219b7060 0xc8219b7180] } +&{glWindowPos2d QOpenGLFunctions_4_3_Compatibility::glWindowPos2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219b73e0 0xc8219b7520] } +&{glWindowPos2dv QOpenGLFunctions_4_3_Compatibility::glWindowPos2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219b77e0] } +&{glWindowPos2f QOpenGLFunctions_4_3_Compatibility::glWindowPos2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219b79e0 0xc8219b7b60] } +&{glWindowPos2fv QOpenGLFunctions_4_3_Compatibility::glWindowPos2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219b7dc0] } +&{glWindowPos2i QOpenGLFunctions_4_3_Compatibility::glWindowPos2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219a6060 0xc8219a6180] } +&{glWindowPos2iv QOpenGLFunctions_4_3_Compatibility::glWindowPos2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219a6400] } +&{glWindowPos2s QOpenGLFunctions_4_3_Compatibility::glWindowPos2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219a66c0 0xc8219a6800] } +&{glWindowPos2sv QOpenGLFunctions_4_3_Compatibility::glWindowPos2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219a6a60] } +&{glWindowPos3d QOpenGLFunctions_4_3_Compatibility::glWindowPos3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219a6d00 0xc8219a6e00 0xc8219a6f20] } +&{glWindowPos3dv QOpenGLFunctions_4_3_Compatibility::glWindowPos3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219a7180] } +&{glWindowPos3f QOpenGLFunctions_4_3_Compatibility::glWindowPos3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219a73a0 0xc8219a74e0 0xc8219a75a0] } +&{glWindowPos3fv QOpenGLFunctions_4_3_Compatibility::glWindowPos3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219a78c0] } +&{glWindowPos3i QOpenGLFunctions_4_3_Compatibility::glWindowPos3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219a7ba0 0xc8219a7d00 0xc8219a7f40] } +&{glWindowPos3iv QOpenGLFunctions_4_3_Compatibility::glWindowPos3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219982a0] } +&{glWindowPos3s QOpenGLFunctions_4_3_Compatibility::glWindowPos3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc8219985e0 0xc8219986e0 0xc821998880] } +&{glWindowPos3sv QOpenGLFunctions_4_3_Compatibility::glWindowPos3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_compatibility.h non plain false false void [0xc821998c40] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions_4_3_Core.txt b/internal/binding/dump/QtGui/QOpenGLFunctions_4_3_Core.txt new file mode 100755 index 00000000..0c5b1e2a --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions_4_3_Core.txt @@ -0,0 +1,505 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions_4_3_Core QOpenGLFunctions_4_3_Core::QOpenGLFunctions_4_3_Core commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.cpp non constructor false false [] } +&{initializeOpenGLFunctions QOpenGLFunctions_4_3_Core::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.cpp impure plain false false bool [] } +&{~QOpenGLFunctions_4_3_Core QOpenGLFunctions_4_3_Core::~QOpenGLFunctions_4_3_Core commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.cpp non destructor false false [] } +&{glActiveShaderProgram QOpenGLFunctions_4_3_Core::glActiveShaderProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821999f60 0xc82197a0c0] } +&{glActiveTexture QOpenGLFunctions_4_3_Core::glActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82197a300] } +&{glAttachShader QOpenGLFunctions_4_3_Core::glAttachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82197a600 0xc82197a780] } +&{glBeginConditionalRender QOpenGLFunctions_4_3_Core::glBeginConditionalRender commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82197ab80 0xc82197ac40] } +&{glBeginQuery QOpenGLFunctions_4_3_Core::glBeginQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82197aea0 0xc82197af20] } +&{glBeginQueryIndexed QOpenGLFunctions_4_3_Core::glBeginQueryIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82197b220 0xc82197b2e0 0xc82197b3e0] } +&{glBeginTransformFeedback QOpenGLFunctions_4_3_Core::glBeginTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82197b720] } +&{glBindAttribLocation QOpenGLFunctions_4_3_Core::glBindAttribLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82197bb00 0xc82197bc20 0xc82197bcc0] } +&{glBindBuffer QOpenGLFunctions_4_3_Core::glBindBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82197bf60 0xc821966020] } +&{glBindBufferBase QOpenGLFunctions_4_3_Core::glBindBufferBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821966200 0xc821966320 0xc8219663c0] } +&{glBindBufferRange QOpenGLFunctions_4_3_Core::glBindBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821966680 0xc821966780 0xc821966860 0xc8219669c0 0xc821966ae0] } +&{glBindFragDataLocation QOpenGLFunctions_4_3_Core::glBindFragDataLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821966dc0 0xc821966ec0 0xc821967060] } +&{glBindFragDataLocationIndexed QOpenGLFunctions_4_3_Core::glBindFragDataLocationIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821967380 0xc8219674a0 0xc821967520 0xc821967680] } +&{glBindFramebuffer QOpenGLFunctions_4_3_Core::glBindFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8219679c0 0xc821967ac0] } +&{glBindImageTexture QOpenGLFunctions_4_3_Core::glBindImageTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821967f80 0xc8226ce000 0xc8226ce0a0 0xc8226ce140 0xc8226ce1e0 0xc8226ce2c0 0xc8226ce360] } +&{glBindProgramPipeline QOpenGLFunctions_4_3_Core::glBindProgramPipeline commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226ce5a0] } +&{glBindRenderbuffer QOpenGLFunctions_4_3_Core::glBindRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226ce7e0 0xc8226ce880] } +&{glBindSampler QOpenGLFunctions_4_3_Core::glBindSampler commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226cea20 0xc8226ceae0] } +&{glBindTexture QOpenGLFunctions_4_3_Core::glBindTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226cec80 0xc8226ced20] } +&{glBindTransformFeedback QOpenGLFunctions_4_3_Core::glBindTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226cef60 0xc8226cefe0] } +&{glBindVertexArray QOpenGLFunctions_4_3_Core::glBindVertexArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226cf220] } +&{glBindVertexBuffer QOpenGLFunctions_4_3_Core::glBindVertexBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226cf460 0xc8226cf500 0xc8226cf5c0 0xc8226cf660] } +&{glBlendColor QOpenGLFunctions_4_3_Core::glBlendColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226cf800 0xc8226cf8a0 0xc8226cf940 0xc8226cf9e0] } +&{glBlendEquation QOpenGLFunctions_4_3_Core::glBlendEquation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226cfba0] } +&{glBlendEquationSeparate QOpenGLFunctions_4_3_Core::glBlendEquationSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226cfdc0 0xc8226cfea0] } +&{glBlendEquationSeparatei QOpenGLFunctions_4_3_Core::glBlendEquationSeparatei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8219561c0 0xc8219562c0 0xc821956400] } +&{glBlendEquationi QOpenGLFunctions_4_3_Core::glBlendEquationi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8219567a0 0xc821956940] } +&{glBlendFunc QOpenGLFunctions_4_3_Core::glBlendFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821956ce0 0xc821956e80] } +&{glBlendFuncSeparate QOpenGLFunctions_4_3_Core::glBlendFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821957240 0xc821957340 0xc8219574e0 0xc821957600] } +&{glBlendFuncSeparatei QOpenGLFunctions_4_3_Core::glBlendFuncSeparatei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821957960 0xc821957b20 0xc821957c20 0xc821957ca0 0xc821957e80] } +&{glBlendFunci QOpenGLFunctions_4_3_Core::glBlendFunci commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821946220 0xc821946320 0xc821946460] } +&{glBlitFramebuffer QOpenGLFunctions_4_3_Core::glBlitFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8219468e0 0xc821946a20 0xc821946be0 0xc821946d40 0xc821946ee0 0xc821947000 0xc8219470e0 0xc8219472c0 0xc8219473a0 0xc821947540] } +&{glBufferData QOpenGLFunctions_4_3_Core::glBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8219478c0 0xc821947a20 0xc821947ae0 0xc821947c00] } +&{glBufferSubData QOpenGLFunctions_4_3_Core::glBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821947e80 0xc821936000 0xc8219360c0 0xc8219361a0] } +&{glCheckFramebufferStatus QOpenGLFunctions_4_3_Core::glCheckFramebufferStatus commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLenum [0xc821936480] } +&{glClampColor QOpenGLFunctions_4_3_Core::glClampColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821936740 0xc821936860] } +&{glClear QOpenGLFunctions_4_3_Core::glClear commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821936b60] } +&{glClearBufferData QOpenGLFunctions_4_3_Core::glClearBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821936ec0 0xc821936fa0 0xc8219370e0 0xc821937180 0xc8219372c0] } +&{glClearBufferSubData QOpenGLFunctions_4_3_Core::glClearBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8219376c0 0xc8219377a0 0xc821937860 0xc8219379a0 0xc821937ac0 0xc821937b40 0xc821937c60] } +&{glClearBufferfi QOpenGLFunctions_4_3_Core::glClearBufferfi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821937ea0 0xc821937fc0 0xc8219240a0 0xc8219241c0] } +&{glClearBufferfv QOpenGLFunctions_4_3_Core::glClearBufferfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8219243c0 0xc821924480 0xc8219245e0] } +&{glClearBufferiv QOpenGLFunctions_4_3_Core::glClearBufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821924860 0xc8219249a0 0xc821924a80] } +&{glClearBufferuiv QOpenGLFunctions_4_3_Core::glClearBufferuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821924d40 0xc821924e20 0xc821924ec0] } +&{glClearColor QOpenGLFunctions_4_3_Core::glClearColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8219251a0 0xc821925320 0xc8219253e0 0xc8219254e0] } +&{glClearDepth QOpenGLFunctions_4_3_Core::glClearDepth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8219257c0] } +&{glClearDepthf QOpenGLFunctions_4_3_Core::glClearDepthf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821925a80] } +&{glClearStencil QOpenGLFunctions_4_3_Core::glClearStencil commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821925d00] } +&{glClientWaitSync QOpenGLFunctions_4_3_Core::glClientWaitSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLenum [0xc821916000 0xc8219160c0 0xc8219161a0] } +&{glColorMask QOpenGLFunctions_4_3_Core::glColorMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8219163e0 0xc8219164c0 0xc821916580 0xc821916620] } +&{glColorMaski QOpenGLFunctions_4_3_Core::glColorMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8219168e0 0xc8219169a0 0xc821916a20 0xc821916b40 0xc821916c60] } +&{glColorP3ui QOpenGLFunctions_4_3_Core::glColorP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821916e80 0xc821916f40] } +&{glColorP3uiv QOpenGLFunctions_4_3_Core::glColorP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8219171a0 0xc821917260] } +&{glColorP4ui QOpenGLFunctions_4_3_Core::glColorP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8219174a0 0xc8219175a0] } +&{glColorP4uiv QOpenGLFunctions_4_3_Core::glColorP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8219177a0 0xc8219178a0] } +&{glCompileShader QOpenGLFunctions_4_3_Core::glCompileShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821917ae0] } +&{glCompressedTexImage1D QOpenGLFunctions_4_3_Core::glCompressedTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821917da0 0xc821917e80 0xc821917f80 0xc821908060 0xc821908180 0xc821908320 0xc8219083e0] } +&{glCompressedTexImage2D QOpenGLFunctions_4_3_Core::glCompressedTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821908720 0xc821908880 0xc821908980 0xc821908a60 0xc821908be0 0xc821908cc0 0xc821908e40 0xc821908f20] } +&{glCompressedTexImage3D QOpenGLFunctions_4_3_Core::glCompressedTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8219092e0 0xc821909440 0xc821909500 0xc821909660 0xc8219097c0 0xc821909860 0xc821909920 0xc821909a80 0xc821909be0] } +&{glCompressedTexSubImage1D QOpenGLFunctions_4_3_Core::glCompressedTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821909fa0 0xc8218f8140 0xc8218f8260 0xc8218f8360 0xc8218f8500 0xc8218f85e0 0xc8218f8700] } +&{glCompressedTexSubImage2D QOpenGLFunctions_4_3_Core::glCompressedTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8218f8b20 0xc8218f8c20 0xc8218f8d00 0xc8218f8e60 0xc8218f8f20 0xc8218f8fe0 0xc8218f9140 0xc8218f9200 0xc8218f9360] } +&{glCompressedTexSubImage3D QOpenGLFunctions_4_3_Core::glCompressedTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8218f9720 0xc8218f9820 0xc8218f98c0 0xc8218f9a40 0xc8218f9b60 0xc8218f9c00 0xc8218f9d20 0xc8218f9ea0 0xc8218f9f60 0xc8218e80e0 0xc8218e81a0] } +&{glCopyBufferSubData QOpenGLFunctions_4_3_Core::glCopyBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8218e8540 0xc8218e86a0 0xc8218e8760 0xc8218e88a0 0xc8218e89c0] } +&{glCopyImageSubData QOpenGLFunctions_4_3_Core::glCopyImageSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8218e8d60 0xc8218e8e20 0xc8218e8f00 0xc8218e9060 0xc8218e9140 0xc8218e9240 0xc8218e92e0 0xc8218e9400 0xc8218e94c0 0xc8218e9620 0xc8218e9720 0xc8218e98a0 0xc8218e9960 0xc8218e9b80 0xc8218e9c60] } +&{glCopyTexImage1D QOpenGLFunctions_4_3_Core::glCopyTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8218c6000 0xc8218c61c0 0xc8218c62e0 0xc8218c63e0 0xc8218c6580 0xc8218c6640 0xc8218c6780] } +&{glCopyTexImage2D QOpenGLFunctions_4_3_Core::glCopyTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8218c6a00 0xc8218c6aa0 0xc8218c6b80 0xc8218c6cc0 0xc8218c6e20 0xc8218c6f20 0xc8218c7000 0xc8218c7140] } +&{glCopyTexSubImage1D QOpenGLFunctions_4_3_Core::glCopyTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8218c7500 0xc8218c7600 0xc8218c7700 0xc8218c77e0 0xc8218c7900 0xc8218c79e0] } +&{glCopyTexSubImage2D QOpenGLFunctions_4_3_Core::glCopyTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8218c7d40 0xc8218c7e60 0xc8218c7f60 0xc8218b80c0 0xc8218b81e0 0xc8218b8280 0xc8218b83e0 0xc8218b8480] } +&{glCopyTexSubImage3D QOpenGLFunctions_4_3_Core::glCopyTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8218b8840 0xc8218b8940 0xc8218b8a40 0xc8218b8b00 0xc8218b8ce0 0xc8218b8da0 0xc8218b8f40 0xc8218b90a0 0xc8218b9200] } +&{glCreateProgram QOpenGLFunctions_4_3_Core::glCreateProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLuint [] } +&{glCreateShader QOpenGLFunctions_4_3_Core::glCreateShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLuint [0xc8218b9640] } +&{glCreateShaderProgramv QOpenGLFunctions_4_3_Core::glCreateShaderProgramv commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLuint [0xc8218b9ac0 0xc8218b9c20 0xc8218b9de0] } +&{glCullFace QOpenGLFunctions_4_3_Core::glCullFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8218a8220] } +&{glDeleteBuffers QOpenGLFunctions_4_3_Core::glDeleteBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8218a8600 0xc8218a8740] } +&{glDeleteFramebuffers QOpenGLFunctions_4_3_Core::glDeleteFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8218a8b40 0xc8218a8cc0] } +&{glDeleteProgram QOpenGLFunctions_4_3_Core::glDeleteProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8218a9020] } +&{glDeleteProgramPipelines QOpenGLFunctions_4_3_Core::glDeleteProgramPipelines commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8218a94c0 0xc8218a9640] } +&{glDeleteQueries QOpenGLFunctions_4_3_Core::glDeleteQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8218a9960 0xc8218a9aa0] } +&{glDeleteRenderbuffers QOpenGLFunctions_4_3_Core::glDeleteRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8218a9e40 0xc8218a9fc0] } +&{glDeleteSamplers QOpenGLFunctions_4_3_Core::glDeleteSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821898300 0xc8218983a0] } +&{glDeleteShader QOpenGLFunctions_4_3_Core::glDeleteShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8218987a0] } +&{glDeleteSync QOpenGLFunctions_4_3_Core::glDeleteSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821898aa0] } +&{glDeleteTextures QOpenGLFunctions_4_3_Core::glDeleteTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821898d80 0xc821898ec0] } +&{glDeleteTransformFeedbacks QOpenGLFunctions_4_3_Core::glDeleteTransformFeedbacks commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8218992a0 0xc821899340] } +&{glDeleteVertexArrays QOpenGLFunctions_4_3_Core::glDeleteVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821899700 0xc821899820] } +&{glDepthFunc QOpenGLFunctions_4_3_Core::glDepthFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821899b40] } +&{glDepthMask QOpenGLFunctions_4_3_Core::glDepthMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821899ea0] } +&{glDepthRange QOpenGLFunctions_4_3_Core::glDepthRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821886140 0xc821886240] } +&{glDepthRangeArrayv QOpenGLFunctions_4_3_Core::glDepthRangeArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8218865e0 0xc8218866c0 0xc8218867e0] } +&{glDepthRangeIndexed QOpenGLFunctions_4_3_Core::glDepthRangeIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821886b80 0xc821886c80 0xc821886d60] } +&{glDepthRangef QOpenGLFunctions_4_3_Core::glDepthRangef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821887200 0xc8218872e0] } +&{glDetachShader QOpenGLFunctions_4_3_Core::glDetachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821887660 0xc821887740] } +&{glDisable QOpenGLFunctions_4_3_Core::glDisable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821887b60] } +&{glDisableVertexAttribArray QOpenGLFunctions_4_3_Core::glDisableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821887fc0] } +&{glDisablei QOpenGLFunctions_4_3_Core::glDisablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821872340 0xc821872420] } +&{glDispatchCompute QOpenGLFunctions_4_3_Core::glDispatchCompute commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821872880 0xc821872aa0 0xc821872ba0] } +&{glDispatchComputeIndirect QOpenGLFunctions_4_3_Core::glDispatchComputeIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821872fc0] } +&{glDrawArrays QOpenGLFunctions_4_3_Core::glDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8218733a0 0xc8218734a0 0xc821873660] } +&{glDrawArraysIndirect QOpenGLFunctions_4_3_Core::glDrawArraysIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821873a00 0xc821873ba0] } +&{glDrawArraysInstanced QOpenGLFunctions_4_3_Core::glDrawArraysInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821873fe0 0xc8218620e0 0xc821862200 0xc821862360] } +&{glDrawArraysInstancedBaseInstance QOpenGLFunctions_4_3_Core::glDrawArraysInstancedBaseInstance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8218627a0 0xc8218628c0 0xc821862a60 0xc821862b40 0xc821862ce0] } +&{glDrawBuffer QOpenGLFunctions_4_3_Core::glDrawBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821862fc0] } +&{glDrawBuffers QOpenGLFunctions_4_3_Core::glDrawBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8218633e0 0xc821863560] } +&{glDrawElements QOpenGLFunctions_4_3_Core::glDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8218638c0 0xc821863a80 0xc821863c40 0xc821863d80] } +&{glDrawElementsBaseVertex QOpenGLFunctions_4_3_Core::glDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8218521a0 0xc8218522c0 0xc8218523c0 0xc8218524c0 0xc821852640] } +&{glDrawElementsIndirect QOpenGLFunctions_4_3_Core::glDrawElementsIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821852b00 0xc821852c40 0xc821852da0] } +&{glDrawElementsInstanced QOpenGLFunctions_4_3_Core::glDrawElementsInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8218531e0 0xc8218533e0 0xc821853540 0xc8218535e0 0xc8218537c0] } +&{glDrawElementsInstancedBaseInstance QOpenGLFunctions_4_3_Core::glDrawElementsInstancedBaseInstance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821853b20 0xc821853c20 0xc821853e20 0xc821853fa0 0xc82183e0a0 0xc82183e200] } +&{glDrawElementsInstancedBaseVertex QOpenGLFunctions_4_3_Core::glDrawElementsInstancedBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82183e460 0xc82183e5e0 0xc82183e660 0xc82183e800 0xc82183e980 0xc82183eb60] } +&{glDrawElementsInstancedBaseVertexBaseInstance QOpenGLFunctions_4_3_Core::glDrawElementsInstancedBaseVertexBaseInstance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82183ef00 0xc82183f020 0xc82183f120 0xc82183f2a0 0xc82183f360 0xc82183f520 0xc82183f640] } +&{glDrawRangeElements QOpenGLFunctions_4_3_Core::glDrawRangeElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82183faa0 0xc82183fb60 0xc82183fcc0 0xc82183fde0 0xc82183ff20 0xc82182c020] } +&{glDrawRangeElementsBaseVertex QOpenGLFunctions_4_3_Core::glDrawRangeElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82182c360 0xc82182c520 0xc82182c600 0xc82182c680 0xc82182c880 0xc82182ca40 0xc82182cbe0] } +&{glDrawTransformFeedback QOpenGLFunctions_4_3_Core::glDrawTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82182cf60 0xc82182d0e0] } +&{glDrawTransformFeedbackInstanced QOpenGLFunctions_4_3_Core::glDrawTransformFeedbackInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82182d560 0xc82182d620 0xc82182d780] } +&{glDrawTransformFeedbackStream QOpenGLFunctions_4_3_Core::glDrawTransformFeedbackStream commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82182dbc0 0xc82182dd60 0xc82182de80] } +&{glDrawTransformFeedbackStreamInstanced QOpenGLFunctions_4_3_Core::glDrawTransformFeedbackStreamInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821816140 0xc821816280 0xc821816340 0xc8218163c0] } +&{glEnable QOpenGLFunctions_4_3_Core::glEnable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821816660] } +&{glEnableVertexAttribArray QOpenGLFunctions_4_3_Core::glEnableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8218169c0] } +&{glEnablei QOpenGLFunctions_4_3_Core::glEnablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821816be0 0xc821816cc0] } +&{glEndConditionalRender QOpenGLFunctions_4_3_Core::glEndConditionalRender commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [] } +&{glEndQuery QOpenGLFunctions_4_3_Core::glEndQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8218170c0] } +&{glEndQueryIndexed QOpenGLFunctions_4_3_Core::glEndQueryIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821817360 0xc821817480] } +&{glEndTransformFeedback QOpenGLFunctions_4_3_Core::glEndTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [] } +&{glFenceSync QOpenGLFunctions_4_3_Core::glFenceSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLsync [0xc821817860 0xc821817940] } +&{glFinish QOpenGLFunctions_4_3_Core::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [] } +&{glFlush QOpenGLFunctions_4_3_Core::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [] } +&{glFlushMappedBufferRange QOpenGLFunctions_4_3_Core::glFlushMappedBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821817f60 0xc8217f6100 0xc8217f6220] } +&{glFramebufferParameteri QOpenGLFunctions_4_3_Core::glFramebufferParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217f6640 0xc8217f6840 0xc8217f6980] } +&{glFramebufferRenderbuffer QOpenGLFunctions_4_3_Core::glFramebufferRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217f6da0 0xc8217f6e40 0xc8217f7040 0xc8217f7260] } +&{glFramebufferTexture QOpenGLFunctions_4_3_Core::glFramebufferTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217f7600 0xc8217f7720 0xc8217f7860 0xc8217f7900] } +&{glFramebufferTexture1D QOpenGLFunctions_4_3_Core::glFramebufferTexture1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217f7e40 0xc8217f7f60 0xc8226dc080 0xc8226dc160 0xc8226dc220] } +&{glFramebufferTexture2D QOpenGLFunctions_4_3_Core::glFramebufferTexture2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226dc440 0xc8226dc4c0 0xc8226dc5a0 0xc8226dc640 0xc8226dc6e0] } +&{glFramebufferTexture3D QOpenGLFunctions_4_3_Core::glFramebufferTexture3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226dc920 0xc8226dc9c0 0xc8226dca80 0xc8226dcb40 0xc8226dcc00 0xc8226dcc80] } +&{glFramebufferTextureLayer QOpenGLFunctions_4_3_Core::glFramebufferTextureLayer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226dcec0 0xc8226dcf80 0xc8226dd020 0xc8226dd0a0 0xc8226dd180] } +&{glFrontFace QOpenGLFunctions_4_3_Core::glFrontFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226dd360] } +&{glGenBuffers QOpenGLFunctions_4_3_Core::glGenBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226dd520 0xc8226dd5c0] } +&{glGenFramebuffers QOpenGLFunctions_4_3_Core::glGenFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226dd7e0 0xc8226dd860] } +&{glGenProgramPipelines QOpenGLFunctions_4_3_Core::glGenProgramPipelines commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226ddac0 0xc8226ddb60] } +&{glGenQueries QOpenGLFunctions_4_3_Core::glGenQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226ddd20 0xc8226ddda0] } +&{glGenRenderbuffers QOpenGLFunctions_4_3_Core::glGenRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226ddfc0 0xc8217e20c0] } +&{glGenSamplers QOpenGLFunctions_4_3_Core::glGenSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217e2440 0xc8217e25a0] } +&{glGenTextures QOpenGLFunctions_4_3_Core::glGenTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217e28a0 0xc8217e2a40] } +&{glGenTransformFeedbacks QOpenGLFunctions_4_3_Core::glGenTransformFeedbacks commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217e2ec0 0xc8217e2fa0] } +&{glGenVertexArrays QOpenGLFunctions_4_3_Core::glGenVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217e34c0 0xc8217e3600] } +&{glGenerateMipmap QOpenGLFunctions_4_3_Core::glGenerateMipmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217e3a00] } +&{glGetActiveAtomicCounterBufferiv QOpenGLFunctions_4_3_Core::glGetActiveAtomicCounterBufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217e3e00 0xc8217e3f40 0xc8217d2000 0xc8217d21a0] } +&{glGetActiveAttrib QOpenGLFunctions_4_3_Core::glGetActiveAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217d24a0 0xc8217d2600 0xc8217d2720 0xc8217d27c0 0xc8217d2920 0xc8217d2a80 0xc8217d2b20] } +&{glGetActiveSubroutineName QOpenGLFunctions_4_3_Core::glGetActiveSubroutineName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217d3040 0xc8217d31e0 0xc8217d32a0 0xc8217d33c0 0xc8217d3540 0xc8217d3620] } +&{glGetActiveSubroutineUniformName QOpenGLFunctions_4_3_Core::glGetActiveSubroutineUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217d3a20 0xc8217d3b20 0xc8217d3c20 0xc8217d3d40 0xc8217d3ea0 0xc8217c0040] } +&{glGetActiveSubroutineUniformiv QOpenGLFunctions_4_3_Core::glGetActiveSubroutineUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217c04a0 0xc8217c05c0 0xc8217c0700 0xc8217c08e0 0xc8217c0a00] } +&{glGetActiveUniform QOpenGLFunctions_4_3_Core::glGetActiveUniform commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217c0e40 0xc8217c0f00 0xc8217c0fe0 0xc8217c1120 0xc8217c1240 0xc8217c1380 0xc8217c1460] } +&{glGetActiveUniformBlockName QOpenGLFunctions_4_3_Core::glGetActiveUniformBlockName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217c1860 0xc8217c1920 0xc8217c1b40 0xc8217c1c40 0xc8217c1e20] } +&{glGetActiveUniformBlockiv QOpenGLFunctions_4_3_Core::glGetActiveUniformBlockiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217b0320 0xc8217b0500 0xc8217b07c0 0xc8217b08c0] } +&{glGetActiveUniformName QOpenGLFunctions_4_3_Core::glGetActiveUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217b0de0 0xc8217b0f20 0xc8217b1020 0xc8217b1160 0xc8217b13e0] } +&{glGetActiveUniformsiv QOpenGLFunctions_4_3_Core::glGetActiveUniformsiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217b1820 0xc8217b1940 0xc8217b1a40 0xc8217b1c00 0xc8217b1d80] } +&{glGetAttachedShaders QOpenGLFunctions_4_3_Core::glGetAttachedShaders commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217a0200 0xc8217a0300 0xc8217a0540 0xc8217a0660] } +&{glGetAttribLocation QOpenGLFunctions_4_3_Core::glGetAttribLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLint [0xc8217a0a40 0xc8217a0bc0] } +&{glGetBooleani_v QOpenGLFunctions_4_3_Core::glGetBooleani_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217a0e40 0xc8217a0f80 0xc8217a1040] } +&{glGetBooleanv QOpenGLFunctions_4_3_Core::glGetBooleanv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217a1380 0xc8217a1420] } +&{glGetBufferParameteri64v QOpenGLFunctions_4_3_Core::glGetBufferParameteri64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217a17e0 0xc8217a19a0 0xc8217a1a40] } +&{glGetBufferParameteriv QOpenGLFunctions_4_3_Core::glGetBufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217a1e40 0xc8217a1f60 0xc821786040] } +&{glGetBufferPointerv QOpenGLFunctions_4_3_Core::glGetBufferPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821786500 0xc821786640 0xc821786740] } +&{glGetBufferSubData QOpenGLFunctions_4_3_Core::glGetBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821786ae0 0xc821786be0 0xc821786ca0 0xc821786dc0] } +&{glGetCompressedTexImage QOpenGLFunctions_4_3_Core::glGetCompressedTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217872a0 0xc821787400 0xc821787480] } +&{glGetDoublei_v QOpenGLFunctions_4_3_Core::glGetDoublei_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821787740 0xc821787860 0xc821787920] } +&{glGetDoublev QOpenGLFunctions_4_3_Core::glGetDoublev commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821787c40 0xc821787d40] } +&{glGetError QOpenGLFunctions_4_3_Core::glGetError commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLenum [] } +&{glGetFloati_v QOpenGLFunctions_4_3_Core::glGetFloati_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821776120 0xc8217761c0 0xc821776340] } +&{glGetFloatv QOpenGLFunctions_4_3_Core::glGetFloatv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821776660 0xc8217767c0] } +&{glGetFragDataIndex QOpenGLFunctions_4_3_Core::glGetFragDataIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLint [0xc821776ae0 0xc821776c60] } +&{glGetFragDataLocation QOpenGLFunctions_4_3_Core::glGetFragDataLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLint [0xc821776f80 0xc8217770a0] } +&{glGetFramebufferAttachmentParameteriv QOpenGLFunctions_4_3_Core::glGetFramebufferAttachmentParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821777300 0xc821777400 0xc8217775a0 0xc821777640] } +&{glGetFramebufferParameteriv QOpenGLFunctions_4_3_Core::glGetFramebufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821777a60 0xc821777b40 0xc821777c80] } +&{glGetInteger64i_v QOpenGLFunctions_4_3_Core::glGetInteger64i_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821764020 0xc821764100 0xc8217641a0] } +&{glGetInteger64v QOpenGLFunctions_4_3_Core::glGetInteger64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217644c0 0xc821764600] } +&{glGetIntegeri_v QOpenGLFunctions_4_3_Core::glGetIntegeri_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821764920 0xc8217649e0 0xc821764ae0] } +&{glGetIntegerv QOpenGLFunctions_4_3_Core::glGetIntegerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821764f60 0xc821765080] } +&{glGetInternalformati64v QOpenGLFunctions_4_3_Core::glGetInternalformati64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217654e0 0xc8217656a0 0xc821765880 0xc821765a00 0xc821765bc0] } +&{glGetInternalformativ QOpenGLFunctions_4_3_Core::glGetInternalformativ commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82173e080 0xc82173e1e0 0xc82173e320 0xc82173e440 0xc82173e620] } +&{glGetMultisamplefv QOpenGLFunctions_4_3_Core::glGetMultisamplefv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82173ea60 0xc82173ec40 0xc82173ed40] } +&{glGetPointerv QOpenGLFunctions_4_3_Core::glGetPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82173f100 0xc82173f200] } +&{glGetProgramBinary QOpenGLFunctions_4_3_Core::glGetProgramBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82173f6c0 0xc82173f7a0 0xc82173f8e0 0xc82173fa40 0xc82173fb80] } +&{glGetProgramInfoLog QOpenGLFunctions_4_3_Core::glGetProgramInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82173ff40 0xc8217280a0 0xc821728160 0xc8217282a0] } +&{glGetProgramInterfaceiv QOpenGLFunctions_4_3_Core::glGetProgramInterfaceiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821728620 0xc821728700 0xc821728840 0xc821728900] } +&{glGetProgramPipelineInfoLog QOpenGLFunctions_4_3_Core::glGetProgramPipelineInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821728be0 0xc821728cc0 0xc821728da0 0xc821728ec0] } +&{glGetProgramPipelineiv QOpenGLFunctions_4_3_Core::glGetProgramPipelineiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821729240 0xc8217292e0 0xc8217293c0] } +&{glGetProgramResourceIndex QOpenGLFunctions_4_3_Core::glGetProgramResourceIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLuint [0xc821729800 0xc821729960 0xc821729a60] } +&{glGetProgramResourceLocation QOpenGLFunctions_4_3_Core::glGetProgramResourceLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLint [0xc821729e80 0xc821729fa0 0xc821714140] } +&{glGetProgramResourceLocationIndex QOpenGLFunctions_4_3_Core::glGetProgramResourceLocationIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLint [0xc8217143c0 0xc821714500 0xc821714640] } +&{glGetProgramResourceName QOpenGLFunctions_4_3_Core::glGetProgramResourceName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821714a20 0xc821714c00 0xc821714d20 0xc821714e20 0xc821714f60 0xc821715100] } +&{glGetProgramResourceiv QOpenGLFunctions_4_3_Core::glGetProgramResourceiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821715460 0xc8217155e0 0xc821715700 0xc8217157c0 0xc8217158c0 0xc8217159e0 0xc821715b00 0xc821715ba0] } +&{glGetProgramStageiv QOpenGLFunctions_4_3_Core::glGetProgramStageiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821715fa0 0xc8217001a0 0xc8217002c0 0xc8217003c0] } +&{glGetProgramiv QOpenGLFunctions_4_3_Core::glGetProgramiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217006e0 0xc821700780 0xc8217008a0] } +&{glGetQueryIndexediv QOpenGLFunctions_4_3_Core::glGetQueryIndexediv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821700c80 0xc821700d20 0xc821700e00 0xc821700e80] } +&{glGetQueryObjecti64v QOpenGLFunctions_4_3_Core::glGetQueryObjecti64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821701180 0xc821701240 0xc821701360] } +&{glGetQueryObjectiv QOpenGLFunctions_4_3_Core::glGetQueryObjectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8217016a0 0xc8217017c0 0xc8217018c0] } +&{glGetQueryObjectui64v QOpenGLFunctions_4_3_Core::glGetQueryObjectui64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821701c80 0xc821701dc0 0xc821701f00] } +&{glGetQueryObjectuiv QOpenGLFunctions_4_3_Core::glGetQueryObjectuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8216f0280 0xc8216f0360 0xc8216f0460] } +&{glGetQueryiv QOpenGLFunctions_4_3_Core::glGetQueryiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8216f0700 0xc8216f07e0 0xc8216f0920] } +&{glGetRenderbufferParameteriv QOpenGLFunctions_4_3_Core::glGetRenderbufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8216f0ca0 0xc8216f0d40 0xc8216f0ec0] } +&{glGetSamplerParameterIiv QOpenGLFunctions_4_3_Core::glGetSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8216f1260 0xc8216f1300 0xc8216f13e0] } +&{glGetSamplerParameterIuiv QOpenGLFunctions_4_3_Core::glGetSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8216f16c0 0xc8216f1840 0xc8216f1900] } +&{glGetSamplerParameterfv QOpenGLFunctions_4_3_Core::glGetSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8216f1c60 0xc8216f1dc0 0xc8216f1ee0] } +&{glGetSamplerParameteriv QOpenGLFunctions_4_3_Core::glGetSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8216e0300 0xc8216e0400 0xc8216e0520] } +&{glGetShaderInfoLog QOpenGLFunctions_4_3_Core::glGetShaderInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8216e08a0 0xc8216e09a0 0xc8216e0b20 0xc8216e0c60] } +&{glGetShaderPrecisionFormat QOpenGLFunctions_4_3_Core::glGetShaderPrecisionFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8216e1080 0xc8216e1220 0xc8216e13a0 0xc8216e14a0] } +&{glGetShaderSource QOpenGLFunctions_4_3_Core::glGetShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8216e19a0 0xc8216e1ac0 0xc8216e1bc0 0xc8216e1ce0] } +&{glGetShaderiv QOpenGLFunctions_4_3_Core::glGetShaderiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8216e1fc0 0xc8216cc0c0 0xc8216cc1c0] } +&{glGetString QOpenGLFunctions_4_3_Core::glGetString commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false const GLubyte * [0xc8216cc500] } +&{glGetStringi QOpenGLFunctions_4_3_Core::glGetStringi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false const GLubyte * [0xc8216cc7c0 0xc8216cc920] } +&{glGetSubroutineIndex QOpenGLFunctions_4_3_Core::glGetSubroutineIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLuint [0xc8216cccc0 0xc8216ccdc0 0xc8216ccea0] } +&{glGetSubroutineUniformLocation QOpenGLFunctions_4_3_Core::glGetSubroutineUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLint [0xc8216cd2e0 0xc8216cd4a0 0xc8216cd600] } +&{glGetSynciv QOpenGLFunctions_4_3_Core::glGetSynciv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8216cd8e0 0xc8216cda40 0xc8216cdae0 0xc8216cdc80 0xc8216cdd80] } +&{glGetTexImage QOpenGLFunctions_4_3_Core::glGetTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8216be060 0xc8216be180 0xc8216be280 0xc8216be3a0 0xc8216be480] } +&{glGetTexLevelParameterfv QOpenGLFunctions_4_3_Core::glGetTexLevelParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8216be840 0xc8216be980 0xc8216beae0 0xc8216bebc0] } +&{glGetTexLevelParameteriv QOpenGLFunctions_4_3_Core::glGetTexLevelParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8216bef40 0xc8216bf020 0xc8216bf1a0 0xc8216bf2c0] } +&{glGetTexParameterIiv QOpenGLFunctions_4_3_Core::glGetTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8216bf640 0xc8216bf780 0xc8216bf920] } +&{glGetTexParameterIuiv QOpenGLFunctions_4_3_Core::glGetTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8216bfd40 0xc8216bfea0 0xc8216bffa0] } +&{glGetTexParameterfv QOpenGLFunctions_4_3_Core::glGetTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8216aa400 0xc8216aa520 0xc8216aa6a0] } +&{glGetTexParameteriv QOpenGLFunctions_4_3_Core::glGetTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8216aab00 0xc8216aaba0 0xc8216aac80] } +&{glGetTransformFeedbackVarying QOpenGLFunctions_4_3_Core::glGetTransformFeedbackVarying commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8216aafa0 0xc8216ab100 0xc8216ab1c0 0xc8216ab300 0xc8216ab3c0 0xc8216ab500 0xc8216ab600] } +&{glGetUniformBlockIndex QOpenGLFunctions_4_3_Core::glGetUniformBlockIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLuint [0xc8216ab940 0xc8216aba40] } +&{glGetUniformIndices QOpenGLFunctions_4_3_Core::glGetUniformIndices commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8216abd80 0xc8216abea0 0xc8216abf40 0xc821680180] } +&{glGetUniformLocation QOpenGLFunctions_4_3_Core::glGetUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLint [0xc8216804a0 0xc8216805e0] } +&{glGetUniformSubroutineuiv QOpenGLFunctions_4_3_Core::glGetUniformSubroutineuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8216809c0 0xc821680ac0 0xc821680bc0] } +&{glGetUniformdv QOpenGLFunctions_4_3_Core::glGetUniformdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821680e40 0xc821680fa0 0xc821681040] } +&{glGetUniformfv QOpenGLFunctions_4_3_Core::glGetUniformfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8216812c0 0xc821681400 0xc821681520] } +&{glGetUniformiv QOpenGLFunctions_4_3_Core::glGetUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8216817c0 0xc821681840 0xc821681980] } +&{glGetUniformuiv QOpenGLFunctions_4_3_Core::glGetUniformuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821681c40 0xc821681ce0 0xc821681e00] } +&{glGetVertexAttribIiv QOpenGLFunctions_4_3_Core::glGetVertexAttribIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82166e180 0xc82166e220 0xc82166e3c0] } +&{glGetVertexAttribIuiv QOpenGLFunctions_4_3_Core::glGetVertexAttribIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82166e740 0xc82166e860 0xc82166e980] } +&{glGetVertexAttribLdv QOpenGLFunctions_4_3_Core::glGetVertexAttribLdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82166ed80 0xc82166ee60 0xc82166ef40] } +&{glGetVertexAttribPointerv QOpenGLFunctions_4_3_Core::glGetVertexAttribPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82166f340 0xc82166f420 0xc82166f540] } +&{glGetVertexAttribdv QOpenGLFunctions_4_3_Core::glGetVertexAttribdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82166f900 0xc82166fa00 0xc82166fba0] } +&{glGetVertexAttribfv QOpenGLFunctions_4_3_Core::glGetVertexAttribfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82166fec0 0xc82166ffe0 0xc82165e0a0] } +&{glGetVertexAttribiv QOpenGLFunctions_4_3_Core::glGetVertexAttribiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82165e480 0xc82165e600 0xc82165e6e0] } +&{glHint QOpenGLFunctions_4_3_Core::glHint commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82165e980 0xc82165ea80] } +&{glIndexub QOpenGLFunctions_4_3_Core::glIndexub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82165eda0] } +&{glIndexubv QOpenGLFunctions_4_3_Core::glIndexubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82165f0e0] } +&{glInvalidateBufferData QOpenGLFunctions_4_3_Core::glInvalidateBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82165f4a0] } +&{glInvalidateBufferSubData QOpenGLFunctions_4_3_Core::glInvalidateBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82165f880 0xc82165f940 0xc82165fa60] } +&{glInvalidateFramebuffer QOpenGLFunctions_4_3_Core::glInvalidateFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82165fe60 0xc82165ff80 0xc82164a020] } +&{glInvalidateSubFramebuffer QOpenGLFunctions_4_3_Core::glInvalidateSubFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82164a460 0xc82164a540 0xc82164a6a0 0xc82164a780 0xc82164a8a0 0xc82164a980 0xc82164ab20] } +&{glInvalidateTexImage QOpenGLFunctions_4_3_Core::glInvalidateTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82164ae60 0xc82164af80] } +&{glInvalidateTexSubImage QOpenGLFunctions_4_3_Core::glInvalidateTexSubImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82164b2e0 0xc82164b440 0xc82164b5a0 0xc82164b620 0xc82164b7e0 0xc82164b8e0 0xc82164b9e0 0xc82164bac0] } +&{glIsBuffer QOpenGLFunctions_4_3_Core::glIsBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLboolean [0xc82164bda0] } +&{glIsEnabled QOpenGLFunctions_4_3_Core::glIsEnabled commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLboolean [0xc8226ee040] } +&{glIsEnabledi QOpenGLFunctions_4_3_Core::glIsEnabledi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLboolean [0xc8226ee220 0xc8226ee2a0] } +&{glIsFramebuffer QOpenGLFunctions_4_3_Core::glIsFramebuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLboolean [0xc8226ee440] } +&{glIsProgram QOpenGLFunctions_4_3_Core::glIsProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLboolean [0xc8226ee620] } +&{glIsProgramPipeline QOpenGLFunctions_4_3_Core::glIsProgramPipeline commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLboolean [0xc8226ee840] } +&{glIsQuery QOpenGLFunctions_4_3_Core::glIsQuery commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLboolean [0xc8226eea20] } +&{glIsRenderbuffer QOpenGLFunctions_4_3_Core::glIsRenderbuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLboolean [0xc8226eec00] } +&{glIsSampler QOpenGLFunctions_4_3_Core::glIsSampler commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLboolean [0xc8226eeda0] } +&{glIsShader QOpenGLFunctions_4_3_Core::glIsShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLboolean [0xc8226eef80] } +&{glIsSync QOpenGLFunctions_4_3_Core::glIsSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLboolean [0xc8226ef180] } +&{glIsTexture QOpenGLFunctions_4_3_Core::glIsTexture commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLboolean [0xc8226ef320] } +&{glIsTransformFeedback QOpenGLFunctions_4_3_Core::glIsTransformFeedback commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLboolean [0xc8226ef560] } +&{glIsVertexArray QOpenGLFunctions_4_3_Core::glIsVertexArray commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLboolean [0xc8226ef720] } +&{glLineWidth QOpenGLFunctions_4_3_Core::glLineWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226ef8e0] } +&{glLinkProgram QOpenGLFunctions_4_3_Core::glLinkProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226efae0] } +&{glLogicOp QOpenGLFunctions_4_3_Core::glLogicOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226efce0] } +&{glMapBuffer QOpenGLFunctions_4_3_Core::glMapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLvoid * [0xc8226efe60 0xc8226eff40] } +&{glMapBufferRange QOpenGLFunctions_4_3_Core::glMapBufferRange commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLvoid * [0xc82163a220 0xc82163a2e0 0xc82163a3c0 0xc82163a560] } +&{glMemoryBarrier QOpenGLFunctions_4_3_Core::glMemoryBarrier commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82163a820] } +&{glMinSampleShading QOpenGLFunctions_4_3_Core::glMinSampleShading commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82163ab20] } +&{glMultiDrawArrays QOpenGLFunctions_4_3_Core::glMultiDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82163ae60 0xc82163b020 0xc82163b100 0xc82163b220] } +&{glMultiDrawArraysIndirect QOpenGLFunctions_4_3_Core::glMultiDrawArraysIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82163b600 0xc82163b6e0 0xc82163b800 0xc82163b960] } +&{glMultiDrawElements QOpenGLFunctions_4_3_Core::glMultiDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82163bd40 0xc82163be60 0xc82163bf00 0xc821624060 0xc821624220] } +&{glMultiDrawElementsBaseVertex QOpenGLFunctions_4_3_Core::glMultiDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821624500 0xc8216245a0 0xc821624680 0xc821624820 0xc821624a20 0xc821624ae0] } +&{glMultiDrawElementsIndirect QOpenGLFunctions_4_3_Core::glMultiDrawElementsIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821624e20 0xc821624f20 0xc821624fc0 0xc8216250e0 0xc821625240] } +&{glMultiTexCoordP1ui QOpenGLFunctions_4_3_Core::glMultiTexCoordP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821625620 0xc821625700 0xc821625800] } +&{glMultiTexCoordP1uiv QOpenGLFunctions_4_3_Core::glMultiTexCoordP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821625c20 0xc821625d00 0xc821625e40] } +&{glMultiTexCoordP2ui QOpenGLFunctions_4_3_Core::glMultiTexCoordP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8216141e0 0xc821614320 0xc8216143e0] } +&{glMultiTexCoordP2uiv QOpenGLFunctions_4_3_Core::glMultiTexCoordP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821614780 0xc821614900 0xc8216149a0] } +&{glMultiTexCoordP3ui QOpenGLFunctions_4_3_Core::glMultiTexCoordP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821614d80 0xc821614e60 0xc821615000] } +&{glMultiTexCoordP3uiv QOpenGLFunctions_4_3_Core::glMultiTexCoordP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821615360 0xc821615440 0xc821615560] } +&{glMultiTexCoordP4ui QOpenGLFunctions_4_3_Core::glMultiTexCoordP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821615940 0xc821615a80 0xc821615b20] } +&{glMultiTexCoordP4uiv QOpenGLFunctions_4_3_Core::glMultiTexCoordP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821615ec0 0xc821615fe0 0xc821604100] } +&{glNormalP3ui QOpenGLFunctions_4_3_Core::glNormalP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821604400 0xc821604500] } +&{glNormalP3uiv QOpenGLFunctions_4_3_Core::glNormalP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821604740 0xc8216048c0] } +&{glPatchParameterfv QOpenGLFunctions_4_3_Core::glPatchParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821604c80 0xc821604d80] } +&{glPatchParameteri QOpenGLFunctions_4_3_Core::glPatchParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821605120 0xc8216052a0] } +&{glPauseTransformFeedback QOpenGLFunctions_4_3_Core::glPauseTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [] } +&{glPixelStoref QOpenGLFunctions_4_3_Core::glPixelStoref commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821605720 0xc821605860] } +&{glPixelStorei QOpenGLFunctions_4_3_Core::glPixelStorei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821605b20 0xc821605c80] } +&{glPointParameterf QOpenGLFunctions_4_3_Core::glPointParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821605fc0 0xc8215dc080] } +&{glPointParameterfv QOpenGLFunctions_4_3_Core::glPointParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8215dc360 0xc8215dc420] } +&{glPointParameteri QOpenGLFunctions_4_3_Core::glPointParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8215dc700 0xc8215dc800] } +&{glPointParameteriv QOpenGLFunctions_4_3_Core::glPointParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8215dcac0 0xc8215dcb60] } +&{glPointSize QOpenGLFunctions_4_3_Core::glPointSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8215dcda0] } +&{glPolygonMode QOpenGLFunctions_4_3_Core::glPolygonMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8215dd0a0 0xc8215dd160] } +&{glPolygonOffset QOpenGLFunctions_4_3_Core::glPolygonOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8215dd440 0xc8215dd500] } +&{glPrimitiveRestartIndex QOpenGLFunctions_4_3_Core::glPrimitiveRestartIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8215dd8c0] } +&{glProgramBinary QOpenGLFunctions_4_3_Core::glProgramBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8215ddb80 0xc8215ddc40 0xc8215ddd00 0xc8215ddde0] } +&{glProgramParameteri QOpenGLFunctions_4_3_Core::glProgramParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8215c80c0 0xc8215c8220 0xc8215c8340] } +&{glProgramUniform1d QOpenGLFunctions_4_3_Core::glProgramUniform1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8215c8640 0xc8215c8720 0xc8215c87e0] } +&{glProgramUniform1dv QOpenGLFunctions_4_3_Core::glProgramUniform1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8215c8ae0 0xc8215c8be0 0xc8215c8c60 0xc8215c8ce0] } +&{glProgramUniform1f QOpenGLFunctions_4_3_Core::glProgramUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8215c8fe0 0xc8215c90e0 0xc8215c9220] } +&{glProgramUniform1fv QOpenGLFunctions_4_3_Core::glProgramUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8215c94a0 0xc8215c95c0 0xc8215c96c0 0xc8215c97a0] } +&{glProgramUniform1i QOpenGLFunctions_4_3_Core::glProgramUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8215c9b20 0xc8215c9c20 0xc8215c9ce0] } +&{glProgramUniform1iv QOpenGLFunctions_4_3_Core::glProgramUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8215b00c0 0xc8215b0200 0xc8215b0300 0xc8215b03a0] } +&{glProgramUniform1ui QOpenGLFunctions_4_3_Core::glProgramUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8215b07c0 0xc8215b0860 0xc8215b0900] } +&{glProgramUniform1uiv QOpenGLFunctions_4_3_Core::glProgramUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8215b0b60 0xc8215b0ca0 0xc8215b0d40 0xc8215b0e20] } +&{glProgramUniform2d QOpenGLFunctions_4_3_Core::glProgramUniform2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8215b11c0 0xc8215b12a0 0xc8215b1320 0xc8215b1500] } +&{glProgramUniform2dv QOpenGLFunctions_4_3_Core::glProgramUniform2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8215b1880 0xc8215b19c0 0xc8215b1b00 0xc8215b1c80] } +&{glProgramUniform2f QOpenGLFunctions_4_3_Core::glProgramUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82158c140 0xc82158c280 0xc82158c400 0xc82158c560] } +&{glProgramUniform2fv QOpenGLFunctions_4_3_Core::glProgramUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82158c9c0 0xc82158cac0 0xc82158cbe0 0xc82158cd00] } +&{glProgramUniform2i QOpenGLFunctions_4_3_Core::glProgramUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82158d200 0xc82158d360 0xc82158d500 0xc82158d600] } +&{glProgramUniform2iv QOpenGLFunctions_4_3_Core::glProgramUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82158db60 0xc82158dd40 0xc82158de40 0xc82158dfc0] } +&{glProgramUniform2ui QOpenGLFunctions_4_3_Core::glProgramUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82157e420 0xc82157e580 0xc82157e6e0 0xc82157e7e0] } +&{glProgramUniform2uiv QOpenGLFunctions_4_3_Core::glProgramUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82157eb80 0xc82157ec40 0xc82157ece0 0xc82157edc0] } +&{glProgramUniform3d QOpenGLFunctions_4_3_Core::glProgramUniform3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82157f060 0xc82157f160 0xc82157f220 0xc82157f2c0 0xc82157f420] } +&{glProgramUniform3dv QOpenGLFunctions_4_3_Core::glProgramUniform3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82157f880 0xc82157f9a0 0xc82157fae0 0xc82157fc60] } +&{glProgramUniform3f QOpenGLFunctions_4_3_Core::glProgramUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82156e100 0xc82156e220 0xc82156e3a0 0xc82156e480 0xc82156e640] } +&{glProgramUniform3fv QOpenGLFunctions_4_3_Core::glProgramUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82156ea20 0xc82156ebc0 0xc82156eca0 0xc82156edc0] } +&{glProgramUniform3i QOpenGLFunctions_4_3_Core::glProgramUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82156f2e0 0xc82156f3e0 0xc82156f4e0 0xc82156f5e0 0xc82156f7c0] } +&{glProgramUniform3iv QOpenGLFunctions_4_3_Core::glProgramUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82156fb80 0xc82156fca0 0xc82156fec0 0xc821562040] } +&{glProgramUniform3ui QOpenGLFunctions_4_3_Core::glProgramUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821562400 0xc821562540 0xc821562720 0xc8215627e0 0xc821562960] } +&{glProgramUniform3uiv QOpenGLFunctions_4_3_Core::glProgramUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821562e80 0xc821562fa0 0xc821563120 0xc8215631e0] } +&{glProgramUniform4d QOpenGLFunctions_4_3_Core::glProgramUniform4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821563640 0xc8215637c0 0xc821563920 0xc821563a60 0xc821563c40 0xc821563d60] } +&{glProgramUniform4dv QOpenGLFunctions_4_3_Core::glProgramUniform4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82154e220 0xc82154e360 0xc82154e4c0 0xc82154e620] } +&{glProgramUniform4f QOpenGLFunctions_4_3_Core::glProgramUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82154ea60 0xc82154eb80 0xc82154ed00 0xc82154ee20 0xc82154efa0 0xc82154f0c0] } +&{glProgramUniform4fv QOpenGLFunctions_4_3_Core::glProgramUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82154f4c0 0xc82154f6e0 0xc82154f840 0xc82154f900] } +&{glProgramUniform4i QOpenGLFunctions_4_3_Core::glProgramUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82154fd00 0xc82154fe20 0xc82154ffc0 0xc821540100 0xc821540260 0xc821540360] } +&{glProgramUniform4iv QOpenGLFunctions_4_3_Core::glProgramUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8215407e0 0xc8215408e0 0xc821540a00 0xc821540aa0] } +&{glProgramUniform4ui QOpenGLFunctions_4_3_Core::glProgramUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821540f60 0xc821541080 0xc8215411e0 0xc821541340 0xc821541480 0xc821541600] } +&{glProgramUniform4uiv QOpenGLFunctions_4_3_Core::glProgramUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8215419e0 0xc821541b20 0xc821541bc0 0xc821541ce0] } +&{glProgramUniformMatrix2dv QOpenGLFunctions_4_3_Core::glProgramUniformMatrix2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82152a040 0xc82152a120 0xc82152a240 0xc82152a380 0xc82152a480] } +&{glProgramUniformMatrix2fv QOpenGLFunctions_4_3_Core::glProgramUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82152a800 0xc82152a8c0 0xc82152a9e0 0xc82152ab60 0xc82152ac40] } +&{glProgramUniformMatrix2x3dv QOpenGLFunctions_4_3_Core::glProgramUniformMatrix2x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82152b080 0xc82152b1c0 0xc82152b300 0xc82152b480 0xc82152b5c0] } +&{glProgramUniformMatrix2x3fv QOpenGLFunctions_4_3_Core::glProgramUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82152b9c0 0xc82152ba80 0xc82152bc60 0xc82152bde0 0xc82152bf80] } +&{glProgramUniformMatrix2x4dv QOpenGLFunctions_4_3_Core::glProgramUniformMatrix2x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8215143a0 0xc8215144a0 0xc821514540 0xc821514740 0xc8215148e0] } +&{glProgramUniformMatrix2x4fv QOpenGLFunctions_4_3_Core::glProgramUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821514da0 0xc821514ee0 0xc821514f80 0xc821515120 0xc821515300] } +&{glProgramUniformMatrix3dv QOpenGLFunctions_4_3_Core::glProgramUniformMatrix3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821515700 0xc821515860 0xc821515940 0xc821515b00 0xc821515cc0] } +&{glProgramUniformMatrix3fv QOpenGLFunctions_4_3_Core::glProgramUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821504040 0xc821504140 0xc821504260 0xc821504300 0xc821504420] } +&{glProgramUniformMatrix3x2dv QOpenGLFunctions_4_3_Core::glProgramUniformMatrix3x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821504800 0xc821504940 0xc821504a80 0xc821504b60 0xc821504d00] } +&{glProgramUniformMatrix3x2fv QOpenGLFunctions_4_3_Core::glProgramUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821505200 0xc821505320 0xc821505420 0xc821505540 0xc8215056e0] } +&{glProgramUniformMatrix3x4dv QOpenGLFunctions_4_3_Core::glProgramUniformMatrix3x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821505aa0 0xc821505ba0 0xc821505d20 0xc821505e40 0xc8214f2040] } +&{glProgramUniformMatrix3x4fv QOpenGLFunctions_4_3_Core::glProgramUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214f2520 0xc8214f2640 0xc8214f2780 0xc8214f2900 0xc8214f2ae0] } +&{glProgramUniformMatrix4dv QOpenGLFunctions_4_3_Core::glProgramUniformMatrix4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214f3000 0xc8214f30a0 0xc8214f3260 0xc8214f3440 0xc8214f3560] } +&{glProgramUniformMatrix4fv QOpenGLFunctions_4_3_Core::glProgramUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214f39c0 0xc8214f3b00 0xc8214f3c60 0xc8214f3d40 0xc8214f3ee0] } +&{glProgramUniformMatrix4x2dv QOpenGLFunctions_4_3_Core::glProgramUniformMatrix4x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214e2280 0xc8214e2380 0xc8214e2440 0xc8214e2540 0xc8214e26a0] } +&{glProgramUniformMatrix4x2fv QOpenGLFunctions_4_3_Core::glProgramUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214e29e0 0xc8214e2aa0 0xc8214e2bc0 0xc8214e2ca0 0xc8214e2e00] } +&{glProgramUniformMatrix4x3dv QOpenGLFunctions_4_3_Core::glProgramUniformMatrix4x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214e3100 0xc8214e31e0 0xc8214e32a0 0xc8214e3440 0xc8214e3540] } +&{glProgramUniformMatrix4x3fv QOpenGLFunctions_4_3_Core::glProgramUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214e3840 0xc8214e3920 0xc8214e3a40 0xc8214e3ba0 0xc8214e3c40] } +&{glProvokingVertex QOpenGLFunctions_4_3_Core::glProvokingVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214d2040] } +&{glQueryCounter QOpenGLFunctions_4_3_Core::glQueryCounter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214d23e0 0xc8214d2500] } +&{glReadBuffer QOpenGLFunctions_4_3_Core::glReadBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214d28a0] } +&{glReadPixels QOpenGLFunctions_4_3_Core::glReadPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214d2ba0 0xc8214d2c60 0xc8214d2d60 0xc8214d2ee0 0xc8214d3000 0xc8214d30c0 0xc8214d3220] } +&{glReleaseShaderCompiler QOpenGLFunctions_4_3_Core::glReleaseShaderCompiler commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [] } +&{glRenderbufferStorage QOpenGLFunctions_4_3_Core::glRenderbufferStorage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214d37a0 0xc8214d38a0 0xc8214d3a00 0xc8214d3b00] } +&{glRenderbufferStorageMultisample QOpenGLFunctions_4_3_Core::glRenderbufferStorageMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214d3ee0 0xc8214d3fe0 0xc8214c40c0 0xc8214c4240 0xc8214c42e0] } +&{glResumeTransformFeedback QOpenGLFunctions_4_3_Core::glResumeTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [] } +&{glSampleCoverage QOpenGLFunctions_4_3_Core::glSampleCoverage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214c47e0 0xc8214c48e0] } +&{glSampleMaski QOpenGLFunctions_4_3_Core::glSampleMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214c4c40 0xc8214c4ce0] } +&{glSamplerParameterIiv QOpenGLFunctions_4_3_Core::glSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214c5080 0xc8214c5180 0xc8214c5260] } +&{glSamplerParameterIuiv QOpenGLFunctions_4_3_Core::glSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214c55a0 0xc8214c56c0 0xc8214c57c0] } +&{glSamplerParameterf QOpenGLFunctions_4_3_Core::glSamplerParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214c5b20 0xc8214c5cc0 0xc8214c5d60] } +&{glSamplerParameterfv QOpenGLFunctions_4_3_Core::glSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214a20a0 0xc8214a21e0 0xc8214a22e0] } +&{glSamplerParameteri QOpenGLFunctions_4_3_Core::glSamplerParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214a2660 0xc8214a2720 0xc8214a28a0] } +&{glSamplerParameteriv QOpenGLFunctions_4_3_Core::glSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214a2c40 0xc8214a2d20 0xc8214a2e40] } +&{glScissor QOpenGLFunctions_4_3_Core::glScissor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214a30e0 0xc8214a3200 0xc8214a3300 0xc8214a3420] } +&{glScissorArrayv QOpenGLFunctions_4_3_Core::glScissorArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214a36a0 0xc8214a37c0 0xc8214a38e0] } +&{glScissorIndexed QOpenGLFunctions_4_3_Core::glScissorIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214a3bc0 0xc8214a3ce0 0xc8214a3dc0 0xc8214a3ee0 0xc8214a3fe0] } +&{glScissorIndexedv QOpenGLFunctions_4_3_Core::glScissorIndexedv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821494400 0xc8214944a0] } +&{glSecondaryColorP3ui QOpenGLFunctions_4_3_Core::glSecondaryColorP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821494840 0xc8214949c0] } +&{glSecondaryColorP3uiv QOpenGLFunctions_4_3_Core::glSecondaryColorP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821494d00 0xc821494dc0] } +&{glShaderBinary QOpenGLFunctions_4_3_Core::glShaderBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821494fe0 0xc8214950c0 0xc8214951c0 0xc821495280 0xc821495380] } +&{glShaderSource QOpenGLFunctions_4_3_Core::glShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214955a0 0xc821495700 0xc821495860 0xc8214959e0] } +&{glShaderStorageBlockBinding QOpenGLFunctions_4_3_Core::glShaderStorageBlockBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821495da0 0xc821495f00 0xc821484080] } +&{glStencilFunc QOpenGLFunctions_4_3_Core::glStencilFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214843e0 0xc821484560 0xc821484680] } +&{glStencilFuncSeparate QOpenGLFunctions_4_3_Core::glStencilFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214849e0 0xc821484b20 0xc821484c80 0xc821484d40] } +&{glStencilMask QOpenGLFunctions_4_3_Core::glStencilMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821485040] } +&{glStencilMaskSeparate QOpenGLFunctions_4_3_Core::glStencilMaskSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214853a0 0xc821485440] } +&{glStencilOp QOpenGLFunctions_4_3_Core::glStencilOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821485680 0xc8214857c0 0xc821485860] } +&{glStencilOpSeparate QOpenGLFunctions_4_3_Core::glStencilOpSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821485b40 0xc821485c00 0xc821485ca0 0xc821485d80] } +&{glTexBuffer QOpenGLFunctions_4_3_Core::glTexBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821485fc0 0xc8214700a0 0xc821470140] } +&{glTexBufferRange QOpenGLFunctions_4_3_Core::glTexBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821470320 0xc821470420 0xc8214704c0 0xc8214705a0 0xc821470640] } +&{glTexCoordP1ui QOpenGLFunctions_4_3_Core::glTexCoordP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214708e0 0xc8214709c0] } +&{glTexCoordP1uiv QOpenGLFunctions_4_3_Core::glTexCoordP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821470be0 0xc821470cc0] } +&{glTexCoordP2ui QOpenGLFunctions_4_3_Core::glTexCoordP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821470ec0 0xc821470f80] } +&{glTexCoordP2uiv QOpenGLFunctions_4_3_Core::glTexCoordP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214711c0 0xc8214712e0] } +&{glTexCoordP3ui QOpenGLFunctions_4_3_Core::glTexCoordP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821471500 0xc8214715c0] } +&{glTexCoordP3uiv QOpenGLFunctions_4_3_Core::glTexCoordP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821471800 0xc8214718c0] } +&{glTexCoordP4ui QOpenGLFunctions_4_3_Core::glTexCoordP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821471ba0 0xc821471cc0] } +&{glTexCoordP4uiv QOpenGLFunctions_4_3_Core::glTexCoordP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821462100 0xc821462220] } +&{glTexImage1D QOpenGLFunctions_4_3_Core::glTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821462580 0xc8214626c0 0xc821462840 0xc821462960 0xc821462b20 0xc821462c60 0xc821462d40 0xc821462f00] } +&{glTexImage2D QOpenGLFunctions_4_3_Core::glTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821463340 0xc821463500 0xc8214635c0 0xc8214636a0 0xc8214638e0 0xc821463980 0xc821463b00 0xc821463c00 0xc821463e40] } +&{glTexImage2DMultisample QOpenGLFunctions_4_3_Core::glTexImage2DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214501a0 0xc821450260 0xc821450340 0xc8214504e0 0xc8214505e0 0xc8214506e0] } +&{glTexImage3D QOpenGLFunctions_4_3_Core::glTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214509e0 0xc821450b00 0xc821450c60 0xc821450d20 0xc821450ea0 0xc821450fa0 0xc821451060 0xc821451100 0xc821451260 0xc821451340] } +&{glTexImage3DMultisample QOpenGLFunctions_4_3_Core::glTexImage3DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821451700 0xc8214517a0 0xc8214518c0 0xc8214519a0 0xc821451b00 0xc821451c40 0xc821451d40] } +&{glTexParameterIiv QOpenGLFunctions_4_3_Core::glTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821442120 0xc8214422c0 0xc821442420] } +&{glTexParameterIuiv QOpenGLFunctions_4_3_Core::glTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821442880 0xc8214429a0 0xc821442ae0] } +&{glTexParameterf QOpenGLFunctions_4_3_Core::glTexParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821442ee0 0xc821442fc0 0xc821443140] } +&{glTexParameterfv QOpenGLFunctions_4_3_Core::glTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821443540 0xc8214436e0 0xc8214437a0] } +&{glTexParameteri QOpenGLFunctions_4_3_Core::glTexParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821443b00 0xc821443ca0 0xc821443dc0] } +&{glTexParameteriv QOpenGLFunctions_4_3_Core::glTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821430160 0xc8214302a0 0xc8214303a0] } +&{glTexStorage1D QOpenGLFunctions_4_3_Core::glTexStorage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821430760 0xc8214308a0 0xc821430a00 0xc821430b20] } +&{glTexStorage2D QOpenGLFunctions_4_3_Core::glTexStorage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821430ea0 0xc821431000 0xc8214310c0 0xc821431200 0xc821431380] } +&{glTexStorage2DMultisample QOpenGLFunctions_4_3_Core::glTexStorage2DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821431800 0xc8214319a0 0xc821431ae0 0xc821431c80 0xc821431de0 0xc821431fe0] } +&{glTexStorage3D QOpenGLFunctions_4_3_Core::glTexStorage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821422420 0xc821422500 0xc8214225c0 0xc8214227c0 0xc8214228e0 0xc821422a80] } +&{glTexStorage3DMultisample QOpenGLFunctions_4_3_Core::glTexStorage3DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821422da0 0xc821422f40 0xc821423060 0xc821423180 0xc821423320 0xc821423460 0xc8214235c0] } +&{glTexSubImage1D QOpenGLFunctions_4_3_Core::glTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821423960 0xc821423ba0 0xc821423c60 0xc821423d80 0xc821423f00 0xc8214120a0 0xc821412180] } +&{glTexSubImage2D QOpenGLFunctions_4_3_Core::glTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214124a0 0xc821412660 0xc8214127c0 0xc8214128a0 0xc821412a60 0xc821412b60 0xc821412cc0 0xc821412da0 0xc821412f40] } +&{glTexSubImage3D QOpenGLFunctions_4_3_Core::glTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821413220 0xc821413360 0xc821413420 0xc821413580 0xc8214136c0 0xc821413800 0xc8214138c0 0xc821413a60 0xc821413be0 0xc821413cc0 0xc821413e60] } +&{glTextureView QOpenGLFunctions_4_3_Core::glTextureView commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214001c0 0xc8214003a0 0xc821400520 0xc821400620 0xc821400780 0xc8214008e0 0xc821400ac0 0xc821400bc0] } +&{glTransformFeedbackVaryings QOpenGLFunctions_4_3_Core::glTransformFeedbackVaryings commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8214010c0 0xc821401240 0xc821401440 0xc8214015e0] } +&{glUniform1d QOpenGLFunctions_4_3_Core::glUniform1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821401880 0xc8214019a0] } +&{glUniform1dv QOpenGLFunctions_4_3_Core::glUniform1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821401d80 0xc821401ea0 0xc8213f0080] } +&{glUniform1f QOpenGLFunctions_4_3_Core::glUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213f0400 0xc8213f04e0] } +&{glUniform1fv QOpenGLFunctions_4_3_Core::glUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213f0860 0xc8213f0a00 0xc8213f0b40] } +&{glUniform1i QOpenGLFunctions_4_3_Core::glUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213f0f20 0xc8213f1000] } +&{glUniform1iv QOpenGLFunctions_4_3_Core::glUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213f1480 0xc8213f15e0 0xc8213f16a0] } +&{glUniform1ui QOpenGLFunctions_4_3_Core::glUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213f1aa0 0xc8213f1c20] } +&{glUniform1uiv QOpenGLFunctions_4_3_Core::glUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213f1f20 0xc8213de180 0xc8213de320] } +&{glUniform2d QOpenGLFunctions_4_3_Core::glUniform2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213de6a0 0xc8213de7c0 0xc8213de940] } +&{glUniform2dv QOpenGLFunctions_4_3_Core::glUniform2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213ded00 0xc8213dedc0 0xc8213defc0] } +&{glUniform2f QOpenGLFunctions_4_3_Core::glUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213df320 0xc8213df500 0xc8213df640] } +&{glUniform2fv QOpenGLFunctions_4_3_Core::glUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213dfa80 0xc8213dfb80 0xc8213dfcc0] } +&{glUniform2i QOpenGLFunctions_4_3_Core::glUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226fc000 0xc8226fc080 0xc8226fc140] } +&{glUniform2iv QOpenGLFunctions_4_3_Core::glUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226fc2e0 0xc8226fc3a0 0xc8226fc440] } +&{glUniform2ui QOpenGLFunctions_4_3_Core::glUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226fc600 0xc8226fc6a0 0xc8226fc740] } +&{glUniform2uiv QOpenGLFunctions_4_3_Core::glUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226fc8e0 0xc8226fc980 0xc8226fca20] } +&{glUniform3d QOpenGLFunctions_4_3_Core::glUniform3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226fcbe0 0xc8226fcc60 0xc8226fcd00 0xc8226fcdc0] } +&{glUniform3dv QOpenGLFunctions_4_3_Core::glUniform3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226fcf80 0xc8226fd020 0xc8226fd0c0] } +&{glUniform3f QOpenGLFunctions_4_3_Core::glUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226fd260 0xc8226fd300 0xc8226fd3a0 0xc8226fd440] } +&{glUniform3fv QOpenGLFunctions_4_3_Core::glUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226fd620 0xc8226fd6c0 0xc8226fd760] } +&{glUniform3i QOpenGLFunctions_4_3_Core::glUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226fd900 0xc8226fd9e0 0xc8226fda80 0xc8226fdb40] } +&{glUniform3iv QOpenGLFunctions_4_3_Core::glUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226fdce0 0xc8226fdd80 0xc8226fde00] } +&{glUniform3ui QOpenGLFunctions_4_3_Core::glUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8226fdfe0 0xc8213c2060 0xc8213c20e0 0xc8213c2200] } +&{glUniform3uiv QOpenGLFunctions_4_3_Core::glUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213c2420 0xc8213c2500 0xc8213c2600] } +&{glUniform4d QOpenGLFunctions_4_3_Core::glUniform4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213c27e0 0xc8213c28e0 0xc8213c2980 0xc8213c2a60 0xc8213c2b80] } +&{glUniform4dv QOpenGLFunctions_4_3_Core::glUniform4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213c2dc0 0xc8213c2e40 0xc8213c2f20] } +&{glUniform4f QOpenGLFunctions_4_3_Core::glUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213c3140 0xc8213c3220 0xc8213c3300 0xc8213c3440 0xc8213c3520] } +&{glUniform4fv QOpenGLFunctions_4_3_Core::glUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213c37e0 0xc8213c3880 0xc8213c3a00] } +&{glUniform4i QOpenGLFunctions_4_3_Core::glUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213c3be0 0xc8213c3cc0 0xc8213c3dc0 0xc8213c3e80 0xc8213c3fa0] } +&{glUniform4iv QOpenGLFunctions_4_3_Core::glUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213b4320 0xc8213b4400 0xc8213b44c0] } +&{glUniform4ui QOpenGLFunctions_4_3_Core::glUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213b4740 0xc8213b48a0 0xc8213b4960 0xc8213b4b20 0xc8213b4ce0] } +&{glUniform4uiv QOpenGLFunctions_4_3_Core::glUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213b4fa0 0xc8213b5160 0xc8213b52e0] } +&{glUniformBlockBinding QOpenGLFunctions_4_3_Core::glUniformBlockBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213b5780 0xc8213b5940 0xc8213b5ba0] } +&{glUniformMatrix2dv QOpenGLFunctions_4_3_Core::glUniformMatrix2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213a00c0 0xc8213a0260 0xc8213a0340 0xc8213a0400] } +&{glUniformMatrix2fv QOpenGLFunctions_4_3_Core::glUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213a0800 0xc8213a09e0 0xc8213a0aa0 0xc8213a0ba0] } +&{glUniformMatrix2x3dv QOpenGLFunctions_4_3_Core::glUniformMatrix2x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213a0fe0 0xc8213a1120 0xc8213a1260 0xc8213a1340] } +&{glUniformMatrix2x3fv QOpenGLFunctions_4_3_Core::glUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213a1820 0xc8213a1920 0xc8213a1a60 0xc8213a1c00] } +&{glUniformMatrix2x4dv QOpenGLFunctions_4_3_Core::glUniformMatrix2x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821390100 0xc821390240 0xc821390320 0xc821390520] } +&{glUniformMatrix2x4fv QOpenGLFunctions_4_3_Core::glUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821390960 0xc821390ae0 0xc821390c00 0xc821390d60] } +&{glUniformMatrix3dv QOpenGLFunctions_4_3_Core::glUniformMatrix3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213910c0 0xc821391180 0xc821391320 0xc821391400] } +&{glUniformMatrix3fv QOpenGLFunctions_4_3_Core::glUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213917a0 0xc821391880 0xc8213919c0 0xc821391b00] } +&{glUniformMatrix3x2dv QOpenGLFunctions_4_3_Core::glUniformMatrix3x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821391ea0 0xc821391f20 0xc82137c040 0xc82137c160] } +&{glUniformMatrix3x2fv QOpenGLFunctions_4_3_Core::glUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82137c5e0 0xc82137c760 0xc82137c8c0 0xc82137c9c0] } +&{glUniformMatrix3x4dv QOpenGLFunctions_4_3_Core::glUniformMatrix3x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82137ce40 0xc82137cf60 0xc82137d060 0xc82137d140] } +&{glUniformMatrix3x4fv QOpenGLFunctions_4_3_Core::glUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82137d500 0xc82137d600 0xc82137d700 0xc82137d7c0] } +&{glUniformMatrix4dv QOpenGLFunctions_4_3_Core::glUniformMatrix4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82137db80 0xc82137dcc0 0xc82137de40 0xc82137df20] } +&{glUniformMatrix4fv QOpenGLFunctions_4_3_Core::glUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82136e2e0 0xc82136e480 0xc82136e600 0xc82136e740] } +&{glUniformMatrix4x2dv QOpenGLFunctions_4_3_Core::glUniformMatrix4x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82136ed40 0xc82136ee40 0xc82136efa0 0xc82136f140] } +&{glUniformMatrix4x2fv QOpenGLFunctions_4_3_Core::glUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82136f5e0 0xc82136f780 0xc82136f8e0 0xc82136faa0] } +&{glUniformMatrix4x3dv QOpenGLFunctions_4_3_Core::glUniformMatrix4x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82136ff20 0xc82135e0a0 0xc82135e1c0 0xc82135e300] } +&{glUniformMatrix4x3fv QOpenGLFunctions_4_3_Core::glUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82135e740 0xc82135e840 0xc82135e920 0xc82135eaa0] } +&{glUniformSubroutinesuiv QOpenGLFunctions_4_3_Core::glUniformSubroutinesuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82135ee80 0xc82135efe0 0xc82135f0c0] } +&{glUnmapBuffer QOpenGLFunctions_4_3_Core::glUnmapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false GLboolean [0xc82135f480] } +&{glUseProgram QOpenGLFunctions_4_3_Core::glUseProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82135f8a0] } +&{glUseProgramStages QOpenGLFunctions_4_3_Core::glUseProgramStages commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82135fdc0 0xc82135ff40 0xc8213500c0] } +&{glValidateProgram QOpenGLFunctions_4_3_Core::glValidateProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821350580] } +&{glValidateProgramPipeline QOpenGLFunctions_4_3_Core::glValidateProgramPipeline commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821350a20] } +&{glVertexAttribBinding QOpenGLFunctions_4_3_Core::glVertexAttribBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821350fa0 0xc8213510e0] } +&{glVertexAttribDivisor QOpenGLFunctions_4_3_Core::glVertexAttribDivisor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821351460 0xc821351560] } +&{glVertexAttribFormat QOpenGLFunctions_4_3_Core::glVertexAttribFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821351940 0xc821351a80 0xc821351b40 0xc821351c60 0xc821351dc0] } +&{glVertexAttribIFormat QOpenGLFunctions_4_3_Core::glVertexAttribIFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821340180 0xc821340260 0xc821340380 0xc8213404c0] } +&{glVertexAttribIPointer QOpenGLFunctions_4_3_Core::glVertexAttribIPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213408c0 0xc8213409e0 0xc821340ae0 0xc821340c20 0xc821340d60] } +&{glVertexAttribL1d QOpenGLFunctions_4_3_Core::glVertexAttribL1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213412c0 0xc8213413c0] } +&{glVertexAttribL1dv QOpenGLFunctions_4_3_Core::glVertexAttribL1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821341980 0xc821341a80] } +&{glVertexAttribL2d QOpenGLFunctions_4_3_Core::glVertexAttribL2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821341f40 0xc82131c040 0xc82131c160] } +&{glVertexAttribL2dv QOpenGLFunctions_4_3_Core::glVertexAttribL2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82131c460 0xc82131c520] } +&{glVertexAttribL3d QOpenGLFunctions_4_3_Core::glVertexAttribL3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82131c860 0xc82131c920 0xc82131ca20 0xc82131cae0] } +&{glVertexAttribL3dv QOpenGLFunctions_4_3_Core::glVertexAttribL3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82131cf80 0xc82131d100] } +&{glVertexAttribL4d QOpenGLFunctions_4_3_Core::glVertexAttribL4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82131d5a0 0xc82131d6e0 0xc82131d7c0 0xc82131d8e0 0xc82131dae0] } +&{glVertexAttribL4dv QOpenGLFunctions_4_3_Core::glVertexAttribL4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc82131df60 0xc821308080] } +&{glVertexAttribLFormat QOpenGLFunctions_4_3_Core::glVertexAttribLFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213084c0 0xc821308560 0xc821308600 0xc8213086e0] } +&{glVertexAttribLPointer QOpenGLFunctions_4_3_Core::glVertexAttribLPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821308a20 0xc821308b40 0xc821308c20 0xc821308d20 0xc821308e60] } +&{glVertexAttribP1ui QOpenGLFunctions_4_3_Core::glVertexAttribP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8213091c0 0xc821309260 0xc821309380 0xc821309480] } +&{glVertexAttribP1uiv QOpenGLFunctions_4_3_Core::glVertexAttribP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821309820 0xc821309940 0xc821309a40 0xc821309b00] } +&{glVertexAttribP2ui QOpenGLFunctions_4_3_Core::glVertexAttribP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc821309f20 0xc8212fa020 0xc8212fa140 0xc8212fa320] } +&{glVertexAttribP2uiv QOpenGLFunctions_4_3_Core::glVertexAttribP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8212fa780 0xc8212fa840 0xc8212fa9e0 0xc8212fab20] } +&{glVertexAttribP3ui QOpenGLFunctions_4_3_Core::glVertexAttribP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8212faf40 0xc8212fb140 0xc8212fb220 0xc8212fb320] } +&{glVertexAttribP3uiv QOpenGLFunctions_4_3_Core::glVertexAttribP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8212fb680 0xc8212fb8a0 0xc8212fb9c0 0xc8212fbb00] } +&{glVertexAttribP4ui QOpenGLFunctions_4_3_Core::glVertexAttribP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8212fbfa0 0xc8212ec0a0 0xc8212ec1c0 0xc8212ec360] } +&{glVertexAttribP4uiv QOpenGLFunctions_4_3_Core::glVertexAttribP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8212ec6e0 0xc8212ec7c0 0xc8212ec920 0xc8212eca20] } +&{glVertexAttribPointer QOpenGLFunctions_4_3_Core::glVertexAttribPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8212ece80 0xc8212ed000 0xc8212ed160 0xc8212ed280 0xc8212ed460 0xc8212ed5e0] } +&{glVertexBindingDivisor QOpenGLFunctions_4_3_Core::glVertexBindingDivisor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8212eda80 0xc8212edb60] } +&{glVertexP2ui QOpenGLFunctions_4_3_Core::glVertexP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8212edee0 0xc8212d8040] } +&{glVertexP2uiv QOpenGLFunctions_4_3_Core::glVertexP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8212d83a0 0xc8212d8560] } +&{glVertexP3ui QOpenGLFunctions_4_3_Core::glVertexP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8212d88c0 0xc8212d8a20] } +&{glVertexP3uiv QOpenGLFunctions_4_3_Core::glVertexP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8212d8dc0 0xc8212d8e60] } +&{glVertexP4ui QOpenGLFunctions_4_3_Core::glVertexP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8212d9200 0xc8212d92c0] } +&{glVertexP4uiv QOpenGLFunctions_4_3_Core::glVertexP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8212d96e0 0xc8212d9840] } +&{glViewport QOpenGLFunctions_4_3_Core::glViewport commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8212d9bc0 0xc8212d9cc0 0xc8212d9e00 0xc8212d9f60] } +&{glViewportArrayv QOpenGLFunctions_4_3_Core::glViewportArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8212cc2e0 0xc8212cc380 0xc8212cc5c0] } +&{glViewportIndexedf QOpenGLFunctions_4_3_Core::glViewportIndexedf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8212cc9c0 0xc8212ccac0 0xc8212ccc20 0xc8212ccd00 0xc8212ccea0] } +&{glViewportIndexedfv QOpenGLFunctions_4_3_Core::glViewportIndexedfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8212cd200 0xc8212cd360] } +&{glWaitSync QOpenGLFunctions_4_3_Core::glWaitSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_3_core.h non plain false false void [0xc8212cd660 0xc8212cd720 0xc8212cd880] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions_4_4_Compatibility.txt b/internal/binding/dump/QtGui/QOpenGLFunctions_4_4_Compatibility.txt new file mode 100755 index 00000000..b4b4547d --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions_4_4_Compatibility.txt @@ -0,0 +1,959 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions_4_4_Compatibility QOpenGLFunctions_4_4_Compatibility::QOpenGLFunctions_4_4_Compatibility commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.cpp non constructor false false [] } +&{initializeOpenGLFunctions QOpenGLFunctions_4_4_Compatibility::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.cpp impure plain false false bool [] } +&{~QOpenGLFunctions_4_4_Compatibility QOpenGLFunctions_4_4_Compatibility::~QOpenGLFunctions_4_4_Compatibility commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.cpp non destructor false false [] } +&{glAccum QOpenGLFunctions_4_4_Compatibility::glAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8212b4620 0xc8212b4720] } +&{glActiveShaderProgram QOpenGLFunctions_4_4_Compatibility::glActiveShaderProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8212b4a40 0xc8212b4ac0] } +&{glActiveTexture QOpenGLFunctions_4_4_Compatibility::glActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8212b4d00] } +&{glAlphaFunc QOpenGLFunctions_4_4_Compatibility::glAlphaFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8212b4ee0 0xc8212b5000] } +&{glAreTexturesResident QOpenGLFunctions_4_4_Compatibility::glAreTexturesResident commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLboolean [0xc8212b5240 0xc8212b5340 0xc8212b53e0] } +&{glArrayElement QOpenGLFunctions_4_4_Compatibility::glArrayElement commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8212b5640] } +&{glAttachShader QOpenGLFunctions_4_4_Compatibility::glAttachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8212b5820 0xc8212b5920] } +&{glBegin QOpenGLFunctions_4_4_Compatibility::glBegin commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8212b5b00] } +&{glBeginConditionalRender QOpenGLFunctions_4_4_Compatibility::glBeginConditionalRender commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8212b5de0 0xc8212b5ec0] } +&{glBeginQuery QOpenGLFunctions_4_4_Compatibility::glBeginQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8212a40a0 0xc8212a4140] } +&{glBeginQueryIndexed QOpenGLFunctions_4_4_Compatibility::glBeginQueryIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8212a43c0 0xc8212a44e0 0xc8212a4560] } +&{glBeginTransformFeedback QOpenGLFunctions_4_4_Compatibility::glBeginTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8212a4840] } +&{glBindAttribLocation QOpenGLFunctions_4_4_Compatibility::glBindAttribLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8212a4b40 0xc8212a4c60 0xc8212a4d20] } +&{glBindBuffer QOpenGLFunctions_4_4_Compatibility::glBindBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8212a4f80 0xc8212a5060] } +&{glBindBufferBase QOpenGLFunctions_4_4_Compatibility::glBindBufferBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8212a5320 0xc8212a53a0 0xc8212a54a0] } +&{glBindBufferRange QOpenGLFunctions_4_4_Compatibility::glBindBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8212a5900 0xc8212a59e0 0xc8212a5ae0 0xc8212a5c40 0xc8212a5d20] } +&{glBindBuffersBase QOpenGLFunctions_4_4_Compatibility::glBindBuffersBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821292140 0xc821292240 0xc8212923e0 0xc821292540] } +&{glBindBuffersRange QOpenGLFunctions_4_4_Compatibility::glBindBuffersRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821292980 0xc821292a60 0xc821292c00 0xc821292d00 0xc821292f80 0xc8212930c0] } +&{glBindFragDataLocation QOpenGLFunctions_4_4_Compatibility::glBindFragDataLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821293580 0xc821293740 0xc8212938a0] } +&{glBindFragDataLocationIndexed QOpenGLFunctions_4_4_Compatibility::glBindFragDataLocationIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821293d20 0xc821293e60 0xc821293f80 0xc821284040] } +&{glBindFramebuffer QOpenGLFunctions_4_4_Compatibility::glBindFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8212844e0 0xc821284620] } +&{glBindImageTexture QOpenGLFunctions_4_4_Compatibility::glBindImageTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8212849e0 0xc821284ae0 0xc821284ba0 0xc821284d20 0xc821284e40 0xc821284f40 0xc821285040] } +&{glBindImageTextures QOpenGLFunctions_4_4_Compatibility::glBindImageTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8212853e0 0xc821285520 0xc821285620] } +&{glBindProgramPipeline QOpenGLFunctions_4_4_Compatibility::glBindProgramPipeline commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821285a00] } +&{glBindRenderbuffer QOpenGLFunctions_4_4_Compatibility::glBindRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821285d60 0xc821285e20] } +&{glBindSampler QOpenGLFunctions_4_4_Compatibility::glBindSampler commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821274100 0xc8212742e0] } +&{glBindSamplers QOpenGLFunctions_4_4_Compatibility::glBindSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821274580 0xc821274740 0xc8212748e0] } +&{glBindTexture QOpenGLFunctions_4_4_Compatibility::glBindTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821274c40 0xc821274de0] } +&{glBindTextures QOpenGLFunctions_4_4_Compatibility::glBindTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821274fe0 0xc8212750e0 0xc821275200] } +&{glBindTransformFeedback QOpenGLFunctions_4_4_Compatibility::glBindTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8212754e0 0xc821275620] } +&{glBindVertexArray QOpenGLFunctions_4_4_Compatibility::glBindVertexArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821275920] } +&{glBindVertexBuffer QOpenGLFunctions_4_4_Compatibility::glBindVertexBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821275c60 0xc821275d60 0xc821275e20 0xc821264020] } +&{glBindVertexBuffers QOpenGLFunctions_4_4_Compatibility::glBindVertexBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821264420 0xc821264540 0xc821264640 0xc821264720 0xc8212649a0] } +&{glBitmap QOpenGLFunctions_4_4_Compatibility::glBitmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821264c20 0xc821264e40 0xc821264ee0 0xc821265000 0xc821265100 0xc821265200 0xc821265320] } +&{glBlendColor QOpenGLFunctions_4_4_Compatibility::glBlendColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8212655a0 0xc8212656e0 0xc8212658e0 0xc821265980] } +&{glBlendEquation QOpenGLFunctions_4_4_Compatibility::glBlendEquation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821265d60] } +&{glBlendEquationSeparate QOpenGLFunctions_4_4_Compatibility::glBlendEquationSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8212520a0 0xc821252140] } +&{glBlendEquationSeparatei QOpenGLFunctions_4_4_Compatibility::glBlendEquationSeparatei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821252420 0xc821252520 0xc821252680] } +&{glBlendEquationi QOpenGLFunctions_4_4_Compatibility::glBlendEquationi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821252860 0xc821252a00] } +&{glBlendFunc QOpenGLFunctions_4_4_Compatibility::glBlendFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821252ce0 0xc821252e20] } +&{glBlendFuncSeparate QOpenGLFunctions_4_4_Compatibility::glBlendFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821253120 0xc821253220 0xc821253380 0xc821253440] } +&{glBlendFuncSeparatei QOpenGLFunctions_4_4_Compatibility::glBlendFuncSeparatei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8212537c0 0xc821253980 0xc821253a60 0xc821253b60 0xc821253ce0] } +&{glBlendFunci QOpenGLFunctions_4_4_Compatibility::glBlendFunci commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821253ee0 0xc821253f60 0xc82122e0c0] } +&{glBlitFramebuffer QOpenGLFunctions_4_4_Compatibility::glBlitFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82122e360 0xc82122e4c0 0xc82122e5a0 0xc82122e6c0 0xc82122e840 0xc82122e960 0xc82122ea60 0xc82122eb60 0xc82122ec40 0xc82122ed60] } +&{glBufferData QOpenGLFunctions_4_4_Compatibility::glBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82122f000 0xc82122f0e0 0xc82122f200 0xc82122f2e0] } +&{glBufferStorage QOpenGLFunctions_4_4_Compatibility::glBufferStorage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82122f500 0xc82122f5c0 0xc82122f6a0 0xc82122f7a0] } +&{glBufferSubData QOpenGLFunctions_4_4_Compatibility::glBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82122f940 0xc82122fa60 0xc82122fb20 0xc82122fbe0] } +&{glCallList QOpenGLFunctions_4_4_Compatibility::glCallList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82122fe00] } +&{glCallLists QOpenGLFunctions_4_4_Compatibility::glCallLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821216000 0xc821216180 0xc821216240] } +&{glCheckFramebufferStatus QOpenGLFunctions_4_4_Compatibility::glCheckFramebufferStatus commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLenum [0xc821216540] } +&{glClampColor QOpenGLFunctions_4_4_Compatibility::glClampColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821216820 0xc821216960] } +&{glClear QOpenGLFunctions_4_4_Compatibility::glClear commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821216d60] } +&{glClearAccum QOpenGLFunctions_4_4_Compatibility::glClearAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821217040 0xc821217160 0xc8212172a0 0xc8212173a0] } +&{glClearBufferData QOpenGLFunctions_4_4_Compatibility::glClearBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8212177a0 0xc821217900 0xc821217a60 0xc821217ba0 0xc821217d40] } +&{glClearBufferSubData QOpenGLFunctions_4_4_Compatibility::glClearBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821206080 0xc821206140 0xc8212062a0 0xc821206380 0xc821206540 0xc821206680 0xc821206780] } +&{glClearBufferfi QOpenGLFunctions_4_4_Compatibility::glClearBufferfi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821206ae0 0xc821206d00 0xc821206da0 0xc821206f00] } +&{glClearBufferfv QOpenGLFunctions_4_4_Compatibility::glClearBufferfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821207220 0xc8212073c0 0xc8212074c0] } +&{glClearBufferiv QOpenGLFunctions_4_4_Compatibility::glClearBufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821207860 0xc821207920 0xc821207a60] } +&{glClearBufferuiv QOpenGLFunctions_4_4_Compatibility::glClearBufferuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821207de0 0xc821207ee0 0xc8211f4060] } +&{glClearColor QOpenGLFunctions_4_4_Compatibility::glClearColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211f4500 0xc8211f4680 0xc8211f4800 0xc8211f48e0] } +&{glClearDepth QOpenGLFunctions_4_4_Compatibility::glClearDepth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211f4bc0] } +&{glClearDepthf QOpenGLFunctions_4_4_Compatibility::glClearDepthf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211f4f40] } +&{glClearIndex QOpenGLFunctions_4_4_Compatibility::glClearIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211f52e0] } +&{glClearStencil QOpenGLFunctions_4_4_Compatibility::glClearStencil commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211f5660] } +&{glClearTexImage QOpenGLFunctions_4_4_Compatibility::glClearTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211f5920 0xc8211f5b00 0xc8211f5ba0 0xc8211f5cc0 0xc8211f5e80] } +&{glClearTexSubImage QOpenGLFunctions_4_4_Compatibility::glClearTexSubImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211e4280 0xc8211e4400 0xc8211e4560 0xc8211e4620 0xc8211e47c0 0xc8211e4900 0xc8211e4ae0 0xc8211e4be0 0xc8211e4d00 0xc8211e4ec0 0xc8211e5020] } +&{glClientActiveTexture QOpenGLFunctions_4_4_Compatibility::glClientActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211e5480] } +&{glClientWaitSync QOpenGLFunctions_4_4_Compatibility::glClientWaitSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLenum [0xc8211e5780 0xc8211e5860 0xc8211e5960] } +&{glClipPlane QOpenGLFunctions_4_4_Compatibility::glClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211e5cc0 0xc8211e5e20] } +&{glColor3b QOpenGLFunctions_4_4_Compatibility::glColor3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211d0120 0xc8211d0280 0xc8211d0320] } +&{glColor3bv QOpenGLFunctions_4_4_Compatibility::glColor3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211d0680] } +&{glColor3d QOpenGLFunctions_4_4_Compatibility::glColor3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211d0ae0 0xc8211d0b80 0xc8211d0ca0] } +&{glColor3dv QOpenGLFunctions_4_4_Compatibility::glColor3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211d0f40] } +&{glColor3f QOpenGLFunctions_4_4_Compatibility::glColor3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211d1200 0xc8211d1320 0xc8211d13a0] } +&{glColor3fv QOpenGLFunctions_4_4_Compatibility::glColor3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211d1660] } +&{glColor3i QOpenGLFunctions_4_4_Compatibility::glColor3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211d18a0 0xc8211d1960 0xc8211d1ac0] } +&{glColor3iv QOpenGLFunctions_4_4_Compatibility::glColor3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211d1e00] } +&{glColor3s QOpenGLFunctions_4_4_Compatibility::glColor3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211c2020 0xc8211c2140 0xc8211c2200] } +&{glColor3sv QOpenGLFunctions_4_4_Compatibility::glColor3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211c24a0] } +&{glColor3ub QOpenGLFunctions_4_4_Compatibility::glColor3ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211c2720 0xc8211c2820 0xc8211c29a0] } +&{glColor3ubv QOpenGLFunctions_4_4_Compatibility::glColor3ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211c2ce0] } +&{glColor3ui QOpenGLFunctions_4_4_Compatibility::glColor3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211c3060 0xc8211c3340 0xc8211c3460] } +&{glColor3uiv QOpenGLFunctions_4_4_Compatibility::glColor3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211c38e0] } +&{glColor3us QOpenGLFunctions_4_4_Compatibility::glColor3us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211c3d40 0xc8211c3f00 0xc8211b40c0] } +&{glColor3usv QOpenGLFunctions_4_4_Compatibility::glColor3usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211b44e0] } +&{glColor4b QOpenGLFunctions_4_4_Compatibility::glColor4b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211b47c0 0xc8211b4960 0xc8211b4b80 0xc8211b4cc0] } +&{glColor4bv QOpenGLFunctions_4_4_Compatibility::glColor4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211b5080] } +&{glColor4d QOpenGLFunctions_4_4_Compatibility::glColor4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211b54c0 0xc8211b56c0 0xc8211b57c0 0xc8211b5900] } +&{glColor4dv QOpenGLFunctions_4_4_Compatibility::glColor4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211b5c40] } +&{glColor4f QOpenGLFunctions_4_4_Compatibility::glColor4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211a4140 0xc8211a41e0 0xc8211a43e0 0xc8211a4640] } +&{glColor4fv QOpenGLFunctions_4_4_Compatibility::glColor4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211a49c0] } +&{glColor4i QOpenGLFunctions_4_4_Compatibility::glColor4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211a4de0 0xc8211a5000 0xc8211a5140 0xc8211a52c0] } +&{glColor4iv QOpenGLFunctions_4_4_Compatibility::glColor4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211a5700] } +&{glColor4s QOpenGLFunctions_4_4_Compatibility::glColor4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211a5b20 0xc8211a5c20 0xc8211a5e00 0xc8211a5ee0] } +&{glColor4sv QOpenGLFunctions_4_4_Compatibility::glColor4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82119c1a0] } +&{glColor4ub QOpenGLFunctions_4_4_Compatibility::glColor4ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82119c500 0xc82119c640 0xc82119c720 0xc82119c7e0] } +&{glColor4ubv QOpenGLFunctions_4_4_Compatibility::glColor4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82119ca60] } +&{glColor4ui QOpenGLFunctions_4_4_Compatibility::glColor4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82119cca0 0xc82119cd40 0xc82119ce80 0xc82119cf20] } +&{glColor4uiv QOpenGLFunctions_4_4_Compatibility::glColor4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82119d1a0] } +&{glColor4us QOpenGLFunctions_4_4_Compatibility::glColor4us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82119d3a0 0xc82119d500 0xc82119d5c0 0xc82119d740] } +&{glColor4usv QOpenGLFunctions_4_4_Compatibility::glColor4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82119d960] } +&{glColorMask QOpenGLFunctions_4_4_Compatibility::glColorMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82119dc40 0xc82119dd20 0xc82119ddc0 0xc82119df60] } +&{glColorMaski QOpenGLFunctions_4_4_Compatibility::glColorMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82117e2c0 0xc82117e440 0xc82117e5c0 0xc82117e680 0xc82117e880] } +&{glColorMaterial QOpenGLFunctions_4_4_Compatibility::glColorMaterial commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82117eb80 0xc82117ecc0] } +&{glColorP3ui QOpenGLFunctions_4_4_Compatibility::glColorP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82117ef80 0xc82117f100] } +&{glColorP3uiv QOpenGLFunctions_4_4_Compatibility::glColorP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82117f440 0xc82117f5c0] } +&{glColorP4ui QOpenGLFunctions_4_4_Compatibility::glColorP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82117f9c0 0xc82117fb80] } +&{glColorP4uiv QOpenGLFunctions_4_4_Compatibility::glColorP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82117ff80 0xc8211720a0] } +&{glColorPointer QOpenGLFunctions_4_4_Compatibility::glColorPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821172400 0xc8211725c0 0xc8211726e0 0xc8211729a0] } +&{glColorSubTable QOpenGLFunctions_4_4_Compatibility::glColorSubTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821172d00 0xc821172e80 0xc821173040 0xc821173140 0xc821173440 0xc821173540] } +&{glColorTable QOpenGLFunctions_4_4_Compatibility::glColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821173a00 0xc821173ae0 0xc821173d40 0xc821173fc0 0xc821160120 0xc821160280] } +&{glColorTableParameterfv QOpenGLFunctions_4_4_Compatibility::glColorTableParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211607e0 0xc821160a20 0xc821160b60] } +&{glColorTableParameteriv QOpenGLFunctions_4_4_Compatibility::glColorTableParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821161020 0xc8211611a0 0xc821161460] } +&{glCompileShader QOpenGLFunctions_4_4_Compatibility::glCompileShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821161880] } +&{glCompressedTexImage1D QOpenGLFunctions_4_4_Compatibility::glCompressedTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821161d40 0xc821161e80 0xc821148060 0xc821148140 0xc821148320 0xc8211484e0 0xc8211485e0] } +&{glCompressedTexImage2D QOpenGLFunctions_4_4_Compatibility::glCompressedTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211488e0 0xc821148a80 0xc821148c40 0xc821148da0 0xc821148f20 0xc821149080 0xc821149220 0xc8211492e0] } +&{glCompressedTexImage3D QOpenGLFunctions_4_4_Compatibility::glCompressedTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821149620 0xc821149740 0xc8211498a0 0xc821149980 0xc821149aa0 0xc821149b40 0xc821149d00 0xc821149e40 0xc821149fa0] } +&{glCompressedTexSubImage1D QOpenGLFunctions_4_4_Compatibility::glCompressedTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82113a340 0xc82113a440 0xc82113a4e0 0xc82113a660 0xc82113a800 0xc82113a920 0xc82113aa60] } +&{glCompressedTexSubImage2D QOpenGLFunctions_4_4_Compatibility::glCompressedTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82113ae40 0xc82113af80 0xc82113b0c0 0xc82113b240 0xc82113b380 0xc82113b480 0xc82113b5e0 0xc82113b780 0xc82113b940] } +&{glCompressedTexSubImage3D QOpenGLFunctions_4_4_Compatibility::glCompressedTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82113bdc0 0xc82113bfe0 0xc8211240e0 0xc8211241c0 0xc821124340 0xc821124540 0xc821124720 0xc821124860 0xc821124ae0 0xc821124c80 0xc821124e60] } +&{glConvolutionFilter1D QOpenGLFunctions_4_4_Compatibility::glConvolutionFilter1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821125360 0xc8211254e0 0xc8211256a0 0xc821125760 0xc8211258e0 0xc821125a40] } +&{glConvolutionFilter2D QOpenGLFunctions_4_4_Compatibility::glConvolutionFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821125f60 0xc821125fe0 0xc821118120 0xc821118220 0xc821118300 0xc821118460 0xc821118520] } +&{glConvolutionParameterf QOpenGLFunctions_4_4_Compatibility::glConvolutionParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821118840 0xc8211189a0 0xc821118aa0] } +&{glConvolutionParameterfv QOpenGLFunctions_4_4_Compatibility::glConvolutionParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821118f20 0xc821119020 0xc821119180] } +&{glConvolutionParameteri QOpenGLFunctions_4_4_Compatibility::glConvolutionParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821119580 0xc8211196e0 0xc8211197e0] } +&{glConvolutionParameteriv QOpenGLFunctions_4_4_Compatibility::glConvolutionParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821119ca0 0xc821119e00 0xc821119ee0] } +&{glCopyBufferSubData QOpenGLFunctions_4_4_Compatibility::glCopyBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821106460 0xc8211065c0 0xc8211067a0 0xc821106920 0xc821106b60] } +&{glCopyColorSubTable QOpenGLFunctions_4_4_Compatibility::glCopyColorSubTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8211070a0 0xc821107180 0xc821107360 0xc821107460 0xc8211076c0] } +&{glCopyColorTable QOpenGLFunctions_4_4_Compatibility::glCopyColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821107aa0 0xc821107ce0 0xc821107e60 0xc821107f80 0xc8210f81e0] } +&{glCopyConvolutionFilter1D QOpenGLFunctions_4_4_Compatibility::glCopyConvolutionFilter1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8210f86c0 0xc8210f8900 0xc8210f8a60 0xc8210f8c60 0xc8210f8e20] } +&{glCopyConvolutionFilter2D QOpenGLFunctions_4_4_Compatibility::glCopyConvolutionFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8210f9260 0xc8210f9360 0xc8210f9580 0xc8210f96a0 0xc8210f9820 0xc8210f9960] } +&{glCopyImageSubData QOpenGLFunctions_4_4_Compatibility::glCopyImageSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8210f9ec0 0xc8210f6060 0xc8210f6160 0xc8210f61e0 0xc8210f6340 0xc8210f6480 0xc8210f6540 0xc8210f66a0 0xc8210f6800 0xc8210f68c0 0xc8210f6960 0xc8210f6aa0 0xc8210f6ba0 0xc8210f6c40 0xc8210f6d80] } +&{glCopyPixels QOpenGLFunctions_4_4_Compatibility::glCopyPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8210f6fc0 0xc8210f70a0 0xc8210f71c0 0xc8210f72a0 0xc8210f73c0] } +&{glCopyTexImage1D QOpenGLFunctions_4_4_Compatibility::glCopyTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8210f7660 0xc8210f7720 0xc8210f77e0 0xc8210f78e0 0xc8210f7a20 0xc8210f7ac0 0xc8210f7b80] } +&{glCopyTexImage2D QOpenGLFunctions_4_4_Compatibility::glCopyTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8210f7d80 0xc8210f7e40 0xc8210f7f40 0xc8210d21a0 0xc8210d2380 0xc8210d2540 0xc8210d26a0 0xc8210d28a0] } +&{glCopyTexSubImage1D QOpenGLFunctions_4_4_Compatibility::glCopyTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8210d2da0 0xc8210d2f40 0xc8210d3140 0xc8210d3280 0xc8210d3420 0xc8210d3620] } +&{glCopyTexSubImage2D QOpenGLFunctions_4_4_Compatibility::glCopyTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8210d3c40 0xc8210d3dc0 0xc8210d3fc0 0xc8210c40a0 0xc8210c42c0 0xc8210c44c0 0xc8210c4620 0xc8210c4740] } +&{glCopyTexSubImage3D QOpenGLFunctions_4_4_Compatibility::glCopyTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8210c4c00 0xc8210c4e40 0xc8210c5020 0xc8210c5200 0xc8210c53c0 0xc8210c5580 0xc8210c5800 0xc8210c59e0 0xc8210c5ba0] } +&{glCreateProgram QOpenGLFunctions_4_4_Compatibility::glCreateProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLuint [] } +&{glCreateShader QOpenGLFunctions_4_4_Compatibility::glCreateShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLuint [0xc8210b4140] } +&{glCreateShaderProgramv QOpenGLFunctions_4_4_Compatibility::glCreateShaderProgramv commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLuint [0xc8210b4720 0xc8210b47c0 0xc8210b4b00] } +&{glCullFace QOpenGLFunctions_4_4_Compatibility::glCullFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8210b5020] } +&{glDebugMessageCallback QOpenGLFunctions_4_4_Compatibility::glDebugMessageCallback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8210b5520 0xc8210b5720] } +&{glDebugMessageControl QOpenGLFunctions_4_4_Compatibility::glDebugMessageControl commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8210b5ce0 0xc8210b5ea0 0xc8210a0080 0xc8210a0160 0xc8210a0380 0xc8210a0540] } +&{glDebugMessageInsert QOpenGLFunctions_4_4_Compatibility::glDebugMessageInsert commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8210a09c0 0xc8210a0b00 0xc8210a0ca0 0xc8210a0da0 0xc8210a0fc0 0xc8210a10c0] } +&{glDeleteBuffers QOpenGLFunctions_4_4_Compatibility::glDeleteBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8210a14a0 0xc8210a1620] } +&{glDeleteFramebuffers QOpenGLFunctions_4_4_Compatibility::glDeleteFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8210a1ae0 0xc8210a1ce0] } +&{glDeleteLists QOpenGLFunctions_4_4_Compatibility::glDeleteLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8210a1f40 0xc82108e240] } +&{glDeleteProgram QOpenGLFunctions_4_4_Compatibility::glDeleteProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82108e500] } +&{glDeleteProgramPipelines QOpenGLFunctions_4_4_Compatibility::glDeleteProgramPipelines commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82108e9e0 0xc82108eae0] } +&{glDeleteQueries QOpenGLFunctions_4_4_Compatibility::glDeleteQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82108ee20 0xc82108f000] } +&{glDeleteRenderbuffers QOpenGLFunctions_4_4_Compatibility::glDeleteRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82108f520 0xc82108f660] } +&{glDeleteSamplers QOpenGLFunctions_4_4_Compatibility::glDeleteSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82108f980 0xc82108fae0] } +&{glDeleteShader QOpenGLFunctions_4_4_Compatibility::glDeleteShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82108ff00] } +&{glDeleteSync QOpenGLFunctions_4_4_Compatibility::glDeleteSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82107e300] } +&{glDeleteTextures QOpenGLFunctions_4_4_Compatibility::glDeleteTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82107e620 0xc82107e780] } +&{glDeleteTransformFeedbacks QOpenGLFunctions_4_4_Compatibility::glDeleteTransformFeedbacks commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82107ec20 0xc82107ee20] } +&{glDeleteVertexArrays QOpenGLFunctions_4_4_Compatibility::glDeleteVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82107f280 0xc82107f380] } +&{glDepthFunc QOpenGLFunctions_4_4_Compatibility::glDepthFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82107f6a0] } +&{glDepthMask QOpenGLFunctions_4_4_Compatibility::glDepthMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82107fa00] } +&{glDepthRange QOpenGLFunctions_4_4_Compatibility::glDepthRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82107fd00 0xc82107fea0] } +&{glDepthRangeArrayv QOpenGLFunctions_4_4_Compatibility::glDepthRangeArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821072260 0xc8210723e0 0xc821072500] } +&{glDepthRangeIndexed QOpenGLFunctions_4_4_Compatibility::glDepthRangeIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821072980 0xc821072b00 0xc821072be0] } +&{glDepthRangef QOpenGLFunctions_4_4_Compatibility::glDepthRangef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821072f60 0xc821073060] } +&{glDetachShader QOpenGLFunctions_4_4_Compatibility::glDetachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821073320 0xc821073460] } +&{glDisable QOpenGLFunctions_4_4_Compatibility::glDisable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8210736e0] } +&{glDisableClientState QOpenGLFunctions_4_4_Compatibility::glDisableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821073a20] } +&{glDisableVertexAttribArray QOpenGLFunctions_4_4_Compatibility::glDisableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821073d60] } +&{glDisablei QOpenGLFunctions_4_4_Compatibility::glDisablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821073fc0 0xc821064120] } +&{glDispatchCompute QOpenGLFunctions_4_4_Compatibility::glDispatchCompute commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821064580 0xc8210646a0 0xc8210648a0] } +&{glDispatchComputeIndirect QOpenGLFunctions_4_4_Compatibility::glDispatchComputeIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821064dc0] } +&{glDrawArrays QOpenGLFunctions_4_4_Compatibility::glDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821065180 0xc8210653a0 0xc821065500] } +&{glDrawArraysIndirect QOpenGLFunctions_4_4_Compatibility::glDrawArraysIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8210659c0 0xc821065b20] } +&{glDrawArraysInstanced QOpenGLFunctions_4_4_Compatibility::glDrawArraysInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821065fc0 0xc821050260 0xc821050420 0xc821050680] } +&{glDrawArraysInstancedBaseInstance QOpenGLFunctions_4_4_Compatibility::glDrawArraysInstancedBaseInstance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8210509e0 0xc821050b60 0xc821050c80 0xc821050d80 0xc821050f60] } +&{glDrawBuffer QOpenGLFunctions_4_4_Compatibility::glDrawBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8210513c0] } +&{glDrawBuffers QOpenGLFunctions_4_4_Compatibility::glDrawBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8210517c0 0xc8210519c0] } +&{glDrawElements QOpenGLFunctions_4_4_Compatibility::glDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821051d60 0xc821051fa0 0xc821034080 0xc8210341e0] } +&{glDrawElementsBaseVertex QOpenGLFunctions_4_4_Compatibility::glDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821034660 0xc821034860 0xc821034980 0xc821034ae0 0xc821034c60] } +&{glDrawElementsIndirect QOpenGLFunctions_4_4_Compatibility::glDrawElementsIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821035080 0xc8210351a0 0xc8210352e0] } +&{glDrawElementsInstanced QOpenGLFunctions_4_4_Compatibility::glDrawElementsInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821035720 0xc8210358e0 0xc821035a40 0xc821035c40 0xc821035e20] } +&{glDrawElementsInstancedBaseInstance QOpenGLFunctions_4_4_Compatibility::glDrawElementsInstancedBaseInstance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821030080 0xc821030280 0xc821030440 0xc821030520 0xc8210307e0 0xc821030a20] } +&{glDrawElementsInstancedBaseVertex QOpenGLFunctions_4_4_Compatibility::glDrawElementsInstancedBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821030da0 0xc821030f60 0xc8210310c0 0xc821031340 0xc8210314c0 0xc821031680] } +&{glDrawElementsInstancedBaseVertexBaseInstance QOpenGLFunctions_4_4_Compatibility::glDrawElementsInstancedBaseVertexBaseInstance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821031a60 0xc821031bc0 0xc821031da0 0xc821031f40 0xc8210200e0 0xc821020280 0xc8210204e0] } +&{glDrawPixels QOpenGLFunctions_4_4_Compatibility::glDrawPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821020860 0xc821020a20 0xc821020b00 0xc821020d00 0xc821020e60] } +&{glDrawRangeElements QOpenGLFunctions_4_4_Compatibility::glDrawRangeElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8210214a0 0xc821021640 0xc8210216e0 0xc8210219c0 0xc821021c20 0xc821021de0] } +&{glDrawRangeElementsBaseVertex QOpenGLFunctions_4_4_Compatibility::glDrawRangeElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82100e260 0xc82100e400 0xc82100e4a0 0xc82100e560 0xc82100e740 0xc82100e840 0xc82100e9a0] } +&{glDrawTransformFeedback QOpenGLFunctions_4_4_Compatibility::glDrawTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82100eea0 0xc82100efa0] } +&{glDrawTransformFeedbackInstanced QOpenGLFunctions_4_4_Compatibility::glDrawTransformFeedbackInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82100f2e0 0xc82100f420 0xc82100f580] } +&{glDrawTransformFeedbackStream QOpenGLFunctions_4_4_Compatibility::glDrawTransformFeedbackStream commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82100fa00 0xc82100fae0 0xc82100fc00] } +&{glDrawTransformFeedbackStreamInstanced QOpenGLFunctions_4_4_Compatibility::glDrawTransformFeedbackStreamInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82100fea0 0xc821000060 0xc8210001c0 0xc8210002c0] } +&{glEdgeFlag QOpenGLFunctions_4_4_Compatibility::glEdgeFlag commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821000580] } +&{glEdgeFlagPointer QOpenGLFunctions_4_4_Compatibility::glEdgeFlagPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8210008c0 0xc821000960] } +&{glEdgeFlagv QOpenGLFunctions_4_4_Compatibility::glEdgeFlagv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821000d20] } +&{glEnable QOpenGLFunctions_4_4_Compatibility::glEnable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8210011a0] } +&{glEnableClientState QOpenGLFunctions_4_4_Compatibility::glEnableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821001540] } +&{glEnableVertexAttribArray QOpenGLFunctions_4_4_Compatibility::glEnableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8210019a0] } +&{glEnablei QOpenGLFunctions_4_4_Compatibility::glEnablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc821001cc0 0xc821001da0] } +&{glEnd QOpenGLFunctions_4_4_Compatibility::glEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [] } +&{glEndConditionalRender QOpenGLFunctions_4_4_Compatibility::glEndConditionalRender commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [] } +&{glEndList QOpenGLFunctions_4_4_Compatibility::glEndList commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [] } +&{glEndQuery QOpenGLFunctions_4_4_Compatibility::glEndQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ff0600] } +&{glEndQueryIndexed QOpenGLFunctions_4_4_Compatibility::glEndQueryIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ff0ae0 0xc820ff0d20] } +&{glEndTransformFeedback QOpenGLFunctions_4_4_Compatibility::glEndTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [] } +&{glEvalCoord1d QOpenGLFunctions_4_4_Compatibility::glEvalCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ff1460] } +&{glEvalCoord1dv QOpenGLFunctions_4_4_Compatibility::glEvalCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ff1980] } +&{glEvalCoord1f QOpenGLFunctions_4_4_Compatibility::glEvalCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ff1d00] } +&{glEvalCoord1fv QOpenGLFunctions_4_4_Compatibility::glEvalCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820fe00a0] } +&{glEvalCoord2d QOpenGLFunctions_4_4_Compatibility::glEvalCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820fe0440 0xc820fe0520] } +&{glEvalCoord2dv QOpenGLFunctions_4_4_Compatibility::glEvalCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820fe0880] } +&{glEvalCoord2f QOpenGLFunctions_4_4_Compatibility::glEvalCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820fe0b80 0xc820fe0cc0] } +&{glEvalCoord2fv QOpenGLFunctions_4_4_Compatibility::glEvalCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820fe1000] } +&{glEvalMesh1 QOpenGLFunctions_4_4_Compatibility::glEvalMesh1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820fe13a0 0xc820fe14c0 0xc820fe15e0] } +&{glEvalMesh2 QOpenGLFunctions_4_4_Compatibility::glEvalMesh2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820fe1880 0xc820fe1a00 0xc820fe1b00 0xc820fe1c40 0xc820fe1e00] } +&{glEvalPoint1 QOpenGLFunctions_4_4_Compatibility::glEvalPoint1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820fca2c0] } +&{glEvalPoint2 QOpenGLFunctions_4_4_Compatibility::glEvalPoint2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820fca5e0 0xc820fca680] } +&{glFeedbackBuffer QOpenGLFunctions_4_4_Compatibility::glFeedbackBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820fcaa00 0xc820fcab00 0xc820fcacc0] } +&{glFenceSync QOpenGLFunctions_4_4_Compatibility::glFenceSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLsync [0xc820fcaf20 0xc820fcb020] } +&{glFinish QOpenGLFunctions_4_4_Compatibility::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [] } +&{glFlush QOpenGLFunctions_4_4_Compatibility::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [] } +&{glFlushMappedBufferRange QOpenGLFunctions_4_4_Compatibility::glFlushMappedBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820fcb660 0xc820fcb740 0xc820fcb8a0] } +&{glFogCoordPointer QOpenGLFunctions_4_4_Compatibility::glFogCoordPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820fcbd20 0xc820fcbe60 0xc820fcbf20] } +&{glFogCoordd QOpenGLFunctions_4_4_Compatibility::glFogCoordd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820fb82a0] } +&{glFogCoorddv QOpenGLFunctions_4_4_Compatibility::glFogCoorddv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820fb8600] } +&{glFogCoordf QOpenGLFunctions_4_4_Compatibility::glFogCoordf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820fb89a0] } +&{glFogCoordfv QOpenGLFunctions_4_4_Compatibility::glFogCoordfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820fb8cc0] } +&{glFogf QOpenGLFunctions_4_4_Compatibility::glFogf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820fb9040 0xc820fb9140] } +&{glFogfv QOpenGLFunctions_4_4_Compatibility::glFogfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820fb9460 0xc820fb9560] } +&{glFogi QOpenGLFunctions_4_4_Compatibility::glFogi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820fb9740 0xc820fb9800] } +&{glFogiv QOpenGLFunctions_4_4_Compatibility::glFogiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820fb9a20 0xc820fb9b40] } +&{glFramebufferParameteri QOpenGLFunctions_4_4_Compatibility::glFramebufferParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820fb2000 0xc820fb2200 0xc820fb22a0] } +&{glFramebufferRenderbuffer QOpenGLFunctions_4_4_Compatibility::glFramebufferRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820fb2720 0xc820fb27e0 0xc820fb2940 0xc820fb2b00] } +&{glFramebufferTexture QOpenGLFunctions_4_4_Compatibility::glFramebufferTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820fb2de0 0xc820fb2ee0 0xc820fb2fc0 0xc820fb3140] } +&{glFramebufferTexture1D QOpenGLFunctions_4_4_Compatibility::glFramebufferTexture1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820fb3420 0xc820fb3620 0xc820fb36e0 0xc820fb3840 0xc820fb3940] } +&{glFramebufferTexture2D QOpenGLFunctions_4_4_Compatibility::glFramebufferTexture2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820fb3cc0 0xc820fb3da0 0xc820fb3e60 0xc820faa000 0xc820faa1e0] } +&{glFramebufferTexture3D QOpenGLFunctions_4_4_Compatibility::glFramebufferTexture3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820faa540 0xc820faa740 0xc820faa8c0 0xc820faab20 0xc820faac60 0xc820faaee0] } +&{glFramebufferTextureLayer QOpenGLFunctions_4_4_Compatibility::glFramebufferTextureLayer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820fab400 0xc820fab620 0xc820fab7c0 0xc820faba40 0xc820fabb80] } +&{glFrontFace QOpenGLFunctions_4_4_Compatibility::glFrontFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f80040] } +&{glFrustum QOpenGLFunctions_4_4_Compatibility::glFrustum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f80460 0xc820f805e0 0xc820f80700 0xc820f80860 0xc820f80a80 0xc820f80ba0] } +&{glGenBuffers QOpenGLFunctions_4_4_Compatibility::glGenBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f80f20 0xc820f80fe0] } +&{glGenFramebuffers QOpenGLFunctions_4_4_Compatibility::glGenFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f81460 0xc820f81580] } +&{glGenLists QOpenGLFunctions_4_4_Compatibility::glGenLists commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLuint [0xc820f81a00] } +&{glGenProgramPipelines QOpenGLFunctions_4_4_Compatibility::glGenProgramPipelines commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f81f40 0xc820f6e0e0] } +&{glGenQueries QOpenGLFunctions_4_4_Compatibility::glGenQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f6e580 0xc820f6e780] } +&{glGenRenderbuffers QOpenGLFunctions_4_4_Compatibility::glGenRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f6ed00 0xc820f6edc0] } +&{glGenSamplers QOpenGLFunctions_4_4_Compatibility::glGenSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f6f1e0 0xc820f6f400] } +&{glGenTextures QOpenGLFunctions_4_4_Compatibility::glGenTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f6f8a0 0xc820f6f9a0] } +&{glGenTransformFeedbacks QOpenGLFunctions_4_4_Compatibility::glGenTransformFeedbacks commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f6fea0 0xc820f5c020] } +&{glGenVertexArrays QOpenGLFunctions_4_4_Compatibility::glGenVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f5c500 0xc820f5c600] } +&{glGenerateMipmap QOpenGLFunctions_4_4_Compatibility::glGenerateMipmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f5c960] } +&{glGetActiveAtomicCounterBufferiv QOpenGLFunctions_4_4_Compatibility::glGetActiveAtomicCounterBufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f5cd80 0xc820f5cec0 0xc820f5d0c0 0xc820f5d1e0] } +&{glGetActiveAttrib QOpenGLFunctions_4_4_Compatibility::glGetActiveAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f5d600 0xc820f5d720 0xc820f5d880 0xc820f5d960 0xc820f5db40 0xc820f5dc60 0xc820f5de20] } +&{glGetActiveSubroutineName QOpenGLFunctions_4_4_Compatibility::glGetActiveSubroutineName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f4e1c0 0xc820f4e380 0xc820f4e520 0xc820f4e6c0 0xc820f4e8c0 0xc820f4ea80] } +&{glGetActiveSubroutineUniformName QOpenGLFunctions_4_4_Compatibility::glGetActiveSubroutineUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f4efc0 0xc820f4f160 0xc820f4f340 0xc820f4f4c0 0xc820f4f700 0xc820f4f880] } +&{glGetActiveSubroutineUniformiv QOpenGLFunctions_4_4_Compatibility::glGetActiveSubroutineUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f4fdc0 0xc820f4ffa0 0xc820f40200 0xc820f40280 0xc820f40580] } +&{glGetActiveUniform QOpenGLFunctions_4_4_Compatibility::glGetActiveUniform commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f40980 0xc820f40b00 0xc820f40c40 0xc820f40ea0 0xc820f40fa0 0xc820f41120 0xc820f41260] } +&{glGetActiveUniformBlockName QOpenGLFunctions_4_4_Compatibility::glGetActiveUniformBlockName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f41520 0xc820f41660 0xc820f41800 0xc820f41940 0xc820f41a00] } +&{glGetActiveUniformBlockiv QOpenGLFunctions_4_4_Compatibility::glGetActiveUniformBlockiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f41d80 0xc820f41f80 0xc820f3a0a0 0xc820f3a1a0] } +&{glGetActiveUniformName QOpenGLFunctions_4_4_Compatibility::glGetActiveUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f3a4e0 0xc820f3a5e0 0xc820f3a6e0 0xc820f3a7c0 0xc820f3a8c0] } +&{glGetActiveUniformsiv QOpenGLFunctions_4_4_Compatibility::glGetActiveUniformsiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f3aba0 0xc820f3ac80 0xc820f3ad20 0xc820f3ade0 0xc820f3aee0] } +&{glGetAttachedShaders QOpenGLFunctions_4_4_Compatibility::glGetAttachedShaders commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f3b2e0 0xc820f3b3a0 0xc820f3b5a0 0xc820f3b660] } +&{glGetAttribLocation QOpenGLFunctions_4_4_Compatibility::glGetAttribLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLint [0xc820f3bb00 0xc820f3bc20] } +&{glGetBooleani_v QOpenGLFunctions_4_4_Compatibility::glGetBooleani_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f3bf80 0xc820f2e0c0 0xc820f2e1e0] } +&{glGetBooleanv QOpenGLFunctions_4_4_Compatibility::glGetBooleanv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f2e480 0xc820f2e620] } +&{glGetBufferParameteri64v QOpenGLFunctions_4_4_Compatibility::glGetBufferParameteri64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f2ea60 0xc820f2ebe0 0xc820f2ecc0] } +&{glGetBufferParameteriv QOpenGLFunctions_4_4_Compatibility::glGetBufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f2f080 0xc820f2f160 0xc820f2f320] } +&{glGetBufferPointerv QOpenGLFunctions_4_4_Compatibility::glGetBufferPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f2f700 0xc820f2f820 0xc820f2f900] } +&{glGetBufferSubData QOpenGLFunctions_4_4_Compatibility::glGetBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f2fcc0 0xc820f2fda0 0xc820f2fec0 0xc820f2ffe0] } +&{glGetClipPlane QOpenGLFunctions_4_4_Compatibility::glGetClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f1e2e0 0xc820f1e4a0] } +&{glGetColorTable QOpenGLFunctions_4_4_Compatibility::glGetColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f1e740 0xc820f1e8a0 0xc820f1ea60 0xc820f1ec20] } +&{glGetColorTableParameterfv QOpenGLFunctions_4_4_Compatibility::glGetColorTableParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f1f1c0 0xc820f1f2a0 0xc820f1f3e0] } +&{glGetColorTableParameteriv QOpenGLFunctions_4_4_Compatibility::glGetColorTableParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f1fa00 0xc820f1fb60 0xc820f1fc00] } +&{glGetCompressedTexImage QOpenGLFunctions_4_4_Compatibility::glGetCompressedTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f0a160 0xc820f0a300 0xc820f0a420] } +&{glGetConvolutionFilter QOpenGLFunctions_4_4_Compatibility::glGetConvolutionFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f0aa20 0xc820f0aac0 0xc820f0ace0 0xc820f0ae60] } +&{glGetConvolutionParameterfv QOpenGLFunctions_4_4_Compatibility::glGetConvolutionParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f0b2a0 0xc820f0b3c0 0xc820f0b580] } +&{glGetConvolutionParameteriv QOpenGLFunctions_4_4_Compatibility::glGetConvolutionParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820f0b920 0xc820f0b9e0 0xc820f0bb00] } +&{glGetDebugMessageLog QOpenGLFunctions_4_4_Compatibility::glGetDebugMessageLog commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLuint [0xc820efc100 0xc820efc280 0xc820efc4c0 0xc820efc600 0xc820efc820 0xc820efc9a0 0xc820efcba0 0xc820efcd80] } +&{glGetDoublei_v QOpenGLFunctions_4_4_Compatibility::glGetDoublei_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820efd160 0xc820efd2e0 0xc820efd4e0] } +&{glGetDoublev QOpenGLFunctions_4_4_Compatibility::glGetDoublev commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820efd940 0xc820efdb40] } +&{glGetError QOpenGLFunctions_4_4_Compatibility::glGetError commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLenum [] } +&{glGetFloati_v QOpenGLFunctions_4_4_Compatibility::glGetFloati_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc822708040 0xc822708100 0xc8227081a0] } +&{glGetFloatv QOpenGLFunctions_4_4_Compatibility::glGetFloatv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc822708340 0xc8227083e0] } +&{glGetFragDataIndex QOpenGLFunctions_4_4_Compatibility::glGetFragDataIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLint [0xc8227085e0 0xc822708660] } +&{glGetFragDataLocation QOpenGLFunctions_4_4_Compatibility::glGetFragDataLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLint [0xc822708880 0xc822708900] } +&{glGetFramebufferAttachmentParameteriv QOpenGLFunctions_4_4_Compatibility::glGetFramebufferAttachmentParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc822708aa0 0xc822708b60 0xc822708c00 0xc822708ca0] } +&{glGetFramebufferParameteriv QOpenGLFunctions_4_4_Compatibility::glGetFramebufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc822708ec0 0xc822708f40 0xc822709000] } +&{glGetHistogram QOpenGLFunctions_4_4_Compatibility::glGetHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc822709180 0xc822709200 0xc8227092e0 0xc822709380 0xc822709420] } +&{glGetHistogramParameterfv QOpenGLFunctions_4_4_Compatibility::glGetHistogramParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc822709640 0xc8227096c0 0xc8227097a0] } +&{glGetHistogramParameteriv QOpenGLFunctions_4_4_Compatibility::glGetHistogramParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8227099a0 0xc822709a40 0xc822709ae0] } +&{glGetInteger64i_v QOpenGLFunctions_4_4_Compatibility::glGetInteger64i_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc822709d00 0xc822709d80 0xc822709e40] } +&{glGetInteger64v QOpenGLFunctions_4_4_Compatibility::glGetInteger64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc822709fc0 0xc826b46160] } +&{glGetIntegeri_v QOpenGLFunctions_4_4_Compatibility::glGetIntegeri_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826b46620 0xc826b467e0 0xc826b46980] } +&{glGetIntegerv QOpenGLFunctions_4_4_Compatibility::glGetIntegerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826b46ea0 0xc826b47000] } +&{glGetInternalformati64v QOpenGLFunctions_4_4_Compatibility::glGetInternalformati64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826b474c0 0xc826b47700 0xc826b47880 0xc826b479c0 0xc826b47bc0] } +&{glGetInternalformativ QOpenGLFunctions_4_4_Compatibility::glGetInternalformativ commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826b3a000 0xc826b3a1c0 0xc826b3a360 0xc826b3a420 0xc826b3a5e0] } +&{glGetLightfv QOpenGLFunctions_4_4_Compatibility::glGetLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826b3a8c0 0xc826b3a9c0 0xc826b3ab40] } +&{glGetLightiv QOpenGLFunctions_4_4_Compatibility::glGetLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826b3af20 0xc826b3b080 0xc826b3b140] } +&{glGetMapdv QOpenGLFunctions_4_4_Compatibility::glGetMapdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826b3b4a0 0xc826b3b5c0 0xc826b3b6e0] } +&{glGetMapfv QOpenGLFunctions_4_4_Compatibility::glGetMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826b3ba80 0xc826b3bb00 0xc826b3bc80] } +&{glGetMapiv QOpenGLFunctions_4_4_Compatibility::glGetMapiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826b3bfc0 0xc826b2a160 0xc826b2a280] } +&{glGetMaterialfv QOpenGLFunctions_4_4_Compatibility::glGetMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826b2a540 0xc826b2a6e0 0xc826b2a880] } +&{glGetMaterialiv QOpenGLFunctions_4_4_Compatibility::glGetMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826b2abc0 0xc826b2ac80 0xc826b2ae20] } +&{glGetMinmax QOpenGLFunctions_4_4_Compatibility::glGetMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826b2b1e0 0xc826b2b320 0xc826b2b520 0xc826b2b620 0xc826b2b7a0] } +&{glGetMinmaxParameterfv QOpenGLFunctions_4_4_Compatibility::glGetMinmaxParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826b2bd80 0xc826b2bfe0 0xc826b1a0e0] } +&{glGetMinmaxParameteriv QOpenGLFunctions_4_4_Compatibility::glGetMinmaxParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826b1a540 0xc826b1a700 0xc826b1a820] } +&{glGetMultisamplefv QOpenGLFunctions_4_4_Compatibility::glGetMultisamplefv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826b1ace0 0xc826b1adc0 0xc826b1aee0] } +&{glGetObjectLabel QOpenGLFunctions_4_4_Compatibility::glGetObjectLabel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826b1b300 0xc826b1b420 0xc826b1b560 0xc826b1b640 0xc826b1b7a0] } +&{glGetObjectPtrLabel QOpenGLFunctions_4_4_Compatibility::glGetObjectPtrLabel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826b1bbe0 0xc826b1bde0 0xc826b1be60 0xc826b1bfe0] } +&{glGetPixelMapfv QOpenGLFunctions_4_4_Compatibility::glGetPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826b0a340 0xc826b0a520] } +&{glGetPixelMapuiv QOpenGLFunctions_4_4_Compatibility::glGetPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826b0a900 0xc826b0aa60] } +&{glGetPixelMapusv QOpenGLFunctions_4_4_Compatibility::glGetPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826b0ae60 0xc826b0b080] } +&{glGetPointerv QOpenGLFunctions_4_4_Compatibility::glGetPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826b0b3e0 0xc826b0b580] } +&{glGetPolygonStipple QOpenGLFunctions_4_4_Compatibility::glGetPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826b0ba20] } +&{glGetProgramBinary QOpenGLFunctions_4_4_Compatibility::glGetProgramBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826b0bee0 0xc826afa040 0xc826afa180 0xc826afa300 0xc826afa580] } +&{glGetProgramInfoLog QOpenGLFunctions_4_4_Compatibility::glGetProgramInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826afaa60 0xc826afabc0 0xc826afacc0 0xc826afaea0] } +&{glGetProgramInterfaceiv QOpenGLFunctions_4_4_Compatibility::glGetProgramInterfaceiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826afb420 0xc826afb5c0 0xc826afb700 0xc826afb8a0] } +&{glGetProgramPipelineInfoLog QOpenGLFunctions_4_4_Compatibility::glGetProgramPipelineInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826afbd00 0xc826afbf80 0xc826aea060 0xc826aea200] } +&{glGetProgramPipelineiv QOpenGLFunctions_4_4_Compatibility::glGetProgramPipelineiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826aea6c0 0xc826aea8a0 0xc826aeaa20] } +&{glGetProgramResourceIndex QOpenGLFunctions_4_4_Compatibility::glGetProgramResourceIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLuint [0xc826aeaf40 0xc826aeb100 0xc826aeb1e0] } +&{glGetProgramResourceLocation QOpenGLFunctions_4_4_Compatibility::glGetProgramResourceLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLint [0xc826aeb580 0xc826aeb760 0xc826aeb8a0] } +&{glGetProgramResourceLocationIndex QOpenGLFunctions_4_4_Compatibility::glGetProgramResourceLocationIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLint [0xc826aebc40 0xc826aebce0 0xc826aebe60] } +&{glGetProgramResourceName QOpenGLFunctions_4_4_Compatibility::glGetProgramResourceName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826ae41a0 0xc826ae4260 0xc826ae4400 0xc826ae44e0 0xc826ae45e0 0xc826ae4720] } +&{glGetProgramResourceiv QOpenGLFunctions_4_4_Compatibility::glGetProgramResourceiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826ae4a00 0xc826ae4b20 0xc826ae4c20 0xc826ae4d20 0xc826ae4e20 0xc826ae4f80 0xc826ae50a0 0xc826ae51a0] } +&{glGetProgramStageiv QOpenGLFunctions_4_4_Compatibility::glGetProgramStageiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826ae55e0 0xc826ae5700 0xc826ae57c0 0xc826ae59a0] } +&{glGetProgramiv QOpenGLFunctions_4_4_Compatibility::glGetProgramiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826ae5c00 0xc826ae5da0 0xc826ae5e40] } +&{glGetQueryIndexediv QOpenGLFunctions_4_4_Compatibility::glGetQueryIndexediv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826ada340 0xc826ada440 0xc826ada640 0xc826ada7a0] } +&{glGetQueryObjecti64v QOpenGLFunctions_4_4_Compatibility::glGetQueryObjecti64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826adabc0 0xc826adadc0 0xc826adaf40] } +&{glGetQueryObjectiv QOpenGLFunctions_4_4_Compatibility::glGetQueryObjectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826adb2e0 0xc826adb500 0xc826adb640] } +&{glGetQueryObjectui64v QOpenGLFunctions_4_4_Compatibility::glGetQueryObjectui64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826adba40 0xc826adbc20 0xc826adbd20] } +&{glGetQueryObjectuiv QOpenGLFunctions_4_4_Compatibility::glGetQueryObjectuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826ace1c0 0xc826ace2a0 0xc826ace3a0] } +&{glGetQueryiv QOpenGLFunctions_4_4_Compatibility::glGetQueryiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826ace7e0 0xc826ace900 0xc826aceac0] } +&{glGetRenderbufferParameteriv QOpenGLFunctions_4_4_Compatibility::glGetRenderbufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826acf020 0xc826acf240 0xc826acf440] } +&{glGetSamplerParameterIiv QOpenGLFunctions_4_4_Compatibility::glGetSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826acfa00 0xc826acfae0 0xc826acfcc0] } +&{glGetSamplerParameterIuiv QOpenGLFunctions_4_4_Compatibility::glGetSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826abc280 0xc826abc400 0xc826abc5e0] } +&{glGetSamplerParameterfv QOpenGLFunctions_4_4_Compatibility::glGetSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826abcb80 0xc826abcce0 0xc826abce00] } +&{glGetSamplerParameteriv QOpenGLFunctions_4_4_Compatibility::glGetSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826abd240 0xc826abd480 0xc826abd5c0] } +&{glGetSeparableFilter QOpenGLFunctions_4_4_Compatibility::glGetSeparableFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826abdae0 0xc826abdc20 0xc826abdda0 0xc826abdfa0 0xc826aaa0c0 0xc826aaa3c0] } +&{glGetShaderInfoLog QOpenGLFunctions_4_4_Compatibility::glGetShaderInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826aaa820 0xc826aaa9c0 0xc826aaaae0 0xc826aaac80] } +&{glGetShaderPrecisionFormat QOpenGLFunctions_4_4_Compatibility::glGetShaderPrecisionFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826aab040 0xc826aab340 0xc826aab500 0xc826aab600] } +&{glGetShaderSource QOpenGLFunctions_4_4_Compatibility::glGetShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826aaba40 0xc826aabbe0 0xc826aabe00 0xc826aabf60] } +&{glGetShaderiv QOpenGLFunctions_4_4_Compatibility::glGetShaderiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826a9c440 0xc826a9c5c0 0xc826a9c780] } +&{glGetString QOpenGLFunctions_4_4_Compatibility::glGetString commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false const GLubyte * [0xc826a9cc40] } +&{glGetStringi QOpenGLFunctions_4_4_Compatibility::glGetStringi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false const GLubyte * [0xc826a9d100 0xc826a9d280] } +&{glGetSubroutineIndex QOpenGLFunctions_4_4_Compatibility::glGetSubroutineIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLuint [0xc826a9d780 0xc826a9d900 0xc826a9da40] } +&{glGetSubroutineUniformLocation QOpenGLFunctions_4_4_Compatibility::glGetSubroutineUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLint [0xc826a9df80 0xc826a8e0e0 0xc826a8e280] } +&{glGetSynciv QOpenGLFunctions_4_4_Compatibility::glGetSynciv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826a8e640 0xc826a8e860 0xc826a8e940 0xc826a8ea80 0xc826a8ecc0] } +&{glGetTexEnvfv QOpenGLFunctions_4_4_Compatibility::glGetTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826a8f060 0xc826a8f1e0 0xc826a8f420] } +&{glGetTexEnviv QOpenGLFunctions_4_4_Compatibility::glGetTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826a8f800 0xc826a8f980 0xc826a8fb20] } +&{glGetTexGendv QOpenGLFunctions_4_4_Compatibility::glGetTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826a8fe20 0xc826a8ff60 0xc826a78040] } +&{glGetTexGenfv QOpenGLFunctions_4_4_Compatibility::glGetTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826a78320 0xc826a784a0 0xc826a78520] } +&{glGetTexGeniv QOpenGLFunctions_4_4_Compatibility::glGetTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826a78820 0xc826a78940 0xc826a789e0] } +&{glGetTexImage QOpenGLFunctions_4_4_Compatibility::glGetTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826a78d40 0xc826a78e40 0xc826a78f40 0xc826a79140 0xc826a79440] } +&{glGetTexLevelParameterfv QOpenGLFunctions_4_4_Compatibility::glGetTexLevelParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc826a79880 0xc826a79ac0 0xc826a79b40 0xc826a79dc0] } +&{glGetTexLevelParameteriv QOpenGLFunctions_4_4_Compatibility::glGetTexLevelParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b2a200 0xc820b2a2c0 0xc820b2a400 0xc820b2a560] } +&{glGetTexParameterIiv QOpenGLFunctions_4_4_Compatibility::glGetTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b2a9c0 0xc820b2aac0 0xc820b2abc0] } +&{glGetTexParameterIuiv QOpenGLFunctions_4_4_Compatibility::glGetTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b2b080 0xc820b2b140 0xc820b2b260] } +&{glGetTexParameterfv QOpenGLFunctions_4_4_Compatibility::glGetTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b2b6c0 0xc820b2b820 0xc820b2b8c0] } +&{glGetTexParameteriv QOpenGLFunctions_4_4_Compatibility::glGetTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b2bca0 0xc820b2bda0 0xc820b2bee0] } +&{glGetTransformFeedbackVarying QOpenGLFunctions_4_4_Compatibility::glGetTransformFeedbackVarying commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820994220 0xc8209942e0 0xc8209944c0 0xc820994580 0xc8209947c0 0xc820994880 0xc820994900] } +&{glGetUniformBlockIndex QOpenGLFunctions_4_4_Compatibility::glGetUniformBlockIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLuint [0xc820994d20 0xc820994ea0] } +&{glGetUniformIndices QOpenGLFunctions_4_4_Compatibility::glGetUniformIndices commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209952e0 0xc820995420 0xc820995580 0xc820995780] } +&{glGetUniformLocation QOpenGLFunctions_4_4_Compatibility::glGetUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLint [0xc820995b80 0xc820995c80] } +&{glGetUniformSubroutineuiv QOpenGLFunctions_4_4_Compatibility::glGetUniformSubroutineuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208dc040 0xc8208dc140 0xc8208dc260] } +&{glGetUniformdv QOpenGLFunctions_4_4_Compatibility::glGetUniformdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208dc4c0 0xc8208dc620 0xc8208dc6e0] } +&{glGetUniformfv QOpenGLFunctions_4_4_Compatibility::glGetUniformfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208dc940 0xc8208dca40 0xc8208dcae0] } +&{glGetUniformiv QOpenGLFunctions_4_4_Compatibility::glGetUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208dce20 0xc8208dcec0 0xc8208dd020] } +&{glGetUniformuiv QOpenGLFunctions_4_4_Compatibility::glGetUniformuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208dd260 0xc8208dd360 0xc8208dd4e0] } +&{glGetVertexAttribIiv QOpenGLFunctions_4_4_Compatibility::glGetVertexAttribIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208dd800 0xc8208dd980 0xc8208dda20] } +&{glGetVertexAttribIuiv QOpenGLFunctions_4_4_Compatibility::glGetVertexAttribIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208ddd80 0xc8208ddea0 0xc820aa00a0] } +&{glGetVertexAttribLdv QOpenGLFunctions_4_4_Compatibility::glGetVertexAttribLdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820aa0440 0xc820aa0600 0xc820aa0700] } +&{glGetVertexAttribPointerv QOpenGLFunctions_4_4_Compatibility::glGetVertexAttribPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820aa0b00 0xc820aa0ca0 0xc820aa0da0] } +&{glGetVertexAttribdv QOpenGLFunctions_4_4_Compatibility::glGetVertexAttribdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820aa11c0 0xc820aa1240 0xc820aa1360] } +&{glGetVertexAttribfv QOpenGLFunctions_4_4_Compatibility::glGetVertexAttribfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820aa16a0 0xc820aa17c0 0xc820aa1920] } +&{glGetVertexAttribiv QOpenGLFunctions_4_4_Compatibility::glGetVertexAttribiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820aa1c40 0xc820aa1d60 0xc820aa1e40] } +&{glHint QOpenGLFunctions_4_4_Compatibility::glHint commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a16120 0xc820a16200] } +&{glHistogram QOpenGLFunctions_4_4_Compatibility::glHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a163e0 0xc820a16500 0xc820a165c0 0xc820a16640] } +&{glIndexMask QOpenGLFunctions_4_4_Compatibility::glIndexMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a168e0] } +&{glIndexPointer QOpenGLFunctions_4_4_Compatibility::glIndexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a16ae0 0xc820a16bc0 0xc820a16cc0] } +&{glIndexd QOpenGLFunctions_4_4_Compatibility::glIndexd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a16ee0] } +&{glIndexdv QOpenGLFunctions_4_4_Compatibility::glIndexdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a170e0] } +&{glIndexf QOpenGLFunctions_4_4_Compatibility::glIndexf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a17320] } +&{glIndexfv QOpenGLFunctions_4_4_Compatibility::glIndexfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a17580] } +&{glIndexi QOpenGLFunctions_4_4_Compatibility::glIndexi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a177c0] } +&{glIndexiv QOpenGLFunctions_4_4_Compatibility::glIndexiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a17a00] } +&{glIndexs QOpenGLFunctions_4_4_Compatibility::glIndexs commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a17c20] } +&{glIndexsv QOpenGLFunctions_4_4_Compatibility::glIndexsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a17e60] } +&{glIndexub QOpenGLFunctions_4_4_Compatibility::glIndexub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820cda0a0] } +&{glIndexubv QOpenGLFunctions_4_4_Compatibility::glIndexubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820cda360] } +&{glInitNames QOpenGLFunctions_4_4_Compatibility::glInitNames commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [] } +&{glInterleavedArrays QOpenGLFunctions_4_4_Compatibility::glInterleavedArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820cda720 0xc820cda820 0xc820cda8e0] } +&{glInvalidateBufferData QOpenGLFunctions_4_4_Compatibility::glInvalidateBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820cdac00] } +&{glInvalidateBufferSubData QOpenGLFunctions_4_4_Compatibility::glInvalidateBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820cdaf00 0xc820cdb080 0xc820cdb140] } +&{glInvalidateFramebuffer QOpenGLFunctions_4_4_Compatibility::glInvalidateFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820cdb460 0xc820cdb520 0xc820cdb600] } +&{glInvalidateSubFramebuffer QOpenGLFunctions_4_4_Compatibility::glInvalidateSubFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820cdb920 0xc820cdba60 0xc820cdbbc0 0xc820cdbc60 0xc820cdbda0 0xc820cdbec0 0xc820cdbfa0] } +&{glInvalidateTexImage QOpenGLFunctions_4_4_Compatibility::glInvalidateTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d9e2c0 0xc820d9e440] } +&{glInvalidateTexSubImage QOpenGLFunctions_4_4_Compatibility::glInvalidateTexSubImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d9e800 0xc820d9e8e0 0xc820d9e9a0 0xc820d9eb00 0xc820d9ec60 0xc820d9ed00 0xc820d9ee40 0xc820d9ef80] } +&{glIsBuffer QOpenGLFunctions_4_4_Compatibility::glIsBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLboolean [0xc820d9f1e0] } +&{glIsEnabled QOpenGLFunctions_4_4_Compatibility::glIsEnabled commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLboolean [0xc820d9f4a0] } +&{glIsEnabledi QOpenGLFunctions_4_4_Compatibility::glIsEnabledi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLboolean [0xc820d9f6e0 0xc820d9f800] } +&{glIsFramebuffer QOpenGLFunctions_4_4_Compatibility::glIsFramebuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLboolean [0xc820d9faa0] } +&{glIsList QOpenGLFunctions_4_4_Compatibility::glIsList commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLboolean [0xc820d9fd40] } +&{glIsProgram QOpenGLFunctions_4_4_Compatibility::glIsProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLboolean [0xc820d9ffe0] } +&{glIsProgramPipeline QOpenGLFunctions_4_4_Compatibility::glIsProgramPipeline commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLboolean [0xc820cbc360] } +&{glIsQuery QOpenGLFunctions_4_4_Compatibility::glIsQuery commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLboolean [0xc820cbc620] } +&{glIsRenderbuffer QOpenGLFunctions_4_4_Compatibility::glIsRenderbuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLboolean [0xc820cbc860] } +&{glIsSampler QOpenGLFunctions_4_4_Compatibility::glIsSampler commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLboolean [0xc820cbcb20] } +&{glIsShader QOpenGLFunctions_4_4_Compatibility::glIsShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLboolean [0xc820cbcde0] } +&{glIsSync QOpenGLFunctions_4_4_Compatibility::glIsSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLboolean [0xc820cbd0c0] } +&{glIsTexture QOpenGLFunctions_4_4_Compatibility::glIsTexture commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLboolean [0xc820cbd320] } +&{glIsTransformFeedback QOpenGLFunctions_4_4_Compatibility::glIsTransformFeedback commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLboolean [0xc820cbd640] } +&{glIsVertexArray QOpenGLFunctions_4_4_Compatibility::glIsVertexArray commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLboolean [0xc820cbd8a0] } +&{glLightModelf QOpenGLFunctions_4_4_Compatibility::glLightModelf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820cbdb80 0xc820cbdd00] } +&{glLightModelfv QOpenGLFunctions_4_4_Compatibility::glLightModelfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820cbdec0 0xc820cc2040] } +&{glLightModeli QOpenGLFunctions_4_4_Compatibility::glLightModeli commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820cc2220 0xc820cc2300] } +&{glLightModeliv QOpenGLFunctions_4_4_Compatibility::glLightModeliv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820cc24c0 0xc820cc25a0] } +&{glLightf QOpenGLFunctions_4_4_Compatibility::glLightf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820cc27c0 0xc820cc2840 0xc820cc2920] } +&{glLightfv QOpenGLFunctions_4_4_Compatibility::glLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820cc2b00 0xc820cc2c00 0xc820cc2cc0] } +&{glLighti QOpenGLFunctions_4_4_Compatibility::glLighti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820cc2ee0 0xc820cc2f60 0xc820cc3080] } +&{glLightiv QOpenGLFunctions_4_4_Compatibility::glLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820cc3220 0xc820cc3340 0xc820cc3400] } +&{glLineStipple QOpenGLFunctions_4_4_Compatibility::glLineStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820cc3600 0xc820cc36e0] } +&{glLineWidth QOpenGLFunctions_4_4_Compatibility::glLineWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820cc3980] } +&{glLinkProgram QOpenGLFunctions_4_4_Compatibility::glLinkProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820cc3c40] } +&{glListBase QOpenGLFunctions_4_4_Compatibility::glListBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820cc3f80] } +&{glLoadIdentity QOpenGLFunctions_4_4_Compatibility::glLoadIdentity commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [] } +&{glLoadMatrixd QOpenGLFunctions_4_4_Compatibility::glLoadMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e922e0] } +&{glLoadMatrixf QOpenGLFunctions_4_4_Compatibility::glLoadMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e925e0] } +&{glLoadName QOpenGLFunctions_4_4_Compatibility::glLoadName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e92860] } +&{glLoadTransposeMatrixd QOpenGLFunctions_4_4_Compatibility::glLoadTransposeMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e92da0] } +&{glLoadTransposeMatrixf QOpenGLFunctions_4_4_Compatibility::glLoadTransposeMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e93100] } +&{glLogicOp QOpenGLFunctions_4_4_Compatibility::glLogicOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e93580] } +&{glMap1d QOpenGLFunctions_4_4_Compatibility::glMap1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e93960 0xc820e939e0 0xc820e93c40 0xc820e93d00 0xc820e93ea0 0xc820ea0100] } +&{glMap1f QOpenGLFunctions_4_4_Compatibility::glMap1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ea0420 0xc820ea06e0 0xc820ea07e0 0xc820ea0920 0xc820ea0c60 0xc820ea0d80] } +&{glMap2d QOpenGLFunctions_4_4_Compatibility::glMap2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ea12a0 0xc820ea14a0 0xc820ea15e0 0xc820ea1760 0xc820ea18e0 0xc820ea1a20 0xc820ea1ba0 0xc820ea1da0 0xc820ea1fa0 0xc820eae0e0] } +&{glMap2f QOpenGLFunctions_4_4_Compatibility::glMap2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820eae3c0 0xc820eae5a0 0xc820eae6a0 0xc820eae7a0 0xc820eae9a0 0xc820eaeac0 0xc820eaec80 0xc820eaedc0 0xc820eaeee0 0xc820eaf000] } +&{glMapBuffer QOpenGLFunctions_4_4_Compatibility::glMapBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void * [0xc820eaf2a0 0xc820eaf420] } +&{glMapBufferRange QOpenGLFunctions_4_4_Compatibility::glMapBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void * [0xc820eaf6e0 0xc820eaf820 0xc820eaf9a0 0xc820eafae0] } +&{glMapGrid1d QOpenGLFunctions_4_4_Compatibility::glMapGrid1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820eafea0 0xc820eaff80 0xc820dc4040] } +&{glMapGrid1f QOpenGLFunctions_4_4_Compatibility::glMapGrid1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820dc4420 0xc820dc4600 0xc820dc4680] } +&{glMapGrid2d QOpenGLFunctions_4_4_Compatibility::glMapGrid2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820dc4aa0 0xc820dc4c00 0xc820dc4ce0 0xc820dc4da0 0xc820dc4f60 0xc820dc5040] } +&{glMapGrid2f QOpenGLFunctions_4_4_Compatibility::glMapGrid2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820dc5320 0xc820dc53c0 0xc820dc54e0 0xc820dc5620 0xc820dc5740 0xc820dc5860] } +&{glMaterialf QOpenGLFunctions_4_4_Compatibility::glMaterialf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820dc5ae0 0xc820dc5c40 0xc820dc5d20] } +&{glMaterialfv QOpenGLFunctions_4_4_Compatibility::glMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ebe1a0 0xc820ebe3e0 0xc820ebe4a0] } +&{glMateriali QOpenGLFunctions_4_4_Compatibility::glMateriali commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ebe900 0xc820ebebc0 0xc820ebed40] } +&{glMaterialiv QOpenGLFunctions_4_4_Compatibility::glMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ebf160 0xc820ebf320 0xc820ebf420] } +&{glMatrixMode QOpenGLFunctions_4_4_Compatibility::glMatrixMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ebf7e0] } +&{glMemoryBarrier QOpenGLFunctions_4_4_Compatibility::glMemoryBarrier commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ebfae0] } +&{glMinSampleShading QOpenGLFunctions_4_4_Compatibility::glMinSampleShading commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ebff80] } +&{glMinmax QOpenGLFunctions_4_4_Compatibility::glMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ace240 0xc820ace3c0 0xc820ace540] } +&{glMultMatrixd QOpenGLFunctions_4_4_Compatibility::glMultMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ace7c0] } +&{glMultMatrixf QOpenGLFunctions_4_4_Compatibility::glMultMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820aceb00] } +&{glMultTransposeMatrixd QOpenGLFunctions_4_4_Compatibility::glMultTransposeMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820acef00] } +&{glMultTransposeMatrixf QOpenGLFunctions_4_4_Compatibility::glMultTransposeMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820acf340] } +&{glMultiDrawArrays QOpenGLFunctions_4_4_Compatibility::glMultiDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820acf760 0xc820acf7e0 0xc820acf960 0xc820acfa80] } +&{glMultiDrawArraysIndirect QOpenGLFunctions_4_4_Compatibility::glMultiDrawArraysIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820acfea0 0xc820ee0060 0xc820ee0180 0xc820ee0320] } +&{glMultiDrawElements QOpenGLFunctions_4_4_Compatibility::glMultiDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ee08a0 0xc820ee0ac0 0xc820ee0cc0 0xc820ee0e60 0xc820ee1080] } +&{glMultiDrawElementsBaseVertex QOpenGLFunctions_4_4_Compatibility::glMultiDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ee1620 0xc820ee1800 0xc820ee1940 0xc820ee1c40 0xc820ee1ee0 0xc820dc60c0] } +&{glMultiDrawElementsIndirect QOpenGLFunctions_4_4_Compatibility::glMultiDrawElementsIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820dc6600 0xc820dc6860 0xc820dc6960 0xc820dc6c00 0xc820dc6e00] } +&{glMultiTexCoord1d QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820dc73a0 0xc820dc75e0] } +&{glMultiTexCoord1dv QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820dc79e0 0xc820dc7ba0] } +&{glMultiTexCoord1f QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82271a000 0xc82271a0c0] } +&{glMultiTexCoord1fv QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82271a2c0 0xc82271a380] } +&{glMultiTexCoord1i QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82271a560 0xc82271a620] } +&{glMultiTexCoord1iv QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82271a820 0xc82271a8e0] } +&{glMultiTexCoord1s QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82271aac0 0xc82271aba0] } +&{glMultiTexCoord1sv QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82271ad80 0xc82271ae40] } +&{glMultiTexCoord2d QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82271b060 0xc82271b100 0xc82271b1a0] } +&{glMultiTexCoord2dv QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82271b3c0 0xc82271b460] } +&{glMultiTexCoord2f QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82271b640 0xc82271b6e0 0xc82271b780] } +&{glMultiTexCoord2fv QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82271b9a0 0xc82271ba40] } +&{glMultiTexCoord2i QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82271bc20 0xc82271bcc0 0xc82271bd60] } +&{glMultiTexCoord2iv QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82271bf80 0xc820d92160] } +&{glMultiTexCoord2s QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d92520 0xc820d926a0 0xc820d927e0] } +&{glMultiTexCoord2sv QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d92ce0 0xc820d92da0] } +&{glMultiTexCoord3d QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d93280 0xc820d93380 0xc820d93640 0xc820d93760] } +&{glMultiTexCoord3dv QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d93d20 0xc820d93f20] } +&{glMultiTexCoord3f QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d824a0 0xc820d82760 0xc820d82960 0xc820d82b80] } +&{glMultiTexCoord3fv QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d83260 0xc820d834e0] } +&{glMultiTexCoord3i QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d83a00 0xc820d83ac0 0xc820d83cc0 0xc820d83d80] } +&{glMultiTexCoord3iv QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d7e2a0 0xc820d7e340] } +&{glMultiTexCoord3s QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d7e640 0xc820d7e6e0 0xc820d7e7a0 0xc820d7e880] } +&{glMultiTexCoord3sv QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d7eb20 0xc820d7ec40] } +&{glMultiTexCoord4d QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d7ef00 0xc820d7efa0 0xc820d7f060 0xc820d7f160 0xc820d7f260] } +&{glMultiTexCoord4dv QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d7f5c0 0xc820d7f6c0] } +&{glMultiTexCoord4f QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d7fa40 0xc820d7fac0 0xc820d7fc00 0xc820d7fcc0 0xc820d7fe60] } +&{glMultiTexCoord4fv QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d622c0 0xc820d625e0] } +&{glMultiTexCoord4i QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d62ba0 0xc820d62e40 0xc820d62ee0 0xc820d630e0 0xc820d63400] } +&{glMultiTexCoord4iv QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d63860 0xc820d63c60] } +&{glMultiTexCoord4s QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d503e0 0xc820d50580 0xc820d50860 0xc820d50b40 0xc820d50d40] } +&{glMultiTexCoord4sv QOpenGLFunctions_4_4_Compatibility::glMultiTexCoord4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d51580 0xc820d516e0] } +&{glMultiTexCoordP1ui QOpenGLFunctions_4_4_Compatibility::glMultiTexCoordP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d36020 0xc820d36260 0xc820d36560] } +&{glMultiTexCoordP1uiv QOpenGLFunctions_4_4_Compatibility::glMultiTexCoordP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d36ce0 0xc820d36f60 0xc820d37020] } +&{glMultiTexCoordP2ui QOpenGLFunctions_4_4_Compatibility::glMultiTexCoordP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d379c0 0xc820d37c00 0xc820d37d20] } +&{glMultiTexCoordP2uiv QOpenGLFunctions_4_4_Compatibility::glMultiTexCoordP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d24800 0xc820d24b20 0xc820d24ca0] } +&{glMultiTexCoordP3ui QOpenGLFunctions_4_4_Compatibility::glMultiTexCoordP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d25420 0xc820d25680 0xc820d258c0] } +&{glMultiTexCoordP3uiv QOpenGLFunctions_4_4_Compatibility::glMultiTexCoordP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c3e000 0xc820c3e100 0xc820c3e200] } +&{glMultiTexCoordP4ui QOpenGLFunctions_4_4_Compatibility::glMultiTexCoordP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c3e520 0xc820c3e6a0 0xc820c3e780] } +&{glMultiTexCoordP4uiv QOpenGLFunctions_4_4_Compatibility::glMultiTexCoordP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c3eaa0 0xc820c3eb80 0xc820c3ecc0] } +&{glNewList QOpenGLFunctions_4_4_Compatibility::glNewList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c3ef60 0xc820c3f000] } +&{glNormal3b QOpenGLFunctions_4_4_Compatibility::glNormal3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c3f220 0xc820c3f380 0xc820c3f460] } +&{glNormal3bv QOpenGLFunctions_4_4_Compatibility::glNormal3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c3f6e0] } +&{glNormal3d QOpenGLFunctions_4_4_Compatibility::glNormal3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c3f8e0 0xc820c3fa20 0xc820c3fac0] } +&{glNormal3dv QOpenGLFunctions_4_4_Compatibility::glNormal3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c3fda0] } +&{glNormal3f QOpenGLFunctions_4_4_Compatibility::glNormal3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c3ffa0 0xc820d0a1a0 0xc820d0a5c0] } +&{glNormal3fv QOpenGLFunctions_4_4_Compatibility::glNormal3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d0ac00] } +&{glNormal3i QOpenGLFunctions_4_4_Compatibility::glNormal3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d0b2c0 0xc820d0b500 0xc820d0b8c0] } +&{glNormal3iv QOpenGLFunctions_4_4_Compatibility::glNormal3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820d0bf80] } +&{glNormal3s QOpenGLFunctions_4_4_Compatibility::glNormal3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820cf43c0 0xc820cf4500 0xc820cf46a0] } +&{glNormal3sv QOpenGLFunctions_4_4_Compatibility::glNormal3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820cf4aa0] } +&{glNormalP3ui QOpenGLFunctions_4_4_Compatibility::glNormalP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820cf4e80 0xc820cf4f00] } +&{glNormalP3uiv QOpenGLFunctions_4_4_Compatibility::glNormalP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820cf53a0 0xc820cf54c0] } +&{glNormalPointer QOpenGLFunctions_4_4_Compatibility::glNormalPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820cf5980 0xc820cf5a00 0xc820cf5cc0] } +&{glObjectLabel QOpenGLFunctions_4_4_Compatibility::glObjectLabel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820cd40a0 0xc820cd4200 0xc820cd43e0 0xc820cd44a0] } +&{glObjectPtrLabel QOpenGLFunctions_4_4_Compatibility::glObjectPtrLabel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820cd4960 0xc820cd4ac0 0xc820cd4c20] } +&{glOrtho QOpenGLFunctions_4_4_Compatibility::glOrtho commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820cd50a0 0xc820cd5380 0xc820cd5580 0xc820cd5820 0xc820cd5a20 0xc820cd5da0] } +&{glPassThrough QOpenGLFunctions_4_4_Compatibility::glPassThrough commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ca02e0] } +&{glPatchParameterfv QOpenGLFunctions_4_4_Compatibility::glPatchParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ca0c20 0xc820ca0e20] } +&{glPatchParameteri QOpenGLFunctions_4_4_Compatibility::glPatchParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ca1540 0xc820ca1640] } +&{glPauseTransformFeedback QOpenGLFunctions_4_4_Compatibility::glPauseTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [] } +&{glPixelMapfv QOpenGLFunctions_4_4_Compatibility::glPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ca1f40 0xc820c8c060 0xc820c8c180] } +&{glPixelMapuiv QOpenGLFunctions_4_4_Compatibility::glPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c8c8e0 0xc820c8ca80 0xc820c8cce0] } +&{glPixelMapusv QOpenGLFunctions_4_4_Compatibility::glPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c8d2a0 0xc820c8d660 0xc820c8d800] } +&{glPixelStoref QOpenGLFunctions_4_4_Compatibility::glPixelStoref commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c8dd40 0xc820c76080] } +&{glPixelStorei QOpenGLFunctions_4_4_Compatibility::glPixelStorei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c764c0 0xc820c76600] } +&{glPixelTransferf QOpenGLFunctions_4_4_Compatibility::glPixelTransferf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c76e20 0xc820c770c0] } +&{glPixelTransferi QOpenGLFunctions_4_4_Compatibility::glPixelTransferi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c77780 0xc820c77b80] } +&{glPixelZoom QOpenGLFunctions_4_4_Compatibility::glPixelZoom commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c77f80 0xc820c62260] } +&{glPointParameterf QOpenGLFunctions_4_4_Compatibility::glPointParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c62b40 0xc820c62d40] } +&{glPointParameterfv QOpenGLFunctions_4_4_Compatibility::glPointParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c63440 0xc820c63800] } +&{glPointParameteri QOpenGLFunctions_4_4_Compatibility::glPointParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c63e60 0xc8208a4080] } +&{glPointParameteriv QOpenGLFunctions_4_4_Compatibility::glPointParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208a43c0 0xc8208a44c0] } +&{glPointSize QOpenGLFunctions_4_4_Compatibility::glPointSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208a4780] } +&{glPolygonMode QOpenGLFunctions_4_4_Compatibility::glPolygonMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208a4a20 0xc8208a4b00] } +&{glPolygonOffset QOpenGLFunctions_4_4_Compatibility::glPolygonOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208a4d20 0xc8208a4e80] } +&{glPolygonStipple QOpenGLFunctions_4_4_Compatibility::glPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208a5120] } +&{glPopAttrib QOpenGLFunctions_4_4_Compatibility::glPopAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [] } +&{glPopClientAttrib QOpenGLFunctions_4_4_Compatibility::glPopClientAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [] } +&{glPopDebugGroup QOpenGLFunctions_4_4_Compatibility::glPopDebugGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [] } +&{glPopMatrix QOpenGLFunctions_4_4_Compatibility::glPopMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [] } +&{glPopName QOpenGLFunctions_4_4_Compatibility::glPopName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [] } +&{glPrimitiveRestartIndex QOpenGLFunctions_4_4_Compatibility::glPrimitiveRestartIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208a59e0] } +&{glPrioritizeTextures QOpenGLFunctions_4_4_Compatibility::glPrioritizeTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208a5d00 0xc8208a5d80 0xc8208a5f40] } +&{glProgramBinary QOpenGLFunctions_4_4_Compatibility::glProgramBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c483c0 0xc820c486e0 0xc820c488c0 0xc820c48a00] } +&{glProgramParameteri QOpenGLFunctions_4_4_Compatibility::glProgramParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c49180 0xc820c494a0 0xc820c496e0] } +&{glProgramUniform1d QOpenGLFunctions_4_4_Compatibility::glProgramUniform1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c49f60 0xc820c2c200 0xc820c2c2e0] } +&{glProgramUniform1dv QOpenGLFunctions_4_4_Compatibility::glProgramUniform1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c2c9a0 0xc820c2ccc0 0xc820c2cd80 0xc820c2d080] } +&{glProgramUniform1f QOpenGLFunctions_4_4_Compatibility::glProgramUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c2d5e0 0xc820c2d880 0xc820c2dae0] } +&{glProgramUniform1fv QOpenGLFunctions_4_4_Compatibility::glProgramUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c24040 0xc820c24200 0xc820c242e0 0xc820c244e0] } +&{glProgramUniform1i QOpenGLFunctions_4_4_Compatibility::glProgramUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c24a80 0xc820c24be0 0xc820c24de0] } +&{glProgramUniform1iv QOpenGLFunctions_4_4_Compatibility::glProgramUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c25340 0xc820c25420 0xc820c25600 0xc820c257a0] } +&{glProgramUniform1ui QOpenGLFunctions_4_4_Compatibility::glProgramUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c25cc0 0xc820c25fa0 0xc820c160e0] } +&{glProgramUniform1uiv QOpenGLFunctions_4_4_Compatibility::glProgramUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c167a0 0xc820c168c0 0xc820c16ba0 0xc820c16d60] } +&{glProgramUniform2d QOpenGLFunctions_4_4_Compatibility::glProgramUniform2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c173a0 0xc820c175e0 0xc820c176e0 0xc820c17800] } +&{glProgramUniform2dv QOpenGLFunctions_4_4_Compatibility::glProgramUniform2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c17c20 0xc820c17ec0 0xc820c17fa0 0xc820c0c0e0] } +&{glProgramUniform2f QOpenGLFunctions_4_4_Compatibility::glProgramUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c0c600 0xc820c0c760 0xc820c0c960 0xc820c0cb00] } +&{glProgramUniform2fv QOpenGLFunctions_4_4_Compatibility::glProgramUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c0cf80 0xc820c0d1e0 0xc820c0d300 0xc820c0d5c0] } +&{glProgramUniform2i QOpenGLFunctions_4_4_Compatibility::glProgramUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c0db00 0xc820c0dd00 0xc820c0de60 0xc820c0df40] } +&{glProgramUniform2iv QOpenGLFunctions_4_4_Compatibility::glProgramUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c063c0 0xc820c064e0 0xc820c065e0 0xc820c06740] } +&{glProgramUniform2ui QOpenGLFunctions_4_4_Compatibility::glProgramUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c06ba0 0xc820c06cc0 0xc820c06fc0 0xc820c070a0] } +&{glProgramUniform2uiv QOpenGLFunctions_4_4_Compatibility::glProgramUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820c075a0 0xc820c077c0 0xc820c078c0 0xc820c07a00] } +&{glProgramUniform3d QOpenGLFunctions_4_4_Compatibility::glProgramUniform3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e100e0 0xc820e10220 0xc820e102c0 0xc820e10620 0xc820e10740] } +&{glProgramUniform3dv QOpenGLFunctions_4_4_Compatibility::glProgramUniform3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e10d60 0xc820e10fa0 0xc820e11120 0xc820e11220] } +&{glProgramUniform3f QOpenGLFunctions_4_4_Compatibility::glProgramUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e117e0 0xc820e119c0 0xc820e11b20 0xc820e11d60 0xc820e11f80] } +&{glProgramUniform3fv QOpenGLFunctions_4_4_Compatibility::glProgramUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820be4280 0xc820be43e0 0xc820be4560 0xc820be4600] } +&{glProgramUniform3i QOpenGLFunctions_4_4_Compatibility::glProgramUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820be49e0 0xc820be4ac0 0xc820be4b80 0xc820be4d80 0xc820be4e80] } +&{glProgramUniform3iv QOpenGLFunctions_4_4_Compatibility::glProgramUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820be5320 0xc820be53c0 0xc820be5520 0xc820be5600] } +&{glProgramUniform3ui QOpenGLFunctions_4_4_Compatibility::glProgramUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820be59e0 0xc820be5ae0 0xc820be5c80 0xc820be5d60 0xc820be5ea0] } +&{glProgramUniform3uiv QOpenGLFunctions_4_4_Compatibility::glProgramUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820bc8200 0xc820bc83c0 0xc820bc8500 0xc820bc85c0] } +&{glProgramUniform4d QOpenGLFunctions_4_4_Compatibility::glProgramUniform4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820bc8a20 0xc820bc8b40 0xc820bc8c80 0xc820bc8da0 0xc820bc8ea0 0xc820bc9040] } +&{glProgramUniform4dv QOpenGLFunctions_4_4_Compatibility::glProgramUniform4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820bc93c0 0xc820bc94a0 0xc820bc9560 0xc820bc9700] } +&{glProgramUniform4f QOpenGLFunctions_4_4_Compatibility::glProgramUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820bc9a80 0xc820bc9bc0 0xc820bc9c40 0xc820bc9da0 0xc820bc9f80 0xc820bc0080] } +&{glProgramUniform4fv QOpenGLFunctions_4_4_Compatibility::glProgramUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820bc0620 0xc820bc0740 0xc820bc09e0 0xc820bc0ac0] } +&{glProgramUniform4i QOpenGLFunctions_4_4_Compatibility::glProgramUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820bc1060 0xc820bc1120 0xc820bc1240 0xc820bc1420 0xc820bc1560 0xc820bc17a0] } +&{glProgramUniform4iv QOpenGLFunctions_4_4_Compatibility::glProgramUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820bc1c00 0xc820bc1e00 0xc820bc1f00 0xc820bc1fa0] } +&{glProgramUniform4ui QOpenGLFunctions_4_4_Compatibility::glProgramUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e1c4a0 0xc820e1c5e0 0xc820e1c7c0 0xc820e1c860 0xc820e1ca40 0xc820e1cbe0] } +&{glProgramUniform4uiv QOpenGLFunctions_4_4_Compatibility::glProgramUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e1d040 0xc820e1d160 0xc820e1d2a0 0xc820e1d420] } +&{glProgramUniformMatrix2dv QOpenGLFunctions_4_4_Compatibility::glProgramUniformMatrix2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e1d8a0 0xc820e1d920 0xc820e1da60 0xc820e1dbe0 0xc820e1dda0] } +&{glProgramUniformMatrix2fv QOpenGLFunctions_4_4_Compatibility::glProgramUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ba8240 0xc820ba83c0 0xc820ba84c0 0xc820ba8700 0xc820ba8840] } +&{glProgramUniformMatrix2x3dv QOpenGLFunctions_4_4_Compatibility::glProgramUniformMatrix2x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ba8d40 0xc820ba8ec0 0xc820ba8fc0 0xc820ba91a0 0xc820ba9300] } +&{glProgramUniformMatrix2x3fv QOpenGLFunctions_4_4_Compatibility::glProgramUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ba97e0 0xc820ba98e0 0xc820ba9ba0 0xc820ba9ce0 0xc820ba9ee0] } +&{glProgramUniformMatrix2x4dv QOpenGLFunctions_4_4_Compatibility::glProgramUniformMatrix2x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b8e400 0xc820b8e5c0 0xc820b8e780 0xc820b8e880 0xc820b8ea00] } +&{glProgramUniformMatrix2x4fv QOpenGLFunctions_4_4_Compatibility::glProgramUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b8f020 0xc820b8f1e0 0xc820b8f2c0 0xc820b8f400 0xc820b8f660] } +&{glProgramUniformMatrix3dv QOpenGLFunctions_4_4_Compatibility::glProgramUniformMatrix3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b8fbc0 0xc820b8fd40 0xc820b8fe80 0xc820b7e100 0xc820b7e240] } +&{glProgramUniformMatrix3fv QOpenGLFunctions_4_4_Compatibility::glProgramUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b7e7a0 0xc820b7e9e0 0xc820b7eba0 0xc820b7ecc0 0xc820b7ee60] } +&{glProgramUniformMatrix3x2dv QOpenGLFunctions_4_4_Compatibility::glProgramUniformMatrix3x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b7f2e0 0xc820b7f4a0 0xc820b7f640 0xc820b7f780 0xc820b7f9a0] } +&{glProgramUniformMatrix3x2fv QOpenGLFunctions_4_4_Compatibility::glProgramUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b7fe80 0xc820b56080 0xc820b56140 0xc820b56360 0xc820b56500] } +&{glProgramUniformMatrix3x4dv QOpenGLFunctions_4_4_Compatibility::glProgramUniformMatrix3x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b56a20 0xc820b56b80 0xc820b56c40 0xc820b56d80 0xc820b56f60] } +&{glProgramUniformMatrix3x4fv QOpenGLFunctions_4_4_Compatibility::glProgramUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b57460 0xc820b57560 0xc820b57720 0xc820b57920 0xc820b57ac0] } +&{glProgramUniformMatrix4dv QOpenGLFunctions_4_4_Compatibility::glProgramUniformMatrix4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b57f40 0xc820b28040 0xc820b28180 0xc820b28340 0xc820b28440] } +&{glProgramUniformMatrix4fv QOpenGLFunctions_4_4_Compatibility::glProgramUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b288c0 0xc820b28980 0xc820b28bc0 0xc820b28ca0 0xc820b28e00] } +&{glProgramUniformMatrix4x2dv QOpenGLFunctions_4_4_Compatibility::glProgramUniformMatrix4x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b291a0 0xc820b293e0 0xc820b29560 0xc820b29700 0xc820b29940] } +&{glProgramUniformMatrix4x2fv QOpenGLFunctions_4_4_Compatibility::glProgramUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b29e00 0xc820b29fa0 0xc820b18080 0xc820b181c0 0xc820b18400] } +&{glProgramUniformMatrix4x3dv QOpenGLFunctions_4_4_Compatibility::glProgramUniformMatrix4x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b18960 0xc820b18a60 0xc820b18ba0 0xc820b18ce0 0xc820b18de0] } +&{glProgramUniformMatrix4x3fv QOpenGLFunctions_4_4_Compatibility::glProgramUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b19320 0xc820b193e0 0xc820b19520 0xc820b19740 0xc820b19880] } +&{glProvokingVertex QOpenGLFunctions_4_4_Compatibility::glProvokingVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b19d00] } +&{glPushAttrib QOpenGLFunctions_4_4_Compatibility::glPushAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e020a0] } +&{glPushClientAttrib QOpenGLFunctions_4_4_Compatibility::glPushClientAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e026e0] } +&{glPushDebugGroup QOpenGLFunctions_4_4_Compatibility::glPushDebugGroup commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e02c00 0xc820e02ce0 0xc820e02ee0 0xc820e03080] } +&{glPushMatrix QOpenGLFunctions_4_4_Compatibility::glPushMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [] } +&{glPushName QOpenGLFunctions_4_4_Compatibility::glPushName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e03700] } +&{glQueryCounter QOpenGLFunctions_4_4_Compatibility::glQueryCounter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e03bc0 0xc820e03d80] } +&{glRasterPos2d QOpenGLFunctions_4_4_Compatibility::glRasterPos2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e04120 0xc820e04220] } +&{glRasterPos2dv QOpenGLFunctions_4_4_Compatibility::glRasterPos2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e044e0] } +&{glRasterPos2f QOpenGLFunctions_4_4_Compatibility::glRasterPos2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e047a0 0xc820e048a0] } +&{glRasterPos2fv QOpenGLFunctions_4_4_Compatibility::glRasterPos2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e04b80] } +&{glRasterPos2i QOpenGLFunctions_4_4_Compatibility::glRasterPos2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e04e40 0xc820e04f60] } +&{glRasterPos2iv QOpenGLFunctions_4_4_Compatibility::glRasterPos2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e05200] } +&{glRasterPos2s QOpenGLFunctions_4_4_Compatibility::glRasterPos2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e05420 0xc820e055a0] } +&{glRasterPos2sv QOpenGLFunctions_4_4_Compatibility::glRasterPos2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e057e0] } +&{glRasterPos3d QOpenGLFunctions_4_4_Compatibility::glRasterPos3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e05aa0 0xc820e05bc0 0xc820e05d20] } +&{glRasterPos3dv QOpenGLFunctions_4_4_Compatibility::glRasterPos3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e05f60] } +&{glRasterPos3f QOpenGLFunctions_4_4_Compatibility::glRasterPos3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820af0380 0xc820af0500 0xc820af0640] } +&{glRasterPos3fv QOpenGLFunctions_4_4_Compatibility::glRasterPos3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820af0a60] } +&{glRasterPos3i QOpenGLFunctions_4_4_Compatibility::glRasterPos3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820af0e20 0xc820af0fa0 0xc820af1240] } +&{glRasterPos3iv QOpenGLFunctions_4_4_Compatibility::glRasterPos3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820af1540] } +&{glRasterPos3s QOpenGLFunctions_4_4_Compatibility::glRasterPos3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820af1920 0xc820af1b20 0xc820af1c40] } +&{glRasterPos3sv QOpenGLFunctions_4_4_Compatibility::glRasterPos3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820af1fc0] } +&{glRasterPos4d QOpenGLFunctions_4_4_Compatibility::glRasterPos4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ade240 0xc820ade420 0xc820ade560 0xc820ade660] } +&{glRasterPos4dv QOpenGLFunctions_4_4_Compatibility::glRasterPos4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820adea60] } +&{glRasterPos4f QOpenGLFunctions_4_4_Compatibility::glRasterPos4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820adec80 0xc820adee40 0xc820adef40 0xc820adf040] } +&{glRasterPos4fv QOpenGLFunctions_4_4_Compatibility::glRasterPos4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820adf380] } +&{glRasterPos4i QOpenGLFunctions_4_4_Compatibility::glRasterPos4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820adf6e0 0xc820adf7a0 0xc820adf940 0xc820adfb80] } +&{glRasterPos4iv QOpenGLFunctions_4_4_Compatibility::glRasterPos4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820adfec0] } +&{glRasterPos4s QOpenGLFunctions_4_4_Compatibility::glRasterPos4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820acc1e0 0xc820acc380 0xc820acc580 0xc820acc680] } +&{glRasterPos4sv QOpenGLFunctions_4_4_Compatibility::glRasterPos4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820acca80] } +&{glReadBuffer QOpenGLFunctions_4_4_Compatibility::glReadBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820acce40] } +&{glReadPixels QOpenGLFunctions_4_4_Compatibility::glReadPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820acd180 0xc820acd380 0xc820acd460 0xc820acd5a0 0xc820acd880 0xc820acd940 0xc820acdb20] } +&{glRectd QOpenGLFunctions_4_4_Compatibility::glRectd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820acdec0 0xc820acdf60 0xc820a94180 0xc820a94260] } +&{glRectdv QOpenGLFunctions_4_4_Compatibility::glRectdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a94680 0xc820a94780] } +&{glRectf QOpenGLFunctions_4_4_Compatibility::glRectf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a94c00 0xc820a94dc0 0xc820a94fe0 0xc820a95100] } +&{glRectfv QOpenGLFunctions_4_4_Compatibility::glRectfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a955c0 0xc820a95680] } +&{glRecti QOpenGLFunctions_4_4_Compatibility::glRecti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a95b40 0xc820a95be0 0xc820a95d60 0xc820a95f00] } +&{glRectiv QOpenGLFunctions_4_4_Compatibility::glRectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e2c1a0 0xc820e2c320] } +&{glRects QOpenGLFunctions_4_4_Compatibility::glRects commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e2c520 0xc820e2c5c0 0xc820e2c700 0xc820e2c7e0] } +&{glRectsv QOpenGLFunctions_4_4_Compatibility::glRectsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e2ca40 0xc820e2cb40] } +&{glReleaseShaderCompiler QOpenGLFunctions_4_4_Compatibility::glReleaseShaderCompiler commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [] } +&{glRenderMode QOpenGLFunctions_4_4_Compatibility::glRenderMode commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLint [0xc820e2cf80] } +&{glRenderbufferStorage QOpenGLFunctions_4_4_Compatibility::glRenderbufferStorage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e2d2e0 0xc820e2d400 0xc820e2d4a0 0xc820e2d5c0] } +&{glRenderbufferStorageMultisample QOpenGLFunctions_4_4_Compatibility::glRenderbufferStorageMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e2d8c0 0xc820e2da00 0xc820e2dac0 0xc820e2dbe0 0xc820e2dd40] } +&{glResetHistogram QOpenGLFunctions_4_4_Compatibility::glResetHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e2df60] } +&{glResetMinmax QOpenGLFunctions_4_4_Compatibility::glResetMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a7e2e0] } +&{glResumeTransformFeedback QOpenGLFunctions_4_4_Compatibility::glResumeTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [] } +&{glRotated QOpenGLFunctions_4_4_Compatibility::glRotated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a7e900 0xc820a7e9a0 0xc820a7eb00 0xc820a7ece0] } +&{glRotatef QOpenGLFunctions_4_4_Compatibility::glRotatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a7f000 0xc820a7f1a0 0xc820a7f2a0 0xc820a7f420] } +&{glSampleCoverage QOpenGLFunctions_4_4_Compatibility::glSampleCoverage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a7f700 0xc820a7f7e0] } +&{glSampleMaski QOpenGLFunctions_4_4_Compatibility::glSampleMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a7fb00 0xc820a7fce0] } +&{glSamplerParameterIiv QOpenGLFunctions_4_4_Compatibility::glSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820dd4140 0xc820dd42e0 0xc820dd4400] } +&{glSamplerParameterIuiv QOpenGLFunctions_4_4_Compatibility::glSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820dd4840 0xc820dd49a0 0xc820dd4ba0] } +&{glSamplerParameterf QOpenGLFunctions_4_4_Compatibility::glSamplerParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820dd4fe0 0xc820dd5100 0xc820dd5280] } +&{glSamplerParameterfv QOpenGLFunctions_4_4_Compatibility::glSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820dd56e0 0xc820dd58e0 0xc820dd5a00] } +&{glSamplerParameteri QOpenGLFunctions_4_4_Compatibility::glSamplerParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820dd5e40 0xc820dd5f40 0xc820a6c0c0] } +&{glSamplerParameteriv QOpenGLFunctions_4_4_Compatibility::glSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a6c520 0xc820a6c6a0 0xc820a6c740] } +&{glScaled QOpenGLFunctions_4_4_Compatibility::glScaled commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a6cc20 0xc820a6cd60 0xc820a6cf00] } +&{glScalef QOpenGLFunctions_4_4_Compatibility::glScalef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a6d260 0xc820a6d4a0 0xc820a6d5e0] } +&{glScissor QOpenGLFunctions_4_4_Compatibility::glScissor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a6da00 0xc820a6db60 0xc820a6dca0 0xc820a6de80] } +&{glScissorArrayv QOpenGLFunctions_4_4_Compatibility::glScissorArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a5a140 0xc820a5a2e0 0xc820a5a400] } +&{glScissorIndexed QOpenGLFunctions_4_4_Compatibility::glScissorIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a5a6a0 0xc820a5a7c0 0xc820a5a940 0xc820a5aa60 0xc820a5ac00] } +&{glScissorIndexedv QOpenGLFunctions_4_4_Compatibility::glScissorIndexedv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a5afc0 0xc820a5b0e0] } +&{glSecondaryColor3b QOpenGLFunctions_4_4_Compatibility::glSecondaryColor3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a5b420 0xc820a5b520 0xc820a5b600] } +&{glSecondaryColor3bv QOpenGLFunctions_4_4_Compatibility::glSecondaryColor3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a5b9c0] } +&{glSecondaryColor3d QOpenGLFunctions_4_4_Compatibility::glSecondaryColor3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a5bce0 0xc820a5bd80 0xc820a5be60] } +&{glSecondaryColor3dv QOpenGLFunctions_4_4_Compatibility::glSecondaryColor3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820df2160] } +&{glSecondaryColor3f QOpenGLFunctions_4_4_Compatibility::glSecondaryColor3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820df2460 0xc820df25c0 0xc820df26c0] } +&{glSecondaryColor3fv QOpenGLFunctions_4_4_Compatibility::glSecondaryColor3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820df29c0] } +&{glSecondaryColor3i QOpenGLFunctions_4_4_Compatibility::glSecondaryColor3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820df2d80 0xc820df2e00 0xc820df2ee0] } +&{glSecondaryColor3iv QOpenGLFunctions_4_4_Compatibility::glSecondaryColor3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820df3280] } +&{glSecondaryColor3s QOpenGLFunctions_4_4_Compatibility::glSecondaryColor3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820df3580 0xc820df36a0 0xc820df3740] } +&{glSecondaryColor3sv QOpenGLFunctions_4_4_Compatibility::glSecondaryColor3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820df3a60] } +&{glSecondaryColor3ub QOpenGLFunctions_4_4_Compatibility::glSecondaryColor3ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820df3dc0 0xc820df3ec0 0xc820df3fa0] } +&{glSecondaryColor3ubv QOpenGLFunctions_4_4_Compatibility::glSecondaryColor3ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a26280] } +&{glSecondaryColor3ui QOpenGLFunctions_4_4_Compatibility::glSecondaryColor3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a264e0 0xc820a26600 0xc820a266c0] } +&{glSecondaryColor3uiv QOpenGLFunctions_4_4_Compatibility::glSecondaryColor3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a26a20] } +&{glSecondaryColor3us QOpenGLFunctions_4_4_Compatibility::glSecondaryColor3us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a26de0 0xc820a26ee0 0xc820a27000] } +&{glSecondaryColor3usv QOpenGLFunctions_4_4_Compatibility::glSecondaryColor3usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a27280] } +&{glSecondaryColorP3ui QOpenGLFunctions_4_4_Compatibility::glSecondaryColorP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a27640 0xc820a27720] } +&{glSecondaryColorP3uiv QOpenGLFunctions_4_4_Compatibility::glSecondaryColorP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a27a60 0xc820a27b40] } +&{glSecondaryColorPointer QOpenGLFunctions_4_4_Compatibility::glSecondaryColorPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a27e40 0xc820a27f20 0xc820e50020 0xc820e50120] } +&{glSelectBuffer QOpenGLFunctions_4_4_Compatibility::glSelectBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e50340 0xc820e50480] } +&{glSeparableFilter2D QOpenGLFunctions_4_4_Compatibility::glSeparableFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e507c0 0xc820e508a0 0xc820e509c0 0xc820e50a40 0xc820e50bc0 0xc820e50c80 0xc820e50dc0 0xc820e50e60] } +&{glShadeModel QOpenGLFunctions_4_4_Compatibility::glShadeModel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e511a0] } +&{glShaderBinary QOpenGLFunctions_4_4_Compatibility::glShaderBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e513a0 0xc820e514c0 0xc820e51580 0xc820e516a0 0xc820e517c0] } +&{glShaderSource QOpenGLFunctions_4_4_Compatibility::glShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e51a40 0xc820e51ba0 0xc820e51d00 0xc820e51e40] } +&{glShaderStorageBlockBinding QOpenGLFunctions_4_4_Compatibility::glShaderStorageBlockBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82015a160 0xc82015a300 0xc82015a5e0] } +&{glStencilFunc QOpenGLFunctions_4_4_Compatibility::glStencilFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82015a9c0 0xc82015aa80 0xc82015ac40] } +&{glStencilFuncSeparate QOpenGLFunctions_4_4_Compatibility::glStencilFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82015b1a0 0xc82015b2c0 0xc82015b4e0 0xc82015b700] } +&{glStencilMask QOpenGLFunctions_4_4_Compatibility::glStencilMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82015bae0] } +&{glStencilMaskSeparate QOpenGLFunctions_4_4_Compatibility::glStencilMaskSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82015bfc0 0xc8209e2120] } +&{glStencilOp QOpenGLFunctions_4_4_Compatibility::glStencilOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209e23e0 0xc8209e24a0 0xc8209e2580] } +&{glStencilOpSeparate QOpenGLFunctions_4_4_Compatibility::glStencilOpSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209e2860 0xc8209e2980 0xc8209e2a60 0xc8209e2b60] } +&{glTexBuffer QOpenGLFunctions_4_4_Compatibility::glTexBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209e2dc0 0xc8209e2f00 0xc8209e2fa0] } +&{glTexBufferRange QOpenGLFunctions_4_4_Compatibility::glTexBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209e3280 0xc8209e3380 0xc8209e3520 0xc8209e36e0 0xc8209e37c0] } +&{glTexCoord1d QOpenGLFunctions_4_4_Compatibility::glTexCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209e3b20] } +&{glTexCoord1dv QOpenGLFunctions_4_4_Compatibility::glTexCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209e3ea0] } +&{glTexCoord1f QOpenGLFunctions_4_4_Compatibility::glTexCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209bc0c0] } +&{glTexCoord1fv QOpenGLFunctions_4_4_Compatibility::glTexCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209bc3c0] } +&{glTexCoord1i QOpenGLFunctions_4_4_Compatibility::glTexCoord1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209bc6e0] } +&{glTexCoord1iv QOpenGLFunctions_4_4_Compatibility::glTexCoord1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209bc960] } +&{glTexCoord1s QOpenGLFunctions_4_4_Compatibility::glTexCoord1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209bcc80] } +&{glTexCoord1sv QOpenGLFunctions_4_4_Compatibility::glTexCoord1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209bcf60] } +&{glTexCoord2d QOpenGLFunctions_4_4_Compatibility::glTexCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209bd280 0xc8209bd380] } +&{glTexCoord2dv QOpenGLFunctions_4_4_Compatibility::glTexCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209bd6a0] } +&{glTexCoord2f QOpenGLFunctions_4_4_Compatibility::glTexCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209bd920 0xc8209bda40] } +&{glTexCoord2fv QOpenGLFunctions_4_4_Compatibility::glTexCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209bdd40] } +&{glTexCoord2i QOpenGLFunctions_4_4_Compatibility::glTexCoord2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e6e060 0xc820e6e140] } +&{glTexCoord2iv QOpenGLFunctions_4_4_Compatibility::glTexCoord2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e6e360] } +&{glTexCoord2s QOpenGLFunctions_4_4_Compatibility::glTexCoord2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e6e5c0 0xc820e6e700] } +&{glTexCoord2sv QOpenGLFunctions_4_4_Compatibility::glTexCoord2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e6e940] } +&{glTexCoord3d QOpenGLFunctions_4_4_Compatibility::glTexCoord3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e6eb60 0xc820e6eca0 0xc820e6eda0] } +&{glTexCoord3dv QOpenGLFunctions_4_4_Compatibility::glTexCoord3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e6f020] } +&{glTexCoord3f QOpenGLFunctions_4_4_Compatibility::glTexCoord3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e6f2e0 0xc820e6f3a0 0xc820e6f4a0] } +&{glTexCoord3fv QOpenGLFunctions_4_4_Compatibility::glTexCoord3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e6f740] } +&{glTexCoord3i QOpenGLFunctions_4_4_Compatibility::glTexCoord3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e6fa00 0xc820e6fb00 0xc820e6fbe0] } +&{glTexCoord3iv QOpenGLFunctions_4_4_Compatibility::glTexCoord3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e6fe60] } +&{glTexCoord3s QOpenGLFunctions_4_4_Compatibility::glTexCoord3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209b0080 0xc8209b0120 0xc8209b02e0] } +&{glTexCoord3sv QOpenGLFunctions_4_4_Compatibility::glTexCoord3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209b0540] } +&{glTexCoord4d QOpenGLFunctions_4_4_Compatibility::glTexCoord4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209b0800 0xc8209b0920 0xc8209b0a40 0xc8209b0b40] } +&{glTexCoord4dv QOpenGLFunctions_4_4_Compatibility::glTexCoord4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209b0e20] } +&{glTexCoord4f QOpenGLFunctions_4_4_Compatibility::glTexCoord4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209b1080 0xc8209b1240 0xc8209b1380 0xc8209b1440] } +&{glTexCoord4fv QOpenGLFunctions_4_4_Compatibility::glTexCoord4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209b1700] } +&{glTexCoord4i QOpenGLFunctions_4_4_Compatibility::glTexCoord4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209b1a40 0xc8209b1ae0 0xc8209b1c40 0xc8209b1d40] } +&{glTexCoord4iv QOpenGLFunctions_4_4_Compatibility::glTexCoord4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82099c020] } +&{glTexCoord4s QOpenGLFunctions_4_4_Compatibility::glTexCoord4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82099c2e0 0xc82099c440 0xc82099c500 0xc82099c6c0] } +&{glTexCoord4sv QOpenGLFunctions_4_4_Compatibility::glTexCoord4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82099c940] } +&{glTexCoordP1ui QOpenGLFunctions_4_4_Compatibility::glTexCoordP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82099cc60 0xc82099cd00] } +&{glTexCoordP1uiv QOpenGLFunctions_4_4_Compatibility::glTexCoordP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82099cf40 0xc82099d0a0] } +&{glTexCoordP2ui QOpenGLFunctions_4_4_Compatibility::glTexCoordP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82099d360 0xc82099d3e0] } +&{glTexCoordP2uiv QOpenGLFunctions_4_4_Compatibility::glTexCoordP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82099d740 0xc82099d860] } +&{glTexCoordP3ui QOpenGLFunctions_4_4_Compatibility::glTexCoordP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82099db60 0xc82099dc00] } +&{glTexCoordP3uiv QOpenGLFunctions_4_4_Compatibility::glTexCoordP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82099df60 0xc8201aa040] } +&{glTexCoordP4ui QOpenGLFunctions_4_4_Compatibility::glTexCoordP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8201aa340 0xc8201aa3e0] } +&{glTexCoordP4uiv QOpenGLFunctions_4_4_Compatibility::glTexCoordP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8201aa740 0xc8201aa820] } +&{glTexCoordPointer QOpenGLFunctions_4_4_Compatibility::glTexCoordPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8201aabe0 0xc8201aad60 0xc8201aae60 0xc8201aaf60] } +&{glTexEnvf QOpenGLFunctions_4_4_Compatibility::glTexEnvf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8201ab2a0 0xc8201ab3c0 0xc8201ab560] } +&{glTexEnvfv QOpenGLFunctions_4_4_Compatibility::glTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8201ab7e0 0xc8201ab940 0xc8201abac0] } +&{glTexEnvi QOpenGLFunctions_4_4_Compatibility::glTexEnvi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8201abde0 0xc8201abec0 0xc820978040] } +&{glTexEnviv QOpenGLFunctions_4_4_Compatibility::glTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820978220 0xc820978300 0xc820978380] } +&{glTexGend QOpenGLFunctions_4_4_Compatibility::glTexGend commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209785c0 0xc820978680 0xc8209787a0] } +&{glTexGendv QOpenGLFunctions_4_4_Compatibility::glTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820978980 0xc820978a20 0xc820978b20] } +&{glTexGenf QOpenGLFunctions_4_4_Compatibility::glTexGenf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820978ce0 0xc820978dc0 0xc820978e60] } +&{glTexGenfv QOpenGLFunctions_4_4_Compatibility::glTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820979080 0xc820979120 0xc8209791e0] } +&{glTexGeni QOpenGLFunctions_4_4_Compatibility::glTexGeni commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209793c0 0xc8209794e0 0xc820979580] } +&{glTexGeniv QOpenGLFunctions_4_4_Compatibility::glTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820979780 0xc820979920 0xc820979a20] } +&{glTexImage1D QOpenGLFunctions_4_4_Compatibility::glTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820979c40 0xc820979d60 0xc820979e40 0xc820979f20 0xc820979fe0 0xc820b540a0 0xc820b54160 0xc820b54220] } +&{glTexImage2D QOpenGLFunctions_4_4_Compatibility::glTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b54460 0xc820b54500 0xc820b54600 0xc820b546e0 0xc820b547c0 0xc820b548c0 0xc820b54960 0xc820b54a20 0xc820b54b00] } +&{glTexImage2DMultisample QOpenGLFunctions_4_4_Compatibility::glTexImage2DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b54dc0 0xc820b54ee0 0xc820b54f80 0xc820b55060 0xc820b55140 0xc820b55220] } +&{glTexImage3D QOpenGLFunctions_4_4_Compatibility::glTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b554a0 0xc820b55580 0xc820b55620 0xc820b556e0 0xc820b55800 0xc820b558c0 0xc820b55980 0xc820b55a20 0xc820b55b60 0xc820b55c00] } +&{glTexImage3DMultisample QOpenGLFunctions_4_4_Compatibility::glTexImage3DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b55ee0 0xc820b55fa0 0xc8209a2080 0xc8209a21c0 0xc8209a23a0 0xc8209a24c0 0xc8209a26a0] } +&{glTexParameterIiv QOpenGLFunctions_4_4_Compatibility::glTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209a2b20 0xc8209a2c40 0xc8209a2dc0] } +&{glTexParameterIuiv QOpenGLFunctions_4_4_Compatibility::glTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209a3160 0xc8209a3280 0xc8209a33e0] } +&{glTexParameterf QOpenGLFunctions_4_4_Compatibility::glTexParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209a36a0 0xc8209a3820 0xc8209a3920] } +&{glTexParameterfv QOpenGLFunctions_4_4_Compatibility::glTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209a3c20 0xc8209a3d20 0xc8209a3e60] } +&{glTexParameteri QOpenGLFunctions_4_4_Compatibility::glTexParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82095e1a0 0xc82095e280 0xc82095e380] } +&{glTexParameteriv QOpenGLFunctions_4_4_Compatibility::glTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82095e5e0 0xc82095e700 0xc82095e820] } +&{glTexStorage1D QOpenGLFunctions_4_4_Compatibility::glTexStorage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82095eae0 0xc82095ec20 0xc82095ed80 0xc82095ee80] } +&{glTexStorage2D QOpenGLFunctions_4_4_Compatibility::glTexStorage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82095f140 0xc82095f2a0 0xc82095f440 0xc82095f540 0xc82095f6a0] } +&{glTexStorage2DMultisample QOpenGLFunctions_4_4_Compatibility::glTexStorage2DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82095fa40 0xc82095fc00 0xc82095fcc0 0xc82095fe20 0xc82095ff60 0xc82094a020] } +&{glTexStorage3D QOpenGLFunctions_4_4_Compatibility::glTexStorage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82094a380 0xc82094a560 0xc82094a600 0xc82094a7c0 0xc82094a8c0 0xc82094aa40] } +&{glTexStorage3DMultisample QOpenGLFunctions_4_4_Compatibility::glTexStorage3DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82094ae80 0xc82094afc0 0xc82094b100 0xc82094b220 0xc82094b3c0 0xc82094b460 0xc82094b580] } +&{glTexSubImage1D QOpenGLFunctions_4_4_Compatibility::glTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82094b900 0xc82094b9c0 0xc82094bae0 0xc82094bbe0 0xc82094bcc0 0xc82094be80 0xc82094bf80] } +&{glTexSubImage2D QOpenGLFunctions_4_4_Compatibility::glTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820928340 0xc820928460 0xc8209285c0 0xc820928720 0xc820928840 0xc8209289c0 0xc820928a80 0xc820928c40 0xc820928e00] } +&{glTexSubImage3D QOpenGLFunctions_4_4_Compatibility::glTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820929140 0xc8209291e0 0xc820929340 0xc8209294c0 0xc820929560 0xc820929660 0xc820929820 0xc820929920 0xc820929aa0 0xc820929c00 0xc820929d40] } +&{glTextureView QOpenGLFunctions_4_4_Compatibility::glTextureView commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8205b6080 0xc8205b61a0 0xc8205b6260 0xc8205b63a0 0xc8205b6500 0xc8205b6660 0xc8205b6740 0xc8205b67e0] } +&{glTransformFeedbackVaryings QOpenGLFunctions_4_4_Compatibility::glTransformFeedbackVaryings commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8205b6c40 0xc8205b6e20 0xc8205b6f20 0xc8205b7120] } +&{glTranslated QOpenGLFunctions_4_4_Compatibility::glTranslated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8205b7380 0xc8205b74a0 0xc8205b75a0] } +&{glTranslatef QOpenGLFunctions_4_4_Compatibility::glTranslatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8205b7860 0xc8205b7a20 0xc8205b7b80] } +&{glUniform1d QOpenGLFunctions_4_4_Compatibility::glUniform1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8205b7de0 0xc8205b7f40] } +&{glUniform1dv QOpenGLFunctions_4_4_Compatibility::glUniform1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82091c260 0xc82091c3c0 0xc82091c4e0] } +&{glUniform1f QOpenGLFunctions_4_4_Compatibility::glUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82091c760 0xc82091c980] } +&{glUniform1fv QOpenGLFunctions_4_4_Compatibility::glUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82091cb40 0xc82091cd20 0xc82091cdc0] } +&{glUniform1i QOpenGLFunctions_4_4_Compatibility::glUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82091d180 0xc82091d200] } +&{glUniform1iv QOpenGLFunctions_4_4_Compatibility::glUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82091d580 0xc82091d640 0xc82091d780] } +&{glUniform1ui QOpenGLFunctions_4_4_Compatibility::glUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82091da20 0xc82091db80] } +&{glUniform1uiv QOpenGLFunctions_4_4_Compatibility::glUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82091de80 0xc82091df80 0xc820e420a0] } +&{glUniform2d QOpenGLFunctions_4_4_Compatibility::glUniform2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e42440 0xc820e42520 0xc820e42660] } +&{glUniform2dv QOpenGLFunctions_4_4_Compatibility::glUniform2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e429e0 0xc820e42aa0 0xc820e42ca0] } +&{glUniform2f QOpenGLFunctions_4_4_Compatibility::glUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e42fa0 0xc820e43100 0xc820e431e0] } +&{glUniform2fv QOpenGLFunctions_4_4_Compatibility::glUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e43580 0xc820e43640 0xc820e437a0] } +&{glUniform2i QOpenGLFunctions_4_4_Compatibility::glUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e43ae0 0xc820e43ca0 0xc820e43e00] } +&{glUniform2iv QOpenGLFunctions_4_4_Compatibility::glUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820908160 0xc820908260 0xc820908340] } +&{glUniform2ui QOpenGLFunctions_4_4_Compatibility::glUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820908600 0xc8209086e0 0xc8209087c0] } +&{glUniform2uiv QOpenGLFunctions_4_4_Compatibility::glUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820908aa0 0xc820908c00 0xc820908d40] } +&{glUniform3d QOpenGLFunctions_4_4_Compatibility::glUniform3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820908fc0 0xc820909140 0xc8209092e0 0xc820909380] } +&{glUniform3dv QOpenGLFunctions_4_4_Compatibility::glUniform3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820909700 0xc820909840 0xc820909940] } +&{glUniform3f QOpenGLFunctions_4_4_Compatibility::glUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820909be0 0xc820909d20 0xc820909e40 0xc820909fa0] } +&{glUniform3fv QOpenGLFunctions_4_4_Compatibility::glUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208f8260 0xc8208f83c0 0xc8208f8480] } +&{glUniform3i QOpenGLFunctions_4_4_Compatibility::glUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208f8840 0xc8208f8940 0xc8208f8a00 0xc8208f8c40] } +&{glUniform3iv QOpenGLFunctions_4_4_Compatibility::glUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208f8e60 0xc8208f9000 0xc8208f9100] } +&{glUniform3ui QOpenGLFunctions_4_4_Compatibility::glUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208f9360 0xc8208f9480 0xc8208f9580 0xc8208f9720] } +&{glUniform3uiv QOpenGLFunctions_4_4_Compatibility::glUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208f9900 0xc8208f9aa0 0xc8208f9be0] } +&{glUniform4d QOpenGLFunctions_4_4_Compatibility::glUniform4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208f9fe0 0xc8208d20a0 0xc8208d2220 0xc8208d2320 0xc8208d2460] } +&{glUniform4dv QOpenGLFunctions_4_4_Compatibility::glUniform4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208d2720 0xc8208d2880 0xc8208d2900] } +&{glUniform4f QOpenGLFunctions_4_4_Compatibility::glUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208d2bc0 0xc8208d2c80 0xc8208d2d80 0xc8208d2e40 0xc8208d3080] } +&{glUniform4fv QOpenGLFunctions_4_4_Compatibility::glUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208d3280 0xc8208d3440 0xc8208d34e0] } +&{glUniform4i QOpenGLFunctions_4_4_Compatibility::glUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208d3820 0xc8208d38e0 0xc8208d39a0 0xc8208d3ac0 0xc8208d3c20] } +&{glUniform4iv QOpenGLFunctions_4_4_Compatibility::glUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208d3ea0 0xc8208c20a0 0xc8208c2120] } +&{glUniform4ui QOpenGLFunctions_4_4_Compatibility::glUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208c24e0 0xc8208c25a0 0xc8208c2660 0xc8208c2860 0xc8208c2980] } +&{glUniform4uiv QOpenGLFunctions_4_4_Compatibility::glUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208c2c40 0xc8208c2d00 0xc8208c2e80] } +&{glUniformBlockBinding QOpenGLFunctions_4_4_Compatibility::glUniformBlockBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208c3200 0xc8208c3380 0xc8208c3520] } +&{glUniformMatrix2dv QOpenGLFunctions_4_4_Compatibility::glUniformMatrix2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208c3b00 0xc8208c3c20 0xc8208c3d40 0xc8208c3e40] } +&{glUniformMatrix2fv QOpenGLFunctions_4_4_Compatibility::glUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208ae240 0xc8208ae560 0xc8208ae600 0xc8208ae760] } +&{glUniformMatrix2x3dv QOpenGLFunctions_4_4_Compatibility::glUniformMatrix2x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208aee60 0xc8208af020 0xc8208af340 0xc8208af420] } +&{glUniformMatrix2x3fv QOpenGLFunctions_4_4_Compatibility::glUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208afa20 0xc8208afb20 0xc8208afd80 0xc8208afee0] } +&{glUniformMatrix2x4dv QOpenGLFunctions_4_4_Compatibility::glUniformMatrix2x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82089c480 0xc82089c580 0xc82089c820 0xc82089cb40] } +&{glUniformMatrix2x4fv QOpenGLFunctions_4_4_Compatibility::glUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82089cf60 0xc82089d200 0xc82089d2e0 0xc82089d400] } +&{glUniformMatrix3dv QOpenGLFunctions_4_4_Compatibility::glUniformMatrix3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82089da00 0xc82089dba0 0xc82089dfc0 0xc82078c080] } +&{glUniformMatrix3fv QOpenGLFunctions_4_4_Compatibility::glUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82078c380 0xc82078c540 0xc82078c640 0xc82078c7e0] } +&{glUniformMatrix3x2dv QOpenGLFunctions_4_4_Compatibility::glUniformMatrix3x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82078cb20 0xc82078cc20 0xc82078cd20 0xc82078ce40] } +&{glUniformMatrix3x2fv QOpenGLFunctions_4_4_Compatibility::glUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82078d140 0xc82078d220 0xc82078d320 0xc82078d440] } +&{glUniformMatrix3x4dv QOpenGLFunctions_4_4_Compatibility::glUniformMatrix3x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82078d800 0xc82078d920 0xc82078da00 0xc82078dae0] } +&{glUniformMatrix3x4fv QOpenGLFunctions_4_4_Compatibility::glUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82078df40 0xc820888020 0xc8208881c0 0xc8208883c0] } +&{glUniformMatrix4dv QOpenGLFunctions_4_4_Compatibility::glUniformMatrix4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820888980 0xc820888b60 0xc820888ca0 0xc820888ea0] } +&{glUniformMatrix4fv QOpenGLFunctions_4_4_Compatibility::glUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820889540 0xc8208895e0 0xc8208897c0 0xc8208898c0] } +&{glUniformMatrix4x2dv QOpenGLFunctions_4_4_Compatibility::glUniformMatrix4x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820889ea0 0xc820e7e080 0xc820e7e100 0xc820e7e200] } +&{glUniformMatrix4x2fv QOpenGLFunctions_4_4_Compatibility::glUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e7e460 0xc820e7e500 0xc820e7e600 0xc820e7e680] } +&{glUniformMatrix4x3dv QOpenGLFunctions_4_4_Compatibility::glUniformMatrix4x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e7e920 0xc820e7ea20 0xc820e7eaa0 0xc820e7eba0] } +&{glUniformMatrix4x3fv QOpenGLFunctions_4_4_Compatibility::glUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e7ee00 0xc820e7eec0 0xc820e7efa0 0xc820e7f080] } +&{glUniformSubroutinesuiv QOpenGLFunctions_4_4_Compatibility::glUniformSubroutinesuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e7f320 0xc820e7f3c0 0xc820e7f460] } +&{glUnmapBuffer QOpenGLFunctions_4_4_Compatibility::glUnmapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false GLboolean [0xc820e7f640] } +&{glUseProgram QOpenGLFunctions_4_4_Compatibility::glUseProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e7f8a0] } +&{glUseProgramStages QOpenGLFunctions_4_4_Compatibility::glUseProgramStages commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e7fae0 0xc820e7fba0 0xc820e7fc40] } +&{glValidateProgram QOpenGLFunctions_4_4_Compatibility::glValidateProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e7ff20] } +&{glValidateProgramPipeline QOpenGLFunctions_4_4_Compatibility::glValidateProgramPipeline commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208765e0] } +&{glVertex2d QOpenGLFunctions_4_4_Compatibility::glVertex2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820876bc0 0xc820876e80] } +&{glVertex2dv QOpenGLFunctions_4_4_Compatibility::glVertex2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208773e0] } +&{glVertex2f QOpenGLFunctions_4_4_Compatibility::glVertex2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820877a40 0xc820877b80] } +&{glVertex2fv QOpenGLFunctions_4_4_Compatibility::glVertex2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82084c240] } +&{glVertex2i QOpenGLFunctions_4_4_Compatibility::glVertex2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82084c560 0xc82084c780] } +&{glVertex2iv QOpenGLFunctions_4_4_Compatibility::glVertex2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82084cc80] } +&{glVertex2s QOpenGLFunctions_4_4_Compatibility::glVertex2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82084cf20 0xc82084d1e0] } +&{glVertex2sv QOpenGLFunctions_4_4_Compatibility::glVertex2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82084d400] } +&{glVertex3d QOpenGLFunctions_4_4_Compatibility::glVertex3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82084d900 0xc82084daa0 0xc82084dc20] } +&{glVertex3dv QOpenGLFunctions_4_4_Compatibility::glVertex3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82084dfc0] } +&{glVertex3f QOpenGLFunctions_4_4_Compatibility::glVertex3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82077a340 0xc82077a3e0 0xc82077a540] } +&{glVertex3fv QOpenGLFunctions_4_4_Compatibility::glVertex3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82077a820] } +&{glVertex3i QOpenGLFunctions_4_4_Compatibility::glVertex3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82077ab60 0xc82077ac20 0xc82077ade0] } +&{glVertex3iv QOpenGLFunctions_4_4_Compatibility::glVertex3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82077b0a0] } +&{glVertex3s QOpenGLFunctions_4_4_Compatibility::glVertex3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82077b280 0xc82077b420 0xc82077b5a0] } +&{glVertex3sv QOpenGLFunctions_4_4_Compatibility::glVertex3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82077b840] } +&{glVertex4d QOpenGLFunctions_4_4_Compatibility::glVertex4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82077b9e0 0xc82077bbe0 0xc82077bcc0 0xc82077bd40] } +&{glVertex4dv QOpenGLFunctions_4_4_Compatibility::glVertex4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a54160] } +&{glVertex4f QOpenGLFunctions_4_4_Compatibility::glVertex4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a545a0 0xc820a54820 0xc820a548e0 0xc820a54aa0] } +&{glVertex4fv QOpenGLFunctions_4_4_Compatibility::glVertex4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a54e60] } +&{glVertex4i QOpenGLFunctions_4_4_Compatibility::glVertex4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a55200 0xc820a55380 0xc820a55600 0xc820a556c0] } +&{glVertex4iv QOpenGLFunctions_4_4_Compatibility::glVertex4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a55b80] } +&{glVertex4s QOpenGLFunctions_4_4_Compatibility::glVertex4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820a55ee0 0xc82083e080 0xc82083e160 0xc82083e2e0] } +&{glVertex4sv QOpenGLFunctions_4_4_Compatibility::glVertex4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82083e780] } +&{glVertexAttrib1d QOpenGLFunctions_4_4_Compatibility::glVertexAttrib1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82083eb00 0xc82083ec20] } +&{glVertexAttrib1dv QOpenGLFunctions_4_4_Compatibility::glVertexAttrib1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82083f100 0xc82083f1e0] } +&{glVertexAttrib1f QOpenGLFunctions_4_4_Compatibility::glVertexAttrib1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82083f520 0xc82083f660] } +&{glVertexAttrib1fv QOpenGLFunctions_4_4_Compatibility::glVertexAttrib1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82083fa80 0xc82083fc60] } +&{glVertexAttrib1s QOpenGLFunctions_4_4_Compatibility::glVertexAttrib1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82083ff60 0xc8207840e0] } +&{glVertexAttrib1sv QOpenGLFunctions_4_4_Compatibility::glVertexAttrib1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8207844e0 0xc8207845e0] } +&{glVertexAttrib2d QOpenGLFunctions_4_4_Compatibility::glVertexAttrib2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820784a20 0xc820784ba0 0xc820784ce0] } +&{glVertexAttrib2dv QOpenGLFunctions_4_4_Compatibility::glVertexAttrib2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820785280 0xc8207853a0] } +&{glVertexAttrib2f QOpenGLFunctions_4_4_Compatibility::glVertexAttrib2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820785860 0xc820785ac0 0xc820785ba0] } +&{glVertexAttrib2fv QOpenGLFunctions_4_4_Compatibility::glVertexAttrib2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208380a0 0xc820838180] } +&{glVertexAttrib2s QOpenGLFunctions_4_4_Compatibility::glVertexAttrib2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208385e0 0xc8208387e0 0xc820838a40] } +&{glVertexAttrib2sv QOpenGLFunctions_4_4_Compatibility::glVertexAttrib2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820839000 0xc820839100] } +&{glVertexAttrib3d QOpenGLFunctions_4_4_Compatibility::glVertexAttrib3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208396c0 0xc8208397a0 0xc8208398c0 0xc820839bc0] } +&{glVertexAttrib3dv QOpenGLFunctions_4_4_Compatibility::glVertexAttrib3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820822180 0xc820822300] } +&{glVertexAttrib3f QOpenGLFunctions_4_4_Compatibility::glVertexAttrib3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208226c0 0xc820822820 0xc8208228e0 0xc820822ac0] } +&{glVertexAttrib3fv QOpenGLFunctions_4_4_Compatibility::glVertexAttrib3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820822ee0 0xc820823060] } +&{glVertexAttrib3s QOpenGLFunctions_4_4_Compatibility::glVertexAttrib3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208234e0 0xc8208235c0 0xc820823740 0xc820823a80] } +&{glVertexAttrib3sv QOpenGLFunctions_4_4_Compatibility::glVertexAttrib3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820823fc0 0xc82080e0a0] } +&{glVertexAttrib4Nbv QOpenGLFunctions_4_4_Compatibility::glVertexAttrib4Nbv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82080e500 0xc82080e5c0] } +&{glVertexAttrib4Niv QOpenGLFunctions_4_4_Compatibility::glVertexAttrib4Niv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82080eae0 0xc82080ebc0] } +&{glVertexAttrib4Nsv QOpenGLFunctions_4_4_Compatibility::glVertexAttrib4Nsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82080efe0 0xc82080f100] } +&{glVertexAttrib4Nub QOpenGLFunctions_4_4_Compatibility::glVertexAttrib4Nub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82080f580 0xc82080f720 0xc82080f820 0xc82080f960 0xc82080fb60] } +&{glVertexAttrib4Nubv QOpenGLFunctions_4_4_Compatibility::glVertexAttrib4Nubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82080fe80 0xc82080ff80] } +&{glVertexAttrib4Nuiv QOpenGLFunctions_4_4_Compatibility::glVertexAttrib4Nuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208c63a0 0xc8208c64e0] } +&{glVertexAttrib4Nusv QOpenGLFunctions_4_4_Compatibility::glVertexAttrib4Nusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208c6980 0xc8208c6b60] } +&{glVertexAttrib4bv QOpenGLFunctions_4_4_Compatibility::glVertexAttrib4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208c6f60 0xc8208c7160] } +&{glVertexAttrib4d QOpenGLFunctions_4_4_Compatibility::glVertexAttrib4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208c74e0 0xc8208c7620 0xc8208c76c0 0xc8208c7900 0xc8208c7a60] } +&{glVertexAttrib4dv QOpenGLFunctions_4_4_Compatibility::glVertexAttrib4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8208c7ec0 0xc82080c120] } +&{glVertexAttrib4f QOpenGLFunctions_4_4_Compatibility::glVertexAttrib4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82080c4c0 0xc82080c5e0 0xc82080c720 0xc82080c940 0xc82080ca80] } +&{glVertexAttrib4fv QOpenGLFunctions_4_4_Compatibility::glVertexAttrib4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82080d040 0xc82080d240] } +&{glVertexAttrib4iv QOpenGLFunctions_4_4_Compatibility::glVertexAttrib4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82080d800 0xc82080d940] } +&{glVertexAttrib4s QOpenGLFunctions_4_4_Compatibility::glVertexAttrib4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82080dde0 0xc82080df80 0xc8207f8200 0xc8207f82e0 0xc8207f84a0] } +&{glVertexAttrib4sv QOpenGLFunctions_4_4_Compatibility::glVertexAttrib4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8207f88e0 0xc8207f8a20] } +&{glVertexAttrib4ubv QOpenGLFunctions_4_4_Compatibility::glVertexAttrib4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8207f8d80 0xc8207f8e00] } +&{glVertexAttrib4uiv QOpenGLFunctions_4_4_Compatibility::glVertexAttrib4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8207f92a0 0xc8207f9380] } +&{glVertexAttrib4usv QOpenGLFunctions_4_4_Compatibility::glVertexAttrib4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8207f97e0 0xc8207f9880] } +&{glVertexAttribBinding QOpenGLFunctions_4_4_Compatibility::glVertexAttribBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8207f9c40 0xc8207f9e00] } +&{glVertexAttribDivisor QOpenGLFunctions_4_4_Compatibility::glVertexAttribDivisor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8207bc2a0 0xc8207bc340] } +&{glVertexAttribFormat QOpenGLFunctions_4_4_Compatibility::glVertexAttribFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8207bc8a0 0xc8207bcb00 0xc8207bcc00 0xc8207bcdc0 0xc8207bd0a0] } +&{glVertexAttribI1i QOpenGLFunctions_4_4_Compatibility::glVertexAttribI1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8207bd620 0xc8207bd980] } +&{glVertexAttribI1iv QOpenGLFunctions_4_4_Compatibility::glVertexAttribI1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8207bdca0 0xc8207bddc0] } +&{glVertexAttribI1ui QOpenGLFunctions_4_4_Compatibility::glVertexAttribI1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8207a8420 0xc8207a86e0] } +&{glVertexAttribI1uiv QOpenGLFunctions_4_4_Compatibility::glVertexAttribI1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8207a90c0 0xc8207a91e0] } +&{glVertexAttribI2i QOpenGLFunctions_4_4_Compatibility::glVertexAttribI2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8207a98c0 0xc8207a9b00 0xc8207a9e40] } +&{glVertexAttribI2iv QOpenGLFunctions_4_4_Compatibility::glVertexAttribI2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820796380 0xc8207965e0] } +&{glVertexAttribI2ui QOpenGLFunctions_4_4_Compatibility::glVertexAttribI2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8207969c0 0xc820796ac0 0xc820796ca0] } +&{glVertexAttribI2uiv QOpenGLFunctions_4_4_Compatibility::glVertexAttribI2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8207972a0 0xc8207974c0] } +&{glVertexAttribI3i QOpenGLFunctions_4_4_Compatibility::glVertexAttribI3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820797ac0 0xc820797c40 0xc820797f80 0xc820b062e0] } +&{glVertexAttribI3iv QOpenGLFunctions_4_4_Compatibility::glVertexAttribI3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b06840 0xc820b06980] } +&{glVertexAttribI3ui QOpenGLFunctions_4_4_Compatibility::glVertexAttribI3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b06f40 0xc820b07060 0xc820b07300 0xc820b07440] } +&{glVertexAttribI3uiv QOpenGLFunctions_4_4_Compatibility::glVertexAttribI3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b078c0 0xc820b07a40] } +&{glVertexAttribI4bv QOpenGLFunctions_4_4_Compatibility::glVertexAttribI4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820b07e80 0xc820ae6000] } +&{glVertexAttribI4i QOpenGLFunctions_4_4_Compatibility::glVertexAttribI4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ae63a0 0xc820ae64c0 0xc820ae66c0 0xc820ae67c0 0xc820ae6980] } +&{glVertexAttribI4iv QOpenGLFunctions_4_4_Compatibility::glVertexAttribI4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ae6e60 0xc820ae6fa0] } +&{glVertexAttribI4sv QOpenGLFunctions_4_4_Compatibility::glVertexAttribI4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ae7420 0xc820ae74c0] } +&{glVertexAttribI4ubv QOpenGLFunctions_4_4_Compatibility::glVertexAttribI4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ae7940 0xc820ae7b20] } +&{glVertexAttribI4ui QOpenGLFunctions_4_4_Compatibility::glVertexAttribI4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820ae7f80 0xc820780060 0xc820780260 0xc820780320 0xc8207804e0] } +&{glVertexAttribI4uiv QOpenGLFunctions_4_4_Compatibility::glVertexAttribI4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820780a00 0xc820780b20] } +&{glVertexAttribI4usv QOpenGLFunctions_4_4_Compatibility::glVertexAttribI4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820780f80 0xc8207811c0] } +&{glVertexAttribIFormat QOpenGLFunctions_4_4_Compatibility::glVertexAttribIFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820781660 0xc8207817a0 0xc8207818a0 0xc820781a80] } +&{glVertexAttribIPointer QOpenGLFunctions_4_4_Compatibility::glVertexAttribIPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820768000 0xc8207680a0 0xc8207682a0 0xc820768420 0xc820768580] } +&{glVertexAttribL1d QOpenGLFunctions_4_4_Compatibility::glVertexAttribL1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8207688e0 0xc8207689e0] } +&{glVertexAttribL1dv QOpenGLFunctions_4_4_Compatibility::glVertexAttribL1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820768e00 0xc820768fe0] } +&{glVertexAttribL2d QOpenGLFunctions_4_4_Compatibility::glVertexAttribL2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820769320 0xc820769440 0xc8207695a0] } +&{glVertexAttribL2dv QOpenGLFunctions_4_4_Compatibility::glVertexAttribL2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820769940 0xc820769a40] } +&{glVertexAttribL3d QOpenGLFunctions_4_4_Compatibility::glVertexAttribL3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820769e40 0xc820769f20 0xc820758100 0xc820758220] } +&{glVertexAttribL3dv QOpenGLFunctions_4_4_Compatibility::glVertexAttribL3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820758820 0xc8207589e0] } +&{glVertexAttribL4d QOpenGLFunctions_4_4_Compatibility::glVertexAttribL4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820758f80 0xc820759200 0xc8207592e0 0xc8207594e0 0xc8207596e0] } +&{glVertexAttribL4dv QOpenGLFunctions_4_4_Compatibility::glVertexAttribL4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820759d40 0xc820759e00] } +&{glVertexAttribLFormat QOpenGLFunctions_4_4_Compatibility::glVertexAttribLFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209f23a0 0xc8209f2500 0xc8209f2640 0xc8209f2720] } +&{glVertexAttribLPointer QOpenGLFunctions_4_4_Compatibility::glVertexAttribLPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209f2b60 0xc8209f2ca0 0xc8209f2d80 0xc8209f2e80 0xc8209f3060] } +&{glVertexAttribP1ui QOpenGLFunctions_4_4_Compatibility::glVertexAttribP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209f3400 0xc8209f35a0 0xc8209f3660 0xc8209f3760] } +&{glVertexAttribP1uiv QOpenGLFunctions_4_4_Compatibility::glVertexAttribP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8209f3b40 0xc8209f3d20 0xc8209f3da0 0xc8209f3f20] } +&{glVertexAttribP2ui QOpenGLFunctions_4_4_Compatibility::glVertexAttribP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820740460 0xc8207406a0 0xc820740760 0xc820740800] } +&{glVertexAttribP2uiv QOpenGLFunctions_4_4_Compatibility::glVertexAttribP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820740d40 0xc820740fe0 0xc820741120 0xc8207411c0] } +&{glVertexAttribP3ui QOpenGLFunctions_4_4_Compatibility::glVertexAttribP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820741700 0xc820741820 0xc820741980 0xc820741bc0] } +&{glVertexAttribP3uiv QOpenGLFunctions_4_4_Compatibility::glVertexAttribP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82072c180 0xc82072c2e0 0xc82072c3c0 0xc82072c580] } +&{glVertexAttribP4ui QOpenGLFunctions_4_4_Compatibility::glVertexAttribP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82072ca40 0xc82072cb60 0xc82072cd00 0xc82072cea0] } +&{glVertexAttribP4uiv QOpenGLFunctions_4_4_Compatibility::glVertexAttribP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82072d3a0 0xc82072d480 0xc82072d600 0xc82072d820] } +&{glVertexAttribPointer QOpenGLFunctions_4_4_Compatibility::glVertexAttribPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82072dde0 0xc82072dfa0 0xc820e62060 0xc820e621e0 0xc820e62300 0xc820e623a0] } +&{glVertexBindingDivisor QOpenGLFunctions_4_4_Compatibility::glVertexBindingDivisor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e62760 0xc820e62820] } +&{glVertexP2ui QOpenGLFunctions_4_4_Compatibility::glVertexP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e62b00 0xc820e62bc0] } +&{glVertexP2uiv QOpenGLFunctions_4_4_Compatibility::glVertexP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e62e60 0xc820e62fa0] } +&{glVertexP3ui QOpenGLFunctions_4_4_Compatibility::glVertexP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e63260 0xc820e632e0] } +&{glVertexP3uiv QOpenGLFunctions_4_4_Compatibility::glVertexP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e635a0 0xc820e63640] } +&{glVertexP4ui QOpenGLFunctions_4_4_Compatibility::glVertexP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e63960 0xc820e63a20] } +&{glVertexP4uiv QOpenGLFunctions_4_4_Compatibility::glVertexP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e63c40 0xc820e63dc0] } +&{glVertexPointer QOpenGLFunctions_4_4_Compatibility::glVertexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820e63fe0 0xc8207162a0 0xc820716380 0xc8207164c0] } +&{glViewport QOpenGLFunctions_4_4_Compatibility::glViewport commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc820716820 0xc820716ac0 0xc820716c20 0xc820716d40] } +&{glViewportArrayv QOpenGLFunctions_4_4_Compatibility::glViewportArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8207170c0 0xc820717200 0xc8207173e0] } +&{glViewportIndexedf QOpenGLFunctions_4_4_Compatibility::glViewportIndexedf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8207178c0 0xc8207179e0 0xc820717ae0 0xc820717d20 0xc820717e20] } +&{glViewportIndexedfv QOpenGLFunctions_4_4_Compatibility::glViewportIndexedfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8206e8440 0xc8206e85c0] } +&{glWaitSync QOpenGLFunctions_4_4_Compatibility::glWaitSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8206e8940 0xc8206e8a00 0xc8206e8cc0] } +&{glWindowPos2d QOpenGLFunctions_4_4_Compatibility::glWindowPos2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8206e9020 0xc8206e9180] } +&{glWindowPos2dv QOpenGLFunctions_4_4_Compatibility::glWindowPos2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8206e9560] } +&{glWindowPos2f QOpenGLFunctions_4_4_Compatibility::glWindowPos2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8206e9960 0xc8206e9cc0] } +&{glWindowPos2fv QOpenGLFunctions_4_4_Compatibility::glWindowPos2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8206d6140] } +&{glWindowPos2i QOpenGLFunctions_4_4_Compatibility::glWindowPos2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8206d6540 0xc8206d6740] } +&{glWindowPos2iv QOpenGLFunctions_4_4_Compatibility::glWindowPos2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8206d6a20] } +&{glWindowPos2s QOpenGLFunctions_4_4_Compatibility::glWindowPos2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8206d6f00 0xc8206d7100] } +&{glWindowPos2sv QOpenGLFunctions_4_4_Compatibility::glWindowPos2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8206d7560] } +&{glWindowPos3d QOpenGLFunctions_4_4_Compatibility::glWindowPos3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8206d78e0 0xc8206d79c0 0xc8206d7c20] } +&{glWindowPos3dv QOpenGLFunctions_4_4_Compatibility::glWindowPos3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc8206d7f00] } +&{glWindowPos3f QOpenGLFunctions_4_4_Compatibility::glWindowPos3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82098c1e0 0xc82098c300 0xc82098c4a0] } +&{glWindowPos3fv QOpenGLFunctions_4_4_Compatibility::glWindowPos3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82098c760] } +&{glWindowPos3i QOpenGLFunctions_4_4_Compatibility::glWindowPos3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82098ca20 0xc82098cb80 0xc82098cca0] } +&{glWindowPos3iv QOpenGLFunctions_4_4_Compatibility::glWindowPos3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82098cfc0] } +&{glWindowPos3s QOpenGLFunctions_4_4_Compatibility::glWindowPos3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82098d2a0 0xc82098d3e0 0xc82098d4a0] } +&{glWindowPos3sv QOpenGLFunctions_4_4_Compatibility::glWindowPos3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_compatibility.h non plain false false void [0xc82098d7c0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions_4_4_Core.txt b/internal/binding/dump/QtGui/QOpenGLFunctions_4_4_Core.txt new file mode 100755 index 00000000..c5b6e589 --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions_4_4_Core.txt @@ -0,0 +1,547 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions_4_4_Core QOpenGLFunctions_4_4_Core::QOpenGLFunctions_4_4_Core commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.cpp non constructor false false [] } +&{initializeOpenGLFunctions QOpenGLFunctions_4_4_Core::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.cpp impure plain false false bool [] } +&{~QOpenGLFunctions_4_4_Core QOpenGLFunctions_4_4_Core::~QOpenGLFunctions_4_4_Core commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.cpp non destructor false false [] } +&{glActiveShaderProgram QOpenGLFunctions_4_4_Core::glActiveShaderProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8206bcd20 0xc8206bcec0] } +&{glActiveTexture QOpenGLFunctions_4_4_Core::glActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8206bd260] } +&{glAttachShader QOpenGLFunctions_4_4_Core::glAttachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8206bd600 0xc8206bd7a0] } +&{glBeginConditionalRender QOpenGLFunctions_4_4_Core::glBeginConditionalRender commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8206bdbe0 0xc8206bdd20] } +&{glBeginQuery QOpenGLFunctions_4_4_Core::glBeginQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8206a60c0 0xc8206a62a0] } +&{glBeginQueryIndexed QOpenGLFunctions_4_4_Core::glBeginQueryIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8206a66e0 0xc8206a68e0 0xc8206a6ae0] } +&{glBeginTransformFeedback QOpenGLFunctions_4_4_Core::glBeginTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8206a6f60] } +&{glBindAttribLocation QOpenGLFunctions_4_4_Core::glBindAttribLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8206a7560 0xc8206a76c0 0xc8206a7940] } +&{glBindBuffer QOpenGLFunctions_4_4_Core::glBindBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8206a7e40 0xc8206a7fc0] } +&{glBindBufferBase QOpenGLFunctions_4_4_Core::glBindBufferBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82068c360 0xc82068c540 0xc82068c680] } +&{glBindBufferRange QOpenGLFunctions_4_4_Core::glBindBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82068cc00 0xc82068cdc0 0xc82068cf40 0xc82068cfe0 0xc82068d2a0] } +&{glBindBuffersBase QOpenGLFunctions_4_4_Core::glBindBuffersBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82068d7c0 0xc82068d8a0 0xc82068daa0 0xc82068dc60] } +&{glBindBuffersRange QOpenGLFunctions_4_4_Core::glBindBuffersRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc826a5a0c0 0xc826a5a180 0xc826a5a2a0 0xc826a5a3c0 0xc826a5a480 0xc826a5a600] } +&{glBindFragDataLocation QOpenGLFunctions_4_4_Core::glBindFragDataLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc826a5aa80 0xc826a5ab20 0xc826a5ac60] } +&{glBindFragDataLocationIndexed QOpenGLFunctions_4_4_Core::glBindFragDataLocationIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc826a5afc0 0xc826a5b180 0xc826a5b220 0xc826a5b300] } +&{glBindFramebuffer QOpenGLFunctions_4_4_Core::glBindFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc826a5b6c0 0xc826a5b7c0] } +&{glBindImageTexture QOpenGLFunctions_4_4_Core::glBindImageTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc826a5bb80 0xc826a5bcc0 0xc826a5bde0 0xc826a5bf20 0xc826a5bfe0 0xc820aea0c0 0xc820aea2e0] } +&{glBindImageTextures QOpenGLFunctions_4_4_Core::glBindImageTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820aea7c0 0xc820aea8c0 0xc820aeaa20] } +&{glBindProgramPipeline QOpenGLFunctions_4_4_Core::glBindProgramPipeline commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820aeb060] } +&{glBindRenderbuffer QOpenGLFunctions_4_4_Core::glBindRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820aeb520 0xc820aeb660] } +&{glBindSampler QOpenGLFunctions_4_4_Core::glBindSampler commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820aebb20 0xc820aebc60] } +&{glBindSamplers QOpenGLFunctions_4_4_Core::glBindSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8206700c0 0xc820670160 0xc820670420] } +&{glBindTexture QOpenGLFunctions_4_4_Core::glBindTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820670960 0xc820670aa0] } +&{glBindTextures QOpenGLFunctions_4_4_Core::glBindTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820670fa0 0xc820671160 0xc8206713c0] } +&{glBindTransformFeedback QOpenGLFunctions_4_4_Core::glBindTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8206718c0 0xc820671b60] } +&{glBindVertexArray QOpenGLFunctions_4_4_Core::glBindVertexArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82065a0c0] } +&{glBindVertexBuffer QOpenGLFunctions_4_4_Core::glBindVertexBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82065a840 0xc82065ab00 0xc82065ac60 0xc82065aec0] } +&{glBindVertexBuffers QOpenGLFunctions_4_4_Core::glBindVertexBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82065b680 0xc82065b7a0 0xc82065b940 0xc82065bac0 0xc82065bbe0] } +&{glBlendColor QOpenGLFunctions_4_4_Core::glBlendColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8208e4120 0xc8208e4200 0xc8208e4380 0xc8208e4460] } +&{glBlendEquation QOpenGLFunctions_4_4_Core::glBlendEquation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8208e4760] } +&{glBlendEquationSeparate QOpenGLFunctions_4_4_Core::glBlendEquationSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8208e4be0 0xc8208e4ce0] } +&{glBlendEquationSeparatei QOpenGLFunctions_4_4_Core::glBlendEquationSeparatei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8208e5120 0xc8208e5320 0xc8208e53c0] } +&{glBlendEquationi QOpenGLFunctions_4_4_Core::glBlendEquationi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8208e5720 0xc8208e5860] } +&{glBlendFunc QOpenGLFunctions_4_4_Core::glBlendFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8208e5b20 0xc8208e5bc0] } +&{glBlendFuncSeparate QOpenGLFunctions_4_4_Core::glBlendFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8208e5fc0 0xc820642320 0xc8206424a0 0xc8206425e0] } +&{glBlendFuncSeparatei QOpenGLFunctions_4_4_Core::glBlendFuncSeparatei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820642c40 0xc820642e00 0xc8206430e0 0xc820643220 0xc8206435a0] } +&{glBlendFunci QOpenGLFunctions_4_4_Core::glBlendFunci commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820643940 0xc820643a80 0xc820643b40] } +&{glBlitFramebuffer QOpenGLFunctions_4_4_Core::glBlitFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8206302e0 0xc8206305a0 0xc820630660 0xc820630860 0xc820630a60 0xc820630ce0 0xc820630de0 0xc820630fc0 0xc820631140 0xc8206312a0] } +&{glBufferData QOpenGLFunctions_4_4_Core::glBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8206317a0 0xc820631a20 0xc820631c80 0xc820631d40] } +&{glBufferStorage QOpenGLFunctions_4_4_Core::glBufferStorage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8206063a0 0xc820606520 0xc820606780 0xc820606a80] } +&{glBufferSubData QOpenGLFunctions_4_4_Core::glBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820606f00 0xc820606fc0 0xc8206071a0 0xc820607360] } +&{glCheckFramebufferStatus QOpenGLFunctions_4_4_Core::glCheckFramebufferStatus commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLenum [0xc820607a20] } +&{glClampColor QOpenGLFunctions_4_4_Core::glClampColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820607e20 0xc8205f0040] } +&{glClear QOpenGLFunctions_4_4_Core::glClear commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8205f0540] } +&{glClearBufferData QOpenGLFunctions_4_4_Core::glClearBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8205f0b60 0xc8205f0d60 0xc8205f0ec0 0xc8205f10a0 0xc8205f1340] } +&{glClearBufferSubData QOpenGLFunctions_4_4_Core::glClearBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8205f1b80 0xc8205f1cc0 0xc8205e0040 0xc8205e0140 0xc8205e02c0 0xc8205e0380 0xc8205e05c0] } +&{glClearBufferfi QOpenGLFunctions_4_4_Core::glClearBufferfi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8205e0aa0 0xc8205e0ca0 0xc8205e0f00 0xc8205e1120] } +&{glClearBufferfv QOpenGLFunctions_4_4_Core::glClearBufferfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8205e1440 0xc8205e15e0 0xc8205e1740] } +&{glClearBufferiv QOpenGLFunctions_4_4_Core::glClearBufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8205e1ca0 0xc8205e1e00 0xc8205e1fe0] } +&{glClearBufferuiv QOpenGLFunctions_4_4_Core::glClearBufferuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8205ce360 0xc8205ce480 0xc8205ce640] } +&{glClearColor QOpenGLFunctions_4_4_Core::glClearColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8205ce940 0xc8205cea40 0xc8205ceae0 0xc8205cec80] } +&{glClearDepth QOpenGLFunctions_4_4_Core::glClearDepth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8205cef20] } +&{glClearDepthf QOpenGLFunctions_4_4_Core::glClearDepthf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8205cf1a0] } +&{glClearStencil QOpenGLFunctions_4_4_Core::glClearStencil commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8205cf420] } +&{glClearTexImage QOpenGLFunctions_4_4_Core::glClearTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8205cf620 0xc8205cf720 0xc8205cf7a0 0xc8205cf860 0xc8205cf9a0] } +&{glClearTexSubImage QOpenGLFunctions_4_4_Core::glClearTexSubImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8205cfcc0 0xc8205cfd40 0xc8205cfe60 0xc8205cff20 0xc8204a0060 0xc8204a0180 0xc8204a0220 0xc8204a02e0 0xc8204a0440 0xc8204a0580 0xc8204a0620] } +&{glClientWaitSync QOpenGLFunctions_4_4_Core::glClientWaitSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLenum [0xc8204a08e0 0xc8204a09c0 0xc8204a0a80] } +&{glColorMask QOpenGLFunctions_4_4_Core::glColorMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204a0d40 0xc8204a0e20 0xc8204a0f40 0xc8204a0fe0] } +&{glColorMaski QOpenGLFunctions_4_4_Core::glColorMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204a12e0 0xc8204a13e0 0xc8204a1520 0xc8204a15a0 0xc8204a16c0] } +&{glCompileShader QOpenGLFunctions_4_4_Core::glCompileShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204a1b40] } +&{glCompressedTexImage1D QOpenGLFunctions_4_4_Core::glCompressedTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204a1f20 0xc8205c6160 0xc8205c6240 0xc8205c6400 0xc8205c66a0 0xc8205c6880 0xc8205c6980] } +&{glCompressedTexImage2D QOpenGLFunctions_4_4_Core::glCompressedTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8205c6ea0 0xc8205c7100 0xc8205c7360 0xc8205c74a0 0xc8205c7740 0xc8205c7860 0xc8205c79e0 0xc8205c7d80] } +&{glCompressedTexImage3D QOpenGLFunctions_4_4_Core::glCompressedTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8205ac340 0xc8205ac4c0 0xc8205ac600 0xc8205ac900 0xc8205acaa0 0xc8205acb80 0xc8205ace20 0xc8205acf00 0xc8205ad000] } +&{glCompressedTexSubImage1D QOpenGLFunctions_4_4_Core::glCompressedTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8205ad4e0 0xc8205ad5c0 0xc8205ad680 0xc8205ad7c0 0xc8205ad9c0 0xc8205ada80 0xc8205adc20] } +&{glCompressedTexSubImage2D QOpenGLFunctions_4_4_Core::glCompressedTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82059a160 0xc82059a320 0xc82059a3c0 0xc82059a520 0xc82059a7a0 0xc82059a840 0xc82059aa40 0xc82059ac20 0xc82059adc0] } +&{glCompressedTexSubImage3D QOpenGLFunctions_4_4_Core::glCompressedTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82059b3c0 0xc82059b5c0 0xc82059b720 0xc82059b7e0 0xc82059b9c0 0xc82059bb20 0xc82059bc80 0xc82059bee0 0xc8205860e0 0xc820586220 0xc820586420] } +&{glCopyBufferSubData QOpenGLFunctions_4_4_Core::glCopyBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820586aa0 0xc820586bc0 0xc820586d60 0xc820587000 0xc8205871e0] } +&{glCopyImageSubData QOpenGLFunctions_4_4_Core::glCopyImageSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8205876c0 0xc8205877e0 0xc8205878c0 0xc820587ac0 0xc820587c80 0xc820587e40 0xc820574080 0xc820574240 0xc8205743a0 0xc8205744a0 0xc8205746c0 0xc820574760 0xc820574800 0xc820574b00 0xc820574b80] } +&{glCopyTexImage1D QOpenGLFunctions_4_4_Core::glCopyTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820575020 0xc820575120 0xc820575200 0xc820575420 0xc820575560 0xc8205756c0 0xc820575880] } +&{glCopyTexImage2D QOpenGLFunctions_4_4_Core::glCopyTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820575c40 0xc820575d60 0xc820575ec0 0xc82055e000 0xc82055e1a0 0xc82055e220 0xc82055e3c0 0xc82055e4c0] } +&{glCopyTexSubImage1D QOpenGLFunctions_4_4_Core::glCopyTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82055e8c0 0xc82055ea80 0xc82055ebe0 0xc82055ed60 0xc82055eea0 0xc82055f120] } +&{glCopyTexSubImage2D QOpenGLFunctions_4_4_Core::glCopyTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82055f720 0xc82055f800 0xc82055f900 0xc82055fcc0 0xc82055fe00 0xc82055ff20 0xc820548140 0xc8205482e0] } +&{glCopyTexSubImage3D QOpenGLFunctions_4_4_Core::glCopyTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820548940 0xc820548bc0 0xc820548d60 0xc820548ea0 0xc820549120 0xc8205492a0 0xc820549380 0xc8205494c0 0xc8205497a0] } +&{glCreateProgram QOpenGLFunctions_4_4_Core::glCreateProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLuint [] } +&{glCreateShader QOpenGLFunctions_4_4_Core::glCreateShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLuint [0xc820549cc0] } +&{glCreateShaderProgramv QOpenGLFunctions_4_4_Core::glCreateShaderProgramv commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLuint [0xc820514340 0xc820514560 0xc820514a80] } +&{glCullFace QOpenGLFunctions_4_4_Core::glCullFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8205152c0] } +&{glDebugMessageCallback QOpenGLFunctions_4_4_Core::glDebugMessageCallback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820515a20 0xc820515ce0] } +&{glDebugMessageControl QOpenGLFunctions_4_4_Core::glDebugMessageControl commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820504300 0xc8205046c0 0xc820504880 0xc820504940 0xc820504ce0 0xc820504e40] } +&{glDebugMessageInsert QOpenGLFunctions_4_4_Core::glDebugMessageInsert commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820505280 0xc8205053c0 0xc820505520 0xc820505680 0xc8205057a0 0xc8205058e0] } +&{glDeleteBuffers QOpenGLFunctions_4_4_Core::glDeleteBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820505be0 0xc820505cc0] } +&{glDeleteFramebuffers QOpenGLFunctions_4_4_Core::glDeleteFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204f41e0 0xc8204f4300] } +&{glDeleteProgram QOpenGLFunctions_4_4_Core::glDeleteProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204f46e0] } +&{glDeleteProgramPipelines QOpenGLFunctions_4_4_Core::glDeleteProgramPipelines commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204f4bc0 0xc8204f4d20] } +&{glDeleteQueries QOpenGLFunctions_4_4_Core::glDeleteQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204f5100 0xc8204f5240] } +&{glDeleteRenderbuffers QOpenGLFunctions_4_4_Core::glDeleteRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204f57c0 0xc8204f5940] } +&{glDeleteSamplers QOpenGLFunctions_4_4_Core::glDeleteSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204f5dc0 0xc8204f5f40] } +&{glDeleteShader QOpenGLFunctions_4_4_Core::glDeleteShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204e4620] } +&{glDeleteSync QOpenGLFunctions_4_4_Core::glDeleteSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204e4d20] } +&{glDeleteTextures QOpenGLFunctions_4_4_Core::glDeleteTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204e5320 0xc8204e53e0] } +&{glDeleteTransformFeedbacks QOpenGLFunctions_4_4_Core::glDeleteTransformFeedbacks commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204e5be0 0xc8204e5dc0] } +&{glDeleteVertexArrays QOpenGLFunctions_4_4_Core::glDeleteVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204ce3a0 0xc8204ce520] } +&{glDepthFunc QOpenGLFunctions_4_4_Core::glDepthFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204cea20] } +&{glDepthMask QOpenGLFunctions_4_4_Core::glDepthMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204ceea0] } +&{glDepthRange QOpenGLFunctions_4_4_Core::glDepthRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204cf340 0xc8204cf4a0] } +&{glDepthRangeArrayv QOpenGLFunctions_4_4_Core::glDepthRangeArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204cf8a0 0xc8204cfa60 0xc8204cfb60] } +&{glDepthRangeIndexed QOpenGLFunctions_4_4_Core::glDepthRangeIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204cffa0 0xc82093c1c0 0xc82093c240] } +&{glDepthRangef QOpenGLFunctions_4_4_Core::glDepthRangef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82093c4e0 0xc82093c580] } +&{glDetachShader QOpenGLFunctions_4_4_Core::glDetachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82093c860 0xc82093c920] } +&{glDisable QOpenGLFunctions_4_4_Core::glDisable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82093cc80] } +&{glDisableVertexAttribArray QOpenGLFunctions_4_4_Core::glDisableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82093d060] } +&{glDisablei QOpenGLFunctions_4_4_Core::glDisablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82093d3c0 0xc82093d460] } +&{glDispatchCompute QOpenGLFunctions_4_4_Core::glDispatchCompute commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82093d920 0xc82093daa0 0xc82093db40] } +&{glDispatchComputeIndirect QOpenGLFunctions_4_4_Core::glDispatchComputeIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82093df40] } +&{glDrawArrays QOpenGLFunctions_4_4_Core::glDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204be400 0xc8204be660 0xc8204be780] } +&{glDrawArraysIndirect QOpenGLFunctions_4_4_Core::glDrawArraysIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204bec80 0xc8204beea0] } +&{glDrawArraysInstanced QOpenGLFunctions_4_4_Core::glDrawArraysInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204bf640 0xc8204bf880 0xc8204bf9a0 0xc8204bfc60] } +&{glDrawArraysInstancedBaseInstance QOpenGLFunctions_4_4_Core::glDrawArraysInstancedBaseInstance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204bffe0 0xc8204a81c0 0xc8204a8300 0xc8204a83c0 0xc8204a8620] } +&{glDrawBuffer QOpenGLFunctions_4_4_Core::glDrawBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204a89c0] } +&{glDrawBuffers QOpenGLFunctions_4_4_Core::glDrawBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204a8d00 0xc8204a8ea0] } +&{glDrawElements QOpenGLFunctions_4_4_Core::glDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204a9240 0xc8204a9360 0xc8204a9480 0xc8204a9640] } +&{glDrawElementsBaseVertex QOpenGLFunctions_4_4_Core::glDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204a9c80 0xc8204a9da0 0xc8204a9f20 0xc820614060 0xc820614120] } +&{glDrawElementsIndirect QOpenGLFunctions_4_4_Core::glDrawElementsIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820614400 0xc820614500 0xc8206145a0] } +&{glDrawElementsInstanced QOpenGLFunctions_4_4_Core::glDrawElementsInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820614860 0xc820614940 0xc820614a60 0xc820614ae0 0xc820614c20] } +&{glDrawElementsInstancedBaseInstance QOpenGLFunctions_4_4_Core::glDrawElementsInstancedBaseInstance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820614de0 0xc820614f40 0xc820614fe0 0xc820615060 0xc8206151c0 0xc820615280] } +&{glDrawElementsInstancedBaseVertex QOpenGLFunctions_4_4_Core::glDrawElementsInstancedBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8206154c0 0xc8206155c0 0xc820615640 0xc820615720 0xc820615860 0xc8206158e0] } +&{glDrawElementsInstancedBaseVertexBaseInstance QOpenGLFunctions_4_4_Core::glDrawElementsInstancedBaseVertexBaseInstance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820615b40 0xc820615bc0 0xc820615d20 0xc820615dc0 0xc820615ee0 0xc820615fc0 0xc8204840a0] } +&{glDrawRangeElements QOpenGLFunctions_4_4_Core::glDrawRangeElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204846c0 0xc8204848c0 0xc820484a60 0xc820484ba0 0xc820484e80 0xc820484f40] } +&{glDrawRangeElementsBaseVertex QOpenGLFunctions_4_4_Core::glDrawRangeElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820485440 0xc8204855c0 0xc8204856a0 0xc820485760 0xc8204858e0 0xc8204859c0 0xc820485c00] } +&{glDrawTransformFeedback QOpenGLFunctions_4_4_Core::glDrawTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204782c0 0xc820478480] } +&{glDrawTransformFeedbackInstanced QOpenGLFunctions_4_4_Core::glDrawTransformFeedbackInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820478d00 0xc820478ec0 0xc820478fe0] } +&{glDrawTransformFeedbackStream QOpenGLFunctions_4_4_Core::glDrawTransformFeedbackStream commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820479600 0xc8204797e0 0xc8204798c0] } +&{glDrawTransformFeedbackStreamInstanced QOpenGLFunctions_4_4_Core::glDrawTransformFeedbackStreamInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820479d80 0xc82046a0c0 0xc82046a1e0 0xc82046a2a0] } +&{glEnable QOpenGLFunctions_4_4_Core::glEnable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82046a700] } +&{glEnableVertexAttribArray QOpenGLFunctions_4_4_Core::glEnableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82046abc0] } +&{glEnablei QOpenGLFunctions_4_4_Core::glEnablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82046aea0 0xc82046b080] } +&{glEndConditionalRender QOpenGLFunctions_4_4_Core::glEndConditionalRender commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [] } +&{glEndQuery QOpenGLFunctions_4_4_Core::glEndQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82046b780] } +&{glEndQueryIndexed QOpenGLFunctions_4_4_Core::glEndQueryIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82046bc00 0xc82046be00] } +&{glEndTransformFeedback QOpenGLFunctions_4_4_Core::glEndTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [] } +&{glFenceSync QOpenGLFunctions_4_4_Core::glFenceSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLsync [0xc82045a260 0xc82045a320] } +&{glFinish QOpenGLFunctions_4_4_Core::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [] } +&{glFlush QOpenGLFunctions_4_4_Core::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [] } +&{glFlushMappedBufferRange QOpenGLFunctions_4_4_Core::glFlushMappedBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82045a760 0xc82045a820 0xc82045a900] } +&{glFramebufferParameteri QOpenGLFunctions_4_4_Core::glFramebufferParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82045abc0 0xc82045ac60 0xc82045ad00] } +&{glFramebufferRenderbuffer QOpenGLFunctions_4_4_Core::glFramebufferRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82045b040 0xc82045b100 0xc82045b1a0 0xc82045b320] } +&{glFramebufferTexture QOpenGLFunctions_4_4_Core::glFramebufferTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82045b5e0 0xc82045b6a0 0xc82045b7a0 0xc82045b840] } +&{glFramebufferTexture1D QOpenGLFunctions_4_4_Core::glFramebufferTexture1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82045bb20 0xc82045bbe0 0xc82045bc80 0xc82045bda0 0xc82045be80] } +&{glFramebufferTexture2D QOpenGLFunctions_4_4_Core::glFramebufferTexture2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820458240 0xc820458540 0xc820458680 0xc8204587e0 0xc820458ac0] } +&{glFramebufferTexture3D QOpenGLFunctions_4_4_Core::glFramebufferTexture3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820459000 0xc820459280 0xc820459420 0xc8204594e0 0xc820459760 0xc820459820] } +&{glFramebufferTextureLayer QOpenGLFunctions_4_4_Core::glFramebufferTextureLayer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820459ca0 0xc820459e20 0xc820459fa0 0xc82044a160 0xc82044a360] } +&{glFrontFace QOpenGLFunctions_4_4_Core::glFrontFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82044a780] } +&{glGenBuffers QOpenGLFunctions_4_4_Core::glGenBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82044ac00 0xc82044ace0] } +&{glGenFramebuffers QOpenGLFunctions_4_4_Core::glGenFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82044b360 0xc82044b520] } +&{glGenProgramPipelines QOpenGLFunctions_4_4_Core::glGenProgramPipelines commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82044bb00 0xc82044bbe0] } +&{glGenQueries QOpenGLFunctions_4_4_Core::glGenQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82044bfa0 0xc820a40080] } +&{glGenRenderbuffers QOpenGLFunctions_4_4_Core::glGenRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820a403a0 0xc820a40460] } +&{glGenSamplers QOpenGLFunctions_4_4_Core::glGenSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820a40680 0xc820a40720] } +&{glGenTextures QOpenGLFunctions_4_4_Core::glGenTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820a40960 0xc820a40a00] } +&{glGenTransformFeedbacks QOpenGLFunctions_4_4_Core::glGenTransformFeedbacks commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820a40d20 0xc820a40de0] } +&{glGenVertexArrays QOpenGLFunctions_4_4_Core::glGenVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820a41080 0xc820a41100] } +&{glGenerateMipmap QOpenGLFunctions_4_4_Core::glGenerateMipmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820a41360] } +&{glGetActiveAtomicCounterBufferiv QOpenGLFunctions_4_4_Core::glGetActiveAtomicCounterBufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820a41680 0xc820a41700 0xc820a417c0 0xc820a418e0] } +&{glGetActiveAttrib QOpenGLFunctions_4_4_Core::glGetActiveAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820a41b80 0xc820a41c40 0xc820a41d60 0xc820a41de0 0xc820a41f40 0xc820a41fe0 0xc820a4c0e0] } +&{glGetActiveSubroutineName QOpenGLFunctions_4_4_Core::glGetActiveSubroutineName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820a4c4c0 0xc820a4c5e0 0xc820a4c680 0xc820a4c880 0xc820a4c960 0xc820a4caa0] } +&{glGetActiveSubroutineUniformName QOpenGLFunctions_4_4_Core::glGetActiveSubroutineUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820a4cf40 0xc820a4d020 0xc820a4d160 0xc820a4d2a0 0xc820a4d420 0xc820a4d520] } +&{glGetActiveSubroutineUniformiv QOpenGLFunctions_4_4_Core::glGetActiveSubroutineUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820a4d9a0 0xc820a4daa0 0xc820a4dc20 0xc820a4dd40 0xc820a4de80] } +&{glGetActiveUniform QOpenGLFunctions_4_4_Core::glGetActiveUniform commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820410440 0xc8204104e0 0xc8204106c0 0xc8204108e0 0xc820410a60 0xc820410b20 0xc820410d80] } +&{glGetActiveUniformBlockName QOpenGLFunctions_4_4_Core::glGetActiveUniformBlockName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820411380 0xc8204114c0 0xc8204117c0 0xc820411980 0xc820411c20] } +&{glGetActiveUniformBlockiv QOpenGLFunctions_4_4_Core::glGetActiveUniformBlockiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820402160 0xc820402320 0xc8204025c0 0xc820402660] } +&{glGetActiveUniformName QOpenGLFunctions_4_4_Core::glGetActiveUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820402ba0 0xc820402d60 0xc820402e80 0xc820402fc0 0xc820403180] } +&{glGetActiveUniformsiv QOpenGLFunctions_4_4_Core::glGetActiveUniformsiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820403660 0xc820403720 0xc8204038a0 0xc8204039c0 0xc820403c80] } +&{glGetAttachedShaders QOpenGLFunctions_4_4_Core::glGetAttachedShaders commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820546120 0xc8205461c0 0xc820546260 0xc820546380] } +&{glGetAttribLocation QOpenGLFunctions_4_4_Core::glGetAttribLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLint [0xc820546640 0xc8205466e0] } +&{glGetBooleani_v QOpenGLFunctions_4_4_Core::glGetBooleani_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820546920 0xc820546a20 0xc820546ac0] } +&{glGetBooleanv QOpenGLFunctions_4_4_Core::glGetBooleanv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820546d00 0xc820546d80] } +&{glGetBufferParameteri64v QOpenGLFunctions_4_4_Core::glGetBufferParameteri64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820547080 0xc820547160 0xc820547200] } +&{glGetBufferParameteriv QOpenGLFunctions_4_4_Core::glGetBufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8205474e0 0xc8205475a0 0xc820547640] } +&{glGetBufferPointerv QOpenGLFunctions_4_4_Core::glGetBufferPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8205478e0 0xc820547a20 0xc820547ac0] } +&{glGetBufferSubData QOpenGLFunctions_4_4_Core::glGetBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820547d80 0xc820547e80 0xc820547f40 0xc820547fc0] } +&{glGetCompressedTexImage QOpenGLFunctions_4_4_Core::glGetCompressedTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204c8480 0xc8204c8620 0xc8204c86c0] } +&{glGetDebugMessageLog QOpenGLFunctions_4_4_Core::glGetDebugMessageLog commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLuint [0xc8204c8ba0 0xc8204c8d20 0xc8204c8ea0 0xc8204c9020 0xc8204c9120 0xc8204c92e0 0xc8204c9440 0xc8204c9600] } +&{glGetDoublei_v QOpenGLFunctions_4_4_Core::glGetDoublei_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204c98e0 0xc8204c9a00 0xc8204c9ae0] } +&{glGetDoublev QOpenGLFunctions_4_4_Core::glGetDoublev commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204c9da0 0xc8204c9e80] } +&{glGetError QOpenGLFunctions_4_4_Core::glGetError commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLenum [] } +&{glGetFloati_v QOpenGLFunctions_4_4_Core::glGetFloati_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8203ec360 0xc8203ec4a0 0xc8203ec5c0] } +&{glGetFloatv QOpenGLFunctions_4_4_Core::glGetFloatv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8203eca60 0xc8203ecbc0] } +&{glGetFragDataIndex QOpenGLFunctions_4_4_Core::glGetFragDataIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLint [0xc8203ecfc0 0xc8203ed0c0] } +&{glGetFragDataLocation QOpenGLFunctions_4_4_Core::glGetFragDataLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLint [0xc8203ed520 0xc8203ed640] } +&{glGetFramebufferAttachmentParameteriv QOpenGLFunctions_4_4_Core::glGetFramebufferAttachmentParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8203ed980 0xc8203eda80 0xc8203edc60 0xc8203edd00] } +&{glGetFramebufferParameteriv QOpenGLFunctions_4_4_Core::glGetFramebufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8203da180 0xc8203da2e0 0xc8203da420] } +&{glGetInteger64i_v QOpenGLFunctions_4_4_Core::glGetInteger64i_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8203da9e0 0xc8203dac00 0xc8203dad40] } +&{glGetInteger64v QOpenGLFunctions_4_4_Core::glGetInteger64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8203db1e0 0xc8203db380] } +&{glGetIntegeri_v QOpenGLFunctions_4_4_Core::glGetIntegeri_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8203dba60 0xc8203dbc00 0xc8203dbda0] } +&{glGetIntegerv QOpenGLFunctions_4_4_Core::glGetIntegerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8203ae260 0xc8203ae460] } +&{glGetInternalformati64v QOpenGLFunctions_4_4_Core::glGetInternalformati64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8203ae980 0xc8203aeac0 0xc8203aec00 0xc8203aed40 0xc8203aeec0] } +&{glGetInternalformativ QOpenGLFunctions_4_4_Core::glGetInternalformativ commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8203af280 0xc8203af380 0xc8203af4c0 0xc8203af5c0 0xc8203af6c0] } +&{glGetMultisamplefv QOpenGLFunctions_4_4_Core::glGetMultisamplefv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8203afa20 0xc8203afae0 0xc8203afba0] } +&{glGetObjectLabel QOpenGLFunctions_4_4_Core::glGetObjectLabel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8203afdc0 0xc8203afee0 0xc8203a8000 0xc8203a80c0 0xc8203a81a0] } +&{glGetObjectPtrLabel QOpenGLFunctions_4_4_Core::glGetObjectPtrLabel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8203a84e0 0xc8203a8580 0xc8203a8600 0xc8203a8740] } +&{glGetProgramBinary QOpenGLFunctions_4_4_Core::glGetProgramBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8203a89e0 0xc8203a8ac0 0xc8203a8be0 0xc8203a8c60 0xc8203a8da0] } +&{glGetProgramInfoLog QOpenGLFunctions_4_4_Core::glGetProgramInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8203a9060 0xc8203a9140 0xc8203a9240 0xc8203a92e0] } +&{glGetProgramInterfaceiv QOpenGLFunctions_4_4_Core::glGetProgramInterfaceiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8203a95c0 0xc8203a9680 0xc8203a9760 0xc8203a97e0] } +&{glGetProgramPipelineInfoLog QOpenGLFunctions_4_4_Core::glGetProgramPipelineInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8203a9ae0 0xc8203a9be0 0xc8203a9c80 0xc8203a9da0] } +&{glGetProgramPipelineiv QOpenGLFunctions_4_4_Core::glGetProgramPipelineiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82039a080 0xc82039a1c0 0xc82039a420] } +&{glGetProgramResourceIndex QOpenGLFunctions_4_4_Core::glGetProgramResourceIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLuint [0xc82039a900 0xc82039aa20 0xc82039ae20] } +&{glGetProgramResourceLocation QOpenGLFunctions_4_4_Core::glGetProgramResourceLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLint [0xc82039b4a0 0xc82039b5e0 0xc82039b8c0] } +&{glGetProgramResourceLocationIndex QOpenGLFunctions_4_4_Core::glGetProgramResourceLocationIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLint [0xc82039bd80 0xc82039bf00 0xc820386040] } +&{glGetProgramResourceName QOpenGLFunctions_4_4_Core::glGetProgramResourceName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820386360 0xc820386400 0xc820386480 0xc8203865a0 0xc820386660 0xc820386780] } +&{glGetProgramResourceiv QOpenGLFunctions_4_4_Core::glGetProgramResourceiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820386a20 0xc820386b00 0xc820386be0 0xc820386c80 0xc820386d60 0xc820386ea0 0xc820386f40 0xc820386fe0] } +&{glGetProgramStageiv QOpenGLFunctions_4_4_Core::glGetProgramStageiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820387300 0xc8203873c0 0xc820387440 0xc820387560] } +&{glGetProgramiv QOpenGLFunctions_4_4_Core::glGetProgramiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8203877a0 0xc820387840 0xc8203878c0] } +&{glGetQueryIndexediv QOpenGLFunctions_4_4_Core::glGetQueryIndexediv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820387be0 0xc820387cc0 0xc820387d40 0xc820387e40] } +&{glGetQueryObjecti64v QOpenGLFunctions_4_4_Core::glGetQueryObjecti64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8203841a0 0xc8203842e0 0xc8203843c0] } +&{glGetQueryObjectiv QOpenGLFunctions_4_4_Core::glGetQueryObjectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820384a00 0xc820384be0 0xc820384d00] } +&{glGetQueryObjectui64v QOpenGLFunctions_4_4_Core::glGetQueryObjectui64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8203851c0 0xc820385560 0xc820385680] } +&{glGetQueryObjectuiv QOpenGLFunctions_4_4_Core::glGetQueryObjectuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820385ce0 0xc820385e40 0xc820385f60] } +&{glGetQueryiv QOpenGLFunctions_4_4_Core::glGetQueryiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82036c240 0xc82036c4e0 0xc82036c700] } +&{glGetRenderbufferParameteriv QOpenGLFunctions_4_4_Core::glGetRenderbufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82036cbc0 0xc82036cdc0 0xc82036cee0] } +&{glGetSamplerParameterIiv QOpenGLFunctions_4_4_Core::glGetSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82036d480 0xc82036d5e0 0xc82036d900] } +&{glGetSamplerParameterIuiv QOpenGLFunctions_4_4_Core::glGetSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82036dfc0 0xc8203560e0 0xc820356220] } +&{glGetSamplerParameterfv QOpenGLFunctions_4_4_Core::glGetSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820356aa0 0xc820356ba0 0xc820356d00] } +&{glGetSamplerParameteriv QOpenGLFunctions_4_4_Core::glGetSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8203574c0 0xc8203576e0 0xc820357980] } +&{glGetShaderInfoLog QOpenGLFunctions_4_4_Core::glGetShaderInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820344120 0xc820344340 0xc820344540 0xc8203447a0] } +&{glGetShaderPrecisionFormat QOpenGLFunctions_4_4_Core::glGetShaderPrecisionFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820344d20 0xc820344e60 0xc820345160 0xc820345400] } +&{glGetShaderSource QOpenGLFunctions_4_4_Core::glGetShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820345a60 0xc820345d20 0xc820345ec0 0xc8203400c0] } +&{glGetShaderiv QOpenGLFunctions_4_4_Core::glGetShaderiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8203402e0 0xc820340360 0xc820340400] } +&{glGetString QOpenGLFunctions_4_4_Core::glGetString commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false const GLubyte * [0xc820340660] } +&{glGetStringi QOpenGLFunctions_4_4_Core::glGetStringi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false const GLubyte * [0xc820340860 0xc8203409c0] } +&{glGetSubroutineIndex QOpenGLFunctions_4_4_Core::glGetSubroutineIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLuint [0xc820340c60 0xc820340ce0 0xc820340e20] } +&{glGetSubroutineUniformLocation QOpenGLFunctions_4_4_Core::glGetSubroutineUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLint [0xc8203410c0 0xc820341180 0xc820341280] } +&{glGetSynciv QOpenGLFunctions_4_4_Core::glGetSynciv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8203414c0 0xc820341540 0xc820341620 0xc820341700 0xc820341800] } +&{glGetTexImage QOpenGLFunctions_4_4_Core::glGetTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820341a40 0xc820341b40 0xc820341bc0 0xc820341ca0 0xc820341dc0] } +&{glGetTexLevelParameterfv QOpenGLFunctions_4_4_Core::glGetTexLevelParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82032e120 0xc82032e2e0 0xc82032e4e0 0xc82032e6a0] } +&{glGetTexLevelParameteriv QOpenGLFunctions_4_4_Core::glGetTexLevelParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82032ef40 0xc82032f200 0xc82032f400 0xc82032f580] } +&{glGetTexParameterIiv QOpenGLFunctions_4_4_Core::glGetTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82032fb20 0xc82032fcc0 0xc82032fd80] } +&{glGetTexParameterIuiv QOpenGLFunctions_4_4_Core::glGetTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820214240 0xc820214320 0xc8202143c0] } +&{glGetTexParameterfv QOpenGLFunctions_4_4_Core::glGetTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820214680 0xc8202147a0 0xc820214840] } +&{glGetTexParameteriv QOpenGLFunctions_4_4_Core::glGetTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820214b00 0xc820214c00 0xc820214cc0] } +&{glGetTransformFeedbackVarying QOpenGLFunctions_4_4_Core::glGetTransformFeedbackVarying commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820214f40 0xc8202150a0 0xc820215120 0xc8202151e0 0xc820215320 0xc8202153c0 0xc8202154c0] } +&{glGetUniformBlockIndex QOpenGLFunctions_4_4_Core::glGetUniformBlockIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLuint [0xc8202157a0 0xc820215840] } +&{glGetUniformIndices QOpenGLFunctions_4_4_Core::glGetUniformIndices commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820215b20 0xc820215c20 0xc820215ce0 0xc820215e40] } +&{glGetUniformLocation QOpenGLFunctions_4_4_Core::glGetUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLint [0xc820314140 0xc820314460] } +&{glGetUniformSubroutineuiv QOpenGLFunctions_4_4_Core::glGetUniformSubroutineuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820314a20 0xc820314b20 0xc820314dc0] } +&{glGetUniformdv QOpenGLFunctions_4_4_Core::glGetUniformdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820315340 0xc8203155e0 0xc8203156c0] } +&{glGetUniformfv QOpenGLFunctions_4_4_Core::glGetUniformfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820315d20 0xc820206040 0xc8202060c0] } +&{glGetUniformiv QOpenGLFunctions_4_4_Core::glGetUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820206300 0xc820206380 0xc8202064e0] } +&{glGetUniformuiv QOpenGLFunctions_4_4_Core::glGetUniformuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820206720 0xc8202067a0 0xc820206840] } +&{glGetVertexAttribIiv QOpenGLFunctions_4_4_Core::glGetVertexAttribIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820206b60 0xc820206c20 0xc820206cc0] } +&{glGetVertexAttribIuiv QOpenGLFunctions_4_4_Core::glGetVertexAttribIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820206fc0 0xc820207060 0xc820207100] } +&{glGetVertexAttribLdv QOpenGLFunctions_4_4_Core::glGetVertexAttribLdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820207440 0xc8202074e0 0xc820207560] } +&{glGetVertexAttribPointerv QOpenGLFunctions_4_4_Core::glGetVertexAttribPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820207880 0xc820207920 0xc8202079e0] } +&{glGetVertexAttribdv QOpenGLFunctions_4_4_Core::glGetVertexAttribdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820207c80 0xc820207d20 0xc820207e00] } +&{glGetVertexAttribfv QOpenGLFunctions_4_4_Core::glGetVertexAttribfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8202fe1e0 0xc8202fe400 0xc8202fe5e0] } +&{glGetVertexAttribiv QOpenGLFunctions_4_4_Core::glGetVertexAttribiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8202feb00 0xc8202fee40 0xc8202fefc0] } +&{glHint QOpenGLFunctions_4_4_Core::glHint commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8202ff640 0xc8202ff880] } +&{glInvalidateBufferData QOpenGLFunctions_4_4_Core::glInvalidateBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8202fff20] } +&{glInvalidateBufferSubData QOpenGLFunctions_4_4_Core::glInvalidateBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8202ec8a0 0xc8202eca00 0xc8202ecb60] } +&{glInvalidateFramebuffer QOpenGLFunctions_4_4_Core::glInvalidateFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8202ed1e0 0xc8202ed560 0xc8202ed700] } +&{glInvalidateSubFramebuffer QOpenGLFunctions_4_4_Core::glInvalidateSubFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8202edb60 0xc8202edd60 0xc8202ede00 0xc8202edee0 0xc8202d2040 0xc8202d2100 0xc8202d21e0] } +&{glInvalidateTexImage QOpenGLFunctions_4_4_Core::glInvalidateTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8202d24e0 0xc8202d2580] } +&{glInvalidateTexSubImage QOpenGLFunctions_4_4_Core::glInvalidateTexSubImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8202d2860 0xc8202d2980 0xc8202d2a40 0xc8202d2ae0 0xc8202d2c00 0xc8202d2cc0 0xc8202d2d80 0xc8202d2e20] } +&{glIsBuffer QOpenGLFunctions_4_4_Core::glIsBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLboolean [0xc8202d3040] } +&{glIsEnabled QOpenGLFunctions_4_4_Core::glIsEnabled commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLboolean [0xc8202d3240] } +&{glIsEnabledi QOpenGLFunctions_4_4_Core::glIsEnabledi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLboolean [0xc8202d34a0 0xc8202d3520] } +&{glIsFramebuffer QOpenGLFunctions_4_4_Core::glIsFramebuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLboolean [0xc8202d3760] } +&{glIsProgram QOpenGLFunctions_4_4_Core::glIsProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLboolean [0xc8202d39e0] } +&{glIsProgramPipeline QOpenGLFunctions_4_4_Core::glIsProgramPipeline commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLboolean [0xc8202d3ca0] } +&{glIsQuery QOpenGLFunctions_4_4_Core::glIsQuery commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLboolean [0xc8202d3f20] } +&{glIsRenderbuffer QOpenGLFunctions_4_4_Core::glIsRenderbuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLboolean [0xc8202d0200] } +&{glIsSampler QOpenGLFunctions_4_4_Core::glIsSampler commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLboolean [0xc8202d0640] } +&{glIsShader QOpenGLFunctions_4_4_Core::glIsShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLboolean [0xc8202d0be0] } +&{glIsSync QOpenGLFunctions_4_4_Core::glIsSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLboolean [0xc8202d0fe0] } +&{glIsTexture QOpenGLFunctions_4_4_Core::glIsTexture commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLboolean [0xc8202d1560] } +&{glIsTransformFeedback QOpenGLFunctions_4_4_Core::glIsTransformFeedback commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLboolean [0xc8202d1a80] } +&{glIsVertexArray QOpenGLFunctions_4_4_Core::glIsVertexArray commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLboolean [0xc8202d1f00] } +&{glLineWidth QOpenGLFunctions_4_4_Core::glLineWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8202c23e0] } +&{glLinkProgram QOpenGLFunctions_4_4_Core::glLinkProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8202c2980] } +&{glLogicOp QOpenGLFunctions_4_4_Core::glLogicOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8202c2ea0] } +&{glMapBuffer QOpenGLFunctions_4_4_Core::glMapBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void * [0xc8202c3420 0xc8202c34e0] } +&{glMapBufferRange QOpenGLFunctions_4_4_Core::glMapBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void * [0xc8202c3d20 0xc8202c3e80 0xc8202b20e0 0xc8202b23e0] } +&{glMemoryBarrier QOpenGLFunctions_4_4_Core::glMemoryBarrier commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8202b27e0] } +&{glMinSampleShading QOpenGLFunctions_4_4_Core::glMinSampleShading commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8202b2de0] } +&{glMultiDrawArrays QOpenGLFunctions_4_4_Core::glMultiDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8202b34a0 0xc8202b3640 0xc8202b38c0 0xc8202b3a00] } +&{glMultiDrawArraysIndirect QOpenGLFunctions_4_4_Core::glMultiDrawArraysIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82029a100 0xc82029a220 0xc82029a540 0xc82029a6c0] } +&{glMultiDrawElements QOpenGLFunctions_4_4_Core::glMultiDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82029b180 0xc82029b3c0 0xc82029b880 0xc82029ba80 0xc820292020] } +&{glMultiDrawElementsBaseVertex QOpenGLFunctions_4_4_Core::glMultiDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8202922c0 0xc820292340 0xc820292460 0xc820292540 0xc8202926c0 0xc820292740] } +&{glMultiDrawElementsIndirect QOpenGLFunctions_4_4_Core::glMultiDrawElementsIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820292a20 0xc820292aa0 0xc820292ba0 0xc820292c60 0xc820292d20] } +&{glObjectLabel QOpenGLFunctions_4_4_Core::glObjectLabel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820292f00 0xc820292fa0 0xc820293080 0xc820293140] } +&{glObjectPtrLabel QOpenGLFunctions_4_4_Core::glObjectPtrLabel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820293360 0xc820293480 0xc820293540] } +&{glPatchParameterfv QOpenGLFunctions_4_4_Core::glPatchParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8202937e0 0xc820293880] } +&{glPatchParameteri QOpenGLFunctions_4_4_Core::glPatchParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820293b80 0xc820293cc0] } +&{glPauseTransformFeedback QOpenGLFunctions_4_4_Core::glPauseTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [] } +&{glPixelStoref QOpenGLFunctions_4_4_Core::glPixelStoref commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820290040 0xc820290320] } +&{glPixelStorei QOpenGLFunctions_4_4_Core::glPixelStorei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820290840 0xc820290a00] } +&{glPointParameterf QOpenGLFunctions_4_4_Core::glPointParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820290ec0 0xc8202910a0] } +&{glPointParameterfv QOpenGLFunctions_4_4_Core::glPointParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8202915c0 0xc820291800] } +&{glPointParameteri QOpenGLFunctions_4_4_Core::glPointParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820291d80 0xc820291f60] } +&{glPointParameteriv QOpenGLFunctions_4_4_Core::glPointParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82027a680 0xc82027a7e0] } +&{glPointSize QOpenGLFunctions_4_4_Core::glPointSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82027adc0] } +&{glPolygonMode QOpenGLFunctions_4_4_Core::glPolygonMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82027b140 0xc82027b260] } +&{glPolygonOffset QOpenGLFunctions_4_4_Core::glPolygonOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82027b740 0xc82027b800] } +&{glPopDebugGroup QOpenGLFunctions_4_4_Core::glPopDebugGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [] } +&{glPrimitiveRestartIndex QOpenGLFunctions_4_4_Core::glPrimitiveRestartIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82027be60] } +&{glProgramBinary QOpenGLFunctions_4_4_Core::glProgramBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820274360 0xc8202744a0 0xc820274920 0xc820274a40] } +&{glProgramParameteri QOpenGLFunctions_4_4_Core::glProgramParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820275140 0xc820275460 0xc820275660] } +&{glProgramUniform1d QOpenGLFunctions_4_4_Core::glProgramUniform1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820275e20 0xc82026a1c0 0xc82026a3e0] } +&{glProgramUniform1dv QOpenGLFunctions_4_4_Core::glProgramUniform1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82026abe0 0xc82026af40 0xc82026b080 0xc82026b240] } +&{glProgramUniform1f QOpenGLFunctions_4_4_Core::glProgramUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82026bc20 0xc82026bd80 0xc82026bf80] } +&{glProgramUniform1fv QOpenGLFunctions_4_4_Core::glProgramUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820264880 0xc8202649c0 0xc820264ae0 0xc820264d40] } +&{glProgramUniform1i QOpenGLFunctions_4_4_Core::glProgramUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820265580 0xc820265780 0xc820265a60] } +&{glProgramUniform1iv QOpenGLFunctions_4_4_Core::glProgramUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82025e020 0xc82025e100 0xc82025e200 0xc82025e2c0] } +&{glProgramUniform1ui QOpenGLFunctions_4_4_Core::glProgramUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82025e540 0xc82025e5c0 0xc82025e6c0] } +&{glProgramUniform1uiv QOpenGLFunctions_4_4_Core::glProgramUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82025e960 0xc82025ea60 0xc82025eb20 0xc82025ebc0] } +&{glProgramUniform2d QOpenGLFunctions_4_4_Core::glProgramUniform2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82025eee0 0xc82025ef80 0xc82025f020 0xc82025f100] } +&{glProgramUniform2dv QOpenGLFunctions_4_4_Core::glProgramUniform2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82025f3c0 0xc82025f4a0 0xc82025f580 0xc82025f660] } +&{glProgramUniform2f QOpenGLFunctions_4_4_Core::glProgramUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82025f940 0xc82025f9c0 0xc82025fb20 0xc82025fba0] } +&{glProgramUniform2fv QOpenGLFunctions_4_4_Core::glProgramUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82025fe60 0xc82025ff60 0xc82025c120 0xc82025c220] } +&{glProgramUniform2i QOpenGLFunctions_4_4_Core::glProgramUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82025c8a0 0xc82025cb40 0xc82025cce0 0xc82025cec0] } +&{glProgramUniform2iv QOpenGLFunctions_4_4_Core::glProgramUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82025d580 0xc82025d8c0 0xc82025da00 0xc82025db00] } +&{glProgramUniform2ui QOpenGLFunctions_4_4_Core::glProgramUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8202522a0 0xc820252620 0xc8202526e0 0xc8202528c0] } +&{glProgramUniform2uiv QOpenGLFunctions_4_4_Core::glProgramUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820253060 0xc820253400 0xc8202535e0 0xc820253860] } +&{glProgramUniform3d QOpenGLFunctions_4_4_Core::glProgramUniform3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820253f40 0xc820244200 0xc8202443a0 0xc820244560 0xc8202449c0] } +&{glProgramUniform3dv QOpenGLFunctions_4_4_Core::glProgramUniform3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820244f40 0xc8202450a0 0xc8202452c0 0xc820245480] } +&{glProgramUniform3f QOpenGLFunctions_4_4_Core::glProgramUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820245b20 0xc820245de0 0xc820245fc0 0xc82023a100 0xc82023a460] } +&{glProgramUniform3fv QOpenGLFunctions_4_4_Core::glProgramUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82023ad80 0xc82023b080 0xc82023b320 0xc82023b440] } +&{glProgramUniform3i QOpenGLFunctions_4_4_Core::glProgramUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82023bbe0 0xc82023bee0 0xc8204d6040 0xc8204d61c0 0xc8204d62e0] } +&{glProgramUniform3iv QOpenGLFunctions_4_4_Core::glProgramUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204d6700 0xc8204d6860 0xc8204d6940 0xc8204d6a40] } +&{glProgramUniform3ui QOpenGLFunctions_4_4_Core::glProgramUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204d6e20 0xc8204d6ec0 0xc8204d6fe0 0xc8204d7160 0xc8204d7220] } +&{glProgramUniform3uiv QOpenGLFunctions_4_4_Core::glProgramUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204d7600 0xc8204d76a0 0xc8204d7800 0xc8204d78a0] } +&{glProgramUniform4d QOpenGLFunctions_4_4_Core::glProgramUniform4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8204d7c80 0xc8204d7d20 0xc8204d7e40 0xc8204d7fa0 0xc820176040 0xc820176160] } +&{glProgramUniform4dv QOpenGLFunctions_4_4_Core::glProgramUniform4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820176420 0xc8201764a0 0xc8201765e0 0xc820176680] } +&{glProgramUniform4f QOpenGLFunctions_4_4_Core::glProgramUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820176900 0xc820176a20 0xc820176b00 0xc820176ba0 0xc820176cc0 0xc820176d60] } +&{glProgramUniform4fv QOpenGLFunctions_4_4_Core::glProgramUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820177040 0xc820177160 0xc820177200 0xc820177280] } +&{glProgramUniform4i QOpenGLFunctions_4_4_Core::glProgramUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201775a0 0xc820177660 0xc820177700 0xc820177820 0xc8201778c0 0xc820177a00] } +&{glProgramUniform4iv QOpenGLFunctions_4_4_Core::glProgramUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820177ca0 0xc820177d40 0xc820177e40 0xc820177f20] } +&{glProgramUniform4ui QOpenGLFunctions_4_4_Core::glProgramUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82022e520 0xc82022e880 0xc82022eaa0 0xc82022ec40 0xc82022f040 0xc82022f1a0] } +&{glProgramUniform4uiv QOpenGLFunctions_4_4_Core::glProgramUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82022fa60 0xc82022fca0 0xc82022fe20 0xc820224060] } +&{glProgramUniformMatrix2dv QOpenGLFunctions_4_4_Core::glProgramUniformMatrix2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820224860 0xc820224ac0 0xc820224c00 0xc820224ec0 0xc820225320] } +&{glProgramUniformMatrix2fv QOpenGLFunctions_4_4_Core::glProgramUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820225a60 0xc820225c20 0xc820225e40 0xc82021c020 0xc82021c220] } +&{glProgramUniformMatrix2x3dv QOpenGLFunctions_4_4_Core::glProgramUniformMatrix2x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82021c7c0 0xc82021c8a0 0xc82021caa0 0xc82021cc40 0xc82021ce20] } +&{glProgramUniformMatrix2x3fv QOpenGLFunctions_4_4_Core::glProgramUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82021d3e0 0xc82021d560 0xc82021d6e0 0xc82021d8a0 0xc82021da80] } +&{glProgramUniformMatrix2x4dv QOpenGLFunctions_4_4_Core::glProgramUniformMatrix2x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82021df80 0xc820210100 0xc8202102c0 0xc8202104e0 0xc8202106e0] } +&{glProgramUniformMatrix2x4fv QOpenGLFunctions_4_4_Core::glProgramUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820210fc0 0xc820211260 0xc8202113c0 0xc8202114e0 0xc820211620] } +&{glProgramUniformMatrix3dv QOpenGLFunctions_4_4_Core::glProgramUniformMatrix3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820211ce0 0xc820211f40 0xc8202080e0 0xc820208400 0xc8202088c0] } +&{glProgramUniformMatrix3fv QOpenGLFunctions_4_4_Core::glProgramUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820209040 0xc8202092e0 0xc8202094c0 0xc8202097c0 0xc820209a60] } +&{glProgramUniformMatrix3x2dv QOpenGLFunctions_4_4_Core::glProgramUniformMatrix3x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820436120 0xc820436200 0xc820436300 0xc8204363e0 0xc8204364a0] } +&{glProgramUniformMatrix3x2fv QOpenGLFunctions_4_4_Core::glProgramUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820436880 0xc820436900 0xc820436980 0xc820436aa0 0xc820436b80] } +&{glProgramUniformMatrix3x4dv QOpenGLFunctions_4_4_Core::glProgramUniformMatrix3x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820436ee0 0xc820436f60 0xc820437140 0xc820437260 0xc820437340] } +&{glProgramUniformMatrix3x4fv QOpenGLFunctions_4_4_Core::glProgramUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820437600 0xc820437760 0xc820437880 0xc8204379c0 0xc820437b40] } +&{glProgramUniformMatrix4dv QOpenGLFunctions_4_4_Core::glProgramUniformMatrix4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820437f00 0xc8202000c0 0xc820200240 0xc820200440 0xc820200640] } +&{glProgramUniformMatrix4fv QOpenGLFunctions_4_4_Core::glProgramUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820200b00 0xc820200c80 0xc820200d60 0xc820200e40 0xc820200f80] } +&{glProgramUniformMatrix4x2dv QOpenGLFunctions_4_4_Core::glProgramUniformMatrix4x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8202012e0 0xc820201460 0xc820201680 0xc820201780 0xc820201940] } +&{glProgramUniformMatrix4x2fv QOpenGLFunctions_4_4_Core::glProgramUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820201e20 0xc820a0a040 0xc820a0a0e0 0xc820a0a1c0 0xc820a0a2e0] } +&{glProgramUniformMatrix4x3dv QOpenGLFunctions_4_4_Core::glProgramUniformMatrix4x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820a0a580 0xc820a0a600 0xc820a0a6e0 0xc820a0a7a0 0xc820a0a840] } +&{glProgramUniformMatrix4x3fv QOpenGLFunctions_4_4_Core::glProgramUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820a0ab00 0xc820a0ab80 0xc820a0acc0 0xc820a0ad80 0xc820a0ae80] } +&{glProvokingVertex QOpenGLFunctions_4_4_Core::glProvokingVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820a0b1e0] } +&{glPushDebugGroup QOpenGLFunctions_4_4_Core::glPushDebugGroup commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820a0b440 0xc820a0b620 0xc820a0b6e0 0xc820a0b840] } +&{glQueryCounter QOpenGLFunctions_4_4_Core::glQueryCounter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820a0ba40 0xc820a0bac0] } +&{glReadBuffer QOpenGLFunctions_4_4_Core::glReadBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820a0bd80] } +&{glReadPixels QOpenGLFunctions_4_4_Core::glReadPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201f4100 0xc8201f4280 0xc8201f43a0 0xc8201f4460 0xc8201f45c0 0xc8201f47a0 0xc8201f48a0] } +&{glReleaseShaderCompiler QOpenGLFunctions_4_4_Core::glReleaseShaderCompiler commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [] } +&{glRenderbufferStorage QOpenGLFunctions_4_4_Core::glRenderbufferStorage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201f5120 0xc8201f5240 0xc8201f5360 0xc8201f54c0] } +&{glRenderbufferStorageMultisample QOpenGLFunctions_4_4_Core::glRenderbufferStorageMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201f5b80 0xc8201f5d60 0xc8201f5ec0 0xc8201ea120 0xc8201ea2e0] } +&{glResumeTransformFeedback QOpenGLFunctions_4_4_Core::glResumeTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [] } +&{glSampleCoverage QOpenGLFunctions_4_4_Core::glSampleCoverage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201ea9e0 0xc8201eabe0] } +&{glSampleMaski QOpenGLFunctions_4_4_Core::glSampleMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201eb000 0xc8201eb0e0] } +&{glSamplerParameterIiv QOpenGLFunctions_4_4_Core::glSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201eb4e0 0xc8201eb5c0 0xc8201eb6c0] } +&{glSamplerParameterIuiv QOpenGLFunctions_4_4_Core::glSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201ebc00 0xc8201ebf20 0xc82048e020] } +&{glSamplerParameterf QOpenGLFunctions_4_4_Core::glSamplerParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82048e2e0 0xc82048e3a0 0xc82048e480] } +&{glSamplerParameterfv QOpenGLFunctions_4_4_Core::glSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82048e760 0xc82048e7e0 0xc82048e8a0] } +&{glSamplerParameteri QOpenGLFunctions_4_4_Core::glSamplerParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82048eaa0 0xc82048eb80 0xc82048ec20] } +&{glSamplerParameteriv QOpenGLFunctions_4_4_Core::glSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82048ee60 0xc82048eee0 0xc82048ef60] } +&{glScissor QOpenGLFunctions_4_4_Core::glScissor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82048f180 0xc82048f220 0xc82048f2e0 0xc82048f3c0] } +&{glScissorArrayv QOpenGLFunctions_4_4_Core::glScissorArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82048f5c0 0xc82048f640 0xc82048f6e0] } +&{glScissorIndexed QOpenGLFunctions_4_4_Core::glScissorIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82048f900 0xc82048fa00 0xc82048fb20 0xc82048fbc0 0xc82048fc80] } +&{glScissorIndexedv QOpenGLFunctions_4_4_Core::glScissorIndexedv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82048fee0 0xc8201dc000] } +&{glShaderBinary QOpenGLFunctions_4_4_Core::glShaderBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201dc620 0xc8201dc980 0xc8201dcb80 0xc8201dcd40 0xc8201dcfe0] } +&{glShaderSource QOpenGLFunctions_4_4_Core::glShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201dd660 0xc8201dd760 0xc8201ddaa0 0xc8201ddca0] } +&{glShaderStorageBlockBinding QOpenGLFunctions_4_4_Core::glShaderStorageBlockBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201d2260 0xc8201d2480 0xc8201d2940] } +&{glStencilFunc QOpenGLFunctions_4_4_Core::glStencilFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201d2d00 0xc8201d2ec0 0xc8201d30c0] } +&{glStencilFuncSeparate QOpenGLFunctions_4_4_Core::glStencilFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201d3480 0xc8201d3580 0xc8201d36e0 0xc8201d3800] } +&{glStencilMask QOpenGLFunctions_4_4_Core::glStencilMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201d3c20] } +&{glStencilMaskSeparate QOpenGLFunctions_4_4_Core::glStencilMaskSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201d3fa0 0xc8201ca0c0] } +&{glStencilOp QOpenGLFunctions_4_4_Core::glStencilOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201ca4c0 0xc8201ca760 0xc8201caa20] } +&{glStencilOpSeparate QOpenGLFunctions_4_4_Core::glStencilOpSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201cb1c0 0xc8201cb480 0xc8201cb6e0 0xc8201cb880] } +&{glTexBuffer QOpenGLFunctions_4_4_Core::glTexBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201cbfe0 0xc8201c41e0 0xc8201c4320] } +&{glTexBufferRange QOpenGLFunctions_4_4_Core::glTexBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201c4980 0xc8201c4be0 0xc8201c4d80 0xc8201c4f00 0xc8201c5200] } +&{glTexImage1D QOpenGLFunctions_4_4_Core::glTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201c55e0 0xc8201c5980 0xc8201c5a60 0xc8201c5da0 0xc8201b6060 0xc8201b61c0 0xc8201b6400 0xc8201b6760] } +&{glTexImage2D QOpenGLFunctions_4_4_Core::glTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201b6bc0 0xc8201b6d40 0xc8201b7000 0xc8201b72a0 0xc8201b7400 0xc8201b7860 0xc8201b7920 0xc8201b7bc0 0xc8201b7e80] } +&{glTexImage2DMultisample QOpenGLFunctions_4_4_Core::glTexImage2DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201ae780 0xc8201ae8e0 0xc8201aea40 0xc8201aec60 0xc8201af040 0xc8201af340] } +&{glTexImage3D QOpenGLFunctions_4_4_Core::glTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201afa00 0xc8201afbe0 0xc8201afdc0 0xc820a1c0c0 0xc820a1c220 0xc820a1c2a0 0xc820a1c460 0xc820a1c560 0xc820a1c760 0xc820a1c820] } +&{glTexImage3DMultisample QOpenGLFunctions_4_4_Core::glTexImage3DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820a1cba0 0xc820a1cce0 0xc820a1ce60 0xc820a1cf80 0xc820a1d0c0 0xc820a1d1c0 0xc820a1d320] } +&{glTexParameterIiv QOpenGLFunctions_4_4_Core::glTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820a1d6a0 0xc820a1d7c0 0xc820a1d940] } +&{glTexParameterIuiv QOpenGLFunctions_4_4_Core::glTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820a1dba0 0xc820a1dce0 0xc820a1ddc0] } +&{glTexParameterf QOpenGLFunctions_4_4_Core::glTexParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201a40a0 0xc8201a4200 0xc8201a43e0] } +&{glTexParameterfv QOpenGLFunctions_4_4_Core::glTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201a4840 0xc8201a49a0 0xc8201a4ba0] } +&{glTexParameteri QOpenGLFunctions_4_4_Core::glTexParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201a4e80 0xc8201a5000 0xc8201a51c0] } +&{glTexParameteriv QOpenGLFunctions_4_4_Core::glTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201a5640 0xc8201a5840 0xc8201a59e0] } +&{glTexStorage1D QOpenGLFunctions_4_4_Core::glTexStorage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201a5fc0 0xc82018c0c0 0xc82018c1c0 0xc82018c380] } +&{glTexStorage2D QOpenGLFunctions_4_4_Core::glTexStorage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82018c9a0 0xc82018ca80 0xc82018ce40 0xc82018cfe0 0xc82018d260] } +&{glTexStorage2DMultisample QOpenGLFunctions_4_4_Core::glTexStorage2DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82018d680 0xc82018d780 0xc82018d920 0xc82018dba0 0xc82018dd20 0xc82018df60] } +&{glTexStorage3D QOpenGLFunctions_4_4_Core::glTexStorage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8205ba2e0 0xc8205ba3c0 0xc8205ba4e0 0xc8205ba580 0xc8205ba6e0 0xc8205ba7c0] } +&{glTexStorage3DMultisample QOpenGLFunctions_4_4_Core::glTexStorage3DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8205baa00 0xc8205bab20 0xc8205bac60 0xc8205bad60 0xc8205baea0 0xc8205bafe0 0xc8205bb120] } +&{glTexSubImage1D QOpenGLFunctions_4_4_Core::glTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8205bb3e0 0xc8205bb4c0 0xc8205bb5e0 0xc8205bb680 0xc8205bb800 0xc8205bb940 0xc8205bbac0] } +&{glTexSubImage2D QOpenGLFunctions_4_4_Core::glTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8205bbe00 0xc8205bbf60 0xc8200f8040 0xc8200f80c0 0xc8200f81c0 0xc8200f8240 0xc8200f82e0 0xc8200f83a0 0xc8200f8480] } +&{glTexSubImage3D QOpenGLFunctions_4_4_Core::glTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8200f8620 0xc8200f86e0 0xc8200f8760 0xc8200f8800 0xc8200f8900 0xc8200f89a0 0xc8200f8a40 0xc8200f8ae0 0xc8200f8be0 0xc8200f8ce0 0xc8200f8de0] } +&{glTextureView QOpenGLFunctions_4_4_Core::glTextureView commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8200f8fe0 0xc8200f90c0 0xc8200f91a0 0xc8200f92a0 0xc8200f9380 0xc8200f9460 0xc8200f9500 0xc8200f95e0] } +&{glTransformFeedbackVaryings QOpenGLFunctions_4_4_Core::glTransformFeedbackVaryings commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8200f98a0 0xc8200f99a0 0xc8200f9aa0 0xc8200f9b60] } +&{glUniform1d QOpenGLFunctions_4_4_Core::glUniform1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8200f9de0 0xc8200f9f00] } +&{glUniform1dv QOpenGLFunctions_4_4_Core::glUniform1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820162240 0xc820162500 0xc820162720] } +&{glUniform1f QOpenGLFunctions_4_4_Core::glUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820162d40 0xc820163060] } +&{glUniform1fv QOpenGLFunctions_4_4_Core::glUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201636c0 0xc820163800 0xc820163aa0] } +&{glUniform1i QOpenGLFunctions_4_4_Core::glUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820163e80 0xc820152120] } +&{glUniform1iv QOpenGLFunctions_4_4_Core::glUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820152840 0xc820152a40 0xc820152c60] } +&{glUniform1ui QOpenGLFunctions_4_4_Core::glUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8201531c0 0xc8201533a0] } +&{glUniform1uiv QOpenGLFunctions_4_4_Core::glUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820153980 0xc820153b40 0xc820153da0] } +&{glUniform2d QOpenGLFunctions_4_4_Core::glUniform2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82013e1c0 0xc82013e260 0xc82013e300] } +&{glUniform2dv QOpenGLFunctions_4_4_Core::glUniform2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82013e540 0xc82013e680 0xc82013e720] } +&{glUniform2f QOpenGLFunctions_4_4_Core::glUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82013e960 0xc82013ea40 0xc82013eac0] } +&{glUniform2fv QOpenGLFunctions_4_4_Core::glUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82013ed40 0xc82013ede0 0xc82013eec0] } +&{glUniform2i QOpenGLFunctions_4_4_Core::glUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82013f0c0 0xc82013f1a0 0xc82013f2c0] } +&{glUniform2iv QOpenGLFunctions_4_4_Core::glUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82013f460 0xc82013f5c0 0xc82013f660] } +&{glUniform2ui QOpenGLFunctions_4_4_Core::glUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82013f900 0xc82013f9a0 0xc82013fa20] } +&{glUniform2uiv QOpenGLFunctions_4_4_Core::glUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82013fca0 0xc82013fd20 0xc82013fde0] } +&{glUniform3d QOpenGLFunctions_4_4_Core::glUniform3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82013c080 0xc82013c2a0 0xc82013c380 0xc82013c700] } +&{glUniform3dv QOpenGLFunctions_4_4_Core::glUniform3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82013cae0 0xc82013cc60 0xc82013cd40] } +&{glUniform3f QOpenGLFunctions_4_4_Core::glUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82013d0e0 0xc82013d2e0 0xc82013d3a0 0xc82013d4e0] } +&{glUniform3fv QOpenGLFunctions_4_4_Core::glUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82013d860 0xc82013da00 0xc82013dba0] } +&{glUniform3i QOpenGLFunctions_4_4_Core::glUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82013dfa0 0xc82012a180 0xc82012a420 0xc82012a6c0] } +&{glUniform3iv QOpenGLFunctions_4_4_Core::glUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82012ac80 0xc82012af60 0xc82012b140] } +&{glUniform3ui QOpenGLFunctions_4_4_Core::glUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82012b600 0xc82012b740 0xc82012b9e0 0xc82012baa0] } +&{glUniform3uiv QOpenGLFunctions_4_4_Core::glUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82012bfe0 0xc820102260 0xc820102400] } +&{glUniform4d QOpenGLFunctions_4_4_Core::glUniform4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820102920 0xc820102b60 0xc820102d80 0xc820102f00 0xc820103060] } +&{glUniform4dv QOpenGLFunctions_4_4_Core::glUniform4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820103560 0xc820103660 0xc8201038a0] } +&{glUniform4f QOpenGLFunctions_4_4_Core::glUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820103f60 0xc8200ee0c0 0xc8200ee240 0xc8200ee380 0xc8200ee640] } +&{glUniform4fv QOpenGLFunctions_4_4_Core::glUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8200eec20 0xc8200eee60 0xc8200ef100] } +&{glUniform4i QOpenGLFunctions_4_4_Core::glUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8200ef7e0 0xc8200efa00 0xc8200efc80 0xc8200efe00 0xc8200e6020] } +&{glUniform4iv QOpenGLFunctions_4_4_Core::glUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8200e6280 0xc8200e6300 0xc8200e6400] } +&{glUniform4ui QOpenGLFunctions_4_4_Core::glUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8200e65e0 0xc8200e6680 0xc8200e6720 0xc8200e67e0 0xc8200e6880] } +&{glUniform4uiv QOpenGLFunctions_4_4_Core::glUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8200e6a40 0xc8200e6ae0 0xc8200e6b80] } +&{glUniformBlockBinding QOpenGLFunctions_4_4_Core::glUniformBlockBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8200e6de0 0xc8200e6e80 0xc8200e6fa0] } +&{glUniformMatrix2dv QOpenGLFunctions_4_4_Core::glUniformMatrix2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8200e7240 0xc8200e72e0 0xc8200e7360 0xc8200e7400] } +&{glUniformMatrix2fv QOpenGLFunctions_4_4_Core::glUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8200e7640 0xc8200e76e0 0xc8200e77a0 0xc8200e7840] } +&{glUniformMatrix2x3dv QOpenGLFunctions_4_4_Core::glUniformMatrix2x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8200e7a40 0xc8200e7b00 0xc8200e7ba0 0xc8200e7c40] } +&{glUniformMatrix2x3fv QOpenGLFunctions_4_4_Core::glUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8200e7e80 0xc8200e7f40 0xc8200e7fe0 0xc8200e02c0] } +&{glUniformMatrix2x4dv QOpenGLFunctions_4_4_Core::glUniformMatrix2x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8200e0900 0xc8200e0c40 0xc8200e0e60 0xc8200e1040] } +&{glUniformMatrix2x4fv QOpenGLFunctions_4_4_Core::glUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8200e1720 0xc8200e1a60 0xc8200e1c40 0xc8200e1fe0] } +&{glUniformMatrix3dv QOpenGLFunctions_4_4_Core::glUniformMatrix3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820530420 0xc820530560 0xc8205306c0 0xc820530800] } +&{glUniformMatrix3fv QOpenGLFunctions_4_4_Core::glUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820530c40 0xc820530ce0 0xc820530e60 0xc820530f80] } +&{glUniformMatrix3x2dv QOpenGLFunctions_4_4_Core::glUniformMatrix3x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8205314e0 0xc820531640 0xc820531800 0xc8205319c0] } +&{glUniformMatrix3x2fv QOpenGLFunctions_4_4_Core::glUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820531e00 0xc820531fc0 0xc8200d21e0 0xc8200d2360] } +&{glUniformMatrix3x4dv QOpenGLFunctions_4_4_Core::glUniformMatrix3x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8200d2da0 0xc8200d2fa0 0xc8200d3180 0xc8200d32e0] } +&{glUniformMatrix3x4fv QOpenGLFunctions_4_4_Core::glUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8200d3b80 0xc8200d3d00 0xc8200d3e60 0xc8200d3ee0] } +&{glUniformMatrix4dv QOpenGLFunctions_4_4_Core::glUniformMatrix4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8200a45c0 0xc8200a4800 0xc8200a4bc0 0xc8200a4dc0] } +&{glUniformMatrix4fv QOpenGLFunctions_4_4_Core::glUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8200a52c0 0xc8200a5560 0xc8200a5780 0xc8200a5a20] } +&{glUniformMatrix4x2dv QOpenGLFunctions_4_4_Core::glUniformMatrix4x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8215f80a0 0xc8215f8180 0xc8215f8280 0xc8215f8320] } +&{glUniformMatrix4x2fv QOpenGLFunctions_4_4_Core::glUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8215f85a0 0xc8215f86a0 0xc8215f8760 0xc8215f8820] } +&{glUniformMatrix4x3dv QOpenGLFunctions_4_4_Core::glUniformMatrix4x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8215f8ae0 0xc8215f8b80 0xc8215f8c40 0xc8215f8d00] } +&{glUniformMatrix4x3fv QOpenGLFunctions_4_4_Core::glUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8215f90c0 0xc8215f9160 0xc8215f91e0 0xc8215f9280] } +&{glUniformSubroutinesuiv QOpenGLFunctions_4_4_Core::glUniformSubroutinesuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8215f9580 0xc8215f9640 0xc8215f96e0] } +&{glUnmapBuffer QOpenGLFunctions_4_4_Core::glUnmapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false GLboolean [0xc8215f98e0] } +&{glUseProgram QOpenGLFunctions_4_4_Core::glUseProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8215f9ac0] } +&{glUseProgramStages QOpenGLFunctions_4_4_Core::glUseProgramStages commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8215f9cc0 0xc8215f9d60 0xc8215f9e20] } +&{glValidateProgram QOpenGLFunctions_4_4_Core::glValidateProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82017e100] } +&{glValidateProgramPipeline QOpenGLFunctions_4_4_Core::glValidateProgramPipeline commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82017e5e0] } +&{glVertexAttrib1d QOpenGLFunctions_4_4_Core::glVertexAttrib1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82017ebc0 0xc82017ec80] } +&{glVertexAttrib1dv QOpenGLFunctions_4_4_Core::glVertexAttrib1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82017f140 0xc82017f2c0] } +&{glVertexAttrib1f QOpenGLFunctions_4_4_Core::glVertexAttrib1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82017f580 0xc82017f6c0] } +&{glVertexAttrib1fv QOpenGLFunctions_4_4_Core::glVertexAttrib1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82017fd60 0xc82017fee0] } +&{glVertexAttrib1s QOpenGLFunctions_4_4_Core::glVertexAttrib1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820e72160 0xc820e721e0] } +&{glVertexAttrib1sv QOpenGLFunctions_4_4_Core::glVertexAttrib1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820e72440 0xc820e72500] } +&{glVertexAttrib2d QOpenGLFunctions_4_4_Core::glVertexAttrib2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820e726a0 0xc820e72720 0xc820e727c0] } +&{glVertexAttrib2dv QOpenGLFunctions_4_4_Core::glVertexAttrib2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820e72a00 0xc820e72ac0] } +&{glVertexAttrib2f QOpenGLFunctions_4_4_Core::glVertexAttrib2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820e72c80 0xc820e72d20 0xc820e72dc0] } +&{glVertexAttrib2fv QOpenGLFunctions_4_4_Core::glVertexAttrib2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820e72fc0 0xc820e730a0] } +&{glVertexAttrib2s QOpenGLFunctions_4_4_Core::glVertexAttrib2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820e73220 0xc820e732e0 0xc820e73380] } +&{glVertexAttrib2sv QOpenGLFunctions_4_4_Core::glVertexAttrib2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820e735c0 0xc820e73640] } +&{glVertexAttrib3d QOpenGLFunctions_4_4_Core::glVertexAttrib3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820e737e0 0xc820e738c0 0xc820e73960 0xc820e739e0] } +&{glVertexAttrib3dv QOpenGLFunctions_4_4_Core::glVertexAttrib3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820e73c20 0xc820e73ca0] } +&{glVertexAttrib3f QOpenGLFunctions_4_4_Core::glVertexAttrib3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820e73e80 0xc820e73f00 0xc820e73fe0 0xc82000e260] } +&{glVertexAttrib3fv QOpenGLFunctions_4_4_Core::glVertexAttrib3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82000e920 0xc82000ece0] } +&{glVertexAttrib3s QOpenGLFunctions_4_4_Core::glVertexAttrib3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82000f2c0 0xc82000f500 0xc82000f6a0 0xc82000fb20] } +&{glVertexAttrib3sv QOpenGLFunctions_4_4_Core::glVertexAttrib3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82310c420 0xc82310c4a0] } +&{glVertexAttrib4Nbv QOpenGLFunctions_4_4_Core::glVertexAttrib4Nbv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82310c660 0xc82310c6e0] } +&{glVertexAttrib4Niv QOpenGLFunctions_4_4_Core::glVertexAttrib4Niv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82310c8a0 0xc82310c920] } +&{glVertexAttrib4Nsv QOpenGLFunctions_4_4_Core::glVertexAttrib4Nsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82310cae0 0xc82310cb60] } +&{glVertexAttrib4Nub QOpenGLFunctions_4_4_Core::glVertexAttrib4Nub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82310cd20 0xc82310cda0 0xc82310ce20 0xc82310cea0 0xc82310cf40] } +&{glVertexAttrib4Nubv QOpenGLFunctions_4_4_Core::glVertexAttrib4Nubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82310d100 0xc82310d180] } +&{glVertexAttrib4Nuiv QOpenGLFunctions_4_4_Core::glVertexAttrib4Nuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82310d340 0xc82310d3c0] } +&{glVertexAttrib4Nusv QOpenGLFunctions_4_4_Core::glVertexAttrib4Nusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82310d580 0xc82310d600] } +&{glVertexAttrib4bv QOpenGLFunctions_4_4_Core::glVertexAttrib4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82310d7c0 0xc82310d840] } +&{glVertexAttrib4d QOpenGLFunctions_4_4_Core::glVertexAttrib4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82310d9a0 0xc82310da20 0xc82310daa0 0xc82310db20 0xc82310dbc0] } +&{glVertexAttrib4dv QOpenGLFunctions_4_4_Core::glVertexAttrib4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82310dd80 0xc82310de00] } +&{glVertexAttrib4f QOpenGLFunctions_4_4_Core::glVertexAttrib4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc82310df60 0xc82310dfe0 0xc8230b6080 0xc8230b6120 0xc8230b6200] } +&{glVertexAttrib4fv QOpenGLFunctions_4_4_Core::glVertexAttrib4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8230b6420 0xc8230b64e0] } +&{glVertexAttrib4iv QOpenGLFunctions_4_4_Core::glVertexAttrib4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8230b6700 0xc8230b67c0] } +&{glVertexAttrib4s QOpenGLFunctions_4_4_Core::glVertexAttrib4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8230b69a0 0xc8230b6a20 0xc8230b6ae0 0xc8230b6b80 0xc8230b6c40] } +&{glVertexAttrib4sv QOpenGLFunctions_4_4_Core::glVertexAttrib4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8230b6ea0 0xc8230b6f40] } +&{glVertexAttrib4ubv QOpenGLFunctions_4_4_Core::glVertexAttrib4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8230b7180 0xc8230b7200] } +&{glVertexAttrib4uiv QOpenGLFunctions_4_4_Core::glVertexAttrib4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8230b7440 0xc8230b74c0] } +&{glVertexAttrib4usv QOpenGLFunctions_4_4_Core::glVertexAttrib4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8230b7700 0xc8230b7780] } +&{glVertexAttribBinding QOpenGLFunctions_4_4_Core::glVertexAttribBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8230b79c0 0xc8230b7a80] } +&{glVertexAttribDivisor QOpenGLFunctions_4_4_Core::glVertexAttribDivisor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8230b7c80 0xc8230b7d40] } +&{glVertexAttribFormat QOpenGLFunctions_4_4_Core::glVertexAttribFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8230b7f20 0xc8230b7fa0 0xc8230d8140 0xc8230d81c0 0xc8230d8260] } +&{glVertexAttribI1i QOpenGLFunctions_4_4_Core::glVertexAttribI1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8230d8420 0xc8230d84a0] } +&{glVertexAttribI1iv QOpenGLFunctions_4_4_Core::glVertexAttribI1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8230d8660 0xc8230d86e0] } +&{glVertexAttribI1ui QOpenGLFunctions_4_4_Core::glVertexAttribI1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8230d88a0 0xc8230d8920] } +&{glVertexAttribI1uiv QOpenGLFunctions_4_4_Core::glVertexAttribI1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8230d8ae0 0xc8230d8b60] } +&{glVertexAttribI2i QOpenGLFunctions_4_4_Core::glVertexAttribI2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8230d8d20 0xc8230d8da0 0xc8230d8e20] } +&{glVertexAttribI2iv QOpenGLFunctions_4_4_Core::glVertexAttribI2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8230d8fe0 0xc8230d9060] } +&{glVertexAttribI2ui QOpenGLFunctions_4_4_Core::glVertexAttribI2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8230d9220 0xc8230d92a0 0xc8230d9320] } +&{glVertexAttribI2uiv QOpenGLFunctions_4_4_Core::glVertexAttribI2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8230d94e0 0xc8230d9560] } +&{glVertexAttribI3i QOpenGLFunctions_4_4_Core::glVertexAttribI3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8230d9720 0xc8230d97a0 0xc8230d9820 0xc8230d98a0] } +&{glVertexAttribI3iv QOpenGLFunctions_4_4_Core::glVertexAttribI3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8230d9a60 0xc8230d9ae0] } +&{glVertexAttribI3ui QOpenGLFunctions_4_4_Core::glVertexAttribI3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8230d9ca0 0xc8230d9d20 0xc8230d9da0 0xc8230d9e20] } +&{glVertexAttribI3uiv QOpenGLFunctions_4_4_Core::glVertexAttribI3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc8230d9fe0 0xc820cd2060] } +&{glVertexAttribI4bv QOpenGLFunctions_4_4_Core::glVertexAttribI4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820cd2240 0xc820cd22c0] } +&{glVertexAttribI4i QOpenGLFunctions_4_4_Core::glVertexAttribI4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820cd2480 0xc820cd2500 0xc820cd2580 0xc820cd2600 0xc820cd26a0] } +&{glVertexAttribI4iv QOpenGLFunctions_4_4_Core::glVertexAttribI4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820cd2860 0xc820cd28e0] } +&{glVertexAttribI4sv QOpenGLFunctions_4_4_Core::glVertexAttribI4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820cd2aa0 0xc820cd2b20] } +&{glVertexAttribI4ubv QOpenGLFunctions_4_4_Core::glVertexAttribI4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820cd2ce0 0xc820cd2d60] } +&{glVertexAttribI4ui QOpenGLFunctions_4_4_Core::glVertexAttribI4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820cd2f20 0xc820cd2fa0 0xc820cd3020 0xc820cd30a0 0xc820cd3140] } +&{glVertexAttribI4uiv QOpenGLFunctions_4_4_Core::glVertexAttribI4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820cd3300 0xc820cd3380] } +&{glVertexAttribI4usv QOpenGLFunctions_4_4_Core::glVertexAttribI4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820cd3540 0xc820cd35c0] } +&{glVertexAttribIFormat QOpenGLFunctions_4_4_Core::glVertexAttribIFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820cd3780 0xc820cd3800 0xc820cd3880 0xc820cd3900] } +&{glVertexAttribIPointer QOpenGLFunctions_4_4_Core::glVertexAttribIPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820cd3ac0 0xc820cd3b40 0xc820cd3bc0 0xc820cd3c40 0xc820cd3ce0] } +&{glVertexAttribL1d QOpenGLFunctions_4_4_Core::glVertexAttribL1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820cd3ea0 0xc820cd3f20] } +&{glVertexAttribL1dv QOpenGLFunctions_4_4_Core::glVertexAttribL1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820c8a0e0 0xc820c8a160] } +&{glVertexAttribL2d QOpenGLFunctions_4_4_Core::glVertexAttribL2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820c8a320 0xc820c8a3a0 0xc820c8a420] } +&{glVertexAttribL2dv QOpenGLFunctions_4_4_Core::glVertexAttribL2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820c8a5e0 0xc820c8a660] } +&{glVertexAttribL3d QOpenGLFunctions_4_4_Core::glVertexAttribL3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820c8a820 0xc820c8a8a0 0xc820c8a920 0xc820c8a9a0] } +&{glVertexAttribL3dv QOpenGLFunctions_4_4_Core::glVertexAttribL3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820c8ab60 0xc820c8abe0] } +&{glVertexAttribL4d QOpenGLFunctions_4_4_Core::glVertexAttribL4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820c8ada0 0xc820c8ae20 0xc820c8aea0 0xc820c8af20 0xc820c8afc0] } +&{glVertexAttribL4dv QOpenGLFunctions_4_4_Core::glVertexAttribL4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820c8b180 0xc820c8b200] } +&{glVertexAttribLFormat QOpenGLFunctions_4_4_Core::glVertexAttribLFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820c8b3c0 0xc820c8b440 0xc820c8b4c0 0xc820c8b540] } +&{glVertexAttribLPointer QOpenGLFunctions_4_4_Core::glVertexAttribLPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820c8b700 0xc820c8b780 0xc820c8b800 0xc820c8b880 0xc820c8b920] } +&{glVertexAttribP1ui QOpenGLFunctions_4_4_Core::glVertexAttribP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820c8bae0 0xc820c8bb60 0xc820c8bbe0 0xc820c8bc60] } +&{glVertexAttribP1uiv QOpenGLFunctions_4_4_Core::glVertexAttribP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820c8be20 0xc820c8bea0 0xc820c8bf20 0xc820c8bfa0] } +&{glVertexAttribP2ui QOpenGLFunctions_4_4_Core::glVertexAttribP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820c64160 0xc820c641e0 0xc820c64260 0xc820c642e0] } +&{glVertexAttribP2uiv QOpenGLFunctions_4_4_Core::glVertexAttribP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820c644a0 0xc820c64520 0xc820c645a0 0xc820c64620] } +&{glVertexAttribP3ui QOpenGLFunctions_4_4_Core::glVertexAttribP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820c647e0 0xc820c64860 0xc820c648e0 0xc820c64960] } +&{glVertexAttribP3uiv QOpenGLFunctions_4_4_Core::glVertexAttribP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820c64b20 0xc820c64ba0 0xc820c64c20 0xc820c64ca0] } +&{glVertexAttribP4ui QOpenGLFunctions_4_4_Core::glVertexAttribP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820c64e60 0xc820c64ee0 0xc820c64f60 0xc820c64fe0] } +&{glVertexAttribP4uiv QOpenGLFunctions_4_4_Core::glVertexAttribP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820c651a0 0xc820c65220 0xc820c652a0 0xc820c65320] } +&{glVertexAttribPointer QOpenGLFunctions_4_4_Core::glVertexAttribPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820c654e0 0xc820c65560 0xc820c655e0 0xc820c65660 0xc820c65700 0xc820c65780] } +&{glVertexBindingDivisor QOpenGLFunctions_4_4_Core::glVertexBindingDivisor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820c65940 0xc820c659c0] } +&{glViewport QOpenGLFunctions_4_4_Core::glViewport commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820c65b20 0xc820c65ba0 0xc820c65c20 0xc820c65ca0] } +&{glViewportArrayv QOpenGLFunctions_4_4_Core::glViewportArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820c65e00 0xc820c65e80 0xc820c65f00] } +&{glViewportIndexedf QOpenGLFunctions_4_4_Core::glViewportIndexedf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820c460c0 0xc820c46140 0xc820c461c0 0xc820c46240 0xc820c462e0] } +&{glViewportIndexedfv QOpenGLFunctions_4_4_Core::glViewportIndexedfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820c464a0 0xc820c46520] } +&{glWaitSync QOpenGLFunctions_4_4_Core::glWaitSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_4_core.h non plain false false void [0xc820c46680 0xc820c46700 0xc820c46780] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions_4_5_Compatibility.txt b/internal/binding/dump/QtGui/QOpenGLFunctions_4_5_Compatibility.txt new file mode 100755 index 00000000..e8a71e70 --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions_4_5_Compatibility.txt @@ -0,0 +1,1077 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions_4_5_Compatibility QOpenGLFunctions_4_5_Compatibility::QOpenGLFunctions_4_5_Compatibility commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.cpp non constructor false false [] } +&{initializeOpenGLFunctions QOpenGLFunctions_4_5_Compatibility::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.cpp impure plain false false bool [] } +&{~QOpenGLFunctions_4_5_Compatibility QOpenGLFunctions_4_5_Compatibility::~QOpenGLFunctions_4_5_Compatibility commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.cpp non destructor false false [] } +&{glAccum QOpenGLFunctions_4_5_Compatibility::glAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820c46e00 0xc820c46e80] } +&{glActiveShaderProgram QOpenGLFunctions_4_5_Compatibility::glActiveShaderProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820c47020 0xc820c470a0] } +&{glActiveTexture QOpenGLFunctions_4_5_Compatibility::glActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820c471e0] } +&{glAlphaFunc QOpenGLFunctions_4_5_Compatibility::glAlphaFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820c47340 0xc820c473c0] } +&{glAreTexturesResident QOpenGLFunctions_4_5_Compatibility::glAreTexturesResident commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLboolean [0xc820c47560 0xc820c475e0 0xc820c47660] } +&{glArrayElement QOpenGLFunctions_4_5_Compatibility::glArrayElement commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820c477c0] } +&{glAttachShader QOpenGLFunctions_4_5_Compatibility::glAttachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820c47900 0xc820c47980] } +&{glBegin QOpenGLFunctions_4_5_Compatibility::glBegin commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820c47ae0] } +&{glBeginConditionalRender QOpenGLFunctions_4_5_Compatibility::glBeginConditionalRender commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820c47c80 0xc820c47d00] } +&{glBeginQuery QOpenGLFunctions_4_5_Compatibility::glBeginQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820c47e40 0xc820c47ec0] } +&{glBeginQueryIndexed QOpenGLFunctions_4_5_Compatibility::glBeginQueryIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820c10060 0xc820c100e0 0xc820c10160] } +&{glBeginTransformFeedback QOpenGLFunctions_4_5_Compatibility::glBeginTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820c10320] } +&{glBindAttribLocation QOpenGLFunctions_4_5_Compatibility::glBindAttribLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820c104c0 0xc820c10540 0xc820c105c0] } +&{glBindBuffer QOpenGLFunctions_4_5_Compatibility::glBindBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820c10700 0xc820c10780] } +&{glBindBufferBase QOpenGLFunctions_4_5_Compatibility::glBindBufferBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820c108c0 0xc820c10940 0xc820c109c0] } +&{glBindBufferRange QOpenGLFunctions_4_5_Compatibility::glBindBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820c10b60 0xc820c10be0 0xc820c10c60 0xc820c10ce0 0xc820c10d80] } +&{glBindBuffersBase QOpenGLFunctions_4_5_Compatibility::glBindBuffersBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820c10f20 0xc820c10fa0 0xc820c11020 0xc820c110a0] } +&{glBindBuffersRange QOpenGLFunctions_4_5_Compatibility::glBindBuffersRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820c11240 0xc820c112c0 0xc820c11340 0xc820c113c0 0xc820c11460 0xc820c11500] } +&{glBindFragDataLocation QOpenGLFunctions_4_5_Compatibility::glBindFragDataLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820c116e0 0xc820c11760 0xc820c117e0] } +&{glBindFragDataLocationIndexed QOpenGLFunctions_4_5_Compatibility::glBindFragDataLocationIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820c11980 0xc820c11a00 0xc820c11a80 0xc820c11b00] } +&{glBindFramebuffer QOpenGLFunctions_4_5_Compatibility::glBindFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820c11ca0 0xc820c11d20] } +&{glBindImageTexture QOpenGLFunctions_4_5_Compatibility::glBindImageTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820c11ec0 0xc820c11f40 0xc820c11fc0 0xc820bea040 0xc820bea0e0 0xc820bea160 0xc820bea1e0] } +&{glBindImageTextures QOpenGLFunctions_4_5_Compatibility::glBindImageTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820bea380 0xc820bea400 0xc820bea480] } +&{glBindProgramPipeline QOpenGLFunctions_4_5_Compatibility::glBindProgramPipeline commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820bea620] } +&{glBindRenderbuffer QOpenGLFunctions_4_5_Compatibility::glBindRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820bea7c0 0xc820bea840] } +&{glBindSampler QOpenGLFunctions_4_5_Compatibility::glBindSampler commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820bea980 0xc820beaa00] } +&{glBindSamplers QOpenGLFunctions_4_5_Compatibility::glBindSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820beab40 0xc820beabc0 0xc820beac40] } +&{glBindTexture QOpenGLFunctions_4_5_Compatibility::glBindTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820beada0 0xc820beae20] } +&{glBindTextureUnit QOpenGLFunctions_4_5_Compatibility::glBindTextureUnit commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820beafc0 0xc820beb040] } +&{glBindTextures QOpenGLFunctions_4_5_Compatibility::glBindTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820beb180 0xc820beb200 0xc820beb280] } +&{glBindTransformFeedback QOpenGLFunctions_4_5_Compatibility::glBindTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820beb420 0xc820beb4a0] } +&{glBindVertexArray QOpenGLFunctions_4_5_Compatibility::glBindVertexArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820beb640] } +&{glBindVertexBuffer QOpenGLFunctions_4_5_Compatibility::glBindVertexBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820beb7e0 0xc820beb860 0xc820beb8e0 0xc820beb960] } +&{glBindVertexBuffers QOpenGLFunctions_4_5_Compatibility::glBindVertexBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820bebb00 0xc820bebb80 0xc820bebc00 0xc820bebc80 0xc820bebd20] } +&{glBitmap QOpenGLFunctions_4_5_Compatibility::glBitmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820bebe60 0xc820bebee0 0xc820bebf60 0xc820bebfe0 0xc820bba080 0xc820bba100 0xc820bba180] } +&{glBlendColor QOpenGLFunctions_4_5_Compatibility::glBlendColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820bba2c0 0xc820bba340 0xc820bba3c0 0xc820bba440] } +&{glBlendEquation QOpenGLFunctions_4_5_Compatibility::glBlendEquation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820bba580] } +&{glBlendEquationSeparate QOpenGLFunctions_4_5_Compatibility::glBlendEquationSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820bba720 0xc820bba7a0] } +&{glBlendEquationSeparatei QOpenGLFunctions_4_5_Compatibility::glBlendEquationSeparatei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820bba940 0xc820bba9c0 0xc820bbaa40] } +&{glBlendEquationi QOpenGLFunctions_4_5_Compatibility::glBlendEquationi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820bbab80 0xc820bbac00] } +&{glBlendFunc QOpenGLFunctions_4_5_Compatibility::glBlendFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820bbad40 0xc820bbadc0] } +&{glBlendFuncSeparate QOpenGLFunctions_4_5_Compatibility::glBlendFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820bbaf60 0xc820bbafe0 0xc820bbb060 0xc820bbb0e0] } +&{glBlendFuncSeparatei QOpenGLFunctions_4_5_Compatibility::glBlendFuncSeparatei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820bbb280 0xc820bbb300 0xc820bbb380 0xc820bbb400 0xc820bbb4a0] } +&{glBlendFunci QOpenGLFunctions_4_5_Compatibility::glBlendFunci commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820bbb5e0 0xc820bbb660 0xc820bbb6e0] } +&{glBlitFramebuffer QOpenGLFunctions_4_5_Compatibility::glBlitFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820bbb880 0xc820bbb900 0xc820bbb980 0xc820bbba00 0xc820bbbaa0 0xc820bbbb20 0xc820bbbba0 0xc820bbbc20 0xc820bbbcc0 0xc820bbbd40] } +&{glBlitNamedFramebuffer QOpenGLFunctions_4_5_Compatibility::glBlitNamedFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820bbbee0 0xc820bbbf60 0xc820bbbfe0 0xc820b86060 0xc820b86100 0xc820b86180 0xc820b86200 0xc820b86280 0xc820b86320 0xc820b863a0 0xc820b86420 0xc820b864a0] } +&{glBufferData QOpenGLFunctions_4_5_Compatibility::glBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b865e0 0xc820b86660 0xc820b866e0 0xc820b86760] } +&{glBufferStorage QOpenGLFunctions_4_5_Compatibility::glBufferStorage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b868a0 0xc820b86920 0xc820b869a0 0xc820b86a20] } +&{glBufferSubData QOpenGLFunctions_4_5_Compatibility::glBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b86b60 0xc820b86be0 0xc820b86c60 0xc820b86ce0] } +&{glCallList QOpenGLFunctions_4_5_Compatibility::glCallList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b86e40] } +&{glCallLists QOpenGLFunctions_4_5_Compatibility::glCallLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b86f80 0xc820b87000 0xc820b87080] } +&{glCheckFramebufferStatus QOpenGLFunctions_4_5_Compatibility::glCheckFramebufferStatus commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLenum [0xc820b87220] } +&{glCheckNamedFramebufferStatus QOpenGLFunctions_4_5_Compatibility::glCheckNamedFramebufferStatus commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLenum [0xc820b873c0 0xc820b87440] } +&{glClampColor QOpenGLFunctions_4_5_Compatibility::glClampColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b87580 0xc820b87600] } +&{glClear QOpenGLFunctions_4_5_Compatibility::glClear commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b87760] } +&{glClearAccum QOpenGLFunctions_4_5_Compatibility::glClearAccum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b878a0 0xc820b87920 0xc820b879a0 0xc820b87a20] } +&{glClearBufferData QOpenGLFunctions_4_5_Compatibility::glClearBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b87bc0 0xc820b87c40 0xc820b87cc0 0xc820b87d40 0xc820b87de0] } +&{glClearBufferSubData QOpenGLFunctions_4_5_Compatibility::glClearBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b87f80 0xc820b6c000 0xc820b6c080 0xc820b6c100 0xc820b6c1a0 0xc820b6c220 0xc820b6c2a0] } +&{glClearBufferfi QOpenGLFunctions_4_5_Compatibility::glClearBufferfi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b6c3e0 0xc820b6c460 0xc820b6c4e0 0xc820b6c560] } +&{glClearBufferfv QOpenGLFunctions_4_5_Compatibility::glClearBufferfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b6c6c0 0xc820b6c740 0xc820b6c7c0] } +&{glClearBufferiv QOpenGLFunctions_4_5_Compatibility::glClearBufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b6c900 0xc820b6c980 0xc820b6ca00] } +&{glClearBufferuiv QOpenGLFunctions_4_5_Compatibility::glClearBufferuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b6cb40 0xc820b6cbc0 0xc820b6cc40] } +&{glClearColor QOpenGLFunctions_4_5_Compatibility::glClearColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b6cd80 0xc820b6ce00 0xc820b6ce80 0xc820b6cf00] } +&{glClearDepth QOpenGLFunctions_4_5_Compatibility::glClearDepth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b6d040] } +&{glClearDepthf QOpenGLFunctions_4_5_Compatibility::glClearDepthf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b6d1a0] } +&{glClearIndex QOpenGLFunctions_4_5_Compatibility::glClearIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b6d300] } +&{glClearNamedBufferData QOpenGLFunctions_4_5_Compatibility::glClearNamedBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b6d4a0 0xc820b6d520 0xc820b6d5a0 0xc820b6d620 0xc820b6d6c0] } +&{glClearNamedBufferSubData QOpenGLFunctions_4_5_Compatibility::glClearNamedBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b6d860 0xc820b6d8e0 0xc820b6d960 0xc820b6d9e0 0xc820b6da80 0xc820b6db00 0xc820b6db80] } +&{glClearNamedFramebufferfi QOpenGLFunctions_4_5_Compatibility::glClearNamedFramebufferfi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b6dd20 0xc820b6dda0 0xc820b6de20 0xc820b6dea0] } +&{glClearNamedFramebufferfv QOpenGLFunctions_4_5_Compatibility::glClearNamedFramebufferfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b34040 0xc820b340c0 0xc820b34140 0xc820b341c0] } +&{glClearNamedFramebufferiv QOpenGLFunctions_4_5_Compatibility::glClearNamedFramebufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b34360 0xc820b343e0 0xc820b34460 0xc820b344e0] } +&{glClearNamedFramebufferuiv QOpenGLFunctions_4_5_Compatibility::glClearNamedFramebufferuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b34680 0xc820b34700 0xc820b34780 0xc820b34800] } +&{glClearStencil QOpenGLFunctions_4_5_Compatibility::glClearStencil commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b34960] } +&{glClearTexImage QOpenGLFunctions_4_5_Compatibility::glClearTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b34aa0 0xc820b34b20 0xc820b34ba0 0xc820b34c20 0xc820b34cc0] } +&{glClearTexSubImage QOpenGLFunctions_4_5_Compatibility::glClearTexSubImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b34e60 0xc820b34ee0 0xc820b34f60 0xc820b34fe0 0xc820b35080 0xc820b35100 0xc820b35180 0xc820b35200 0xc820b352a0 0xc820b35320 0xc820b353a0] } +&{glClientActiveTexture QOpenGLFunctions_4_5_Compatibility::glClientActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b35540] } +&{glClientWaitSync QOpenGLFunctions_4_5_Compatibility::glClientWaitSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLenum [0xc820b35680 0xc820b35700 0xc820b35780] } +&{glClipControl QOpenGLFunctions_4_5_Compatibility::glClipControl commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b358c0 0xc820b35940] } +&{glClipPlane QOpenGLFunctions_4_5_Compatibility::glClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b35a80 0xc820b35b00] } +&{glColor3b QOpenGLFunctions_4_5_Compatibility::glColor3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b35c40 0xc820b35cc0 0xc820b35d40] } +&{glColor3bv QOpenGLFunctions_4_5_Compatibility::glColor3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b35ea0] } +&{glColor3d QOpenGLFunctions_4_5_Compatibility::glColor3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b35fe0 0xc820892060 0xc8208920e0] } +&{glColor3dv QOpenGLFunctions_4_5_Compatibility::glColor3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820892220] } +&{glColor3f QOpenGLFunctions_4_5_Compatibility::glColor3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820892360 0xc8208923e0 0xc820892460] } +&{glColor3fv QOpenGLFunctions_4_5_Compatibility::glColor3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8208925a0] } +&{glColor3i QOpenGLFunctions_4_5_Compatibility::glColor3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8208926e0 0xc820892760 0xc8208927e0] } +&{glColor3iv QOpenGLFunctions_4_5_Compatibility::glColor3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820892940] } +&{glColor3s QOpenGLFunctions_4_5_Compatibility::glColor3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820892a80 0xc820892b00 0xc820892b80] } +&{glColor3sv QOpenGLFunctions_4_5_Compatibility::glColor3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820892cc0] } +&{glColor3ub QOpenGLFunctions_4_5_Compatibility::glColor3ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820892e00 0xc820892e80 0xc820892f00] } +&{glColor3ubv QOpenGLFunctions_4_5_Compatibility::glColor3ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820893040] } +&{glColor3ui QOpenGLFunctions_4_5_Compatibility::glColor3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820893180 0xc820893200 0xc820893280] } +&{glColor3uiv QOpenGLFunctions_4_5_Compatibility::glColor3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8208933c0] } +&{glColor3us QOpenGLFunctions_4_5_Compatibility::glColor3us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820893500 0xc820893580 0xc820893600] } +&{glColor3usv QOpenGLFunctions_4_5_Compatibility::glColor3usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820893740] } +&{glColor4b QOpenGLFunctions_4_5_Compatibility::glColor4b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820893880 0xc820893900 0xc820893980 0xc820893a00] } +&{glColor4bv QOpenGLFunctions_4_5_Compatibility::glColor4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820893b60] } +&{glColor4d QOpenGLFunctions_4_5_Compatibility::glColor4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820893ca0 0xc820893d20 0xc820893da0 0xc820893e20] } +&{glColor4dv QOpenGLFunctions_4_5_Compatibility::glColor4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820893f60] } +&{glColor4f QOpenGLFunctions_4_5_Compatibility::glColor4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820abe0a0 0xc820abe120 0xc820abe1a0 0xc820abe220] } +&{glColor4fv QOpenGLFunctions_4_5_Compatibility::glColor4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820abe360] } +&{glColor4i QOpenGLFunctions_4_5_Compatibility::glColor4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820abe4a0 0xc820abe520 0xc820abe5a0 0xc820abe620] } +&{glColor4iv QOpenGLFunctions_4_5_Compatibility::glColor4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820abe780] } +&{glColor4s QOpenGLFunctions_4_5_Compatibility::glColor4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820abe8c0 0xc820abe940 0xc820abe9c0 0xc820abea40] } +&{glColor4sv QOpenGLFunctions_4_5_Compatibility::glColor4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820abeb80] } +&{glColor4ub QOpenGLFunctions_4_5_Compatibility::glColor4ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820abecc0 0xc820abed40 0xc820abedc0 0xc820abee40] } +&{glColor4ubv QOpenGLFunctions_4_5_Compatibility::glColor4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820abef80] } +&{glColor4ui QOpenGLFunctions_4_5_Compatibility::glColor4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820abf0c0 0xc820abf140 0xc820abf1c0 0xc820abf240] } +&{glColor4uiv QOpenGLFunctions_4_5_Compatibility::glColor4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820abf380] } +&{glColor4us QOpenGLFunctions_4_5_Compatibility::glColor4us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820abf4c0 0xc820abf540 0xc820abf5c0 0xc820abf640] } +&{glColor4usv QOpenGLFunctions_4_5_Compatibility::glColor4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820abf780] } +&{glColorMask QOpenGLFunctions_4_5_Compatibility::glColorMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820abf8c0 0xc820abf940 0xc820abf9c0 0xc820abfa40] } +&{glColorMaski QOpenGLFunctions_4_5_Compatibility::glColorMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820abfb80 0xc820abfc00 0xc820abfc80 0xc820abfd00 0xc820abfda0] } +&{glColorMaterial QOpenGLFunctions_4_5_Compatibility::glColorMaterial commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820abfee0 0xc820abff60] } +&{glColorP3ui QOpenGLFunctions_4_5_Compatibility::glColorP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b0a0a0 0xc820b0a120] } +&{glColorP3uiv QOpenGLFunctions_4_5_Compatibility::glColorP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b0a260 0xc820b0a2e0] } +&{glColorP4ui QOpenGLFunctions_4_5_Compatibility::glColorP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b0a420 0xc820b0a4a0] } +&{glColorP4uiv QOpenGLFunctions_4_5_Compatibility::glColorP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b0a5e0 0xc820b0a660] } +&{glColorPointer QOpenGLFunctions_4_5_Compatibility::glColorPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b0a7a0 0xc820b0a820 0xc820b0a8a0 0xc820b0a920] } +&{glColorSubTable QOpenGLFunctions_4_5_Compatibility::glColorSubTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b0aa60 0xc820b0aae0 0xc820b0ab60 0xc820b0abe0 0xc820b0ac80 0xc820b0ad00] } +&{glColorTable QOpenGLFunctions_4_5_Compatibility::glColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b0ae40 0xc820b0aec0 0xc820b0af40 0xc820b0afc0 0xc820b0b060 0xc820b0b0e0] } +&{glColorTableParameterfv QOpenGLFunctions_4_5_Compatibility::glColorTableParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b0b280 0xc820b0b300 0xc820b0b380] } +&{glColorTableParameteriv QOpenGLFunctions_4_5_Compatibility::glColorTableParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b0b520 0xc820b0b5a0 0xc820b0b620] } +&{glCompileShader QOpenGLFunctions_4_5_Compatibility::glCompileShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b0b780] } +&{glCompressedTexImage1D QOpenGLFunctions_4_5_Compatibility::glCompressedTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b0b920 0xc820b0b9a0 0xc820b0ba20 0xc820b0baa0 0xc820b0bb40 0xc820b0bbc0 0xc820b0bc40] } +&{glCompressedTexImage2D QOpenGLFunctions_4_5_Compatibility::glCompressedTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820b0bde0 0xc820b0be60 0xc820b0bee0 0xc820b0bf60 0xc820a68000 0xc820a68080 0xc820a68100 0xc820a68180] } +&{glCompressedTexImage3D QOpenGLFunctions_4_5_Compatibility::glCompressedTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a68320 0xc820a683a0 0xc820a68420 0xc820a684a0 0xc820a68540 0xc820a685c0 0xc820a68640 0xc820a686c0 0xc820a68760] } +&{glCompressedTexSubImage1D QOpenGLFunctions_4_5_Compatibility::glCompressedTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a68900 0xc820a68980 0xc820a68a00 0xc820a68a80 0xc820a68b20 0xc820a68ba0 0xc820a68c20] } +&{glCompressedTexSubImage2D QOpenGLFunctions_4_5_Compatibility::glCompressedTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a68dc0 0xc820a68e40 0xc820a68ec0 0xc820a68f40 0xc820a68fe0 0xc820a69060 0xc820a690e0 0xc820a69160 0xc820a69200] } +&{glCompressedTexSubImage3D QOpenGLFunctions_4_5_Compatibility::glCompressedTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a693a0 0xc820a69420 0xc820a694a0 0xc820a69520 0xc820a695c0 0xc820a69640 0xc820a696c0 0xc820a69740 0xc820a697e0 0xc820a69860 0xc820a698e0] } +&{glCompressedTextureSubImage1D QOpenGLFunctions_4_5_Compatibility::glCompressedTextureSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a69a80 0xc820a69b00 0xc820a69b80 0xc820a69c00 0xc820a69ca0 0xc820a69d20 0xc820a69da0] } +&{glCompressedTextureSubImage2D QOpenGLFunctions_4_5_Compatibility::glCompressedTextureSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a69f40 0xc820a69fc0 0xc820e48040 0xc820e480c0 0xc820e48160 0xc820e481e0 0xc820e48260 0xc820e482e0 0xc820e48380] } +&{glCompressedTextureSubImage3D QOpenGLFunctions_4_5_Compatibility::glCompressedTextureSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820e48520 0xc820e485a0 0xc820e48620 0xc820e486a0 0xc820e48740 0xc820e487c0 0xc820e48840 0xc820e488c0 0xc820e48960 0xc820e489e0 0xc820e48a60] } +&{glConvolutionFilter1D QOpenGLFunctions_4_5_Compatibility::glConvolutionFilter1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820e48c00 0xc820e48c80 0xc820e48d00 0xc820e48d80 0xc820e48e20 0xc820e48ea0] } +&{glConvolutionFilter2D QOpenGLFunctions_4_5_Compatibility::glConvolutionFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820e49040 0xc820e490c0 0xc820e49140 0xc820e491c0 0xc820e49260 0xc820e492e0 0xc820e49360] } +&{glConvolutionParameterf QOpenGLFunctions_4_5_Compatibility::glConvolutionParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820e49500 0xc820e49580 0xc820e49600] } +&{glConvolutionParameterfv QOpenGLFunctions_4_5_Compatibility::glConvolutionParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820e497a0 0xc820e49820 0xc820e498a0] } +&{glConvolutionParameteri QOpenGLFunctions_4_5_Compatibility::glConvolutionParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820e49a40 0xc820e49ac0 0xc820e49b40] } +&{glConvolutionParameteriv QOpenGLFunctions_4_5_Compatibility::glConvolutionParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820e49ce0 0xc820e49d60 0xc820e49de0] } +&{glCopyBufferSubData QOpenGLFunctions_4_5_Compatibility::glCopyBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820e49f80 0xc820e4c000 0xc820e4c080 0xc820e4c100 0xc820e4c1a0] } +&{glCopyColorSubTable QOpenGLFunctions_4_5_Compatibility::glCopyColorSubTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820e4c340 0xc820e4c3c0 0xc820e4c440 0xc820e4c4c0 0xc820e4c560] } +&{glCopyColorTable QOpenGLFunctions_4_5_Compatibility::glCopyColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820e4c6a0 0xc820e4c720 0xc820e4c7a0 0xc820e4c820 0xc820e4c8c0] } +&{glCopyConvolutionFilter1D QOpenGLFunctions_4_5_Compatibility::glCopyConvolutionFilter1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820e4ca60 0xc820e4cae0 0xc820e4cb60 0xc820e4cbe0 0xc820e4cc80] } +&{glCopyConvolutionFilter2D QOpenGLFunctions_4_5_Compatibility::glCopyConvolutionFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820e4ce20 0xc820e4cea0 0xc820e4cf20 0xc820e4cfa0 0xc820e4d040 0xc820e4d0c0] } +&{glCopyImageSubData QOpenGLFunctions_4_5_Compatibility::glCopyImageSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820e4d260 0xc820e4d2e0 0xc820e4d360 0xc820e4d3e0 0xc820e4d480 0xc820e4d500 0xc820e4d580 0xc820e4d600 0xc820e4d6a0 0xc820e4d720 0xc820e4d7a0 0xc820e4d820 0xc820e4d8a0 0xc820e4d920 0xc820e4d9a0] } +&{glCopyNamedBufferSubData QOpenGLFunctions_4_5_Compatibility::glCopyNamedBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820e4db40 0xc820e4dbc0 0xc820e4dc40 0xc820e4dcc0 0xc820e4dd60] } +&{glCopyPixels QOpenGLFunctions_4_5_Compatibility::glCopyPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820e4dea0 0xc820e4df20 0xc820e4dfa0 0xc820736020 0xc8207360c0] } +&{glCopyTexImage1D QOpenGLFunctions_4_5_Compatibility::glCopyTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820736200 0xc820736280 0xc820736300 0xc820736380 0xc820736420 0xc8207364a0 0xc820736520] } +&{glCopyTexImage2D QOpenGLFunctions_4_5_Compatibility::glCopyTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820736660 0xc8207366e0 0xc820736760 0xc8207367e0 0xc820736880 0xc820736900 0xc820736980 0xc820736a00] } +&{glCopyTexSubImage1D QOpenGLFunctions_4_5_Compatibility::glCopyTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820736ba0 0xc820736c20 0xc820736ca0 0xc820736d20 0xc820736dc0 0xc820736e40] } +&{glCopyTexSubImage2D QOpenGLFunctions_4_5_Compatibility::glCopyTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820736fe0 0xc820737060 0xc8207370e0 0xc820737160 0xc820737200 0xc820737280 0xc820737300 0xc820737380] } +&{glCopyTexSubImage3D QOpenGLFunctions_4_5_Compatibility::glCopyTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820737520 0xc8207375a0 0xc820737620 0xc8207376a0 0xc820737740 0xc8207377c0 0xc820737840 0xc8207378c0 0xc820737960] } +&{glCopyTextureSubImage1D QOpenGLFunctions_4_5_Compatibility::glCopyTextureSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820737b00 0xc820737b80 0xc820737c00 0xc820737c80 0xc820737d20 0xc820737da0] } +&{glCopyTextureSubImage2D QOpenGLFunctions_4_5_Compatibility::glCopyTextureSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820737f40 0xc820737fc0 0xc820ad2040 0xc820ad20c0 0xc820ad2160 0xc820ad21e0 0xc820ad2260 0xc820ad22e0] } +&{glCopyTextureSubImage3D QOpenGLFunctions_4_5_Compatibility::glCopyTextureSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820ad2480 0xc820ad2500 0xc820ad2580 0xc820ad2600 0xc820ad26a0 0xc820ad2720 0xc820ad27a0 0xc820ad2820 0xc820ad28c0] } +&{glCreateBuffers QOpenGLFunctions_4_5_Compatibility::glCreateBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820ad2a00 0xc820ad2a80] } +&{glCreateFramebuffers QOpenGLFunctions_4_5_Compatibility::glCreateFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820ad2c20 0xc820ad2ca0] } +&{glCreateProgram QOpenGLFunctions_4_5_Compatibility::glCreateProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLuint [] } +&{glCreateProgramPipelines QOpenGLFunctions_4_5_Compatibility::glCreateProgramPipelines commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820ad2ec0 0xc820ad2f40] } +&{glCreateQueries QOpenGLFunctions_4_5_Compatibility::glCreateQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820ad3080 0xc820ad3100 0xc820ad3180] } +&{glCreateRenderbuffers QOpenGLFunctions_4_5_Compatibility::glCreateRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820ad3320 0xc820ad33a0] } +&{glCreateSamplers QOpenGLFunctions_4_5_Compatibility::glCreateSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820ad34e0 0xc820ad3560] } +&{glCreateShader QOpenGLFunctions_4_5_Compatibility::glCreateShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLuint [0xc820ad36a0] } +&{glCreateShaderProgramv QOpenGLFunctions_4_5_Compatibility::glCreateShaderProgramv commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLuint [0xc820ad3840 0xc820ad38c0 0xc820ad3960] } +&{glCreateTextures QOpenGLFunctions_4_5_Compatibility::glCreateTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820ad3ae0 0xc820ad3b60 0xc820ad3be0] } +&{glCreateTransformFeedbacks QOpenGLFunctions_4_5_Compatibility::glCreateTransformFeedbacks commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820ad3d80 0xc820ad3e00] } +&{glCreateVertexArrays QOpenGLFunctions_4_5_Compatibility::glCreateVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820ad3fa0 0xc8209c2020] } +&{glCullFace QOpenGLFunctions_4_5_Compatibility::glCullFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8209c2180] } +&{glDebugMessageCallback QOpenGLFunctions_4_5_Compatibility::glDebugMessageCallback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8209c2320 0xc8209c23a0] } +&{glDebugMessageControl QOpenGLFunctions_4_5_Compatibility::glDebugMessageControl commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8209c2540 0xc8209c25c0 0xc8209c2640 0xc8209c26c0 0xc8209c2760 0xc8209c27e0] } +&{glDebugMessageInsert QOpenGLFunctions_4_5_Compatibility::glDebugMessageInsert commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8209c2980 0xc8209c2a00 0xc8209c2a80 0xc8209c2b00 0xc8209c2ba0 0xc8209c2c20] } +&{glDeleteBuffers QOpenGLFunctions_4_5_Compatibility::glDeleteBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8209c2d60 0xc8209c2de0] } +&{glDeleteFramebuffers QOpenGLFunctions_4_5_Compatibility::glDeleteFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8209c2f80 0xc8209c3000] } +&{glDeleteLists QOpenGLFunctions_4_5_Compatibility::glDeleteLists commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8209c3140 0xc8209c31c0] } +&{glDeleteProgram QOpenGLFunctions_4_5_Compatibility::glDeleteProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8209c3300] } +&{glDeleteProgramPipelines QOpenGLFunctions_4_5_Compatibility::glDeleteProgramPipelines commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8209c34a0 0xc8209c3520] } +&{glDeleteQueries QOpenGLFunctions_4_5_Compatibility::glDeleteQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8209c3660 0xc8209c36e0] } +&{glDeleteRenderbuffers QOpenGLFunctions_4_5_Compatibility::glDeleteRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8209c3880 0xc8209c3900] } +&{glDeleteSamplers QOpenGLFunctions_4_5_Compatibility::glDeleteSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8209c3a40 0xc8209c3ac0] } +&{glDeleteShader QOpenGLFunctions_4_5_Compatibility::glDeleteShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8209c3c00] } +&{glDeleteSync QOpenGLFunctions_4_5_Compatibility::glDeleteSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8209c3d60] } +&{glDeleteTextures QOpenGLFunctions_4_5_Compatibility::glDeleteTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8209c3ea0 0xc8209c3f20] } +&{glDeleteTransformFeedbacks QOpenGLFunctions_4_5_Compatibility::glDeleteTransformFeedbacks commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8208120c0 0xc820812140] } +&{glDeleteVertexArrays QOpenGLFunctions_4_5_Compatibility::glDeleteVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8208122e0 0xc820812360] } +&{glDepthFunc QOpenGLFunctions_4_5_Compatibility::glDepthFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8208124c0] } +&{glDepthMask QOpenGLFunctions_4_5_Compatibility::glDepthMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820812620] } +&{glDepthRange QOpenGLFunctions_4_5_Compatibility::glDepthRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820812760 0xc8208127e0] } +&{glDepthRangeArrayv QOpenGLFunctions_4_5_Compatibility::glDepthRangeArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820812980 0xc820812a00 0xc820812a80] } +&{glDepthRangeIndexed QOpenGLFunctions_4_5_Compatibility::glDepthRangeIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820812c20 0xc820812ca0 0xc820812d20] } +&{glDepthRangef QOpenGLFunctions_4_5_Compatibility::glDepthRangef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820812e60 0xc820812ee0] } +&{glDetachShader QOpenGLFunctions_4_5_Compatibility::glDetachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820813020 0xc8208130a0] } +&{glDisable QOpenGLFunctions_4_5_Compatibility::glDisable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820813200] } +&{glDisableClientState QOpenGLFunctions_4_5_Compatibility::glDisableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8208133a0] } +&{glDisableVertexArrayAttrib QOpenGLFunctions_4_5_Compatibility::glDisableVertexArrayAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820813540 0xc8208135c0] } +&{glDisableVertexAttribArray QOpenGLFunctions_4_5_Compatibility::glDisableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820813760] } +&{glDisablei QOpenGLFunctions_4_5_Compatibility::glDisablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8208138a0 0xc820813920] } +&{glDispatchCompute QOpenGLFunctions_4_5_Compatibility::glDispatchCompute commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820813ac0 0xc820813b40 0xc820813bc0] } +&{glDispatchComputeIndirect QOpenGLFunctions_4_5_Compatibility::glDispatchComputeIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820813d60] } +&{glDrawArrays QOpenGLFunctions_4_5_Compatibility::glDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820813ea0 0xc820813f20 0xc820813fa0] } +&{glDrawArraysIndirect QOpenGLFunctions_4_5_Compatibility::glDrawArraysIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820664140 0xc8206641c0] } +&{glDrawArraysInstanced QOpenGLFunctions_4_5_Compatibility::glDrawArraysInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820664360 0xc8206643e0 0xc820664460 0xc8206644e0] } +&{glDrawArraysInstancedBaseInstance QOpenGLFunctions_4_5_Compatibility::glDrawArraysInstancedBaseInstance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820664620 0xc8206646a0 0xc820664720 0xc8206647a0 0xc820664840] } +&{glDrawBuffer QOpenGLFunctions_4_5_Compatibility::glDrawBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8206649a0] } +&{glDrawBuffers QOpenGLFunctions_4_5_Compatibility::glDrawBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820664ae0 0xc820664b60] } +&{glDrawElements QOpenGLFunctions_4_5_Compatibility::glDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820664ca0 0xc820664d20 0xc820664da0 0xc820664e20] } +&{glDrawElementsBaseVertex QOpenGLFunctions_4_5_Compatibility::glDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820664fc0 0xc820665040 0xc8206650c0 0xc820665140 0xc8206651e0] } +&{glDrawElementsIndirect QOpenGLFunctions_4_5_Compatibility::glDrawElementsIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820665380 0xc820665400 0xc820665480] } +&{glDrawElementsInstanced QOpenGLFunctions_4_5_Compatibility::glDrawElementsInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820665620 0xc8206656a0 0xc820665720 0xc8206657a0 0xc820665840] } +&{glDrawElementsInstancedBaseInstance QOpenGLFunctions_4_5_Compatibility::glDrawElementsInstancedBaseInstance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820665980 0xc820665a00 0xc820665a80 0xc820665b00 0xc820665ba0 0xc820665c20] } +&{glDrawElementsInstancedBaseVertex QOpenGLFunctions_4_5_Compatibility::glDrawElementsInstancedBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820665d60 0xc820665de0 0xc820665e60 0xc820665ee0 0xc820665f80 0xc82090c000] } +&{glDrawElementsInstancedBaseVertexBaseInstance QOpenGLFunctions_4_5_Compatibility::glDrawElementsInstancedBaseVertexBaseInstance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82090c140 0xc82090c1c0 0xc82090c240 0xc82090c2c0 0xc82090c360 0xc82090c3e0 0xc82090c460] } +&{glDrawPixels QOpenGLFunctions_4_5_Compatibility::glDrawPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82090c5a0 0xc82090c620 0xc82090c6a0 0xc82090c720 0xc82090c7c0] } +&{glDrawRangeElements QOpenGLFunctions_4_5_Compatibility::glDrawRangeElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82090c960 0xc82090c9e0 0xc82090ca60 0xc82090cae0 0xc82090cb80 0xc82090cc00] } +&{glDrawRangeElementsBaseVertex QOpenGLFunctions_4_5_Compatibility::glDrawRangeElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82090cda0 0xc82090ce20 0xc82090cea0 0xc82090cf20 0xc82090cfc0 0xc82090d040 0xc82090d0c0] } +&{glDrawTransformFeedback QOpenGLFunctions_4_5_Compatibility::glDrawTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82090d260 0xc82090d2e0] } +&{glDrawTransformFeedbackInstanced QOpenGLFunctions_4_5_Compatibility::glDrawTransformFeedbackInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82090d480 0xc82090d500 0xc82090d580] } +&{glDrawTransformFeedbackStream QOpenGLFunctions_4_5_Compatibility::glDrawTransformFeedbackStream commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82090d720 0xc82090d7a0 0xc82090d820] } +&{glDrawTransformFeedbackStreamInstanced QOpenGLFunctions_4_5_Compatibility::glDrawTransformFeedbackStreamInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82090d960 0xc82090d9e0 0xc82090da60 0xc82090dae0] } +&{glEdgeFlag QOpenGLFunctions_4_5_Compatibility::glEdgeFlag commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82090dc40] } +&{glEdgeFlagPointer QOpenGLFunctions_4_5_Compatibility::glEdgeFlagPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82090dde0 0xc82090de60] } +&{glEdgeFlagv QOpenGLFunctions_4_5_Compatibility::glEdgeFlagv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82090dfc0] } +&{glEnable QOpenGLFunctions_4_5_Compatibility::glEnable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a30160] } +&{glEnableClientState QOpenGLFunctions_4_5_Compatibility::glEnableClientState commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a30300] } +&{glEnableVertexArrayAttrib QOpenGLFunctions_4_5_Compatibility::glEnableVertexArrayAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a304a0 0xc820a30520] } +&{glEnableVertexAttribArray QOpenGLFunctions_4_5_Compatibility::glEnableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a306c0] } +&{glEnablei QOpenGLFunctions_4_5_Compatibility::glEnablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a30800 0xc820a30880] } +&{glEnd QOpenGLFunctions_4_5_Compatibility::glEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [] } +&{glEndConditionalRender QOpenGLFunctions_4_5_Compatibility::glEndConditionalRender commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [] } +&{glEndList QOpenGLFunctions_4_5_Compatibility::glEndList commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [] } +&{glEndQuery QOpenGLFunctions_4_5_Compatibility::glEndQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a30b80] } +&{glEndQueryIndexed QOpenGLFunctions_4_5_Compatibility::glEndQueryIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a30d20 0xc820a30da0] } +&{glEndTransformFeedback QOpenGLFunctions_4_5_Compatibility::glEndTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [] } +&{glEvalCoord1d QOpenGLFunctions_4_5_Compatibility::glEvalCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a30fe0] } +&{glEvalCoord1dv QOpenGLFunctions_4_5_Compatibility::glEvalCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a31120] } +&{glEvalCoord1f QOpenGLFunctions_4_5_Compatibility::glEvalCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a31280] } +&{glEvalCoord1fv QOpenGLFunctions_4_5_Compatibility::glEvalCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a313c0] } +&{glEvalCoord2d QOpenGLFunctions_4_5_Compatibility::glEvalCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a31500 0xc820a31580] } +&{glEvalCoord2dv QOpenGLFunctions_4_5_Compatibility::glEvalCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a316c0] } +&{glEvalCoord2f QOpenGLFunctions_4_5_Compatibility::glEvalCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a31800 0xc820a31880] } +&{glEvalCoord2fv QOpenGLFunctions_4_5_Compatibility::glEvalCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a319c0] } +&{glEvalMesh1 QOpenGLFunctions_4_5_Compatibility::glEvalMesh1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a31b00 0xc820a31b80 0xc820a31c00] } +&{glEvalMesh2 QOpenGLFunctions_4_5_Compatibility::glEvalMesh2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a31d40 0xc820a31dc0 0xc820a31e40 0xc820a31ec0 0xc820a31f60] } +&{glEvalPoint1 QOpenGLFunctions_4_5_Compatibility::glEvalPoint1 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8208960c0] } +&{glEvalPoint2 QOpenGLFunctions_4_5_Compatibility::glEvalPoint2 commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820896200 0xc820896280] } +&{glFeedbackBuffer QOpenGLFunctions_4_5_Compatibility::glFeedbackBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8208963c0 0xc820896440 0xc8208964c0] } +&{glFenceSync QOpenGLFunctions_4_5_Compatibility::glFenceSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLsync [0xc820896600 0xc820896680] } +&{glFinish QOpenGLFunctions_4_5_Compatibility::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [] } +&{glFlush QOpenGLFunctions_4_5_Compatibility::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [] } +&{glFlushMappedBufferRange QOpenGLFunctions_4_5_Compatibility::glFlushMappedBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8208968e0 0xc820896960 0xc8208969e0] } +&{glFlushMappedNamedBufferRange QOpenGLFunctions_4_5_Compatibility::glFlushMappedNamedBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820896b80 0xc820896c00 0xc820896c80] } +&{glFogCoordPointer QOpenGLFunctions_4_5_Compatibility::glFogCoordPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820896e20 0xc820896ea0 0xc820896f20] } +&{glFogCoordd QOpenGLFunctions_4_5_Compatibility::glFogCoordd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8208970a0] } +&{glFogCoorddv QOpenGLFunctions_4_5_Compatibility::glFogCoorddv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8208971e0] } +&{glFogCoordf QOpenGLFunctions_4_5_Compatibility::glFogCoordf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820897340] } +&{glFogCoordfv QOpenGLFunctions_4_5_Compatibility::glFogCoordfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820897480] } +&{glFogf QOpenGLFunctions_4_5_Compatibility::glFogf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8208975c0 0xc820897640] } +&{glFogfv QOpenGLFunctions_4_5_Compatibility::glFogfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820897780 0xc820897800] } +&{glFogi QOpenGLFunctions_4_5_Compatibility::glFogi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820897940 0xc8208979c0] } +&{glFogiv QOpenGLFunctions_4_5_Compatibility::glFogiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820897b00 0xc820897b80] } +&{glFramebufferParameteri QOpenGLFunctions_4_5_Compatibility::glFramebufferParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820897d20 0xc820897da0 0xc820897e20] } +&{glFramebufferRenderbuffer QOpenGLFunctions_4_5_Compatibility::glFramebufferRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820897fc0 0xc820752040 0xc8207520e0 0xc8207521a0] } +&{glFramebufferTexture QOpenGLFunctions_4_5_Compatibility::glFramebufferTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820752340 0xc8207523c0 0xc820752440 0xc8207524c0] } +&{glFramebufferTexture1D QOpenGLFunctions_4_5_Compatibility::glFramebufferTexture1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820752660 0xc8207526e0 0xc820752760 0xc8207527e0 0xc820752880] } +&{glFramebufferTexture2D QOpenGLFunctions_4_5_Compatibility::glFramebufferTexture2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820752a20 0xc820752aa0 0xc820752b20 0xc820752ba0 0xc820752c40] } +&{glFramebufferTexture3D QOpenGLFunctions_4_5_Compatibility::glFramebufferTexture3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820752de0 0xc820752e60 0xc820752ee0 0xc820752f60 0xc820753000 0xc820753080] } +&{glFramebufferTextureLayer QOpenGLFunctions_4_5_Compatibility::glFramebufferTextureLayer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820753220 0xc8207532a0 0xc820753320 0xc8207533a0 0xc820753440] } +&{glFrontFace QOpenGLFunctions_4_5_Compatibility::glFrontFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8207535a0] } +&{glFrustum QOpenGLFunctions_4_5_Compatibility::glFrustum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8207536e0 0xc820753760 0xc8207537e0 0xc820753860 0xc820753900 0xc820753980] } +&{glGenBuffers QOpenGLFunctions_4_5_Compatibility::glGenBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820753ac0 0xc820753b40] } +&{glGenFramebuffers QOpenGLFunctions_4_5_Compatibility::glGenFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820753ce0 0xc820753d60] } +&{glGenLists QOpenGLFunctions_4_5_Compatibility::glGenLists commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLuint [0xc820753ec0] } +&{glGenProgramPipelines QOpenGLFunctions_4_5_Compatibility::glGenProgramPipelines commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820828060 0xc8208280e0] } +&{glGenQueries QOpenGLFunctions_4_5_Compatibility::glGenQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820828220 0xc8208282a0] } +&{glGenRenderbuffers QOpenGLFunctions_4_5_Compatibility::glGenRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820828440 0xc8208284c0] } +&{glGenSamplers QOpenGLFunctions_4_5_Compatibility::glGenSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820828600 0xc820828680] } +&{glGenTextures QOpenGLFunctions_4_5_Compatibility::glGenTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8208287c0 0xc820828840] } +&{glGenTransformFeedbacks QOpenGLFunctions_4_5_Compatibility::glGenTransformFeedbacks commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8208289e0 0xc820828a60] } +&{glGenVertexArrays QOpenGLFunctions_4_5_Compatibility::glGenVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820828c00 0xc820828c80] } +&{glGenerateMipmap QOpenGLFunctions_4_5_Compatibility::glGenerateMipmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820828dc0] } +&{glGenerateTextureMipmap QOpenGLFunctions_4_5_Compatibility::glGenerateTextureMipmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820828f60] } +&{glGetActiveAtomicCounterBufferiv QOpenGLFunctions_4_5_Compatibility::glGetActiveAtomicCounterBufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820829100 0xc820829180 0xc820829200 0xc820829280] } +&{glGetActiveAttrib QOpenGLFunctions_4_5_Compatibility::glGetActiveAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820829420 0xc8208294a0 0xc820829520 0xc8208295a0 0xc820829640 0xc8208296c0 0xc820829740] } +&{glGetActiveSubroutineName QOpenGLFunctions_4_5_Compatibility::glGetActiveSubroutineName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8208298e0 0xc820829960 0xc8208299e0 0xc820829a60 0xc820829b00 0xc820829b80] } +&{glGetActiveSubroutineUniformName QOpenGLFunctions_4_5_Compatibility::glGetActiveSubroutineUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820829d20 0xc820829da0 0xc820829e20 0xc820829ea0 0xc820829f40 0xc820829fc0] } +&{glGetActiveSubroutineUniformiv QOpenGLFunctions_4_5_Compatibility::glGetActiveSubroutineUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82067a160 0xc82067a1e0 0xc82067a260 0xc82067a2e0 0xc82067a380] } +&{glGetActiveUniform QOpenGLFunctions_4_5_Compatibility::glGetActiveUniform commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82067a520 0xc82067a5a0 0xc82067a620 0xc82067a6a0 0xc82067a740 0xc82067a7c0 0xc82067a840] } +&{glGetActiveUniformBlockName QOpenGLFunctions_4_5_Compatibility::glGetActiveUniformBlockName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82067a9e0 0xc82067aa80 0xc82067ab40 0xc82067abc0 0xc82067ac60] } +&{glGetActiveUniformBlockiv QOpenGLFunctions_4_5_Compatibility::glGetActiveUniformBlockiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82067ae00 0xc82067aea0 0xc82067af60 0xc82067afe0] } +&{glGetActiveUniformName QOpenGLFunctions_4_5_Compatibility::glGetActiveUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82067b180 0xc82067b200 0xc82067b280 0xc82067b300 0xc82067b3a0] } +&{glGetActiveUniformsiv QOpenGLFunctions_4_5_Compatibility::glGetActiveUniformsiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82067b540 0xc82067b5c0 0xc82067b640 0xc82067b6c0 0xc82067b760] } +&{glGetAttachedShaders QOpenGLFunctions_4_5_Compatibility::glGetAttachedShaders commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82067b900 0xc82067b980 0xc82067ba00 0xc82067ba80] } +&{glGetAttribLocation QOpenGLFunctions_4_5_Compatibility::glGetAttribLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLint [0xc82067bc20 0xc82067bca0] } +&{glGetBooleani_v QOpenGLFunctions_4_5_Compatibility::glGetBooleani_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82067bde0 0xc82067be60 0xc82067bee0] } +&{glGetBooleanv QOpenGLFunctions_4_5_Compatibility::glGetBooleanv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8207aa020 0xc8207aa0a0] } +&{glGetBufferParameteri64v QOpenGLFunctions_4_5_Compatibility::glGetBufferParameteri64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8207aa240 0xc8207aa2c0 0xc8207aa340] } +&{glGetBufferParameteriv QOpenGLFunctions_4_5_Compatibility::glGetBufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8207aa4e0 0xc8207aa560 0xc8207aa5e0] } +&{glGetBufferPointerv QOpenGLFunctions_4_5_Compatibility::glGetBufferPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8207aa780 0xc8207aa800 0xc8207aa880] } +&{glGetBufferSubData QOpenGLFunctions_4_5_Compatibility::glGetBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8207aaa20 0xc8207aaaa0 0xc8207aab20 0xc8207aaba0] } +&{glGetClipPlane QOpenGLFunctions_4_5_Compatibility::glGetClipPlane commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8207aace0 0xc8207aad60] } +&{glGetColorTable QOpenGLFunctions_4_5_Compatibility::glGetColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8207aaea0 0xc8207aaf20 0xc8207aafa0 0xc8207ab020] } +&{glGetColorTableParameterfv QOpenGLFunctions_4_5_Compatibility::glGetColorTableParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8207ab1c0 0xc8207ab240 0xc8207ab2c0] } +&{glGetColorTableParameteriv QOpenGLFunctions_4_5_Compatibility::glGetColorTableParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8207ab460 0xc8207ab4e0 0xc8207ab560] } +&{glGetCompressedTexImage QOpenGLFunctions_4_5_Compatibility::glGetCompressedTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8207ab700 0xc8207ab780 0xc8207ab800] } +&{glGetCompressedTextureImage QOpenGLFunctions_4_5_Compatibility::glGetCompressedTextureImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8207ab9a0 0xc8207aba20 0xc8207abaa0 0xc8207abb20] } +&{glGetCompressedTextureSubImage QOpenGLFunctions_4_5_Compatibility::glGetCompressedTextureSubImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8207abcc0 0xc8207abd40 0xc8207abdc0 0xc8207abe40 0xc8207abee0 0xc8207abf60 0xc8207abfe0 0xc820580060 0xc820580100 0xc820580180] } +&{glGetConvolutionFilter QOpenGLFunctions_4_5_Compatibility::glGetConvolutionFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820580320 0xc8205803a0 0xc820580420 0xc8205804a0] } +&{glGetConvolutionParameterfv QOpenGLFunctions_4_5_Compatibility::glGetConvolutionParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820580640 0xc8205806c0 0xc820580740] } +&{glGetConvolutionParameteriv QOpenGLFunctions_4_5_Compatibility::glGetConvolutionParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8205808e0 0xc820580960 0xc8205809e0] } +&{glGetDebugMessageLog QOpenGLFunctions_4_5_Compatibility::glGetDebugMessageLog commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLuint [0xc820580b80 0xc820580c00 0xc820580c80 0xc820580d00 0xc820580da0 0xc820580e20 0xc820580ea0 0xc820580f20] } +&{glGetDoublei_v QOpenGLFunctions_4_5_Compatibility::glGetDoublei_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820581060 0xc8205810e0 0xc820581160] } +&{glGetDoublev QOpenGLFunctions_4_5_Compatibility::glGetDoublev commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8205812a0 0xc820581320] } +&{glGetError QOpenGLFunctions_4_5_Compatibility::glGetError commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLenum [] } +&{glGetFloati_v QOpenGLFunctions_4_5_Compatibility::glGetFloati_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8205814e0 0xc820581560 0xc8205815e0] } +&{glGetFloatv QOpenGLFunctions_4_5_Compatibility::glGetFloatv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820581720 0xc8205817a0] } +&{glGetFragDataIndex QOpenGLFunctions_4_5_Compatibility::glGetFragDataIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLint [0xc820581940 0xc8205819c0] } +&{glGetFragDataLocation QOpenGLFunctions_4_5_Compatibility::glGetFragDataLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLint [0xc820581b60 0xc820581be0] } +&{glGetFramebufferAttachmentParameteriv QOpenGLFunctions_4_5_Compatibility::glGetFramebufferAttachmentParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820581d20 0xc820581da0 0xc820581e20 0xc820581ea0] } +&{glGetFramebufferParameteriv QOpenGLFunctions_4_5_Compatibility::glGetFramebufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82070c040 0xc82070c0c0 0xc82070c140] } +&{glGetGraphicsResetStatus QOpenGLFunctions_4_5_Compatibility::glGetGraphicsResetStatus commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLenum [] } +&{glGetHistogram QOpenGLFunctions_4_5_Compatibility::glGetHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82070c340 0xc82070c3c0 0xc82070c440 0xc82070c4c0 0xc82070c560] } +&{glGetHistogramParameterfv QOpenGLFunctions_4_5_Compatibility::glGetHistogramParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82070c700 0xc82070c780 0xc82070c800] } +&{glGetHistogramParameteriv QOpenGLFunctions_4_5_Compatibility::glGetHistogramParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82070c9a0 0xc82070ca20 0xc82070caa0] } +&{glGetInteger64i_v QOpenGLFunctions_4_5_Compatibility::glGetInteger64i_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82070cc40 0xc82070ccc0 0xc82070cd40] } +&{glGetInteger64v QOpenGLFunctions_4_5_Compatibility::glGetInteger64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82070ce80 0xc82070cf00] } +&{glGetIntegeri_v QOpenGLFunctions_4_5_Compatibility::glGetIntegeri_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82070d040 0xc82070d0c0 0xc82070d140] } +&{glGetIntegerv QOpenGLFunctions_4_5_Compatibility::glGetIntegerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82070d280 0xc82070d300] } +&{glGetInternalformati64v QOpenGLFunctions_4_5_Compatibility::glGetInternalformati64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82070d4a0 0xc82070d520 0xc82070d5a0 0xc82070d620 0xc82070d6c0] } +&{glGetInternalformativ QOpenGLFunctions_4_5_Compatibility::glGetInternalformativ commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82070d860 0xc82070d8e0 0xc82070d960 0xc82070d9e0 0xc82070da80] } +&{glGetLightfv QOpenGLFunctions_4_5_Compatibility::glGetLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82070dbc0 0xc82070dc40 0xc82070dcc0] } +&{glGetLightiv QOpenGLFunctions_4_5_Compatibility::glGetLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82070de00 0xc82070de80 0xc82070df00] } +&{glGetMapdv QOpenGLFunctions_4_5_Compatibility::glGetMapdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8206e2040 0xc8206e20c0 0xc8206e2140] } +&{glGetMapfv QOpenGLFunctions_4_5_Compatibility::glGetMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8206e2280 0xc8206e2300 0xc8206e2380] } +&{glGetMapiv QOpenGLFunctions_4_5_Compatibility::glGetMapiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8206e24c0 0xc8206e2540 0xc8206e25c0] } +&{glGetMaterialfv QOpenGLFunctions_4_5_Compatibility::glGetMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8206e2700 0xc8206e2780 0xc8206e2800] } +&{glGetMaterialiv QOpenGLFunctions_4_5_Compatibility::glGetMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8206e2940 0xc8206e29c0 0xc8206e2a40] } +&{glGetMinmax QOpenGLFunctions_4_5_Compatibility::glGetMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8206e2b80 0xc8206e2c00 0xc8206e2c80 0xc8206e2d00 0xc8206e2da0] } +&{glGetMinmaxParameterfv QOpenGLFunctions_4_5_Compatibility::glGetMinmaxParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8206e2f40 0xc8206e2fc0 0xc8206e3040] } +&{glGetMinmaxParameteriv QOpenGLFunctions_4_5_Compatibility::glGetMinmaxParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8206e31e0 0xc8206e3260 0xc8206e32e0] } +&{glGetMultisamplefv QOpenGLFunctions_4_5_Compatibility::glGetMultisamplefv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8206e3480 0xc8206e3500 0xc8206e3580] } +&{glGetNamedBufferParameteri64v QOpenGLFunctions_4_5_Compatibility::glGetNamedBufferParameteri64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8206e3720 0xc8206e37a0 0xc8206e3820] } +&{glGetNamedBufferParameteriv QOpenGLFunctions_4_5_Compatibility::glGetNamedBufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8206e39c0 0xc8206e3a40 0xc8206e3ac0] } +&{glGetNamedBufferPointerv QOpenGLFunctions_4_5_Compatibility::glGetNamedBufferPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8206e3c60 0xc8206e3ce0 0xc8206e3d60] } +&{glGetNamedBufferSubData QOpenGLFunctions_4_5_Compatibility::glGetNamedBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8206e3f00 0xc8206e3f80 0xc820680000 0xc820680080] } +&{glGetNamedFramebufferAttachmentParameteriv QOpenGLFunctions_4_5_Compatibility::glGetNamedFramebufferAttachmentParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8206801c0 0xc820680240 0xc8206802c0 0xc820680340] } +&{glGetNamedFramebufferParameteriv QOpenGLFunctions_4_5_Compatibility::glGetNamedFramebufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8206804e0 0xc820680560 0xc8206805e0] } +&{glGetNamedRenderbufferParameteriv QOpenGLFunctions_4_5_Compatibility::glGetNamedRenderbufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820680720 0xc8206807a0 0xc820680820] } +&{glGetObjectLabel QOpenGLFunctions_4_5_Compatibility::glGetObjectLabel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820680960 0xc8206809e0 0xc820680a60 0xc820680ae0 0xc820680b80] } +&{glGetObjectPtrLabel QOpenGLFunctions_4_5_Compatibility::glGetObjectPtrLabel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820680d20 0xc820680da0 0xc820680e20 0xc820680ea0] } +&{glGetPixelMapfv QOpenGLFunctions_4_5_Compatibility::glGetPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820680fe0 0xc820681060] } +&{glGetPixelMapuiv QOpenGLFunctions_4_5_Compatibility::glGetPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8206811a0 0xc820681220] } +&{glGetPixelMapusv QOpenGLFunctions_4_5_Compatibility::glGetPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820681360 0xc8206813e0] } +&{glGetPointerv QOpenGLFunctions_4_5_Compatibility::glGetPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820681520 0xc8206815a0] } +&{glGetPolygonStipple QOpenGLFunctions_4_5_Compatibility::glGetPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820681740] } +&{glGetProgramBinary QOpenGLFunctions_4_5_Compatibility::glGetProgramBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8206818e0 0xc820681960 0xc8206819e0 0xc820681a60 0xc820681b00] } +&{glGetProgramInfoLog QOpenGLFunctions_4_5_Compatibility::glGetProgramInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820681ca0 0xc820681d20 0xc820681da0 0xc820681e20] } +&{glGetProgramInterfaceiv QOpenGLFunctions_4_5_Compatibility::glGetProgramInterfaceiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820681fc0 0xc820632040 0xc8206320c0 0xc820632140] } +&{glGetProgramPipelineInfoLog QOpenGLFunctions_4_5_Compatibility::glGetProgramPipelineInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8206322e0 0xc820632360 0xc8206323e0 0xc820632460] } +&{glGetProgramPipelineiv QOpenGLFunctions_4_5_Compatibility::glGetProgramPipelineiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820632600 0xc820632680 0xc820632700] } +&{glGetProgramResourceIndex QOpenGLFunctions_4_5_Compatibility::glGetProgramResourceIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLuint [0xc8206328a0 0xc820632920 0xc8206329a0] } +&{glGetProgramResourceLocation QOpenGLFunctions_4_5_Compatibility::glGetProgramResourceLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLint [0xc820632b40 0xc820632bc0 0xc820632c40] } +&{glGetProgramResourceLocationIndex QOpenGLFunctions_4_5_Compatibility::glGetProgramResourceLocationIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLint [0xc820632d80 0xc820632e00 0xc820632e80] } +&{glGetProgramResourceName QOpenGLFunctions_4_5_Compatibility::glGetProgramResourceName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820633020 0xc8206330a0 0xc820633120 0xc8206331a0 0xc820633240 0xc8206332c0] } +&{glGetProgramResourceiv QOpenGLFunctions_4_5_Compatibility::glGetProgramResourceiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820633460 0xc8206334e0 0xc820633560 0xc8206335e0 0xc820633680 0xc820633700 0xc820633780 0xc820633800] } +&{glGetProgramStageiv QOpenGLFunctions_4_5_Compatibility::glGetProgramStageiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8206339a0 0xc820633a20 0xc820633aa0 0xc820633b20] } +&{glGetProgramiv QOpenGLFunctions_4_5_Compatibility::glGetProgramiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820633c60 0xc820633ce0 0xc820633d60] } +&{glGetQueryIndexediv QOpenGLFunctions_4_5_Compatibility::glGetQueryIndexediv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820633f00 0xc820633f80 0xc8205f2000 0xc8205f2080] } +&{glGetQueryObjecti64v QOpenGLFunctions_4_5_Compatibility::glGetQueryObjecti64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8205f2220 0xc8205f22a0 0xc8205f2320] } +&{glGetQueryObjectiv QOpenGLFunctions_4_5_Compatibility::glGetQueryObjectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8205f24c0 0xc8205f2540 0xc8205f25c0] } +&{glGetQueryObjectui64v QOpenGLFunctions_4_5_Compatibility::glGetQueryObjectui64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8205f2760 0xc8205f27e0 0xc8205f2860] } +&{glGetQueryObjectuiv QOpenGLFunctions_4_5_Compatibility::glGetQueryObjectuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8205f2a00 0xc8205f2a80 0xc8205f2b00] } +&{glGetQueryiv QOpenGLFunctions_4_5_Compatibility::glGetQueryiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8205f2c40 0xc8205f2cc0 0xc8205f2d40] } +&{glGetRenderbufferParameteriv QOpenGLFunctions_4_5_Compatibility::glGetRenderbufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8205f2ee0 0xc8205f2f60 0xc8205f2fe0] } +&{glGetSamplerParameterIiv QOpenGLFunctions_4_5_Compatibility::glGetSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8205f3180 0xc8205f3200 0xc8205f3280] } +&{glGetSamplerParameterIuiv QOpenGLFunctions_4_5_Compatibility::glGetSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8205f3420 0xc8205f34a0 0xc8205f3520] } +&{glGetSamplerParameterfv QOpenGLFunctions_4_5_Compatibility::glGetSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8205f36c0 0xc8205f3740 0xc8205f37c0] } +&{glGetSamplerParameteriv QOpenGLFunctions_4_5_Compatibility::glGetSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8205f3960 0xc8205f39e0 0xc8205f3a60] } +&{glGetSeparableFilter QOpenGLFunctions_4_5_Compatibility::glGetSeparableFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8205f3c00 0xc8205f3c80 0xc8205f3d00 0xc8205f3d80 0xc8205f3e20 0xc8205f3ea0] } +&{glGetShaderInfoLog QOpenGLFunctions_4_5_Compatibility::glGetShaderInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8208ba040 0xc8208ba0c0 0xc8208ba140 0xc8208ba1c0] } +&{glGetShaderPrecisionFormat QOpenGLFunctions_4_5_Compatibility::glGetShaderPrecisionFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8208ba360 0xc8208ba3e0 0xc8208ba460 0xc8208ba4e0] } +&{glGetShaderSource QOpenGLFunctions_4_5_Compatibility::glGetShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8208ba680 0xc8208ba700 0xc8208ba780 0xc8208ba800] } +&{glGetShaderiv QOpenGLFunctions_4_5_Compatibility::glGetShaderiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8208ba940 0xc8208ba9c0 0xc8208baa40] } +&{glGetString QOpenGLFunctions_4_5_Compatibility::glGetString commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false const GLubyte * [0xc8208bab80] } +&{glGetStringi QOpenGLFunctions_4_5_Compatibility::glGetStringi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false const GLubyte * [0xc8208bacc0 0xc8208bad40] } +&{glGetSubroutineIndex QOpenGLFunctions_4_5_Compatibility::glGetSubroutineIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLuint [0xc8208baee0 0xc8208baf60 0xc8208bafe0] } +&{glGetSubroutineUniformLocation QOpenGLFunctions_4_5_Compatibility::glGetSubroutineUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLint [0xc8208bb180 0xc8208bb200 0xc8208bb280] } +&{glGetSynciv QOpenGLFunctions_4_5_Compatibility::glGetSynciv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8208bb3c0 0xc8208bb440 0xc8208bb4c0 0xc8208bb540 0xc8208bb5e0] } +&{glGetTexEnvfv QOpenGLFunctions_4_5_Compatibility::glGetTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8208bb720 0xc8208bb7a0 0xc8208bb820] } +&{glGetTexEnviv QOpenGLFunctions_4_5_Compatibility::glGetTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8208bb960 0xc8208bb9e0 0xc8208bba60] } +&{glGetTexGendv QOpenGLFunctions_4_5_Compatibility::glGetTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8208bbba0 0xc8208bbc20 0xc8208bbca0] } +&{glGetTexGenfv QOpenGLFunctions_4_5_Compatibility::glGetTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8208bbde0 0xc8208bbe60 0xc8208bbee0] } +&{glGetTexGeniv QOpenGLFunctions_4_5_Compatibility::glGetTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820236020 0xc8202360a0 0xc820236120] } +&{glGetTexImage QOpenGLFunctions_4_5_Compatibility::glGetTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820236260 0xc8202362e0 0xc820236360 0xc8202363e0 0xc820236480] } +&{glGetTexLevelParameterfv QOpenGLFunctions_4_5_Compatibility::glGetTexLevelParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820236620 0xc8202366a0 0xc820236720 0xc8202367a0] } +&{glGetTexLevelParameteriv QOpenGLFunctions_4_5_Compatibility::glGetTexLevelParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820236940 0xc8202369c0 0xc820236a40 0xc820236ac0] } +&{glGetTexParameterIiv QOpenGLFunctions_4_5_Compatibility::glGetTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820236c60 0xc820236ce0 0xc820236d60] } +&{glGetTexParameterIuiv QOpenGLFunctions_4_5_Compatibility::glGetTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820236f00 0xc820236f80 0xc820237000] } +&{glGetTexParameterfv QOpenGLFunctions_4_5_Compatibility::glGetTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8202371a0 0xc820237220 0xc8202372a0] } +&{glGetTexParameteriv QOpenGLFunctions_4_5_Compatibility::glGetTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820237440 0xc8202374c0 0xc820237540] } +&{glGetTextureImage QOpenGLFunctions_4_5_Compatibility::glGetTextureImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8202376e0 0xc820237760 0xc8202377e0 0xc820237860 0xc820237900 0xc820237980] } +&{glGetTextureLevelParameterfv QOpenGLFunctions_4_5_Compatibility::glGetTextureLevelParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820237b20 0xc820237ba0 0xc820237c20 0xc820237ca0] } +&{glGetTextureLevelParameteriv QOpenGLFunctions_4_5_Compatibility::glGetTextureLevelParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820237e40 0xc820237ec0 0xc820237f40 0xc820237fc0] } +&{glGetTextureParameterIiv QOpenGLFunctions_4_5_Compatibility::glGetTextureParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820106160 0xc8201061e0 0xc820106260] } +&{glGetTextureParameterIuiv QOpenGLFunctions_4_5_Compatibility::glGetTextureParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820106400 0xc820106480 0xc820106500] } +&{glGetTextureParameterfv QOpenGLFunctions_4_5_Compatibility::glGetTextureParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8201066a0 0xc820106720 0xc8201067a0] } +&{glGetTextureParameteriv QOpenGLFunctions_4_5_Compatibility::glGetTextureParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820106940 0xc8201069c0 0xc820106a40] } +&{glGetTextureSubImage QOpenGLFunctions_4_5_Compatibility::glGetTextureSubImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820106be0 0xc820106c60 0xc820106ce0 0xc820106d60 0xc820106e00 0xc820106e80 0xc820106f00 0xc820106f80 0xc820107020 0xc8201070a0 0xc820107120 0xc8201071a0] } +&{glGetTransformFeedbackVarying QOpenGLFunctions_4_5_Compatibility::glGetTransformFeedbackVarying commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820107340 0xc8201073c0 0xc820107440 0xc8201074c0 0xc820107560 0xc8201075e0 0xc820107660] } +&{glGetTransformFeedbacki64_v QOpenGLFunctions_4_5_Compatibility::glGetTransformFeedbacki64_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820107800 0xc820107880 0xc820107900 0xc820107980] } +&{glGetTransformFeedbacki_v QOpenGLFunctions_4_5_Compatibility::glGetTransformFeedbacki_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820107b20 0xc820107ba0 0xc820107c20 0xc820107ca0] } +&{glGetTransformFeedbackiv QOpenGLFunctions_4_5_Compatibility::glGetTransformFeedbackiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820107e40 0xc820107ec0 0xc820107f40] } +&{glGetUniformBlockIndex QOpenGLFunctions_4_5_Compatibility::glGetUniformBlockIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLuint [0xc8204e00e0 0xc8204e0160] } +&{glGetUniformIndices QOpenGLFunctions_4_5_Compatibility::glGetUniformIndices commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8204e0300 0xc8204e0380 0xc8204e0420 0xc8204e04e0] } +&{glGetUniformLocation QOpenGLFunctions_4_5_Compatibility::glGetUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLint [0xc8204e0680 0xc8204e0700] } +&{glGetUniformSubroutineuiv QOpenGLFunctions_4_5_Compatibility::glGetUniformSubroutineuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8204e08a0 0xc8204e0920 0xc8204e09a0] } +&{glGetUniformdv QOpenGLFunctions_4_5_Compatibility::glGetUniformdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8204e0ae0 0xc8204e0b60 0xc8204e0be0] } +&{glGetUniformfv QOpenGLFunctions_4_5_Compatibility::glGetUniformfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8204e0d20 0xc8204e0da0 0xc8204e0e20] } +&{glGetUniformiv QOpenGLFunctions_4_5_Compatibility::glGetUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8204e0f60 0xc8204e0fe0 0xc8204e1060] } +&{glGetUniformuiv QOpenGLFunctions_4_5_Compatibility::glGetUniformuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8204e11a0 0xc8204e1220 0xc8204e12a0] } +&{glGetVertexArrayIndexed64iv QOpenGLFunctions_4_5_Compatibility::glGetVertexArrayIndexed64iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8204e1440 0xc8204e14c0 0xc8204e1540 0xc8204e15c0] } +&{glGetVertexArrayIndexediv QOpenGLFunctions_4_5_Compatibility::glGetVertexArrayIndexediv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8204e1760 0xc8204e17e0 0xc8204e1860 0xc8204e18e0] } +&{glGetVertexArrayiv QOpenGLFunctions_4_5_Compatibility::glGetVertexArrayiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8204e1a80 0xc8204e1b00 0xc8204e1b80] } +&{glGetVertexAttribIiv QOpenGLFunctions_4_5_Compatibility::glGetVertexAttribIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8204e1d20 0xc8204e1da0 0xc8204e1e20] } +&{glGetVertexAttribIuiv QOpenGLFunctions_4_5_Compatibility::glGetVertexAttribIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8204e1fc0 0xc820494040 0xc8204940c0] } +&{glGetVertexAttribLdv QOpenGLFunctions_4_5_Compatibility::glGetVertexAttribLdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820494260 0xc8204942e0 0xc820494360] } +&{glGetVertexAttribPointerv QOpenGLFunctions_4_5_Compatibility::glGetVertexAttribPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820494500 0xc820494580 0xc820494600] } +&{glGetVertexAttribdv QOpenGLFunctions_4_5_Compatibility::glGetVertexAttribdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8204947a0 0xc820494820 0xc8204948a0] } +&{glGetVertexAttribfv QOpenGLFunctions_4_5_Compatibility::glGetVertexAttribfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820494a40 0xc820494ac0 0xc820494b40] } +&{glGetVertexAttribiv QOpenGLFunctions_4_5_Compatibility::glGetVertexAttribiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820494ce0 0xc820494d60 0xc820494de0] } +&{glGetnColorTable QOpenGLFunctions_4_5_Compatibility::glGetnColorTable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820494f20 0xc820494fa0 0xc820495020 0xc8204950a0 0xc820495140] } +&{glGetnCompressedTexImage QOpenGLFunctions_4_5_Compatibility::glGetnCompressedTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8204952e0 0xc820495360 0xc8204953e0 0xc820495460] } +&{glGetnConvolutionFilter QOpenGLFunctions_4_5_Compatibility::glGetnConvolutionFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820495600 0xc820495680 0xc820495700 0xc820495780 0xc820495820] } +&{glGetnHistogram QOpenGLFunctions_4_5_Compatibility::glGetnHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820495960 0xc8204959e0 0xc820495a60 0xc820495ae0 0xc820495b80 0xc820495c00] } +&{glGetnMapdv QOpenGLFunctions_4_5_Compatibility::glGetnMapdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820495d40 0xc820495dc0 0xc820495e40 0xc820495ec0] } +&{glGetnMapfv QOpenGLFunctions_4_5_Compatibility::glGetnMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820466000 0xc820466080 0xc820466100 0xc820466180] } +&{glGetnMapiv QOpenGLFunctions_4_5_Compatibility::glGetnMapiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8204662c0 0xc820466340 0xc8204663c0 0xc820466440] } +&{glGetnMinmax QOpenGLFunctions_4_5_Compatibility::glGetnMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820466580 0xc820466600 0xc820466680 0xc820466700 0xc8204667a0 0xc820466820] } +&{glGetnPixelMapfv QOpenGLFunctions_4_5_Compatibility::glGetnPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820466960 0xc8204669e0 0xc820466a60] } +&{glGetnPixelMapuiv QOpenGLFunctions_4_5_Compatibility::glGetnPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820466c00 0xc820466c80 0xc820466d00] } +&{glGetnPixelMapusv QOpenGLFunctions_4_5_Compatibility::glGetnPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820466ea0 0xc820466f20 0xc820466fa0] } +&{glGetnPolygonStipple QOpenGLFunctions_4_5_Compatibility::glGetnPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820467140 0xc8204671c0] } +&{glGetnSeparableFilter QOpenGLFunctions_4_5_Compatibility::glGetnSeparableFilter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820467360 0xc8204673e0 0xc820467460 0xc8204674e0 0xc820467580 0xc820467600 0xc820467680 0xc820467700] } +&{glGetnTexImage QOpenGLFunctions_4_5_Compatibility::glGetnTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820467840 0xc8204678c0 0xc820467940 0xc8204679c0 0xc820467a60 0xc820467ae0] } +&{glGetnUniformdv QOpenGLFunctions_4_5_Compatibility::glGetnUniformdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820467c20 0xc820467ca0 0xc820467d20 0xc820467da0] } +&{glGetnUniformfv QOpenGLFunctions_4_5_Compatibility::glGetnUniformfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820467ee0 0xc820467f60 0xc820467fe0 0xc8203d2060] } +&{glGetnUniformiv QOpenGLFunctions_4_5_Compatibility::glGetnUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8203d21a0 0xc8203d2220 0xc8203d22a0 0xc8203d2320] } +&{glGetnUniformuiv QOpenGLFunctions_4_5_Compatibility::glGetnUniformuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8203d2460 0xc8203d24e0 0xc8203d2560 0xc8203d25e0] } +&{glHint QOpenGLFunctions_4_5_Compatibility::glHint commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8203d2720 0xc8203d27a0] } +&{glHistogram QOpenGLFunctions_4_5_Compatibility::glHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8203d28e0 0xc8203d2960 0xc8203d29e0 0xc8203d2a60] } +&{glIndexMask QOpenGLFunctions_4_5_Compatibility::glIndexMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8203d2bc0] } +&{glIndexPointer QOpenGLFunctions_4_5_Compatibility::glIndexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8203d2d00 0xc8203d2d80 0xc8203d2e00] } +&{glIndexd QOpenGLFunctions_4_5_Compatibility::glIndexd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8203d2f60] } +&{glIndexdv QOpenGLFunctions_4_5_Compatibility::glIndexdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8203d30a0] } +&{glIndexf QOpenGLFunctions_4_5_Compatibility::glIndexf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8203d3200] } +&{glIndexfv QOpenGLFunctions_4_5_Compatibility::glIndexfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8203d3360] } +&{glIndexi QOpenGLFunctions_4_5_Compatibility::glIndexi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8203d34c0] } +&{glIndexiv QOpenGLFunctions_4_5_Compatibility::glIndexiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8203d3620] } +&{glIndexs QOpenGLFunctions_4_5_Compatibility::glIndexs commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8203d3780] } +&{glIndexsv QOpenGLFunctions_4_5_Compatibility::glIndexsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8203d38e0] } +&{glIndexub QOpenGLFunctions_4_5_Compatibility::glIndexub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8203d3a40] } +&{glIndexubv QOpenGLFunctions_4_5_Compatibility::glIndexubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8203d3b80] } +&{glInitNames QOpenGLFunctions_4_5_Compatibility::glInitNames commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [] } +&{glInterleavedArrays QOpenGLFunctions_4_5_Compatibility::glInterleavedArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8203d3da0 0xc8203d3e20 0xc8203d3ea0] } +&{glInvalidateBufferData QOpenGLFunctions_4_5_Compatibility::glInvalidateBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82035c040] } +&{glInvalidateBufferSubData QOpenGLFunctions_4_5_Compatibility::glInvalidateBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82035c1e0 0xc82035c260 0xc82035c2e0] } +&{glInvalidateFramebuffer QOpenGLFunctions_4_5_Compatibility::glInvalidateFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82035c480 0xc82035c500 0xc82035c580] } +&{glInvalidateNamedFramebufferData QOpenGLFunctions_4_5_Compatibility::glInvalidateNamedFramebufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82035c720 0xc82035c7a0 0xc82035c820] } +&{glInvalidateNamedFramebufferSubData QOpenGLFunctions_4_5_Compatibility::glInvalidateNamedFramebufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82035c960 0xc82035c9e0 0xc82035ca60 0xc82035cae0 0xc82035cb80 0xc82035cc00 0xc82035cc80] } +&{glInvalidateSubFramebuffer QOpenGLFunctions_4_5_Compatibility::glInvalidateSubFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82035ce20 0xc82035cea0 0xc82035cf20 0xc82035cfa0 0xc82035d040 0xc82035d0c0 0xc82035d140] } +&{glInvalidateTexImage QOpenGLFunctions_4_5_Compatibility::glInvalidateTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82035d2e0 0xc82035d360] } +&{glInvalidateTexSubImage QOpenGLFunctions_4_5_Compatibility::glInvalidateTexSubImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82035d500 0xc82035d580 0xc82035d600 0xc82035d680 0xc82035d720 0xc82035d7a0 0xc82035d820 0xc82035d8a0] } +&{glIsBuffer QOpenGLFunctions_4_5_Compatibility::glIsBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLboolean [0xc82035d9e0] } +&{glIsEnabled QOpenGLFunctions_4_5_Compatibility::glIsEnabled commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLboolean [0xc82035db20] } +&{glIsEnabledi QOpenGLFunctions_4_5_Compatibility::glIsEnabledi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLboolean [0xc82035dc60 0xc82035dce0] } +&{glIsFramebuffer QOpenGLFunctions_4_5_Compatibility::glIsFramebuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLboolean [0xc82035de20] } +&{glIsList QOpenGLFunctions_4_5_Compatibility::glIsList commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLboolean [0xc82035df80] } +&{glIsProgram QOpenGLFunctions_4_5_Compatibility::glIsProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLboolean [0xc8203100c0] } +&{glIsProgramPipeline QOpenGLFunctions_4_5_Compatibility::glIsProgramPipeline commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLboolean [0xc820310260] } +&{glIsQuery QOpenGLFunctions_4_5_Compatibility::glIsQuery commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLboolean [0xc8203103c0] } +&{glIsRenderbuffer QOpenGLFunctions_4_5_Compatibility::glIsRenderbuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLboolean [0xc820310500] } +&{glIsSampler QOpenGLFunctions_4_5_Compatibility::glIsSampler commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLboolean [0xc820310640] } +&{glIsShader QOpenGLFunctions_4_5_Compatibility::glIsShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLboolean [0xc820310780] } +&{glIsSync QOpenGLFunctions_4_5_Compatibility::glIsSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLboolean [0xc8203108e0] } +&{glIsTexture QOpenGLFunctions_4_5_Compatibility::glIsTexture commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLboolean [0xc820310a20] } +&{glIsTransformFeedback QOpenGLFunctions_4_5_Compatibility::glIsTransformFeedback commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLboolean [0xc820310bc0] } +&{glIsVertexArray QOpenGLFunctions_4_5_Compatibility::glIsVertexArray commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLboolean [0xc820310d00] } +&{glLightModelf QOpenGLFunctions_4_5_Compatibility::glLightModelf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820310e40 0xc820310ec0] } +&{glLightModelfv QOpenGLFunctions_4_5_Compatibility::glLightModelfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820311000 0xc820311080] } +&{glLightModeli QOpenGLFunctions_4_5_Compatibility::glLightModeli commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8203111c0 0xc820311240] } +&{glLightModeliv QOpenGLFunctions_4_5_Compatibility::glLightModeliv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820311380 0xc820311400] } +&{glLightf QOpenGLFunctions_4_5_Compatibility::glLightf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820311540 0xc8203115c0 0xc820311640] } +&{glLightfv QOpenGLFunctions_4_5_Compatibility::glLightfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820311780 0xc820311800 0xc820311880] } +&{glLighti QOpenGLFunctions_4_5_Compatibility::glLighti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8203119c0 0xc820311a40 0xc820311ac0] } +&{glLightiv QOpenGLFunctions_4_5_Compatibility::glLightiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820311c00 0xc820311c80 0xc820311d00] } +&{glLineStipple QOpenGLFunctions_4_5_Compatibility::glLineStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820311e40 0xc820311ec0] } +&{glLineWidth QOpenGLFunctions_4_5_Compatibility::glLineWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820ee6020] } +&{glLinkProgram QOpenGLFunctions_4_5_Compatibility::glLinkProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820ee6160] } +&{glListBase QOpenGLFunctions_4_5_Compatibility::glListBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820ee62c0] } +&{glLoadIdentity QOpenGLFunctions_4_5_Compatibility::glLoadIdentity commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [] } +&{glLoadMatrixd QOpenGLFunctions_4_5_Compatibility::glLoadMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820ee6480] } +&{glLoadMatrixf QOpenGLFunctions_4_5_Compatibility::glLoadMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820ee65c0] } +&{glLoadName QOpenGLFunctions_4_5_Compatibility::glLoadName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820ee6720] } +&{glLoadTransposeMatrixd QOpenGLFunctions_4_5_Compatibility::glLoadTransposeMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820ee68c0] } +&{glLoadTransposeMatrixf QOpenGLFunctions_4_5_Compatibility::glLoadTransposeMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820ee6a60] } +&{glLogicOp QOpenGLFunctions_4_5_Compatibility::glLogicOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820ee6bc0] } +&{glMap1d QOpenGLFunctions_4_5_Compatibility::glMap1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820ee6d00 0xc820ee6d80 0xc820ee6e00 0xc820ee6e80 0xc820ee6f20 0xc820ee6fa0] } +&{glMap1f QOpenGLFunctions_4_5_Compatibility::glMap1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820ee70e0 0xc820ee7160 0xc820ee71e0 0xc820ee7260 0xc820ee7300 0xc820ee7380] } +&{glMap2d QOpenGLFunctions_4_5_Compatibility::glMap2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820ee74c0 0xc820ee7540 0xc820ee75c0 0xc820ee7640 0xc820ee76e0 0xc820ee7760 0xc820ee77e0 0xc820ee7860 0xc820ee7900 0xc820ee7980] } +&{glMap2f QOpenGLFunctions_4_5_Compatibility::glMap2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820ee7ae0 0xc820ee7b60 0xc820ee7be0 0xc820ee7c60 0xc820ee7d00 0xc820ee7d80 0xc820ee7e00 0xc820ee7e80 0xc820ee7f20 0xc820ee7fa0] } +&{glMapBuffer QOpenGLFunctions_4_5_Compatibility::glMapBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void * [0xc8202260e0 0xc820226160] } +&{glMapBufferRange QOpenGLFunctions_4_5_Compatibility::glMapBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void * [0xc8202262a0 0xc820226320 0xc8202263a0 0xc820226420] } +&{glMapGrid1d QOpenGLFunctions_4_5_Compatibility::glMapGrid1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820226560 0xc8202265e0 0xc820226660] } +&{glMapGrid1f QOpenGLFunctions_4_5_Compatibility::glMapGrid1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8202267a0 0xc820226820 0xc8202268a0] } +&{glMapGrid2d QOpenGLFunctions_4_5_Compatibility::glMapGrid2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8202269e0 0xc820226a60 0xc820226ae0 0xc820226b60 0xc820226c00 0xc820226c80] } +&{glMapGrid2f QOpenGLFunctions_4_5_Compatibility::glMapGrid2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820226dc0 0xc820226e40 0xc820226ec0 0xc820226f40 0xc820226fe0 0xc820227060] } +&{glMapNamedBuffer QOpenGLFunctions_4_5_Compatibility::glMapNamedBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void * [0xc8202271a0 0xc820227220] } +&{glMapNamedBufferRange QOpenGLFunctions_4_5_Compatibility::glMapNamedBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void * [0xc8202273c0 0xc820227440 0xc8202274c0 0xc820227540] } +&{glMaterialf QOpenGLFunctions_4_5_Compatibility::glMaterialf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820227680 0xc820227700 0xc820227780] } +&{glMaterialfv QOpenGLFunctions_4_5_Compatibility::glMaterialfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8202278c0 0xc820227940 0xc8202279c0] } +&{glMateriali QOpenGLFunctions_4_5_Compatibility::glMateriali commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820227b00 0xc820227b80 0xc820227c00] } +&{glMaterialiv QOpenGLFunctions_4_5_Compatibility::glMaterialiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820227d40 0xc820227dc0 0xc820227e40] } +&{glMatrixMode QOpenGLFunctions_4_5_Compatibility::glMatrixMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820227fa0] } +&{glMemoryBarrier QOpenGLFunctions_4_5_Compatibility::glMemoryBarrier commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a200e0] } +&{glMemoryBarrierByRegion QOpenGLFunctions_4_5_Compatibility::glMemoryBarrierByRegion commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a20280] } +&{glMinSampleShading QOpenGLFunctions_4_5_Compatibility::glMinSampleShading commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a20420] } +&{glMinmax QOpenGLFunctions_4_5_Compatibility::glMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a20560 0xc820a205e0 0xc820a20660] } +&{glMultMatrixd QOpenGLFunctions_4_5_Compatibility::glMultMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a207a0] } +&{glMultMatrixf QOpenGLFunctions_4_5_Compatibility::glMultMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a208e0] } +&{glMultTransposeMatrixd QOpenGLFunctions_4_5_Compatibility::glMultTransposeMatrixd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a20a80] } +&{glMultTransposeMatrixf QOpenGLFunctions_4_5_Compatibility::glMultTransposeMatrixf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a20c20] } +&{glMultiDrawArrays QOpenGLFunctions_4_5_Compatibility::glMultiDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a20dc0 0xc820a20e40 0xc820a20ec0 0xc820a20f40] } +&{glMultiDrawArraysIndirect QOpenGLFunctions_4_5_Compatibility::glMultiDrawArraysIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a210e0 0xc820a21160 0xc820a211e0 0xc820a21260] } +&{glMultiDrawElements QOpenGLFunctions_4_5_Compatibility::glMultiDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a21400 0xc820a21480 0xc820a21500 0xc820a215a0 0xc820a21680] } +&{glMultiDrawElementsBaseVertex QOpenGLFunctions_4_5_Compatibility::glMultiDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a21820 0xc820a218a0 0xc820a21920 0xc820a219c0 0xc820a21aa0 0xc820a21b20] } +&{glMultiDrawElementsIndirect QOpenGLFunctions_4_5_Compatibility::glMultiDrawElementsIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820a21cc0 0xc820a21d40 0xc820a21dc0 0xc820a21e40 0xc820a21ee0] } +&{glMultiTexCoord1d QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8230a8080 0xc8230a8100] } +&{glMultiTexCoord1dv QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8230a82a0 0xc8230a8320] } +&{glMultiTexCoord1f QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8230a84c0 0xc8230a8540] } +&{glMultiTexCoord1fv QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8230a86e0 0xc8230a8760] } +&{glMultiTexCoord1i QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8230a8900 0xc8230a8980] } +&{glMultiTexCoord1iv QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8230a8b20 0xc8230a8ba0] } +&{glMultiTexCoord1s QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8230a8d40 0xc8230a8dc0] } +&{glMultiTexCoord1sv QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8230a8f60 0xc8230a8fe0] } +&{glMultiTexCoord2d QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8230a9180 0xc8230a9200 0xc8230a9280] } +&{glMultiTexCoord2dv QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8230a9420 0xc8230a94a0] } +&{glMultiTexCoord2f QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8230a9640 0xc8230a96c0 0xc8230a9740] } +&{glMultiTexCoord2fv QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8230a98e0 0xc8230a9960] } +&{glMultiTexCoord2i QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8230a9b00 0xc8230a9b80 0xc8230a9c00] } +&{glMultiTexCoord2iv QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8230a9da0 0xc8230a9e20] } +&{glMultiTexCoord2s QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8230a9fc0 0xc822ec6040 0xc822ec60c0] } +&{glMultiTexCoord2sv QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822ec6260 0xc822ec62e0] } +&{glMultiTexCoord3d QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822ec6480 0xc822ec6500 0xc822ec6580 0xc822ec6600] } +&{glMultiTexCoord3dv QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822ec67a0 0xc822ec6820] } +&{glMultiTexCoord3f QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822ec69c0 0xc822ec6a40 0xc822ec6ac0 0xc822ec6b40] } +&{glMultiTexCoord3fv QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822ec6ce0 0xc822ec6d60] } +&{glMultiTexCoord3i QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822ec6f00 0xc822ec6f80 0xc822ec7000 0xc822ec7080] } +&{glMultiTexCoord3iv QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822ec7220 0xc822ec72a0] } +&{glMultiTexCoord3s QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822ec7440 0xc822ec74c0 0xc822ec7540 0xc822ec75c0] } +&{glMultiTexCoord3sv QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822ec7760 0xc822ec77e0] } +&{glMultiTexCoord4d QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822ec7980 0xc822ec7a00 0xc822ec7a80 0xc822ec7b00 0xc822ec7ba0] } +&{glMultiTexCoord4dv QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822ec7d40 0xc822ec7dc0] } +&{glMultiTexCoord4f QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822ec7f60 0xc822ec7fe0 0xc822e90060 0xc822e900e0 0xc822e90180] } +&{glMultiTexCoord4fv QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822e90320 0xc822e903a0] } +&{glMultiTexCoord4i QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822e90540 0xc822e905c0 0xc822e90640 0xc822e906c0 0xc822e90760] } +&{glMultiTexCoord4iv QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822e90900 0xc822e90980] } +&{glMultiTexCoord4s QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822e90b20 0xc822e90ba0 0xc822e90c20 0xc822e90ca0 0xc822e90d40] } +&{glMultiTexCoord4sv QOpenGLFunctions_4_5_Compatibility::glMultiTexCoord4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822e90ee0 0xc822e90f60] } +&{glMultiTexCoordP1ui QOpenGLFunctions_4_5_Compatibility::glMultiTexCoordP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822e91100 0xc822e91180 0xc822e91200] } +&{glMultiTexCoordP1uiv QOpenGLFunctions_4_5_Compatibility::glMultiTexCoordP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822e913a0 0xc822e91420 0xc822e914a0] } +&{glMultiTexCoordP2ui QOpenGLFunctions_4_5_Compatibility::glMultiTexCoordP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822e91640 0xc822e916c0 0xc822e91740] } +&{glMultiTexCoordP2uiv QOpenGLFunctions_4_5_Compatibility::glMultiTexCoordP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822e918e0 0xc822e91960 0xc822e919e0] } +&{glMultiTexCoordP3ui QOpenGLFunctions_4_5_Compatibility::glMultiTexCoordP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822e91b80 0xc822e91c00 0xc822e91c80] } +&{glMultiTexCoordP3uiv QOpenGLFunctions_4_5_Compatibility::glMultiTexCoordP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822e91e20 0xc822e91ea0 0xc822e91f20] } +&{glMultiTexCoordP4ui QOpenGLFunctions_4_5_Compatibility::glMultiTexCoordP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822dd80c0 0xc822dd8140 0xc822dd81c0] } +&{glMultiTexCoordP4uiv QOpenGLFunctions_4_5_Compatibility::glMultiTexCoordP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822dd8360 0xc822dd83e0 0xc822dd8460] } +&{glNamedBufferData QOpenGLFunctions_4_5_Compatibility::glNamedBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822dd8600 0xc822dd8680 0xc822dd8700 0xc822dd8780] } +&{glNamedBufferStorage QOpenGLFunctions_4_5_Compatibility::glNamedBufferStorage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822dd8920 0xc822dd89a0 0xc822dd8a20 0xc822dd8aa0] } +&{glNamedBufferSubData QOpenGLFunctions_4_5_Compatibility::glNamedBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822dd8c40 0xc822dd8cc0 0xc822dd8d40 0xc822dd8dc0] } +&{glNamedFramebufferDrawBuffer QOpenGLFunctions_4_5_Compatibility::glNamedFramebufferDrawBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822dd8f60 0xc822dd8fe0] } +&{glNamedFramebufferDrawBuffers QOpenGLFunctions_4_5_Compatibility::glNamedFramebufferDrawBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822dd9180 0xc822dd9200 0xc822dd9280] } +&{glNamedFramebufferParameteri QOpenGLFunctions_4_5_Compatibility::glNamedFramebufferParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822dd9420 0xc822dd94a0 0xc822dd9520] } +&{glNamedFramebufferReadBuffer QOpenGLFunctions_4_5_Compatibility::glNamedFramebufferReadBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822dd96c0 0xc822dd9740] } +&{glNamedFramebufferRenderbuffer QOpenGLFunctions_4_5_Compatibility::glNamedFramebufferRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822dd98e0 0xc822dd9960 0xc822dd9a00 0xc822dd9ac0] } +&{glNamedFramebufferTexture QOpenGLFunctions_4_5_Compatibility::glNamedFramebufferTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822dd9c60 0xc822dd9ce0 0xc822dd9d60 0xc822dd9de0] } +&{glNamedFramebufferTextureLayer QOpenGLFunctions_4_5_Compatibility::glNamedFramebufferTextureLayer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822dd9f80 0xc822d94000 0xc822d94080 0xc822d94100 0xc822d941a0] } +&{glNamedRenderbufferStorage QOpenGLFunctions_4_5_Compatibility::glNamedRenderbufferStorage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822d94340 0xc822d943c0 0xc822d94440 0xc822d944c0] } +&{glNamedRenderbufferStorageMultisample QOpenGLFunctions_4_5_Compatibility::glNamedRenderbufferStorageMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822d94600 0xc822d94680 0xc822d94700 0xc822d94780 0xc822d94820] } +&{glNewList QOpenGLFunctions_4_5_Compatibility::glNewList commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822d94960 0xc822d949e0] } +&{glNormal3b QOpenGLFunctions_4_5_Compatibility::glNormal3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822d94b20 0xc822d94ba0 0xc822d94c20] } +&{glNormal3bv QOpenGLFunctions_4_5_Compatibility::glNormal3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822d94d60] } +&{glNormal3d QOpenGLFunctions_4_5_Compatibility::glNormal3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822d94ea0 0xc822d94f20 0xc822d94fa0] } +&{glNormal3dv QOpenGLFunctions_4_5_Compatibility::glNormal3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822d950e0] } +&{glNormal3f QOpenGLFunctions_4_5_Compatibility::glNormal3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822d95220 0xc822d952a0 0xc822d95320] } +&{glNormal3fv QOpenGLFunctions_4_5_Compatibility::glNormal3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822d95460] } +&{glNormal3i QOpenGLFunctions_4_5_Compatibility::glNormal3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822d955a0 0xc822d95620 0xc822d956a0] } +&{glNormal3iv QOpenGLFunctions_4_5_Compatibility::glNormal3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822d95800] } +&{glNormal3s QOpenGLFunctions_4_5_Compatibility::glNormal3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822d95940 0xc822d959c0 0xc822d95a40] } +&{glNormal3sv QOpenGLFunctions_4_5_Compatibility::glNormal3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822d95b80] } +&{glNormalP3ui QOpenGLFunctions_4_5_Compatibility::glNormalP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822d95cc0 0xc822d95d40] } +&{glNormalP3uiv QOpenGLFunctions_4_5_Compatibility::glNormalP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822d95e80 0xc822d95f00] } +&{glNormalPointer QOpenGLFunctions_4_5_Compatibility::glNormalPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227a2040 0xc8227a20c0 0xc8227a2140] } +&{glObjectLabel QOpenGLFunctions_4_5_Compatibility::glObjectLabel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227a2280 0xc8227a2300 0xc8227a2380 0xc8227a2400] } +&{glObjectPtrLabel QOpenGLFunctions_4_5_Compatibility::glObjectPtrLabel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227a2540 0xc8227a25c0 0xc8227a2640] } +&{glOrtho QOpenGLFunctions_4_5_Compatibility::glOrtho commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227a2780 0xc8227a2800 0xc8227a2880 0xc8227a2900 0xc8227a29a0 0xc8227a2a20] } +&{glPassThrough QOpenGLFunctions_4_5_Compatibility::glPassThrough commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227a2b60] } +&{glPatchParameterfv QOpenGLFunctions_4_5_Compatibility::glPatchParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227a2d00 0xc8227a2d80] } +&{glPatchParameteri QOpenGLFunctions_4_5_Compatibility::glPatchParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227a2f20 0xc8227a2fa0] } +&{glPauseTransformFeedback QOpenGLFunctions_4_5_Compatibility::glPauseTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [] } +&{glPixelMapfv QOpenGLFunctions_4_5_Compatibility::glPixelMapfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227a31c0 0xc8227a3240 0xc8227a32c0] } +&{glPixelMapuiv QOpenGLFunctions_4_5_Compatibility::glPixelMapuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227a3400 0xc8227a3480 0xc8227a3500] } +&{glPixelMapusv QOpenGLFunctions_4_5_Compatibility::glPixelMapusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227a3640 0xc8227a36c0 0xc8227a3740] } +&{glPixelStoref QOpenGLFunctions_4_5_Compatibility::glPixelStoref commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227a3880 0xc8227a3900] } +&{glPixelStorei QOpenGLFunctions_4_5_Compatibility::glPixelStorei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227a3a40 0xc8227a3ac0] } +&{glPixelTransferf QOpenGLFunctions_4_5_Compatibility::glPixelTransferf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227a3c00 0xc8227a3c80] } +&{glPixelTransferi QOpenGLFunctions_4_5_Compatibility::glPixelTransferi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227a3dc0 0xc8227a3e40] } +&{glPixelZoom QOpenGLFunctions_4_5_Compatibility::glPixelZoom commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227a3f80 0xc821c7c000] } +&{glPointParameterf QOpenGLFunctions_4_5_Compatibility::glPointParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821c7c1a0 0xc821c7c220] } +&{glPointParameterfv QOpenGLFunctions_4_5_Compatibility::glPointParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821c7c3c0 0xc821c7c440] } +&{glPointParameteri QOpenGLFunctions_4_5_Compatibility::glPointParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821c7c5e0 0xc821c7c660] } +&{glPointParameteriv QOpenGLFunctions_4_5_Compatibility::glPointParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821c7c800 0xc821c7c880] } +&{glPointSize QOpenGLFunctions_4_5_Compatibility::glPointSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821c7c9e0] } +&{glPolygonMode QOpenGLFunctions_4_5_Compatibility::glPolygonMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821c7cb20 0xc821c7cba0] } +&{glPolygonOffset QOpenGLFunctions_4_5_Compatibility::glPolygonOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821c7cce0 0xc821c7cd60] } +&{glPolygonStipple QOpenGLFunctions_4_5_Compatibility::glPolygonStipple commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821c7cea0] } +&{glPopAttrib QOpenGLFunctions_4_5_Compatibility::glPopAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [] } +&{glPopClientAttrib QOpenGLFunctions_4_5_Compatibility::glPopClientAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [] } +&{glPopDebugGroup QOpenGLFunctions_4_5_Compatibility::glPopDebugGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [] } +&{glPopMatrix QOpenGLFunctions_4_5_Compatibility::glPopMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [] } +&{glPopName QOpenGLFunctions_4_5_Compatibility::glPopName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [] } +&{glPrimitiveRestartIndex QOpenGLFunctions_4_5_Compatibility::glPrimitiveRestartIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821c7d300] } +&{glPrioritizeTextures QOpenGLFunctions_4_5_Compatibility::glPrioritizeTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821c7d4a0 0xc821c7d520 0xc821c7d5a0] } +&{glProgramBinary QOpenGLFunctions_4_5_Compatibility::glProgramBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821c7d6e0 0xc821c7d760 0xc821c7d7e0 0xc821c7d860] } +&{glProgramParameteri QOpenGLFunctions_4_5_Compatibility::glProgramParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821c7da00 0xc821c7da80 0xc821c7db00] } +&{glProgramUniform1d QOpenGLFunctions_4_5_Compatibility::glProgramUniform1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821c7dca0 0xc821c7dd20 0xc821c7dda0] } +&{glProgramUniform1dv QOpenGLFunctions_4_5_Compatibility::glProgramUniform1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821c7df40 0xc821c7dfc0 0xc821ac8040 0xc821ac80c0] } +&{glProgramUniform1f QOpenGLFunctions_4_5_Compatibility::glProgramUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821ac8260 0xc821ac82e0 0xc821ac8360] } +&{glProgramUniform1fv QOpenGLFunctions_4_5_Compatibility::glProgramUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821ac8500 0xc821ac8580 0xc821ac8600 0xc821ac8680] } +&{glProgramUniform1i QOpenGLFunctions_4_5_Compatibility::glProgramUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821ac8820 0xc821ac88a0 0xc821ac8920] } +&{glProgramUniform1iv QOpenGLFunctions_4_5_Compatibility::glProgramUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821ac8ac0 0xc821ac8b40 0xc821ac8bc0 0xc821ac8c40] } +&{glProgramUniform1ui QOpenGLFunctions_4_5_Compatibility::glProgramUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821ac8de0 0xc821ac8e60 0xc821ac8ee0] } +&{glProgramUniform1uiv QOpenGLFunctions_4_5_Compatibility::glProgramUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821ac9080 0xc821ac9100 0xc821ac9180 0xc821ac9200] } +&{glProgramUniform2d QOpenGLFunctions_4_5_Compatibility::glProgramUniform2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821ac93a0 0xc821ac9420 0xc821ac94a0 0xc821ac9520] } +&{glProgramUniform2dv QOpenGLFunctions_4_5_Compatibility::glProgramUniform2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821ac96c0 0xc821ac9740 0xc821ac97c0 0xc821ac9840] } +&{glProgramUniform2f QOpenGLFunctions_4_5_Compatibility::glProgramUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821ac99e0 0xc821ac9a60 0xc821ac9ae0 0xc821ac9b60] } +&{glProgramUniform2fv QOpenGLFunctions_4_5_Compatibility::glProgramUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821ac9d00 0xc821ac9d80 0xc821ac9e00 0xc821ac9e80] } +&{glProgramUniform2i QOpenGLFunctions_4_5_Compatibility::glProgramUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8219ba020 0xc8219ba0a0 0xc8219ba120 0xc8219ba1a0] } +&{glProgramUniform2iv QOpenGLFunctions_4_5_Compatibility::glProgramUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8219ba340 0xc8219ba3c0 0xc8219ba440 0xc8219ba4c0] } +&{glProgramUniform2ui QOpenGLFunctions_4_5_Compatibility::glProgramUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8219ba660 0xc8219ba6e0 0xc8219ba760 0xc8219ba7e0] } +&{glProgramUniform2uiv QOpenGLFunctions_4_5_Compatibility::glProgramUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8219ba980 0xc8219baa00 0xc8219baa80 0xc8219bab00] } +&{glProgramUniform3d QOpenGLFunctions_4_5_Compatibility::glProgramUniform3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8219baca0 0xc8219bad20 0xc8219bada0 0xc8219bae20 0xc8219baec0] } +&{glProgramUniform3dv QOpenGLFunctions_4_5_Compatibility::glProgramUniform3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8219bb060 0xc8219bb0e0 0xc8219bb160 0xc8219bb1e0] } +&{glProgramUniform3f QOpenGLFunctions_4_5_Compatibility::glProgramUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8219bb380 0xc8219bb400 0xc8219bb480 0xc8219bb500 0xc8219bb5a0] } +&{glProgramUniform3fv QOpenGLFunctions_4_5_Compatibility::glProgramUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8219bb740 0xc8219bb7c0 0xc8219bb840 0xc8219bb8c0] } +&{glProgramUniform3i QOpenGLFunctions_4_5_Compatibility::glProgramUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8219bba60 0xc8219bbae0 0xc8219bbb60 0xc8219bbbe0 0xc8219bbc80] } +&{glProgramUniform3iv QOpenGLFunctions_4_5_Compatibility::glProgramUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8219bbe20 0xc8219bbea0 0xc8219bbf20 0xc8219bbfa0] } +&{glProgramUniform3ui QOpenGLFunctions_4_5_Compatibility::glProgramUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82191e140 0xc82191e1c0 0xc82191e240 0xc82191e2c0 0xc82191e360] } +&{glProgramUniform3uiv QOpenGLFunctions_4_5_Compatibility::glProgramUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82191e500 0xc82191e580 0xc82191e600 0xc82191e680] } +&{glProgramUniform4d QOpenGLFunctions_4_5_Compatibility::glProgramUniform4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82191e820 0xc82191e8a0 0xc82191e920 0xc82191e9a0 0xc82191ea40 0xc82191eac0] } +&{glProgramUniform4dv QOpenGLFunctions_4_5_Compatibility::glProgramUniform4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82191ec60 0xc82191ece0 0xc82191ed60 0xc82191ede0] } +&{glProgramUniform4f QOpenGLFunctions_4_5_Compatibility::glProgramUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82191ef80 0xc82191f000 0xc82191f080 0xc82191f100 0xc82191f1a0 0xc82191f220] } +&{glProgramUniform4fv QOpenGLFunctions_4_5_Compatibility::glProgramUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82191f3c0 0xc82191f440 0xc82191f4c0 0xc82191f540] } +&{glProgramUniform4i QOpenGLFunctions_4_5_Compatibility::glProgramUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82191f6e0 0xc82191f760 0xc82191f7e0 0xc82191f860 0xc82191f900 0xc82191f980] } +&{glProgramUniform4iv QOpenGLFunctions_4_5_Compatibility::glProgramUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82191fb20 0xc82191fba0 0xc82191fc20 0xc82191fca0] } +&{glProgramUniform4ui QOpenGLFunctions_4_5_Compatibility::glProgramUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82191fe40 0xc82191fec0 0xc82191ff40 0xc82191ffc0 0xc82182a060 0xc82182a0e0] } +&{glProgramUniform4uiv QOpenGLFunctions_4_5_Compatibility::glProgramUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82182a280 0xc82182a300 0xc82182a380 0xc82182a400] } +&{glProgramUniformMatrix2dv QOpenGLFunctions_4_5_Compatibility::glProgramUniformMatrix2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82182a5a0 0xc82182a620 0xc82182a6a0 0xc82182a720 0xc82182a7c0] } +&{glProgramUniformMatrix2fv QOpenGLFunctions_4_5_Compatibility::glProgramUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82182a960 0xc82182a9e0 0xc82182aa60 0xc82182aae0 0xc82182ab80] } +&{glProgramUniformMatrix2x3dv QOpenGLFunctions_4_5_Compatibility::glProgramUniformMatrix2x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82182ad20 0xc82182ada0 0xc82182ae20 0xc82182aea0 0xc82182af40] } +&{glProgramUniformMatrix2x3fv QOpenGLFunctions_4_5_Compatibility::glProgramUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82182b0e0 0xc82182b160 0xc82182b1e0 0xc82182b260 0xc82182b300] } +&{glProgramUniformMatrix2x4dv QOpenGLFunctions_4_5_Compatibility::glProgramUniformMatrix2x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82182b4a0 0xc82182b520 0xc82182b5a0 0xc82182b620 0xc82182b6c0] } +&{glProgramUniformMatrix2x4fv QOpenGLFunctions_4_5_Compatibility::glProgramUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82182b860 0xc82182b8e0 0xc82182b960 0xc82182b9e0 0xc82182ba80] } +&{glProgramUniformMatrix3dv QOpenGLFunctions_4_5_Compatibility::glProgramUniformMatrix3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82182bc20 0xc82182bca0 0xc82182bd20 0xc82182bda0 0xc82182be40] } +&{glProgramUniformMatrix3fv QOpenGLFunctions_4_5_Compatibility::glProgramUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82182bfe0 0xc8217b6060 0xc8217b60e0 0xc8217b6160 0xc8217b6200] } +&{glProgramUniformMatrix3x2dv QOpenGLFunctions_4_5_Compatibility::glProgramUniformMatrix3x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8217b63a0 0xc8217b6420 0xc8217b64a0 0xc8217b6520 0xc8217b65c0] } +&{glProgramUniformMatrix3x2fv QOpenGLFunctions_4_5_Compatibility::glProgramUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8217b6760 0xc8217b67e0 0xc8217b6860 0xc8217b68e0 0xc8217b6980] } +&{glProgramUniformMatrix3x4dv QOpenGLFunctions_4_5_Compatibility::glProgramUniformMatrix3x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8217b6b20 0xc8217b6ba0 0xc8217b6c20 0xc8217b6ca0 0xc8217b6d40] } +&{glProgramUniformMatrix3x4fv QOpenGLFunctions_4_5_Compatibility::glProgramUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8217b6ee0 0xc8217b6f60 0xc8217b6fe0 0xc8217b7060 0xc8217b7100] } +&{glProgramUniformMatrix4dv QOpenGLFunctions_4_5_Compatibility::glProgramUniformMatrix4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8217b72a0 0xc8217b7320 0xc8217b73a0 0xc8217b7420 0xc8217b74c0] } +&{glProgramUniformMatrix4fv QOpenGLFunctions_4_5_Compatibility::glProgramUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8217b7660 0xc8217b76e0 0xc8217b7760 0xc8217b77e0 0xc8217b7880] } +&{glProgramUniformMatrix4x2dv QOpenGLFunctions_4_5_Compatibility::glProgramUniformMatrix4x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8217b7a20 0xc8217b7aa0 0xc8217b7b20 0xc8217b7ba0 0xc8217b7c40] } +&{glProgramUniformMatrix4x2fv QOpenGLFunctions_4_5_Compatibility::glProgramUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8217b7de0 0xc8217b7e60 0xc8217b7ee0 0xc8217b7f60 0xc821704000] } +&{glProgramUniformMatrix4x3dv QOpenGLFunctions_4_5_Compatibility::glProgramUniformMatrix4x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8217041a0 0xc821704220 0xc8217042a0 0xc821704320 0xc8217043c0] } +&{glProgramUniformMatrix4x3fv QOpenGLFunctions_4_5_Compatibility::glProgramUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821704560 0xc8217045e0 0xc821704660 0xc8217046e0 0xc821704780] } +&{glProvokingVertex QOpenGLFunctions_4_5_Compatibility::glProvokingVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821704920] } +&{glPushAttrib QOpenGLFunctions_4_5_Compatibility::glPushAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821704a60] } +&{glPushClientAttrib QOpenGLFunctions_4_5_Compatibility::glPushClientAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821704c00] } +&{glPushDebugGroup QOpenGLFunctions_4_5_Compatibility::glPushDebugGroup commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821704d40 0xc821704dc0 0xc821704e40 0xc821704ec0] } +&{glPushMatrix QOpenGLFunctions_4_5_Compatibility::glPushMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [] } +&{glPushName QOpenGLFunctions_4_5_Compatibility::glPushName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8217050a0] } +&{glQueryCounter QOpenGLFunctions_4_5_Compatibility::glQueryCounter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8217051e0 0xc821705260] } +&{glRasterPos2d QOpenGLFunctions_4_5_Compatibility::glRasterPos2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8217053a0 0xc821705420] } +&{glRasterPos2dv QOpenGLFunctions_4_5_Compatibility::glRasterPos2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821705560] } +&{glRasterPos2f QOpenGLFunctions_4_5_Compatibility::glRasterPos2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8217056a0 0xc821705720] } +&{glRasterPos2fv QOpenGLFunctions_4_5_Compatibility::glRasterPos2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821705860] } +&{glRasterPos2i QOpenGLFunctions_4_5_Compatibility::glRasterPos2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8217059a0 0xc821705a20] } +&{glRasterPos2iv QOpenGLFunctions_4_5_Compatibility::glRasterPos2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821705b60] } +&{glRasterPos2s QOpenGLFunctions_4_5_Compatibility::glRasterPos2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821705ca0 0xc821705d20] } +&{glRasterPos2sv QOpenGLFunctions_4_5_Compatibility::glRasterPos2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821705e60] } +&{glRasterPos3d QOpenGLFunctions_4_5_Compatibility::glRasterPos3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821705fa0 0xc821646020 0xc8216460a0] } +&{glRasterPos3dv QOpenGLFunctions_4_5_Compatibility::glRasterPos3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8216461e0] } +&{glRasterPos3f QOpenGLFunctions_4_5_Compatibility::glRasterPos3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821646320 0xc8216463a0 0xc821646420] } +&{glRasterPos3fv QOpenGLFunctions_4_5_Compatibility::glRasterPos3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821646560] } +&{glRasterPos3i QOpenGLFunctions_4_5_Compatibility::glRasterPos3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8216466a0 0xc821646720 0xc8216467a0] } +&{glRasterPos3iv QOpenGLFunctions_4_5_Compatibility::glRasterPos3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8216468e0] } +&{glRasterPos3s QOpenGLFunctions_4_5_Compatibility::glRasterPos3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821646a20 0xc821646aa0 0xc821646b20] } +&{glRasterPos3sv QOpenGLFunctions_4_5_Compatibility::glRasterPos3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821646c60] } +&{glRasterPos4d QOpenGLFunctions_4_5_Compatibility::glRasterPos4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821646da0 0xc821646e20 0xc821646ea0 0xc821646f20] } +&{glRasterPos4dv QOpenGLFunctions_4_5_Compatibility::glRasterPos4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821647060] } +&{glRasterPos4f QOpenGLFunctions_4_5_Compatibility::glRasterPos4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8216471a0 0xc821647220 0xc8216472a0 0xc821647320] } +&{glRasterPos4fv QOpenGLFunctions_4_5_Compatibility::glRasterPos4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821647460] } +&{glRasterPos4i QOpenGLFunctions_4_5_Compatibility::glRasterPos4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8216475a0 0xc821647620 0xc8216476a0 0xc821647720] } +&{glRasterPos4iv QOpenGLFunctions_4_5_Compatibility::glRasterPos4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821647860] } +&{glRasterPos4s QOpenGLFunctions_4_5_Compatibility::glRasterPos4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8216479a0 0xc821647a20 0xc821647aa0 0xc821647b20] } +&{glRasterPos4sv QOpenGLFunctions_4_5_Compatibility::glRasterPos4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821647c60] } +&{glReadBuffer QOpenGLFunctions_4_5_Compatibility::glReadBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821647dc0] } +&{glReadPixels QOpenGLFunctions_4_5_Compatibility::glReadPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821647f00 0xc821647f80 0xc8214aa000 0xc8214aa080 0xc8214aa120 0xc8214aa1a0 0xc8214aa220] } +&{glReadnPixels QOpenGLFunctions_4_5_Compatibility::glReadnPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8214aa360 0xc8214aa3e0 0xc8214aa460 0xc8214aa4e0 0xc8214aa580 0xc8214aa600 0xc8214aa680 0xc8214aa700] } +&{glRectd QOpenGLFunctions_4_5_Compatibility::glRectd commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8214aa840 0xc8214aa8c0 0xc8214aa940 0xc8214aa9c0] } +&{glRectdv QOpenGLFunctions_4_5_Compatibility::glRectdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8214aab00 0xc8214aab80] } +&{glRectf QOpenGLFunctions_4_5_Compatibility::glRectf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8214aacc0 0xc8214aad40 0xc8214aadc0 0xc8214aae40] } +&{glRectfv QOpenGLFunctions_4_5_Compatibility::glRectfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8214aaf80 0xc8214ab000] } +&{glRecti QOpenGLFunctions_4_5_Compatibility::glRecti commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8214ab140 0xc8214ab1c0 0xc8214ab240 0xc8214ab2c0] } +&{glRectiv QOpenGLFunctions_4_5_Compatibility::glRectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8214ab400 0xc8214ab480] } +&{glRects QOpenGLFunctions_4_5_Compatibility::glRects commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8214ab5c0 0xc8214ab640 0xc8214ab6c0 0xc8214ab740] } +&{glRectsv QOpenGLFunctions_4_5_Compatibility::glRectsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8214ab880 0xc8214ab900] } +&{glReleaseShaderCompiler QOpenGLFunctions_4_5_Compatibility::glReleaseShaderCompiler commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [] } +&{glRenderMode QOpenGLFunctions_4_5_Compatibility::glRenderMode commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLint [0xc8214abb40] } +&{glRenderbufferStorage QOpenGLFunctions_4_5_Compatibility::glRenderbufferStorage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8214abce0 0xc8214abd60 0xc8214abde0 0xc8214abe60] } +&{glRenderbufferStorageMultisample QOpenGLFunctions_4_5_Compatibility::glRenderbufferStorageMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8212a8000 0xc8212a8080 0xc8212a8100 0xc8212a8180 0xc8212a8220] } +&{glResetHistogram QOpenGLFunctions_4_5_Compatibility::glResetHistogram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8212a8360] } +&{glResetMinmax QOpenGLFunctions_4_5_Compatibility::glResetMinmax commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8212a84a0] } +&{glResumeTransformFeedback QOpenGLFunctions_4_5_Compatibility::glResumeTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [] } +&{glRotated QOpenGLFunctions_4_5_Compatibility::glRotated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8212a86c0 0xc8212a8740 0xc8212a87c0 0xc8212a8840] } +&{glRotatef QOpenGLFunctions_4_5_Compatibility::glRotatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8212a8980 0xc8212a8a00 0xc8212a8a80 0xc8212a8b00] } +&{glSampleCoverage QOpenGLFunctions_4_5_Compatibility::glSampleCoverage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8212a8c40 0xc8212a8cc0] } +&{glSampleMaski QOpenGLFunctions_4_5_Compatibility::glSampleMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8212a8e00 0xc8212a8e80] } +&{glSamplerParameterIiv QOpenGLFunctions_4_5_Compatibility::glSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8212a9020 0xc8212a90a0 0xc8212a9120] } +&{glSamplerParameterIuiv QOpenGLFunctions_4_5_Compatibility::glSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8212a92c0 0xc8212a9340 0xc8212a93c0] } +&{glSamplerParameterf QOpenGLFunctions_4_5_Compatibility::glSamplerParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8212a9560 0xc8212a95e0 0xc8212a9660] } +&{glSamplerParameterfv QOpenGLFunctions_4_5_Compatibility::glSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8212a9800 0xc8212a9880 0xc8212a9900] } +&{glSamplerParameteri QOpenGLFunctions_4_5_Compatibility::glSamplerParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8212a9aa0 0xc8212a9b20 0xc8212a9ba0] } +&{glSamplerParameteriv QOpenGLFunctions_4_5_Compatibility::glSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8212a9d40 0xc8212a9dc0 0xc8212a9e40] } +&{glScaled QOpenGLFunctions_4_5_Compatibility::glScaled commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8212a9f80 0xc820d04000 0xc820d04080] } +&{glScalef QOpenGLFunctions_4_5_Compatibility::glScalef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820d041c0 0xc820d04240 0xc820d042c0] } +&{glScissor QOpenGLFunctions_4_5_Compatibility::glScissor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820d04400 0xc820d04480 0xc820d04500 0xc820d04580] } +&{glScissorArrayv QOpenGLFunctions_4_5_Compatibility::glScissorArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820d046c0 0xc820d04740 0xc820d047c0] } +&{glScissorIndexed QOpenGLFunctions_4_5_Compatibility::glScissorIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820d04900 0xc820d04980 0xc820d04a00 0xc820d04a80 0xc820d04b20] } +&{glScissorIndexedv QOpenGLFunctions_4_5_Compatibility::glScissorIndexedv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820d04cc0 0xc820d04d40] } +&{glSecondaryColor3b QOpenGLFunctions_4_5_Compatibility::glSecondaryColor3b commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820d04ee0 0xc820d04f60 0xc820d04fe0] } +&{glSecondaryColor3bv QOpenGLFunctions_4_5_Compatibility::glSecondaryColor3bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820d05180] } +&{glSecondaryColor3d QOpenGLFunctions_4_5_Compatibility::glSecondaryColor3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820d05320 0xc820d053a0 0xc820d05420] } +&{glSecondaryColor3dv QOpenGLFunctions_4_5_Compatibility::glSecondaryColor3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820d055c0] } +&{glSecondaryColor3f QOpenGLFunctions_4_5_Compatibility::glSecondaryColor3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820d05760 0xc820d057e0 0xc820d05860] } +&{glSecondaryColor3fv QOpenGLFunctions_4_5_Compatibility::glSecondaryColor3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820d05a00] } +&{glSecondaryColor3i QOpenGLFunctions_4_5_Compatibility::glSecondaryColor3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820d05ba0 0xc820d05c20 0xc820d05ca0] } +&{glSecondaryColor3iv QOpenGLFunctions_4_5_Compatibility::glSecondaryColor3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820d05e40] } +&{glSecondaryColor3s QOpenGLFunctions_4_5_Compatibility::glSecondaryColor3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc820d05fe0 0xc821eb0060 0xc821eb00e0] } +&{glSecondaryColor3sv QOpenGLFunctions_4_5_Compatibility::glSecondaryColor3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb0280] } +&{glSecondaryColor3ub QOpenGLFunctions_4_5_Compatibility::glSecondaryColor3ub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb0420 0xc821eb04a0 0xc821eb0520] } +&{glSecondaryColor3ubv QOpenGLFunctions_4_5_Compatibility::glSecondaryColor3ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb06c0] } +&{glSecondaryColor3ui QOpenGLFunctions_4_5_Compatibility::glSecondaryColor3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb0860 0xc821eb08e0 0xc821eb0960] } +&{glSecondaryColor3uiv QOpenGLFunctions_4_5_Compatibility::glSecondaryColor3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb0b00] } +&{glSecondaryColor3us QOpenGLFunctions_4_5_Compatibility::glSecondaryColor3us commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb0ca0 0xc821eb0d20 0xc821eb0da0] } +&{glSecondaryColor3usv QOpenGLFunctions_4_5_Compatibility::glSecondaryColor3usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb0f40] } +&{glSecondaryColorP3ui QOpenGLFunctions_4_5_Compatibility::glSecondaryColorP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb10e0 0xc821eb1160] } +&{glSecondaryColorP3uiv QOpenGLFunctions_4_5_Compatibility::glSecondaryColorP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb1300 0xc821eb1380] } +&{glSecondaryColorPointer QOpenGLFunctions_4_5_Compatibility::glSecondaryColorPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb1520 0xc821eb15a0 0xc821eb1620 0xc821eb16a0] } +&{glSelectBuffer QOpenGLFunctions_4_5_Compatibility::glSelectBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb17e0 0xc821eb1860] } +&{glSeparableFilter2D QOpenGLFunctions_4_5_Compatibility::glSeparableFilter2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb1a00 0xc821eb1a80 0xc821eb1b00 0xc821eb1b80 0xc821eb1c20 0xc821eb1ca0 0xc821eb1d20 0xc821eb1da0] } +&{glShadeModel QOpenGLFunctions_4_5_Compatibility::glShadeModel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb1f00] } +&{glShaderBinary QOpenGLFunctions_4_5_Compatibility::glShaderBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d82040 0xc821d820c0 0xc821d82140 0xc821d821c0 0xc821d82260] } +&{glShaderSource QOpenGLFunctions_4_5_Compatibility::glShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d823a0 0xc821d82420 0xc821d824c0 0xc821d82580] } +&{glShaderStorageBlockBinding QOpenGLFunctions_4_5_Compatibility::glShaderStorageBlockBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d82720 0xc821d827c0 0xc821d828a0] } +&{glStencilFunc QOpenGLFunctions_4_5_Compatibility::glStencilFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d82a20 0xc821d82aa0 0xc821d82b20] } +&{glStencilFuncSeparate QOpenGLFunctions_4_5_Compatibility::glStencilFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d82cc0 0xc821d82d40 0xc821d82dc0 0xc821d82e40] } +&{glStencilMask QOpenGLFunctions_4_5_Compatibility::glStencilMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d82fa0] } +&{glStencilMaskSeparate QOpenGLFunctions_4_5_Compatibility::glStencilMaskSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d83140 0xc821d831c0] } +&{glStencilOp QOpenGLFunctions_4_5_Compatibility::glStencilOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d83300 0xc821d83380 0xc821d83400] } +&{glStencilOpSeparate QOpenGLFunctions_4_5_Compatibility::glStencilOpSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d835a0 0xc821d83620 0xc821d836a0 0xc821d83720] } +&{glTexBuffer QOpenGLFunctions_4_5_Compatibility::glTexBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d83860 0xc821d838e0 0xc821d83960] } +&{glTexBufferRange QOpenGLFunctions_4_5_Compatibility::glTexBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d83aa0 0xc821d83b20 0xc821d83ba0 0xc821d83c20 0xc821d83cc0] } +&{glTexCoord1d QOpenGLFunctions_4_5_Compatibility::glTexCoord1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d83e20] } +&{glTexCoord1dv QOpenGLFunctions_4_5_Compatibility::glTexCoord1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d83f60] } +&{glTexCoord1f QOpenGLFunctions_4_5_Compatibility::glTexCoord1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8223f80c0] } +&{glTexCoord1fv QOpenGLFunctions_4_5_Compatibility::glTexCoord1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8223f8200] } +&{glTexCoord1i QOpenGLFunctions_4_5_Compatibility::glTexCoord1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8223f8360] } +&{glTexCoord1iv QOpenGLFunctions_4_5_Compatibility::glTexCoord1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8223f84a0] } +&{glTexCoord1s QOpenGLFunctions_4_5_Compatibility::glTexCoord1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8223f8600] } +&{glTexCoord1sv QOpenGLFunctions_4_5_Compatibility::glTexCoord1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8223f8740] } +&{glTexCoord2d QOpenGLFunctions_4_5_Compatibility::glTexCoord2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8223f8880 0xc8223f8900] } +&{glTexCoord2dv QOpenGLFunctions_4_5_Compatibility::glTexCoord2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8223f8a40] } +&{glTexCoord2f QOpenGLFunctions_4_5_Compatibility::glTexCoord2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8223f8b80 0xc8223f8c00] } +&{glTexCoord2fv QOpenGLFunctions_4_5_Compatibility::glTexCoord2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8223f8d40] } +&{glTexCoord2i QOpenGLFunctions_4_5_Compatibility::glTexCoord2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8223f8e80 0xc8223f8f00] } +&{glTexCoord2iv QOpenGLFunctions_4_5_Compatibility::glTexCoord2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8223f9040] } +&{glTexCoord2s QOpenGLFunctions_4_5_Compatibility::glTexCoord2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8223f9180 0xc8223f9200] } +&{glTexCoord2sv QOpenGLFunctions_4_5_Compatibility::glTexCoord2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8223f9340] } +&{glTexCoord3d QOpenGLFunctions_4_5_Compatibility::glTexCoord3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8223f9480 0xc8223f9500 0xc8223f9580] } +&{glTexCoord3dv QOpenGLFunctions_4_5_Compatibility::glTexCoord3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8223f96c0] } +&{glTexCoord3f QOpenGLFunctions_4_5_Compatibility::glTexCoord3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8223f9800 0xc8223f9880 0xc8223f9900] } +&{glTexCoord3fv QOpenGLFunctions_4_5_Compatibility::glTexCoord3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8223f9a40] } +&{glTexCoord3i QOpenGLFunctions_4_5_Compatibility::glTexCoord3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8223f9b80 0xc8223f9c00 0xc8223f9c80] } +&{glTexCoord3iv QOpenGLFunctions_4_5_Compatibility::glTexCoord3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8223f9dc0] } +&{glTexCoord3s QOpenGLFunctions_4_5_Compatibility::glTexCoord3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8223f9f00 0xc8223f9f80 0xc8225bc000] } +&{glTexCoord3sv QOpenGLFunctions_4_5_Compatibility::glTexCoord3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8225bc140] } +&{glTexCoord4d QOpenGLFunctions_4_5_Compatibility::glTexCoord4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8225bc280 0xc8225bc300 0xc8225bc380 0xc8225bc400] } +&{glTexCoord4dv QOpenGLFunctions_4_5_Compatibility::glTexCoord4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8225bc540] } +&{glTexCoord4f QOpenGLFunctions_4_5_Compatibility::glTexCoord4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8225bc680 0xc8225bc700 0xc8225bc780 0xc8225bc800] } +&{glTexCoord4fv QOpenGLFunctions_4_5_Compatibility::glTexCoord4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8225bc940] } +&{glTexCoord4i QOpenGLFunctions_4_5_Compatibility::glTexCoord4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8225bca80 0xc8225bcb00 0xc8225bcb80 0xc8225bcc00] } +&{glTexCoord4iv QOpenGLFunctions_4_5_Compatibility::glTexCoord4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8225bcd40] } +&{glTexCoord4s QOpenGLFunctions_4_5_Compatibility::glTexCoord4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8225bce80 0xc8225bcf00 0xc8225bcf80 0xc8225bd000] } +&{glTexCoord4sv QOpenGLFunctions_4_5_Compatibility::glTexCoord4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8225bd140] } +&{glTexCoordP1ui QOpenGLFunctions_4_5_Compatibility::glTexCoordP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8225bd280 0xc8225bd300] } +&{glTexCoordP1uiv QOpenGLFunctions_4_5_Compatibility::glTexCoordP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8225bd440 0xc8225bd4c0] } +&{glTexCoordP2ui QOpenGLFunctions_4_5_Compatibility::glTexCoordP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8225bd600 0xc8225bd680] } +&{glTexCoordP2uiv QOpenGLFunctions_4_5_Compatibility::glTexCoordP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8225bd7c0 0xc8225bd840] } +&{glTexCoordP3ui QOpenGLFunctions_4_5_Compatibility::glTexCoordP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8225bd980 0xc8225bda00] } +&{glTexCoordP3uiv QOpenGLFunctions_4_5_Compatibility::glTexCoordP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8225bdb40 0xc8225bdbc0] } +&{glTexCoordP4ui QOpenGLFunctions_4_5_Compatibility::glTexCoordP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8225bdd00 0xc8225bdd80] } +&{glTexCoordP4uiv QOpenGLFunctions_4_5_Compatibility::glTexCoordP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8225bdec0 0xc8225bdf40] } +&{glTexCoordPointer QOpenGLFunctions_4_5_Compatibility::glTexCoordPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8226d60e0 0xc8226d6160 0xc8226d61e0 0xc8226d6260] } +&{glTexEnvf QOpenGLFunctions_4_5_Compatibility::glTexEnvf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8226d63a0 0xc8226d6420 0xc8226d64a0] } +&{glTexEnvfv QOpenGLFunctions_4_5_Compatibility::glTexEnvfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8226d65e0 0xc8226d6660 0xc8226d66e0] } +&{glTexEnvi QOpenGLFunctions_4_5_Compatibility::glTexEnvi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8226d6820 0xc8226d68a0 0xc8226d6920] } +&{glTexEnviv QOpenGLFunctions_4_5_Compatibility::glTexEnviv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8226d6a60 0xc8226d6ae0 0xc8226d6b60] } +&{glTexGend QOpenGLFunctions_4_5_Compatibility::glTexGend commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8226d6ca0 0xc8226d6d20 0xc8226d6da0] } +&{glTexGendv QOpenGLFunctions_4_5_Compatibility::glTexGendv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8226d6ee0 0xc8226d6f60 0xc8226d6fe0] } +&{glTexGenf QOpenGLFunctions_4_5_Compatibility::glTexGenf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8226d7120 0xc8226d71a0 0xc8226d7220] } +&{glTexGenfv QOpenGLFunctions_4_5_Compatibility::glTexGenfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8226d7360 0xc8226d73e0 0xc8226d7460] } +&{glTexGeni QOpenGLFunctions_4_5_Compatibility::glTexGeni commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8226d75a0 0xc8226d7620 0xc8226d76a0] } +&{glTexGeniv QOpenGLFunctions_4_5_Compatibility::glTexGeniv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8226d77e0 0xc8226d7860 0xc8226d78e0] } +&{glTexImage1D QOpenGLFunctions_4_5_Compatibility::glTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8226d7a20 0xc8226d7aa0 0xc8226d7b20 0xc8226d7ba0 0xc8226d7c40 0xc8226d7cc0 0xc8226d7d40 0xc8226d7dc0] } +&{glTexImage2D QOpenGLFunctions_4_5_Compatibility::glTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8226d7f00 0xc8226d7f80 0xc822718000 0xc822718080 0xc822718120 0xc8227181a0 0xc822718220 0xc8227182a0 0xc822718340] } +&{glTexImage2DMultisample QOpenGLFunctions_4_5_Compatibility::glTexImage2DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227184e0 0xc822718560 0xc8227185e0 0xc822718660 0xc822718700 0xc8227187a0] } +&{glTexImage3D QOpenGLFunctions_4_5_Compatibility::glTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822718920 0xc8227189a0 0xc822718a20 0xc822718aa0 0xc822718b40 0xc822718bc0 0xc822718c40 0xc822718cc0 0xc822718d60 0xc822718de0] } +&{glTexImage3DMultisample QOpenGLFunctions_4_5_Compatibility::glTexImage3DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822718f80 0xc822719000 0xc822719080 0xc822719100 0xc8227191a0 0xc822719220 0xc8227192c0] } +&{glTexParameterIiv QOpenGLFunctions_4_5_Compatibility::glTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227194a0 0xc822719520 0xc8227195a0] } +&{glTexParameterIuiv QOpenGLFunctions_4_5_Compatibility::glTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822719740 0xc8227197c0 0xc822719840] } +&{glTexParameterf QOpenGLFunctions_4_5_Compatibility::glTexParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822719980 0xc822719a00 0xc822719a80] } +&{glTexParameterfv QOpenGLFunctions_4_5_Compatibility::glTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822719bc0 0xc822719c40 0xc822719cc0] } +&{glTexParameteri QOpenGLFunctions_4_5_Compatibility::glTexParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822719e00 0xc822719e80 0xc822719f00] } +&{glTexParameteriv QOpenGLFunctions_4_5_Compatibility::glTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822d2c040 0xc822d2c0c0 0xc822d2c140] } +&{glTexStorage1D QOpenGLFunctions_4_5_Compatibility::glTexStorage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822d2c280 0xc822d2c300 0xc822d2c380 0xc822d2c400] } +&{glTexStorage2D QOpenGLFunctions_4_5_Compatibility::glTexStorage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822d2c540 0xc822d2c5c0 0xc822d2c640 0xc822d2c6c0 0xc822d2c760] } +&{glTexStorage2DMultisample QOpenGLFunctions_4_5_Compatibility::glTexStorage2DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822d2c900 0xc822d2c980 0xc822d2ca00 0xc822d2ca80 0xc822d2cb20 0xc822d2cbc0] } +&{glTexStorage3D QOpenGLFunctions_4_5_Compatibility::glTexStorage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822d2cd40 0xc822d2cdc0 0xc822d2ce40 0xc822d2cec0 0xc822d2cf60 0xc822d2cfe0] } +&{glTexStorage3DMultisample QOpenGLFunctions_4_5_Compatibility::glTexStorage3DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822d2d180 0xc822d2d200 0xc822d2d280 0xc822d2d300 0xc822d2d3a0 0xc822d2d420 0xc822d2d4c0] } +&{glTexSubImage1D QOpenGLFunctions_4_5_Compatibility::glTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822d2d640 0xc822d2d6c0 0xc822d2d740 0xc822d2d7c0 0xc822d2d860 0xc822d2d8e0 0xc822d2d960] } +&{glTexSubImage2D QOpenGLFunctions_4_5_Compatibility::glTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822d2daa0 0xc822d2db20 0xc822d2dba0 0xc822d2dc20 0xc822d2dcc0 0xc822d2dd40 0xc822d2ddc0 0xc822d2de40 0xc822d2dee0] } +&{glTexSubImage3D QOpenGLFunctions_4_5_Compatibility::glTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821398020 0xc8213980a0 0xc821398120 0xc8213981a0 0xc821398240 0xc8213982c0 0xc821398340 0xc8213983c0 0xc821398460 0xc8213984e0 0xc821398560] } +&{glTextureBarrier QOpenGLFunctions_4_5_Compatibility::glTextureBarrier commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [] } +&{glTextureBuffer QOpenGLFunctions_4_5_Compatibility::glTextureBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821398720 0xc8213987a0 0xc821398820] } +&{glTextureBufferRange QOpenGLFunctions_4_5_Compatibility::glTextureBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8213989c0 0xc821398a40 0xc821398ac0 0xc821398b40 0xc821398be0] } +&{glTextureParameterIiv QOpenGLFunctions_4_5_Compatibility::glTextureParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821398d80 0xc821398e00 0xc821398e80] } +&{glTextureParameterIuiv QOpenGLFunctions_4_5_Compatibility::glTextureParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821399020 0xc8213990a0 0xc821399120] } +&{glTextureParameterf QOpenGLFunctions_4_5_Compatibility::glTextureParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8213992c0 0xc821399340 0xc8213993c0] } +&{glTextureParameterfv QOpenGLFunctions_4_5_Compatibility::glTextureParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821399560 0xc8213995e0 0xc821399660] } +&{glTextureParameteri QOpenGLFunctions_4_5_Compatibility::glTextureParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821399800 0xc821399880 0xc821399900] } +&{glTextureParameteriv QOpenGLFunctions_4_5_Compatibility::glTextureParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821399aa0 0xc821399b20 0xc821399ba0] } +&{glTextureStorage1D QOpenGLFunctions_4_5_Compatibility::glTextureStorage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821399d40 0xc821399dc0 0xc821399e40 0xc821399ec0] } +&{glTextureStorage2D QOpenGLFunctions_4_5_Compatibility::glTextureStorage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8212be060 0xc8212be0e0 0xc8212be160 0xc8212be1e0 0xc8212be280] } +&{glTextureStorage2DMultisample QOpenGLFunctions_4_5_Compatibility::glTextureStorage2DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8212be420 0xc8212be4a0 0xc8212be520 0xc8212be5a0 0xc8212be640 0xc8212be6e0] } +&{glTextureStorage3D QOpenGLFunctions_4_5_Compatibility::glTextureStorage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8212be8c0 0xc8212be940 0xc8212be9c0 0xc8212bea40 0xc8212beae0 0xc8212beb60] } +&{glTextureStorage3DMultisample QOpenGLFunctions_4_5_Compatibility::glTextureStorage3DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8212bed00 0xc8212bed80 0xc8212bee00 0xc8212bee80 0xc8212bef20 0xc8212befa0 0xc8212bf040] } +&{glTextureSubImage1D QOpenGLFunctions_4_5_Compatibility::glTextureSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8212bf220 0xc8212bf2a0 0xc8212bf320 0xc8212bf3a0 0xc8212bf440 0xc8212bf4c0 0xc8212bf540] } +&{glTextureSubImage2D QOpenGLFunctions_4_5_Compatibility::glTextureSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8212bf6e0 0xc8212bf760 0xc8212bf7e0 0xc8212bf860 0xc8212bf900 0xc8212bf980 0xc8212bfa00 0xc8212bfa80 0xc8212bfb20] } +&{glTextureSubImage3D QOpenGLFunctions_4_5_Compatibility::glTextureSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8212bfcc0 0xc8212bfd40 0xc8212bfdc0 0xc8212bfe40 0xc8212bfee0 0xc8212bff60 0xc8212bffe0 0xc821eda060 0xc821eda100 0xc821eda180 0xc821eda200] } +&{glTextureView QOpenGLFunctions_4_5_Compatibility::glTextureView commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eda340 0xc821eda3c0 0xc821eda440 0xc821eda4c0 0xc821eda560 0xc821eda5e0 0xc821eda660 0xc821eda6e0] } +&{glTransformFeedbackBufferBase QOpenGLFunctions_4_5_Compatibility::glTransformFeedbackBufferBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eda880 0xc821eda900 0xc821eda980] } +&{glTransformFeedbackBufferRange QOpenGLFunctions_4_5_Compatibility::glTransformFeedbackBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821edab20 0xc821edaba0 0xc821edac20 0xc821edaca0 0xc821edad40] } +&{glTransformFeedbackVaryings QOpenGLFunctions_4_5_Compatibility::glTransformFeedbackVaryings commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821edaee0 0xc821edaf60 0xc821edb000 0xc821edb0c0] } +&{glTranslated QOpenGLFunctions_4_5_Compatibility::glTranslated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821edb200 0xc821edb280 0xc821edb300] } +&{glTranslatef QOpenGLFunctions_4_5_Compatibility::glTranslatef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821edb440 0xc821edb4c0 0xc821edb540] } +&{glUniform1d QOpenGLFunctions_4_5_Compatibility::glUniform1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821edb680 0xc821edb700] } +&{glUniform1dv QOpenGLFunctions_4_5_Compatibility::glUniform1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821edb840 0xc821edb8c0 0xc821edb940] } +&{glUniform1f QOpenGLFunctions_4_5_Compatibility::glUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821edba80 0xc821edbb00] } +&{glUniform1fv QOpenGLFunctions_4_5_Compatibility::glUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821edbc40 0xc821edbcc0 0xc821edbd40] } +&{glUniform1i QOpenGLFunctions_4_5_Compatibility::glUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821edbe80 0xc821edbf00] } +&{glUniform1iv QOpenGLFunctions_4_5_Compatibility::glUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d70040 0xc821d700c0 0xc821d70140] } +&{glUniform1ui QOpenGLFunctions_4_5_Compatibility::glUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d70280 0xc821d70300] } +&{glUniform1uiv QOpenGLFunctions_4_5_Compatibility::glUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d70440 0xc821d704c0 0xc821d70540] } +&{glUniform2d QOpenGLFunctions_4_5_Compatibility::glUniform2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d70680 0xc821d70700 0xc821d70780] } +&{glUniform2dv QOpenGLFunctions_4_5_Compatibility::glUniform2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d708c0 0xc821d70940 0xc821d709c0] } +&{glUniform2f QOpenGLFunctions_4_5_Compatibility::glUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d70b00 0xc821d70b80 0xc821d70c00] } +&{glUniform2fv QOpenGLFunctions_4_5_Compatibility::glUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d70d40 0xc821d70dc0 0xc821d70e40] } +&{glUniform2i QOpenGLFunctions_4_5_Compatibility::glUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d70f80 0xc821d71000 0xc821d71080] } +&{glUniform2iv QOpenGLFunctions_4_5_Compatibility::glUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d711c0 0xc821d71240 0xc821d712c0] } +&{glUniform2ui QOpenGLFunctions_4_5_Compatibility::glUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d71400 0xc821d71480 0xc821d71500] } +&{glUniform2uiv QOpenGLFunctions_4_5_Compatibility::glUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d71640 0xc821d716c0 0xc821d71740] } +&{glUniform3d QOpenGLFunctions_4_5_Compatibility::glUniform3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d71880 0xc821d71900 0xc821d71980 0xc821d71a00] } +&{glUniform3dv QOpenGLFunctions_4_5_Compatibility::glUniform3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d71b40 0xc821d71bc0 0xc821d71c40] } +&{glUniform3f QOpenGLFunctions_4_5_Compatibility::glUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d71d80 0xc821d71e00 0xc821d71e80 0xc821d71f00] } +&{glUniform3fv QOpenGLFunctions_4_5_Compatibility::glUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822400040 0xc8224000c0 0xc822400140] } +&{glUniform3i QOpenGLFunctions_4_5_Compatibility::glUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822400280 0xc822400300 0xc822400380 0xc822400400] } +&{glUniform3iv QOpenGLFunctions_4_5_Compatibility::glUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822400540 0xc8224005c0 0xc822400640] } +&{glUniform3ui QOpenGLFunctions_4_5_Compatibility::glUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822400780 0xc822400800 0xc822400880 0xc822400900] } +&{glUniform3uiv QOpenGLFunctions_4_5_Compatibility::glUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822400a40 0xc822400ac0 0xc822400b40] } +&{glUniform4d QOpenGLFunctions_4_5_Compatibility::glUniform4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822400c80 0xc822400d00 0xc822400d80 0xc822400e00 0xc822400ea0] } +&{glUniform4dv QOpenGLFunctions_4_5_Compatibility::glUniform4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822400fe0 0xc822401060 0xc8224010e0] } +&{glUniform4f QOpenGLFunctions_4_5_Compatibility::glUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822401220 0xc8224012a0 0xc822401320 0xc8224013a0 0xc822401440] } +&{glUniform4fv QOpenGLFunctions_4_5_Compatibility::glUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822401580 0xc822401600 0xc822401680] } +&{glUniform4i QOpenGLFunctions_4_5_Compatibility::glUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8224017c0 0xc822401840 0xc8224018c0 0xc822401940 0xc8224019e0] } +&{glUniform4iv QOpenGLFunctions_4_5_Compatibility::glUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822401b20 0xc822401ba0 0xc822401c20] } +&{glUniform4ui QOpenGLFunctions_4_5_Compatibility::glUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822401d60 0xc822401de0 0xc822401e60 0xc822401ee0 0xc822401f80] } +&{glUniform4uiv QOpenGLFunctions_4_5_Compatibility::glUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82270c0c0 0xc82270c140 0xc82270c1c0] } +&{glUniformBlockBinding QOpenGLFunctions_4_5_Compatibility::glUniformBlockBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82270c360 0xc82270c400 0xc82270c4e0] } +&{glUniformMatrix2dv QOpenGLFunctions_4_5_Compatibility::glUniformMatrix2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82270c6c0 0xc82270c740 0xc82270c7c0 0xc82270c840] } +&{glUniformMatrix2fv QOpenGLFunctions_4_5_Compatibility::glUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82270c9e0 0xc82270ca60 0xc82270cae0 0xc82270cb60] } +&{glUniformMatrix2x3dv QOpenGLFunctions_4_5_Compatibility::glUniformMatrix2x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82270cd00 0xc82270cd80 0xc82270ce00 0xc82270ce80] } +&{glUniformMatrix2x3fv QOpenGLFunctions_4_5_Compatibility::glUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82270d020 0xc82270d0a0 0xc82270d120 0xc82270d1a0] } +&{glUniformMatrix2x4dv QOpenGLFunctions_4_5_Compatibility::glUniformMatrix2x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82270d340 0xc82270d3c0 0xc82270d440 0xc82270d4c0] } +&{glUniformMatrix2x4fv QOpenGLFunctions_4_5_Compatibility::glUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82270d660 0xc82270d6e0 0xc82270d760 0xc82270d7e0] } +&{glUniformMatrix3dv QOpenGLFunctions_4_5_Compatibility::glUniformMatrix3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82270d980 0xc82270da00 0xc82270da80 0xc82270db00] } +&{glUniformMatrix3fv QOpenGLFunctions_4_5_Compatibility::glUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82270dca0 0xc82270dd20 0xc82270dda0 0xc82270de20] } +&{glUniformMatrix3x2dv QOpenGLFunctions_4_5_Compatibility::glUniformMatrix3x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc82270dfc0 0xc821ece040 0xc821ece0c0 0xc821ece140] } +&{glUniformMatrix3x2fv QOpenGLFunctions_4_5_Compatibility::glUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821ece2e0 0xc821ece360 0xc821ece3e0 0xc821ece460] } +&{glUniformMatrix3x4dv QOpenGLFunctions_4_5_Compatibility::glUniformMatrix3x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821ece600 0xc821ece680 0xc821ece700 0xc821ece780] } +&{glUniformMatrix3x4fv QOpenGLFunctions_4_5_Compatibility::glUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821ece920 0xc821ece9a0 0xc821ecea20 0xc821eceaa0] } +&{glUniformMatrix4dv QOpenGLFunctions_4_5_Compatibility::glUniformMatrix4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821ecec40 0xc821ececc0 0xc821eced40 0xc821ecedc0] } +&{glUniformMatrix4fv QOpenGLFunctions_4_5_Compatibility::glUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821ecef60 0xc821ecefe0 0xc821ecf060 0xc821ecf0e0] } +&{glUniformMatrix4x2dv QOpenGLFunctions_4_5_Compatibility::glUniformMatrix4x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821ecf280 0xc821ecf300 0xc821ecf380 0xc821ecf400] } +&{glUniformMatrix4x2fv QOpenGLFunctions_4_5_Compatibility::glUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821ecf5a0 0xc821ecf620 0xc821ecf6a0 0xc821ecf720] } +&{glUniformMatrix4x3dv QOpenGLFunctions_4_5_Compatibility::glUniformMatrix4x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821ecf8c0 0xc821ecf940 0xc821ecf9c0 0xc821ecfa40] } +&{glUniformMatrix4x3fv QOpenGLFunctions_4_5_Compatibility::glUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821ecfbe0 0xc821ecfc60 0xc821ecfce0 0xc821ecfd60] } +&{glUniformSubroutinesuiv QOpenGLFunctions_4_5_Compatibility::glUniformSubroutinesuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821ecff00 0xc821ecff80 0xc821d66000] } +&{glUnmapBuffer QOpenGLFunctions_4_5_Compatibility::glUnmapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLboolean [0xc821d66140] } +&{glUnmapNamedBuffer QOpenGLFunctions_4_5_Compatibility::glUnmapNamedBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false GLboolean [0xc821d662e0] } +&{glUseProgram QOpenGLFunctions_4_5_Compatibility::glUseProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d66420] } +&{glUseProgramStages QOpenGLFunctions_4_5_Compatibility::glUseProgramStages commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d665c0 0xc821d66640 0xc821d666c0] } +&{glValidateProgram QOpenGLFunctions_4_5_Compatibility::glValidateProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d66860] } +&{glValidateProgramPipeline QOpenGLFunctions_4_5_Compatibility::glValidateProgramPipeline commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d66a00] } +&{glVertex2d QOpenGLFunctions_4_5_Compatibility::glVertex2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d66b40 0xc821d66bc0] } +&{glVertex2dv QOpenGLFunctions_4_5_Compatibility::glVertex2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d66d00] } +&{glVertex2f QOpenGLFunctions_4_5_Compatibility::glVertex2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d66e40 0xc821d66ec0] } +&{glVertex2fv QOpenGLFunctions_4_5_Compatibility::glVertex2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d67000] } +&{glVertex2i QOpenGLFunctions_4_5_Compatibility::glVertex2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d67140 0xc821d671c0] } +&{glVertex2iv QOpenGLFunctions_4_5_Compatibility::glVertex2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d67320] } +&{glVertex2s QOpenGLFunctions_4_5_Compatibility::glVertex2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d67460 0xc821d674e0] } +&{glVertex2sv QOpenGLFunctions_4_5_Compatibility::glVertex2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d67620] } +&{glVertex3d QOpenGLFunctions_4_5_Compatibility::glVertex3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d67760 0xc821d677e0 0xc821d67860] } +&{glVertex3dv QOpenGLFunctions_4_5_Compatibility::glVertex3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d679a0] } +&{glVertex3f QOpenGLFunctions_4_5_Compatibility::glVertex3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d67ae0 0xc821d67b60 0xc821d67be0] } +&{glVertex3fv QOpenGLFunctions_4_5_Compatibility::glVertex3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d67d20] } +&{glVertex3i QOpenGLFunctions_4_5_Compatibility::glVertex3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d67e60 0xc821d67ee0 0xc821d67f60] } +&{glVertex3iv QOpenGLFunctions_4_5_Compatibility::glVertex3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821e660c0] } +&{glVertex3s QOpenGLFunctions_4_5_Compatibility::glVertex3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821e66200 0xc821e66280 0xc821e66300] } +&{glVertex3sv QOpenGLFunctions_4_5_Compatibility::glVertex3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821e66440] } +&{glVertex4d QOpenGLFunctions_4_5_Compatibility::glVertex4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821e66580 0xc821e66600 0xc821e66680 0xc821e66700] } +&{glVertex4dv QOpenGLFunctions_4_5_Compatibility::glVertex4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821e66840] } +&{glVertex4f QOpenGLFunctions_4_5_Compatibility::glVertex4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821e66980 0xc821e66a00 0xc821e66a80 0xc821e66b00] } +&{glVertex4fv QOpenGLFunctions_4_5_Compatibility::glVertex4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821e66c40] } +&{glVertex4i QOpenGLFunctions_4_5_Compatibility::glVertex4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821e66d80 0xc821e66e00 0xc821e66e80 0xc821e66f00] } +&{glVertex4iv QOpenGLFunctions_4_5_Compatibility::glVertex4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821e67060] } +&{glVertex4s QOpenGLFunctions_4_5_Compatibility::glVertex4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821e671a0 0xc821e67220 0xc821e672a0 0xc821e67320] } +&{glVertex4sv QOpenGLFunctions_4_5_Compatibility::glVertex4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821e67460] } +&{glVertexArrayAttribBinding QOpenGLFunctions_4_5_Compatibility::glVertexArrayAttribBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821e67600 0xc821e67680 0xc821e67700] } +&{glVertexArrayAttribFormat QOpenGLFunctions_4_5_Compatibility::glVertexArrayAttribFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821e678a0 0xc821e67920 0xc821e679a0 0xc821e67a20 0xc821e67ac0 0xc821e67b40] } +&{glVertexArrayAttribIFormat QOpenGLFunctions_4_5_Compatibility::glVertexArrayAttribIFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821e67ce0 0xc821e67d60 0xc821e67de0 0xc821e67e60 0xc821e67f00] } +&{glVertexArrayAttribLFormat QOpenGLFunctions_4_5_Compatibility::glVertexArrayAttribLFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821f480a0 0xc821f48120 0xc821f481a0 0xc821f48220 0xc821f482c0] } +&{glVertexArrayBindingDivisor QOpenGLFunctions_4_5_Compatibility::glVertexArrayBindingDivisor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821f48460 0xc821f484e0 0xc821f48560] } +&{glVertexArrayElementBuffer QOpenGLFunctions_4_5_Compatibility::glVertexArrayElementBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821f48700 0xc821f48780] } +&{glVertexArrayVertexBuffer QOpenGLFunctions_4_5_Compatibility::glVertexArrayVertexBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821f48920 0xc821f489a0 0xc821f48a20 0xc821f48aa0 0xc821f48b40] } +&{glVertexArrayVertexBuffers QOpenGLFunctions_4_5_Compatibility::glVertexArrayVertexBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821f48ce0 0xc821f48d60 0xc821f48de0 0xc821f48e60 0xc821f48f00 0xc821f48f80] } +&{glVertexAttrib1d QOpenGLFunctions_4_5_Compatibility::glVertexAttrib1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821f490c0 0xc821f49140] } +&{glVertexAttrib1dv QOpenGLFunctions_4_5_Compatibility::glVertexAttrib1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821f492e0 0xc821f49360] } +&{glVertexAttrib1f QOpenGLFunctions_4_5_Compatibility::glVertexAttrib1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821f494a0 0xc821f49520] } +&{glVertexAttrib1fv QOpenGLFunctions_4_5_Compatibility::glVertexAttrib1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821f496c0 0xc821f49740] } +&{glVertexAttrib1s QOpenGLFunctions_4_5_Compatibility::glVertexAttrib1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821f49880 0xc821f49900] } +&{glVertexAttrib1sv QOpenGLFunctions_4_5_Compatibility::glVertexAttrib1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821f49aa0 0xc821f49b20] } +&{glVertexAttrib2d QOpenGLFunctions_4_5_Compatibility::glVertexAttrib2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821f49c60 0xc821f49ce0 0xc821f49d60] } +&{glVertexAttrib2dv QOpenGLFunctions_4_5_Compatibility::glVertexAttrib2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821f49f00 0xc821f49f80] } +&{glVertexAttrib2f QOpenGLFunctions_4_5_Compatibility::glVertexAttrib2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220de0c0 0xc8220de140 0xc8220de1c0] } +&{glVertexAttrib2fv QOpenGLFunctions_4_5_Compatibility::glVertexAttrib2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220de360 0xc8220de3e0] } +&{glVertexAttrib2s QOpenGLFunctions_4_5_Compatibility::glVertexAttrib2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220de520 0xc8220de5a0 0xc8220de620] } +&{glVertexAttrib2sv QOpenGLFunctions_4_5_Compatibility::glVertexAttrib2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220de7c0 0xc8220de840] } +&{glVertexAttrib3d QOpenGLFunctions_4_5_Compatibility::glVertexAttrib3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220de980 0xc8220dea00 0xc8220dea80 0xc8220deb00] } +&{glVertexAttrib3dv QOpenGLFunctions_4_5_Compatibility::glVertexAttrib3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220deca0 0xc8220ded20] } +&{glVertexAttrib3f QOpenGLFunctions_4_5_Compatibility::glVertexAttrib3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220dee60 0xc8220deee0 0xc8220def60 0xc8220defe0] } +&{glVertexAttrib3fv QOpenGLFunctions_4_5_Compatibility::glVertexAttrib3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220df180 0xc8220df200] } +&{glVertexAttrib3s QOpenGLFunctions_4_5_Compatibility::glVertexAttrib3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220df340 0xc8220df3c0 0xc8220df440 0xc8220df4c0] } +&{glVertexAttrib3sv QOpenGLFunctions_4_5_Compatibility::glVertexAttrib3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220df660 0xc8220df6e0] } +&{glVertexAttrib4Nbv QOpenGLFunctions_4_5_Compatibility::glVertexAttrib4Nbv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220df880 0xc8220df900] } +&{glVertexAttrib4Niv QOpenGLFunctions_4_5_Compatibility::glVertexAttrib4Niv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220dfaa0 0xc8220dfb20] } +&{glVertexAttrib4Nsv QOpenGLFunctions_4_5_Compatibility::glVertexAttrib4Nsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220dfcc0 0xc8220dfd40] } +&{glVertexAttrib4Nub QOpenGLFunctions_4_5_Compatibility::glVertexAttrib4Nub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220dfee0 0xc8220dff60 0xc8220dffe0 0xc8220ec060 0xc8220ec100] } +&{glVertexAttrib4Nubv QOpenGLFunctions_4_5_Compatibility::glVertexAttrib4Nubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220ec2a0 0xc8220ec320] } +&{glVertexAttrib4Nuiv QOpenGLFunctions_4_5_Compatibility::glVertexAttrib4Nuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220ec4c0 0xc8220ec540] } +&{glVertexAttrib4Nusv QOpenGLFunctions_4_5_Compatibility::glVertexAttrib4Nusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220ec6e0 0xc8220ec760] } +&{glVertexAttrib4bv QOpenGLFunctions_4_5_Compatibility::glVertexAttrib4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220ec900 0xc8220ec980] } +&{glVertexAttrib4d QOpenGLFunctions_4_5_Compatibility::glVertexAttrib4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220ecac0 0xc8220ecb40 0xc8220ecbc0 0xc8220ecc40 0xc8220ecce0] } +&{glVertexAttrib4dv QOpenGLFunctions_4_5_Compatibility::glVertexAttrib4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220ece80 0xc8220ecf00] } +&{glVertexAttrib4f QOpenGLFunctions_4_5_Compatibility::glVertexAttrib4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220ed040 0xc8220ed0c0 0xc8220ed140 0xc8220ed1c0 0xc8220ed260] } +&{glVertexAttrib4fv QOpenGLFunctions_4_5_Compatibility::glVertexAttrib4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220ed400 0xc8220ed480] } +&{glVertexAttrib4iv QOpenGLFunctions_4_5_Compatibility::glVertexAttrib4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220ed620 0xc8220ed6a0] } +&{glVertexAttrib4s QOpenGLFunctions_4_5_Compatibility::glVertexAttrib4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220ed7e0 0xc8220ed860 0xc8220ed8e0 0xc8220ed960 0xc8220eda00] } +&{glVertexAttrib4sv QOpenGLFunctions_4_5_Compatibility::glVertexAttrib4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220edba0 0xc8220edc20] } +&{glVertexAttrib4ubv QOpenGLFunctions_4_5_Compatibility::glVertexAttrib4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220eddc0 0xc8220ede40] } +&{glVertexAttrib4uiv QOpenGLFunctions_4_5_Compatibility::glVertexAttrib4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220edfe0 0xc821d5e060] } +&{glVertexAttrib4usv QOpenGLFunctions_4_5_Compatibility::glVertexAttrib4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d5e200 0xc821d5e280] } +&{glVertexAttribBinding QOpenGLFunctions_4_5_Compatibility::glVertexAttribBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d5e420 0xc821d5e4a0] } +&{glVertexAttribDivisor QOpenGLFunctions_4_5_Compatibility::glVertexAttribDivisor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d5e640 0xc821d5e6c0] } +&{glVertexAttribFormat QOpenGLFunctions_4_5_Compatibility::glVertexAttribFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d5e860 0xc821d5e8e0 0xc821d5e960 0xc821d5e9e0 0xc821d5ea80] } +&{glVertexAttribI1i QOpenGLFunctions_4_5_Compatibility::glVertexAttribI1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d5ec20 0xc821d5eca0] } +&{glVertexAttribI1iv QOpenGLFunctions_4_5_Compatibility::glVertexAttribI1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d5ee40 0xc821d5eec0] } +&{glVertexAttribI1ui QOpenGLFunctions_4_5_Compatibility::glVertexAttribI1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d5f060 0xc821d5f0e0] } +&{glVertexAttribI1uiv QOpenGLFunctions_4_5_Compatibility::glVertexAttribI1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d5f280 0xc821d5f300] } +&{glVertexAttribI2i QOpenGLFunctions_4_5_Compatibility::glVertexAttribI2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d5f4a0 0xc821d5f520 0xc821d5f5a0] } +&{glVertexAttribI2iv QOpenGLFunctions_4_5_Compatibility::glVertexAttribI2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d5f740 0xc821d5f7c0] } +&{glVertexAttribI2ui QOpenGLFunctions_4_5_Compatibility::glVertexAttribI2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d5f960 0xc821d5f9e0 0xc821d5fa60] } +&{glVertexAttribI2uiv QOpenGLFunctions_4_5_Compatibility::glVertexAttribI2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d5fc00 0xc821d5fc80] } +&{glVertexAttribI3i QOpenGLFunctions_4_5_Compatibility::glVertexAttribI3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821d5fe20 0xc821d5fea0 0xc821d5ff20 0xc821d5ffa0] } +&{glVertexAttribI3iv QOpenGLFunctions_4_5_Compatibility::glVertexAttribI3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227c0140 0xc8227c01c0] } +&{glVertexAttribI3ui QOpenGLFunctions_4_5_Compatibility::glVertexAttribI3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227c0360 0xc8227c03e0 0xc8227c0460 0xc8227c04e0] } +&{glVertexAttribI3uiv QOpenGLFunctions_4_5_Compatibility::glVertexAttribI3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227c0680 0xc8227c0700] } +&{glVertexAttribI4bv QOpenGLFunctions_4_5_Compatibility::glVertexAttribI4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227c08a0 0xc8227c0920] } +&{glVertexAttribI4i QOpenGLFunctions_4_5_Compatibility::glVertexAttribI4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227c0ac0 0xc8227c0b40 0xc8227c0bc0 0xc8227c0c40 0xc8227c0ce0] } +&{glVertexAttribI4iv QOpenGLFunctions_4_5_Compatibility::glVertexAttribI4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227c0e80 0xc8227c0f00] } +&{glVertexAttribI4sv QOpenGLFunctions_4_5_Compatibility::glVertexAttribI4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227c10a0 0xc8227c1120] } +&{glVertexAttribI4ubv QOpenGLFunctions_4_5_Compatibility::glVertexAttribI4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227c12c0 0xc8227c1340] } +&{glVertexAttribI4ui QOpenGLFunctions_4_5_Compatibility::glVertexAttribI4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227c1500 0xc8227c1580 0xc8227c1600 0xc8227c1680 0xc8227c1720] } +&{glVertexAttribI4uiv QOpenGLFunctions_4_5_Compatibility::glVertexAttribI4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227c18c0 0xc8227c1940] } +&{glVertexAttribI4usv QOpenGLFunctions_4_5_Compatibility::glVertexAttribI4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227c1ae0 0xc8227c1b60] } +&{glVertexAttribIFormat QOpenGLFunctions_4_5_Compatibility::glVertexAttribIFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8227c1d00 0xc8227c1d80 0xc8227c1e00 0xc8227c1e80] } +&{glVertexAttribIPointer QOpenGLFunctions_4_5_Compatibility::glVertexAttribIPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822414020 0xc8224140a0 0xc822414120 0xc8224141a0 0xc822414240] } +&{glVertexAttribL1d QOpenGLFunctions_4_5_Compatibility::glVertexAttribL1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8224143e0 0xc822414460] } +&{glVertexAttribL1dv QOpenGLFunctions_4_5_Compatibility::glVertexAttribL1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822414600 0xc822414680] } +&{glVertexAttribL2d QOpenGLFunctions_4_5_Compatibility::glVertexAttribL2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822414820 0xc8224148a0 0xc822414920] } +&{glVertexAttribL2dv QOpenGLFunctions_4_5_Compatibility::glVertexAttribL2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822414ac0 0xc822414b40] } +&{glVertexAttribL3d QOpenGLFunctions_4_5_Compatibility::glVertexAttribL3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822414ce0 0xc822414d60 0xc822414de0 0xc822414e60] } +&{glVertexAttribL3dv QOpenGLFunctions_4_5_Compatibility::glVertexAttribL3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822415000 0xc822415080] } +&{glVertexAttribL4d QOpenGLFunctions_4_5_Compatibility::glVertexAttribL4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822415220 0xc8224152a0 0xc822415320 0xc8224153a0 0xc822415440] } +&{glVertexAttribL4dv QOpenGLFunctions_4_5_Compatibility::glVertexAttribL4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8224155e0 0xc822415660] } +&{glVertexAttribLFormat QOpenGLFunctions_4_5_Compatibility::glVertexAttribLFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822415800 0xc822415880 0xc822415900 0xc822415980] } +&{glVertexAttribLPointer QOpenGLFunctions_4_5_Compatibility::glVertexAttribLPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822415b20 0xc822415ba0 0xc822415c20 0xc822415ca0 0xc822415d40] } +&{glVertexAttribP1ui QOpenGLFunctions_4_5_Compatibility::glVertexAttribP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc822415ee0 0xc822415f60 0xc822415fe0 0xc8220c8060] } +&{glVertexAttribP1uiv QOpenGLFunctions_4_5_Compatibility::glVertexAttribP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220c8200 0xc8220c8280 0xc8220c8300 0xc8220c8380] } +&{glVertexAttribP2ui QOpenGLFunctions_4_5_Compatibility::glVertexAttribP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220c8520 0xc8220c85a0 0xc8220c8620 0xc8220c86a0] } +&{glVertexAttribP2uiv QOpenGLFunctions_4_5_Compatibility::glVertexAttribP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220c8840 0xc8220c88c0 0xc8220c8940 0xc8220c89c0] } +&{glVertexAttribP3ui QOpenGLFunctions_4_5_Compatibility::glVertexAttribP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220c8b60 0xc8220c8be0 0xc8220c8c60 0xc8220c8ce0] } +&{glVertexAttribP3uiv QOpenGLFunctions_4_5_Compatibility::glVertexAttribP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220c8e80 0xc8220c8f00 0xc8220c8f80 0xc8220c9000] } +&{glVertexAttribP4ui QOpenGLFunctions_4_5_Compatibility::glVertexAttribP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220c91a0 0xc8220c9220 0xc8220c92a0 0xc8220c9320] } +&{glVertexAttribP4uiv QOpenGLFunctions_4_5_Compatibility::glVertexAttribP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220c94c0 0xc8220c9540 0xc8220c95c0 0xc8220c9640] } +&{glVertexAttribPointer QOpenGLFunctions_4_5_Compatibility::glVertexAttribPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220c97e0 0xc8220c9860 0xc8220c98e0 0xc8220c9960 0xc8220c9a00 0xc8220c9a80] } +&{glVertexBindingDivisor QOpenGLFunctions_4_5_Compatibility::glVertexBindingDivisor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220c9c20 0xc8220c9ca0] } +&{glVertexP2ui QOpenGLFunctions_4_5_Compatibility::glVertexP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220c9de0 0xc8220c9e60] } +&{glVertexP2uiv QOpenGLFunctions_4_5_Compatibility::glVertexP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220c9fa0 0xc821eb8020] } +&{glVertexP3ui QOpenGLFunctions_4_5_Compatibility::glVertexP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb8160 0xc821eb81e0] } +&{glVertexP3uiv QOpenGLFunctions_4_5_Compatibility::glVertexP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb8320 0xc821eb83a0] } +&{glVertexP4ui QOpenGLFunctions_4_5_Compatibility::glVertexP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb84e0 0xc821eb8560] } +&{glVertexP4uiv QOpenGLFunctions_4_5_Compatibility::glVertexP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb86a0 0xc821eb8720] } +&{glVertexPointer QOpenGLFunctions_4_5_Compatibility::glVertexPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb8860 0xc821eb88e0 0xc821eb8960 0xc821eb89e0] } +&{glViewport QOpenGLFunctions_4_5_Compatibility::glViewport commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb8b20 0xc821eb8ba0 0xc821eb8c20 0xc821eb8ca0] } +&{glViewportArrayv QOpenGLFunctions_4_5_Compatibility::glViewportArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb8de0 0xc821eb8e60 0xc821eb8ee0] } +&{glViewportIndexedf QOpenGLFunctions_4_5_Compatibility::glViewportIndexedf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb9080 0xc821eb9100 0xc821eb9180 0xc821eb9200 0xc821eb92a0] } +&{glViewportIndexedfv QOpenGLFunctions_4_5_Compatibility::glViewportIndexedfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb9440 0xc821eb94c0] } +&{glWaitSync QOpenGLFunctions_4_5_Compatibility::glWaitSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb9600 0xc821eb9680 0xc821eb9700] } +&{glWindowPos2d QOpenGLFunctions_4_5_Compatibility::glWindowPos2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb9840 0xc821eb98c0] } +&{glWindowPos2dv QOpenGLFunctions_4_5_Compatibility::glWindowPos2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb9a00] } +&{glWindowPos2f QOpenGLFunctions_4_5_Compatibility::glWindowPos2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb9b40 0xc821eb9bc0] } +&{glWindowPos2fv QOpenGLFunctions_4_5_Compatibility::glWindowPos2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb9d00] } +&{glWindowPos2i QOpenGLFunctions_4_5_Compatibility::glWindowPos2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc821eb9e40 0xc821eb9ec0] } +&{glWindowPos2iv QOpenGLFunctions_4_5_Compatibility::glWindowPos2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220b0000] } +&{glWindowPos2s QOpenGLFunctions_4_5_Compatibility::glWindowPos2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220b0140 0xc8220b01c0] } +&{glWindowPos2sv QOpenGLFunctions_4_5_Compatibility::glWindowPos2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220b0300] } +&{glWindowPos3d QOpenGLFunctions_4_5_Compatibility::glWindowPos3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220b0440 0xc8220b04c0 0xc8220b0540] } +&{glWindowPos3dv QOpenGLFunctions_4_5_Compatibility::glWindowPos3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220b0680] } +&{glWindowPos3f QOpenGLFunctions_4_5_Compatibility::glWindowPos3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220b07c0 0xc8220b0840 0xc8220b08c0] } +&{glWindowPos3fv QOpenGLFunctions_4_5_Compatibility::glWindowPos3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220b0a00] } +&{glWindowPos3i QOpenGLFunctions_4_5_Compatibility::glWindowPos3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220b0b40 0xc8220b0bc0 0xc8220b0c40] } +&{glWindowPos3iv QOpenGLFunctions_4_5_Compatibility::glWindowPos3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220b0d80] } +&{glWindowPos3s QOpenGLFunctions_4_5_Compatibility::glWindowPos3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220b0ec0 0xc8220b0f40 0xc8220b0fc0] } +&{glWindowPos3sv QOpenGLFunctions_4_5_Compatibility::glWindowPos3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_compatibility.h non plain false false void [0xc8220b1100] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions_4_5_Core.txt b/internal/binding/dump/QtGui/QOpenGLFunctions_4_5_Core.txt new file mode 100755 index 00000000..ba61c21d --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions_4_5_Core.txt @@ -0,0 +1,653 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions_4_5_Core QOpenGLFunctions_4_5_Core::QOpenGLFunctions_4_5_Core commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.cpp non constructor false false [] } +&{initializeOpenGLFunctions QOpenGLFunctions_4_5_Core::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.cpp impure plain false false bool [] } +&{~QOpenGLFunctions_4_5_Core QOpenGLFunctions_4_5_Core::~QOpenGLFunctions_4_5_Core commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.cpp non destructor false false [] } +&{glActiveShaderProgram QOpenGLFunctions_4_5_Core::glActiveShaderProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8220b1a40 0xc8220b1ac0] } +&{glActiveTexture QOpenGLFunctions_4_5_Core::glActiveTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8220b1c20] } +&{glAttachShader QOpenGLFunctions_4_5_Core::glAttachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8220b1d80 0xc8220b1e00] } +&{glBeginConditionalRender QOpenGLFunctions_4_5_Core::glBeginConditionalRender commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8220b1fe0 0xc82273a060] } +&{glBeginQuery QOpenGLFunctions_4_5_Core::glBeginQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82273a1c0 0xc82273a240] } +&{glBeginQueryIndexed QOpenGLFunctions_4_5_Core::glBeginQueryIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82273a400 0xc82273a480 0xc82273a500] } +&{glBeginTransformFeedback QOpenGLFunctions_4_5_Core::glBeginTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82273a6c0] } +&{glBindAttribLocation QOpenGLFunctions_4_5_Core::glBindAttribLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82273a880 0xc82273a900 0xc82273a980] } +&{glBindBuffer QOpenGLFunctions_4_5_Core::glBindBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82273aae0 0xc82273ab60] } +&{glBindBufferBase QOpenGLFunctions_4_5_Core::glBindBufferBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82273acc0 0xc82273ad40 0xc82273adc0] } +&{glBindBufferRange QOpenGLFunctions_4_5_Core::glBindBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82273af80 0xc82273b000 0xc82273b080 0xc82273b100 0xc82273b1a0] } +&{glBindBuffersBase QOpenGLFunctions_4_5_Core::glBindBuffersBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82273b380 0xc82273b400 0xc82273b480 0xc82273b500] } +&{glBindBuffersRange QOpenGLFunctions_4_5_Core::glBindBuffersRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82273b6c0 0xc82273b740 0xc82273b7c0 0xc82273b840 0xc82273b8e0 0xc82273b980] } +&{glBindFragDataLocation QOpenGLFunctions_4_5_Core::glBindFragDataLocation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82273bb80 0xc82273bc00 0xc82273bc80] } +&{glBindFragDataLocationIndexed QOpenGLFunctions_4_5_Core::glBindFragDataLocationIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82273be40 0xc82273bec0 0xc82273bf40 0xc82273bfc0] } +&{glBindFramebuffer QOpenGLFunctions_4_5_Core::glBindFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822744180 0xc822744200] } +&{glBindImageTexture QOpenGLFunctions_4_5_Core::glBindImageTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227443c0 0xc822744440 0xc8227444c0 0xc822744540 0xc8227445e0 0xc822744660 0xc8227446e0] } +&{glBindImageTextures QOpenGLFunctions_4_5_Core::glBindImageTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227448a0 0xc822744920 0xc8227449a0] } +&{glBindProgramPipeline QOpenGLFunctions_4_5_Core::glBindProgramPipeline commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822744b60] } +&{glBindRenderbuffer QOpenGLFunctions_4_5_Core::glBindRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822744d20 0xc822744da0] } +&{glBindSampler QOpenGLFunctions_4_5_Core::glBindSampler commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822744f00 0xc822744f80] } +&{glBindSamplers QOpenGLFunctions_4_5_Core::glBindSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227450e0 0xc822745160 0xc8227451e0] } +&{glBindTexture QOpenGLFunctions_4_5_Core::glBindTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822745340 0xc8227453c0] } +&{glBindTextureUnit QOpenGLFunctions_4_5_Core::glBindTextureUnit commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822745580 0xc822745600] } +&{glBindTextures QOpenGLFunctions_4_5_Core::glBindTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822745760 0xc8227457e0 0xc822745860] } +&{glBindTransformFeedback QOpenGLFunctions_4_5_Core::glBindTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822745a20 0xc822745aa0] } +&{glBindVertexArray QOpenGLFunctions_4_5_Core::glBindVertexArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822745c60] } +&{glBindVertexBuffer QOpenGLFunctions_4_5_Core::glBindVertexBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822745e40 0xc822745ec0 0xc822745f40 0xc822745fc0] } +&{glBindVertexBuffers QOpenGLFunctions_4_5_Core::glBindVertexBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e5a180 0xc821e5a200 0xc821e5a280 0xc821e5a300 0xc821e5a3a0] } +&{glBlendColor QOpenGLFunctions_4_5_Core::glBlendColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e5a500 0xc821e5a580 0xc821e5a600 0xc821e5a680] } +&{glBlendEquation QOpenGLFunctions_4_5_Core::glBlendEquation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e5a7e0] } +&{glBlendEquationSeparate QOpenGLFunctions_4_5_Core::glBlendEquationSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e5a9a0 0xc821e5aa20] } +&{glBlendEquationSeparatei QOpenGLFunctions_4_5_Core::glBlendEquationSeparatei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e5abe0 0xc821e5ac60 0xc821e5ace0] } +&{glBlendEquationi QOpenGLFunctions_4_5_Core::glBlendEquationi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e5ae40 0xc821e5aec0] } +&{glBlendFunc QOpenGLFunctions_4_5_Core::glBlendFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e5b020 0xc821e5b0a0] } +&{glBlendFuncSeparate QOpenGLFunctions_4_5_Core::glBlendFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e5b260 0xc821e5b2e0 0xc821e5b360 0xc821e5b3e0] } +&{glBlendFuncSeparatei QOpenGLFunctions_4_5_Core::glBlendFuncSeparatei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e5b5a0 0xc821e5b620 0xc821e5b6a0 0xc821e5b720 0xc821e5b7c0] } +&{glBlendFunci QOpenGLFunctions_4_5_Core::glBlendFunci commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e5b920 0xc821e5b9a0 0xc821e5ba20] } +&{glBlitFramebuffer QOpenGLFunctions_4_5_Core::glBlitFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e5bbe0 0xc821e5bc60 0xc821e5bce0 0xc821e5bd60 0xc821e5be00 0xc821e5be80 0xc821e5bf00 0xc821e5bf80 0xc822532020 0xc8225320a0] } +&{glBlitNamedFramebuffer QOpenGLFunctions_4_5_Core::glBlitNamedFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822532260 0xc8225322e0 0xc822532360 0xc8225323e0 0xc822532480 0xc822532500 0xc822532580 0xc822532600 0xc8225326a0 0xc822532720 0xc8225327a0 0xc822532820] } +&{glBufferData QOpenGLFunctions_4_5_Core::glBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822532980 0xc822532a00 0xc822532a80 0xc822532b00] } +&{glBufferStorage QOpenGLFunctions_4_5_Core::glBufferStorage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822532c60 0xc822532ce0 0xc822532d60 0xc822532de0] } +&{glBufferSubData QOpenGLFunctions_4_5_Core::glBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822532f40 0xc822532fc0 0xc822533040 0xc8225330c0] } +&{glCheckFramebufferStatus QOpenGLFunctions_4_5_Core::glCheckFramebufferStatus commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLenum [0xc822533280] } +&{glCheckNamedFramebufferStatus QOpenGLFunctions_4_5_Core::glCheckNamedFramebufferStatus commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLenum [0xc822533440 0xc8225334c0] } +&{glClampColor QOpenGLFunctions_4_5_Core::glClampColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822533620 0xc8225336a0] } +&{glClear QOpenGLFunctions_4_5_Core::glClear commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822533820] } +&{glClearBufferData QOpenGLFunctions_4_5_Core::glClearBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8225339e0 0xc822533a60 0xc822533ae0 0xc822533b60 0xc822533c00] } +&{glClearBufferSubData QOpenGLFunctions_4_5_Core::glClearBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822533dc0 0xc822533e40 0xc822533ec0 0xc822533f40 0xc822533fe0 0xc822a28060 0xc822a280e0] } +&{glClearBufferfi QOpenGLFunctions_4_5_Core::glClearBufferfi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a28240 0xc822a282c0 0xc822a28340 0xc822a283c0] } +&{glClearBufferfv QOpenGLFunctions_4_5_Core::glClearBufferfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a28520 0xc822a285a0 0xc822a28620] } +&{glClearBufferiv QOpenGLFunctions_4_5_Core::glClearBufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a28780 0xc822a28800 0xc822a28880] } +&{glClearBufferuiv QOpenGLFunctions_4_5_Core::glClearBufferuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a289e0 0xc822a28a60 0xc822a28ae0] } +&{glClearColor QOpenGLFunctions_4_5_Core::glClearColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a28c40 0xc822a28cc0 0xc822a28d40 0xc822a28dc0] } +&{glClearDepth QOpenGLFunctions_4_5_Core::glClearDepth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a28f20] } +&{glClearDepthf QOpenGLFunctions_4_5_Core::glClearDepthf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a290a0] } +&{glClearNamedBufferData QOpenGLFunctions_4_5_Core::glClearNamedBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a29260 0xc822a292e0 0xc822a29360 0xc822a293e0 0xc822a29480] } +&{glClearNamedBufferSubData QOpenGLFunctions_4_5_Core::glClearNamedBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a29640 0xc822a296c0 0xc822a29740 0xc822a297c0 0xc822a29860 0xc822a298e0 0xc822a29960] } +&{glClearNamedFramebufferfi QOpenGLFunctions_4_5_Core::glClearNamedFramebufferfi commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a29b20 0xc822a29ba0 0xc822a29c20 0xc822a29ca0] } +&{glClearNamedFramebufferfv QOpenGLFunctions_4_5_Core::glClearNamedFramebufferfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a29e80 0xc822a29f00 0xc822a29f80 0xc822a36000] } +&{glClearNamedFramebufferiv QOpenGLFunctions_4_5_Core::glClearNamedFramebufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a361c0 0xc822a36240 0xc822a362c0 0xc822a36340] } +&{glClearNamedFramebufferuiv QOpenGLFunctions_4_5_Core::glClearNamedFramebufferuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a36500 0xc822a36580 0xc822a36600 0xc822a36680] } +&{glClearStencil QOpenGLFunctions_4_5_Core::glClearStencil commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a36800] } +&{glClearTexImage QOpenGLFunctions_4_5_Core::glClearTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a36960 0xc822a369e0 0xc822a36a60 0xc822a36ae0 0xc822a36b80] } +&{glClearTexSubImage QOpenGLFunctions_4_5_Core::glClearTexSubImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a36d40 0xc822a36dc0 0xc822a36e40 0xc822a36ec0 0xc822a36f60 0xc822a36fe0 0xc822a37060 0xc822a370e0 0xc822a37180 0xc822a37200 0xc822a37280] } +&{glClientWaitSync QOpenGLFunctions_4_5_Core::glClientWaitSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLenum [0xc822a373e0 0xc822a37460 0xc822a374e0] } +&{glClipControl QOpenGLFunctions_4_5_Core::glClipControl commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a37640 0xc822a376c0] } +&{glColorMask QOpenGLFunctions_4_5_Core::glColorMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a37820 0xc822a378a0 0xc822a37920 0xc822a379a0] } +&{glColorMaski QOpenGLFunctions_4_5_Core::glColorMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a37b00 0xc822a37b80 0xc822a37c00 0xc822a37c80 0xc822a37d20] } +&{glCompileShader QOpenGLFunctions_4_5_Core::glCompileShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a37e80] } +&{glCompressedTexImage1D QOpenGLFunctions_4_5_Core::glCompressedTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e84040 0xc821e840c0 0xc821e84140 0xc821e841c0 0xc821e84260 0xc821e842e0 0xc821e84360] } +&{glCompressedTexImage2D QOpenGLFunctions_4_5_Core::glCompressedTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e84520 0xc821e845a0 0xc821e84620 0xc821e846a0 0xc821e84740 0xc821e847c0 0xc821e84840 0xc821e848c0] } +&{glCompressedTexImage3D QOpenGLFunctions_4_5_Core::glCompressedTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e84a80 0xc821e84b00 0xc821e84b80 0xc821e84c00 0xc821e84ca0 0xc821e84d20 0xc821e84da0 0xc821e84e20 0xc821e84ec0] } +&{glCompressedTexSubImage1D QOpenGLFunctions_4_5_Core::glCompressedTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e85080 0xc821e85100 0xc821e85180 0xc821e85200 0xc821e852a0 0xc821e85320 0xc821e853a0] } +&{glCompressedTexSubImage2D QOpenGLFunctions_4_5_Core::glCompressedTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e85560 0xc821e855e0 0xc821e85660 0xc821e856e0 0xc821e85780 0xc821e85800 0xc821e85880 0xc821e85900 0xc821e859a0] } +&{glCompressedTexSubImage3D QOpenGLFunctions_4_5_Core::glCompressedTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e85b60 0xc821e85be0 0xc821e85c60 0xc821e85ce0 0xc821e85d80 0xc821e85e00 0xc821e85e80 0xc821e85f00 0xc821e85fa0 0xc821e90020 0xc821e900a0] } +&{glCompressedTextureSubImage1D QOpenGLFunctions_4_5_Core::glCompressedTextureSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e90260 0xc821e902e0 0xc821e90360 0xc821e903e0 0xc821e90480 0xc821e90500 0xc821e90580] } +&{glCompressedTextureSubImage2D QOpenGLFunctions_4_5_Core::glCompressedTextureSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e90740 0xc821e907c0 0xc821e90840 0xc821e908c0 0xc821e90960 0xc821e909e0 0xc821e90a60 0xc821e90ae0 0xc821e90b80] } +&{glCompressedTextureSubImage3D QOpenGLFunctions_4_5_Core::glCompressedTextureSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e90d40 0xc821e90dc0 0xc821e90e40 0xc821e90ec0 0xc821e90f60 0xc821e90fe0 0xc821e91060 0xc821e910e0 0xc821e91180 0xc821e91200 0xc821e91280] } +&{glCopyBufferSubData QOpenGLFunctions_4_5_Core::glCopyBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e91440 0xc821e914c0 0xc821e91540 0xc821e915c0 0xc821e91660] } +&{glCopyImageSubData QOpenGLFunctions_4_5_Core::glCopyImageSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e91820 0xc821e918a0 0xc821e91920 0xc821e919a0 0xc821e91a40 0xc821e91ac0 0xc821e91b40 0xc821e91bc0 0xc821e91c60 0xc821e91ce0 0xc821e91d60 0xc821e91de0 0xc821e91e60 0xc821e91ee0 0xc821e91f60] } +&{glCopyNamedBufferSubData QOpenGLFunctions_4_5_Core::glCopyNamedBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f54120 0xc821f541a0 0xc821f54220 0xc821f542a0 0xc821f54340] } +&{glCopyTexImage1D QOpenGLFunctions_4_5_Core::glCopyTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f544a0 0xc821f54520 0xc821f545a0 0xc821f54620 0xc821f546c0 0xc821f54740 0xc821f547c0] } +&{glCopyTexImage2D QOpenGLFunctions_4_5_Core::glCopyTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f54920 0xc821f549a0 0xc821f54a20 0xc821f54aa0 0xc821f54b40 0xc821f54bc0 0xc821f54c40 0xc821f54cc0] } +&{glCopyTexSubImage1D QOpenGLFunctions_4_5_Core::glCopyTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f54e80 0xc821f54f00 0xc821f54f80 0xc821f55000 0xc821f550a0 0xc821f55120] } +&{glCopyTexSubImage2D QOpenGLFunctions_4_5_Core::glCopyTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f552e0 0xc821f55360 0xc821f553e0 0xc821f55460 0xc821f55500 0xc821f55580 0xc821f55600 0xc821f55680] } +&{glCopyTexSubImage3D QOpenGLFunctions_4_5_Core::glCopyTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f55840 0xc821f558c0 0xc821f55940 0xc821f559c0 0xc821f55a60 0xc821f55ae0 0xc821f55b60 0xc821f55be0 0xc821f55c80] } +&{glCopyTextureSubImage1D QOpenGLFunctions_4_5_Core::glCopyTextureSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f55e40 0xc821f55ec0 0xc821f55f40 0xc821f55fc0 0xc821f62060 0xc821f620e0] } +&{glCopyTextureSubImage2D QOpenGLFunctions_4_5_Core::glCopyTextureSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f622a0 0xc821f62320 0xc821f623a0 0xc821f62420 0xc821f624c0 0xc821f62540 0xc821f625c0 0xc821f62640] } +&{glCopyTextureSubImage3D QOpenGLFunctions_4_5_Core::glCopyTextureSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f62800 0xc821f62880 0xc821f62900 0xc821f62980 0xc821f62a20 0xc821f62aa0 0xc821f62b20 0xc821f62ba0 0xc821f62c40] } +&{glCreateBuffers QOpenGLFunctions_4_5_Core::glCreateBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f62da0 0xc821f62e20] } +&{glCreateFramebuffers QOpenGLFunctions_4_5_Core::glCreateFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f62fe0 0xc821f63060] } +&{glCreateProgram QOpenGLFunctions_4_5_Core::glCreateProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLuint [] } +&{glCreateProgramPipelines QOpenGLFunctions_4_5_Core::glCreateProgramPipelines commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f632c0 0xc821f63340] } +&{glCreateQueries QOpenGLFunctions_4_5_Core::glCreateQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f634a0 0xc821f63520 0xc821f635a0] } +&{glCreateRenderbuffers QOpenGLFunctions_4_5_Core::glCreateRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f63760 0xc821f637e0] } +&{glCreateSamplers QOpenGLFunctions_4_5_Core::glCreateSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f63940 0xc821f639c0] } +&{glCreateShader QOpenGLFunctions_4_5_Core::glCreateShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLuint [0xc821f63b20] } +&{glCreateShaderProgramv QOpenGLFunctions_4_5_Core::glCreateShaderProgramv commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLuint [0xc821f63ce0 0xc821f63d60 0xc821f63e00] } +&{glCreateTextures QOpenGLFunctions_4_5_Core::glCreateTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f63fa0 0xc821f72020 0xc821f720a0] } +&{glCreateTransformFeedbacks QOpenGLFunctions_4_5_Core::glCreateTransformFeedbacks commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f72260 0xc821f722e0] } +&{glCreateVertexArrays QOpenGLFunctions_4_5_Core::glCreateVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f724a0 0xc821f72520] } +&{glCullFace QOpenGLFunctions_4_5_Core::glCullFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f726a0] } +&{glDebugMessageCallback QOpenGLFunctions_4_5_Core::glDebugMessageCallback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f72860 0xc821f728e0] } +&{glDebugMessageControl QOpenGLFunctions_4_5_Core::glDebugMessageControl commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f72aa0 0xc821f72b20 0xc821f72ba0 0xc821f72c20 0xc821f72cc0 0xc821f72d40] } +&{glDebugMessageInsert QOpenGLFunctions_4_5_Core::glDebugMessageInsert commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f72f00 0xc821f72f80 0xc821f73000 0xc821f73080 0xc821f73120 0xc821f731a0] } +&{glDeleteBuffers QOpenGLFunctions_4_5_Core::glDeleteBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f73300 0xc821f73380] } +&{glDeleteFramebuffers QOpenGLFunctions_4_5_Core::glDeleteFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f73540 0xc821f735c0] } +&{glDeleteProgram QOpenGLFunctions_4_5_Core::glDeleteProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f73720] } +&{glDeleteProgramPipelines QOpenGLFunctions_4_5_Core::glDeleteProgramPipelines commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f738e0 0xc821f73960] } +&{glDeleteQueries QOpenGLFunctions_4_5_Core::glDeleteQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f73ac0 0xc821f73b40] } +&{glDeleteRenderbuffers QOpenGLFunctions_4_5_Core::glDeleteRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f73d00 0xc821f73d80] } +&{glDeleteSamplers QOpenGLFunctions_4_5_Core::glDeleteSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f73ee0 0xc821f73f60] } +&{glDeleteShader QOpenGLFunctions_4_5_Core::glDeleteShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a460c0] } +&{glDeleteSync QOpenGLFunctions_4_5_Core::glDeleteSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a46240] } +&{glDeleteTextures QOpenGLFunctions_4_5_Core::glDeleteTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a463a0 0xc822a46420] } +&{glDeleteTransformFeedbacks QOpenGLFunctions_4_5_Core::glDeleteTransformFeedbacks commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a465e0 0xc822a46660] } +&{glDeleteVertexArrays QOpenGLFunctions_4_5_Core::glDeleteVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a46820 0xc822a468a0] } +&{glDepthFunc QOpenGLFunctions_4_5_Core::glDepthFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a46a20] } +&{glDepthMask QOpenGLFunctions_4_5_Core::glDepthMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a46ba0] } +&{glDepthRange QOpenGLFunctions_4_5_Core::glDepthRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a46d00 0xc822a46d80] } +&{glDepthRangeArrayv QOpenGLFunctions_4_5_Core::glDepthRangeArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a46f40 0xc822a46fc0 0xc822a47040] } +&{glDepthRangeIndexed QOpenGLFunctions_4_5_Core::glDepthRangeIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a47200 0xc822a47280 0xc822a47300] } +&{glDepthRangef QOpenGLFunctions_4_5_Core::glDepthRangef commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a47480 0xc822a47500] } +&{glDetachShader QOpenGLFunctions_4_5_Core::glDetachShader commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a47660 0xc822a476e0] } +&{glDisable QOpenGLFunctions_4_5_Core::glDisable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a47860] } +&{glDisableVertexArrayAttrib QOpenGLFunctions_4_5_Core::glDisableVertexArrayAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a47a20 0xc822a47aa0] } +&{glDisableVertexAttribArray QOpenGLFunctions_4_5_Core::glDisableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a47c60] } +&{glDisablei QOpenGLFunctions_4_5_Core::glDisablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a47dc0 0xc822a47e40] } +&{glDispatchCompute QOpenGLFunctions_4_5_Core::glDispatchCompute commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a54000 0xc822a54080 0xc822a54100] } +&{glDispatchComputeIndirect QOpenGLFunctions_4_5_Core::glDispatchComputeIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a542c0] } +&{glDrawArrays QOpenGLFunctions_4_5_Core::glDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a54420 0xc822a544a0 0xc822a54520] } +&{glDrawArraysIndirect QOpenGLFunctions_4_5_Core::glDrawArraysIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a546e0 0xc822a54760] } +&{glDrawArraysInstanced QOpenGLFunctions_4_5_Core::glDrawArraysInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a54920 0xc822a549a0 0xc822a54a20 0xc822a54aa0] } +&{glDrawArraysInstancedBaseInstance QOpenGLFunctions_4_5_Core::glDrawArraysInstancedBaseInstance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a54c00 0xc822a54c80 0xc822a54d00 0xc822a54d80 0xc822a54e20] } +&{glDrawBuffer QOpenGLFunctions_4_5_Core::glDrawBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a54fa0] } +&{glDrawBuffers QOpenGLFunctions_4_5_Core::glDrawBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a55100 0xc822a55180] } +&{glDrawElements QOpenGLFunctions_4_5_Core::glDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a552e0 0xc822a55360 0xc822a553e0 0xc822a55460] } +&{glDrawElementsBaseVertex QOpenGLFunctions_4_5_Core::glDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a55620 0xc822a556a0 0xc822a55720 0xc822a557a0 0xc822a55840] } +&{glDrawElementsIndirect QOpenGLFunctions_4_5_Core::glDrawElementsIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a55a00 0xc822a55a80 0xc822a55b00] } +&{glDrawElementsInstanced QOpenGLFunctions_4_5_Core::glDrawElementsInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a55cc0 0xc822a55d40 0xc822a55dc0 0xc822a55e40 0xc822a55ee0] } +&{glDrawElementsInstancedBaseInstance QOpenGLFunctions_4_5_Core::glDrawElementsInstancedBaseInstance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a68040 0xc822a680c0 0xc822a68140 0xc822a681c0 0xc822a68260 0xc822a682e0] } +&{glDrawElementsInstancedBaseVertex QOpenGLFunctions_4_5_Core::glDrawElementsInstancedBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a68440 0xc822a684c0 0xc822a68540 0xc822a685c0 0xc822a68660 0xc822a686e0] } +&{glDrawElementsInstancedBaseVertexBaseInstance QOpenGLFunctions_4_5_Core::glDrawElementsInstancedBaseVertexBaseInstance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a68840 0xc822a688c0 0xc822a68940 0xc822a689c0 0xc822a68a60 0xc822a68ae0 0xc822a68b60] } +&{glDrawRangeElements QOpenGLFunctions_4_5_Core::glDrawRangeElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a68d20 0xc822a68da0 0xc822a68e20 0xc822a68ea0 0xc822a68f40 0xc822a68fc0] } +&{glDrawRangeElementsBaseVertex QOpenGLFunctions_4_5_Core::glDrawRangeElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a69180 0xc822a69200 0xc822a69280 0xc822a69300 0xc822a693a0 0xc822a69420 0xc822a694a0] } +&{glDrawTransformFeedback QOpenGLFunctions_4_5_Core::glDrawTransformFeedback commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a69660 0xc822a696e0] } +&{glDrawTransformFeedbackInstanced QOpenGLFunctions_4_5_Core::glDrawTransformFeedbackInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a698a0 0xc822a69920 0xc822a699a0] } +&{glDrawTransformFeedbackStream QOpenGLFunctions_4_5_Core::glDrawTransformFeedbackStream commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a69b60 0xc822a69be0 0xc822a69c60] } +&{glDrawTransformFeedbackStreamInstanced QOpenGLFunctions_4_5_Core::glDrawTransformFeedbackStreamInstanced commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a69dc0 0xc822a69e40 0xc822a69ec0 0xc822a69f40] } +&{glEnable QOpenGLFunctions_4_5_Core::glEnable commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229460c0] } +&{glEnableVertexArrayAttrib QOpenGLFunctions_4_5_Core::glEnableVertexArrayAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822946280 0xc822946300] } +&{glEnableVertexAttribArray QOpenGLFunctions_4_5_Core::glEnableVertexAttribArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229464c0] } +&{glEnablei QOpenGLFunctions_4_5_Core::glEnablei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822946620 0xc8229466a0] } +&{glEndConditionalRender QOpenGLFunctions_4_5_Core::glEndConditionalRender commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [] } +&{glEndQuery QOpenGLFunctions_4_5_Core::glEndQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822946920] } +&{glEndQueryIndexed QOpenGLFunctions_4_5_Core::glEndQueryIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822946ae0 0xc822946b60] } +&{glEndTransformFeedback QOpenGLFunctions_4_5_Core::glEndTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [] } +&{glFenceSync QOpenGLFunctions_4_5_Core::glFenceSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLsync [0xc822946dc0 0xc822946e40] } +&{glFinish QOpenGLFunctions_4_5_Core::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [] } +&{glFlush QOpenGLFunctions_4_5_Core::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [] } +&{glFlushMappedBufferRange QOpenGLFunctions_4_5_Core::glFlushMappedBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822947100 0xc822947180 0xc822947200] } +&{glFlushMappedNamedBufferRange QOpenGLFunctions_4_5_Core::glFlushMappedNamedBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229473c0 0xc822947440 0xc8229474c0] } +&{glFramebufferParameteri QOpenGLFunctions_4_5_Core::glFramebufferParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822947680 0xc822947700 0xc822947780] } +&{glFramebufferRenderbuffer QOpenGLFunctions_4_5_Core::glFramebufferRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822947940 0xc8229479c0 0xc822947a60 0xc822947b20] } +&{glFramebufferTexture QOpenGLFunctions_4_5_Core::glFramebufferTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822947ce0 0xc822947d60 0xc822947de0 0xc822947e60] } +&{glFramebufferTexture1D QOpenGLFunctions_4_5_Core::glFramebufferTexture1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82295c020 0xc82295c0a0 0xc82295c120 0xc82295c1a0 0xc82295c240] } +&{glFramebufferTexture2D QOpenGLFunctions_4_5_Core::glFramebufferTexture2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82295c400 0xc82295c480 0xc82295c500 0xc82295c580 0xc82295c620] } +&{glFramebufferTexture3D QOpenGLFunctions_4_5_Core::glFramebufferTexture3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82295c7e0 0xc82295c860 0xc82295c8e0 0xc82295c960 0xc82295ca00 0xc82295ca80] } +&{glFramebufferTextureLayer QOpenGLFunctions_4_5_Core::glFramebufferTextureLayer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82295cc40 0xc82295ccc0 0xc82295cd40 0xc82295cdc0 0xc82295ce60] } +&{glFrontFace QOpenGLFunctions_4_5_Core::glFrontFace commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82295cfe0] } +&{glGenBuffers QOpenGLFunctions_4_5_Core::glGenBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82295d140 0xc82295d1c0] } +&{glGenFramebuffers QOpenGLFunctions_4_5_Core::glGenFramebuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82295d380 0xc82295d400] } +&{glGenProgramPipelines QOpenGLFunctions_4_5_Core::glGenProgramPipelines commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82295d5c0 0xc82295d640] } +&{glGenQueries QOpenGLFunctions_4_5_Core::glGenQueries commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82295d7a0 0xc82295d820] } +&{glGenRenderbuffers QOpenGLFunctions_4_5_Core::glGenRenderbuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82295d9e0 0xc82295da60] } +&{glGenSamplers QOpenGLFunctions_4_5_Core::glGenSamplers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82295dbc0 0xc82295dc40] } +&{glGenTextures QOpenGLFunctions_4_5_Core::glGenTextures commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82295dda0 0xc82295de20] } +&{glGenTransformFeedbacks QOpenGLFunctions_4_5_Core::glGenTransformFeedbacks commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82295dfe0 0xc822968060] } +&{glGenVertexArrays QOpenGLFunctions_4_5_Core::glGenVertexArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822968220 0xc8229682a0] } +&{glGenerateMipmap QOpenGLFunctions_4_5_Core::glGenerateMipmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822968400] } +&{glGenerateTextureMipmap QOpenGLFunctions_4_5_Core::glGenerateTextureMipmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229685c0] } +&{glGetActiveAtomicCounterBufferiv QOpenGLFunctions_4_5_Core::glGetActiveAtomicCounterBufferiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822968780 0xc822968800 0xc822968880 0xc822968900] } +&{glGetActiveAttrib QOpenGLFunctions_4_5_Core::glGetActiveAttrib commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822968ac0 0xc822968b40 0xc822968bc0 0xc822968c40 0xc822968ce0 0xc822968d60 0xc822968de0] } +&{glGetActiveSubroutineName QOpenGLFunctions_4_5_Core::glGetActiveSubroutineName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822968fa0 0xc822969020 0xc8229690a0 0xc822969120 0xc8229691c0 0xc822969240] } +&{glGetActiveSubroutineUniformName QOpenGLFunctions_4_5_Core::glGetActiveSubroutineUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822969400 0xc822969480 0xc822969500 0xc822969580 0xc822969620 0xc8229696a0] } +&{glGetActiveSubroutineUniformiv QOpenGLFunctions_4_5_Core::glGetActiveSubroutineUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822969860 0xc8229698e0 0xc822969960 0xc8229699e0 0xc822969a80] } +&{glGetActiveUniform QOpenGLFunctions_4_5_Core::glGetActiveUniform commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822969c40 0xc822969cc0 0xc822969d40 0xc822969dc0 0xc822969e60 0xc822969ee0 0xc822969f60] } +&{glGetActiveUniformBlockName QOpenGLFunctions_4_5_Core::glGetActiveUniformBlockName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822260120 0xc8222601c0 0xc822260280 0xc822260300 0xc8222603a0] } +&{glGetActiveUniformBlockiv QOpenGLFunctions_4_5_Core::glGetActiveUniformBlockiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822260560 0xc822260600 0xc8222606c0 0xc822260740] } +&{glGetActiveUniformName QOpenGLFunctions_4_5_Core::glGetActiveUniformName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822260900 0xc822260980 0xc822260a00 0xc822260a80 0xc822260b20] } +&{glGetActiveUniformsiv QOpenGLFunctions_4_5_Core::glGetActiveUniformsiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822260ce0 0xc822260d60 0xc822260de0 0xc822260e60 0xc822260f00] } +&{glGetAttachedShaders QOpenGLFunctions_4_5_Core::glGetAttachedShaders commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8222610c0 0xc822261140 0xc8222611c0 0xc822261240] } +&{glGetAttribLocation QOpenGLFunctions_4_5_Core::glGetAttribLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLint [0xc822261400 0xc822261480] } +&{glGetBooleani_v QOpenGLFunctions_4_5_Core::glGetBooleani_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8222615e0 0xc822261660 0xc8222616e0] } +&{glGetBooleanv QOpenGLFunctions_4_5_Core::glGetBooleanv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822261840 0xc8222618c0] } +&{glGetBufferParameteri64v QOpenGLFunctions_4_5_Core::glGetBufferParameteri64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822261a80 0xc822261b00 0xc822261b80] } +&{glGetBufferParameteriv QOpenGLFunctions_4_5_Core::glGetBufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822261d40 0xc822261dc0 0xc822261e40] } +&{glGetBufferPointerv QOpenGLFunctions_4_5_Core::glGetBufferPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82226c000 0xc82226c080 0xc82226c100] } +&{glGetBufferSubData QOpenGLFunctions_4_5_Core::glGetBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82226c2c0 0xc82226c340 0xc82226c3c0 0xc82226c440] } +&{glGetCompressedTexImage QOpenGLFunctions_4_5_Core::glGetCompressedTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82226c600 0xc82226c680 0xc82226c700] } +&{glGetCompressedTextureImage QOpenGLFunctions_4_5_Core::glGetCompressedTextureImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82226c8c0 0xc82226c940 0xc82226c9c0 0xc82226ca40] } +&{glGetCompressedTextureSubImage QOpenGLFunctions_4_5_Core::glGetCompressedTextureSubImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82226cc00 0xc82226cc80 0xc82226cd00 0xc82226cd80 0xc82226ce20 0xc82226cea0 0xc82226cf20 0xc82226cfa0 0xc82226d040 0xc82226d0c0] } +&{glGetDebugMessageLog QOpenGLFunctions_4_5_Core::glGetDebugMessageLog commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLuint [0xc82226d280 0xc82226d300 0xc82226d380 0xc82226d400 0xc82226d4a0 0xc82226d520 0xc82226d5a0 0xc82226d620] } +&{glGetDoublei_v QOpenGLFunctions_4_5_Core::glGetDoublei_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82226d780 0xc82226d800 0xc82226d880] } +&{glGetDoublev QOpenGLFunctions_4_5_Core::glGetDoublev commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82226d9e0 0xc82226da60] } +&{glGetError QOpenGLFunctions_4_5_Core::glGetError commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLenum [] } +&{glGetFloati_v QOpenGLFunctions_4_5_Core::glGetFloati_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82226dc60 0xc82226dce0 0xc82226dd60] } +&{glGetFloatv QOpenGLFunctions_4_5_Core::glGetFloatv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82226dec0 0xc82226df40] } +&{glGetFragDataIndex QOpenGLFunctions_4_5_Core::glGetFragDataIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLint [0xc82227a100 0xc82227a180] } +&{glGetFragDataLocation QOpenGLFunctions_4_5_Core::glGetFragDataLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLint [0xc82227a340 0xc82227a3c0] } +&{glGetFramebufferAttachmentParameteriv QOpenGLFunctions_4_5_Core::glGetFramebufferAttachmentParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82227a520 0xc82227a5a0 0xc82227a620 0xc82227a6a0] } +&{glGetFramebufferParameteriv QOpenGLFunctions_4_5_Core::glGetFramebufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82227a860 0xc82227a8e0 0xc82227a960] } +&{glGetGraphicsResetStatus QOpenGLFunctions_4_5_Core::glGetGraphicsResetStatus commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLenum [] } +&{glGetInteger64i_v QOpenGLFunctions_4_5_Core::glGetInteger64i_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82227ac00 0xc82227ac80 0xc82227ad00] } +&{glGetInteger64v QOpenGLFunctions_4_5_Core::glGetInteger64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82227ae60 0xc82227aee0] } +&{glGetIntegeri_v QOpenGLFunctions_4_5_Core::glGetIntegeri_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82227b040 0xc82227b0c0 0xc82227b140] } +&{glGetIntegerv QOpenGLFunctions_4_5_Core::glGetIntegerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82227b2a0 0xc82227b320] } +&{glGetInternalformati64v QOpenGLFunctions_4_5_Core::glGetInternalformati64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82227b4e0 0xc82227b560 0xc82227b5e0 0xc82227b660 0xc82227b700] } +&{glGetInternalformativ QOpenGLFunctions_4_5_Core::glGetInternalformativ commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82227b8c0 0xc82227b940 0xc82227b9c0 0xc82227ba40 0xc82227bae0] } +&{glGetMultisamplefv QOpenGLFunctions_4_5_Core::glGetMultisamplefv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82227bca0 0xc82227bd20 0xc82227bda0] } +&{glGetNamedBufferParameteri64v QOpenGLFunctions_4_5_Core::glGetNamedBufferParameteri64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82227bf60 0xc82227bfe0 0xc82228a060] } +&{glGetNamedBufferParameteriv QOpenGLFunctions_4_5_Core::glGetNamedBufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82228a220 0xc82228a2a0 0xc82228a320] } +&{glGetNamedBufferPointerv QOpenGLFunctions_4_5_Core::glGetNamedBufferPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82228a4e0 0xc82228a560 0xc82228a5e0] } +&{glGetNamedBufferSubData QOpenGLFunctions_4_5_Core::glGetNamedBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82228a7a0 0xc82228a820 0xc82228a8a0 0xc82228a920] } +&{glGetNamedFramebufferAttachmentParameteriv QOpenGLFunctions_4_5_Core::glGetNamedFramebufferAttachmentParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82228aa80 0xc82228ab00 0xc82228ab80 0xc82228ac00] } +&{glGetNamedFramebufferParameteriv QOpenGLFunctions_4_5_Core::glGetNamedFramebufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82228adc0 0xc82228ae40 0xc82228aec0] } +&{glGetNamedRenderbufferParameteriv QOpenGLFunctions_4_5_Core::glGetNamedRenderbufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82228b020 0xc82228b0a0 0xc82228b120] } +&{glGetObjectLabel QOpenGLFunctions_4_5_Core::glGetObjectLabel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82228b280 0xc82228b300 0xc82228b380 0xc82228b400 0xc82228b4a0] } +&{glGetObjectPtrLabel QOpenGLFunctions_4_5_Core::glGetObjectPtrLabel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82228b660 0xc82228b6e0 0xc82228b760 0xc82228b7e0] } +&{glGetProgramBinary QOpenGLFunctions_4_5_Core::glGetProgramBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82228b9a0 0xc82228ba20 0xc82228baa0 0xc82228bb20 0xc82228bbc0] } +&{glGetProgramInfoLog QOpenGLFunctions_4_5_Core::glGetProgramInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82228bd80 0xc82228be00 0xc82228be80 0xc82228bf00] } +&{glGetProgramInterfaceiv QOpenGLFunctions_4_5_Core::glGetProgramInterfaceiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82274e0c0 0xc82274e140 0xc82274e1c0 0xc82274e240] } +&{glGetProgramPipelineInfoLog QOpenGLFunctions_4_5_Core::glGetProgramPipelineInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82274e400 0xc82274e480 0xc82274e500 0xc82274e580] } +&{glGetProgramPipelineiv QOpenGLFunctions_4_5_Core::glGetProgramPipelineiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82274e740 0xc82274e7c0 0xc82274e840] } +&{glGetProgramResourceIndex QOpenGLFunctions_4_5_Core::glGetProgramResourceIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLuint [0xc82274ea00 0xc82274ea80 0xc82274eb00] } +&{glGetProgramResourceLocation QOpenGLFunctions_4_5_Core::glGetProgramResourceLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLint [0xc82274ecc0 0xc82274ed40 0xc82274edc0] } +&{glGetProgramResourceLocationIndex QOpenGLFunctions_4_5_Core::glGetProgramResourceLocationIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLint [0xc82274ef20 0xc82274efa0 0xc82274f020] } +&{glGetProgramResourceName QOpenGLFunctions_4_5_Core::glGetProgramResourceName commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82274f1e0 0xc82274f260 0xc82274f2e0 0xc82274f360 0xc82274f400 0xc82274f480] } +&{glGetProgramResourceiv QOpenGLFunctions_4_5_Core::glGetProgramResourceiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82274f640 0xc82274f6c0 0xc82274f740 0xc82274f7c0 0xc82274f860 0xc82274f8e0 0xc82274f960 0xc82274f9e0] } +&{glGetProgramStageiv QOpenGLFunctions_4_5_Core::glGetProgramStageiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82274fba0 0xc82274fc20 0xc82274fca0 0xc82274fd20] } +&{glGetProgramiv QOpenGLFunctions_4_5_Core::glGetProgramiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82274fe80 0xc82274ff00 0xc82274ff80] } +&{glGetQueryIndexediv QOpenGLFunctions_4_5_Core::glGetQueryIndexediv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82275e140 0xc82275e1c0 0xc82275e240 0xc82275e2c0] } +&{glGetQueryObjecti64v QOpenGLFunctions_4_5_Core::glGetQueryObjecti64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82275e480 0xc82275e500 0xc82275e580] } +&{glGetQueryObjectiv QOpenGLFunctions_4_5_Core::glGetQueryObjectiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82275e740 0xc82275e7c0 0xc82275e840] } +&{glGetQueryObjectui64v QOpenGLFunctions_4_5_Core::glGetQueryObjectui64v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82275ea00 0xc82275ea80 0xc82275eb00] } +&{glGetQueryObjectuiv QOpenGLFunctions_4_5_Core::glGetQueryObjectuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82275ecc0 0xc82275ed40 0xc82275edc0] } +&{glGetQueryiv QOpenGLFunctions_4_5_Core::glGetQueryiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82275ef20 0xc82275efa0 0xc82275f020] } +&{glGetRenderbufferParameteriv QOpenGLFunctions_4_5_Core::glGetRenderbufferParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82275f1e0 0xc82275f260 0xc82275f2e0] } +&{glGetSamplerParameterIiv QOpenGLFunctions_4_5_Core::glGetSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82275f4a0 0xc82275f520 0xc82275f5a0] } +&{glGetSamplerParameterIuiv QOpenGLFunctions_4_5_Core::glGetSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82275f760 0xc82275f7e0 0xc82275f860] } +&{glGetSamplerParameterfv QOpenGLFunctions_4_5_Core::glGetSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82275fa40 0xc82275fac0 0xc82275fb40] } +&{glGetSamplerParameteriv QOpenGLFunctions_4_5_Core::glGetSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82275fd00 0xc82275fd80 0xc82275fe00] } +&{glGetShaderInfoLog QOpenGLFunctions_4_5_Core::glGetShaderInfoLog commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82275ffc0 0xc82276e040 0xc82276e0c0 0xc82276e140] } +&{glGetShaderPrecisionFormat QOpenGLFunctions_4_5_Core::glGetShaderPrecisionFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82276e300 0xc82276e380 0xc82276e400 0xc82276e480] } +&{glGetShaderSource QOpenGLFunctions_4_5_Core::glGetShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82276e640 0xc82276e6c0 0xc82276e740 0xc82276e7c0] } +&{glGetShaderiv QOpenGLFunctions_4_5_Core::glGetShaderiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82276e920 0xc82276e9a0 0xc82276ea20] } +&{glGetString QOpenGLFunctions_4_5_Core::glGetString commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false const GLubyte * [0xc82276eb80] } +&{glGetStringi QOpenGLFunctions_4_5_Core::glGetStringi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false const GLubyte * [0xc82276ece0 0xc82276ed60] } +&{glGetSubroutineIndex QOpenGLFunctions_4_5_Core::glGetSubroutineIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLuint [0xc82276ef20 0xc82276efa0 0xc82276f020] } +&{glGetSubroutineUniformLocation QOpenGLFunctions_4_5_Core::glGetSubroutineUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLint [0xc82276f1e0 0xc82276f260 0xc82276f2e0] } +&{glGetSynciv QOpenGLFunctions_4_5_Core::glGetSynciv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82276f440 0xc82276f4c0 0xc82276f540 0xc82276f5c0 0xc82276f660] } +&{glGetTexImage QOpenGLFunctions_4_5_Core::glGetTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82276f7c0 0xc82276f840 0xc82276f8c0 0xc82276f940 0xc82276f9e0] } +&{glGetTexLevelParameterfv QOpenGLFunctions_4_5_Core::glGetTexLevelParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82276fba0 0xc82276fc20 0xc82276fca0 0xc82276fd20] } +&{glGetTexLevelParameteriv QOpenGLFunctions_4_5_Core::glGetTexLevelParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82276fee0 0xc82276ff60 0xc82276ffe0 0xc82277c060] } +&{glGetTexParameterIiv QOpenGLFunctions_4_5_Core::glGetTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82277c220 0xc82277c2a0 0xc82277c320] } +&{glGetTexParameterIuiv QOpenGLFunctions_4_5_Core::glGetTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82277c4e0 0xc82277c560 0xc82277c5e0] } +&{glGetTexParameterfv QOpenGLFunctions_4_5_Core::glGetTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82277c7a0 0xc82277c820 0xc82277c8a0] } +&{glGetTexParameteriv QOpenGLFunctions_4_5_Core::glGetTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82277ca60 0xc82277cae0 0xc82277cb60] } +&{glGetTextureImage QOpenGLFunctions_4_5_Core::glGetTextureImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82277cd20 0xc82277cda0 0xc82277ce20 0xc82277cea0 0xc82277cf40 0xc82277cfc0] } +&{glGetTextureLevelParameterfv QOpenGLFunctions_4_5_Core::glGetTextureLevelParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82277d180 0xc82277d200 0xc82277d280 0xc82277d300] } +&{glGetTextureLevelParameteriv QOpenGLFunctions_4_5_Core::glGetTextureLevelParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82277d4c0 0xc82277d540 0xc82277d5c0 0xc82277d640] } +&{glGetTextureParameterIiv QOpenGLFunctions_4_5_Core::glGetTextureParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82277d800 0xc82277d880 0xc82277d900] } +&{glGetTextureParameterIuiv QOpenGLFunctions_4_5_Core::glGetTextureParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82277dac0 0xc82277db40 0xc82277dbc0] } +&{glGetTextureParameterfv QOpenGLFunctions_4_5_Core::glGetTextureParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc82277dd80 0xc82277de00 0xc82277de80] } +&{glGetTextureParameteriv QOpenGLFunctions_4_5_Core::glGetTextureParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f0c040 0xc821f0c0c0 0xc821f0c140] } +&{glGetTextureSubImage QOpenGLFunctions_4_5_Core::glGetTextureSubImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f0c300 0xc821f0c380 0xc821f0c400 0xc821f0c480 0xc821f0c520 0xc821f0c5a0 0xc821f0c620 0xc821f0c6a0 0xc821f0c740 0xc821f0c7c0 0xc821f0c840 0xc821f0c8c0] } +&{glGetTransformFeedbackVarying QOpenGLFunctions_4_5_Core::glGetTransformFeedbackVarying commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f0ca80 0xc821f0cb00 0xc821f0cb80 0xc821f0cc00 0xc821f0cca0 0xc821f0cd20 0xc821f0cda0] } +&{glGetTransformFeedbacki64_v QOpenGLFunctions_4_5_Core::glGetTransformFeedbacki64_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f0cf60 0xc821f0cfe0 0xc821f0d060 0xc821f0d0e0] } +&{glGetTransformFeedbacki_v QOpenGLFunctions_4_5_Core::glGetTransformFeedbacki_v commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f0d2a0 0xc821f0d320 0xc821f0d3a0 0xc821f0d420] } +&{glGetTransformFeedbackiv QOpenGLFunctions_4_5_Core::glGetTransformFeedbackiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f0d5e0 0xc821f0d660 0xc821f0d6e0] } +&{glGetUniformBlockIndex QOpenGLFunctions_4_5_Core::glGetUniformBlockIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLuint [0xc821f0d8a0 0xc821f0d920] } +&{glGetUniformIndices QOpenGLFunctions_4_5_Core::glGetUniformIndices commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f0dae0 0xc821f0db60 0xc821f0dc00 0xc821f0dcc0] } +&{glGetUniformLocation QOpenGLFunctions_4_5_Core::glGetUniformLocation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLint [0xc821f0de80 0xc821f0df00] } +&{glGetUniformSubroutineuiv QOpenGLFunctions_4_5_Core::glGetUniformSubroutineuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f1a0c0 0xc821f1a140 0xc821f1a1c0] } +&{glGetUniformdv QOpenGLFunctions_4_5_Core::glGetUniformdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f1a320 0xc821f1a3a0 0xc821f1a420] } +&{glGetUniformfv QOpenGLFunctions_4_5_Core::glGetUniformfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f1a580 0xc821f1a600 0xc821f1a680] } +&{glGetUniformiv QOpenGLFunctions_4_5_Core::glGetUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f1a7e0 0xc821f1a860 0xc821f1a8e0] } +&{glGetUniformuiv QOpenGLFunctions_4_5_Core::glGetUniformuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f1aa40 0xc821f1aac0 0xc821f1ab40] } +&{glGetVertexArrayIndexed64iv QOpenGLFunctions_4_5_Core::glGetVertexArrayIndexed64iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f1ad00 0xc821f1ad80 0xc821f1ae00 0xc821f1ae80] } +&{glGetVertexArrayIndexediv QOpenGLFunctions_4_5_Core::glGetVertexArrayIndexediv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f1b040 0xc821f1b0c0 0xc821f1b140 0xc821f1b1c0] } +&{glGetVertexArrayiv QOpenGLFunctions_4_5_Core::glGetVertexArrayiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f1b380 0xc821f1b400 0xc821f1b480] } +&{glGetVertexAttribIiv QOpenGLFunctions_4_5_Core::glGetVertexAttribIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f1b640 0xc821f1b6c0 0xc821f1b740] } +&{glGetVertexAttribIuiv QOpenGLFunctions_4_5_Core::glGetVertexAttribIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f1b900 0xc821f1b980 0xc821f1ba00] } +&{glGetVertexAttribLdv QOpenGLFunctions_4_5_Core::glGetVertexAttribLdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f1bbc0 0xc821f1bc40 0xc821f1bcc0] } +&{glGetVertexAttribPointerv QOpenGLFunctions_4_5_Core::glGetVertexAttribPointerv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f1be80 0xc821f1bf00 0xc821f1bf80] } +&{glGetVertexAttribdv QOpenGLFunctions_4_5_Core::glGetVertexAttribdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f2a140 0xc821f2a1c0 0xc821f2a240] } +&{glGetVertexAttribfv QOpenGLFunctions_4_5_Core::glGetVertexAttribfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f2a400 0xc821f2a480 0xc821f2a500] } +&{glGetVertexAttribiv QOpenGLFunctions_4_5_Core::glGetVertexAttribiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f2a6c0 0xc821f2a740 0xc821f2a7c0] } +&{glGetnCompressedTexImage QOpenGLFunctions_4_5_Core::glGetnCompressedTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f2a980 0xc821f2aa00 0xc821f2aa80 0xc821f2ab00] } +&{glGetnTexImage QOpenGLFunctions_4_5_Core::glGetnTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f2ac60 0xc821f2ace0 0xc821f2ad60 0xc821f2ade0 0xc821f2ae80 0xc821f2af00] } +&{glGetnUniformdv QOpenGLFunctions_4_5_Core::glGetnUniformdv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f2b060 0xc821f2b0e0 0xc821f2b160 0xc821f2b1e0] } +&{glGetnUniformfv QOpenGLFunctions_4_5_Core::glGetnUniformfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f2b340 0xc821f2b3c0 0xc821f2b440 0xc821f2b4c0] } +&{glGetnUniformiv QOpenGLFunctions_4_5_Core::glGetnUniformiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f2b620 0xc821f2b6a0 0xc821f2b720 0xc821f2b7a0] } +&{glGetnUniformuiv QOpenGLFunctions_4_5_Core::glGetnUniformuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f2b900 0xc821f2b980 0xc821f2ba00 0xc821f2ba80] } +&{glHint QOpenGLFunctions_4_5_Core::glHint commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f2bbe0 0xc821f2bc60] } +&{glInvalidateBufferData QOpenGLFunctions_4_5_Core::glInvalidateBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f2be20] } +&{glInvalidateBufferSubData QOpenGLFunctions_4_5_Core::glInvalidateBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f2bfe0 0xc821f36060 0xc821f360e0] } +&{glInvalidateFramebuffer QOpenGLFunctions_4_5_Core::glInvalidateFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f362a0 0xc821f36320 0xc821f363a0] } +&{glInvalidateNamedFramebufferData QOpenGLFunctions_4_5_Core::glInvalidateNamedFramebufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f36560 0xc821f365e0 0xc821f36660] } +&{glInvalidateNamedFramebufferSubData QOpenGLFunctions_4_5_Core::glInvalidateNamedFramebufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f367c0 0xc821f36840 0xc821f368c0 0xc821f36940 0xc821f369e0 0xc821f36a60 0xc821f36ae0] } +&{glInvalidateSubFramebuffer QOpenGLFunctions_4_5_Core::glInvalidateSubFramebuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f36ca0 0xc821f36d20 0xc821f36da0 0xc821f36e20 0xc821f36ec0 0xc821f36f40 0xc821f36fc0] } +&{glInvalidateTexImage QOpenGLFunctions_4_5_Core::glInvalidateTexImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f37180 0xc821f37200] } +&{glInvalidateTexSubImage QOpenGLFunctions_4_5_Core::glInvalidateTexSubImage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821f373c0 0xc821f37440 0xc821f374c0 0xc821f37540 0xc821f375e0 0xc821f37660 0xc821f376e0 0xc821f37760] } +&{glIsBuffer QOpenGLFunctions_4_5_Core::glIsBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLboolean [0xc821f378c0] } +&{glIsEnabled QOpenGLFunctions_4_5_Core::glIsEnabled commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLboolean [0xc821f37a20] } +&{glIsEnabledi QOpenGLFunctions_4_5_Core::glIsEnabledi commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLboolean [0xc821f37b80 0xc821f37c00] } +&{glIsFramebuffer QOpenGLFunctions_4_5_Core::glIsFramebuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLboolean [0xc821f37d60] } +&{glIsProgram QOpenGLFunctions_4_5_Core::glIsProgram commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLboolean [0xc821f37ec0] } +&{glIsProgramPipeline QOpenGLFunctions_4_5_Core::glIsProgramPipeline commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLboolean [0xc822b6a080] } +&{glIsQuery QOpenGLFunctions_4_5_Core::glIsQuery commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLboolean [0xc822b6a200] } +&{glIsRenderbuffer QOpenGLFunctions_4_5_Core::glIsRenderbuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLboolean [0xc822b6a360] } +&{glIsSampler QOpenGLFunctions_4_5_Core::glIsSampler commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLboolean [0xc822b6a4c0] } +&{glIsShader QOpenGLFunctions_4_5_Core::glIsShader commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLboolean [0xc822b6a620] } +&{glIsSync QOpenGLFunctions_4_5_Core::glIsSync commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLboolean [0xc822b6a7a0] } +&{glIsTexture QOpenGLFunctions_4_5_Core::glIsTexture commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLboolean [0xc822b6a900] } +&{glIsTransformFeedback QOpenGLFunctions_4_5_Core::glIsTransformFeedback commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLboolean [0xc822b6aac0] } +&{glIsVertexArray QOpenGLFunctions_4_5_Core::glIsVertexArray commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLboolean [0xc822b6ac20] } +&{glLineWidth QOpenGLFunctions_4_5_Core::glLineWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b6ada0] } +&{glLinkProgram QOpenGLFunctions_4_5_Core::glLinkProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b6af00] } +&{glLogicOp QOpenGLFunctions_4_5_Core::glLogicOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b6b080] } +&{glMapBuffer QOpenGLFunctions_4_5_Core::glMapBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void * [0xc822b6b1e0 0xc822b6b260] } +&{glMapBufferRange QOpenGLFunctions_4_5_Core::glMapBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void * [0xc822b6b3c0 0xc822b6b440 0xc822b6b4c0 0xc822b6b540] } +&{glMapNamedBuffer QOpenGLFunctions_4_5_Core::glMapNamedBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void * [0xc822b6b6a0 0xc822b6b720] } +&{glMapNamedBufferRange QOpenGLFunctions_4_5_Core::glMapNamedBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void * [0xc822b6b8e0 0xc822b6b960 0xc822b6b9e0 0xc822b6ba60] } +&{glMemoryBarrier QOpenGLFunctions_4_5_Core::glMemoryBarrier commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b6bbc0] } +&{glMemoryBarrierByRegion QOpenGLFunctions_4_5_Core::glMemoryBarrierByRegion commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b6bd80] } +&{glMinSampleShading QOpenGLFunctions_4_5_Core::glMinSampleShading commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b6bf40] } +&{glMultiDrawArrays QOpenGLFunctions_4_5_Core::glMultiDrawArrays commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b7e100 0xc822b7e180 0xc822b7e200 0xc822b7e280] } +&{glMultiDrawArraysIndirect QOpenGLFunctions_4_5_Core::glMultiDrawArraysIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b7e440 0xc822b7e4c0 0xc822b7e540 0xc822b7e5c0] } +&{glMultiDrawElements QOpenGLFunctions_4_5_Core::glMultiDrawElements commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b7e780 0xc822b7e800 0xc822b7e880 0xc822b7e920 0xc822b7ea00] } +&{glMultiDrawElementsBaseVertex QOpenGLFunctions_4_5_Core::glMultiDrawElementsBaseVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b7ebc0 0xc822b7ec40 0xc822b7ecc0 0xc822b7ed60 0xc822b7ee40 0xc822b7eec0] } +&{glMultiDrawElementsIndirect QOpenGLFunctions_4_5_Core::glMultiDrawElementsIndirect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b7f080 0xc822b7f100 0xc822b7f180 0xc822b7f200 0xc822b7f2a0] } +&{glNamedBufferData QOpenGLFunctions_4_5_Core::glNamedBufferData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b7f460 0xc822b7f4e0 0xc822b7f560 0xc822b7f5e0] } +&{glNamedBufferStorage QOpenGLFunctions_4_5_Core::glNamedBufferStorage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b7f7a0 0xc822b7f820 0xc822b7f8a0 0xc822b7f920] } +&{glNamedBufferSubData QOpenGLFunctions_4_5_Core::glNamedBufferSubData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b7fae0 0xc822b7fb60 0xc822b7fbe0 0xc822b7fc60] } +&{glNamedFramebufferDrawBuffer QOpenGLFunctions_4_5_Core::glNamedFramebufferDrawBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b7fe20 0xc822b7fea0] } +&{glNamedFramebufferDrawBuffers QOpenGLFunctions_4_5_Core::glNamedFramebufferDrawBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b8c060 0xc822b8c0e0 0xc822b8c160] } +&{glNamedFramebufferParameteri QOpenGLFunctions_4_5_Core::glNamedFramebufferParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b8c320 0xc822b8c3a0 0xc822b8c420] } +&{glNamedFramebufferReadBuffer QOpenGLFunctions_4_5_Core::glNamedFramebufferReadBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b8c5e0 0xc822b8c660] } +&{glNamedFramebufferRenderbuffer QOpenGLFunctions_4_5_Core::glNamedFramebufferRenderbuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b8c820 0xc822b8c8a0 0xc822b8c940 0xc822b8ca00] } +&{glNamedFramebufferTexture QOpenGLFunctions_4_5_Core::glNamedFramebufferTexture commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b8cbc0 0xc822b8cc40 0xc822b8ccc0 0xc822b8cd40] } +&{glNamedFramebufferTextureLayer QOpenGLFunctions_4_5_Core::glNamedFramebufferTextureLayer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b8cf00 0xc822b8cf80 0xc822b8d000 0xc822b8d080 0xc822b8d120] } +&{glNamedRenderbufferStorage QOpenGLFunctions_4_5_Core::glNamedRenderbufferStorage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b8d2e0 0xc822b8d360 0xc822b8d3e0 0xc822b8d460] } +&{glNamedRenderbufferStorageMultisample QOpenGLFunctions_4_5_Core::glNamedRenderbufferStorageMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b8d5c0 0xc822b8d640 0xc822b8d6c0 0xc822b8d740 0xc822b8d7e0] } +&{glObjectLabel QOpenGLFunctions_4_5_Core::glObjectLabel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b8d940 0xc822b8d9c0 0xc822b8da40 0xc822b8dac0] } +&{glObjectPtrLabel QOpenGLFunctions_4_5_Core::glObjectPtrLabel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b8dc20 0xc822b8dca0 0xc822b8dd20] } +&{glPatchParameterfv QOpenGLFunctions_4_5_Core::glPatchParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b8dee0 0xc822b8df60] } +&{glPatchParameteri QOpenGLFunctions_4_5_Core::glPatchParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b9e120 0xc822b9e1a0] } +&{glPauseTransformFeedback QOpenGLFunctions_4_5_Core::glPauseTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [] } +&{glPixelStoref QOpenGLFunctions_4_5_Core::glPixelStoref commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b9e400 0xc822b9e480] } +&{glPixelStorei QOpenGLFunctions_4_5_Core::glPixelStorei commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b9e5e0 0xc822b9e660] } +&{glPointParameterf QOpenGLFunctions_4_5_Core::glPointParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b9e820 0xc822b9e8a0] } +&{glPointParameterfv QOpenGLFunctions_4_5_Core::glPointParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b9ea60 0xc822b9eae0] } +&{glPointParameteri QOpenGLFunctions_4_5_Core::glPointParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b9eca0 0xc822b9ed20] } +&{glPointParameteriv QOpenGLFunctions_4_5_Core::glPointParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b9eee0 0xc822b9ef60] } +&{glPointSize QOpenGLFunctions_4_5_Core::glPointSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b9f0e0] } +&{glPolygonMode QOpenGLFunctions_4_5_Core::glPolygonMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b9f240 0xc822b9f2c0] } +&{glPolygonOffset QOpenGLFunctions_4_5_Core::glPolygonOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b9f420 0xc822b9f4a0] } +&{glPopDebugGroup QOpenGLFunctions_4_5_Core::glPopDebugGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [] } +&{glPrimitiveRestartIndex QOpenGLFunctions_4_5_Core::glPrimitiveRestartIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b9f700] } +&{glProgramBinary QOpenGLFunctions_4_5_Core::glProgramBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b9f860 0xc822b9f8e0 0xc822b9f960 0xc822b9f9e0] } +&{glProgramParameteri QOpenGLFunctions_4_5_Core::glProgramParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b9fba0 0xc822b9fc20 0xc822b9fca0] } +&{glProgramUniform1d QOpenGLFunctions_4_5_Core::glProgramUniform1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822b9fe60 0xc822b9fee0 0xc822b9ff60] } +&{glProgramUniform1dv QOpenGLFunctions_4_5_Core::glProgramUniform1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822bb0120 0xc822bb01a0 0xc822bb0220 0xc822bb02a0] } +&{glProgramUniform1f QOpenGLFunctions_4_5_Core::glProgramUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822bb0460 0xc822bb04e0 0xc822bb0560] } +&{glProgramUniform1fv QOpenGLFunctions_4_5_Core::glProgramUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822bb0720 0xc822bb07a0 0xc822bb0820 0xc822bb08a0] } +&{glProgramUniform1i QOpenGLFunctions_4_5_Core::glProgramUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822bb0a60 0xc822bb0ae0 0xc822bb0b60] } +&{glProgramUniform1iv QOpenGLFunctions_4_5_Core::glProgramUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822bb0d20 0xc822bb0da0 0xc822bb0e20 0xc822bb0ea0] } +&{glProgramUniform1ui QOpenGLFunctions_4_5_Core::glProgramUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822bb1060 0xc822bb10e0 0xc822bb1160] } +&{glProgramUniform1uiv QOpenGLFunctions_4_5_Core::glProgramUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822bb1320 0xc822bb13a0 0xc822bb1420 0xc822bb14a0] } +&{glProgramUniform2d QOpenGLFunctions_4_5_Core::glProgramUniform2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822bb1660 0xc822bb16e0 0xc822bb1760 0xc822bb17e0] } +&{glProgramUniform2dv QOpenGLFunctions_4_5_Core::glProgramUniform2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822bb19a0 0xc822bb1a20 0xc822bb1aa0 0xc822bb1b20] } +&{glProgramUniform2f QOpenGLFunctions_4_5_Core::glProgramUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822bb1ce0 0xc822bb1d60 0xc822bb1de0 0xc822bb1e60] } +&{glProgramUniform2fv QOpenGLFunctions_4_5_Core::glProgramUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821db0020 0xc821db00a0 0xc821db0120 0xc821db01a0] } +&{glProgramUniform2i QOpenGLFunctions_4_5_Core::glProgramUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821db0360 0xc821db03e0 0xc821db0460 0xc821db04e0] } +&{glProgramUniform2iv QOpenGLFunctions_4_5_Core::glProgramUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821db06a0 0xc821db0720 0xc821db07a0 0xc821db0820] } +&{glProgramUniform2ui QOpenGLFunctions_4_5_Core::glProgramUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821db09e0 0xc821db0a60 0xc821db0ae0 0xc821db0b60] } +&{glProgramUniform2uiv QOpenGLFunctions_4_5_Core::glProgramUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821db0d20 0xc821db0da0 0xc821db0e20 0xc821db0ea0] } +&{glProgramUniform3d QOpenGLFunctions_4_5_Core::glProgramUniform3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821db1060 0xc821db10e0 0xc821db1160 0xc821db11e0 0xc821db1280] } +&{glProgramUniform3dv QOpenGLFunctions_4_5_Core::glProgramUniform3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821db1440 0xc821db14c0 0xc821db1540 0xc821db15c0] } +&{glProgramUniform3f QOpenGLFunctions_4_5_Core::glProgramUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821db1780 0xc821db1800 0xc821db1880 0xc821db1900 0xc821db19a0] } +&{glProgramUniform3fv QOpenGLFunctions_4_5_Core::glProgramUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821db1b60 0xc821db1be0 0xc821db1c60 0xc821db1ce0] } +&{glProgramUniform3i QOpenGLFunctions_4_5_Core::glProgramUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821db1ea0 0xc821db1f20 0xc821db1fa0 0xc821dbc020 0xc821dbc0c0] } +&{glProgramUniform3iv QOpenGLFunctions_4_5_Core::glProgramUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821dbc280 0xc821dbc300 0xc821dbc380 0xc821dbc400] } +&{glProgramUniform3ui QOpenGLFunctions_4_5_Core::glProgramUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821dbc5c0 0xc821dbc640 0xc821dbc6c0 0xc821dbc740 0xc821dbc7e0] } +&{glProgramUniform3uiv QOpenGLFunctions_4_5_Core::glProgramUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821dbc9a0 0xc821dbca20 0xc821dbcaa0 0xc821dbcb20] } +&{glProgramUniform4d QOpenGLFunctions_4_5_Core::glProgramUniform4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821dbcce0 0xc821dbcd60 0xc821dbcde0 0xc821dbce60 0xc821dbcf00 0xc821dbcf80] } +&{glProgramUniform4dv QOpenGLFunctions_4_5_Core::glProgramUniform4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821dbd140 0xc821dbd1c0 0xc821dbd240 0xc821dbd2c0] } +&{glProgramUniform4f QOpenGLFunctions_4_5_Core::glProgramUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821dbd480 0xc821dbd500 0xc821dbd580 0xc821dbd600 0xc821dbd6a0 0xc821dbd720] } +&{glProgramUniform4fv QOpenGLFunctions_4_5_Core::glProgramUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821dbd8e0 0xc821dbd960 0xc821dbd9e0 0xc821dbda60] } +&{glProgramUniform4i QOpenGLFunctions_4_5_Core::glProgramUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821dbdc20 0xc821dbdca0 0xc821dbdd20 0xc821dbdda0 0xc821dbde40 0xc821dbdec0] } +&{glProgramUniform4iv QOpenGLFunctions_4_5_Core::glProgramUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821dcc080 0xc821dcc100 0xc821dcc180 0xc821dcc200] } +&{glProgramUniform4ui QOpenGLFunctions_4_5_Core::glProgramUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821dcc3c0 0xc821dcc440 0xc821dcc4c0 0xc821dcc540 0xc821dcc5e0 0xc821dcc660] } +&{glProgramUniform4uiv QOpenGLFunctions_4_5_Core::glProgramUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821dcc820 0xc821dcc8a0 0xc821dcc920 0xc821dcc9a0] } +&{glProgramUniformMatrix2dv QOpenGLFunctions_4_5_Core::glProgramUniformMatrix2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821dccb60 0xc821dccbe0 0xc821dccc60 0xc821dccce0 0xc821dccd80] } +&{glProgramUniformMatrix2fv QOpenGLFunctions_4_5_Core::glProgramUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821dccf40 0xc821dccfc0 0xc821dcd040 0xc821dcd0c0 0xc821dcd160] } +&{glProgramUniformMatrix2x3dv QOpenGLFunctions_4_5_Core::glProgramUniformMatrix2x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821dcd320 0xc821dcd3a0 0xc821dcd420 0xc821dcd4a0 0xc821dcd540] } +&{glProgramUniformMatrix2x3fv QOpenGLFunctions_4_5_Core::glProgramUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821dcd700 0xc821dcd780 0xc821dcd800 0xc821dcd880 0xc821dcd920] } +&{glProgramUniformMatrix2x4dv QOpenGLFunctions_4_5_Core::glProgramUniformMatrix2x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821dcdae0 0xc821dcdb60 0xc821dcdbe0 0xc821dcdc60 0xc821dcdd00] } +&{glProgramUniformMatrix2x4fv QOpenGLFunctions_4_5_Core::glProgramUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821dcdec0 0xc821dcdf40 0xc821dcdfc0 0xc821dd8040 0xc821dd80e0] } +&{glProgramUniformMatrix3dv QOpenGLFunctions_4_5_Core::glProgramUniformMatrix3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821dd82a0 0xc821dd8320 0xc821dd83a0 0xc821dd8420 0xc821dd84c0] } +&{glProgramUniformMatrix3fv QOpenGLFunctions_4_5_Core::glProgramUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821dd8680 0xc821dd8700 0xc821dd8780 0xc821dd8800 0xc821dd88a0] } +&{glProgramUniformMatrix3x2dv QOpenGLFunctions_4_5_Core::glProgramUniformMatrix3x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821dd8a60 0xc821dd8ae0 0xc821dd8b60 0xc821dd8be0 0xc821dd8c80] } +&{glProgramUniformMatrix3x2fv QOpenGLFunctions_4_5_Core::glProgramUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821dd8e40 0xc821dd8ec0 0xc821dd8f40 0xc821dd8fc0 0xc821dd9060] } +&{glProgramUniformMatrix3x4dv QOpenGLFunctions_4_5_Core::glProgramUniformMatrix3x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821dd9220 0xc821dd92a0 0xc821dd9320 0xc821dd93a0 0xc821dd9440] } +&{glProgramUniformMatrix3x4fv QOpenGLFunctions_4_5_Core::glProgramUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821dd9600 0xc821dd9680 0xc821dd9700 0xc821dd9780 0xc821dd9820] } +&{glProgramUniformMatrix4dv QOpenGLFunctions_4_5_Core::glProgramUniformMatrix4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821dd99e0 0xc821dd9a60 0xc821dd9ae0 0xc821dd9b60 0xc821dd9c00] } +&{glProgramUniformMatrix4fv QOpenGLFunctions_4_5_Core::glProgramUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821dd9dc0 0xc821dd9e40 0xc821dd9ec0 0xc821dd9f40 0xc821dd9fe0] } +&{glProgramUniformMatrix4x2dv QOpenGLFunctions_4_5_Core::glProgramUniformMatrix4x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821de81a0 0xc821de8220 0xc821de82a0 0xc821de8320 0xc821de83c0] } +&{glProgramUniformMatrix4x2fv QOpenGLFunctions_4_5_Core::glProgramUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821de8580 0xc821de8600 0xc821de8680 0xc821de8700 0xc821de87a0] } +&{glProgramUniformMatrix4x3dv QOpenGLFunctions_4_5_Core::glProgramUniformMatrix4x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821de8960 0xc821de89e0 0xc821de8a60 0xc821de8ae0 0xc821de8b80] } +&{glProgramUniformMatrix4x3fv QOpenGLFunctions_4_5_Core::glProgramUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821de8d40 0xc821de8dc0 0xc821de8e40 0xc821de8ec0 0xc821de8f60] } +&{glProvokingVertex QOpenGLFunctions_4_5_Core::glProvokingVertex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821de9120] } +&{glPushDebugGroup QOpenGLFunctions_4_5_Core::glPushDebugGroup commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821de9280 0xc821de9300 0xc821de9380 0xc821de9400] } +&{glQueryCounter QOpenGLFunctions_4_5_Core::glQueryCounter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821de9560 0xc821de95e0] } +&{glReadBuffer QOpenGLFunctions_4_5_Core::glReadBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821de9760] } +&{glReadPixels QOpenGLFunctions_4_5_Core::glReadPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821de98c0 0xc821de9940 0xc821de99c0 0xc821de9a40 0xc821de9ae0 0xc821de9b60 0xc821de9be0] } +&{glReadnPixels QOpenGLFunctions_4_5_Core::glReadnPixels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821de9d40 0xc821de9dc0 0xc821de9e40 0xc821de9ec0 0xc821de9f60 0xc821de9fe0 0xc821df6060 0xc821df60e0] } +&{glReleaseShaderCompiler QOpenGLFunctions_4_5_Core::glReleaseShaderCompiler commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [] } +&{glRenderbufferStorage QOpenGLFunctions_4_5_Core::glRenderbufferStorage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821df63a0 0xc821df6420 0xc821df64a0 0xc821df6520] } +&{glRenderbufferStorageMultisample QOpenGLFunctions_4_5_Core::glRenderbufferStorageMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821df66e0 0xc821df6760 0xc821df67e0 0xc821df6860 0xc821df6900] } +&{glResumeTransformFeedback QOpenGLFunctions_4_5_Core::glResumeTransformFeedback commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [] } +&{glSampleCoverage QOpenGLFunctions_4_5_Core::glSampleCoverage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821df6b60 0xc821df6be0] } +&{glSampleMaski QOpenGLFunctions_4_5_Core::glSampleMaski commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821df6d40 0xc821df6dc0] } +&{glSamplerParameterIiv QOpenGLFunctions_4_5_Core::glSamplerParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821df6f80 0xc821df7000 0xc821df7080] } +&{glSamplerParameterIuiv QOpenGLFunctions_4_5_Core::glSamplerParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821df7240 0xc821df72c0 0xc821df7340] } +&{glSamplerParameterf QOpenGLFunctions_4_5_Core::glSamplerParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821df7500 0xc821df7580 0xc821df7600] } +&{glSamplerParameterfv QOpenGLFunctions_4_5_Core::glSamplerParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821df77c0 0xc821df7840 0xc821df78c0] } +&{glSamplerParameteri QOpenGLFunctions_4_5_Core::glSamplerParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821df7a80 0xc821df7b00 0xc821df7b80] } +&{glSamplerParameteriv QOpenGLFunctions_4_5_Core::glSamplerParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821df7d40 0xc821df7dc0 0xc821df7e40] } +&{glScissor QOpenGLFunctions_4_5_Core::glScissor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821df7fa0 0xc821e04020 0xc821e040a0 0xc821e04120] } +&{glScissorArrayv QOpenGLFunctions_4_5_Core::glScissorArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e04280 0xc821e04300 0xc821e04380] } +&{glScissorIndexed QOpenGLFunctions_4_5_Core::glScissorIndexed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e044e0 0xc821e04560 0xc821e045e0 0xc821e04660 0xc821e04700] } +&{glScissorIndexedv QOpenGLFunctions_4_5_Core::glScissorIndexedv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e048c0 0xc821e04940] } +&{glShaderBinary QOpenGLFunctions_4_5_Core::glShaderBinary commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e04aa0 0xc821e04b20 0xc821e04ba0 0xc821e04c20 0xc821e04cc0] } +&{glShaderSource QOpenGLFunctions_4_5_Core::glShaderSource commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e04e20 0xc821e04ea0 0xc821e04f40 0xc821e05000] } +&{glShaderStorageBlockBinding QOpenGLFunctions_4_5_Core::glShaderStorageBlockBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e051c0 0xc821e05260 0xc821e05340] } +&{glStencilFunc QOpenGLFunctions_4_5_Core::glStencilFunc commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e054e0 0xc821e05560 0xc821e055e0] } +&{glStencilFuncSeparate QOpenGLFunctions_4_5_Core::glStencilFuncSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e057a0 0xc821e05820 0xc821e058a0 0xc821e05920] } +&{glStencilMask QOpenGLFunctions_4_5_Core::glStencilMask commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e05aa0] } +&{glStencilMaskSeparate QOpenGLFunctions_4_5_Core::glStencilMaskSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e05c60 0xc821e05ce0] } +&{glStencilOp QOpenGLFunctions_4_5_Core::glStencilOp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e05e40 0xc821e05ec0 0xc821e05f40] } +&{glStencilOpSeparate QOpenGLFunctions_4_5_Core::glStencilOpSeparate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e16100 0xc821e16180 0xc821e16200 0xc821e16280] } +&{glTexBuffer QOpenGLFunctions_4_5_Core::glTexBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e163e0 0xc821e16460 0xc821e164e0] } +&{glTexBufferRange QOpenGLFunctions_4_5_Core::glTexBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e16640 0xc821e166c0 0xc821e16740 0xc821e167c0 0xc821e16860] } +&{glTexImage1D QOpenGLFunctions_4_5_Core::glTexImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e169c0 0xc821e16a40 0xc821e16ac0 0xc821e16b40 0xc821e16be0 0xc821e16c60 0xc821e16ce0 0xc821e16d60] } +&{glTexImage2D QOpenGLFunctions_4_5_Core::glTexImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e16ec0 0xc821e16f40 0xc821e16fc0 0xc821e17040 0xc821e170e0 0xc821e17160 0xc821e171e0 0xc821e17260 0xc821e17300] } +&{glTexImage2DMultisample QOpenGLFunctions_4_5_Core::glTexImage2DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e174c0 0xc821e17540 0xc821e175c0 0xc821e17640 0xc821e176e0 0xc821e17780] } +&{glTexImage3D QOpenGLFunctions_4_5_Core::glTexImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e17920 0xc821e179a0 0xc821e17a20 0xc821e17aa0 0xc821e17b40 0xc821e17bc0 0xc821e17c40 0xc821e17cc0 0xc821e17d60 0xc821e17de0] } +&{glTexImage3DMultisample QOpenGLFunctions_4_5_Core::glTexImage3DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e17fa0 0xc821e26020 0xc821e260a0 0xc821e26120 0xc821e261c0 0xc821e26240 0xc821e262e0] } +&{glTexParameterIiv QOpenGLFunctions_4_5_Core::glTexParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e264e0 0xc821e26560 0xc821e265e0] } +&{glTexParameterIuiv QOpenGLFunctions_4_5_Core::glTexParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e267a0 0xc821e26820 0xc821e268a0] } +&{glTexParameterf QOpenGLFunctions_4_5_Core::glTexParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e26a00 0xc821e26a80 0xc821e26b00] } +&{glTexParameterfv QOpenGLFunctions_4_5_Core::glTexParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e26c60 0xc821e26ce0 0xc821e26d60] } +&{glTexParameteri QOpenGLFunctions_4_5_Core::glTexParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e26ec0 0xc821e26f40 0xc821e26fc0] } +&{glTexParameteriv QOpenGLFunctions_4_5_Core::glTexParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e27120 0xc821e271a0 0xc821e27220] } +&{glTexStorage1D QOpenGLFunctions_4_5_Core::glTexStorage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e27380 0xc821e27400 0xc821e27480 0xc821e27500] } +&{glTexStorage2D QOpenGLFunctions_4_5_Core::glTexStorage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e27660 0xc821e276e0 0xc821e27760 0xc821e277e0 0xc821e27880] } +&{glTexStorage2DMultisample QOpenGLFunctions_4_5_Core::glTexStorage2DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e27a40 0xc821e27ac0 0xc821e27b40 0xc821e27bc0 0xc821e27c60 0xc821e27d00] } +&{glTexStorage3D QOpenGLFunctions_4_5_Core::glTexStorage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e27ea0 0xc821e27f20 0xc821e27fa0 0xc821e34020 0xc821e340c0 0xc821e34140] } +&{glTexStorage3DMultisample QOpenGLFunctions_4_5_Core::glTexStorage3DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e34300 0xc821e34380 0xc821e34400 0xc821e34480 0xc821e34520 0xc821e345a0 0xc821e34640] } +&{glTexSubImage1D QOpenGLFunctions_4_5_Core::glTexSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e347e0 0xc821e34860 0xc821e348e0 0xc821e34960 0xc821e34a00 0xc821e34a80 0xc821e34b00] } +&{glTexSubImage2D QOpenGLFunctions_4_5_Core::glTexSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e34c60 0xc821e34ce0 0xc821e34d60 0xc821e34de0 0xc821e34e80 0xc821e34f00 0xc821e34f80 0xc821e35000 0xc821e350a0] } +&{glTexSubImage3D QOpenGLFunctions_4_5_Core::glTexSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e35200 0xc821e35280 0xc821e35300 0xc821e35380 0xc821e35420 0xc821e354a0 0xc821e35520 0xc821e355a0 0xc821e35640 0xc821e356c0 0xc821e35740] } +&{glTextureBarrier QOpenGLFunctions_4_5_Core::glTextureBarrier commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [] } +&{glTextureBuffer QOpenGLFunctions_4_5_Core::glTextureBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e35940 0xc821e359c0 0xc821e35a40] } +&{glTextureBufferRange QOpenGLFunctions_4_5_Core::glTextureBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e35c00 0xc821e35c80 0xc821e35d00 0xc821e35d80 0xc821e35e20] } +&{glTextureParameterIiv QOpenGLFunctions_4_5_Core::glTextureParameterIiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e35fe0 0xc821e3e060 0xc821e3e0e0] } +&{glTextureParameterIuiv QOpenGLFunctions_4_5_Core::glTextureParameterIuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e3e2a0 0xc821e3e320 0xc821e3e3a0] } +&{glTextureParameterf QOpenGLFunctions_4_5_Core::glTextureParameterf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e3e560 0xc821e3e5e0 0xc821e3e660] } +&{glTextureParameterfv QOpenGLFunctions_4_5_Core::glTextureParameterfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e3e820 0xc821e3e8a0 0xc821e3e920] } +&{glTextureParameteri QOpenGLFunctions_4_5_Core::glTextureParameteri commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e3eae0 0xc821e3eb60 0xc821e3ebe0] } +&{glTextureParameteriv QOpenGLFunctions_4_5_Core::glTextureParameteriv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e3eda0 0xc821e3ee20 0xc821e3eea0] } +&{glTextureStorage1D QOpenGLFunctions_4_5_Core::glTextureStorage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e3f060 0xc821e3f0e0 0xc821e3f160 0xc821e3f1e0] } +&{glTextureStorage2D QOpenGLFunctions_4_5_Core::glTextureStorage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e3f3a0 0xc821e3f420 0xc821e3f4a0 0xc821e3f520 0xc821e3f5c0] } +&{glTextureStorage2DMultisample QOpenGLFunctions_4_5_Core::glTextureStorage2DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e3f780 0xc821e3f800 0xc821e3f880 0xc821e3f900 0xc821e3f9a0 0xc821e3fa40] } +&{glTextureStorage3D QOpenGLFunctions_4_5_Core::glTextureStorage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc821e3fc40 0xc821e3fcc0 0xc821e3fd40 0xc821e3fdc0 0xc821e3fe60 0xc821e3fee0] } +&{glTextureStorage3DMultisample QOpenGLFunctions_4_5_Core::glTextureStorage3DMultisample commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229860a0 0xc822986120 0xc8229861a0 0xc822986220 0xc8229862c0 0xc822986340 0xc8229863e0] } +&{glTextureSubImage1D QOpenGLFunctions_4_5_Core::glTextureSubImage1D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229865e0 0xc822986660 0xc8229866e0 0xc822986760 0xc822986800 0xc822986880 0xc822986900] } +&{glTextureSubImage2D QOpenGLFunctions_4_5_Core::glTextureSubImage2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822986ac0 0xc822986b40 0xc822986bc0 0xc822986c40 0xc822986ce0 0xc822986d60 0xc822986de0 0xc822986e60 0xc822986f00] } +&{glTextureSubImage3D QOpenGLFunctions_4_5_Core::glTextureSubImage3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229870c0 0xc822987140 0xc8229871c0 0xc822987240 0xc8229872e0 0xc822987360 0xc8229873e0 0xc822987460 0xc822987500 0xc822987580 0xc822987600] } +&{glTextureView QOpenGLFunctions_4_5_Core::glTextureView commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822987760 0xc8229877e0 0xc822987860 0xc8229878e0 0xc822987980 0xc822987a00 0xc822987a80 0xc822987b00] } +&{glTransformFeedbackBufferBase QOpenGLFunctions_4_5_Core::glTransformFeedbackBufferBase commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822987cc0 0xc822987d40 0xc822987dc0] } +&{glTransformFeedbackBufferRange QOpenGLFunctions_4_5_Core::glTransformFeedbackBufferRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822987f80 0xc822992000 0xc822992080 0xc822992100 0xc8229921a0] } +&{glTransformFeedbackVaryings QOpenGLFunctions_4_5_Core::glTransformFeedbackVaryings commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822992360 0xc8229923e0 0xc822992480 0xc822992540] } +&{glUniform1d QOpenGLFunctions_4_5_Core::glUniform1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229926a0 0xc822992720] } +&{glUniform1dv QOpenGLFunctions_4_5_Core::glUniform1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822992880 0xc822992900 0xc822992980] } +&{glUniform1f QOpenGLFunctions_4_5_Core::glUniform1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822992ae0 0xc822992b60] } +&{glUniform1fv QOpenGLFunctions_4_5_Core::glUniform1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822992cc0 0xc822992d40 0xc822992dc0] } +&{glUniform1i QOpenGLFunctions_4_5_Core::glUniform1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822992f20 0xc822992fa0] } +&{glUniform1iv QOpenGLFunctions_4_5_Core::glUniform1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822993100 0xc822993180 0xc822993200] } +&{glUniform1ui QOpenGLFunctions_4_5_Core::glUniform1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822993360 0xc8229933e0] } +&{glUniform1uiv QOpenGLFunctions_4_5_Core::glUniform1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822993540 0xc8229935c0 0xc822993640] } +&{glUniform2d QOpenGLFunctions_4_5_Core::glUniform2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229937a0 0xc822993820 0xc8229938a0] } +&{glUniform2dv QOpenGLFunctions_4_5_Core::glUniform2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822993a00 0xc822993a80 0xc822993b00] } +&{glUniform2f QOpenGLFunctions_4_5_Core::glUniform2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822993c60 0xc822993ce0 0xc822993d60] } +&{glUniform2fv QOpenGLFunctions_4_5_Core::glUniform2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822993ee0 0xc822993f60 0xc822993fe0] } +&{glUniform2i QOpenGLFunctions_4_5_Core::glUniform2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229a6140 0xc8229a61c0 0xc8229a6240] } +&{glUniform2iv QOpenGLFunctions_4_5_Core::glUniform2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229a63a0 0xc8229a6420 0xc8229a64a0] } +&{glUniform2ui QOpenGLFunctions_4_5_Core::glUniform2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229a6600 0xc8229a6680 0xc8229a6700] } +&{glUniform2uiv QOpenGLFunctions_4_5_Core::glUniform2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229a6860 0xc8229a68e0 0xc8229a6960] } +&{glUniform3d QOpenGLFunctions_4_5_Core::glUniform3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229a6ac0 0xc8229a6b40 0xc8229a6bc0 0xc8229a6c40] } +&{glUniform3dv QOpenGLFunctions_4_5_Core::glUniform3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229a6da0 0xc8229a6e20 0xc8229a6ea0] } +&{glUniform3f QOpenGLFunctions_4_5_Core::glUniform3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229a7000 0xc8229a7080 0xc8229a7100 0xc8229a7180] } +&{glUniform3fv QOpenGLFunctions_4_5_Core::glUniform3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229a72e0 0xc8229a7360 0xc8229a73e0] } +&{glUniform3i QOpenGLFunctions_4_5_Core::glUniform3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229a7540 0xc8229a75c0 0xc8229a7640 0xc8229a76c0] } +&{glUniform3iv QOpenGLFunctions_4_5_Core::glUniform3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229a7820 0xc8229a78a0 0xc8229a7920] } +&{glUniform3ui QOpenGLFunctions_4_5_Core::glUniform3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229a7a80 0xc8229a7b00 0xc8229a7b80 0xc8229a7c00] } +&{glUniform3uiv QOpenGLFunctions_4_5_Core::glUniform3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229a7d60 0xc8229a7de0 0xc8229a7e60] } +&{glUniform4d QOpenGLFunctions_4_5_Core::glUniform4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229a7fc0 0xc8229ba040 0xc8229ba0c0 0xc8229ba140 0xc8229ba1e0] } +&{glUniform4dv QOpenGLFunctions_4_5_Core::glUniform4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229ba340 0xc8229ba3c0 0xc8229ba440] } +&{glUniform4f QOpenGLFunctions_4_5_Core::glUniform4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229ba5a0 0xc8229ba620 0xc8229ba6a0 0xc8229ba720 0xc8229ba7c0] } +&{glUniform4fv QOpenGLFunctions_4_5_Core::glUniform4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229ba920 0xc8229ba9a0 0xc8229baa20] } +&{glUniform4i QOpenGLFunctions_4_5_Core::glUniform4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229bab80 0xc8229bac00 0xc8229bac80 0xc8229bad00 0xc8229bada0] } +&{glUniform4iv QOpenGLFunctions_4_5_Core::glUniform4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229baf00 0xc8229baf80 0xc8229bb000] } +&{glUniform4ui QOpenGLFunctions_4_5_Core::glUniform4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229bb160 0xc8229bb1e0 0xc8229bb260 0xc8229bb2e0 0xc8229bb380] } +&{glUniform4uiv QOpenGLFunctions_4_5_Core::glUniform4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229bb4e0 0xc8229bb560 0xc8229bb5e0] } +&{glUniformBlockBinding QOpenGLFunctions_4_5_Core::glUniformBlockBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229bb7a0 0xc8229bb840 0xc8229bb920] } +&{glUniformMatrix2dv QOpenGLFunctions_4_5_Core::glUniformMatrix2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229bbb20 0xc8229bbba0 0xc8229bbc20 0xc8229bbca0] } +&{glUniformMatrix2fv QOpenGLFunctions_4_5_Core::glUniformMatrix2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229bbe60 0xc8229bbee0 0xc8229bbf60 0xc8229bbfe0] } +&{glUniformMatrix2x3dv QOpenGLFunctions_4_5_Core::glUniformMatrix2x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229c81a0 0xc8229c8220 0xc8229c82a0 0xc8229c8320] } +&{glUniformMatrix2x3fv QOpenGLFunctions_4_5_Core::glUniformMatrix2x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229c84e0 0xc8229c8560 0xc8229c85e0 0xc8229c8660] } +&{glUniformMatrix2x4dv QOpenGLFunctions_4_5_Core::glUniformMatrix2x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229c8820 0xc8229c88a0 0xc8229c8920 0xc8229c89a0] } +&{glUniformMatrix2x4fv QOpenGLFunctions_4_5_Core::glUniformMatrix2x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229c8b60 0xc8229c8be0 0xc8229c8c60 0xc8229c8ce0] } +&{glUniformMatrix3dv QOpenGLFunctions_4_5_Core::glUniformMatrix3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229c8ea0 0xc8229c8f20 0xc8229c8fa0 0xc8229c9020] } +&{glUniformMatrix3fv QOpenGLFunctions_4_5_Core::glUniformMatrix3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229c91e0 0xc8229c9260 0xc8229c92e0 0xc8229c9360] } +&{glUniformMatrix3x2dv QOpenGLFunctions_4_5_Core::glUniformMatrix3x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229c9520 0xc8229c95a0 0xc8229c9620 0xc8229c96a0] } +&{glUniformMatrix3x2fv QOpenGLFunctions_4_5_Core::glUniformMatrix3x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229c9860 0xc8229c98e0 0xc8229c9960 0xc8229c99e0] } +&{glUniformMatrix3x4dv QOpenGLFunctions_4_5_Core::glUniformMatrix3x4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229c9ba0 0xc8229c9c20 0xc8229c9ca0 0xc8229c9d20] } +&{glUniformMatrix3x4fv QOpenGLFunctions_4_5_Core::glUniformMatrix3x4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229c9ee0 0xc8229c9f60 0xc8229c9fe0 0xc8229d8060] } +&{glUniformMatrix4dv QOpenGLFunctions_4_5_Core::glUniformMatrix4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229d8220 0xc8229d82a0 0xc8229d8320 0xc8229d83a0] } +&{glUniformMatrix4fv QOpenGLFunctions_4_5_Core::glUniformMatrix4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229d8560 0xc8229d85e0 0xc8229d8660 0xc8229d86e0] } +&{glUniformMatrix4x2dv QOpenGLFunctions_4_5_Core::glUniformMatrix4x2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229d88a0 0xc8229d8920 0xc8229d89a0 0xc8229d8a20] } +&{glUniformMatrix4x2fv QOpenGLFunctions_4_5_Core::glUniformMatrix4x2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229d8be0 0xc8229d8c60 0xc8229d8ce0 0xc8229d8d60] } +&{glUniformMatrix4x3dv QOpenGLFunctions_4_5_Core::glUniformMatrix4x3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229d8f20 0xc8229d8fa0 0xc8229d9020 0xc8229d90a0] } +&{glUniformMatrix4x3fv QOpenGLFunctions_4_5_Core::glUniformMatrix4x3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229d9260 0xc8229d92e0 0xc8229d9360 0xc8229d93e0] } +&{glUniformSubroutinesuiv QOpenGLFunctions_4_5_Core::glUniformSubroutinesuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229d95a0 0xc8229d9620 0xc8229d96a0] } +&{glUnmapBuffer QOpenGLFunctions_4_5_Core::glUnmapBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLboolean [0xc8229d9800] } +&{glUnmapNamedBuffer QOpenGLFunctions_4_5_Core::glUnmapNamedBuffer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false GLboolean [0xc8229d99c0] } +&{glUseProgram QOpenGLFunctions_4_5_Core::glUseProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229d9b20] } +&{glUseProgramStages QOpenGLFunctions_4_5_Core::glUseProgramStages commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229d9ce0 0xc8229d9d60 0xc8229d9de0] } +&{glValidateProgram QOpenGLFunctions_4_5_Core::glValidateProgram commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229d9fa0] } +&{glValidateProgramPipeline QOpenGLFunctions_4_5_Core::glValidateProgramPipeline commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229e8160] } +&{glVertexArrayAttribBinding QOpenGLFunctions_4_5_Core::glVertexArrayAttribBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229e8320 0xc8229e83a0 0xc8229e8420] } +&{glVertexArrayAttribFormat QOpenGLFunctions_4_5_Core::glVertexArrayAttribFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229e85e0 0xc8229e8660 0xc8229e86e0 0xc8229e8760 0xc8229e8800 0xc8229e8880] } +&{glVertexArrayAttribIFormat QOpenGLFunctions_4_5_Core::glVertexArrayAttribIFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229e8a40 0xc8229e8ac0 0xc8229e8b40 0xc8229e8bc0 0xc8229e8c60] } +&{glVertexArrayAttribLFormat QOpenGLFunctions_4_5_Core::glVertexArrayAttribLFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229e8e20 0xc8229e8ea0 0xc8229e8f20 0xc8229e8fa0 0xc8229e9040] } +&{glVertexArrayBindingDivisor QOpenGLFunctions_4_5_Core::glVertexArrayBindingDivisor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229e9200 0xc8229e9280 0xc8229e9300] } +&{glVertexArrayElementBuffer QOpenGLFunctions_4_5_Core::glVertexArrayElementBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229e94c0 0xc8229e9540] } +&{glVertexArrayVertexBuffer QOpenGLFunctions_4_5_Core::glVertexArrayVertexBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229e9700 0xc8229e9780 0xc8229e9800 0xc8229e9880 0xc8229e9920] } +&{glVertexArrayVertexBuffers QOpenGLFunctions_4_5_Core::glVertexArrayVertexBuffers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229e9ae0 0xc8229e9b60 0xc8229e9be0 0xc8229e9c60 0xc8229e9d00 0xc8229e9d80] } +&{glVertexAttrib1d QOpenGLFunctions_4_5_Core::glVertexAttrib1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229e9ee0 0xc8229e9f60] } +&{glVertexAttrib1dv QOpenGLFunctions_4_5_Core::glVertexAttrib1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229f6120 0xc8229f61a0] } +&{glVertexAttrib1f QOpenGLFunctions_4_5_Core::glVertexAttrib1f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229f6300 0xc8229f6380] } +&{glVertexAttrib1fv QOpenGLFunctions_4_5_Core::glVertexAttrib1fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229f6540 0xc8229f65c0] } +&{glVertexAttrib1s QOpenGLFunctions_4_5_Core::glVertexAttrib1s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229f6720 0xc8229f67a0] } +&{glVertexAttrib1sv QOpenGLFunctions_4_5_Core::glVertexAttrib1sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229f6960 0xc8229f69e0] } +&{glVertexAttrib2d QOpenGLFunctions_4_5_Core::glVertexAttrib2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229f6b40 0xc8229f6bc0 0xc8229f6c40] } +&{glVertexAttrib2dv QOpenGLFunctions_4_5_Core::glVertexAttrib2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229f6e00 0xc8229f6e80] } +&{glVertexAttrib2f QOpenGLFunctions_4_5_Core::glVertexAttrib2f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229f6fe0 0xc8229f7060 0xc8229f70e0] } +&{glVertexAttrib2fv QOpenGLFunctions_4_5_Core::glVertexAttrib2fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229f72a0 0xc8229f7320] } +&{glVertexAttrib2s QOpenGLFunctions_4_5_Core::glVertexAttrib2s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229f7480 0xc8229f7500 0xc8229f7580] } +&{glVertexAttrib2sv QOpenGLFunctions_4_5_Core::glVertexAttrib2sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229f7740 0xc8229f77c0] } +&{glVertexAttrib3d QOpenGLFunctions_4_5_Core::glVertexAttrib3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229f7920 0xc8229f79a0 0xc8229f7a20 0xc8229f7aa0] } +&{glVertexAttrib3dv QOpenGLFunctions_4_5_Core::glVertexAttrib3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229f7c60 0xc8229f7ce0] } +&{glVertexAttrib3f QOpenGLFunctions_4_5_Core::glVertexAttrib3f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8229f7e40 0xc8229f7ec0 0xc8229f7f40 0xc8229f7fc0] } +&{glVertexAttrib3fv QOpenGLFunctions_4_5_Core::glVertexAttrib3fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a04180 0xc822a04200] } +&{glVertexAttrib3s QOpenGLFunctions_4_5_Core::glVertexAttrib3s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a04360 0xc822a043e0 0xc822a04460 0xc822a044e0] } +&{glVertexAttrib3sv QOpenGLFunctions_4_5_Core::glVertexAttrib3sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a046a0 0xc822a04720] } +&{glVertexAttrib4Nbv QOpenGLFunctions_4_5_Core::glVertexAttrib4Nbv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a048e0 0xc822a04960] } +&{glVertexAttrib4Niv QOpenGLFunctions_4_5_Core::glVertexAttrib4Niv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a04b20 0xc822a04ba0] } +&{glVertexAttrib4Nsv QOpenGLFunctions_4_5_Core::glVertexAttrib4Nsv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a04d60 0xc822a04de0] } +&{glVertexAttrib4Nub QOpenGLFunctions_4_5_Core::glVertexAttrib4Nub commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a04fa0 0xc822a05020 0xc822a050a0 0xc822a05120 0xc822a051c0] } +&{glVertexAttrib4Nubv QOpenGLFunctions_4_5_Core::glVertexAttrib4Nubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a05380 0xc822a05400] } +&{glVertexAttrib4Nuiv QOpenGLFunctions_4_5_Core::glVertexAttrib4Nuiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a055c0 0xc822a05640] } +&{glVertexAttrib4Nusv QOpenGLFunctions_4_5_Core::glVertexAttrib4Nusv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a05800 0xc822a05880] } +&{glVertexAttrib4bv QOpenGLFunctions_4_5_Core::glVertexAttrib4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a05a40 0xc822a05ac0] } +&{glVertexAttrib4d QOpenGLFunctions_4_5_Core::glVertexAttrib4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a05c20 0xc822a05ca0 0xc822a05d20 0xc822a05da0 0xc822a05e40] } +&{glVertexAttrib4dv QOpenGLFunctions_4_5_Core::glVertexAttrib4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a14000 0xc822a14080] } +&{glVertexAttrib4f QOpenGLFunctions_4_5_Core::glVertexAttrib4f commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a141e0 0xc822a14260 0xc822a142e0 0xc822a14360 0xc822a14400] } +&{glVertexAttrib4fv QOpenGLFunctions_4_5_Core::glVertexAttrib4fv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a145c0 0xc822a14640] } +&{glVertexAttrib4iv QOpenGLFunctions_4_5_Core::glVertexAttrib4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a14800 0xc822a14880] } +&{glVertexAttrib4s QOpenGLFunctions_4_5_Core::glVertexAttrib4s commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a149e0 0xc822a14a60 0xc822a14ae0 0xc822a14b60 0xc822a14c00] } +&{glVertexAttrib4sv QOpenGLFunctions_4_5_Core::glVertexAttrib4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a14dc0 0xc822a14e40] } +&{glVertexAttrib4ubv QOpenGLFunctions_4_5_Core::glVertexAttrib4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a15000 0xc822a15080] } +&{glVertexAttrib4uiv QOpenGLFunctions_4_5_Core::glVertexAttrib4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a15240 0xc822a152c0] } +&{glVertexAttrib4usv QOpenGLFunctions_4_5_Core::glVertexAttrib4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a15480 0xc822a15500] } +&{glVertexAttribBinding QOpenGLFunctions_4_5_Core::glVertexAttribBinding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a156c0 0xc822a15740] } +&{glVertexAttribDivisor QOpenGLFunctions_4_5_Core::glVertexAttribDivisor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a15900 0xc822a15980] } +&{glVertexAttribFormat QOpenGLFunctions_4_5_Core::glVertexAttribFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a15b40 0xc822a15bc0 0xc822a15c40 0xc822a15cc0 0xc822a15d60] } +&{glVertexAttribI1i QOpenGLFunctions_4_5_Core::glVertexAttribI1i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822a15f20 0xc822a15fa0] } +&{glVertexAttribI1iv QOpenGLFunctions_4_5_Core::glVertexAttribI1iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227c8160 0xc8227c81e0] } +&{glVertexAttribI1ui QOpenGLFunctions_4_5_Core::glVertexAttribI1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227c83a0 0xc8227c8420] } +&{glVertexAttribI1uiv QOpenGLFunctions_4_5_Core::glVertexAttribI1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227c85e0 0xc8227c8660] } +&{glVertexAttribI2i QOpenGLFunctions_4_5_Core::glVertexAttribI2i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227c8820 0xc8227c88a0 0xc8227c8920] } +&{glVertexAttribI2iv QOpenGLFunctions_4_5_Core::glVertexAttribI2iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227c8ae0 0xc8227c8b60] } +&{glVertexAttribI2ui QOpenGLFunctions_4_5_Core::glVertexAttribI2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227c8d20 0xc8227c8da0 0xc8227c8e20] } +&{glVertexAttribI2uiv QOpenGLFunctions_4_5_Core::glVertexAttribI2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227c8fe0 0xc8227c9060] } +&{glVertexAttribI3i QOpenGLFunctions_4_5_Core::glVertexAttribI3i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227c9220 0xc8227c92a0 0xc8227c9320 0xc8227c93a0] } +&{glVertexAttribI3iv QOpenGLFunctions_4_5_Core::glVertexAttribI3iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227c9560 0xc8227c95e0] } +&{glVertexAttribI3ui QOpenGLFunctions_4_5_Core::glVertexAttribI3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227c97a0 0xc8227c9820 0xc8227c98a0 0xc8227c9920] } +&{glVertexAttribI3uiv QOpenGLFunctions_4_5_Core::glVertexAttribI3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227c9ae0 0xc8227c9b60] } +&{glVertexAttribI4bv QOpenGLFunctions_4_5_Core::glVertexAttribI4bv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227c9d20 0xc8227c9da0] } +&{glVertexAttribI4i QOpenGLFunctions_4_5_Core::glVertexAttribI4i commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227c9f60 0xc8227c9fe0 0xc8227dc060 0xc8227dc0e0 0xc8227dc180] } +&{glVertexAttribI4iv QOpenGLFunctions_4_5_Core::glVertexAttribI4iv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227dc340 0xc8227dc3c0] } +&{glVertexAttribI4sv QOpenGLFunctions_4_5_Core::glVertexAttribI4sv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227dc580 0xc8227dc600] } +&{glVertexAttribI4ubv QOpenGLFunctions_4_5_Core::glVertexAttribI4ubv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227dc7c0 0xc8227dc840] } +&{glVertexAttribI4ui QOpenGLFunctions_4_5_Core::glVertexAttribI4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227dca00 0xc8227dca80 0xc8227dcb00 0xc8227dcb80 0xc8227dcc20] } +&{glVertexAttribI4uiv QOpenGLFunctions_4_5_Core::glVertexAttribI4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227dcde0 0xc8227dce60] } +&{glVertexAttribI4usv QOpenGLFunctions_4_5_Core::glVertexAttribI4usv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227dd020 0xc8227dd0a0] } +&{glVertexAttribIFormat QOpenGLFunctions_4_5_Core::glVertexAttribIFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227dd260 0xc8227dd2e0 0xc8227dd360 0xc8227dd3e0] } +&{glVertexAttribIPointer QOpenGLFunctions_4_5_Core::glVertexAttribIPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227dd5a0 0xc8227dd620 0xc8227dd6a0 0xc8227dd720 0xc8227dd7c0] } +&{glVertexAttribL1d QOpenGLFunctions_4_5_Core::glVertexAttribL1d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227dd980 0xc8227dda00] } +&{glVertexAttribL1dv QOpenGLFunctions_4_5_Core::glVertexAttribL1dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227ddbc0 0xc8227ddc40] } +&{glVertexAttribL2d QOpenGLFunctions_4_5_Core::glVertexAttribL2d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227dde00 0xc8227dde80 0xc8227ddf00] } +&{glVertexAttribL2dv QOpenGLFunctions_4_5_Core::glVertexAttribL2dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227ea0c0 0xc8227ea140] } +&{glVertexAttribL3d QOpenGLFunctions_4_5_Core::glVertexAttribL3d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227ea300 0xc8227ea380 0xc8227ea400 0xc8227ea480] } +&{glVertexAttribL3dv QOpenGLFunctions_4_5_Core::glVertexAttribL3dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227ea640 0xc8227ea6c0] } +&{glVertexAttribL4d QOpenGLFunctions_4_5_Core::glVertexAttribL4d commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227ea880 0xc8227ea900 0xc8227ea980 0xc8227eaa00 0xc8227eaaa0] } +&{glVertexAttribL4dv QOpenGLFunctions_4_5_Core::glVertexAttribL4dv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227eac60 0xc8227eace0] } +&{glVertexAttribLFormat QOpenGLFunctions_4_5_Core::glVertexAttribLFormat commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227eaea0 0xc8227eaf20 0xc8227eafa0 0xc8227eb020] } +&{glVertexAttribLPointer QOpenGLFunctions_4_5_Core::glVertexAttribLPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227eb1e0 0xc8227eb260 0xc8227eb2e0 0xc8227eb360 0xc8227eb400] } +&{glVertexAttribP1ui QOpenGLFunctions_4_5_Core::glVertexAttribP1ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227eb5c0 0xc8227eb640 0xc8227eb6c0 0xc8227eb740] } +&{glVertexAttribP1uiv QOpenGLFunctions_4_5_Core::glVertexAttribP1uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227eb900 0xc8227eb980 0xc8227eba00 0xc8227eba80] } +&{glVertexAttribP2ui QOpenGLFunctions_4_5_Core::glVertexAttribP2ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227ebc40 0xc8227ebcc0 0xc8227ebd40 0xc8227ebdc0] } +&{glVertexAttribP2uiv QOpenGLFunctions_4_5_Core::glVertexAttribP2uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227ebf80 0xc8227f6000 0xc8227f6080 0xc8227f6100] } +&{glVertexAttribP3ui QOpenGLFunctions_4_5_Core::glVertexAttribP3ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227f62c0 0xc8227f6340 0xc8227f63c0 0xc8227f6440] } +&{glVertexAttribP3uiv QOpenGLFunctions_4_5_Core::glVertexAttribP3uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227f6600 0xc8227f6680 0xc8227f6700 0xc8227f6780] } +&{glVertexAttribP4ui QOpenGLFunctions_4_5_Core::glVertexAttribP4ui commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227f6940 0xc8227f69c0 0xc8227f6a40 0xc8227f6ac0] } +&{glVertexAttribP4uiv QOpenGLFunctions_4_5_Core::glVertexAttribP4uiv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227f6c80 0xc8227f6d00 0xc8227f6d80 0xc8227f6e00] } +&{glVertexAttribPointer QOpenGLFunctions_4_5_Core::glVertexAttribPointer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227f6fc0 0xc8227f7040 0xc8227f70c0 0xc8227f7140 0xc8227f71e0 0xc8227f7260] } +&{glVertexBindingDivisor QOpenGLFunctions_4_5_Core::glVertexBindingDivisor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227f7420 0xc8227f74a0] } +&{glViewport QOpenGLFunctions_4_5_Core::glViewport commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227f7600 0xc8227f7680 0xc8227f7700 0xc8227f7780] } +&{glViewportArrayv QOpenGLFunctions_4_5_Core::glViewportArrayv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227f78e0 0xc8227f7960 0xc8227f79e0] } +&{glViewportIndexedf QOpenGLFunctions_4_5_Core::glViewportIndexedf commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227f7ba0 0xc8227f7c20 0xc8227f7ca0 0xc8227f7d20 0xc8227f7dc0] } +&{glViewportIndexedfv QOpenGLFunctions_4_5_Core::glViewportIndexedfv commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc8227f7f80 0xc822806000] } +&{glWaitSync QOpenGLFunctions_4_5_Core::glWaitSync commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_4_5_core.h non plain false false void [0xc822806160 0xc8228061e0 0xc822806260] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLFunctions_ES2.txt b/internal/binding/dump/QtGui/QOpenGLFunctions_ES2.txt new file mode 100755 index 00000000..0d222732 --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLFunctions_ES2.txt @@ -0,0 +1,147 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLFunctions_ES2 QOpenGLFunctions_ES2::QOpenGLFunctions_ES2 commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.cpp non constructor false false [] } +&{initializeOpenGLFunctions QOpenGLFunctions_ES2::initializeOpenGLFunctions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.cpp impure plain false false bool [] } +&{~QOpenGLFunctions_ES2 QOpenGLFunctions_ES2::~QOpenGLFunctions_ES2 commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.cpp non destructor false false [] } +&{glActiveTexture QOpenGLFunctions_ES2::glActiveTexture commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822806ba0] } +&{glAttachShader QOpenGLFunctions_ES2::glAttachShader commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822806d00 0xc822806d80] } +&{glBindAttribLocation QOpenGLFunctions_ES2::glBindAttribLocation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822806f40 0xc822806fc0 0xc822807040] } +&{glBindBuffer QOpenGLFunctions_ES2::glBindBuffer commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc8228071c0 0xc822807240] } +&{glBindFramebuffer QOpenGLFunctions_ES2::glBindFramebuffer commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822807400 0xc822807480] } +&{glBindRenderbuffer QOpenGLFunctions_ES2::glBindRenderbuffer commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822807640 0xc8228076c0] } +&{glBindTexture QOpenGLFunctions_ES2::glBindTexture commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822807820 0xc8228078a0] } +&{glBlendColor QOpenGLFunctions_ES2::glBlendColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822807a00 0xc822807a80 0xc822807b00 0xc822807b80] } +&{glBlendEquation QOpenGLFunctions_ES2::glBlendEquation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822807ce0] } +&{glBlendEquationSeparate QOpenGLFunctions_ES2::glBlendEquationSeparate commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822807ea0 0xc822807f20] } +&{glBlendFunc QOpenGLFunctions_ES2::glBlendFunc commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822816080 0xc822816100] } +&{glBlendFuncSeparate QOpenGLFunctions_ES2::glBlendFuncSeparate commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc8228162e0 0xc822816360 0xc8228163e0 0xc822816460] } +&{glBufferData QOpenGLFunctions_ES2::glBufferData commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc8228165c0 0xc822816640 0xc8228166c0 0xc822816740] } +&{glBufferSubData QOpenGLFunctions_ES2::glBufferSubData commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc8228168a0 0xc822816920 0xc8228169a0 0xc822816a20] } +&{glCheckFramebufferStatus QOpenGLFunctions_ES2::glCheckFramebufferStatus commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false GLenum [0xc822816be0] } +&{glClear QOpenGLFunctions_ES2::glClear commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822816dc0] } +&{glClearColor QOpenGLFunctions_ES2::glClearColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822816f20 0xc822816fa0 0xc822817020 0xc8228170a0] } +&{glClearDepthf QOpenGLFunctions_ES2::glClearDepthf commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822817200] } +&{glClearStencil QOpenGLFunctions_ES2::glClearStencil commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822817380] } +&{glColorMask QOpenGLFunctions_ES2::glColorMask commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc8228174e0 0xc822817560 0xc8228175e0 0xc822817660] } +&{glCompileShader QOpenGLFunctions_ES2::glCompileShader commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc8228177c0] } +&{glCompressedTexImage2D QOpenGLFunctions_ES2::glCompressedTexImage2D commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822817980 0xc822817a00 0xc822817a80 0xc822817b00 0xc822817ba0 0xc822817c20 0xc822817ca0 0xc822817d20] } +&{glCompressedTexSubImage2D QOpenGLFunctions_ES2::glCompressedTexSubImage2D commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822817ee0 0xc822817f60 0xc822817fe0 0xc82282a060 0xc82282a100 0xc82282a180 0xc82282a200 0xc82282a280 0xc82282a320] } +&{glCopyTexImage2D QOpenGLFunctions_ES2::glCopyTexImage2D commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc82282a480 0xc82282a500 0xc82282a580 0xc82282a600 0xc82282a6a0 0xc82282a720 0xc82282a7a0 0xc82282a820] } +&{glCopyTexSubImage2D QOpenGLFunctions_ES2::glCopyTexSubImage2D commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc82282a9e0 0xc82282aa60 0xc82282aae0 0xc82282ab60 0xc82282ac00 0xc82282ac80 0xc82282ad00 0xc82282ad80] } +&{glCreateProgram QOpenGLFunctions_ES2::glCreateProgram commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false GLuint [0xc82282af00] } +&{glCreateShader QOpenGLFunctions_ES2::glCreateShader commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false GLuint [0xc82282b060] } +&{glCullFace QOpenGLFunctions_ES2::glCullFace commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc82282b260] } +&{glDeleteBuffers QOpenGLFunctions_ES2::glDeleteBuffers commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc82282b3c0 0xc82282b440] } +&{glDeleteFramebuffers QOpenGLFunctions_ES2::glDeleteFramebuffers commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc82282b600 0xc82282b680] } +&{glDeleteProgram QOpenGLFunctions_ES2::glDeleteProgram commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc82282b7e0] } +&{glDeleteRenderbuffers QOpenGLFunctions_ES2::glDeleteRenderbuffers commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc82282b9a0 0xc82282ba20] } +&{glDeleteShader QOpenGLFunctions_ES2::glDeleteShader commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc82282bb80] } +&{glDeleteTextures QOpenGLFunctions_ES2::glDeleteTextures commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc82282bce0 0xc82282bd60] } +&{glDepthFunc QOpenGLFunctions_ES2::glDepthFunc commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc82282bee0] } +&{glDepthMask QOpenGLFunctions_ES2::glDepthMask commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822838060] } +&{glDepthRangef QOpenGLFunctions_ES2::glDepthRangef commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc8228381c0 0xc822838240] } +&{glDetachShader QOpenGLFunctions_ES2::glDetachShader commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc8228383a0 0xc822838420] } +&{glDisable QOpenGLFunctions_ES2::glDisable commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822838600] } +&{glDisableVertexAttribArray QOpenGLFunctions_ES2::glDisableVertexAttribArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc8228387c0] } +&{glDrawArrays QOpenGLFunctions_ES2::glDrawArrays commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822838920 0xc8228389a0 0xc822838a20] } +&{glDrawElements QOpenGLFunctions_ES2::glDrawElements commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822838b80 0xc822838c00 0xc822838c80 0xc822838d00] } +&{glEnable QOpenGLFunctions_ES2::glEnable commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822838ee0] } +&{glEnableVertexAttribArray QOpenGLFunctions_ES2::glEnableVertexAttribArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc8228390a0] } +&{glFinish QOpenGLFunctions_ES2::glFinish commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822839280] } +&{glFlush QOpenGLFunctions_ES2::glFlush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822839460] } +&{glFramebufferRenderbuffer QOpenGLFunctions_ES2::glFramebufferRenderbuffer commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822839620 0xc8228396a0 0xc822839740 0xc822839800] } +&{glFramebufferTexture2D QOpenGLFunctions_ES2::glFramebufferTexture2D commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc8228399c0 0xc822839a40 0xc822839ac0 0xc822839b40 0xc822839be0] } +&{glFrontFace QOpenGLFunctions_ES2::glFrontFace commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822839d60] } +&{glGenBuffers QOpenGLFunctions_ES2::glGenBuffers commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822839ec0 0xc822839f40] } +&{glGenFramebuffers QOpenGLFunctions_ES2::glGenFramebuffers commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822848100 0xc822848180] } +&{glGenRenderbuffers QOpenGLFunctions_ES2::glGenRenderbuffers commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822848340 0xc8228483c0] } +&{glGenTextures QOpenGLFunctions_ES2::glGenTextures commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822848520 0xc8228485a0] } +&{glGenerateMipmap QOpenGLFunctions_ES2::glGenerateMipmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822848700] } +&{glGetActiveAttrib QOpenGLFunctions_ES2::glGetActiveAttrib commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc8228488c0 0xc822848940 0xc8228489c0 0xc822848a40 0xc822848ae0 0xc822848b60 0xc822848be0] } +&{glGetActiveUniform QOpenGLFunctions_ES2::glGetActiveUniform commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822848da0 0xc822848e20 0xc822848ea0 0xc822848f20 0xc822848fc0 0xc822849040 0xc8228490c0] } +&{glGetAttachedShaders QOpenGLFunctions_ES2::glGetAttachedShaders commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822849280 0xc822849300 0xc822849380 0xc822849400] } +&{glGetAttribLocation QOpenGLFunctions_ES2::glGetAttribLocation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false int [0xc8228495c0 0xc822849640] } +&{glGetBooleanv QOpenGLFunctions_ES2::glGetBooleanv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc8228497a0 0xc822849820] } +&{glGetBufferParameteriv QOpenGLFunctions_ES2::glGetBufferParameteriv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822849a00 0xc822849a80 0xc822849b00] } +&{glGetError QOpenGLFunctions_ES2::glGetError commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false GLenum [0xc822849ce0] } +&{glGetFloatv QOpenGLFunctions_ES2::glGetFloatv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822849e40 0xc822849ec0] } +&{glGetFramebufferAttachmentParameteriv QOpenGLFunctions_ES2::glGetFramebufferAttachmentParameteriv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc82285a020 0xc82285a0a0 0xc82285a120 0xc82285a1a0] } +&{glGetIntegerv QOpenGLFunctions_ES2::glGetIntegerv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc82285a300 0xc82285a380] } +&{glGetProgramInfoLog QOpenGLFunctions_ES2::glGetProgramInfoLog commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc82285a540 0xc82285a5c0 0xc82285a640 0xc82285a6c0] } +&{glGetProgramiv QOpenGLFunctions_ES2::glGetProgramiv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc82285a820 0xc82285a8a0 0xc82285a920] } +&{glGetRenderbufferParameteriv QOpenGLFunctions_ES2::glGetRenderbufferParameteriv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc82285aae0 0xc82285ab60 0xc82285abe0] } +&{glGetShaderInfoLog QOpenGLFunctions_ES2::glGetShaderInfoLog commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc82285ada0 0xc82285ae20 0xc82285aea0 0xc82285af20] } +&{glGetShaderPrecisionFormat QOpenGLFunctions_ES2::glGetShaderPrecisionFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc82285b0e0 0xc82285b160 0xc82285b1e0 0xc82285b260] } +&{glGetShaderSource QOpenGLFunctions_ES2::glGetShaderSource commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc82285b420 0xc82285b4a0 0xc82285b520 0xc82285b5a0] } +&{glGetShaderiv QOpenGLFunctions_ES2::glGetShaderiv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc82285b700 0xc82285b780 0xc82285b800] } +&{glGetString QOpenGLFunctions_ES2::glGetString commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false const GLubyte * [0xc82285b960] } +&{glGetTexParameterfv QOpenGLFunctions_ES2::glGetTexParameterfv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc82285bb20 0xc82285bba0 0xc82285bc20] } +&{glGetTexParameteriv QOpenGLFunctions_ES2::glGetTexParameteriv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc82285bde0 0xc82285be60 0xc82285bee0] } +&{glGetUniformLocation QOpenGLFunctions_ES2::glGetUniformLocation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false int [0xc8228660a0 0xc822866120] } +&{glGetUniformfv QOpenGLFunctions_ES2::glGetUniformfv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822866280 0xc822866300 0xc822866380] } +&{glGetUniformiv QOpenGLFunctions_ES2::glGetUniformiv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc8228664e0 0xc822866560 0xc8228665e0] } +&{glGetVertexAttribPointerv QOpenGLFunctions_ES2::glGetVertexAttribPointerv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc8228667a0 0xc822866820 0xc8228668a0] } +&{glGetVertexAttribfv QOpenGLFunctions_ES2::glGetVertexAttribfv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822866a60 0xc822866ae0 0xc822866b60] } +&{glGetVertexAttribiv QOpenGLFunctions_ES2::glGetVertexAttribiv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822866d20 0xc822866da0 0xc822866e20] } +&{glHint QOpenGLFunctions_ES2::glHint commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822867000 0xc822867080] } +&{glIsBuffer QOpenGLFunctions_ES2::glIsBuffer commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false GLboolean [0xc822867240] } +&{glIsEnabled QOpenGLFunctions_ES2::glIsEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false GLboolean [0xc8228673a0] } +&{glIsFramebuffer QOpenGLFunctions_ES2::glIsFramebuffer commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false GLboolean [0xc822867500] } +&{glIsProgram QOpenGLFunctions_ES2::glIsProgram commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false GLboolean [0xc822867660] } +&{glIsRenderbuffer QOpenGLFunctions_ES2::glIsRenderbuffer commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false GLboolean [0xc8228677c0] } +&{glIsShader QOpenGLFunctions_ES2::glIsShader commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false GLboolean [0xc822867980] } +&{glIsTexture QOpenGLFunctions_ES2::glIsTexture commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false GLboolean [0xc822867ae0] } +&{glLineWidth QOpenGLFunctions_ES2::glLineWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822867c60] } +&{glLinkProgram QOpenGLFunctions_ES2::glLinkProgram commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822867dc0] } +&{glPixelStorei QOpenGLFunctions_ES2::glPixelStorei commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822867f20 0xc822867fa0] } +&{glPolygonOffset QOpenGLFunctions_ES2::glPolygonOffset commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a76100 0xc822a76180] } +&{glReadPixels QOpenGLFunctions_ES2::glReadPixels commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a762e0 0xc822a76360 0xc822a763e0 0xc822a76460 0xc822a76500 0xc822a76580 0xc822a76600] } +&{glReleaseShaderCompiler QOpenGLFunctions_ES2::glReleaseShaderCompiler commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a767c0] } +&{glRenderbufferStorage QOpenGLFunctions_ES2::glRenderbufferStorage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a76980 0xc822a76a00 0xc822a76a80 0xc822a76b00] } +&{glSampleCoverage QOpenGLFunctions_ES2::glSampleCoverage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a76c60 0xc822a76ce0] } +&{glScissor QOpenGLFunctions_ES2::glScissor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a76ea0 0xc822a76f20 0xc822a76fa0 0xc822a77020] } +&{glShaderBinary QOpenGLFunctions_ES2::glShaderBinary commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a77180 0xc822a77200 0xc822a77280 0xc822a77300 0xc822a773a0] } +&{glShaderSource QOpenGLFunctions_ES2::glShaderSource commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a77500 0xc822a77580 0xc822a77600 0xc822a77680] } +&{glStencilFunc QOpenGLFunctions_ES2::glStencilFunc commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a777e0 0xc822a77860 0xc822a778e0] } +&{glStencilFuncSeparate QOpenGLFunctions_ES2::glStencilFuncSeparate commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a77aa0 0xc822a77b20 0xc822a77ba0 0xc822a77c20] } +&{glStencilMask QOpenGLFunctions_ES2::glStencilMask commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a77da0] } +&{glStencilMaskSeparate QOpenGLFunctions_ES2::glStencilMaskSeparate commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a77f60 0xc822a77fe0] } +&{glStencilOp QOpenGLFunctions_ES2::glStencilOp commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a88140 0xc822a881c0 0xc822a88240] } +&{glStencilOpSeparate QOpenGLFunctions_ES2::glStencilOpSeparate commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a88400 0xc822a88480 0xc822a88500 0xc822a88580] } +&{glTexImage2D QOpenGLFunctions_ES2::glTexImage2D commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a886e0 0xc822a88760 0xc822a887e0 0xc822a88860 0xc822a88900 0xc822a88980 0xc822a88a00 0xc822a88a80 0xc822a88b20] } +&{glTexParameterf QOpenGLFunctions_ES2::glTexParameterf commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a88c80 0xc822a88d00 0xc822a88d80] } +&{glTexParameterfv QOpenGLFunctions_ES2::glTexParameterfv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a88ee0 0xc822a88f60 0xc822a88fe0] } +&{glTexParameteri QOpenGLFunctions_ES2::glTexParameteri commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a89140 0xc822a891c0 0xc822a89240] } +&{glTexParameteriv QOpenGLFunctions_ES2::glTexParameteriv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a893a0 0xc822a89420 0xc822a894a0] } +&{glTexSubImage2D QOpenGLFunctions_ES2::glTexSubImage2D commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a89600 0xc822a89680 0xc822a89700 0xc822a89780 0xc822a89820 0xc822a898a0 0xc822a89920 0xc822a899a0 0xc822a89a40] } +&{glUniform1f QOpenGLFunctions_ES2::glUniform1f commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a89ba0 0xc822a89c20] } +&{glUniform1fv QOpenGLFunctions_ES2::glUniform1fv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a89d80 0xc822a89e00 0xc822a89e80] } +&{glUniform1i QOpenGLFunctions_ES2::glUniform1i commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a89fe0 0xc822a98060] } +&{glUniform1iv QOpenGLFunctions_ES2::glUniform1iv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a981c0 0xc822a98240 0xc822a982c0] } +&{glUniform2f QOpenGLFunctions_ES2::glUniform2f commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a98420 0xc822a984a0 0xc822a98520] } +&{glUniform2fv QOpenGLFunctions_ES2::glUniform2fv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a98680 0xc822a98700 0xc822a98780] } +&{glUniform2i QOpenGLFunctions_ES2::glUniform2i commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a988e0 0xc822a98960 0xc822a989e0] } +&{glUniform2iv QOpenGLFunctions_ES2::glUniform2iv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a98b40 0xc822a98bc0 0xc822a98c40] } +&{glUniform3f QOpenGLFunctions_ES2::glUniform3f commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a98da0 0xc822a98e20 0xc822a98ea0 0xc822a98f20] } +&{glUniform3fv QOpenGLFunctions_ES2::glUniform3fv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a99080 0xc822a99100 0xc822a99180] } +&{glUniform3i QOpenGLFunctions_ES2::glUniform3i commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a992e0 0xc822a99360 0xc822a993e0 0xc822a99460] } +&{glUniform3iv QOpenGLFunctions_ES2::glUniform3iv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a995c0 0xc822a99640 0xc822a996c0] } +&{glUniform4f QOpenGLFunctions_ES2::glUniform4f commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a99840 0xc822a998c0 0xc822a99940 0xc822a999c0 0xc822a99a60] } +&{glUniform4fv QOpenGLFunctions_ES2::glUniform4fv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a99bc0 0xc822a99c40 0xc822a99cc0] } +&{glUniform4i QOpenGLFunctions_ES2::glUniform4i commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822a99e20 0xc822a99ea0 0xc822a99f20 0xc822a99fa0 0xc822aa8040] } +&{glUniform4iv QOpenGLFunctions_ES2::glUniform4iv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822aa81a0 0xc822aa8220 0xc822aa82a0] } +&{glUniformMatrix2fv QOpenGLFunctions_ES2::glUniformMatrix2fv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822aa8460 0xc822aa84e0 0xc822aa8560 0xc822aa85e0] } +&{glUniformMatrix3fv QOpenGLFunctions_ES2::glUniformMatrix3fv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822aa87a0 0xc822aa8820 0xc822aa88a0 0xc822aa8920] } +&{glUniformMatrix4fv QOpenGLFunctions_ES2::glUniformMatrix4fv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822aa8ae0 0xc822aa8b60 0xc822aa8be0 0xc822aa8c60] } +&{glUseProgram QOpenGLFunctions_ES2::glUseProgram commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822aa8dc0] } +&{glValidateProgram QOpenGLFunctions_ES2::glValidateProgram commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822aa8f80] } +&{glVertexAttrib1f QOpenGLFunctions_ES2::glVertexAttrib1f commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822aa90e0 0xc822aa9160] } +&{glVertexAttrib1fv QOpenGLFunctions_ES2::glVertexAttrib1fv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822aa9320 0xc822aa93a0] } +&{glVertexAttrib2f QOpenGLFunctions_ES2::glVertexAttrib2f commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822aa9500 0xc822aa9580 0xc822aa9600] } +&{glVertexAttrib2fv QOpenGLFunctions_ES2::glVertexAttrib2fv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822aa97c0 0xc822aa9840] } +&{glVertexAttrib3f QOpenGLFunctions_ES2::glVertexAttrib3f commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822aa99a0 0xc822aa9a20 0xc822aa9aa0 0xc822aa9b20] } +&{glVertexAttrib3fv QOpenGLFunctions_ES2::glVertexAttrib3fv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822aa9ce0 0xc822aa9d60] } +&{glVertexAttrib4f QOpenGLFunctions_ES2::glVertexAttrib4f commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822aa9ec0 0xc822aa9f40 0xc822aa9fc0 0xc822abc040 0xc822abc0e0] } +&{glVertexAttrib4fv QOpenGLFunctions_ES2::glVertexAttrib4fv commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822abc2a0 0xc822abc320] } +&{glVertexAttribPointer QOpenGLFunctions_ES2::glVertexAttribPointer commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822abc4e0 0xc822abc560 0xc822abc5e0 0xc822abc660 0xc822abc700 0xc822abc780] } +&{glViewport QOpenGLFunctions_ES2::glViewport commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglfunctions_es2.h non plain false false void [0xc822abc940 0xc822abc9c0 0xc822abca40 0xc822abcac0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLPaintDevice.txt b/internal/binding/dump/QtGui/QOpenGLPaintDevice.txt new file mode 100755 index 00000000..ae3ca69e --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLPaintDevice.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLPaintDevice QOpenGLPaintDevice::QOpenGLPaintDevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpaintdevice.h non constructor false false [] } +&{QOpenGLPaintDevice QOpenGLPaintDevice::QOpenGLPaintDevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpaintdevice.h non constructor false true 2 [0xc822abd0e0] } +&{QOpenGLPaintDevice QOpenGLPaintDevice::QOpenGLPaintDevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpaintdevice.h non constructor false true 3 [0xc822abd2a0 0xc822abd320] } +&{context QOpenGLPaintDevice::context commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpaintdevice.h non plain false false QOpenGLContext * [] } +&{dotsPerMeterX QOpenGLPaintDevice::dotsPerMeterX commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpaintdevice.h non plain false false qreal [] } +&{dotsPerMeterY QOpenGLPaintDevice::dotsPerMeterY commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpaintdevice.h non plain false false qreal [] } +&{ensureActiveTarget QOpenGLPaintDevice::ensureActiveTarget commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpaintdevice.h impure plain false false void [] } +&{metric QOpenGLPaintDevice::metric commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpaintdevice.h impure plain false false int [0xc822abdc00] } +&{paintEngine QOpenGLPaintDevice::paintEngine commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpaintdevice.h impure plain false false QPaintEngine * [] } +&{paintFlipped QOpenGLPaintDevice::paintFlipped commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpaintdevice.h non plain false false bool [] } +&{setDevicePixelRatio QOpenGLPaintDevice::setDevicePixelRatio commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpaintdevice.h non plain false false void [0xc822abdfe0] } +&{setDotsPerMeterX QOpenGLPaintDevice::setDotsPerMeterX commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpaintdevice.h non plain false false void [0xc822acc140] } +&{setDotsPerMeterY QOpenGLPaintDevice::setDotsPerMeterY commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpaintdevice.h non plain false false void [0xc822acc2a0] } +&{setPaintFlipped QOpenGLPaintDevice::setPaintFlipped commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpaintdevice.h non plain false false void [0xc822acc400] } +&{setSize QOpenGLPaintDevice::setSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpaintdevice.h non plain false false void [0xc822acc620] } +&{size QOpenGLPaintDevice::size commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpaintdevice.h non plain false false QSize [] } +&{~QOpenGLPaintDevice QOpenGLPaintDevice::~QOpenGLPaintDevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpaintdevice.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLPixelTransferOptions.txt b/internal/binding/dump/QtGui/QOpenGLPixelTransferOptions.txt new file mode 100755 index 00000000..4412c60e --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLPixelTransferOptions.txt @@ -0,0 +1,20 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLPixelTransferOptions QOpenGLPixelTransferOptions::QOpenGLPixelTransferOptions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpixeltransferoptions.h non constructor false false [] } +&{alignment QOpenGLPixelTransferOptions::alignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpixeltransferoptions.h non plain false false int [] } +&{imageHeight QOpenGLPixelTransferOptions::imageHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpixeltransferoptions.h non plain false false int [] } +&{isLeastSignificantBitFirst QOpenGLPixelTransferOptions::isLeastSignificantBitFirst commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpixeltransferoptions.h non plain false false bool [] } +&{isSwapBytesEnabled QOpenGLPixelTransferOptions::isSwapBytesEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpixeltransferoptions.h non plain false false bool [] } +&{setAlignment QOpenGLPixelTransferOptions::setAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpixeltransferoptions.h non plain false false void [0xc822acd1c0] } +&{setImageHeight QOpenGLPixelTransferOptions::setImageHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpixeltransferoptions.h non plain false false void [0xc822acd320] } +&{setSkipImages QOpenGLPixelTransferOptions::setSkipImages commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpixeltransferoptions.h non plain false false void [0xc822acd4a0] } +&{setSkipPixels QOpenGLPixelTransferOptions::setSkipPixels commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpixeltransferoptions.h non plain false false void [0xc822acd600] } +&{setSkipRows QOpenGLPixelTransferOptions::setSkipRows commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpixeltransferoptions.h non plain false false void [0xc822acd780] } +&{skipImages QOpenGLPixelTransferOptions::skipImages commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpixeltransferoptions.h non plain false false int [] } +&{skipPixels QOpenGLPixelTransferOptions::skipPixels commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpixeltransferoptions.h non plain false false int [] } +&{skipRows QOpenGLPixelTransferOptions::skipRows commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpixeltransferoptions.h non plain false false int [] } +&{rowLength QOpenGLPixelTransferOptions::rowLength commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpixeltransferoptions.h non plain false false int [] } +&{setLeastSignificantByteFirst QOpenGLPixelTransferOptions::setLeastSignificantByteFirst commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpixeltransferoptions.h non plain false false void [0xc822ae6180] } +&{setRowLength QOpenGLPixelTransferOptions::setRowLength commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpixeltransferoptions.h non plain false false void [0xc822ae6300] } +&{setSwapBytesEnabled QOpenGLPixelTransferOptions::setSwapBytesEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpixeltransferoptions.h non plain false false void [0xc822ae64c0] } +&{~QOpenGLPixelTransferOptions QOpenGLPixelTransferOptions::~QOpenGLPixelTransferOptions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglpixeltransferoptions.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLShader.txt b/internal/binding/dump/QtGui/QOpenGLShader.txt new file mode 100755 index 00000000..03859b27 --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLShader.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLShader QOpenGLShader::QOpenGLShader commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non constructor false false [0xc822ae6f40 0xc822ae7000] } +&{compileSourceCode QOpenGLShader::compileSourceCode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 2 bool [0xc822ae7240] } +&{compileSourceCode QOpenGLShader::compileSourceCode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 3 bool [0xc822ae74a0] } +&{compileSourceCode QOpenGLShader::compileSourceCode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false bool [0xc822ae76c0] } +&{compileSourceFile QOpenGLShader::compileSourceFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false bool [0xc822ae7900] } +&{hasOpenGLShaders QOpenGLShader::hasOpenGLShaders commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain true false bool [0xc822ae7ac0 0xc822ae7b40] } +&{isCompiled QOpenGLShader::isCompiled commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false bool [] } +&{log QOpenGLShader::log commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false QString [] } +&{shaderId QOpenGLShader::shaderId commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false GLuint [] } +&{shaderType QOpenGLShader::shaderType commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false QOpenGLShader::ShaderType [] } +&{sourceCode QOpenGLShader::sourceCode commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false QByteArray [] } +&{~QOpenGLShader QOpenGLShader::~QOpenGLShader commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{ShaderTypeBit QOpenGLShader::ShaderTypeBit commendable public QOpenGLShader::ShaderType [0xc822ae68e0 0xc822ae6960 0xc822ae69e0 0xc822ae6a80 0xc822ae6b80 0xc822ae6c40]} diff --git a/internal/binding/dump/QtGui/QOpenGLShaderProgram.txt b/internal/binding/dump/QtGui/QOpenGLShaderProgram.txt new file mode 100755 index 00000000..7cd8c985 --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLShaderProgram.txt @@ -0,0 +1,154 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLShaderProgram QOpenGLShaderProgram::QOpenGLShaderProgram commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non constructor false false [0xc822af2880] } +&{addShader QOpenGLShaderProgram::addShader commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false bool [0xc822af2a40] } +&{addShaderFromSourceCode QOpenGLShaderProgram::addShaderFromSourceCode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 2 bool [0xc822af2c20 0xc822af2d00] } +&{addShaderFromSourceCode QOpenGLShaderProgram::addShaderFromSourceCode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 3 bool [0xc822af2f40 0xc822af3000] } +&{addShaderFromSourceCode QOpenGLShaderProgram::addShaderFromSourceCode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false bool [0xc822af31e0 0xc822af32a0] } +&{addShaderFromSourceFile QOpenGLShaderProgram::addShaderFromSourceFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false bool [0xc822af3480 0xc822af3540] } +&{attributeLocation QOpenGLShaderProgram::attributeLocation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 2 int [0xc822af3720] } +&{attributeLocation QOpenGLShaderProgram::attributeLocation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 3 int [0xc822af3940] } +&{attributeLocation QOpenGLShaderProgram::attributeLocation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false int [0xc822af3b00] } +&{bind QOpenGLShaderProgram::bind commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false bool [] } +&{bindAttributeLocation QOpenGLShaderProgram::bindAttributeLocation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 2 void [0xc822af3de0 0xc822af3ea0] } +&{bindAttributeLocation QOpenGLShaderProgram::bindAttributeLocation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 3 void [0xc822b04060 0xc822b040e0] } +&{bindAttributeLocation QOpenGLShaderProgram::bindAttributeLocation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false void [0xc822b042a0 0xc822b04320] } +&{create QOpenGLShaderProgram::create commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false bool [] } +&{defaultInnerTessellationLevels QOpenGLShaderProgram::defaultInnerTessellationLevels commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false QVector [] } +&{defaultOuterTessellationLevels QOpenGLShaderProgram::defaultOuterTessellationLevels commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false QVector [] } +&{disableAttributeArray QOpenGLShaderProgram::disableAttributeArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 2 void [0xc822b047c0] } +&{disableAttributeArray QOpenGLShaderProgram::disableAttributeArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false void [0xc822b04980] } +&{enableAttributeArray QOpenGLShaderProgram::enableAttributeArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 2 void [0xc822b04b40] } +&{enableAttributeArray QOpenGLShaderProgram::enableAttributeArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false void [0xc822b04d00] } +&{hasOpenGLShaderPrograms QOpenGLShaderProgram::hasOpenGLShaderPrograms commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain true false bool [0xc822b04ec0] } +&{isLinked QOpenGLShaderProgram::isLinked commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false bool [] } +&{link QOpenGLShaderProgram::link commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h impure plain false false bool [] } +&{log QOpenGLShaderProgram::log commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false QString [] } +&{maxGeometryOutputVertices QOpenGLShaderProgram::maxGeometryOutputVertices commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false int [] } +&{patchVertexCount QOpenGLShaderProgram::patchVertexCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false int [] } +&{programId QOpenGLShaderProgram::programId commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false GLuint [] } +&{release QOpenGLShaderProgram::release commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false void [] } +&{removeAllShaders QOpenGLShaderProgram::removeAllShaders commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false void [] } +&{removeShader QOpenGLShaderProgram::removeShader commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false void [0xc822b05740] } +&{setAttributeArray QOpenGLShaderProgram::setAttributeArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 10 void [0xc822b05900 0xc822b05980 0xc822b05a00 0xc822b05a80 0xc822b05b20] } +&{setAttributeArray QOpenGLShaderProgram::setAttributeArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 6 void [0xc822b05d00 0xc822b05d80 0xc822b05e00 0xc822b05e80] } +&{setAttributeArray QOpenGLShaderProgram::setAttributeArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 7 void [0xc822b1c040 0xc822b1c0e0 0xc822b1c1a0] } +&{setAttributeArray QOpenGLShaderProgram::setAttributeArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 8 void [0xc822b1c360 0xc822b1c400 0xc822b1c4c0] } +&{setAttributeArray QOpenGLShaderProgram::setAttributeArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 9 void [0xc822b1c680 0xc822b1c720 0xc822b1c7e0] } +&{setAttributeArray QOpenGLShaderProgram::setAttributeArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 5 void [0xc822b1c9a0 0xc822b1ca20 0xc822b1caa0 0xc822b1cb20 0xc822b1cbc0] } +&{setAttributeArray QOpenGLShaderProgram::setAttributeArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false void [0xc822b1cd80 0xc822b1ce00 0xc822b1ce80 0xc822b1cf00] } +&{setAttributeArray QOpenGLShaderProgram::setAttributeArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 2 void [0xc822b1d0c0 0xc822b1d160 0xc822b1d220] } +&{setAttributeArray QOpenGLShaderProgram::setAttributeArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 3 void [0xc822b1d3e0 0xc822b1d480 0xc822b1d540] } +&{setAttributeArray QOpenGLShaderProgram::setAttributeArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 4 void [0xc822b1d700 0xc822b1d7a0 0xc822b1d860] } +&{setAttributeBuffer QOpenGLShaderProgram::setAttributeBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 2 void [0xc822b1da20 0xc822b1daa0 0xc822b1db20 0xc822b1dba0 0xc822b1dc40] } +&{setAttributeBuffer QOpenGLShaderProgram::setAttributeBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false void [0xc822b1de00 0xc822b1de80 0xc822b1df00 0xc822b1df80 0xc822b2e020] } +&{setAttributeValue QOpenGLShaderProgram::setAttributeValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 10 void [0xc822b2e1e0 0xc822b2e260] } +&{setAttributeValue QOpenGLShaderProgram::setAttributeValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 11 void [0xc822b2e420 0xc822b2e4a0 0xc822b2e520] } +&{setAttributeValue QOpenGLShaderProgram::setAttributeValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 12 void [0xc822b2e6e0 0xc822b2e760 0xc822b2e7e0 0xc822b2e860] } +&{setAttributeValue QOpenGLShaderProgram::setAttributeValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 13 void [0xc822b2ea20 0xc822b2eaa0 0xc822b2eb20 0xc822b2eba0 0xc822b2ec40] } +&{setAttributeValue QOpenGLShaderProgram::setAttributeValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 18 void [0xc822b2ee00 0xc822b2ee80 0xc822b2ef00 0xc822b2ef80] } +&{setAttributeValue QOpenGLShaderProgram::setAttributeValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 17 void [0xc822b2f140 0xc822b2f1c0] } +&{setAttributeValue QOpenGLShaderProgram::setAttributeValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 14 void [0xc822b2f380 0xc822b2f420] } +&{setAttributeValue QOpenGLShaderProgram::setAttributeValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 15 void [0xc822b2f620 0xc822b2f6c0] } +&{setAttributeValue QOpenGLShaderProgram::setAttributeValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 16 void [0xc822b2f8c0 0xc822b2f960] } +&{setAttributeValue QOpenGLShaderProgram::setAttributeValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false void [0xc822b2fb60 0xc822b2fbe0] } +&{setAttributeValue QOpenGLShaderProgram::setAttributeValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 2 void [0xc822b2fda0 0xc822b2fe20 0xc822b2fea0] } +&{setAttributeValue QOpenGLShaderProgram::setAttributeValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 3 void [0xc822882060 0xc8228820e0 0xc822882160 0xc8228821e0] } +&{setAttributeValue QOpenGLShaderProgram::setAttributeValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 4 void [0xc8228823a0 0xc822882420 0xc8228824a0 0xc822882520 0xc8228825c0] } +&{setAttributeValue QOpenGLShaderProgram::setAttributeValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 9 void [0xc822882780 0xc822882800 0xc822882880 0xc822882900] } +&{setAttributeValue QOpenGLShaderProgram::setAttributeValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 8 void [0xc822882ac0 0xc822882b40] } +&{setAttributeValue QOpenGLShaderProgram::setAttributeValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 5 void [0xc822882d00 0xc822882da0] } +&{setAttributeValue QOpenGLShaderProgram::setAttributeValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 6 void [0xc822882fa0 0xc822883040] } +&{setAttributeValue QOpenGLShaderProgram::setAttributeValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 7 void [0xc822883240 0xc8228832e0] } +&{setDefaultInnerTessellationLevels QOpenGLShaderProgram::setDefaultInnerTessellationLevels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false void [0xc8228834a0] } +&{setDefaultOuterTessellationLevels QOpenGLShaderProgram::setDefaultOuterTessellationLevels commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false void [0xc822883660] } +&{setPatchVertexCount QOpenGLShaderProgram::setPatchVertexCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false void [0xc822883860] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 25 void [0xc8228839e0 0xc822883a60] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 28 void [0xc822883bc0 0xc822883c40 0xc822883cc0] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 29 void [0xc822883e20 0xc822883ea0 0xc822883f20 0xc822883fa0] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 30 void [0xc822896100 0xc822896180 0xc822896200 0xc822896280 0xc822896320] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 26 void [0xc822896480 0xc822896500] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 27 void [0xc822896660 0xc8228966e0] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 51 void [0xc822896840 0xc8228968e0] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 52 void [0xc822896a80 0xc822896b20] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 53 void [0xc822896cc0 0xc822896d60] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 34 void [0xc822896f00 0xc822896f80] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 39 void [0xc8228970e0 0xc822897180] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 40 void [0xc822897320 0xc8228973c0] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 41 void [0xc822897560 0xc822897600] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 42 void [0xc8228977a0 0xc822897840] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 43 void [0xc8228979e0 0xc822897a80] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 44 void [0xc822897c20 0xc822897cc0] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 45 void [0xc822897e60 0xc822897f00] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 46 void [0xc8228a80a0 0xc8228a8140] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 47 void [0xc8228a82e0 0xc8228a8380] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 35 void [0xc8228a8520 0xc8228a85a0] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 36 void [0xc8228a8700 0xc8228a8780] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 37 void [0xc8228a88e0 0xc8228a8960] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 38 void [0xc8228a8ac0 0xc8228a8b40] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 54 void [0xc8228a8ca0 0xc8228a8d40] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 31 void [0xc8228a8ee0 0xc8228a8f80] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 32 void [0xc8228a9120 0xc8228a91c0] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 33 void [0xc8228a9360 0xc8228a9400] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false void [0xc8228a95a0 0xc8228a9620] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 4 void [0xc8228a9780 0xc8228a9800 0xc8228a9880] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 5 void [0xc8228a99e0 0xc8228a9a60 0xc8228a9ae0 0xc8228a9b60] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 6 void [0xc8228a9cc0 0xc8228a9d40 0xc8228a9dc0 0xc8228a9e40 0xc8228a9ee0] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 2 void [0xc8228c2040 0xc8228c20c0] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 3 void [0xc8228c2220 0xc8228c22a0] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 48 void [0xc8228c2400 0xc8228c24a0] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 49 void [0xc8228c2640 0xc8228c26e0] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 50 void [0xc8228c2880 0xc8228c2920] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 10 void [0xc8228c2ac0 0xc8228c2b40] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 15 void [0xc8228c2ca0 0xc8228c2d40] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 16 void [0xc8228c2ee0 0xc8228c2f80] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 17 void [0xc8228c3120 0xc8228c31c0] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 18 void [0xc8228c3360 0xc8228c3400] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 19 void [0xc8228c35a0 0xc8228c3640] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 20 void [0xc8228c37e0 0xc8228c3880] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 21 void [0xc8228c3a20 0xc8228c3ac0] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 22 void [0xc8228c3c60 0xc8228c3d00] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 23 void [0xc8228c3ea0 0xc8228c3f40] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 11 void [0xc8228d60e0 0xc8228d6160] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 12 void [0xc8228d62c0 0xc8228d6340] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 13 void [0xc8228d64a0 0xc8228d6520] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 14 void [0xc8228d6680 0xc8228d6700] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 24 void [0xc8228d6860 0xc8228d6900] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 7 void [0xc8228d6aa0 0xc8228d6b40] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 8 void [0xc8228d6ce0 0xc8228d6d80] } +&{setUniformValue QOpenGLShaderProgram::setUniformValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 9 void [0xc8228d6f20 0xc8228d6fc0] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 18 void [0xc8228d71c0 0xc8228d7240 0xc8228d72c0 0xc8228d7340] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 16 void [0xc8228d7500 0xc8228d7580 0xc8228d7600] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 17 void [0xc8228d77c0 0xc8228d7840 0xc8228d78c0] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 22 void [0xc8228d7a80 0xc8228d7b20 0xc8228d7be0] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 23 void [0xc8228d7da0 0xc8228d7e40 0xc8228d7f00] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 24 void [0xc8228ec0c0 0xc8228ec160 0xc8228ec220] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 25 void [0xc8228ec3e0 0xc8228ec480 0xc8228ec540] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 26 void [0xc8228ec700 0xc8228ec7a0 0xc8228ec860] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 27 void [0xc8228eca20 0xc8228ecac0 0xc8228ecb80] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 28 void [0xc8228ecd40 0xc8228ecde0 0xc8228ecea0] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 29 void [0xc8228ed080 0xc8228ed120 0xc8228ed1e0] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 30 void [0xc8228ed3a0 0xc8228ed440 0xc8228ed500] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 19 void [0xc8228ed6c0 0xc8228ed760 0xc8228ed820] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 20 void [0xc8228ed9e0 0xc8228eda80 0xc8228edb40] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 21 void [0xc8228edd00 0xc8228edda0 0xc8228ede60] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false void [0xc822900020 0xc8229000a0 0xc822900120 0xc8229001a0] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 2 void [0xc822900360 0xc8229003e0 0xc822900460] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 3 void [0xc822900620 0xc8229006a0 0xc822900720] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 7 void [0xc8229008e0 0xc822900980 0xc822900a40] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 8 void [0xc822900c00 0xc822900ca0 0xc822900d60] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 9 void [0xc822900f20 0xc822900fc0 0xc822901080] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 10 void [0xc822901240 0xc8229012e0 0xc8229013a0] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 11 void [0xc822901560 0xc822901600 0xc8229016c0] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 12 void [0xc822901880 0xc822901920 0xc8229019e0] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 13 void [0xc822901ba0 0xc822901c40 0xc822901d00] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 14 void [0xc822901ec0 0xc822901f60 0xc822912020] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 15 void [0xc8229121e0 0xc822912280 0xc822912340] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 4 void [0xc822912500 0xc8229125a0 0xc822912660] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 5 void [0xc822912820 0xc8229128c0 0xc822912980] } +&{setUniformValueArray QOpenGLShaderProgram::setUniformValueArray commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 6 void [0xc822912b40 0xc822912be0 0xc822912ca0] } +&{shaders QOpenGLShaderProgram::shaders commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false QList [] } +&{uniformLocation QOpenGLShaderProgram::uniformLocation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 2 int [0xc822913000] } +&{uniformLocation QOpenGLShaderProgram::uniformLocation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false true 3 int [0xc8229131a0] } +&{uniformLocation QOpenGLShaderProgram::uniformLocation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h non plain false false int [0xc822913300] } +&{~QOpenGLShaderProgram QOpenGLShaderProgram::~QOpenGLShaderProgram commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglshaderprogram.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLTexture.txt b/internal/binding/dump/QtGui/QOpenGLTexture.txt new file mode 100755 index 00000000..8836b550 --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLTexture.txt @@ -0,0 +1,112 @@ +######################################## FUNCTIONS ######################################## +&{setComparisonFunction QOpenGLTexture::setComparisonFunction commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.cpp non plain false false void [0xc8229136c0] } +&{~QOpenGLTexture QOpenGLTexture::~QOpenGLTexture commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.cpp non destructor false false [] } +&{QOpenGLTexture QOpenGLTexture::QOpenGLTexture commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non constructor false false [0xc822448fa0] } +&{QOpenGLTexture QOpenGLTexture::QOpenGLTexture commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non constructor false true 2 [0xc822449140 0xc8224491c0] } +&{allocateStorage QOpenGLTexture::allocateStorage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [] } +&{allocateStorage QOpenGLTexture::allocateStorage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false true 2 void [0xc822449460 0xc8224494e0] } +&{bind QOpenGLTexture::bind commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [] } +&{bind QOpenGLTexture::bind commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false true 2 void [0xc822449780 0xc822449820] } +&{borderColor QOpenGLTexture::borderColor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false QColor [] } +&{borderColor QOpenGLTexture::borderColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false true 2 void [0xc822449ae0] } +&{borderColor QOpenGLTexture::borderColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false true 3 void [0xc822449c80] } +&{borderColor QOpenGLTexture::borderColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false true 4 void [0xc822449e20] } +&{boundTextureId QOpenGLTexture::boundTextureId commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain true false GLuint [0xc822449fc0] } +&{boundTextureId QOpenGLTexture::boundTextureId commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain true true 2 GLuint [0xc822458160 0xc8224581e0] } +&{comparisonFunction QOpenGLTexture::comparisonFunction commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false ComparisonFunction [] } +&{comparisonMode QOpenGLTexture::comparisonMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false ComparisonMode [] } +&{create QOpenGLTexture::create commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false bool [] } +&{createTextureView QOpenGLTexture::createTextureView commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false QOpenGLTexture * [0xc822458660 0xc8224586e0 0xc822458780 0xc822458860 0xc822458940 0xc8224589c0] } +&{depth QOpenGLTexture::depth commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false int [] } +&{depthStencilMode QOpenGLTexture::depthStencilMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false DepthStencilMode [] } +&{destroy QOpenGLTexture::destroy commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [] } +&{faces QOpenGLTexture::faces commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false int [] } +&{format QOpenGLTexture::format commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false TextureFormat [] } +&{generateMipMaps QOpenGLTexture::generateMipMaps commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [] } +&{generateMipMaps QOpenGLTexture::generateMipMaps commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false true 2 void [0xc8224590e0 0xc822459160] } +&{hasFeature QOpenGLTexture::hasFeature commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain true false bool [0xc822459340] } +&{height QOpenGLTexture::height commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false int [] } +&{isAutoMipMapGenerationEnabled QOpenGLTexture::isAutoMipMapGenerationEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false bool [] } +&{isBound QOpenGLTexture::isBound commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false true 2 bool [0xc8224596e0] } +&{isBound QOpenGLTexture::isBound commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false bool [] } +&{isCreated QOpenGLTexture::isCreated commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false bool [] } +&{isFixedSamplePositions QOpenGLTexture::isFixedSamplePositions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false bool [] } +&{isStorageAllocated QOpenGLTexture::isStorageAllocated commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false bool [] } +&{isTextureView QOpenGLTexture::isTextureView commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false bool [] } +&{layers QOpenGLTexture::layers commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false int [] } +&{levelOfDetailRange QOpenGLTexture::levelOfDetailRange commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false QPair [] } +&{levelofDetailBias QOpenGLTexture::levelofDetailBias commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false float [] } +&{magnificationFilter QOpenGLTexture::magnificationFilter commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false Filter [] } +&{maximumAnisotropy QOpenGLTexture::maximumAnisotropy commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false float [] } +&{maximumLevelOfDetail QOpenGLTexture::maximumLevelOfDetail commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false float [] } +&{maximumMipLevels QOpenGLTexture::maximumMipLevels commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false int [] } +&{minMagFilters QOpenGLTexture::minMagFilters commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false QPair [] } +&{minificationFilter QOpenGLTexture::minificationFilter commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false Filter [] } +&{minimumLevelOfDetail QOpenGLTexture::minimumLevelOfDetail commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false float [] } +&{mipBaseLevel QOpenGLTexture::mipBaseLevel commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false int [] } +&{mipLevelRange QOpenGLTexture::mipLevelRange commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false QPair [] } +&{mipLevels QOpenGLTexture::mipLevels commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false int [] } +&{mipMaxLevel QOpenGLTexture::mipMaxLevel commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false int [] } +&{release QOpenGLTexture::release commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [] } +&{release QOpenGLTexture::release commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false true 2 void [0xc822470ac0 0xc822470b60] } +&{samples QOpenGLTexture::samples commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false int [] } +&{setAutoMipMapGenerationEnabled QOpenGLTexture::setAutoMipMapGenerationEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [0xc822470e00] } +&{setBorderColor QOpenGLTexture::setBorderColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [0xc822470fa0] } +&{setBorderColor QOpenGLTexture::setBorderColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false true 2 void [0xc822471140 0xc8224711c0 0xc822471240 0xc8224712c0] } +&{setBorderColor QOpenGLTexture::setBorderColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false true 3 void [0xc822471460 0xc8224714e0 0xc822471560 0xc8224715e0] } +&{setBorderColor QOpenGLTexture::setBorderColor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false true 4 void [0xc822471780 0xc822471800 0xc822471880 0xc822471900] } +&{setComparisonMode QOpenGLTexture::setComparisonMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [0xc822471aa0] } +&{setCompressedData QOpenGLTexture::setCompressedData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false true 4 void [0xc822471c40 0xc822471cc0 0xc822471d40] } +&{setCompressedData QOpenGLTexture::setCompressedData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false true 3 void [0xc822488180 0xc822488200 0xc822488280 0xc822488300] } +&{setCompressedData QOpenGLTexture::setCompressedData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [0xc8224887c0 0xc822488840 0xc8224888c0 0xc822488940 0xc8224889e0 0xc822488a60] } +&{setCompressedData QOpenGLTexture::setCompressedData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false true 2 void [0xc822489040 0xc8224890c0 0xc822489140 0xc8224891c0 0xc822489260] } +&{setData QOpenGLTexture::setData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false true 4 void [0xc822489800 0xc822489880 0xc822489900 0xc822489980] } +&{setData QOpenGLTexture::setData commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false true 9 void [0xc822489e60 0xc822489ee0] } +&{setData QOpenGLTexture::setData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false true 3 void [0xc82249a0a0 0xc82249a120 0xc82249a1a0 0xc82249a220 0xc82249a2c0] } +&{setData QOpenGLTexture::setData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [0xc82249a840 0xc82249a8c0 0xc82249a940 0xc82249a9c0 0xc82249aa60 0xc82249aae0 0xc82249ab60] } +&{setData QOpenGLTexture::setData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false true 2 void [0xc82249b1e0 0xc82249b260 0xc82249b2e0 0xc82249b360 0xc82249b400 0xc82249b480] } +&{setDepthStencilMode QOpenGLTexture::setDepthStencilMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [0xc82249ba60] } +&{setFixedSamplePositions QOpenGLTexture::setFixedSamplePositions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [0xc82249bc00] } +&{setFormat QOpenGLTexture::setFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [0xc82249bdc0] } +&{setLayers QOpenGLTexture::setLayers commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [0xc82249bfa0] } +&{setLevelOfDetailRange QOpenGLTexture::setLevelOfDetailRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [0xc8224aa140 0xc8224aa1c0] } +&{setLevelofDetailBias QOpenGLTexture::setLevelofDetailBias commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [0xc8224aa360] } +&{setMagnificationFilter QOpenGLTexture::setMagnificationFilter commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [0xc8224aa500] } +&{setMaximumAnisotropy QOpenGLTexture::setMaximumAnisotropy commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [0xc8224aa6a0] } +&{setMaximumLevelOfDetail QOpenGLTexture::setMaximumLevelOfDetail commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [0xc8224aa840] } +&{setMinMagFilters QOpenGLTexture::setMinMagFilters commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [0xc8224aaa00 0xc8224aaae0] } +&{setMinificationFilter QOpenGLTexture::setMinificationFilter commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [0xc8224aacc0] } +&{setMinimumLevelOfDetail QOpenGLTexture::setMinimumLevelOfDetail commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [0xc8224aae60] } +&{setMipBaseLevel QOpenGLTexture::setMipBaseLevel commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [0xc8224ab000] } +&{setMipLevelRange QOpenGLTexture::setMipLevelRange commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [0xc8224ab1a0 0xc8224ab220] } +&{setMipLevels QOpenGLTexture::setMipLevels commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [0xc8224ab400] } +&{setMipMaxLevel QOpenGLTexture::setMipMaxLevel commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [0xc8224ab5a0] } +&{setSamples QOpenGLTexture::setSamples commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [0xc8224ab780] } +&{setSize QOpenGLTexture::setSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [0xc8224ab940 0xc8224ab9c0 0xc8224aba40] } +&{setSwizzleMask QOpenGLTexture::setSwizzleMask commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [0xc8224abbe0 0xc8224abc60] } +&{setSwizzleMask QOpenGLTexture::setSwizzleMask commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false true 2 void [0xc8224abe00 0xc8224abe80 0xc8224abf00 0xc8224abf80] } +&{setWrapMode QOpenGLTexture::setWrapMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false true 2 void [0xc8224bc140 0xc8224bc200] } +&{setWrapMode QOpenGLTexture::setWrapMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false void [0xc8224bc3e0] } +&{swizzleMask QOpenGLTexture::swizzleMask commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false SwizzleValue [0xc8224bc5a0] } +&{target QOpenGLTexture::target commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false Target [] } +&{textureId QOpenGLTexture::textureId commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false GLuint [] } +&{width QOpenGLTexture::width commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false int [] } +&{wrapMode QOpenGLTexture::wrapMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltexture.h non plain false false WrapMode [0xc8224bca80] } +######################################## ENUMS ######################################## +&{BindingTarget QOpenGLTexture::BindingTarget commendable public [0xc8229139e0 0xc822913a80 0xc822913b40 0xc822913be0 0xc822913cc0 0xc822913d60 0xc822913e40 0xc822913f20 0xc822924020 0xc822924100 0xc8229241e0]} +&{ComparisonFunction QOpenGLTexture::ComparisonFunction commendable public [0xc8229243c0 0xc822924460 0xc822924520 0xc8229245a0 0xc822924640 0xc8229246c0 0xc822924740 0xc8229247c0]} +&{ComparisonMode QOpenGLTexture::ComparisonMode commendable public [0xc822924980 0xc822924a40]} +&{CoordinateDirection QOpenGLTexture::CoordinateDirection commendable public [0xc822924be0 0xc822924c60 0xc822924ce0]} +&{CubeMapFace QOpenGLTexture::CubeMapFace commendable public [0xc822924ea0 0xc822924f20 0xc822924fa0 0xc822925020 0xc8229250c0 0xc822925140]} +&{DepthStencilMode QOpenGLTexture::DepthStencilMode commendable public [0xc8229252e0 0xc822925360]} +&{Feature QOpenGLTexture::Feature commendable public QOpenGLTexture::Features [0xc822925580 0xc822925620 0xc8229256e0 0xc822925760 0xc822925800 0xc8229258a0 0xc822925960 0xc822925a00 0xc822925ae0 0xc822925b60 0xc822925c00 0xc822925cc0 0xc822925d60 0xc822925e20 0xc822925ec0 0xc822925fa0]} +&{Filter QOpenGLTexture::Filter commendable public [0xc82292c1a0 0xc82292c220 0xc82292c2c0 0xc82292c3a0 0xc82292c4a0 0xc82292c580]} +&{MipMapGeneration QOpenGLTexture::MipMapGeneration commendable public [0xc82292c780 0xc82292c820]} +&{PixelFormat QOpenGLTexture::PixelFormat commendable public [0xc82292ca00 0xc82292ca80 0xc82292cb00 0xc82292cb80 0xc82292cc20 0xc82292cca0 0xc82292cd20 0xc82292cda0 0xc82292ce40 0xc82292cec0 0xc82292cf40 0xc82292cfc0 0xc82292d040 0xc82292d0c0 0xc82292d140 0xc82292d1c0 0xc82292d260 0xc82292d2e0 0xc82292d360]} +&{PixelType QOpenGLTexture::PixelType commendable public [0xc82292d500 0xc82292d580 0xc82292d600 0xc82292d680 0xc82292d720 0xc82292d7a0 0xc82292d820 0xc82292d8a0 0xc82292d940 0xc82292d9c0 0xc82292da40 0xc82292dac0 0xc82292db40 0xc82292dbc0 0xc82292dc40 0xc82292dce0 0xc82292ddc0 0xc82292de60 0xc82292df20 0xc82292dfa0 0xc822938020 0xc8229380a0 0xc822938120 0xc8229381c0 0xc822938280 0xc822938320]} +&{SwizzleComponent QOpenGLTexture::SwizzleComponent commendable public [0xc822938500 0xc822938580 0xc822938600 0xc822938680]} +&{SwizzleValue QOpenGLTexture::SwizzleValue commendable public [0xc822938820 0xc8229388a0 0xc822938920 0xc8229389a0 0xc822938a40 0xc822938ac0]} +&{Target QOpenGLTexture::Target commendable public [0xc822938c80 0xc822938d00 0xc822938d80 0xc822938e00 0xc822938ea0 0xc822938f20 0xc822938fc0 0xc8229390a0 0xc8229391a0 0xc822939260 0xc8229392e0]} +&{TextureFormat QOpenGLTexture::TextureFormat commendable public [0xc822939480 0xc822939500 0xc822939580 0xc822939600 0xc8229396a0 0xc822939720 0xc8229397a0 0xc822939820 0xc8229398c0 0xc822939940 0xc8229399c0 0xc822939a40 0xc822939ac0 0xc822939b40 0xc822939bc0 0xc822939c40 0xc822939ce0 0xc822939d60 0xc822939de0 0xc822939e60 0xc822939ee0 0xc822939f60 0xc822939fe0 0xc822942060 0xc8229420e0 0xc822942160 0xc8229421e0 0xc822942260 0xc8229422e0 0xc822942360 0xc8229423e0 0xc822942460 0xc822942500 0xc822942580 0xc822942600 0xc822942680 0xc822942700 0xc822942780 0xc822942800 0xc822942880 0xc822942900 0xc822942980 0xc822942a00 0xc822942a80 0xc822942b00 0xc822942b80 0xc822942c00 0xc822942c80 0xc822942d00 0xc822942d80 0xc822942e00 0xc822942e80 0xc822942f00 0xc822942f80 0xc822943000 0xc822943080 0xc822943100 0xc822943180 0xc822943200 0xc822943280 0xc822943300 0xc822943380 0xc822943400 0xc822943480 0xc822943520 0xc8229435a0 0xc822943620 0xc8229436a0 0xc822943720 0xc8229437a0 0xc822943820 0xc8229438c0 0xc8229439a0 0xc822943a60 0xc822943ae0 0xc822943b60 0xc822943be0 0xc822943c60 0xc822943ce0 0xc822943d60 0xc822943e00 0xc822943ee0 0xc822943fa0 0xc822448040 0xc822448100 0xc822448180 0xc822448200 0xc822448280 0xc822448300 0xc822448380 0xc822448400 0xc822448480 0xc822448500 0xc822448580 0xc822448600 0xc822448680 0xc822448720]} +&{TextureUnitReset QOpenGLTexture::TextureUnitReset commendable public [0xc822448900 0xc8224489a0]} +&{WrapMode QOpenGLTexture::WrapMode commendable public [0xc822448ba0 0xc822448c20 0xc822448ca0 0xc822448d20]} diff --git a/internal/binding/dump/QtGui/QOpenGLTimeMonitor.txt b/internal/binding/dump/QtGui/QOpenGLTimeMonitor.txt new file mode 100755 index 00000000..209c280c --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLTimeMonitor.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLTimeMonitor QOpenGLTimeMonitor::QOpenGLTimeMonitor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltimerquery.h non constructor false false [0xc8224bcde0] } +&{create QOpenGLTimeMonitor::create commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltimerquery.h non plain false false bool [] } +&{destroy QOpenGLTimeMonitor::destroy commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltimerquery.h non plain false false void [] } +&{isCreated QOpenGLTimeMonitor::isCreated commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltimerquery.h non plain false false bool [] } +&{isResultAvailable QOpenGLTimeMonitor::isResultAvailable commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltimerquery.h non plain false false bool [] } +&{objectIds QOpenGLTimeMonitor::objectIds commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltimerquery.h non plain false false QVector [] } +&{recordSample QOpenGLTimeMonitor::recordSample commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltimerquery.h non plain false false int [] } +&{reset QOpenGLTimeMonitor::reset commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltimerquery.h non plain false false void [] } +&{sampleCount QOpenGLTimeMonitor::sampleCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltimerquery.h non plain false false int [] } +&{setSampleCount QOpenGLTimeMonitor::setSampleCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltimerquery.h non plain false false void [0xc8224bd760] } +&{waitForIntervals QOpenGLTimeMonitor::waitForIntervals commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltimerquery.h non plain false false QVector [] } +&{waitForSamples QOpenGLTimeMonitor::waitForSamples commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltimerquery.h non plain false false QVector [] } +&{~QOpenGLTimeMonitor QOpenGLTimeMonitor::~QOpenGLTimeMonitor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltimerquery.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLTimerQuery.txt b/internal/binding/dump/QtGui/QOpenGLTimerQuery.txt new file mode 100755 index 00000000..9e9cd889 --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLTimerQuery.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLTimerQuery QOpenGLTimerQuery::QOpenGLTimerQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltimerquery.h non constructor false false [0xc8224bdd40] } +&{begin QOpenGLTimerQuery::begin commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltimerquery.h non plain false false void [] } +&{create QOpenGLTimerQuery::create commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltimerquery.h non plain false false bool [] } +&{destroy QOpenGLTimerQuery::destroy commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltimerquery.h non plain false false void [] } +&{end QOpenGLTimerQuery::end commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltimerquery.h non plain false false void [] } +&{isCreated QOpenGLTimerQuery::isCreated commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltimerquery.h non plain false false bool [] } +&{isResultAvailable QOpenGLTimerQuery::isResultAvailable commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltimerquery.h non plain false false bool [] } +&{objectId QOpenGLTimerQuery::objectId commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltimerquery.h non plain false false GLuint [] } +&{recordTimestamp QOpenGLTimerQuery::recordTimestamp commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltimerquery.h non plain false false void [] } +&{waitForResult QOpenGLTimerQuery::waitForResult commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltimerquery.h non plain false false GLuint64 [] } +&{waitForTimestamp QOpenGLTimerQuery::waitForTimestamp commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltimerquery.h non plain false false GLuint64 [] } +&{~QOpenGLTimerQuery QOpenGLTimerQuery::~QOpenGLTimerQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopengltimerquery.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLVersionProfile.txt b/internal/binding/dump/QtGui/QOpenGLVersionProfile.txt new file mode 100755 index 00000000..fa8959e3 --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLVersionProfile.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLVersionProfile QOpenGLVersionProfile::QOpenGLVersionProfile commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non constructor false false [] } +&{QOpenGLVersionProfile QOpenGLVersionProfile::QOpenGLVersionProfile commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non constructor false true 3 [0xc8200a5ae0] } +&{QOpenGLVersionProfile QOpenGLVersionProfile::QOpenGLVersionProfile commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non constructor false true 2 [0xc8200a5ec0] } +&{hasProfiles QOpenGLVersionProfile::hasProfiles commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false bool [] } +&{isLegacyVersion QOpenGLVersionProfile::isLegacyVersion commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false bool [] } +&{isValid QOpenGLVersionProfile::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false bool [] } +&{operator= QOpenGLVersionProfile::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false QOpenGLVersionProfile & [0xc8207a87a0] } +&{profile QOpenGLVersionProfile::profile commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false QSurfaceFormat::OpenGLContextProfile [] } +&{setProfile QOpenGLVersionProfile::setProfile commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false void [0xc8207a8c80] } +&{setVersion QOpenGLVersionProfile::setVersion commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false void [0xc8207a8ec0 0xc8207a8fa0] } +&{version QOpenGLVersionProfile::version commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non plain false false QPair [] } +&{~QOpenGLVersionProfile QOpenGLVersionProfile::~QOpenGLVersionProfile commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglcontext.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLVertexArrayObject.txt b/internal/binding/dump/QtGui/QOpenGLVertexArrayObject.txt new file mode 100755 index 00000000..e3d455d6 --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLVertexArrayObject.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLVertexArrayObject QOpenGLVertexArrayObject::QOpenGLVertexArrayObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglvertexarrayobject.h non constructor false false [0xc8224d1660] } +&{bind QOpenGLVertexArrayObject::bind commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglvertexarrayobject.h non plain false false void [] } +&{create QOpenGLVertexArrayObject::create commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglvertexarrayobject.h non plain false false bool [] } +&{destroy QOpenGLVertexArrayObject::destroy commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglvertexarrayobject.h non plain false false void [] } +&{isCreated QOpenGLVertexArrayObject::isCreated commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglvertexarrayobject.h non plain false false bool [] } +&{objectId QOpenGLVertexArrayObject::objectId commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglvertexarrayobject.h non plain false false GLuint [] } +&{release QOpenGLVertexArrayObject::release commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglvertexarrayobject.h non plain false false void [] } +&{~QOpenGLVertexArrayObject QOpenGLVertexArrayObject::~QOpenGLVertexArrayObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/opengl/qopenglvertexarrayobject.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QOpenGLWindow.txt b/internal/binding/dump/QtGui/QOpenGLWindow.txt new file mode 100755 index 00000000..843ee555 --- /dev/null +++ b/internal/binding/dump/QtGui/QOpenGLWindow.txt @@ -0,0 +1,22 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLWindow QOpenGLWindow::QOpenGLWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglwindow.h non constructor false true 2 [0xc8207a9d80 0xc8207a9e60 0xc8207a9ee0] } +&{QOpenGLWindow QOpenGLWindow::QOpenGLWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglwindow.h non constructor false false [0xc8207bc140 0xc8207bc1e0] } +&{context QOpenGLWindow::context commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglwindow.h non plain false false QOpenGLContext * [] } +&{defaultFramebufferObject QOpenGLWindow::defaultFramebufferObject commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglwindow.h non plain false false GLuint [] } +&{doneCurrent QOpenGLWindow::doneCurrent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglwindow.h non plain false false void [] } +&{frameSwapped QOpenGLWindow::frameSwapped commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglwindow.h non signal false false void [] } +&{grabFramebuffer QOpenGLWindow::grabFramebuffer commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglwindow.h non plain false false QImage [] } +&{initializeGL QOpenGLWindow::initializeGL commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglwindow.h impure plain false false void [] } +&{isValid QOpenGLWindow::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglwindow.h non plain false false bool [] } +&{makeCurrent QOpenGLWindow::makeCurrent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglwindow.h non plain false false void [] } +&{paintEvent QOpenGLWindow::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglwindow.h impure plain false false void [0xc8207bd880] } +&{paintGL QOpenGLWindow::paintGL commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglwindow.h impure plain false false void [] } +&{paintOverGL QOpenGLWindow::paintOverGL commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglwindow.h impure plain false false void [] } +&{paintUnderGL QOpenGLWindow::paintUnderGL commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglwindow.h impure plain false false void [] } +&{resizeEvent QOpenGLWindow::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglwindow.h impure plain false false void [0xc820b0e100] } +&{resizeGL QOpenGLWindow::resizeGL commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglwindow.h impure plain false false void [0xc820b0e440 0xc820b0e560] } +&{shareContext QOpenGLWindow::shareContext commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglwindow.h non plain false false QOpenGLContext * [] } +&{updateBehavior QOpenGLWindow::updateBehavior commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglwindow.h non plain false false UpdateBehavior [] } +&{~QOpenGLWindow QOpenGLWindow::~QOpenGLWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qopenglwindow.h non destructor false false [] } +######################################## ENUMS ######################################## +&{UpdateBehavior QOpenGLWindow::UpdateBehavior commendable public [0xc8207a9840 0xc8207a98e0 0xc8207a9a00]} diff --git a/internal/binding/dump/QtGui/QPageLayout.txt b/internal/binding/dump/QtGui/QPageLayout.txt new file mode 100755 index 00000000..ad009fde --- /dev/null +++ b/internal/binding/dump/QtGui/QPageLayout.txt @@ -0,0 +1,42 @@ +######################################## FUNCTIONS ######################################## +&{QPageLayout QPageLayout::QPageLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non constructor false false [] } +&{QPageLayout QPageLayout::QPageLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non constructor false true 3 [0xc822bb8060] } +&{QPageLayout QPageLayout::QPageLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non constructor false true 2 [0xc822bb8280 0xc822bb8340 0xc822bb83e0 0xc822bb84a0 0xc822bb8580] } +&{fullRect QPageLayout::fullRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false QRectF [] } +&{fullRect QPageLayout::fullRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false true 2 QRectF [0xc822bb88a0] } +&{fullRectPixels QPageLayout::fullRectPixels commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false QRect [0xc822bb8a60] } +&{fullRectPoints QPageLayout::fullRectPoints commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false QRect [] } +&{isEquivalentTo QPageLayout::isEquivalentTo commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false bool [0xc822bb8d40] } +&{isValid QPageLayout::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false bool [] } +&{margins QPageLayout::margins commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false QMarginsF [] } +&{margins QPageLayout::margins commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false true 2 QMarginsF [0xc822bb9160] } +&{marginsPixels QPageLayout::marginsPixels commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false QMargins [0xc822bb9320] } +&{marginsPoints QPageLayout::marginsPoints commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false QMargins [] } +&{maximumMargins QPageLayout::maximumMargins commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false QMarginsF [] } +&{minimumMargins QPageLayout::minimumMargins commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false QMarginsF [] } +&{mode QPageLayout::mode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false Mode [] } +&{operator= QPageLayout::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false true 2 QPageLayout & [0xc822bb9900] } +&{operator= QPageLayout::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false QPageLayout & [0xc822bb9ae0] } +&{orientation QPageLayout::orientation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false Orientation [] } +&{pageSize QPageLayout::pageSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false QPageSize [] } +&{paintRect QPageLayout::paintRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false QRectF [] } +&{paintRect QPageLayout::paintRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false true 2 QRectF [0xc822bb9fe0] } +&{paintRectPixels QPageLayout::paintRectPixels commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false QRect [0xc822bc81a0] } +&{paintRectPoints QPageLayout::paintRectPoints commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false QRect [] } +&{setBottomMargin QPageLayout::setBottomMargin commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false bool [0xc822bc8460] } +&{setLeftMargin QPageLayout::setLeftMargin commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false bool [0xc822bc8620] } +&{setMargins QPageLayout::setMargins commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false bool [0xc822bc8800] } +&{setMinimumMargins QPageLayout::setMinimumMargins commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false void [0xc822bc8a60] } +&{setMode QPageLayout::setMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false void [0xc822bc8c80] } +&{setOrientation QPageLayout::setOrientation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false void [0xc822bc8e40] } +&{setPageSize QPageLayout::setPageSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false void [0xc822bc9020 0xc822bc9120] } +&{setRightMargin QPageLayout::setRightMargin commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false bool [0xc822bc9320] } +&{setTopMargin QPageLayout::setTopMargin commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false bool [0xc822bc9500] } +&{setUnits QPageLayout::setUnits commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false void [0xc822bc96e0] } +&{swap QPageLayout::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false void [0xc822bc98c0] } +&{units QPageLayout::units commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non plain false false Unit [] } +&{~QPageLayout QPageLayout::~QPageLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagelayout.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Mode QPageLayout::Mode commendable public [0xc822095660 0xc8220956e0]} +&{Orientation QPageLayout::Orientation commendable public [0xc822095880 0xc822095900]} +&{Unit QPageLayout::Unit commendable public [0xc822095ac0 0xc822095b40 0xc822095bc0 0xc822095c40 0xc822095ce0 0xc822095d60]} diff --git a/internal/binding/dump/QtGui/QPageSize.txt b/internal/binding/dump/QtGui/QPageSize.txt new file mode 100755 index 00000000..e2b47dfc --- /dev/null +++ b/internal/binding/dump/QtGui/QPageSize.txt @@ -0,0 +1,39 @@ +######################################## FUNCTIONS ######################################## +&{QPageSize QPageSize::QPageSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non constructor false false [] } +&{QPageSize QPageSize::QPageSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non constructor false true 2 [0xc822beca60] } +&{QPageSize QPageSize::QPageSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non constructor false true 5 [0xc822becc40] } +&{QPageSize QPageSize::QPageSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non constructor false true 3 [0xc822bece40 0xc822becec0 0xc822becf40] } +&{QPageSize QPageSize::QPageSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non constructor false true 4 [0xc822bed120 0xc822bed1a0 0xc822bed220 0xc822bed2a0] } +&{definitionSize QPageSize::definitionSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain true true 2 QSizeF [0xc822bedc40] } +&{definitionSize QPageSize::definitionSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain false false QSizeF [] } +&{definitionUnits QPageSize::definitionUnits commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain true true 2 Unit [0xc822bedf00] } +&{definitionUnits QPageSize::definitionUnits commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain false false Unit [] } +&{id QPageSize::id commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain true true 2 PageSizeId [0xc822c00160 0xc822c001e0] } +&{id QPageSize::id commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain true true 3 PageSizeId [0xc822c00340 0xc822c003c0 0xc822c00440] } +&{id QPageSize::id commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain true true 4 PageSizeId [0xc822c005c0] } +&{id QPageSize::id commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain false false PageSizeId [] } +&{isEquivalentTo QPageSize::isEquivalentTo commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain false false bool [0xc822c00860] } +&{isValid QPageSize::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain false false bool [] } +&{key QPageSize::key commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain true true 2 QString [0xc822c00b00] } +&{key QPageSize::key commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain false false QString [] } +&{name QPageSize::name commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain true true 2 QString [0xc822c00d00] } +&{name QPageSize::name commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain false false QString [] } +&{operator= QPageSize::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain false true 2 QPageSize & [0xc822c00f60] } +&{operator= QPageSize::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain false false QPageSize & [0xc822c01140] } +&{rect QPageSize::rect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain false false QRectF [0xc822c01300] } +&{rectPixels QPageSize::rectPixels commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain false false QRect [0xc822c014c0] } +&{rectPoints QPageSize::rectPoints commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain false false QRect [] } +&{size QPageSize::size commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain true true 2 QSizeF [0xc822c01720 0xc822c017a0] } +&{size QPageSize::size commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain false false QSizeF [0xc822c01920] } +&{sizePixels QPageSize::sizePixels commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain true true 2 QSize [0xc822c01ae0 0xc822c01b60] } +&{sizePixels QPageSize::sizePixels commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain false false QSize [0xc822c01d20] } +&{sizePoints QPageSize::sizePoints commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain true true 2 QSize [0xc822c01ee0] } +&{sizePoints QPageSize::sizePoints commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain false false QSize [] } +&{swap QPageSize::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain false false void [0xc822c16180] } +&{windowsId QPageSize::windowsId commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain true true 2 int [0xc822c16340] } +&{windowsId QPageSize::windowsId commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non plain false false int [] } +&{~QPageSize QPageSize::~QPageSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagesize.h non destructor false false [] } +######################################## ENUMS ######################################## +&{PageSizeId QPageSize::PageSizeId commendable public [0xc822bd8000 0xc822bd8080 0xc822bd8100 0xc822bd8180 0xc822bd8220 0xc822bd82a0 0xc822bd8320 0xc822bd83a0 0xc822bd8440 0xc822bd84c0 0xc822bd8540 0xc822bd85c0 0xc822bd8640 0xc822bd86c0 0xc822bd8740 0xc822bd87c0 0xc822bd8860 0xc822bd88e0 0xc822bd8960 0xc822bd89e0 0xc822bd8a60 0xc822bd8ae0 0xc822bd8b60 0xc822bd8be0 0xc822bd8c60 0xc822bd8ce0 0xc822bd8d60 0xc822bd8de0 0xc822bd8e60 0xc822bd8ee0 0xc822bd8f60 0xc822bd8fe0 0xc822bd9080 0xc822bd9100 0xc822bd9180 0xc822bd9200 0xc822bd9280 0xc822bd9300 0xc822bd9380 0xc822bd9400 0xc822bd9480 0xc822bd9500 0xc822bd9580 0xc822bd9600 0xc822bd9680 0xc822bd9700 0xc822bd9780 0xc822bd9800 0xc822bd9880 0xc822bd9900 0xc822bd9980 0xc822bd9a00 0xc822bd9a80 0xc822bd9b00 0xc822bd9b80 0xc822bd9c00 0xc822bd9c80 0xc822bd9d00 0xc822bd9d80 0xc822bd9e00 0xc822bd9e80 0xc822bd9f00 0xc822bd9f80 0xc822be4000 0xc822be40a0 0xc822be4120 0xc822be41a0 0xc822be4220 0xc822be42a0 0xc822be4320 0xc822be43a0 0xc822be4440 0xc822be4500 0xc822be4580 0xc822be4600 0xc822be4680 0xc822be4700 0xc822be4780 0xc822be4800 0xc822be4880 0xc822be4900 0xc822be4980 0xc822be4a00 0xc822be4a80 0xc822be4b20 0xc822be4be0 0xc822be4c60 0xc822be4ce0 0xc822be4d60 0xc822be4de0 0xc822be4e60 0xc822be4ee0 0xc822be4f60 0xc822be4fe0 0xc822be5060 0xc822be50e0 0xc822be5160 0xc822be51e0 0xc822be5260 0xc822be52e0 0xc822be5360 0xc822be53e0 0xc822be5460 0xc822be54e0 0xc822be5560 0xc822be55e0 0xc822be5660 0xc822be56e0 0xc822be5760 0xc822be57e0 0xc822be5860 0xc822be58e0 0xc822be5960 0xc822be59e0 0xc822be5a60 0xc822be5ae0 0xc822be5b60 0xc822be5be0 0xc822be5c60 0xc822be5ce0 0xc822be5d60 0xc822be5de0 0xc822be5e60 0xc822be5ee0 0xc822be5f60 0xc822be5fe0 0xc822bec060]} +&{SizeMatchPolicy QPageSize::SizeMatchPolicy commendable public [0xc822bec200 0xc822bec2a0 0xc822bec360]} +&{Unit QPageSize::Unit commendable public [0xc822bec4c0 0xc822bec540 0xc822bec5c0 0xc822bec640 0xc822bec6e0 0xc822bec760]} diff --git a/internal/binding/dump/QtGui/QPagedPaintDevice.txt b/internal/binding/dump/QtGui/QPagedPaintDevice.txt new file mode 100755 index 00000000..eb2d77c1 --- /dev/null +++ b/internal/binding/dump/QtGui/QPagedPaintDevice.txt @@ -0,0 +1,18 @@ +######################################## FUNCTIONS ######################################## +&{QPagedPaintDevice QPagedPaintDevice::QPagedPaintDevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagedpaintdevice.h non constructor false false [] } +&{margins QPagedPaintDevice::margins commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagedpaintdevice.h non plain false false Margins [] } +&{newPage QPagedPaintDevice::newPage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagedpaintdevice.h pure plain false false bool [] } +&{pageLayout QPagedPaintDevice::pageLayout commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagedpaintdevice.h non plain false false QPageLayout [] } +&{pageSize QPagedPaintDevice::pageSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagedpaintdevice.h non plain false false PageSize [] } +&{pageSizeMM QPagedPaintDevice::pageSizeMM commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagedpaintdevice.h non plain false false QSizeF [] } +&{setMargins QPagedPaintDevice::setMargins commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagedpaintdevice.h impure plain false false void [0xc822094380] } +&{setPageLayout QPagedPaintDevice::setPageLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagedpaintdevice.h non plain false false bool [0xc822094560] } +&{setPageMargins QPagedPaintDevice::setPageMargins commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagedpaintdevice.h non plain false false bool [0xc822094720] } +&{setPageMargins QPagedPaintDevice::setPageMargins commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagedpaintdevice.h non plain false true 2 bool [0xc8220948e0 0xc8220949c0] } +&{setPageOrientation QPagedPaintDevice::setPageOrientation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagedpaintdevice.h non plain false false bool [0xc822094be0] } +&{setPageSize QPagedPaintDevice::setPageSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagedpaintdevice.h non plain false false bool [0xc822094e00] } +&{setPageSize QPagedPaintDevice::setPageSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagedpaintdevice.h impure plain false true 2 void [0xc822095040] } +&{setPageSizeMM QPagedPaintDevice::setPageSizeMM commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagedpaintdevice.h impure plain false false void [0xc822095200] } +&{~QPagedPaintDevice QPagedPaintDevice::~QPagedPaintDevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpagedpaintdevice.h non destructor false false [] } +######################################## ENUMS ######################################## +&{PageSize QPagedPaintDevice::PageSize commendable public [0xc8220695e0 0xc822069660 0xc8220696e0 0xc822069760 0xc822069800 0xc822069880 0xc822069900 0xc822069980 0xc822069a20 0xc822069aa0 0xc822069b20 0xc822069ba0 0xc822069c20 0xc822069ca0 0xc822069d20 0xc822069da0 0xc822069e40 0xc822069ec0 0xc822069f40 0xc822069fc0 0xc82207a040 0xc82207a0c0 0xc82207a140 0xc82207a1c0 0xc82207a240 0xc82207a2c0 0xc82207a340 0xc82207a3c0 0xc82207a440 0xc82207a4c0 0xc82207a540 0xc82207a5c0 0xc82207a660 0xc82207a6e0 0xc82207a760 0xc82207a7e0 0xc82207a860 0xc82207a8e0 0xc82207a960 0xc82207a9e0 0xc82207aa60 0xc82207aae0 0xc82207ab60 0xc82207abe0 0xc82207ac60 0xc82207ace0 0xc82207ad60 0xc82207ade0 0xc82207ae60 0xc82207aee0 0xc82207af60 0xc82207afe0 0xc82207b060 0xc82207b0e0 0xc82207b160 0xc82207b1e0 0xc82207b260 0xc82207b2e0 0xc82207b360 0xc82207b3e0 0xc82207b460 0xc82207b4e0 0xc82207b560 0xc82207b5e0 0xc82207b680 0xc82207b700 0xc82207b780 0xc82207b800 0xc82207b880 0xc82207b900 0xc82207b980 0xc82207ba20 0xc82207bae0 0xc82207bb60 0xc82207bbe0 0xc82207bc60 0xc82207bce0 0xc82207bd60 0xc82207bde0 0xc82207be60 0xc82207bee0 0xc82207bf60 0xc82207bfe0 0xc822084060 0xc822084100 0xc8220841c0 0xc822084240 0xc8220842c0 0xc822084340 0xc8220843c0 0xc822084440 0xc8220844c0 0xc822084540 0xc8220845c0 0xc822084640 0xc8220846c0 0xc822084740 0xc8220847c0 0xc822084840 0xc8220848c0 0xc822084940 0xc8220849c0 0xc822084a40 0xc822084ac0 0xc822084b40 0xc822084bc0 0xc822084c40 0xc822084cc0 0xc822084d40 0xc822084dc0 0xc822084e40 0xc822084ec0 0xc822084f40 0xc822084fc0 0xc822085040 0xc8220850c0 0xc822085140 0xc8220851c0 0xc822085240 0xc8220852c0 0xc822085340 0xc8220853c0 0xc822085440 0xc8220854c0 0xc822085540 0xc8220855c0 0xc822085640]} diff --git a/internal/binding/dump/QtGui/QPaintDevice.txt b/internal/binding/dump/QtGui/QPaintDevice.txt new file mode 100755 index 00000000..a87e4f0b --- /dev/null +++ b/internal/binding/dump/QtGui/QPaintDevice.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{QPaintDevice QPaintDevice::QPaintDevice commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintdevice.cpp non constructor false false [] } +&{metric QPaintDevice::metric commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintdevice.cpp impure plain false false int [0xc822c16be0] } +&{~QPaintDevice QPaintDevice::~QPaintDevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintdevice.cpp impure destructor false false [] } +&{colorCount QPaintDevice::colorCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintdevice.h non plain false false int [] } +&{depth QPaintDevice::depth commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintdevice.h non plain false false int [] } +&{devicePixelRatio QPaintDevice::devicePixelRatio commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintdevice.h non plain false false int [] } +&{height QPaintDevice::height commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintdevice.h non plain false false int [] } +&{heightMM QPaintDevice::heightMM commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintdevice.h non plain false false int [] } +&{logicalDpiX QPaintDevice::logicalDpiX commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintdevice.h non plain false false int [] } +&{logicalDpiY QPaintDevice::logicalDpiY commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintdevice.h non plain false false int [] } +&{paintEngine QPaintDevice::paintEngine commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintdevice.h pure plain false false QPaintEngine * [] } +&{paintingActive QPaintDevice::paintingActive commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintdevice.h non plain false false bool [] } +&{physicalDpiX QPaintDevice::physicalDpiX commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintdevice.h non plain false false int [] } +&{physicalDpiY QPaintDevice::physicalDpiY commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintdevice.h non plain false false int [] } +&{width QPaintDevice::width commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintdevice.h non plain false false int [] } +&{widthMM QPaintDevice::widthMM commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintdevice.h non plain false false int [] } +######################################## ENUMS ######################################## +&{PaintDeviceMetric QPaintDevice::PaintDeviceMetric commendable public [0xc822c16f20 0xc822c16fa0 0xc822c17020 0xc822c170a0 0xc822c17140 0xc822c171c0 0xc822c17240 0xc822c172c0 0xc822c17360 0xc822c173e0 0xc822c17480]} diff --git a/internal/binding/dump/QtGui/QPaintDeviceWindow.txt b/internal/binding/dump/QtGui/QPaintDeviceWindow.txt new file mode 100755 index 00000000..f4b5d4c3 --- /dev/null +++ b/internal/binding/dump/QtGui/QPaintDeviceWindow.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{paintEvent QPaintDeviceWindow::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpaintdevicewindow.h impure plain false false void [0xc820b0ffa0] } +&{update QPaintDeviceWindow::update commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpaintdevicewindow.h non slot false true 3 void [] } +&{update QPaintDeviceWindow::update commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpaintdevicewindow.h non plain false false void [0xc8207965c0] } +&{update QPaintDeviceWindow::update commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpaintdevicewindow.h non plain false true 2 void [0xc820796840] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QPaintEngine.txt b/internal/binding/dump/QtGui/QPaintEngine.txt new file mode 100755 index 00000000..578a50e8 --- /dev/null +++ b/internal/binding/dump/QtGui/QPaintEngine.txt @@ -0,0 +1,32 @@ +######################################## FUNCTIONS ######################################## +&{drawEllipse QPaintEngine::drawEllipse commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.cpp impure plain false false void [0xc822c26aa0] } +&{drawImage QPaintEngine::drawImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.cpp impure plain false false void [0xc822c26c60 0xc822c26ce0 0xc822c26d60 0xc822c26e00] } +&{drawPolygon QPaintEngine::drawPolygon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.cpp impure plain false false void [0xc822c27000 0xc822c27080 0xc822c27100] } +&{QPaintEngine QPaintEngine::QPaintEngine commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h non constructor false false [0xc822c3bc60] } +&{begin QPaintEngine::begin commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h pure plain false false bool [0xc822c3bf80] } +&{drawEllipse QPaintEngine::drawEllipse commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h impure plain false true 2 void [0xc822c46640] } +&{drawLines QPaintEngine::drawLines commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h impure plain false true 2 void [0xc822c46800 0xc822c46880] } +&{drawLines QPaintEngine::drawLines commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h impure plain false false void [0xc822c46a40 0xc822c46ac0] } +&{drawPath QPaintEngine::drawPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h impure plain false false void [0xc822c46ca0] } +&{drawPixmap QPaintEngine::drawPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h pure plain false false void [0xc822c46ea0 0xc822c46f20 0xc822c46fa0] } +&{drawPoints QPaintEngine::drawPoints commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h impure plain false true 2 void [0xc822c47160 0xc822c471e0] } +&{drawPoints QPaintEngine::drawPoints commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h impure plain false false void [0xc822c473a0 0xc822c47420] } +&{drawPolygon QPaintEngine::drawPolygon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h impure plain false true 2 void [0xc822c47600 0xc822c47680 0xc822c47700] } +&{drawRects QPaintEngine::drawRects commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h impure plain false true 2 void [0xc822c478c0 0xc822c47940] } +&{drawRects QPaintEngine::drawRects commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h impure plain false false void [0xc822c47b00 0xc822c47b80] } +&{drawTextItem QPaintEngine::drawTextItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h impure plain false false void [0xc822c47d40 0xc822c47de0] } +&{drawTiledPixmap QPaintEngine::drawTiledPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h impure plain false false void [0xc822c47fc0 0xc822c56040 0xc822c560c0] } +&{end QPaintEngine::end commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h pure plain false false bool [] } +&{hasFeature QPaintEngine::hasFeature commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h non plain false false bool [0xc822c56380] } +&{isActive QPaintEngine::isActive commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h non plain false false bool [] } +&{paintDevice QPaintEngine::paintDevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h non plain false false QPaintDevice * [] } +&{painter QPaintEngine::painter commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h non plain false false QPainter * [] } +&{setActive QPaintEngine::setActive commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h non plain false false void [0xc822c56980] } +&{type QPaintEngine::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h pure plain false false Type [] } +&{updateState QPaintEngine::updateState commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h pure plain false false void [0xc822c57d40] } +&{~QPaintEngine QPaintEngine::~QPaintEngine commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{DirtyFlag QPaintEngine::DirtyFlag commendable public QPaintEngine::DirtyFlags [0xc822c27440 0xc822c274c0 0xc822c27540 0xc822c275c0 0xc822c27660 0xc822c27700 0xc822c277c0 0xc822c27840 0xc822c278e0 0xc822c27960 0xc822c27a00 0xc822c27ac0 0xc822c27b40 0xc822c27bc0]} +&{PaintEngineFeature QPaintEngine::PaintEngineFeature commendable public QPaintEngine::PaintEngineFeatures [0xc822c27de0 0xc822c27ea0 0xc822c27f20 0xc822c27fa0 0xc822c3a060 0xc822c3a140 0xc822c3a220 0xc822c3a2e0 0xc822c3a380 0xc822c3a400 0xc822c3a480 0xc822c3a500 0xc822c3a580 0xc822c3a600 0xc822c3a6a0 0xc822c3a760 0xc822c3a820 0xc822c3a8e0 0xc822c3a980 0xc822c3aa40]} +&{PolygonDrawMode QPaintEngine::PolygonDrawMode commendable public [0xc822c3abe0 0xc822c3ac60 0xc822c3ace0 0xc822c3ad60]} +&{Type QPaintEngine::Type commendable public [0xc822c3af20 0xc822c3afa0 0xc822c3b020 0xc822c3b0a0 0xc822c3b140 0xc822c3b1c0 0xc822c3b240 0xc822c3b2c0 0xc822c3b360 0xc822c3b3e0 0xc822c3b460 0xc822c3b4e0 0xc822c3b560 0xc822c3b5e0 0xc822c3b660 0xc822c3b6e0 0xc822c3b780 0xc822c3b800 0xc822c3b880 0xc822c3b900]} diff --git a/internal/binding/dump/QtGui/QPaintEngineState.txt b/internal/binding/dump/QtGui/QPaintEngineState.txt new file mode 100755 index 00000000..e857fe15 --- /dev/null +++ b/internal/binding/dump/QtGui/QPaintEngineState.txt @@ -0,0 +1,20 @@ +######################################## FUNCTIONS ######################################## +&{backgroundBrush QPaintEngineState::backgroundBrush commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h non plain false false QBrush [] } +&{backgroundMode QPaintEngineState::backgroundMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h non plain false false Qt::BGMode [] } +&{brush QPaintEngineState::brush commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h non plain false false QBrush [] } +&{brushNeedsResolving QPaintEngineState::brushNeedsResolving commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h non plain false false bool [] } +&{brushOrigin QPaintEngineState::brushOrigin commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h non plain false false QPointF [] } +&{clipOperation QPaintEngineState::clipOperation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h non plain false false Qt::ClipOperation [] } +&{clipPath QPaintEngineState::clipPath commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h non plain false false QPainterPath [] } +&{clipRegion QPaintEngineState::clipRegion commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h non plain false false QRegion [] } +&{compositionMode QPaintEngineState::compositionMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h non plain false false QPainter::CompositionMode [] } +&{font QPaintEngineState::font commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h non plain false false QFont [] } +&{isClipEnabled QPaintEngineState::isClipEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h non plain false false bool [] } +&{opacity QPaintEngineState::opacity commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h non plain false false qreal [] } +&{painter QPaintEngineState::painter commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h non plain false false QPainter * [] } +&{pen QPaintEngineState::pen commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h non plain false false QPen [] } +&{penNeedsResolving QPaintEngineState::penNeedsResolving commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h non plain false false bool [] } +&{renderHints QPaintEngineState::renderHints commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h non plain false false QPainter::RenderHints [] } +&{state QPaintEngineState::state commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h non plain false false QPaintEngine::DirtyFlags [] } +&{transform QPaintEngineState::transform commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.h non plain false false QTransform [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QPaintEvent.txt b/internal/binding/dump/QtGui/QPaintEvent.txt new file mode 100755 index 00000000..f2b2f5a0 --- /dev/null +++ b/internal/binding/dump/QtGui/QPaintEvent.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QPaintEvent QPaintEvent::QPaintEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false true 2 [0xc82077b520] } +&{QPaintEvent QPaintEvent::QPaintEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [0xc82077b700] } +&{rect QPaintEvent::rect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QRect & [] } +&{region QPaintEvent::region commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QRegion & [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QPainter.txt b/internal/binding/dump/QtGui/QPainter.txt new file mode 100755 index 00000000..8e04b06f --- /dev/null +++ b/internal/binding/dump/QtGui/QPainter.txt @@ -0,0 +1,195 @@ +######################################## FUNCTIONS ######################################## +&{QPainter QPainter::QPainter commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non constructor false true 2 [0xc822cd1900] } +&{begin QPainter::begin commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false false bool [0xc822cd1a80] } +&{boundingRect QPainter::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false true 2 QRect [0xc822cd1c40 0xc822cd1cc0 0xc822cd1d40] } +&{boundingRect QPainter::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false true 4 QRectF [0xc822cd1f00 0xc822cd1f80 0xc822ce0020] } +&{boundingRect QPainter::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false false QRectF [0xc822ce0240 0xc822ce02c0 0xc822ce0340] } +&{drawArc QPainter::drawArc commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false false void [0xc822ce0500 0xc822ce0580 0xc822ce0600] } +&{drawChord QPainter::drawChord commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false false void [0xc822ce07c0 0xc822ce0840 0xc822ce08c0] } +&{drawConvexPolygon QPainter::drawConvexPolygon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false true 2 void [0xc822ce0ac0 0xc822ce0b40] } +&{drawConvexPolygon QPainter::drawConvexPolygon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false false void [0xc822ce0d80 0xc822ce0e00] } +&{drawEllipse QPainter::drawEllipse commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false true 2 void [0xc822ce0fc0] } +&{drawEllipse QPainter::drawEllipse commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false false void [0xc822ce1180] } +&{drawGlyphRun QPainter::drawGlyphRun commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false false void [0xc822ce1340 0xc822ce13e0] } +&{drawImage QPainter::drawImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false true 3 void [0xc822ce15e0 0xc822ce1660] } +&{drawImage QPainter::drawImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false false void [0xc822ce1820 0xc822ce18a0 0xc822ce1920 0xc822ce19c0] } +&{drawLines QPainter::drawLines commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false true 2 void [0xc822ce1bc0 0xc822ce1c40] } +&{drawPicture QPainter::drawPicture commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false false void [0xc822ce1e00 0xc822ce1e80] } +&{drawPie QPainter::drawPie commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false false void [0xc822cf0060 0xc822cf00e0 0xc822cf0160] } +&{drawPixmap QPainter::drawPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false true 5 void [0xc822cf0320 0xc822cf03a0] } +&{drawPixmap QPainter::drawPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false false void [0xc822cf0560 0xc822cf05e0 0xc822cf0660] } +&{drawRects QPainter::drawRects commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false true 2 void [0xc822cf0820 0xc822cf08a0] } +&{drawRects QPainter::drawRects commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false false void [0xc822cf0a60 0xc822cf0ae0] } +&{drawText QPainter::drawText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false false void [0xc822cf0ca0 0xc822cf0d20] } +&{drawText QPainter::drawText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false true 5 void [0xc822cf0ee0 0xc822cf0f60 0xc822cf0fe0 0xc822cf1060] } +&{drawText QPainter::drawText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false true 8 void [0xc822cf1220 0xc822cf12a0 0xc822cf1340] } +&{drawText QPainter::drawText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false true 4 void [0xc822cf1540 0xc822cf15c0 0xc822cf1640 0xc822cf16c0] } +&{drawTiledPixmap QPainter::drawTiledPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false false void [0xc822cf1b20 0xc822cf1ba0 0xc822cf1c20] } +&{eraseRect QPainter::eraseRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false false void [0xc822cf1de0] } +&{fillRect QPainter::fillRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false true 5 void [0xc822cf1fa0 0xc822298020] } +&{fillRect QPainter::fillRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false true 6 void [0xc8222981e0 0xc822298260] } +&{fillRect QPainter::fillRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false false void [0xc822298420 0xc8222984a0] } +&{fillRect QPainter::fillRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false true 7 void [0xc822298660 0xc8222986e0] } +&{rotate QPainter::rotate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false false void [0xc822298880] } +&{setBackground QPainter::setBackground commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false false void [0xc822298a40] } +&{setBrushOrigin QPainter::setBrushOrigin commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false false void [0xc822298c00] } +&{setClipPath QPainter::setClipPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false false void [0xc822298de0 0xc822298ec0] } +&{setClipRect QPainter::setClipRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false true 3 void [0xc8222990c0 0xc822299160] } +&{setClipRect QPainter::setClipRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false false void [0xc822299360 0xc822299400] } +&{setClipRegion QPainter::setClipRegion commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false false void [0xc822299600 0xc8222996a0] } +&{setViewport QPainter::setViewport commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false false void [0xc8222998a0] } +&{setWindow QPainter::setWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.cpp non plain false false void [0xc822299a60] } +&{QPainter QPainter::QPainter commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non constructor false false [] } +&{background QPainter::background commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false const QBrush & [] } +&{backgroundMode QPainter::backgroundMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false Qt::BGMode [] } +&{beginNativePainting QPainter::beginNativePainting commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [] } +&{boundingRect QPainter::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 3 QRect [0xc8222b54a0 0xc8222b5520 0xc8222b55a0 0xc8222b5620 0xc8222b56c0 0xc8222b5740] } +&{brush QPainter::brush commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false const QBrush & [] } +&{brushOrigin QPainter::brushOrigin commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false QPoint [] } +&{clipBoundingRect QPainter::clipBoundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false QRectF [] } +&{clipPath QPainter::clipPath commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false QPainterPath [] } +&{clipRegion QPainter::clipRegion commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false QRegion [] } +&{combinedTransform QPainter::combinedTransform commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false QTransform [] } +&{compositionMode QPainter::compositionMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false CompositionMode [] } +&{device QPainter::device commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false QPaintDevice * [] } +&{deviceTransform QPainter::deviceTransform commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false const QTransform & [] } +&{drawArc QPainter::drawArc commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 2 void [0xc8222c8340 0xc8222c83c0 0xc8222c8440] } +&{drawArc QPainter::drawArc commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 3 void [0xc8222c8600 0xc8222c8680 0xc8222c8700 0xc8222c8780 0xc8222c8820 0xc8222c88a0] } +&{drawChord QPainter::drawChord commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 2 void [0xc8222c8a60 0xc8222c8ae0 0xc8222c8b60] } +&{drawChord QPainter::drawChord commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 3 void [0xc8222c8d20 0xc8222c8da0 0xc8222c8e20 0xc8222c8ea0 0xc8222c8f40 0xc8222c8fc0] } +&{drawConvexPolygon QPainter::drawConvexPolygon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 4 void [0xc8222c91c0] } +&{drawConvexPolygon QPainter::drawConvexPolygon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 3 void [0xc8222c93e0] } +&{drawEllipse QPainter::drawEllipse commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 5 void [0xc8222c95e0 0xc8222c9660 0xc8222c96e0] } +&{drawEllipse QPainter::drawEllipse commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 4 void [0xc8222c98c0 0xc8222c9940 0xc8222c99c0] } +&{drawEllipse QPainter::drawEllipse commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 3 void [0xc8222c9b80 0xc8222c9c00 0xc8222c9c80 0xc8222c9d00] } +&{drawImage QPainter::drawImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 4 void [0xc8222c9ec0 0xc8222c9f40] } +&{drawImage QPainter::drawImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 6 void [0xc8222da100 0xc8222da180 0xc8222da200 0xc8222da2a0] } +&{drawImage QPainter::drawImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 5 void [0xc8222da4a0 0xc8222da520 0xc8222da5a0 0xc8222da640] } +&{drawImage QPainter::drawImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 8 void [0xc8222da840 0xc8222da8c0] } +&{drawImage QPainter::drawImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 2 void [0xc8222daa80 0xc8222dab00 0xc8222dab80 0xc8222dac20] } +&{drawImage QPainter::drawImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 7 void [0xc8222dae20 0xc8222daea0] } +&{drawImage QPainter::drawImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 9 void [0xc8222db060 0xc8222db0e0 0xc8222db160 0xc8222db1e0 0xc8222db280 0xc8222db300 0xc8222db380 0xc8222db420] } +&{drawLine QPainter::drawLine commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 2 void [0xc8222db640] } +&{drawLine QPainter::drawLine commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc8222db800] } +&{drawLine QPainter::drawLine commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 3 void [0xc8222db9c0 0xc8222dba40] } +&{drawLine QPainter::drawLine commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 4 void [0xc8222dbc00 0xc8222dbc80] } +&{drawLine QPainter::drawLine commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 5 void [0xc8222dbe40 0xc8222dbec0 0xc8222dbf40 0xc8222dbfc0] } +&{drawLines QPainter::drawLines commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc8222ec180 0xc8222ec200] } +&{drawLines QPainter::drawLines commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 4 void [0xc8222ec3c0 0xc8222ec440] } +&{drawLines QPainter::drawLines commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 3 void [0xc8222ec600 0xc8222ec680] } +&{drawLines QPainter::drawLines commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 8 void [0xc8222ec860] } +&{drawLines QPainter::drawLines commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 7 void [0xc8222eca80] } +&{drawLines QPainter::drawLines commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 6 void [0xc8222ecca0] } +&{drawLines QPainter::drawLines commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 5 void [0xc8222ecec0] } +&{drawPath QPainter::drawPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc8222ed0e0] } +&{drawPicture QPainter::drawPicture commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 2 void [0xc8222ed2e0 0xc8222ed360] } +&{drawPicture QPainter::drawPicture commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 3 void [0xc8222ed520 0xc8222ed5a0 0xc8222ed620] } +&{drawPie QPainter::drawPie commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 2 void [0xc8222ed7e0 0xc8222ed860 0xc8222ed8e0] } +&{drawPie QPainter::drawPie commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 3 void [0xc8222edaa0 0xc8222edb20 0xc8222edba0 0xc8222edc20 0xc8222edcc0 0xc8222edd40] } +&{drawPixmap QPainter::drawPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 6 void [0xc8222edf00 0xc8222edf80] } +&{drawPixmap QPainter::drawPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 4 void [0xc8222fc140 0xc8222fc1c0 0xc8222fc240] } +&{drawPixmap QPainter::drawPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 3 void [0xc8222fc400 0xc8222fc480 0xc8222fc500] } +&{drawPixmap QPainter::drawPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 8 void [0xc8222fc6c0 0xc8222fc740] } +&{drawPixmap QPainter::drawPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 2 void [0xc8222fc900 0xc8222fc980 0xc8222fca00] } +&{drawPixmap QPainter::drawPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 7 void [0xc8222fcbc0 0xc8222fcc40 0xc8222fccc0] } +&{drawPixmap QPainter::drawPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 11 void [0xc8222fce80 0xc8222fcf00 0xc8222fcf80 0xc8222fd000 0xc8222fd0a0 0xc8222fd120 0xc8222fd1a0] } +&{drawPixmap QPainter::drawPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 10 void [0xc8222fd360 0xc8222fd3e0 0xc8222fd460 0xc8222fd4e0 0xc8222fd580 0xc8222fd600 0xc8222fd680 0xc8222fd700 0xc8222fd7a0] } +&{drawPixmap QPainter::drawPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 9 void [0xc8222fd960 0xc8222fd9e0 0xc8222fda60 0xc8222fdae0 0xc8222fdb80] } +&{drawPixmapFragments QPainter::drawPixmapFragments commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc8222fdda0 0xc8222fde60 0xc8222fdee0 0xc8222fdf80] } +&{drawPoint QPainter::drawPoint commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 2 void [0xc822310180] } +&{drawPoint QPainter::drawPoint commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc822310340] } +&{drawPoint QPainter::drawPoint commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 3 void [0xc822310520 0xc8223105a0] } +&{drawPoints QPainter::drawPoints commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 2 void [0xc822310760 0xc8223107e0] } +&{drawPoints QPainter::drawPoints commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc8223109a0 0xc822310a20] } +&{drawPoints QPainter::drawPoints commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 4 void [0xc822310be0] } +&{drawPoints QPainter::drawPoints commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 3 void [0xc822310dc0] } +&{drawPolygon QPainter::drawPolygon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 2 void [0xc822310fc0 0xc822311040 0xc8223110c0] } +&{drawPolygon QPainter::drawPolygon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc822311280 0xc822311300 0xc822311380] } +&{drawPolygon QPainter::drawPolygon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 4 void [0xc822311540 0xc8223115c0] } +&{drawPolygon QPainter::drawPolygon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 3 void [0xc8223117a0 0xc822311860] } +&{drawPolyline QPainter::drawPolyline commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 2 void [0xc822311a20 0xc822311aa0] } +&{drawPolyline QPainter::drawPolyline commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc822311c60 0xc822311ce0] } +&{drawPolyline QPainter::drawPolyline commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 4 void [0xc822311ea0] } +&{drawPolyline QPainter::drawPolyline commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 3 void [0xc822324080] } +&{drawRect QPainter::drawRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 2 void [0xc822324280] } +&{drawRect QPainter::drawRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc822324440] } +&{drawRect QPainter::drawRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 3 void [0xc822324600 0xc822324680 0xc822324700 0xc822324780] } +&{drawRects QPainter::drawRects commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 4 void [0xc822324960] } +&{drawRects QPainter::drawRects commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 3 void [0xc822324b80] } +&{drawRoundedRect QPainter::drawRoundedRect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 2 void [0xc822325700 0xc822325780 0xc822325800 0xc822325880] } +&{drawRoundedRect QPainter::drawRoundedRect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc822325a40 0xc822325ac0 0xc822325b40 0xc822325bc0] } +&{drawRoundedRect QPainter::drawRoundedRect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 3 void [0xc822325d80 0xc822325e00 0xc822325e80 0xc822325f00 0xc822325fa0 0xc822336020 0xc8223360a0] } +&{drawStaticText QPainter::drawStaticText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 2 void [0xc822336260 0xc822336300] } +&{drawStaticText QPainter::drawStaticText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc822336500 0xc8223365a0] } +&{drawStaticText QPainter::drawStaticText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 3 void [0xc8223367c0 0xc822336840 0xc8223368e0] } +&{drawText QPainter::drawText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 3 void [0xc822336ae0 0xc822336b60] } +&{drawText QPainter::drawText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 6 void [0xc822336d20 0xc822336da0 0xc822336e20] } +&{drawText QPainter::drawText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 7 void [0xc822336fe0 0xc822337060 0xc8223370e0 0xc822337160 0xc822337200 0xc822337280 0xc822337300] } +&{drawTiledPixmap QPainter::drawTiledPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 2 void [0xc822337e20 0xc822337ea0 0xc822337f20] } +&{drawTiledPixmap QPainter::drawTiledPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 3 void [0xc8223480e0 0xc822348160 0xc8223481e0 0xc822348260 0xc822348300 0xc822348380 0xc822348400] } +&{end QPainter::end commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false bool [] } +&{endNativePainting QPainter::endNativePainting commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [] } +&{eraseRect QPainter::eraseRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 2 void [0xc8223487a0] } +&{eraseRect QPainter::eraseRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 3 void [0xc822348960 0xc8223489e0 0xc822348a60 0xc822348ae0] } +&{fillPath QPainter::fillPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc822348cc0 0xc822348d80] } +&{fillRect QPainter::fillRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 3 void [0xc822348f40 0xc822348fc0] } +&{fillRect QPainter::fillRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 11 void [0xc822349180 0xc822349200] } +&{fillRect QPainter::fillRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 4 void [0xc8223493c0 0xc822349440] } +&{fillRect QPainter::fillRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 12 void [0xc822349600 0xc822349680] } +&{fillRect QPainter::fillRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 2 void [0xc822349840 0xc8223498c0 0xc822349940 0xc8223499c0 0xc822349a60] } +&{fillRect QPainter::fillRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 10 void [0xc822349c20 0xc822349ca0 0xc822349d20 0xc822349da0 0xc822349e40] } +&{fillRect QPainter::fillRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 8 void [0xc82235a000 0xc82235a080 0xc82235a100 0xc82235a180 0xc82235a220] } +&{fillRect QPainter::fillRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 9 void [0xc82235a3e0 0xc82235a460 0xc82235a4e0 0xc82235a560 0xc82235a600] } +&{font QPainter::font commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false const QFont & [] } +&{fontInfo QPainter::fontInfo commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false QFontInfo [] } +&{fontMetrics QPainter::fontMetrics commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false QFontMetrics [] } +&{hasClipping QPainter::hasClipping commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false bool [] } +&{isActive QPainter::isActive commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false bool [] } +&{layoutDirection QPainter::layoutDirection commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false Qt::LayoutDirection [] } +&{opacity QPainter::opacity commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false qreal [] } +&{paintEngine QPainter::paintEngine commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false QPaintEngine * [] } +&{pen QPainter::pen commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false const QPen & [] } +&{renderHints QPainter::renderHints commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false RenderHints [] } +&{resetTransform QPainter::resetTransform commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [] } +&{restore QPainter::restore commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [] } +&{save QPainter::save commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [] } +&{scale QPainter::scale commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc82235bca0 0xc82235bd20] } +&{setBackgroundMode QPainter::setBackgroundMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc82235bf40] } +&{setBrush QPainter::setBrush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 2 void [0xc822370100] } +&{setBrush QPainter::setBrush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc8223702c0] } +&{setBrushOrigin QPainter::setBrushOrigin commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 2 void [0xc822370480] } +&{setBrushOrigin QPainter::setBrushOrigin commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 3 void [0xc822370640 0xc8223706c0] } +&{setClipRect QPainter::setClipRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 2 void [0xc822370880 0xc822370900 0xc822370980 0xc822370a00 0xc822370ac0] } +&{setClipping QPainter::setClipping commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc822370ce0] } +&{setCompositionMode QPainter::setCompositionMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc822370f00] } +&{setFont QPainter::setFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc8223710e0] } +&{setLayoutDirection QPainter::setLayoutDirection commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc822371320] } +&{setOpacity QPainter::setOpacity commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc822371920] } +&{setPen QPainter::setPen commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 3 void [0xc822371aa0] } +&{setPen QPainter::setPen commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 2 void [0xc822371c20] } +&{setPen QPainter::setPen commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc822371da0] } +&{setRenderHint QPainter::setRenderHint commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc822384260 0xc8223842e0] } +&{setRenderHints QPainter::setRenderHints commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc8223844a0 0xc822384520] } +&{setTransform QPainter::setTransform commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc822384700 0xc8223847c0] } +&{setViewTransformEnabled QPainter::setViewTransformEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc822384960] } +&{setViewport QPainter::setViewport commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 2 void [0xc822384b20 0xc822384ba0 0xc822384c20 0xc822384ca0] } +&{setWindow QPainter::setWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 2 void [0xc822384e60 0xc822384ee0 0xc822384f60 0xc822384fe0] } +&{setWorldMatrixEnabled QPainter::setWorldMatrixEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc822385400] } +&{setWorldTransform QPainter::setWorldTransform commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc822385640 0xc822385700] } +&{shear QPainter::shear commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc822385880 0xc822385900] } +&{strokePath QPainter::strokePath commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc822385ae0 0xc822385ba0] } +&{testRenderHint QPainter::testRenderHint commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false bool [0xc822385d60] } +&{transform QPainter::transform commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false const QTransform & [] } +&{translate QPainter::translate commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 2 void [0xc822396060] } +&{translate QPainter::translate commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false void [0xc822396220] } +&{translate QPainter::translate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false true 3 void [0xc8223963e0 0xc822396460] } +&{viewTransformEnabled QPainter::viewTransformEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false bool [] } +&{viewport QPainter::viewport commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false QRect [] } +&{window QPainter::window commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false QRect [] } +&{worldMatrixEnabled QPainter::worldMatrixEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false bool [] } +&{worldTransform QPainter::worldTransform commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non plain false false const QTransform & [] } +&{~QPainter QPainter::~QPainter commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainter.h non destructor false false [] } +######################################## ENUMS ######################################## +&{CompositionMode QPainter::CompositionMode commendable public [0xc8222aa480 0xc8222aa560 0xc8222aa640 0xc8222aa720 0xc8222aa820 0xc8222aa900 0xc8222aa9e0 0xc8222aaac0 0xc8222aabc0 0xc8222aaca0 0xc8222aad80 0xc8222aae60 0xc8222aaf40 0xc8222ab020 0xc8222ab100 0xc8222ab1e0 0xc8222ab2e0 0xc8222ab3c0 0xc8222ab4a0 0xc8222ab580 0xc8222ab660 0xc8222ab740 0xc8222ab820 0xc8222ab900 0xc8222ab9e0 0xc8222abac0 0xc8222abba0 0xc8222abc60 0xc8222abce0 0xc8222abd80 0xc8222abe60 0xc8222abf40 0xc8222b4040 0xc8222b4120 0xc8222b4200 0xc8222b42e0 0xc8222b43c0 0xc8222b44a0]} +&{PixmapFragmentHint QPainter::PixmapFragmentHint commendable public QPainter::PixmapFragmentHints [0xc8222b4740]} +&{RenderHint QPainter::RenderHint commendable public QPainter::RenderHints [0xc8222b4960 0xc8222b49e0 0xc8222b4a80 0xc8222b4b60 0xc8222b4c60 0xc8222b4d40]} diff --git a/internal/binding/dump/QtGui/QPainterPath.txt b/internal/binding/dump/QtGui/QPainterPath.txt new file mode 100755 index 00000000..c16d6e6f --- /dev/null +++ b/internal/binding/dump/QtGui/QPainterPath.txt @@ -0,0 +1,80 @@ +######################################## FUNCTIONS ######################################## +&{QPainterPath QPainterPath::QPainterPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.cpp non constructor false true 3 [0xc822397300] } +&{addEllipse QPainterPath::addEllipse commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.cpp non plain false false void [0xc822397520] } +&{addPath QPainterPath::addPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.cpp non plain false false void [0xc822397740] } +&{addRect QPainterPath::addRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.cpp non plain false false void [0xc822397940] } +&{addText QPainterPath::addText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.cpp non plain false false void [0xc822397b20 0xc822397ba0 0xc822397c20] } +&{arcMoveTo QPainterPath::arcMoveTo commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.cpp non plain false false void [0xc822397de0 0xc822397e60] } +&{arcTo QPainterPath::arcTo commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.cpp non plain false false void [0xc8223ac020 0xc8223ac0a0 0xc8223ac120] } +&{connectPath QPainterPath::connectPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.cpp non plain false false void [0xc8223ac4c0] } +&{contains QPainterPath::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.cpp non plain false false bool [0xc8223ac6c0] } +&{contains QPainterPath::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.cpp non plain false true 2 bool [0xc8223ac880] } +&{cubicTo QPainterPath::cubicTo commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.cpp non plain false false void [0xc8223aca40 0xc8223acac0 0xc8223acb40] } +&{currentPosition QPainterPath::currentPosition commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.cpp non plain false false QPointF [] } +&{elementAt QPainterPath::elementAt commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.cpp non plain false false QPainterPath::Element [0xc8223acf20] } +&{elementCount QPainterPath::elementCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.cpp non plain false false int [] } +&{intersects QPainterPath::intersects commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.cpp non plain false false bool [0xc8223ad200] } +&{isEmpty QPainterPath::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.cpp non plain false false bool [] } +&{lineTo QPainterPath::lineTo commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.cpp non plain false false void [0xc8223ad4c0] } +&{moveTo QPainterPath::moveTo commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.cpp non plain false false void [0xc8223ad680] } +&{operator= QPainterPath::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.cpp non plain false false QPainterPath & [0xc8223ad860] } +&{quadTo QPainterPath::quadTo commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.cpp non plain false false void [0xc8223ada60 0xc8223adae0] } +&{setElementPositionAt QPainterPath::setElementPositionAt commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.cpp non plain false false void [0xc8223ade60 0xc8223adee0 0xc8223adf60] } +&{setFillRule QPainterPath::setFillRule commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.cpp non plain false false void [0xc8223ba120] } +&{QPainterPath QPainterPath::QPainterPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non constructor false false [] } +&{QPainterPath QPainterPath::QPainterPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non constructor false true 2 [0xc8223bae40] } +&{addEllipse QPainterPath::addEllipse commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false true 3 void [0xc8223bb000 0xc8223bb080 0xc8223bb100] } +&{addEllipse QPainterPath::addEllipse commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false true 2 void [0xc8223bb2c0 0xc8223bb340 0xc8223bb3c0 0xc8223bb440] } +&{addPolygon QPainterPath::addPolygon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false void [0xc8223bb620] } +&{addRect QPainterPath::addRect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false true 2 void [0xc8223bb820 0xc8223bb8a0 0xc8223bb920 0xc8223bb9a0] } +&{addRegion QPainterPath::addRegion commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false void [0xc8223bbb80] } +&{addRoundedRect QPainterPath::addRoundedRect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false void [0xc8223d0a00 0xc8223d0a80 0xc8223d0b00 0xc8223d0b80] } +&{addRoundedRect QPainterPath::addRoundedRect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false true 2 void [0xc8223d0d20 0xc8223d0da0 0xc8223d0e20 0xc8223d0ea0 0xc8223d0f40 0xc8223d0fc0 0xc8223d1040] } +&{addText QPainterPath::addText commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false true 2 void [0xc8223d1200 0xc8223d1280 0xc8223d1300 0xc8223d1380] } +&{angleAtPercent QPainterPath::angleAtPercent commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false qreal [0xc8223d1540] } +&{arcMoveTo QPainterPath::arcMoveTo commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false true 2 void [0xc8223d1700 0xc8223d1780 0xc8223d1800 0xc8223d1880 0xc8223d1920] } +&{arcTo QPainterPath::arcTo commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false true 2 void [0xc8223d1ae0 0xc8223d1b60 0xc8223d1be0 0xc8223d1c60 0xc8223d1d00 0xc8223d1d80] } +&{boundingRect QPainterPath::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false QRectF [] } +&{closeSubpath QPainterPath::closeSubpath commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false void [] } +&{contains QPainterPath::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false true 3 bool [0xc8223e0160] } +&{controlPointRect QPainterPath::controlPointRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false QRectF [] } +&{cubicTo QPainterPath::cubicTo commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false true 2 void [0xc8223e0440 0xc8223e04c0 0xc8223e0540 0xc8223e05c0 0xc8223e0660 0xc8223e06e0] } +&{fillRule QPainterPath::fillRule commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false Qt::FillRule [] } +&{intersected QPainterPath::intersected commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false QPainterPath [0xc8223e0e40] } +&{intersects QPainterPath::intersects commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false true 2 bool [0xc8223e1060] } +&{length QPainterPath::length commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false qreal [] } +&{lineTo QPainterPath::lineTo commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false true 2 void [0xc8223e1380 0xc8223e1400] } +&{moveTo QPainterPath::moveTo commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false true 2 void [0xc8223e15e0 0xc8223e1660] } +&{operator!= QPainterPath::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false bool [0xc8223e1820] } +&{operator& QPainterPath::operator& commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false QPainterPath [0xc8223e1a40] } +&{operator&= QPainterPath::operator&= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false QPainterPath & [0xc8223e1c40] } +&{operator+ QPainterPath::operator+ commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false QPainterPath [0xc8223e1e60] } +&{operator+= QPainterPath::operator+= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false QPainterPath & [0xc82210c080] } +&{operator- QPainterPath::operator- commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false QPainterPath [0xc82210c2a0] } +&{operator-= QPainterPath::operator-= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false QPainterPath & [0xc82210c4e0] } +&{operator= QPainterPath::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false true 2 QPainterPath & [0xc82210c6e0] } +&{operator== QPainterPath::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false bool [0xc82210c8c0] } +&{operator| QPainterPath::operator| commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false QPainterPath [0xc82210cae0] } +&{operator|= QPainterPath::operator|= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false QPainterPath & [0xc82210cd00] } +&{percentAtLength QPainterPath::percentAtLength commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false qreal [0xc82210cee0] } +&{pointAtPercent QPainterPath::pointAtPercent commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false QPointF [0xc82210d0a0] } +&{quadTo QPainterPath::quadTo commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false true 2 void [0xc82210d260 0xc82210d2e0 0xc82210d360 0xc82210d3e0] } +&{simplified QPainterPath::simplified commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false QPainterPath [] } +&{slopeAtPercent QPainterPath::slopeAtPercent commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false qreal [0xc82210d6a0] } +&{subtracted QPainterPath::subtracted commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false QPainterPath [0xc82210d880] } +&{swap QPainterPath::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false void [0xc82210dd00] } +&{toFillPolygon QPainterPath::toFillPolygon commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false true 2 QPolygonF [0xc82210dea0] } +&{toFillPolygon QPainterPath::toFillPolygon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false QPolygonF [0xc82211c080] } +&{toFillPolygons QPainterPath::toFillPolygons commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false true 2 QList [0xc82211c260] } +&{toFillPolygons QPainterPath::toFillPolygons commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false QList [0xc82211c440] } +&{toReversed QPainterPath::toReversed commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false QPainterPath [] } +&{toSubpathPolygons QPainterPath::toSubpathPolygons commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false true 2 QList [0xc82211c780] } +&{toSubpathPolygons QPainterPath::toSubpathPolygons commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false QList [0xc82211c9a0] } +&{translate QPainterPath::translate commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false true 2 void [0xc82211cba0] } +&{translate QPainterPath::translate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false void [0xc82211cd60 0xc82211cde0] } +&{translated QPainterPath::translated commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false true 2 QPainterPath [0xc82211cfa0] } +&{translated QPainterPath::translated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false QPainterPath [0xc82211d160 0xc82211d1e0] } +&{united QPainterPath::united commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false QPainterPath [0xc82211d3c0] } +&{~QPainterPath QPainterPath::~QPainterPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non destructor false false [] } +######################################## ENUMS ######################################## +&{ElementType QPainterPath::ElementType commendable public [0xc8223ba9c0 0xc8223baa40 0xc8223baac0 0xc8223bab60]} diff --git a/internal/binding/dump/QtGui/QPainterPathStroker.txt b/internal/binding/dump/QtGui/QPainterPathStroker.txt new file mode 100755 index 00000000..8ed7430d --- /dev/null +++ b/internal/binding/dump/QtGui/QPainterPathStroker.txt @@ -0,0 +1,21 @@ +######################################## FUNCTIONS ######################################## +&{QPainterPathStroker QPainterPathStroker::QPainterPathStroker commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non constructor false false [] } +&{QPainterPathStroker QPainterPathStroker::QPainterPathStroker commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non constructor false true 2 [0xc82211d880] } +&{capStyle QPainterPathStroker::capStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false Qt::PenCapStyle [] } +&{createStroke QPainterPathStroker::createStroke commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false QPainterPath [0xc82211dac0] } +&{curveThreshold QPainterPathStroker::curveThreshold commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false qreal [] } +&{dashOffset QPainterPathStroker::dashOffset commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false qreal [] } +&{dashPattern QPainterPathStroker::dashPattern commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false QVector [] } +&{joinStyle QPainterPathStroker::joinStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false Qt::PenJoinStyle [] } +&{miterLimit QPainterPathStroker::miterLimit commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false qreal [] } +&{setCapStyle QPainterPathStroker::setCapStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false void [0xc82213a0a0] } +&{setCurveThreshold QPainterPathStroker::setCurveThreshold commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false void [0xc82213a240] } +&{setDashOffset QPainterPathStroker::setDashOffset commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false void [0xc82213a3a0] } +&{setDashPattern QPainterPathStroker::setDashPattern commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false void [0xc82213a4e0] } +&{setDashPattern QPainterPathStroker::setDashPattern commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false true 2 void [0xc82213a640] } +&{setJoinStyle QPainterPathStroker::setJoinStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false void [0xc82213a7c0] } +&{setMiterLimit QPainterPathStroker::setMiterLimit commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false void [0xc82213a920] } +&{setWidth QPainterPathStroker::setWidth commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false void [0xc82213ab00] } +&{width QPainterPathStroker::width commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non plain false false qreal [] } +&{~QPainterPathStroker QPainterPathStroker::~QPainterPathStroker commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpainterpath.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QPalette.txt b/internal/binding/dump/QtGui/QPalette.txt new file mode 100755 index 00000000..e7333788 --- /dev/null +++ b/internal/binding/dump/QtGui/QPalette.txt @@ -0,0 +1,53 @@ +######################################## FUNCTIONS ######################################## +&{brush QPalette::brush commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.cpp non plain false false const QBrush & [0xc820796b40 0xc820796bc0] } +&{isEqual QPalette::isEqual commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.cpp non plain false false bool [0xc820796f80 0xc820797060] } +&{setBrush QPalette::setBrush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.cpp non plain false true 2 void [0xc8207973c0 0xc820797440 0xc820797580] } +&{QPalette QPalette::QPalette commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non constructor false false [] } +&{QPalette QPalette::QPalette commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non constructor false true 8 [0xc820ae7740] } +&{QPalette QPalette::QPalette commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non constructor false true 3 [0xc820ae79c0] } +&{QPalette QPalette::QPalette commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non constructor false true 5 [0xc820ae7c20 0xc820ae7cc0 0xc820ae7d80 0xc820ae7e20 0xc820ae7f00 0xc820ae7fa0 0xc820780040 0xc820780100 0xc820780200] } +&{QPalette QPalette::QPalette commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non constructor false true 2 [0xc820780420] } +&{QPalette QPalette::QPalette commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non constructor false true 4 [0xc8207806c0 0xc820780740] } +&{QPalette QPalette::QPalette commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non constructor false true 7 [0xc820781160] } +&{alternateBase QPalette::alternateBase commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false const QBrush & [] } +&{base QPalette::base commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false const QBrush & [] } +&{brightText QPalette::brightText commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false const QBrush & [] } +&{brush QPalette::brush commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false true 2 const QBrush & [0xc820781820] } +&{button QPalette::button commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false const QBrush & [] } +&{buttonText QPalette::buttonText commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false const QBrush & [] } +&{cacheKey QPalette::cacheKey commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false qint64 [] } +&{color QPalette::color commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false const QColor & [0xc820781e80 0xc820781fa0] } +&{color QPalette::color commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false true 2 const QColor & [0xc8207681a0] } +&{currentColorGroup QPalette::currentColorGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false ColorGroup [] } +&{dark QPalette::dark commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false const QBrush & [] } +&{highlight QPalette::highlight commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false const QBrush & [] } +&{highlightedText QPalette::highlightedText commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false const QBrush & [] } +&{isBrushSet QPalette::isBrushSet commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false bool [0xc820768d60 0xc820768e20] } +&{isCopyOf QPalette::isCopyOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false bool [0xc820769120] } +&{light QPalette::light commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false const QBrush & [] } +&{link QPalette::link commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false const QBrush & [] } +&{linkVisited QPalette::linkVisited commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false const QBrush & [] } +&{mid QPalette::mid commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false const QBrush & [] } +&{midlight QPalette::midlight commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false const QBrush & [] } +&{operator QVariant QPalette::operator QVariant commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false [] } +&{operator!= QPalette::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false bool [0xc820769c40] } +&{operator= QPalette::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false true 2 QPalette & [0xc820769e80] } +&{operator= QPalette::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false QPalette & [0xc820758080] } +&{operator== QPalette::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false bool [0xc8207583a0] } +&{resolve QPalette::resolve commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false QPalette [0xc8207586a0] } +&{setBrush QPalette::setBrush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false void [0xc820759000 0xc820759100] } +&{setColor QPalette::setColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false void [0xc8207593e0 0xc820759480 0xc820759540] } +&{setColor QPalette::setColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false true 2 void [0xc820759880 0xc820759920] } +&{setColorGroup QPalette::setColorGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false void [0xc820759c60 0xc820759d60 0xc820759de0 0xc820759ee0 0xc8209f2040 0xc8209f20c0 0xc8209f2140 0xc8209f21e0 0xc8209f22c0 0xc8209f2360] } +&{setCurrentColorGroup QPalette::setCurrentColorGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false void [0xc8209f3ee0] } +&{shadow QPalette::shadow commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false const QBrush & [] } +&{swap QPalette::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false void [0xc82072c220] } +&{text QPalette::text commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false const QBrush & [] } +&{toolTipBase QPalette::toolTipBase commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false const QBrush & [] } +&{toolTipText QPalette::toolTipText commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false const QBrush & [] } +&{window QPalette::window commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false const QBrush & [] } +&{windowText QPalette::windowText commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non plain false false const QBrush & [] } +&{~QPalette QPalette::~QPalette commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpalette.h non destructor false false [] } +######################################## ENUMS ######################################## +&{ColorGroup QPalette::ColorGroup commendable public [0xc820797cc0 0xc820797e00 0xc820797f60 0xc820ae6040 0xc820ae6100 0xc820ae6180 0xc820ae6220]} +&{ColorRole QPalette::ColorRole commendable public [0xc820ae6460 0xc820ae6520 0xc820ae65c0 0xc820ae6660 0xc820ae6740 0xc820ae67e0 0xc820ae6880 0xc820ae6940 0xc820ae6a00 0xc820ae6aa0 0xc820ae6b60 0xc820ae6c00 0xc820ae6ca0 0xc820ae6d60 0xc820ae6e00 0xc820ae6ea0 0xc820ae6f80 0xc820ae7020 0xc820ae70e0 0xc820ae7180 0xc820ae7220 0xc820ae72c0 0xc820ae7380]} diff --git a/internal/binding/dump/QtGui/QPdfWriter.txt b/internal/binding/dump/QtGui/QPdfWriter.txt new file mode 100755 index 00000000..19371106 --- /dev/null +++ b/internal/binding/dump/QtGui/QPdfWriter.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{QPdfWriter QPdfWriter::QPdfWriter commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpdfwriter.h non constructor false true 2 [0xc82213afe0] } +&{QPdfWriter QPdfWriter::QPdfWriter commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpdfwriter.h non constructor false false [0xc82213b1a0] } +&{creator QPdfWriter::creator commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpdfwriter.h non plain false false QString [] } +&{newPage QPdfWriter::newPage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpdfwriter.h impure plain false false bool [] } +&{pageLayout QPdfWriter::pageLayout commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpdfwriter.h non plain false false QPageLayout [] } +&{paintEngine QPdfWriter::paintEngine commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpdfwriter.h impure plain false false QPaintEngine * [] } +&{resolution QPdfWriter::resolution commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpdfwriter.h non plain false false int [] } +&{setCreator QPdfWriter::setCreator commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpdfwriter.h non plain false false void [0xc82213ba80] } +&{setPageLayout QPdfWriter::setPageLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpdfwriter.h non plain false false bool [0xc82213be00] } +&{setPageMargins QPdfWriter::setPageMargins commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpdfwriter.h non plain false false bool [0xc82214e020] } +&{setPageMargins QPdfWriter::setPageMargins commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpdfwriter.h non plain false true 2 bool [0xc82214e240 0xc82214e320] } +&{setPageOrientation QPdfWriter::setPageOrientation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpdfwriter.h non plain false false bool [0xc82214e580] } +&{setPageSize QPdfWriter::setPageSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpdfwriter.h non plain false false bool [0xc82214e7a0] } +&{setResolution QPdfWriter::setResolution commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpdfwriter.h non plain false false void [0xc82214ed20] } +&{setTitle QPdfWriter::setTitle commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpdfwriter.h non plain false false void [0xc82214eee0] } +&{title QPdfWriter::title commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpdfwriter.h non plain false false QString [] } +&{~QPdfWriter QPdfWriter::~QPdfWriter commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpdfwriter.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QPen.txt b/internal/binding/dump/QtGui/QPen.txt new file mode 100755 index 00000000..823483ed --- /dev/null +++ b/internal/binding/dump/QtGui/QPen.txt @@ -0,0 +1,38 @@ +######################################## FUNCTIONS ######################################## +&{QPen QPen::QPen commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.cpp non constructor false true 4 [0xc82214f6a0 0xc82214f720 0xc82214f7a0 0xc82214f820 0xc82214f8c0] } +&{QPen QPen::QPen commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.cpp non constructor false true 5 [0xc82214fa20] } +&{color QPen::color commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.cpp non plain false false QColor [] } +&{operator= QPen::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.cpp non plain false false QPen & [0xc82214fd20] } +&{operator== QPen::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.cpp non plain false false bool [0xc82214fe80] } +&{setCapStyle QPen::setCapStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.cpp non plain false false void [0xc822164040] } +&{setColor QPen::setColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.cpp non plain false false void [0xc8221641c0] } +&{setJoinStyle QPen::setJoinStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.cpp non plain false false void [0xc822164380] } +&{setStyle QPen::setStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.cpp non plain false false void [0xc8221644e0] } +&{setWidth QPen::setWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.cpp non plain false false void [0xc822164660] } +&{style QPen::style commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.cpp non plain false false Qt::PenStyle [] } +&{width QPen::width commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.cpp non plain false false int [] } +&{widthF QPen::widthF commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.cpp non plain false false qreal [] } +&{QPen QPen::QPen commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.h non constructor false false [] } +&{QPen QPen::QPen commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.h non constructor false true 6 [0xc822164a20] } +&{QPen QPen::QPen commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.h non constructor false true 2 [0xc822164b80] } +&{QPen QPen::QPen commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.h non constructor false true 3 [0xc822164ce0] } +&{brush QPen::brush commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.h non plain false false QBrush [] } +&{capStyle QPen::capStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.h non plain false false Qt::PenCapStyle [] } +&{dashOffset QPen::dashOffset commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.h non plain false false qreal [] } +&{dashPattern QPen::dashPattern commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.h non plain false false QVector [] } +&{isCosmetic QPen::isCosmetic commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.h non plain false false bool [] } +&{isSolid QPen::isSolid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.h non plain false false bool [] } +&{joinStyle QPen::joinStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.h non plain false false Qt::PenJoinStyle [] } +&{miterLimit QPen::miterLimit commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.h non plain false false qreal [] } +&{operator QVariant QPen::operator QVariant commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.h non plain false false [] } +&{operator!= QPen::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.h non plain false false bool [0xc822165540] } +&{operator= QPen::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.h non plain false true 2 QPen & [0xc8221656c0] } +&{setBrush QPen::setBrush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.h non plain false false void [0xc822165820] } +&{setCosmetic QPen::setCosmetic commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.h non plain false false void [0xc822165a20] } +&{setDashOffset QPen::setDashOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.h non plain false false void [0xc822165c00] } +&{setDashPattern QPen::setDashPattern commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.h non plain false false void [0xc822165de0] } +&{setMiterLimit QPen::setMiterLimit commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.h non plain false false void [0xc82217c000] } +&{setWidthF QPen::setWidthF commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.h non plain false false void [0xc82217c180] } +&{swap QPen::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.h non plain false false void [0xc82217c2e0] } +&{~QPen QPen::~QPen commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpen.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QPicture.txt b/internal/binding/dump/QtGui/QPicture.txt new file mode 100755 index 00000000..e8509412 --- /dev/null +++ b/internal/binding/dump/QtGui/QPicture.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{data QPicture::data commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpicture.cpp non plain false false const char * [] } +&{isNull QPicture::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpicture.cpp non plain false false bool [] } +&{size QPicture::size commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpicture.cpp non plain false false uint [] } +&{QPicture QPicture::QPicture commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpicture.h non constructor false true 2 [0xc820b19060] } +&{QPicture QPicture::QPicture commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpicture.h non constructor false false [0xc820b192e0] } +&{boundingRect QPicture::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpicture.h non plain false false QRect [] } +&{load QPicture::load commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpicture.h non plain false true 2 bool [0xc820af0560 0xc820af05e0] } +&{load QPicture::load commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpicture.h non plain false false bool [0xc820af0740 0xc820af0800] } +&{operator= QPicture::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpicture.h non plain false true 2 QPicture & [0xc820af0a00] } +&{operator= QPicture::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpicture.h non plain false false QPicture & [0xc820af0c00] } +&{play QPicture::play commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpicture.h non plain false false bool [0xc820af1200] } +&{save QPicture::save commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpicture.h non plain false true 2 bool [0xc820af13a0 0xc820af1440] } +&{save QPicture::save commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpicture.h non plain false false bool [0xc820af15e0 0xc820af1660] } +&{setBoundingRect QPicture::setBoundingRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpicture.h non plain false false void [0xc820af1860] } +&{setData QPicture::setData commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpicture.h impure plain false false void [0xc820af1a40 0xc820af1b00] } +&{swap QPicture::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpicture.h non plain false false void [0xc820af1c80] } +&{~QPicture QPicture::~QPicture commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpicture.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QPixelFormat.txt b/internal/binding/dump/QtGui/QPixelFormat.txt new file mode 100755 index 00000000..0df76e9f --- /dev/null +++ b/internal/binding/dump/QtGui/QPixelFormat.txt @@ -0,0 +1,32 @@ +######################################## FUNCTIONS ######################################## +&{QPixelFormat QPixelFormat::QPixelFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpixelformat.h non constructor false false [] } +&{QPixelFormat QPixelFormat::QPixelFormat commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpixelformat.h non constructor false true 2 [0xc82098c940 0xc82098ca00 0xc82098ca80 0xc82098cb00 0xc82098cba0 0xc82098cc40 0xc82098ccc0 0xc82098cd40 0xc82098ce40 0xc82098cee0 0xc82098cfe0 0xc82098d160 0xc82098d1e0] } +&{alphaPosition QPixelFormat::alphaPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpixelformat.h non plain false false AlphaPosition [] } +&{alphaSize QPixelFormat::alphaSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpixelformat.h non plain false false uchar [] } +&{alphaUsage QPixelFormat::alphaUsage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpixelformat.h non plain false false AlphaUsage [] } +&{bitsPerPixel QPixelFormat::bitsPerPixel commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpixelformat.h non plain false false uchar [] } +&{blackSize QPixelFormat::blackSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpixelformat.h non plain false false uchar [] } +&{blueSize QPixelFormat::blueSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpixelformat.h non plain false false uchar [] } +&{brightnessSize QPixelFormat::brightnessSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpixelformat.h non plain false false uchar [] } +&{byteOrder QPixelFormat::byteOrder commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpixelformat.h non plain false false ByteOrder [] } +&{channelCount QPixelFormat::channelCount commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpixelformat.h non plain false false uchar [] } +&{colorModel QPixelFormat::colorModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpixelformat.h non plain false false ColorModel [] } +&{cyanSize QPixelFormat::cyanSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpixelformat.h non plain false false uchar [] } +&{hueSize QPixelFormat::hueSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpixelformat.h non plain false false uchar [] } +&{lightnessSize QPixelFormat::lightnessSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpixelformat.h non plain false false uchar [] } +&{magentaSize QPixelFormat::magentaSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpixelformat.h non plain false false uchar [] } +&{redSize QPixelFormat::redSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpixelformat.h non plain false false uchar [] } +&{saturationSize QPixelFormat::saturationSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpixelformat.h non plain false false uchar [] } +&{greenSize QPixelFormat::greenSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpixelformat.h non plain false false uchar [] } +&{premultiplied QPixelFormat::premultiplied commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpixelformat.h non plain false false AlphaPremultiplied [] } +&{typeInterpretation QPixelFormat::typeInterpretation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpixelformat.h non plain false false TypeInterpretation [] } +&{yellowSize QPixelFormat::yellowSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpixelformat.h non plain false false uchar [] } +&{yuvLayout QPixelFormat::yuvLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qpixelformat.h non plain false false YUVLayout [] } +######################################## ENUMS ######################################## +&{AlphaPosition QPixelFormat::AlphaPosition commendable public [0xc82072d200 0xc82072d2a0]} +&{AlphaPremultiplied QPixelFormat::AlphaPremultiplied commendable public [0xc82072d5e0 0xc82072d660]} +&{AlphaUsage QPixelFormat::AlphaUsage commendable public [0xc82072d8a0 0xc82072d9c0]} +&{ByteOrder QPixelFormat::ByteOrder commendable public [0xc82072dcc0 0xc82072dd80 0xc82072de80]} +&{ColorModel QPixelFormat::ColorModel commendable public [0xc820700260 0xc820700300 0xc820700420 0xc820700520 0xc8207005e0 0xc8207006e0 0xc8207007a0 0xc820700860 0xc820700980]} +&{TypeInterpretation QPixelFormat::TypeInterpretation commendable public [0xc820701bc0 0xc820701c60 0xc820701d40 0xc820701e40]} +&{YUVLayout QPixelFormat::YUVLayout commendable public [0xc8206e8140 0xc8206e81c0 0xc8206e82c0 0xc8206e8360 0xc8206e8460 0xc8206e8580 0xc8206e8600 0xc8206e86c0 0xc8206e8760 0xc8206e8860 0xc8206e8900 0xc8206e89a0 0xc8206e8a40 0xc8206e8b20 0xc8206e8bc0 0xc8206e8ca0]} diff --git a/internal/binding/dump/QtGui/QPixmap.txt b/internal/binding/dump/QtGui/QPixmap.txt new file mode 100755 index 00000000..2deb7e1f --- /dev/null +++ b/internal/binding/dump/QtGui/QPixmap.txt @@ -0,0 +1,57 @@ +######################################## FUNCTIONS ######################################## +&{QPixmap QPixmap::QPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.cpp non constructor false true 3 [0xc820aaa180 0xc820aaa200] } +&{copy QPixmap::copy commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.cpp non plain false false QPixmap [0xc820aaa360] } +&{depth QPixmap::depth commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.cpp non plain false false int [] } +&{fromImage QPixmap::fromImage commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.cpp non plain true false QPixmap [0xc820aaa960 0xc820aaaa60] } +&{fromImageReader QPixmap::fromImageReader commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.cpp non plain true false QPixmap [0xc820aaac80 0xc820aaad20] } +&{height QPixmap::height commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.cpp non plain false false int [] } +&{isNull QPixmap::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.cpp non plain false false bool [] } +&{isQBitmap QPixmap::isQBitmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.cpp non plain false false bool [] } +&{loadFromData QPixmap::loadFromData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.cpp non plain false false bool [0xc820aab740 0xc820aab7e0 0xc820aab880 0xc820aab940] } +&{mask QPixmap::mask commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.cpp non plain false false QBitmap [] } +&{rect QPixmap::rect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.cpp non plain false false QRect [] } +&{scaled QPixmap::scaled commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.cpp non plain false false QPixmap [0xc820aabc80 0xc820aabd60 0xc820aabea0] } +&{scaledToHeight QPixmap::scaledToHeight commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.cpp non plain false false QPixmap [0xc820a940e0 0xc820a941e0] } +&{scaledToWidth QPixmap::scaledToWidth commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.cpp non plain false false QPixmap [0xc820a94440 0xc820a94560] } +&{size QPixmap::size commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.cpp non plain false false QSize [] } +&{trueMatrix QPixmap::trueMatrix commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.cpp non plain true false QTransform [0xc820a948c0 0xc820a949a0 0xc820a94a60] } +&{width QPixmap::width commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.cpp non plain false false int [] } +&{QPixmap QPixmap::QPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non constructor false false [] } +&{QPixmap QPixmap::QPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non constructor false true 6 [0xc820a94ec0] } +&{QPixmap QPixmap::QPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non constructor false true 8 [0xc820a950e0] } +&{QPixmap QPixmap::QPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non constructor false true 4 [0xc820a95300 0xc820a953a0 0xc820a95480] } +&{QPixmap QPixmap::QPixmap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non constructor false true 5 [0xc820a956c0] } +&{alphaChannel QPixmap::alphaChannel compat unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false false QPixmap [] } +&{cacheKey QPixmap::cacheKey commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false false qint64 [] } +&{convertFromImage QPixmap::convertFromImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false false bool [0xc820a95da0 0xc820a95e40] } +&{copy QPixmap::copy commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false true 2 QPixmap [0xc820a95fe0 0xc820a7e060 0xc820a7e0e0 0xc820a7e160] } +&{createHeuristicMask QPixmap::createHeuristicMask commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false false QBitmap [0xc820a7e3e0] } +&{createMaskFromColor QPixmap::createMaskFromColor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false false QBitmap [0xc820a7e600 0xc820a7e680] } +&{defaultDepth QPixmap::defaultDepth commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain true false int [] } +&{detach QPixmap::detach commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false false void [] } +&{devicePixelRatio QPixmap::devicePixelRatio commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false false qreal [] } +&{fill QPixmap::fill commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false false void [0xc820a7f840] } +&{fromImage QPixmap::fromImage commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain true true 2 QPixmap [0xc820a7ff00 0xc820a7ffa0] } +&{hasAlpha QPixmap::hasAlpha commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false false bool [] } +&{hasAlphaChannel QPixmap::hasAlphaChannel commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false false bool [] } +&{load QPixmap::load commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false false bool [0xc820a6ca00 0xc820a6cac0 0xc820a6cb80] } +&{loadFromData QPixmap::loadFromData commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false true 2 bool [0xc820a6cde0 0xc820a6cea0 0xc820a6cf40] } +&{operator QVariant QPixmap::operator QVariant commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false false [] } +&{operator! QPixmap::operator! commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false false bool [] } +&{operator= QPixmap::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false true 2 QPixmap & [0xc820a6d460] } +&{operator= QPixmap::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false false QPixmap & [0xc820a6d640] } +&{save QPixmap::save commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false true 2 bool [0xc820a6d800 0xc820a6d880 0xc820a6d900] } +&{save QPixmap::save commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false false bool [0xc820a6da80 0xc820a6db40 0xc820a6dbc0] } +&{scaled QPixmap::scaled commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false true 2 QPixmap [0xc820a6dd20 0xc820a6dda0 0xc820a6de60 0xc820a6df60] } +&{scroll QPixmap::scroll commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false true 2 void [0xc820a5a100 0xc820a5a180 0xc820a5a200 0xc820a5a280] } +&{scroll QPixmap::scroll commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false false void [0xc820a5a440 0xc820a5a4c0 0xc820a5a580 0xc820a5a620 0xc820a5a6e0 0xc820a5a760 0xc820a5a7e0] } +&{setAlphaChannel QPixmap::setAlphaChannel compat public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false false void [0xc820a5ab00] } +&{setDevicePixelRatio QPixmap::setDevicePixelRatio commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false false void [0xc820a5adc0] } +&{setMask QPixmap::setMask commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false false void [0xc820a5af60] } +&{swap QPixmap::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false false void [0xc820a5b120] } +&{toImage QPixmap::toImage commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false false QImage [] } +&{transformed QPixmap::transformed commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false true 2 QPixmap [0xc820a5b380 0xc820a5b440] } +&{transformed QPixmap::transformed commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain false false QPixmap [0xc820a5b660 0xc820a5b760] } +&{trueMatrix QPixmap::trueMatrix commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non plain true true 2 QMatrix [0xc820a5b960 0xc820a5b9e0 0xc820a5ba60] } +&{~QPixmap QPixmap::~QPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmap.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QPixmapCache.txt b/internal/binding/dump/QtGui/QPixmapCache.txt new file mode 100755 index 00000000..0f8c40bb --- /dev/null +++ b/internal/binding/dump/QtGui/QPixmapCache.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{cacheLimit QPixmapCache::cacheLimit commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmapcache.h non plain true false int [] } +&{clear QPixmapCache::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmapcache.h non plain true false void [] } +&{find QPixmapCache::find commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmapcache.h non plain true true 3 bool [0xc820a26a80 0xc820a26b20] } +&{find QPixmapCache::find commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmapcache.h non plain true false bool [0xc820a26f20 0xc820a26fa0] } +&{insert QPixmapCache::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmapcache.h non plain true true 2 Key [0xc820a27160] } +&{insert QPixmapCache::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmapcache.h non plain true false bool [0xc820a27320 0xc820a273a0] } +&{remove QPixmapCache::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmapcache.h non plain true true 2 void [0xc820a275a0] } +&{remove QPixmapCache::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmapcache.h non plain true false void [0xc820a27780] } +&{replace QPixmapCache::replace commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmapcache.h non plain true false bool [0xc820a27940 0xc820a279c0] } +&{setCacheLimit QPixmapCache::setCacheLimit commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/image/qpixmapcache.h non plain true false void [0xc820a27ba0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QPlatformGraphicsBuffer.txt b/internal/binding/dump/QtGui/QPlatformGraphicsBuffer.txt new file mode 100755 index 00000000..c60f43e0 --- /dev/null +++ b/internal/binding/dump/QtGui/QPlatformGraphicsBuffer.txt @@ -0,0 +1,20 @@ +######################################## FUNCTIONS ######################################## +&{QPlatformGraphicsBuffer QPlatformGraphicsBuffer::QPlatformGraphicsBuffer commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformgraphicsbuffer.h non constructor false false [0xc820aeab40 0xc820aeac40] } +&{bindToTexture QPlatformGraphicsBuffer::bindToTexture commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformgraphicsbuffer.h impure plain false false bool [0xc820aeaee0] } +&{byteCount QPlatformGraphicsBuffer::byteCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformgraphicsbuffer.h non plain false false int [] } +&{bytesPerLine QPlatformGraphicsBuffer::bytesPerLine commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformgraphicsbuffer.h impure plain false false int [] } +&{data QPlatformGraphicsBuffer::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformgraphicsbuffer.h impure plain false true 2 uchar * [] } +&{data QPlatformGraphicsBuffer::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformgraphicsbuffer.h impure plain false false const uchar * [] } +&{doLock QPlatformGraphicsBuffer::doLock commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformgraphicsbuffer.h pure plain false false bool [0xc820aeb720 0xc820aeb7e0] } +&{doUnlock QPlatformGraphicsBuffer::doUnlock commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformgraphicsbuffer.h pure plain false false void [] } +&{format QPlatformGraphicsBuffer::format commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformgraphicsbuffer.h non plain false false QPixelFormat [] } +&{isLocked QPlatformGraphicsBuffer::isLocked commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformgraphicsbuffer.h non plain false false AccessTypes [] } +&{lock QPlatformGraphicsBuffer::lock commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformgraphicsbuffer.h non plain false false bool [0xc820aebec0 0xc820aebfa0] } +&{origin QPlatformGraphicsBuffer::origin commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformgraphicsbuffer.h impure plain false false Origin [] } +&{size QPlatformGraphicsBuffer::size commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformgraphicsbuffer.h non plain false false QSize [] } +&{unlock QPlatformGraphicsBuffer::unlock commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformgraphicsbuffer.h non plain false false void [] } +&{unlocked QPlatformGraphicsBuffer::unlocked commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformgraphicsbuffer.h non signal false false void [0xc820670660] } +&{~QPlatformGraphicsBuffer QPlatformGraphicsBuffer::~QPlatformGraphicsBuffer commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformgraphicsbuffer.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{AccessType QPlatformGraphicsBuffer::AccessType commendable public QPlatformGraphicsBuffer::AccessTypes [0xc820aea140 0xc820aea200 0xc820aea2a0 0xc820aea340 0xc820aea420]} +&{Origin QPlatformGraphicsBuffer::Origin commendable public [0xc820aea660 0xc820aea720]} diff --git a/internal/binding/dump/QtGui/QPlatformSurfaceEvent.txt b/internal/binding/dump/QtGui/QPlatformSurfaceEvent.txt new file mode 100755 index 00000000..51b55649 --- /dev/null +++ b/internal/binding/dump/QtGui/QPlatformSurfaceEvent.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{QPlatformSurfaceEvent QPlatformSurfaceEvent::QPlatformSurfaceEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [0xc820a543a0] } +&{surfaceEventType QPlatformSurfaceEvent::surfaceEventType commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false SurfaceEventType [] } +######################################## ENUMS ######################################## +&{SurfaceEventType QPlatformSurfaceEvent::SurfaceEventType commendable public [0xc82077bf40 0xc820a54000]} diff --git a/internal/binding/dump/QtGui/QPlatformSystemTrayIcon.txt b/internal/binding/dump/QtGui/QPlatformSystemTrayIcon.txt new file mode 100755 index 00000000..4385341d --- /dev/null +++ b/internal/binding/dump/QtGui/QPlatformSystemTrayIcon.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{activated QPlatformSystemTrayIcon::activated commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformsystemtrayicon.h non signal false false void [0xc820671ac0] } +&{cleanup QPlatformSystemTrayIcon::cleanup commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformsystemtrayicon.h pure plain false false void [] } +&{createMenu QPlatformSystemTrayIcon::createMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformsystemtrayicon.h impure plain false false QPlatformMenu * [] } +&{geometry QPlatformSystemTrayIcon::geometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformsystemtrayicon.h pure plain false false QRect [] } +&{init QPlatformSystemTrayIcon::init commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformsystemtrayicon.h pure plain false false void [] } +&{isSystemTrayAvailable QPlatformSystemTrayIcon::isSystemTrayAvailable commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformsystemtrayicon.h pure plain false false bool [] } +&{messageClicked QPlatformSystemTrayIcon::messageClicked commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformsystemtrayicon.h non signal false false void [] } +&{showMessage QPlatformSystemTrayIcon::showMessage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformsystemtrayicon.h pure plain false false void [0xc82065a760 0xc82065a880 0xc82065a960 0xc82065aa80 0xc82065abe0] } +&{supportsMessages QPlatformSystemTrayIcon::supportsMessages commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformsystemtrayicon.h pure plain false false bool [] } +&{updateIcon QPlatformSystemTrayIcon::updateIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformsystemtrayicon.h pure plain false false void [0xc82065b0c0] } +&{updateMenu QPlatformSystemTrayIcon::updateMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformsystemtrayicon.h pure plain false false void [0xc82065b400] } +&{updateToolTip QPlatformSystemTrayIcon::updateToolTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qplatformsystemtrayicon.h pure plain false false void [0xc82065b6c0] } +######################################## ENUMS ######################################## +&{ActivationReason QPlatformSystemTrayIcon::ActivationReason commendable public [0xc820670dc0 0xc820670e60 0xc820670f80 0xc820671040 0xc8206711c0]} +&{MessageIcon QPlatformSystemTrayIcon::MessageIcon commendable public [0xc820671460 0xc820671500 0xc8206715a0 0xc820671640]} diff --git a/internal/binding/dump/QtGui/QPolygon.txt b/internal/binding/dump/QtGui/QPolygon.txt new file mode 100755 index 00000000..4b63664b --- /dev/null +++ b/internal/binding/dump/QtGui/QPolygon.txt @@ -0,0 +1,27 @@ +######################################## FUNCTIONS ######################################## +&{QPolygon QPolygon::QPolygon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.cpp non constructor false true 5 [0xc82217cb80 0xc82217cc00] } +&{containsPoint QPolygon::containsPoint commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.cpp non plain false false bool [0xc82217cdc0 0xc82217ce40] } +&{putPoints QPolygon::putPoints commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.cpp non plain false true 3 void [0xc82217d000 0xc82217d080 0xc82217d100 0xc82217d180] } +&{QPolygon QPolygon::QPolygon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non constructor false false [] } +&{QPolygon QPolygon::QPolygon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non constructor false true 3 [0xc82217d440] } +&{QPolygon QPolygon::QPolygon commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non constructor false true 4 [0xc82217d620] } +&{QPolygon QPolygon::QPolygon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non constructor false true 2 [0xc82217d840] } +&{boundingRect QPolygon::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false false QRect [] } +&{intersected QPolygon::intersected commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false false QPolygon [0xc82217dd60] } +&{operator QVariant QPolygon::operator QVariant commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false false [] } +&{point QPolygon::point commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false true 2 QPoint [0xc822194040] } +&{point QPolygon::point commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false false void [0xc8221941a0 0xc822194220 0xc8221942a0] } +&{putPoints QPolygon::putPoints commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false false void [0xc822194460 0xc8221944e0 0xc822194560 0xc8221945e0 0xc822194680] } +&{setPoint QPolygon::setPoint commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false true 2 void [0xc822194b00 0xc822194b80] } +&{setPoint QPolygon::setPoint commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false false void [0xc822194d60 0xc822194de0 0xc822194e60] } +&{setPoints QPolygon::setPoints commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false false void [0xc822195020 0xc8221950a0] } +&{setPoints QPolygon::setPoints commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false true 2 void [0xc822195260 0xc8221952e0 0xc822195360 0xc8221953e0] } +&{subtracted QPolygon::subtracted commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false false QPolygon [0xc8221955a0] } +&{swap QPolygon::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false false void [0xc822195720] } +&{translate QPolygon::translate commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false true 2 void [0xc8221958e0] } +&{translate QPolygon::translate commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false false void [0xc822195ac0 0xc822195b40] } +&{translated QPolygon::translated commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false true 2 QPolygon [0xc822195d00] } +&{translated QPolygon::translated commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false false QPolygon [0xc822195ec0 0xc822195f40] } +&{united QPolygon::united commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false false QPolygon [0xc8221a40a0] } +&{~QPolygon QPolygon::~QPolygon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QPolygonF.txt b/internal/binding/dump/QtGui/QPolygonF.txt new file mode 100755 index 00000000..1a08cf91 --- /dev/null +++ b/internal/binding/dump/QtGui/QPolygonF.txt @@ -0,0 +1,22 @@ +######################################## FUNCTIONS ######################################## +&{QPolygonF QPolygonF::QPolygonF commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.cpp non constructor false true 6 [0xc8221a4400] } +&{QPolygonF QPolygonF::QPolygonF commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.cpp non constructor false true 5 [0xc8221a45c0] } +&{containsPoint QPolygonF::containsPoint commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.cpp non plain false false bool [0xc8221a4780 0xc8221a4800] } +&{QPolygonF QPolygonF::QPolygonF commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non constructor false false [] } +&{QPolygonF QPolygonF::QPolygonF commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non constructor false true 3 [0xc8221a4ae0] } +&{QPolygonF QPolygonF::QPolygonF commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non constructor false true 4 [0xc8221a4d00] } +&{QPolygonF QPolygonF::QPolygonF commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non constructor false true 2 [0xc8221a4f20] } +&{boundingRect QPolygonF::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false false QRectF [] } +&{intersected QPolygonF::intersected commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false false QPolygonF [0xc8221a5220] } +&{isClosed QPolygonF::isClosed commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false false bool [] } +&{operator QVariant QPolygonF::operator QVariant commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false false [] } +&{subtracted QPolygonF::subtracted commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false false QPolygonF [0xc8221a56a0] } +&{swap QPolygonF::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false false void [0xc8221a5860] } +&{toPolygon QPolygonF::toPolygon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false false QPolygon [] } +&{translate QPolygonF::translate commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false false void [0xc8221a5b20] } +&{translate QPolygonF::translate commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false true 2 void [0xc8221a5ce0 0xc8221a5d60] } +&{translated QPolygonF::translated commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false false QPolygonF [0xc8221a5f40] } +&{translated QPolygonF::translated commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false true 2 QPolygonF [0xc8221bc100 0xc8221bc180] } +&{united QPolygonF::united commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non plain false false QPolygonF [0xc8221bc360] } +&{~QPolygonF QPolygonF::~QPolygonF commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpolygon.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QQuaternion.txt b/internal/binding/dump/QtGui/QQuaternion.txt new file mode 100755 index 00000000..2a984a2a --- /dev/null +++ b/internal/binding/dump/QtGui/QQuaternion.txt @@ -0,0 +1,50 @@ +######################################## FUNCTIONS ######################################## +&{QQuaternion QQuaternion::QQuaternion commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non constructor false false [] } +&{QQuaternion QQuaternion::QQuaternion commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non constructor false true 5 [0xc8202c3740] } +&{QQuaternion QQuaternion::QQuaternion commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non constructor false true 4 [0xc8202c3ba0 0xc8202c3d40] } +&{QQuaternion QQuaternion::QQuaternion commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non constructor false true 3 [0xc8202b2180 0xc8202b22a0 0xc8202b2340 0xc8202b2420] } +&{conjugated QQuaternion::conjugated commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false QQuaternion [] } +&{dotProduct QQuaternion::dotProduct commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain true false float [0xc8202b2d40 0xc8202b2e80] } +&{fromAxes QQuaternion::fromAxes commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain true false QQuaternion [0xc8202b3340 0xc8202b3520 0xc8202b3700] } +&{fromAxisAndAngle QQuaternion::fromAxisAndAngle commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain true false QQuaternion [0xc8202b39e0 0xc8202b3ac0] } +&{fromAxisAndAngle QQuaternion::fromAxisAndAngle commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain true true 2 QQuaternion [0xc8202b3d80 0xc8202b3e80 0xc8202b3f60 0xc82029a060] } +&{fromDirection QQuaternion::fromDirection commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain true false QQuaternion [0xc82029a380 0xc82029a4c0] } +&{fromEulerAngles QQuaternion::fromEulerAngles commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain true true 2 QQuaternion [0xc82029a940] } +&{fromEulerAngles QQuaternion::fromEulerAngles commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain true false QQuaternion [0xc82029ada0 0xc82029ae60 0xc82029af60] } +&{fromRotationMatrix QQuaternion::fromRotationMatrix commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain true false QQuaternion [0xc82029b360] } +&{getAxes QQuaternion::getAxes commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false void [0xc82029b7c0 0xc82029b8a0 0xc82029b980] } +&{getAxisAndAngle QQuaternion::getAxisAndAngle commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false true 2 void [0xc82029bd20 0xc82029be20] } +&{getAxisAndAngle QQuaternion::getAxisAndAngle commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false void [0xc82027a1e0 0xc82027a2c0 0xc82027a3a0 0xc82027a4a0] } +&{getEulerAngles QQuaternion::getEulerAngles commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false void [0xc82027a780 0xc82027a860 0xc82027a980] } +&{inverted QQuaternion::inverted commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false QQuaternion [] } +&{isIdentity QQuaternion::isIdentity commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false bool [] } +&{isNull QQuaternion::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false bool [] } +&{length QQuaternion::length commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false float [] } +&{lengthSquared QQuaternion::lengthSquared commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false float [] } +&{nlerp QQuaternion::nlerp commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain true false QQuaternion [0xc82027b3a0 0xc82027b520 0xc82027b600] } +&{normalize QQuaternion::normalize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false void [] } +&{normalized QQuaternion::normalized commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false QQuaternion [] } +&{operator QVariant QQuaternion::operator QVariant commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false [] } +&{operator*= QQuaternion::operator*= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false true 2 QQuaternion & [0xc82027bd00] } +&{operator*= QQuaternion::operator*= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false QQuaternion & [0xc82027bfa0] } +&{operator+= QQuaternion::operator+= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false QQuaternion & [0xc8202742e0] } +&{operator-= QQuaternion::operator-= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false QQuaternion & [0xc820274700] } +&{operator/= QQuaternion::operator/= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false QQuaternion & [0xc820274be0] } +&{rotatedVector QQuaternion::rotatedVector commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false QVector3D [0xc820274fc0] } +&{rotationTo QQuaternion::rotationTo commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain true false QQuaternion [0xc820275420 0xc820275620] } +&{scalar QQuaternion::scalar commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false float [] } +&{setScalar QQuaternion::setScalar commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false void [0xc820275d60] } +&{setVector QQuaternion::setVector commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false void [0xc82026a240] } +&{setVector QQuaternion::setVector commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false true 2 void [0xc82026a740 0xc82026a860 0xc82026a940] } +&{setX QQuaternion::setX commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false void [0xc82026ada0] } +&{setY QQuaternion::setY commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false void [0xc82026b1e0] } +&{setZ QQuaternion::setZ commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false void [0xc82026b620] } +&{slerp QQuaternion::slerp commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain true false QQuaternion [0xc82026ba60 0xc82026bc60 0xc82026be80] } +&{toEulerAngles QQuaternion::toEulerAngles commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false QVector3D [] } +&{toRotationMatrix QQuaternion::toRotationMatrix commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false QMatrix3x3 [] } +&{toVector4D QQuaternion::toVector4D commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false QVector4D [] } +&{vector QQuaternion::vector commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false QVector3D [] } +&{x QQuaternion::x commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false float [] } +&{y QQuaternion::y commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false float [] } +&{z QQuaternion::z commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qquaternion.h non plain false false float [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QRadialGradient.txt b/internal/binding/dump/QtGui/QRadialGradient.txt new file mode 100755 index 00000000..ee682da2 --- /dev/null +++ b/internal/binding/dump/QtGui/QRadialGradient.txt @@ -0,0 +1,21 @@ +######################################## FUNCTIONS ######################################## +&{QRadialGradient QRadialGradient::QRadialGradient commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non constructor false false [] } +&{QRadialGradient QRadialGradient::QRadialGradient commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non constructor false true 6 [0xc821f9ee00 0xc821f9ee80 0xc821f9ef00 0xc821f9ef80] } +&{QRadialGradient QRadialGradient::QRadialGradient commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non constructor false true 4 [0xc821f9f120 0xc821f9f1a0] } +&{QRadialGradient QRadialGradient::QRadialGradient commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non constructor false true 2 [0xc821f9f340 0xc821f9f3c0 0xc821f9f440] } +&{QRadialGradient QRadialGradient::QRadialGradient commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non constructor false true 7 [0xc821f9f600 0xc821f9f680 0xc821f9f700 0xc821f9f780 0xc821f9f820 0xc821f9f8a0] } +&{QRadialGradient QRadialGradient::QRadialGradient commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non constructor false true 5 [0xc821f9fa40 0xc821f9fac0 0xc821f9fb40] } +&{QRadialGradient QRadialGradient::QRadialGradient commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non constructor false true 3 [0xc821f9fce0 0xc821f9fd60 0xc821f9fde0 0xc821f9fe60 0xc821f9ff00] } +&{center QRadialGradient::center commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false QPointF [] } +&{centerRadius QRadialGradient::centerRadius commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false qreal [] } +&{focalPoint QRadialGradient::focalPoint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false QPointF [] } +&{focalRadius QRadialGradient::focalRadius commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false qreal [] } +&{radius QRadialGradient::radius commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false qreal [] } +&{setCenter QRadialGradient::setCenter commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false void [0xc821fb45c0] } +&{setCenter QRadialGradient::setCenter commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false true 2 void [0xc821fb47a0 0xc821fb4820] } +&{setCenterRadius QRadialGradient::setCenterRadius commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false void [0xc821fb49c0] } +&{setFocalPoint QRadialGradient::setFocalPoint commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false void [0xc821fb4b60] } +&{setFocalPoint QRadialGradient::setFocalPoint commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false true 2 void [0xc821fb4d20 0xc821fb4da0] } +&{setFocalRadius QRadialGradient::setFocalRadius commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false void [0xc821fb4f40] } +&{setRadius QRadialGradient::setRadius commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qbrush.h non plain false false void [0xc821fb5120] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QRasterPaintEngine.txt b/internal/binding/dump/QtGui/QRasterPaintEngine.txt new file mode 100755 index 00000000..3b43a554 --- /dev/null +++ b/internal/binding/dump/QtGui/QRasterPaintEngine.txt @@ -0,0 +1,24 @@ +######################################## FUNCTIONS ######################################## +&{drawPoints QRasterPaintEngine::drawPoints commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine_raster.cpp impure plain false true 2 void [0xc822c866e0 0xc822c86760] } +&{QRasterPaintEngine QRasterPaintEngine::QRasterPaintEngine commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine_raster_p.h non constructor false false [0xc822c86a20] } +&{begin QRasterPaintEngine::begin commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine_raster_p.h impure plain false false bool [0xc822c86c40] } +&{drawEllipse QRasterPaintEngine::drawEllipse commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine_raster_p.h impure plain false false void [0xc822c96080] } +&{drawImage QRasterPaintEngine::drawImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine_raster_p.h impure plain false false void [0xc822c96260 0xc822c962e0 0xc822c96360 0xc822c96400] } +&{drawLines QRasterPaintEngine::drawLines commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine_raster_p.h impure plain false false void [0xc822c96600 0xc822c96680] } +&{drawLines QRasterPaintEngine::drawLines commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine_raster_p.h impure plain false true 2 void [0xc822c96840 0xc822c968c0] } +&{drawPixmap QRasterPaintEngine::drawPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine_raster_p.h impure plain false false void [0xc822c96a80 0xc822c96b00 0xc822c96b80] } +&{drawPoints QRasterPaintEngine::drawPoints commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine_raster_p.h impure plain false false void [0xc822c96d40 0xc822c96dc0] } +&{drawPolygon QRasterPaintEngine::drawPolygon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine_raster_p.h impure plain false true 2 void [0xc822c96f80 0xc822c97000 0xc822c97080] } +&{drawPolygon QRasterPaintEngine::drawPolygon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine_raster_p.h impure plain false false void [0xc822c97240 0xc822c972c0 0xc822c97340] } +&{drawRects QRasterPaintEngine::drawRects commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine_raster_p.h impure plain false false void [0xc822c97500 0xc822c97580] } +&{drawRects QRasterPaintEngine::drawRects commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine_raster_p.h impure plain false true 2 void [0xc822c97740 0xc822c977c0] } +&{drawStaticTextItem QRasterPaintEngine::drawStaticTextItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine_raster_p.h impure plain false false void [0xc822c979a0] } +&{drawTextItem QRasterPaintEngine::drawTextItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine_raster_p.h impure plain false false void [0xc822c97ba0 0xc822c97c40] } +&{drawTiledPixmap QRasterPaintEngine::drawTiledPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine_raster_p.h impure plain false false void [0xc822c97de0 0xc822c97e60 0xc822c97ee0] } +&{end QRasterPaintEngine::end commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine_raster_p.h impure plain false false bool [] } +&{fillRect QRasterPaintEngine::fillRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine_raster_p.h impure plain false false void [0xc822caaf00 0xc822caaf80] } +&{fillRect QRasterPaintEngine::fillRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine_raster_p.h impure plain false true 2 void [0xc822cab140 0xc822cab1c0] } +&{shouldDrawCachedGlyphs QRasterPaintEngine::shouldDrawCachedGlyphs commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine_raster_p.h impure plain false false bool [0xc822cbc480 0xc822cbc520] } +&{type QRasterPaintEngine::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine_raster_p.h impure plain false false Type [] } +&{~QRasterPaintEngine QRasterPaintEngine::~QRasterPaintEngine commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine_raster_p.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QRasterWindow.txt b/internal/binding/dump/QtGui/QRasterWindow.txt new file mode 100755 index 00000000..233b5a28 --- /dev/null +++ b/internal/binding/dump/QtGui/QRasterWindow.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{QRasterWindow QRasterWindow::QRasterWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qrasterwindow.h non constructor false false [0xc82065bc60] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QRawFont.txt b/internal/binding/dump/QtGui/QRawFont.txt new file mode 100755 index 00000000..951e688b --- /dev/null +++ b/internal/binding/dump/QtGui/QRawFont.txt @@ -0,0 +1,46 @@ +######################################## FUNCTIONS ######################################## +&{QRawFont QRawFont::QRawFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non constructor false false [] } +&{QRawFont QRawFont::QRawFont commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non constructor false true 3 [0xc8232558c0 0xc823255980 0xc823255a60] } +&{QRawFont QRawFont::QRawFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non constructor false true 4 [0xc823255cc0] } +&{QRawFont QRawFont::QRawFont commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non constructor false true 2 [0xc823255e80 0xc823255f00 0xc823255fe0] } +&{advancesForGlyphIndexes QRawFont::advancesForGlyphIndexes commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false true 3 QVector [0xc823264240] } +&{advancesForGlyphIndexes QRawFont::advancesForGlyphIndexes commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false QVector [0xc823264440 0xc823264500] } +&{advancesForGlyphIndexes QRawFont::advancesForGlyphIndexes commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false true 4 bool [0xc8232646a0 0xc823264720 0xc8232647a0] } +&{advancesForGlyphIndexes QRawFont::advancesForGlyphIndexes commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false true 2 bool [0xc823264940 0xc8232649c0 0xc823264a40 0xc823264ac0] } +&{alphaMapForGlyph QRawFont::alphaMapForGlyph commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false QImage [0xc823264ca0 0xc823264d40 0xc823264de0] } +&{ascent QRawFont::ascent commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false qreal [] } +&{averageCharWidth QRawFont::averageCharWidth commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false qreal [] } +&{boundingRect QRawFont::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false QRectF [0xc823265180] } +&{descent QRawFont::descent commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false qreal [] } +&{familyName QRawFont::familyName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false QString [] } +&{fontTable QRawFont::fontTable commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false QByteArray [0xc823265540] } +&{fromFont QRawFont::fromFont commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain true false QRawFont [0xc823265700 0xc8232657c0] } +&{glyphIndexesForChars QRawFont::glyphIndexesForChars commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false bool [0xc823265a20 0xc823265aa0 0xc823265b20 0xc823265ba0] } +&{glyphIndexesForString QRawFont::glyphIndexesForString commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false QVector [0xc823265da0] } +&{hintingPreference QRawFont::hintingPreference commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false QFont::HintingPreference [] } +&{isValid QRawFont::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false bool [] } +&{leading QRawFont::leading commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false qreal [] } +&{lineThickness QRawFont::lineThickness commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false qreal [] } +&{loadFromData QRawFont::loadFromData commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false void [0xc823278420 0xc8232784e0 0xc8232785a0] } +&{loadFromFile QRawFont::loadFromFile commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false void [0xc8232787e0 0xc823278860 0xc823278920] } +&{maxCharWidth QRawFont::maxCharWidth commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false qreal [] } +&{operator!= QRawFont::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false bool [0xc823278c60] } +&{operator= QRawFont::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false QRawFont & [0xc823278e20] } +&{operator== QRawFont::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false bool [0xc823278fe0] } +&{pathForGlyph QRawFont::pathForGlyph commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false QPainterPath [0xc8232791a0] } +&{pixelSize QRawFont::pixelSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false qreal [] } +&{setPixelSize QRawFont::setPixelSize commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false void [0xc823279460] } +&{style QRawFont::style commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false QFont::Style [] } +&{styleName QRawFont::styleName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false QString [] } +&{supportedWritingSystems QRawFont::supportedWritingSystems commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false QList [] } +&{supportsCharacter QRawFont::supportsCharacter commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false bool [0xc823279900] } +&{supportsCharacter QRawFont::supportsCharacter commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false true 2 bool [0xc823279b00] } +&{swap QRawFont::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false void [0xc823279c80] } +&{underlinePosition QRawFont::underlinePosition commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false qreal [] } +&{unitsPerEm QRawFont::unitsPerEm commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false qreal [] } +&{weight QRawFont::weight commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false int [] } +&{xHeight QRawFont::xHeight commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non plain false false qreal [] } +&{~QRawFont QRawFont::~QRawFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qrawfont.h non destructor false false [] } +######################################## ENUMS ######################################## +&{AntialiasingType QRawFont::AntialiasingType commendable public [0xc8232550c0 0xc8232551a0]} +&{LayoutFlag QRawFont::LayoutFlag commendable public QRawFont::LayoutFlags [0xc823255400 0xc823255480 0xc823255500]} diff --git a/internal/binding/dump/QtGui/QRegExpValidator.txt b/internal/binding/dump/QtGui/QRegExpValidator.txt new file mode 100755 index 00000000..3c65f666 --- /dev/null +++ b/internal/binding/dump/QtGui/QRegExpValidator.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{setRegExp QRegExpValidator::setRegExp commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.cpp non plain false false void [0xc823114a60] } +&{QRegExpValidator QRegExpValidator::QRegExpValidator commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h non constructor false false [0xc823114c00] } +&{QRegExpValidator QRegExpValidator::QRegExpValidator commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h non constructor false true 2 [0xc823114da0 0xc823114e20] } +&{regExp QRegExpValidator::regExp commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h non plain false false const QRegExp & [] } +&{validate QRegExpValidator::validate commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h impure plain false false QValidator::State [0xc823115340 0xc8231153c0] } +&{~QRegExpValidator QRegExpValidator::~QRegExpValidator commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QRegion.txt b/internal/binding/dump/QtGui/QRegion.txt new file mode 100755 index 00000000..6c0bda25 --- /dev/null +++ b/internal/binding/dump/QtGui/QRegion.txt @@ -0,0 +1,49 @@ +######################################## FUNCTIONS ######################################## +&{QRegion QRegion::QRegion commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.cpp non constructor false false [] } +&{QRegion QRegion::QRegion commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.cpp non constructor false true 5 [0xc8221bc880] } +&{QRegion QRegion::QRegion commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.cpp non constructor false true 3 [0xc8221bc9e0 0xc8221bca60] } +&{QRegion QRegion::QRegion commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.cpp non constructor false true 6 [0xc8221bcbc0 0xc8221bcc40] } +&{QRegion QRegion::QRegion commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.cpp non constructor false true 4 [0xc8221bcde0] } +&{boundingRect QRegion::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.cpp non plain false false QRect [] } +&{contains QRegion::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.cpp non plain false false bool [0xc8221bd220] } +&{contains QRegion::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.cpp non plain false true 2 bool [0xc8221bd400] } +&{intersected QRegion::intersected commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.cpp non plain false true 2 QRegion [0xc8221bdb80] } +&{intersected QRegion::intersected commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.cpp non plain false false QRegion [0xc8221bdd40] } +&{intersects QRegion::intersects commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.cpp non plain false true 2 bool [0xc8221bdf00] } +&{isEmpty QRegion::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.cpp non plain false false bool [] } +&{isNull QRegion::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.cpp non plain false false bool [] } +&{operator&= QRegion::operator&= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.cpp non plain false false QRegion & [0xc8221d2220] } +&{operator+= QRegion::operator+= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.cpp non plain false true 2 QRegion & [0xc8221d23e0] } +&{operator+= QRegion::operator+= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.cpp non plain false false QRegion & [0xc8221d25a0] } +&{operator-= QRegion::operator-= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.cpp non plain false false QRegion & [0xc8221d2760] } +&{operator= QRegion::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.cpp non plain false false QRegion & [0xc8221d2920] } +&{operator== QRegion::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.cpp non plain false false bool [0xc8221d2ae0] } +&{rectCount QRegion::rectCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.cpp non plain false false int [] } +&{rects QRegion::rects commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.cpp non plain false false QVector [] } +&{setRects QRegion::setRects commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.cpp non plain false false void [0xc8221d2e40 0xc8221d2ec0] } +&{subtracted QRegion::subtracted commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.cpp non plain false false QRegion [0xc8221d3080] } +&{translate QRegion::translate commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.cpp non plain false false void [0xc8221d3260 0xc8221d32e0] } +&{united QRegion::united commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.cpp non plain false true 2 QRegion [0xc8221d3440] } +&{united QRegion::united commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.cpp non plain false false QRegion [0xc8221d35a0] } +&{xored QRegion::xored commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.cpp non plain false false QRegion [0xc8221d3700] } +&{QRegion QRegion::QRegion commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.h non constructor false true 2 [0xc8221d3ae0 0xc8221d3b60 0xc8221d3be0 0xc8221d3c60 0xc8221d3d00] } +&{intersects QRegion::intersects commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.h non plain false false bool [0xc8221e8520] } +&{operator QVariant QRegion::operator QVariant commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.h non plain false false [] } +&{operator!= QRegion::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.h non plain false false bool [0xc8221e8840] } +&{operator& QRegion::operator& commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.h non plain false true 2 QRegion [0xc8221e8a00] } +&{operator& QRegion::operator& commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.h non plain false false QRegion [0xc8221e8bc0] } +&{operator&= QRegion::operator&= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.h non plain false true 2 QRegion & [0xc8221e8d80] } +&{operator+ QRegion::operator+ commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.h non plain false true 2 QRegion [0xc8221e8f40] } +&{operator+ QRegion::operator+ commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.h non plain false false QRegion [0xc8221e9100] } +&{operator- QRegion::operator- commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.h non plain false false QRegion [0xc8221e92c0] } +&{operator= QRegion::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.h non plain false true 2 QRegion & [0xc8221e9480] } +&{operator^ QRegion::operator^ commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.h non plain false false QRegion [0xc8221e9640] } +&{operator^= QRegion::operator^= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.h non plain false false QRegion & [0xc8221e9800] } +&{operator| QRegion::operator| commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.h non plain false false QRegion [0xc8221e99c0] } +&{operator|= QRegion::operator|= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.h non plain false false QRegion & [0xc8221e9b80] } +&{swap QRegion::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.h non plain false false void [0xc8221e9ec0] } +&{translate QRegion::translate commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.h non plain false true 2 void [0xc8221fe080] } +&{translated QRegion::translated commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.h non plain false true 2 QRegion [0xc8221fe240] } +&{translated QRegion::translated commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qregion.h non plain false false QRegion [0xc8221fe400 0xc8221fe480] } +######################################## ENUMS ######################################## +&{RegionType QRegion::RegionType commendable public [0xc8221d3900 0xc8221d3980]} diff --git a/internal/binding/dump/QtGui/QRegularExpressionValidator.txt b/internal/binding/dump/QtGui/QRegularExpressionValidator.txt new file mode 100755 index 00000000..8ebf19db --- /dev/null +++ b/internal/binding/dump/QtGui/QRegularExpressionValidator.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{regularExpression QRegularExpressionValidator::regularExpression commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.cpp non plain false false QRegularExpression [] } +&{setRegularExpression QRegularExpressionValidator::setRegularExpression commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.cpp non slot false false void [0xc823115c40] } +&{QRegularExpressionValidator QRegularExpressionValidator::QRegularExpressionValidator commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h non constructor false false [0xc823115ea0] } +&{QRegularExpressionValidator QRegularExpressionValidator::QRegularExpressionValidator commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h non constructor false true 2 [0xc8232ce060 0xc8232ce140] } +&{regularExpressionChanged QRegularExpressionValidator::regularExpressionChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h non signal false false void [0xc8232ce440] } +&{validate QRegularExpressionValidator::validate commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h impure plain false false QValidator::State [0xc8232ce660 0xc8232ce6e0] } +&{~QRegularExpressionValidator QRegularExpressionValidator::~QRegularExpressionValidator commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QResizeEvent.txt b/internal/binding/dump/QtGui/QResizeEvent.txt new file mode 100755 index 00000000..c9ffa3ee --- /dev/null +++ b/internal/binding/dump/QtGui/QResizeEvent.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{QResizeEvent QResizeEvent::QResizeEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [0xc820a54b00 0xc820a54ba0] } +&{oldSize QResizeEvent::oldSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QSize & [] } +&{size QResizeEvent::size commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QSize & [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QScreen.txt b/internal/binding/dump/QtGui/QScreen.txt new file mode 100755 index 00000000..9b62a680 --- /dev/null +++ b/internal/binding/dump/QtGui/QScreen.txt @@ -0,0 +1,44 @@ +######################################## FUNCTIONS ######################################## +&{availableGeometry QScreen::availableGeometry commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.cpp non plain false false QRect [] } +&{availableSize QScreen::availableSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.cpp non plain false false QSize [] } +&{availableVirtualGeometry QScreen::availableVirtualGeometry commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.cpp non plain false false QRect [] } +&{availableVirtualSize QScreen::availableVirtualSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.cpp non plain false false QSize [] } +&{depth QScreen::depth commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.cpp non plain false false int [] } +&{devicePixelRatio QScreen::devicePixelRatio commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.cpp non plain false false qreal [] } +&{geometry QScreen::geometry commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.cpp non plain false false QRect [] } +&{logicalDotsPerInch QScreen::logicalDotsPerInch commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.cpp non plain false false qreal [] } +&{logicalDotsPerInchX QScreen::logicalDotsPerInchX commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.cpp non plain false false qreal [] } +&{logicalDotsPerInchY QScreen::logicalDotsPerInchY commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.cpp non plain false false qreal [] } +&{name QScreen::name commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.cpp non plain false false QString [] } +&{nativeOrientation QScreen::nativeOrientation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.cpp non plain false false Qt::ScreenOrientation [] } +&{orientation QScreen::orientation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.cpp non plain false false Qt::ScreenOrientation [] } +&{physicalDotsPerInch QScreen::physicalDotsPerInch commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.cpp non plain false false qreal [] } +&{physicalDotsPerInchX QScreen::physicalDotsPerInchX commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.cpp non plain false false qreal [] } +&{physicalDotsPerInchY QScreen::physicalDotsPerInchY commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.cpp non plain false false qreal [] } +&{physicalSize QScreen::physicalSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.cpp non plain false false QSizeF [] } +&{primaryOrientation QScreen::primaryOrientation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.cpp non plain false false Qt::ScreenOrientation [] } +&{refreshRate QScreen::refreshRate commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.cpp non plain false false qreal [] } +&{size QScreen::size commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.cpp non plain false false QSize [] } +&{virtualGeometry QScreen::virtualGeometry commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.cpp non plain false false QRect [] } +&{virtualSize QScreen::virtualSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.cpp non plain false false QSize [] } +&{angleBetween QScreen::angleBetween commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.h non plain false false int [0xc820606060 0xc820606200] } +&{availableGeometryChanged QScreen::availableGeometryChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.h non signal false false void [0xc820606680] } +&{geometryChanged QScreen::geometryChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.h non signal false false void [0xc820606a20] } +&{grabWindow QScreen::grabWindow commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.h non plain false false QPixmap [0xc820606d40 0xc820606e40 0xc820606ee0 0xc820606f80 0xc820607060] } +&{handle QScreen::handle commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.h non plain false false QPlatformScreen * [] } +&{isLandscape QScreen::isLandscape commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.h non plain false false bool [0xc820607520] } +&{isPortrait QScreen::isPortrait commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.h non plain false false bool [0xc820607940] } +&{logicalDotsPerInchChanged QScreen::logicalDotsPerInchChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.h non signal false false void [0xc820607ca0] } +&{mapBetween QScreen::mapBetween commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.h non plain false false QRect [0xc8205f0020 0xc8205f0140 0xc8205f0280] } +&{orientationChanged QScreen::orientationChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.h non signal false false void [0xc8205f07a0] } +&{orientationUpdateMask QScreen::orientationUpdateMask commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.h non plain false false Qt::ScreenOrientations [] } +&{physicalDotsPerInchChanged QScreen::physicalDotsPerInchChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.h non signal false false void [0xc8205f0ca0] } +&{physicalSizeChanged QScreen::physicalSizeChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.h non signal false false void [0xc8205f1080] } +&{primaryOrientationChanged QScreen::primaryOrientationChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.h non signal false false void [0xc8205f13e0] } +&{refreshRateChanged QScreen::refreshRateChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.h non signal false false void [0xc8205f19e0] } +&{setOrientationUpdateMask QScreen::setOrientationUpdateMask commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.h non plain false false void [0xc8205f1da0] } +&{transformBetween QScreen::transformBetween commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.h non plain false false QTransform [0xc8205ce100 0xc8205ce220 0xc8205ce300] } +&{virtualGeometryChanged QScreen::virtualGeometryChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.h non signal false false void [0xc8205ce5a0] } +&{virtualSiblings QScreen::virtualSiblings commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.h non plain false false QList [] } +&{~QScreen QScreen::~QScreen commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qscreen.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QScrollEvent.txt b/internal/binding/dump/QtGui/QScrollEvent.txt new file mode 100755 index 00000000..04681b41 --- /dev/null +++ b/internal/binding/dump/QtGui/QScrollEvent.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{QScrollEvent QScrollEvent::QScrollEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [0xc820a558c0 0xc820a559c0 0xc820a55b40] } +&{contentPos QScrollEvent::contentPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QPointF [] } +&{overshootDistance QScrollEvent::overshootDistance commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QPointF [] } +&{scrollState QScrollEvent::scrollState commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false ScrollState [] } +&{~QScrollEvent QScrollEvent::~QScrollEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non destructor false false [] } +######################################## ENUMS ######################################## +&{ScrollState QScrollEvent::ScrollState commendable public [0xc820a554c0 0xc820a55580 0xc820a55620]} diff --git a/internal/binding/dump/QtGui/QScrollPrepareEvent.txt b/internal/binding/dump/QtGui/QScrollPrepareEvent.txt new file mode 100755 index 00000000..8583af24 --- /dev/null +++ b/internal/binding/dump/QtGui/QScrollPrepareEvent.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{QScrollPrepareEvent QScrollPrepareEvent::QScrollPrepareEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [0xc82083e5e0] } +&{contentPos QScrollPrepareEvent::contentPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QPointF [] } +&{contentPosRange QScrollPrepareEvent::contentPosRange commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QRectF [] } +&{setContentPos QScrollPrepareEvent::setContentPos commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false void [0xc82083ea60] } +&{setContentPosRange QScrollPrepareEvent::setContentPosRange commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false void [0xc82083ed00] } +&{setViewportSize QScrollPrepareEvent::setViewportSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false void [0xc82083eea0] } +&{startPos QScrollPrepareEvent::startPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QPointF [] } +&{viewportSize QScrollPrepareEvent::viewportSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QSizeF [] } +&{~QScrollPrepareEvent QScrollPrepareEvent::~QScrollPrepareEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QSessionManager.txt b/internal/binding/dump/QtGui/QSessionManager.txt new file mode 100755 index 00000000..223f9d5d --- /dev/null +++ b/internal/binding/dump/QtGui/QSessionManager.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{restartHint QSessionManager::restartHint commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsessionmanager.cpp non plain false false RestartHint [] } +&{sessionKey QSessionManager::sessionKey commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsessionmanager.cpp non plain false false QString [] } +&{allowsErrorInteraction QSessionManager::allowsErrorInteraction commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsessionmanager.h non plain false false bool [] } +&{allowsInteraction QSessionManager::allowsInteraction commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsessionmanager.h non plain false false bool [] } +&{cancel QSessionManager::cancel commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsessionmanager.h non plain false false void [] } +&{discardCommand QSessionManager::discardCommand commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsessionmanager.h non plain false false QStringList [] } +&{isPhase2 QSessionManager::isPhase2 commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsessionmanager.h non plain false false bool [] } +&{release QSessionManager::release commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsessionmanager.h non plain false false void [] } +&{requestPhase2 QSessionManager::requestPhase2 commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsessionmanager.h non plain false false void [] } +&{restartCommand QSessionManager::restartCommand commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsessionmanager.h non plain false false QStringList [] } +&{sessionId QSessionManager::sessionId commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsessionmanager.h non plain false false QString [] } +&{setDiscardCommand QSessionManager::setDiscardCommand commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsessionmanager.h non plain false false void [0xc8205c6f80] } +&{setManagerProperty QSessionManager::setManagerProperty commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsessionmanager.h non plain false true 2 void [0xc8205c7300 0xc8205c7460] } +&{setManagerProperty QSessionManager::setManagerProperty commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsessionmanager.h non plain false false void [0xc8205c76a0 0xc8205c77e0] } +&{setRestartCommand QSessionManager::setRestartCommand commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsessionmanager.h non plain false false void [0xc8205c7b60] } +&{setRestartHint QSessionManager::setRestartHint commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsessionmanager.h non plain false false void [0xc8205c7f40] } +######################################## ENUMS ######################################## +&{RestartHint QSessionManager::RestartHint commendable public [0xc8204a1b20 0xc8204a1be0 0xc8204a1c80 0xc8204a1d40]} diff --git a/internal/binding/dump/QtGui/QShortcutEvent.txt b/internal/binding/dump/QtGui/QShortcutEvent.txt new file mode 100755 index 00000000..c96738df --- /dev/null +++ b/internal/binding/dump/QtGui/QShortcutEvent.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{QShortcutEvent QShortcutEvent::QShortcutEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [0xc82083f5c0 0xc82083f6c0 0xc82083f760] } +&{isAmbiguous QShortcutEvent::isAmbiguous commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false bool [] } +&{key QShortcutEvent::key commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QKeySequence & [] } +&{shortcutId QShortcutEvent::shortcutId commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +&{~QShortcutEvent QShortcutEvent::~QShortcutEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QShowEvent.txt b/internal/binding/dump/QtGui/QShowEvent.txt new file mode 100755 index 00000000..4d7a5170 --- /dev/null +++ b/internal/binding/dump/QtGui/QShowEvent.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{QShowEvent QShowEvent::QShowEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QStandardItem.txt b/internal/binding/dump/QtGui/QStandardItem.txt new file mode 100755 index 00000000..1ee6573f --- /dev/null +++ b/internal/binding/dump/QtGui/QStandardItem.txt @@ -0,0 +1,91 @@ +######################################## FUNCTIONS ######################################## +&{QStandardItem QStandardItem::QStandardItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non constructor false false [] } +&{QStandardItem QStandardItem::QStandardItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non constructor false true 3 [0xc82015a720 0xc82015a7a0] } +&{QStandardItem QStandardItem::QStandardItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non constructor false true 2 [0xc82015a960] } +&{QStandardItem QStandardItem::QStandardItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non constructor false true 4 [0xc82015ab20 0xc82015aba0] } +&{QStandardItem QStandardItem::QStandardItem commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non constructor false true 5 [0xc82015ae00] } +&{accessibleDescription QStandardItem::accessibleDescription commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QString [] } +&{accessibleText QStandardItem::accessibleText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QString [] } +&{appendColumn QStandardItem::appendColumn commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc82015b640] } +&{appendRow QStandardItem::appendRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false true 2 void [0xc82015b8c0] } +&{appendRow QStandardItem::appendRow commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc82015bb40] } +&{appendRows QStandardItem::appendRows commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc82015be00] } +&{background QStandardItem::background commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QBrush [] } +&{checkState QStandardItem::checkState commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false Qt::CheckState [] } +&{child QStandardItem::child commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QStandardItem * [0xc8209e22c0 0xc8209e2340] } +&{clone QStandardItem::clone commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false QStandardItem * [] } +&{column QStandardItem::column commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false int [] } +&{columnCount QStandardItem::columnCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false int [] } +&{data QStandardItem::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false QVariant [0xc8209e28c0] } +&{emitDataChanged QStandardItem::emitDataChanged commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [] } +&{flags QStandardItem::flags commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false Qt::ItemFlags [] } +&{font QStandardItem::font commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QFont [] } +&{foreground QStandardItem::foreground commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QBrush [] } +&{hasChildren QStandardItem::hasChildren commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false bool [] } +&{icon QStandardItem::icon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QIcon [] } +&{index QStandardItem::index commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QModelIndex [] } +&{insertColumn QStandardItem::insertColumn commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209e3320 0xc8209e33c0] } +&{insertColumns QStandardItem::insertColumns commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209e3680 0xc8209e3720] } +&{insertRow QStandardItem::insertRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false true 2 void [0xc8209e3940 0xc8209e39c0] } +&{insertRow QStandardItem::insertRow commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209e3c20 0xc8209e3ce0] } +&{insertRows QStandardItem::insertRows commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209e3f00 0xc8209e3fa0] } +&{insertRows QStandardItem::insertRows commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false true 2 void [0xc8209ce200 0xc8209ce280] } +&{isCheckable QStandardItem::isCheckable commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false bool [] } +&{isDragEnabled QStandardItem::isDragEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false bool [] } +&{isDropEnabled QStandardItem::isDropEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false bool [] } +&{isEditable QStandardItem::isEditable commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false bool [] } +&{isEnabled QStandardItem::isEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false bool [] } +&{isSelectable QStandardItem::isSelectable commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false bool [] } +&{isTristate QStandardItem::isTristate commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false bool [] } +&{model QStandardItem::model commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QStandardItemModel * [] } +&{operator< QStandardItem::operator< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false bool [0xc8209cef60] } +&{operator= QStandardItem::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QStandardItem & [0xc8209cf200] } +&{parent QStandardItem::parent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QStandardItem * [] } +&{read QStandardItem::read commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false void [0xc8209cf5e0] } +&{removeColumn QStandardItem::removeColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209cf800] } +&{removeColumns QStandardItem::removeColumns commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209cfa40 0xc8209cfac0] } +&{removeRow QStandardItem::removeRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209cfce0] } +&{removeRows QStandardItem::removeRows commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209cff00 0xc8209cffa0] } +&{row QStandardItem::row commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false int [] } +&{rowCount QStandardItem::rowCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false int [] } +&{setAccessibleDescription QStandardItem::setAccessibleDescription commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209bc420] } +&{setAccessibleText QStandardItem::setAccessibleText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209bc680] } +&{setBackground QStandardItem::setBackground commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209bc8c0] } +&{setCheckState QStandardItem::setCheckState commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209bcae0] } +&{setCheckable QStandardItem::setCheckable commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209bcce0] } +&{setChild QStandardItem::setChild commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false true 2 void [0xc8209bcf20 0xc8209bcfa0] } +&{setChild QStandardItem::setChild commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209bd1a0 0xc8209bd220 0xc8209bd2a0] } +&{setColumnCount QStandardItem::setColumnCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209bd4e0] } +&{setData QStandardItem::setData commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false void [0xc8209bd720 0xc8209bd7a0] } +&{setDragEnabled QStandardItem::setDragEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209bd980] } +&{setDropEnabled QStandardItem::setDropEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209bdb80] } +&{setEditable QStandardItem::setEditable commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209bdda0] } +&{setEnabled QStandardItem::setEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209b0000] } +&{setFlags QStandardItem::setFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209b01e0] } +&{setFont QStandardItem::setFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209b0460] } +&{setForeground QStandardItem::setForeground commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209b0660] } +&{setIcon QStandardItem::setIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209b08c0] } +&{setRowCount QStandardItem::setRowCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209b0ae0] } +&{setSelectable QStandardItem::setSelectable commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209b0d00] } +&{setSizeHint QStandardItem::setSizeHint commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209b0f00] } +&{setStatusTip QStandardItem::setStatusTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209b1140] } +&{setText QStandardItem::setText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209b1360] } +&{setTextAlignment QStandardItem::setTextAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209b1540] } +&{setToolTip QStandardItem::setToolTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209b1760] } +&{setTristate QStandardItem::setTristate commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209b19a0] } +&{setWhatsThis QStandardItem::setWhatsThis commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209b1ba0] } +&{sizeHint QStandardItem::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QSize [] } +&{sortChildren QStandardItem::sortChildren commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209b1f40 0xc8209b1fe0] } +&{statusTip QStandardItem::statusTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QString [] } +&{takeChild QStandardItem::takeChild commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QStandardItem * [0xc82099c360 0xc82099c400] } +&{takeColumn QStandardItem::takeColumn commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QList [0xc82099c680] } +&{takeRow QStandardItem::takeRow commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QList [0xc82099c920] } +&{text QStandardItem::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QString [] } +&{textAlignment QStandardItem::textAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false Qt::Alignment [] } +&{toolTip QStandardItem::toolTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QString [] } +&{type QStandardItem::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false int [] } +&{whatsThis QStandardItem::whatsThis commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QString [] } +&{write QStandardItem::write commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false void [0xc82099d180] } +&{~QStandardItem QStandardItem::~QStandardItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{ItemType QStandardItem::ItemType commendable public [0xc82015a380 0xc82015a420]} diff --git a/internal/binding/dump/QtGui/QStandardItemModel.txt b/internal/binding/dump/QtGui/QStandardItemModel.txt new file mode 100755 index 00000000..c95ebef4 --- /dev/null +++ b/internal/binding/dump/QtGui/QStandardItemModel.txt @@ -0,0 +1,62 @@ +######################################## FUNCTIONS ######################################## +&{setSortRole QStandardItemModel::setSortRole commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.cpp non plain false false void [0xc82099d7a0] } +&{sortRole QStandardItemModel::sortRole commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.cpp non plain false false int [] } +&{QStandardItemModel QStandardItemModel::QStandardItemModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non constructor false false [0xc82099db00] } +&{QStandardItemModel QStandardItemModel::QStandardItemModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non constructor false true 2 [0xc82099dce0 0xc82099dd60 0xc82099de00] } +&{appendColumn QStandardItemModel::appendColumn commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8201aa4e0] } +&{appendRow QStandardItemModel::appendRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false true 2 void [0xc8201aa720] } +&{appendRow QStandardItemModel::appendRow commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8201aa960] } +&{clear QStandardItemModel::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [] } +&{columnCount QStandardItemModel::columnCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false int [0xc8201aad40] } +&{data QStandardItemModel::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false QVariant [0xc8201aafc0 0xc8201ab0e0] } +&{dropMimeData QStandardItemModel::dropMimeData commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false bool [0xc8201ab300 0xc8201ab400 0xc8201ab4c0 0xc8201ab540 0xc8201ab640] } +&{findItems QStandardItemModel::findItems commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QList [0xc8201ab920 0xc8201ab9a0 0xc8201aba20] } +&{flags QStandardItemModel::flags commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false Qt::ItemFlags [0xc8201abca0] } +&{hasChildren QStandardItemModel::hasChildren commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false bool [0xc8201abf60] } +&{headerData QStandardItemModel::headerData commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false QVariant [0xc820978180 0xc820978200 0xc820978280] } +&{horizontalHeaderItem QStandardItemModel::horizontalHeaderItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QStandardItem * [0xc820978440] } +&{index QStandardItemModel::index commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false QModelIndex [0xc820978620 0xc8209786a0 0xc820978740] } +&{indexFromItem QStandardItemModel::indexFromItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QModelIndex [0xc820978900] } +&{insertColumn QStandardItemModel::insertColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false true 2 bool [0xc820978b00 0xc820978ba0] } +&{insertColumn QStandardItemModel::insertColumn commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc820978da0 0xc820978e40] } +&{insertColumns QStandardItemModel::insertColumns commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false bool [0xc820978fe0 0xc820979060 0xc820979100] } +&{insertRow QStandardItemModel::insertRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false true 2 bool [0xc820979300 0xc8209793a0] } +&{insertRow QStandardItemModel::insertRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false true 3 void [0xc8209795c0 0xc820979660] } +&{insertRow QStandardItemModel::insertRow commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc820979840 0xc820979940] } +&{insertRows QStandardItemModel::insertRows commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false bool [0xc820979b80 0xc820979c00 0xc820979cc0] } +&{invisibleRootItem QStandardItemModel::invisibleRootItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QStandardItem * [] } +&{item QStandardItemModel::item commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QStandardItem * [0xc8209a2060 0xc8209a2120] } +&{itemChanged QStandardItemModel::itemChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non signal false false void [0xc8209a2340] } +&{itemData QStandardItemModel::itemData commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false QMap [0xc8209a2640] } +&{itemFromIndex QStandardItemModel::itemFromIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QStandardItem * [0xc8209a28a0] } +&{itemPrototype QStandardItemModel::itemPrototype commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false const QStandardItem * [] } +&{mimeData QStandardItemModel::mimeData commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false QMimeData * [0xc8209a2c80] } +&{mimeTypes QStandardItemModel::mimeTypes commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false QStringList [] } +&{parent QStandardItemModel::parent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false QModelIndex [0xc8209a3080] } +&{removeColumns QStandardItemModel::removeColumns commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false bool [0xc8209a3220 0xc8209a32a0 0xc8209a3340] } +&{removeRows QStandardItemModel::removeRows commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false bool [0xc8209a35c0 0xc8209a3640 0xc8209a36e0] } +&{rowCount QStandardItemModel::rowCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false int [0xc8209a39c0] } +&{setColumnCount QStandardItemModel::setColumnCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc8209a3bc0] } +&{setData QStandardItemModel::setData commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false bool [0xc8209a3e00 0xc8209a3f00 0xc8209a3fa0] } +&{setHeaderData QStandardItemModel::setHeaderData commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false bool [0xc82095e140 0xc82095e1c0 0xc82095e240 0xc82095e2c0] } +&{setHorizontalHeaderItem QStandardItemModel::setHorizontalHeaderItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc82095e480 0xc82095e500] } +&{setHorizontalHeaderLabels QStandardItemModel::setHorizontalHeaderLabels commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc82095e6e0] } +&{setItem QStandardItemModel::setItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false true 2 void [0xc82095e8e0 0xc82095e980] } +&{setItem QStandardItemModel::setItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc82095ebe0 0xc82095ec60 0xc82095ece0] } +&{setItemData QStandardItemModel::setItemData commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false bool [0xc82095ef20 0xc82095f000] } +&{setItemPrototype QStandardItemModel::setItemPrototype commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc82095f200] } +&{setItemRoleNames QStandardItemModel::setItemRoleNames commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc82095f420] } +&{setRowCount QStandardItemModel::setRowCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc82095f680] } +&{setVerticalHeaderItem QStandardItemModel::setVerticalHeaderItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc82095f8c0 0xc82095f940] } +&{setVerticalHeaderLabels QStandardItemModel::setVerticalHeaderLabels commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false void [0xc82095fb60] } +&{sibling QStandardItemModel::sibling commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false QModelIndex [0xc82095fde0 0xc82095fe60 0xc82095ff00] } +&{sort QStandardItemModel::sort commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false void [0xc82094a120 0xc82094a1c0] } +&{supportedDropActions QStandardItemModel::supportedDropActions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h impure plain false false Qt::DropActions [] } +&{takeColumn QStandardItemModel::takeColumn commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QList [0xc82094a540] } +&{takeHorizontalHeaderItem QStandardItemModel::takeHorizontalHeaderItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QStandardItem * [0xc82094a780] } +&{takeItem QStandardItemModel::takeItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QStandardItem * [0xc82094a9e0 0xc82094aa60] } +&{takeRow QStandardItemModel::takeRow commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QList [0xc82094ad80] } +&{takeVerticalHeaderItem QStandardItemModel::takeVerticalHeaderItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QStandardItem * [0xc82094af60] } +&{verticalHeaderItem QStandardItemModel::verticalHeaderItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non plain false false QStandardItem * [0xc82094b1a0] } +&{~QStandardItemModel QStandardItemModel::~QStandardItemModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/itemmodels/qstandarditemmodel.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QStaticText.txt b/internal/binding/dump/QtGui/QStaticText.txt new file mode 100755 index 00000000..64719e19 --- /dev/null +++ b/internal/binding/dump/QtGui/QStaticText.txt @@ -0,0 +1,23 @@ +######################################## FUNCTIONS ######################################## +&{QStaticText QStaticText::QStaticText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qstatictext.h non constructor false false [] } +&{QStaticText QStaticText::QStaticText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qstatictext.h non constructor false true 3 [0xc8232887c0] } +&{QStaticText QStaticText::QStaticText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qstatictext.h non constructor false true 2 [0xc8232889e0] } +&{operator!= QStaticText::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qstatictext.h non plain false false bool [0xc823288cc0] } +&{operator= QStaticText::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qstatictext.h non plain false false QStaticText & [0xc823288ee0] } +&{operator== QStaticText::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qstatictext.h non plain false false bool [0xc823289100] } +&{performanceHint QStaticText::performanceHint commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qstatictext.h non plain false false PerformanceHint [] } +&{prepare QStaticText::prepare commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qstatictext.h non plain false false void [0xc823289420 0xc8232894e0] } +&{setPerformanceHint QStaticText::setPerformanceHint commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qstatictext.h non plain false false void [0xc8232896e0] } +&{setText QStaticText::setText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qstatictext.h non plain false false void [0xc8232898a0] } +&{setTextFormat QStaticText::setTextFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qstatictext.h non plain false false void [0xc823289a60] } +&{setTextOption QStaticText::setTextOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qstatictext.h non plain false false void [0xc823289c40] } +&{setTextWidth QStaticText::setTextWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qstatictext.h non plain false false void [0xc823289e40] } +&{size QStaticText::size commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qstatictext.h non plain false false QSizeF [] } +&{swap QStaticText::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qstatictext.h non plain false false void [0xc82329c120] } +&{text QStaticText::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qstatictext.h non plain false false QString [] } +&{textFormat QStaticText::textFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qstatictext.h non plain false false Qt::TextFormat [] } +&{textOption QStaticText::textOption commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qstatictext.h non plain false false QTextOption [] } +&{textWidth QStaticText::textWidth commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qstatictext.h non plain false false qreal [] } +&{~QStaticText QStaticText::~QStaticText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qstatictext.h non destructor false false [] } +######################################## ENUMS ######################################## +&{PerformanceHint QStaticText::PerformanceHint commendable public [0xc8232883e0 0xc823288480]} diff --git a/internal/binding/dump/QtGui/QStatusTipEvent.txt b/internal/binding/dump/QtGui/QStatusTipEvent.txt new file mode 100755 index 00000000..8bb7172b --- /dev/null +++ b/internal/binding/dump/QtGui/QStatusTipEvent.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{QStatusTipEvent QStatusTipEvent::QStatusTipEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [0xc8207847e0] } +&{tip QStatusTipEvent::tip commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QString [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QStyleHints.txt b/internal/binding/dump/QtGui/QStyleHints.txt new file mode 100755 index 00000000..474fde02 --- /dev/null +++ b/internal/binding/dump/QtGui/QStyleHints.txt @@ -0,0 +1,23 @@ +######################################## FUNCTIONS ######################################## +&{cursorFlashTime QStyleHints::cursorFlashTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qstylehints.cpp non plain false false int [] } +&{fontSmoothingGamma QStyleHints::fontSmoothingGamma commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qstylehints.cpp non plain false false qreal [] } +&{keyboardAutoRepeatRate QStyleHints::keyboardAutoRepeatRate commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qstylehints.cpp non plain false false int [] } +&{keyboardInputInterval QStyleHints::keyboardInputInterval commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qstylehints.cpp non plain false false int [] } +&{mouseDoubleClickInterval QStyleHints::mouseDoubleClickInterval commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qstylehints.cpp non plain false false int [] } +&{mousePressAndHoldInterval QStyleHints::mousePressAndHoldInterval commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qstylehints.cpp non plain false false int [] } +&{passwordMaskCharacter QStyleHints::passwordMaskCharacter commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qstylehints.cpp non plain false false QChar [] } +&{passwordMaskDelay QStyleHints::passwordMaskDelay commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qstylehints.cpp non plain false false int [] } +&{setFocusOnTouchRelease QStyleHints::setFocusOnTouchRelease commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qstylehints.cpp non plain false false bool [] } +&{showIsFullScreen QStyleHints::showIsFullScreen commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qstylehints.cpp non plain false false bool [] } +&{singleClickActivation QStyleHints::singleClickActivation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qstylehints.cpp non plain false false bool [] } +&{startDragDistance QStyleHints::startDragDistance commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qstylehints.cpp non plain false false int [] } +&{startDragTime QStyleHints::startDragTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qstylehints.cpp non plain false false int [] } +&{startDragVelocity QStyleHints::startDragVelocity commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qstylehints.cpp non plain false false int [] } +&{tabFocusBehavior QStyleHints::tabFocusBehavior commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qstylehints.cpp non plain false false Qt::TabFocusBehavior [] } +&{useRtlExtensions QStyleHints::useRtlExtensions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qstylehints.cpp non plain false false bool [] } +&{cursorFlashTimeChanged QStyleHints::cursorFlashTimeChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qstylehints.h non signal false false void [0xc8205862a0] } +&{keyboardInputIntervalChanged QStyleHints::keyboardInputIntervalChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qstylehints.h non signal false false void [0xc8205865c0] } +&{mouseDoubleClickIntervalChanged QStyleHints::mouseDoubleClickIntervalChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qstylehints.h non signal false false void [0xc820586960] } +&{startDragDistanceChanged QStyleHints::startDragDistanceChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qstylehints.h non signal false false void [0xc820587aa0] } +&{startDragTimeChanged QStyleHints::startDragTimeChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qstylehints.h non signal false false void [0xc820587d80] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QSupportedWritingSystems.txt b/internal/binding/dump/QtGui/QSupportedWritingSystems.txt new file mode 100755 index 00000000..0ac71a62 --- /dev/null +++ b/internal/binding/dump/QtGui/QSupportedWritingSystems.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{QSupportedWritingSystems QSupportedWritingSystems::QSupportedWritingSystems commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qplatformfontdatabase.h non constructor false false [] } +&{QSupportedWritingSystems QSupportedWritingSystems::QSupportedWritingSystems commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qplatformfontdatabase.h non constructor false true 2 [0xc8232545e0] } +&{operator= QSupportedWritingSystems::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qplatformfontdatabase.h non plain false false QSupportedWritingSystems & [0xc8232548e0] } +&{setSupported QSupportedWritingSystems::setSupported commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qplatformfontdatabase.h non plain false false void [0xc823254ac0 0xc823254b80] } +&{supported QSupportedWritingSystems::supported commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qplatformfontdatabase.h non plain false false bool [0xc823254d00] } +&{~QSupportedWritingSystems QSupportedWritingSystems::~QSupportedWritingSystems commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qplatformfontdatabase.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QSurface.txt b/internal/binding/dump/QtGui/QSurface.txt new file mode 100755 index 00000000..cd88428c --- /dev/null +++ b/internal/binding/dump/QtGui/QSurface.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{QSurface QSurface::QSurface commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurface.h non constructor false false [0xc820549000] } +&{format QSurface::format commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurface.h pure plain false false QSurfaceFormat [] } +&{size QSurface::size commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurface.h pure plain false false QSize [] } +&{supportsOpenGL QSurface::supportsOpenGL commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurface.h non plain false false bool [] } +&{surfaceClass QSurface::surfaceClass commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurface.h non plain false false SurfaceClass [] } +&{surfaceHandle QSurface::surfaceHandle commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurface.h pure plain false false QPlatformSurface * [] } +&{surfaceType QSurface::surfaceType commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurface.h pure plain false false SurfaceType [] } +&{~QSurface QSurface::~QSurface commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurface.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{SurfaceClass QSurface::SurfaceClass commendable public [0xc820548700 0xc820548800]} +&{SurfaceType QSurface::SurfaceType commendable public [0xc820548ac0 0xc820548b80 0xc820548c80]} diff --git a/internal/binding/dump/QtGui/QSurfaceFormat.txt b/internal/binding/dump/QtGui/QSurfaceFormat.txt new file mode 100755 index 00000000..8aaf8346 --- /dev/null +++ b/internal/binding/dump/QtGui/QSurfaceFormat.txt @@ -0,0 +1,48 @@ +######################################## FUNCTIONS ######################################## +&{QSurfaceFormat QSurfaceFormat::QSurfaceFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non constructor false false [] } +&{QSurfaceFormat QSurfaceFormat::QSurfaceFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non constructor false true 2 [0xc820504200] } +&{QSurfaceFormat QSurfaceFormat::QSurfaceFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non constructor false true 3 [0xc8205045e0] } +&{alphaBufferSize QSurfaceFormat::alphaBufferSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false int [] } +&{blueBufferSize QSurfaceFormat::blueBufferSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false int [] } +&{defaultFormat QSurfaceFormat::defaultFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain true false QSurfaceFormat [] } +&{depthBufferSize QSurfaceFormat::depthBufferSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false int [] } +&{greenBufferSize QSurfaceFormat::greenBufferSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false int [] } +&{hasAlpha QSurfaceFormat::hasAlpha commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false bool [] } +&{majorVersion QSurfaceFormat::majorVersion commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false int [] } +&{minorVersion QSurfaceFormat::minorVersion commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false int [] } +&{operator= QSurfaceFormat::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false QSurfaceFormat & [0xc820505620] } +&{options QSurfaceFormat::options commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false QSurfaceFormat::FormatOptions [] } +&{profile QSurfaceFormat::profile commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false OpenGLContextProfile [] } +&{redBufferSize QSurfaceFormat::redBufferSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false int [] } +&{renderableType QSurfaceFormat::renderableType commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false RenderableType [] } +&{samples QSurfaceFormat::samples commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false int [] } +&{setAlphaBufferSize QSurfaceFormat::setAlphaBufferSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false void [0xc820505de0] } +&{setBlueBufferSize QSurfaceFormat::setBlueBufferSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false void [0xc8204e4160] } +&{setDefaultFormat QSurfaceFormat::setDefaultFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain true false void [0xc8204e44c0] } +&{setDepthBufferSize QSurfaceFormat::setDepthBufferSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false void [0xc8204e4840] } +&{setGreenBufferSize QSurfaceFormat::setGreenBufferSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false void [0xc8204e4b60] } +&{setMajorVersion QSurfaceFormat::setMajorVersion commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false void [0xc8204e4f20] } +&{setMinorVersion QSurfaceFormat::setMinorVersion commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false void [0xc8204e5260] } +&{setOption QSurfaceFormat::setOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false void [0xc8204e5620 0xc8204e56e0] } +&{setOptions QSurfaceFormat::setOptions commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false void [0xc8204e5e80] } +&{setProfile QSurfaceFormat::setProfile commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false void [0xc8204ce1e0] } +&{setRedBufferSize QSurfaceFormat::setRedBufferSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false void [0xc8204ce4c0] } +&{setRenderableType QSurfaceFormat::setRenderableType commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false void [0xc8204ce740] } +&{setSamples QSurfaceFormat::setSamples commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false void [0xc8204ceac0] } +&{setStencilBufferSize QSurfaceFormat::setStencilBufferSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false void [0xc8204ced00] } +&{setStereo QSurfaceFormat::setStereo commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false void [0xc8204cef60] } +&{setSwapBehavior QSurfaceFormat::setSwapBehavior commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false void [0xc8204cf1e0] } +&{setSwapInterval QSurfaceFormat::setSwapInterval commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false void [0xc8204cf460] } +&{setVersion QSurfaceFormat::setVersion commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false void [0xc8204cf680 0xc8204cf720] } +&{stencilBufferSize QSurfaceFormat::stencilBufferSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false int [] } +&{stereo QSurfaceFormat::stereo commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false bool [] } +&{swapBehavior QSurfaceFormat::swapBehavior commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false SwapBehavior [] } +&{swapInterval QSurfaceFormat::swapInterval commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false int [] } +&{testOption QSurfaceFormat::testOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false bool [0xc8204cfea0] } +&{version QSurfaceFormat::version commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non plain false false QPair [] } +&{~QSurfaceFormat QSurfaceFormat::~QSurfaceFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qsurfaceformat.h non destructor false false [] } +######################################## ENUMS ######################################## +&{FormatOption QSurfaceFormat::FormatOption commendable public QSurfaceFormat::FormatOptions [0xc820549fa0 0xc8205140a0 0xc8205141e0 0xc820514420]} +&{OpenGLContextProfile QSurfaceFormat::OpenGLContextProfile commendable public [0xc8205148e0 0xc8205149e0 0xc820514be0]} +&{RenderableType QSurfaceFormat::RenderableType commendable public [0xc8205150e0 0xc820515260 0xc8205152e0 0xc820515400]} +&{SwapBehavior QSurfaceFormat::SwapBehavior commendable public [0xc820515740 0xc820515820 0xc8205159a0 0xc820515b00]} diff --git a/internal/binding/dump/QtGui/QSyntaxHighlighter.txt b/internal/binding/dump/QtGui/QSyntaxHighlighter.txt new file mode 100755 index 00000000..085e1d4f --- /dev/null +++ b/internal/binding/dump/QtGui/QSyntaxHighlighter.txt @@ -0,0 +1,20 @@ +######################################## FUNCTIONS ######################################## +&{format QSyntaxHighlighter::format commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qsyntaxhighlighter.cpp non plain false false QTextCharFormat [0xc82329c940] } +&{QSyntaxHighlighter QSyntaxHighlighter::QSyntaxHighlighter commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qsyntaxhighlighter.h non constructor false false [0xc82329cb00] } +&{QSyntaxHighlighter QSyntaxHighlighter::QSyntaxHighlighter commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qsyntaxhighlighter.h non constructor false true 2 [0xc82329ccc0] } +&{currentBlock QSyntaxHighlighter::currentBlock commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qsyntaxhighlighter.h non plain false false QTextBlock [] } +&{currentBlockState QSyntaxHighlighter::currentBlockState commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qsyntaxhighlighter.h non plain false false int [] } +&{currentBlockUserData QSyntaxHighlighter::currentBlockUserData commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qsyntaxhighlighter.h non plain false false QTextBlockUserData * [] } +&{document QSyntaxHighlighter::document commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qsyntaxhighlighter.h non plain false false QTextDocument * [] } +&{highlightBlock QSyntaxHighlighter::highlightBlock commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qsyntaxhighlighter.h pure plain false false void [0xc82329d440] } +&{previousBlockState QSyntaxHighlighter::previousBlockState commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qsyntaxhighlighter.h non plain false false int [] } +&{rehighlight QSyntaxHighlighter::rehighlight commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qsyntaxhighlighter.h non slot false false void [] } +&{rehighlightBlock QSyntaxHighlighter::rehighlightBlock commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qsyntaxhighlighter.h non slot false false void [0xc82329d7c0] } +&{setCurrentBlockState QSyntaxHighlighter::setCurrentBlockState commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qsyntaxhighlighter.h non plain false false void [0xc82329d9c0] } +&{setCurrentBlockUserData QSyntaxHighlighter::setCurrentBlockUserData commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qsyntaxhighlighter.h non plain false false void [0xc82329dba0] } +&{setDocument QSyntaxHighlighter::setDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qsyntaxhighlighter.h non plain false false void [0xc82329dda0] } +&{setFormat QSyntaxHighlighter::setFormat commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qsyntaxhighlighter.h non plain false true 2 void [0xc82329df60 0xc82329dfe0 0xc8232b4060] } +&{setFormat QSyntaxHighlighter::setFormat commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qsyntaxhighlighter.h non plain false true 3 void [0xc8232b4240 0xc8232b42c0 0xc8232b4340] } +&{setFormat QSyntaxHighlighter::setFormat commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qsyntaxhighlighter.h non plain false false void [0xc8232b4500 0xc8232b4580 0xc8232b4620] } +&{~QSyntaxHighlighter QSyntaxHighlighter::~QSyntaxHighlighter commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qsyntaxhighlighter.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QTabletEvent.txt b/internal/binding/dump/QtGui/QTabletEvent.txt new file mode 100755 index 00000000..50b752fb --- /dev/null +++ b/internal/binding/dump/QtGui/QTabletEvent.txt @@ -0,0 +1,27 @@ +######################################## FUNCTIONS ######################################## +&{QTabletEvent QTabletEvent::QTabletEvent commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [0xc820838a20 0xc820838b00 0xc820838ba0 0xc820838c20 0xc820838ce0 0xc820838de0 0xc820838ea0 0xc820838f60 0xc8208390a0 0xc8208391a0 0xc8208392e0 0xc8208393e0 0xc8208395e0 0xc820839660 0xc820839720] } +&{button QTabletEvent::button commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false Qt::MouseButton [] } +&{buttons QTabletEvent::buttons commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false Qt::MouseButtons [] } +&{device QTabletEvent::device commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false TabletDevice [] } +&{globalPos QTabletEvent::globalPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QPoint [] } +&{globalPosF QTabletEvent::globalPosF commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QPointF & [] } +&{globalX QTabletEvent::globalX commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +&{globalY QTabletEvent::globalY commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +&{hiResGlobalPos QTabletEvent::hiResGlobalPos compat unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QPointF & [] } +&{hiResGlobalX QTabletEvent::hiResGlobalX commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false qreal [] } +&{hiResGlobalY QTabletEvent::hiResGlobalY commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false qreal [] } +&{pointerType QTabletEvent::pointerType commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false PointerType [] } +&{pos QTabletEvent::pos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QPoint [] } +&{posF QTabletEvent::posF commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QPointF & [] } +&{pressure QTabletEvent::pressure commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false qreal [] } +&{rotation QTabletEvent::rotation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false qreal [] } +&{tangentialPressure QTabletEvent::tangentialPressure commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false qreal [] } +&{uniqueId QTabletEvent::uniqueId commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false qint64 [] } +&{x QTabletEvent::x commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +&{xTilt QTabletEvent::xTilt commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +&{y QTabletEvent::y commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +&{yTilt QTabletEvent::yTilt commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +&{z QTabletEvent::z commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +######################################## ENUMS ######################################## +&{PointerType QTabletEvent::PointerType commendable public [0xc820784f00 0xc820785000 0xc8207850a0 0xc820785160]} +&{TabletDevice QTabletEvent::TabletDevice commendable public [0xc820785400 0xc820785540 0xc8207855e0 0xc8207856a0 0xc820785820 0xc8207858c0 0xc820785960]} diff --git a/internal/binding/dump/QtGui/QTextBlock.txt b/internal/binding/dump/QtGui/QTextBlock.txt new file mode 100755 index 00000000..b870a95c --- /dev/null +++ b/internal/binding/dump/QtGui/QTextBlock.txt @@ -0,0 +1,38 @@ +######################################## FUNCTIONS ######################################## +&{isValid QTextBlock::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.cpp non plain false false bool [] } +&{QTextBlock QTextBlock::QTextBlock commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non constructor false false [0xc822686460] } +&{begin QTextBlock::begin commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false iterator [] } +&{blockFormat QTextBlock::blockFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false QTextBlockFormat [] } +&{blockFormatIndex QTextBlock::blockFormatIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false int [] } +&{charFormat QTextBlock::charFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false QTextCharFormat [] } +&{charFormatIndex QTextBlock::charFormatIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false int [] } +&{clearLayout QTextBlock::clearLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false void [] } +&{contains QTextBlock::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false bool [0xc822687240] } +&{blockNumber QTextBlock::blockNumber commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false int [] } +&{document QTextBlock::document commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false const QTextDocument * [] } +&{end QTextBlock::end commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false iterator [] } +&{firstLineNumber QTextBlock::firstLineNumber commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false int [] } +&{isVisible QTextBlock::isVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false bool [] } +&{layout QTextBlock::layout commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false QTextLayout * [] } +&{length QTextBlock::length commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false int [] } +&{lineCount QTextBlock::lineCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false int [] } +&{next QTextBlock::next commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false QTextBlock [] } +&{operator!= QTextBlock::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false bool [0xc82256aa80] } +&{operator< QTextBlock::operator< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false bool [0xc82256ae20] } +&{operator= QTextBlock::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false QTextBlock & [0xc82256b160] } +&{operator== QTextBlock::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false bool [0xc82256b4c0] } +&{position QTextBlock::position commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false int [] } +&{previous QTextBlock::previous commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false QTextBlock [] } +&{revision QTextBlock::revision commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false int [] } +&{setLineCount QTextBlock::setLineCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false void [0xc82256bd40] } +&{setRevision QTextBlock::setRevision commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false void [0xc82211c000] } +&{setUserData QTextBlock::setUserData commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false void [0xc82211c2a0] } +&{setUserState QTextBlock::setUserState commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false void [0xc82211c560] } +&{setVisible QTextBlock::setVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false void [0xc82211c7e0] } +&{text QTextBlock::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false QString [] } +&{textDirection QTextBlock::textDirection commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false Qt::LayoutDirection [] } +&{textFormats QTextBlock::textFormats commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false QVector [] } +&{textList QTextBlock::textList commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false QTextList * [] } +&{userData QTextBlock::userData commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false QTextBlockUserData * [] } +&{userState QTextBlock::userState commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false int [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QTextBlockFormat.txt b/internal/binding/dump/QtGui/QTextBlockFormat.txt new file mode 100755 index 00000000..0f80a51c --- /dev/null +++ b/internal/binding/dump/QtGui/QTextBlockFormat.txt @@ -0,0 +1,29 @@ +######################################## FUNCTIONS ######################################## +&{QTextBlockFormat QTextBlockFormat::QTextBlockFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.cpp non constructor false false [] } +&{alignment QTextBlockFormat::alignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false Qt::Alignment [] } +&{bottomMargin QTextBlockFormat::bottomMargin commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false qreal [] } +&{indent QTextBlockFormat::indent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false int [] } +&{isValid QTextBlockFormat::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [] } +&{leftMargin QTextBlockFormat::leftMargin commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false qreal [] } +&{lineHeight QTextBlockFormat::lineHeight commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false true 2 qreal [] } +&{lineHeight QTextBlockFormat::lineHeight commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false qreal [0xc8233bcdc0 0xc8233bce40] } +&{lineHeightType QTextBlockFormat::lineHeightType commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false int [] } +&{nonBreakableLines QTextBlockFormat::nonBreakableLines commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [] } +&{pageBreakPolicy QTextBlockFormat::pageBreakPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false PageBreakFlags [] } +&{rightMargin QTextBlockFormat::rightMargin commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false qreal [] } +&{setAlignment QTextBlockFormat::setAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8233bd2e0] } +&{setBottomMargin QTextBlockFormat::setBottomMargin commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8233bd420] } +&{setIndent QTextBlockFormat::setIndent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8233bd600] } +&{setLeftMargin QTextBlockFormat::setLeftMargin commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8233bd7e0] } +&{setLineHeight QTextBlockFormat::setLineHeight commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8233bd980 0xc8233bda00] } +&{setNonBreakableLines QTextBlockFormat::setNonBreakableLines commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8233bdba0] } +&{setPageBreakPolicy QTextBlockFormat::setPageBreakPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8233bdd40] } +&{setRightMargin QTextBlockFormat::setRightMargin commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8233bdee0] } +&{setTabPositions QTextBlockFormat::setTabPositions commendable unsupported_cppEnum /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8233de040] } +&{setTextIndent QTextBlockFormat::setTextIndent commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8233de240] } +&{setTopMargin QTextBlockFormat::setTopMargin commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8233de400] } +&{tabPositions QTextBlockFormat::tabPositions commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QList [] } +&{textIndent QTextBlockFormat::textIndent commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false qreal [] } +&{topMargin QTextBlockFormat::topMargin commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false qreal [] } +######################################## ENUMS ######################################## +&{LineHeightTypes QTextBlockFormat::LineHeightTypes commendable public [0xc8233bc320 0xc8233bc3c0 0xc8233bc480 0xc8233bc500 0xc8233bc5c0]} diff --git a/internal/binding/dump/QtGui/QTextBlockGroup.txt b/internal/binding/dump/QtGui/QTextBlockGroup.txt new file mode 100755 index 00000000..962634fb --- /dev/null +++ b/internal/binding/dump/QtGui/QTextBlockGroup.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{QTextBlockGroup QTextBlockGroup::QTextBlockGroup commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.cpp non constructor false false [0xc82211d2e0] } +&{blockFormatChanged QTextBlockGroup::blockFormatChanged commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h impure plain false false void [0xc82211d820] } +&{blockInserted QTextBlockGroup::blockInserted commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h impure plain false false void [0xc82211da80] } +&{blockList QTextBlockGroup::blockList commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false QList [] } +&{blockRemoved QTextBlockGroup::blockRemoved commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h impure plain false false void [0xc82211dea0] } +&{~QTextBlockGroup QTextBlockGroup::~QTextBlockGroup commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QTextBlockUserData.txt b/internal/binding/dump/QtGui/QTextBlockUserData.txt new file mode 100755 index 00000000..76bff14b --- /dev/null +++ b/internal/binding/dump/QtGui/QTextBlockUserData.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{~QTextBlockUserData QTextBlockUserData::~QTextBlockUserData commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QTextCharFormat.txt b/internal/binding/dump/QtGui/QTextCharFormat.txt new file mode 100755 index 00000000..148846c2 --- /dev/null +++ b/internal/binding/dump/QtGui/QTextCharFormat.txt @@ -0,0 +1,60 @@ +######################################## FUNCTIONS ######################################## +&{QTextCharFormat QTextCharFormat::QTextCharFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.cpp non constructor false false [] } +&{anchorNames QTextCharFormat::anchorNames commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.cpp non plain false false QStringList [] } +&{fontUnderline QTextCharFormat::fontUnderline commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.cpp non plain false false bool [] } +&{setUnderlineStyle QTextCharFormat::setUnderlineStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.cpp non plain false false void [0xc8233def80] } +&{anchorHref QTextCharFormat::anchorHref commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QString [] } +&{font QTextCharFormat::font commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QFont [] } +&{fontCapitalization QTextCharFormat::fontCapitalization commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QFont::Capitalization [] } +&{fontFamily QTextCharFormat::fontFamily commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QString [] } +&{fontFixedPitch QTextCharFormat::fontFixedPitch commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [] } +&{fontHintingPreference QTextCharFormat::fontHintingPreference commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QFont::HintingPreference [] } +&{fontItalic QTextCharFormat::fontItalic commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [] } +&{fontKerning QTextCharFormat::fontKerning commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [] } +&{fontLetterSpacing QTextCharFormat::fontLetterSpacing commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false qreal [] } +&{fontLetterSpacingType QTextCharFormat::fontLetterSpacingType commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QFont::SpacingType [] } +&{fontOverline QTextCharFormat::fontOverline commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [] } +&{fontPointSize QTextCharFormat::fontPointSize commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false qreal [] } +&{fontStretch QTextCharFormat::fontStretch commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false int [] } +&{fontStrikeOut QTextCharFormat::fontStrikeOut commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [] } +&{fontStyleHint QTextCharFormat::fontStyleHint commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QFont::StyleHint [] } +&{fontStyleStrategy QTextCharFormat::fontStyleStrategy commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QFont::StyleStrategy [] } +&{fontWeight QTextCharFormat::fontWeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false int [] } +&{fontWordSpacing QTextCharFormat::fontWordSpacing commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false qreal [] } +&{isAnchor QTextCharFormat::isAnchor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [] } +&{isValid QTextCharFormat::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [] } +&{setAnchor QTextCharFormat::setAnchor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8233ef240] } +&{setAnchorHref QTextCharFormat::setAnchorHref commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8233ef3e0] } +&{setAnchorNames QTextCharFormat::setAnchorNames commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8233ef740] } +&{setFont QTextCharFormat::setFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false true 2 void [0xc8233ef960] } +&{setFont QTextCharFormat::setFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8233efb20 0xc8233efba0] } +&{setFontCapitalization QTextCharFormat::setFontCapitalization commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8233efd80] } +&{setFontFamily QTextCharFormat::setFontFamily commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8233eff60] } +&{setFontFixedPitch QTextCharFormat::setFontFixedPitch commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc82340c100] } +&{setFontHintingPreference QTextCharFormat::setFontHintingPreference commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc82000e4e0] } +&{setFontItalic QTextCharFormat::setFontItalic commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc82000f1e0] } +&{setFontKerning QTextCharFormat::setFontKerning commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc82000fd00] } +&{setFontLetterSpacing QTextCharFormat::setFontLetterSpacing commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8215f8340] } +&{setFontLetterSpacingType QTextCharFormat::setFontLetterSpacingType commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8215f8700] } +&{setFontOverline QTextCharFormat::setFontOverline commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8215f8b40] } +&{setFontPointSize QTextCharFormat::setFontPointSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8215f8e00] } +&{setFontStretch QTextCharFormat::setFontStretch commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8215f91c0] } +&{setFontStrikeOut QTextCharFormat::setFontStrikeOut commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8215f9400] } +&{setFontStyleHint QTextCharFormat::setFontStyleHint commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8215f96c0 0xc8215f9820] } +&{setFontStyleStrategy QTextCharFormat::setFontStyleStrategy commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8215f9b60] } +&{setFontUnderline QTextCharFormat::setFontUnderline commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8215f9dc0] } +&{setFontWeight QTextCharFormat::setFontWeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8201ae260] } +&{setFontWordSpacing QTextCharFormat::setFontWordSpacing commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8201ae900] } +&{setTextOutline QTextCharFormat::setTextOutline commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8201afba0] } +&{setToolTip QTextCharFormat::setToolTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc820200420] } +&{setUnderlineColor QTextCharFormat::setUnderlineColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc820200960] } +&{setVerticalAlignment QTextCharFormat::setVerticalAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc820200ec0] } +&{textOutline QTextCharFormat::textOutline commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QPen [] } +&{toolTip QTextCharFormat::toolTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QString [] } +&{underlineColor QTextCharFormat::underlineColor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QColor [] } +&{underlineStyle QTextCharFormat::underlineStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false UnderlineStyle [] } +&{verticalAlignment QTextCharFormat::verticalAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false VerticalAlignment [] } +######################################## ENUMS ######################################## +&{FontPropertiesInheritanceBehavior QTextCharFormat::FontPropertiesInheritanceBehavior commendable public [0xc8233df120 0xc8233df200]} +&{UnderlineStyle QTextCharFormat::UnderlineStyle commendable public [0xc8233df3e0 0xc8233df460 0xc8233df4e0 0xc8233df560 0xc8233df600 0xc8233df680 0xc8233df700 0xc8233df7a0]} +&{VerticalAlignment QTextCharFormat::VerticalAlignment commendable public [0xc8233df980 0xc8233dfa00 0xc8233dfa80 0xc8233dfb00 0xc8233dfba0 0xc8233dfc20 0xc8233dfca0]} diff --git a/internal/binding/dump/QtGui/QTextCursor.txt b/internal/binding/dump/QtGui/QTextCursor.txt new file mode 100755 index 00000000..222b5156 --- /dev/null +++ b/internal/binding/dump/QtGui/QTextCursor.txt @@ -0,0 +1,85 @@ +######################################## FUNCTIONS ######################################## +&{insertBlock QTextCursor::insertBlock commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.cpp non plain false true 3 void [0xc8232b4a20 0xc8232b4b00] } +&{insertTable QTextCursor::insertTable commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.cpp non plain false true 2 QTextTable * [0xc8232b4d00 0xc8232b4d80] } +&{insertTable QTextCursor::insertTable commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.cpp non plain false false QTextTable * [0xc8232b4f40 0xc8232b4fc0 0xc8232b5060] } +&{insertText QTextCursor::insertText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.cpp non plain false true 2 void [0xc8232b5260 0xc8232b5300] } +&{movePosition QTextCursor::movePosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.cpp non plain false false bool [0xc8232b5520 0xc8232b55a0 0xc8232b5620] } +&{operator!= QTextCursor::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.cpp non plain false false bool [0xc8232b5800] } +&{operator< QTextCursor::operator< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.cpp non plain false false bool [0xc8232b5a20] } +&{operator<= QTextCursor::operator<= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.cpp non plain false false bool [0xc8232b5c40] } +&{operator== QTextCursor::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.cpp non plain false false bool [0xc8232b5e80] } +&{operator> QTextCursor::operator> commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.cpp non plain false false bool [0xc8232c40a0] } +&{operator>= QTextCursor::operator>= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.cpp non plain false false bool [0xc8232c42c0] } +&{QTextCursor QTextCursor::QTextCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non constructor false false [] } +&{QTextCursor QTextCursor::QTextCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non constructor false true 2 [0xc8232c59a0] } +&{QTextCursor QTextCursor::QTextCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non constructor false true 4 [0xc8232c5b80] } +&{QTextCursor QTextCursor::QTextCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non constructor false true 5 [0xc8232c5d60] } +&{QTextCursor QTextCursor::QTextCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non constructor false true 7 [0xc8232c5f80] } +&{anchor QTextCursor::anchor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false int [] } +&{atBlockEnd QTextCursor::atBlockEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false bool [] } +&{atBlockStart QTextCursor::atBlockStart commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false bool [] } +&{atEnd QTextCursor::atEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false bool [] } +&{atStart QTextCursor::atStart commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false bool [] } +&{beginEditBlock QTextCursor::beginEditBlock commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false void [] } +&{block QTextCursor::block commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false QTextBlock [] } +&{blockCharFormat QTextCursor::blockCharFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false QTextCharFormat [] } +&{blockFormat QTextCursor::blockFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false QTextBlockFormat [] } +&{blockNumber QTextCursor::blockNumber commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false int [] } +&{charFormat QTextCursor::charFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false QTextCharFormat [] } +&{clearSelection QTextCursor::clearSelection commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false void [] } +&{columnNumber QTextCursor::columnNumber commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false int [] } +&{createList QTextCursor::createList commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false true 2 QTextList * [0xc8232cf320] } +&{createList QTextCursor::createList commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false QTextList * [0xc8232cf560] } +&{currentFrame QTextCursor::currentFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false QTextFrame * [] } +&{currentList QTextCursor::currentList commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false QTextList * [] } +&{currentTable QTextCursor::currentTable commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false QTextTable * [] } +&{deleteChar QTextCursor::deleteChar commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false void [] } +&{deletePreviousChar QTextCursor::deletePreviousChar commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false void [] } +&{document QTextCursor::document commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false QTextDocument * [] } +&{endEditBlock QTextCursor::endEditBlock commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false void [] } +&{hasComplexSelection QTextCursor::hasComplexSelection commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false bool [] } +&{hasSelection QTextCursor::hasSelection commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false bool [] } +&{insertBlock QTextCursor::insertBlock commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false void [] } +&{insertBlock QTextCursor::insertBlock commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false true 2 void [0xc8232e61c0] } +&{insertFragment QTextCursor::insertFragment commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false void [0xc8232e63e0] } +&{insertFrame QTextCursor::insertFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false QTextFrame * [0xc8232e6600] } +&{insertHtml QTextCursor::insertHtml commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false void [0xc8232e6800] } +&{insertImage QTextCursor::insertImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false true 4 void [0xc8232e69c0 0xc8232e6a40] } +&{insertImage QTextCursor::insertImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false true 3 void [0xc8232e6c00] } +&{insertImage QTextCursor::insertImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false void [0xc8232e6de0] } +&{insertImage QTextCursor::insertImage commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false true 2 void [0xc8232e7000 0xc8232e70e0] } +&{insertList QTextCursor::insertList commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false true 2 QTextList * [0xc8232e7300] } +&{insertList QTextCursor::insertList commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false QTextList * [0xc8232e7520] } +&{insertText QTextCursor::insertText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false void [0xc8232e7720] } +&{isCopyOf QTextCursor::isCopyOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false bool [0xc8232e7900] } +&{isNull QTextCursor::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false bool [] } +&{joinPreviousEditBlock QTextCursor::joinPreviousEditBlock commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false void [] } +&{keepPositionOnInsert QTextCursor::keepPositionOnInsert commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false bool [] } +&{mergeBlockCharFormat QTextCursor::mergeBlockCharFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false void [0xc8232e7da0] } +&{mergeBlockFormat QTextCursor::mergeBlockFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false void [0xc8232e7fa0] } +&{mergeCharFormat QTextCursor::mergeCharFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false void [0xc8232fc1c0] } +&{operator= QTextCursor::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false QTextCursor & [0xc8232fc3e0] } +&{position QTextCursor::position commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false int [] } +&{positionInBlock QTextCursor::positionInBlock commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false int [] } +&{removeSelectedText QTextCursor::removeSelectedText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false void [] } +&{select QTextCursor::select commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false void [0xc8232fc940] } +&{selectedTableCells QTextCursor::selectedTableCells commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false void [0xc8232fcb40 0xc8232fcbc0 0xc8232fcc40 0xc8232fccc0] } +&{selectedText QTextCursor::selectedText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false QString [] } +&{selection QTextCursor::selection commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false QTextDocumentFragment [] } +&{selectionEnd QTextCursor::selectionEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false int [] } +&{selectionStart QTextCursor::selectionStart commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false int [] } +&{setBlockCharFormat QTextCursor::setBlockCharFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false void [0xc8232fd320] } +&{setBlockFormat QTextCursor::setBlockFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false void [0xc8232fd540] } +&{setCharFormat QTextCursor::setCharFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false void [0xc8232fd760] } +&{setKeepPositionOnInsert QTextCursor::setKeepPositionOnInsert commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false void [0xc8232fd940] } +&{setPosition QTextCursor::setPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false void [0xc8232fdb00 0xc8232fdb80] } +&{setVerticalMovementX QTextCursor::setVerticalMovementX commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false void [0xc8232fdd40] } +&{setVisualNavigation QTextCursor::setVisualNavigation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false void [0xc8232fdf60] } +&{swap QTextCursor::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false void [0xc82330c140] } +&{verticalMovementX QTextCursor::verticalMovementX commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false int [] } +&{visualNavigation QTextCursor::visualNavigation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non plain false false bool [] } +&{~QTextCursor QTextCursor::~QTextCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextcursor.h non destructor false false [] } +######################################## ENUMS ######################################## +&{MoveMode QTextCursor::MoveMode commendable public [0xc8232c4500 0xc8232c4580]} +&{MoveOperation QTextCursor::MoveOperation commendable public [0xc8232c4720 0xc8232c47a0 0xc8232c4820 0xc8232c48a0 0xc8232c4940 0xc8232c49c0 0xc8232c4a40 0xc8232c4ae0 0xc8232c4bc0 0xc8232c4c40 0xc8232c4cc0 0xc8232c4d40 0xc8232c4dc0 0xc8232c4e40 0xc8232c4ec0 0xc8232c4f40 0xc8232c4fe0 0xc8232c5060 0xc8232c50e0 0xc8232c5160 0xc8232c51e0 0xc8232c5260 0xc8232c52e0 0xc8232c5360 0xc8232c53e0]} +&{SelectionType QTextCursor::SelectionType commendable public [0xc8232c5580 0xc8232c5600 0xc8232c5680 0xc8232c5700]} diff --git a/internal/binding/dump/QtGui/QTextDocument.txt b/internal/binding/dump/QtGui/QTextDocument.txt new file mode 100755 index 00000000..6d9e0a51 --- /dev/null +++ b/internal/binding/dump/QtGui/QTextDocument.txt @@ -0,0 +1,98 @@ +######################################## FUNCTIONS ######################################## +&{baseUrl QTextDocument::baseUrl commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.cpp non plain false false QUrl [] } +&{blockCount QTextDocument::blockCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.cpp non plain false false int [] } +&{createObject QTextDocument::createObject commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.cpp impure plain false false QTextObject * [0xc82330c9e0] } +&{defaultStyleSheet QTextDocument::defaultStyleSheet commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.cpp non plain false false QString [] } +&{documentMargin QTextDocument::documentMargin commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.cpp non plain false false qreal [] } +&{find QTextDocument::find commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.cpp non plain false true 4 QTextCursor [0xc82330cec0 0xc82330cf40 0xc82330cfc0] } +&{indentWidth QTextDocument::indentWidth commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.cpp non plain false false qreal [] } +&{isModified QTextDocument::isModified commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.cpp non plain false false bool [] } +&{isUndoRedoEnabled QTextDocument::isUndoRedoEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.cpp non plain false false bool [] } +&{markContentsDirty QTextDocument::markContentsDirty commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.cpp non plain false false void [0xc82330d5e0 0xc82330d660] } +&{maximumBlockCount QTextDocument::maximumBlockCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.cpp non plain false false int [] } +&{pageSize QTextDocument::pageSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.cpp non plain false false QSizeF [] } +&{setBaseUrl QTextDocument::setBaseUrl commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.cpp non plain false false void [0xc82330db60] } +&{setDefaultStyleSheet QTextDocument::setDefaultStyleSheet commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.cpp non plain false false void [0xc82330dd60] } +&{setDocumentMargin QTextDocument::setDocumentMargin commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.cpp non plain false false void [0xc82330dfa0] } +&{setMaximumBlockCount QTextDocument::setMaximumBlockCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.cpp non plain false false void [0xc8233241a0] } +&{setModified QTextDocument::setModified commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.cpp non slot false false void [0xc8233243e0] } +&{setPageSize QTextDocument::setPageSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.cpp non plain false false void [0xc8233245e0] } +&{setTextWidth QTextDocument::setTextWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.cpp non plain false false void [0xc8233247e0] } +&{setUndoRedoEnabled QTextDocument::setUndoRedoEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.cpp non plain false false void [0xc8233249c0] } +&{setUseDesignMetrics QTextDocument::setUseDesignMetrics commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.cpp non plain false false void [0xc823324bc0] } +&{size QTextDocument::size commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.cpp non plain false false QSizeF [] } +&{textWidth QTextDocument::textWidth commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.cpp non plain false false qreal [] } +&{useDesignMetrics QTextDocument::useDesignMetrics commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.cpp non plain false false bool [] } +&{QTextDocument QTextDocument::QTextDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non constructor false false [0xc823325ec0] } +&{QTextDocument QTextDocument::QTextDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non constructor false true 2 [0xc823338060 0xc8233380e0] } +&{addResource QTextDocument::addResource commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false void [0xc823338520 0xc8233385a0 0xc823338620] } +&{adjustSize QTextDocument::adjustSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false void [] } +&{allFormats QTextDocument::allFormats commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false QVector [] } +&{availableRedoSteps QTextDocument::availableRedoSteps commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false int [] } +&{availableUndoSteps QTextDocument::availableUndoSteps commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false int [] } +&{baseUrlChanged QTextDocument::baseUrlChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non signal false false void [0xc823338e20] } +&{begin QTextDocument::begin commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false QTextBlock [] } +&{blockCountChanged QTextDocument::blockCountChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non signal false false void [0xc823339120] } +&{characterAt QTextDocument::characterAt commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false QChar [0xc823339300] } +&{characterCount QTextDocument::characterCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false int [] } +&{clear QTextDocument::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h impure plain false false void [] } +&{clearUndoRedoStacks QTextDocument::clearUndoRedoStacks commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false void [0xc823339680] } +&{clone QTextDocument::clone commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false QTextDocument * [0xc823339840] } +&{contentsChange QTextDocument::contentsChange commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non signal false false void [0xc8233399e0 0xc823339a60 0xc823339ae0] } +&{contentsChanged QTextDocument::contentsChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non signal false false void [] } +&{cursorPositionChanged QTextDocument::cursorPositionChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non signal false false void [0xc823339d80] } +&{defaultCursorMoveStyle QTextDocument::defaultCursorMoveStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false Qt::CursorMoveStyle [] } +&{defaultFont QTextDocument::defaultFont commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false QFont [] } +&{defaultTextOption QTextDocument::defaultTextOption commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false QTextOption [] } +&{documentLayout QTextDocument::documentLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false QAbstractTextDocumentLayout * [] } +&{documentLayoutChanged QTextDocument::documentLayoutChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non signal false false void [] } +&{drawContents QTextDocument::drawContents commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false void [0xc82334c640 0xc82334c6c0] } +&{end QTextDocument::end commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false QTextBlock [] } +&{find QTextDocument::find commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false true 6 QTextCursor [0xc82334c980 0xc82334ca20 0xc82334cae0] } +&{find QTextDocument::find commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false true 5 QTextCursor [0xc82334cca0 0xc82334cd20 0xc82334cda0] } +&{find QTextDocument::find commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false true 3 QTextCursor [0xc82334cf80 0xc82334d060 0xc82334d120] } +&{find QTextDocument::find commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false true 2 QTextCursor [0xc82334d300 0xc82334d3c0 0xc82334d440] } +&{find QTextDocument::find commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false QTextCursor [0xc82334d600 0xc82334d6a0 0xc82334d760] } +&{findBlock QTextDocument::findBlock commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false QTextBlock [0xc82334d920] } +&{findBlockByLineNumber QTextDocument::findBlockByLineNumber commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false QTextBlock [0xc82334dac0] } +&{findBlockByNumber QTextDocument::findBlockByNumber commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false QTextBlock [0xc82334dcc0] } +&{firstBlock QTextDocument::firstBlock commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false QTextBlock [] } +&{idealWidth QTextDocument::idealWidth commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false qreal [] } +&{isEmpty QTextDocument::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false bool [] } +&{isRedoAvailable QTextDocument::isRedoAvailable commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false bool [] } +&{isUndoAvailable QTextDocument::isUndoAvailable commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false bool [] } +&{lastBlock QTextDocument::lastBlock commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false QTextBlock [] } +&{lineCount QTextDocument::lineCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false int [] } +&{loadResource QTextDocument::loadResource commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h impure plain false false QVariant [0xc823364720 0xc8233647a0] } +&{metaInformation QTextDocument::metaInformation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false QString [0xc823364940] } +&{modificationChanged QTextDocument::modificationChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non signal false false void [0xc823364ae0] } +&{object QTextDocument::object commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false QTextObject * [0xc823364ca0] } +&{objectForFormat QTextDocument::objectForFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false QTextObject * [0xc823364e60] } +&{pageCount QTextDocument::pageCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false int [] } +&{print QTextDocument::print commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false void [0xc823365180] } +&{redo QTextDocument::redo commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non slot false true 2 void [] } +&{redo QTextDocument::redo commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false void [0xc823365480] } +&{redoAvailable QTextDocument::redoAvailable commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non signal false false void [0xc823365640] } +&{resource QTextDocument::resource commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false QVariant [0xc823365800 0xc823365880] } +&{revision QTextDocument::revision commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false int [] } +&{rootFrame QTextDocument::rootFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false QTextFrame * [] } +&{setDefaultCursorMoveStyle QTextDocument::setDefaultCursorMoveStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false void [0xc823365c40] } +&{setDefaultFont QTextDocument::setDefaultFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false void [0xc823365e40] } +&{setDefaultTextOption QTextDocument::setDefaultTextOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false void [0xc82337c040] } +&{setDocumentLayout QTextDocument::setDocumentLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false void [0xc82337c2a0] } +&{setHtml QTextDocument::setHtml commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false void [0xc82337c4a0] } +&{setIndentWidth QTextDocument::setIndentWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false void [0xc82337c680] } +&{setMetaInformation QTextDocument::setMetaInformation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false void [0xc82337c820 0xc82337c8a0] } +&{setPlainText QTextDocument::setPlainText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false void [0xc82337ca60] } +&{toHtml QTextDocument::toHtml commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false QString [0xc82337cc40] } +&{toPlainText QTextDocument::toPlainText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false QString [] } +&{undo QTextDocument::undo commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non slot false true 2 void [] } +&{undo QTextDocument::undo commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non plain false false void [0xc82337d040] } +&{undoAvailable QTextDocument::undoAvailable commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non signal false false void [0xc82337d200] } +&{undoCommandAdded QTextDocument::undoCommandAdded commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non signal false false void [] } +&{~QTextDocument QTextDocument::~QTextDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocument.h non destructor false false [] } +######################################## ENUMS ######################################## +&{FindFlag QTextDocument::FindFlag commendable public QTextDocument::FindFlags [0xc8233251a0 0xc823325240 0xc823325300]} +&{MetaInformation QTextDocument::MetaInformation commendable public [0xc8233254a0 0xc823325520]} +&{ResourceType QTextDocument::ResourceType commendable public [0xc8233256c0 0xc823325740 0xc8233257e0 0xc8233258a0]} +&{Stacks QTextDocument::Stacks commendable public [0xc823325a60 0xc823325ae0 0xc823325ba0]} diff --git a/internal/binding/dump/QtGui/QTextDocumentFragment.txt b/internal/binding/dump/QtGui/QTextDocumentFragment.txt new file mode 100755 index 00000000..6c0f853f --- /dev/null +++ b/internal/binding/dump/QtGui/QTextDocumentFragment.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QTextDocumentFragment QTextDocumentFragment::QTextDocumentFragment commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocumentfragment.cpp non constructor false true 4 [0xc82338ec00] } +&{fromHtml QTextDocumentFragment::fromHtml commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocumentfragment.cpp non plain true false QTextDocumentFragment [0xc82338ee60] } +&{fromHtml QTextDocumentFragment::fromHtml commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocumentfragment.cpp non plain true true 2 QTextDocumentFragment [0xc82338f080 0xc82338f120] } +&{operator= QTextDocumentFragment::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocumentfragment.cpp non plain false false QTextDocumentFragment & [0xc82338f3a0] } +&{QTextDocumentFragment QTextDocumentFragment::QTextDocumentFragment commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocumentfragment.h non constructor false false [] } +&{QTextDocumentFragment QTextDocumentFragment::QTextDocumentFragment commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocumentfragment.h non constructor false true 3 [0xc82338f6e0] } +&{QTextDocumentFragment QTextDocumentFragment::QTextDocumentFragment commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocumentfragment.h non constructor false true 2 [0xc82338f900] } +&{fromPlainText QTextDocumentFragment::fromPlainText commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocumentfragment.h non plain true false QTextDocumentFragment [0xc82338fb00] } +&{isEmpty QTextDocumentFragment::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocumentfragment.h non plain false false bool [] } +&{toHtml QTextDocumentFragment::toHtml commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocumentfragment.h non plain false false QString [0xc82338fe00] } +&{toPlainText QTextDocumentFragment::toPlainText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocumentfragment.h non plain false false QString [] } +&{~QTextDocumentFragment QTextDocumentFragment::~QTextDocumentFragment commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocumentfragment.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QTextDocumentWriter.txt b/internal/binding/dump/QtGui/QTextDocumentWriter.txt new file mode 100755 index 00000000..16ef30a6 --- /dev/null +++ b/internal/binding/dump/QtGui/QTextDocumentWriter.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{QTextDocumentWriter QTextDocumentWriter::QTextDocumentWriter commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocumentwriter.h non constructor false false [] } +&{QTextDocumentWriter QTextDocumentWriter::QTextDocumentWriter commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocumentwriter.h non constructor false true 2 [0xc82339e420 0xc82339e4c0] } +&{QTextDocumentWriter QTextDocumentWriter::QTextDocumentWriter commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocumentwriter.h non constructor false true 3 [0xc82339e6c0 0xc82339e760] } +&{codec QTextDocumentWriter::codec commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocumentwriter.h non plain false false QTextCodec * [] } +&{device QTextDocumentWriter::device commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocumentwriter.h non plain false false QIODevice * [] } +&{fileName QTextDocumentWriter::fileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocumentwriter.h non plain false false QString [] } +&{format QTextDocumentWriter::format commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocumentwriter.h non plain false false QByteArray [] } +&{setCodec QTextDocumentWriter::setCodec commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocumentwriter.h non plain false false void [0xc82339ee00] } +&{setDevice QTextDocumentWriter::setDevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocumentwriter.h non plain false false void [0xc82339efe0] } +&{setFileName QTextDocumentWriter::setFileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocumentwriter.h non plain false false void [0xc82339f1a0] } +&{setFormat QTextDocumentWriter::setFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocumentwriter.h non plain false false void [0xc82339f380] } +&{supportedDocumentFormats QTextDocumentWriter::supportedDocumentFormats commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocumentwriter.h non plain true false QList [] } +&{write QTextDocumentWriter::write commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocumentwriter.h non plain false false bool [0xc82339f700] } +&{write QTextDocumentWriter::write commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocumentwriter.h non plain false true 2 bool [0xc82339f940] } +&{~QTextDocumentWriter QTextDocumentWriter::~QTextDocumentWriter commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextdocumentwriter.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QTextFormat.txt b/internal/binding/dump/QtGui/QTextFormat.txt new file mode 100755 index 00000000..2ea1fe9b --- /dev/null +++ b/internal/binding/dump/QtGui/QTextFormat.txt @@ -0,0 +1,61 @@ +######################################## FUNCTIONS ######################################## +&{QTextFormat QTextFormat::QTextFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.cpp non constructor false true 3 [0xc820314660] } +&{operator= QTextFormat::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.cpp non plain false false QTextFormat & [0xc820315140] } +&{operator== QTextFormat::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.cpp non plain false false bool [0xc820315c00] } +&{setObjectIndex QTextFormat::setObjectIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.cpp non plain false false void [0xc82036c740] } +&{QTextFormat QTextFormat::QTextFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non constructor false false [] } +&{QTextFormat QTextFormat::QTextFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non constructor false true 2 [0xc82055f400] } +&{background QTextFormat::background commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QBrush [] } +&{boolProperty QTextFormat::boolProperty commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [0xc8205f2040] } +&{brushProperty QTextFormat::brushProperty commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QBrush [0xc8205f22c0] } +&{clearBackground QTextFormat::clearBackground commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [] } +&{clearForeground QTextFormat::clearForeground commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [] } +&{clearProperty QTextFormat::clearProperty commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8205f27a0] } +&{colorProperty QTextFormat::colorProperty commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QColor [0xc8205f29c0] } +&{doubleProperty QTextFormat::doubleProperty commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false qreal [0xc8205f2c00] } +&{foreground QTextFormat::foreground commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QBrush [] } +&{hasProperty QTextFormat::hasProperty commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [0xc8205f2fc0] } +&{intProperty QTextFormat::intProperty commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false int [0xc8205f3240] } +&{isBlockFormat QTextFormat::isBlockFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [] } +&{isCharFormat QTextFormat::isCharFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [] } +&{isEmpty QTextFormat::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [] } +&{isFrameFormat QTextFormat::isFrameFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [] } +&{isImageFormat QTextFormat::isImageFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [] } +&{isListFormat QTextFormat::isListFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [] } +&{isTableCellFormat QTextFormat::isTableCellFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [] } +&{isTableFormat QTextFormat::isTableFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [] } +&{isValid QTextFormat::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [] } +&{layoutDirection QTextFormat::layoutDirection commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false Qt::LayoutDirection [] } +&{lengthProperty QTextFormat::lengthProperty commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QTextLength [0xc820ae6420] } +&{lengthVectorProperty QTextFormat::lengthVectorProperty commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QVector [0xc820ae6b00] } +&{merge QTextFormat::merge commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc820ae71a0] } +&{objectIndex QTextFormat::objectIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false int [] } +&{objectType QTextFormat::objectType commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false int [] } +&{operator QVariant QTextFormat::operator QVariant commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false [] } +&{operator!= QTextFormat::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [0xc82083e500] } +&{penProperty QTextFormat::penProperty commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QPen [0xc82083ecc0] } +&{properties QTextFormat::properties commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QMap [] } +&{property QTextFormat::property commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QVariant [0xc82083f700] } +&{propertyCount QTextFormat::propertyCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false int [] } +&{setBackground QTextFormat::setBackground commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc820a30060] } +&{setForeground QTextFormat::setForeground commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc820a30260] } +&{setLayoutDirection QTextFormat::setLayoutDirection commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc820a30560] } +&{setObjectType QTextFormat::setObjectType commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc820a30820] } +&{setProperty QTextFormat::setProperty commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc820a30a00 0xc820a30aa0] } +&{setProperty QTextFormat::setProperty commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false true 2 void [0xc820a30cc0 0xc820a30dc0] } +&{stringProperty QTextFormat::stringProperty commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QString [0xc820a31020] } +&{swap QTextFormat::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc820a31240] } +&{toBlockFormat QTextFormat::toBlockFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QTextBlockFormat [] } +&{toCharFormat QTextFormat::toCharFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QTextCharFormat [] } +&{toFrameFormat QTextFormat::toFrameFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QTextFrameFormat [] } +&{toImageFormat QTextFormat::toImageFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QTextImageFormat [] } +&{toListFormat QTextFormat::toListFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QTextListFormat [] } +&{toTableCellFormat QTextFormat::toTableCellFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QTextTableCellFormat [] } +&{toTableFormat QTextFormat::toTableFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QTextTableFormat [] } +&{type QTextFormat::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false int [] } +&{~QTextFormat QTextFormat::~QTextFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non destructor false false [] } +######################################## ENUMS ######################################## +&{FormatType QTextFormat::FormatType commendable public [0xc82036ce60 0xc82036cfc0 0xc82036d1c0 0xc82036d4a0 0xc82036d7e0 0xc82036da80 0xc82036dd20]} +&{ObjectTypes QTextFormat::ObjectTypes commendable public [0xc8203ae480 0xc8203ae5e0 0xc8203ae7c0 0xc8203ae9c0 0xc8203aeb80]} +&{PageBreakFlag QTextFormat::PageBreakFlag commendable public QTextFormat::PageBreakFlags [0xc8203af140 0xc8203af320 0xc8203af540]} +&{Property QTextFormat::Property commendable public [0xc8203afa40 0xc8203afb20 0xc8203afc40 0xc8203afce0 0xc8203afe40 0xc8203aff80 0xc820a4c1a0 0xc820a4c320 0xc820a4c520 0xc820a4c660 0xc820a4c920 0xc820a4ca00 0xc820a4cbc0 0xc820a4cd00 0xc820a4cf00 0xc820a4d0a0 0xc820a4d220 0xc820a4d440 0xc820a4d680 0xc820a4d800 0xc820a4dba0 0xc820a4dee0 0xc8204660e0 0xc8204661e0 0xc820466260 0xc820466320 0xc820466400 0xc8204664e0 0xc8204665a0 0xc8204666a0 0xc820466740 0xc820466800 0xc820466980 0xc820466ac0 0xc820466b40 0xc820466c20 0xc820466cc0 0xc820466d60 0xc820466de0 0xc820466ec0 0xc820466f60 0xc820467020 0xc820467160 0xc820467240 0xc820467300 0xc820467400 0xc8204674a0 0xc820467540 0xc8204675e0 0xc8204676a0 0xc820467740 0xc8204677c0 0xc820467860 0xc820467900 0xc8204679a0 0xc820467a40 0xc820467b00 0xc820467b80 0xc820467c40 0xc820467ce0 0xc820467dc0 0xc820467e80 0xc820467f40 0xc820524020 0xc820524220 0xc820524480 0xc8205245e0 0xc820524800 0xc820524a20 0xc820524c00 0xc820524e00 0xc820524ec0 0xc820525260 0xc820525540 0xc8205258c0 0xc820525c60 0xc820525f40 0xc82055e140 0xc82055e1e0 0xc82055e400 0xc82055e560 0xc82055e640]} diff --git a/internal/binding/dump/QtGui/QTextFragment.txt b/internal/binding/dump/QtGui/QTextFragment.txt new file mode 100755 index 00000000..d9311065 --- /dev/null +++ b/internal/binding/dump/QtGui/QTextFragment.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{QTextFragment QTextFragment::QTextFragment commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non constructor false false [] } +&{QTextFragment QTextFragment::QTextFragment commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non constructor false true 3 [0xc822cf0700] } +&{charFormat QTextFragment::charFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false QTextCharFormat [] } +&{charFormatIndex QTextFragment::charFormatIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false int [] } +&{contains QTextFragment::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false bool [0xc822cf1000] } +&{glyphRuns QTextFragment::glyphRuns commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false QList [0xc822cf1240 0xc822cf12e0] } +&{isValid QTextFragment::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false bool [] } +&{length QTextFragment::length commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false int [] } +&{operator!= QTextFragment::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false bool [0xc822cf17c0] } +&{operator< QTextFragment::operator< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false bool [0xc822cf1a80] } +&{operator= QTextFragment::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false QTextFragment & [0xc822cf1d40] } +&{operator== QTextFragment::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false bool [0xc82207a000] } +&{position QTextFragment::position commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false int [] } +&{text QTextFragment::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false QString [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QTextFrame.txt b/internal/binding/dump/QtGui/QTextFrame.txt new file mode 100755 index 00000000..089fe313 --- /dev/null +++ b/internal/binding/dump/QtGui/QTextFrame.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QTextFrame QTextFrame::QTextFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.cpp non constructor false false [0xc82207a680] } +&{end QTextFrame::end commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false iterator [] } +&{begin QTextFrame::begin commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false iterator [] } +&{childFrames QTextFrame::childFrames commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false QList [] } +&{firstCursorPosition QTextFrame::firstCursorPosition commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false QTextCursor [] } +&{firstPosition QTextFrame::firstPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false int [] } +&{frameFormat QTextFrame::frameFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false QTextFrameFormat [] } +&{lastCursorPosition QTextFrame::lastCursorPosition commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false QTextCursor [] } +&{lastPosition QTextFrame::lastPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false int [] } +&{parentFrame QTextFrame::parentFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false QTextFrame * [] } +&{setFrameFormat QTextFrame::setFrameFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false void [0xc821f02ce0] } +&{~QTextFrame QTextFrame::~QTextFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QTextFrameFormat.txt b/internal/binding/dump/QtGui/QTextFrameFormat.txt new file mode 100755 index 00000000..6506e4a8 --- /dev/null +++ b/internal/binding/dump/QtGui/QTextFrameFormat.txt @@ -0,0 +1,34 @@ +######################################## FUNCTIONS ######################################## +&{QTextFrameFormat QTextFrameFormat::QTextFrameFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.cpp non constructor false false [] } +&{bottomMargin QTextFrameFormat::bottomMargin commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.cpp non plain false false qreal [] } +&{leftMargin QTextFrameFormat::leftMargin commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.cpp non plain false false qreal [] } +&{rightMargin QTextFrameFormat::rightMargin commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.cpp non plain false false qreal [] } +&{setMargin QTextFrameFormat::setMargin commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.cpp non plain false false void [0xc820b0a6e0] } +&{topMargin QTextFrameFormat::topMargin commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.cpp non plain false false qreal [] } +&{border QTextFrameFormat::border commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false qreal [] } +&{borderBrush QTextFrameFormat::borderBrush commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QBrush [] } +&{borderStyle QTextFrameFormat::borderStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false BorderStyle [] } +&{height QTextFrameFormat::height commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QTextLength [] } +&{isValid QTextFrameFormat::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [] } +&{margin QTextFrameFormat::margin commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false qreal [] } +&{padding QTextFrameFormat::padding commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false qreal [] } +&{pageBreakPolicy QTextFrameFormat::pageBreakPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false PageBreakFlags [] } +&{position QTextFrameFormat::position commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false Position [] } +&{setBorder QTextFrameFormat::setBorder commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc820bc13c0] } +&{setBorderBrush QTextFrameFormat::setBorderBrush commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc820bc19e0] } +&{setBorderStyle QTextFrameFormat::setBorderStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc820bc1f60] } +&{setBottomMargin QTextFrameFormat::setBottomMargin commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8208a4280] } +&{setHeight QTextFrameFormat::setHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8208a47a0] } +&{setHeight QTextFrameFormat::setHeight commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false true 2 void [0xc8208a4ca0] } +&{setLeftMargin QTextFrameFormat::setLeftMargin commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8208a5140] } +&{setPadding QTextFrameFormat::setPadding commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8208a5520] } +&{setPageBreakPolicy QTextFrameFormat::setPageBreakPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8208a5800] } +&{setPosition QTextFrameFormat::setPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8208a5d20] } +&{setRightMargin QTextFrameFormat::setRightMargin commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc820d36140] } +&{setTopMargin QTextFrameFormat::setTopMargin commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc820d36d40] } +&{setWidth QTextFrameFormat::setWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc820d377a0] } +&{setWidth QTextFrameFormat::setWidth commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false true 2 void [0xc820d824c0] } +&{width QTextFrameFormat::width commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QTextLength [] } +######################################## ENUMS ######################################## +&{BorderStyle QTextFrameFormat::BorderStyle commendable public [0xc820b0aa80 0xc820b0ab40 0xc820b0ac60 0xc820b0ad80 0xc820b0aea0 0xc820b0afe0 0xc820b0b100 0xc820b0b1e0 0xc820b0b360 0xc820b0b460 0xc820b0b5c0]} +&{Position QTextFrameFormat::Position commendable public [0xc820b0b800 0xc820b0b880 0xc820b0b940]} diff --git a/internal/binding/dump/QtGui/QTextImageFormat.txt b/internal/binding/dump/QtGui/QTextImageFormat.txt new file mode 100755 index 00000000..a3e63348 --- /dev/null +++ b/internal/binding/dump/QtGui/QTextImageFormat.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{QTextImageFormat QTextImageFormat::QTextImageFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.cpp non constructor false false [] } +&{height QTextImageFormat::height commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false qreal [] } +&{isValid QTextImageFormat::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [] } +&{name QTextImageFormat::name commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QString [] } +&{setHeight QTextImageFormat::setHeight commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc820eaec60] } +&{setName QTextImageFormat::setName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc820eaf1a0] } +&{setWidth QTextImageFormat::setWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc820eaf680] } +&{width QTextImageFormat::width commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false qreal [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QTextInlineObject.txt b/internal/binding/dump/QtGui/QTextInlineObject.txt new file mode 100755 index 00000000..06d2a66c --- /dev/null +++ b/internal/binding/dump/QtGui/QTextInlineObject.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{ascent QTextInlineObject::ascent commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false qreal [] } +&{descent QTextInlineObject::descent commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false qreal [] } +&{format QTextInlineObject::format commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false QTextFormat [] } +&{formatIndex QTextInlineObject::formatIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false int [] } +&{height QTextInlineObject::height commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false qreal [] } +&{isValid QTextInlineObject::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false bool [] } +&{rect QTextInlineObject::rect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false QRectF [] } +&{setAscent QTextInlineObject::setAscent commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false void [0xc821308760] } +&{setDescent QTextInlineObject::setDescent commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false void [0xc821308ba0] } +&{setWidth QTextInlineObject::setWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false void [0xc821308f80] } +&{textDirection QTextInlineObject::textDirection commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false Qt::LayoutDirection [] } +&{textPosition QTextInlineObject::textPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false int [] } +&{width QTextInlineObject::width commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false qreal [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QTextItem.txt b/internal/binding/dump/QtGui/QTextItem.txt new file mode 100755 index 00000000..34136aad --- /dev/null +++ b/internal/binding/dump/QtGui/QTextItem.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{ascent QTextItem::ascent commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.cpp non plain false false qreal [] } +&{descent QTextItem::descent commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.cpp non plain false false qreal [] } +&{font QTextItem::font commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.cpp non plain false false QFont [] } +&{renderFlags QTextItem::renderFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.cpp non plain false false RenderFlags [] } +&{text QTextItem::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.cpp non plain false false QString [] } +&{width QTextItem::width commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qpaintengine.cpp non plain false false qreal [] } +######################################## ENUMS ######################################## +&{RenderFlag QTextItem::RenderFlag commendable public QTextItem::RenderFlags [0xc822c6be20 0xc822c6bea0 0xc822c6bf20 0xc822c6bfa0 0xc822c86040]} diff --git a/internal/binding/dump/QtGui/QTextLayout.txt b/internal/binding/dump/QtGui/QTextLayout.txt new file mode 100755 index 00000000..98c33738 --- /dev/null +++ b/internal/binding/dump/QtGui/QTextLayout.txt @@ -0,0 +1,44 @@ +######################################## FUNCTIONS ######################################## +&{drawCursor QTextLayout::drawCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.cpp non plain false true 2 void [0xc821309fe0 0xc8213d2260 0xc8213d2400] } +&{drawCursor QTextLayout::drawCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.cpp non plain false false void [0xc8213d2960 0xc8213d2a20 0xc8213d2be0 0xc8213d2c80] } +&{QTextLayout QTextLayout::QTextLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non constructor false false [] } +&{QTextLayout QTextLayout::QTextLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non constructor false true 2 [0xc8213d3ea0] } +&{QTextLayout QTextLayout::QTextLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non constructor false true 3 [0xc821470240 0xc821470300 0xc821470460] } +&{additionalFormats QTextLayout::additionalFormats commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false QList [] } +&{beginLayout QTextLayout::beginLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false void [] } +&{boundingRect QTextLayout::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false QRectF [] } +&{cacheEnabled QTextLayout::cacheEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false bool [] } +&{clearAdditionalFormats QTextLayout::clearAdditionalFormats commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false void [] } +&{clearLayout QTextLayout::clearLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false void [] } +&{createLine QTextLayout::createLine commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false QTextLine [] } +&{cursorMoveStyle QTextLayout::cursorMoveStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false Qt::CursorMoveStyle [] } +&{draw QTextLayout::draw commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false void [0xc82154ef60 0xc82154f0e0 0xc82154f2e0 0xc82154f560] } +&{endLayout QTextLayout::endLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false void [] } +&{font QTextLayout::font commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false QFont [] } +&{glyphRuns QTextLayout::glyphRuns commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false QList [0xc821614160 0xc821614360] } +&{isValidCursorPosition QTextLayout::isValidCursorPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false bool [0xc8216146e0] } +&{leftCursorPosition QTextLayout::leftCursorPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false int [0xc821614ce0] } +&{lineAt QTextLayout::lineAt commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false QTextLine [0xc821615240] } +&{lineCount QTextLayout::lineCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false int [] } +&{lineForTextPosition QTextLayout::lineForTextPosition commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false QTextLine [0xc821615aa0] } +&{maximumWidth QTextLayout::maximumWidth commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false qreal [] } +&{minimumWidth QTextLayout::minimumWidth commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false qreal [] } +&{nextCursorPosition QTextLayout::nextCursorPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false int [0xc8216be4e0 0xc8216be680] } +&{position QTextLayout::position commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false QPointF [] } +&{preeditAreaPosition QTextLayout::preeditAreaPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false int [] } +&{preeditAreaText QTextLayout::preeditAreaText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false QString [] } +&{previousCursorPosition QTextLayout::previousCursorPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false int [0xc8216bf3c0 0xc8216bf540] } +&{rightCursorPosition QTextLayout::rightCursorPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false int [0xc8216bfbe0] } +&{setAdditionalFormats QTextLayout::setAdditionalFormats commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false void [0xc821764140] } +&{setCacheEnabled QTextLayout::setCacheEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false void [0xc8217646a0] } +&{setCursorMoveStyle QTextLayout::setCursorMoveStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false void [0xc821764da0] } +&{setFont QTextLayout::setFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false void [0xc821765440] } +&{setPosition QTextLayout::setPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false void [0xc821765b40] } +&{setPreeditArea QTextLayout::setPreeditArea commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false void [0xc8217e2060 0xc8217e21a0] } +&{setText QTextLayout::setText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false void [0xc8217e2c60] } +&{setTextOption QTextLayout::setTextOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false void [0xc8217e32c0] } +&{text QTextLayout::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false QString [] } +&{textOption QTextLayout::textOption commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false const QTextOption & [] } +&{~QTextLayout QTextLayout::~QTextLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non destructor false false [] } +######################################## ENUMS ######################################## +&{CursorMode QTextLayout::CursorMode commendable public [0xc8213d3700 0xc8213d3820]} diff --git a/internal/binding/dump/QtGui/QTextLength.txt b/internal/binding/dump/QtGui/QTextLength.txt new file mode 100755 index 00000000..f000572b --- /dev/null +++ b/internal/binding/dump/QtGui/QTextLength.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{QTextLength QTextLength::QTextLength commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non constructor false false [] } +&{QTextLength QTextLength::QTextLength commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non constructor false true 2 [0xc820aa0f40 0xc820aa1160] } +&{operator QVariant QTextLength::operator QVariant commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false [] } +&{operator!= QTextLength::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [0xc820aa19e0] } +&{operator== QTextLength::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [0xc820aa1fe0] } +&{rawValue QTextLength::rawValue commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false qreal [] } +&{type QTextLength::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false Type [] } +&{value QTextLength::value commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false qreal [0xc826a8ee20] } +######################################## ENUMS ######################################## +&{Type QTextLength::Type commendable public [0xc820aa02e0 0xc820aa0480 0xc820aa06a0]} diff --git a/internal/binding/dump/QtGui/QTextLine.txt b/internal/binding/dump/QtGui/QTextLine.txt new file mode 100755 index 00000000..b034194a --- /dev/null +++ b/internal/binding/dump/QtGui/QTextLine.txt @@ -0,0 +1,32 @@ +######################################## FUNCTIONS ######################################## +&{draw QTextLine::draw commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.cpp non plain false false void [0xc821872400 0xc821872600 0xc821872740] } +&{xToCursor QTextLine::xToCursor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.cpp non plain false false int [0xc821873420 0xc8218736a0] } +&{QTextLine QTextLine::QTextLine commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non constructor false false [] } +&{ascent QTextLine::ascent commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false qreal [] } +&{cursorToX QTextLine::cursorToX commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false qreal [0xc8218e9420 0xc8218e9580] } +&{cursorToX QTextLine::cursorToX commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false true 2 qreal [0xc8218e9a60 0xc8218e9c80] } +&{descent QTextLine::descent commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false qreal [] } +&{glyphRuns QTextLine::glyphRuns commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false QList [0xc82198a620 0xc82198a880] } +&{height QTextLine::height commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false qreal [] } +&{horizontalAdvance QTextLine::horizontalAdvance commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false qreal [] } +&{isValid QTextLine::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false bool [] } +&{leading QTextLine::leading commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false qreal [] } +&{leadingIncluded QTextLine::leadingIncluded commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false bool [] } +&{lineNumber QTextLine::lineNumber commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false int [] } +&{naturalTextRect QTextLine::naturalTextRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false QRectF [] } +&{naturalTextWidth QTextLine::naturalTextWidth commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false qreal [] } +&{position QTextLine::position commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false QPointF [] } +&{rect QTextLine::rect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false QRectF [] } +&{setLeadingIncluded QTextLine::setLeadingIncluded commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false void [0xc821a0ee00] } +&{setLineWidth QTextLine::setLineWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false void [0xc821a0f260] } +&{setNumColumns QTextLine::setNumColumns commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false void [0xc821a0f700] } +&{setNumColumns QTextLine::setNumColumns commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false true 2 void [0xc821a0fc20 0xc821a0fce0] } +&{setPosition QTextLine::setPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false void [0xc821ad4180] } +&{textLength QTextLine::textLength commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false int [] } +&{textStart QTextLine::textStart commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false int [] } +&{width QTextLine::width commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false qreal [] } +&{x QTextLine::x commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false qreal [] } +&{y QTextLine::y commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlayout.h non plain false false qreal [] } +######################################## ENUMS ######################################## +&{CursorPosition QTextLine::CursorPosition commendable public [0xc821873c60 0xc821873ec0]} +&{Edge QTextLine::Edge commendable public [0xc8218e8340 0xc8218e8520]} diff --git a/internal/binding/dump/QtGui/QTextList.txt b/internal/binding/dump/QtGui/QTextList.txt new file mode 100755 index 00000000..a670c8ff --- /dev/null +++ b/internal/binding/dump/QtGui/QTextList.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{itemNumber QTextList::itemNumber commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlist.cpp non plain false false int [0xc821ad5160] } +&{itemText QTextList::itemText commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlist.cpp non plain false false QString [0xc821ad5720] } +&{add QTextList::add commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlist.h non plain false false void [0xc821bac120] } +&{count QTextList::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlist.h non plain false false int [] } +&{format QTextList::format commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlist.h non plain false false QTextListFormat [] } +&{item QTextList::item commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlist.h non plain false false QTextBlock [0xc821bacd00] } +&{remove QTextList::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlist.h non plain false false void [0xc821bad240] } +&{removeItem QTextList::removeItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlist.h non plain false false void [0xc821bad740] } +&{setFormat QTextList::setFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextlist.h non plain false false void [0xc821badc60] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QTextListFormat.txt b/internal/binding/dump/QtGui/QTextListFormat.txt new file mode 100755 index 00000000..1d035fc9 --- /dev/null +++ b/internal/binding/dump/QtGui/QTextListFormat.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QTextListFormat QTextListFormat::QTextListFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.cpp non constructor false false [] } +&{indent QTextListFormat::indent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false int [] } +&{isValid QTextListFormat::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [] } +&{numberPrefix QTextListFormat::numberPrefix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QString [] } +&{numberSuffix QTextListFormat::numberSuffix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QString [] } +&{setIndent QTextListFormat::setIndent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc820f1e5a0] } +&{setNumberPrefix QTextListFormat::setNumberPrefix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc820f1ec60] } +&{setNumberSuffix QTextListFormat::setNumberSuffix commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc820f1f360] } +&{setStyle QTextListFormat::setStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc820f1fb80] } +&{style QTextListFormat::style commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false Style [] } +######################################## ENUMS ######################################## +&{Style QTextListFormat::Style commendable public [0xc826b1a320 0xc826b1a4c0 0xc826b1a720 0xc826b1a920 0xc826b1aa20 0xc826b1ad20 0xc826b1ae00 0xc826b1b0a0 0xc826b1b2e0]} diff --git a/internal/binding/dump/QtGui/QTextObject.txt b/internal/binding/dump/QtGui/QTextObject.txt new file mode 100755 index 00000000..07972b6f --- /dev/null +++ b/internal/binding/dump/QtGui/QTextObject.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QTextObject QTextObject::QTextObject commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.cpp non constructor false false [0xc821f034c0] } +&{document QTextObject::document commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false QTextDocument * [] } +&{format QTextObject::format commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false QTextFormat [] } +&{formatIndex QTextObject::formatIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false int [] } +&{objectIndex QTextObject::objectIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false int [] } +&{setFormat QTextObject::setFormat commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non plain false false void [0xc8228c2360] } +&{~QTextObject QTextObject::~QTextObject commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextobject.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QTextObjectInterface.txt b/internal/binding/dump/QtGui/QTextObjectInterface.txt new file mode 100755 index 00000000..a579f0b7 --- /dev/null +++ b/internal/binding/dump/QtGui/QTextObjectInterface.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{drawObject QTextObjectInterface::drawObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qabstracttextdocumentlayout.h pure plain false false void [0xc82313e0e0 0xc82313e160 0xc82313e1e0 0xc82313e260 0xc82313e320] } +&{intrinsicSize QTextObjectInterface::intrinsicSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qabstracttextdocumentlayout.h pure plain false false QSizeF [0xc82313e4c0 0xc82313e540 0xc82313e5e0] } +&{~QTextObjectInterface QTextObjectInterface::~QTextObjectInterface commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qabstracttextdocumentlayout.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QTextOption.txt b/internal/binding/dump/QtGui/QTextOption.txt new file mode 100755 index 00000000..09797f2e --- /dev/null +++ b/internal/binding/dump/QtGui/QTextOption.txt @@ -0,0 +1,26 @@ +######################################## FUNCTIONS ######################################## +&{QTextOption QTextOption::QTextOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextoption.cpp non constructor false true 3 [0xc8228c2840] } +&{operator= QTextOption::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextoption.cpp non plain false false QTextOption & [0xc8228c2b20] } +&{tabs QTextOption::tabs commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextoption.cpp non plain false false QList [] } +&{QTextOption QTextOption::QTextOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextoption.h non constructor false false [] } +&{QTextOption QTextOption::QTextOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextoption.h non constructor false true 2 [0xc821f2aae0] } +&{alignment QTextOption::alignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextoption.h non plain false false Qt::Alignment [] } +&{flags QTextOption::flags commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextoption.h non plain false false Flags [] } +&{setAlignment QTextOption::setAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextoption.h non plain false false void [0xc821f2af80] } +&{setFlags QTextOption::setFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextoption.h non plain false false void [0xc821f2b220] } +&{setTabArray QTextOption::setTabArray commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextoption.h non plain false false void [0xc821f2b480] } +&{setTabStop QTextOption::setTabStop commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextoption.h non plain false false void [0xc821f2b740] } +&{setTabs QTextOption::setTabs commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextoption.h non plain false false void [0xc821f2b9a0] } +&{setTextDirection QTextOption::setTextDirection commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextoption.h non plain false false void [0xc821f2bc20] } +&{setUseDesignMetrics QTextOption::setUseDesignMetrics commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextoption.h non plain false false void [0xc821f2bee0] } +&{setWrapMode QTextOption::setWrapMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextoption.h non plain false false void [0xc8229c8140] } +&{tabArray QTextOption::tabArray commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextoption.h non plain false false QList [] } +&{tabStop QTextOption::tabStop commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextoption.h non plain false false qreal [] } +&{textDirection QTextOption::textDirection commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextoption.h non plain false false Qt::LayoutDirection [] } +&{useDesignMetrics QTextOption::useDesignMetrics commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextoption.h non plain false false bool [] } +&{wrapMode QTextOption::wrapMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextoption.h non plain false false WrapMode [] } +&{~QTextOption QTextOption::~QTextOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextoption.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Flag QTextOption::Flag commendable public QTextOption::Flags [0xc8228c38a0 0xc8228c39a0 0xc8228c3aa0 0xc8228c3b60 0xc8228c3c20]} +&{TabType QTextOption::TabType commendable public [0xc8228c3ee0 0xc8228c3fa0 0xc821f2a020 0xc821f2a0a0]} +&{WrapMode QTextOption::WrapMode commendable public [0xc821f2a300 0xc821f2a3a0 0xc821f2a460 0xc821f2a520 0xc821f2a5e0]} diff --git a/internal/binding/dump/QtGui/QTextTable.txt b/internal/binding/dump/QtGui/QTextTable.txt new file mode 100755 index 00000000..65db0269 --- /dev/null +++ b/internal/binding/dump/QtGui/QTextTable.txt @@ -0,0 +1,21 @@ +######################################## FUNCTIONS ######################################## +&{cellAt QTextTable::cellAt commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.cpp non plain false true 3 QTextTableCell [0xc8229c8cc0] } +&{cellAt QTextTable::cellAt commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.cpp non plain false false QTextTableCell [0xc8229c8f60 0xc8229c9000] } +&{insertColumns QTextTable::insertColumns commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.cpp non plain false false void [0xc8229c9240 0xc8229c9300] } +&{insertRows QTextTable::insertRows commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.cpp non plain false false void [0xc8229c9540 0xc8229c95e0] } +&{removeColumns QTextTable::removeColumns commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.cpp non plain false false void [0xc8229c9820 0xc8229c9900] } +&{removeRows QTextTable::removeRows commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.cpp non plain false false void [0xc8229c9b00 0xc8229c9be0] } +&{resize QTextTable::resize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.cpp non plain false false void [0xc8229c9e00 0xc8229c9ea0] } +&{rowEnd QTextTable::rowEnd commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.cpp non plain false false QTextCursor [0xc821f36140] } +&{rowStart QTextTable::rowStart commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.cpp non plain false false QTextCursor [0xc821f36420] } +&{setFormat QTextTable::setFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.cpp non plain false false void [0xc821f366e0] } +&{appendColumns QTextTable::appendColumns commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.h non plain false false void [0xc821f36bc0] } +&{appendRows QTextTable::appendRows commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.h non plain false false void [0xc821f36e40] } +&{cellAt QTextTable::cellAt commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.h non plain false true 2 QTextTableCell [0xc821f37060] } +&{columns QTextTable::columns commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.h non plain false false int [] } +&{format QTextTable::format commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.h non plain false false QTextTableFormat [] } +&{mergeCells QTextTable::mergeCells commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.h non plain false true 2 void [0xc821f37580] } +&{mergeCells QTextTable::mergeCells commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.h non plain false false void [0xc821f37800 0xc821f37880 0xc821f37940 0xc821f379c0] } +&{rows QTextTable::rows commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.h non plain false false int [] } +&{splitCell QTextTable::splitCell commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.h non plain false false void [0xc821f37ca0 0xc821f37d20 0xc821f37de0 0xc821f37e60] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QTextTableCell.txt b/internal/binding/dump/QtGui/QTextTableCell.txt new file mode 100755 index 00000000..033a5125 --- /dev/null +++ b/internal/binding/dump/QtGui/QTextTableCell.txt @@ -0,0 +1,20 @@ +######################################## FUNCTIONS ######################################## +&{QTextTableCell QTextTableCell::QTextTableCell commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.h non constructor false false [] } +&{QTextTableCell QTextTableCell::QTextTableCell commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.h non constructor false true 2 [0xc821e843e0] } +&{begin QTextTableCell::begin commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.h non plain false false QTextFrame::iterator [] } +&{column QTextTableCell::column commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.h non plain false false int [] } +&{columnSpan QTextTableCell::columnSpan commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.h non plain false false int [] } +&{end QTextTableCell::end commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.h non plain false false QTextFrame::iterator [] } +&{firstCursorPosition QTextTableCell::firstCursorPosition commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.h non plain false false QTextCursor [] } +&{format QTextTableCell::format commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.h non plain false false QTextCharFormat [] } +&{isValid QTextTableCell::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.h non plain false false bool [] } +&{lastCursorPosition QTextTableCell::lastCursorPosition commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.h non plain false false QTextCursor [] } +&{operator!= QTextTableCell::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.h non plain false false bool [0xc821e85680] } +&{operator= QTextTableCell::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.h non plain false false QTextTableCell & [0xc821e85940] } +&{operator== QTextTableCell::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.h non plain false false bool [0xc821e85ba0] } +&{row QTextTableCell::row commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.h non plain false false int [] } +&{rowSpan QTextTableCell::rowSpan commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.h non plain false false int [] } +&{setFormat QTextTableCell::setFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.h non plain false false void [0xc820d04100] } +&{tableCellFormatIndex QTextTableCell::tableCellFormatIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.h non plain false false int [] } +&{~QTextTableCell QTextTableCell::~QTextTableCell commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtexttable.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QTextTableCellFormat.txt b/internal/binding/dump/QtGui/QTextTableCellFormat.txt new file mode 100755 index 00000000..6395e246 --- /dev/null +++ b/internal/binding/dump/QtGui/QTextTableCellFormat.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QTextTableCellFormat QTextTableCellFormat::QTextTableCellFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.cpp non constructor false false [] } +&{bottomPadding QTextTableCellFormat::bottomPadding commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false qreal [] } +&{isValid QTextTableCellFormat::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [] } +&{leftPadding QTextTableCellFormat::leftPadding commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false qreal [] } +&{rightPadding QTextTableCellFormat::rightPadding commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false qreal [] } +&{setBottomPadding QTextTableCellFormat::setBottomPadding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc820fabea0] } +&{setLeftPadding QTextTableCellFormat::setLeftPadding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc821064280] } +&{setPadding QTextTableCellFormat::setPadding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc821064a80] } +&{setRightPadding QTextTableCellFormat::setRightPadding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc821065080] } +&{setTopPadding QTextTableCellFormat::setTopPadding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc821065540] } +&{topPadding QTextTableCellFormat::topPadding commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false qreal [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QTextTableFormat.txt b/internal/binding/dump/QtGui/QTextTableFormat.txt new file mode 100755 index 00000000..2b43a9b5 --- /dev/null +++ b/internal/binding/dump/QtGui/QTextTableFormat.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{QTextTableFormat QTextTableFormat::QTextTableFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.cpp non constructor false false [] } +&{alignment QTextTableFormat::alignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false Qt::Alignment [] } +&{cellPadding QTextTableFormat::cellPadding commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false qreal [] } +&{cellSpacing QTextTableFormat::cellSpacing commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false qreal [] } +&{clearColumnWidthConstraints QTextTableFormat::clearColumnWidthConstraints commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [] } +&{columnWidthConstraints QTextTableFormat::columnWidthConstraints commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false QVector [] } +&{columns QTextTableFormat::columns commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false int [] } +&{headerRowCount QTextTableFormat::headerRowCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false int [] } +&{isValid QTextTableFormat::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false bool [] } +&{setAlignment QTextTableFormat::setAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8211a4460] } +&{setCellPadding QTextTableFormat::setCellPadding commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8211a4a60] } +&{setCellSpacing QTextTableFormat::setCellSpacing commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8211a51e0] } +&{setColumnWidthConstraints QTextTableFormat::setColumnWidthConstraints commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc8211a58c0] } +&{setHeaderRowCount QTextTableFormat::setHeaderRowCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/text/qtextformat.h non plain false false void [0xc82122e860] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QTouchDevice.txt b/internal/binding/dump/QtGui/QTouchDevice.txt new file mode 100755 index 00000000..4d0f2522 --- /dev/null +++ b/internal/binding/dump/QtGui/QTouchDevice.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QTouchDevice QTouchDevice::QTouchDevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qtouchdevice.h non constructor false false [] } +&{capabilities QTouchDevice::capabilities commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qtouchdevice.h non plain false false Capabilities [] } +&{devices QTouchDevice::devices commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qtouchdevice.h non plain true false QList [] } +&{maximumTouchPoints QTouchDevice::maximumTouchPoints commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qtouchdevice.h non plain false false int [] } +&{name QTouchDevice::name commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qtouchdevice.h non plain false false QString [] } +&{setCapabilities QTouchDevice::setCapabilities commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qtouchdevice.h non plain false false void [0xc82093d800] } +&{setMaximumTouchPoints QTouchDevice::setMaximumTouchPoints commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qtouchdevice.h non plain false false void [0xc82093d9e0] } +&{setName QTouchDevice::setName commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qtouchdevice.h non plain false false void [0xc82093dba0] } +&{setType QTouchDevice::setType commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qtouchdevice.h non plain false false void [0xc82093dde0] } +&{type QTouchDevice::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qtouchdevice.h non plain false false DeviceType [] } +&{~QTouchDevice QTouchDevice::~QTouchDevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qtouchdevice.h non destructor false false [] } +######################################## ENUMS ######################################## +&{CapabilityFlag QTouchDevice::CapabilityFlag commendable public QTouchDevice::Capabilities [0xc82093c8c0 0xc82093c940 0xc82093c9c0 0xc82093ca40 0xc82093cae0 0xc82093cb80 0xc82093cc40]} +&{DeviceType QTouchDevice::DeviceType commendable public [0xc82093cde0 0xc82093ce80]} diff --git a/internal/binding/dump/QtGui/QTouchEvent.txt b/internal/binding/dump/QtGui/QTouchEvent.txt new file mode 100755 index 00000000..eaf336db --- /dev/null +++ b/internal/binding/dump/QtGui/QTouchEvent.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QTouchEvent QTouchEvent::QTouchEvent commendable unsupported_cppEnum /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [0xc82080cbc0 0xc82080cc60 0xc82080cde0 0xc82080cec0 0xc82080d0a0] } +&{device QTouchEvent::device commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QTouchDevice * [] } +&{target QTouchEvent::target commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QObject * [] } +&{touchPointStates QTouchEvent::touchPointStates commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false Qt::TouchPointStates [] } +&{touchPoints QTouchEvent::touchPoints commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QList & [] } +&{window QTouchEvent::window commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QWindow * [] } +&{~QTouchEvent QTouchEvent::~QTouchEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QTransform.txt b/internal/binding/dump/QtGui/QTransform.txt new file mode 100755 index 00000000..9258e6bc --- /dev/null +++ b/internal/binding/dump/QtGui/QTransform.txt @@ -0,0 +1,65 @@ +######################################## FUNCTIONS ######################################## +&{QTransform QTransform::QTransform commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.cpp non constructor false true 5 [0xc8221ffe60] } +&{QTransform QTransform::QTransform commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.cpp non constructor false true 3 [0xc822214020 0xc8222140a0 0xc822214120 0xc8222141a0 0xc822214240 0xc8222142c0 0xc822214340 0xc8222143c0 0xc822214460] } +&{QTransform QTransform::QTransform commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.cpp non constructor false true 4 [0xc822214620 0xc8222146a0 0xc822214720 0xc8222147a0 0xc822214840 0xc8222148c0] } +&{map QTransform::map commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.cpp non plain false true 5 QLineF [0xc822214a20] } +&{map QTransform::map commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.cpp non plain false true 3 QPoint [0xc822214ba0] } +&{map QTransform::map commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.cpp non plain false true 7 QPolygon [0xc822214d00] } +&{map QTransform::map commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.cpp non plain false true 6 QPolygonF [0xc822214e80] } +&{map QTransform::map commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.cpp non plain false true 8 QRegion [0xc822215020] } +&{mapRect QTransform::mapRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.cpp non plain false true 2 QRect [0xc822215200] } +&{mapRect QTransform::mapRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.cpp non plain false false QRectF [0xc8222153c0] } +&{mapToPolygon QTransform::mapToPolygon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.cpp non plain false false QPolygon [0xc822215580] } +&{operator!= QTransform::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.cpp non plain false false bool [0xc822215760] } +&{operator* QTransform::operator* commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.cpp non plain false false QTransform [0xc822215980] } +&{operator*= QTransform::operator*= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.cpp non plain false false QTransform & [0xc822215ba0] } +&{operator== QTransform::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.cpp non plain false false bool [0xc822215dc0] } +&{quadToSquare QTransform::quadToSquare commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.cpp non plain true false bool [0xc822215fe0 0xc82222a0a0] } +&{rotate QTransform::rotate commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.cpp non plain false false QTransform & [0xc82222a280 0xc82222a300] } +&{rotateRadians QTransform::rotateRadians commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.cpp non plain false false QTransform & [0xc82222a4c0 0xc82222a540] } +&{QTransform QTransform::QTransform commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non constructor false false [] } +&{adjoint QTransform::adjoint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false QTransform [] } +&{determinant QTransform::determinant commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false qreal [] } +&{dx QTransform::dx commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false qreal [] } +&{dy QTransform::dy commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false qreal [] } +&{fromScale QTransform::fromScale commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain true false QTransform [0xc82222b8c0 0xc82222b940] } +&{fromTranslate QTransform::fromTranslate commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain true false QTransform [0xc82222bb00 0xc82222bb80] } +&{inverted QTransform::inverted commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false QTransform [0xc82223a0c0] } +&{isAffine QTransform::isAffine commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false bool [] } +&{isIdentity QTransform::isIdentity commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false bool [] } +&{isInvertible QTransform::isInvertible commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false bool [] } +&{isRotating QTransform::isRotating commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false bool [] } +&{isScaling QTransform::isScaling commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false bool [] } +&{isTranslating QTransform::isTranslating commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false bool [] } +&{m11 QTransform::m11 commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false qreal [] } +&{m12 QTransform::m12 commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false qreal [] } +&{m13 QTransform::m13 commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false qreal [] } +&{m21 QTransform::m21 commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false qreal [] } +&{m22 QTransform::m22 commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false qreal [] } +&{m23 QTransform::m23 commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false qreal [] } +&{m31 QTransform::m31 commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false qreal [] } +&{m32 QTransform::m32 commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false qreal [] } +&{m33 QTransform::m33 commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false qreal [] } +&{map QTransform::map commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false true 4 QLine [0xc82223ae00] } +&{map QTransform::map commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false true 9 QPainterPath [0xc82223af80] } +&{map QTransform::map commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false true 2 QPointF [0xc82223b120] } +&{map QTransform::map commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false true 10 void [0xc82223b280 0xc82223b300 0xc82223b380 0xc82223b400] } +&{map QTransform::map commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false void [0xc82223b560 0xc82223b5e0 0xc82223b660 0xc82223b6e0] } +&{operator QVariant QTransform::operator QVariant commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false [] } +&{operator*= QTransform::operator*= commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false true 2 QTransform & [0xc82223b9e0] } +&{operator+= QTransform::operator+= commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false QTransform & [0xc82223bba0] } +&{operator-= QTransform::operator-= commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false QTransform & [0xc82223bd60] } +&{operator/= QTransform::operator/= commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false QTransform & [0xc82223bf20] } +&{operator= QTransform::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false QTransform & [0xc822252100] } +&{quadToQuad QTransform::quadToQuad commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain true false bool [0xc822252320 0xc822252400 0xc8222524c0] } +&{reset QTransform::reset commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false void [] } +&{scale QTransform::scale commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false QTransform & [0xc822252760 0xc8222527e0] } +&{setMatrix QTransform::setMatrix commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false void [0xc8222529a0 0xc822252a20 0xc822252aa0 0xc822252b20 0xc822252bc0 0xc822252c40 0xc822252cc0 0xc822252d40 0xc822252de0] } +&{shear QTransform::shear commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false QTransform & [0xc822252fa0 0xc822253020] } +&{squareToQuad QTransform::squareToQuad commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain true false bool [0xc822253200 0xc8222532c0] } +&{toAffine QTransform::toAffine commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false const QMatrix & [] } +&{translate QTransform::translate commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false QTransform & [0xc8222535a0 0xc822253620] } +&{transposed QTransform::transposed commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false QTransform [] } +&{type QTransform::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/painting/qtransform.h non plain false false TransformationType [] } +######################################## ENUMS ######################################## +&{TransformationType QTransform::TransformationType commendable public [0xc82222a780 0xc82222a800 0xc82222a880 0xc82222a900 0xc82222a9a0 0xc82222aa20]} diff --git a/internal/binding/dump/QtGui/QValidator.txt b/internal/binding/dump/QtGui/QValidator.txt new file mode 100755 index 00000000..242f885f --- /dev/null +++ b/internal/binding/dump/QtGui/QValidator.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{fixup QValidator::fixup commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.cpp impure plain false false void [0xc8232cee00] } +&{QValidator QValidator::QValidator commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h non constructor false false [0xc8232cf3e0] } +&{changed QValidator::changed commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h non signal false false void [] } +&{locale QValidator::locale commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h non plain false false QLocale [] } +&{setLocale QValidator::setLocale commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h non plain false false void [0xc8232cfe20] } +&{validate QValidator::validate commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h pure plain false false State [0xc8233ef200 0xc8233ef920] } +&{~QValidator QValidator::~QValidator commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/util/qvalidator.h non destructor false false [] } +######################################## ENUMS ######################################## +&{State QValidator::State commendable public [0xc8232cf040 0xc8232cf0e0 0xc8232cf160]} diff --git a/internal/binding/dump/QtGui/QVector2D.txt b/internal/binding/dump/QtGui/QVector2D.txt new file mode 100755 index 00000000..e73aee55 --- /dev/null +++ b/internal/binding/dump/QtGui/QVector2D.txt @@ -0,0 +1,33 @@ +######################################## FUNCTIONS ######################################## +&{QVector2D QVector2D::QVector2D commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non constructor false false [] } +&{QVector2D QVector2D::QVector2D commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non constructor false true 4 [0xc820252520] } +&{QVector2D QVector2D::QVector2D commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non constructor false true 5 [0xc820252840] } +&{QVector2D QVector2D::QVector2D commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non constructor false true 6 [0xc820252c20] } +&{QVector2D QVector2D::QVector2D commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non constructor false true 7 [0xc8202530e0] } +&{QVector2D QVector2D::QVector2D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non constructor false true 3 [0xc820253540 0xc820253600] } +&{distanceToLine QVector2D::distanceToLine commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non plain false false float [0xc820253ee0 0xc820244020] } +&{distanceToPoint QVector2D::distanceToPoint commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non plain false false float [0xc820244440] } +&{dotProduct QVector2D::dotProduct commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non plain true false float [0xc820244860 0xc820244a60] } +&{isNull QVector2D::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non plain false false bool [] } +&{length QVector2D::length commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non plain false false float [] } +&{lengthSquared QVector2D::lengthSquared commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non plain false false float [] } +&{normalize QVector2D::normalize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non plain false false void [] } +&{normalized QVector2D::normalized commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non plain false false QVector2D [] } +&{operator QVariant QVector2D::operator QVariant commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non plain false false [] } +&{operator*= QVector2D::operator*= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non plain false true 2 QVector2D & [0xc820245b60] } +&{operator*= QVector2D::operator*= commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non plain false false QVector2D & [0xc820245ea0] } +&{operator+= QVector2D::operator+= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non plain false false QVector2D & [0xc82023a2c0] } +&{operator-= QVector2D::operator-= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non plain false false QVector2D & [0xc82023a780] } +&{operator/= QVector2D::operator/= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non plain false true 2 QVector2D & [0xc82023ace0] } +&{operator/= QVector2D::operator/= commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non plain false false QVector2D & [0xc82023b140] } +&{operator[] QVector2D::operator[] commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non plain false false float & [0xc82023b5c0] } +&{operator[] QVector2D::operator[] commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non plain false true 2 float [0xc82023b9c0] } +&{setX QVector2D::setX commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non plain false false void [0xc82023bd00] } +&{setY QVector2D::setY commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non plain false false void [0xc8204d6020] } +&{toPoint QVector2D::toPoint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non plain false false QPoint [] } +&{toPointF QVector2D::toPointF commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non plain false false QPointF [] } +&{toVector3D QVector2D::toVector3D commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non plain false false QVector3D [] } +&{toVector4D QVector2D::toVector4D commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non plain false false QVector4D [] } +&{x QVector2D::x commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non plain false false float [] } +&{y QVector2D::y commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector2d.h non plain false false float [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QVector3D.txt b/internal/binding/dump/QtGui/QVector3D.txt new file mode 100755 index 00000000..1f39733f --- /dev/null +++ b/internal/binding/dump/QtGui/QVector3D.txt @@ -0,0 +1,43 @@ +######################################## FUNCTIONS ######################################## +&{QVector3D QVector3D::QVector3D commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non constructor false false [] } +&{QVector3D QVector3D::QVector3D commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non constructor false true 4 [0xc8202247e0] } +&{QVector3D QVector3D::QVector3D commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non constructor false true 5 [0xc820224c80] } +&{QVector3D QVector3D::QVector3D commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non constructor false true 6 [0xc820225180] } +&{QVector3D QVector3D::QVector3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non constructor false true 7 [0xc820225640 0xc8202257e0] } +&{QVector3D QVector3D::QVector3D commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non constructor false true 8 [0xc820225ba0] } +&{QVector3D QVector3D::QVector3D commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non constructor false true 3 [0xc820225ec0 0xc820225f80 0xc82021c0c0] } +&{crossProduct QVector3D::crossProduct commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain true false QVector3D [0xc82021c740 0xc82021c880] } +&{distanceToLine QVector3D::distanceToLine commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false false float [0xc82021cbc0 0xc82021cd20] } +&{distanceToPlane QVector3D::distanceToPlane commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false false float [0xc82021d020 0xc82021d140] } +&{distanceToPlane QVector3D::distanceToPlane commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false true 2 float [0xc82021d480 0xc82021d600 0xc82021d720] } +&{distanceToPoint QVector3D::distanceToPoint commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false false float [0xc82021da60] } +&{dotProduct QVector3D::dotProduct commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain true false float [0xc82021dd40 0xc82021de80] } +&{isNull QVector3D::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false false bool [] } +&{length QVector3D::length commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false false float [] } +&{lengthSquared QVector3D::lengthSquared commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false false float [] } +&{normal QVector3D::normal commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain true false QVector3D [0xc820210860 0xc820210ac0] } +&{normal QVector3D::normal commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain true true 2 QVector3D [0xc820210ee0 0xc820211140 0xc8202112e0] } +&{normalize QVector3D::normalize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false false void [] } +&{normalized QVector3D::normalized commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false false QVector3D [] } +&{operator QVariant QVector3D::operator QVariant commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false false [] } +&{operator*= QVector3D::operator*= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false true 2 QVector3D & [0xc820211dc0] } +&{operator*= QVector3D::operator*= commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false false QVector3D & [0xc820436160] } +&{operator+= QVector3D::operator+= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false false QVector3D & [0xc820436360] } +&{operator-= QVector3D::operator-= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false false QVector3D & [0xc8204365a0] } +&{operator/= QVector3D::operator/= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false true 2 QVector3D & [0xc820436820] } +&{operator/= QVector3D::operator/= commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false false QVector3D & [0xc820436a20] } +&{operator[] QVector3D::operator[] commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false false float & [0xc820436c20] } +&{operator[] QVector3D::operator[] commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false true 2 float [0xc820436e60] } +&{project QVector3D::project commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false false QVector3D [0xc820437120 0xc820437200 0xc8204372c0] } +&{setX QVector3D::setX commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false false void [0xc820437480] } +&{setY QVector3D::setY commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false false void [0xc8204376c0] } +&{setZ QVector3D::setZ commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false false void [0xc8204378c0] } +&{toPoint QVector3D::toPoint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false false QPoint [] } +&{toPointF QVector3D::toPointF commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false false QPointF [] } +&{toVector2D QVector3D::toVector2D commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false false QVector2D [] } +&{toVector4D QVector3D::toVector4D commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false false QVector4D [] } +&{unproject QVector3D::unproject commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false false QVector3D [0xc8202002c0 0xc8202004a0 0xc8202005a0] } +&{x QVector3D::x commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false false float [] } +&{y QVector3D::y commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false false float [] } +&{z QVector3D::z commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector3d.h non plain false false float [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QVector4D.txt b/internal/binding/dump/QtGui/QVector4D.txt new file mode 100755 index 00000000..a5059008 --- /dev/null +++ b/internal/binding/dump/QtGui/QVector4D.txt @@ -0,0 +1,39 @@ +######################################## FUNCTIONS ######################################## +&{QVector4D QVector4D::QVector4D commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non constructor false false [] } +&{QVector4D QVector4D::QVector4D commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non constructor false true 4 [0xc820a0aa40] } +&{QVector4D QVector4D::QVector4D commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non constructor false true 5 [0xc820a0ac20] } +&{QVector4D QVector4D::QVector4D commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non constructor false true 6 [0xc820a0ae00] } +&{QVector4D QVector4D::QVector4D commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non constructor false true 7 [0xc820a0b040 0xc820a0b100 0xc820a0b180] } +&{QVector4D QVector4D::QVector4D commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non constructor false true 8 [0xc820a0b360] } +&{QVector4D QVector4D::QVector4D commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non constructor false true 9 [0xc820a0b580 0xc820a0b640] } +&{QVector4D QVector4D::QVector4D commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non constructor false true 3 [0xc820a0b800 0xc820a0b880 0xc820a0b900 0xc820a0b980] } +&{dotProduct QVector4D::dotProduct commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain true false float [0xc820a0bdc0 0xc820a0bea0] } +&{isNull QVector4D::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false false bool [] } +&{length QVector4D::length commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false false float [] } +&{lengthSquared QVector4D::lengthSquared commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false false float [] } +&{normalize QVector4D::normalize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false false void [] } +&{normalized QVector4D::normalized commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false false QVector4D [] } +&{operator QVariant QVector4D::operator QVariant commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false false [] } +&{operator*= QVector4D::operator*= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false true 2 QVector4D & [0xc8201f4c40] } +&{operator*= QVector4D::operator*= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false false QVector4D & [0xc8201f5020] } +&{operator+= QVector4D::operator+= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false false QVector4D & [0xc8201f52e0] } +&{operator-= QVector4D::operator-= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false false QVector4D & [0xc8201f56c0] } +&{operator/= QVector4D::operator/= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false true 2 QVector4D & [0xc8201f5b60] } +&{operator/= QVector4D::operator/= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false false QVector4D & [0xc8201f5fa0] } +&{operator[] QVector4D::operator[] commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false false float & [0xc8201dc420] } +&{operator[] QVector4D::operator[] commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false true 2 float [0xc8201dc900] } +&{setW QVector4D::setW commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false false void [0xc8201dcbc0] } +&{setX QVector4D::setX commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false false void [0xc8201dcf40] } +&{setY QVector4D::setY commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false false void [0xc8201dd240] } +&{setZ QVector4D::setZ commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false false void [0xc8201dd5e0] } +&{toPoint QVector4D::toPoint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false false QPoint [] } +&{toPointF QVector4D::toPointF commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false false QPointF [] } +&{toVector2D QVector4D::toVector2D commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false false QVector2D [] } +&{toVector2DAffine QVector4D::toVector2DAffine commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false false QVector2D [] } +&{toVector3D QVector4D::toVector3D commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false false QVector3D [] } +&{toVector3DAffine QVector4D::toVector3DAffine commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false false QVector3D [] } +&{w QVector4D::w commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false false float [] } +&{x QVector4D::x commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false false float [] } +&{y QVector4D::y commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false false float [] } +&{z QVector4D::z commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/math3d/qvector4d.h non plain false false float [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QWhatsThisClickedEvent.txt b/internal/binding/dump/QtGui/QWhatsThisClickedEvent.txt new file mode 100755 index 00000000..324ed1de --- /dev/null +++ b/internal/binding/dump/QtGui/QWhatsThisClickedEvent.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{QWhatsThisClickedEvent QWhatsThisClickedEvent::QWhatsThisClickedEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [0xc8207f9200] } +&{href QWhatsThisClickedEvent::href commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QString [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QWheelEvent.txt b/internal/binding/dump/QtGui/QWheelEvent.txt new file mode 100755 index 00000000..a8577818 --- /dev/null +++ b/internal/binding/dump/QtGui/QWheelEvent.txt @@ -0,0 +1,18 @@ +######################################## FUNCTIONS ######################################## +&{QWheelEvent QWheelEvent::QWheelEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false false [0xc8207f97c0 0xc8207f9840 0xc8207f98c0 0xc8207f9940 0xc8207f99e0 0xc8207f9a60 0xc8207f9b00 0xc8207f9bc0] } +&{QWheelEvent QWheelEvent::QWheelEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false true 4 [0xc8207f9ea0 0xc8207f9fa0 0xc820740060 0xc820740180 0xc8207402a0 0xc820740380 0xc820740440 0xc820740520 0xc820740660] } +&{QWheelEvent QWheelEvent::QWheelEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non constructor false true 5 [0xc820740860 0xc820740900 0xc8207409e0 0xc820740a60 0xc820740ba0 0xc820740c20 0xc820740d20 0xc820740e00 0xc820740fa0 0xc820741040] } +&{angleDelta QWheelEvent::angleDelta commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QPoint [] } +&{buttons QWheelEvent::buttons commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false Qt::MouseButtons [] } +&{globalPos QWheelEvent::globalPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QPoint [] } +&{globalPosF QWheelEvent::globalPosF commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QPointF & [] } +&{globalX QWheelEvent::globalX commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +&{globalY QWheelEvent::globalY commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +&{phase QWheelEvent::phase commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false Qt::ScrollPhase [] } +&{pixelDelta QWheelEvent::pixelDelta commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QPoint [] } +&{pos QWheelEvent::pos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false QPoint [] } +&{posF QWheelEvent::posF commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false const QPointF & [] } +&{source QWheelEvent::source commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false Qt::MouseEventSource [] } +&{x QWheelEvent::x commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +&{y QWheelEvent::y commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false int [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtGui/QWindow.txt b/internal/binding/dump/QtGui/QWindow.txt new file mode 100755 index 00000000..442df4b4 --- /dev/null +++ b/internal/binding/dump/QtGui/QWindow.txt @@ -0,0 +1,144 @@ +######################################## FUNCTIONS ######################################## +&{contentOrientation QWindow::contentOrientation commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.cpp non plain false false Qt::ScreenOrientation [] } +&{flags QWindow::flags commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.cpp non plain false false Qt::WindowFlags [] } +&{isVisible QWindow::isVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.cpp non plain false false bool [] } +&{mapFromGlobal QWindow::mapFromGlobal commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.cpp non plain false false QPoint [0xc8204a8ce0] } +&{mapToGlobal QWindow::mapToGlobal commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.cpp non plain false false QPoint [0xc8204a8f40] } +&{modality QWindow::modality commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.cpp non plain false false Qt::WindowModality [] } +&{opacity QWindow::opacity commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.cpp non plain false false qreal [] } +&{reportContentOrientationChange QWindow::reportContentOrientationChange commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.cpp non plain false false void [0xc8204a9540] } +&{setFlags QWindow::setFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.cpp non plain false false void [0xc8204a9820] } +&{setHeight QWindow::setHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.cpp non slot false false void [0xc8204a9ba0] } +&{setMaximumHeight QWindow::setMaximumHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.cpp non slot false false void [0xc8204a9ee0] } +&{setMaximumWidth QWindow::setMaximumWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.cpp non slot false false void [0xc820496240] } +&{setMinimumHeight QWindow::setMinimumHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.cpp non slot false false void [0xc820496600] } +&{setMinimumWidth QWindow::setMinimumWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.cpp non slot false false void [0xc820496980] } +&{setModality QWindow::setModality commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.cpp non plain false false void [0xc820496d00] } +&{setOpacity QWindow::setOpacity commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.cpp non plain false false void [0xc8204970e0] } +&{setTitle QWindow::setTitle commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.cpp non slot false false void [0xc820497460] } +&{setVisibility QWindow::setVisibility commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.cpp non plain false false void [0xc8204977a0] } +&{setVisible QWindow::setVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.cpp non slot false false void [0xc820497ba0] } +&{setWidth QWindow::setWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.cpp non slot false false void [0xc820497f40] } +&{setX QWindow::setX commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.cpp non slot false false void [0xc820484260] } +&{setY QWindow::setY commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.cpp non slot false false void [0xc8204845c0] } +&{title QWindow::title commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.cpp non plain false false QString [] } +&{visibility QWindow::visibility commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.cpp non plain false false Visibility [] } +&{QWindow QWindow::QWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non constructor false false [0xc820485660] } +&{QWindow QWindow::QWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non constructor false true 2 [0xc8204857e0] } +&{activeChanged QWindow::activeChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non signal false false void [] } +&{alert QWindow::alert commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non slot false false void [0xc82046a460] } +&{baseSize QWindow::baseSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false QSize [] } +&{close QWindow::close commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non slot false false bool [] } +&{contentOrientationChanged QWindow::contentOrientationChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non signal false false void [0xc82046aaa0] } +&{create QWindow::create commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false void [] } +&{cursor QWindow::cursor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false QCursor [] } +&{destroy QWindow::destroy commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false void [] } +&{devicePixelRatio QWindow::devicePixelRatio commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false qreal [] } +&{event QWindow::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h impure plain false false bool [0xc82046b3c0] } +&{exposeEvent QWindow::exposeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h impure plain false false void [0xc82046b6c0] } +&{filePath QWindow::filePath commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false QString [] } +&{focusInEvent QWindow::focusInEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h impure plain false false void [0xc82046bbc0] } +&{focusObject QWindow::focusObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h impure plain false false QObject * [] } +&{focusObjectChanged QWindow::focusObjectChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non signal false false void [0xc820458180] } +&{focusOutEvent QWindow::focusOutEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h impure plain false false void [0xc820458500] } +&{format QWindow::format commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h impure plain false false QSurfaceFormat [] } +&{frameGeometry QWindow::frameGeometry commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false QRect [] } +&{frameMargins QWindow::frameMargins commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false QMargins [] } +&{framePosition QWindow::framePosition commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false QPoint [] } +&{fromWinId QWindow::fromWinId commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain true false QWindow * [0xc820458ea0] } +&{geometry QWindow::geometry commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false QRect [] } +&{height QWindow::height commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false int [] } +&{heightChanged QWindow::heightChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non signal false false void [0xc820459680] } +&{hide QWindow::hide commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non slot false false void [] } +&{hideEvent QWindow::hideEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h impure plain false false void [0xc820459a60] } +&{icon QWindow::icon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false QIcon [] } +&{isActive QWindow::isActive commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false bool [] } +&{isAncestorOf QWindow::isAncestorOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false bool [0xc820459ec0 0xc820459fe0] } +&{isExposed QWindow::isExposed commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false bool [] } +&{isModal QWindow::isModal commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false bool [] } +&{isTopLevel QWindow::isTopLevel commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false bool [] } +&{keyPressEvent QWindow::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h impure plain false false void [0xc82044a6e0] } +&{keyReleaseEvent QWindow::keyReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h impure plain false false void [0xc82044a960] } +&{lower QWindow::lower commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non slot false false void [] } +&{mask QWindow::mask commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false QRegion [] } +&{maximumHeight QWindow::maximumHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false int [] } +&{maximumHeightChanged QWindow::maximumHeightChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non signal false false void [0xc82044b1c0] } +&{maximumSize QWindow::maximumSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false QSize [] } +&{maximumWidth QWindow::maximumWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false int [] } +&{maximumWidthChanged QWindow::maximumWidthChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non signal false false void [0xc82044b960] } +&{minimumHeight QWindow::minimumHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false int [] } +&{minimumHeightChanged QWindow::minimumHeightChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non signal false false void [0xc82044be60] } +&{minimumSize QWindow::minimumSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false QSize [] } +&{minimumWidth QWindow::minimumWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false int [] } +&{minimumWidthChanged QWindow::minimumWidthChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non signal false false void [0xc820558500] } +&{modalityChanged QWindow::modalityChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non signal false false void [0xc8205587a0] } +&{mouseDoubleClickEvent QWindow::mouseDoubleClickEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h impure plain false false void [0xc820558b00] } +&{mouseMoveEvent QWindow::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h impure plain false false void [0xc820558ce0] } +&{mousePressEvent QWindow::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h impure plain false false void [0xc820558ec0] } +&{mouseReleaseEvent QWindow::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h impure plain false false void [0xc820559160] } +&{moveEvent QWindow::moveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h impure plain false false void [0xc820559420] } +&{nativeEvent QWindow::nativeEvent commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h impure plain false false bool [0xc820559740 0xc820559840 0xc8205598c0] } +&{opacityChanged QWindow::opacityChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non signal false false void [0xc820559b80] } +&{parent QWindow::parent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false QWindow * [] } +&{position QWindow::position commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false QPoint [] } +&{raise QWindow::raise commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non slot false false void [] } +&{requestActivate QWindow::requestActivate commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non slot false false void [] } +&{requestUpdate QWindow::requestUpdate commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non slot false false void [] } +&{requestedFormat QWindow::requestedFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false QSurfaceFormat [] } +&{resize QWindow::resize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false void [0xc820a4c3e0] } +&{resize QWindow::resize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false true 2 void [0xc820a4c580 0xc820a4c620] } +&{resizeEvent QWindow::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h impure plain false false void [0xc820a4c820] } +&{screen QWindow::screen commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false QScreen * [] } +&{screenChanged QWindow::screenChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non signal false false void [0xc820a4cae0] } +&{setBaseSize QWindow::setBaseSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false void [0xc820a4cce0] } +&{setCursor QWindow::setCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false void [0xc820a4cee0] } +&{setFilePath QWindow::setFilePath commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false void [0xc820a4d100] } +&{setFormat QWindow::setFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false void [0xc820a4d340] } +&{setFramePosition QWindow::setFramePosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false void [0xc820a4d560] } +&{setGeometry QWindow::setGeometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false true 2 void [0xc820a4d740] } +&{setGeometry QWindow::setGeometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false void [0xc820a4d960 0xc820a4d9e0 0xc820a4da80 0xc820a4db40] } +&{setIcon QWindow::setIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false void [0xc820a4dd00] } +&{setKeyboardGrabEnabled QWindow::setKeyboardGrabEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false bool [0xc820a4df40] } +&{setMask QWindow::setMask commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false void [0xc820410100] } +&{setMaximumSize QWindow::setMaximumSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false void [0xc8204103a0] } +&{setMinimumSize QWindow::setMinimumSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false void [0xc820410620] } +&{setMouseGrabEnabled QWindow::setMouseGrabEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false bool [0xc820410960] } +&{setParent QWindow::setParent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false void [0xc820410c60] } +&{setPosition QWindow::setPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false void [0xc820410f20] } +&{setPosition QWindow::setPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false true 2 void [0xc8204111e0 0xc8204112e0] } +&{setScreen QWindow::setScreen commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false void [0xc8204115c0] } +&{setSizeIncrement QWindow::setSizeIncrement commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false void [0xc820411900] } +&{setSurfaceType QWindow::setSurfaceType commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false void [0xc820411b60] } +&{setTransientParent QWindow::setTransientParent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false void [0xc820411f00] } +&{setWindowState QWindow::setWindowState commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false void [0xc8204021c0] } +&{show QWindow::show commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non slot false false void [] } +&{showEvent QWindow::showEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h impure plain false false void [0xc820402540] } +&{showFullScreen QWindow::showFullScreen commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non slot false false void [] } +&{showMaximized QWindow::showMaximized commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non slot false false void [] } +&{showMinimized QWindow::showMinimized commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non slot false false void [] } +&{showNormal QWindow::showNormal commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non slot false false void [] } +&{size QWindow::size commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h impure plain false false QSize [] } +&{sizeIncrement QWindow::sizeIncrement commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false QSize [] } +&{surfaceType QWindow::surfaceType commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h impure plain false false SurfaceType [] } +&{tabletEvent QWindow::tabletEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h impure plain false false void [0xc820403200] } +&{touchEvent QWindow::touchEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h impure plain false false void [0xc820403540] } +&{transientParent QWindow::transientParent commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false QWindow * [] } +&{type QWindow::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false Qt::WindowType [] } +&{unsetCursor QWindow::unsetCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false void [] } +&{visibilityChanged QWindow::visibilityChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non signal false false void [0xc820403be0] } +&{visibleChanged QWindow::visibleChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non signal false false void [0xc820403fc0] } +&{wheelEvent QWindow::wheelEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h impure plain false false void [0xc8204c8220] } +&{width QWindow::width commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false int [] } +&{widthChanged QWindow::widthChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non signal false false void [0xc8204c85c0] } +&{winId QWindow::winId commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false WId [] } +&{windowState QWindow::windowState commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false Qt::WindowState [] } +&{windowStateChanged QWindow::windowStateChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non signal false false void [0xc8204c8b00] } +&{windowTitleChanged QWindow::windowTitleChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non signal false false void [0xc8204c8dc0] } +&{x QWindow::x commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false int [] } +&{xChanged QWindow::xChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non signal false false void [0xc8204c91a0] } +&{y QWindow::y commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non plain false false int [] } +&{yChanged QWindow::yChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h non signal false false void [0xc8204c9580] } +&{~QWindow QWindow::~QWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qwindow.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{AncestorMode QWindow::AncestorMode commendable public [0xc820484ca0 0xc820484e20]} +&{Visibility QWindow::Visibility commendable public [0xc8204850a0 0xc8204851a0 0xc8204852c0 0xc820485380 0xc820485460 0xc8204854e0]} diff --git a/internal/binding/dump/QtGui/QWindowStateChangeEvent.txt b/internal/binding/dump/QtGui/QWindowStateChangeEvent.txt new file mode 100755 index 00000000..700b05d1 --- /dev/null +++ b/internal/binding/dump/QtGui/QWindowStateChangeEvent.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{oldState QWindowStateChangeEvent::oldState commendable public /work/build/qt5_workdir/w/s/qtbase/src/gui/kernel/qevent.h non plain false false Qt::WindowStates [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtHelp/QHelpContentItem.txt b/internal/binding/dump/QtHelp/QHelpContentItem.txt new file mode 100755 index 00000000..75be7ea2 --- /dev/null +++ b/internal/binding/dump/QtHelp/QHelpContentItem.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{child QHelpContentItem::child commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpcontentwidget.h non plain false false QHelpContentItem * [0xc822c53400] } +&{childCount QHelpContentItem::childCount commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpcontentwidget.h non plain false false int [] } +&{childPosition QHelpContentItem::childPosition commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpcontentwidget.h non plain false false int [0xc822c53720] } +&{parent QHelpContentItem::parent commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpcontentwidget.h non plain false false QHelpContentItem * [] } +&{row QHelpContentItem::row commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpcontentwidget.h non plain false false int [] } +&{title QHelpContentItem::title commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpcontentwidget.h non plain false false QString [] } +&{url QHelpContentItem::url commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpcontentwidget.h non plain false false QUrl [] } +&{~QHelpContentItem QHelpContentItem::~QHelpContentItem commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpcontentwidget.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtHelp/QHelpContentModel.txt b/internal/binding/dump/QtHelp/QHelpContentModel.txt new file mode 100755 index 00000000..fea5d03f --- /dev/null +++ b/internal/binding/dump/QtHelp/QHelpContentModel.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{columnCount QHelpContentModel::columnCount commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpcontentwidget.h impure plain false false int [0xc822c7e520] } +&{contentItemAt QHelpContentModel::contentItemAt commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpcontentwidget.h non plain false false QHelpContentItem * [0xc822c7e7c0] } +&{contentsCreated QHelpContentModel::contentsCreated commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpcontentwidget.h non signal false false void [] } +&{contentsCreationStarted QHelpContentModel::contentsCreationStarted commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpcontentwidget.h non signal false false void [] } +&{createContents QHelpContentModel::createContents commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpcontentwidget.h non plain false false void [0xc822c7eb00] } +&{data QHelpContentModel::data commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpcontentwidget.h impure plain false false QVariant [0xc822c7ed20 0xc822c7ede0] } +&{index QHelpContentModel::index commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpcontentwidget.h impure plain false false QModelIndex [0xc822c7efc0 0xc822c7f040 0xc822c7f0e0] } +&{isCreatingContents QHelpContentModel::isCreatingContents commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpcontentwidget.h non plain false false bool [] } +&{parent QHelpContentModel::parent commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpcontentwidget.h impure plain false false QModelIndex [0xc822c7f420] } +&{rowCount QHelpContentModel::rowCount commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpcontentwidget.h impure plain false false int [0xc822c7f660] } +&{~QHelpContentModel QHelpContentModel::~QHelpContentModel commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpcontentwidget.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtHelp/QHelpContentWidget.txt b/internal/binding/dump/QtHelp/QHelpContentWidget.txt new file mode 100755 index 00000000..a628c5f3 --- /dev/null +++ b/internal/binding/dump/QtHelp/QHelpContentWidget.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{indexOf QHelpContentWidget::indexOf commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpcontentwidget.h non plain false false QModelIndex [0xc822cb01a0] } +&{linkActivated QHelpContentWidget::linkActivated commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpcontentwidget.h non signal false false void [0xc822cb0320] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtHelp/QHelpEngine.txt b/internal/binding/dump/QtHelp/QHelpEngine.txt new file mode 100755 index 00000000..dd2e43ec --- /dev/null +++ b/internal/binding/dump/QtHelp/QHelpEngine.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QHelpEngine QHelpEngine::QHelpEngine commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpengine.h non constructor false false [0xc8222ce960 0xc8222ce9e0] } +&{contentModel QHelpEngine::contentModel commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpengine.h non plain false false QHelpContentModel * [] } +&{contentWidget QHelpEngine::contentWidget commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpengine.h non plain false false QHelpContentWidget * [] } +&{indexModel QHelpEngine::indexModel commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpengine.h non plain false false QHelpIndexModel * [] } +&{indexWidget QHelpEngine::indexWidget commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpengine.h non plain false false QHelpIndexWidget * [] } +&{searchEngine QHelpEngine::searchEngine commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpengine.h non plain false false QHelpSearchEngine * [] } +&{~QHelpEngine QHelpEngine::~QHelpEngine commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpengine.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtHelp/QHelpEngineCore.txt b/internal/binding/dump/QtHelp/QHelpEngineCore.txt new file mode 100755 index 00000000..9f4d0889 --- /dev/null +++ b/internal/binding/dump/QtHelp/QHelpEngineCore.txt @@ -0,0 +1,37 @@ +######################################## FUNCTIONS ######################################## +&{autoSaveFilter QHelpEngineCore::autoSaveFilter commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.cpp non plain false false bool [] } +&{collectionFile QHelpEngineCore::collectionFile commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.cpp non plain false false QString [] } +&{currentFilter QHelpEngineCore::currentFilter commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.cpp non plain false false QString [] } +&{setAutoSaveFilter QHelpEngineCore::setAutoSaveFilter commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.cpp non plain false false void [0xc8222f9360] } +&{setCollectionFile QHelpEngineCore::setCollectionFile commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.cpp non plain false false void [0xc8222f9560] } +&{setCurrentFilter QHelpEngineCore::setCurrentFilter commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.cpp non plain false false void [0xc8222f96e0] } +&{QHelpEngineCore QHelpEngineCore::QHelpEngineCore commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non constructor false false [0xc8222f98a0 0xc8222f9920] } +&{addCustomFilter QHelpEngineCore::addCustomFilter commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non plain false false bool [0xc8222f9e00 0xc8222f9ea0] } +&{copyCollectionFile QHelpEngineCore::copyCollectionFile commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non plain false false bool [0xc8223560a0] } +&{currentFilterChanged QHelpEngineCore::currentFilterChanged commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non signal false false void [0xc822356260] } +&{customFilters QHelpEngineCore::customFilters commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non plain false false QStringList [] } +&{customValue QHelpEngineCore::customValue commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non plain false false QVariant [0xc822356520 0xc8223565a0] } +&{documentationFileName QHelpEngineCore::documentationFileName commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non plain false false QString [0xc822356760] } +&{error QHelpEngineCore::error commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non plain false false QString [] } +&{fileData QHelpEngineCore::fileData commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non plain false false QByteArray [0xc822356a60] } +&{files QHelpEngineCore::files commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non plain false false QList [0xc822356c60 0xc822356d00 0xc822356dc0] } +&{filterAttributeSets QHelpEngineCore::filterAttributeSets commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non plain false false QList [0xc822356fe0] } +&{filterAttributes QHelpEngineCore::filterAttributes commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non plain false false QStringList [] } +&{filterAttributes QHelpEngineCore::filterAttributes commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non plain false true 2 QStringList [0xc8223571c0] } +&{findFile QHelpEngineCore::findFile commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non plain false false QUrl [0xc8223573a0] } +&{linksForIdentifier QHelpEngineCore::linksForIdentifier commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non plain false false QMap [0xc8223575c0] } +&{metaData QHelpEngineCore::metaData commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non plain true false QVariant [0xc8223577c0 0xc822357880] } +&{namespaceName QHelpEngineCore::namespaceName commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non plain true false QString [0xc822357a60] } +&{readersAboutToBeInvalidated QHelpEngineCore::readersAboutToBeInvalidated commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non signal false false void [] } +&{registerDocumentation QHelpEngineCore::registerDocumentation commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non plain false false bool [0xc822357d60] } +&{registeredDocumentations QHelpEngineCore::registeredDocumentations commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non plain false false QStringList [] } +&{removeCustomFilter QHelpEngineCore::removeCustomFilter commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non plain false false bool [0xc822378040] } +&{removeCustomValue QHelpEngineCore::removeCustomValue commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non plain false false bool [0xc822378200] } +&{setCustomValue QHelpEngineCore::setCustomValue commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non plain false false bool [0xc8223783c0 0xc822378440] } +&{setupData QHelpEngineCore::setupData commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non plain false false bool [] } +&{setupFinished QHelpEngineCore::setupFinished commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non signal false false void [] } +&{setupStarted QHelpEngineCore::setupStarted commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non signal false false void [] } +&{unregisterDocumentation QHelpEngineCore::unregisterDocumentation commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non plain false false bool [0xc822378920] } +&{warning QHelpEngineCore::warning commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h non signal false false void [0xc822378b20] } +&{~QHelpEngineCore QHelpEngineCore::~QHelpEngineCore commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpenginecore.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtHelp/QHelpIndexModel.txt b/internal/binding/dump/QtHelp/QHelpIndexModel.txt new file mode 100755 index 00000000..a89ea1e3 --- /dev/null +++ b/internal/binding/dump/QtHelp/QHelpIndexModel.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{createIndex QHelpIndexModel::createIndex commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpindexwidget.h non plain false false void [0xc822379900] } +&{filter QHelpIndexModel::filter commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpindexwidget.h non plain false false QModelIndex [0xc822379ae0 0xc822379b60] } +&{indexCreated QHelpIndexModel::indexCreated commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpindexwidget.h non signal false false void [] } +&{indexCreationStarted QHelpIndexModel::indexCreationStarted commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpindexwidget.h non signal false false void [] } +&{isCreatingIndex QHelpIndexModel::isCreatingIndex commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpindexwidget.h non plain false false bool [] } +&{linksForKeyword QHelpIndexModel::linksForKeyword commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpindexwidget.h non plain false false QMap [0xc8223a00a0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtHelp/QHelpIndexWidget.txt b/internal/binding/dump/QtHelp/QHelpIndexWidget.txt new file mode 100755 index 00000000..4922ce7b --- /dev/null +++ b/internal/binding/dump/QtHelp/QHelpIndexWidget.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{activateCurrentItem QHelpIndexWidget::activateCurrentItem commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpindexwidget.h non slot false false void [] } +&{filterIndices QHelpIndexWidget::filterIndices commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpindexwidget.h non slot false false void [0xc8223a0740 0xc8223a07c0] } +&{linkActivated QHelpIndexWidget::linkActivated commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpindexwidget.h non signal false false void [0xc8223a09a0 0xc8223a0a20] } +&{linksActivated QHelpIndexWidget::linksActivated commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpindexwidget.h non signal false false void [0xc8223a0c00 0xc8223a0cc0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtHelp/QHelpSearchEngine.txt b/internal/binding/dump/QtHelp/QHelpSearchEngine.txt new file mode 100755 index 00000000..4f15a80e --- /dev/null +++ b/internal/binding/dump/QtHelp/QHelpSearchEngine.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{QHelpSearchEngine QHelpSearchEngine::QHelpSearchEngine commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchengine.h non constructor false false [0xc8223a11a0 0xc8223a1260] } +&{cancelIndexing QHelpSearchEngine::cancelIndexing commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchengine.h non slot false false void [] } +&{cancelSearching QHelpSearchEngine::cancelSearching commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchengine.h non slot false false void [] } +&{hitCount QHelpSearchEngine::hitCount commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchengine.h non plain false false int [] } +&{hits QHelpSearchEngine::hits commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchengine.h non plain false false QList [0xc8223a16c0 0xc8223a1740] } +&{indexingFinished QHelpSearchEngine::indexingFinished commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchengine.h non signal false false void [] } +&{indexingStarted QHelpSearchEngine::indexingStarted commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchengine.h non signal false false void [] } +&{query QHelpSearchEngine::query commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchengine.h non plain false false QList [] } +&{queryWidget QHelpSearchEngine::queryWidget commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchengine.h non plain false false QHelpSearchQueryWidget * [] } +&{reindexDocumentation QHelpSearchEngine::reindexDocumentation commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchengine.h non slot false false void [] } +&{resultWidget QHelpSearchEngine::resultWidget commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchengine.h non plain false false QHelpSearchResultWidget * [] } +&{search QHelpSearchEngine::search commendable unsupported_goInput /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchengine.h non slot false false void [0xc82215a080] } +&{searchingFinished QHelpSearchEngine::searchingFinished commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchengine.h non signal false false void [0xc82215a2a0] } +&{searchingStarted QHelpSearchEngine::searchingStarted commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchengine.h non signal false false void [] } +&{~QHelpSearchEngine QHelpSearchEngine::~QHelpSearchEngine commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchengine.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtHelp/QHelpSearchQuery.txt b/internal/binding/dump/QtHelp/QHelpSearchQuery.txt new file mode 100755 index 00000000..8f383811 --- /dev/null +++ b/internal/binding/dump/QtHelp/QHelpSearchQuery.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{QHelpSearchQuery QHelpSearchQuery::QHelpSearchQuery commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchengine.h non constructor false false [] } +&{QHelpSearchQuery QHelpSearchQuery::QHelpSearchQuery commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchengine.h non constructor false true 2 [0xc82215ac00 0xc82215aca0] } +######################################## ENUMS ######################################## +&{FieldName QHelpSearchQuery::FieldName commendable public [0xc82215a720 0xc82215a7a0 0xc82215a820 0xc82215a8a0 0xc82215a940 0xc82215a9c0]} diff --git a/internal/binding/dump/QtHelp/QHelpSearchQueryWidget.txt b/internal/binding/dump/QtHelp/QHelpSearchQueryWidget.txt new file mode 100755 index 00000000..00ef22d2 --- /dev/null +++ b/internal/binding/dump/QtHelp/QHelpSearchQueryWidget.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{isCompactMode QHelpSearchQueryWidget::isCompactMode commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchquerywidget.cpp non plain false false bool [] } +&{QHelpSearchQueryWidget QHelpSearchQueryWidget::QHelpSearchQueryWidget commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchquerywidget.h non constructor false false [0xc82215b1e0] } +&{collapseExtendedSearch QHelpSearchQueryWidget::collapseExtendedSearch commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchquerywidget.h non plain false false void [] } +&{expandExtendedSearch QHelpSearchQueryWidget::expandExtendedSearch commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchquerywidget.h non plain false false void [] } +&{query QHelpSearchQueryWidget::query commendable unsupported_cppType /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchquerywidget.h non plain false false QList [] } +&{search QHelpSearchQueryWidget::search commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchquerywidget.h non signal false false void [] } +&{setQuery QHelpSearchQueryWidget::setQuery commendable unsupported_cppType /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchquerywidget.h non plain false false void [0xc82215bb00] } +&{~QHelpSearchQueryWidget QHelpSearchQueryWidget::~QHelpSearchQueryWidget commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchquerywidget.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtHelp/QHelpSearchResultWidget.txt b/internal/binding/dump/QtHelp/QHelpSearchResultWidget.txt new file mode 100755 index 00000000..412653b7 --- /dev/null +++ b/internal/binding/dump/QtHelp/QHelpSearchResultWidget.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{linkAt QHelpSearchResultWidget::linkAt commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchresultwidget.h non plain false false QUrl [0xc8220fe320] } +&{requestShowLink QHelpSearchResultWidget::requestShowLink commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchresultwidget.h non signal false false void [0xc8220fe480] } +&{~QHelpSearchResultWidget QHelpSearchResultWidget::~QHelpSearchResultWidget commendable public /work/build/qt5_workdir/w/s/qttools/src/assistant/help/qhelpsearchresultwidget.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QGeoCodeReply.txt b/internal/binding/dump/QtLocation/QGeoCodeReply.txt new file mode 100755 index 00000000..1fc2c6ee --- /dev/null +++ b/internal/binding/dump/QtLocation/QGeoCodeReply.txt @@ -0,0 +1,23 @@ +######################################## FUNCTIONS ######################################## +&{QGeoCodeReply QGeoCodeReply::QGeoCodeReply commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodereply.h non constructor false false [0xc821db1960 0xc821db1a00 0xc821db1aa0] } +&{QGeoCodeReply QGeoCodeReply::QGeoCodeReply commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodereply.h non constructor false true 2 [0xc821db1d60] } +&{abort QGeoCodeReply::abort commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodereply.h impure plain false false void [] } +&{addLocation QGeoCodeReply::addLocation commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodereply.h non plain false false void [0xc821dbc220] } +&{error QGeoCodeReply::error commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodereply.h non signal false true 2 void [0xc821dbc660 0xc821dbc7c0] } +&{error QGeoCodeReply::error commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodereply.h non plain false false Error [] } +&{errorString QGeoCodeReply::errorString commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodereply.h non plain false false QString [] } +&{finished QGeoCodeReply::finished commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodereply.h non signal false false void [] } +&{isFinished QGeoCodeReply::isFinished commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodereply.h non plain false false bool [] } +&{limit QGeoCodeReply::limit commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodereply.h non plain false false int [] } +&{locations QGeoCodeReply::locations commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodereply.h non plain false false QList [] } +&{offset QGeoCodeReply::offset commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodereply.h non plain false false int [] } +&{setError QGeoCodeReply::setError commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodereply.h non plain false false void [0xc821dbda40 0xc821dbdae0] } +&{setFinished QGeoCodeReply::setFinished commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodereply.h non plain false false void [0xc821dbdfc0] } +&{setLimit QGeoCodeReply::setLimit commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodereply.h non plain false false void [0xc822a682c0] } +&{setLocations QGeoCodeReply::setLocations commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodereply.h non plain false false void [0xc822a68600] } +&{setOffset QGeoCodeReply::setOffset commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodereply.h non plain false false void [0xc822a68960] } +&{setViewport QGeoCodeReply::setViewport commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodereply.h non plain false false void [0xc822a68c20] } +&{viewport QGeoCodeReply::viewport commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodereply.h non plain false false QGeoShape [] } +&{~QGeoCodeReply QGeoCodeReply::~QGeoCodeReply commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodereply.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{Error QGeoCodeReply::Error commendable public [0xc821db0fc0 0xc821db10c0 0xc821db1200 0xc821db1360 0xc821db1480 0xc821db1580 0xc821db1680]} diff --git a/internal/binding/dump/QtLocation/QGeoCodingManager.txt b/internal/binding/dump/QtLocation/QGeoCodingManager.txt new file mode 100755 index 00000000..d7cf2543 --- /dev/null +++ b/internal/binding/dump/QtLocation/QGeoCodingManager.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{error QGeoCodingManager::error commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodingmanager.h non signal false false void [0xc822a69ac0 0xc822a69bc0 0xc822a69d40] } +&{finished QGeoCodingManager::finished commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodingmanager.h non signal false false void [0xc821dcc0c0] } +&{geocode QGeoCodingManager::geocode commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodingmanager.h non plain false false QGeoCodeReply * [0xc821dcc4a0 0xc821dcc680] } +&{geocode QGeoCodingManager::geocode commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodingmanager.h non plain false true 2 QGeoCodeReply * [0xc821dcca80 0xc821dccb40 0xc821dccc80 0xc821dcce00] } +&{locale QGeoCodingManager::locale commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodingmanager.h non plain false false QLocale [] } +&{managerName QGeoCodingManager::managerName commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodingmanager.h non plain false false QString [] } +&{managerVersion QGeoCodingManager::managerVersion commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodingmanager.h non plain false false int [] } +&{reverseGeocode QGeoCodingManager::reverseGeocode commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodingmanager.h non plain false false QGeoCodeReply * [0xc821dcd6c0 0xc821dcd860] } +&{setLocale QGeoCodingManager::setLocale commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodingmanager.h non plain false false void [0xc821dcdc80] } +&{~QGeoCodingManager QGeoCodingManager::~QGeoCodingManager commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodingmanager.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QGeoCodingManagerEngine.txt b/internal/binding/dump/QtLocation/QGeoCodingManagerEngine.txt new file mode 100755 index 00000000..1fbf3669 --- /dev/null +++ b/internal/binding/dump/QtLocation/QGeoCodingManagerEngine.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QGeoCodingManagerEngine QGeoCodingManagerEngine::QGeoCodingManagerEngine commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodingmanagerengine.h non constructor false false [0xc821dd8460 0xc821dd85c0] } +&{error QGeoCodingManagerEngine::error commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodingmanagerengine.h non signal false false void [0xc821dd8900 0xc821dd8a40 0xc821dd8b80] } +&{finished QGeoCodingManagerEngine::finished commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodingmanagerengine.h non signal false false void [0xc821dd8e60] } +&{geocode QGeoCodingManagerEngine::geocode commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodingmanagerengine.h impure plain false false QGeoCodeReply * [0xc821dd91c0 0xc821dd9380] } +&{geocode QGeoCodingManagerEngine::geocode commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodingmanagerengine.h impure plain false true 2 QGeoCodeReply * [0xc821dd9800 0xc821dd98e0 0xc821dd9a20 0xc821dd9b00] } +&{locale QGeoCodingManagerEngine::locale commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodingmanagerengine.h non plain false false QLocale [] } +&{managerName QGeoCodingManagerEngine::managerName commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodingmanagerengine.h non plain false false QString [] } +&{managerVersion QGeoCodingManagerEngine::managerVersion commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodingmanagerengine.h non plain false false int [] } +&{reverseGeocode QGeoCodingManagerEngine::reverseGeocode commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodingmanagerengine.h impure plain false false QGeoCodeReply * [0xc821de8180 0xc821de8300] } +&{setLocale QGeoCodingManagerEngine::setLocale commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodingmanagerengine.h non plain false false void [0xc821de85c0] } +&{~QGeoCodingManagerEngine QGeoCodingManagerEngine::~QGeoCodingManagerEngine commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeocodingmanagerengine.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QGeoManeuver.txt b/internal/binding/dump/QtLocation/QGeoManeuver.txt new file mode 100755 index 00000000..78c50c8f --- /dev/null +++ b/internal/binding/dump/QtLocation/QGeoManeuver.txt @@ -0,0 +1,22 @@ +######################################## FUNCTIONS ######################################## +&{QGeoManeuver QGeoManeuver::QGeoManeuver commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeomaneuver.h non constructor false false [] } +&{QGeoManeuver QGeoManeuver::QGeoManeuver commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeomaneuver.h non constructor false true 2 [0xc821df6780] } +&{direction QGeoManeuver::direction commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeomaneuver.h non plain false false InstructionDirection [] } +&{distanceToNextInstruction QGeoManeuver::distanceToNextInstruction commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeomaneuver.h non plain false false qreal [] } +&{instructionText QGeoManeuver::instructionText commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeomaneuver.h non plain false false QString [] } +&{isValid QGeoManeuver::isValid commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeomaneuver.h non plain false false bool [] } +&{operator!= QGeoManeuver::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeomaneuver.h non plain false false bool [0xc821df73a0] } +&{operator= QGeoManeuver::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeomaneuver.h non plain false false QGeoManeuver & [0xc821df7760] } +&{operator== QGeoManeuver::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeomaneuver.h non plain false false bool [0xc821df7ae0] } +&{position QGeoManeuver::position commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeomaneuver.h non plain false false QGeoCoordinate [] } +&{setDirection QGeoManeuver::setDirection commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeomaneuver.h non plain false false void [0xc821e04040] } +&{setDistanceToNextInstruction QGeoManeuver::setDistanceToNextInstruction commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeomaneuver.h non plain false false void [0xc821e04320] } +&{setInstructionText QGeoManeuver::setInstructionText commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeomaneuver.h non plain false false void [0xc821e04640] } +&{setPosition QGeoManeuver::setPosition commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeomaneuver.h non plain false false void [0xc821e04960] } +&{setTimeToNextInstruction QGeoManeuver::setTimeToNextInstruction commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeomaneuver.h non plain false false void [0xc821e04c40] } +&{setWaypoint QGeoManeuver::setWaypoint commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeomaneuver.h non plain false false void [0xc821e04f20] } +&{timeToNextInstruction QGeoManeuver::timeToNextInstruction commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeomaneuver.h non plain false false int [] } +&{waypoint QGeoManeuver::waypoint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeomaneuver.h non plain false false QGeoCoordinate [] } +&{~QGeoManeuver QGeoManeuver::~QGeoManeuver commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeomaneuver.h non destructor false false [] } +######################################## ENUMS ######################################## +&{InstructionDirection QGeoManeuver::InstructionDirection commendable public [0xc821de9140 0xc821de9240 0xc821de93a0 0xc821de9520 0xc821de96c0 0xc821de97e0 0xc821de9960 0xc821de9b00 0xc821de9ce0 0xc821de9e60 0xc821de9f20 0xc821df6140]} diff --git a/internal/binding/dump/QtLocation/QGeoRoute.txt b/internal/binding/dump/QtLocation/QGeoRoute.txt new file mode 100755 index 00000000..99e45242 --- /dev/null +++ b/internal/binding/dump/QtLocation/QGeoRoute.txt @@ -0,0 +1,24 @@ +######################################## FUNCTIONS ######################################## +&{QGeoRoute QGeoRoute::QGeoRoute commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroute.h non constructor false false [] } +&{QGeoRoute QGeoRoute::QGeoRoute commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroute.h non constructor false true 2 [0xc821e059e0] } +&{bounds QGeoRoute::bounds commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroute.h non plain false false QGeoRectangle [] } +&{distance QGeoRoute::distance commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroute.h non plain false false qreal [] } +&{firstRouteSegment QGeoRoute::firstRouteSegment commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroute.h non plain false false QGeoRouteSegment [] } +&{operator!= QGeoRoute::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroute.h non plain false false bool [0xc821e16320] } +&{operator= QGeoRoute::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroute.h non plain false false QGeoRoute & [0xc821e16620] } +&{operator== QGeoRoute::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroute.h non plain false false bool [0xc821e16980] } +&{path QGeoRoute::path commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroute.h non plain false false QList [] } +&{request QGeoRoute::request commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroute.h non plain false false QGeoRouteRequest [] } +&{routeId QGeoRoute::routeId commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroute.h non plain false false QString [] } +&{setBounds QGeoRoute::setBounds commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroute.h non plain false false void [0xc821e171a0] } +&{setDistance QGeoRoute::setDistance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroute.h non plain false false void [0xc821e17480] } +&{setFirstRouteSegment QGeoRoute::setFirstRouteSegment commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroute.h non plain false false void [0xc821e177e0] } +&{setPath QGeoRoute::setPath commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroute.h non plain false false void [0xc821e17b00] } +&{setRequest QGeoRoute::setRequest commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroute.h non plain false false void [0xc821e17e60] } +&{setRouteId QGeoRoute::setRouteId commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroute.h non plain false false void [0xc821e26180] } +&{setTravelMode QGeoRoute::setTravelMode commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroute.h non plain false false void [0xc821e26640] } +&{setTravelTime QGeoRoute::setTravelTime commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroute.h non plain false false void [0xc821e26ac0] } +&{travelMode QGeoRoute::travelMode commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroute.h non plain false false QGeoRouteRequest::TravelMode [] } +&{travelTime QGeoRoute::travelTime commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroute.h non plain false false int [] } +&{~QGeoRoute QGeoRoute::~QGeoRoute commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroute.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QGeoRouteReply.txt b/internal/binding/dump/QtLocation/QGeoRouteReply.txt new file mode 100755 index 00000000..0921edc0 --- /dev/null +++ b/internal/binding/dump/QtLocation/QGeoRouteReply.txt @@ -0,0 +1,18 @@ +######################################## FUNCTIONS ######################################## +&{QGeoRouteReply QGeoRouteReply::QGeoRouteReply commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutereply.h non constructor false false [0xc821e341c0 0xc821e342c0 0xc821e343a0] } +&{QGeoRouteReply QGeoRouteReply::QGeoRouteReply commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutereply.h non constructor false true 2 [0xc821e34780 0xc821e348c0] } +&{abort QGeoRouteReply::abort commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutereply.h impure plain false false void [] } +&{addRoutes QGeoRouteReply::addRoutes commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutereply.h non plain false false void [0xc821e34da0] } +&{error QGeoRouteReply::error commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutereply.h non signal false true 2 void [0xc821e35240 0xc821e353c0] } +&{error QGeoRouteReply::error commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutereply.h non plain false false Error [] } +&{errorString QGeoRouteReply::errorString commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutereply.h non plain false false QString [] } +&{finished QGeoRouteReply::finished commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutereply.h non signal false false void [] } +&{isFinished QGeoRouteReply::isFinished commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutereply.h non plain false false bool [] } +&{request QGeoRouteReply::request commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutereply.h non plain false false QGeoRouteRequest [] } +&{routes QGeoRouteReply::routes commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutereply.h non plain false false QList [] } +&{setError QGeoRouteReply::setError commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutereply.h non plain false false void [0xc822986320 0xc822986400] } +&{setFinished QGeoRouteReply::setFinished commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutereply.h non plain false false void [0xc822986720] } +&{setRoutes QGeoRouteReply::setRoutes commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutereply.h non plain false false void [0xc822986a00] } +&{~QGeoRouteReply QGeoRouteReply::~QGeoRouteReply commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutereply.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{Error QGeoRouteReply::Error commendable public [0xc821e277c0 0xc821e27900 0xc821e27a80 0xc821e27cc0 0xc821e27e00 0xc821e27f00]} diff --git a/internal/binding/dump/QtLocation/QGeoRouteRequest.txt b/internal/binding/dump/QtLocation/QGeoRouteRequest.txt new file mode 100755 index 00000000..455879c2 --- /dev/null +++ b/internal/binding/dump/QtLocation/QGeoRouteRequest.txt @@ -0,0 +1,32 @@ +######################################## FUNCTIONS ######################################## +&{QGeoRouteRequest QGeoRouteRequest::QGeoRouteRequest commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeorouterequest.h non constructor false true 2 [0xc8229a6040 0xc8229a6180] } +&{QGeoRouteRequest QGeoRouteRequest::QGeoRouteRequest commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeorouterequest.h non constructor false true 3 [0xc8229a6440] } +&{QGeoRouteRequest QGeoRouteRequest::QGeoRouteRequest commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeorouterequest.h non constructor false false [0xc8229a6740] } +&{excludeAreas QGeoRouteRequest::excludeAreas commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeorouterequest.h non plain false false QList [] } +&{featureTypes QGeoRouteRequest::featureTypes commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeorouterequest.h non plain false false QList [] } +&{featureWeight QGeoRouteRequest::featureWeight commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeorouterequest.h non plain false false FeatureWeight [0xc8229a6ec0] } +&{maneuverDetail QGeoRouteRequest::maneuverDetail commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeorouterequest.h non plain false false ManeuverDetail [] } +&{numberAlternativeRoutes QGeoRouteRequest::numberAlternativeRoutes commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeorouterequest.h non plain false false int [] } +&{operator!= QGeoRouteRequest::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeorouterequest.h non plain false false bool [0xc8229a74c0] } +&{operator= QGeoRouteRequest::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeorouterequest.h non plain false false QGeoRouteRequest & [0xc8229a78e0] } +&{operator== QGeoRouteRequest::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeorouterequest.h non plain false false bool [0xc8229a7c40] } +&{routeOptimization QGeoRouteRequest::routeOptimization commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeorouterequest.h non plain false false RouteOptimizations [] } +&{segmentDetail QGeoRouteRequest::segmentDetail commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeorouterequest.h non plain false false SegmentDetail [] } +&{setExcludeAreas QGeoRouteRequest::setExcludeAreas commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeorouterequest.h non plain false false void [0xc8229ba280] } +&{setFeatureWeight QGeoRouteRequest::setFeatureWeight commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeorouterequest.h non plain false false void [0xc8229ba500 0xc8229ba5e0] } +&{setManeuverDetail QGeoRouteRequest::setManeuverDetail commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeorouterequest.h non plain false false void [0xc8229ba860] } +&{setNumberAlternativeRoutes QGeoRouteRequest::setNumberAlternativeRoutes commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeorouterequest.h non plain false false void [0xc8229baba0] } +&{setRouteOptimization QGeoRouteRequest::setRouteOptimization commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeorouterequest.h non plain false false void [0xc8229bae40] } +&{setSegmentDetail QGeoRouteRequest::setSegmentDetail commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeorouterequest.h non plain false false void [0xc8229bb100] } +&{setTravelModes QGeoRouteRequest::setTravelModes commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeorouterequest.h non plain false false void [0xc8229bb3a0] } +&{setWaypoints QGeoRouteRequest::setWaypoints commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeorouterequest.h non plain false false void [0xc8229bb660] } +&{travelModes QGeoRouteRequest::travelModes commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeorouterequest.h non plain false false TravelModes [] } +&{waypoints QGeoRouteRequest::waypoints commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeorouterequest.h non plain false false QList [] } +&{~QGeoRouteRequest QGeoRouteRequest::~QGeoRouteRequest commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeorouterequest.h non destructor false false [] } +######################################## ENUMS ######################################## +&{FeatureType QGeoRouteRequest::FeatureType commendable public QGeoRouteRequest::FeatureTypes [0xc822987180 0xc822987260 0xc822987300 0xc822987400 0xc822987540 0xc822987620 0xc8229876a0 0xc8229877a0 0xc8229878a0]} +&{FeatureWeight QGeoRouteRequest::FeatureWeight commendable public QGeoRouteRequest::FeatureWeights [0xc822987ce0 0xc822987e00 0xc822987f60 0xc8229920a0 0xc822992220]} +&{ManeuverDetail QGeoRouteRequest::ManeuverDetail commendable public QGeoRouteRequest::ManeuverDetails [0xc822992560 0xc822992620]} +&{RouteOptimization QGeoRouteRequest::RouteOptimization commendable public QGeoRouteRequest::RouteOptimizations [0xc8229928e0 0xc8229929a0 0xc822992a80 0xc822992ba0]} +&{SegmentDetail QGeoRouteRequest::SegmentDetail commendable public QGeoRouteRequest::SegmentDetails [0xc822992f60 0xc822993000]} +&{TravelMode QGeoRouteRequest::TravelMode commendable public QGeoRouteRequest::TravelModes [0xc822993300 0xc822993440 0xc8229934c0 0xc8229935e0 0xc822993720]} diff --git a/internal/binding/dump/QtLocation/QGeoRouteSegment.txt b/internal/binding/dump/QtLocation/QGeoRouteSegment.txt new file mode 100755 index 00000000..1317e74c --- /dev/null +++ b/internal/binding/dump/QtLocation/QGeoRouteSegment.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{QGeoRouteSegment QGeoRouteSegment::QGeoRouteSegment commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutesegment.h non constructor false false [] } +&{QGeoRouteSegment QGeoRouteSegment::QGeoRouteSegment commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutesegment.h non constructor false true 2 [0xc8229c8360] } +&{distance QGeoRouteSegment::distance commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutesegment.h non plain false false qreal [] } +&{isValid QGeoRouteSegment::isValid commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutesegment.h non plain false false bool [] } +&{maneuver QGeoRouteSegment::maneuver commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutesegment.h non plain false false QGeoManeuver [] } +&{nextRouteSegment QGeoRouteSegment::nextRouteSegment commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutesegment.h non plain false false QGeoRouteSegment [] } +&{operator!= QGeoRouteSegment::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutesegment.h non plain false false bool [0xc8229c92a0] } +&{operator= QGeoRouteSegment::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutesegment.h non plain false false QGeoRouteSegment & [0xc8229c9700] } +&{operator== QGeoRouteSegment::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutesegment.h non plain false false bool [0xc8229c9a60] } +&{path QGeoRouteSegment::path commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutesegment.h non plain false false QList [] } +&{setDistance QGeoRouteSegment::setDistance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutesegment.h non plain false false void [0xc8229d8040] } +&{setManeuver QGeoRouteSegment::setManeuver commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutesegment.h non plain false false void [0xc8229d82c0] } +&{setNextRouteSegment QGeoRouteSegment::setNextRouteSegment commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutesegment.h non plain false false void [0xc8229d8620] } +&{setPath QGeoRouteSegment::setPath commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutesegment.h non plain false false void [0xc8229d8a00] } +&{setTravelTime QGeoRouteSegment::setTravelTime commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutesegment.h non plain false false void [0xc8229d8d40] } +&{travelTime QGeoRouteSegment::travelTime commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutesegment.h non plain false false int [] } +&{~QGeoRouteSegment QGeoRouteSegment::~QGeoRouteSegment commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutesegment.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QGeoRoutingManager.txt b/internal/binding/dump/QtLocation/QGeoRoutingManager.txt new file mode 100755 index 00000000..ba914b9a --- /dev/null +++ b/internal/binding/dump/QtLocation/QGeoRoutingManager.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{calculateRoute QGeoRoutingManager::calculateRoute commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanager.h non plain false false QGeoRouteReply * [0xc8229d9a40] } +&{error QGeoRoutingManager::error commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanager.h non signal false false void [0xc8229d9da0 0xc8229d9e80 0xc8229d9fe0] } +&{finished QGeoRoutingManager::finished commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanager.h non signal false false void [0xc8229f6280] } +&{locale QGeoRoutingManager::locale commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanager.h non plain false false QLocale [] } +&{managerName QGeoRoutingManager::managerName commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanager.h non plain false false QString [] } +&{managerVersion QGeoRoutingManager::managerVersion commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanager.h non plain false false int [] } +&{measurementSystem QGeoRoutingManager::measurementSystem commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanager.h non plain false false QLocale::MeasurementSystem [] } +&{setLocale QGeoRoutingManager::setLocale commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanager.h non plain false false void [0xc8229f6c20] } +&{setMeasurementSystem QGeoRoutingManager::setMeasurementSystem commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanager.h non plain false false void [0xc8229f6f40] } +&{supportedFeatureTypes QGeoRoutingManager::supportedFeatureTypes commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanager.h non plain false false QGeoRouteRequest::FeatureTypes [] } +&{supportedFeatureWeights QGeoRoutingManager::supportedFeatureWeights commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanager.h non plain false false QGeoRouteRequest::FeatureWeights [] } +&{supportedManeuverDetails QGeoRoutingManager::supportedManeuverDetails commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanager.h non plain false false QGeoRouteRequest::ManeuverDetails [] } +&{supportedRouteOptimizations QGeoRoutingManager::supportedRouteOptimizations commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanager.h non plain false false QGeoRouteRequest::RouteOptimizations [] } +&{supportedSegmentDetails QGeoRoutingManager::supportedSegmentDetails commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanager.h non plain false false QGeoRouteRequest::SegmentDetails [] } +&{supportedTravelModes QGeoRoutingManager::supportedTravelModes commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanager.h non plain false false QGeoRouteRequest::TravelModes [] } +&{updateRoute QGeoRoutingManager::updateRoute commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanager.h non plain false false QGeoRouteReply * [0xc8229f7dc0 0xc8229f7f20] } +&{~QGeoRoutingManager QGeoRoutingManager::~QGeoRoutingManager commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanager.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QGeoRoutingManagerEngine.txt b/internal/binding/dump/QtLocation/QGeoRoutingManagerEngine.txt new file mode 100755 index 00000000..211e33b5 --- /dev/null +++ b/internal/binding/dump/QtLocation/QGeoRoutingManagerEngine.txt @@ -0,0 +1,26 @@ +######################################## FUNCTIONS ######################################## +&{QGeoRoutingManagerEngine QGeoRoutingManagerEngine::QGeoRoutingManagerEngine commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanagerengine.h non constructor false false [0xc822a04880 0xc822a04a20] } +&{calculateRoute QGeoRoutingManagerEngine::calculateRoute commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanagerengine.h pure plain false false QGeoRouteReply * [0xc822a04c60] } +&{error QGeoRoutingManagerEngine::error commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanagerengine.h non signal false false void [0xc822a04f40 0xc822a05000 0xc822a051e0] } +&{finished QGeoRoutingManagerEngine::finished commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanagerengine.h non signal false false void [0xc822a05420] } +&{locale QGeoRoutingManagerEngine::locale commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanagerengine.h non plain false false QLocale [] } +&{managerName QGeoRoutingManagerEngine::managerName commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanagerengine.h non plain false false QString [] } +&{managerVersion QGeoRoutingManagerEngine::managerVersion commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanagerengine.h non plain false false int [] } +&{measurementSystem QGeoRoutingManagerEngine::measurementSystem commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanagerengine.h non plain false false QLocale::MeasurementSystem [] } +&{setLocale QGeoRoutingManagerEngine::setLocale commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanagerengine.h non plain false false void [0xc822a05d40] } +&{setMeasurementSystem QGeoRoutingManagerEngine::setMeasurementSystem commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanagerengine.h non plain false false void [0xc821e3e5a0] } +&{setSupportedFeatureTypes QGeoRoutingManagerEngine::setSupportedFeatureTypes commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanagerengine.h non plain false false void [0xc821e3e980] } +&{setSupportedFeatureWeights QGeoRoutingManagerEngine::setSupportedFeatureWeights commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanagerengine.h non plain false false void [0xc821e3eca0] } +&{setSupportedManeuverDetails QGeoRoutingManagerEngine::setSupportedManeuverDetails commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanagerengine.h non plain false false void [0xc821e3f080] } +&{setSupportedRouteOptimizations QGeoRoutingManagerEngine::setSupportedRouteOptimizations commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanagerengine.h non plain false false void [0xc821e3f340] } +&{setSupportedSegmentDetails QGeoRoutingManagerEngine::setSupportedSegmentDetails commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanagerengine.h non plain false false void [0xc821e3f660] } +&{setSupportedTravelModes QGeoRoutingManagerEngine::setSupportedTravelModes commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanagerengine.h non plain false false void [0xc821e3f980] } +&{supportedFeatureTypes QGeoRoutingManagerEngine::supportedFeatureTypes commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanagerengine.h non plain false false QGeoRouteRequest::FeatureTypes [] } +&{supportedFeatureWeights QGeoRoutingManagerEngine::supportedFeatureWeights commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanagerengine.h non plain false false QGeoRouteRequest::FeatureWeights [] } +&{supportedManeuverDetails QGeoRoutingManagerEngine::supportedManeuverDetails commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanagerengine.h non plain false false QGeoRouteRequest::ManeuverDetails [] } +&{supportedRouteOptimizations QGeoRoutingManagerEngine::supportedRouteOptimizations commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanagerengine.h non plain false false QGeoRouteRequest::RouteOptimizations [] } +&{supportedSegmentDetails QGeoRoutingManagerEngine::supportedSegmentDetails commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanagerengine.h non plain false false QGeoRouteRequest::SegmentDetails [] } +&{supportedTravelModes QGeoRoutingManagerEngine::supportedTravelModes commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanagerengine.h non plain false false QGeoRouteRequest::TravelModes [] } +&{updateRoute QGeoRoutingManagerEngine::updateRoute commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanagerengine.h impure plain false false QGeoRouteReply * [0xc822a14680 0xc822a14760] } +&{~QGeoRoutingManagerEngine QGeoRoutingManagerEngine::~QGeoRoutingManagerEngine commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoroutingmanagerengine.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QGeoServiceProvider.txt b/internal/binding/dump/QtLocation/QGeoServiceProvider.txt new file mode 100755 index 00000000..99684e96 --- /dev/null +++ b/internal/binding/dump/QtLocation/QGeoServiceProvider.txt @@ -0,0 +1,22 @@ +######################################## FUNCTIONS ######################################## +&{QGeoServiceProvider QGeoServiceProvider::QGeoServiceProvider commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoserviceprovider.h non constructor false false [0xc8227dc3a0 0xc8227dc5c0 0xc8227dc700] } +&{availableServiceProviders QGeoServiceProvider::availableServiceProviders commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoserviceprovider.h non plain true false QStringList [] } +&{error QGeoServiceProvider::error commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoserviceprovider.h non plain false false Error [] } +&{errorString QGeoServiceProvider::errorString commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoserviceprovider.h non plain false false QString [] } +&{geocodingFeatures QGeoServiceProvider::geocodingFeatures commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoserviceprovider.h non plain false false GeocodingFeatures [] } +&{geocodingManager QGeoServiceProvider::geocodingManager commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoserviceprovider.h non plain false false QGeoCodingManager * [] } +&{mappingFeatures QGeoServiceProvider::mappingFeatures commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoserviceprovider.h non plain false false MappingFeatures [] } +&{placeManager QGeoServiceProvider::placeManager commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoserviceprovider.h non plain false false QPlaceManager * [] } +&{placesFeatures QGeoServiceProvider::placesFeatures commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoserviceprovider.h non plain false false PlacesFeatures [] } +&{routingFeatures QGeoServiceProvider::routingFeatures commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoserviceprovider.h non plain false false RoutingFeatures [] } +&{routingManager QGeoServiceProvider::routingManager commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoserviceprovider.h non plain false false QGeoRoutingManager * [] } +&{setAllowExperimental QGeoServiceProvider::setAllowExperimental commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoserviceprovider.h non plain false false void [0xc8227ddfe0] } +&{setLocale QGeoServiceProvider::setLocale commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoserviceprovider.h non plain false false void [0xc8227ea520] } +&{setParameters QGeoServiceProvider::setParameters commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoserviceprovider.h non plain false false void [0xc8227ea840] } +&{~QGeoServiceProvider QGeoServiceProvider::~QGeoServiceProvider commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoserviceprovider.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Error QGeoServiceProvider::Error commendable public [0xc822a14de0 0xc822a14ea0 0xc822a14fa0 0xc822a150e0 0xc822a151e0]} +&{GeocodingFeature QGeoServiceProvider::GeocodingFeature commendable public QGeoServiceProvider::GeocodingFeatures [0xc822a153c0 0xc822a15520 0xc822a15660 0xc822a157a0 0xc822a158c0 0xc822a15a80]} +&{MappingFeature QGeoServiceProvider::MappingFeature commendable public QGeoServiceProvider::MappingFeatures [0xc822a15da0 0xc822a15ee0 0xc8227c8080 0xc8227c81c0 0xc8227c82e0]} +&{PlacesFeature QGeoServiceProvider::PlacesFeature commendable public QGeoServiceProvider::PlacesFeatures [0xc8227c8500 0xc8227c8600 0xc8227c8700 0xc8227c87e0 0xc8227c8900 0xc8227c8a00 0xc8227c8b40 0xc8227c8c40 0xc8227c8dc0 0xc8227c8ec0 0xc8227c9000 0xc8227c9100 0xc8227c9240]} +&{RoutingFeature QGeoServiceProvider::RoutingFeature commendable public QGeoServiceProvider::RoutingFeatures [0xc8227c9480 0xc8227c95c0 0xc8227c96c0 0xc8227c9800 0xc8227c9960 0xc8227c9a40 0xc8227c9ba0 0xc8227c9c80]} diff --git a/internal/binding/dump/QtLocation/QGeoServiceProviderFactory.txt b/internal/binding/dump/QtLocation/QGeoServiceProviderFactory.txt new file mode 100755 index 00000000..d7999bd0 --- /dev/null +++ b/internal/binding/dump/QtLocation/QGeoServiceProviderFactory.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{createGeocodingManagerEngine QGeoServiceProviderFactory::createGeocodingManagerEngine commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoserviceproviderfactory.h impure plain false false QGeoCodingManagerEngine * [0xc8227eb4e0 0xc8227eb760 0xc8227eb820] } +&{createPlaceManagerEngine QGeoServiceProviderFactory::createPlaceManagerEngine commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoserviceproviderfactory.h impure plain false false QPlaceManagerEngine * [0xc8227f65c0 0xc8227f6820 0xc8227f6960] } +&{createRoutingManagerEngine QGeoServiceProviderFactory::createRoutingManagerEngine commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoserviceproviderfactory.h impure plain false false QGeoRoutingManagerEngine * [0xc8227f6de0 0xc8227f6f00 0xc8227f70e0] } +&{~QGeoServiceProviderFactory QGeoServiceProviderFactory::~QGeoServiceProviderFactory commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/maps/qgeoserviceproviderfactory.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QPlace.txt b/internal/binding/dump/QtLocation/QPlace.txt new file mode 100755 index 00000000..5eef9866 --- /dev/null +++ b/internal/binding/dump/QtLocation/QPlace.txt @@ -0,0 +1,48 @@ +######################################## FUNCTIONS ######################################## +&{QPlace QPlace::QPlace commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non constructor false false [] } +&{QPlace QPlace::QPlace commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non constructor false true 2 [0xc8223ba7a0] } +&{appendContactDetail QPlace::appendContactDetail commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false void [0xc8223baca0 0xc8223bae00] } +&{attribution QPlace::attribution commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false QString [] } +&{categories QPlace::categories commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false QList [] } +&{contactDetails QPlace::contactDetails commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false QList [0xc8223bb680] } +&{contactTypes QPlace::contactTypes commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false QStringList [] } +&{content QPlace::content commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false QPlaceContent::Collection [0xc8223bbc40] } +&{detailsFetched QPlace::detailsFetched commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false bool [] } +&{extendedAttribute QPlace::extendedAttribute commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false QPlaceAttribute [0xc82215a120] } +&{extendedAttributeTypes QPlace::extendedAttributeTypes commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false QStringList [] } +&{icon QPlace::icon commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false QPlaceIcon [] } +&{insertContent QPlace::insertContent commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false void [0xc82215a520 0xc82215a5e0] } +&{isEmpty QPlace::isEmpty commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false bool [] } +&{location QPlace::location commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false QGeoLocation [] } +&{name QPlace::name commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false QString [] } +&{operator!= QPlace::operator!= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false bool [0xc82215aa80] } +&{operator= QPlace::operator= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false QPlace & [0xc82215acc0] } +&{operator== QPlace::operator== commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false bool [0xc82215aea0] } +&{placeId QPlace::placeId commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false QString [] } +&{primaryEmail QPlace::primaryEmail commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false QString [] } +&{primaryFax QPlace::primaryFax commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false QString [] } +&{primaryPhone QPlace::primaryPhone commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false QString [] } +&{primaryWebsite QPlace::primaryWebsite commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false QUrl [] } +&{ratings QPlace::ratings commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false QPlaceRatings [] } +&{removeContactDetails QPlace::removeContactDetails commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false void [0xc82215b6c0] } +&{removeExtendedAttribute QPlace::removeExtendedAttribute commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false void [0xc82215b900] } +&{setAttribution QPlace::setAttribution commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false void [0xc82215bb60] } +&{setCategories QPlace::setCategories commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false void [0xc82215bd60] } +&{setCategory QPlace::setCategory commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false void [0xc82215bfa0] } +&{setContactDetails QPlace::setContactDetails commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false void [0xc8223d02e0 0xc8223d0380] } +&{setContent QPlace::setContent commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false void [0xc8223d0620 0xc8223d0740] } +&{setDetailsFetched QPlace::setDetailsFetched commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false void [0xc8223d0ae0] } +&{setExtendedAttribute QPlace::setExtendedAttribute commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false void [0xc8223d0f60 0xc8223d1020] } +&{setIcon QPlace::setIcon commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false void [0xc8223d1320] } +&{setLocation QPlace::setLocation commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false void [0xc8223d1640] } +&{setName QPlace::setName commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false void [0xc8223d1940] } +&{setPlaceId QPlace::setPlaceId commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false void [0xc8223d1d20] } +&{setRatings QPlace::setRatings commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false void [0xc8223e0060] } +&{setSupplier QPlace::setSupplier commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false void [0xc8223e04a0] } +&{setTotalContentCount QPlace::setTotalContentCount commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false void [0xc8223e0860 0xc8223e0960] } +&{setVisibility QPlace::setVisibility commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false void [0xc8223e0c00] } +&{supplier QPlace::supplier commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false QPlaceSupplier [] } +&{totalContentCount QPlace::totalContentCount commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false int [0xc8223e11e0] } +&{visibility QPlace::visibility commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non plain false false QLocation::Visibility [] } +&{~QPlace QPlace::~QPlace commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplace.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QPlaceAttribute.txt b/internal/binding/dump/QtLocation/QPlaceAttribute.txt new file mode 100755 index 00000000..c905c815 --- /dev/null +++ b/internal/binding/dump/QtLocation/QPlaceAttribute.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QPlaceAttribute QPlaceAttribute::QPlaceAttribute commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceattribute.h non constructor false false [] } +&{QPlaceAttribute QPlaceAttribute::QPlaceAttribute commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceattribute.h non constructor false true 2 [0xc8220fe000] } +&{isEmpty QPlaceAttribute::isEmpty commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceattribute.h non plain false false bool [] } +&{label QPlaceAttribute::label commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceattribute.h non plain false false QString [] } +&{operator!= QPlaceAttribute::operator!= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceattribute.h non plain false false bool [0xc8220fe520] } +&{operator= QPlaceAttribute::operator= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceattribute.h non plain false false QPlaceAttribute & [0xc8220fe7e0] } +&{operator== QPlaceAttribute::operator== commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceattribute.h non plain false false bool [0xc8220fea00] } +&{setLabel QPlaceAttribute::setLabel commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceattribute.h non plain false false void [0xc8220fec20] } +&{setText QPlaceAttribute::setText commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceattribute.h non plain false false void [0xc8220fee20] } +&{text QPlaceAttribute::text commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceattribute.h non plain false false QString [] } +&{~QPlaceAttribute QPlaceAttribute::~QPlaceAttribute commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceattribute.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QPlaceCategory.txt b/internal/binding/dump/QtLocation/QPlaceCategory.txt new file mode 100755 index 00000000..e263a1dc --- /dev/null +++ b/internal/binding/dump/QtLocation/QPlaceCategory.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{QPlaceCategory QPlaceCategory::QPlaceCategory commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecategory.h non constructor false false [] } +&{QPlaceCategory QPlaceCategory::QPlaceCategory commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecategory.h non constructor false true 2 [0xc8220ff600] } +&{categoryId QPlaceCategory::categoryId commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecategory.h non plain false false QString [] } +&{icon QPlaceCategory::icon commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecategory.h non plain false false QPlaceIcon [] } +&{isEmpty QPlaceCategory::isEmpty commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecategory.h non plain false false bool [] } +&{name QPlaceCategory::name commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecategory.h non plain false false QString [] } +&{operator!= QPlaceCategory::operator!= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecategory.h non plain false false bool [0xc8220ffc20] } +&{operator= QPlaceCategory::operator= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecategory.h non plain false false QPlaceCategory & [0xc8220ffe40] } +&{operator== QPlaceCategory::operator== commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecategory.h non plain false false bool [0xc82210c0e0] } +&{setCategoryId QPlaceCategory::setCategoryId commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecategory.h non plain false false void [0xc82210c3e0] } +&{setIcon QPlaceCategory::setIcon commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecategory.h non plain false false void [0xc82210c720] } +&{setName QPlaceCategory::setName commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecategory.h non plain false false void [0xc82210cb00] } +&{setVisibility QPlaceCategory::setVisibility commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecategory.h non plain false false void [0xc82210cf00] } +&{visibility QPlaceCategory::visibility commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecategory.h non plain false false QLocation::Visibility [] } +&{~QPlaceCategory QPlaceCategory::~QPlaceCategory commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecategory.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QPlaceContactDetail.txt b/internal/binding/dump/QtLocation/QPlaceContactDetail.txt new file mode 100755 index 00000000..a4949630 --- /dev/null +++ b/internal/binding/dump/QtLocation/QPlaceContactDetail.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QPlaceContactDetail QPlaceContactDetail::QPlaceContactDetail commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontactdetail.h non constructor false false [] } +&{QPlaceContactDetail QPlaceContactDetail::QPlaceContactDetail commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontactdetail.h non constructor false true 2 [0xc82210d920] } +&{clear QPlaceContactDetail::clear commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontactdetail.h non plain false false void [] } +&{label QPlaceContactDetail::label commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontactdetail.h non plain false false QString [] } +&{operator!= QPlaceContactDetail::operator!= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontactdetail.h non plain false false bool [0xc82211c020] } +&{operator= QPlaceContactDetail::operator= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontactdetail.h non plain false false QPlaceContactDetail & [0xc82211c5a0] } +&{operator== QPlaceContactDetail::operator== commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontactdetail.h non plain false false bool [0xc82211c9c0] } +&{setLabel QPlaceContactDetail::setLabel commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontactdetail.h non plain false false void [0xc82211cee0] } +&{setValue QPlaceContactDetail::setValue commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontactdetail.h non plain false false void [0xc82211d300] } +&{value QPlaceContactDetail::value commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontactdetail.h non plain false false QString [] } +&{~QPlaceContactDetail QPlaceContactDetail::~QPlaceContactDetail commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontactdetail.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QPlaceContent.txt b/internal/binding/dump/QtLocation/QPlaceContent.txt new file mode 100755 index 00000000..99cc82cf --- /dev/null +++ b/internal/binding/dump/QtLocation/QPlaceContent.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{QPlaceContent QPlaceContent::QPlaceContent commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontent.h non constructor false false [] } +&{QPlaceContent QPlaceContent::QPlaceContent commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontent.h non constructor false true 2 [0xc82213b340] } +&{attribution QPlaceContent::attribution commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontent.h non plain false false QString [] } +&{operator!= QPlaceContent::operator!= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontent.h non plain false false bool [0xc82213bb40] } +&{operator= QPlaceContent::operator= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontent.h non plain false false QPlaceContent & [0xc82213bf00] } +&{operator== QPlaceContent::operator== commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontent.h non plain false false bool [0xc82214e3c0] } +&{setAttribution QPlaceContent::setAttribution commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontent.h non plain false false void [0xc82214e740] } +&{setSupplier QPlaceContent::setSupplier commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontent.h non plain false false void [0xc82214ea40] } +&{setUser QPlaceContent::setUser commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontent.h non plain false false void [0xc82214ede0] } +&{supplier QPlaceContent::supplier commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontent.h non plain false false QPlaceSupplier [] } +&{type QPlaceContent::type commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontent.h non plain false false QPlaceContent::Type [] } +&{user QPlaceContent::user commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontent.h non plain false false QPlaceUser [] } +&{~QPlaceContent QPlaceContent::~QPlaceContent commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontent.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{Type QPlaceContent::Type commendable public [0xc82213aa20 0xc82213ab20 0xc82213ac00 0xc82213ace0]} diff --git a/internal/binding/dump/QtLocation/QPlaceContentReply.txt b/internal/binding/dump/QtLocation/QPlaceContentReply.txt new file mode 100755 index 00000000..6b73826b --- /dev/null +++ b/internal/binding/dump/QtLocation/QPlaceContentReply.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QPlaceContentReply QPlaceContentReply::QPlaceContentReply commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentreply.h non constructor false false [0xc82214fb40] } +&{content QPlaceContentReply::content commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentreply.h non plain false false QPlaceContent::Collection [] } +&{nextPageRequest QPlaceContentReply::nextPageRequest commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentreply.h non plain false false QPlaceContentRequest [] } +&{previousPageRequest QPlaceContentReply::previousPageRequest commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentreply.h non plain false false QPlaceContentRequest [] } +&{request QPlaceContentReply::request commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentreply.h non plain false false QPlaceContentRequest [] } +&{setContent QPlaceContentReply::setContent commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentreply.h non plain false false void [0xc822164820] } +&{setNextPageRequest QPlaceContentReply::setNextPageRequest commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentreply.h non plain false false void [0xc822164ae0] } +&{setPreviousPageRequest QPlaceContentReply::setPreviousPageRequest commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentreply.h non plain false false void [0xc822164f00] } +&{setRequest QPlaceContentReply::setRequest commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentreply.h non plain false false void [0xc822165200] } +&{setTotalCount QPlaceContentReply::setTotalCount commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentreply.h non plain false false void [0xc822165460] } +&{totalCount QPlaceContentReply::totalCount commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentreply.h non plain false false int [] } +&{type QPlaceContentReply::type commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentreply.h impure plain false false QPlaceReply::Type [] } +&{~QPlaceContentReply QPlaceContentReply::~QPlaceContentReply commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentreply.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QPlaceContentRequest.txt b/internal/binding/dump/QtLocation/QPlaceContentRequest.txt new file mode 100755 index 00000000..189aefd0 --- /dev/null +++ b/internal/binding/dump/QtLocation/QPlaceContentRequest.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{QPlaceContentRequest QPlaceContentRequest::QPlaceContentRequest commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentrequest.h non constructor false false [] } +&{QPlaceContentRequest QPlaceContentRequest::QPlaceContentRequest commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentrequest.h non constructor false true 2 [0xc82217c500] } +&{clear QPlaceContentRequest::clear commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentrequest.h non plain false false void [] } +&{contentContext QPlaceContentRequest::contentContext commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentrequest.h non plain false false QVariant [] } +&{contentType QPlaceContentRequest::contentType commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentrequest.h non plain false false QPlaceContent::Type [] } +&{limit QPlaceContentRequest::limit commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentrequest.h non plain false false int [] } +&{operator!= QPlaceContentRequest::operator!= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentrequest.h non plain false false bool [0xc82217ce80] } +&{operator= QPlaceContentRequest::operator= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentrequest.h non plain false false QPlaceContentRequest & [0xc82217d340] } +&{operator== QPlaceContentRequest::operator== commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentrequest.h non plain false false bool [0xc82217d740] } +&{placeId QPlaceContentRequest::placeId commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentrequest.h non plain false false QString [] } +&{setContentContext QPlaceContentRequest::setContentContext commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentrequest.h non plain false false void [0xc82217dc20] } +&{setContentType QPlaceContentRequest::setContentType commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentrequest.h non plain false false void [0xc82217dec0] } +&{setLimit QPlaceContentRequest::setLimit commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentrequest.h non plain false false void [0xc822194260] } +&{setPlaceId QPlaceContentRequest::setPlaceId commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentrequest.h non plain false false void [0xc822194540] } +&{~QPlaceContentRequest QPlaceContentRequest::~QPlaceContentRequest commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacecontentrequest.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QPlaceDetailsReply.txt b/internal/binding/dump/QtLocation/QPlaceDetailsReply.txt new file mode 100755 index 00000000..2affa4b2 --- /dev/null +++ b/internal/binding/dump/QtLocation/QPlaceDetailsReply.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{QPlaceDetailsReply QPlaceDetailsReply::QPlaceDetailsReply commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacedetailsreply.h non constructor false false [0xc822194cc0] } +&{place QPlaceDetailsReply::place commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacedetailsreply.h non plain false false QPlace [] } +&{setPlace QPlaceDetailsReply::setPlace commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacedetailsreply.h non plain false false void [0xc822195320] } +&{type QPlaceDetailsReply::type commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacedetailsreply.h impure plain false false QPlaceReply::Type [] } +&{~QPlaceDetailsReply QPlaceDetailsReply::~QPlaceDetailsReply commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacedetailsreply.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QPlaceEditorial.txt b/internal/binding/dump/QtLocation/QPlaceEditorial.txt new file mode 100755 index 00000000..b80c9874 --- /dev/null +++ b/internal/binding/dump/QtLocation/QPlaceEditorial.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{QPlaceEditorial QPlaceEditorial::QPlaceEditorial commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceeditorial.h non constructor false false [] } +&{QPlaceEditorial QPlaceEditorial::QPlaceEditorial commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceeditorial.h non constructor false true 2 [0xc8221a4020] } +&{language QPlaceEditorial::language commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceeditorial.h non plain false false QString [] } +&{setLanguage QPlaceEditorial::setLanguage commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceeditorial.h non plain false false void [0xc8221a49c0] } +&{setText QPlaceEditorial::setText commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceeditorial.h non plain false false void [0xc8221a4da0] } +&{setTitle QPlaceEditorial::setTitle commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceeditorial.h non plain false false void [0xc8221a50c0] } +&{text QPlaceEditorial::text commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceeditorial.h non plain false false QString [] } +&{title QPlaceEditorial::title commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceeditorial.h non plain false false QString [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QPlaceIcon.txt b/internal/binding/dump/QtLocation/QPlaceIcon.txt new file mode 100755 index 00000000..22f5066c --- /dev/null +++ b/internal/binding/dump/QtLocation/QPlaceIcon.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QPlaceIcon QPlaceIcon::QPlaceIcon commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceicon.h non constructor false false [] } +&{QPlaceIcon QPlaceIcon::QPlaceIcon commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceicon.h non constructor false true 2 [0xc8221a5c00] } +&{isEmpty QPlaceIcon::isEmpty commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceicon.h non plain false false bool [] } +&{manager QPlaceIcon::manager commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceicon.h non plain false false QPlaceManager * [] } +&{operator!= QPlaceIcon::operator!= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceicon.h non plain false false bool [0xc8221bc4c0] } +&{operator= QPlaceIcon::operator= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceicon.h non plain false false QPlaceIcon & [0xc8221bc940] } +&{operator== QPlaceIcon::operator== commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceicon.h non plain false false bool [0xc8221bcd80] } +&{parameters QPlaceIcon::parameters commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceicon.h non plain false false QVariantMap [] } +&{setManager QPlaceIcon::setManager commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceicon.h non plain false false void [0xc8221bd260] } +&{setParameters QPlaceIcon::setParameters commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceicon.h non plain false false void [0xc8221bd520] } +&{url QPlaceIcon::url commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceicon.h non plain false false QUrl [0xc8221bd700] } +&{~QPlaceIcon QPlaceIcon::~QPlaceIcon commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceicon.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QPlaceIdReply.txt b/internal/binding/dump/QtLocation/QPlaceIdReply.txt new file mode 100755 index 00000000..3ff01f57 --- /dev/null +++ b/internal/binding/dump/QtLocation/QPlaceIdReply.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QPlaceIdReply QPlaceIdReply::QPlaceIdReply commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceidreply.h non constructor false false [0xc8221d22e0 0xc8221d2380] } +&{id QPlaceIdReply::id commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceidreply.h non plain false false QString [] } +&{operationType QPlaceIdReply::operationType commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceidreply.h non plain false false OperationType [] } +&{setId QPlaceIdReply::setId commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceidreply.h non plain false false void [0xc8221d2a00] } +&{type QPlaceIdReply::type commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceidreply.h impure plain false false QPlaceReply::Type [] } +&{~QPlaceIdReply QPlaceIdReply::~QPlaceIdReply commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceidreply.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{OperationType QPlaceIdReply::OperationType commendable public [0xc8221bdc60 0xc8221bdd00 0xc8221bdde0 0xc8221bdf20]} diff --git a/internal/binding/dump/QtLocation/QPlaceImage.txt b/internal/binding/dump/QtLocation/QPlaceImage.txt new file mode 100755 index 00000000..b7618d18 --- /dev/null +++ b/internal/binding/dump/QtLocation/QPlaceImage.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{QPlaceImage QPlaceImage::QPlaceImage commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceimage.h non constructor false false [] } +&{QPlaceImage QPlaceImage::QPlaceImage commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceimage.h non constructor false true 2 [0xc8221d3360] } +&{imageId QPlaceImage::imageId commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceimage.h non plain false false QString [] } +&{mimeType QPlaceImage::mimeType commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceimage.h non plain false false QString [] } +&{setImageId QPlaceImage::setImageId commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceimage.h non plain false false void [0xc8221d3de0] } +&{setMimeType QPlaceImage::setMimeType commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceimage.h non plain false false void [0xc821e9e060] } +&{setUrl QPlaceImage::setUrl commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceimage.h non plain false false void [0xc821e9e3e0] } +&{url QPlaceImage::url commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceimage.h non plain false false QUrl [] } +&{~QPlaceImage QPlaceImage::~QPlaceImage commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceimage.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QPlaceManager.txt b/internal/binding/dump/QtLocation/QPlaceManager.txt new file mode 100755 index 00000000..2396c785 --- /dev/null +++ b/internal/binding/dump/QtLocation/QPlaceManager.txt @@ -0,0 +1,32 @@ +######################################## FUNCTIONS ######################################## +&{category QPlaceManager::category commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non plain false false QPlaceCategory [0xc821e9f260] } +&{categoryAdded QPlaceManager::categoryAdded commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non signal false false void [0xc821e9f660 0xc821e9f780] } +&{categoryRemoved QPlaceManager::categoryRemoved commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non signal false false void [0xc821e9fae0 0xc821e9fc00] } +&{categoryUpdated QPlaceManager::categoryUpdated commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non signal false false void [0xc821e9ff40 0xc8221e8040] } +&{childCategories QPlaceManager::childCategories commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non plain false false QList [0xc8221e8320] } +&{childCategoryIds QPlaceManager::childCategoryIds commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non plain false false QStringList [0xc8221e85e0] } +&{compatiblePlace QPlaceManager::compatiblePlace commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non plain false false QPlace [0xc8221e88e0] } +&{dataChanged QPlaceManager::dataChanged commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non signal false false void [] } +&{error QPlaceManager::error commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non signal false false void [0xc8221e8e20 0xc8221e8ee0 0xc8221e9120] } +&{finished QPlaceManager::finished commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non signal false false void [0xc8221e94a0] } +&{getPlaceContent QPlaceManager::getPlaceContent commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non plain false false QPlaceContentReply * [0xc8221e97c0] } +&{getPlaceDetails QPlaceManager::getPlaceDetails commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non plain false false QPlaceDetailsReply * [0xc8221e9be0] } +&{initializeCategories QPlaceManager::initializeCategories commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non plain false false QPlaceReply * [] } +&{locales QPlaceManager::locales commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non plain false false QList [] } +&{managerName QPlaceManager::managerName commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non plain false false QString [] } +&{managerVersion QPlaceManager::managerVersion commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non plain false false int [] } +&{matchingPlaces QPlaceManager::matchingPlaces commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non plain false false QPlaceMatchReply * [0xc822b3e400] } +&{parentCategoryId QPlaceManager::parentCategoryId commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non plain false false QString [0xc822b3e720] } +&{placeAdded QPlaceManager::placeAdded commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non signal false false void [0xc822b3ea20] } +&{placeRemoved QPlaceManager::placeRemoved commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non signal false false void [0xc822b3ece0] } +&{placeUpdated QPlaceManager::placeUpdated commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non signal false false void [0xc822b3f060] } +&{removeCategory QPlaceManager::removeCategory commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non plain false false QPlaceIdReply * [0xc822b3f380] } +&{removePlace QPlaceManager::removePlace commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non plain false false QPlaceIdReply * [0xc822b3f6c0] } +&{saveCategory QPlaceManager::saveCategory commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non plain false false QPlaceIdReply * [0xc822b3faa0 0xc822b3fca0] } +&{savePlace QPlaceManager::savePlace commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non plain false false QPlaceIdReply * [0xc822b52040] } +&{search QPlaceManager::search commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non plain false false QPlaceSearchReply * [0xc822b524c0] } +&{searchSuggestions QPlaceManager::searchSuggestions commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non plain false false QPlaceSearchSuggestionReply * [0xc822b52ac0] } +&{setLocale QPlaceManager::setLocale commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non plain false false void [0xc822b52e80] } +&{setLocales QPlaceManager::setLocales commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non plain false false void [0xc822b53240] } +&{~QPlaceManager QPlaceManager::~QPlaceManager commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanager.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QPlaceManagerEngine.txt b/internal/binding/dump/QtLocation/QPlaceManagerEngine.txt new file mode 100755 index 00000000..a330780c --- /dev/null +++ b/internal/binding/dump/QtLocation/QPlaceManagerEngine.txt @@ -0,0 +1,34 @@ +######################################## FUNCTIONS ######################################## +&{QPlaceManagerEngine QPlaceManagerEngine::QPlaceManagerEngine commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h non constructor false false [0xc822b53ae0 0xc822b53cc0] } +&{category QPlaceManagerEngine::category commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h impure plain false false QPlaceCategory [0xc82254e000] } +&{categoryAdded QPlaceManagerEngine::categoryAdded commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h non signal false false void [0xc82254e2c0 0xc82254e3c0] } +&{categoryRemoved QPlaceManagerEngine::categoryRemoved commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h non signal false false void [0xc82254e680 0xc82254e7e0] } +&{categoryUpdated QPlaceManagerEngine::categoryUpdated commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h non signal false false void [0xc82254eb40 0xc82254ece0] } +&{childCategories QPlaceManagerEngine::childCategories commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h impure plain false false QList [0xc82254f060] } +&{childCategoryIds QPlaceManagerEngine::childCategoryIds commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h impure plain false false QStringList [0xc82254f2c0] } +&{compatiblePlace QPlaceManagerEngine::compatiblePlace commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h impure plain false false QPlace [0xc82254f540] } +&{constructIconUrl QPlaceManagerEngine::constructIconUrl commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h impure plain false false QUrl [0xc82254f8a0 0xc82254f9e0] } +&{dataChanged QPlaceManagerEngine::dataChanged commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h non signal false false void [] } +&{error QPlaceManagerEngine::error commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h non signal false false void [0xc82254ff60 0xc82255e100 0xc82255e260] } +&{finished QPlaceManagerEngine::finished commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h non signal false false void [0xc82255e720] } +&{getPlaceContent QPlaceManagerEngine::getPlaceContent commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h impure plain false false QPlaceContentReply * [0xc82255ebe0] } +&{getPlaceDetails QPlaceManagerEngine::getPlaceDetails commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h impure plain false false QPlaceDetailsReply * [0xc82255f140] } +&{initializeCategories QPlaceManagerEngine::initializeCategories commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h impure plain false false QPlaceReply * [] } +&{locales QPlaceManagerEngine::locales commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h impure plain false false QList [] } +&{manager QPlaceManagerEngine::manager commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h non plain false false QPlaceManager * [] } +&{managerName QPlaceManagerEngine::managerName commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h non plain false false QString [] } +&{managerVersion QPlaceManagerEngine::managerVersion commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h non plain false false int [] } +&{matchingPlaces QPlaceManagerEngine::matchingPlaces commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h impure plain false false QPlaceMatchReply * [0xc82256a2c0] } +&{parentCategoryId QPlaceManagerEngine::parentCategoryId commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h impure plain false false QString [0xc82256a680] } +&{placeAdded QPlaceManagerEngine::placeAdded commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h non signal false false void [0xc82256aa40] } +&{placeRemoved QPlaceManagerEngine::placeRemoved commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h non signal false false void [0xc82256ae40] } +&{placeUpdated QPlaceManagerEngine::placeUpdated commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h non signal false false void [0xc82256b200] } +&{removeCategory QPlaceManagerEngine::removeCategory commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h impure plain false false QPlaceIdReply * [0xc82256b5c0] } +&{removePlace QPlaceManagerEngine::removePlace commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h impure plain false false QPlaceIdReply * [0xc82256b980] } +&{saveCategory QPlaceManagerEngine::saveCategory commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h impure plain false false QPlaceIdReply * [0xc82256bda0 0xc82256bec0] } +&{savePlace QPlaceManagerEngine::savePlace commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h impure plain false false QPlaceIdReply * [0xc82257a400] } +&{search QPlaceManagerEngine::search commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h impure plain false false QPlaceSearchReply * [0xc82257ab80] } +&{searchSuggestions QPlaceManagerEngine::searchSuggestions commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h impure plain false false QPlaceSearchSuggestionReply * [0xc82257b2a0] } +&{setLocales QPlaceManagerEngine::setLocales commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h impure plain false false void [0xc82257ba60] } +&{~QPlaceManagerEngine QPlaceManagerEngine::~QPlaceManagerEngine commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacemanagerengine.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QPlaceMatchReply.txt b/internal/binding/dump/QtLocation/QPlaceMatchReply.txt new file mode 100755 index 00000000..4989ef31 --- /dev/null +++ b/internal/binding/dump/QtLocation/QPlaceMatchReply.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QPlaceMatchReply QPlaceMatchReply::QPlaceMatchReply commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacematchreply.h non constructor false false [0xc822588b20] } +&{places QPlaceMatchReply::places commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacematchreply.h non plain false false QList [] } +&{request QPlaceMatchReply::request commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacematchreply.h non plain false false QPlaceMatchRequest [] } +&{setPlaces QPlaceMatchReply::setPlaces commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacematchreply.h non plain false false void [0xc8225896c0] } +&{setRequest QPlaceMatchReply::setRequest commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacematchreply.h non plain false false void [0xc822589ca0] } +&{type QPlaceMatchReply::type commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacematchreply.h impure plain false false QPlaceReply::Type [] } +&{~QPlaceMatchReply QPlaceMatchReply::~QPlaceMatchReply commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacematchreply.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QPlaceMatchRequest.txt b/internal/binding/dump/QtLocation/QPlaceMatchRequest.txt new file mode 100755 index 00000000..1bbf4b8e --- /dev/null +++ b/internal/binding/dump/QtLocation/QPlaceMatchRequest.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QPlaceMatchRequest QPlaceMatchRequest::QPlaceMatchRequest commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacematchrequest.h non constructor false false [] } +&{QPlaceMatchRequest QPlaceMatchRequest::QPlaceMatchRequest commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacematchrequest.h non constructor false true 2 [0xc82259b260] } +&{clear QPlaceMatchRequest::clear commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacematchrequest.h non plain false false void [] } +&{operator!= QPlaceMatchRequest::operator!= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacematchrequest.h non plain false false bool [0xc82259ba00] } +&{operator= QPlaceMatchRequest::operator= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacematchrequest.h non plain false false QPlaceMatchRequest & [0xc8225a8100] } +&{operator== QPlaceMatchRequest::operator== commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacematchrequest.h non plain false false bool [0xc8225a8620] } +&{parameters QPlaceMatchRequest::parameters commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacematchrequest.h non plain false false QVariantMap [] } +&{places QPlaceMatchRequest::places commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacematchrequest.h non plain false false QList [] } +&{setParameters QPlaceMatchRequest::setParameters commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacematchrequest.h non plain false false void [0xc8225a8f60] } +&{setPlaces QPlaceMatchRequest::setPlaces commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacematchrequest.h non plain false false void [0xc8225a94c0] } +&{setResults QPlaceMatchRequest::setResults commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacematchrequest.h non plain false false void [0xc8225a9a40] } +&{~QPlaceMatchRequest QPlaceMatchRequest::~QPlaceMatchRequest commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacematchrequest.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QPlaceProposedSearchResult.txt b/internal/binding/dump/QtLocation/QPlaceProposedSearchResult.txt new file mode 100755 index 00000000..a7012ec4 --- /dev/null +++ b/internal/binding/dump/QtLocation/QPlaceProposedSearchResult.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{QPlaceProposedSearchResult QPlaceProposedSearchResult::QPlaceProposedSearchResult commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceproposedsearchresult.h non constructor false false [] } +&{QPlaceProposedSearchResult QPlaceProposedSearchResult::QPlaceProposedSearchResult commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceproposedsearchresult.h non constructor false true 2 [0xc8225ba7a0] } +&{searchRequest QPlaceProposedSearchResult::searchRequest commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceproposedsearchresult.h non plain false false QPlaceSearchRequest [] } +&{setSearchRequest QPlaceProposedSearchResult::setSearchRequest commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceproposedsearchresult.h non plain false false void [0xc8225bb100] } +&{~QPlaceProposedSearchResult QPlaceProposedSearchResult::~QPlaceProposedSearchResult commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceproposedsearchresult.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QPlaceRatings.txt b/internal/binding/dump/QtLocation/QPlaceRatings.txt new file mode 100755 index 00000000..28b7ff91 --- /dev/null +++ b/internal/binding/dump/QtLocation/QPlaceRatings.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QPlaceRatings QPlaceRatings::QPlaceRatings commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceratings.h non constructor false false [] } +&{QPlaceRatings QPlaceRatings::QPlaceRatings commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceratings.h non constructor false true 2 [0xc8225bb920] } +&{average QPlaceRatings::average commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceratings.h non plain false false qreal [] } +&{count QPlaceRatings::count commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceratings.h non plain false false int [] } +&{isEmpty QPlaceRatings::isEmpty commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceratings.h non plain false false bool [] } +&{maximum QPlaceRatings::maximum commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceratings.h non plain false false qreal [] } +&{operator!= QPlaceRatings::operator!= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceratings.h non plain false false bool [0xc8225bc200] } +&{operator= QPlaceRatings::operator= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceratings.h non plain false false QPlaceRatings & [0xc8225bc5a0] } +&{operator== QPlaceRatings::operator== commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceratings.h non plain false false bool [0xc8225bc8e0] } +&{setAverage QPlaceRatings::setAverage commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceratings.h non plain false false void [0xc8225bcbc0] } +&{setCount QPlaceRatings::setCount commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceratings.h non plain false false void [0xc8225bce40] } +&{setMaximum QPlaceRatings::setMaximum commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceratings.h non plain false false void [0xc8225bd180] } +&{~QPlaceRatings QPlaceRatings::~QPlaceRatings commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceratings.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QPlaceReply.txt b/internal/binding/dump/QtLocation/QPlaceReply.txt new file mode 100755 index 00000000..d807e430 --- /dev/null +++ b/internal/binding/dump/QtLocation/QPlaceReply.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QPlaceReply QPlaceReply::QPlaceReply commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacereply.h non constructor false false [0xc8221feaa0] } +&{abort QPlaceReply::abort commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacereply.h impure slot false false void [] } +&{error QPlaceReply::error commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacereply.h non signal false true 2 void [0xc8221ff0c0 0xc8221ff1a0] } +&{error QPlaceReply::error commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacereply.h non plain false false QPlaceReply::Error [] } +&{errorString QPlaceReply::errorString commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacereply.h non plain false false QString [] } +&{finished QPlaceReply::finished commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacereply.h non signal false false void [] } +&{isFinished QPlaceReply::isFinished commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacereply.h non plain false false bool [] } +&{setError QPlaceReply::setError commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacereply.h non plain false false void [0xc8221ff980 0xc8221ffa60] } +&{setFinished QPlaceReply::setFinished commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacereply.h non plain false false void [0xc8221ffce0] } +&{type QPlaceReply::type commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacereply.h impure plain false false Type [] } +&{~QPlaceReply QPlaceReply::~QPlaceReply commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacereply.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Error QPlaceReply::Error commendable public [0xc8225bd700 0xc8225bd7e0 0xc8225bd8e0 0xc8225bda40 0xc8225bdb80 0xc8225bdc20 0xc8225bdca0 0xc8225bddc0 0xc8225bde60 0xc8225bdf60]} +&{Type QPlaceReply::Type commendable public [0xc8221fe280 0xc8221fe300 0xc8221fe3c0 0xc8221fe520 0xc8221fe660 0xc8221fe700 0xc8221fe800]} diff --git a/internal/binding/dump/QtLocation/QPlaceResult.txt b/internal/binding/dump/QtLocation/QPlaceResult.txt new file mode 100755 index 00000000..0770919e --- /dev/null +++ b/internal/binding/dump/QtLocation/QPlaceResult.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{QPlaceResult QPlaceResult::QPlaceResult commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceresult.h non constructor false false [] } +&{QPlaceResult QPlaceResult::QPlaceResult commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceresult.h non constructor false true 2 [0xc8225c2560] } +&{distance QPlaceResult::distance commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceresult.h non plain false false qreal [] } +&{isSponsored QPlaceResult::isSponsored commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceresult.h non plain false false bool [] } +&{place QPlaceResult::place commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceresult.h non plain false false QPlace [] } +&{setDistance QPlaceResult::setDistance commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceresult.h non plain false false void [0xc8225c2e80] } +&{setPlace QPlaceResult::setPlace commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceresult.h non plain false false void [0xc8225c30e0] } +&{setSponsored QPlaceResult::setSponsored commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceresult.h non plain false false void [0xc8225c3340] } +&{~QPlaceResult QPlaceResult::~QPlaceResult commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceresult.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QPlaceReview.txt b/internal/binding/dump/QtLocation/QPlaceReview.txt new file mode 100755 index 00000000..f919eb44 --- /dev/null +++ b/internal/binding/dump/QtLocation/QPlaceReview.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{QPlaceReview QPlaceReview::QPlaceReview commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacereview.h non constructor false false [] } +&{QPlaceReview QPlaceReview::QPlaceReview commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacereview.h non constructor false true 2 [0xc8225c3ae0] } +&{dateTime QPlaceReview::dateTime commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacereview.h non plain false false QDateTime [] } +&{language QPlaceReview::language commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacereview.h non plain false false QString [] } +&{rating QPlaceReview::rating commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacereview.h non plain false false qreal [] } +&{reviewId QPlaceReview::reviewId commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacereview.h non plain false false QString [] } +&{setDateTime QPlaceReview::setDateTime commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacereview.h non plain false false void [0xc8225ca7e0] } +&{setLanguage QPlaceReview::setLanguage commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacereview.h non plain false false void [0xc8225cac40] } +&{setRating QPlaceReview::setRating commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacereview.h non plain false false void [0xc8225cb040] } +&{setReviewId QPlaceReview::setReviewId commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacereview.h non plain false false void [0xc8225cb4a0] } +&{setText QPlaceReview::setText commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacereview.h non plain false false void [0xc8225cb8c0] } +&{setTitle QPlaceReview::setTitle commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacereview.h non plain false false void [0xc8225cbce0] } +&{text QPlaceReview::text commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacereview.h non plain false false QString [] } +&{title QPlaceReview::title commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacereview.h non plain false false QString [] } +&{~QPlaceReview QPlaceReview::~QPlaceReview commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacereview.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QPlaceSearchReply.txt b/internal/binding/dump/QtLocation/QPlaceSearchReply.txt new file mode 100755 index 00000000..7a90f54a --- /dev/null +++ b/internal/binding/dump/QtLocation/QPlaceSearchReply.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QPlaceSearchReply QPlaceSearchReply::QPlaceSearchReply commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchreply.h non constructor false false [0xc8225d8a80] } +&{nextPageRequest QPlaceSearchReply::nextPageRequest commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchreply.h non plain false false QPlaceSearchRequest [] } +&{previousPageRequest QPlaceSearchReply::previousPageRequest commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchreply.h non plain false false QPlaceSearchRequest [] } +&{request QPlaceSearchReply::request commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchreply.h non plain false false QPlaceSearchRequest [] } +&{results QPlaceSearchReply::results commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchreply.h non plain false false QList [] } +&{setNextPageRequest QPlaceSearchReply::setNextPageRequest commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchreply.h non plain false false void [0xc8225d9a60] } +&{setPreviousPageRequest QPlaceSearchReply::setPreviousPageRequest commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchreply.h non plain false false void [0xc8225d9e60] } +&{setRequest QPlaceSearchReply::setRequest commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchreply.h non plain false false void [0xc8225ea380] } +&{setResults QPlaceSearchReply::setResults commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchreply.h non plain false false void [0xc8225ea7c0] } +&{type QPlaceSearchReply::type commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchreply.h impure plain false false QPlaceReply::Type [] } +&{~QPlaceSearchReply QPlaceSearchReply::~QPlaceSearchReply commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchreply.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QPlaceSearchRequest.txt b/internal/binding/dump/QtLocation/QPlaceSearchRequest.txt new file mode 100755 index 00000000..55fdb87e --- /dev/null +++ b/internal/binding/dump/QtLocation/QPlaceSearchRequest.txt @@ -0,0 +1,27 @@ +######################################## FUNCTIONS ######################################## +&{QPlaceSearchRequest QPlaceSearchRequest::QPlaceSearchRequest commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchrequest.h non constructor false false [] } +&{QPlaceSearchRequest QPlaceSearchRequest::QPlaceSearchRequest commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchrequest.h non constructor false true 2 [0xc8225f80c0] } +&{categories QPlaceSearchRequest::categories commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchrequest.h non plain false false QList [] } +&{clear QPlaceSearchRequest::clear commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchrequest.h non plain false false void [] } +&{limit QPlaceSearchRequest::limit commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchrequest.h non plain false false int [] } +&{operator!= QPlaceSearchRequest::operator!= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchrequest.h non plain false false bool [0xc8225f8ea0] } +&{operator= QPlaceSearchRequest::operator= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchrequest.h non plain false false QPlaceSearchRequest & [0xc8225f9420] } +&{operator== QPlaceSearchRequest::operator== commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchrequest.h non plain false false bool [0xc8225f99c0] } +&{recommendationId QPlaceSearchRequest::recommendationId commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchrequest.h non plain false false QString [] } +&{relevanceHint QPlaceSearchRequest::relevanceHint commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchrequest.h non plain false false RelevanceHint [] } +&{searchArea QPlaceSearchRequest::searchArea commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchrequest.h non plain false false QGeoShape [] } +&{searchContext QPlaceSearchRequest::searchContext commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchrequest.h non plain false false QVariant [] } +&{searchTerm QPlaceSearchRequest::searchTerm commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchrequest.h non plain false false QString [] } +&{setCategories QPlaceSearchRequest::setCategories commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchrequest.h non plain false false void [0xc8226066e0] } +&{setCategory QPlaceSearchRequest::setCategory commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchrequest.h non plain false false void [0xc822606cc0] } +&{setLimit QPlaceSearchRequest::setLimit commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchrequest.h non plain false false void [0xc822607240] } +&{setRecommendationId QPlaceSearchRequest::setRecommendationId commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchrequest.h non plain false false void [0xc8226075a0] } +&{setRelevanceHint QPlaceSearchRequest::setRelevanceHint commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchrequest.h non plain false false void [0xc822607860] } +&{setSearchArea QPlaceSearchRequest::setSearchArea commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchrequest.h non plain false false void [0xc822607be0] } +&{setSearchContext QPlaceSearchRequest::setSearchContext commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchrequest.h non plain false false void [0xc822607f00] } +&{setSearchTerm QPlaceSearchRequest::setSearchTerm commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchrequest.h non plain false false void [0xc822616240] } +&{setVisibilityScope QPlaceSearchRequest::setVisibilityScope commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchrequest.h non plain false false void [0xc822616600] } +&{visibilityScope QPlaceSearchRequest::visibilityScope commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchrequest.h non plain false false QLocation::VisibilityScope [] } +&{~QPlaceSearchRequest QPlaceSearchRequest::~QPlaceSearchRequest commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchrequest.h non destructor false false [] } +######################################## ENUMS ######################################## +&{RelevanceHint QPlaceSearchRequest::RelevanceHint commendable public [0xc8225eb8a0 0xc8225eb940 0xc8225ebaa0]} diff --git a/internal/binding/dump/QtLocation/QPlaceSearchResult.txt b/internal/binding/dump/QtLocation/QPlaceSearchResult.txt new file mode 100755 index 00000000..00664fc8 --- /dev/null +++ b/internal/binding/dump/QtLocation/QPlaceSearchResult.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QPlaceSearchResult QPlaceSearchResult::QPlaceSearchResult commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchresult.h non constructor false false [] } +&{QPlaceSearchResult QPlaceSearchResult::QPlaceSearchResult commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchresult.h non constructor false true 2 [0xc822617bc0] } +&{icon QPlaceSearchResult::icon commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchresult.h non plain false false QPlaceIcon [] } +&{operator!= QPlaceSearchResult::operator!= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchresult.h non plain false false bool [0xc822624ba0] } +&{operator= QPlaceSearchResult::operator= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchresult.h non plain false false QPlaceSearchResult & [0xc822625160] } +&{operator== QPlaceSearchResult::operator== commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchresult.h non plain false false bool [0xc8226256e0] } +&{setIcon QPlaceSearchResult::setIcon commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchresult.h non plain false false void [0xc822625c60] } +&{setTitle QPlaceSearchResult::setTitle commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchresult.h non plain false false void [0xc822636360] } +&{title QPlaceSearchResult::title commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchresult.h non plain false false QString [] } +&{type QPlaceSearchResult::type commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchresult.h non plain false false SearchResultType [] } +&{~QPlaceSearchResult QPlaceSearchResult::~QPlaceSearchResult commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchresult.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{SearchResultType QPlaceSearchResult::SearchResultType commendable public [0xc8226171c0 0xc822617340 0xc822617500]} diff --git a/internal/binding/dump/QtLocation/QPlaceSearchSuggestionReply.txt b/internal/binding/dump/QtLocation/QPlaceSearchSuggestionReply.txt new file mode 100755 index 00000000..4803232b --- /dev/null +++ b/internal/binding/dump/QtLocation/QPlaceSearchSuggestionReply.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{QPlaceSearchSuggestionReply QPlaceSearchSuggestionReply::QPlaceSearchSuggestionReply commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchsuggestionreply.h non constructor false false [0xc822637c00] } +&{setSuggestions QPlaceSearchSuggestionReply::setSuggestions commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchsuggestionreply.h non plain false false void [0xc822648020] } +&{suggestions QPlaceSearchSuggestionReply::suggestions commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchsuggestionreply.h non plain false false QStringList [] } +&{type QPlaceSearchSuggestionReply::type commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchsuggestionreply.h impure plain false false Type [] } +&{~QPlaceSearchSuggestionReply QPlaceSearchSuggestionReply::~QPlaceSearchSuggestionReply commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesearchsuggestionreply.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QPlaceSupplier.txt b/internal/binding/dump/QtLocation/QPlaceSupplier.txt new file mode 100755 index 00000000..e572ec76 --- /dev/null +++ b/internal/binding/dump/QtLocation/QPlaceSupplier.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{QPlaceSupplier QPlaceSupplier::QPlaceSupplier commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesupplier.h non constructor false false [] } +&{QPlaceSupplier QPlaceSupplier::QPlaceSupplier commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesupplier.h non constructor false true 2 [0xc822648c00] } +&{icon QPlaceSupplier::icon commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesupplier.h non plain false false QPlaceIcon [] } +&{isEmpty QPlaceSupplier::isEmpty commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesupplier.h non plain false false bool [] } +&{name QPlaceSupplier::name commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesupplier.h non plain false false QString [] } +&{operator!= QPlaceSupplier::operator!= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesupplier.h non plain false false bool [0xc822649640] } +&{operator= QPlaceSupplier::operator= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesupplier.h non plain false false QPlaceSupplier & [0xc822649a40] } +&{operator== QPlaceSupplier::operator== commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesupplier.h non plain false false bool [0xc822649ec0] } +&{setIcon QPlaceSupplier::setIcon commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesupplier.h non plain false false void [0xc821d302e0] } +&{setName QPlaceSupplier::setName commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesupplier.h non plain false false void [0xc821d30620] } +&{setSupplierId QPlaceSupplier::setSupplierId commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesupplier.h non plain false false void [0xc821d30920] } +&{setUrl QPlaceSupplier::setUrl commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesupplier.h non plain false false void [0xc821d30cc0] } +&{supplierId QPlaceSupplier::supplierId commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesupplier.h non plain false false QString [] } +&{url QPlaceSupplier::url commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesupplier.h non plain false false QUrl [] } +&{~QPlaceSupplier QPlaceSupplier::~QPlaceSupplier commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplacesupplier.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtLocation/QPlaceUser.txt b/internal/binding/dump/QtLocation/QPlaceUser.txt new file mode 100755 index 00000000..2940933e --- /dev/null +++ b/internal/binding/dump/QtLocation/QPlaceUser.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{QPlaceUser QPlaceUser::QPlaceUser commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceuser.h non constructor false false [] } +&{QPlaceUser QPlaceUser::QPlaceUser commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceuser.h non constructor false true 2 [0xc821d31880] } +&{name QPlaceUser::name commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceuser.h non plain false false QString [] } +&{operator!= QPlaceUser::operator!= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceuser.h non plain false false bool [0xc821d31d20] } +&{operator= QPlaceUser::operator= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceuser.h non plain false false QPlaceUser & [0xc822658200] } +&{operator== QPlaceUser::operator== commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceuser.h non plain false false bool [0xc8226585c0] } +&{setName QPlaceUser::setName commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceuser.h non plain false false void [0xc822658900] } +&{setUserId QPlaceUser::setUserId commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceuser.h non plain false false void [0xc822658c20] } +&{userId QPlaceUser::userId commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceuser.h non plain false false QString [] } +&{~QPlaceUser QPlaceUser::~QPlaceUser commendable public /work/build/qt5_workdir/w/s/qtlocation/src/location/places/qplaceuser.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMacExtras/QMacPasteboardMime.txt b/internal/binding/dump/QtMacExtras/QMacPasteboardMime.txt new file mode 100755 index 00000000..7bc60535 --- /dev/null +++ b/internal/binding/dump/QtMacExtras/QMacPasteboardMime.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{QMacPasteboardMime QMacPasteboardMime::QMacPasteboardMime commendable public /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmacpasteboardmime.h non constructor false false [0xc8224da0c0] } +&{canConvert QMacPasteboardMime::canConvert commendable public /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmacpasteboardmime.h pure plain false false bool [0xc8224da280 0xc8224da300] } +&{convertFromMime QMacPasteboardMime::convertFromMime commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmacpasteboardmime.h pure plain false false QList [0xc8224da4c0 0xc8224da540 0xc8224da5c0] } +&{convertToMime QMacPasteboardMime::convertToMime commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmacpasteboardmime.h pure plain false false QVariant [0xc8224da720 0xc8224da7c0 0xc8224da880] } +&{convertorName QMacPasteboardMime::convertorName commendable public /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmacpasteboardmime.h pure plain false false QString [] } +&{count QMacPasteboardMime::count commendable public /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmacpasteboardmime.h impure plain false false int [0xc8224dab40] } +&{flavorFor QMacPasteboardMime::flavorFor commendable public /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmacpasteboardmime.h pure plain false false QString [0xc8224dad00] } +&{mimeFor QMacPasteboardMime::mimeFor commendable public /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmacpasteboardmime.h pure plain false false QString [0xc8224daf00] } +&{~QMacPasteboardMime QMacPasteboardMime::~QMacPasteboardMime commendable public /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmacpasteboardmime.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMacExtras/QMacToolBar.txt b/internal/binding/dump/QtMacExtras/QMacToolBar.txt new file mode 100755 index 00000000..05f80c9f --- /dev/null +++ b/internal/binding/dump/QtMacExtras/QMacToolBar.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QMacToolBar QMacToolBar::QMacToolBar commendable public /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmactoolbar.h non constructor false false [0xc8224db480] } +&{QMacToolBar QMacToolBar::QMacToolBar commendable public /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmactoolbar.h non constructor false true 2 [0xc8224db640 0xc8224db6c0] } +&{addAllowedItem QMacToolBar::addAllowedItem commendable public /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmactoolbar.h non plain false false QMacToolBarItem * [0xc8224db8e0 0xc8224db960] } +&{addItem QMacToolBar::addItem commendable public /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmactoolbar.h non plain false false QMacToolBarItem * [0xc8224dbb80 0xc8224dbc00] } +&{addSeparator QMacToolBar::addSeparator commendable public /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmactoolbar.h non plain false false void [] } +&{allowedItems QMacToolBar::allowedItems commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmactoolbar.h non plain false false QList [] } +&{attachToWindow QMacToolBar::attachToWindow commendable public /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmactoolbar.h non plain false false void [0xc8231e4520] } +&{detachFromWindow QMacToolBar::detachFromWindow commendable public /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmactoolbar.h non plain false false void [] } +&{items QMacToolBar::items commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmactoolbar.h non plain false false QList [] } +&{nativeToolbar QMacToolBar::nativeToolbar commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmactoolbar.h non plain false false NSToolbar * [] } +&{setAllowedItems QMacToolBar::setAllowedItems commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmactoolbar.h non plain false false void [0xc8231e4a20] } +&{setItems QMacToolBar::setItems commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmactoolbar.h non plain false false void [0xc8231e4c40] } +&{~QMacToolBar QMacToolBar::~QMacToolBar commendable public /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmactoolbar.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMacExtras/QMacToolBarItem.txt b/internal/binding/dump/QtMacExtras/QMacToolBarItem.txt new file mode 100755 index 00000000..89667e44 --- /dev/null +++ b/internal/binding/dump/QtMacExtras/QMacToolBarItem.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QMacToolBarItem QMacToolBarItem::QMacToolBarItem commendable public /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmactoolbaritem.h non constructor false false [0xc8231e54c0] } +&{activated QMacToolBarItem::activated commendable public /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmactoolbaritem.h non signal false false void [] } +&{nativeToolBarItem QMacToolBarItem::nativeToolBarItem commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmactoolbaritem.h non plain false false NSToolbarItem * [] } +&{~QMacToolBarItem QMacToolBarItem::~QMacToolBarItem commendable public /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmactoolbaritem.h impure destructor false false [] } +&{icon QMacToolBarItem::icon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmactoolbaritem.mm non plain false false QIcon [] } +&{selectable QMacToolBarItem::selectable commendable public /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmactoolbaritem.mm non plain false false bool [] } +&{setIcon QMacToolBarItem::setIcon commendable public /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmactoolbaritem.mm non plain false false void [0xc82237c240] } +&{setSelectable QMacToolBarItem::setSelectable commendable public /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmactoolbaritem.mm non plain false false void [0xc82237c420] } +&{setStandardItem QMacToolBarItem::setStandardItem commendable public /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmactoolbaritem.mm non plain false false void [0xc82237c620] } +&{setText QMacToolBarItem::setText commendable public /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmactoolbaritem.mm non plain false false void [0xc82237c820] } +&{standardItem QMacToolBarItem::standardItem commendable public /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmactoolbaritem.mm non plain false false StandardItem [] } +&{text QMacToolBarItem::text commendable public /work/build/qt5_workdir/w/s/qtmacextras/src/macextras/qmactoolbaritem.mm non plain false false QString [] } +######################################## ENUMS ######################################## +&{StandardItem QMacToolBarItem::StandardItem commendable public [0xc8231e51a0 0xc8231e5220 0xc8231e52a0]} diff --git a/internal/binding/dump/QtMultimedia/QAbstractPlanarVideoBuffer.txt b/internal/binding/dump/QtMultimedia/QAbstractPlanarVideoBuffer.txt new file mode 100755 index 00000000..af144b64 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QAbstractPlanarVideoBuffer.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{QAbstractPlanarVideoBuffer QAbstractPlanarVideoBuffer::QAbstractPlanarVideoBuffer commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideobuffer.h non constructor false false [0xc820e1d2e0] } +&{map QAbstractPlanarVideoBuffer::map commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideobuffer.h pure plain false false int [0xc820e1d880 0xc820e1d9a0 0xc820e1db20 0xc820e1dd00] } +&{~QAbstractPlanarVideoBuffer QAbstractPlanarVideoBuffer::~QAbstractPlanarVideoBuffer commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideobuffer.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QAbstractVideoBuffer.txt b/internal/binding/dump/QtMultimedia/QAbstractVideoBuffer.txt new file mode 100755 index 00000000..a55b5fa5 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QAbstractVideoBuffer.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QAbstractVideoBuffer QAbstractVideoBuffer::QAbstractVideoBuffer commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideobuffer.h non constructor false false [0xc820d62780] } +&{handle QAbstractVideoBuffer::handle commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideobuffer.h impure plain false false QVariant [] } +&{handleType QAbstractVideoBuffer::handleType commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideobuffer.h non plain false false HandleType [] } +&{map QAbstractVideoBuffer::map commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideobuffer.h pure plain false false uchar * [0xc820ace580 0xc820ace660 0xc820ace760] } +&{mapMode QAbstractVideoBuffer::mapMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideobuffer.h pure plain false false MapMode [] } +&{mapPlanes QAbstractVideoBuffer::mapPlanes commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideobuffer.h non plain false false int [0xc820aced40 0xc820acef20 0xc820acf020 0xc820acf160] } +&{release QAbstractVideoBuffer::release commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideobuffer.h impure plain false false void [] } +&{unmap QAbstractVideoBuffer::unmap commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideobuffer.h pure plain false false void [] } +&{~QAbstractVideoBuffer QAbstractVideoBuffer::~QAbstractVideoBuffer commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideobuffer.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{HandleType QAbstractVideoBuffer::HandleType commendable public [0xc820d0a0a0 0xc820d0a320 0xc820d0a5e0 0xc820d0a7c0 0xc820d0aa80 0xc820d0adc0 0xc820d0af80]} +&{MapMode QAbstractVideoBuffer::MapMode commendable public [0xc820d0b740 0xc820d0baa0 0xc820d0bbe0 0xc820d0bd00]} diff --git a/internal/binding/dump/QtMultimedia/QAbstractVideoFilter.txt b/internal/binding/dump/QtMultimedia/QAbstractVideoFilter.txt new file mode 100755 index 00000000..59b23e3a --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QAbstractVideoFilter.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{isActive QAbstractVideoFilter::isActive commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideofilter.cpp non plain false false bool [] } +&{setActive QAbstractVideoFilter::setActive commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideofilter.cpp non plain false false void [0xc826a78a00] } +&{QAbstractVideoFilter QAbstractVideoFilter::QAbstractVideoFilter commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideofilter.h non constructor false false [0xc826a790a0] } +&{activeChanged QAbstractVideoFilter::activeChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideofilter.h non signal false false void [] } +&{createFilterRunnable QAbstractVideoFilter::createFilterRunnable commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideofilter.h pure plain false false QVideoFilterRunnable * [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QAbstractVideoSurface.txt b/internal/binding/dump/QtMultimedia/QAbstractVideoSurface.txt new file mode 100755 index 00000000..6ee8e9eb --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QAbstractVideoSurface.txt @@ -0,0 +1,21 @@ +######################################## FUNCTIONS ######################################## +&{nativeResolution QAbstractVideoSurface::nativeResolution commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideosurface.cpp non plain false false QSize [] } +&{QAbstractVideoSurface QAbstractVideoSurface::QAbstractVideoSurface commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideosurface.h non constructor false false [0xc820f41920] } +&{activeChanged QAbstractVideoSurface::activeChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideosurface.h non signal false false void [0xc820f41cc0] } +&{error QAbstractVideoSurface::error commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideosurface.h non plain false false Error [] } +&{isActive QAbstractVideoSurface::isActive commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideosurface.h non plain false false bool [] } +&{isFormatSupported QAbstractVideoSurface::isFormatSupported commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideosurface.h impure plain false false bool [0xc82100eae0] } +&{nativeResolutionChanged QAbstractVideoSurface::nativeResolutionChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideosurface.h non signal false false void [0xc82100f160] } +&{nearestFormat QAbstractVideoSurface::nearestFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideosurface.h impure plain false false QVideoSurfaceFormat [0xc82100f720] } +&{present QAbstractVideoSurface::present commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideosurface.h pure plain false false bool [0xc82100fd40] } +&{setError QAbstractVideoSurface::setError commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideosurface.h non plain false false void [0xc820fca420] } +&{setNativeResolution QAbstractVideoSurface::setNativeResolution commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideosurface.h non plain false false void [0xc820fca900] } +&{start QAbstractVideoSurface::start commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideosurface.h impure plain false false bool [0xc820fcaf60] } +&{stop QAbstractVideoSurface::stop commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideosurface.h impure plain false false void [] } +&{supportedFormatsChanged QAbstractVideoSurface::supportedFormatsChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideosurface.h non signal false false void [] } +&{supportedPixelFormats QAbstractVideoSurface::supportedPixelFormats commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideosurface.h pure plain false false QList [0xc820fcbc60] } +&{surfaceFormat QAbstractVideoSurface::surfaceFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideosurface.h non plain false false QVideoSurfaceFormat [] } +&{surfaceFormatChanged QAbstractVideoSurface::surfaceFormatChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideosurface.h non signal false false void [0xc820fb2460] } +&{~QAbstractVideoSurface QAbstractVideoSurface::~QAbstractVideoSurface commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideosurface.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Error QAbstractVideoSurface::Error commendable public [0xc820f40ae0 0xc820f40ce0 0xc820f40f00 0xc820f410c0 0xc820f41360]} diff --git a/internal/binding/dump/QtMultimedia/QAudioBuffer.txt b/internal/binding/dump/QtMultimedia/QAudioBuffer.txt new file mode 100755 index 00000000..e22ae8eb --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QAudioBuffer.txt @@ -0,0 +1,21 @@ +######################################## FUNCTIONS ######################################## +&{QAudioBuffer QAudioBuffer::QAudioBuffer commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiobuffer.h non constructor false false [] } +&{QAudioBuffer QAudioBuffer::QAudioBuffer commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiobuffer.h non constructor false true 3 [0xc8222997a0] } +&{QAudioBuffer QAudioBuffer::QAudioBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiobuffer.h non constructor false true 4 [0xc822299c00 0xc822299da0 0xc822299ea0] } +&{QAudioBuffer QAudioBuffer::QAudioBuffer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiobuffer.h non constructor false true 5 [0xc8222aa180 0xc8222aa260 0xc8222aa360] } +&{byteCount QAudioBuffer::byteCount commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiobuffer.h non plain false false int [] } +&{constData QAudioBuffer::constData commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiobuffer.h non plain false true 2 const T * [] } +&{constData QAudioBuffer::constData commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiobuffer.h non plain false false const void * [] } +&{data QAudioBuffer::data commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiobuffer.h non plain false true 4 T * [] } +&{data QAudioBuffer::data commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiobuffer.h non plain false true 2 void * [] } +&{data QAudioBuffer::data commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiobuffer.h non plain false true 3 const T * [] } +&{data QAudioBuffer::data commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiobuffer.h non plain false false const void * [] } +&{duration QAudioBuffer::duration commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiobuffer.h non plain false false qint64 [] } +&{format QAudioBuffer::format commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiobuffer.h non plain false false QAudioFormat [] } +&{frameCount QAudioBuffer::frameCount commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiobuffer.h non plain false false int [] } +&{isValid QAudioBuffer::isValid commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiobuffer.h non plain false false bool [] } +&{operator= QAudioBuffer::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiobuffer.h non plain false false QAudioBuffer & [0xc8222b4940] } +&{sampleCount QAudioBuffer::sampleCount commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiobuffer.h non plain false false int [] } +&{startTime QAudioBuffer::startTime commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiobuffer.h non plain false false qint64 [] } +&{~QAudioBuffer QAudioBuffer::~QAudioBuffer commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiobuffer.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QAudioDecoder.txt b/internal/binding/dump/QtMultimedia/QAudioDecoder.txt new file mode 100755 index 00000000..f0fbec19 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QAudioDecoder.txt @@ -0,0 +1,31 @@ +######################################## FUNCTIONS ######################################## +&{errorString QAudioDecoder::errorString commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodecoder.cpp non plain false false QString [] } +&{state QAudioDecoder::state commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodecoder.cpp non plain false false State [] } +&{QAudioDecoder QAudioDecoder::QAudioDecoder commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodecoder.h non constructor false false [0xc8222c8be0] } +&{audioFormat QAudioDecoder::audioFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodecoder.h non plain false false QAudioFormat [] } +&{bufferAvailable QAudioDecoder::bufferAvailable commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodecoder.h non plain false false bool [] } +&{bufferAvailableChanged QAudioDecoder::bufferAvailableChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodecoder.h non signal false false void [0xc8222c9aa0] } +&{bufferReady QAudioDecoder::bufferReady commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodecoder.h non signal false false void [] } +&{duration QAudioDecoder::duration commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodecoder.h non plain false false qint64 [] } +&{durationChanged QAudioDecoder::durationChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodecoder.h non signal false false void [0xc8222da340] } +&{error QAudioDecoder::error commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodecoder.h non signal false true 2 void [0xc8222da720] } +&{error QAudioDecoder::error commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodecoder.h non plain false false Error [] } +&{finished QAudioDecoder::finished commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodecoder.h non signal false false void [] } +&{formatChanged QAudioDecoder::formatChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodecoder.h non signal false false void [0xc8222daec0] } +&{hasSupport QAudioDecoder::hasSupport commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodecoder.h non plain true false QMultimedia::SupportEstimate [0xc8222db360 0xc8222db4e0] } +&{position QAudioDecoder::position commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodecoder.h non plain false false qint64 [] } +&{positionChanged QAudioDecoder::positionChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodecoder.h non signal false false void [0xc8222dbb00] } +&{read QAudioDecoder::read commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodecoder.h non plain false false QAudioBuffer [] } +&{setAudioFormat QAudioDecoder::setAudioFormat commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodecoder.h non plain false false void [0xc8222dbf60] } +&{setSourceDevice QAudioDecoder::setSourceDevice commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodecoder.h non plain false false void [0xc8222ec240] } +&{setSourceFilename QAudioDecoder::setSourceFilename commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodecoder.h non plain false false void [0xc8222ec4e0] } +&{sourceChanged QAudioDecoder::sourceChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodecoder.h non signal false false void [] } +&{sourceDevice QAudioDecoder::sourceDevice commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodecoder.h non plain false false QIODevice * [] } +&{sourceFilename QAudioDecoder::sourceFilename commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodecoder.h non plain false false QString [] } +&{start QAudioDecoder::start commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodecoder.h non slot false false void [] } +&{stateChanged QAudioDecoder::stateChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodecoder.h non signal false false void [0xc8222ecd60] } +&{stop QAudioDecoder::stop commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodecoder.h non slot false false void [] } +&{~QAudioDecoder QAudioDecoder::~QAudioDecoder commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodecoder.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Error QAudioDecoder::Error commendable public [0xc8222b5da0 0xc8222b5ee0 0xc8222c8000 0xc8222c8100 0xc8222c8380]} +&{State QAudioDecoder::State commendable public [0xc8222c86e0 0xc8222c8860]} diff --git a/internal/binding/dump/QtMultimedia/QAudioDecoderControl.txt b/internal/binding/dump/QtMultimedia/QAudioDecoderControl.txt new file mode 100755 index 00000000..77ce5ed8 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QAudioDecoderControl.txt @@ -0,0 +1,26 @@ +######################################## FUNCTIONS ######################################## +&{QAudioDecoderControl QAudioDecoderControl::QAudioDecoderControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiodecodercontrol.h non constructor false false [0xc822648fe0] } +&{audioFormat QAudioDecoderControl::audioFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiodecodercontrol.h pure plain false false QAudioFormat [] } +&{bufferAvailable QAudioDecoderControl::bufferAvailable commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiodecodercontrol.h pure plain false false bool [] } +&{bufferAvailableChanged QAudioDecoderControl::bufferAvailableChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiodecodercontrol.h non signal false false void [0xc8226494a0] } +&{bufferReady QAudioDecoderControl::bufferReady commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiodecodercontrol.h non signal false false void [] } +&{duration QAudioDecoderControl::duration commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiodecodercontrol.h pure plain false false qint64 [] } +&{durationChanged QAudioDecoderControl::durationChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiodecodercontrol.h non signal false false void [0xc822649a20] } +&{error QAudioDecoderControl::error commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiodecodercontrol.h non signal false false void [0xc822649d00 0xc822649e40] } +&{finished QAudioDecoderControl::finished commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiodecodercontrol.h non signal false false void [] } +&{formatChanged QAudioDecoderControl::formatChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiodecodercontrol.h non signal false false void [0xc821d301e0] } +&{position QAudioDecoderControl::position commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiodecodercontrol.h pure plain false false qint64 [] } +&{positionChanged QAudioDecoderControl::positionChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiodecodercontrol.h non signal false false void [0xc821d305e0] } +&{read QAudioDecoderControl::read commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiodecodercontrol.h pure plain false false QAudioBuffer [] } +&{setAudioFormat QAudioDecoderControl::setAudioFormat commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiodecodercontrol.h pure plain false false void [0xc821d30a20] } +&{setSourceDevice QAudioDecoderControl::setSourceDevice commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiodecodercontrol.h pure plain false false void [0xc821d30c80] } +&{setSourceFilename QAudioDecoderControl::setSourceFilename commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiodecodercontrol.h pure plain false false void [0xc821d30f60] } +&{sourceChanged QAudioDecoderControl::sourceChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiodecodercontrol.h non signal false false void [] } +&{sourceDevice QAudioDecoderControl::sourceDevice commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiodecodercontrol.h pure plain false false QIODevice * [] } +&{sourceFilename QAudioDecoderControl::sourceFilename commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiodecodercontrol.h pure plain false false QString [] } +&{start QAudioDecoderControl::start commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiodecodercontrol.h pure plain false false void [] } +&{state QAudioDecoderControl::state commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiodecodercontrol.h pure plain false false QAudioDecoder::State [] } +&{stateChanged QAudioDecoderControl::stateChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiodecodercontrol.h non signal false false void [0xc821d317e0] } +&{stop QAudioDecoderControl::stop commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiodecodercontrol.h pure plain false false void [] } +&{~QAudioDecoderControl QAudioDecoderControl::~QAudioDecoderControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiodecodercontrol.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QAudioDeviceInfo.txt b/internal/binding/dump/QtMultimedia/QAudioDeviceInfo.txt new file mode 100755 index 00000000..c99cb1c4 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QAudioDeviceInfo.txt @@ -0,0 +1,22 @@ +######################################## FUNCTIONS ######################################## +&{QAudioDeviceInfo QAudioDeviceInfo::QAudioDeviceInfo commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodeviceinfo.h non constructor false false [] } +&{QAudioDeviceInfo QAudioDeviceInfo::QAudioDeviceInfo commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodeviceinfo.h non constructor false true 2 [0xc8222fc1e0] } +&{availableDevices QAudioDeviceInfo::availableDevices commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodeviceinfo.h non plain true false QList [0xc8222fd0e0] } +&{defaultInputDevice QAudioDeviceInfo::defaultInputDevice commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodeviceinfo.h non plain true false QAudioDeviceInfo [] } +&{defaultOutputDevice QAudioDeviceInfo::defaultOutputDevice commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodeviceinfo.h non plain true false QAudioDeviceInfo [] } +&{deviceName QAudioDeviceInfo::deviceName commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodeviceinfo.h non plain false false QString [] } +&{isFormatSupported QAudioDeviceInfo::isFormatSupported commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodeviceinfo.h non plain false false bool [0xc8222fd860] } +&{isNull QAudioDeviceInfo::isNull commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodeviceinfo.h non plain false false bool [] } +&{nearestFormat QAudioDeviceInfo::nearestFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodeviceinfo.h non plain false false QAudioFormat [0xc8222fde00] } +&{operator!= QAudioDeviceInfo::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodeviceinfo.h non plain false false bool [0xc822310140] } +&{operator= QAudioDeviceInfo::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodeviceinfo.h non plain false false QAudioDeviceInfo & [0xc8223104c0] } +&{operator== QAudioDeviceInfo::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodeviceinfo.h non plain false false bool [0xc822310800] } +&{preferredFormat QAudioDeviceInfo::preferredFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodeviceinfo.h non plain false false QAudioFormat [] } +&{supportedByteOrders QAudioDeviceInfo::supportedByteOrders commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodeviceinfo.h non plain false false QList [] } +&{supportedChannelCounts QAudioDeviceInfo::supportedChannelCounts commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodeviceinfo.h non plain false false QList [] } +&{supportedCodecs QAudioDeviceInfo::supportedCodecs commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodeviceinfo.h non plain false false QStringList [] } +&{supportedSampleRates QAudioDeviceInfo::supportedSampleRates commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodeviceinfo.h non plain false false QList [] } +&{supportedSampleSizes QAudioDeviceInfo::supportedSampleSizes commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodeviceinfo.h non plain false false QList [] } +&{supportedSampleTypes QAudioDeviceInfo::supportedSampleTypes commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodeviceinfo.h non plain false false QList [] } +&{~QAudioDeviceInfo QAudioDeviceInfo::~QAudioDeviceInfo commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiodeviceinfo.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QAudioEncoderSettings.txt b/internal/binding/dump/QtMultimedia/QAudioEncoderSettings.txt new file mode 100755 index 00000000..f5d7c646 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QAudioEncoderSettings.txt @@ -0,0 +1,25 @@ +######################################## FUNCTIONS ######################################## +&{QAudioEncoderSettings QAudioEncoderSettings::QAudioEncoderSettings commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non constructor false false [] } +&{QAudioEncoderSettings QAudioEncoderSettings::QAudioEncoderSettings commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non constructor false true 2 [0xc8217e61c0] } +&{bitRate QAudioEncoderSettings::bitRate commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false int [] } +&{channelCount QAudioEncoderSettings::channelCount commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false int [] } +&{codec QAudioEncoderSettings::codec commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false QString [] } +&{encodingMode QAudioEncoderSettings::encodingMode commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false QMultimedia::EncodingMode [] } +&{encodingOption QAudioEncoderSettings::encodingOption commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false QVariant [0xc8217e68a0] } +&{encodingOptions QAudioEncoderSettings::encodingOptions commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false QVariantMap [] } +&{isNull QAudioEncoderSettings::isNull commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false bool [] } +&{operator!= QAudioEncoderSettings::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false bool [0xc8217e6ca0] } +&{operator= QAudioEncoderSettings::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false QAudioEncoderSettings & [0xc8217e6fa0] } +&{operator== QAudioEncoderSettings::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false bool [0xc8217e7160] } +&{quality QAudioEncoderSettings::quality commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false QMultimedia::EncodingQuality [] } +&{sampleRate QAudioEncoderSettings::sampleRate commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false int [] } +&{setBitRate QAudioEncoderSettings::setBitRate commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false void [0xc8217e7620] } +&{setChannelCount QAudioEncoderSettings::setChannelCount commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false void [0xc8217e7800] } +&{setCodec QAudioEncoderSettings::setCodec commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false void [0xc8217e7a80] } +&{setEncodingMode QAudioEncoderSettings::setEncodingMode commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false void [0xc8217e7c00] } +&{setEncodingOption QAudioEncoderSettings::setEncodingOption commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false void [0xc8217e7e00 0xc8217e7ec0] } +&{setEncodingOptions QAudioEncoderSettings::setEncodingOptions commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false void [0xc8217e2200] } +&{setQuality QAudioEncoderSettings::setQuality commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false void [0xc8217e2540] } +&{setSampleRate QAudioEncoderSettings::setSampleRate commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false void [0xc8217e2860] } +&{~QAudioEncoderSettings QAudioEncoderSettings::~QAudioEncoderSettings commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QAudioEncoderSettingsControl.txt b/internal/binding/dump/QtMultimedia/QAudioEncoderSettingsControl.txt new file mode 100755 index 00000000..e5447d07 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QAudioEncoderSettingsControl.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QAudioEncoderSettingsControl QAudioEncoderSettingsControl::QAudioEncoderSettingsControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudioencodersettingscontrol.h non constructor false false [0xc82266a260] } +&{audioSettings QAudioEncoderSettingsControl::audioSettings commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudioencodersettingscontrol.h pure plain false false QAudioEncoderSettings [] } +&{codecDescription QAudioEncoderSettingsControl::codecDescription commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudioencodersettingscontrol.h pure plain false false QString [0xc82266a600] } +&{setAudioSettings QAudioEncoderSettingsControl::setAudioSettings commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudioencodersettingscontrol.h pure plain false false void [0xc82266a880] } +&{supportedAudioCodecs QAudioEncoderSettingsControl::supportedAudioCodecs commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudioencodersettingscontrol.h pure plain false false QStringList [] } +&{supportedSampleRates QAudioEncoderSettingsControl::supportedSampleRates commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudioencodersettingscontrol.h pure plain false false QList [0xc82266ad60 0xc82266aec0] } +&{~QAudioEncoderSettingsControl QAudioEncoderSettingsControl::~QAudioEncoderSettingsControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudioencodersettingscontrol.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QAudioFormat.txt b/internal/binding/dump/QtMultimedia/QAudioFormat.txt new file mode 100755 index 00000000..51354671 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QAudioFormat.txt @@ -0,0 +1,30 @@ +######################################## FUNCTIONS ######################################## +&{QAudioFormat QAudioFormat::QAudioFormat commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioformat.h non constructor false false [] } +&{QAudioFormat QAudioFormat::QAudioFormat commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioformat.h non constructor false true 2 [0xc822324460] } +&{byteOrder QAudioFormat::byteOrder commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioformat.h non plain false false QAudioFormat::Endian [] } +&{bytesForDuration QAudioFormat::bytesForDuration commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioformat.h non plain false false qint32 [0xc822324900] } +&{bytesForFrames QAudioFormat::bytesForFrames commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioformat.h non plain false false qint32 [0xc822324c20] } +&{bytesPerFrame QAudioFormat::bytesPerFrame commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioformat.h non plain false false int [] } +&{channelCount QAudioFormat::channelCount commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioformat.h non plain false false int [] } +&{codec QAudioFormat::codec commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioformat.h non plain false false QString [] } +&{durationForBytes QAudioFormat::durationForBytes commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioformat.h non plain false false qint64 [0xc822325180] } +&{durationForFrames QAudioFormat::durationForFrames commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioformat.h non plain false false qint64 [0xc8223253c0] } +&{framesForBytes QAudioFormat::framesForBytes commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioformat.h non plain false false qint32 [0xc822325600] } +&{framesForDuration QAudioFormat::framesForDuration commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioformat.h non plain false false qint32 [0xc8223258e0] } +&{isValid QAudioFormat::isValid commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioformat.h non plain false false bool [] } +&{operator!= QAudioFormat::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioformat.h non plain false false bool [0xc822325c60] } +&{operator= QAudioFormat::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioformat.h non plain false false QAudioFormat & [0xc822325fc0] } +&{operator== QAudioFormat::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioformat.h non plain false false bool [0xc8223362e0] } +&{sampleRate QAudioFormat::sampleRate commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioformat.h non plain false false int [] } +&{sampleSize QAudioFormat::sampleSize commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioformat.h non plain false false int [] } +&{sampleType QAudioFormat::sampleType commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioformat.h non plain false false QAudioFormat::SampleType [] } +&{setByteOrder QAudioFormat::setByteOrder commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioformat.h non plain false false void [0xc822336ba0] } +&{setChannelCount QAudioFormat::setChannelCount commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioformat.h non plain false false void [0xc822336e60] } +&{setCodec QAudioFormat::setCodec commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioformat.h non plain false false void [0xc822337120] } +&{setSampleRate QAudioFormat::setSampleRate commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioformat.h non plain false false void [0xc8223373e0] } +&{setSampleSize QAudioFormat::setSampleSize commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioformat.h non plain false false void [0xc822337600] } +&{setSampleType QAudioFormat::setSampleType commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioformat.h non plain false false void [0xc822337820] } +&{~QAudioFormat QAudioFormat::~QAudioFormat commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioformat.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Endian QAudioFormat::Endian commendable public [0xc822311880 0xc822311960]} +&{SampleType QAudioFormat::SampleType commendable public [0xc822311cc0 0xc822311dc0 0xc822311e60 0xc822311f20]} diff --git a/internal/binding/dump/QtMultimedia/QAudioInput.txt b/internal/binding/dump/QtMultimedia/QAudioInput.txt new file mode 100755 index 00000000..cb183ab6 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QAudioInput.txt @@ -0,0 +1,26 @@ +######################################## FUNCTIONS ######################################## +&{QAudioInput QAudioInput::QAudioInput commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioinput.h non constructor false true 2 [0xc822337c40 0xc822337dc0 0xc822337f40] } +&{QAudioInput QAudioInput::QAudioInput commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioinput.h non constructor false false [0xc822348200 0xc822348360] } +&{bufferSize QAudioInput::bufferSize commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioinput.h non plain false false int [] } +&{bytesReady QAudioInput::bytesReady commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioinput.h non plain false false int [] } +&{elapsedUSecs QAudioInput::elapsedUSecs commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioinput.h non plain false false qint64 [] } +&{error QAudioInput::error commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioinput.h non plain false false QAudio::Error [] } +&{format QAudioInput::format commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioinput.h non plain false false QAudioFormat [] } +&{notify QAudioInput::notify commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioinput.h non signal false false void [] } +&{notifyInterval QAudioInput::notifyInterval commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioinput.h non plain false false int [] } +&{periodSize QAudioInput::periodSize commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioinput.h non plain false false int [] } +&{processedUSecs QAudioInput::processedUSecs commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioinput.h non plain false false qint64 [] } +&{reset QAudioInput::reset commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioinput.h non plain false false void [] } +&{resume QAudioInput::resume commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioinput.h non plain false false void [] } +&{setBufferSize QAudioInput::setBufferSize commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioinput.h non plain false false void [0xc8223496a0] } +&{setNotifyInterval QAudioInput::setNotifyInterval commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioinput.h non plain false false void [0xc8223499e0] } +&{setVolume QAudioInput::setVolume commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioinput.h non plain false false void [0xc822349c80] } +&{start QAudioInput::start commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioinput.h non plain false true 2 QIODevice * [] } +&{start QAudioInput::start commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioinput.h non plain false false void [0xc82235a140] } +&{state QAudioInput::state commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioinput.h non plain false false QAudio::State [] } +&{stateChanged QAudioInput::stateChanged commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioinput.h non signal false false void [0xc82235a580] } +&{stop QAudioInput::stop commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioinput.h non plain false false void [] } +&{suspend QAudioInput::suspend commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioinput.h non plain false false void [] } +&{volume QAudioInput::volume commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioinput.h non plain false false qreal [] } +&{~QAudioInput QAudioInput::~QAudioInput commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioinput.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QAudioInputSelectorControl.txt b/internal/binding/dump/QtMultimedia/QAudioInputSelectorControl.txt new file mode 100755 index 00000000..5b878f72 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QAudioInputSelectorControl.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{QAudioInputSelectorControl QAudioInputSelectorControl::QAudioInputSelectorControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudioinputselectorcontrol.h non constructor false false [0xc82266b740] } +&{activeInput QAudioInputSelectorControl::activeInput commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudioinputselectorcontrol.h pure plain false false QString [] } +&{activeInputChanged QAudioInputSelectorControl::activeInputChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudioinputselectorcontrol.h non signal false false void [0xc82266bb40] } +&{availableInputs QAudioInputSelectorControl::availableInputs commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudioinputselectorcontrol.h pure plain false false QList [] } +&{availableInputsChanged QAudioInputSelectorControl::availableInputsChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudioinputselectorcontrol.h non signal false false void [] } +&{defaultInput QAudioInputSelectorControl::defaultInput commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudioinputselectorcontrol.h pure plain false false QString [] } +&{inputDescription QAudioInputSelectorControl::inputDescription commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudioinputselectorcontrol.h pure plain false false QString [0xc8226860c0] } +&{setActiveInput QAudioInputSelectorControl::setActiveInput commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudioinputselectorcontrol.h pure slot false false void [0xc822686320] } +&{~QAudioInputSelectorControl QAudioInputSelectorControl::~QAudioInputSelectorControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudioinputselectorcontrol.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QAudioOutput.txt b/internal/binding/dump/QtMultimedia/QAudioOutput.txt new file mode 100755 index 00000000..b398a6f7 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QAudioOutput.txt @@ -0,0 +1,28 @@ +######################################## FUNCTIONS ######################################## +&{QAudioOutput QAudioOutput::QAudioOutput commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiooutput.h non constructor false true 2 [0xc82235acc0 0xc82235adc0 0xc82235aec0] } +&{QAudioOutput QAudioOutput::QAudioOutput commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiooutput.h non constructor false false [0xc82235b140 0xc82235b240] } +&{bufferSize QAudioOutput::bufferSize commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiooutput.h non plain false false int [] } +&{bytesFree QAudioOutput::bytesFree commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiooutput.h non plain false false int [] } +&{category QAudioOutput::category commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiooutput.h non plain false false QString [] } +&{elapsedUSecs QAudioOutput::elapsedUSecs commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiooutput.h non plain false false qint64 [] } +&{error QAudioOutput::error commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiooutput.h non plain false false QAudio::Error [] } +&{format QAudioOutput::format commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiooutput.h non plain false false QAudioFormat [] } +&{notify QAudioOutput::notify commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiooutput.h non signal false false void [] } +&{notifyInterval QAudioOutput::notifyInterval commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiooutput.h non plain false false int [] } +&{periodSize QAudioOutput::periodSize commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiooutput.h non plain false false int [] } +&{processedUSecs QAudioOutput::processedUSecs commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiooutput.h non plain false false qint64 [] } +&{reset QAudioOutput::reset commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiooutput.h non plain false false void [] } +&{resume QAudioOutput::resume commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiooutput.h non plain false false void [] } +&{setBufferSize QAudioOutput::setBufferSize commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiooutput.h non plain false false void [0xc8223703a0] } +&{setCategory QAudioOutput::setCategory commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiooutput.h non plain false false void [0xc822370600] } +&{setNotifyInterval QAudioOutput::setNotifyInterval commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiooutput.h non plain false false void [0xc822370a20] } +&{setVolume QAudioOutput::setVolume commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiooutput.h non plain false false void [0xc822370d80] } +&{start QAudioOutput::start commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiooutput.h non plain false true 2 QIODevice * [] } +&{start QAudioOutput::start commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiooutput.h non plain false false void [0xc8223713a0] } +&{state QAudioOutput::state commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiooutput.h non plain false false QAudio::State [] } +&{stateChanged QAudioOutput::stateChanged commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiooutput.h non signal false false void [0xc822371860] } +&{stop QAudioOutput::stop commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiooutput.h non plain false false void [] } +&{suspend QAudioOutput::suspend commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiooutput.h non plain false false void [] } +&{volume QAudioOutput::volume commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiooutput.h non plain false false qreal [] } +&{~QAudioOutput QAudioOutput::~QAudioOutput commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudiooutput.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QAudioOutputSelectorControl.txt b/internal/binding/dump/QtMultimedia/QAudioOutputSelectorControl.txt new file mode 100755 index 00000000..ecc00dd7 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QAudioOutputSelectorControl.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{QAudioOutputSelectorControl QAudioOutputSelectorControl::QAudioOutputSelectorControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiooutputselectorcontrol.h non constructor false false [0xc822686d20] } +&{activeOutput QAudioOutputSelectorControl::activeOutput commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiooutputselectorcontrol.h pure plain false false QString [] } +&{activeOutputChanged QAudioOutputSelectorControl::activeOutputChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiooutputselectorcontrol.h non signal false false void [0xc822687120] } +&{availableOutputs QAudioOutputSelectorControl::availableOutputs commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiooutputselectorcontrol.h pure plain false false QList [] } +&{availableOutputsChanged QAudioOutputSelectorControl::availableOutputsChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiooutputselectorcontrol.h non signal false false void [] } +&{defaultOutput QAudioOutputSelectorControl::defaultOutput commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiooutputselectorcontrol.h pure plain false false QString [] } +&{outputDescription QAudioOutputSelectorControl::outputDescription commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiooutputselectorcontrol.h pure plain false false QString [0xc822687820] } +&{setActiveOutput QAudioOutputSelectorControl::setActiveOutput commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiooutputselectorcontrol.h pure slot false false void [0xc822687a60] } +&{~QAudioOutputSelectorControl QAudioOutputSelectorControl::~QAudioOutputSelectorControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qaudiooutputselectorcontrol.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QAudioProbe.txt b/internal/binding/dump/QtMultimedia/QAudioProbe.txt new file mode 100755 index 00000000..6d052b2c --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QAudioProbe.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QAudioProbe QAudioProbe::QAudioProbe commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioprobe.h non constructor false false [0xc8223841c0] } +&{audioBufferProbed QAudioProbe::audioBufferProbed commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioprobe.h non signal false false void [0xc822384560] } +&{flush QAudioProbe::flush commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioprobe.h non signal false false void [] } +&{isActive QAudioProbe::isActive commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioprobe.h non plain false false bool [] } +&{setSource QAudioProbe::setSource commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioprobe.h non plain false false bool [0xc822384be0] } +&{setSource QAudioProbe::setSource commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioprobe.h non plain false true 2 bool [0xc822384ea0] } +&{~QAudioProbe QAudioProbe::~QAudioProbe commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qaudioprobe.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QAudioRecorder.txt b/internal/binding/dump/QtMultimedia/QAudioRecorder.txt new file mode 100755 index 00000000..c9becf2d --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QAudioRecorder.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{QAudioRecorder QAudioRecorder::QAudioRecorder commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qaudiorecorder.h non constructor false false [0xc8226dc820] } +&{audioInput QAudioRecorder::audioInput commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qaudiorecorder.h non plain false false QString [] } +&{audioInputChanged QAudioRecorder::audioInputChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qaudiorecorder.h non signal false false void [0xc8226dcca0] } +&{audioInputDescription QAudioRecorder::audioInputDescription commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qaudiorecorder.h non plain false false QString [0xc8226dcf00] } +&{audioInputs QAudioRecorder::audioInputs commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qaudiorecorder.h non plain false false QStringList [] } +&{availableAudioInputsChanged QAudioRecorder::availableAudioInputsChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qaudiorecorder.h non signal false false void [] } +&{defaultAudioInput QAudioRecorder::defaultAudioInput commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qaudiorecorder.h non plain false false QString [] } +&{setAudioInput QAudioRecorder::setAudioInput commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qaudiorecorder.h non slot false false void [0xc8226dd600] } +&{~QAudioRecorder QAudioRecorder::~QAudioRecorder commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qaudiorecorder.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QCamera.txt b/internal/binding/dump/QtMultimedia/QCamera.txt new file mode 100755 index 00000000..3ef8c037 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QCamera.txt @@ -0,0 +1,55 @@ +######################################## FUNCTIONS ######################################## +&{captureMode QCamera::captureMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.cpp non plain false false CaptureModes [] } +&{searchAndLock QCamera::searchAndLock commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.cpp non slot false true 2 void [0xc8223d0ac0] } +&{setCaptureMode QCamera::setCaptureMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.cpp non slot false false void [0xc8223d0e60] } +&{state QCamera::state commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.cpp non plain false false State [] } +&{status QCamera::status commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.cpp non plain false false Status [] } +&{QCamera QCamera::QCamera commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non constructor false true 4 [0xc82210c7e0 0xc82210c920] } +&{QCamera QCamera::QCamera commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non constructor false false [0xc82210cb80] } +&{QCamera QCamera::QCamera commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non constructor false true 2 [0xc82210ce20 0xc82210cf40] } +&{QCamera QCamera::QCamera commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non constructor false true 3 [0xc82210d160 0xc82210d280] } +&{availability QCamera::availability commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h impure plain false false QMultimedia::AvailabilityStatus [] } +&{captureModeChanged QCamera::captureModeChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non signal false false void [0xc82210dae0] } +&{error QCamera::error commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non signal false true 2 void [0xc82211c100] } +&{error QCamera::error commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non plain false false Error [] } +&{errorString QCamera::errorString commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non plain false false QString [] } +&{exposure QCamera::exposure commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non plain false false QCameraExposure * [] } +&{focus QCamera::focus commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non plain false false QCameraFocus * [] } +&{imageProcessing QCamera::imageProcessing commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non plain false false QCameraImageProcessing * [] } +&{isCaptureModeSupported QCamera::isCaptureModeSupported commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non plain false false bool [0xc82211cda0] } +&{load QCamera::load commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non slot false false void [] } +&{lockFailed QCamera::lockFailed commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non signal false false void [] } +&{lockStatus QCamera::lockStatus commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non plain false false QCamera::LockStatus [] } +&{lockStatus QCamera::lockStatus commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non plain false true 2 QCamera::LockStatus [0xc82211d700] } +&{lockStatusChanged QCamera::lockStatusChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non signal false false void [0xc82211dc40 0xc82211de20] } +&{lockStatusChanged QCamera::lockStatusChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non signal false true 2 void [0xc82214e300 0xc82214e420 0xc82214e540] } +&{locked QCamera::locked commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non signal false false void [] } +&{requestedLocks QCamera::requestedLocks commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non plain false false QCamera::LockTypes [] } +&{searchAndLock QCamera::searchAndLock commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non slot false false void [] } +&{setViewfinder QCamera::setViewfinder commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non plain false true 3 void [0xc82214ec40] } +&{setViewfinder QCamera::setViewfinder commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non plain false true 2 void [0xc82214ef60] } +&{setViewfinder QCamera::setViewfinder commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non plain false false void [0xc82214f220] } +&{setViewfinderSettings QCamera::setViewfinderSettings commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non plain false false void [0xc82214f4a0] } +&{start QCamera::start commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non slot false false void [] } +&{stateChanged QCamera::stateChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non signal false false void [0xc82214f7e0] } +&{statusChanged QCamera::statusChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non signal false false void [0xc82214fa40] } +&{stop QCamera::stop commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non slot false false void [] } +&{supportedLocks QCamera::supportedLocks commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non plain false false QCamera::LockTypes [] } +&{supportedViewfinderFrameRateRanges QCamera::supportedViewfinderFrameRateRanges commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non plain false false QList [0xc82214fee0] } +&{supportedViewfinderPixelFormats QCamera::supportedViewfinderPixelFormats commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non plain false false QList [0xc822164240] } +&{supportedViewfinderResolutions QCamera::supportedViewfinderResolutions commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non plain false false QList [0xc822164520] } +&{supportedViewfinderSettings QCamera::supportedViewfinderSettings commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non plain false false QList [0xc822164800] } +&{unload QCamera::unload commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non slot false false void [] } +&{unlock QCamera::unlock commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non slot false false void [] } +&{unlock QCamera::unlock commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non slot false true 2 void [0xc822164bc0] } +&{viewfinderSettings QCamera::viewfinderSettings commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non plain false false QCameraViewfinderSettings [] } +&{~QCamera QCamera::~QCamera commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamera.h non destructor false false [] } +######################################## ENUMS ######################################## +&{CaptureMode QCamera::CaptureMode commendable public QCamera::CaptureModes [0xc8223d1a20 0xc8223d1ba0 0xc8223d1cc0]} +&{Error QCamera::Error commendable public [0xc8223d1ec0 0xc8223d1f60 0xc8223e0080 0xc8223e0200 0xc8223e0360]} +&{LockChangeReason QCamera::LockChangeReason commendable public [0xc8223e0600 0xc8223e06a0 0xc8223e0740 0xc8223e07c0 0xc8223e0880]} +&{LockStatus QCamera::LockStatus commendable public [0xc8223e0a80 0xc8223e0b00 0xc8223e0b80]} +&{LockType QCamera::LockType commendable public QCamera::LockTypes [0xc8223e0ec0 0xc8223e0f40 0xc8223e1080 0xc8223e1120]} +&{Position QCamera::Position commendable public [0xc8223e13e0 0xc8223e1540 0xc8223e1640]} +&{State QCamera::State commendable public [0xc8223e18a0 0xc8223e1940 0xc8223e1a00]} +&{Status QCamera::Status commendable public [0xc8223e1ca0 0xc8223e1da0 0xc8223e1ee0 0xc8223e1f80 0xc82210c040 0xc82210c120 0xc82210c1a0 0xc82210c240 0xc82210c340]} diff --git a/internal/binding/dump/QtMultimedia/QCameraCaptureBufferFormatControl.txt b/internal/binding/dump/QtMultimedia/QCameraCaptureBufferFormatControl.txt new file mode 100755 index 00000000..29c9050e --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QCameraCaptureBufferFormatControl.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{QCameraCaptureBufferFormatControl QCameraCaptureBufferFormatControl::QCameraCaptureBufferFormatControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameracapturebufferformatcontrol.h non constructor false false [0xc8226940a0] } +&{bufferFormat QCameraCaptureBufferFormatControl::bufferFormat commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameracapturebufferformatcontrol.h pure plain false false QVideoFrame::PixelFormat [] } +&{bufferFormatChanged QCameraCaptureBufferFormatControl::bufferFormatChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameracapturebufferformatcontrol.h non signal false false void [0xc8226944c0] } +&{setBufferFormat QCameraCaptureBufferFormatControl::setBufferFormat commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameracapturebufferformatcontrol.h pure plain false false void [0xc822694760] } +&{supportedBufferFormats QCameraCaptureBufferFormatControl::supportedBufferFormats commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameracapturebufferformatcontrol.h pure plain false false QList [] } +&{~QCameraCaptureBufferFormatControl QCameraCaptureBufferFormatControl::~QCameraCaptureBufferFormatControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameracapturebufferformatcontrol.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QCameraCaptureDestinationControl.txt b/internal/binding/dump/QtMultimedia/QCameraCaptureDestinationControl.txt new file mode 100755 index 00000000..224f4d77 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QCameraCaptureDestinationControl.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{QCameraCaptureDestinationControl QCameraCaptureDestinationControl::QCameraCaptureDestinationControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameracapturedestinationcontrol.h non constructor false false [0xc822695040] } +&{captureDestination QCameraCaptureDestinationControl::captureDestination commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameracapturedestinationcontrol.h pure plain false false QCameraImageCapture::CaptureDestinations [] } +&{captureDestinationChanged QCameraCaptureDestinationControl::captureDestinationChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameracapturedestinationcontrol.h non signal false false void [0xc822695500] } +&{isCaptureDestinationSupported QCameraCaptureDestinationControl::isCaptureDestinationSupported commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameracapturedestinationcontrol.h pure plain false false bool [0xc822695860] } +&{setCaptureDestination QCameraCaptureDestinationControl::setCaptureDestination commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameracapturedestinationcontrol.h pure plain false false void [0xc822695ba0] } +&{~QCameraCaptureDestinationControl QCameraCaptureDestinationControl::~QCameraCaptureDestinationControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameracapturedestinationcontrol.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QCameraControl.txt b/internal/binding/dump/QtMultimedia/QCameraControl.txt new file mode 100755 index 00000000..0efb3239 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QCameraControl.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{QCameraControl QCameraControl::QCameraControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameracontrol.h non constructor false false [0xc8226aa660] } +&{canChangeProperty QCameraControl::canChangeProperty commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameracontrol.h pure plain false false bool [0xc8226aa820 0xc8226aa8e0] } +&{captureMode QCameraControl::captureMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameracontrol.h pure plain false false QCamera::CaptureModes [] } +&{captureModeChanged QCameraControl::captureModeChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameracontrol.h non signal false false void [0xc8226aac40] } +&{error QCameraControl::error commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameracontrol.h non signal false false void [0xc8226aaea0 0xc8226aaf60] } +&{isCaptureModeSupported QCameraControl::isCaptureModeSupported commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameracontrol.h pure plain false false bool [0xc8226ab180] } +&{setCaptureMode QCameraControl::setCaptureMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameracontrol.h pure plain false false void [0xc8226ab3e0] } +&{setState QCameraControl::setState commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameracontrol.h pure plain false false void [0xc8226ab640] } +&{state QCameraControl::state commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameracontrol.h pure plain false false QCamera::State [] } +&{stateChanged QCameraControl::stateChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameracontrol.h non signal false false void [0xc8226ab9e0] } +&{status QCameraControl::status commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameracontrol.h pure plain false false QCamera::Status [] } +&{statusChanged QCameraControl::statusChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameracontrol.h non signal false false void [0xc8226abd40] } +&{~QCameraControl QCameraControl::~QCameraControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameracontrol.h non destructor false false [] } +######################################## ENUMS ######################################## +&{PropertyChangeType QCameraControl::PropertyChangeType commendable public [0xc8226aa120 0xc8226aa1c0 0xc8226aa2a0 0xc8226aa360 0xc8226aa420]} diff --git a/internal/binding/dump/QtMultimedia/QCameraExposure.txt b/internal/binding/dump/QtMultimedia/QCameraExposure.txt new file mode 100755 index 00000000..280224ca --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QCameraExposure.txt @@ -0,0 +1,42 @@ +######################################## FUNCTIONS ######################################## +&{aperture QCameraExposure::aperture commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.cpp non plain false false qreal [] } +&{exposureCompensation QCameraExposure::exposureCompensation commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.cpp non plain false false qreal [] } +&{exposureMode QCameraExposure::exposureMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.cpp non plain false false ExposureMode [] } +&{flashMode QCameraExposure::flashMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.cpp non plain false false FlashModes [] } +&{isoSensitivity QCameraExposure::isoSensitivity commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.cpp non plain false false int [] } +&{meteringMode QCameraExposure::meteringMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.cpp non plain false false MeteringMode [] } +&{setAutoAperture QCameraExposure::setAutoAperture commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.cpp non slot false false void [] } +&{setAutoIsoSensitivity QCameraExposure::setAutoIsoSensitivity commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.cpp non slot false false void [] } +&{setExposureCompensation QCameraExposure::setExposureCompensation commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.cpp non slot false false void [0xc822194c80] } +&{setExposureMode QCameraExposure::setExposureMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.cpp non slot false false void [0xc822194fe0] } +&{setFlashMode QCameraExposure::setFlashMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.cpp non slot false false void [0xc822195300] } +&{setManualAperture QCameraExposure::setManualAperture commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.cpp non slot false false void [0xc8221955e0] } +&{setManualIsoSensitivity QCameraExposure::setManualIsoSensitivity commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.cpp non slot false false void [0xc8221958a0] } +&{setMeteringMode QCameraExposure::setMeteringMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.cpp non slot false false void [0xc822195bc0] } +&{setSpotMeteringPoint QCameraExposure::setSpotMeteringPoint commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.cpp non plain false false void [0xc822195e60] } +&{spotMeteringPoint QCameraExposure::spotMeteringPoint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.cpp non plain false false QPointF [] } +&{apertureChanged QCameraExposure::apertureChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.h non signal false false void [0xc8221d3040] } +&{apertureRangeChanged QCameraExposure::apertureRangeChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.h non signal false false void [] } +&{exposureCompensationChanged QCameraExposure::exposureCompensationChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.h non signal false false void [0xc8221d34c0] } +&{flashReady QCameraExposure::flashReady commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.h non signal false false void [0xc8221d3800] } +&{isAvailable QCameraExposure::isAvailable commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.h non plain false false bool [] } +&{isExposureModeSupported QCameraExposure::isExposureModeSupported commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.h non plain false false bool [0xc8221d3ca0] } +&{isFlashModeSupported QCameraExposure::isFlashModeSupported commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.h non plain false false bool [0xc8221d3ea0] } +&{isFlashReady QCameraExposure::isFlashReady commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.h non plain false false bool [] } +&{isMeteringModeSupported QCameraExposure::isMeteringModeSupported commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.h non plain false false bool [0xc821e9e280] } +&{isoSensitivityChanged QCameraExposure::isoSensitivityChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.h non signal false false void [0xc821e9e500] } +&{requestedAperture QCameraExposure::requestedAperture commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.h non plain false false qreal [] } +&{requestedIsoSensitivity QCameraExposure::requestedIsoSensitivity commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.h non plain false false int [] } +&{requestedShutterSpeed QCameraExposure::requestedShutterSpeed commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.h non plain false false qreal [] } +&{setAutoShutterSpeed QCameraExposure::setAutoShutterSpeed commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.h non slot false false void [] } +&{setManualShutterSpeed QCameraExposure::setManualShutterSpeed commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.h non slot false false void [0xc821e9ed80] } +&{shutterSpeed QCameraExposure::shutterSpeed commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.h non plain false false qreal [] } +&{shutterSpeedChanged QCameraExposure::shutterSpeedChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.h non signal false false void [0xc821e9f180] } +&{shutterSpeedRangeChanged QCameraExposure::shutterSpeedRangeChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.h non signal false false void [] } +&{supportedApertures QCameraExposure::supportedApertures commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.h non plain false false QList [0xc821e9f640] } +&{supportedIsoSensitivities QCameraExposure::supportedIsoSensitivities commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.h non plain false false QList [0xc821e9f8e0] } +&{supportedShutterSpeeds QCameraExposure::supportedShutterSpeeds commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraexposure.h non plain false false QList [0xc821e9fba0] } +######################################## ENUMS ######################################## +&{ExposureMode QCameraExposure::ExposureMode commendable public [0xc8221a42c0 0xc8221a4340 0xc8221a4480 0xc8221a4500 0xc8221a4620 0xc8221a4740 0xc8221a4880 0xc8221a4920 0xc8221a49e0 0xc8221a4b00 0xc8221a4c20 0xc8221a4d60 0xc8221a4e00 0xc8221a4f40 0xc8221a5000 0xc8221a50a0 0xc8221a5160 0xc8221a52e0 0xc8221a53e0 0xc8221a5480 0xc8221a55c0 0xc8221a56c0]} +&{FlashMode QCameraExposure::FlashMode commendable public QCameraExposure::FlashModes [0xc8221a59e0 0xc8221a5a80 0xc8221a5b60 0xc8221a5c20 0xc8221a5da0 0xc8221a5e20 0xc8221a5f00 0xc8221a5fe0 0xc8221d2100 0xc8221d22a0]} +&{MeteringMode QCameraExposure::MeteringMode commendable public [0xc8221d24e0 0xc8221d2600 0xc8221d2680]} diff --git a/internal/binding/dump/QtMultimedia/QCameraExposureControl.txt b/internal/binding/dump/QtMultimedia/QCameraExposureControl.txt new file mode 100755 index 00000000..3e53746e --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QCameraExposureControl.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QCameraExposureControl QCameraExposureControl::QCameraExposureControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraexposurecontrol.h non constructor false false [0xc8226b1800] } +&{actualValue QCameraExposureControl::actualValue commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraexposurecontrol.h pure plain false false QVariant [0xc8226b1b00] } +&{actualValueChanged QCameraExposureControl::actualValueChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraexposurecontrol.h non signal false false void [0xc8226b1f20] } +&{isParameterSupported QCameraExposureControl::isParameterSupported commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraexposurecontrol.h pure plain false false bool [0xc8226bc240] } +&{parameterRangeChanged QCameraExposureControl::parameterRangeChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraexposurecontrol.h non signal false false void [0xc8226bc5c0] } +&{requestedValue QCameraExposureControl::requestedValue commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraexposurecontrol.h pure plain false false QVariant [0xc8226bc8c0] } +&{requestedValueChanged QCameraExposureControl::requestedValueChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraexposurecontrol.h non signal false false void [0xc8226bcc00] } +&{setValue QCameraExposureControl::setValue commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraexposurecontrol.h pure plain false false bool [0xc8226bcec0 0xc8226bd020] } +&{supportedParameterRange QCameraExposureControl::supportedParameterRange commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraexposurecontrol.h pure plain false false QVariantList [0xc8226bd320 0xc8226bd460] } +&{~QCameraExposureControl QCameraExposureControl::~QCameraExposureControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraexposurecontrol.h non destructor false false [] } +######################################## ENUMS ######################################## +&{ExposureParameter QCameraExposureControl::ExposureParameter commendable public [0xc8226b05c0 0xc8226b06c0 0xc8226b07a0 0xc8226b0900 0xc8226b0ac0 0xc8226b0be0 0xc8226b0d80 0xc8226b0f20 0xc8226b10c0 0xc8226b1200 0xc8226b1380]} diff --git a/internal/binding/dump/QtMultimedia/QCameraFeedbackControl.txt b/internal/binding/dump/QtMultimedia/QCameraFeedbackControl.txt new file mode 100755 index 00000000..a4188db7 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QCameraFeedbackControl.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{QCameraFeedbackControl QCameraFeedbackControl::QCameraFeedbackControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerafeedbackcontrol.h non constructor false false [0xc821d1cb60] } +&{isEventFeedbackEnabled QCameraFeedbackControl::isEventFeedbackEnabled commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerafeedbackcontrol.h pure plain false false bool [0xc821d1ce00] } +&{isEventFeedbackLocked QCameraFeedbackControl::isEventFeedbackLocked commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerafeedbackcontrol.h pure plain false false bool [0xc821d1d100] } +&{resetEventFeedback QCameraFeedbackControl::resetEventFeedback commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerafeedbackcontrol.h pure plain false false void [0xc821d1d3a0] } +&{setEventFeedbackEnabled QCameraFeedbackControl::setEventFeedbackEnabled commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerafeedbackcontrol.h pure plain false false bool [0xc821d1d680 0xc821d1d720] } +&{setEventFeedbackSound QCameraFeedbackControl::setEventFeedbackSound commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerafeedbackcontrol.h pure plain false false bool [0xc821d1da40 0xc821d1db20] } +&{~QCameraFeedbackControl QCameraFeedbackControl::~QCameraFeedbackControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerafeedbackcontrol.h non destructor false false [] } +######################################## ENUMS ######################################## +&{EventType QCameraFeedbackControl::EventType commendable public [0xc8226bdd40 0xc8226bdec0 0xc821d1c020 0xc821d1c120 0xc821d1c200 0xc821d1c2e0 0xc821d1c400 0xc821d1c500 0xc821d1c640 0xc821d1c760 0xc821d1c800]} diff --git a/internal/binding/dump/QtMultimedia/QCameraFlashControl.txt b/internal/binding/dump/QtMultimedia/QCameraFlashControl.txt new file mode 100755 index 00000000..6c154d7b --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QCameraFlashControl.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QCameraFlashControl QCameraFlashControl::QCameraFlashControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraflashcontrol.h non constructor false false [0xc821cee220] } +&{flashMode QCameraFlashControl::flashMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraflashcontrol.h pure plain false false QCameraExposure::FlashModes [] } +&{flashReady QCameraFlashControl::flashReady commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraflashcontrol.h non signal false false void [0xc821cee5e0] } +&{isFlashModeSupported QCameraFlashControl::isFlashModeSupported commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraflashcontrol.h pure plain false false bool [0xc821cee800] } +&{isFlashReady QCameraFlashControl::isFlashReady commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraflashcontrol.h pure plain false false bool [] } +&{setFlashMode QCameraFlashControl::setFlashMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraflashcontrol.h pure plain false false void [0xc821ceea80] } +&{~QCameraFlashControl QCameraFlashControl::~QCameraFlashControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraflashcontrol.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QCameraFocus.txt b/internal/binding/dump/QtMultimedia/QCameraFocus.txt new file mode 100755 index 00000000..82335ce2 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QCameraFocus.txt @@ -0,0 +1,24 @@ +######################################## FUNCTIONS ######################################## +&{customFocusPoint QCameraFocus::customFocusPoint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.cpp non plain false false QPointF [] } +&{digitalZoom QCameraFocus::digitalZoom commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.cpp non plain false false qreal [] } +&{focusMode QCameraFocus::focusMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.cpp non plain false false FocusModes [] } +&{focusPointMode QCameraFocus::focusPointMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.cpp non plain false false FocusPointMode [] } +&{focusZones QCameraFocus::focusZones commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.cpp non plain false false QCameraFocusZoneList [] } +&{opticalZoom QCameraFocus::opticalZoom commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.cpp non plain false false qreal [] } +&{setCustomFocusPoint QCameraFocus::setCustomFocusPoint commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.cpp non plain false false void [0xc82255e700] } +&{setFocusMode QCameraFocus::setFocusMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.cpp non plain false false void [0xc82255ea80] } +&{setFocusPointMode QCameraFocus::setFocusPointMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.cpp non plain false false void [0xc82255ef00] } +&{digitalZoomChanged QCameraFocus::digitalZoomChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.h non signal false false void [0xc822588a80] } +&{focusZonesChanged QCameraFocus::focusZonesChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.h non signal false false void [] } +&{isAvailable QCameraFocus::isAvailable commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.h non plain false false bool [] } +&{isFocusModeSupported QCameraFocus::isFocusModeSupported commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.h non plain false false bool [0xc8225892a0] } +&{isFocusPointModeSupported QCameraFocus::isFocusPointModeSupported commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.h non plain false false bool [0xc822589540] } +&{maximumDigitalZoom QCameraFocus::maximumDigitalZoom commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.h non plain false false qreal [] } +&{maximumDigitalZoomChanged QCameraFocus::maximumDigitalZoomChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.h non signal false false void [0xc822589c00] } +&{maximumOpticalZoom QCameraFocus::maximumOpticalZoom commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.h non plain false false qreal [] } +&{maximumOpticalZoomChanged QCameraFocus::maximumOpticalZoomChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.h non signal false false void [0xc8225a81a0] } +&{opticalZoomChanged QCameraFocus::opticalZoomChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.h non signal false false void [0xc8225a8540] } +&{zoomTo QCameraFocus::zoomTo commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.h non plain false false void [0xc8225a88c0 0xc8225a8960] } +######################################## ENUMS ######################################## +&{FocusMode QCameraFocus::FocusMode commendable public QCameraFocus::FocusModes [0xc82255f460 0xc82255f5a0 0xc82255f640 0xc82255f6e0 0xc82255f880 0xc82255f980]} +&{FocusPointMode QCameraFocus::FocusPointMode commendable public [0xc82255fcc0 0xc82255fd60 0xc82255ff40 0xc8225880e0]} diff --git a/internal/binding/dump/QtMultimedia/QCameraFocusControl.txt b/internal/binding/dump/QtMultimedia/QCameraFocusControl.txt new file mode 100755 index 00000000..cbef0199 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QCameraFocusControl.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{QCameraFocusControl QCameraFocusControl::QCameraFocusControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerafocuscontrol.h non constructor false false [0xc821cef000] } +&{customFocusPoint QCameraFocusControl::customFocusPoint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerafocuscontrol.h pure plain false false QPointF [] } +&{customFocusPointChanged QCameraFocusControl::customFocusPointChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerafocuscontrol.h non signal false false void [0xc821cef260] } +&{focusMode QCameraFocusControl::focusMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerafocuscontrol.h pure plain false false QCameraFocus::FocusModes [] } +&{focusModeChanged QCameraFocusControl::focusModeChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerafocuscontrol.h non signal false false void [0xc821cef5e0] } +&{focusPointMode QCameraFocusControl::focusPointMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerafocuscontrol.h pure plain false false QCameraFocus::FocusPointMode [] } +&{focusPointModeChanged QCameraFocusControl::focusPointModeChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerafocuscontrol.h non signal false false void [0xc821cef9a0] } +&{focusZones QCameraFocusControl::focusZones commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerafocuscontrol.h pure plain false false QCameraFocusZoneList [] } +&{focusZonesChanged QCameraFocusControl::focusZonesChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerafocuscontrol.h non signal false false void [] } +&{isFocusModeSupported QCameraFocusControl::isFocusModeSupported commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerafocuscontrol.h pure plain false false bool [0xc821ceff40] } +&{isFocusPointModeSupported QCameraFocusControl::isFocusPointModeSupported commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerafocuscontrol.h pure plain false false bool [0xc821cea420] } +&{setCustomFocusPoint QCameraFocusControl::setCustomFocusPoint commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerafocuscontrol.h pure plain false false void [0xc821cea960] } +&{setFocusMode QCameraFocusControl::setFocusMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerafocuscontrol.h pure plain false false void [0xc821ceada0] } +&{setFocusPointMode QCameraFocusControl::setFocusPointMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerafocuscontrol.h pure plain false false void [0xc821ceb340] } +&{~QCameraFocusControl QCameraFocusControl::~QCameraFocusControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerafocuscontrol.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QCameraFocusZone.txt b/internal/binding/dump/QtMultimedia/QCameraFocusZone.txt new file mode 100755 index 00000000..1d5ea004 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QCameraFocusZone.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{QCameraFocusZone QCameraFocusZone::QCameraFocusZone commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.h non constructor false false [0xc8225bc7e0] } +&{area QCameraFocusZone::area commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.h non plain false false QRectF [] } +&{isValid QCameraFocusZone::isValid commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.h non plain false false bool [] } +&{operator!= QCameraFocusZone::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.h non plain false false bool [0xc8225bd020] } +&{operator= QCameraFocusZone::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.h non plain false false QCameraFocusZone & [0xc8225bd320] } +&{operator== QCameraFocusZone::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.h non plain false false bool [0xc8225bd580] } +&{status QCameraFocusZone::status commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.h non plain false false FocusZoneStatus [] } +&{~QCameraFocusZone QCameraFocusZone::~QCameraFocusZone commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerafocus.h non destructor false false [] } +######################################## ENUMS ######################################## +&{FocusZoneStatus QCameraFocusZone::FocusZoneStatus commendable public [0xc8225bc3e0 0xc8225bc480 0xc8225bc500 0xc8225bc5c0]} diff --git a/internal/binding/dump/QtMultimedia/QCameraImageCapture.txt b/internal/binding/dump/QtMultimedia/QCameraImageCapture.txt new file mode 100755 index 00000000..db4ff517 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QCameraImageCapture.txt @@ -0,0 +1,36 @@ +######################################## FUNCTIONS ######################################## +&{isReadyForCapture QCameraImageCapture::isReadyForCapture commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.cpp non plain false false bool [] } +&{QCameraImageCapture QCameraImageCapture::QCameraImageCapture commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non constructor false false [0xc8221fec40 0xc8221fecc0] } +&{availability QCameraImageCapture::availability commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non plain false false QMultimedia::AvailabilityStatus [] } +&{bufferFormat QCameraImageCapture::bufferFormat commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non plain false false QVideoFrame::PixelFormat [] } +&{bufferFormatChanged QCameraImageCapture::bufferFormatChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non signal false false void [0xc8221ff200] } +&{cancelCapture QCameraImageCapture::cancelCapture commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non slot false false void [] } +&{capture QCameraImageCapture::capture commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non slot false false int [0xc8221ff4e0] } +&{captureDestination QCameraImageCapture::captureDestination commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non plain false false CaptureDestinations [] } +&{captureDestinationChanged QCameraImageCapture::captureDestinationChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non signal false false void [0xc8221ff800] } +&{encodingSettings QCameraImageCapture::encodingSettings commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non plain false false QImageEncoderSettings [] } +&{error QCameraImageCapture::error commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non signal false true 2 void [0xc8221ffac0 0xc8221ffb60 0xc8221ffc20] } +&{error QCameraImageCapture::error commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non plain false false Error [] } +&{errorString QCameraImageCapture::errorString commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non plain false false QString [] } +&{imageAvailable QCameraImageCapture::imageAvailable commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non signal false false void [0xc8225c2020 0xc8225c20c0] } +&{imageCaptured QCameraImageCapture::imageCaptured commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non signal false false void [0xc8225c2260 0xc8225c22e0] } +&{imageCodecDescription QCameraImageCapture::imageCodecDescription commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non plain false false QString [0xc8225c24c0] } +&{imageExposed QCameraImageCapture::imageExposed commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non signal false false void [0xc8225c2640] } +&{imageMetadataAvailable QCameraImageCapture::imageMetadataAvailable commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non signal false false void [0xc8225c2800 0xc8225c2880 0xc8225c2900] } +&{imageSaved QCameraImageCapture::imageSaved commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non signal false false void [0xc8225c2b00 0xc8225c2b80] } +&{isAvailable QCameraImageCapture::isAvailable commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non plain false false bool [] } +&{isCaptureDestinationSupported QCameraImageCapture::isCaptureDestinationSupported commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non plain false false bool [0xc8225c2ec0] } +&{mediaObject QCameraImageCapture::mediaObject commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h impure plain false false QMediaObject * [] } +&{readyForCaptureChanged QCameraImageCapture::readyForCaptureChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non signal false false void [0xc8225c3200] } +&{setBufferFormat QCameraImageCapture::setBufferFormat commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non plain false false void [0xc8225c33a0] } +&{setCaptureDestination QCameraImageCapture::setCaptureDestination commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non plain false false void [0xc8225c3660] } +&{setEncodingSettings QCameraImageCapture::setEncodingSettings commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non plain false false void [0xc8225c38a0] } +&{setMediaObject QCameraImageCapture::setMediaObject commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h impure plain false false bool [0xc8225c3aa0] } +&{supportedBufferFormats QCameraImageCapture::supportedBufferFormats commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non plain false false QList [] } +&{supportedImageCodecs QCameraImageCapture::supportedImageCodecs commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non plain false false QStringList [] } +&{supportedResolutions QCameraImageCapture::supportedResolutions commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non plain false false QList [0xc8225c3fa0 0xc8225ca0c0] } +&{~QCameraImageCapture QCameraImageCapture::~QCameraImageCapture commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimagecapture.h non destructor false false [] } +######################################## ENUMS ######################################## +&{CaptureDestination QCameraImageCapture::CaptureDestination commendable public QCameraImageCapture::CaptureDestinations [0xc8221fe120 0xc8221fe1a0]} +&{DriveMode QCameraImageCapture::DriveMode commendable public [0xc8221fe440]} +&{Error QCameraImageCapture::Error commendable public [0xc8221fe6a0 0xc8221fe760 0xc8221fe7e0 0xc8221fe860 0xc8221fe920 0xc8221fe9e0]} diff --git a/internal/binding/dump/QtMultimedia/QCameraImageCaptureControl.txt b/internal/binding/dump/QtMultimedia/QCameraImageCaptureControl.txt new file mode 100755 index 00000000..87b93bfb --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QCameraImageCaptureControl.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{QCameraImageCaptureControl QCameraImageCaptureControl::QCameraImageCaptureControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraimagecapturecontrol.h non constructor false false [0xc821cd8180] } +&{cancelCapture QCameraImageCaptureControl::cancelCapture commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraimagecapturecontrol.h pure plain false false void [] } +&{capture QCameraImageCaptureControl::capture commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraimagecapturecontrol.h pure plain false false int [0xc821cd8680] } +&{driveMode QCameraImageCaptureControl::driveMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraimagecapturecontrol.h pure plain false false QCameraImageCapture::DriveMode [] } +&{error QCameraImageCaptureControl::error commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraimagecapturecontrol.h non signal false false void [0xc821cd8c80 0xc821cd8de0 0xc821cd8ee0] } +&{imageAvailable QCameraImageCaptureControl::imageAvailable commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraimagecapturecontrol.h non signal false false void [0xc821cd9220 0xc821cd93a0] } +&{imageCaptured QCameraImageCaptureControl::imageCaptured commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraimagecapturecontrol.h non signal false false void [0xc821cd9740 0xc821cd9880] } +&{imageExposed QCameraImageCaptureControl::imageExposed commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraimagecapturecontrol.h non signal false false void [0xc821cd9c20] } +&{imageMetadataAvailable QCameraImageCaptureControl::imageMetadataAvailable commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraimagecapturecontrol.h non signal false false void [0xc821cc6020 0xc821cc6120 0xc821cc61c0] } +&{imageSaved QCameraImageCaptureControl::imageSaved commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraimagecapturecontrol.h non signal false false void [0xc821cc64c0 0xc821cc65e0] } +&{isReadyForCapture QCameraImageCaptureControl::isReadyForCapture commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraimagecapturecontrol.h pure plain false false bool [] } +&{readyForCaptureChanged QCameraImageCaptureControl::readyForCaptureChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraimagecapturecontrol.h non signal false false void [0xc821cc6b60] } +&{setDriveMode QCameraImageCaptureControl::setDriveMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraimagecapturecontrol.h pure plain false false void [0xc821cc6dc0] } +&{~QCameraImageCaptureControl QCameraImageCaptureControl::~QCameraImageCaptureControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraimagecapturecontrol.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QCameraImageProcessing.txt b/internal/binding/dump/QtMultimedia/QCameraImageProcessing.txt new file mode 100755 index 00000000..60ef1fae --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QCameraImageProcessing.txt @@ -0,0 +1,21 @@ +######################################## FUNCTIONS ######################################## +&{colorFilter QCameraImageProcessing::colorFilter commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimageprocessing.h non plain false false ColorFilter [] } +&{contrast QCameraImageProcessing::contrast commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimageprocessing.h non plain false false qreal [] } +&{denoisingLevel QCameraImageProcessing::denoisingLevel commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimageprocessing.h non plain false false qreal [] } +&{isAvailable QCameraImageProcessing::isAvailable commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimageprocessing.h non plain false false bool [] } +&{isColorFilterSupported QCameraImageProcessing::isColorFilterSupported commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimageprocessing.h non plain false false bool [0xc8225d95c0] } +&{isWhiteBalanceModeSupported QCameraImageProcessing::isWhiteBalanceModeSupported commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimageprocessing.h non plain false false bool [0xc8225d9880] } +&{manualWhiteBalance QCameraImageProcessing::manualWhiteBalance commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimageprocessing.h non plain false false qreal [] } +&{saturation QCameraImageProcessing::saturation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimageprocessing.h non plain false false qreal [] } +&{setColorFilter QCameraImageProcessing::setColorFilter commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimageprocessing.h non plain false false void [0xc8225d9f20] } +&{setContrast QCameraImageProcessing::setContrast commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimageprocessing.h non plain false false void [0xc8225f82c0] } +&{setDenoisingLevel QCameraImageProcessing::setDenoisingLevel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimageprocessing.h non plain false false void [0xc8225f85e0] } +&{setManualWhiteBalance QCameraImageProcessing::setManualWhiteBalance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimageprocessing.h non plain false false void [0xc8225f8960] } +&{setSaturation QCameraImageProcessing::setSaturation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimageprocessing.h non plain false false void [0xc8225f8c80] } +&{setSharpeningLevel QCameraImageProcessing::setSharpeningLevel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimageprocessing.h non plain false false void [0xc8225f8fc0] } +&{setWhiteBalanceMode QCameraImageProcessing::setWhiteBalanceMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimageprocessing.h non plain false false void [0xc8225f9300] } +&{sharpeningLevel QCameraImageProcessing::sharpeningLevel commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimageprocessing.h non plain false false qreal [] } +&{whiteBalanceMode QCameraImageProcessing::whiteBalanceMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraimageprocessing.h non plain false false WhiteBalanceMode [] } +######################################## ENUMS ######################################## +&{ColorFilter QCameraImageProcessing::ColorFilter commendable public [0xc8225caac0 0xc8225cac00 0xc8225cad60 0xc8225caec0 0xc8225cb020 0xc8225cb160 0xc8225cb2c0 0xc8225cb480 0xc8225cb600 0xc8225cb740]} +&{WhiteBalanceMode QCameraImageProcessing::WhiteBalanceMode commendable public [0xc8225cba60 0xc8225cbb40 0xc8225cbd00 0xc8225cbe80 0xc8225d80c0 0xc8225d8200 0xc8225d8360 0xc8225d84e0 0xc8225d86a0 0xc8225d8820]} diff --git a/internal/binding/dump/QtMultimedia/QCameraImageProcessingControl.txt b/internal/binding/dump/QtMultimedia/QCameraImageProcessingControl.txt new file mode 100755 index 00000000..4912093b --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QCameraImageProcessingControl.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QCameraImageProcessingControl QCameraImageProcessingControl::QCameraImageProcessingControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraimageprocessingcontrol.h non constructor false false [0xc821cb2f00] } +&{isParameterSupported QCameraImageProcessingControl::isParameterSupported commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraimageprocessingcontrol.h pure plain false false bool [0xc821cb32e0] } +&{isParameterValueSupported QCameraImageProcessingControl::isParameterValueSupported commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraimageprocessingcontrol.h pure plain false false bool [0xc821cb36c0 0xc821cb3820] } +&{parameter QCameraImageProcessingControl::parameter commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraimageprocessingcontrol.h pure plain false false QVariant [0xc821cb3ac0] } +&{setParameter QCameraImageProcessingControl::setParameter commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraimageprocessingcontrol.h pure plain false false void [0xc821cb3ec0 0xc821c900e0] } +&{~QCameraImageProcessingControl QCameraImageProcessingControl::~QCameraImageProcessingControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraimageprocessingcontrol.h non destructor false false [] } +######################################## ENUMS ######################################## +&{ProcessingParameter QCameraImageProcessingControl::ProcessingParameter commendable public [0xc821cc78c0 0xc821cc7a40 0xc821cc7bc0 0xc821cc7c60 0xc821cc7e20 0xc821cc7ea0 0xc821cc7f60 0xc821cb20e0 0xc821cb22a0 0xc821cb2480 0xc821cb26a0 0xc821cb27c0 0xc821cb29c0 0xc821cb2ae0]} diff --git a/internal/binding/dump/QtMultimedia/QCameraInfo.txt b/internal/binding/dump/QtMultimedia/QCameraInfo.txt new file mode 100755 index 00000000..35cd4f7f --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QCameraInfo.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{QCameraInfo QCameraInfo::QCameraInfo commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerainfo.h non constructor false false [0xc8225f9da0] } +&{QCameraInfo QCameraInfo::QCameraInfo commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerainfo.h non constructor false true 2 [0xc822606140] } +&{QCameraInfo QCameraInfo::QCameraInfo commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerainfo.h non constructor false true 3 [0xc8226064e0] } +&{availableCameras QCameraInfo::availableCameras commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerainfo.h non plain true false QList [0xc8226069c0] } +&{defaultCamera QCameraInfo::defaultCamera commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerainfo.h non plain true false QCameraInfo [] } +&{description QCameraInfo::description commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerainfo.h non plain false false QString [] } +&{deviceName QCameraInfo::deviceName commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerainfo.h non plain false false QString [] } +&{isNull QCameraInfo::isNull commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerainfo.h non plain false false bool [] } +&{operator!= QCameraInfo::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerainfo.h non plain false false bool [0xc822607600] } +&{operator= QCameraInfo::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerainfo.h non plain false false QCameraInfo & [0xc822607980] } +&{operator== QCameraInfo::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerainfo.h non plain false false bool [0xc822607d60] } +&{orientation QCameraInfo::orientation commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerainfo.h non plain false false int [] } +&{position QCameraInfo::position commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerainfo.h non plain false false QCamera::Position [] } +&{~QCameraInfo QCameraInfo::~QCameraInfo commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcamerainfo.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QCameraInfoControl.txt b/internal/binding/dump/QtMultimedia/QCameraInfoControl.txt new file mode 100755 index 00000000..b53c4eb3 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QCameraInfoControl.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QCameraInfoControl QCameraInfoControl::QCameraInfoControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerainfocontrol.h non constructor false false [0xc821c90c20] } +&{cameraOrientation QCameraInfoControl::cameraOrientation commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerainfocontrol.h pure plain false false int [0xc821c90f40] } +&{cameraPosition QCameraInfoControl::cameraPosition commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerainfocontrol.h pure plain false false QCamera::Position [0xc821c91340] } +&{~QCameraInfoControl QCameraInfoControl::~QCameraInfoControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerainfocontrol.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QCameraLocksControl.txt b/internal/binding/dump/QtMultimedia/QCameraLocksControl.txt new file mode 100755 index 00000000..10aadeae --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QCameraLocksControl.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QCameraLocksControl QCameraLocksControl::QCameraLocksControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameralockscontrol.h non constructor false false [0xc821c91d20] } +&{lockStatus QCameraLocksControl::lockStatus commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameralockscontrol.h pure plain false false QCamera::LockStatus [0xc821c6a260] } +&{lockStatusChanged QCameraLocksControl::lockStatusChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameralockscontrol.h non signal false false void [0xc821c6a640 0xc821c6a840 0xc821c6a9e0] } +&{searchAndLock QCameraLocksControl::searchAndLock commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameralockscontrol.h pure plain false false void [0xc821c6ad80] } +&{supportedLocks QCameraLocksControl::supportedLocks commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameralockscontrol.h pure plain false false QCamera::LockTypes [] } +&{unlock QCameraLocksControl::unlock commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameralockscontrol.h pure plain false false void [0xc821c6b3e0] } +&{~QCameraLocksControl QCameraLocksControl::~QCameraLocksControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameralockscontrol.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QCameraViewfinderSettings.txt b/internal/binding/dump/QtMultimedia/QCameraViewfinderSettings.txt new file mode 100755 index 00000000..f27e7e2d --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QCameraViewfinderSettings.txt @@ -0,0 +1,21 @@ +######################################## FUNCTIONS ######################################## +&{QCameraViewfinderSettings QCameraViewfinderSettings::QCameraViewfinderSettings commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraviewfindersettings.h non constructor false false [] } +&{QCameraViewfinderSettings QCameraViewfinderSettings::QCameraViewfinderSettings commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraviewfindersettings.h non constructor false true 2 [0xc822624d60] } +&{isNull QCameraViewfinderSettings::isNull commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraviewfindersettings.h non plain false false bool [] } +&{maximumFrameRate QCameraViewfinderSettings::maximumFrameRate commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraviewfindersettings.h non plain false false qreal [] } +&{minimumFrameRate QCameraViewfinderSettings::minimumFrameRate commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraviewfindersettings.h non plain false false qreal [] } +&{operator= QCameraViewfinderSettings::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraviewfindersettings.h non plain false true 2 QCameraViewfinderSettings & [0xc822625540] } +&{operator= QCameraViewfinderSettings::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraviewfindersettings.h non plain false false QCameraViewfinderSettings & [0xc822625900] } +&{pixelAspectRatio QCameraViewfinderSettings::pixelAspectRatio commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraviewfindersettings.h non plain false false QSize [] } +&{pixelFormat QCameraViewfinderSettings::pixelFormat commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraviewfindersettings.h non plain false false QVideoFrame::PixelFormat [] } +&{resolution QCameraViewfinderSettings::resolution commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraviewfindersettings.h non plain false false QSize [] } +&{setMaximumFrameRate QCameraViewfinderSettings::setMaximumFrameRate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraviewfindersettings.h non plain false false void [0xc822636300] } +&{setMinimumFrameRate QCameraViewfinderSettings::setMinimumFrameRate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraviewfindersettings.h non plain false false void [0xc822636780] } +&{setPixelAspectRatio QCameraViewfinderSettings::setPixelAspectRatio commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraviewfindersettings.h non plain false false void [0xc822636c80] } +&{setPixelAspectRatio QCameraViewfinderSettings::setPixelAspectRatio commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraviewfindersettings.h non plain false true 2 void [0xc822637180 0xc8226372c0] } +&{setPixelFormat QCameraViewfinderSettings::setPixelFormat commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraviewfindersettings.h non plain false false void [0xc822637740] } +&{setResolution QCameraViewfinderSettings::setResolution commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraviewfindersettings.h non plain false false void [0xc822637be0] } +&{setResolution QCameraViewfinderSettings::setResolution commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraviewfindersettings.h non plain false true 2 void [0xc822637ee0 0xc822648040] } +&{swap QCameraViewfinderSettings::swap commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraviewfindersettings.h non plain false false void [0xc8226483e0] } +&{~QCameraViewfinderSettings QCameraViewfinderSettings::~QCameraViewfinderSettings commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/camera/qcameraviewfindersettings.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QCameraViewfinderSettingsControl.txt b/internal/binding/dump/QtMultimedia/QCameraViewfinderSettingsControl.txt new file mode 100755 index 00000000..d6b4a111 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QCameraViewfinderSettingsControl.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{QCameraViewfinderSettingsControl QCameraViewfinderSettingsControl::QCameraViewfinderSettingsControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraviewfindersettingscontrol.h non constructor false false [0xc821c3ebe0] } +&{isViewfinderParameterSupported QCameraViewfinderSettingsControl::isViewfinderParameterSupported commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraviewfindersettingscontrol.h pure plain false false bool [0xc821c3f1a0] } +&{setViewfinderParameter QCameraViewfinderSettingsControl::setViewfinderParameter commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraviewfindersettingscontrol.h pure plain false false void [0xc821c3f820 0xc821c3fa40] } +&{viewfinderParameter QCameraViewfinderSettingsControl::viewfinderParameter commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraviewfindersettingscontrol.h pure plain false false QVariant [0xc821c3ffc0] } +&{~QCameraViewfinderSettingsControl QCameraViewfinderSettingsControl::~QCameraViewfinderSettingsControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraviewfindersettingscontrol.h non destructor false false [] } +######################################## ENUMS ######################################## +&{ViewfinderParameter QCameraViewfinderSettingsControl::ViewfinderParameter commendable public [0xc821c6be80 0xc821c6bfe0 0xc821c3e160 0xc821c3e320 0xc821c3e460 0xc821c3e640]} diff --git a/internal/binding/dump/QtMultimedia/QCameraViewfinderSettingsControl2.txt b/internal/binding/dump/QtMultimedia/QCameraViewfinderSettingsControl2.txt new file mode 100755 index 00000000..1fc4046b --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QCameraViewfinderSettingsControl2.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{QCameraViewfinderSettingsControl2 QCameraViewfinderSettingsControl2::QCameraViewfinderSettingsControl2 commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraviewfindersettingscontrol.h non constructor false false [0xc821c16600] } +&{setViewfinderSettings QCameraViewfinderSettingsControl2::setViewfinderSettings commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraviewfindersettingscontrol.h pure plain false false void [0xc821c16960] } +&{supportedViewfinderSettings QCameraViewfinderSettingsControl2::supportedViewfinderSettings commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraviewfindersettingscontrol.h pure plain false false QList [] } +&{viewfinderSettings QCameraViewfinderSettingsControl2::viewfinderSettings commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraviewfindersettingscontrol.h pure plain false false QCameraViewfinderSettings [] } +&{~QCameraViewfinderSettingsControl2 QCameraViewfinderSettingsControl2::~QCameraViewfinderSettingsControl2 commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcameraviewfindersettingscontrol.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QCameraZoomControl.txt b/internal/binding/dump/QtMultimedia/QCameraZoomControl.txt new file mode 100755 index 00000000..60e0c05a --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QCameraZoomControl.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{QCameraZoomControl QCameraZoomControl::QCameraZoomControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerazoomcontrol.h non constructor false false [0xc821c177a0] } +&{currentDigitalZoom QCameraZoomControl::currentDigitalZoom commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerazoomcontrol.h pure plain false false qreal [] } +&{currentDigitalZoomChanged QCameraZoomControl::currentDigitalZoomChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerazoomcontrol.h non signal false false void [0xc821c17cc0] } +&{currentOpticalZoom QCameraZoomControl::currentOpticalZoom commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerazoomcontrol.h pure plain false false qreal [] } +&{currentOpticalZoomChanged QCameraZoomControl::currentOpticalZoomChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerazoomcontrol.h non signal false false void [0xc821bf2280] } +&{maximumDigitalZoom QCameraZoomControl::maximumDigitalZoom commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerazoomcontrol.h pure plain false false qreal [] } +&{maximumDigitalZoomChanged QCameraZoomControl::maximumDigitalZoomChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerazoomcontrol.h non signal false false void [0xc821bf27e0] } +&{maximumOpticalZoom QCameraZoomControl::maximumOpticalZoom commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerazoomcontrol.h pure plain false false qreal [] } +&{maximumOpticalZoomChanged QCameraZoomControl::maximumOpticalZoomChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerazoomcontrol.h non signal false false void [0xc821bf2de0] } +&{requestedDigitalZoom QCameraZoomControl::requestedDigitalZoom commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerazoomcontrol.h pure plain false false qreal [] } +&{requestedDigitalZoomChanged QCameraZoomControl::requestedDigitalZoomChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerazoomcontrol.h non signal false false void [0xc821bf3380] } +&{requestedOpticalZoom QCameraZoomControl::requestedOpticalZoom commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerazoomcontrol.h pure plain false false qreal [] } +&{requestedOpticalZoomChanged QCameraZoomControl::requestedOpticalZoomChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerazoomcontrol.h non signal false false void [0xc821bf3900] } +&{zoomTo QCameraZoomControl::zoomTo commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerazoomcontrol.h pure plain false false void [0xc821bf3cc0 0xc821bf3de0] } +&{~QCameraZoomControl QCameraZoomControl::~QCameraZoomControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qcamerazoomcontrol.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QImageEncoderControl.txt b/internal/binding/dump/QtMultimedia/QImageEncoderControl.txt new file mode 100755 index 00000000..b60d4d2c --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QImageEncoderControl.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QImageEncoderControl QImageEncoderControl::QImageEncoderControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qimageencodercontrol.h non constructor false false [0xc821be08e0] } +&{imageCodecDescription QImageEncoderControl::imageCodecDescription commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qimageencodercontrol.h pure plain false false QString [0xc821be0c80] } +&{imageSettings QImageEncoderControl::imageSettings commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qimageencodercontrol.h pure plain false false QImageEncoderSettings [] } +&{setImageSettings QImageEncoderControl::setImageSettings commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qimageencodercontrol.h pure plain false false void [0xc821be1140] } +&{supportedImageCodecs QImageEncoderControl::supportedImageCodecs commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qimageencodercontrol.h pure plain false false QStringList [] } +&{supportedResolutions QImageEncoderControl::supportedResolutions commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qimageencodercontrol.h pure plain false false QList [0xc821be1760 0xc821be1940] } +&{~QImageEncoderControl QImageEncoderControl::~QImageEncoderControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qimageencodercontrol.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QImageEncoderSettings.txt b/internal/binding/dump/QtMultimedia/QImageEncoderSettings.txt new file mode 100755 index 00000000..b1d358f7 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QImageEncoderSettings.txt @@ -0,0 +1,20 @@ +######################################## FUNCTIONS ######################################## +&{QImageEncoderSettings QImageEncoderSettings::QImageEncoderSettings commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non constructor false false [] } +&{QImageEncoderSettings QImageEncoderSettings::QImageEncoderSettings commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non constructor false true 2 [0xc8217e34e0] } +&{codec QImageEncoderSettings::codec commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false QString [] } +&{encodingOption QImageEncoderSettings::encodingOption commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false QVariant [0xc8217e3a20] } +&{encodingOptions QImageEncoderSettings::encodingOptions commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false QVariantMap [] } +&{isNull QImageEncoderSettings::isNull commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false bool [] } +&{operator!= QImageEncoderSettings::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false bool [0xc8217d2100] } +&{operator= QImageEncoderSettings::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false QImageEncoderSettings & [0xc8217d2580] } +&{operator== QImageEncoderSettings::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false bool [0xc8217d2900] } +&{quality QImageEncoderSettings::quality commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false QMultimedia::EncodingQuality [] } +&{resolution QImageEncoderSettings::resolution commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false QSize [] } +&{setCodec QImageEncoderSettings::setCodec commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false void [0xc8217d30a0] } +&{setEncodingOption QImageEncoderSettings::setEncodingOption commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false void [0xc8217d33e0 0xc8217d3500] } +&{setEncodingOptions QImageEncoderSettings::setEncodingOptions commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false void [0xc8217d38a0] } +&{setQuality QImageEncoderSettings::setQuality commendable unsupported_cppEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false void [0xc821834100] } +&{setResolution QImageEncoderSettings::setResolution commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false void [0xc821834380] } +&{setResolution QImageEncoderSettings::setResolution commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false true 2 void [0xc821834620 0xc8218346a0] } +&{~QImageEncoderSettings QImageEncoderSettings::~QImageEncoderSettings commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QMediaAudioProbeControl.txt b/internal/binding/dump/QtMultimedia/QMediaAudioProbeControl.txt new file mode 100755 index 00000000..17fb1c9d --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMediaAudioProbeControl.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QMediaAudioProbeControl QMediaAudioProbeControl::QMediaAudioProbeControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaaudioprobecontrol.h non constructor false false [0xc821bd0340] } +&{audioBufferProbed QMediaAudioProbeControl::audioBufferProbed commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaaudioprobecontrol.h non signal false false void [0xc821bd0740] } +&{flush QMediaAudioProbeControl::flush commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaaudioprobecontrol.h non signal false false void [] } +&{~QMediaAudioProbeControl QMediaAudioProbeControl::~QMediaAudioProbeControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaaudioprobecontrol.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QMediaAvailabilityControl.txt b/internal/binding/dump/QtMultimedia/QMediaAvailabilityControl.txt new file mode 100755 index 00000000..9b5764f1 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMediaAvailabilityControl.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QMediaAvailabilityControl QMediaAvailabilityControl::QMediaAvailabilityControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaavailabilitycontrol.h non constructor false false [0xc821bd13e0] } +&{availability QMediaAvailabilityControl::availability commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaavailabilitycontrol.h pure plain false false QMultimedia::AvailabilityStatus [] } +&{availabilityChanged QMediaAvailabilityControl::availabilityChanged commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaavailabilitycontrol.h non signal false false void [0xc821bd1960] } +&{~QMediaAvailabilityControl QMediaAvailabilityControl::~QMediaAvailabilityControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaavailabilitycontrol.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QMediaBindableInterface.txt b/internal/binding/dump/QtMultimedia/QMediaBindableInterface.txt new file mode 100755 index 00000000..02b63911 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMediaBindableInterface.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{mediaObject QMediaBindableInterface::mediaObject commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediabindableinterface.h pure plain false false QMediaObject * [] } +&{setMediaObject QMediaBindableInterface::setMediaObject commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediabindableinterface.h pure plain false false bool [0xc82198ae60] } +&{~QMediaBindableInterface QMediaBindableInterface::~QMediaBindableInterface commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediabindableinterface.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QMediaContainerControl.txt b/internal/binding/dump/QtMultimedia/QMediaContainerControl.txt new file mode 100755 index 00000000..0c736187 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMediaContainerControl.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{QMediaContainerControl QMediaContainerControl::QMediaContainerControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediacontainercontrol.h non constructor false false [0xc821bcc200] } +&{containerDescription QMediaContainerControl::containerDescription commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediacontainercontrol.h pure plain false false QString [0xc821bcc3c0] } +&{containerFormat QMediaContainerControl::containerFormat commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediacontainercontrol.h pure plain false false QString [] } +&{setContainerFormat QMediaContainerControl::setContainerFormat commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediacontainercontrol.h pure plain false false void [0xc821bcc620] } +&{supportedContainers QMediaContainerControl::supportedContainers commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediacontainercontrol.h pure plain false false QStringList [] } +&{~QMediaContainerControl QMediaContainerControl::~QMediaContainerControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediacontainercontrol.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QMediaContent.txt b/internal/binding/dump/QtMultimedia/QMediaContent.txt new file mode 100755 index 00000000..7d18a904 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMediaContent.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{QMediaContent QMediaContent::QMediaContent commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediacontent.h non constructor false false [] } +&{QMediaContent QMediaContent::QMediaContent commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediacontent.h non constructor false true 7 [0xc821a42be0 0xc821a42c60 0xc821a42ce0] } +&{QMediaContent QMediaContent::QMediaContent commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediacontent.h non constructor false true 6 [0xc821a42ea0] } +&{QMediaContent QMediaContent::QMediaContent commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediacontent.h non constructor false true 4 [0xc821a430a0] } +&{QMediaContent QMediaContent::QMediaContent commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediacontent.h non constructor false true 5 [0xc821a432c0] } +&{QMediaContent QMediaContent::QMediaContent commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediacontent.h non constructor false true 3 [0xc821a434c0] } +&{QMediaContent QMediaContent::QMediaContent commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediacontent.h non constructor false true 2 [0xc821a436c0] } +&{canonicalRequest QMediaContent::canonicalRequest commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediacontent.h non plain false false QNetworkRequest [] } +&{canonicalResource QMediaContent::canonicalResource commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediacontent.h non plain false false QMediaResource [] } +&{canonicalUrl QMediaContent::canonicalUrl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediacontent.h non plain false false QUrl [] } +&{isNull QMediaContent::isNull commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediacontent.h non plain false false bool [] } +&{operator!= QMediaContent::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediacontent.h non plain false false bool [0xc821a43c80] } +&{operator= QMediaContent::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediacontent.h non plain false false QMediaContent & [0xc821a43ea0] } +&{operator== QMediaContent::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediacontent.h non plain false false bool [0xc821a32140] } +&{playlist QMediaContent::playlist commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediacontent.h non plain false false QMediaPlaylist * [] } +&{resources QMediaContent::resources commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediacontent.h non plain false false QMediaResourceList [] } +&{~QMediaContent QMediaContent::~QMediaContent commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediacontent.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QMediaControl.txt b/internal/binding/dump/QtMultimedia/QMediaControl.txt new file mode 100755 index 00000000..2ccde2f4 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMediaControl.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{QMediaControl QMediaControl::QMediaControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediacontrol.h non constructor false false [0xc82198b9c0] } +&{~QMediaControl QMediaControl::~QMediaControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediacontrol.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QMediaGaplessPlaybackControl.txt b/internal/binding/dump/QtMultimedia/QMediaGaplessPlaybackControl.txt new file mode 100755 index 00000000..c1280389 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMediaGaplessPlaybackControl.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{QMediaGaplessPlaybackControl QMediaGaplessPlaybackControl::QMediaGaplessPlaybackControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediagaplessplaybackcontrol.h non constructor false false [0xc821bccc80] } +&{advancedToNextMedia QMediaGaplessPlaybackControl::advancedToNextMedia commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediagaplessplaybackcontrol.h non signal false false void [] } +&{crossfadeTime QMediaGaplessPlaybackControl::crossfadeTime commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediagaplessplaybackcontrol.h pure plain false false qreal [] } +&{crossfadeTimeChanged QMediaGaplessPlaybackControl::crossfadeTimeChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediagaplessplaybackcontrol.h non signal false false void [0xc821bcd0a0] } +&{isCrossfadeSupported QMediaGaplessPlaybackControl::isCrossfadeSupported commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediagaplessplaybackcontrol.h pure plain false false bool [] } +&{nextMedia QMediaGaplessPlaybackControl::nextMedia commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediagaplessplaybackcontrol.h pure plain false false QMediaContent [] } +&{nextMediaChanged QMediaGaplessPlaybackControl::nextMediaChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediagaplessplaybackcontrol.h non signal false false void [0xc821bcd3e0] } +&{setCrossfadeTime QMediaGaplessPlaybackControl::setCrossfadeTime commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediagaplessplaybackcontrol.h pure plain false false void [0xc821bcd5a0] } +&{setNextMedia QMediaGaplessPlaybackControl::setNextMedia commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediagaplessplaybackcontrol.h pure plain false false void [0xc821bcd7e0] } +&{~QMediaGaplessPlaybackControl QMediaGaplessPlaybackControl::~QMediaGaplessPlaybackControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediagaplessplaybackcontrol.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QMediaNetworkAccessControl.txt b/internal/binding/dump/QtMultimedia/QMediaNetworkAccessControl.txt new file mode 100755 index 00000000..6ae10727 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMediaNetworkAccessControl.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{configurationChanged QMediaNetworkAccessControl::configurationChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmedianetworkaccesscontrol.h non signal false false void [0xc821bbe040] } +&{currentConfiguration QMediaNetworkAccessControl::currentConfiguration commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmedianetworkaccesscontrol.h pure plain false false QNetworkConfiguration [] } +&{setConfigurations QMediaNetworkAccessControl::setConfigurations commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmedianetworkaccesscontrol.h pure plain false false void [0xc821bbe820] } +&{~QMediaNetworkAccessControl QMediaNetworkAccessControl::~QMediaNetworkAccessControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmedianetworkaccesscontrol.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QMediaObject.txt b/internal/binding/dump/QtMultimedia/QMediaObject.txt new file mode 100755 index 00000000..ec8b87dd --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMediaObject.txt @@ -0,0 +1,22 @@ +######################################## FUNCTIONS ######################################## +&{notifyInterval QMediaObject::notifyInterval commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaobject.cpp non plain false false int [] } +&{setNotifyInterval QMediaObject::setNotifyInterval commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaobject.cpp non plain false false void [0xc8219564c0] } +&{QMediaObject QMediaObject::QMediaObject commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaobject.h non constructor false false [0xc8219567e0 0xc821956900] } +&{addPropertyWatch QMediaObject::addPropertyWatch commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaobject.h non plain false false void [0xc8219578c0] } +&{availability QMediaObject::availability commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaobject.h impure plain false false QMultimedia::AvailabilityStatus [] } +&{availabilityChanged QMediaObject::availabilityChanged commendable unsupported_cppEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaobject.h non signal false true 2 void [0xc821957f00] } +&{availabilityChanged QMediaObject::availabilityChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaobject.h non signal false false void [0xc821936280] } +&{availableMetaData QMediaObject::availableMetaData commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaobject.h non plain false false QStringList [] } +&{bind QMediaObject::bind commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaobject.h impure plain false false bool [0xc821936900] } +&{isAvailable QMediaObject::isAvailable commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaobject.h impure plain false false bool [] } +&{isMetaDataAvailable QMediaObject::isMetaDataAvailable commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaobject.h non plain false false bool [] } +&{metaData QMediaObject::metaData commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaobject.h non plain false false QVariant [0xc821936f80] } +&{metaDataAvailableChanged QMediaObject::metaDataAvailableChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaobject.h non signal false false void [0xc821937340] } +&{metaDataChanged QMediaObject::metaDataChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaobject.h non signal false false void [] } +&{metaDataChanged QMediaObject::metaDataChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaobject.h non signal false true 2 void [0xc8219377e0 0xc821937920] } +&{notifyIntervalChanged QMediaObject::notifyIntervalChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaobject.h non signal false false void [0xc821937cc0] } +&{removePropertyWatch QMediaObject::removePropertyWatch commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaobject.h non plain false false void [0xc821937fe0] } +&{service QMediaObject::service commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaobject.h impure plain false false QMediaService * [] } +&{unbind QMediaObject::unbind commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaobject.h impure plain false false void [0xc821916660] } +&{~QMediaObject QMediaObject::~QMediaObject commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaobject.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QMediaPlayer.txt b/internal/binding/dump/QtMultimedia/QMediaPlayer.txt new file mode 100755 index 00000000..8e08e74e --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMediaPlayer.txt @@ -0,0 +1,56 @@ +######################################## FUNCTIONS ######################################## +&{bufferStatus QMediaPlayer::bufferStatus commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.cpp non plain false false int [] } +&{currentMedia QMediaPlayer::currentMedia commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.cpp non plain false false QMediaContent [] } +&{duration QMediaPlayer::duration commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.cpp non plain false false qint64 [] } +&{errorString QMediaPlayer::errorString commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.cpp non plain false false QString [] } +&{isAudioAvailable QMediaPlayer::isAudioAvailable commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.cpp non plain false false bool [] } +&{isMuted QMediaPlayer::isMuted commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.cpp non plain false false bool [] } +&{isSeekable QMediaPlayer::isSeekable commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.cpp non plain false false bool [] } +&{isVideoAvailable QMediaPlayer::isVideoAvailable commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.cpp non plain false false bool [] } +&{media QMediaPlayer::media commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.cpp non plain false false QMediaContent [] } +&{mediaStatus QMediaPlayer::mediaStatus commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.cpp non plain false false MediaStatus [] } +&{playbackRate QMediaPlayer::playbackRate commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.cpp non plain false false qreal [] } +&{playlist QMediaPlayer::playlist commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.cpp non plain false false QMediaPlaylist * [] } +&{position QMediaPlayer::position commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.cpp non plain false false qint64 [] } +&{setMuted QMediaPlayer::setMuted commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.cpp non slot false false void [0xc821a1e900] } +&{setPlaybackRate QMediaPlayer::setPlaybackRate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.cpp non slot false false void [0xc821a1ecc0] } +&{setPlaylist QMediaPlayer::setPlaylist commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.cpp non slot false false void [0xc821a1f0c0] } +&{setPosition QMediaPlayer::setPosition commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.cpp non slot false false void [0xc821a1f440] } +&{setVideoOutput QMediaPlayer::setVideoOutput commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.cpp non plain false true 2 void [0xc821a1f820] } +&{setVideoOutput QMediaPlayer::setVideoOutput commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.cpp non plain false false void [0xc821a1fc00] } +&{setVolume QMediaPlayer::setVolume commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.cpp non slot false false void [0xc821a0e040] } +&{state QMediaPlayer::state commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.cpp non plain false false State [] } +&{volume QMediaPlayer::volume commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.cpp non plain false false int [] } +&{QMediaPlayer QMediaPlayer::QMediaPlayer commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h non constructor false false [0xc821a0aa00 0xc821a0aa80] } +&{audioAvailableChanged QMediaPlayer::audioAvailableChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h non signal false false void [0xc821a0ae20] } +&{availability QMediaPlayer::availability commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h impure plain false false QMultimedia::AvailabilityStatus [] } +&{bufferStatusChanged QMediaPlayer::bufferStatusChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h non signal false false void [0xc821a0b300] } +&{currentMediaChanged QMediaPlayer::currentMediaChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h non signal false false void [0xc821a0b4e0] } +&{currentNetworkConfiguration QMediaPlayer::currentNetworkConfiguration commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h non plain false false QNetworkConfiguration [] } +&{durationChanged QMediaPlayer::durationChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h non signal false false void [0xc821a0b820] } +&{error QMediaPlayer::error commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h non signal false true 2 void [0xc821a0ba00] } +&{error QMediaPlayer::error commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h non plain false false Error [] } +&{hasSupport QMediaPlayer::hasSupport commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h non plain true false QMultimedia::SupportEstimate [0xc821a0bd80 0xc821a0be20 0xc821a0bf20] } +&{mediaChanged QMediaPlayer::mediaChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h non signal false false void [0xc8219fc340] } +&{mediaStatusChanged QMediaPlayer::mediaStatusChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h non signal false false void [0xc8219fc800] } +&{mediaStream QMediaPlayer::mediaStream commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h non plain false false const QIODevice * [] } +&{mutedChanged QMediaPlayer::mutedChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h non signal false false void [0xc8219fcea0] } +&{networkConfigurationChanged QMediaPlayer::networkConfigurationChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h non signal false false void [0xc8219fd260] } +&{pause QMediaPlayer::pause commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h non slot false false void [] } +&{play QMediaPlayer::play commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h non slot false false void [] } +&{playbackRateChanged QMediaPlayer::playbackRateChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h non signal false false void [0xc8219fd940] } +&{positionChanged QMediaPlayer::positionChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h non signal false false void [0xc8219fdce0] } +&{seekableChanged QMediaPlayer::seekableChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h non signal false false void [0xc8219f2020] } +&{setMedia QMediaPlayer::setMedia commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h non slot false false void [0xc8219f2280 0xc8219f2340] } +&{setNetworkConfigurations QMediaPlayer::setNetworkConfigurations commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h non slot false false void [0xc8219f2520] } +&{setVideoOutput QMediaPlayer::setVideoOutput commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h non plain false true 3 void [0xc8219f26e0] } +&{stateChanged QMediaPlayer::stateChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h non signal false false void [0xc8219f2920] } +&{stop QMediaPlayer::stop commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h non slot false false void [] } +&{videoAvailableChanged QMediaPlayer::videoAvailableChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h non signal false false void [0xc8219f3080] } +&{volumeChanged QMediaPlayer::volumeChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h non signal false false void [0xc8219f3300] } +&{~QMediaPlayer QMediaPlayer::~QMediaPlayer commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplayer.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Error QMediaPlayer::Error commendable public [0xc821a0ea40 0xc821a0eb20 0xc821a0ecc0 0xc821a0ee40 0xc821a0efa0 0xc821a0f200 0xc821a0f460]} +&{Flag QMediaPlayer::Flag commendable public QMediaPlayer::Flags [0xc821a0f9e0 0xc821a0fb40 0xc821a0fc80]} +&{MediaStatus QMediaPlayer::MediaStatus commendable public [0xc821a0a040 0xc821a0a100 0xc821a0a180 0xc821a0a200 0xc821a0a2a0 0xc821a0a320 0xc821a0a3a0 0xc821a0a420 0xc821a0a4c0]} +&{State QMediaPlayer::State commendable public [0xc821a0a680 0xc821a0a700 0xc821a0a780]} diff --git a/internal/binding/dump/QtMultimedia/QMediaPlayerControl.txt b/internal/binding/dump/QtMultimedia/QMediaPlayerControl.txt new file mode 100755 index 00000000..0f39998c --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMediaPlayerControl.txt @@ -0,0 +1,40 @@ +######################################## FUNCTIONS ######################################## +&{QMediaPlayerControl QMediaPlayerControl::QMediaPlayerControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h non constructor false false [0xc821bbf540] } +&{audioAvailableChanged QMediaPlayerControl::audioAvailableChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h non signal false false void [0xc821bbf940] } +&{availablePlaybackRanges QMediaPlayerControl::availablePlaybackRanges commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h pure plain false false QMediaTimeRange [] } +&{availablePlaybackRangesChanged QMediaPlayerControl::availablePlaybackRangesChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h non signal false false void [0xc821bae040] } +&{bufferStatus QMediaPlayerControl::bufferStatus commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h pure plain false false int [] } +&{bufferStatusChanged QMediaPlayerControl::bufferStatusChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h non signal false false void [0xc821bae400] } +&{duration QMediaPlayerControl::duration commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h pure plain false false qint64 [] } +&{durationChanged QMediaPlayerControl::durationChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h non signal false false void [0xc821bae720] } +&{error QMediaPlayerControl::error commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h non signal false false void [0xc821bae960 0xc821bae9e0] } +&{isAudioAvailable QMediaPlayerControl::isAudioAvailable commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h pure plain false false bool [] } +&{isMuted QMediaPlayerControl::isMuted commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h pure plain false false bool [] } +&{isSeekable QMediaPlayerControl::isSeekable commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h pure plain false false bool [] } +&{isVideoAvailable QMediaPlayerControl::isVideoAvailable commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h pure plain false false bool [] } +&{media QMediaPlayerControl::media commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h pure plain false false QMediaContent [] } +&{mediaChanged QMediaPlayerControl::mediaChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h non signal false false void [0xc821baf080] } +&{mediaStatus QMediaPlayerControl::mediaStatus commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h pure plain false false QMediaPlayer::MediaStatus [] } +&{mediaStatusChanged QMediaPlayerControl::mediaStatusChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h non signal false false void [0xc821baf460] } +&{mediaStream QMediaPlayerControl::mediaStream commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h pure plain false false const QIODevice * [] } +&{mutedChanged QMediaPlayerControl::mutedChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h non signal false false void [0xc821baf880] } +&{pause QMediaPlayerControl::pause commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h pure plain false false void [] } +&{play QMediaPlayerControl::play commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h pure plain false false void [] } +&{playbackRate QMediaPlayerControl::playbackRate commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h pure plain false false qreal [] } +&{playbackRateChanged QMediaPlayerControl::playbackRateChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h non signal false false void [0xc821baff40] } +&{position QMediaPlayerControl::position commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h pure plain false false qint64 [] } +&{positionChanged QMediaPlayerControl::positionChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h non signal false false void [0xc821bac5c0] } +&{seekableChanged QMediaPlayerControl::seekableChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h non signal false false void [0xc821bac8a0] } +&{setMedia QMediaPlayerControl::setMedia commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h pure plain false false void [0xc821bacc80 0xc821bace00] } +&{setMuted QMediaPlayerControl::setMuted commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h pure plain false false void [0xc821bad380] } +&{setPlaybackRate QMediaPlayerControl::setPlaybackRate commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h pure plain false false void [0xc821bad800] } +&{setPosition QMediaPlayerControl::setPosition commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h pure plain false false void [0xc821badd60] } +&{setVolume QMediaPlayerControl::setVolume commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h pure plain false false void [0xc821ba6140] } +&{state QMediaPlayerControl::state commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h pure plain false false QMediaPlayer::State [] } +&{stateChanged QMediaPlayerControl::stateChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h non signal false false void [0xc821ba6500] } +&{stop QMediaPlayerControl::stop commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h pure plain false false void [] } +&{videoAvailableChanged QMediaPlayerControl::videoAvailableChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h non signal false false void [0xc821ba68c0] } +&{volume QMediaPlayerControl::volume commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h pure plain false false int [] } +&{volumeChanged QMediaPlayerControl::volumeChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h non signal false false void [0xc821ba6b60] } +&{~QMediaPlayerControl QMediaPlayerControl::~QMediaPlayerControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediaplayercontrol.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QMediaPlaylist.txt b/internal/binding/dump/QtMultimedia/QMediaPlaylist.txt new file mode 100755 index 00000000..b725494c --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMediaPlaylist.txt @@ -0,0 +1,45 @@ +######################################## FUNCTIONS ######################################## +&{playbackMode QMediaPlaylist::playbackMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.cpp non plain false false PlaybackMode [] } +&{setPlaybackMode QMediaPlaylist::setPlaybackMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.cpp non plain false false void [0xc8219da2e0] } +&{QMediaPlaylist QMediaPlaylist::QMediaPlaylist commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non constructor false false [0xc8219db740] } +&{addMedia QMediaPlaylist::addMedia commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non plain false true 2 bool [0xc8219dbe60] } +&{addMedia QMediaPlaylist::addMedia commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non plain false false bool [0xc8219c81c0] } +&{clear QMediaPlaylist::clear commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non plain false false bool [] } +&{currentIndex QMediaPlaylist::currentIndex commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non plain false false int [] } +&{currentIndexChanged QMediaPlaylist::currentIndexChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non signal false false void [0xc8219c86c0] } +&{currentMedia QMediaPlaylist::currentMedia commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non plain false false QMediaContent [] } +&{currentMediaChanged QMediaPlaylist::currentMediaChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non signal false false void [0xc8219c8a20] } +&{error QMediaPlaylist::error commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non plain false false Error [] } +&{errorString QMediaPlaylist::errorString commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non plain false false QString [] } +&{insertMedia QMediaPlaylist::insertMedia commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non plain false true 2 bool [0xc8219c8ec0 0xc8219c8f60] } +&{insertMedia QMediaPlaylist::insertMedia commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non plain false false bool [0xc8219c9160 0xc8219c9200] } +&{isEmpty QMediaPlaylist::isEmpty commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non plain false false bool [] } +&{isReadOnly QMediaPlaylist::isReadOnly commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non plain false false bool [] } +&{load QMediaPlaylist::load commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non plain false true 3 void [0xc8219c9620 0xc8219c96a0] } +&{load QMediaPlaylist::load commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non plain false false void [0xc8219c9880 0xc8219c9960] } +&{load QMediaPlaylist::load commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non plain false true 2 void [0xc8219c9b40 0xc8219c9be0] } +&{loadFailed QMediaPlaylist::loadFailed commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non signal false false void [] } +&{loaded QMediaPlaylist::loaded commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non signal false false void [] } +&{media QMediaPlaylist::media commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non plain false false QMediaContent [0xc8219c6000] } +&{mediaAboutToBeInserted QMediaPlaylist::mediaAboutToBeInserted commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non signal false false void [0xc8219c6300 0xc8219c63e0] } +&{mediaAboutToBeRemoved QMediaPlaylist::mediaAboutToBeRemoved commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non signal false false void [0xc8219c67a0 0xc8219c68e0] } +&{mediaChanged QMediaPlaylist::mediaChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non signal false false void [0xc8219c6ca0 0xc8219c6e00] } +&{mediaCount QMediaPlaylist::mediaCount commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non plain false false int [] } +&{mediaInserted QMediaPlaylist::mediaInserted commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non signal false false void [0xc8219c7340 0xc8219c7400] } +&{mediaObject QMediaPlaylist::mediaObject commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h impure plain false false QMediaObject * [] } +&{mediaRemoved QMediaPlaylist::mediaRemoved commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non signal false false void [0xc8219c7960 0xc8219c7ac0] } +&{next QMediaPlaylist::next commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non slot false false void [] } +&{nextIndex QMediaPlaylist::nextIndex commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non plain false false int [0xc8219b6120] } +&{playbackModeChanged QMediaPlaylist::playbackModeChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non signal false false void [0xc8219b6640] } +&{previous QMediaPlaylist::previous commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non slot false false void [] } +&{previousIndex QMediaPlaylist::previousIndex commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non plain false false int [0xc8219b6d40] } +&{removeMedia QMediaPlaylist::removeMedia commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non plain false false bool [0xc8219b7200] } +&{removeMedia QMediaPlaylist::removeMedia commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non plain false true 2 bool [0xc8219b75a0 0xc8219b7660] } +&{save QMediaPlaylist::save commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non plain false true 2 bool [0xc8219b7a40 0xc8219b7b00] } +&{save QMediaPlaylist::save commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non plain false false bool [0xc8219b7e40 0xc8219b7f40] } +&{setCurrentIndex QMediaPlaylist::setCurrentIndex commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non slot false false void [0xc8219a6340] } +&{shuffle QMediaPlaylist::shuffle commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h non slot false false void [] } +&{~QMediaPlaylist QMediaPlaylist::~QMediaPlaylist commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaplaylist.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{Error QMediaPlaylist::Error commendable public [0xc8219da640 0xc8219da700 0xc8219da8a0 0xc8219da9c0 0xc8219dab20]} +&{PlaybackMode QMediaPlaylist::PlaybackMode commendable public [0xc8219daec0 0xc8219dafa0 0xc8219db160 0xc8219db240 0xc8219db3a0]} diff --git a/internal/binding/dump/QtMultimedia/QMediaRecorder.txt b/internal/binding/dump/QtMultimedia/QMediaRecorder.txt new file mode 100755 index 00000000..23e7759f --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMediaRecorder.txt @@ -0,0 +1,59 @@ +######################################## FUNCTIONS ######################################## +&{actualLocation QMediaRecorder::actualLocation commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.cpp non plain false false QUrl [] } +&{duration QMediaRecorder::duration commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.cpp non plain false false qint64 [] } +&{isMetaDataAvailable QMediaRecorder::isMetaDataAvailable commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.cpp non plain false false bool [] } +&{isMetaDataWritable QMediaRecorder::isMetaDataWritable commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.cpp non plain false false bool [] } +&{isMuted QMediaRecorder::isMuted commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.cpp non plain false false bool [] } +&{outputLocation QMediaRecorder::outputLocation commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.cpp non plain false false QUrl [] } +&{setMuted QMediaRecorder::setMuted commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.cpp non slot false false void [0xc820116a60] } +&{setOutputLocation QMediaRecorder::setOutputLocation commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.cpp non plain false false bool [0xc820117280] } +&{setVolume QMediaRecorder::setVolume commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.cpp non slot false false void [0xc820117a60] } +&{volume QMediaRecorder::volume commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.cpp non plain false false qreal [] } +&{QMediaRecorder QMediaRecorder::QMediaRecorder commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non constructor false false [0xc8200e6aa0 0xc8200e6b60] } +&{actualLocationChanged QMediaRecorder::actualLocationChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non signal false false void [0xc8200e7880] } +&{audioCodecDescription QMediaRecorder::audioCodecDescription commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non plain false false QString [0xc8200e7bc0] } +&{audioSettings QMediaRecorder::audioSettings commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non plain false false QAudioEncoderSettings [] } +&{availability QMediaRecorder::availability commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non plain false false QMultimedia::AvailabilityStatus [] } +&{availabilityChanged QMediaRecorder::availabilityChanged commendable unsupported_cppEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non signal false true 2 void [0xc8200e0f20] } +&{availabilityChanged QMediaRecorder::availabilityChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non signal false false void [0xc8200e1660] } +&{availableMetaData QMediaRecorder::availableMetaData commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non plain false false QStringList [] } +&{containerDescription QMediaRecorder::containerDescription commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non plain false false QString [0xc8200a4440] } +&{containerFormat QMediaRecorder::containerFormat commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non plain false false QString [] } +&{durationChanged QMediaRecorder::durationChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non signal false false void [0xc8200a5100] } +&{error QMediaRecorder::error commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non signal false true 2 void [0xc8200a58e0] } +&{error QMediaRecorder::error commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non plain false false Error [] } +&{errorString QMediaRecorder::errorString commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non plain false false QString [] } +&{isAvailable QMediaRecorder::isAvailable commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non plain false false bool [] } +&{mediaObject QMediaRecorder::mediaObject commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h impure plain false false QMediaObject * [] } +&{metaData QMediaRecorder::metaData commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non plain false false QVariant [0xc820e728e0] } +&{metaDataAvailableChanged QMediaRecorder::metaDataAvailableChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non signal false false void [0xc820e72ce0] } +&{metaDataChanged QMediaRecorder::metaDataChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non signal false false void [] } +&{metaDataChanged QMediaRecorder::metaDataChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non signal false true 2 void [0xc820e731c0 0xc820e732a0] } +&{metaDataWritableChanged QMediaRecorder::metaDataWritableChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non signal false false void [0xc820e736e0] } +&{mutedChanged QMediaRecorder::mutedChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non signal false false void [0xc820e73ac0] } +&{pause QMediaRecorder::pause commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non slot false false void [] } +&{record QMediaRecorder::record commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non slot false false void [] } +&{setAudioSettings QMediaRecorder::setAudioSettings commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non plain false false void [0xc8217d3b40] } +&{setContainerFormat QMediaRecorder::setContainerFormat commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non plain false false void [0xc8217d3f40] } +&{setEncodingSettings QMediaRecorder::setEncodingSettings commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non plain false false void [0xc8217c81c0 0xc8217c82c0 0xc8217c83e0] } +&{setMetaData QMediaRecorder::setMetaData commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non plain false false void [0xc8217c8800 0xc8217c8880] } +&{setVideoSettings QMediaRecorder::setVideoSettings commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non plain false false void [0xc8217c8a60] } +&{state QMediaRecorder::state commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non plain false false State [] } +&{stateChanged QMediaRecorder::stateChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non signal false false void [0xc8217c8e20] } +&{status QMediaRecorder::status commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non plain false false Status [] } +&{statusChanged QMediaRecorder::statusChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non signal false false void [0xc8217c9280] } +&{stop QMediaRecorder::stop commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non slot false false void [] } +&{supportedAudioCodecs QMediaRecorder::supportedAudioCodecs commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non plain false false QStringList [] } +&{supportedAudioSampleRates QMediaRecorder::supportedAudioSampleRates commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non plain false false QList [0xc8217c9720 0xc8217c9800] } +&{supportedContainers QMediaRecorder::supportedContainers commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non plain false false QStringList [] } +&{supportedFrameRates QMediaRecorder::supportedFrameRates commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non plain false false QList [0xc8217c9b60 0xc8217c9c60] } +&{supportedResolutions QMediaRecorder::supportedResolutions commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non plain false false QList [0xc8217c9ee0 0xc8217c9fe0] } +&{supportedVideoCodecs QMediaRecorder::supportedVideoCodecs commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non plain false false QStringList [] } +&{videoCodecDescription QMediaRecorder::videoCodecDescription commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non plain false false QString [0xc820e48400] } +&{videoSettings QMediaRecorder::videoSettings commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non plain false false QVideoEncoderSettings [] } +&{volumeChanged QMediaRecorder::volumeChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non signal false false void [0xc820e48940] } +&{~QMediaRecorder QMediaRecorder::~QMediaRecorder commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediarecorder.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Error QMediaRecorder::Error commendable public [0xc820102840 0xc820102b80 0xc820102d60 0xc820102f20]} +&{State QMediaRecorder::State commendable public [0xc8201035a0 0xc8201037e0 0xc820103960]} +&{Status QMediaRecorder::Status commendable public [0xc8200e6120 0xc8200e62a0 0xc8200e6380 0xc8200e6460 0xc8200e6560 0xc8200e6620 0xc8200e6760 0xc8200e6820]} diff --git a/internal/binding/dump/QtMultimedia/QMediaRecorderControl.txt b/internal/binding/dump/QtMultimedia/QMediaRecorderControl.txt new file mode 100755 index 00000000..367734dc --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMediaRecorderControl.txt @@ -0,0 +1,22 @@ +######################################## FUNCTIONS ######################################## +&{QMediaRecorderControl QMediaRecorderControl::QMediaRecorderControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediarecordercontrol.h non constructor false false [0xc821ba7360] } +&{actualLocationChanged QMediaRecorderControl::actualLocationChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediarecordercontrol.h non signal false false void [0xc821ba75c0] } +&{applySettings QMediaRecorderControl::applySettings commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediarecordercontrol.h pure plain false false void [] } +&{duration QMediaRecorderControl::duration commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediarecordercontrol.h pure plain false false qint64 [] } +&{durationChanged QMediaRecorderControl::durationChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediarecordercontrol.h non signal false false void [0xc821ba79e0] } +&{error QMediaRecorderControl::error commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediarecordercontrol.h non signal false false void [0xc821ba7c00 0xc821ba7ca0] } +&{isMuted QMediaRecorderControl::isMuted commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediarecordercontrol.h pure plain false false bool [] } +&{mutedChanged QMediaRecorderControl::mutedChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediarecordercontrol.h non signal false false void [0xc821b9c000] } +&{outputLocation QMediaRecorderControl::outputLocation commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediarecordercontrol.h pure plain false false QUrl [] } +&{setMuted QMediaRecorderControl::setMuted commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediarecordercontrol.h pure slot false false void [0xc821b9c2e0] } +&{setOutputLocation QMediaRecorderControl::setOutputLocation commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediarecordercontrol.h pure plain false false bool [0xc821b9c4c0] } +&{setState QMediaRecorderControl::setState commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediarecordercontrol.h pure slot false false void [0xc821b9c6e0] } +&{setVolume QMediaRecorderControl::setVolume commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediarecordercontrol.h pure slot false false void [0xc821b9c960] } +&{state QMediaRecorderControl::state commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediarecordercontrol.h pure plain false false QMediaRecorder::State [] } +&{stateChanged QMediaRecorderControl::stateChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediarecordercontrol.h non signal false false void [0xc821b9cca0] } +&{status QMediaRecorderControl::status commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediarecordercontrol.h pure plain false false QMediaRecorder::Status [] } +&{statusChanged QMediaRecorderControl::statusChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediarecordercontrol.h non signal false false void [0xc821b9d040] } +&{volume QMediaRecorderControl::volume commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediarecordercontrol.h pure plain false false qreal [] } +&{volumeChanged QMediaRecorderControl::volumeChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediarecordercontrol.h non signal false false void [0xc821b9d380] } +&{~QMediaRecorderControl QMediaRecorderControl::~QMediaRecorderControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediarecordercontrol.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QMediaResource.txt b/internal/binding/dump/QtMultimedia/QMediaResource.txt new file mode 100755 index 00000000..6c68d45f --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMediaResource.txt @@ -0,0 +1,33 @@ +######################################## FUNCTIONS ######################################## +&{QMediaResource QMediaResource::QMediaResource commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non constructor false false [] } +&{QMediaResource QMediaResource::QMediaResource commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non constructor false true 4 [0xc821998ba0] } +&{QMediaResource QMediaResource::QMediaResource commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non constructor false true 3 [0xc821998f00 0xc8219990c0] } +&{QMediaResource QMediaResource::QMediaResource commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non constructor false true 2 [0xc8219993a0 0xc8219994a0] } +&{audioBitRate QMediaResource::audioBitRate commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non plain false false int [] } +&{audioCodec QMediaResource::audioCodec commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non plain false false QString [] } +&{channelCount QMediaResource::channelCount commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non plain false false int [] } +&{dataSize QMediaResource::dataSize commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non plain false false qint64 [] } +&{isNull QMediaResource::isNull commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non plain false false bool [] } +&{language QMediaResource::language commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non plain false false QString [] } +&{mimeType QMediaResource::mimeType commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non plain false false QString [] } +&{operator!= QMediaResource::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non plain false false bool [0xc82198e340] } +&{operator= QMediaResource::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non plain false false QMediaResource & [0xc82198e5c0] } +&{operator== QMediaResource::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non plain false false bool [0xc82198e860] } +&{request QMediaResource::request commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non plain false false QNetworkRequest [] } +&{resolution QMediaResource::resolution commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non plain false false QSize [] } +&{sampleRate QMediaResource::sampleRate commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non plain false false int [] } +&{setAudioBitRate QMediaResource::setAudioBitRate commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non plain false false void [0xc82198ed80] } +&{setAudioCodec QMediaResource::setAudioCodec commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non plain false false void [0xc82198ef20] } +&{setChannelCount QMediaResource::setChannelCount commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non plain false false void [0xc82198f0c0] } +&{setDataSize QMediaResource::setDataSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non plain false false void [0xc82198f280] } +&{setLanguage QMediaResource::setLanguage commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non plain false false void [0xc82198f440] } +&{setResolution QMediaResource::setResolution commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non plain false false void [0xc82198f620] } +&{setResolution QMediaResource::setResolution commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non plain false true 2 void [0xc82198f820 0xc82198f8c0] } +&{setSampleRate QMediaResource::setSampleRate commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non plain false false void [0xc82198fae0] } +&{setVideoBitRate QMediaResource::setVideoBitRate commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non plain false false void [0xc82198fce0] } +&{setVideoCodec QMediaResource::setVideoCodec commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non plain false false void [0xc82198fec0] } +&{url QMediaResource::url commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non plain false false QUrl [] } +&{videoBitRate QMediaResource::videoBitRate commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non plain false false int [] } +&{videoCodec QMediaResource::videoCodec commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non plain false false QString [] } +&{~QMediaResource QMediaResource::~QMediaResource commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/playback/qmediaresource.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QMediaService.txt b/internal/binding/dump/QtMultimedia/QMediaService.txt new file mode 100755 index 00000000..90b1a005 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMediaService.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{QMediaService QMediaService::QMediaService commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaservice.h non constructor false false [0xc821917360] } +&{releaseControl QMediaService::releaseControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaservice.h pure plain false false void [0xc821917ba0] } +&{requestControl QMediaService::requestControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaservice.h pure plain false false QMediaControl * [0xc821917f00] } +&{requestControl QMediaService::requestControl commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaservice.h non plain false true 2 T [] } +&{~QMediaService QMediaService::~QMediaService commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaservice.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QMediaServiceCameraInfoInterface.txt b/internal/binding/dump/QtMultimedia/QMediaServiceCameraInfoInterface.txt new file mode 100755 index 00000000..b92444c3 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMediaServiceCameraInfoInterface.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{cameraOrientation QMediaServiceCameraInfoInterface::cameraOrientation commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaserviceproviderplugin.h pure plain false false int [0xc8218f6520] } +&{cameraPosition QMediaServiceCameraInfoInterface::cameraPosition commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaserviceproviderplugin.h pure plain false false QCamera::Position [0xc8218f6800] } +&{~QMediaServiceCameraInfoInterface QMediaServiceCameraInfoInterface::~QMediaServiceCameraInfoInterface commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaserviceproviderplugin.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QMediaServiceDefaultDeviceInterface.txt b/internal/binding/dump/QtMultimedia/QMediaServiceDefaultDeviceInterface.txt new file mode 100755 index 00000000..5baad763 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMediaServiceDefaultDeviceInterface.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{defaultDevice QMediaServiceDefaultDeviceInterface::defaultDevice commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaserviceproviderplugin.h pure plain false false QByteArray [0xc8218f6c60] } +&{~QMediaServiceDefaultDeviceInterface QMediaServiceDefaultDeviceInterface::~QMediaServiceDefaultDeviceInterface commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaserviceproviderplugin.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QMediaServiceFeaturesInterface.txt b/internal/binding/dump/QtMultimedia/QMediaServiceFeaturesInterface.txt new file mode 100755 index 00000000..581535bb --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMediaServiceFeaturesInterface.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{supportedFeatures QMediaServiceFeaturesInterface::supportedFeatures commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaserviceproviderplugin.h pure plain false false QMediaServiceProviderHint::Features [0xc8218f7140] } +&{~QMediaServiceFeaturesInterface QMediaServiceFeaturesInterface::~QMediaServiceFeaturesInterface commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaserviceproviderplugin.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QMediaServiceProviderPlugin.txt b/internal/binding/dump/QtMultimedia/QMediaServiceProviderPlugin.txt new file mode 100755 index 00000000..4268b978 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMediaServiceProviderPlugin.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{create QMediaServiceProviderPlugin::create commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaserviceproviderplugin.h pure plain false false QMediaService * [0xc8218f76a0] } +&{release QMediaServiceProviderPlugin::release commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaserviceproviderplugin.h pure plain false false void [0xc8218f7880] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QMediaServiceSupportedDevicesInterface.txt b/internal/binding/dump/QtMultimedia/QMediaServiceSupportedDevicesInterface.txt new file mode 100755 index 00000000..b6e9e746 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMediaServiceSupportedDevicesInterface.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{deviceDescription QMediaServiceSupportedDevicesInterface::deviceDescription commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaserviceproviderplugin.h pure plain false false QString [0xc8218f7c00 0xc8218f7d20] } +&{devices QMediaServiceSupportedDevicesInterface::devices commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaserviceproviderplugin.h pure plain false false QList [0xc8218e80c0] } +&{~QMediaServiceSupportedDevicesInterface QMediaServiceSupportedDevicesInterface::~QMediaServiceSupportedDevicesInterface commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaserviceproviderplugin.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QMediaServiceSupportedFormatsInterface.txt b/internal/binding/dump/QtMultimedia/QMediaServiceSupportedFormatsInterface.txt new file mode 100755 index 00000000..8ce7f454 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMediaServiceSupportedFormatsInterface.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{hasSupport QMediaServiceSupportedFormatsInterface::hasSupport commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaserviceproviderplugin.h pure plain false false QMultimedia::SupportEstimate [0xc8218e8860 0xc8218e89e0] } +&{supportedMimeTypes QMediaServiceSupportedFormatsInterface::supportedMimeTypes commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaserviceproviderplugin.h pure plain false false QStringList [] } +&{~QMediaServiceSupportedFormatsInterface QMediaServiceSupportedFormatsInterface::~QMediaServiceSupportedFormatsInterface commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediaserviceproviderplugin.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QMediaStreamsControl.txt b/internal/binding/dump/QtMultimedia/QMediaStreamsControl.txt new file mode 100755 index 00000000..f91c000e --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMediaStreamsControl.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{QMediaStreamsControl QMediaStreamsControl::QMediaStreamsControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediastreamscontrol.h non constructor false false [0xc821b9a0e0] } +&{activeStreamsChanged QMediaStreamsControl::activeStreamsChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediastreamscontrol.h non signal false false void [] } +&{isActive QMediaStreamsControl::isActive commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediastreamscontrol.h pure plain false false bool [0xc821b9a820] } +&{metaData QMediaStreamsControl::metaData commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediastreamscontrol.h pure plain false false QVariant [0xc821b9ac40 0xc821b9ad00] } +&{setActive QMediaStreamsControl::setActive commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediastreamscontrol.h pure plain false false void [0xc821b9b0c0 0xc821b9b200] } +&{streamCount QMediaStreamsControl::streamCount commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediastreamscontrol.h pure plain false false int [] } +&{streamType QMediaStreamsControl::streamType commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediastreamscontrol.h pure plain false false StreamType [0xc821b9b7a0] } +&{streamsChanged QMediaStreamsControl::streamsChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediastreamscontrol.h non signal false false void [] } +&{~QMediaStreamsControl QMediaStreamsControl::~QMediaStreamsControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediastreamscontrol.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{StreamType QMediaStreamsControl::StreamType commendable public [0xc821b9db00 0xc821b9db80 0xc821b9dc60 0xc821b9dd00 0xc821b9ddc0]} diff --git a/internal/binding/dump/QtMultimedia/QMediaTimeInterval.txt b/internal/binding/dump/QtMultimedia/QMediaTimeInterval.txt new file mode 100755 index 00000000..bfd28a8f --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMediaTimeInterval.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{QMediaTimeInterval QMediaTimeInterval::QMediaTimeInterval commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non constructor false false [] } +&{QMediaTimeInterval QMediaTimeInterval::QMediaTimeInterval commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non constructor false true 3 [0xc8218c6bc0] } +&{QMediaTimeInterval QMediaTimeInterval::QMediaTimeInterval commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non constructor false true 2 [0xc8218c6f80 0xc8218c7080] } +&{contains QMediaTimeInterval::contains commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non plain false false bool [0xc8218c7420] } +&{end QMediaTimeInterval::end commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non plain false false qint64 [] } +&{isNormal QMediaTimeInterval::isNormal commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non plain false false bool [] } +&{normalized QMediaTimeInterval::normalized commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non plain false false QMediaTimeInterval [] } +&{start QMediaTimeInterval::start commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non plain false false qint64 [] } +&{translated QMediaTimeInterval::translated commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non plain false false QMediaTimeInterval [0xc8218b2120] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QMediaTimeRange.txt b/internal/binding/dump/QtMultimedia/QMediaTimeRange.txt new file mode 100755 index 00000000..b8e2104c --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMediaTimeRange.txt @@ -0,0 +1,26 @@ +######################################## FUNCTIONS ######################################## +&{QMediaTimeRange QMediaTimeRange::QMediaTimeRange commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non constructor false false [] } +&{QMediaTimeRange QMediaTimeRange::QMediaTimeRange commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non constructor false true 3 [0xc8218b2520] } +&{QMediaTimeRange QMediaTimeRange::QMediaTimeRange commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non constructor false true 4 [0xc8218b2740] } +&{QMediaTimeRange QMediaTimeRange::QMediaTimeRange commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non constructor false true 2 [0xc8218b2960 0xc8218b2a00] } +&{addInterval QMediaTimeRange::addInterval commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non plain false false void [0xc8218b2cc0] } +&{addInterval QMediaTimeRange::addInterval commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non plain false true 2 void [0xc8218b2f60 0xc8218b3000] } +&{addTimeRange QMediaTimeRange::addTimeRange commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non plain false false void [0xc8218b32e0] } +&{clear QMediaTimeRange::clear commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non plain false false void [] } +&{contains QMediaTimeRange::contains commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non plain false false bool [0xc8218b3820] } +&{earliestTime QMediaTimeRange::earliestTime commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non plain false false qint64 [] } +&{intervals QMediaTimeRange::intervals commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non plain false false QList [] } +&{isContinuous QMediaTimeRange::isContinuous commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non plain false false bool [] } +&{isEmpty QMediaTimeRange::isEmpty commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non plain false false bool [] } +&{latestTime QMediaTimeRange::latestTime commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non plain false false qint64 [] } +&{operator+= QMediaTimeRange::operator+= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non plain false true 2 QMediaTimeRange & [0xc8218a86a0] } +&{operator+= QMediaTimeRange::operator+= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non plain false false QMediaTimeRange & [0xc8218a8c80] } +&{operator-= QMediaTimeRange::operator-= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non plain false true 2 QMediaTimeRange & [0xc8218a9260] } +&{operator-= QMediaTimeRange::operator-= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non plain false false QMediaTimeRange & [0xc8218a9840] } +&{operator= QMediaTimeRange::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non plain false true 2 QMediaTimeRange & [0xc8218a9ea0] } +&{operator= QMediaTimeRange::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non plain false false QMediaTimeRange & [0xc822214300] } +&{removeInterval QMediaTimeRange::removeInterval commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non plain false false void [0xc822214580] } +&{removeInterval QMediaTimeRange::removeInterval commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non plain false true 2 void [0xc822214820 0xc8222148e0] } +&{removeTimeRange QMediaTimeRange::removeTimeRange commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non plain false false void [0xc822214b00] } +&{~QMediaTimeRange QMediaTimeRange::~QMediaTimeRange commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/qmediatimerange.cpp non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QMediaVideoProbeControl.txt b/internal/binding/dump/QtMultimedia/QMediaVideoProbeControl.txt new file mode 100755 index 00000000..e2ee4215 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMediaVideoProbeControl.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QMediaVideoProbeControl QMediaVideoProbeControl::QMediaVideoProbeControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediavideoprobecontrol.h non constructor false false [0xc821b943a0] } +&{flush QMediaVideoProbeControl::flush commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediavideoprobecontrol.h non signal false false void [] } +&{videoFrameProbed QMediaVideoProbeControl::videoFrameProbed commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediavideoprobecontrol.h non signal false false void [0xc821b946c0] } +&{~QMediaVideoProbeControl QMediaVideoProbeControl::~QMediaVideoProbeControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmediavideoprobecontrol.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QMetaDataReaderControl.txt b/internal/binding/dump/QtMultimedia/QMetaDataReaderControl.txt new file mode 100755 index 00000000..2358c1bc --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMetaDataReaderControl.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{QMetaDataReaderControl QMetaDataReaderControl::QMetaDataReaderControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmetadatareadercontrol.h non constructor false false [0xc821b94dc0] } +&{availableMetaData QMetaDataReaderControl::availableMetaData commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmetadatareadercontrol.h pure plain false false QStringList [] } +&{isMetaDataAvailable QMetaDataReaderControl::isMetaDataAvailable commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmetadatareadercontrol.h pure plain false false bool [] } +&{metaData QMetaDataReaderControl::metaData commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmetadatareadercontrol.h pure plain false false QVariant [0xc821b951c0] } +&{metaDataAvailableChanged QMetaDataReaderControl::metaDataAvailableChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmetadatareadercontrol.h non signal false false void [0xc821b953c0] } +&{metaDataChanged QMetaDataReaderControl::metaDataChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmetadatareadercontrol.h non signal false false void [] } +&{metaDataChanged QMetaDataReaderControl::metaDataChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmetadatareadercontrol.h non signal false true 2 void [0xc821b95620 0xc821b956c0] } +&{~QMetaDataReaderControl QMetaDataReaderControl::~QMetaDataReaderControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmetadatareadercontrol.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QMetaDataWriterControl.txt b/internal/binding/dump/QtMultimedia/QMetaDataWriterControl.txt new file mode 100755 index 00000000..2d14f9e6 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QMetaDataWriterControl.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QMetaDataWriterControl QMetaDataWriterControl::QMetaDataWriterControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmetadatawritercontrol.h non constructor false false [0xc821b95ca0] } +&{availableMetaData QMetaDataWriterControl::availableMetaData commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmetadatawritercontrol.h pure plain false false QStringList [] } +&{isMetaDataAvailable QMetaDataWriterControl::isMetaDataAvailable commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmetadatawritercontrol.h pure plain false false bool [] } +&{isWritable QMetaDataWriterControl::isWritable commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmetadatawritercontrol.h pure plain false false bool [] } +&{metaData QMetaDataWriterControl::metaData commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmetadatawritercontrol.h pure plain false false QVariant [0xc821b82580] } +&{metaDataAvailableChanged QMetaDataWriterControl::metaDataAvailableChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmetadatawritercontrol.h non signal false false void [0xc821b82a20] } +&{metaDataChanged QMetaDataWriterControl::metaDataChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmetadatawritercontrol.h non signal false false void [] } +&{metaDataChanged QMetaDataWriterControl::metaDataChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmetadatawritercontrol.h non signal false true 2 void [0xc821b83060 0xc821b83200] } +&{setMetaData QMetaDataWriterControl::setMetaData commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmetadatawritercontrol.h pure plain false false void [0xc821b836a0 0xc821b83840] } +&{writableChanged QMetaDataWriterControl::writableChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmetadatawritercontrol.h non signal false false void [0xc821b83c00] } +&{~QMetaDataWriterControl QMetaDataWriterControl::~QMetaDataWriterControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qmetadatawritercontrol.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QRadioData.txt b/internal/binding/dump/QtMultimedia/QRadioData.txt new file mode 100755 index 00000000..ed11f48d --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QRadioData.txt @@ -0,0 +1,25 @@ +######################################## FUNCTIONS ######################################## +&{isAlternativeFrequenciesEnabled QRadioData::isAlternativeFrequenciesEnabled commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiodata.cpp non plain false false bool [] } +&{programType QRadioData::programType commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiodata.cpp non plain false false ProgramType [] } +&{programTypeName QRadioData::programTypeName commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiodata.cpp non plain false false QString [] } +&{radioText QRadioData::radioText commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiodata.cpp non plain false false QString [] } +&{setAlternativeFrequenciesEnabled QRadioData::setAlternativeFrequenciesEnabled commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiodata.cpp non slot false false void [0xc8226d48c0] } +&{stationId QRadioData::stationId commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiodata.cpp non plain false false QString [] } +&{stationName QRadioData::stationName commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiodata.cpp non plain false false QString [] } +&{QRadioData QRadioData::QRadioData commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiodata.h non constructor false false [0xc821873e20 0xc821873f20] } +&{alternativeFrequenciesEnabledChanged QRadioData::alternativeFrequenciesEnabledChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiodata.h non signal false false void [0xc821858380] } +&{availability QRadioData::availability commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiodata.h non plain false false QMultimedia::AvailabilityStatus [] } +&{error QRadioData::error commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiodata.h non signal false true 2 void [0xc821858760] } +&{error QRadioData::error commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiodata.h non plain false false Error [] } +&{errorString QRadioData::errorString commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiodata.h non plain false false QString [] } +&{mediaObject QRadioData::mediaObject commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiodata.h impure plain false false QMediaObject * [] } +&{programTypeChanged QRadioData::programTypeChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiodata.h non signal false false void [0xc821858e60] } +&{programTypeNameChanged QRadioData::programTypeNameChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiodata.h non signal false false void [0xc821859120] } +&{radioTextChanged QRadioData::radioTextChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiodata.h non signal false false void [0xc8218593a0] } +&{setMediaObject QRadioData::setMediaObject commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiodata.h impure plain false false bool [0xc8218595a0] } +&{stationIdChanged QRadioData::stationIdChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiodata.h non signal false false void [0xc821859800] } +&{stationNameChanged QRadioData::stationNameChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiodata.h non signal false false void [0xc821859ac0] } +&{~QRadioData QRadioData::~QRadioData commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiodata.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Error QRadioData::Error commendable public [0xc8226d4e20 0xc8226d4ea0 0xc8226d4f20 0xc8226d4fa0]} +&{ProgramType QRadioData::ProgramType commendable public [0xc8226d5160 0xc8226d51e0 0xc8226d5260 0xc8226d52e0 0xc8226d5380 0xc8226d5460 0xc8226d5500 0xc8226d5580 0xc8226d5640 0xc8226d5720 0xc8226d57c0 0xc8226d5840 0xc8226d58e0 0xc8226d59c0 0xc8226d5a60 0xc8226d5b00 0xc8226d5ba0 0xc8226d5c40 0xc8226d5d20 0xc8226d5e20 0xc8226d5ec0 0xc8226d5f40 0xc8226d5fc0 0xc821872040 0xc8218720e0 0xc821872220 0xc8218722e0 0xc821872480 0xc821872580 0xc8218726a0 0xc8218727c0 0xc821872900 0xc821872a20 0xc821872b20 0xc821872c20 0xc821872d00 0xc821872dc0 0xc821872ee0 0xc821872fe0 0xc8218730e0 0xc8218731c0 0xc821873260 0xc821873500 0xc8218735e0 0xc8218736e0 0xc8218737c0 0xc8218738c0 0xc821873a60]} diff --git a/internal/binding/dump/QtMultimedia/QRadioDataControl.txt b/internal/binding/dump/QtMultimedia/QRadioDataControl.txt new file mode 100755 index 00000000..4e12be20 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QRadioDataControl.txt @@ -0,0 +1,20 @@ +######################################## FUNCTIONS ######################################## +&{QRadioDataControl QRadioDataControl::QRadioDataControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiodatacontrol.h non constructor false false [0xc821b5e7e0] } +&{alternativeFrequenciesEnabledChanged QRadioDataControl::alternativeFrequenciesEnabledChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiodatacontrol.h non signal false false void [0xc821b5ea80] } +&{error QRadioDataControl::error commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiodatacontrol.h non signal false true 2 void [0xc821b5ef00] } +&{error QRadioDataControl::error commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiodatacontrol.h pure plain false false QRadioData::Error [] } +&{errorString QRadioDataControl::errorString commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiodatacontrol.h pure plain false false QString [] } +&{isAlternativeFrequenciesEnabled QRadioDataControl::isAlternativeFrequenciesEnabled commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiodatacontrol.h pure plain false false bool [] } +&{programType QRadioDataControl::programType commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiodatacontrol.h pure plain false false QRadioData::ProgramType [] } +&{programTypeChanged QRadioDataControl::programTypeChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiodatacontrol.h non signal false false void [0xc821b5fd80] } +&{programTypeName QRadioDataControl::programTypeName commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiodatacontrol.h pure plain false false QString [] } +&{programTypeNameChanged QRadioDataControl::programTypeNameChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiodatacontrol.h non signal false false void [0xc821b50320] } +&{radioText QRadioDataControl::radioText commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiodatacontrol.h pure plain false false QString [] } +&{radioTextChanged QRadioDataControl::radioTextChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiodatacontrol.h non signal false false void [0xc821b50840] } +&{setAlternativeFrequenciesEnabled QRadioDataControl::setAlternativeFrequenciesEnabled commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiodatacontrol.h pure plain false false void [0xc821b50c40] } +&{stationId QRadioDataControl::stationId commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiodatacontrol.h pure plain false false QString [] } +&{stationIdChanged QRadioDataControl::stationIdChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiodatacontrol.h non signal false false void [0xc821b511a0] } +&{stationName QRadioDataControl::stationName commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiodatacontrol.h pure plain false false QString [] } +&{stationNameChanged QRadioDataControl::stationNameChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiodatacontrol.h non signal false false void [0xc821b517c0] } +&{~QRadioDataControl QRadioDataControl::~QRadioDataControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiodatacontrol.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QRadioTuner.txt b/internal/binding/dump/QtMultimedia/QRadioTuner.txt new file mode 100755 index 00000000..e9e9e0e7 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QRadioTuner.txt @@ -0,0 +1,48 @@ +######################################## FUNCTIONS ######################################## +&{band QRadioTuner::band commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.cpp non plain false false Band [] } +&{frequency QRadioTuner::frequency commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.cpp non plain false false int [] } +&{isAntennaConnected QRadioTuner::isAntennaConnected commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.cpp non plain false false bool [] } +&{isMuted QRadioTuner::isMuted commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.cpp non plain false false bool [] } +&{isSearching QRadioTuner::isSearching commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.cpp non plain false false bool [] } +&{isStereo QRadioTuner::isStereo commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.cpp non plain false false bool [] } +&{radioData QRadioTuner::radioData commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.cpp non plain false false QRadioData * [] } +&{setMuted QRadioTuner::setMuted commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.cpp non slot false false void [0xc82183e400] } +&{setStereoMode QRadioTuner::setStereoMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.cpp non plain false false void [0xc82183e8a0] } +&{setVolume QRadioTuner::setVolume commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.cpp non slot false false void [0xc82183ec80] } +&{signalStrength QRadioTuner::signalStrength commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.cpp non plain false false int [] } +&{state QRadioTuner::state commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.cpp non plain false false State [] } +&{stereoMode QRadioTuner::stereoMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.cpp non plain false false StereoMode [] } +&{volume QRadioTuner::volume commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.cpp non plain false false int [] } +&{QRadioTuner QRadioTuner::QRadioTuner commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.h non constructor false false [0xc821834da0] } +&{antennaConnectedChanged QRadioTuner::antennaConnectedChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.h non signal false false void [0xc821834fc0] } +&{availability QRadioTuner::availability commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.h impure plain false false QMultimedia::AvailabilityStatus [] } +&{bandChanged QRadioTuner::bandChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.h non signal false false void [0xc82182c420] } +&{cancelSearch QRadioTuner::cancelSearch commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.h non slot false false void [] } +&{error QRadioTuner::error commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.h non signal false true 2 void [0xc82182ca80] } +&{error QRadioTuner::error commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.h non plain false false Error [] } +&{errorString QRadioTuner::errorString commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.h non plain false false QString [] } +&{frequencyChanged QRadioTuner::frequencyChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.h non signal false false void [0xc82182d200] } +&{frequencyRange QRadioTuner::frequencyRange commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.h non plain false false QPair [0xc82182d540] } +&{frequencyStep QRadioTuner::frequencyStep commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.h non plain false false int [0xc82182d8c0] } +&{isBandSupported QRadioTuner::isBandSupported commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.h non plain false false bool [0xc82182dc60] } +&{mutedChanged QRadioTuner::mutedChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.h non signal false false void [0xc82182dfc0] } +&{searchAllStations QRadioTuner::searchAllStations commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.h non slot false false void [0xc8218165a0] } +&{searchBackward QRadioTuner::searchBackward commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.h non slot false false void [] } +&{searchForward QRadioTuner::searchForward commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.h non slot false false void [] } +&{searchingChanged QRadioTuner::searchingChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.h non signal false false void [0xc821817040] } +&{setBand QRadioTuner::setBand commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.h non slot false false void [0xc821817640] } +&{setFrequency QRadioTuner::setFrequency commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.h non slot false false void [0xc821817c60] } +&{signalStrengthChanged QRadioTuner::signalStrengthChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.h non signal false false void [0xc8218060c0] } +&{start QRadioTuner::start commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.h non slot false false void [] } +&{stateChanged QRadioTuner::stateChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.h non signal false false void [0xc8218066c0] } +&{stationFound QRadioTuner::stationFound commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.h non signal false false void [0xc821806ac0 0xc821806b80] } +&{stereoStatusChanged QRadioTuner::stereoStatusChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.h non signal false false void [0xc821806fe0] } +&{stop QRadioTuner::stop commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.h non slot false false void [] } +&{volumeChanged QRadioTuner::volumeChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.h non signal false false void [0xc821807580] } +&{~QRadioTuner QRadioTuner::~QRadioTuner commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/radio/qradiotuner.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Band QRadioTuner::Band commendable public [0xc82183f860 0xc82183f940 0xc82183fa00 0xc82183fb40 0xc82183fc20]} +&{Error QRadioTuner::Error commendable public [0xc821834000 0xc8218340a0 0xc821834140 0xc8218341e0]} +&{SearchMode QRadioTuner::SearchMode commendable public [0xc821834440 0xc8218344e0]} +&{State QRadioTuner::State commendable public [0xc8218347a0 0xc821834820]} +&{StereoMode QRadioTuner::StereoMode commendable public [0xc821834a60 0xc821834ae0 0xc821834b80]} diff --git a/internal/binding/dump/QtMultimedia/QRadioTunerControl.txt b/internal/binding/dump/QtMultimedia/QRadioTunerControl.txt new file mode 100755 index 00000000..d0f599ac --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QRadioTunerControl.txt @@ -0,0 +1,41 @@ +######################################## FUNCTIONS ######################################## +&{QRadioTunerControl QRadioTunerControl::QRadioTunerControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h non constructor false false [0xc821b3a1e0] } +&{antennaConnectedChanged QRadioTunerControl::antennaConnectedChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h non signal false false void [0xc821b3a5a0] } +&{band QRadioTunerControl::band commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h pure plain false false QRadioTuner::Band [] } +&{bandChanged QRadioTunerControl::bandChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h non signal false false void [0xc821b3acc0] } +&{cancelSearch QRadioTunerControl::cancelSearch commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h pure plain false false void [] } +&{error QRadioTunerControl::error commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h non signal false true 2 void [0xc821b3b3c0] } +&{error QRadioTunerControl::error commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h pure plain false false QRadioTuner::Error [] } +&{errorString QRadioTunerControl::errorString commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h pure plain false false QString [] } +&{frequency QRadioTunerControl::frequency commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h pure plain false false int [] } +&{frequencyChanged QRadioTunerControl::frequencyChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h non signal false false void [0xc821b3bf40] } +&{frequencyRange QRadioTunerControl::frequencyRange commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h pure plain false false QPair [0xc821b1a280] } +&{frequencyStep QRadioTunerControl::frequencyStep commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h pure plain false false int [0xc821b1a680] } +&{isAntennaConnected QRadioTunerControl::isAntennaConnected commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h impure plain false false bool [] } +&{isBandSupported QRadioTunerControl::isBandSupported commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h pure plain false false bool [0xc821b1ac20] } +&{isMuted QRadioTunerControl::isMuted commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h pure plain false false bool [] } +&{isSearching QRadioTunerControl::isSearching commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h pure plain false false bool [] } +&{isStereo QRadioTunerControl::isStereo commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h pure plain false false bool [] } +&{mutedChanged QRadioTunerControl::mutedChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h non signal false false void [0xc821b1b780] } +&{searchAllStations QRadioTunerControl::searchAllStations commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h pure plain false false void [0xc821b1bbc0] } +&{searchBackward QRadioTunerControl::searchBackward commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h pure plain false false void [] } +&{searchForward QRadioTunerControl::searchForward commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h pure plain false false void [] } +&{searchingChanged QRadioTunerControl::searchingChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h non signal false false void [0xc821b0a340] } +&{setBand QRadioTunerControl::setBand commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h pure plain false false void [0xc821b0a860] } +&{setFrequency QRadioTunerControl::setFrequency commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h pure plain false false void [0xc821b0ae00] } +&{setMuted QRadioTunerControl::setMuted commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h pure plain false false void [0xc821b0b420] } +&{setStereoMode QRadioTunerControl::setStereoMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h pure plain false false void [0xc821b0b800] } +&{setVolume QRadioTunerControl::setVolume commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h pure plain false false void [0xc821b0bd80] } +&{signalStrength QRadioTunerControl::signalStrength commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h pure plain false false int [] } +&{signalStrengthChanged QRadioTunerControl::signalStrengthChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h non signal false false void [0xc821ae8260] } +&{start QRadioTunerControl::start commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h pure plain false false void [] } +&{state QRadioTunerControl::state commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h pure plain false false QRadioTuner::State [] } +&{stateChanged QRadioTunerControl::stateChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h non signal false false void [0xc821ae8b00] } +&{stationFound QRadioTunerControl::stationFound commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h non signal false false void [0xc821ae8f20 0xc821ae9020] } +&{stereoMode QRadioTunerControl::stereoMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h pure plain false false QRadioTuner::StereoMode [] } +&{stereoStatusChanged QRadioTunerControl::stereoStatusChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h non signal false false void [0xc821ae95e0] } +&{stop QRadioTunerControl::stop commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h pure plain false false void [] } +&{volume QRadioTunerControl::volume commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h pure plain false false int [] } +&{volumeChanged QRadioTunerControl::volumeChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h non signal false false void [0xc821ae9cc0] } +&{~QRadioTunerControl QRadioTunerControl::~QRadioTunerControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qradiotunercontrol.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QSound.txt b/internal/binding/dump/QtMultimedia/QSound.txt new file mode 100755 index 00000000..b6c8e576 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QSound.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{setLoops QSound::setLoops commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsound.cpp non plain false false void [0xc8223853c0] } +&{QSound QSound::QSound commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsound.h non constructor false false [0xc822385840 0xc822385960] } +&{fileName QSound::fileName commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsound.h non plain false false QString [] } +&{isFinished QSound::isFinished commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsound.h non plain false false bool [] } +&{loops QSound::loops commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsound.h non plain false false int [] } +&{loopsRemaining QSound::loopsRemaining commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsound.h non plain false false int [] } +&{play QSound::play commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsound.h non slot false true 2 void [] } +&{play QSound::play commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsound.h non plain true false void [0xc822396180] } +&{stop QSound::stop commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsound.h non slot false false void [] } +&{~QSound QSound::~QSound commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsound.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Loop QSound::Loop commendable public [0xc8223856a0]} diff --git a/internal/binding/dump/QtMultimedia/QSoundEffect.txt b/internal/binding/dump/QtMultimedia/QSoundEffect.txt new file mode 100755 index 00000000..30c75de0 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QSoundEffect.txt @@ -0,0 +1,32 @@ +######################################## FUNCTIONS ######################################## +&{isLoaded QSoundEffect::isLoaded commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.cpp non plain false false bool [] } +&{loopsRemaining QSoundEffect::loopsRemaining commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.cpp non plain false false int [] } +&{play QSoundEffect::play commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.cpp non slot false false void [] } +&{stop QSoundEffect::stop commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.cpp non slot false false void [] } +&{supportedMimeTypes QSoundEffect::supportedMimeTypes commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.cpp non plain true false QStringList [] } +&{QSoundEffect QSoundEffect::QSoundEffect commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.h non constructor false false [0xc8223ac240] } +&{category QSoundEffect::category commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.h non plain false false QString [] } +&{categoryChanged QSoundEffect::categoryChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.h non signal false false void [] } +&{isMuted QSoundEffect::isMuted commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.h non plain false false bool [] } +&{isPlaying QSoundEffect::isPlaying commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.h non plain false false bool [] } +&{loadedChanged QSoundEffect::loadedChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.h non signal false false void [] } +&{loopCount QSoundEffect::loopCount commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.h non plain false false int [] } +&{loopCountChanged QSoundEffect::loopCountChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.h non signal false false void [] } +&{loopsRemainingChanged QSoundEffect::loopsRemainingChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.h non signal false false void [] } +&{mutedChanged QSoundEffect::mutedChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.h non signal false false void [] } +&{playingChanged QSoundEffect::playingChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.h non signal false false void [] } +&{setCategory QSoundEffect::setCategory commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.h non plain false false void [0xc8223ad540] } +&{setLoopCount QSoundEffect::setLoopCount commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.h non plain false false void [0xc8223ad8e0] } +&{setMuted QSoundEffect::setMuted commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.h non plain false false void [0xc8223adbe0] } +&{setSource QSoundEffect::setSource commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.h non plain false false void [0xc8223adec0] } +&{setVolume QSoundEffect::setVolume commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.h non plain false false void [0xc8223ba280] } +&{source QSoundEffect::source commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.h non plain false false QUrl [] } +&{sourceChanged QSoundEffect::sourceChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.h non signal false false void [] } +&{status QSoundEffect::status commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.h non plain false false Status [] } +&{statusChanged QSoundEffect::statusChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.h non signal false false void [] } +&{volume QSoundEffect::volume commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.h non plain false false qreal [] } +&{volumeChanged QSoundEffect::volumeChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.h non signal false false void [] } +&{~QSoundEffect QSoundEffect::~QSoundEffect commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/audio/qsoundeffect.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Loop QSoundEffect::Loop commendable public [0xc8223979c0]} +&{Status QSoundEffect::Status commendable public [0xc822397ca0 0xc822397d80 0xc822397e40 0xc822397f20]} diff --git a/internal/binding/dump/QtMultimedia/QVideoDeviceSelectorControl.txt b/internal/binding/dump/QtMultimedia/QVideoDeviceSelectorControl.txt new file mode 100755 index 00000000..5be3dd71 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QVideoDeviceSelectorControl.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QVideoDeviceSelectorControl QVideoDeviceSelectorControl::QVideoDeviceSelectorControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideodeviceselectorcontrol.h non constructor false false [0xc821aba7c0] } +&{defaultDevice QVideoDeviceSelectorControl::defaultDevice commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideodeviceselectorcontrol.h pure plain false false int [] } +&{deviceCount QVideoDeviceSelectorControl::deviceCount commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideodeviceselectorcontrol.h pure plain false false int [] } +&{deviceDescription QVideoDeviceSelectorControl::deviceDescription commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideodeviceselectorcontrol.h pure plain false false QString [0xc821abaea0] } +&{deviceName QVideoDeviceSelectorControl::deviceName commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideodeviceselectorcontrol.h pure plain false false QString [0xc821abb1a0] } +&{devicesChanged QVideoDeviceSelectorControl::devicesChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideodeviceselectorcontrol.h non signal false false void [] } +&{selectedDevice QVideoDeviceSelectorControl::selectedDevice commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideodeviceselectorcontrol.h pure plain false false int [] } +&{selectedDeviceChanged QVideoDeviceSelectorControl::selectedDeviceChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideodeviceselectorcontrol.h non signal false true 2 void [0xc821abb7c0] } +&{selectedDeviceChanged QVideoDeviceSelectorControl::selectedDeviceChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideodeviceselectorcontrol.h non signal false false void [0xc821abbc00] } +&{setSelectedDevice QVideoDeviceSelectorControl::setSelectedDevice commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideodeviceselectorcontrol.h pure slot false false void [0xc821abbf80] } +&{~QVideoDeviceSelectorControl QVideoDeviceSelectorControl::~QVideoDeviceSelectorControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideodeviceselectorcontrol.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QVideoEncoderSettings.txt b/internal/binding/dump/QtMultimedia/QVideoEncoderSettings.txt new file mode 100755 index 00000000..9d9a51d0 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QVideoEncoderSettings.txt @@ -0,0 +1,26 @@ +######################################## FUNCTIONS ######################################## +&{setFrameRate QVideoEncoderSettings::setFrameRate commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.cpp non plain false false void [0xc821834d40] } +&{QVideoEncoderSettings QVideoEncoderSettings::QVideoEncoderSettings commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non constructor false false [] } +&{QVideoEncoderSettings QVideoEncoderSettings::QVideoEncoderSettings commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non constructor false true 2 [0xc821835220] } +&{bitRate QVideoEncoderSettings::bitRate commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false int [] } +&{codec QVideoEncoderSettings::codec commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false QString [] } +&{encodingMode QVideoEncoderSettings::encodingMode commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false QMultimedia::EncodingMode [] } +&{encodingOption QVideoEncoderSettings::encodingOption commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false QVariant [0xc821835840] } +&{encodingOptions QVideoEncoderSettings::encodingOptions commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false QVariantMap [] } +&{frameRate QVideoEncoderSettings::frameRate commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false qreal [] } +&{isNull QVideoEncoderSettings::isNull commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false bool [] } +&{operator!= QVideoEncoderSettings::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false bool [0xc821835d40] } +&{operator= QVideoEncoderSettings::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false QVideoEncoderSettings & [0xc82013e060] } +&{operator== QVideoEncoderSettings::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false bool [0xc82013e440] } +&{quality QVideoEncoderSettings::quality commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false QMultimedia::EncodingQuality [] } +&{resolution QVideoEncoderSettings::resolution commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false QSize [] } +&{setBitRate QVideoEncoderSettings::setBitRate commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false void [0xc82013eaa0] } +&{setCodec QVideoEncoderSettings::setCodec commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false void [0xc82013ed80] } +&{setEncodingMode QVideoEncoderSettings::setEncodingMode commendable unsupported_cppEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false void [0xc82013efe0] } +&{setEncodingOption QVideoEncoderSettings::setEncodingOption commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false void [0xc82013f360 0xc82013f420] } +&{setEncodingOptions QVideoEncoderSettings::setEncodingOptions commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false void [0xc82013f7a0] } +&{setQuality QVideoEncoderSettings::setQuality commendable unsupported_cppEnum /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false void [0xc82013fb60] } +&{setResolution QVideoEncoderSettings::setResolution commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false false void [0xc82013fe40] } +&{setResolution QVideoEncoderSettings::setResolution commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non plain false true 2 void [0xc82013c1a0 0xc82013c320] } +&{~QVideoEncoderSettings QVideoEncoderSettings::~QVideoEncoderSettings commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/recording/qmediaencodersettings.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QVideoEncoderSettingsControl.txt b/internal/binding/dump/QtMultimedia/QVideoEncoderSettingsControl.txt new file mode 100755 index 00000000..14254f38 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QVideoEncoderSettingsControl.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{QVideoEncoderSettingsControl QVideoEncoderSettingsControl::QVideoEncoderSettingsControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideoencodersettingscontrol.h non constructor false false [0xc821a96980] } +&{setVideoSettings QVideoEncoderSettingsControl::setVideoSettings commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideoencodersettingscontrol.h pure plain false false void [0xc821a96c60] } +&{supportedFrameRates QVideoEncoderSettingsControl::supportedFrameRates commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideoencodersettingscontrol.h pure plain false false QList [0xc821a97040 0xc821a971c0] } +&{supportedResolutions QVideoEncoderSettingsControl::supportedResolutions commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideoencodersettingscontrol.h pure plain false false QList [0xc821a97540 0xc821a976c0] } +&{supportedVideoCodecs QVideoEncoderSettingsControl::supportedVideoCodecs commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideoencodersettingscontrol.h pure plain false false QStringList [] } +&{videoCodecDescription QVideoEncoderSettingsControl::videoCodecDescription commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideoencodersettingscontrol.h pure plain false false QString [0xc821a97c60] } +&{videoSettings QVideoEncoderSettingsControl::videoSettings commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideoencodersettingscontrol.h pure plain false false QVideoEncoderSettings [] } +&{~QVideoEncoderSettingsControl QVideoEncoderSettingsControl::~QVideoEncoderSettingsControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideoencodersettingscontrol.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QVideoFilterRunnable.txt b/internal/binding/dump/QtMultimedia/QVideoFilterRunnable.txt new file mode 100755 index 00000000..506ddaf0 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QVideoFilterRunnable.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{run QVideoFilterRunnable::run commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qabstractvideofilter.h pure plain false false QVideoFrame [0xc826b1b580 0xc826b1b840 0xc826b1b9e0] } +######################################## ENUMS ######################################## +&{RunFlag QVideoFilterRunnable::RunFlag commendable public QVideoFilterRunnable::RunFlags [0xc826b1ac60]} diff --git a/internal/binding/dump/QtMultimedia/QVideoFrame.txt b/internal/binding/dump/QtMultimedia/QVideoFrame.txt new file mode 100755 index 00000000..1e78c4da --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QVideoFrame.txt @@ -0,0 +1,45 @@ +######################################## FUNCTIONS ######################################## +&{QVideoFrame QVideoFrame::QVideoFrame commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non constructor false false [] } +&{QVideoFrame QVideoFrame::QVideoFrame commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non constructor false true 2 [0xc820f81900 0xc820f81b00 0xc820f81ca0] } +&{QVideoFrame QVideoFrame::QVideoFrame commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non constructor false true 4 [0xc820f2e200] } +&{QVideoFrame QVideoFrame::QVideoFrame commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non constructor false true 5 [0xc820f2e780] } +&{QVideoFrame QVideoFrame::QVideoFrame commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non constructor false true 3 [0xc820f2ede0 0xc820f2eec0 0xc820f2efa0 0xc820f2f180] } +&{availableMetaData QVideoFrame::availableMetaData commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false QVariantMap [] } +&{bits QVideoFrame::bits commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false uchar * [] } +&{bits QVideoFrame::bits commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false true 2 uchar * [0xc820f2fdc0] } +&{bits QVideoFrame::bits commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false true 3 const uchar * [] } +&{bits QVideoFrame::bits commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false true 4 const uchar * [0xc820f0a620] } +&{bytesPerLine QVideoFrame::bytesPerLine commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false int [] } +&{bytesPerLine QVideoFrame::bytesPerLine commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false true 2 int [0xc820f0ae40] } +&{endTime QVideoFrame::endTime commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false qint64 [] } +&{fieldType QVideoFrame::fieldType commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false FieldType [] } +&{handle QVideoFrame::handle commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false QVariant [] } +&{handleType QVideoFrame::handleType commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false QAbstractVideoBuffer::HandleType [] } +&{height QVideoFrame::height commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false int [] } +&{imageFormatFromPixelFormat QVideoFrame::imageFormatFromPixelFormat commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain true false QImage::Format [0xc820efc380] } +&{isMapped QVideoFrame::isMapped commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false bool [] } +&{isReadable QVideoFrame::isReadable commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false bool [] } +&{isValid QVideoFrame::isValid commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false bool [] } +&{isWritable QVideoFrame::isWritable commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false bool [] } +&{map QVideoFrame::map commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false bool [0xc820efd340] } +&{mapMode QVideoFrame::mapMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false QAbstractVideoBuffer::MapMode [] } +&{mappedBytes QVideoFrame::mappedBytes commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false int [] } +&{metaData QVideoFrame::metaData commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false QVariant [0xc820efdf60] } +&{operator!= QVideoFrame::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false bool [0xc8227082e0] } +&{operator= QVideoFrame::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false QVideoFrame & [0xc822708720] } +&{operator== QVideoFrame::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false bool [0xc822708ae0] } +&{pixelFormat QVideoFrame::pixelFormat commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false PixelFormat [] } +&{pixelFormatFromImageFormat QVideoFrame::pixelFormatFromImageFormat commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain true false PixelFormat [0xc8227090c0] } +&{planeCount QVideoFrame::planeCount commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false int [] } +&{setEndTime QVideoFrame::setEndTime commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false void [0xc822709600] } +&{setFieldType QVideoFrame::setFieldType commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false void [0xc822709a20] } +&{setMetaData QVideoFrame::setMetaData commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false void [0xc822709d20 0xc822709dc0] } +&{setStartTime QVideoFrame::setStartTime commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false void [0xc826b3a180] } +&{size QVideoFrame::size commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false QSize [] } +&{startTime QVideoFrame::startTime commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false qint64 [] } +&{unmap QVideoFrame::unmap commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false void [] } +&{width QVideoFrame::width commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non plain false false int [] } +&{~QVideoFrame QVideoFrame::~QVideoFrame commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoframe.h non destructor false false [] } +######################################## ENUMS ######################################## +&{FieldType QVideoFrame::FieldType commendable public [0xc820fb32a0 0xc820fb33c0 0xc820fb3540 0xc820fb36a0]} +&{PixelFormat QVideoFrame::PixelFormat commendable public [0xc820fb3a60 0xc820fb3b40 0xc820fb3d00 0xc820fb3f00 0xc820f960a0 0xc820f961c0 0xc820f96380 0xc820f965a0 0xc820f96860 0xc820f96b00 0xc820f96c60 0xc820f96e20 0xc820f96fc0 0xc820f97180 0xc820f97240 0xc820f97500 0xc820f976a0 0xc820f97980 0xc820f97a60 0xc820f97c20 0xc820f97e20 0xc820f97fa0 0xc820f800c0 0xc820f80220 0xc820f80380 0xc820f80500 0xc820f805a0 0xc820f80780 0xc820f808e0 0xc820f80aa0 0xc820f80b80 0xc820f80c80 0xc820f80f40 0xc820f810e0]} diff --git a/internal/binding/dump/QtMultimedia/QVideoProbe.txt b/internal/binding/dump/QtMultimedia/QVideoProbe.txt new file mode 100755 index 00000000..6edc56db --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QVideoProbe.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QVideoProbe QVideoProbe::QVideoProbe commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoprobe.h non constructor false false [0xc826b3b640] } +&{flush QVideoProbe::flush commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoprobe.h non signal false false void [] } +&{isActive QVideoProbe::isActive commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoprobe.h non plain false false bool [] } +&{setSource QVideoProbe::setSource commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoprobe.h non plain false false bool [0xc826b2a020] } +&{setSource QVideoProbe::setSource commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoprobe.h non plain false true 2 bool [0xc826b2a5a0] } +&{videoFrameProbed QVideoProbe::videoFrameProbed commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoprobe.h non signal false false void [0xc826b2a9a0] } +&{~QVideoProbe QVideoProbe::~QVideoProbe commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideoprobe.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QVideoRendererControl.txt b/internal/binding/dump/QtMultimedia/QVideoRendererControl.txt new file mode 100755 index 00000000..c08cceeb --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QVideoRendererControl.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QVideoRendererControl QVideoRendererControl::QVideoRendererControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideorenderercontrol.h non constructor false false [0xc821a867c0] } +&{setSurface QVideoRendererControl::setSurface commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideorenderercontrol.h pure plain false false void [0xc821a86ac0] } +&{surface QVideoRendererControl::surface commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideorenderercontrol.h pure plain false false QAbstractVideoSurface * [] } +&{~QVideoRendererControl QVideoRendererControl::~QVideoRendererControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideorenderercontrol.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimedia/QVideoSurfaceFormat.txt b/internal/binding/dump/QtMultimedia/QVideoSurfaceFormat.txt new file mode 100755 index 00000000..4429fb69 --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QVideoSurfaceFormat.txt @@ -0,0 +1,34 @@ +######################################## FUNCTIONS ######################################## +&{QVideoSurfaceFormat QVideoSurfaceFormat::QVideoSurfaceFormat commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non constructor false false [] } +&{QVideoSurfaceFormat QVideoSurfaceFormat::QVideoSurfaceFormat commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non constructor false true 2 [0xc82183e6a0 0xc82183e8e0 0xc82183ea60] } +&{QVideoSurfaceFormat QVideoSurfaceFormat::QVideoSurfaceFormat commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non constructor false true 3 [0xc82183efa0] } +&{frameHeight QVideoSurfaceFormat::frameHeight commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non plain false false int [] } +&{frameRate QVideoSurfaceFormat::frameRate commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non plain false false qreal [] } +&{frameSize QVideoSurfaceFormat::frameSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non plain false false QSize [] } +&{frameWidth QVideoSurfaceFormat::frameWidth commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non plain false false int [] } +&{handleType QVideoSurfaceFormat::handleType commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non plain false false QAbstractVideoBuffer::HandleType [] } +&{isValid QVideoSurfaceFormat::isValid commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non plain false false bool [] } +&{operator!= QVideoSurfaceFormat::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non plain false false bool [0xc8219243e0] } +&{operator= QVideoSurfaceFormat::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non plain false false QVideoSurfaceFormat & [0xc821924a20] } +&{operator== QVideoSurfaceFormat::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non plain false false bool [0xc821925000] } +&{pixelAspectRatio QVideoSurfaceFormat::pixelAspectRatio commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non plain false false QSize [] } +&{pixelFormat QVideoSurfaceFormat::pixelFormat commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non plain false false QVideoFrame::PixelFormat [] } +&{property QVideoSurfaceFormat::property commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non plain false false QVariant [0xc821925a00] } +&{propertyNames QVideoSurfaceFormat::propertyNames commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non plain false false QList [] } +&{scanLineDirection QVideoSurfaceFormat::scanLineDirection commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non plain false false Direction [] } +&{setFrameRate QVideoSurfaceFormat::setFrameRate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non plain false false void [0xc821a0a160] } +&{setFrameSize QVideoSurfaceFormat::setFrameSize commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non plain false false void [0xc821a0a340] } +&{setFrameSize QVideoSurfaceFormat::setFrameSize commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non plain false true 2 void [0xc821a0a500 0xc821a0a580] } +&{setPixelAspectRatio QVideoSurfaceFormat::setPixelAspectRatio commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non plain false false void [0xc821a0a7e0] } +&{setPixelAspectRatio QVideoSurfaceFormat::setPixelAspectRatio commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non plain false true 2 void [0xc821a0a9c0 0xc821a0aaa0] } +&{setProperty QVideoSurfaceFormat::setProperty commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non plain false false void [0xc821a0acc0 0xc821a0ad40] } +&{setScanLineDirection QVideoSurfaceFormat::setScanLineDirection commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non plain false false void [0xc821a0af60] } +&{setViewport QVideoSurfaceFormat::setViewport commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non plain false false void [0xc821a0b1c0] } +&{setYCbCrColorSpace QVideoSurfaceFormat::setYCbCrColorSpace commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non plain false false void [0xc821a0b3e0] } +&{sizeHint QVideoSurfaceFormat::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non plain false false QSize [] } +&{viewport QVideoSurfaceFormat::viewport commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non plain false false QRect [] } +&{yCbCrColorSpace QVideoSurfaceFormat::yCbCrColorSpace commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non plain false false YCbCrColorSpace [] } +&{~QVideoSurfaceFormat QVideoSurfaceFormat::~QVideoSurfaceFormat commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/video/qvideosurfaceformat.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Direction QVideoSurfaceFormat::Direction commendable public [0xc826b2b4a0 0xc826b2b600]} +&{YCbCrColorSpace QVideoSurfaceFormat::YCbCrColorSpace commendable public [0xc826b2b940 0xc826b2ba60 0xc826b2bb60 0xc826b2bce0 0xc826b2be60 0xc82183e000]} diff --git a/internal/binding/dump/QtMultimedia/QVideoWindowControl.txt b/internal/binding/dump/QtMultimedia/QVideoWindowControl.txt new file mode 100755 index 00000000..b397eb9d --- /dev/null +++ b/internal/binding/dump/QtMultimedia/QVideoWindowControl.txt @@ -0,0 +1,28 @@ +######################################## FUNCTIONS ######################################## +&{QVideoWindowControl QVideoWindowControl::QVideoWindowControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideowindowcontrol.h non constructor false false [0xc821a87740] } +&{aspectRatioMode QVideoWindowControl::aspectRatioMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideowindowcontrol.h pure plain false false Qt::AspectRatioMode [] } +&{brightness QVideoWindowControl::brightness commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideowindowcontrol.h pure plain false false int [] } +&{brightnessChanged QVideoWindowControl::brightnessChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideowindowcontrol.h non signal false false void [0xc821a87e00] } +&{contrast QVideoWindowControl::contrast commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideowindowcontrol.h pure plain false false int [] } +&{contrastChanged QVideoWindowControl::contrastChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideowindowcontrol.h non signal false false void [0xc821a6a380] } +&{displayRect QVideoWindowControl::displayRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideowindowcontrol.h pure plain false false QRect [] } +&{fullScreenChanged QVideoWindowControl::fullScreenChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideowindowcontrol.h non signal false false void [0xc821a6aa80] } +&{hue QVideoWindowControl::hue commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideowindowcontrol.h pure plain false false int [] } +&{hueChanged QVideoWindowControl::hueChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideowindowcontrol.h non signal false false void [0xc821a6b120] } +&{isFullScreen QVideoWindowControl::isFullScreen commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideowindowcontrol.h pure plain false false bool [] } +&{nativeSize QVideoWindowControl::nativeSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideowindowcontrol.h pure plain false false QSize [] } +&{nativeSizeChanged QVideoWindowControl::nativeSizeChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideowindowcontrol.h non signal false false void [] } +&{repaint QVideoWindowControl::repaint commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideowindowcontrol.h pure plain false false void [] } +&{saturation QVideoWindowControl::saturation commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideowindowcontrol.h pure plain false false int [] } +&{saturationChanged QVideoWindowControl::saturationChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideowindowcontrol.h non signal false false void [0xc821a6bfc0] } +&{setAspectRatioMode QVideoWindowControl::setAspectRatioMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideowindowcontrol.h pure plain false false void [0xc821a641e0] } +&{setBrightness QVideoWindowControl::setBrightness commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideowindowcontrol.h pure plain false false void [0xc821a64380] } +&{setContrast QVideoWindowControl::setContrast commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideowindowcontrol.h pure plain false false void [0xc821a64560] } +&{setDisplayRect QVideoWindowControl::setDisplayRect commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideowindowcontrol.h pure plain false false void [0xc821a646c0] } +&{setFullScreen QVideoWindowControl::setFullScreen commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideowindowcontrol.h pure plain false false void [0xc821a64820] } +&{setHue QVideoWindowControl::setHue commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideowindowcontrol.h pure plain false false void [0xc821a64a20] } +&{setSaturation QVideoWindowControl::setSaturation commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideowindowcontrol.h pure plain false false void [0xc821a64b80] } +&{setWinId QVideoWindowControl::setWinId commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideowindowcontrol.h pure plain false false void [0xc821a64d60] } +&{winId QVideoWindowControl::winId commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideowindowcontrol.h pure plain false false WId [] } +&{~QVideoWindowControl QVideoWindowControl::~QVideoWindowControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimedia/controls/qvideowindowcontrol.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimediaWidgets/QCameraViewfinder.txt b/internal/binding/dump/QtMultimediaWidgets/QCameraViewfinder.txt new file mode 100755 index 00000000..4bb5bf86 --- /dev/null +++ b/internal/binding/dump/QtMultimediaWidgets/QCameraViewfinder.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QCameraViewfinder QCameraViewfinder::QCameraViewfinder commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qcameraviewfinder.h non constructor false false [0xc822a764e0] } +&{mediaObject QCameraViewfinder::mediaObject commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qcameraviewfinder.h impure plain false false QMediaObject * [] } +&{setMediaObject QCameraViewfinder::setMediaObject commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qcameraviewfinder.h impure plain false false bool [0xc822a76860] } +&{~QCameraViewfinder QCameraViewfinder::~QCameraViewfinder commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qcameraviewfinder.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimediaWidgets/QGraphicsVideoItem.txt b/internal/binding/dump/QtMultimediaWidgets/QGraphicsVideoItem.txt new file mode 100755 index 00000000..2288f4ec --- /dev/null +++ b/internal/binding/dump/QtMultimediaWidgets/QGraphicsVideoItem.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{nativeSizeChanged QGraphicsVideoItem::nativeSizeChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qgraphicsvideoitem.h non signal false false void [0xc8223f9860] } +&{QGraphicsVideoItem QGraphicsVideoItem::QGraphicsVideoItem commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qgraphicsvideoitem_maemo6.cpp non constructor false false [0xc8226d6aa0] } +&{aspectRatioMode QGraphicsVideoItem::aspectRatioMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qgraphicsvideoitem_maemo6.cpp non plain false false Qt::AspectRatioMode [] } +&{boundingRect QGraphicsVideoItem::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qgraphicsvideoitem_maemo6.cpp impure plain false false QRectF [] } +&{mediaObject QGraphicsVideoItem::mediaObject commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qgraphicsvideoitem_maemo6.cpp impure plain false false QMediaObject * [] } +&{nativeSize QGraphicsVideoItem::nativeSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qgraphicsvideoitem_maemo6.cpp non plain false false QSizeF [] } +&{offset QGraphicsVideoItem::offset commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qgraphicsvideoitem_maemo6.cpp non plain false false QPointF [] } +&{paint QGraphicsVideoItem::paint commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qgraphicsvideoitem_maemo6.cpp impure plain false false void [0xc8226d7f20 0xc8227180e0 0xc8227183e0] } +&{setAspectRatioMode QGraphicsVideoItem::setAspectRatioMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qgraphicsvideoitem_maemo6.cpp non plain false false void [0xc8227188a0] } +&{setOffset QGraphicsVideoItem::setOffset commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qgraphicsvideoitem_maemo6.cpp non plain false false void [0xc822718ee0] } +&{setSize QGraphicsVideoItem::setSize commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qgraphicsvideoitem_maemo6.cpp non plain false false void [0xc8227192a0] } +&{size QGraphicsVideoItem::size commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qgraphicsvideoitem_maemo6.cpp non plain false false QSizeF [] } +&{~QGraphicsVideoItem QGraphicsVideoItem::~QGraphicsVideoItem commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qgraphicsvideoitem_maemo6.cpp non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimediaWidgets/QVideoWidget.txt b/internal/binding/dump/QtMultimediaWidgets/QVideoWidget.txt new file mode 100755 index 00000000..3c92fea0 --- /dev/null +++ b/internal/binding/dump/QtMultimediaWidgets/QVideoWidget.txt @@ -0,0 +1,29 @@ +######################################## FUNCTIONS ######################################## +&{aspectRatioMode QVideoWidget::aspectRatioMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidget.cpp non plain false false Qt::AspectRatioMode [] } +&{brightness QVideoWidget::brightness commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidget.cpp non plain false false int [] } +&{contrast QVideoWidget::contrast commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidget.cpp non plain false false int [] } +&{hue QVideoWidget::hue commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidget.cpp non plain false false int [] } +&{mediaObject QVideoWidget::mediaObject commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidget.cpp impure plain false false QMediaObject * [] } +&{saturation QVideoWidget::saturation commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidget.cpp non plain false false int [] } +&{setAspectRatioMode QVideoWidget::setAspectRatioMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidget.cpp non slot false false void [0xc822aa9340] } +&{setBrightness QVideoWidget::setBrightness commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidget.cpp non slot false false void [0xc822aa9620] } +&{setContrast QVideoWidget::setContrast commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidget.cpp non slot false false void [0xc822aa99c0] } +&{setFullScreen QVideoWidget::setFullScreen commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidget.cpp non slot false false void [0xc822aa9d40] } +&{setHue QVideoWidget::setHue commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidget.cpp non slot false false void [0xc822abc120] } +&{setSaturation QVideoWidget::setSaturation commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidget.cpp non slot false false void [0xc822abc3e0] } +&{QVideoWidget QVideoWidget::QVideoWidget commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidget.h non constructor false false [0xc822abc6e0] } +&{brightnessChanged QVideoWidget::brightnessChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidget.h non signal false false void [0xc822abd100] } +&{contrastChanged QVideoWidget::contrastChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidget.h non signal false false void [0xc822abd3e0] } +&{event QVideoWidget::event commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidget.h impure plain false false bool [0xc822abd660] } +&{fullScreenChanged QVideoWidget::fullScreenChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidget.h non signal false false void [0xc822abd8e0] } +&{hideEvent QVideoWidget::hideEvent commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidget.h impure plain false false void [0xc822abdb40] } +&{hueChanged QVideoWidget::hueChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidget.h non signal false false void [0xc822abdea0] } +&{isFullScreen QVideoWidget::isFullScreen commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidget.h non plain false false bool [] } +&{moveEvent QVideoWidget::moveEvent commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidget.h impure plain false false void [0xc822acc220] } +&{paintEvent QVideoWidget::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidget.h impure plain false false void [0xc822acc460] } +&{resizeEvent QVideoWidget::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidget.h impure plain false false void [0xc822acc680] } +&{saturationChanged QVideoWidget::saturationChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidget.h non signal false false void [0xc822acc8e0] } +&{showEvent QVideoWidget::showEvent commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidget.h impure plain false false void [0xc822accca0] } +&{sizeHint QVideoWidget::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidget.h impure plain false false QSize [] } +&{~QVideoWidget QVideoWidget::~QVideoWidget commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidget.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtMultimediaWidgets/QVideoWidgetControl.txt b/internal/binding/dump/QtMultimediaWidgets/QVideoWidgetControl.txt new file mode 100755 index 00000000..b05c8747 --- /dev/null +++ b/internal/binding/dump/QtMultimediaWidgets/QVideoWidgetControl.txt @@ -0,0 +1,22 @@ +######################################## FUNCTIONS ######################################## +&{QVideoWidgetControl QVideoWidgetControl::QVideoWidgetControl commendable protected /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidgetcontrol.h non constructor false false [0xc822ae6680] } +&{aspectRatioMode QVideoWidgetControl::aspectRatioMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidgetcontrol.h pure plain false false Qt::AspectRatioMode [] } +&{brightness QVideoWidgetControl::brightness commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidgetcontrol.h pure plain false false int [] } +&{brightnessChanged QVideoWidgetControl::brightnessChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidgetcontrol.h non signal false false void [0xc822ae6b20] } +&{contrast QVideoWidgetControl::contrast commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidgetcontrol.h pure plain false false int [] } +&{contrastChanged QVideoWidgetControl::contrastChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidgetcontrol.h non signal false false void [0xc822ae6e00] } +&{fullScreenChanged QVideoWidgetControl::fullScreenChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidgetcontrol.h non signal false false void [0xc822ae7140] } +&{hue QVideoWidgetControl::hue commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidgetcontrol.h pure plain false false int [] } +&{hueChanged QVideoWidgetControl::hueChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidgetcontrol.h non signal false false void [0xc822ae7680] } +&{isFullScreen QVideoWidgetControl::isFullScreen commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidgetcontrol.h pure plain false false bool [] } +&{saturation QVideoWidgetControl::saturation commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidgetcontrol.h pure plain false false int [] } +&{saturationChanged QVideoWidgetControl::saturationChanged commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidgetcontrol.h non signal false false void [0xc822ae7c20] } +&{setAspectRatioMode QVideoWidgetControl::setAspectRatioMode commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidgetcontrol.h pure plain false false void [0xc822ae7f00] } +&{setBrightness QVideoWidgetControl::setBrightness commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidgetcontrol.h pure plain false false void [0xc822af2180] } +&{setContrast QVideoWidgetControl::setContrast commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidgetcontrol.h pure plain false false void [0xc822af2460] } +&{setFullScreen QVideoWidgetControl::setFullScreen commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidgetcontrol.h pure plain false false void [0xc822af2640] } +&{setHue QVideoWidgetControl::setHue commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidgetcontrol.h pure plain false false void [0xc822af2960] } +&{setSaturation QVideoWidgetControl::setSaturation commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidgetcontrol.h pure plain false false void [0xc822af2bc0] } +&{videoWidget QVideoWidgetControl::videoWidget commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidgetcontrol.h pure plain false false QWidget * [] } +&{~QVideoWidgetControl QVideoWidgetControl::~QVideoWidgetControl commendable public /work/build/qt5_workdir/w/s/qtmultimedia/src/multimediawidgets/qvideowidgetcontrol.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtNetwork/QAbstractNetworkCache.txt b/internal/binding/dump/QtNetwork/QAbstractNetworkCache.txt new file mode 100755 index 00000000..4e26cc5b --- /dev/null +++ b/internal/binding/dump/QtNetwork/QAbstractNetworkCache.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{QAbstractNetworkCache QAbstractNetworkCache::QAbstractNetworkCache commendable protected /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h non constructor false false [0xc822c56140] } +&{cacheSize QAbstractNetworkCache::cacheSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h pure plain false false qint64 [] } +&{clear QAbstractNetworkCache::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h pure slot false false void [] } +&{data QAbstractNetworkCache::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h pure plain false false QIODevice * [0xc822c568e0] } +&{insert QAbstractNetworkCache::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h pure plain false false void [0xc822c56b20] } +&{metaData QAbstractNetworkCache::metaData commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h pure plain false false QNetworkCacheMetaData [0xc822c56d40] } +&{prepare QAbstractNetworkCache::prepare commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h pure plain false false QIODevice * [0xc822c56f20] } +&{remove QAbstractNetworkCache::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h pure plain false false bool [0xc822c57160] } +&{updateMetaData QAbstractNetworkCache::updateMetaData commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h pure plain false false void [0xc822c572e0] } +&{~QAbstractNetworkCache QAbstractNetworkCache::~QAbstractNetworkCache commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtNetwork/QAbstractSocket.txt b/internal/binding/dump/QtNetwork/QAbstractSocket.txt new file mode 100755 index 00000000..535cd528 --- /dev/null +++ b/internal/binding/dump/QtNetwork/QAbstractSocket.txt @@ -0,0 +1,64 @@ +######################################## FUNCTIONS ######################################## +&{QAbstractSocket QAbstractSocket::QAbstractSocket commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non constructor false false [0xc8231bab00 0xc8231baba0] } +&{abort QAbstractSocket::abort commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non plain false false void [] } +&{atEnd QAbstractSocket::atEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h impure plain false false bool [] } +&{bind QAbstractSocket::bind commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non plain false false bool [0xc8231bb7a0 0xc8231bb880 0xc8231bb920] } +&{bind QAbstractSocket::bind commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non plain false true 2 bool [0xc8231bbb80 0xc8231bbc40] } +&{bytesAvailable QAbstractSocket::bytesAvailable commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h impure plain false false qint64 [] } +&{bytesToWrite QAbstractSocket::bytesToWrite commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h impure plain false false qint64 [] } +&{canReadLine QAbstractSocket::canReadLine commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h impure plain false false bool [] } +&{close QAbstractSocket::close commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h impure plain false false void [] } +&{connectToHost QAbstractSocket::connectToHost commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h impure plain false true 2 void [0xc8231aa440 0xc8231aa540 0xc8231aa600] } +&{connectToHost QAbstractSocket::connectToHost commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h impure plain false false void [0xc8231aa840 0xc8231aa8e0 0xc8231aa980 0xc8231aaa60] } +&{connected QAbstractSocket::connected commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non signal false false void [] } +&{disconnectFromHost QAbstractSocket::disconnectFromHost commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h impure plain false false void [] } +&{disconnected QAbstractSocket::disconnected commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non signal false false void [] } +&{error QAbstractSocket::error commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non signal false true 2 void [0xc8231ab180] } +&{error QAbstractSocket::error commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non plain false false SocketError [] } +&{flush QAbstractSocket::flush commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non plain false false bool [] } +&{hostFound QAbstractSocket::hostFound commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non signal false false void [] } +&{isSequential QAbstractSocket::isSequential commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h impure plain false false bool [] } +&{isValid QAbstractSocket::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non plain false false bool [] } +&{localAddress QAbstractSocket::localAddress commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non plain false false QHostAddress [] } +&{localPort QAbstractSocket::localPort commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non plain false false quint16 [] } +&{pauseMode QAbstractSocket::pauseMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non plain false false PauseModes [] } +&{peerAddress QAbstractSocket::peerAddress commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non plain false false QHostAddress [] } +&{peerName QAbstractSocket::peerName commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non plain false false QString [] } +&{peerPort QAbstractSocket::peerPort commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non plain false false quint16 [] } +&{proxy QAbstractSocket::proxy commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non plain false false QNetworkProxy [] } +&{proxyAuthenticationRequired QAbstractSocket::proxyAuthenticationRequired commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non signal false false void [0xc823182500 0xc823182600] } +&{readBufferSize QAbstractSocket::readBufferSize commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non plain false false qint64 [] } +&{readData QAbstractSocket::readData commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h impure plain false false qint64 [0xc8231829a0 0xc823182a40] } +&{readLineData QAbstractSocket::readLineData commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h impure plain false false qint64 [0xc823182c80 0xc823182d20] } +&{resume QAbstractSocket::resume commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h impure plain false false void [] } +&{setLocalAddress QAbstractSocket::setLocalAddress commendable protected /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non plain false false void [0xc8231830c0] } +&{setLocalPort QAbstractSocket::setLocalPort commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non plain false false void [0xc823183380] } +&{setPauseMode QAbstractSocket::setPauseMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non plain false false void [0xc8231835a0] } +&{setPeerAddress QAbstractSocket::setPeerAddress commendable protected /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non plain false false void [0xc8231837e0] } +&{setPeerName QAbstractSocket::setPeerName commendable protected /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non plain false false void [0xc823183ac0] } +&{setPeerPort QAbstractSocket::setPeerPort commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non plain false false void [0xc823183d20] } +&{setProxy QAbstractSocket::setProxy commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non plain false false void [0xc823183fc0] } +&{setReadBufferSize QAbstractSocket::setReadBufferSize commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h impure plain false false void [0xc82316a240] } +&{setSocketDescriptor QAbstractSocket::setSocketDescriptor commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h impure plain false false bool [0xc82316a480 0xc82316a500 0xc82316a580] } +&{setSocketError QAbstractSocket::setSocketError commendable protected /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non plain false false void [0xc82316a760] } +&{setSocketOption QAbstractSocket::setSocketOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h impure plain false false void [0xc82316a980 0xc82316aa80] } +&{setSocketState QAbstractSocket::setSocketState commendable protected /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non plain false false void [0xc82316ace0] } +&{socketDescriptor QAbstractSocket::socketDescriptor commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h impure plain false false qintptr [] } +&{socketOption QAbstractSocket::socketOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h impure plain false false QVariant [0xc82316afe0] } +&{socketType QAbstractSocket::socketType commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non plain false false SocketType [] } +&{state QAbstractSocket::state commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non plain false false SocketState [] } +&{stateChanged QAbstractSocket::stateChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h non signal false false void [0xc82316b4c0] } +&{waitForBytesWritten QAbstractSocket::waitForBytesWritten commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h impure plain false false bool [0xc82316b6c0] } +&{waitForConnected QAbstractSocket::waitForConnected commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h impure plain false false bool [0xc82316b860] } +&{waitForDisconnected QAbstractSocket::waitForDisconnected commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h impure plain false false bool [0xc82316bac0] } +&{waitForReadyRead QAbstractSocket::waitForReadyRead commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h impure plain false false bool [0xc82316bc80] } +&{writeData QAbstractSocket::writeData commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h impure plain false false qint64 [0xc82316bee0 0xc82316bfa0] } +&{~QAbstractSocket QAbstractSocket::~QAbstractSocket commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qabstractsocket.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{BindFlag QAbstractSocket::BindFlag commendable public QAbstractSocket::BindMode [0xc8231df1e0 0xc8231df2e0 0xc8231df380 0xc8231df420]} +&{NetworkLayerProtocol QAbstractSocket::NetworkLayerProtocol commendable public [0xc8231df660 0xc8231df6e0 0xc8231df780 0xc8231df840]} +&{PauseMode QAbstractSocket::PauseMode commendable public QAbstractSocket::PauseModes [0xc8231dfb60 0xc8231dfc00]} +&{SocketError QAbstractSocket::SocketError commendable public [0xc8231dfde0 0xc8231dfec0 0xc8231dffc0 0xc8231c8120 0xc8231c8240 0xc8231c8360 0xc8231c84a0 0xc8231c8580 0xc8231c8680 0xc8231c87a0 0xc8231c88e0 0xc8231c89c0 0xc8231c8ae0 0xc8231c8c40 0xc8231c8d20 0xc8231c8e20 0xc8231c8f80 0xc8231c9080 0xc8231c91c0 0xc8231c9280 0xc8231c9300 0xc8231c93c0 0xc8231c94a0 0xc8231c9560]} +&{SocketOption QAbstractSocket::SocketOption commendable public [0xc8231c9820 0xc8231c98a0 0xc8231c9940 0xc8231c9a40 0xc8231c9b60 0xc8231c9c60 0xc8231c9d60]} +&{SocketState QAbstractSocket::SocketState commendable public [0xc8231c9fa0 0xc8231ba040 0xc8231ba0e0 0xc8231ba160 0xc8231ba260 0xc8231ba2e0 0xc8231ba360]} +&{SocketType QAbstractSocket::SocketType commendable public [0xc8231ba520 0xc8231ba5a0 0xc8231ba6a0]} diff --git a/internal/binding/dump/QtNetwork/QAuthenticator.txt b/internal/binding/dump/QtNetwork/QAuthenticator.txt new file mode 100755 index 00000000..8161665b --- /dev/null +++ b/internal/binding/dump/QtNetwork/QAuthenticator.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{QAuthenticator QAuthenticator::QAuthenticator commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qauthenticator.h non constructor false false [] } +&{QAuthenticator QAuthenticator::QAuthenticator commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qauthenticator.h non constructor false true 2 [0xc8233385c0] } +&{isNull QAuthenticator::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qauthenticator.h non plain false false bool [] } +&{operator!= QAuthenticator::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qauthenticator.h non plain false false bool [0xc823338a40] } +&{operator= QAuthenticator::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qauthenticator.h non plain false false QAuthenticator & [0xc823338c80] } +&{operator== QAuthenticator::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qauthenticator.h non plain false false bool [0xc823338f00] } +&{option QAuthenticator::option commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qauthenticator.h non plain false false QVariant [0xc8233391a0] } +&{options QAuthenticator::options commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qauthenticator.h non plain false false QVariantHash [] } +&{password QAuthenticator::password commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qauthenticator.h non plain false false QString [] } +&{realm QAuthenticator::realm commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qauthenticator.h non plain false false QString [] } +&{setOption QAuthenticator::setOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qauthenticator.h non plain false false void [0xc823339780 0xc823339860] } +&{setPassword QAuthenticator::setPassword commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qauthenticator.h non plain false false void [0xc823339aa0] } +&{setUser QAuthenticator::setUser commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qauthenticator.h non plain false false void [0xc823339ee0] } +&{user QAuthenticator::user commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qauthenticator.h non plain false false QString [] } +&{~QAuthenticator QAuthenticator::~QAuthenticator commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qauthenticator.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtNetwork/QDnsDomainNameRecord.txt b/internal/binding/dump/QtNetwork/QDnsDomainNameRecord.txt new file mode 100755 index 00000000..e66dc14d --- /dev/null +++ b/internal/binding/dump/QtNetwork/QDnsDomainNameRecord.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{QDnsDomainNameRecord QDnsDomainNameRecord::QDnsDomainNameRecord commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non constructor false false [] } +&{QDnsDomainNameRecord QDnsDomainNameRecord::QDnsDomainNameRecord commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non constructor false true 2 [0xc823324620] } +&{name QDnsDomainNameRecord::name commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false QString [] } +&{operator= QDnsDomainNameRecord::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false QDnsDomainNameRecord & [0xc823324a40] } +&{swap QDnsDomainNameRecord::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false void [0xc823324ce0] } +&{timeToLive QDnsDomainNameRecord::timeToLive commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false quint32 [] } +&{value QDnsDomainNameRecord::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false QString [] } +&{~QDnsDomainNameRecord QDnsDomainNameRecord::~QDnsDomainNameRecord commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtNetwork/QDnsHostAddressRecord.txt b/internal/binding/dump/QtNetwork/QDnsHostAddressRecord.txt new file mode 100755 index 00000000..614b276f --- /dev/null +++ b/internal/binding/dump/QtNetwork/QDnsHostAddressRecord.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{QDnsHostAddressRecord QDnsHostAddressRecord::QDnsHostAddressRecord commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non constructor false false [] } +&{QDnsHostAddressRecord QDnsHostAddressRecord::QDnsHostAddressRecord commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non constructor false true 2 [0xc8233255a0] } +&{name QDnsHostAddressRecord::name commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false QString [] } +&{operator= QDnsHostAddressRecord::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false QDnsHostAddressRecord & [0xc823325a00] } +&{swap QDnsHostAddressRecord::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false void [0xc823325d00] } +&{timeToLive QDnsHostAddressRecord::timeToLive commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false quint32 [] } +&{value QDnsHostAddressRecord::value commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false QHostAddress [] } +&{~QDnsHostAddressRecord QDnsHostAddressRecord::~QDnsHostAddressRecord commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtNetwork/QDnsLookup.txt b/internal/binding/dump/QtNetwork/QDnsLookup.txt new file mode 100755 index 00000000..58e9d6f0 --- /dev/null +++ b/internal/binding/dump/QtNetwork/QDnsLookup.txt @@ -0,0 +1,30 @@ +######################################## FUNCTIONS ######################################## +&{QDnsLookup QDnsLookup::QDnsLookup commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.cpp non constructor false true 3 [0xc82330c3e0 0xc82330c460 0xc82330c520 0xc82330c600] } +&{error QDnsLookup::error commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.cpp non plain false false Error [] } +&{errorString QDnsLookup::errorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.cpp non plain false false QString [] } +&{name QDnsLookup::name commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.cpp non plain false false QString [] } +&{nameserver QDnsLookup::nameserver commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.cpp non plain false false QHostAddress [] } +&{setName QDnsLookup::setName commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.cpp non plain false false void [0xc82330cd20] } +&{setNameserver QDnsLookup::setNameserver commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.cpp non plain false false void [0xc82330cfe0] } +&{setType QDnsLookup::setType commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.cpp non plain false false void [0xc82330d240] } +&{type QDnsLookup::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.cpp non plain false false Type [] } +&{QDnsLookup QDnsLookup::QDnsLookup commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non constructor false false [0xc8232fc5e0] } +&{QDnsLookup QDnsLookup::QDnsLookup commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non constructor false true 2 [0xc8232fc800 0xc8232fc880 0xc8232fc960] } +&{abort QDnsLookup::abort commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non slot false false void [] } +&{canonicalNameRecords QDnsLookup::canonicalNameRecords commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false QList [] } +&{finished QDnsLookup::finished commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non signal false false void [] } +&{hostAddressRecords QDnsLookup::hostAddressRecords commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false QList [] } +&{isFinished QDnsLookup::isFinished commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false bool [] } +&{lookup QDnsLookup::lookup commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non slot false false void [] } +&{mailExchangeRecords QDnsLookup::mailExchangeRecords commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false QList [] } +&{nameChanged QDnsLookup::nameChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non signal false false void [0xc8232fd8a0] } +&{nameServerRecords QDnsLookup::nameServerRecords commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false QList [] } +&{nameserverChanged QDnsLookup::nameserverChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non signal false false void [0xc8232fddc0] } +&{pointerRecords QDnsLookup::pointerRecords commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false QList [] } +&{serviceRecords QDnsLookup::serviceRecords commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false QList [] } +&{textRecords QDnsLookup::textRecords commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false QList [] } +&{typeChanged QDnsLookup::typeChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non signal false false void [0xc8232ce540] } +&{~QDnsLookup QDnsLookup::~QDnsLookup commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Error QDnsLookup::Error commendable public [0xc82330d600 0xc82330d6a0 0xc82330d740 0xc82330d840 0xc82330d960 0xc82330da60 0xc82330dba0 0xc82330dc60]} +&{Type QDnsLookup::Type commendable public [0xc82330de20 0xc82330dea0 0xc82330df60 0xc8232fc020 0xc8232fc0c0 0xc8232fc160 0xc8232fc240 0xc8232fc2c0 0xc8232fc380]} diff --git a/internal/binding/dump/QtNetwork/QDnsMailExchangeRecord.txt b/internal/binding/dump/QtNetwork/QDnsMailExchangeRecord.txt new file mode 100755 index 00000000..f6a454e2 --- /dev/null +++ b/internal/binding/dump/QtNetwork/QDnsMailExchangeRecord.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{QDnsMailExchangeRecord QDnsMailExchangeRecord::QDnsMailExchangeRecord commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non constructor false false [] } +&{QDnsMailExchangeRecord QDnsMailExchangeRecord::QDnsMailExchangeRecord commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non constructor false true 2 [0xc8232cf7c0] } +&{exchange QDnsMailExchangeRecord::exchange commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false QString [] } +&{name QDnsMailExchangeRecord::name commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false QString [] } +&{operator= QDnsMailExchangeRecord::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false QDnsMailExchangeRecord & [0xc8232cfcc0] } +&{preference QDnsMailExchangeRecord::preference commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false quint16 [] } +&{swap QDnsMailExchangeRecord::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false void [0xc8232c40c0] } +&{timeToLive QDnsMailExchangeRecord::timeToLive commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false quint32 [] } +&{~QDnsMailExchangeRecord QDnsMailExchangeRecord::~QDnsMailExchangeRecord commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtNetwork/QDnsServiceRecord.txt b/internal/binding/dump/QtNetwork/QDnsServiceRecord.txt new file mode 100755 index 00000000..35574980 --- /dev/null +++ b/internal/binding/dump/QtNetwork/QDnsServiceRecord.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QDnsServiceRecord QDnsServiceRecord::QDnsServiceRecord commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non constructor false false [] } +&{QDnsServiceRecord QDnsServiceRecord::QDnsServiceRecord commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non constructor false true 2 [0xc8232c4800] } +&{name QDnsServiceRecord::name commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false QString [] } +&{operator= QDnsServiceRecord::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false QDnsServiceRecord & [0xc8232c4c80] } +&{port QDnsServiceRecord::port commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false quint16 [] } +&{priority QDnsServiceRecord::priority commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false quint16 [] } +&{swap QDnsServiceRecord::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false void [0xc8232c5220] } +&{target QDnsServiceRecord::target commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false QString [] } +&{timeToLive QDnsServiceRecord::timeToLive commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false quint32 [] } +&{weight QDnsServiceRecord::weight commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false quint16 [] } +&{~QDnsServiceRecord QDnsServiceRecord::~QDnsServiceRecord commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtNetwork/QDnsTextRecord.txt b/internal/binding/dump/QtNetwork/QDnsTextRecord.txt new file mode 100755 index 00000000..2339c65a --- /dev/null +++ b/internal/binding/dump/QtNetwork/QDnsTextRecord.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{QDnsTextRecord QDnsTextRecord::QDnsTextRecord commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non constructor false false [] } +&{QDnsTextRecord QDnsTextRecord::QDnsTextRecord commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non constructor false true 2 [0xc8232c5bc0] } +&{name QDnsTextRecord::name commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false QString [] } +&{operator= QDnsTextRecord::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false QDnsTextRecord & [0xc8232c5fe0] } +&{swap QDnsTextRecord::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false void [0xc8232b42a0] } +&{timeToLive QDnsTextRecord::timeToLive commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false quint32 [] } +&{values QDnsTextRecord::values commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non plain false false QList [] } +&{~QDnsTextRecord QDnsTextRecord::~QDnsTextRecord commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qdnslookup.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtNetwork/QHostAddress.txt b/internal/binding/dump/QtNetwork/QHostAddress.txt new file mode 100755 index 00000000..f29aea14 --- /dev/null +++ b/internal/binding/dump/QtNetwork/QHostAddress.txt @@ -0,0 +1,38 @@ +######################################## FUNCTIONS ######################################## +&{QHostAddress QHostAddress::QHostAddress commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non constructor false false [] } +&{QHostAddress QHostAddress::QHostAddress commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non constructor false true 9 [0xc8232b5180] } +&{QHostAddress QHostAddress::QHostAddress commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non constructor false true 8 [0xc8232b5400] } +&{QHostAddress QHostAddress::QHostAddress commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non constructor false true 7 [0xc8232b56a0] } +&{QHostAddress QHostAddress::QHostAddress commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non constructor false true 5 [0xc8232b5920] } +&{QHostAddress QHostAddress::QHostAddress commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non constructor false true 4 [0xc8232b5bc0] } +&{QHostAddress QHostAddress::QHostAddress commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non constructor false true 6 [0xc8232b5e00] } +&{QHostAddress QHostAddress::QHostAddress commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non constructor false true 2 [0xc82329c040] } +&{QHostAddress QHostAddress::QHostAddress commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non constructor false true 3 [0xc82329c2c0] } +&{clear QHostAddress::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non plain false false void [] } +&{isInSubnet QHostAddress::isInSubnet commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non plain false false bool [0xc82329c5e0 0xc82329c6c0] } +&{isInSubnet QHostAddress::isInSubnet commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non plain false true 2 bool [0xc82329c8e0] } +&{isLoopback QHostAddress::isLoopback commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non plain false false bool [] } +&{isNull QHostAddress::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non plain false false bool [] } +&{operator!= QHostAddress::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non plain false true 2 bool [0xc82329cdc0] } +&{operator!= QHostAddress::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non plain false false bool [0xc82329cf80] } +&{operator= QHostAddress::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non plain false false QHostAddress & [0xc82329d240] } +&{operator= QHostAddress::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non plain false true 2 QHostAddress & [0xc82329d4a0] } +&{operator== QHostAddress::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non plain false true 2 bool [0xc82329d660] } +&{operator== QHostAddress::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non plain false false bool [0xc82329d8c0] } +&{parseSubnet QHostAddress::parseSubnet commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non plain true false QPair [0xc82329dc00] } +&{protocol QHostAddress::protocol commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non plain false false QAbstractSocket::NetworkLayerProtocol [] } +&{scopeId QHostAddress::scopeId commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non plain false false QString [] } +&{setAddress QHostAddress::setAddress commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non plain false true 5 bool [0xc823288080] } +&{setAddress QHostAddress::setAddress commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non plain false true 4 void [0xc8232882a0] } +&{setAddress QHostAddress::setAddress commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non plain false true 3 void [0xc823288560] } +&{setAddress QHostAddress::setAddress commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non plain false true 6 void [0xc823288760] } +&{setAddress QHostAddress::setAddress commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non plain false false void [0xc823288a00] } +&{setAddress QHostAddress::setAddress commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non plain false true 2 void [0xc823288be0] } +&{setScopeId QHostAddress::setScopeId commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non plain false false void [0xc823288e20] } +&{toIPv4Address QHostAddress::toIPv4Address commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non plain false false quint32 [] } +&{toIPv4Address QHostAddress::toIPv4Address commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non plain false true 2 quint32 [0xc8232891c0] } +&{toIPv6Address QHostAddress::toIPv6Address commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non plain false false Q_IPV6ADDR [] } +&{toString QHostAddress::toString commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non plain false false QString [] } +&{~QHostAddress QHostAddress::~QHostAddress commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostaddress.h non destructor false false [] } +######################################## ENUMS ######################################## +&{SpecialAddress QHostAddress::SpecialAddress commendable public [0xc8232b49a0 0xc8232b4a80 0xc8232b4b20 0xc8232b4bc0 0xc8232b4c60 0xc8232b4d40 0xc8232b4de0]} diff --git a/internal/binding/dump/QtNetwork/QHostInfo.txt b/internal/binding/dump/QtNetwork/QHostInfo.txt new file mode 100755 index 00000000..0ca5d222 --- /dev/null +++ b/internal/binding/dump/QtNetwork/QHostInfo.txt @@ -0,0 +1,22 @@ +######################################## FUNCTIONS ######################################## +&{QHostInfo QHostInfo::QHostInfo commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostinfo.h non constructor false true 2 [0xc823278040] } +&{QHostInfo QHostInfo::QHostInfo commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostinfo.h non constructor false false [0xc8232782c0] } +&{abortHostLookup QHostInfo::abortHostLookup commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostinfo.h non plain true false void [0xc823278540] } +&{addresses QHostInfo::addresses commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostinfo.h non plain false false QList [] } +&{error QHostInfo::error commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostinfo.h non plain false false HostInfoError [] } +&{errorString QHostInfo::errorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostinfo.h non plain false false QString [] } +&{fromName QHostInfo::fromName commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostinfo.h non plain true false QHostInfo [0xc823278b60] } +&{hostName QHostInfo::hostName commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostinfo.h non plain false false QString [] } +&{lookupHost QHostInfo::lookupHost commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostinfo.h non plain true false int [0xc823278f00 0xc823278fa0 0xc823279060] } +&{lookupId QHostInfo::lookupId commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostinfo.h non plain false false int [] } +&{operator= QHostInfo::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostinfo.h non plain false false QHostInfo & [0xc8232793c0] } +&{setAddresses QHostInfo::setAddresses commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostinfo.h non plain false false void [0xc823279640] } +&{setError QHostInfo::setError commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostinfo.h non plain false false void [0xc8232798c0] } +&{setErrorString QHostInfo::setErrorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostinfo.h non plain false false void [0xc823279b40] } +&{setHostName QHostInfo::setHostName commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostinfo.h non plain false false void [0xc823279d40] } +&{setLookupId QHostInfo::setLookupId commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostinfo.h non plain false false void [0xc823279f80] } +&{~QHostInfo QHostInfo::~QHostInfo commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostinfo.h non destructor false false [] } +&{localHostName QHostInfo::localHostName commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qhostinfo_winrt.cpp non plain true false QString [] } +&{localDomainName QHostInfo::localDomainName commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface_winrt.cpp non plain true false QString [] } +######################################## ENUMS ######################################## +&{HostInfoError QHostInfo::HostInfoError commendable public [0xc823289ca0 0xc823289d20 0xc823289da0]} diff --git a/internal/binding/dump/QtNetwork/QHttpMultiPart.txt b/internal/binding/dump/QtNetwork/QHttpMultiPart.txt new file mode 100755 index 00000000..f3527bff --- /dev/null +++ b/internal/binding/dump/QtNetwork/QHttpMultiPart.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{QHttpMultiPart QHttpMultiPart::QHttpMultiPart commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qhttpmultipart.h non constructor false true 2 [0xc822912520 0xc8229125c0] } +&{QHttpMultiPart QHttpMultiPart::QHttpMultiPart commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qhttpmultipart.h non constructor false false [0xc8229127e0] } +&{append QHttpMultiPart::append commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qhttpmultipart.h non plain false false void [0xc822912a60] } +&{boundary QHttpMultiPart::boundary commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qhttpmultipart.h non plain false false QByteArray [] } +&{setBoundary QHttpMultiPart::setBoundary commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qhttpmultipart.h non plain false false void [0xc822912e60] } +&{setContentType QHttpMultiPart::setContentType commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qhttpmultipart.h non plain false false void [0xc8229130e0] } +&{~QHttpMultiPart QHttpMultiPart::~QHttpMultiPart commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qhttpmultipart.h non destructor false false [] } +######################################## ENUMS ######################################## +&{ContentType QHttpMultiPart::ContentType commendable public [0xc8229120a0 0xc822912120 0xc822912200 0xc8229122a0]} diff --git a/internal/binding/dump/QtNetwork/QHttpPart.txt b/internal/binding/dump/QtNetwork/QHttpPart.txt new file mode 100755 index 00000000..5054c48f --- /dev/null +++ b/internal/binding/dump/QtNetwork/QHttpPart.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QHttpPart QHttpPart::QHttpPart commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qhttpmultipart.h non constructor false false [] } +&{QHttpPart QHttpPart::QHttpPart commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qhttpmultipart.h non constructor false true 2 [0xc8229135e0] } +&{operator!= QHttpPart::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/access/qhttpmultipart.h non plain false false bool [0xc8229138a0] } +&{operator= QHttpPart::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/access/qhttpmultipart.h non plain false false QHttpPart & [0xc822913b60] } +&{operator== QHttpPart::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/access/qhttpmultipart.h non plain false false bool [0xc822913e60] } +&{setBody QHttpPart::setBody commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qhttpmultipart.h non plain false false void [0xc822718140] } +&{setBodyDevice QHttpPart::setBodyDevice commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qhttpmultipart.h non plain false false void [0xc8227183c0] } +&{setHeader QHttpPart::setHeader commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qhttpmultipart.h non plain false false void [0xc822718620 0xc822718720] } +&{setRawHeader QHttpPart::setRawHeader commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qhttpmultipart.h non plain false false void [0xc822718980 0xc822718ac0] } +&{swap QHttpPart::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qhttpmultipart.h non plain false false void [0xc822718d00] } +&{~QHttpPart QHttpPart::~QHttpPart commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qhttpmultipart.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtNetwork/QLocalServer.txt b/internal/binding/dump/QtNetwork/QLocalServer.txt new file mode 100755 index 00000000..922f5d1e --- /dev/null +++ b/internal/binding/dump/QtNetwork/QLocalServer.txt @@ -0,0 +1,23 @@ +######################################## FUNCTIONS ######################################## +&{setSocketOptions QLocalServer::setSocketOptions commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalserver.cpp non plain false false void [0xc82315a380] } +&{QLocalServer QLocalServer::QLocalServer commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalserver.h non constructor false false [0xc82315aca0] } +&{close QLocalServer::close commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalserver.h non plain false false void [] } +&{errorString QLocalServer::errorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalserver.h non plain false false QString [] } +&{fullServerName QLocalServer::fullServerName commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalserver.h non plain false false QString [] } +&{hasPendingConnections QLocalServer::hasPendingConnections commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalserver.h impure plain false false bool [] } +&{incomingConnection QLocalServer::incomingConnection commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalserver.h impure plain false false void [0xc82315b700] } +&{isListening QLocalServer::isListening commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalserver.h non plain false false bool [] } +&{listen QLocalServer::listen commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalserver.h non plain false false bool [0xc82315ba60] } +&{listen QLocalServer::listen commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalserver.h non plain false true 2 bool [0xc82315bc80] } +&{maxPendingConnections QLocalServer::maxPendingConnections commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalserver.h non plain false false int [] } +&{newConnection QLocalServer::newConnection commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalserver.h non signal false false void [] } +&{nextPendingConnection QLocalServer::nextPendingConnection commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalserver.h impure plain false false QLocalSocket * [] } +&{removeServer QLocalServer::removeServer commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalserver.h non plain true false bool [0xc82314a240] } +&{serverError QLocalServer::serverError commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalserver.h non plain false false QAbstractSocket::SocketError [] } +&{serverName QLocalServer::serverName commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalserver.h non plain false false QString [] } +&{setMaxPendingConnections QLocalServer::setMaxPendingConnections commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalserver.h non plain false false void [0xc82314a740] } +&{socketOptions QLocalServer::socketOptions commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalserver.h non plain false false SocketOptions [] } +&{waitForNewConnection QLocalServer::waitForNewConnection commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalserver.h non plain false false bool [0xc82314aa80 0xc82314ab20] } +&{~QLocalServer QLocalServer::~QLocalServer commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalserver.h non destructor false false [] } +######################################## ENUMS ######################################## +&{SocketOption QLocalServer::SocketOption commendable public QLocalServer::SocketOptions [0xc82315a5e0 0xc82315a660 0xc82315a700 0xc82315a7e0 0xc82315a8e0]} diff --git a/internal/binding/dump/QtNetwork/QLocalSocket.txt b/internal/binding/dump/QtNetwork/QLocalSocket.txt new file mode 100755 index 00000000..6c17d753 --- /dev/null +++ b/internal/binding/dump/QtNetwork/QLocalSocket.txt @@ -0,0 +1,37 @@ +######################################## FUNCTIONS ######################################## +&{open QLocalSocket::open commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket.cpp impure plain false false bool [0xc82314b160] } +&{QLocalSocket QLocalSocket::QLocalSocket commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket.h non constructor false false [0xc82313e700] } +&{connectToServer QLocalSocket::connectToServer commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket.h non plain false true 2 void [0xc82313eac0 0xc82313eb40] } +&{connected QLocalSocket::connected commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket.h non signal false false void [] } +&{disconnected QLocalSocket::disconnected commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket.h non signal false false void [] } +&{error QLocalSocket::error commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket.h non signal false true 2 void [0xc82313ef60] } +&{fullServerName QLocalSocket::fullServerName commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket.h non plain false false QString [] } +&{isSequential QLocalSocket::isSequential commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket.h impure plain false false bool [] } +&{serverName QLocalSocket::serverName commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket.h non plain false false QString [] } +&{setServerName QLocalSocket::setServerName commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket.h non plain false false void [0xc82313f540] } +&{state QLocalSocket::state commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket.h non plain false false LocalSocketState [] } +&{stateChanged QLocalSocket::stateChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket.h non signal false false void [0xc82313f940] } +&{~QLocalSocket QLocalSocket::~QLocalSocket commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket.h non destructor false false [] } +&{abort QLocalSocket::abort commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket_win.cpp non plain false false void [] } +&{bytesAvailable QLocalSocket::bytesAvailable commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket_win.cpp impure plain false false qint64 [] } +&{bytesToWrite QLocalSocket::bytesToWrite commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket_win.cpp impure plain false false qint64 [] } +&{canReadLine QLocalSocket::canReadLine commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket_win.cpp impure plain false false bool [] } +&{close QLocalSocket::close commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket_win.cpp impure plain false false void [] } +&{connectToServer QLocalSocket::connectToServer commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket_win.cpp non plain false false void [0xc82312a3c0] } +&{disconnectFromServer QLocalSocket::disconnectFromServer commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket_win.cpp non plain false false void [] } +&{error QLocalSocket::error commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket_win.cpp non plain false false LocalSocketError [] } +&{flush QLocalSocket::flush commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket_win.cpp non plain false false bool [] } +&{isValid QLocalSocket::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket_win.cpp non plain false false bool [] } +&{readBufferSize QLocalSocket::readBufferSize commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket_win.cpp non plain false false qint64 [] } +&{readData QLocalSocket::readData commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket_win.cpp impure plain false false qint64 [0xc82312ac40 0xc82312ad00] } +&{setReadBufferSize QLocalSocket::setReadBufferSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket_win.cpp non plain false false void [0xc82312afc0] } +&{setSocketDescriptor QLocalSocket::setSocketDescriptor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket_win.cpp non plain false false bool [0xc82312b200 0xc82312b2a0 0xc82312b320] } +&{socketDescriptor QLocalSocket::socketDescriptor commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket_win.cpp non plain false false qintptr [] } +&{waitForBytesWritten QLocalSocket::waitForBytesWritten commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket_win.cpp impure plain false false bool [0xc82312b6c0] } +&{waitForConnected QLocalSocket::waitForConnected commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket_win.cpp non plain false false bool [0xc82312b940] } +&{waitForDisconnected QLocalSocket::waitForDisconnected commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket_win.cpp non plain false false bool [0xc82312bb60] } +&{waitForReadyRead QLocalSocket::waitForReadyRead commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket_win.cpp impure plain false false bool [0xc82312bdc0] } +&{writeData QLocalSocket::writeData commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qlocalsocket_win.cpp impure plain false false qint64 [0xc82312bfe0 0xc82310c080] } +######################################## ENUMS ######################################## +&{LocalSocketError QLocalSocket::LocalSocketError commendable public [0xc82314b420 0xc82314b500 0xc82314b5a0 0xc82314b6c0 0xc82314b820 0xc82314b940 0xc82314ba60 0xc82314bb40 0xc82314bc80 0xc82314bda0 0xc82314bea0]} +&{LocalSocketState QLocalSocket::LocalSocketState commendable public [0xc82313e140 0xc82313e220 0xc82313e340 0xc82313e440]} diff --git a/internal/binding/dump/QtNetwork/QNetworkAccessManager.txt b/internal/binding/dump/QtNetwork/QNetworkAccessManager.txt new file mode 100755 index 00000000..a6e87352 --- /dev/null +++ b/internal/binding/dump/QtNetwork/QNetworkAccessManager.txt @@ -0,0 +1,42 @@ +######################################## FUNCTIONS ######################################## +&{proxyFactory QNetworkAccessManager::proxyFactory commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.cpp non plain false false QNetworkProxyFactory * [] } +&{QNetworkAccessManager QNetworkAccessManager::QNetworkAccessManager commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non constructor false false [0xc822719ee0] } +&{activeConfiguration QNetworkAccessManager::activeConfiguration commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non plain false false QNetworkConfiguration [] } +&{authenticationRequired QNetworkAccessManager::authenticationRequired commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non signal false false void [0xc8227ea4e0 0xc8227ea560] } +&{cache QNetworkAccessManager::cache commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non plain false false QAbstractNetworkCache * [] } +&{clearAccessCache QNetworkAccessManager::clearAccessCache commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non plain false false void [] } +&{configuration QNetworkAccessManager::configuration commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non plain false false QNetworkConfiguration [] } +&{connectToHost QNetworkAccessManager::connectToHost commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non plain false false void [0xc8227eab00 0xc8227eab80] } +&{connectToHostEncrypted QNetworkAccessManager::connectToHostEncrypted commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non plain false false void [0xc8227eadc0 0xc8227eae60 0xc8227eaf60] } +&{cookieJar QNetworkAccessManager::cookieJar commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non plain false false QNetworkCookieJar * [] } +&{createRequest QNetworkAccessManager::createRequest commendable protected /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h impure plain false false QNetworkReply * [0xc8227eb300 0xc8227eb3c0 0xc8227eb4a0] } +&{deleteResource QNetworkAccessManager::deleteResource commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non plain false false QNetworkReply * [0xc8227eb6a0] } +&{encrypted QNetworkAccessManager::encrypted commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non signal false false void [0xc8227eb940] } +&{finished QNetworkAccessManager::finished commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non signal false false void [0xc8227ebb60] } +&{get QNetworkAccessManager::get commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non plain false false QNetworkReply * [0xc8227ebe20] } +&{head QNetworkAccessManager::head commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non plain false false QNetworkReply * [0xc821dbc120] } +&{networkAccessible QNetworkAccessManager::networkAccessible commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non plain false false NetworkAccessibility [] } +&{networkAccessibleChanged QNetworkAccessManager::networkAccessibleChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non signal false false void [0xc821dbc5e0] } +&{post QNetworkAccessManager::post commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non plain false true 3 QNetworkReply * [0xc821dbc960 0xc821dbca80] } +&{post QNetworkAccessManager::post commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non plain false false QNetworkReply * [0xc821dbcd00 0xc821dbce00] } +&{post QNetworkAccessManager::post commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non plain false true 2 QNetworkReply * [0xc821dbd040 0xc821dbd180] } +&{preSharedKeyAuthenticationRequired QNetworkAccessManager::preSharedKeyAuthenticationRequired commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non signal false false void [0xc821dbd380 0xc821dbd440] } +&{proxy QNetworkAccessManager::proxy commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non plain false false QNetworkProxy [] } +&{proxyAuthenticationRequired QNetworkAccessManager::proxyAuthenticationRequired commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non signal false false void [0xc821dbd840 0xc821dbd980] } +&{put QNetworkAccessManager::put commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non plain false true 2 QNetworkReply * [0xc821dbdbe0 0xc821dbdce0] } +&{put QNetworkAccessManager::put commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non plain false false QNetworkReply * [0xc821dbdf60 0xc82295c040] } +&{put QNetworkAccessManager::put commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non plain false true 3 QNetworkReply * [0xc82295c2c0 0xc82295c3c0] } +&{sendCustomRequest QNetworkAccessManager::sendCustomRequest commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non plain false false QNetworkReply * [0xc82295c680 0xc82295c780 0xc82295c880] } +&{setCache QNetworkAccessManager::setCache commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non plain false false void [0xc82295cae0] } +&{setConfiguration QNetworkAccessManager::setConfiguration commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non plain false false void [0xc82295cd00] } +&{setCookieJar QNetworkAccessManager::setCookieJar commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non plain false false void [0xc82295cf40] } +&{setNetworkAccessible QNetworkAccessManager::setNetworkAccessible commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non plain false false void [0xc82295d240] } +&{setProxy QNetworkAccessManager::setProxy commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non plain false false void [0xc82295d4e0] } +&{setProxyFactory QNetworkAccessManager::setProxyFactory commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non plain false false void [0xc82295d720] } +&{sslErrors QNetworkAccessManager::sslErrors commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non signal false false void [0xc82295d9a0 0xc82295daa0] } +&{supportedSchemes QNetworkAccessManager::supportedSchemes commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non plain false false QStringList [] } +&{supportedSchemesImplementation QNetworkAccessManager::supportedSchemesImplementation commendable protected /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non slot false false QStringList [] } +&{~QNetworkAccessManager QNetworkAccessManager::~QNetworkAccessManager commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkaccessmanager.h non destructor false false [] } +######################################## ENUMS ######################################## +&{NetworkAccessibility QNetworkAccessManager::NetworkAccessibility commendable public [0xc8227194c0 0xc8227195c0 0xc822719640]} +&{Operation QNetworkAccessManager::Operation commendable public [0xc8227198a0 0xc822719920 0xc8227199e0 0xc822719aa0 0xc822719b40 0xc822719c00 0xc822719ca0]} diff --git a/internal/binding/dump/QtNetwork/QNetworkAddressEntry.txt b/internal/binding/dump/QtNetwork/QNetworkAddressEntry.txt new file mode 100755 index 00000000..3bbb2c2b --- /dev/null +++ b/internal/binding/dump/QtNetwork/QNetworkAddressEntry.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{QNetworkAddressEntry QNetworkAddressEntry::QNetworkAddressEntry commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non constructor false false [] } +&{QNetworkAddressEntry QNetworkAddressEntry::QNetworkAddressEntry commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non constructor false true 2 [0xc823264960] } +&{broadcast QNetworkAddressEntry::broadcast commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non plain false false QHostAddress [] } +&{ip QNetworkAddressEntry::ip commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non plain false false QHostAddress [] } +&{netmask QNetworkAddressEntry::netmask commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non plain false false QHostAddress [] } +&{operator!= QNetworkAddressEntry::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non plain false false bool [0xc823264fe0] } +&{operator= QNetworkAddressEntry::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non plain false false QNetworkAddressEntry & [0xc823265300] } +&{operator== QNetworkAddressEntry::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non plain false false bool [0xc8232655a0] } +&{prefixLength QNetworkAddressEntry::prefixLength commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non plain false false int [] } +&{setBroadcast QNetworkAddressEntry::setBroadcast commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non plain false false void [0xc8232658c0] } +&{setIp QNetworkAddressEntry::setIp commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non plain false false void [0xc823265be0] } +&{setNetmask QNetworkAddressEntry::setNetmask commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non plain false false void [0xc823265e80] } +&{setPrefixLength QNetworkAddressEntry::setPrefixLength commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non plain false false void [0xc8232540a0] } +&{swap QNetworkAddressEntry::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non plain false false void [0xc8232542e0] } +&{~QNetworkAddressEntry QNetworkAddressEntry::~QNetworkAddressEntry commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtNetwork/QNetworkCacheMetaData.txt b/internal/binding/dump/QtNetwork/QNetworkCacheMetaData.txt new file mode 100755 index 00000000..1fd76748 --- /dev/null +++ b/internal/binding/dump/QtNetwork/QNetworkCacheMetaData.txt @@ -0,0 +1,22 @@ +######################################## FUNCTIONS ######################################## +&{QNetworkCacheMetaData QNetworkCacheMetaData::QNetworkCacheMetaData commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h non constructor false false [] } +&{QNetworkCacheMetaData QNetworkCacheMetaData::QNetworkCacheMetaData commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h non constructor false true 2 [0xc822c57a60] } +&{attributes QNetworkCacheMetaData::attributes commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h non plain false false AttributesMap [] } +&{expirationDate QNetworkCacheMetaData::expirationDate commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h non plain false false QDateTime [] } +&{isValid QNetworkCacheMetaData::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h non plain false false bool [] } +&{lastModified QNetworkCacheMetaData::lastModified commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h non plain false false QDateTime [] } +&{operator!= QNetworkCacheMetaData::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h non plain false false bool [0xc822c57fe0] } +&{operator= QNetworkCacheMetaData::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h non plain false false QNetworkCacheMetaData & [0xc821d762e0] } +&{operator== QNetworkCacheMetaData::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h non plain false false bool [0xc821d76540] } +&{rawHeaders QNetworkCacheMetaData::rawHeaders commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h non plain false false RawHeaderList [] } +&{saveToDisk QNetworkCacheMetaData::saveToDisk commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h non plain false false bool [] } +&{setAttributes QNetworkCacheMetaData::setAttributes commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h non plain false false void [0xc821d768c0] } +&{setExpirationDate QNetworkCacheMetaData::setExpirationDate commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h non plain false false void [0xc821d76b60] } +&{setLastModified QNetworkCacheMetaData::setLastModified commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h non plain false false void [0xc821d76da0] } +&{setRawHeaders QNetworkCacheMetaData::setRawHeaders commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h non plain false false void [0xc821d76fa0] } +&{setSaveToDisk QNetworkCacheMetaData::setSaveToDisk commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h non plain false false void [0xc821d771e0] } +&{setUrl QNetworkCacheMetaData::setUrl commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h non plain false false void [0xc821d77460] } +&{swap QNetworkCacheMetaData::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h non plain false false void [0xc821d776e0] } +&{url QNetworkCacheMetaData::url commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h non plain false false QUrl [] } +&{~QNetworkCacheMetaData QNetworkCacheMetaData::~QNetworkCacheMetaData commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qabstractnetworkcache.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtNetwork/QNetworkConfiguration.txt b/internal/binding/dump/QtNetwork/QNetworkConfiguration.txt new file mode 100755 index 00000000..76f33393 --- /dev/null +++ b/internal/binding/dump/QtNetwork/QNetworkConfiguration.txt @@ -0,0 +1,24 @@ +######################################## FUNCTIONS ######################################## +&{QNetworkConfiguration QNetworkConfiguration::QNetworkConfiguration commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfiguration.h non constructor false false [] } +&{QNetworkConfiguration QNetworkConfiguration::QNetworkConfiguration commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfiguration.h non constructor false true 2 [0xc82338ee00] } +&{bearerType QNetworkConfiguration::bearerType commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfiguration.h non plain false false BearerType [] } +&{bearerTypeFamily QNetworkConfiguration::bearerTypeFamily commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfiguration.h non plain false false BearerType [] } +&{bearerTypeName QNetworkConfiguration::bearerTypeName commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfiguration.h non plain false false QString [] } +&{children QNetworkConfiguration::children commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfiguration.h non plain false false QList [] } +&{identifier QNetworkConfiguration::identifier commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfiguration.h non plain false false QString [] } +&{isRoamingAvailable QNetworkConfiguration::isRoamingAvailable commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfiguration.h non plain false false bool [] } +&{isValid QNetworkConfiguration::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfiguration.h non plain false false bool [] } +&{name QNetworkConfiguration::name commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfiguration.h non plain false false QString [] } +&{operator!= QNetworkConfiguration::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfiguration.h non plain false false bool [0xc82338f980] } +&{operator= QNetworkConfiguration::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfiguration.h non plain false false QNetworkConfiguration & [0xc82338fc60] } +&{operator== QNetworkConfiguration::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfiguration.h non plain false false bool [0xc82338fec0] } +&{purpose QNetworkConfiguration::purpose commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfiguration.h non plain false false Purpose [] } +&{state QNetworkConfiguration::state commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfiguration.h non plain false false StateFlags [] } +&{swap QNetworkConfiguration::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfiguration.h non plain false false void [0xc82337c440] } +&{type QNetworkConfiguration::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfiguration.h non plain false false Type [] } +&{~QNetworkConfiguration QNetworkConfiguration::~QNetworkConfiguration commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfiguration.h non destructor false false [] } +######################################## ENUMS ######################################## +&{BearerType QNetworkConfiguration::BearerType commendable public [0xc82339f800 0xc82339f880 0xc82339f960 0xc82339fa00 0xc82339faa0 0xc82339fb40 0xc82339fbc0 0xc82339fc40 0xc82339fce0 0xc82339fd60 0xc82339fde0 0xc82339fe60 0xc82339fee0]} +&{Purpose QNetworkConfiguration::Purpose commendable public [0xc82338e0a0 0xc82338e120 0xc82338e1a0 0xc82338e240]} +&{StateFlag QNetworkConfiguration::StateFlag commendable public QNetworkConfiguration::StateFlags [0xc82338e440 0xc82338e4c0 0xc82338e540 0xc82338e5c0]} +&{Type QNetworkConfiguration::Type commendable public [0xc82338e7a0 0xc82338e860 0xc82338e8e0 0xc82338e960]} diff --git a/internal/binding/dump/QtNetwork/QNetworkConfigurationManager.txt b/internal/binding/dump/QtNetwork/QNetworkConfigurationManager.txt new file mode 100755 index 00000000..b04425a7 --- /dev/null +++ b/internal/binding/dump/QtNetwork/QNetworkConfigurationManager.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{QNetworkConfigurationManager QNetworkConfigurationManager::QNetworkConfigurationManager commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfigmanager.h non constructor false false [0xc8233bde20] } +&{allConfigurations QNetworkConfigurationManager::allConfigurations commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfigmanager.h non plain false false QList [0xc82339e0c0] } +&{capabilities QNetworkConfigurationManager::capabilities commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfigmanager.h non plain false false QNetworkConfigurationManager::Capabilities [] } +&{configurationAdded QNetworkConfigurationManager::configurationAdded commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfigmanager.h non signal false false void [0xc82339e360] } +&{configurationChanged QNetworkConfigurationManager::configurationChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfigmanager.h non signal false false void [0xc82339e660] } +&{configurationFromIdentifier QNetworkConfigurationManager::configurationFromIdentifier commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfigmanager.h non plain false false QNetworkConfiguration [0xc82339e960] } +&{configurationRemoved QNetworkConfigurationManager::configurationRemoved commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfigmanager.h non signal false false void [0xc82339eb80] } +&{defaultConfiguration QNetworkConfigurationManager::defaultConfiguration commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfigmanager.h non plain false false QNetworkConfiguration [] } +&{isOnline QNetworkConfigurationManager::isOnline commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfigmanager.h non plain false false bool [] } +&{onlineStateChanged QNetworkConfigurationManager::onlineStateChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfigmanager.h non signal false false void [0xc82339f060] } +&{updateCompleted QNetworkConfigurationManager::updateCompleted commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfigmanager.h non signal false false void [] } +&{updateConfigurations QNetworkConfigurationManager::updateConfigurations commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfigmanager.h non slot false false void [] } +&{~QNetworkConfigurationManager QNetworkConfigurationManager::~QNetworkConfigurationManager commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworkconfigmanager.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{Capability QNetworkConfigurationManager::Capability commendable public QNetworkConfigurationManager::Capabilities [0xc8233bd4c0 0xc8233bd5c0 0xc8233bd6e0 0xc8233bd820 0xc8233bd920 0xc8233bd9e0 0xc8233bdaa0]} diff --git a/internal/binding/dump/QtNetwork/QNetworkCookie.txt b/internal/binding/dump/QtNetwork/QNetworkCookie.txt new file mode 100755 index 00000000..3b89905c --- /dev/null +++ b/internal/binding/dump/QtNetwork/QNetworkCookie.txt @@ -0,0 +1,29 @@ +######################################## FUNCTIONS ######################################## +&{QNetworkCookie QNetworkCookie::QNetworkCookie commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookie.h non constructor false false [0xc821ece820 0xc821ece960] } +&{QNetworkCookie QNetworkCookie::QNetworkCookie commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookie.h non constructor false true 2 [0xc821ecebe0] } +&{domain QNetworkCookie::domain commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookie.h non plain false false QString [] } +&{expirationDate QNetworkCookie::expirationDate commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookie.h non plain false false QDateTime [] } +&{hasSameIdentifier QNetworkCookie::hasSameIdentifier commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookie.h non plain false false bool [0xc821ecf140] } +&{isHttpOnly QNetworkCookie::isHttpOnly commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookie.h non plain false false bool [] } +&{isSecure QNetworkCookie::isSecure commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookie.h non plain false false bool [] } +&{isSessionCookie QNetworkCookie::isSessionCookie commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookie.h non plain false false bool [] } +&{name QNetworkCookie::name commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookie.h non plain false false QByteArray [] } +&{normalize QNetworkCookie::normalize commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookie.h non plain false false void [0xc821ecf960] } +&{operator!= QNetworkCookie::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookie.h non plain false false bool [0xc821ecfb80] } +&{operator= QNetworkCookie::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookie.h non plain false false QNetworkCookie & [0xc821ecfe40] } +&{operator== QNetworkCookie::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookie.h non plain false false bool [0xc822d5c140] } +&{parseCookies QNetworkCookie::parseCookies commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookie.h non plain true false QList [0xc822d5c580] } +&{path QNetworkCookie::path commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookie.h non plain false false QString [] } +&{setDomain QNetworkCookie::setDomain commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookie.h non plain false false void [0xc822d5ca60] } +&{setExpirationDate QNetworkCookie::setExpirationDate commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookie.h non plain false false void [0xc822d5cd40] } +&{setHttpOnly QNetworkCookie::setHttpOnly commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookie.h non plain false false void [0xc822d5d0a0] } +&{setName QNetworkCookie::setName commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookie.h non plain false false void [0xc822d5d3e0] } +&{setPath QNetworkCookie::setPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookie.h non plain false false void [0xc822d5d740] } +&{setSecure QNetworkCookie::setSecure commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookie.h non plain false false void [0xc822d5da20] } +&{setValue QNetworkCookie::setValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookie.h non plain false false void [0xc822d5dd00] } +&{swap QNetworkCookie::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookie.h non plain false false void [0xc822e3e100] } +&{toRawForm QNetworkCookie::toRawForm commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookie.h non plain false false QByteArray [0xc822e3e380] } +&{value QNetworkCookie::value commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookie.h non plain false false QByteArray [] } +&{~QNetworkCookie QNetworkCookie::~QNetworkCookie commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookie.h non destructor false false [] } +######################################## ENUMS ######################################## +&{RawForm QNetworkCookie::RawForm commendable public [0xc821ece4e0 0xc821ece560]} diff --git a/internal/binding/dump/QtNetwork/QNetworkCookieJar.txt b/internal/binding/dump/QtNetwork/QNetworkCookieJar.txt new file mode 100755 index 00000000..20cebce1 --- /dev/null +++ b/internal/binding/dump/QtNetwork/QNetworkCookieJar.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{QNetworkCookieJar QNetworkCookieJar::QNetworkCookieJar commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookiejar.h non constructor false false [0xc822e3ebe0] } +&{allCookies QNetworkCookieJar::allCookies commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookiejar.h non plain false false QList [] } +&{cookiesForUrl QNetworkCookieJar::cookiesForUrl commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookiejar.h impure plain false false QList [0xc822e3f180] } +&{deleteCookie QNetworkCookieJar::deleteCookie commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookiejar.h impure plain false false bool [0xc822e3f460] } +&{insertCookie QNetworkCookieJar::insertCookie commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookiejar.h impure plain false false bool [0xc822e3f840] } +&{setAllCookies QNetworkCookieJar::setAllCookies commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookiejar.h non plain false false void [0xc822e3fb80] } +&{setCookiesFromUrl QNetworkCookieJar::setCookiesFromUrl commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookiejar.h impure plain false false bool [0xc822e3fee0 0xc822f30040] } +&{updateCookie QNetworkCookieJar::updateCookie commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookiejar.h impure plain false false bool [0xc822f30320] } +&{validateCookie QNetworkCookieJar::validateCookie commendable protected /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookiejar.h impure plain false false bool [0xc822f30620 0xc822f30760] } +&{~QNetworkCookieJar QNetworkCookieJar::~QNetworkCookieJar commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkcookiejar.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtNetwork/QNetworkDiskCache.txt b/internal/binding/dump/QtNetwork/QNetworkDiskCache.txt new file mode 100755 index 00000000..517412aa --- /dev/null +++ b/internal/binding/dump/QtNetwork/QNetworkDiskCache.txt @@ -0,0 +1,18 @@ +######################################## FUNCTIONS ######################################## +&{QNetworkDiskCache QNetworkDiskCache::QNetworkDiskCache commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkdiskcache.h non constructor false false [0xc822f30f40] } +&{cacheDirectory QNetworkDiskCache::cacheDirectory commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkdiskcache.h non plain false false QString [] } +&{cacheSize QNetworkDiskCache::cacheSize commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkdiskcache.h impure plain false false qint64 [] } +&{clear QNetworkDiskCache::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkdiskcache.h impure slot false false void [] } +&{data QNetworkDiskCache::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkdiskcache.h impure plain false false QIODevice * [0xc822f31720] } +&{expire QNetworkDiskCache::expire commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkdiskcache.h impure plain false false qint64 [] } +&{fileMetaData QNetworkDiskCache::fileMetaData commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkdiskcache.h non plain false false QNetworkCacheMetaData [0xc822f31c00] } +&{insert QNetworkDiskCache::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkdiskcache.h impure plain false false void [0xc822f31f40] } +&{maximumCacheSize QNetworkDiskCache::maximumCacheSize commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkdiskcache.h non plain false false qint64 [] } +&{metaData QNetworkDiskCache::metaData commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkdiskcache.h impure plain false false QNetworkCacheMetaData [0xc822ffc400] } +&{prepare QNetworkDiskCache::prepare commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkdiskcache.h impure plain false false QIODevice * [0xc822ffc760] } +&{remove QNetworkDiskCache::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkdiskcache.h impure plain false false bool [0xc822ffcb60] } +&{setCacheDirectory QNetworkDiskCache::setCacheDirectory commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkdiskcache.h non plain false false void [0xc822ffce40] } +&{setMaximumCacheSize QNetworkDiskCache::setMaximumCacheSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkdiskcache.h non plain false false void [0xc822ffd140] } +&{updateMetaData QNetworkDiskCache::updateMetaData commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkdiskcache.h impure plain false false void [0xc822ffd380] } +&{~QNetworkDiskCache QNetworkDiskCache::~QNetworkDiskCache commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkdiskcache.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtNetwork/QNetworkInterface.txt b/internal/binding/dump/QtNetwork/QNetworkInterface.txt new file mode 100755 index 00000000..563bda54 --- /dev/null +++ b/internal/binding/dump/QtNetwork/QNetworkInterface.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{QNetworkInterface QNetworkInterface::QNetworkInterface commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non constructor false false [] } +&{QNetworkInterface QNetworkInterface::QNetworkInterface commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non constructor false true 2 [0xc823255000] } +&{addressEntries QNetworkInterface::addressEntries commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non plain false false QList [] } +&{allAddresses QNetworkInterface::allAddresses commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non plain true false QList [] } +&{allInterfaces QNetworkInterface::allInterfaces commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non plain true false QList [] } +&{flags QNetworkInterface::flags commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non plain false false InterfaceFlags [] } +&{hardwareAddress QNetworkInterface::hardwareAddress commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non plain false false QString [] } +&{humanReadableName QNetworkInterface::humanReadableName commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non plain false false QString [] } +&{index QNetworkInterface::index commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non plain false false int [] } +&{interfaceFromIndex QNetworkInterface::interfaceFromIndex commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non plain true false QNetworkInterface [0xc823255c80] } +&{interfaceFromName QNetworkInterface::interfaceFromName commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non plain true false QNetworkInterface [0xc823255f60] } +&{isValid QNetworkInterface::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non plain false false bool [] } +&{name QNetworkInterface::name commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non plain false false QString [] } +&{operator= QNetworkInterface::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non plain false false QNetworkInterface & [0xc823242500] } +&{swap QNetworkInterface::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non plain false false void [0xc823242780] } +&{~QNetworkInterface QNetworkInterface::~QNetworkInterface commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkinterface.h non destructor false false [] } +######################################## ENUMS ######################################## +&{InterfaceFlag QNetworkInterface::InterfaceFlag commendable public QNetworkInterface::InterfaceFlags [0xc823254800 0xc8232548a0 0xc823254980 0xc823254a00 0xc823254ae0 0xc823254ba0]} diff --git a/internal/binding/dump/QtNetwork/QNetworkProxy.txt b/internal/binding/dump/QtNetwork/QNetworkProxy.txt new file mode 100755 index 00000000..a1f5aa50 --- /dev/null +++ b/internal/binding/dump/QtNetwork/QNetworkProxy.txt @@ -0,0 +1,34 @@ +######################################## FUNCTIONS ######################################## +&{QNetworkProxy QNetworkProxy::QNetworkProxy commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non constructor false false [] } +&{QNetworkProxy QNetworkProxy::QNetworkProxy commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non constructor false true 2 [0xc823243ca0 0xc823243d80 0xc823243e00 0xc823243e80 0xc823243f40] } +&{QNetworkProxy QNetworkProxy::QNetworkProxy commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non constructor false true 3 [0xc82322e160] } +&{applicationProxy QNetworkProxy::applicationProxy commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain true false QNetworkProxy [] } +&{capabilities QNetworkProxy::capabilities commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false Capabilities [] } +&{hasRawHeader QNetworkProxy::hasRawHeader commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false bool [0xc82322e660] } +&{header QNetworkProxy::header commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false QVariant [0xc82322e940] } +&{hostName QNetworkProxy::hostName commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false QString [] } +&{isCachingProxy QNetworkProxy::isCachingProxy commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false bool [] } +&{isTransparentProxy QNetworkProxy::isTransparentProxy commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false bool [] } +&{operator!= QNetworkProxy::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false bool [0xc82322ef40] } +&{operator= QNetworkProxy::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false QNetworkProxy & [0xc82322f180] } +&{operator== QNetworkProxy::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false bool [0xc82322f420] } +&{password QNetworkProxy::password commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false QString [] } +&{port QNetworkProxy::port commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false quint16 [] } +&{rawHeader QNetworkProxy::rawHeader commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false QByteArray [0xc82322f880] } +&{rawHeaderList QNetworkProxy::rawHeaderList commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false QList [] } +&{setApplicationProxy QNetworkProxy::setApplicationProxy commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain true false void [0xc82322fca0] } +&{setCapabilities QNetworkProxy::setCapabilities commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false void [0xc82322fe80] } +&{setHeader QNetworkProxy::setHeader commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false void [0xc82321a080 0xc82321a140] } +&{setHostName QNetworkProxy::setHostName commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false void [0xc82321a3c0] } +&{setPassword QNetworkProxy::setPassword commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false void [0xc82321a5c0] } +&{setPort QNetworkProxy::setPort commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false void [0xc82321a820] } +&{setRawHeader QNetworkProxy::setRawHeader commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false void [0xc82321aa80 0xc82321ab60] } +&{setType QNetworkProxy::setType commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false void [0xc82321ade0] } +&{setUser QNetworkProxy::setUser commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false void [0xc82321b020] } +&{swap QNetworkProxy::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false void [0xc82321b2a0] } +&{type QNetworkProxy::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false QNetworkProxy::ProxyType [] } +&{user QNetworkProxy::user commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false QString [] } +&{~QNetworkProxy QNetworkProxy::~QNetworkProxy commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Capability QNetworkProxy::Capability commendable public QNetworkProxy::Capabilities [0xc823242de0 0xc823242f40 0xc823243020 0xc823243160 0xc823243280]} +&{ProxyType QNetworkProxy::ProxyType commendable public [0xc823243520 0xc8232435e0 0xc823243680 0xc823243700 0xc8232437c0 0xc823243880]} diff --git a/internal/binding/dump/QtNetwork/QNetworkProxyFactory.txt b/internal/binding/dump/QtNetwork/QNetworkProxyFactory.txt new file mode 100755 index 00000000..6389cc55 --- /dev/null +++ b/internal/binding/dump/QtNetwork/QNetworkProxyFactory.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QNetworkProxyFactory QNetworkProxyFactory::QNetworkProxyFactory commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non constructor false false [] } +&{proxyForQuery QNetworkProxyFactory::proxyForQuery commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain true false QList [0xc82321bc80] } +&{queryProxy QNetworkProxyFactory::queryProxy commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h pure plain false false QList [0xc82321bfc0] } +&{setApplicationProxyFactory QNetworkProxyFactory::setApplicationProxyFactory commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain true false void [0xc823202240] } +&{setUseSystemConfiguration QNetworkProxyFactory::setUseSystemConfiguration commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain true false void [0xc823202480] } +&{~QNetworkProxyFactory QNetworkProxyFactory::~QNetworkProxyFactory commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h impure destructor false false [] } +&{systemProxyForQuery QNetworkProxyFactory::systemProxyForQuery commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy_win.cpp non plain true false QList [0xc823202880] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtNetwork/QNetworkProxyQuery.txt b/internal/binding/dump/QtNetwork/QNetworkProxyQuery.txt new file mode 100755 index 00000000..9c31274f --- /dev/null +++ b/internal/binding/dump/QtNetwork/QNetworkProxyQuery.txt @@ -0,0 +1,30 @@ +######################################## FUNCTIONS ######################################## +&{QNetworkProxyQuery QNetworkProxyQuery::QNetworkProxyQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non constructor false false [] } +&{QNetworkProxyQuery QNetworkProxyQuery::QNetworkProxyQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non constructor false true 7 [0xc823203140 0xc8232032a0 0xc823203340 0xc8232033c0 0xc8232034e0] } +&{QNetworkProxyQuery QNetworkProxyQuery::QNetworkProxyQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non constructor false true 6 [0xc823203740 0xc823203860 0xc8232038e0] } +&{QNetworkProxyQuery QNetworkProxyQuery::QNetworkProxyQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non constructor false true 8 [0xc823203b40 0xc823203c80 0xc823203d40 0xc823203de0] } +&{QNetworkProxyQuery QNetworkProxyQuery::QNetworkProxyQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non constructor false true 5 [0xc8231f4020] } +&{QNetworkProxyQuery QNetworkProxyQuery::QNetworkProxyQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non constructor false true 3 [0xc8231f42c0 0xc8231f4340 0xc8231f43e0 0xc8231f4460] } +&{QNetworkProxyQuery QNetworkProxyQuery::QNetworkProxyQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non constructor false true 2 [0xc8231f4660 0xc8231f4740] } +&{QNetworkProxyQuery QNetworkProxyQuery::QNetworkProxyQuery commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non constructor false true 4 [0xc8231f4900 0xc8231f49a0 0xc8231f4a60] } +&{localPort QNetworkProxyQuery::localPort commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false int [] } +&{networkConfiguration QNetworkProxyQuery::networkConfiguration commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false QNetworkConfiguration [] } +&{operator!= QNetworkProxyQuery::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false bool [0xc8231f4ec0] } +&{operator= QNetworkProxyQuery::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false QNetworkProxyQuery & [0xc8231f51c0] } +&{operator== QNetworkProxyQuery::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false bool [0xc8231f5440] } +&{peerHostName QNetworkProxyQuery::peerHostName commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false QString [] } +&{peerPort QNetworkProxyQuery::peerPort commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false int [] } +&{protocolTag QNetworkProxyQuery::protocolTag commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false QString [] } +&{queryType QNetworkProxyQuery::queryType commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false QueryType [] } +&{setLocalPort QNetworkProxyQuery::setLocalPort commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false void [0xc8231f5bc0] } +&{setNetworkConfiguration QNetworkProxyQuery::setNetworkConfiguration commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false void [0xc8231f5e00] } +&{setPeerHostName QNetworkProxyQuery::setPeerHostName commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false void [0xc8231de040] } +&{setPeerPort QNetworkProxyQuery::setPeerPort commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false void [0xc8231de200] } +&{setProtocolTag QNetworkProxyQuery::setProtocolTag commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false void [0xc8231de340] } +&{setQueryType QNetworkProxyQuery::setQueryType commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false void [0xc8231de520] } +&{setUrl QNetworkProxyQuery::setUrl commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false void [0xc8231de740] } +&{swap QNetworkProxyQuery::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false void [0xc8231de9a0] } +&{url QNetworkProxyQuery::url commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non plain false false QUrl [] } +&{~QNetworkProxyQuery QNetworkProxyQuery::~QNetworkProxyQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/kernel/qnetworkproxy.h non destructor false false [] } +######################################## ENUMS ######################################## +&{QueryType QNetworkProxyQuery::QueryType commendable public [0xc823202bc0 0xc823202c60 0xc823202ce0 0xc823202d80]} diff --git a/internal/binding/dump/QtNetwork/QNetworkReply.txt b/internal/binding/dump/QtNetwork/QNetworkReply.txt new file mode 100755 index 00000000..6d652fd5 --- /dev/null +++ b/internal/binding/dump/QtNetwork/QNetworkReply.txt @@ -0,0 +1,45 @@ +######################################## FUNCTIONS ######################################## +&{ignoreSslErrorsImplementation QNetworkReply::ignoreSslErrorsImplementation commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.cpp impure plain false false void [0xc822ffda60] } +&{setSslConfigurationImplementation QNetworkReply::setSslConfigurationImplementation commendable protected /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.cpp impure plain false false void [0xc822ffdd00] } +&{sslConfigurationImplementation QNetworkReply::sslConfigurationImplementation commendable protected /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.cpp impure plain false false void [0xc823114080] } +&{QNetworkReply QNetworkReply::QNetworkReply commendable protected /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non constructor false false [0xc823190600] } +&{abort QNetworkReply::abort commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h pure slot false false void [] } +&{attribute QNetworkReply::attribute commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non plain false false QVariant [0xc823190c80] } +&{close QNetworkReply::close commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h impure plain false false void [] } +&{downloadProgress QNetworkReply::downloadProgress commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non signal false false void [0xc823190f80 0xc823191000] } +&{encrypted QNetworkReply::encrypted commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non signal false false void [] } +&{error QNetworkReply::error commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non signal false true 2 void [0xc8231912c0] } +&{error QNetworkReply::error commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non plain false false NetworkError [] } +&{finished QNetworkReply::finished commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non signal false false void [] } +&{hasRawHeader QNetworkReply::hasRawHeader commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non plain false false bool [0xc8231916c0] } +&{header QNetworkReply::header commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non plain false false QVariant [0xc8231918e0] } +&{ignoreSslErrors QNetworkReply::ignoreSslErrors commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h impure slot false false void [] } +&{ignoreSslErrors QNetworkReply::ignoreSslErrors commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non plain false true 2 void [0xc823191be0] } +&{isFinished QNetworkReply::isFinished commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non plain false false bool [] } +&{isRunning QNetworkReply::isRunning commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non plain false false bool [] } +&{manager QNetworkReply::manager commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non plain false false QNetworkAccessManager * [] } +&{metaDataChanged QNetworkReply::metaDataChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non signal false false void [] } +&{operation QNetworkReply::operation commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non plain false false QNetworkAccessManager::Operation [] } +&{preSharedKeyAuthenticationRequired QNetworkReply::preSharedKeyAuthenticationRequired commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non signal false false void [0xc8232e65a0] } +&{rawHeader QNetworkReply::rawHeader commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non plain false false QByteArray [0xc8232e6880] } +&{rawHeaderList QNetworkReply::rawHeaderList commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non plain false false QList [] } +&{rawHeaderPairs QNetworkReply::rawHeaderPairs commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non plain false false const QList & [] } +&{readBufferSize QNetworkReply::readBufferSize commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non plain false false qint64 [] } +&{request QNetworkReply::request commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non plain false false QNetworkRequest [] } +&{setAttribute QNetworkReply::setAttribute commendable protected /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non plain false false void [0xc8232e70c0 0xc8232e71c0] } +&{setError QNetworkReply::setError commendable protected /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non plain false false void [0xc8232e7400 0xc8232e74a0] } +&{setFinished QNetworkReply::setFinished commendable protected /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non plain false false void [0xc8232e7740] } +&{setHeader QNetworkReply::setHeader commendable protected /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non plain false false void [0xc8232e79c0 0xc8232e7a80] } +&{setOperation QNetworkReply::setOperation commendable protected /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non plain false false void [0xc8232e7cc0] } +&{setRawHeader QNetworkReply::setRawHeader commendable protected /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non plain false false void [0xc8232e7fc0 0xc82340c120] } +&{setReadBufferSize QNetworkReply::setReadBufferSize commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h impure plain false false void [0xc82340c360] } +&{setRequest QNetworkReply::setRequest commendable protected /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non plain false false void [0xc82340c540] } +&{setSslConfiguration QNetworkReply::setSslConfiguration commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non plain false false void [0xc82340c740] } +&{setUrl QNetworkReply::setUrl commendable protected /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non plain false false void [0xc82340c960] } +&{sslConfiguration QNetworkReply::sslConfiguration commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non plain false false QSslConfiguration [] } +&{sslErrors QNetworkReply::sslErrors commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non signal false false void [0xc82340cc60] } +&{uploadProgress QNetworkReply::uploadProgress commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non signal false false void [0xc82340ce40 0xc82340cec0] } +&{url QNetworkReply::url commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non plain false false QUrl [] } +&{~QNetworkReply QNetworkReply::~QNetworkReply commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkreply.h non destructor false false [] } +######################################## ENUMS ######################################## +&{NetworkError QNetworkReply::NetworkError commendable public [0xc8231142e0 0xc823114380 0xc823114460 0xc823114560 0xc823114640 0xc8231146e0 0xc8231147c0 0xc823114900 0xc823114a80 0xc823114bc0 0xc823114d40 0xc823114ec0 0xc823114fa0 0xc8231150a0 0xc823115180 0xc823115260 0xc823115400 0xc823115500 0xc823115620 0xc8231156c0 0xc8231157a0 0xc8231158a0 0xc823115980 0xc823115aa0 0xc823115bc0 0xc823115d00 0xc823115ec0 0xc823115f80 0xc823190040 0xc823190180 0xc823190260 0xc823190340]} diff --git a/internal/binding/dump/QtNetwork/QNetworkRequest.txt b/internal/binding/dump/QtNetwork/QNetworkRequest.txt new file mode 100755 index 00000000..12bb9cda --- /dev/null +++ b/internal/binding/dump/QtNetwork/QNetworkRequest.txt @@ -0,0 +1,30 @@ +######################################## FUNCTIONS ######################################## +&{QNetworkRequest QNetworkRequest::QNetworkRequest commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkrequest.h non constructor false true 2 [0xc8233effa0] } +&{QNetworkRequest QNetworkRequest::QNetworkRequest commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkrequest.h non constructor false false [0xc8233de280] } +&{attribute QNetworkRequest::attribute commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkrequest.h non plain false false QVariant [0xc8233de4c0 0xc8233de560] } +&{hasRawHeader QNetworkRequest::hasRawHeader commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkrequest.h non plain false false bool [0xc8233de7a0] } +&{header QNetworkRequest::header commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkrequest.h non plain false false QVariant [0xc8233dea00] } +&{operator!= QNetworkRequest::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkrequest.h non plain false false bool [0xc8233debe0] } +&{operator= QNetworkRequest::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkrequest.h non plain false false QNetworkRequest & [0xc8233deec0] } +&{operator== QNetworkRequest::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkrequest.h non plain false false bool [0xc8233df1e0] } +&{originatingObject QNetworkRequest::originatingObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkrequest.h non plain false false QObject * [] } +&{priority QNetworkRequest::priority commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkrequest.h non plain false false Priority [] } +&{rawHeader QNetworkRequest::rawHeader commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkrequest.h non plain false false QByteArray [0xc8233df780] } +&{rawHeaderList QNetworkRequest::rawHeaderList commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkrequest.h non plain false false QList [] } +&{setAttribute QNetworkRequest::setAttribute commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkrequest.h non plain false false void [0xc8233dfbc0 0xc8233dfc60] } +&{setHeader QNetworkRequest::setHeader commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkrequest.h non plain false false void [0xc8233dfe80 0xc8233dff20] } +&{setOriginatingObject QNetworkRequest::setOriginatingObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkrequest.h non plain false false void [0xc8233bc0e0] } +&{setPriority QNetworkRequest::setPriority commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkrequest.h non plain false false void [0xc8233bc2e0] } +&{setRawHeader QNetworkRequest::setRawHeader commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkrequest.h non plain false false void [0xc8233bc580 0xc8233bc6a0] } +&{setSslConfiguration QNetworkRequest::setSslConfiguration commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkrequest.h non plain false false void [0xc8233bc900] } +&{setUrl QNetworkRequest::setUrl commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkrequest.h non plain false false void [0xc8233bcba0] } +&{sslConfiguration QNetworkRequest::sslConfiguration commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkrequest.h non plain false false QSslConfiguration [] } +&{swap QNetworkRequest::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkrequest.h non plain false false void [0xc8233bcf20] } +&{url QNetworkRequest::url commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkrequest.h non plain false false QUrl [] } +&{~QNetworkRequest QNetworkRequest::~QNetworkRequest commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/access/qnetworkrequest.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Attribute QNetworkRequest::Attribute commendable public [0xc82340d580 0xc82340d660 0xc82340d740 0xc82340d820 0xc82340d920 0xc82340da00 0xc82340dae0 0xc82340dbc0 0xc82340dcc0 0xc82340dda0 0xc82340de80 0xc82340df60 0xc8233ee080 0xc8233ee180 0xc8233ee260 0xc8233ee320 0xc8233ee460 0xc8233ee560 0xc8233ee660 0xc8233ee780 0xc8233ee880 0xc8233ee900 0xc8233ee9a0]} +&{CacheLoadControl QNetworkRequest::CacheLoadControl commendable public [0xc8233eeb40 0xc8233eebe0 0xc8233eec60 0xc8233eed20]} +&{KnownHeaders QNetworkRequest::KnownHeaders commendable public [0xc8233eef40 0xc8233ef040 0xc8233ef120 0xc8233ef1e0 0xc8233ef320 0xc8233ef400 0xc8233ef4a0 0xc8233ef560 0xc8233ef600]} +&{LoadControl QNetworkRequest::LoadControl commendable public [0xc8233ef840 0xc8233ef8c0]} +&{Priority QNetworkRequest::Priority commendable public [0xc8233efb80 0xc8233efc20 0xc8233efca0]} diff --git a/internal/binding/dump/QtNetwork/QNetworkSession.txt b/internal/binding/dump/QtNetwork/QNetworkSession.txt new file mode 100755 index 00000000..f48a7bb4 --- /dev/null +++ b/internal/binding/dump/QtNetwork/QNetworkSession.txt @@ -0,0 +1,34 @@ +######################################## FUNCTIONS ######################################## +&{QNetworkSession QNetworkSession::QNetworkSession commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non constructor false false [0xc82337dba0 0xc82337dc60] } +&{accept QNetworkSession::accept commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non slot false false void [] } +&{activeTime QNetworkSession::activeTime commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non plain false false quint64 [] } +&{bytesReceived QNetworkSession::bytesReceived commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non plain false false quint64 [] } +&{bytesWritten QNetworkSession::bytesWritten commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non plain false false quint64 [] } +&{close QNetworkSession::close commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non slot false false void [] } +&{closed QNetworkSession::closed commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non signal false false void [] } +&{configuration QNetworkSession::configuration commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non plain false false QNetworkConfiguration [] } +&{error QNetworkSession::error commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non signal false true 2 void [0xc823364be0] } +&{error QNetworkSession::error commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non plain false false SessionError [] } +&{errorString QNetworkSession::errorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non plain false false QString [] } +&{ignore QNetworkSession::ignore commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non slot false false void [] } +&{interface QNetworkSession::interface commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non plain false false QNetworkInterface [] } +&{isOpen QNetworkSession::isOpen commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non plain false false bool [] } +&{migrate QNetworkSession::migrate commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non slot false false void [] } +&{newConfigurationActivated QNetworkSession::newConfigurationActivated commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non signal false false void [] } +&{open QNetworkSession::open commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non slot false false void [] } +&{opened QNetworkSession::opened commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non signal false false void [] } +&{preferredConfigurationChanged QNetworkSession::preferredConfigurationChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non signal false false void [0xc823365b00 0xc823365be0] } +&{reject QNetworkSession::reject commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non slot false false void [] } +&{sessionProperty QNetworkSession::sessionProperty commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non plain false false QVariant [0xc823365f60] } +&{setSessionProperty QNetworkSession::setSessionProperty commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non plain false false void [0xc82334c180 0xc82334c220] } +&{state QNetworkSession::state commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non plain false false State [] } +&{stateChanged QNetworkSession::stateChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non signal false false void [0xc82334c580] } +&{stop QNetworkSession::stop commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non slot false false void [] } +&{usagePolicies QNetworkSession::usagePolicies commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non plain false false QNetworkSession::UsagePolicies [] } +&{usagePoliciesChanged QNetworkSession::usagePoliciesChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non signal false false void [0xc82334cb40] } +&{waitForOpened QNetworkSession::waitForOpened commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h non plain false false bool [0xc82334ce00] } +&{~QNetworkSession QNetworkSession::~QNetworkSession commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/bearer/qnetworksession.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{SessionError QNetworkSession::SessionError commendable public [0xc82337cb80 0xc82337cce0 0xc82337cda0 0xc82337ce60 0xc82337cf80]} +&{State QNetworkSession::State commendable public [0xc82337d260 0xc82337d2e0 0xc82337d380 0xc82337d420 0xc82337d4c0 0xc82337d540 0xc82337d5c0]} +&{UsagePolicy QNetworkSession::UsagePolicy commendable public QNetworkSession::UsagePolicies [0xc82337d7e0 0xc82337d880]} diff --git a/internal/binding/dump/QtNetwork/QSslCertificate.txt b/internal/binding/dump/QtNetwork/QSslCertificate.txt new file mode 100755 index 00000000..64dddb1f --- /dev/null +++ b/internal/binding/dump/QtNetwork/QSslCertificate.txt @@ -0,0 +1,38 @@ +######################################## FUNCTIONS ######################################## +&{QSslCertificate QSslCertificate::QSslCertificate commendable unsupported_cppEnum /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate.h non constructor false false [0xc8230b7340 0xc8230b7480] } +&{QSslCertificate QSslCertificate::QSslCertificate commendable unsupported_cppEnum /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate.h non constructor false true 2 [0xc8230b7800 0xc8230b7920] } +&{QSslCertificate QSslCertificate::QSslCertificate commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate.h non constructor false true 3 [0xc8230b7ca0] } +&{clear QSslCertificate::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate.h non plain false false void [] } +&{digest QSslCertificate::digest commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate.h non plain false false QByteArray [0xc8230a82c0] } +&{fromData QSslCertificate::fromData commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate.h non plain true false QList [0xc8230a8600 0xc8230a8740] } +&{fromDevice QSslCertificate::fromDevice commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate.h non plain true false QList [0xc8230a8a60 0xc8230a8b60] } +&{fromPath QSslCertificate::fromPath commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate.h non plain true false QList [0xc8230a8ea0 0xc8230a8fa0 0xc8230a90c0] } +&{importPkcs12 QSslCertificate::importPkcs12 commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate.h non plain true false bool [0xc8230a9360 0xc8230a9440 0xc8230a9500 0xc8230a9600 0xc8230a9780] } +&{isBlacklisted QSslCertificate::isBlacklisted commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate.h non plain false false bool [] } +&{operator!= QSslCertificate::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate.h non plain false false bool [0xc8230a9cc0] } +&{operator= QSslCertificate::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate.h non plain false false QSslCertificate & [0xc8230a6080] } +&{swap QSslCertificate::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate.h non plain false false void [0xc8230a63e0] } +&{verify QSslCertificate::verify commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate.h non plain true false QList [0xc8230a6780 0xc8230a68e0] } +&{~QSslCertificate QSslCertificate::~QSslCertificate commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate.h non destructor false false [] } +&{effectiveDate QSslCertificate::effectiveDate commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate_qt.cpp non plain false false QDateTime [] } +&{expiryDate QSslCertificate::expiryDate commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate_qt.cpp non plain false false QDateTime [] } +&{extensions QSslCertificate::extensions commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate_qt.cpp non plain false false QList [] } +&{isNull QSslCertificate::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate_qt.cpp non plain false false bool [] } +&{isSelfSigned QSslCertificate::isSelfSigned commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate_qt.cpp non plain false false bool [] } +&{issuerInfo QSslCertificate::issuerInfo commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate_qt.cpp non plain false false QStringList [0xc8230a7660] } +&{issuerInfo QSslCertificate::issuerInfo commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate_qt.cpp non plain false true 2 QStringList [0xc8230a7940] } +&{issuerInfoAttributes QSslCertificate::issuerInfoAttributes commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate_qt.cpp non plain false false QList [] } +&{operator== QSslCertificate::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate_qt.cpp non plain false false bool [0xc8230a7e60] } +&{publicKey QSslCertificate::publicKey commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate_qt.cpp non plain false false QSslKey [] } +&{serialNumber QSslCertificate::serialNumber commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate_qt.cpp non plain false false QByteArray [] } +&{subjectAlternativeNames QSslCertificate::subjectAlternativeNames commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate_qt.cpp non plain false false QMultiMap [] } +&{subjectInfo QSslCertificate::subjectInfo commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate_qt.cpp non plain false false QStringList [0xc8230966c0] } +&{subjectInfo QSslCertificate::subjectInfo commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate_qt.cpp non plain false true 2 QStringList [0xc8230969c0] } +&{subjectInfoAttributes QSslCertificate::subjectInfoAttributes commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate_qt.cpp non plain false false QList [] } +&{toDer QSslCertificate::toDer commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate_qt.cpp non plain false false QByteArray [] } +&{toPem QSslCertificate::toPem commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate_qt.cpp non plain false false QByteArray [] } +&{toText QSslCertificate::toText commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate_qt.cpp non plain false false QString [] } +&{version QSslCertificate::version commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate_qt.cpp non plain false false QByteArray [] } +&{handle QSslCertificate::handle commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificate_winrt.cpp non plain false false Qt::HANDLE [] } +######################################## ENUMS ######################################## +&{SubjectInfo QSslCertificate::SubjectInfo commendable public [0xc8230b67a0 0xc8230b6840 0xc8230b6920 0xc8230b6a00 0xc8230b6ba0 0xc8230b6c80 0xc8230b6dc0 0xc8230b6f60 0xc8230b7040]} diff --git a/internal/binding/dump/QtNetwork/QSslCertificateExtension.txt b/internal/binding/dump/QtNetwork/QSslCertificateExtension.txt new file mode 100755 index 00000000..05b72d22 --- /dev/null +++ b/internal/binding/dump/QtNetwork/QSslCertificateExtension.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{QSslCertificateExtension QSslCertificateExtension::QSslCertificateExtension commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificateextension.h non constructor false false [] } +&{QSslCertificateExtension QSslCertificateExtension::QSslCertificateExtension commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificateextension.h non constructor false true 2 [0xc823097f80] } +&{isCritical QSslCertificateExtension::isCritical commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificateextension.h non plain false false bool [] } +&{isSupported QSslCertificateExtension::isSupported commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificateextension.h non plain false false bool [] } +&{name QSslCertificateExtension::name commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificateextension.h non plain false false QString [] } +&{oid QSslCertificateExtension::oid commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificateextension.h non plain false false QString [] } +&{operator= QSslCertificateExtension::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificateextension.h non plain false false QSslCertificateExtension & [0xc823084860] } +&{swap QSslCertificateExtension::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificateextension.h non plain false false void [0xc823084c20] } +&{value QSslCertificateExtension::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificateextension.h non plain false false QVariant [] } +&{~QSslCertificateExtension QSslCertificateExtension::~QSslCertificateExtension commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcertificateextension.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtNetwork/QSslCipher.txt b/internal/binding/dump/QtNetwork/QSslCipher.txt new file mode 100755 index 00000000..66305acf --- /dev/null +++ b/internal/binding/dump/QtNetwork/QSslCipher.txt @@ -0,0 +1,20 @@ +######################################## FUNCTIONS ######################################## +&{QSslCipher QSslCipher::QSslCipher commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcipher.h non constructor false false [] } +&{QSslCipher QSslCipher::QSslCipher commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcipher.h non constructor false true 4 [0xc8230855e0] } +&{QSslCipher QSslCipher::QSslCipher commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcipher.h non constructor false true 2 [0xc823085940] } +&{QSslCipher QSslCipher::QSslCipher commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcipher.h non constructor false true 3 [0xc823085c40 0xc823085d20] } +&{authenticationMethod QSslCipher::authenticationMethod commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcipher.h non plain false false QString [] } +&{encryptionMethod QSslCipher::encryptionMethod commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcipher.h non plain false false QString [] } +&{isNull QSslCipher::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcipher.h non plain false false bool [] } +&{keyExchangeMethod QSslCipher::keyExchangeMethod commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcipher.h non plain false false QString [] } +&{name QSslCipher::name commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcipher.h non plain false false QString [] } +&{operator!= QSslCipher::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcipher.h non plain false false bool [0xc823072920] } +&{operator= QSslCipher::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcipher.h non plain false false QSslCipher & [0xc823072ca0] } +&{operator== QSslCipher::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcipher.h non plain false false bool [0xc823073020] } +&{protocol QSslCipher::protocol commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcipher.h non plain false false QSsl::SslProtocol [] } +&{protocolString QSslCipher::protocolString commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcipher.h non plain false false QString [] } +&{supportedBits QSslCipher::supportedBits commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcipher.h non plain false false int [] } +&{swap QSslCipher::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcipher.h non plain false false void [0xc8230738a0] } +&{usedBits QSslCipher::usedBits commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcipher.h non plain false false int [] } +&{~QSslCipher QSslCipher::~QSslCipher commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslcipher.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtNetwork/QSslConfiguration.txt b/internal/binding/dump/QtNetwork/QSslConfiguration.txt new file mode 100755 index 00000000..b1e0b642 --- /dev/null +++ b/internal/binding/dump/QtNetwork/QSslConfiguration.txt @@ -0,0 +1,47 @@ +######################################## FUNCTIONS ######################################## +&{QSslConfiguration QSslConfiguration::QSslConfiguration commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non constructor false false [] } +&{QSslConfiguration QSslConfiguration::QSslConfiguration commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non constructor false true 2 [0xc82305e820] } +&{allowedNextProtocols QSslConfiguration::allowedNextProtocols commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false QList [] } +&{caCertificates QSslConfiguration::caCertificates commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false QList [] } +&{ciphers QSslConfiguration::ciphers commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false QList [] } +&{defaultConfiguration QSslConfiguration::defaultConfiguration commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain true false QSslConfiguration [] } +&{ellipticCurves QSslConfiguration::ellipticCurves commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false QVector [] } +&{isNull QSslConfiguration::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false bool [] } +&{localCertificate QSslConfiguration::localCertificate commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false QSslCertificate [] } +&{localCertificateChain QSslConfiguration::localCertificateChain commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false QList [] } +&{nextNegotiatedProtocol QSslConfiguration::nextNegotiatedProtocol commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false QByteArray [] } +&{nextProtocolNegotiationStatus QSslConfiguration::nextProtocolNegotiationStatus commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false NextProtocolNegotiationStatus [] } +&{operator!= QSslConfiguration::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false bool [0xc82304a040] } +&{operator= QSslConfiguration::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false QSslConfiguration & [0xc82304a440] } +&{operator== QSslConfiguration::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false bool [0xc82304a760] } +&{peerCertificate QSslConfiguration::peerCertificate commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false QSslCertificate [] } +&{peerCertificateChain QSslConfiguration::peerCertificateChain commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false QList [] } +&{peerVerifyDepth QSslConfiguration::peerVerifyDepth commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false int [] } +&{peerVerifyMode QSslConfiguration::peerVerifyMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false QSslSocket::PeerVerifyMode [] } +&{privateKey QSslConfiguration::privateKey commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false QSslKey [] } +&{protocol QSslConfiguration::protocol commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false QSsl::SslProtocol [] } +&{sessionCipher QSslConfiguration::sessionCipher commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false QSslCipher [] } +&{sessionProtocol QSslConfiguration::sessionProtocol commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false QSsl::SslProtocol [] } +&{sessionTicket QSslConfiguration::sessionTicket commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false QByteArray [] } +&{sessionTicketLifeTimeHint QSslConfiguration::sessionTicketLifeTimeHint commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false int [] } +&{setAllowedNextProtocols QSslConfiguration::setAllowedNextProtocols commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false void [0xc82304ba60] } +&{setCaCertificates QSslConfiguration::setCaCertificates commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false void [0xc82304bde0] } +&{setCiphers QSslConfiguration::setCiphers commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false void [0xc82303c160] } +&{setDefaultConfiguration QSslConfiguration::setDefaultConfiguration commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain true false void [0xc82303c4e0] } +&{setEllipticCurves QSslConfiguration::setEllipticCurves commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false void [0xc82303c820] } +&{setLocalCertificate QSslConfiguration::setLocalCertificate commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false void [0xc82303cb40] } +&{setLocalCertificateChain QSslConfiguration::setLocalCertificateChain commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false void [0xc82303cea0] } +&{setPeerVerifyDepth QSslConfiguration::setPeerVerifyDepth commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false void [0xc82303d1e0] } +&{setPeerVerifyMode QSslConfiguration::setPeerVerifyMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false void [0xc82303d500] } +&{setPrivateKey QSslConfiguration::setPrivateKey commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false void [0xc82303d840] } +&{setProtocol QSslConfiguration::setProtocol commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false void [0xc82303db60] } +&{setSessionTicket QSslConfiguration::setSessionTicket commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false void [0xc82303de20] } +&{setSslOption QSslConfiguration::setSslOption commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false void [0xc82302c140 0xc82302c220] } +&{supportedCiphers QSslConfiguration::supportedCiphers commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain true false QList [] } +&{supportedEllipticCurves QSslConfiguration::supportedEllipticCurves commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain true false QVector [] } +&{swap QSslConfiguration::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false void [0xc82302c8c0] } +&{systemCaCertificates QSslConfiguration::systemCaCertificates commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain true false QList [] } +&{testSslOption QSslConfiguration::testSslOption commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non plain false false bool [0xc82302ce60] } +&{~QSslConfiguration QSslConfiguration::~QSslConfiguration commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslconfiguration.h non destructor false false [] } +######################################## ENUMS ######################################## +&{NextProtocolNegotiationStatus QSslConfiguration::NextProtocolNegotiationStatus commendable public [0xc82305e0e0 0xc82305e240 0xc82305e2c0]} diff --git a/internal/binding/dump/QtNetwork/QSslEllipticCurve.txt b/internal/binding/dump/QtNetwork/QSslEllipticCurve.txt new file mode 100755 index 00000000..f2925636 --- /dev/null +++ b/internal/binding/dump/QtNetwork/QSslEllipticCurve.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QSslEllipticCurve QSslEllipticCurve::QSslEllipticCurve commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslellipticcurve.h non constructor false false [] } +&{isValid QSslEllipticCurve::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslellipticcurve.h non plain false false bool [] } +&{fromLongName QSslEllipticCurve::fromLongName commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslellipticcurve_openssl.cpp non plain true false QSslEllipticCurve [0xc82302da60] } +&{fromShortName QSslEllipticCurve::fromShortName commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslellipticcurve_openssl.cpp non plain true false QSslEllipticCurve [0xc82302dde0] } +&{isTlsNamedCurve QSslEllipticCurve::isTlsNamedCurve commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslellipticcurve_openssl.cpp non plain false false bool [] } +&{longName QSslEllipticCurve::longName commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslellipticcurve_openssl.cpp non plain false false QString [] } +&{shortName QSslEllipticCurve::shortName commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslellipticcurve_openssl.cpp non plain false false QString [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtNetwork/QSslError.txt b/internal/binding/dump/QtNetwork/QSslError.txt new file mode 100755 index 00000000..40dfd171 --- /dev/null +++ b/internal/binding/dump/QtNetwork/QSslError.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QSslError QSslError::QSslError commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslerror.h non constructor false false [] } +&{QSslError QSslError::QSslError commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslerror.h non constructor false true 2 [0xc82300fbe0] } +&{QSslError QSslError::QSslError commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslerror.h non constructor false true 3 [0xc82300ff60 0xc822fe8080] } +&{QSslError QSslError::QSslError commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslerror.h non constructor false true 4 [0xc822fe83c0] } +&{certificate QSslError::certificate commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslerror.h non plain false false QSslCertificate [] } +&{error QSslError::error commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslerror.h non plain false false SslError [] } +&{errorString QSslError::errorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslerror.h non plain false false QString [] } +&{operator!= QSslError::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslerror.h non plain false false bool [0xc822fe8bc0] } +&{operator= QSslError::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslerror.h non plain false false QSslError & [0xc822fe8ee0] } +&{operator== QSslError::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslerror.h non plain false false bool [0xc822fe9240] } +&{swap QSslError::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslerror.h non plain false false void [0xc822fe94a0] } +&{~QSslError QSslError::~QSslError commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslerror.h non destructor false false [] } +######################################## ENUMS ######################################## +&{SslError QSslError::SslError commendable public [0xc82301f220 0xc82301f320 0xc82301f4a0 0xc82301f580 0xc82301f760 0xc82301f8c0 0xc82301f9e0 0xc82301fb80 0xc82301fd00 0xc82301fea0 0xc82301ffe0 0xc82300e160 0xc82300e220 0xc82300e3a0 0xc82300e560 0xc82300e760 0xc82300e9c0 0xc82300ea80 0xc82300eca0 0xc82300ee60 0xc82300efc0 0xc82300f140 0xc82300f280 0xc82300f400 0xc82300f580 0xc82300f6a0]} diff --git a/internal/binding/dump/QtNetwork/QSslKey.txt b/internal/binding/dump/QtNetwork/QSslKey.txt new file mode 100755 index 00000000..7fe05a4d --- /dev/null +++ b/internal/binding/dump/QtNetwork/QSslKey.txt @@ -0,0 +1,20 @@ +######################################## FUNCTIONS ######################################## +&{QSslKey QSslKey::QSslKey commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslkey.h non constructor false false [] } +&{QSslKey QSslKey::QSslKey commendable unsupported_cppEnum /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslkey.h non constructor false true 3 [0xc822fe9ce0 0xc822fe9e00 0xc822fe9f60 0xc822fd00c0 0xc822fd01c0] } +&{QSslKey QSslKey::QSslKey commendable unsupported_cppEnum /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslkey.h non constructor false true 4 [0xc822fd0460 0xc822fd0580] } +&{QSslKey QSslKey::QSslKey commendable unsupported_cppEnum /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslkey.h non constructor false true 2 [0xc822fd07c0 0xc822fd0940 0xc822fd0a80 0xc822fd0be0 0xc822fd0d00] } +&{QSslKey QSslKey::QSslKey commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslkey.h non constructor false true 5 [0xc822fd0fe0] } +&{algorithm QSslKey::algorithm commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslkey.h non plain false false QSsl::KeyAlgorithm [] } +&{clear QSslKey::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslkey.h non plain false false void [] } +&{handle QSslKey::handle commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslkey.h non plain false false Qt::HANDLE [] } +&{isNull QSslKey::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslkey.h non plain false false bool [] } +&{length QSslKey::length commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslkey.h non plain false false int [] } +&{operator!= QSslKey::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslkey.h non plain false false bool [0xc822fd1900] } +&{operator= QSslKey::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslkey.h non plain false false QSslKey & [0xc822fd1c00] } +&{operator== QSslKey::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslkey.h non plain false false bool [0xc822fd1ea0] } +&{swap QSslKey::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslkey.h non plain false false void [0xc822fc0140] } +&{toDer QSslKey::toDer commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslkey.h non plain false false QByteArray [0xc822fc03e0] } +&{toPem QSslKey::toPem commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslkey.h non plain false false QByteArray [0xc822fc06c0] } +&{type QSslKey::type commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslkey.h non plain false false QSsl::KeyType [] } +&{~QSslKey QSslKey::~QSslKey commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslkey.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtNetwork/QSslPreSharedKeyAuthenticator.txt b/internal/binding/dump/QtNetwork/QSslPreSharedKeyAuthenticator.txt new file mode 100755 index 00000000..15b6fbfe --- /dev/null +++ b/internal/binding/dump/QtNetwork/QSslPreSharedKeyAuthenticator.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QSslPreSharedKeyAuthenticator QSslPreSharedKeyAuthenticator::QSslPreSharedKeyAuthenticator commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslpresharedkeyauthenticator.h non constructor false false [] } +&{QSslPreSharedKeyAuthenticator QSslPreSharedKeyAuthenticator::QSslPreSharedKeyAuthenticator commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslpresharedkeyauthenticator.h non constructor false true 2 [0xc822fc1100] } +&{identity QSslPreSharedKeyAuthenticator::identity commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslpresharedkeyauthenticator.h non plain false false QByteArray [] } +&{identityHint QSslPreSharedKeyAuthenticator::identityHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslpresharedkeyauthenticator.h non plain false false QByteArray [] } +&{maximumIdentityLength QSslPreSharedKeyAuthenticator::maximumIdentityLength commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslpresharedkeyauthenticator.h non plain false false int [] } +&{maximumPreSharedKeyLength QSslPreSharedKeyAuthenticator::maximumPreSharedKeyLength commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslpresharedkeyauthenticator.h non plain false false int [] } +&{operator= QSslPreSharedKeyAuthenticator::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslpresharedkeyauthenticator.h non plain false true 2 QSslPreSharedKeyAuthenticator & [0xc822fc1940] } +&{operator= QSslPreSharedKeyAuthenticator::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslpresharedkeyauthenticator.h non plain false false QSslPreSharedKeyAuthenticator & [0xc822fc1c00] } +&{preSharedKey QSslPreSharedKeyAuthenticator::preSharedKey commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslpresharedkeyauthenticator.h non plain false false QByteArray [] } +&{setIdentity QSslPreSharedKeyAuthenticator::setIdentity commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslpresharedkeyauthenticator.h non plain false false void [0xc822fc1fc0] } +&{setPreSharedKey QSslPreSharedKeyAuthenticator::setPreSharedKey commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslpresharedkeyauthenticator.h non plain false false void [0xc822fb22a0] } +&{swap QSslPreSharedKeyAuthenticator::swap commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslpresharedkeyauthenticator.h non plain false false void [0xc822fb25a0] } +&{~QSslPreSharedKeyAuthenticator QSslPreSharedKeyAuthenticator::~QSslPreSharedKeyAuthenticator commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslpresharedkeyauthenticator.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtNetwork/QSslSocket.txt b/internal/binding/dump/QtNetwork/QSslSocket.txt new file mode 100755 index 00000000..5687b94b --- /dev/null +++ b/internal/binding/dump/QtNetwork/QSslSocket.txt @@ -0,0 +1,75 @@ +######################################## FUNCTIONS ######################################## +&{QSslSocket QSslSocket::QSslSocket commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non constructor false false [0xc822fb3820] } +&{abort QSslSocket::abort commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false void [] } +&{addCaCertificate QSslSocket::addCaCertificate commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false void [0xc822fb3fc0] } +&{addCaCertificates QSslSocket::addCaCertificates commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false bool [0xc822f9e3c0 0xc822f9e4e0 0xc822f9e6a0] } +&{addCaCertificates QSslSocket::addCaCertificates commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false true 2 void [0xc822f9eaa0] } +&{addDefaultCaCertificate QSslSocket::addDefaultCaCertificate commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain true false void [0xc822f9ee00] } +&{addDefaultCaCertificates QSslSocket::addDefaultCaCertificates commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain true false bool [0xc822f9f140 0xc822f9f260 0xc822f9f3e0] } +&{addDefaultCaCertificates QSslSocket::addDefaultCaCertificates commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain true true 2 void [0xc822f9f780] } +&{atEnd QSslSocket::atEnd commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h impure plain false false bool [] } +&{bytesAvailable QSslSocket::bytesAvailable commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h impure plain false false qint64 [] } +&{bytesToWrite QSslSocket::bytesToWrite commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h impure plain false false qint64 [] } +&{canReadLine QSslSocket::canReadLine commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h impure plain false false bool [] } +&{close QSslSocket::close commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h impure plain false false void [] } +&{connectToHostEncrypted QSslSocket::connectToHostEncrypted commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false void [0xc822f90f80 0xc822f91040 0xc822f91100 0xc822f91220] } +&{connectToHostEncrypted QSslSocket::connectToHostEncrypted commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false true 2 void [0xc822f91540 0xc822f91640 0xc822f91740 0xc822f91800 0xc822f91940] } +&{encrypted QSslSocket::encrypted commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non signal false false void [] } +&{encryptedBytesAvailable QSslSocket::encryptedBytesAvailable commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false qint64 [] } +&{encryptedBytesToWrite QSslSocket::encryptedBytesToWrite commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false qint64 [] } +&{encryptedBytesWritten QSslSocket::encryptedBytesWritten commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non signal false false void [0xc822f7e3e0] } +&{flush QSslSocket::flush commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false bool [] } +&{ignoreSslErrors QSslSocket::ignoreSslErrors commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non slot false false void [] } +&{ignoreSslErrors QSslSocket::ignoreSslErrors commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false true 2 void [0xc822f7e9c0] } +&{isEncrypted QSslSocket::isEncrypted commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false bool [] } +&{localCertificate QSslSocket::localCertificate commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false QSslCertificate [] } +&{localCertificateChain QSslSocket::localCertificateChain commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false QList [] } +&{mode QSslSocket::mode commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false SslMode [] } +&{modeChanged QSslSocket::modeChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non signal false false void [0xc822f7f320] } +&{peerCertificate QSslSocket::peerCertificate commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false QSslCertificate [] } +&{peerCertificateChain QSslSocket::peerCertificateChain commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false QList [] } +&{peerVerifyDepth QSslSocket::peerVerifyDepth commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false int [] } +&{peerVerifyError QSslSocket::peerVerifyError commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non signal false false void [0xc822f7fc00] } +&{peerVerifyMode QSslSocket::peerVerifyMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false QSslSocket::PeerVerifyMode [] } +&{peerVerifyName QSslSocket::peerVerifyName commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false QString [] } +&{preSharedKeyAuthenticationRequired QSslSocket::preSharedKeyAuthenticationRequired commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non signal false false void [0xc822f6e1e0] } +&{privateKey QSslSocket::privateKey commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false QSslKey [] } +&{protocol QSslSocket::protocol commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false QSsl::SslProtocol [] } +&{readData QSslSocket::readData commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h impure plain false false qint64 [0xc822f6e920 0xc822f6e9c0] } +&{resume QSslSocket::resume commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h impure plain false false void [] } +&{sessionCipher QSslSocket::sessionCipher commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false QSslCipher [] } +&{sessionProtocol QSslSocket::sessionProtocol commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false QSsl::SslProtocol [] } +&{setLocalCertificate QSslSocket::setLocalCertificate commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false void [0xc822f5a280] } +&{setLocalCertificate QSslSocket::setLocalCertificate commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false true 2 void [0xc822f5a600 0xc822f5a700] } +&{setLocalCertificateChain QSslSocket::setLocalCertificateChain commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false void [0xc822f5aa40] } +&{setPeerVerifyDepth QSslSocket::setPeerVerifyDepth commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false void [0xc822f5ada0] } +&{setPeerVerifyMode QSslSocket::setPeerVerifyMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false void [0xc822f5b120] } +&{setPeerVerifyName QSslSocket::setPeerVerifyName commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false void [0xc822f5b4a0] } +&{setPrivateKey QSslSocket::setPrivateKey commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false void [0xc822f5b7e0] } +&{setPrivateKey QSslSocket::setPrivateKey commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false true 2 void [0xc822f5ba60 0xc822f5bb60 0xc822f5bcc0 0xc822f5bda0] } +&{setProtocol QSslSocket::setProtocol commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false void [0xc822f42180] } +&{setReadBufferSize QSslSocket::setReadBufferSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h impure plain false false void [0xc822f424c0] } +&{setSocketDescriptor QSslSocket::setSocketDescriptor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h impure plain false false bool [0xc822f427e0 0xc822f428c0 0xc822f429a0] } +&{setSocketOption QSslSocket::setSocketOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h impure plain false false void [0xc822f42c80 0xc822f42d60] } +&{setSslConfiguration QSslSocket::setSslConfiguration commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false void [0xc822f43120] } +&{socketOption QSslSocket::socketOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h impure plain false false QVariant [0xc822f43440] } +&{sslConfiguration QSslSocket::sslConfiguration commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false QSslConfiguration [] } +&{sslErrors QSslSocket::sslErrors commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non signal false true 2 void [0xc822f439a0] } +&{sslErrors QSslSocket::sslErrors commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false QList [] } +&{sslLibraryBuildVersionNumber QSslSocket::sslLibraryBuildVersionNumber commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain true false long [] } +&{sslLibraryBuildVersionString QSslSocket::sslLibraryBuildVersionString commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain true false QString [] } +&{sslLibraryVersionNumber QSslSocket::sslLibraryVersionNumber commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain true false long [] } +&{sslLibraryVersionString QSslSocket::sslLibraryVersionString commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain true false QString [] } +&{startClientEncryption QSslSocket::startClientEncryption commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non slot false false void [] } +&{startServerEncryption QSslSocket::startServerEncryption commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non slot false false void [] } +&{supportsSsl QSslSocket::supportsSsl commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain true false bool [] } +&{waitForBytesWritten QSslSocket::waitForBytesWritten commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h impure plain false false bool [0xc822f24c60] } +&{waitForConnected QSslSocket::waitForConnected commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h impure plain false false bool [0xc822f24f40] } +&{waitForDisconnected QSslSocket::waitForDisconnected commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h impure plain false false bool [0xc822f25260] } +&{waitForEncrypted QSslSocket::waitForEncrypted commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non plain false false bool [0xc822f25580] } +&{waitForReadyRead QSslSocket::waitForReadyRead commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h impure plain false false bool [0xc822f25880] } +&{writeData QSslSocket::writeData commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h impure plain false false qint64 [0xc822f25b80 0xc822f25c20] } +&{~QSslSocket QSslSocket::~QSslSocket commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/ssl/qsslsocket.h non destructor false false [] } +######################################## ENUMS ######################################## +&{PeerVerifyMode QSslSocket::PeerVerifyMode commendable public [0xc822fb2dc0 0xc822fb2e40 0xc822fb2fa0 0xc822fb3020]} +&{SslMode QSslSocket::SslMode commendable public [0xc822fb32e0 0xc822fb33a0 0xc822fb3480]} diff --git a/internal/binding/dump/QtNetwork/QTcpServer.txt b/internal/binding/dump/QtNetwork/QTcpServer.txt new file mode 100755 index 00000000..6e920f5a --- /dev/null +++ b/internal/binding/dump/QtNetwork/QTcpServer.txt @@ -0,0 +1,26 @@ +######################################## FUNCTIONS ######################################## +&{QTcpServer QTcpServer::QTcpServer commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qtcpserver.h non constructor false false [0xc82310c3c0] } +&{acceptError QTcpServer::acceptError commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qtcpserver.h non signal false false void [0xc82310c9a0] } +&{addPendingConnection QTcpServer::addPendingConnection commendable protected /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qtcpserver.h non plain false false void [0xc82310cc60] } +&{close QTcpServer::close commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qtcpserver.h non plain false false void [] } +&{errorString QTcpServer::errorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qtcpserver.h non plain false false QString [] } +&{hasPendingConnections QTcpServer::hasPendingConnections commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qtcpserver.h impure plain false false bool [] } +&{incomingConnection QTcpServer::incomingConnection commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qtcpserver.h impure plain false false void [0xc82310d260] } +&{isListening QTcpServer::isListening commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qtcpserver.h non plain false false bool [] } +&{listen QTcpServer::listen commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qtcpserver.h non plain false false bool [0xc82310d680 0xc82310d760] } +&{maxPendingConnections QTcpServer::maxPendingConnections commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qtcpserver.h non plain false false int [] } +&{newConnection QTcpServer::newConnection commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qtcpserver.h non signal false false void [] } +&{nextPendingConnection QTcpServer::nextPendingConnection commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qtcpserver.h impure plain false false QTcpSocket * [] } +&{pauseAccepting QTcpServer::pauseAccepting commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qtcpserver.h non plain false false void [] } +&{proxy QTcpServer::proxy commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qtcpserver.h non plain false false QNetworkProxy [] } +&{resumeAccepting QTcpServer::resumeAccepting commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qtcpserver.h non plain false false void [] } +&{serverAddress QTcpServer::serverAddress commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qtcpserver.h non plain false false QHostAddress [] } +&{serverError QTcpServer::serverError commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qtcpserver.h non plain false false QAbstractSocket::SocketError [] } +&{serverPort QTcpServer::serverPort commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qtcpserver.h non plain false false quint16 [] } +&{setMaxPendingConnections QTcpServer::setMaxPendingConnections commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qtcpserver.h non plain false false void [0xc8230f64a0] } +&{setProxy QTcpServer::setProxy commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qtcpserver.h non plain false false void [0xc8230f66e0] } +&{setSocketDescriptor QTcpServer::setSocketDescriptor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qtcpserver.h non plain false false bool [0xc8230f69e0] } +&{socketDescriptor QTcpServer::socketDescriptor commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qtcpserver.h non plain false false qintptr [] } +&{waitForNewConnection QTcpServer::waitForNewConnection commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qtcpserver.h non plain false false bool [0xc8230f6da0 0xc8230f6e20] } +&{~QTcpServer QTcpServer::~QTcpServer commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qtcpserver.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtNetwork/QTcpSocket.txt b/internal/binding/dump/QtNetwork/QTcpSocket.txt new file mode 100755 index 00000000..b83a2ee2 --- /dev/null +++ b/internal/binding/dump/QtNetwork/QTcpSocket.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{QTcpSocket QTcpSocket::QTcpSocket commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qtcpsocket.h non constructor false false [0xc8230f72c0] } +&{~QTcpSocket QTcpSocket::~QTcpSocket commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qtcpsocket.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtNetwork/QUdpSocket.txt b/internal/binding/dump/QtNetwork/QUdpSocket.txt new file mode 100755 index 00000000..a1d58ed2 --- /dev/null +++ b/internal/binding/dump/QtNetwork/QUdpSocket.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QUdpSocket QUdpSocket::QUdpSocket commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qudpsocket.h non constructor false false [0xc8230f7b20] } +&{hasPendingDatagrams QUdpSocket::hasPendingDatagrams commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qudpsocket.h non plain false false bool [] } +&{joinMulticastGroup QUdpSocket::joinMulticastGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qudpsocket.h non plain false false bool [0xc8230f7fa0] } +&{joinMulticastGroup QUdpSocket::joinMulticastGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qudpsocket.h non plain false true 2 bool [0xc8230e82c0 0xc8230e8420] } +&{leaveMulticastGroup QUdpSocket::leaveMulticastGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qudpsocket.h non plain false false bool [0xc8230e8740] } +&{leaveMulticastGroup QUdpSocket::leaveMulticastGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qudpsocket.h non plain false true 2 bool [0xc8230e8a40 0xc8230e8b40] } +&{multicastInterface QUdpSocket::multicastInterface commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qudpsocket.h non plain false false QNetworkInterface [] } +&{pendingDatagramSize QUdpSocket::pendingDatagramSize commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qudpsocket.h non plain false false qint64 [] } +&{readDatagram QUdpSocket::readDatagram commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qudpsocket.h non plain false false qint64 [0xc8230e9180 0xc8230e9200 0xc8230e92c0 0xc8230e9340] } +&{setMulticastInterface QUdpSocket::setMulticastInterface commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qudpsocket.h non plain false false void [0xc8230e95a0] } +&{writeDatagram QUdpSocket::writeDatagram commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qudpsocket.h non plain false true 2 qint64 [0xc8230e9880 0xc8230e9980 0xc8230e9aa0] } +&{writeDatagram QUdpSocket::writeDatagram commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qudpsocket.h non plain false false qint64 [0xc8230e9d20 0xc8230e9da0 0xc8230e9e80 0xc8230e9f80] } +&{~QUdpSocket QUdpSocket::~QUdpSocket commendable public /work/build/qt5_workdir/w/s/qtbase/src/network/socket/qudpsocket.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtNfc/QNdefFilter.txt b/internal/binding/dump/QtNfc/QNdefFilter.txt new file mode 100755 index 00000000..bab14aee --- /dev/null +++ b/internal/binding/dump/QtNfc/QNdefFilter.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QNdefFilter QNdefFilter::QNdefFilter commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndeffilter.h non constructor false false [] } +&{QNdefFilter QNdefFilter::QNdefFilter commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndeffilter.h non constructor false true 2 [0xc822a15f60] } +&{appendRecord QNdefFilter::appendRecord commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndeffilter.h non plain false true 2 void [0xc8227dc280 0xc8227dc400 0xc8227dc520 0xc8227dc660] } +&{appendRecord QNdefFilter::appendRecord commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndeffilter.h non plain false true 3 void [0xc8227dc920] } +&{appendRecord QNdefFilter::appendRecord commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndeffilter.h non plain false false void [0xc8227dcbc0 0xc8227dcc60] } +&{clear QNdefFilter::clear commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndeffilter.h non plain false false void [] } +&{operator= QNdefFilter::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndeffilter.h non plain false false QNdefFilter & [0xc8227dd0c0] } +&{orderMatch QNdefFilter::orderMatch commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndeffilter.h non plain false false bool [] } +&{recordAt QNdefFilter::recordAt commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndeffilter.h non plain false false Record [0xc8227dd600] } +&{recordCount QNdefFilter::recordCount commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndeffilter.h non plain false false int [] } +&{setOrderMatch QNdefFilter::setOrderMatch commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndeffilter.h non plain false false void [0xc8227ddaa0] } +&{~QNdefFilter QNdefFilter::~QNdefFilter commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndeffilter.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtNfc/QNdefMessage.txt b/internal/binding/dump/QtNfc/QNdefMessage.txt new file mode 100755 index 00000000..7fbdecdf --- /dev/null +++ b/internal/binding/dump/QtNfc/QNdefMessage.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QNdefMessage QNdefMessage::QNdefMessage commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefmessage.h non constructor false false [] } +&{QNdefMessage QNdefMessage::QNdefMessage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefmessage.h non constructor false true 4 [0xc8227ea180] } +&{QNdefMessage QNdefMessage::QNdefMessage commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefmessage.h non constructor false true 3 [0xc8227ea500] } +&{QNdefMessage QNdefMessage::QNdefMessage commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefmessage.h non constructor false true 2 [0xc8227ea820] } +&{fromByteArray QNdefMessage::fromByteArray commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefmessage.h non plain true false QNdefMessage [0xc8227eab60] } +&{operator== QNdefMessage::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefmessage.h non plain false false bool [0xc8227eaf00] } +&{toByteArray QNdefMessage::toByteArray commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefmessage.h non plain false false QByteArray [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtNfc/QNdefNfcSmartPosterRecord.txt b/internal/binding/dump/QtNfc/QNdefNfcSmartPosterRecord.txt new file mode 100755 index 00000000..723f65a4 --- /dev/null +++ b/internal/binding/dump/QtNfc/QNdefNfcSmartPosterRecord.txt @@ -0,0 +1,41 @@ +######################################## FUNCTIONS ######################################## +&{QNdefNfcSmartPosterRecord QNdefNfcSmartPosterRecord::QNdefNfcSmartPosterRecord commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non constructor false false [] } +&{QNdefNfcSmartPosterRecord QNdefNfcSmartPosterRecord::QNdefNfcSmartPosterRecord commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non constructor false true 3 [0xc822806420] } +&{QNdefNfcSmartPosterRecord QNdefNfcSmartPosterRecord::QNdefNfcSmartPosterRecord commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non constructor false true 2 [0xc822806680] } +&{action QNdefNfcSmartPosterRecord::action commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false Action [] } +&{addIcon QNdefNfcSmartPosterRecord::addIcon commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false true 2 void [0xc822806920 0xc822806a00] } +&{addIcon QNdefNfcSmartPosterRecord::addIcon commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false void [0xc822806c20] } +&{addTitle QNdefNfcSmartPosterRecord::addTitle commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false bool [0xc822806e40] } +&{addTitle QNdefNfcSmartPosterRecord::addTitle commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false true 2 bool [0xc822807080 0xc822807100 0xc8228071e0] } +&{hasAction QNdefNfcSmartPosterRecord::hasAction commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false bool [] } +&{hasIcon QNdefNfcSmartPosterRecord::hasIcon commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false bool [0xc8228074e0] } +&{hasSize QNdefNfcSmartPosterRecord::hasSize commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false bool [] } +&{hasTitle QNdefNfcSmartPosterRecord::hasTitle commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false bool [0xc8228077a0] } +&{hasTypeInfo QNdefNfcSmartPosterRecord::hasTypeInfo commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false bool [] } +&{icon QNdefNfcSmartPosterRecord::icon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false QByteArray [0xc822807b20] } +&{iconCount QNdefNfcSmartPosterRecord::iconCount commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false int [] } +&{iconRecord QNdefNfcSmartPosterRecord::iconRecord commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false QNdefNfcIconRecord [0xc822807e40] } +&{iconRecords QNdefNfcSmartPosterRecord::iconRecords commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false QList [] } +&{operator= QNdefNfcSmartPosterRecord::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false QNdefNfcSmartPosterRecord & [0xc821da8160] } +&{removeIcon QNdefNfcSmartPosterRecord::removeIcon commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false true 2 bool [0xc821da82e0] } +&{removeIcon QNdefNfcSmartPosterRecord::removeIcon commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false bool [0xc821da84a0] } +&{removeTitle QNdefNfcSmartPosterRecord::removeTitle commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false bool [0xc821da8660] } +&{removeTitle QNdefNfcSmartPosterRecord::removeTitle commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false true 2 bool [0xc821da8800] } +&{setAction QNdefNfcSmartPosterRecord::setAction commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false void [0xc821da8980] } +&{setIcons QNdefNfcSmartPosterRecord::setIcons commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false void [0xc821da8ae0] } +&{setSize QNdefNfcSmartPosterRecord::setSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false void [0xc821da8e20] } +&{setTitles QNdefNfcSmartPosterRecord::setTitles commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false void [0xc821da8f80] } +&{setTypeInfo QNdefNfcSmartPosterRecord::setTypeInfo commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false void [0xc821da9140] } +&{setUri QNdefNfcSmartPosterRecord::setUri commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false void [0xc821da9320] } +&{setUri QNdefNfcSmartPosterRecord::setUri commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false true 2 void [0xc821da94e0] } +&{size QNdefNfcSmartPosterRecord::size commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false quint32 [] } +&{title QNdefNfcSmartPosterRecord::title commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false QString [0xc821da97a0] } +&{titleCount QNdefNfcSmartPosterRecord::titleCount commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false int [] } +&{titleRecord QNdefNfcSmartPosterRecord::titleRecord commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false QNdefNfcTextRecord [0xc821da9a00] } +&{titleRecords QNdefNfcSmartPosterRecord::titleRecords commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false QList [] } +&{typeInfo QNdefNfcSmartPosterRecord::typeInfo commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false QByteArray [] } +&{uri QNdefNfcSmartPosterRecord::uri commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false QUrl [] } +&{uriRecord QNdefNfcSmartPosterRecord::uriRecord commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non plain false false QNdefNfcUriRecord [] } +&{~QNdefNfcSmartPosterRecord QNdefNfcSmartPosterRecord::~QNdefNfcSmartPosterRecord commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcsmartposterrecord.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Action QNdefNfcSmartPosterRecord::Action commendable public [0xc8227ebe80 0xc8227ebfa0 0xc822806040 0xc8228060c0]} diff --git a/internal/binding/dump/QtNfc/QNdefNfcTextRecord.txt b/internal/binding/dump/QtNfc/QNdefNfcTextRecord.txt new file mode 100755 index 00000000..5ce9288b --- /dev/null +++ b/internal/binding/dump/QtNfc/QNdefNfcTextRecord.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{QNdefNfcTextRecord QNdefNfcTextRecord::QNdefNfcTextRecord commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfctextrecord.h non constructor false false [] } +&{QNdefNfcTextRecord QNdefNfcTextRecord::QNdefNfcTextRecord commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfctextrecord.h non constructor false true 2 [0xc822816680] } +&{encoding QNdefNfcTextRecord::encoding commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfctextrecord.h non plain false false Encoding [] } +&{locale QNdefNfcTextRecord::locale commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfctextrecord.h non plain false false QString [] } +&{setEncoding QNdefNfcTextRecord::setEncoding commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfctextrecord.h non plain false false void [0xc822816c20] } +&{setLocale QNdefNfcTextRecord::setLocale commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfctextrecord.h non plain false false void [0xc822816e40] } +&{setText QNdefNfcTextRecord::setText commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfctextrecord.h non plain false false void [0xc8228170e0] } +&{text QNdefNfcTextRecord::text commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfctextrecord.h non plain false false QString [] } +######################################## ENUMS ######################################## +&{Encoding QNdefNfcTextRecord::Encoding commendable public [0xc8228161c0 0xc822816240]} diff --git a/internal/binding/dump/QtNfc/QNdefNfcUriRecord.txt b/internal/binding/dump/QtNfc/QNdefNfcUriRecord.txt new file mode 100755 index 00000000..8b125c28 --- /dev/null +++ b/internal/binding/dump/QtNfc/QNdefNfcUriRecord.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QNdefNfcUriRecord QNdefNfcUriRecord::QNdefNfcUriRecord commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcurirecord.h non constructor false false [] } +&{QNdefNfcUriRecord QNdefNfcUriRecord::QNdefNfcUriRecord commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcurirecord.h non constructor false true 2 [0xc822817760] } +&{setUri QNdefNfcUriRecord::setUri commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcurirecord.h non plain false false void [0xc822817a40] } +&{uri QNdefNfcUriRecord::uri commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefnfcurirecord.h non plain false false QUrl [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtNfc/QNdefRecord.txt b/internal/binding/dump/QtNfc/QNdefRecord.txt new file mode 100755 index 00000000..fe5e7721 --- /dev/null +++ b/internal/binding/dump/QtNfc/QNdefRecord.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{QNdefRecord QNdefRecord::QNdefRecord commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefrecord.h non constructor false false [] } +&{QNdefRecord QNdefRecord::QNdefRecord commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefrecord.h non constructor false true 2 [0xc82282aac0] } +&{id QNdefRecord::id commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefrecord.h non plain false false QByteArray [] } +&{isEmpty QNdefRecord::isEmpty commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefrecord.h non plain false false bool [] } +&{isRecordType QNdefRecord::isRecordType commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefrecord.h non plain false false bool [] } +&{operator!= QNdefRecord::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefrecord.h non plain false false bool [0xc82282bc00] } +&{operator= QNdefRecord::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefrecord.h non plain false false QNdefRecord & [0xc82282be80] } +&{operator== QNdefRecord::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefrecord.h non plain false false bool [0xc822848140] } +&{payload QNdefRecord::payload commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefrecord.h non plain false false QByteArray [] } +&{setId QNdefRecord::setId commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefrecord.h non plain false false void [0xc822848560] } +&{setPayload QNdefRecord::setPayload commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefrecord.h non plain false false void [0xc8228487e0] } +&{setType QNdefRecord::setType commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefrecord.h non plain false false void [0xc822848aa0] } +&{setTypeNameFormat QNdefRecord::setTypeNameFormat commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefrecord.h non plain false false void [0xc822848d60] } +&{type QNdefRecord::type commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefrecord.h non plain false false QByteArray [] } +&{typeNameFormat QNdefRecord::typeNameFormat commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefrecord.h non plain false false TypeNameFormat [] } +&{~QNdefRecord QNdefRecord::~QNdefRecord commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qndefrecord.h non destructor false false [] } +######################################## ENUMS ######################################## +&{TypeNameFormat QNdefRecord::TypeNameFormat commendable public [0xc82282a3c0 0xc82282a440 0xc82282a4e0 0xc82282a5a0 0xc82282a660 0xc82282a700]} diff --git a/internal/binding/dump/QtNfc/QNearFieldManager.txt b/internal/binding/dump/QtNfc/QNearFieldManager.txt new file mode 100755 index 00000000..fc996c18 --- /dev/null +++ b/internal/binding/dump/QtNfc/QNearFieldManager.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{registerNdefMessageHandler QNearFieldManager::registerNdefMessageHandler commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldmanager.cpp non plain false false int [0xc822849600 0xc8228496a0] } +&{startTargetDetection QNearFieldManager::startTargetDetection commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldmanager.cpp non plain false false bool [] } +&{QNearFieldManager QNearFieldManager::QNearFieldManager commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldmanager.h non constructor false false [0xc82285a040] } +&{isAvailable QNearFieldManager::isAvailable commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldmanager.h non plain false false bool [] } +&{registerNdefMessageHandler QNearFieldManager::registerNdefMessageHandler commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldmanager.h non plain false true 2 int [0xc82285a760 0xc82285a880 0xc82285a980 0xc82285aa00] } +&{registerNdefMessageHandler QNearFieldManager::registerNdefMessageHandler commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldmanager.h non plain false true 3 int [0xc82285ac80 0xc82285ad60 0xc82285ae40] } +&{setTargetAccessModes QNearFieldManager::setTargetAccessModes commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldmanager.h non plain false false void [0xc82285b080] } +&{stopTargetDetection QNearFieldManager::stopTargetDetection commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldmanager.h non plain false false void [] } +&{targetAccessModes QNearFieldManager::targetAccessModes commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldmanager.h non plain false false TargetAccessModes [] } +&{targetDetected QNearFieldManager::targetDetected commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldmanager.h non signal false false void [0xc82285b600] } +&{targetLost QNearFieldManager::targetLost commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldmanager.h non signal false false void [0xc82285b8a0] } +&{unregisterNdefMessageHandler QNearFieldManager::unregisterNdefMessageHandler commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldmanager.h non plain false false bool [0xc82285bb40] } +&{~QNearFieldManager QNearFieldManager::~QNearFieldManager commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldmanager.h non destructor false false [] } +######################################## ENUMS ######################################## +&{TargetAccessMode QNearFieldManager::TargetAccessMode commendable public QNearFieldManager::TargetAccessModes [0xc8228499c0 0xc822849ac0 0xc822849bc0 0xc822849d00]} diff --git a/internal/binding/dump/QtNfc/QNearFieldShareManager.txt b/internal/binding/dump/QtNfc/QNearFieldShareManager.txt new file mode 100755 index 00000000..9a069754 --- /dev/null +++ b/internal/binding/dump/QtNfc/QNearFieldShareManager.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QNearFieldShareManager QNearFieldShareManager::QNearFieldShareManager commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldsharemanager.h non constructor false false [0xc822896ba0] } +&{error QNearFieldShareManager::error commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldsharemanager.h non signal false false void [0xc822896de0] } +&{setShareModes QNearFieldShareManager::setShareModes commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldsharemanager.h non plain false false void [0xc822896fa0] } +&{shareError QNearFieldShareManager::shareError commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldsharemanager.h non plain false false QNearFieldShareManager::ShareError [] } +&{shareModes QNearFieldShareManager::shareModes commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldsharemanager.h non plain false false QNearFieldShareManager::ShareModes [] } +&{shareModesChanged QNearFieldShareManager::shareModesChanged commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldsharemanager.h non signal false false void [0xc822897340] } +&{supportedShareModes QNearFieldShareManager::supportedShareModes commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldsharemanager.h non plain true false QNearFieldShareManager::ShareModes [] } +&{targetDetected QNearFieldShareManager::targetDetected commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldsharemanager.h non signal false false void [0xc822897660] } +&{~QNearFieldShareManager QNearFieldShareManager::~QNearFieldShareManager commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldsharemanager.h non destructor false false [] } +######################################## ENUMS ######################################## +&{ShareError QNearFieldShareManager::ShareError commendable public [0xc822883ce0 0xc822883d60 0xc822883e40 0xc822883f60 0xc822896080 0xc8228961a0 0xc8228962c0 0xc8228963c0 0xc822896520]} +&{ShareMode QNearFieldShareManager::ShareMode commendable public QNearFieldShareManager::ShareModes [0xc822896720 0xc8228967a0 0xc822896860]} diff --git a/internal/binding/dump/QtNfc/QNearFieldShareTarget.txt b/internal/binding/dump/QtNfc/QNearFieldShareTarget.txt new file mode 100755 index 00000000..b0d7a9d6 --- /dev/null +++ b/internal/binding/dump/QtNfc/QNearFieldShareTarget.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{cancel QNearFieldShareTarget::cancel commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldsharetarget.h non plain false false void [] } +&{error QNearFieldShareTarget::error commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldsharetarget.h non signal false false void [0xc8228c2080] } +&{isShareInProgress QNearFieldShareTarget::isShareInProgress commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldsharetarget.h non plain false false bool [] } +&{share QNearFieldShareTarget::share commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldsharetarget.h non plain false true 2 bool [0xc8228c2520] } +&{share QNearFieldShareTarget::share commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldsharetarget.h non plain false false bool [0xc8228c28a0] } +&{shareError QNearFieldShareTarget::shareError commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldsharetarget.h non plain false false QNearFieldShareManager::ShareError [] } +&{shareFinished QNearFieldShareTarget::shareFinished commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldsharetarget.h non signal false false void [] } +&{shareModes QNearFieldShareTarget::shareModes commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldsharetarget.h non plain false false QNearFieldShareManager::ShareModes [] } +&{~QNearFieldShareTarget QNearFieldShareTarget::~QNearFieldShareTarget commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldsharetarget.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtNfc/QNearFieldTarget.txt b/internal/binding/dump/QtNfc/QNearFieldTarget.txt new file mode 100755 index 00000000..017d5ba4 --- /dev/null +++ b/internal/binding/dump/QtNfc/QNearFieldTarget.txt @@ -0,0 +1,26 @@ +######################################## FUNCTIONS ######################################## +&{QNearFieldTarget QNearFieldTarget::QNearFieldTarget commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldtarget.h non constructor false false [0xc822a995e0] } +&{accessMethods QNearFieldTarget::accessMethods commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldtarget.h pure plain false false AccessMethods [] } +&{disconnected QNearFieldTarget::disconnected commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldtarget.h non signal false false void [] } +&{error QNearFieldTarget::error commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldtarget.h non signal false false void [0xc822a99aa0 0xc822a99b60] } +&{handleResponse QNearFieldTarget::handleResponse commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldtarget.h impure plain false false bool [0xc822a99dc0 0xc822a99e80] } +&{hasNdefMessage QNearFieldTarget::hasNdefMessage commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldtarget.h impure plain false false bool [] } +&{isProcessingCommand QNearFieldTarget::isProcessingCommand commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldtarget.h non plain false false bool [] } +&{ndefMessageRead QNearFieldTarget::ndefMessageRead commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldtarget.h non signal false false void [0xc8228ec380] } +&{ndefMessagesWritten QNearFieldTarget::ndefMessagesWritten commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldtarget.h non signal false false void [] } +&{readNdefMessages QNearFieldTarget::readNdefMessages commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldtarget.h impure plain false false RequestId [] } +&{requestCompleted QNearFieldTarget::requestCompleted commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldtarget.h non signal false false void [0xc8228ec820] } +&{requestResponse QNearFieldTarget::requestResponse commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldtarget.h non plain false false QVariant [0xc8228ec9e0] } +&{sendCommand QNearFieldTarget::sendCommand commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldtarget.h impure plain false false RequestId [0xc8228ecca0] } +&{sendCommands QNearFieldTarget::sendCommands commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldtarget.h impure plain false false RequestId [0xc8228ecf80] } +&{setResponseForRequest QNearFieldTarget::setResponseForRequest commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldtarget.h non plain false false void [0xc8228ed240 0xc8228ed2c0 0xc8228ed3c0] } +&{type QNearFieldTarget::type commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldtarget.h pure plain false false Type [] } +&{uid QNearFieldTarget::uid commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldtarget.h pure plain false false QByteArray [] } +&{url QNearFieldTarget::url commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldtarget.h impure plain false false QUrl [] } +&{waitForRequestCompleted QNearFieldTarget::waitForRequestCompleted commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldtarget.h impure plain false false bool [0xc8228edb00 0xc8228edbe0] } +&{writeNdefMessages QNearFieldTarget::writeNdefMessages commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldtarget.h impure plain false false RequestId [0xc8228ede80] } +&{~QNearFieldTarget QNearFieldTarget::~QNearFieldTarget commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qnearfieldtarget.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{AccessMethod QNearFieldTarget::AccessMethod commendable public QNearFieldTarget::AccessMethods [0xc822a98160 0xc822a98220 0xc822a98300 0xc822a983c0]} +&{Error QNearFieldTarget::Error commendable public [0xc822a98620 0xc822a986e0 0xc822a987a0 0xc822a98840 0xc822a98980 0xc822a98a40 0xc822a98b60 0xc822a98c60 0xc822a98d00]} +&{Type QNearFieldTarget::Type commendable public [0xc822a98f80 0xc822a99000 0xc822a990c0 0xc822a99160 0xc822a99220 0xc822a992a0]} diff --git a/internal/binding/dump/QtNfc/QQmlNdefRecord.txt b/internal/binding/dump/QtNfc/QQmlNdefRecord.txt new file mode 100755 index 00000000..d42a94cc --- /dev/null +++ b/internal/binding/dump/QtNfc/QQmlNdefRecord.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{typeNameFormat QQmlNdefRecord::typeNameFormat commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qqmlndefrecord.cpp non plain false false TypeNameFormat [] } +&{QQmlNdefRecord QQmlNdefRecord::QQmlNdefRecord commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qqmlndefrecord.h non constructor false false [0xc8229013c0] } +&{QQmlNdefRecord QQmlNdefRecord::QQmlNdefRecord commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qqmlndefrecord.h non constructor false true 2 [0xc8229015e0 0xc822901700] } +&{record QQmlNdefRecord::record commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qqmlndefrecord.h non plain false false QNdefRecord [] } +&{recordChanged QQmlNdefRecord::recordChanged commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qqmlndefrecord.h non signal false false void [] } +&{setRecord QQmlNdefRecord::setRecord commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qqmlndefrecord.h non plain false false void [0xc822901cc0] } +&{setType QQmlNdefRecord::setType commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qqmlndefrecord.h non plain false false void [0xc822901f80] } +&{setTypeNameFormat QQmlNdefRecord::setTypeNameFormat commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qqmlndefrecord.h non plain false false void [0xc822912360] } +&{type QQmlNdefRecord::type commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qqmlndefrecord.h non plain false false QString [] } +&{typeChanged QQmlNdefRecord::typeChanged commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qqmlndefrecord.h non signal false false void [] } +&{typeNameFormatChanged QQmlNdefRecord::typeNameFormatChanged commendable public /work/build/qt5_workdir/w/s/qtconnectivity/src/nfc/qqmlndefrecord.h non signal false false void [] } +######################################## ENUMS ######################################## +&{TypeNameFormat QQmlNdefRecord::TypeNameFormat commendable public [0xc822900b60 0xc822900cc0 0xc822900de0 0xc822900ec0 0xc822900fe0 0xc822901100]} diff --git a/internal/binding/dump/QtPositioning/QGeoAddress.txt b/internal/binding/dump/QtPositioning/QGeoAddress.txt new file mode 100755 index 00000000..bca2772b --- /dev/null +++ b/internal/binding/dump/QtPositioning/QGeoAddress.txt @@ -0,0 +1,29 @@ +######################################## FUNCTIONS ######################################## +&{QGeoAddress QGeoAddress::QGeoAddress commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoaddress.h non constructor false false [] } +&{QGeoAddress QGeoAddress::QGeoAddress commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoaddress.h non constructor false true 2 [0xc82305f1c0] } +&{city QGeoAddress::city commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoaddress.h non plain false false QString [] } +&{clear QGeoAddress::clear commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoaddress.h non plain false false void [] } +&{country QGeoAddress::country commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoaddress.h non plain false false QString [] } +&{countryCode QGeoAddress::countryCode commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoaddress.h non plain false false QString [] } +&{county QGeoAddress::county commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoaddress.h non plain false false QString [] } +&{district QGeoAddress::district commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoaddress.h non plain false false QString [] } +&{isEmpty QGeoAddress::isEmpty commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoaddress.h non plain false false bool [] } +&{isTextGenerated QGeoAddress::isTextGenerated commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoaddress.h non plain false false bool [] } +&{operator!= QGeoAddress::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoaddress.h non plain false false bool [0xc82304a600] } +&{operator= QGeoAddress::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoaddress.h non plain false false QGeoAddress & [0xc82304aa20] } +&{operator== QGeoAddress::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoaddress.h non plain false false bool [0xc82304ae00] } +&{postalCode QGeoAddress::postalCode commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoaddress.h non plain false false QString [] } +&{setCity QGeoAddress::setCity commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoaddress.h non plain false false void [0xc82304b3c0] } +&{setCountry QGeoAddress::setCountry commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoaddress.h non plain false false void [0xc82304b700] } +&{setCountryCode QGeoAddress::setCountryCode commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoaddress.h non plain false false void [0xc82304bb20] } +&{setCounty QGeoAddress::setCounty commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoaddress.h non plain false false void [0xc82304bec0] } +&{setDistrict QGeoAddress::setDistrict commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoaddress.h non plain false false void [0xc82303c240] } +&{setPostalCode QGeoAddress::setPostalCode commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoaddress.h non plain false false void [0xc82303c620] } +&{setState QGeoAddress::setState commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoaddress.h non plain false false void [0xc82303c980] } +&{setStreet QGeoAddress::setStreet commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoaddress.h non plain false false void [0xc82303cd20] } +&{setText QGeoAddress::setText commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoaddress.h non plain false false void [0xc82303d0c0] } +&{state QGeoAddress::state commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoaddress.h non plain false false QString [] } +&{street QGeoAddress::street commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoaddress.h non plain false false QString [] } +&{text QGeoAddress::text commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoaddress.h non plain false false QString [] } +&{~QGeoAddress QGeoAddress::~QGeoAddress commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoaddress.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtPositioning/QGeoAreaMonitorInfo.txt b/internal/binding/dump/QtPositioning/QGeoAreaMonitorInfo.txt new file mode 100755 index 00000000..f3b26715 --- /dev/null +++ b/internal/binding/dump/QtPositioning/QGeoAreaMonitorInfo.txt @@ -0,0 +1,20 @@ +######################################## FUNCTIONS ######################################## +&{QGeoAreaMonitorInfo QGeoAreaMonitorInfo::QGeoAreaMonitorInfo commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorinfo.h non constructor false true 2 [0xc82302c6a0] } +&{QGeoAreaMonitorInfo QGeoAreaMonitorInfo::QGeoAreaMonitorInfo commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorinfo.h non constructor false false [0xc82302cac0] } +&{area QGeoAreaMonitorInfo::area commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorinfo.h non plain false false QGeoShape [] } +&{expiration QGeoAreaMonitorInfo::expiration commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorinfo.h non plain false false QDateTime [] } +&{identifier QGeoAreaMonitorInfo::identifier commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorinfo.h non plain false false QString [] } +&{isPersistent QGeoAreaMonitorInfo::isPersistent commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorinfo.h non plain false false bool [] } +&{isValid QGeoAreaMonitorInfo::isValid commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorinfo.h non plain false false bool [] } +&{name QGeoAreaMonitorInfo::name commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorinfo.h non plain false false QString [] } +&{notificationParameters QGeoAreaMonitorInfo::notificationParameters commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorinfo.h non plain false false QVariantMap [] } +&{operator!= QGeoAreaMonitorInfo::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorinfo.h non plain false false bool [0xc82302db40] } +&{operator= QGeoAreaMonitorInfo::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorinfo.h non plain false false QGeoAreaMonitorInfo & [0xc82301e000] } +&{operator== QGeoAreaMonitorInfo::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorinfo.h non plain false false bool [0xc82301e3c0] } +&{setArea QGeoAreaMonitorInfo::setArea commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorinfo.h non plain false false void [0xc82301e760] } +&{setExpiration QGeoAreaMonitorInfo::setExpiration commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorinfo.h non plain false false void [0xc82301eaa0] } +&{setName QGeoAreaMonitorInfo::setName commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorinfo.h non plain false false void [0xc82301ee20] } +&{setNotificationParameters QGeoAreaMonitorInfo::setNotificationParameters commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorinfo.h non plain false false void [0xc82301f1a0] } +&{setPersistent QGeoAreaMonitorInfo::setPersistent commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorinfo.h non plain false false void [0xc82301f560] } +&{~QGeoAreaMonitorInfo QGeoAreaMonitorInfo::~QGeoAreaMonitorInfo commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorinfo.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtPositioning/QGeoAreaMonitorSource.txt b/internal/binding/dump/QtPositioning/QGeoAreaMonitorSource.txt new file mode 100755 index 00000000..06dfb664 --- /dev/null +++ b/internal/binding/dump/QtPositioning/QGeoAreaMonitorSource.txt @@ -0,0 +1,23 @@ +######################################## FUNCTIONS ######################################## +&{QGeoAreaMonitorSource QGeoAreaMonitorSource::QGeoAreaMonitorSource commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorsource.h non constructor false false [0xc82300f500] } +&{activeMonitors QGeoAreaMonitorSource::activeMonitors commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorsource.h pure plain false false QList [] } +&{activeMonitors QGeoAreaMonitorSource::activeMonitors commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorsource.h pure plain false true 2 QList [0xc82300fa60] } +&{areaEntered QGeoAreaMonitorSource::areaEntered commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorsource.h non signal false false void [0xc82300ff00 0xc822ffc0c0] } +&{areaExited QGeoAreaMonitorSource::areaExited commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorsource.h non signal false false void [0xc822ffc4a0 0xc822ffc6a0] } +&{availableSources QGeoAreaMonitorSource::availableSources commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorsource.h non plain true false QStringList [] } +&{createDefaultSource QGeoAreaMonitorSource::createDefaultSource commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorsource.h non plain true false QGeoAreaMonitorSource * [0xc822ffcca0] } +&{createSource QGeoAreaMonitorSource::createSource commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorsource.h non plain true false QGeoAreaMonitorSource * [0xc822ffd0e0 0xc822ffd220] } +&{error QGeoAreaMonitorSource::error commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorsource.h non signal false true 2 void [0xc822ffd5c0] } +&{error QGeoAreaMonitorSource::error commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorsource.h pure plain false false Error [] } +&{monitorExpired QGeoAreaMonitorSource::monitorExpired commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorsource.h non signal false false void [0xc822ffdc00] } +&{positionInfoSource QGeoAreaMonitorSource::positionInfoSource commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorsource.h impure plain false false QGeoPositionInfoSource * [] } +&{requestUpdate QGeoAreaMonitorSource::requestUpdate commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorsource.h pure plain false false bool [0xc822fe8220 0xc822fe8360] } +&{setPositionInfoSource QGeoAreaMonitorSource::setPositionInfoSource commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorsource.h impure plain false false void [0xc822fe8740] } +&{sourceName QGeoAreaMonitorSource::sourceName commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorsource.h non plain false false QString [] } +&{startMonitoring QGeoAreaMonitorSource::startMonitoring commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorsource.h pure plain false false bool [0xc822fe8c20] } +&{stopMonitoring QGeoAreaMonitorSource::stopMonitoring commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorsource.h pure plain false false bool [0xc822fe8fa0] } +&{supportedAreaMonitorFeatures QGeoAreaMonitorSource::supportedAreaMonitorFeatures commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorsource.h pure plain false false AreaMonitorFeatures [] } +&{~QGeoAreaMonitorSource QGeoAreaMonitorSource::~QGeoAreaMonitorSource commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoareamonitorsource.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{AreaMonitorFeature QGeoAreaMonitorSource::AreaMonitorFeature commendable public QGeoAreaMonitorSource::AreaMonitorFeatures [0xc82301ff80 0xc82300e180]} +&{Error QGeoAreaMonitorSource::Error commendable public [0xc82300e6e0 0xc82300e820 0xc82300eac0 0xc82300eda0]} diff --git a/internal/binding/dump/QtPositioning/QGeoCircle.txt b/internal/binding/dump/QtPositioning/QGeoCircle.txt new file mode 100755 index 00000000..15ff1d3d --- /dev/null +++ b/internal/binding/dump/QtPositioning/QGeoCircle.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{QGeoCircle QGeoCircle::QGeoCircle commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocircle.h non constructor false false [] } +&{QGeoCircle QGeoCircle::QGeoCircle commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocircle.h non constructor false true 3 [0xc822fe9f80] } +&{QGeoCircle QGeoCircle::QGeoCircle commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocircle.h non constructor false true 2 [0xc822fd0400 0xc822fd0600] } +&{QGeoCircle QGeoCircle::QGeoCircle commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocircle.h non constructor false true 4 [0xc822fd09e0] } +&{center QGeoCircle::center commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocircle.h non plain false false QGeoCoordinate [] } +&{operator!= QGeoCircle::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocircle.h non plain false false bool [0xc822fd1060] } +&{operator= QGeoCircle::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocircle.h non plain false false QGeoCircle & [0xc822fd1480] } +&{operator== QGeoCircle::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocircle.h non plain false false bool [0xc822fd1840] } +&{radius QGeoCircle::radius commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocircle.h non plain false false qreal [] } +&{setCenter QGeoCircle::setCenter commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocircle.h non plain false false void [0xc822fd1f80] } +&{setRadius QGeoCircle::setRadius commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocircle.h non plain false false void [0xc822fc0420] } +&{toString QGeoCircle::toString commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocircle.h non plain false false QString [] } +&{translate QGeoCircle::translate commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocircle.h non plain false false void [0xc822fc0960 0xc822fc0aa0] } +&{translated QGeoCircle::translated commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocircle.h non plain false false QGeoCircle [0xc822fc0e00 0xc822fc0f00] } +&{~QGeoCircle QGeoCircle::~QGeoCircle commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocircle.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtPositioning/QGeoCoordinate.txt b/internal/binding/dump/QtPositioning/QGeoCoordinate.txt new file mode 100755 index 00000000..21d16603 --- /dev/null +++ b/internal/binding/dump/QtPositioning/QGeoCoordinate.txt @@ -0,0 +1,24 @@ +######################################## FUNCTIONS ######################################## +&{QGeoCoordinate QGeoCoordinate::QGeoCoordinate commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocoordinate.h non constructor false false [] } +&{QGeoCoordinate QGeoCoordinate::QGeoCoordinate commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocoordinate.h non constructor false true 4 [0xc822fb3420] } +&{QGeoCoordinate QGeoCoordinate::QGeoCoordinate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocoordinate.h non constructor false true 2 [0xc822fb37c0 0xc822fb38c0] } +&{QGeoCoordinate QGeoCoordinate::QGeoCoordinate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocoordinate.h non constructor false true 3 [0xc822fb3ba0 0xc822fb3c20 0xc822fb3da0] } +&{altitude QGeoCoordinate::altitude commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocoordinate.h non plain false false double [] } +&{atDistanceAndAzimuth QGeoCoordinate::atDistanceAndAzimuth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocoordinate.h non plain false false QGeoCoordinate [0xc822f9e380 0xc822f9e460 0xc822f9e600] } +&{azimuthTo QGeoCoordinate::azimuthTo commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocoordinate.h non plain false false qreal [0xc822f9ea20] } +&{distanceTo QGeoCoordinate::distanceTo commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocoordinate.h non plain false false qreal [0xc822f9ef20] } +&{isValid QGeoCoordinate::isValid commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocoordinate.h non plain false false bool [] } +&{latitude QGeoCoordinate::latitude commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocoordinate.h non plain false false double [] } +&{longitude QGeoCoordinate::longitude commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocoordinate.h non plain false false double [] } +&{operator!= QGeoCoordinate::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocoordinate.h non plain false false bool [0xc822f9faa0] } +&{operator= QGeoCoordinate::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocoordinate.h non plain false false QGeoCoordinate & [0xc822f9fec0] } +&{operator== QGeoCoordinate::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocoordinate.h non plain false false bool [0xc822f90260] } +&{setAltitude QGeoCoordinate::setAltitude commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocoordinate.h non plain false false void [0xc822f905e0] } +&{setLatitude QGeoCoordinate::setLatitude commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocoordinate.h non plain false false void [0xc822f90880] } +&{setLongitude QGeoCoordinate::setLongitude commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocoordinate.h non plain false false void [0xc822f90bc0] } +&{toString QGeoCoordinate::toString commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocoordinate.h non plain false false QString [0xc822f90f40] } +&{type QGeoCoordinate::type commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocoordinate.h non plain false false CoordinateType [] } +&{~QGeoCoordinate QGeoCoordinate::~QGeoCoordinate commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeocoordinate.h non destructor false false [] } +######################################## ENUMS ######################################## +&{CoordinateFormat QGeoCoordinate::CoordinateFormat commendable public [0xc822fb2100 0xc822fb2240 0xc822fb2400 0xc822fb2520 0xc822fb2740 0xc822fb28c0]} +&{CoordinateType QGeoCoordinate::CoordinateType commendable public [0xc822fb2ba0 0xc822fb2d40 0xc822fb2e20]} diff --git a/internal/binding/dump/QtPositioning/QGeoLocation.txt b/internal/binding/dump/QtPositioning/QGeoLocation.txt new file mode 100755 index 00000000..7892f55b --- /dev/null +++ b/internal/binding/dump/QtPositioning/QGeoLocation.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QGeoLocation QGeoLocation::QGeoLocation commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeolocation.h non constructor false false [] } +&{QGeoLocation QGeoLocation::QGeoLocation commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeolocation.h non constructor false true 2 [0xc822f7e500] } +&{address QGeoLocation::address commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeolocation.h non plain false false QGeoAddress [] } +&{boundingBox QGeoLocation::boundingBox commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeolocation.h non plain false false QGeoRectangle [] } +&{coordinate QGeoLocation::coordinate commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeolocation.h non plain false false QGeoCoordinate [] } +&{isEmpty QGeoLocation::isEmpty commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeolocation.h non plain false false bool [] } +&{operator!= QGeoLocation::operator!= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeolocation.h non plain false false bool [0xc822f7f040] } +&{operator= QGeoLocation::operator= commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeolocation.h non plain false false QGeoLocation & [0xc822f7f460] } +&{operator== QGeoLocation::operator== commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeolocation.h non plain false false bool [0xc822f7f8e0] } +&{setAddress QGeoLocation::setAddress commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeolocation.h non plain false false void [0xc822f7fd60] } +&{setBoundingBox QGeoLocation::setBoundingBox commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeolocation.h non plain false false void [0xc822f6e140] } +&{setCoordinate QGeoLocation::setCoordinate commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeolocation.h non plain false false void [0xc822f6e5a0] } +&{~QGeoLocation QGeoLocation::~QGeoLocation commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeolocation.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtPositioning/QGeoPositionInfo.txt b/internal/binding/dump/QtPositioning/QGeoPositionInfo.txt new file mode 100755 index 00000000..c8dde583 --- /dev/null +++ b/internal/binding/dump/QtPositioning/QGeoPositionInfo.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{QGeoPositionInfo QGeoPositionInfo::QGeoPositionInfo commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfo.h non constructor false false [] } +&{QGeoPositionInfo QGeoPositionInfo::QGeoPositionInfo commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfo.h non constructor false true 2 [0xc822f6fba0 0xc822f6fd40] } +&{QGeoPositionInfo QGeoPositionInfo::QGeoPositionInfo commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfo.h non constructor false true 3 [0xc822f5a000] } +&{attribute QGeoPositionInfo::attribute commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfo.h non plain false false qreal [0xc822f5a400] } +&{coordinate QGeoPositionInfo::coordinate commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfo.h non plain false false QGeoCoordinate [] } +&{hasAttribute QGeoPositionInfo::hasAttribute commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfo.h non plain false false bool [0xc822f5aa60] } +&{isValid QGeoPositionInfo::isValid commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfo.h non plain false false bool [] } +&{operator!= QGeoPositionInfo::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfo.h non plain false false bool [0xc822f5b020] } +&{operator= QGeoPositionInfo::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfo.h non plain false false QGeoPositionInfo & [0xc822f5b680] } +&{operator== QGeoPositionInfo::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfo.h non plain false false bool [0xc822f5bae0] } +&{removeAttribute QGeoPositionInfo::removeAttribute commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfo.h non plain false false void [0xc822f5be20] } +&{setAttribute QGeoPositionInfo::setAttribute commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfo.h non plain false false void [0xc822f42200 0xc822f422e0] } +&{setCoordinate QGeoPositionInfo::setCoordinate commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfo.h non plain false false void [0xc822f42680] } +&{setTimestamp QGeoPositionInfo::setTimestamp commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfo.h non plain false false void [0xc822f42b00] } +&{timestamp QGeoPositionInfo::timestamp commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfo.h non plain false false QDateTime [] } +&{~QGeoPositionInfo QGeoPositionInfo::~QGeoPositionInfo commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfo.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Attribute QGeoPositionInfo::Attribute commendable public [0xc822f6f2a0 0xc822f6f360 0xc822f6f400 0xc822f6f4e0 0xc822f6f6a0 0xc822f6f800]} diff --git a/internal/binding/dump/QtPositioning/QGeoPositionInfoSource.txt b/internal/binding/dump/QtPositioning/QGeoPositionInfoSource.txt new file mode 100755 index 00000000..d8430ebf --- /dev/null +++ b/internal/binding/dump/QtPositioning/QGeoPositionInfoSource.txt @@ -0,0 +1,24 @@ +######################################## FUNCTIONS ######################################## +&{setUpdateInterval QGeoPositionInfoSource::setUpdateInterval commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfosource.cpp impure plain false false void [0xc822f43ca0] } +&{sourceName QGeoPositionInfoSource::sourceName commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfosource.cpp non plain false false QString [] } +&{updateInterval QGeoPositionInfoSource::updateInterval commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfosource.cpp non plain false false int [] } +&{QGeoPositionInfoSource QGeoPositionInfoSource::QGeoPositionInfoSource commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfosource.h non constructor false false [0xc822f314c0] } +&{availableSources QGeoPositionInfoSource::availableSources commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfosource.h non plain true false QStringList [] } +&{createDefaultSource QGeoPositionInfoSource::createDefaultSource commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfosource.h non plain true false QGeoPositionInfoSource * [0xc822f31a40] } +&{createSource QGeoPositionInfoSource::createSource commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfosource.h non plain true false QGeoPositionInfoSource * [0xc822f31e20 0xc822f31f60] } +&{error QGeoPositionInfoSource::error commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfosource.h non signal false true 2 void [0xc822f243e0] } +&{error QGeoPositionInfoSource::error commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfosource.h pure plain false false Error [] } +&{lastKnownPosition QGeoPositionInfoSource::lastKnownPosition commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfosource.h pure plain false false QGeoPositionInfo [0xc822f24a20] } +&{minimumUpdateInterval QGeoPositionInfoSource::minimumUpdateInterval commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfosource.h pure plain false false int [] } +&{positionUpdated QGeoPositionInfoSource::positionUpdated commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfosource.h non signal false false void [0xc822f25020] } +&{preferredPositioningMethods QGeoPositionInfoSource::preferredPositioningMethods commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfosource.h non plain false false PositioningMethods [] } +&{requestUpdate QGeoPositionInfoSource::requestUpdate commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfosource.h pure slot false false void [0xc822f25640] } +&{setPreferredPositioningMethods QGeoPositionInfoSource::setPreferredPositioningMethods commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfosource.h impure plain false false void [0xc822f25a60] } +&{startUpdates QGeoPositionInfoSource::startUpdates commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfosource.h pure slot false false void [] } +&{stopUpdates QGeoPositionInfoSource::stopUpdates commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfosource.h pure slot false false void [] } +&{supportedPositioningMethods QGeoPositionInfoSource::supportedPositioningMethods commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfosource.h pure plain false false PositioningMethods [] } +&{updateTimeout QGeoPositionInfoSource::updateTimeout commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfosource.h non signal false false void [] } +&{~QGeoPositionInfoSource QGeoPositionInfoSource::~QGeoPositionInfoSource commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfosource.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{Error QGeoPositionInfoSource::Error commendable public [0xc822f303e0 0xc822f304c0 0xc822f30560 0xc822f30780]} +&{PositioningMethod QGeoPositionInfoSource::PositioningMethod commendable public QGeoPositionInfoSource::PositioningMethods [0xc822f30a80 0xc822f30c80 0xc822f30e80 0xc822f31020]} diff --git a/internal/binding/dump/QtPositioning/QGeoPositionInfoSourceFactory.txt b/internal/binding/dump/QtPositioning/QGeoPositionInfoSourceFactory.txt new file mode 100755 index 00000000..87db1d2e --- /dev/null +++ b/internal/binding/dump/QtPositioning/QGeoPositionInfoSourceFactory.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{areaMonitor QGeoPositionInfoSourceFactory::areaMonitor commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfosourcefactory.h pure plain false false QGeoAreaMonitorSource * [0xc822f11160] } +&{positionInfoSource QGeoPositionInfoSourceFactory::positionInfoSource commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfosourcefactory.h pure plain false false QGeoPositionInfoSource * [0xc822f114e0] } +&{satelliteInfoSource QGeoPositionInfoSourceFactory::satelliteInfoSource commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfosourcefactory.h pure plain false false QGeoSatelliteInfoSource * [0xc822f118a0] } +&{~QGeoPositionInfoSourceFactory QGeoPositionInfoSourceFactory::~QGeoPositionInfoSourceFactory commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeopositioninfosourcefactory.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtPositioning/QGeoRectangle.txt b/internal/binding/dump/QtPositioning/QGeoRectangle.txt new file mode 100755 index 00000000..843cd0e5 --- /dev/null +++ b/internal/binding/dump/QtPositioning/QGeoRectangle.txt @@ -0,0 +1,34 @@ +######################################## FUNCTIONS ######################################## +&{QGeoRectangle QGeoRectangle::QGeoRectangle commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non constructor false false [] } +&{QGeoRectangle QGeoRectangle::QGeoRectangle commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non constructor false true 2 [0xc822f026a0 0xc822f02800 0xc822f02920] } +&{QGeoRectangle QGeoRectangle::QGeoRectangle commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non constructor false true 3 [0xc822f02c80 0xc822f02e60] } +&{QGeoRectangle QGeoRectangle::QGeoRectangle commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non constructor false true 5 [0xc822f031e0] } +&{QGeoRectangle QGeoRectangle::QGeoRectangle commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non constructor false true 6 [0xc822f03660] } +&{QGeoRectangle QGeoRectangle::QGeoRectangle commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non constructor false true 4 [0xc822f03aa0] } +&{bottomLeft QGeoRectangle::bottomLeft commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non plain false false QGeoCoordinate [] } +&{bottomRight QGeoRectangle::bottomRight commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non plain false false QGeoCoordinate [] } +&{center QGeoRectangle::center commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non plain false false QGeoCoordinate [] } +&{contains QGeoRectangle::contains commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non plain false false bool [0xc822ef2500] } +&{height QGeoRectangle::height commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non plain false false double [] } +&{intersects QGeoRectangle::intersects commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non plain false false bool [0xc822ef2a80] } +&{operator!= QGeoRectangle::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non plain false false bool [0xc822ef2e20] } +&{operator= QGeoRectangle::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non plain false false QGeoRectangle & [0xc822ef3380] } +&{operator== QGeoRectangle::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non plain false false bool [0xc822ef37c0] } +&{operator| QGeoRectangle::operator| commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non plain false false QGeoRectangle [0xc822ef3be0] } +&{operator|= QGeoRectangle::operator|= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non plain false false QGeoRectangle & [0xc822ef3fc0] } +&{setBottomLeft QGeoRectangle::setBottomLeft commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non plain false false void [0xc822ee43e0] } +&{setBottomRight QGeoRectangle::setBottomRight commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non plain false false void [0xc822ee47c0] } +&{setCenter QGeoRectangle::setCenter commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non plain false false void [0xc822ee4ba0] } +&{setHeight QGeoRectangle::setHeight commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non plain false false void [0xc822ee4f80] } +&{setTopLeft QGeoRectangle::setTopLeft commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non plain false false void [0xc822ee5360] } +&{setTopRight QGeoRectangle::setTopRight commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non plain false false void [0xc822ee5760] } +&{setWidth QGeoRectangle::setWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non plain false false void [0xc822ee5b80] } +&{toString QGeoRectangle::toString commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non plain false false QString [] } +&{topLeft QGeoRectangle::topLeft commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non plain false false QGeoCoordinate [] } +&{topRight QGeoRectangle::topRight commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non plain false false QGeoCoordinate [] } +&{translate QGeoRectangle::translate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non plain false false void [0xc822ed24a0 0xc822ed25a0] } +&{translated QGeoRectangle::translated commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non plain false false QGeoRectangle [0xc822ed2860 0xc822ed29a0] } +&{united QGeoRectangle::united commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non plain false false QGeoRectangle [0xc822ed2ce0] } +&{width QGeoRectangle::width commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non plain false false double [] } +&{~QGeoRectangle QGeoRectangle::~QGeoRectangle commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeorectangle.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtPositioning/QGeoSatelliteInfo.txt b/internal/binding/dump/QtPositioning/QGeoSatelliteInfo.txt new file mode 100755 index 00000000..d50de87e --- /dev/null +++ b/internal/binding/dump/QtPositioning/QGeoSatelliteInfo.txt @@ -0,0 +1,20 @@ +######################################## FUNCTIONS ######################################## +&{QGeoSatelliteInfo QGeoSatelliteInfo::QGeoSatelliteInfo commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfo.h non constructor false false [] } +&{QGeoSatelliteInfo QGeoSatelliteInfo::QGeoSatelliteInfo commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfo.h non constructor false true 2 [0xc822ec76c0] } +&{attribute QGeoSatelliteInfo::attribute commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfo.h non plain false false qreal [0xc822ec79a0] } +&{hasAttribute QGeoSatelliteInfo::hasAttribute commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfo.h non plain false false bool [0xc822ec7c60] } +&{operator!= QGeoSatelliteInfo::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfo.h non plain false false bool [0xc822ec7f80] } +&{operator= QGeoSatelliteInfo::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfo.h non plain false false QGeoSatelliteInfo & [0xc822ec2420] } +&{operator== QGeoSatelliteInfo::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfo.h non plain false false bool [0xc822ec28a0] } +&{removeAttribute QGeoSatelliteInfo::removeAttribute commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfo.h non plain false false void [0xc822ec2b60] } +&{satelliteIdentifier QGeoSatelliteInfo::satelliteIdentifier commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfo.h non plain false false int [] } +&{satelliteSystem QGeoSatelliteInfo::satelliteSystem commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfo.h non plain false false SatelliteSystem [] } +&{setAttribute QGeoSatelliteInfo::setAttribute commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfo.h non plain false false void [0xc822ec31e0 0xc822ec32a0] } +&{setSatelliteIdentifier QGeoSatelliteInfo::setSatelliteIdentifier commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfo.h non plain false false void [0xc822ec3580] } +&{setSatelliteSystem QGeoSatelliteInfo::setSatelliteSystem commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfo.h non plain false false void [0xc822ec3860] } +&{setSignalStrength QGeoSatelliteInfo::setSignalStrength commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfo.h non plain false false void [0xc822ec3bc0] } +&{signalStrength QGeoSatelliteInfo::signalStrength commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfo.h non plain false false int [] } +&{~QGeoSatelliteInfo QGeoSatelliteInfo::~QGeoSatelliteInfo commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfo.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Attribute QGeoSatelliteInfo::Attribute commendable public [0xc822ec6de0 0xc822ec6e60]} +&{SatelliteSystem QGeoSatelliteInfo::SatelliteSystem commendable public [0xc822ec70e0 0xc822ec7160 0xc822ec7260]} diff --git a/internal/binding/dump/QtPositioning/QGeoSatelliteInfoSource.txt b/internal/binding/dump/QtPositioning/QGeoSatelliteInfoSource.txt new file mode 100755 index 00000000..0fe3e603 --- /dev/null +++ b/internal/binding/dump/QtPositioning/QGeoSatelliteInfoSource.txt @@ -0,0 +1,20 @@ +######################################## FUNCTIONS ######################################## +&{setUpdateInterval QGeoSatelliteInfoSource::setUpdateInterval commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfosource.cpp impure plain false false void [0xc822eb44a0] } +&{updateInterval QGeoSatelliteInfoSource::updateInterval commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfosource.cpp non plain false false int [] } +&{QGeoSatelliteInfoSource QGeoSatelliteInfoSource::QGeoSatelliteInfoSource commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfosource.h non constructor false false [0xc822eb5060] } +&{availableSources QGeoSatelliteInfoSource::availableSources commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfosource.h non plain true false QStringList [] } +&{createDefaultSource QGeoSatelliteInfoSource::createDefaultSource commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfosource.h non plain true false QGeoSatelliteInfoSource * [0xc822eb55a0] } +&{createSource QGeoSatelliteInfoSource::createSource commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfosource.h non plain true false QGeoSatelliteInfoSource * [0xc822eb5940 0xc822eb59e0] } +&{error QGeoSatelliteInfoSource::error commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfosource.h non signal false true 2 void [0xc822eb5d80] } +&{error QGeoSatelliteInfoSource::error commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfosource.h pure plain false false Error [] } +&{minimumUpdateInterval QGeoSatelliteInfoSource::minimumUpdateInterval commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfosource.h pure plain false false int [] } +&{requestTimeout QGeoSatelliteInfoSource::requestTimeout commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfosource.h non signal false false void [] } +&{requestUpdate QGeoSatelliteInfoSource::requestUpdate commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfosource.h pure slot false false void [0xc822e945c0] } +&{satellitesInUseUpdated QGeoSatelliteInfoSource::satellitesInUseUpdated commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfosource.h non signal false false void [0xc822e948e0] } +&{satellitesInViewUpdated QGeoSatelliteInfoSource::satellitesInViewUpdated commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfosource.h non signal false false void [0xc822e94c40] } +&{sourceName QGeoSatelliteInfoSource::sourceName commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfosource.h non plain false false QString [] } +&{startUpdates QGeoSatelliteInfoSource::startUpdates commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfosource.h pure slot false false void [] } +&{stopUpdates QGeoSatelliteInfoSource::stopUpdates commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfosource.h pure slot false false void [] } +&{~QGeoSatelliteInfoSource QGeoSatelliteInfoSource::~QGeoSatelliteInfoSource commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeosatelliteinfosource.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{Error QGeoSatelliteInfoSource::Error commendable public [0xc822eb49e0 0xc822eb4ac0 0xc822eb4b80 0xc822eb4ca0]} diff --git a/internal/binding/dump/QtPositioning/QGeoShape.txt b/internal/binding/dump/QtPositioning/QGeoShape.txt new file mode 100755 index 00000000..ff547d08 --- /dev/null +++ b/internal/binding/dump/QtPositioning/QGeoShape.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{QGeoShape QGeoShape::QGeoShape commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoshape.h non constructor false false [] } +&{QGeoShape QGeoShape::QGeoShape commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoshape.h non constructor false true 2 [0xc822e90700] } +&{center QGeoShape::center commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoshape.h non plain false false QGeoCoordinate [] } +&{contains QGeoShape::contains commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoshape.h non plain false false bool [0xc822e90f20] } +&{extendShape QGeoShape::extendShape commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoshape.h non plain false false void [0xc822e91240] } +&{isEmpty QGeoShape::isEmpty commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoshape.h non plain false false bool [] } +&{isValid QGeoShape::isValid commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoshape.h non plain false false bool [] } +&{operator!= QGeoShape::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoshape.h non plain false false bool [0xc822e91940] } +&{operator= QGeoShape::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoshape.h non plain false false QGeoShape & [0xc822e91c40] } +&{operator== QGeoShape::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoshape.h non plain false false bool [0xc822e91f40] } +&{toString QGeoShape::toString commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoshape.h non plain false false QString [] } +&{type QGeoShape::type commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoshape.h non plain false false ShapeType [] } +&{~QGeoShape QGeoShape::~QGeoShape commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qgeoshape.h non destructor false false [] } +######################################## ENUMS ######################################## +&{ShapeType QGeoShape::ShapeType commendable public [0xc822e901c0 0xc822e90260 0xc822e90340]} diff --git a/internal/binding/dump/QtPositioning/QNmeaPositionInfoSource.txt b/internal/binding/dump/QtPositioning/QNmeaPositionInfoSource.txt new file mode 100755 index 00000000..9acc2ba8 --- /dev/null +++ b/internal/binding/dump/QtPositioning/QNmeaPositionInfoSource.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{QNmeaPositionInfoSource QNmeaPositionInfoSource::QNmeaPositionInfoSource commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qnmeapositioninfosource.h non constructor false false [0xc822e817e0 0xc822e818e0] } +&{device QNmeaPositionInfoSource::device commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qnmeapositioninfosource.h non plain false false QIODevice * [] } +&{error QNmeaPositionInfoSource::error commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qnmeapositioninfosource.h impure plain false false Error [] } +&{lastKnownPosition QNmeaPositionInfoSource::lastKnownPosition commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qnmeapositioninfosource.h impure plain false false QGeoPositionInfo [0xc822e5e000] } +&{minimumUpdateInterval QNmeaPositionInfoSource::minimumUpdateInterval commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qnmeapositioninfosource.h impure plain false false int [] } +&{parsePosInfoFromNmeaData QNmeaPositionInfoSource::parsePosInfoFromNmeaData commendable protected /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qnmeapositioninfosource.h impure plain false false bool [0xc822e5e4e0 0xc822e5e5e0 0xc822e5e6c0 0xc822e5e800] } +&{requestUpdate QNmeaPositionInfoSource::requestUpdate commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qnmeapositioninfosource.h impure slot false false void [0xc822e5eac0] } +&{setDevice QNmeaPositionInfoSource::setDevice commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qnmeapositioninfosource.h non plain false false void [0xc822e5ede0] } +&{setUpdateInterval QNmeaPositionInfoSource::setUpdateInterval commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qnmeapositioninfosource.h impure plain false false void [0xc822e5f200] } +&{setUserEquivalentRangeError QNmeaPositionInfoSource::setUserEquivalentRangeError commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qnmeapositioninfosource.h non plain false false void [0xc822e5f580] } +&{startUpdates QNmeaPositionInfoSource::startUpdates commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qnmeapositioninfosource.h impure slot false false void [] } +&{stopUpdates QNmeaPositionInfoSource::stopUpdates commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qnmeapositioninfosource.h impure slot false false void [] } +&{supportedPositioningMethods QNmeaPositionInfoSource::supportedPositioningMethods commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qnmeapositioninfosource.h impure plain false false PositioningMethods [] } +&{updateMode QNmeaPositionInfoSource::updateMode commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qnmeapositioninfosource.h non plain false false UpdateMode [] } +&{userEquivalentRangeError QNmeaPositionInfoSource::userEquivalentRangeError commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qnmeapositioninfosource.h non plain false false double [] } +&{~QNmeaPositionInfoSource QNmeaPositionInfoSource::~QNmeaPositionInfoSource commendable public /work/build/qt5_workdir/w/s/qtlocation/src/positioning/qnmeapositioninfosource.h non destructor false false [] } +######################################## ENUMS ######################################## +&{UpdateMode QNmeaPositionInfoSource::UpdateMode commendable public [0xc822e81340 0xc822e81480]} diff --git a/internal/binding/dump/QtQml/QJSEngine.txt b/internal/binding/dump/QtQml/QJSEngine.txt new file mode 100755 index 00000000..8ad571d6 --- /dev/null +++ b/internal/binding/dump/QtQml/QJSEngine.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QJSEngine QJSEngine::QJSEngine commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsengine.h non constructor false false [] } +&{QJSEngine QJSEngine::QJSEngine commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsengine.h non constructor false true 2 [0xc8234b0cc0] } +&{collectGarbage QJSEngine::collectGarbage commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsengine.h non plain false false void [] } +&{evaluate QJSEngine::evaluate commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsengine.h non plain false false QJSValue [0xc8234b0f80 0xc8234b1000 0xc8234b1080] } +&{fromScriptValue QJSEngine::fromScriptValue commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsengine.h non plain false false T [0xc8234b1260] } +&{globalObject QJSEngine::globalObject commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsengine.h non plain false false QJSValue [] } +&{installTranslatorFunctions QJSEngine::installTranslatorFunctions commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsengine.h non plain false false void [0xc8234b1e40] } +&{newArray QJSEngine::newArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsengine.h non plain false false QJSValue [0xc823488020] } +&{newObject QJSEngine::newObject commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsengine.h non plain false false QJSValue [] } +&{newQObject QJSEngine::newQObject commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsengine.h non plain false false QJSValue [0xc8234883c0] } +&{toScriptValue QJSEngine::toScriptValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsengine.h non plain false false QJSValue [0xc823488680] } +&{~QJSEngine QJSEngine::~QJSEngine commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsengine.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQml/QJSValue.txt b/internal/binding/dump/QtQml/QJSValue.txt new file mode 100755 index 00000000..54bcb6cf --- /dev/null +++ b/internal/binding/dump/QtQml/QJSValue.txt @@ -0,0 +1,52 @@ +######################################## FUNCTIONS ######################################## +&{QJSValue QJSValue::QJSValue commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non constructor false true 3 [0xc823489340] } +&{QJSValue QJSValue::QJSValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non constructor false true 11 [0xc823489520 0xc8234895e0] } +&{QJSValue QJSValue::QJSValue commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non constructor false false [0xc8234897c0] } +&{QJSValue QJSValue::QJSValue commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non constructor false true 4 [0xc8234899a0] } +&{QJSValue QJSValue::QJSValue commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non constructor false true 2 [0xc823489ba0] } +&{QJSValue QJSValue::QJSValue commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non constructor false true 9 [0xc823489d80] } +&{QJSValue QJSValue::QJSValue commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non constructor false true 8 [0xc823489fc0] } +&{QJSValue QJSValue::QJSValue commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non constructor false true 10 [0xc8234b21a0] } +&{QJSValue QJSValue::QJSValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non constructor false true 7 [0xc8234b23a0] } +&{QJSValue QJSValue::QJSValue commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non constructor false true 5 [0xc8234b2580] } +&{QJSValue QJSValue::QJSValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non constructor false true 6 [0xc8234b2760] } +&{call QJSValue::call commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false QJSValue [0xc8234b2ac0] } +&{callAsConstructor QJSValue::callAsConstructor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false QJSValue [0xc8234b2d40] } +&{callWithInstance QJSValue::callWithInstance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false QJSValue [0xc8234b2f40 0xc8234b2fe0] } +&{deleteProperty QJSValue::deleteProperty commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false bool [0xc8234b31e0] } +&{equals QJSValue::equals commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false bool [0xc8234b3400] } +&{hasOwnProperty QJSValue::hasOwnProperty commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false bool [0xc8234b35c0] } +&{hasProperty QJSValue::hasProperty commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false bool [0xc8234b37c0] } +&{isArray QJSValue::isArray commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false bool [] } +&{isBool QJSValue::isBool commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false bool [] } +&{isCallable QJSValue::isCallable commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false bool [] } +&{isDate QJSValue::isDate commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false bool [] } +&{isError QJSValue::isError commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false bool [] } +&{isNull QJSValue::isNull commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false bool [] } +&{isNumber QJSValue::isNumber commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false bool [] } +&{isObject QJSValue::isObject commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false bool [] } +&{isQObject QJSValue::isQObject commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false bool [] } +&{isRegExp QJSValue::isRegExp commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false bool [] } +&{isString QJSValue::isString commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false bool [] } +&{isUndefined QJSValue::isUndefined commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false bool [] } +&{isVariant QJSValue::isVariant commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false bool [] } +&{operator= QJSValue::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false QJSValue & [0xc82347e5a0] } +&{operator= QJSValue::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false true 2 QJSValue & [0xc82347e760] } +&{property QJSValue::property commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false QJSValue [0xc82347e920] } +&{property QJSValue::property commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false true 2 QJSValue [0xc82347eae0] } +&{prototype QJSValue::prototype commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false QJSValue [] } +&{setProperty QJSValue::setProperty commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false void [0xc82347eda0 0xc82347ee20] } +&{setProperty QJSValue::setProperty commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false true 2 void [0xc82347efe0 0xc82347f060] } +&{setPrototype QJSValue::setPrototype commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false void [0xc82347f220] } +&{strictlyEquals QJSValue::strictlyEquals commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false bool [0xc82347f3e0] } +&{toBool QJSValue::toBool commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false bool [] } +&{toDateTime QJSValue::toDateTime commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false QDateTime [] } +&{toInt QJSValue::toInt commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false qint32 [] } +&{toNumber QJSValue::toNumber commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false double [] } +&{toQObject QJSValue::toQObject commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false QObject * [] } +&{toString QJSValue::toString commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false QString [] } +&{toUInt QJSValue::toUInt commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false quint32 [] } +&{toVariant QJSValue::toVariant commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non plain false false QVariant [] } +&{~QJSValue QJSValue::~QJSValue commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalue.h non destructor false false [] } +######################################## ENUMS ######################################## +&{SpecialValue QJSValue::SpecialValue commendable public [0xc823488e40 0xc823489120]} diff --git a/internal/binding/dump/QtQml/QJSValueIterator.txt b/internal/binding/dump/QtQml/QJSValueIterator.txt new file mode 100755 index 00000000..46735032 --- /dev/null +++ b/internal/binding/dump/QtQml/QJSValueIterator.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QJSValueIterator QJSValueIterator::QJSValueIterator commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalueiterator.h non constructor false false [0xc82347ff20] } +&{hasNext QJSValueIterator::hasNext commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalueiterator.h non plain false false bool [] } +&{name QJSValueIterator::name commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalueiterator.h non plain false false QString [] } +&{next QJSValueIterator::next commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalueiterator.h non plain false false bool [] } +&{operator= QJSValueIterator::operator= commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalueiterator.h non plain false false QJSValueIterator & [0xc821f224c0] } +&{value QJSValueIterator::value commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalueiterator.h non plain false false QJSValue [] } +&{~QJSValueIterator QJSValueIterator::~QJSValueIterator commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/jsapi/qjsvalueiterator.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQml/QQmlAbstractUrlInterceptor.txt b/internal/binding/dump/QtQml/QQmlAbstractUrlInterceptor.txt new file mode 100755 index 00000000..578169e7 --- /dev/null +++ b/internal/binding/dump/QtQml/QQmlAbstractUrlInterceptor.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QQmlAbstractUrlInterceptor QQmlAbstractUrlInterceptor::QQmlAbstractUrlInterceptor commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlabstracturlinterceptor.h non constructor false false [] } +&{intercept QQmlAbstractUrlInterceptor::intercept commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlabstracturlinterceptor.h pure plain false false QUrl [0xc823482620 0xc8234826a0] } +&{~QQmlAbstractUrlInterceptor QQmlAbstractUrlInterceptor::~QQmlAbstractUrlInterceptor commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlabstracturlinterceptor.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{DataType QQmlAbstractUrlInterceptor::DataType commendable public [0xc823482200 0xc823482280 0xc823482300 0xc823482380]} diff --git a/internal/binding/dump/QtQml/QQmlApplicationEngine.txt b/internal/binding/dump/QtQml/QQmlApplicationEngine.txt new file mode 100755 index 00000000..93151942 --- /dev/null +++ b/internal/binding/dump/QtQml/QQmlApplicationEngine.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{QQmlApplicationEngine QQmlApplicationEngine::QQmlApplicationEngine commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlapplicationengine.h non constructor false false [0xc823482b00] } +&{QQmlApplicationEngine QQmlApplicationEngine::QQmlApplicationEngine commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlapplicationengine.h non constructor false true 3 [0xc823482cc0 0xc823482d40] } +&{QQmlApplicationEngine QQmlApplicationEngine::QQmlApplicationEngine commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlapplicationengine.h non constructor false true 2 [0xc823482f00 0xc823482f80] } +&{load QQmlApplicationEngine::load commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlapplicationengine.h non slot false true 2 void [0xc8234832e0] } +&{load QQmlApplicationEngine::load commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlapplicationengine.h non slot false false void [0xc8234834e0] } +&{loadData QQmlApplicationEngine::loadData commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlapplicationengine.h non slot false false void [0xc8234836c0 0xc8234837a0] } +&{objectCreated QQmlApplicationEngine::objectCreated commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlapplicationengine.h non signal false false void [0xc823483900 0xc823483980] } +&{rootObjects QQmlApplicationEngine::rootObjects commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlapplicationengine.h non plain false false QList [] } +&{~QQmlApplicationEngine QQmlApplicationEngine::~QQmlApplicationEngine commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlapplicationengine.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQml/QQmlComponent.txt b/internal/binding/dump/QtQml/QQmlComponent.txt new file mode 100755 index 00000000..63dd6808 --- /dev/null +++ b/internal/binding/dump/QtQml/QQmlComponent.txt @@ -0,0 +1,28 @@ +######################################## FUNCTIONS ######################################## +&{progress QQmlComponent::progress commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcomponent.cpp non plain false false qreal [] } +&{status QQmlComponent::status commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcomponent.cpp non plain false false Status [] } +&{url QQmlComponent::url commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcomponent.cpp non plain false false QUrl [] } +&{QQmlComponent QQmlComponent::QQmlComponent commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcomponent.h non constructor false false [0xc822e71280 0xc822e713a0] } +&{QQmlComponent QQmlComponent::QQmlComponent commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcomponent.h non constructor false true 4 [0xc822e719a0 0xc822e71ac0 0xc822e71d60 0xc822e71f20] } +&{QQmlComponent QQmlComponent::QQmlComponent commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcomponent.h non constructor false true 3 [0xc822e5e3e0 0xc822e5e660 0xc822e5e940] } +&{QQmlComponent QQmlComponent::QQmlComponent commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcomponent.h non constructor false true 6 [0xc822e5eee0 0xc822e5f0e0 0xc822e5f320 0xc822e5f5c0] } +&{QQmlComponent QQmlComponent::QQmlComponent commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcomponent.h non constructor false true 5 [0xc822e5fba0 0xc822e5fd60 0xc822e5fe80] } +&{beginCreate QQmlComponent::beginCreate commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcomponent.h impure plain false false QObject * [0xc822e52fa0] } +&{completeCreate QQmlComponent::completeCreate commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcomponent.h impure plain false false void [] } +&{create QQmlComponent::create commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcomponent.h impure plain false false QObject * [0xc822e53840] } +&{create QQmlComponent::create commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcomponent.h non plain false true 2 void [0xc822e53e80 0xc822e3e2c0 0xc822e3e4c0] } +&{creationContext QQmlComponent::creationContext commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcomponent.h non plain false false QQmlContext * [] } +&{errors QQmlComponent::errors commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcomponent.h non plain false false QList [] } +&{isError QQmlComponent::isError commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcomponent.h non plain false false bool [] } +&{isLoading QQmlComponent::isLoading commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcomponent.h non plain false false bool [] } +&{isNull QQmlComponent::isNull commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcomponent.h non plain false false bool [] } +&{isReady QQmlComponent::isReady commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcomponent.h non plain false false bool [] } +&{loadUrl QQmlComponent::loadUrl commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcomponent.h non slot false false void [0xc822e20160] } +&{loadUrl QQmlComponent::loadUrl commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcomponent.h non slot false true 2 void [0xc822e205e0 0xc822e20700] } +&{progressChanged QQmlComponent::progressChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcomponent.h non signal false false void [0xc822e20ce0] } +&{setData QQmlComponent::setData commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcomponent.h non slot false false void [0xc822e21040 0xc822e21220] } +&{statusChanged QQmlComponent::statusChanged commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcomponent.h non signal false false void [0xc822e21740] } +&{~QQmlComponent QQmlComponent::~QQmlComponent commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcomponent.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{CompilationMode QQmlComponent::CompilationMode commendable public [0xc822e81da0 0xc822e70120]} +&{Status QQmlComponent::Status commendable public [0xc822e70660 0xc822e70920 0xc822e70a60 0xc822e70c60]} diff --git a/internal/binding/dump/QtQml/QQmlContext.txt b/internal/binding/dump/QtQml/QQmlContext.txt new file mode 100755 index 00000000..4b631ac2 --- /dev/null +++ b/internal/binding/dump/QtQml/QQmlContext.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{QQmlContext QQmlContext::QQmlContext commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcontext.h non constructor false true 2 [0xc822e15040 0xc822e15200] } +&{QQmlContext QQmlContext::QQmlContext commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcontext.h non constructor false false [0xc822e15760 0xc822e15b00] } +&{baseUrl QQmlContext::baseUrl commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcontext.h non plain false false QUrl [] } +&{contextObject QQmlContext::contextObject commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcontext.h non plain false false QObject * [] } +&{contextProperty QQmlContext::contextProperty commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcontext.h non plain false false QVariant [0xc822df1020] } +&{engine QQmlContext::engine commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcontext.h non plain false false QQmlEngine * [] } +&{isValid QQmlContext::isValid commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcontext.h non plain false false bool [] } +&{nameForObject QQmlContext::nameForObject commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcontext.h non plain false false QString [0xc822df1960] } +&{parentContext QQmlContext::parentContext commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcontext.h non plain false false QQmlContext * [] } +&{resolvedUrl QQmlContext::resolvedUrl commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcontext.h non plain false false QUrl [0xc822de02c0] } +&{setBaseUrl QQmlContext::setBaseUrl commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcontext.h non plain false false void [0xc822de0c20] } +&{setContextObject QQmlContext::setContextObject commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcontext.h non plain false false void [0xc822de13a0] } +&{setContextProperty QQmlContext::setContextProperty commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcontext.h non plain false false void [0xc822de1da0 0xc822dd8000] } +&{setContextProperty QQmlContext::setContextProperty commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcontext.h non plain false true 2 void [0xc822dd8520 0xc822dd86e0] } +&{~QQmlContext QQmlContext::~QQmlContext commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlcontext.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQml/QQmlEngine.txt b/internal/binding/dump/QtQml/QQmlEngine.txt new file mode 100755 index 00000000..7ac43483 --- /dev/null +++ b/internal/binding/dump/QtQml/QQmlEngine.txt @@ -0,0 +1,36 @@ +######################################## FUNCTIONS ######################################## +&{offlineStoragePath QQmlEngine::offlineStoragePath commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.cpp non plain false false QString [] } +&{setOfflineStoragePath QQmlEngine::setOfflineStoragePath commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.cpp non plain false false void [0xc822d9c620] } +&{QQmlEngine QQmlEngine::QQmlEngine commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non constructor false false [0xc822d9d4e0] } +&{addImageProvider QQmlEngine::addImageProvider commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non plain false false void [0xc822d94540 0xc822d946a0] } +&{addImportPath QQmlEngine::addImportPath commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non plain false false void [0xc822d94a60] } +&{addPluginPath QQmlEngine::addPluginPath commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non plain false false void [0xc822d954c0] } +&{baseUrl QQmlEngine::baseUrl commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non plain false false QUrl [] } +&{clearComponentCache QQmlEngine::clearComponentCache commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non plain false false void [] } +&{contextForObject QQmlEngine::contextForObject commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non plain true false QQmlContext * [0xc822d95e40] } +&{event QQmlEngine::event commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h impure plain false false bool [0xc822d8a300] } +&{imageProvider QQmlEngine::imageProvider commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non plain false false QQmlImageProviderBase * [0xc822d8a940] } +&{importPathList QQmlEngine::importPathList commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non plain false false QStringList [] } +&{importPlugin QQmlEngine::importPlugin commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non plain false false bool [0xc822d8af40 0xc822d8b0e0 0xc822d8b300] } +&{incubationController QQmlEngine::incubationController commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non plain false false QQmlIncubationController * [] } +&{networkAccessManager QQmlEngine::networkAccessManager commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non plain false false QNetworkAccessManager * [] } +&{networkAccessManagerFactory QQmlEngine::networkAccessManagerFactory commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non plain false false QQmlNetworkAccessManagerFactory * [] } +&{objectOwnership QQmlEngine::objectOwnership commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non plain true false ObjectOwnership [0xc822d78ae0] } +&{outputWarningsToStandardError QQmlEngine::outputWarningsToStandardError commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non plain false false bool [] } +&{pluginPathList QQmlEngine::pluginPathList commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non plain false false QStringList [] } +&{quit QQmlEngine::quit commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non signal false false void [] } +&{removeImageProvider QQmlEngine::removeImageProvider commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non plain false false void [0xc822d799a0] } +&{rootContext QQmlEngine::rootContext commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non plain false false QQmlContext * [] } +&{setBaseUrl QQmlEngine::setBaseUrl commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non plain false false void [0xc822d6e360] } +&{setContextForObject QQmlEngine::setContextForObject commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non plain true false void [0xc822d6eaa0 0xc822d6eb80] } +&{setImportPathList QQmlEngine::setImportPathList commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non plain false false void [0xc822d6f280] } +&{setIncubationController QQmlEngine::setIncubationController commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non plain false false void [0xc822d6f9c0] } +&{setNetworkAccessManagerFactory QQmlEngine::setNetworkAccessManagerFactory commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non plain false false void [0xc822d5c0c0] } +&{setObjectOwnership QQmlEngine::setObjectOwnership commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non plain true false void [0xc822d5cb00 0xc822d5ccc0] } +&{setOutputWarningsToStandardError QQmlEngine::setOutputWarningsToStandardError commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non plain false false void [0xc822d5d1c0] } +&{setPluginPathList QQmlEngine::setPluginPathList commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non plain false false void [0xc822d5d860] } +&{trimComponentCache QQmlEngine::trimComponentCache commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non plain false false void [] } +&{warnings QQmlEngine::warnings commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h non signal false false void [0xc822d4eb00] } +&{~QQmlEngine QQmlEngine::~QQmlEngine commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{ObjectOwnership QQmlEngine::ObjectOwnership commendable public [0xc822d9ccc0 0xc822d9cea0]} diff --git a/internal/binding/dump/QtQml/QQmlError.txt b/internal/binding/dump/QtQml/QQmlError.txt new file mode 100755 index 00000000..cbb31de0 --- /dev/null +++ b/internal/binding/dump/QtQml/QQmlError.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{QQmlError QQmlError::QQmlError commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlerror.h non constructor false false [] } +&{QQmlError QQmlError::QQmlError commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlerror.h non constructor false true 2 [0xc822d41460] } +&{column QQmlError::column commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlerror.h non plain false false int [] } +&{description QQmlError::description commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlerror.h non plain false false QString [] } +&{isValid QQmlError::isValid commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlerror.h non plain false false bool [] } +&{line QQmlError::line commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlerror.h non plain false false int [] } +&{object QQmlError::object commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlerror.h non plain false false QObject * [] } +&{operator= QQmlError::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlerror.h non plain false false QQmlError & [0xc821ac8440] } +&{setColumn QQmlError::setColumn commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlerror.h non plain false false void [0xc821ac8860] } +&{setDescription QQmlError::setDescription commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlerror.h non plain false false void [0xc821ac8cc0] } +&{setLine QQmlError::setLine commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlerror.h non plain false false void [0xc821ac9140] } +&{setObject QQmlError::setObject commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlerror.h non plain false false void [0xc821ac95e0] } +&{setUrl QQmlError::setUrl commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlerror.h non plain false false void [0xc821ac9980] } +&{toString QQmlError::toString commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlerror.h non plain false false QString [] } +&{url QQmlError::url commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlerror.h non plain false false QUrl [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQml/QQmlExpression.txt b/internal/binding/dump/QtQml/QQmlExpression.txt new file mode 100755 index 00000000..0faa4b03 --- /dev/null +++ b/internal/binding/dump/QtQml/QQmlExpression.txt @@ -0,0 +1,22 @@ +######################################## FUNCTIONS ######################################## +&{QQmlExpression QQmlExpression::QQmlExpression commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlexpression.h non constructor false false [] } +&{QQmlExpression QQmlExpression::QQmlExpression commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlexpression.h non constructor false true 2 [0xc82191e340 0xc82191e460 0xc82191e540 0xc82191e620] } +&{QQmlExpression QQmlExpression::QQmlExpression commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlexpression.h non constructor false true 3 [0xc82191e980 0xc82191ea80 0xc82191eba0 0xc82191ed00] } +&{clearError QQmlExpression::clearError commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlexpression.h non plain false false void [] } +&{columnNumber QQmlExpression::columnNumber commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlexpression.h non plain false false int [] } +&{context QQmlExpression::context commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlexpression.h non plain false false QQmlContext * [] } +&{engine QQmlExpression::engine commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlexpression.h non plain false false QQmlEngine * [] } +&{error QQmlExpression::error commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlexpression.h non plain false false QQmlError [] } +&{evaluate QQmlExpression::evaluate commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlexpression.h non plain false false QVariant [0xc82182a180] } +&{expression QQmlExpression::expression commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlexpression.h non plain false false QString [] } +&{hasError QQmlExpression::hasError commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlexpression.h non plain false false bool [] } +&{lineNumber QQmlExpression::lineNumber commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlexpression.h non plain false false int [] } +&{notifyOnValueChanged QQmlExpression::notifyOnValueChanged commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlexpression.h non plain false false bool [] } +&{scopeObject QQmlExpression::scopeObject commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlexpression.h non plain false false QObject * [] } +&{setExpression QQmlExpression::setExpression commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlexpression.h non plain false false void [0xc82182ad60] } +&{setNotifyOnValueChanged QQmlExpression::setNotifyOnValueChanged commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlexpression.h non plain false false void [0xc82182afc0] } +&{setSourceLocation QQmlExpression::setSourceLocation commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlexpression.h non plain false false void [0xc82182b280 0xc82182b320 0xc82182b3a0] } +&{sourceFile QQmlExpression::sourceFile commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlexpression.h non plain false false QString [] } +&{valueChanged QQmlExpression::valueChanged commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlexpression.h non signal false false void [] } +&{~QQmlExpression QQmlExpression::~QQmlExpression commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlexpression.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQml/QQmlExtensionPlugin.txt b/internal/binding/dump/QtQml/QQmlExtensionPlugin.txt new file mode 100755 index 00000000..8434774e --- /dev/null +++ b/internal/binding/dump/QtQml/QQmlExtensionPlugin.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{initializeEngine QQmlExtensionPlugin::initializeEngine commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlextensionplugin.cpp impure plain false false void [0xc82182bc80 0xc82182bd60] } +&{QQmlExtensionPlugin QQmlExtensionPlugin::QQmlExtensionPlugin commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlextensionplugin.h non constructor false false [0xc82182bfc0] } +&{baseUrl QQmlExtensionPlugin::baseUrl commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlextensionplugin.h non plain false false QUrl [] } +&{registerTypes QQmlExtensionPlugin::registerTypes commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlextensionplugin.h pure plain false false void [0xc8227a2500] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQml/QQmlFileSelector.txt b/internal/binding/dump/QtQml/QQmlFileSelector.txt new file mode 100755 index 00000000..5ec0e3a4 --- /dev/null +++ b/internal/binding/dump/QtQml/QQmlFileSelector.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{QQmlFileSelector QQmlFileSelector::QQmlFileSelector commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlfileselector.h non constructor false false [0xc8227a2dc0 0xc8227a2e80] } +&{get QQmlFileSelector::get commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlfileselector.h non plain true false QQmlFileSelector * [0xc8227a3340] } +&{setExtraSelectors QQmlFileSelector::setExtraSelectors commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlfileselector.h non plain false false void [0xc8227a36e0] } +&{setExtraSelectors QQmlFileSelector::setExtraSelectors commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlfileselector.h non plain false true 2 void [0xc8227a3aa0] } +&{setSelector QQmlFileSelector::setSelector commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlfileselector.h non plain false false void [0xc8227a3fe0] } +&{~QQmlFileSelector QQmlFileSelector::~QQmlFileSelector commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlfileselector.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQml/QQmlImageProviderBase.txt b/internal/binding/dump/QtQml/QQmlImageProviderBase.txt new file mode 100755 index 00000000..19f8258d --- /dev/null +++ b/internal/binding/dump/QtQml/QQmlImageProviderBase.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{flags QQmlImageProviderBase::flags commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h pure plain false false Flags [] } +&{imageType QQmlImageProviderBase::imageType commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlengine.h pure plain false false ImageType [] } +######################################## ENUMS ######################################## +&{Flag QQmlImageProviderBase::Flag commendable public QQmlImageProviderBase::Flags [0xc822d4fa80]} +&{ImageType QQmlImageProviderBase::ImageType commendable public [0xc822d4fda0 0xc822d4ff00 0xc822d40020 0xc822d400c0]} diff --git a/internal/binding/dump/QtQml/QQmlIncubationController.txt b/internal/binding/dump/QtQml/QQmlIncubationController.txt new file mode 100755 index 00000000..bb636053 --- /dev/null +++ b/internal/binding/dump/QtQml/QQmlIncubationController.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{QQmlIncubationController QQmlIncubationController::QQmlIncubationController commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlincubator.h non constructor false false [] } +&{engine QQmlIncubationController::engine commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlincubator.h non plain false false QQmlEngine * [] } +&{incubateFor QQmlIncubationController::incubateFor commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlincubator.h non plain false false void [0xc821c7cc80] } +&{incubateWhile QQmlIncubationController::incubateWhile commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlincubator.h non plain false false void [0xc821c7cf40 0xc821c7cfe0] } +&{incubatingObjectCount QQmlIncubationController::incubatingObjectCount commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlincubator.h non plain false false int [] } +&{incubatingObjectCountChanged QQmlIncubationController::incubatingObjectCountChanged commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlincubator.h impure plain false false void [0xc821c7d560] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQml/QQmlIncubator.txt b/internal/binding/dump/QtQml/QQmlIncubator.txt new file mode 100755 index 00000000..cb7f1943 --- /dev/null +++ b/internal/binding/dump/QtQml/QQmlIncubator.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{QQmlIncubator QQmlIncubator::QQmlIncubator commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlincubator.h non constructor false false [0xc8217b6a00] } +&{clear QQmlIncubator::clear commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlincubator.h non plain false false void [] } +&{errors QQmlIncubator::errors commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlincubator.h non plain false false QList [] } +&{forceCompletion QQmlIncubator::forceCompletion commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlincubator.h non plain false false void [] } +&{incubationMode QQmlIncubator::incubationMode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlincubator.h non plain false false IncubationMode [] } +&{isError QQmlIncubator::isError commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlincubator.h non plain false false bool [] } +&{isLoading QQmlIncubator::isLoading commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlincubator.h non plain false false bool [] } +&{isNull QQmlIncubator::isNull commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlincubator.h non plain false false bool [] } +&{isReady QQmlIncubator::isReady commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlincubator.h non plain false false bool [] } +&{object QQmlIncubator::object commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlincubator.h non plain false false QObject * [] } +&{setInitialState QQmlIncubator::setInitialState commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlincubator.h impure plain false false void [0xc8217b7fa0] } +&{status QQmlIncubator::status commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlincubator.h non plain false false Status [] } +&{statusChanged QQmlIncubator::statusChanged commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlincubator.h impure plain false false void [0xc821704400] } +######################################## ENUMS ######################################## +&{IncubationMode QQmlIncubator::IncubationMode commendable public [0xc821c7dcc0 0xc821c7de40 0xc8217b60c0]} +&{Status QQmlIncubator::Status commendable public [0xc8217b6360 0xc8217b6460 0xc8217b6580 0xc8217b6640]} diff --git a/internal/binding/dump/QtQml/QQmlListProperty.txt b/internal/binding/dump/QtQml/QQmlListProperty.txt new file mode 100755 index 00000000..8ca2c08b --- /dev/null +++ b/internal/binding/dump/QtQml/QQmlListProperty.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QQmlListProperty QQmlListProperty::QQmlListProperty commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmllist.h non constructor false false [0xc821704c40 0xc821704ce0] } +&{QQmlListProperty QQmlListProperty::QQmlListProperty commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmllist.h non constructor false true 3 [0xc821704fa0 0xc821705040 0xc821705160 0xc821705280 0xc8217054c0 0xc821705580] } +&{QQmlListProperty QQmlListProperty::QQmlListProperty commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmllist.h non constructor false true 4 [0xc821705820 0xc821705900 0xc821705a60 0xc821705b80] } +&{operator== QQmlListProperty::operator== commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmllist.h non plain false false bool [0xc821705f20] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQml/QQmlListReference.txt b/internal/binding/dump/QtQml/QQmlListReference.txt new file mode 100755 index 00000000..f9f0865b --- /dev/null +++ b/internal/binding/dump/QtQml/QQmlListReference.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{QQmlListReference QQmlListReference::QQmlListReference commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmllist.h non constructor false false [] } +&{QQmlListReference QQmlListReference::QQmlListReference commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmllist.h non constructor false true 2 [0xc820d048c0 0xc820d04a60 0xc820d04be0] } +&{append QQmlListReference::append commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmllist.h non plain false false bool [0xc820d05400] } +&{at QQmlListReference::at commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmllist.h non plain false false QObject * [0xc820d05920] } +&{canAppend QQmlListReference::canAppend commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmllist.h non plain false false bool [] } +&{canAt QQmlListReference::canAt commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmllist.h non plain false false bool [] } +&{canClear QQmlListReference::canClear commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmllist.h non plain false false bool [] } +&{canCount QQmlListReference::canCount commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmllist.h non plain false false bool [] } +&{clear QQmlListReference::clear commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmllist.h non plain false false bool [] } +&{count QQmlListReference::count commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmllist.h non plain false false int [] } +&{isManipulable QQmlListReference::isManipulable commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmllist.h non plain false false bool [] } +&{isReadable QQmlListReference::isReadable commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmllist.h non plain false false bool [] } +&{isValid QQmlListReference::isValid commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmllist.h non plain false false bool [] } +&{listElementType QQmlListReference::listElementType commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmllist.h non plain false false const QMetaObject * [] } +&{object QQmlListReference::object commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmllist.h non plain false false QObject * [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQml/QQmlNetworkAccessManagerFactory.txt b/internal/binding/dump/QtQml/QQmlNetworkAccessManagerFactory.txt new file mode 100755 index 00000000..09e39bcb --- /dev/null +++ b/internal/binding/dump/QtQml/QQmlNetworkAccessManagerFactory.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{create QQmlNetworkAccessManagerFactory::create commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlnetworkaccessmanagerfactory.h pure plain false false QNetworkAccessManager * [0xc8212a9ee0] } +&{~QQmlNetworkAccessManagerFactory QQmlNetworkAccessManagerFactory::~QQmlNetworkAccessManagerFactory commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlnetworkaccessmanagerfactory.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQml/QQmlParserStatus.txt b/internal/binding/dump/QtQml/QQmlParserStatus.txt new file mode 100755 index 00000000..7fde9b75 --- /dev/null +++ b/internal/binding/dump/QtQml/QQmlParserStatus.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{classBegin QQmlParserStatus::classBegin commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlparserstatus.h pure plain false false void [] } +&{componentComplete QQmlParserStatus::componentComplete commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlparserstatus.h pure plain false false void [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQml/QQmlProperty.txt b/internal/binding/dump/QtQml/QQmlProperty.txt new file mode 100755 index 00000000..b220bc60 --- /dev/null +++ b/internal/binding/dump/QtQml/QQmlProperty.txt @@ -0,0 +1,42 @@ +######################################## FUNCTIONS ######################################## +&{QQmlProperty QQmlProperty::QQmlProperty commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non constructor false false [] } +&{QQmlProperty QQmlProperty::QQmlProperty commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non constructor false true 2 [0xc821d83d20] } +&{QQmlProperty QQmlProperty::QQmlProperty commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non constructor false true 3 [0xc821398160 0xc8213983e0] } +&{QQmlProperty QQmlProperty::QQmlProperty commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non constructor false true 4 [0xc821398840 0xc821398900] } +&{QQmlProperty QQmlProperty::QQmlProperty commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non constructor false true 5 [0xc821398c60 0xc821398d20] } +&{QQmlProperty QQmlProperty::QQmlProperty commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non constructor false true 6 [0xc821399160 0xc821399300 0xc821399440] } +&{QQmlProperty QQmlProperty::QQmlProperty commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non constructor false true 7 [0xc8213998e0 0xc821399a00 0xc821399b60] } +&{QQmlProperty QQmlProperty::QQmlProperty commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non constructor false true 8 [0xc821399fc0] } +&{connectNotifySignal QQmlProperty::connectNotifySignal commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain false false bool [0xc821eda500 0xc821eda5c0] } +&{connectNotifySignal QQmlProperty::connectNotifySignal commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain false true 2 bool [0xc821eda9e0 0xc821edaae0] } +&{hasNotifySignal QQmlProperty::hasNotifySignal commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain false false bool [] } +&{index QQmlProperty::index commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain false false int [] } +&{isDesignable QQmlProperty::isDesignable commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain false false bool [] } +&{isProperty QQmlProperty::isProperty commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain false false bool [] } +&{isResettable QQmlProperty::isResettable commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain false false bool [] } +&{isSignalProperty QQmlProperty::isSignalProperty commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain false false bool [] } +&{isValid QQmlProperty::isValid commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain false false bool [] } +&{isWritable QQmlProperty::isWritable commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain false false bool [] } +&{method QQmlProperty::method commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain false false QMetaMethod [] } +&{name QQmlProperty::name commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain false false QString [] } +&{needsNotifySignal QQmlProperty::needsNotifySignal commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain false false bool [] } +&{object QQmlProperty::object commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain false false QObject * [] } +&{operator= QQmlProperty::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain false false QQmlProperty & [0xc822400960] } +&{operator== QQmlProperty::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain false false bool [0xc822400ec0] } +&{property QQmlProperty::property commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain false false QMetaProperty [] } +&{propertyType QQmlProperty::propertyType commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain false false int [] } +&{propertyTypeCategory QQmlProperty::propertyTypeCategory commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain false false PropertyTypeCategory [] } +&{propertyTypeName QQmlProperty::propertyTypeName commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain false false const char * [] } +&{read QQmlProperty::read commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain true true 2 QVariant [0xc822401d20 0xc822401e00] } +&{read QQmlProperty::read commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain true true 3 QVariant [0xc821d70220 0xc821d70360 0xc821d70460] } +&{read QQmlProperty::read commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain true true 4 QVariant [0xc821d707e0 0xc821d708e0 0xc821d70980] } +&{read QQmlProperty::read commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain false false QVariant [] } +&{reset QQmlProperty::reset commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain false false bool [] } +&{type QQmlProperty::type commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain false false Type [] } +&{write QQmlProperty::write commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain true true 2 bool [0xc821d71260 0xc821d71360 0xc821d71440] } +&{write QQmlProperty::write commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain true true 3 bool [0xc821d717a0 0xc821d718e0 0xc821d71a20 0xc821d71aa0] } +&{write QQmlProperty::write commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain true true 4 bool [0xc821d71ce0 0xc821d71e20 0xc821d71ec0 0xc821d71f80] } +&{write QQmlProperty::write commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlproperty.h non plain false false bool [0xc821ece300] } +######################################## ENUMS ######################################## +&{PropertyTypeCategory QQmlProperty::PropertyTypeCategory commendable public [0xc821d82e80 0xc821d82f00 0xc821d82fc0 0xc821d83060]} +&{Type QQmlProperty::Type commendable public [0xc821d83360 0xc821d834a0 0xc821d83680]} diff --git a/internal/binding/dump/QtQml/QQmlPropertyMap.txt b/internal/binding/dump/QtQml/QQmlPropertyMap.txt new file mode 100755 index 00000000..3fcd3f50 --- /dev/null +++ b/internal/binding/dump/QtQml/QQmlPropertyMap.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{QQmlPropertyMap QQmlPropertyMap::QQmlPropertyMap commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/util/qqmlpropertymap.h non constructor false false [0xc821eb8340] } +&{QQmlPropertyMap QQmlPropertyMap::QQmlPropertyMap commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/util/qqmlpropertymap.h non constructor false true 2 [0xc821eb8660 0xc821eb87a0] } +&{clear QQmlPropertyMap::clear commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/util/qqmlpropertymap.h non plain false false void [0xc821eb8ec0] } +&{contains QQmlPropertyMap::contains commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/util/qqmlpropertymap.h non plain false false bool [0xc821eb9300] } +&{count QQmlPropertyMap::count commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/util/qqmlpropertymap.h non plain false false int [] } +&{insert QQmlPropertyMap::insert commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/util/qqmlpropertymap.h non plain false false void [0xc8220b0040 0xc8220b00c0] } +&{isEmpty QQmlPropertyMap::isEmpty commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/util/qqmlpropertymap.h non plain false false bool [] } +&{keys QQmlPropertyMap::keys commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/util/qqmlpropertymap.h non plain false false QStringList [] } +&{operator[] QQmlPropertyMap::operator[] commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/util/qqmlpropertymap.h non plain false false QVariant & [0xc8220b08a0] } +&{operator[] QQmlPropertyMap::operator[] commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/util/qqmlpropertymap.h non plain false true 2 QVariant [0xc8220b0c60] } +&{size QQmlPropertyMap::size commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/util/qqmlpropertymap.h non plain false false int [] } +&{updateValue QQmlPropertyMap::updateValue commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/util/qqmlpropertymap.h impure plain false false QVariant [0xc8220b1180 0xc8220b1240] } +&{value QQmlPropertyMap::value commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/util/qqmlpropertymap.h non plain false false QVariant [0xc8220b1560] } +&{valueChanged QQmlPropertyMap::valueChanged commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/util/qqmlpropertymap.h non signal false false void [0xc8220b18c0 0xc8220b19a0] } +&{~QQmlPropertyMap QQmlPropertyMap::~QQmlPropertyMap commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/util/qqmlpropertymap.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQml/QQmlPropertyValueSource.txt b/internal/binding/dump/QtQml/QQmlPropertyValueSource.txt new file mode 100755 index 00000000..38de7617 --- /dev/null +++ b/internal/binding/dump/QtQml/QQmlPropertyValueSource.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{QQmlPropertyValueSource QQmlPropertyValueSource::QQmlPropertyValueSource commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlpropertyvaluesource.h non constructor false false [] } +&{setTarget QQmlPropertyValueSource::setTarget commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlpropertyvaluesource.h pure plain false false void [0xc821ecf000] } +&{~QQmlPropertyValueSource QQmlPropertyValueSource::~QQmlPropertyValueSource commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlpropertyvaluesource.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQml/QQmlScriptString.txt b/internal/binding/dump/QtQml/QQmlScriptString.txt new file mode 100755 index 00000000..01333010 --- /dev/null +++ b/internal/binding/dump/QtQml/QQmlScriptString.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QQmlScriptString QQmlScriptString::QQmlScriptString commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlscriptstring.h non constructor false false [] } +&{QQmlScriptString QQmlScriptString::QQmlScriptString commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlscriptstring.h non constructor false true 2 [0xc821ecfa60] } +&{booleanLiteral QQmlScriptString::booleanLiteral commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlscriptstring.h non plain false false bool [0xc821ecff40] } +&{isEmpty QQmlScriptString::isEmpty commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlscriptstring.h non plain false false bool [] } +&{isNullLiteral QQmlScriptString::isNullLiteral commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlscriptstring.h non plain false false bool [] } +&{isUndefinedLiteral QQmlScriptString::isUndefinedLiteral commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlscriptstring.h non plain false false bool [] } +&{numberLiteral QQmlScriptString::numberLiteral commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlscriptstring.h non plain false false qreal [0xc821d666a0] } +&{operator!= QQmlScriptString::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlscriptstring.h non plain false false bool [0xc821d66960] } +&{operator= QQmlScriptString::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlscriptstring.h non plain false false QQmlScriptString & [0xc821d66e80] } +&{operator== QQmlScriptString::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlscriptstring.h non plain false false bool [0xc821d67200] } +&{stringLiteral QQmlScriptString::stringLiteral commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/qml/qml/qqmlscriptstring.h non plain false false QString [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQuick/QQuickFramebufferObject.txt b/internal/binding/dump/QtQuick/QQuickFramebufferObject.txt new file mode 100755 index 00000000..8f540314 --- /dev/null +++ b/internal/binding/dump/QtQuick/QQuickFramebufferObject.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{setTextureFollowsItemSize QQuickFramebufferObject::setTextureFollowsItemSize commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickframebufferobject.cpp non plain false false void [0xc8226aa040] } +&{textureFollowsItemSize QQuickFramebufferObject::textureFollowsItemSize commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickframebufferobject.cpp non plain false false bool [] } +&{QQuickFramebufferObject QQuickFramebufferObject::QQuickFramebufferObject commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickframebufferobject.h non constructor false false [0xc8226aace0] } +&{createRenderer QQuickFramebufferObject::createRenderer commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickframebufferobject.h pure plain false false Renderer * [] } +&{isTextureProvider QQuickFramebufferObject::isTextureProvider commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickframebufferobject.h impure plain false false bool [] } +&{releaseResources QQuickFramebufferObject::releaseResources commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickframebufferobject.h impure plain false false void [] } +&{textureFollowsItemSizeChanged QQuickFramebufferObject::textureFollowsItemSizeChanged commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickframebufferobject.h non signal false false void [0xc8226ab6c0] } +&{textureProvider QQuickFramebufferObject::textureProvider commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickframebufferobject.h impure plain false false QSGTextureProvider * [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQuick/QQuickImageProvider.txt b/internal/binding/dump/QtQuick/QQuickImageProvider.txt new file mode 100755 index 00000000..216020bb --- /dev/null +++ b/internal/binding/dump/QtQuick/QQuickImageProvider.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QQuickImageProvider QQuickImageProvider::QQuickImageProvider commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/util/qquickimageprovider.h non constructor false false [0xc821a96880 0xc821a96a80] } +&{flags QQuickImageProvider::flags commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/util/qquickimageprovider.h impure plain false false Flags [] } +&{imageType QQuickImageProvider::imageType commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/util/qquickimageprovider.h impure plain false false ImageType [] } +&{requestImage QQuickImageProvider::requestImage commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/util/qquickimageprovider.h impure plain false false QImage [0xc821a97480 0xc821a97680 0xc821a97800 0xc821a97920] } +&{requestPixmap QQuickImageProvider::requestPixmap commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/util/qquickimageprovider.h impure plain false false QPixmap [0xc821a97e60 0xc821a97fa0 0xc821a860a0 0xc821a86280] } +&{requestTexture QQuickImageProvider::requestTexture commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/util/qquickimageprovider.h impure plain false false QQuickTextureFactory * [0xc821a867e0 0xc821a868c0 0xc821a869c0 0xc821a86c20] } +&{~QQuickImageProvider QQuickImageProvider::~QQuickImageProvider commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/util/qquickimageprovider.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQuick/QQuickItem.txt b/internal/binding/dump/QtQuick/QQuickItem.txt new file mode 100755 index 00000000..b548ea9a --- /dev/null +++ b/internal/binding/dump/QtQuick/QQuickItem.txt @@ -0,0 +1,134 @@ +######################################## FUNCTIONS ######################################## +&{QQuickItem QQuickItem::QQuickItem commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non constructor false false [0xc821cd9d60] } +&{activeFocusOnTab QQuickItem::activeFocusOnTab commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false bool [] } +&{antialiasing QQuickItem::antialiasing commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false bool [] } +&{baselineOffset QQuickItem::baselineOffset commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false qreal [] } +&{childrenRect QQuickItem::childrenRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false QRectF [] } +&{clip QQuickItem::clip commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false bool [] } +&{hasActiveFocus QQuickItem::hasActiveFocus commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false bool [] } +&{hasFocus QQuickItem::hasFocus commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false bool [] } +&{height QQuickItem::height commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false qreal [] } +&{implicitHeight QQuickItem::implicitHeight commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false qreal [] } +&{isEnabled QQuickItem::isEnabled commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false bool [] } +&{isTextureProvider QQuickItem::isTextureProvider commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp impure plain false false bool [] } +&{isVisible QQuickItem::isVisible commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false bool [] } +&{opacity QQuickItem::opacity commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false qreal [] } +&{parentItem QQuickItem::parentItem commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false QQuickItem * [] } +&{resetAntialiasing QQuickItem::resetAntialiasing commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false void [] } +&{resetHeight QQuickItem::resetHeight commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false void [] } +&{resetWidth QQuickItem::resetWidth commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false void [] } +&{rotation QQuickItem::rotation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false qreal [] } +&{scale QQuickItem::scale commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false qreal [] } +&{setActiveFocusOnTab QQuickItem::setActiveFocusOnTab commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false void [0xc821cb38e0] } +&{setAntialiasing QQuickItem::setAntialiasing commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false void [0xc821cb3d40] } +&{setBaselineOffset QQuickItem::setBaselineOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false void [0xc821cb41e0] } +&{setClip QQuickItem::setClip commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false void [0xc821cb4460] } +&{setEnabled QQuickItem::setEnabled commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false void [0xc821cb46e0] } +&{setFocus QQuickItem::setFocus commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false void [0xc821cb48e0] } +&{setFocus QQuickItem::setFocus commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false true 2 void [0xc821cb4b00 0xc821cb4bc0] } +&{setHeight QQuickItem::setHeight commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false void [0xc821cb4e00] } +&{setImplicitHeight QQuickItem::setImplicitHeight commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false void [0xc821cb5120] } +&{setImplicitWidth QQuickItem::setImplicitWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false void [0xc821cb5360] } +&{setOpacity QQuickItem::setOpacity commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false void [0xc821cb5620] } +&{setParentItem QQuickItem::setParentItem commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false void [0xc821cb5880] } +&{setRotation QQuickItem::setRotation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false void [0xc821cb5b40] } +&{setScale QQuickItem::setScale commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false void [0xc821cb5d60] } +&{setSmooth QQuickItem::setSmooth commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false void [0xc821cb5f80] } +&{setState QQuickItem::setState commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false void [0xc821c9a400] } +&{setTransformOrigin QQuickItem::setTransformOrigin commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false void [0xc821c9aa20] } +&{setVisible QQuickItem::setVisible commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false void [0xc821c9af40] } +&{setWidth QQuickItem::setWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false void [0xc821c9b460] } +&{setX QQuickItem::setX commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false void [0xc821c9b800] } +&{setY QQuickItem::setY commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false void [0xc821c9bbe0] } +&{setZ QQuickItem::setZ commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false void [0xc821c90020] } +&{smooth QQuickItem::smooth commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false bool [] } +&{state QQuickItem::state commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false QString [] } +&{textureProvider QQuickItem::textureProvider commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp impure plain false false QSGTextureProvider * [] } +&{transformOrigin QQuickItem::transformOrigin commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false TransformOrigin [] } +&{width QQuickItem::width commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false qreal [] } +&{x QQuickItem::x commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false qreal [] } +&{y QQuickItem::y commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false qreal [] } +&{z QQuickItem::z commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.cpp non plain false false qreal [] } +&{acceptHoverEvents QQuickItem::acceptHoverEvents commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false bool [] } +&{acceptedMouseButtons QQuickItem::acceptedMouseButtons commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false Qt::MouseButtons [] } +&{childAt QQuickItem::childAt commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false QQuickItem * [0xc821c170e0 0xc821c17220] } +&{childItems QQuickItem::childItems commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false QList [] } +&{childMouseEventFilter QQuickItem::childMouseEventFilter commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false bool [0xc821c178e0 0xc821c179e0] } +&{classBegin QQuickItem::classBegin commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false void [] } +&{componentComplete QQuickItem::componentComplete commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false void [] } +&{contains QQuickItem::contains commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false bool [0xc821bfea60] } +&{cursor QQuickItem::cursor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false QCursor [] } +&{dragEnterEvent QQuickItem::dragEnterEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false void [0xc821bff020] } +&{dragLeaveEvent QQuickItem::dragLeaveEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false void [0xc821bff400] } +&{dragMoveEvent QQuickItem::dragMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false void [0xc821bff860] } +&{dropEvent QQuickItem::dropEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false void [0xc821bffc00] } +&{event QQuickItem::event commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false bool [0xc821bfffa0] } +&{filtersChildMouseEvents QQuickItem::filtersChildMouseEvents commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false bool [] } +&{flags QQuickItem::flags commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false Flags [] } +&{focusInEvent QQuickItem::focusInEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false void [0xc821bf2860] } +&{focusOutEvent QQuickItem::focusOutEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false void [0xc821bf2be0] } +&{forceActiveFocus QQuickItem::forceActiveFocus commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false void [] } +&{forceActiveFocus QQuickItem::forceActiveFocus commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false true 2 void [0xc821bf3300] } +&{geometryChanged QQuickItem::geometryChanged commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false void [0xc821bf3720 0xc821bf3920] } +&{grabMouse QQuickItem::grabMouse commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false void [] } +&{grabToImage QQuickItem::grabToImage commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false QSharedPointer [0xc821bf3f60] } +&{grabTouchPoints QQuickItem::grabTouchPoints commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false void [0xc821be0400] } +&{heightValid QQuickItem::heightValid commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false bool [] } +&{hoverEnterEvent QQuickItem::hoverEnterEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false void [0xc821be0b20] } +&{hoverLeaveEvent QQuickItem::hoverLeaveEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false void [0xc821be0fa0] } +&{hoverMoveEvent QQuickItem::hoverMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false void [0xc821be1400] } +&{implicitWidth QQuickItem::implicitWidth commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false qreal [] } +&{inputMethodEvent QQuickItem::inputMethodEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false void [0xc821be1b40] } +&{inputMethodQuery QQuickItem::inputMethodQuery commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false QVariant [0xc821be1fc0] } +&{isComponentComplete QQuickItem::isComponentComplete commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false bool [] } +&{isFocusScope QQuickItem::isFocusScope commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false bool [] } +&{itemChange QQuickItem::itemChange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false void [0xc821bd0ac0 0xc821bd0c20] } +&{keepMouseGrab QQuickItem::keepMouseGrab commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false bool [] } +&{keepTouchGrab QQuickItem::keepTouchGrab commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false bool [] } +&{keyPressEvent QQuickItem::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false void [0xc821bd15a0] } +&{keyReleaseEvent QQuickItem::keyReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false void [0xc821bd1a00] } +&{mapFromItem QQuickItem::mapFromItem commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false QPointF [0xc821bd1de0 0xc821bd1f00] } +&{mapFromScene QQuickItem::mapFromScene commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false QPointF [0xc821bcc1a0] } +&{mapRectFromItem QQuickItem::mapRectFromItem commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false QRectF [0xc821bcc420 0xc821bcc4e0] } +&{mapRectFromScene QQuickItem::mapRectFromScene commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false QRectF [0xc821bcc700] } +&{mapRectToItem QQuickItem::mapRectToItem commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false QRectF [0xc821bcc920 0xc821bcc9e0] } +&{mapRectToScene QQuickItem::mapRectToScene commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false QRectF [0xc821bccca0] } +&{mapToItem QQuickItem::mapToItem commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false QPointF [0xc821bccf60 0xc821bcd040] } +&{mapToScene QQuickItem::mapToScene commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false QPointF [0xc821bcd260] } +&{mouseDoubleClickEvent QQuickItem::mouseDoubleClickEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false void [0xc821bcd4a0] } +&{mouseMoveEvent QQuickItem::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false void [0xc821bcd700] } +&{mousePressEvent QQuickItem::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false void [0xc821bcd9c0] } +&{mouseReleaseEvent QQuickItem::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false void [0xc821bcdcc0] } +&{mouseUngrabEvent QQuickItem::mouseUngrabEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false void [] } +&{nextItemInFocusChain QQuickItem::nextItemInFocusChain commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false QQuickItem * [0xc821bc60e0] } +&{polish QQuickItem::polish commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false void [] } +&{releaseResources QQuickItem::releaseResources commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false void [] } +&{scopedFocusItem QQuickItem::scopedFocusItem commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false QQuickItem * [] } +&{setAcceptHoverEvents QQuickItem::setAcceptHoverEvents commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false void [0xc821bc6940] } +&{setAcceptedMouseButtons QQuickItem::setAcceptedMouseButtons commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false void [0xc821bc6b40] } +&{setCursor QQuickItem::setCursor commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false void [0xc821bc6d20] } +&{setFiltersChildMouseEvents QQuickItem::setFiltersChildMouseEvents commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false void [0xc821bc6f40] } +&{setFlag QQuickItem::setFlag commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false void [0xc821bc7160 0xc821bc71e0] } +&{setFlags QQuickItem::setFlags commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false void [0xc821bc7440] } +&{setKeepMouseGrab QQuickItem::setKeepMouseGrab commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false void [0xc821bc7640] } +&{setKeepTouchGrab QQuickItem::setKeepTouchGrab commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false void [0xc821bc7880] } +&{stackAfter QQuickItem::stackAfter commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false void [0xc821bbe3a0] } +&{stackBefore QQuickItem::stackBefore commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false void [0xc821bbeac0] } +&{touchEvent QQuickItem::touchEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false void [0xc821bbef20] } +&{touchUngrabEvent QQuickItem::touchUngrabEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false void [] } +&{ungrabMouse QQuickItem::ungrabMouse commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false void [] } +&{ungrabTouchPoints QQuickItem::ungrabTouchPoints commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false void [] } +&{unsetCursor QQuickItem::unsetCursor commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false void [] } +&{update QQuickItem::update commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non slot false false void [] } +&{updateInputMethod QQuickItem::updateInputMethod commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false void [0xc821bae6a0] } +&{updatePaintNode QQuickItem::updatePaintNode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false QSGNode * [0xc821bae9a0 0xc821baea80] } +&{updatePolish QQuickItem::updatePolish commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false void [] } +&{wheelEvent QQuickItem::wheelEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure plain false false void [0xc821baee40] } +&{widthValid QQuickItem::widthValid commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false bool [] } +&{window QQuickItem::window commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non plain false false QQuickWindow * [] } +&{windowChanged QQuickItem::windowChanged commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h non signal false false void [0xc821baf380] } +&{~QQuickItem QQuickItem::~QQuickItem commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitem.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{Flag QQuickItem::Flag commendable public QQuickItem::Flags [0xc821c76a60 0xc821c76ca0 0xc821c76e40 0xc821c76ee0 0xc821c770a0]} +&{ItemChange QQuickItem::ItemChange commendable public [0xc821c77420 0xc821c775c0 0xc821c77760 0xc821c778c0 0xc821c77ae0 0xc821c77c80 0xc821c77e40 0xc821c77fe0 0xc821c6a340]} +&{TransformOrigin QQuickItem::TransformOrigin commendable public [0xc821c6a860 0xc821c6a9a0 0xc821c6ab00 0xc821c6ac40 0xc821c6ae60 0xc821c6af20 0xc821c6b000 0xc821c6b180 0xc821c6b2e0]} diff --git a/internal/binding/dump/QtQuick/QQuickItemGrabResult.txt b/internal/binding/dump/QtQuick/QQuickItemGrabResult.txt new file mode 100755 index 00000000..726cdc85 --- /dev/null +++ b/internal/binding/dump/QtQuick/QQuickItemGrabResult.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{image QQuickItemGrabResult::image commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitemgrabresult.cpp non plain false false QImage [] } +&{url QQuickItemGrabResult::url commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitemgrabresult.cpp non plain false false QUrl [] } +&{ready QQuickItemGrabResult::ready commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitemgrabresult.h non signal false false void [] } +&{saveToFile QQuickItemGrabResult::saveToFile commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickitemgrabresult.h non plain false false bool [0xc821b94a60] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQuick/QQuickPaintedItem.txt b/internal/binding/dump/QtQuick/QQuickPaintedItem.txt new file mode 100755 index 00000000..55884b80 --- /dev/null +++ b/internal/binding/dump/QtQuick/QQuickPaintedItem.txt @@ -0,0 +1,35 @@ +######################################## FUNCTIONS ######################################## +&{contentsScale QQuickPaintedItem::contentsScale commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.cpp non plain false false qreal [] } +&{contentsSize QQuickPaintedItem::contentsSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.cpp non plain false false QSize [] } +&{fillColor QQuickPaintedItem::fillColor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.cpp non plain false false QColor [] } +&{renderTarget QQuickPaintedItem::renderTarget commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.cpp non plain false false RenderTarget [] } +&{setContentsScale QQuickPaintedItem::setContentsScale commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.cpp non plain false false void [0xc822448b00] } +&{setContentsSize QQuickPaintedItem::setContentsSize commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.cpp non plain false false void [0xc822448d40] } +&{setFillColor QQuickPaintedItem::setFillColor commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.cpp non plain false false void [0xc822448f40] } +&{setRenderTarget QQuickPaintedItem::setRenderTarget commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.cpp non plain false false void [0xc822449180] } +&{QQuickPaintedItem QQuickPaintedItem::QQuickPaintedItem commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.h non constructor false false [0xc822449a80] } +&{antialiasing QQuickPaintedItem::antialiasing commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.h non plain false false bool [] } +&{contentsBoundingRect QQuickPaintedItem::contentsBoundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.h non plain false false QRectF [] } +&{contentsScaleChanged QQuickPaintedItem::contentsScaleChanged commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.h non signal false false void [] } +&{contentsSizeChanged QQuickPaintedItem::contentsSizeChanged commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.h non signal false false void [] } +&{fillColorChanged QQuickPaintedItem::fillColorChanged commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.h non signal false false void [] } +&{isTextureProvider QQuickPaintedItem::isTextureProvider commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.h impure plain false false bool [] } +&{mipmap QQuickPaintedItem::mipmap commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.h non plain false false bool [] } +&{opaquePainting QQuickPaintedItem::opaquePainting commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.h non plain false false bool [] } +&{paint QQuickPaintedItem::paint commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.h pure plain false false void [0xc821b3b5a0] } +&{performanceHints QQuickPaintedItem::performanceHints commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.h non plain false false PerformanceHints [] } +&{releaseResources QQuickPaintedItem::releaseResources commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.h impure plain false false void [] } +&{renderTargetChanged QQuickPaintedItem::renderTargetChanged commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.h non signal false false void [] } +&{resetContentsSize QQuickPaintedItem::resetContentsSize commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.h non plain false false void [] } +&{setAntialiasing QQuickPaintedItem::setAntialiasing commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.h non plain false false void [0xc821b2a160] } +&{setMipmap QQuickPaintedItem::setMipmap commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.h non plain false false void [0xc821b2a6e0] } +&{setOpaquePainting QQuickPaintedItem::setOpaquePainting commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.h non plain false false void [0xc821b2abe0] } +&{setPerformanceHint QQuickPaintedItem::setPerformanceHint commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.h non plain false false void [0xc821b2b000 0xc821b2b100] } +&{setPerformanceHints QQuickPaintedItem::setPerformanceHints commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.h non plain false false void [0xc821b2b380] } +&{textureProvider QQuickPaintedItem::textureProvider commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.h impure plain false false QSGTextureProvider * [] } +&{update QQuickPaintedItem::update commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.h non plain false false void [0xc821b2b940] } +&{updatePaintNode QQuickPaintedItem::updatePaintNode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.h impure plain false false QSGNode * [0xc821b2bd00 0xc821b2bf20] } +&{~QQuickPaintedItem QQuickPaintedItem::~QQuickPaintedItem commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickpainteditem.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{PerformanceHint QQuickPaintedItem::PerformanceHint commendable public QQuickPaintedItem::PerformanceHints [0xc822449360]} +&{RenderTarget QQuickPaintedItem::RenderTarget commendable public [0xc8224495a0 0xc822449660 0xc8224497a0]} diff --git a/internal/binding/dump/QtQuick/QQuickRenderControl.txt b/internal/binding/dump/QtQuick/QQuickRenderControl.txt new file mode 100755 index 00000000..d79fff37 --- /dev/null +++ b/internal/binding/dump/QtQuick/QQuickRenderControl.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QQuickRenderControl QQuickRenderControl::QQuickRenderControl commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickrendercontrol.h non constructor false false [0xc821a96a40] } +&{grab QQuickRenderControl::grab commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickrendercontrol.h non plain false false QImage [] } +&{initialize QQuickRenderControl::initialize commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickrendercontrol.h non plain false false void [0xc821a97160] } +&{invalidate QQuickRenderControl::invalidate commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickrendercontrol.h non plain false false void [] } +&{polishItems QQuickRenderControl::polishItems commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickrendercontrol.h non plain false false void [] } +&{prepareThread QQuickRenderControl::prepareThread commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickrendercontrol.h non plain false false void [0xc821a97980] } +&{render QQuickRenderControl::render commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickrendercontrol.h non plain false false void [] } +&{renderRequested QQuickRenderControl::renderRequested commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickrendercontrol.h non signal false false void [] } +&{renderWindow QQuickRenderControl::renderWindow commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickrendercontrol.h impure plain false false QWindow * [0xc821a860e0] } +&{renderWindowFor QQuickRenderControl::renderWindowFor commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickrendercontrol.h non plain true false QWindow * [0xc821a86380 0xc821a86460] } +&{sceneChanged QQuickRenderControl::sceneChanged commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickrendercontrol.h non signal false false void [] } +&{sync QQuickRenderControl::sync commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickrendercontrol.h non plain false false bool [] } +&{~QQuickRenderControl QQuickRenderControl::~QQuickRenderControl commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickrendercontrol.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQuick/QQuickTextDocument.txt b/internal/binding/dump/QtQuick/QQuickTextDocument.txt new file mode 100755 index 00000000..0078a691 --- /dev/null +++ b/internal/binding/dump/QtQuick/QQuickTextDocument.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{QQuickTextDocument QQuickTextDocument::QQuickTextDocument commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquicktextdocument.cpp non constructor false false [0xc821a597c0] } +&{textDocument QQuickTextDocument::textDocument commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquicktextdocument.cpp non plain false false QTextDocument * [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQuick/QQuickTextureFactory.txt b/internal/binding/dump/QtQuick/QQuickTextureFactory.txt new file mode 100755 index 00000000..e6073fa5 --- /dev/null +++ b/internal/binding/dump/QtQuick/QQuickTextureFactory.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{image QQuickTextureFactory::image commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/util/qquickimageprovider.cpp impure plain false false QImage [] } +&{QQuickTextureFactory QQuickTextureFactory::QQuickTextureFactory commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/util/qquickimageprovider.h non constructor false false [] } +&{createTexture QQuickTextureFactory::createTexture commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/util/qquickimageprovider.h pure plain false false QSGTexture * [0xc821a87900] } +&{textureByteCount QQuickTextureFactory::textureByteCount commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/util/qquickimageprovider.h pure plain false false int [] } +&{textureSize QQuickTextureFactory::textureSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/util/qquickimageprovider.h pure plain false false QSize [] } +&{~QQuickTextureFactory QQuickTextureFactory::~QQuickTextureFactory commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/util/qquickimageprovider.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQuick/QQuickView.txt b/internal/binding/dump/QtQuick/QQuickView.txt new file mode 100755 index 00000000..5e5f9ae8 --- /dev/null +++ b/internal/binding/dump/QtQuick/QQuickView.txt @@ -0,0 +1,24 @@ +######################################## FUNCTIONS ######################################## +&{resizeMode QQuickView::resizeMode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickview.cpp non plain false false ResizeMode [] } +&{setResizeMode QQuickView::setResizeMode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickview.cpp non plain false false void [0xc8219fd5c0] } +&{status QQuickView::status commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickview.cpp non plain false false Status [] } +&{QQuickView QQuickView::QQuickView commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickview.h non constructor false true 2 [0xc8219f2700 0xc8219f27a0] } +&{QQuickView QQuickView::QQuickView commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickview.h non constructor false false [0xc8219f2a20] } +&{QQuickView QQuickView::QQuickView commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickview.h non constructor false true 3 [0xc8219f2c00 0xc8219f2c80] } +&{engine QQuickView::engine commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickview.h non plain false false QQmlEngine * [] } +&{errors QQuickView::errors commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickview.h non plain false false QList [] } +&{initialSize QQuickView::initialSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickview.h non plain false false QSize [] } +&{keyPressEvent QQuickView::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickview.h impure plain false false void [0xc8219f34e0] } +&{keyReleaseEvent QQuickView::keyReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickview.h impure plain false false void [0xc8219f3720] } +&{mouseMoveEvent QQuickView::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickview.h impure plain false false void [0xc8219f3960] } +&{mousePressEvent QQuickView::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickview.h impure plain false false void [0xc8219f3ba0] } +&{mouseReleaseEvent QQuickView::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickview.h impure plain false false void [0xc8219f3e00] } +&{rootContext QQuickView::rootContext commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickview.h non plain false false QQmlContext * [] } +&{rootObject QQuickView::rootObject commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickview.h non plain false false QQuickItem * [] } +&{setSource QQuickView::setSource commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickview.h non slot false false void [0xc8219e84c0] } +&{source QQuickView::source commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickview.h non plain false false QUrl [] } +&{statusChanged QQuickView::statusChanged commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickview.h non signal false false void [0xc8219e93a0] } +&{~QQuickView QQuickView::~QQuickView commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickview.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{ResizeMode QQuickView::ResizeMode commendable public [0xc8219fdd60 0xc8219fdea0]} +&{Status QQuickView::Status commendable public [0xc8219f2240 0xc8219f2320 0xc8219f23e0 0xc8219f2460]} diff --git a/internal/binding/dump/QtQuick/QQuickWidget.txt b/internal/binding/dump/QtQuick/QQuickWidget.txt new file mode 100755 index 00000000..69962764 --- /dev/null +++ b/internal/binding/dump/QtQuick/QQuickWidget.txt @@ -0,0 +1,41 @@ +######################################## FUNCTIONS ######################################## +&{focusInEvent QQuickWidget::focusInEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.cpp impure plain false false void [0xc821a458c0] } +&{focusOutEvent QQuickWidget::focusOutEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.cpp impure plain false false void [0xc821a45c20] } +&{resizeMode QQuickWidget::resizeMode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.cpp non plain false false ResizeMode [] } +&{setResizeMode QQuickWidget::setResizeMode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.cpp non plain false false void [0xc821a42160] } +&{status QQuickWidget::status commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.cpp non plain false false Status [] } +&{QQuickWidget QQuickWidget::QQuickWidget commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h non constructor false true 2 [0xc821a42c40 0xc821a42d00] } +&{QQuickWidget QQuickWidget::QQuickWidget commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h non constructor false false [0xc821a42f60] } +&{QQuickWidget QQuickWidget::QQuickWidget commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h non constructor false true 3 [0xc821a431a0 0xc821a43240] } +&{dragEnterEvent QQuickWidget::dragEnterEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h impure plain false false void [0xc821a43520] } +&{dragLeaveEvent QQuickWidget::dragLeaveEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h impure plain false false void [0xc821a437a0] } +&{dragMoveEvent QQuickWidget::dragMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h impure plain false false void [0xc821a43a00] } +&{dropEvent QQuickWidget::dropEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h impure plain false false void [0xc821a43c40] } +&{engine QQuickWidget::engine commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h non plain false false QQmlEngine * [] } +&{errors QQuickWidget::errors commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h non plain false false QList [] } +&{event QQuickWidget::event commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h impure plain false false bool [0xc821a1e240] } +&{format QQuickWidget::format commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h non plain false false QSurfaceFormat [] } +&{grabFramebuffer QQuickWidget::grabFramebuffer commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h non plain false false QImage [] } +&{hideEvent QQuickWidget::hideEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h impure plain false false void [0xc821a1ece0] } +&{initialSize QQuickWidget::initialSize commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h non plain false false QSize [] } +&{keyPressEvent QQuickWidget::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h impure plain false false void [0xc821a1f3e0] } +&{keyReleaseEvent QQuickWidget::keyReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h impure plain false false void [0xc821a1f860] } +&{mouseDoubleClickEvent QQuickWidget::mouseDoubleClickEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h impure plain false false void [0xc821a1fc80] } +&{mouseMoveEvent QQuickWidget::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h impure plain false false void [0xc821a0e0e0] } +&{mousePressEvent QQuickWidget::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h impure plain false false void [0xc821a0e580] } +&{mouseReleaseEvent QQuickWidget::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h impure plain false false void [0xc821a0eac0] } +&{quickWindow QQuickWidget::quickWindow commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h non plain false false QQuickWindow * [] } +&{rootContext QQuickWidget::rootContext commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h non plain false false QQmlContext * [] } +&{rootObject QQuickWidget::rootObject commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h non plain false false QQuickItem * [] } +&{sceneGraphError QQuickWidget::sceneGraphError commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h non signal false false void [0xc821a0fb20 0xc821a0fd60] } +&{setClearColor QQuickWidget::setClearColor commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h non plain false false void [0xc821a0a120] } +&{setFormat QQuickWidget::setFormat commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h non plain false false void [0xc821a0b080] } +&{setSource QQuickWidget::setSource commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h non slot false false void [0xc821a0b3a0] } +&{showEvent QQuickWidget::showEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h impure plain false false void [0xc821a0b680] } +&{statusChanged QQuickWidget::statusChanged commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h non signal false false void [0xc821a0b940] } +&{source QQuickWidget::source commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h non plain false false QUrl [] } +&{wheelEvent QQuickWidget::wheelEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h impure plain false false void [0xc8219fc440] } +&{~QQuickWidget QQuickWidget::~QQuickWidget commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quickwidgets/qquickwidget.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{ResizeMode QQuickWidget::ResizeMode commendable public [0xc821a42540 0xc821a42640]} +&{Status QQuickWidget::Status commendable public [0xc821a42880 0xc821a42900 0xc821a42980 0xc821a42a00]} diff --git a/internal/binding/dump/QtQuick/QQuickWindow.txt b/internal/binding/dump/QtQuick/QQuickWindow.txt new file mode 100755 index 00000000..d9a3ddd6 --- /dev/null +++ b/internal/binding/dump/QtQuick/QQuickWindow.txt @@ -0,0 +1,67 @@ +######################################## FUNCTIONS ######################################## +&{activeFocusItem QQuickWindow::activeFocusItem commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.cpp non plain false false QQuickItem * [] } +&{color QQuickWindow::color commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.cpp non plain false false QColor [] } +&{contentItem QQuickWindow::contentItem commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.cpp non plain false false QQuickItem * [] } +&{setColor QQuickWindow::setColor commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.cpp non plain false false void [0xc8219c9f60] } +&{QQuickWindow QQuickWindow::QQuickWindow commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non constructor false false [0xc8219b6800] } +&{accessibleRoot QQuickWindow::accessibleRoot commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h impure plain false false QAccessibleInterface * [] } +&{activeFocusItemChanged QQuickWindow::activeFocusItemChanged commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non signal false false void [] } +&{afterAnimating QQuickWindow::afterAnimating commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non signal false false void [] } +&{afterRendering QQuickWindow::afterRendering commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non signal false false void [] } +&{afterSynchronizing QQuickWindow::afterSynchronizing commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non signal false false void [] } +&{beforeRendering QQuickWindow::beforeRendering commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non signal false false void [] } +&{beforeSynchronizing QQuickWindow::beforeSynchronizing commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non signal false false void [] } +&{clearBeforeRendering QQuickWindow::clearBeforeRendering commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non plain false false bool [] } +&{closing QQuickWindow::closing commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non signal false false void [0xc8219a6b80] } +&{colorChanged QQuickWindow::colorChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non signal false false void [0xc8219a6fe0] } +&{createTextureFromId QQuickWindow::createTextureFromId commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non plain false false QSGTexture * [0xc8219a72c0 0xc8219a73e0 0xc8219a7580] } +&{createTextureFromImage QQuickWindow::createTextureFromImage commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non plain false true 2 QSGTexture * [0xc8219a7880] } +&{createTextureFromImage QQuickWindow::createTextureFromImage commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non plain false false QSGTexture * [0xc8219a7ca0 0xc8219a7ea0] } +&{effectiveDevicePixelRatio QQuickWindow::effectiveDevicePixelRatio commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non plain false false qreal [] } +&{event QQuickWindow::event commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h impure plain false false bool [0xc8219985c0] } +&{exposeEvent QQuickWindow::exposeEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h impure plain false false void [0xc8219989c0] } +&{focusInEvent QQuickWindow::focusInEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h impure plain false false void [0xc821998e00] } +&{focusOutEvent QQuickWindow::focusOutEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h impure plain false false void [0xc821999200] } +&{frameSwapped QQuickWindow::frameSwapped commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non signal false false void [] } +&{grabWindow QQuickWindow::grabWindow commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non plain false false QImage [] } +&{hasDefaultAlphaBuffer QQuickWindow::hasDefaultAlphaBuffer commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non plain true false bool [] } +&{hideEvent QQuickWindow::hideEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h impure plain false false void [0xc821999ec0] } +&{incubationController QQuickWindow::incubationController commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non plain false false QQmlIncubationController * [] } +&{isPersistentOpenGLContext QQuickWindow::isPersistentOpenGLContext commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non plain false false bool [] } +&{isPersistentSceneGraph QQuickWindow::isPersistentSceneGraph commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non plain false false bool [] } +&{isSceneGraphInitialized QQuickWindow::isSceneGraphInitialized commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non plain false false bool [] } +&{keyPressEvent QQuickWindow::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h impure plain false false void [0xc82198e760] } +&{keyReleaseEvent QQuickWindow::keyReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h impure plain false false void [0xc82198e9a0] } +&{mouseDoubleClickEvent QQuickWindow::mouseDoubleClickEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h impure plain false false void [0xc82198eb80] } +&{mouseGrabberItem QQuickWindow::mouseGrabberItem commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non plain false false QQuickItem * [] } +&{mouseMoveEvent QQuickWindow::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h impure plain false false void [0xc82198ee80] } +&{mousePressEvent QQuickWindow::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h impure plain false false void [0xc82198f0e0] } +&{mouseReleaseEvent QQuickWindow::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h impure plain false false void [0xc82198f340] } +&{openglContext QQuickWindow::openglContext commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non plain false false QOpenGLContext * [] } +&{openglContextCreated QQuickWindow::openglContextCreated commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non signal false false void [0xc82198f720] } +&{releaseResources QQuickWindow::releaseResources commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non slot false false void [] } +&{renderTarget QQuickWindow::renderTarget commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non plain false false QOpenGLFramebufferObject * [] } +&{renderTargetId QQuickWindow::renderTargetId commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non plain false false uint [] } +&{renderTargetSize QQuickWindow::renderTargetSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non plain false false QSize [] } +&{resetOpenGLState QQuickWindow::resetOpenGLState commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non plain false false void [] } +&{resizeEvent QQuickWindow::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h impure plain false false void [0xc82198a220] } +&{sceneGraphAboutToStop QQuickWindow::sceneGraphAboutToStop commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non signal false false void [] } +&{sceneGraphError QQuickWindow::sceneGraphError commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non signal false false void [0xc82198a8e0 0xc82198aa20] } +&{sceneGraphInitialized QQuickWindow::sceneGraphInitialized commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non signal false false void [] } +&{sceneGraphInvalidated QQuickWindow::sceneGraphInvalidated commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non signal false false void [] } +&{scheduleRenderJob QQuickWindow::scheduleRenderJob commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non plain false false void [0xc82198b340 0xc82198b480] } +&{sendEvent QQuickWindow::sendEvent commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non plain false false bool [0xc82198b860 0xc82198ba60] } +&{setClearBeforeRendering QQuickWindow::setClearBeforeRendering commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non plain false false void [0xc82198bdc0] } +&{setDefaultAlphaBuffer QQuickWindow::setDefaultAlphaBuffer commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non plain true false void [0xc82197a0e0] } +&{setPersistentOpenGLContext QQuickWindow::setPersistentOpenGLContext commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non plain false false void [0xc82197a420] } +&{setPersistentSceneGraph QQuickWindow::setPersistentSceneGraph commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non plain false false void [0xc82197a700] } +&{setRenderTarget QQuickWindow::setRenderTarget commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non plain false false void [0xc82197aaa0] } +&{setRenderTarget QQuickWindow::setRenderTarget commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non plain false true 2 void [0xc82197aec0 0xc82197af80] } +&{showEvent QQuickWindow::showEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h impure plain false false void [0xc82197b3a0] } +&{update QQuickWindow::update commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h non slot false false void [] } +&{wheelEvent QQuickWindow::wheelEvent commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h impure plain false false void [0xc82197b880] } +&{~QQuickWindow QQuickWindow::~QQuickWindow commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/items/qquickwindow.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{CreateTextureOption QQuickWindow::CreateTextureOption commendable public QQuickWindow::CreateTextureOptions [0xc8219c6440 0xc8219c6600 0xc8219c6980 0xc8219c6b80]} +&{RenderStage QQuickWindow::RenderStage commendable public [0xc8219c7120 0xc8219c7360 0xc8219c7540 0xc8219c7740 0xc8219c7a20]} +&{SceneGraphError QQuickWindow::SceneGraphError commendable public [0xc8219c7f20]} diff --git a/internal/binding/dump/QtQuick/QSGAbstractRenderer.txt b/internal/binding/dump/QtQuick/QSGAbstractRenderer.txt new file mode 100755 index 00000000..6740cd33 --- /dev/null +++ b/internal/binding/dump/QtQuick/QSGAbstractRenderer.txt @@ -0,0 +1,20 @@ +######################################## FUNCTIONS ######################################## +&{clearColor QSGAbstractRenderer::clearColor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgabstractrenderer.h non plain false false QColor [] } +&{clearMode QSGAbstractRenderer::clearMode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgabstractrenderer.h non plain false false ClearMode [] } +&{deviceRect QSGAbstractRenderer::deviceRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgabstractrenderer.h non plain false false QRect [] } +&{projectionMatrix QSGAbstractRenderer::projectionMatrix commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgabstractrenderer.h non plain false false QMatrix4x4 [] } +&{renderScene QSGAbstractRenderer::renderScene commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgabstractrenderer.h pure plain false false void [0xc82220e240] } +&{rootNode QSGAbstractRenderer::rootNode commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgabstractrenderer.h non plain false false QSGRootNode * [] } +&{sceneGraphChanged QSGAbstractRenderer::sceneGraphChanged commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgabstractrenderer.h non signal false false void [] } +&{setClearColor QSGAbstractRenderer::setClearColor commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgabstractrenderer.h non plain false false void [0xc82220e660] } +&{setClearMode QSGAbstractRenderer::setClearMode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgabstractrenderer.h non plain false false void [0xc82220e7e0] } +&{setDeviceRect QSGAbstractRenderer::setDeviceRect commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgabstractrenderer.h non plain false false void [0xc82220e9c0] } +&{setDeviceRect QSGAbstractRenderer::setDeviceRect commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgabstractrenderer.h non plain false true 2 void [0xc82220eba0] } +&{setProjectionMatrix QSGAbstractRenderer::setProjectionMatrix commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgabstractrenderer.h non plain false false void [0xc82220ee00] } +&{setProjectionMatrixToRect QSGAbstractRenderer::setProjectionMatrixToRect commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgabstractrenderer.h non plain false false void [0xc82220f080] } +&{setRootNode QSGAbstractRenderer::setRootNode commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgabstractrenderer.h non plain false false void [0xc82220f300] } +&{setViewportRect QSGAbstractRenderer::setViewportRect commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgabstractrenderer.h non plain false false void [0xc82220f4e0] } +&{setViewportRect QSGAbstractRenderer::setViewportRect commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgabstractrenderer.h non plain false true 2 void [0xc82220f6a0] } +&{viewportRect QSGAbstractRenderer::viewportRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgabstractrenderer.h non plain false false QRect [] } +######################################## ENUMS ######################################## +&{ClearModeBit QSGAbstractRenderer::ClearModeBit commendable public QSGAbstractRenderer::ClearMode [0xc821966ba0 0xc821966c40 0xc821966e00]} diff --git a/internal/binding/dump/QtQuick/QSGBasicGeometryNode.txt b/internal/binding/dump/QtQuick/QSGBasicGeometryNode.txt new file mode 100755 index 00000000..6bbf5160 --- /dev/null +++ b/internal/binding/dump/QtQuick/QSGBasicGeometryNode.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{geometry QSGBasicGeometryNode::geometry commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false true 2 QSGGeometry * [] } +&{geometry QSGBasicGeometryNode::geometry commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false const QSGGeometry * [] } +&{setGeometry QSGBasicGeometryNode::setGeometry commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false void [0xc821bd16c0] } +&{~QSGBasicGeometryNode QSGBasicGeometryNode::~QSGBasicGeometryNode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQuick/QSGClipNode.txt b/internal/binding/dump/QtQuick/QSGClipNode.txt new file mode 100755 index 00000000..7fa362ad --- /dev/null +++ b/internal/binding/dump/QtQuick/QSGClipNode.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{QSGClipNode QSGClipNode::QSGClipNode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non constructor false false [] } +&{clipRect QSGClipNode::clipRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false QRectF [] } +&{isRectangular QSGClipNode::isRectangular commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false bool [] } +&{setClipRect QSGClipNode::setClipRect commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false void [0xc821bcc580] } +&{setIsRectangular QSGClipNode::setIsRectangular commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false void [0xc821bcc820] } +&{~QSGClipNode QSGClipNode::~QSGClipNode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQuick/QSGDynamicTexture.txt b/internal/binding/dump/QtQuick/QSGDynamicTexture.txt new file mode 100755 index 00000000..9bcaa7c7 --- /dev/null +++ b/internal/binding/dump/QtQuick/QSGDynamicTexture.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{updateTexture QSGDynamicTexture::updateTexture commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexture.h pure plain false false bool [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQuick/QSGEngine.txt b/internal/binding/dump/QtQuick/QSGEngine.txt new file mode 100755 index 00000000..cee9d995 --- /dev/null +++ b/internal/binding/dump/QtQuick/QSGEngine.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{QSGEngine QSGEngine::QSGEngine commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgengine.h non constructor false false [0xc821b9c840] } +&{createRenderer QSGEngine::createRenderer commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgengine.h non plain false false QSGAbstractRenderer * [] } +&{createTextureFromId QSGEngine::createTextureFromId commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgengine.h non plain false false QSGTexture * [0xc821b9cd20 0xc821b9cda0 0xc821b9cea0] } +&{createTextureFromImage QSGEngine::createTextureFromImage commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgengine.h non plain false false QSGTexture * [0xc821b9d1a0 0xc821b9d2a0] } +&{initialize QSGEngine::initialize commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgengine.h non plain false false void [0xc821b9d5a0] } +&{invalidate QSGEngine::invalidate commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgengine.h non plain false false void [] } +&{~QSGEngine QSGEngine::~QSGEngine commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgengine.h non destructor false false [] } +######################################## ENUMS ######################################## +&{CreateTextureOption QSGEngine::CreateTextureOption commendable public QSGEngine::CreateTextureOptions [0xc821b9c160 0xc821b9c280 0xc821b9c3a0]} diff --git a/internal/binding/dump/QtQuick/QSGFlatColorMaterial.txt b/internal/binding/dump/QtQuick/QSGFlatColorMaterial.txt new file mode 100755 index 00000000..b09280f1 --- /dev/null +++ b/internal/binding/dump/QtQuick/QSGFlatColorMaterial.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{QSGFlatColorMaterial QSGFlatColorMaterial::QSGFlatColorMaterial commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgflatcolormaterial.h non constructor false false [] } +&{color QSGFlatColorMaterial::color commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgflatcolormaterial.h non plain false false const QColor & [] } +&{setColor QSGFlatColorMaterial::setColor commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgflatcolormaterial.h non plain false false void [0xc821b9af60] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQuick/QSGGeometry.txt b/internal/binding/dump/QtQuick/QSGGeometry.txt new file mode 100755 index 00000000..2ae89eb4 --- /dev/null +++ b/internal/binding/dump/QtQuick/QSGGeometry.txt @@ -0,0 +1,42 @@ +######################################## FUNCTIONS ######################################## +&{QSGGeometry QSGGeometry::QSGGeometry commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non constructor false false [0xc8226cfa80 0xc8226cfb60 0xc8226cfc60 0xc8226cfd20] } +&{allocate QSGGeometry::allocate commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false false void [0xc8226cffe0 0xc8219560a0] } +&{attributeCount QSGGeometry::attributeCount commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false false int [] } +&{attributes QSGGeometry::attributes commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false false const Attribute * [] } +&{defaultAttributes_ColoredPoint2D QSGGeometry::defaultAttributes_ColoredPoint2D commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain true false const AttributeSet & [] } +&{defaultAttributes_Point2D QSGGeometry::defaultAttributes_Point2D commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain true false const AttributeSet & [] } +&{defaultAttributes_TexturedPoint2D QSGGeometry::defaultAttributes_TexturedPoint2D commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain true false const AttributeSet & [] } +&{drawingMode QSGGeometry::drawingMode commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false false GLenum [] } +&{indexCount QSGGeometry::indexCount commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false false int [] } +&{indexData QSGGeometry::indexData commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false false void * [] } +&{indexData QSGGeometry::indexData commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false true 2 const void * [] } +&{indexDataAsUInt QSGGeometry::indexDataAsUInt commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false false uint * [] } +&{indexDataAsUInt QSGGeometry::indexDataAsUInt commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false true 2 const uint * [] } +&{indexDataAsUShort QSGGeometry::indexDataAsUShort commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false false quint16 * [] } +&{indexDataAsUShort QSGGeometry::indexDataAsUShort commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false true 2 const quint16 * [] } +&{indexDataPattern QSGGeometry::indexDataPattern commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false false DataPattern [] } +&{indexType QSGGeometry::indexType commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false false int [] } +&{lineWidth QSGGeometry::lineWidth commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false false float [] } +&{markIndexDataDirty QSGGeometry::markIndexDataDirty commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false false void [] } +&{markVertexDataDirty QSGGeometry::markVertexDataDirty commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false false void [] } +&{setDrawingMode QSGGeometry::setDrawingMode commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false false void [0xc821947080] } +&{setIndexDataPattern QSGGeometry::setIndexDataPattern commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false false void [0xc821947560] } +&{setLineWidth QSGGeometry::setLineWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false false void [0xc821947980] } +&{setVertexDataPattern QSGGeometry::setVertexDataPattern commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false false void [0xc821947d40] } +&{sizeOfIndex QSGGeometry::sizeOfIndex commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false false int [] } +&{sizeOfVertex QSGGeometry::sizeOfVertex commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false false int [] } +&{updateRectGeometry QSGGeometry::updateRectGeometry commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain true false void [0xc8219367a0 0xc821936940] } +&{updateTexturedRectGeometry QSGGeometry::updateTexturedRectGeometry commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain true false void [0xc821936c60 0xc821936de0 0xc821936ea0] } +&{vertexCount QSGGeometry::vertexCount commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false false int [] } +&{vertexData QSGGeometry::vertexData commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false false void * [] } +&{vertexData QSGGeometry::vertexData commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false true 2 const void * [] } +&{vertexDataAsColoredPoint2D QSGGeometry::vertexDataAsColoredPoint2D commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false false ColoredPoint2D * [] } +&{vertexDataAsColoredPoint2D QSGGeometry::vertexDataAsColoredPoint2D commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false true 2 const ColoredPoint2D * [] } +&{vertexDataAsPoint2D QSGGeometry::vertexDataAsPoint2D commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false false Point2D * [] } +&{vertexDataAsPoint2D QSGGeometry::vertexDataAsPoint2D commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false true 2 const Point2D * [] } +&{vertexDataAsTexturedPoint2D QSGGeometry::vertexDataAsTexturedPoint2D commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false false TexturedPoint2D * [] } +&{vertexDataAsTexturedPoint2D QSGGeometry::vertexDataAsTexturedPoint2D commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false true 2 const TexturedPoint2D * [] } +&{vertexDataPattern QSGGeometry::vertexDataPattern commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h non plain false false DataPattern [] } +&{~QSGGeometry QSGGeometry::~QSGGeometry commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{DataPattern QSGGeometry::DataPattern commendable public [0xc8226cf4a0 0xc8226cf620 0xc8226cf6c0 0xc8226cf760]} diff --git a/internal/binding/dump/QtQuick/QSGGeometryNode.txt b/internal/binding/dump/QtQuick/QSGGeometryNode.txt new file mode 100755 index 00000000..c1210b15 --- /dev/null +++ b/internal/binding/dump/QtQuick/QSGGeometryNode.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{QSGGeometryNode QSGGeometryNode::QSGGeometryNode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non constructor false false [] } +&{material QSGGeometryNode::material commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false QSGMaterial * [] } +&{opaqueMaterial QSGGeometryNode::opaqueMaterial commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false QSGMaterial * [] } +&{setMaterial QSGGeometryNode::setMaterial commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false void [0xc821bcd4e0] } +&{setOpaqueMaterial QSGGeometryNode::setOpaqueMaterial commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false void [0xc821bcd800] } +&{~QSGGeometryNode QSGGeometryNode::~QSGGeometryNode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQuick/QSGMaterial.txt b/internal/binding/dump/QtQuick/QSGMaterial.txt new file mode 100755 index 00000000..1056ee5b --- /dev/null +++ b/internal/binding/dump/QtQuick/QSGMaterial.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{compare QSGMaterial::compare commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgmaterial.h impure plain false false int [0xc821c16a80] } +&{createShader QSGMaterial::createShader commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgmaterial.h pure plain false false QSGMaterialShader * [] } +&{flags QSGMaterial::flags commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgmaterial.h non plain false false QSGMaterial::Flags [] } +&{setFlag QSGMaterial::setFlag commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgmaterial.h non plain false false void [0xc821c179a0 0xc821c17b20] } +&{type QSGMaterial::type commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgmaterial.h pure plain false false QSGMaterialType * [] } +######################################## ENUMS ######################################## +&{Flag QSGMaterial::Flag commendable public QSGMaterial::Flags [0xc821c29600 0xc821c297a0 0xc821c29a20 0xc821c29c40 0xc821c29f00]} diff --git a/internal/binding/dump/QtQuick/QSGMaterialShader.txt b/internal/binding/dump/QtQuick/QSGMaterialShader.txt new file mode 100755 index 00000000..075ff181 --- /dev/null +++ b/internal/binding/dump/QtQuick/QSGMaterialShader.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QSGMaterialShader QSGMaterialShader::QSGMaterialShader commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgmaterial.cpp non constructor false true 2 [0xc821bfe9e0] } +&{fragmentShader QSGMaterialShader::fragmentShader commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgmaterial.cpp impure plain false false const char * [] } +&{vertexShader QSGMaterialShader::vertexShader commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgmaterial.cpp impure plain false false const char * [] } +&{QSGMaterialShader QSGMaterialShader::QSGMaterialShader commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgmaterial.h non constructor false false [] } +&{activate QSGMaterialShader::activate commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgmaterial.h impure plain false false void [] } +&{attributeNames QSGMaterialShader::attributeNames commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgmaterial.h pure plain false false char const * const * [] } +&{compile QSGMaterialShader::compile commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgmaterial.h impure plain false false void [] } +&{deactivate QSGMaterialShader::deactivate commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgmaterial.h impure plain false false void [] } +&{initialize QSGMaterialShader::initialize commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgmaterial.h impure plain false false void [] } +&{program QSGMaterialShader::program commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgmaterial.h non plain false false QOpenGLShaderProgram * [] } +&{setShaderSourceFile QSGMaterialShader::setShaderSourceFile commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgmaterial.h non plain false false void [0xc821bf3c60 0xc821bf3ea0] } +&{setShaderSourceFiles QSGMaterialShader::setShaderSourceFiles commendable protected /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgmaterial.h non plain false false void [0xc821be0480 0xc821be0620] } +&{updateState QSGMaterialShader::updateState commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgmaterial.h impure plain false false void [0xc821be0d00 0xc821be0f40 0xc821be1060] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQuick/QSGMaterialType.txt b/internal/binding/dump/QtQuick/QSGMaterialType.txt new file mode 100755 index 00000000..72799661 --- /dev/null +++ b/internal/binding/dump/QtQuick/QSGMaterialType.txt @@ -0,0 +1,2 @@ +######################################## FUNCTIONS ######################################## +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQuick/QSGNode.txt b/internal/binding/dump/QtQuick/QSGNode.txt new file mode 100755 index 00000000..3b15d478 --- /dev/null +++ b/internal/binding/dump/QtQuick/QSGNode.txt @@ -0,0 +1,27 @@ +######################################## FUNCTIONS ######################################## +&{childAtIndex QSGNode::childAtIndex commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.cpp non plain false false QSGNode * [0xc821bc68a0] } +&{childCount QSGNode::childCount commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.cpp non plain false false int [] } +&{QSGNode QSGNode::QSGNode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non constructor false false [] } +&{appendChildNode QSGNode::appendChildNode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false void [0xc821bbfc00] } +&{firstChild QSGNode::firstChild commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false QSGNode * [] } +&{flags QSGNode::flags commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false Flags [] } +&{insertChildNodeAfter QSGNode::insertChildNodeAfter commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false void [0xc821baea60 0xc821baeb60] } +&{insertChildNodeBefore QSGNode::insertChildNodeBefore commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false void [0xc821baee00 0xc821baef20] } +&{isSubtreeBlocked QSGNode::isSubtreeBlocked commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h impure plain false false bool [] } +&{lastChild QSGNode::lastChild commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false QSGNode * [] } +&{markDirty QSGNode::markDirty commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false void [0xc821baf5e0] } +&{nextSibling QSGNode::nextSibling commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false QSGNode * [] } +&{parent QSGNode::parent commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false QSGNode * [] } +&{prependChildNode QSGNode::prependChildNode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false void [0xc821bafbc0] } +&{preprocess QSGNode::preprocess commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h impure plain false false void [] } +&{previousSibling QSGNode::previousSibling commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false QSGNode * [] } +&{removeAllChildNodes QSGNode::removeAllChildNodes commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false void [] } +&{removeChildNode QSGNode::removeChildNode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false void [0xc821bac8c0] } +&{setFlag QSGNode::setFlag commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false void [0xc821bad300 0xc821bad4a0] } +&{setFlags QSGNode::setFlags commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false void [0xc821badb20 0xc821badde0] } +&{type QSGNode::type commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false NodeType [] } +&{~QSGNode QSGNode::~QSGNode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{DirtyStateBit QSGNode::DirtyStateBit commendable public QSGNode::DirtyState [0xc821bc6de0 0xc821bc6f60 0xc821bc6fe0 0xc821bc70a0 0xc821bc71c0 0xc821bc7280 0xc821bc7300]} +&{Flag QSGNode::Flag commendable public QSGNode::Flags [0xc821bc7520 0xc821bc75e0 0xc821bc76a0 0xc821bc7740 0xc821bc78a0 0xc821bc79c0]} +&{NodeType QSGNode::NodeType commendable public [0xc821bc7ca0 0xc821bc7d80 0xc821bc7e40 0xc821bc7f80 0xc821bbe200]} diff --git a/internal/binding/dump/QtQuick/QSGOpacityNode.txt b/internal/binding/dump/QtQuick/QSGOpacityNode.txt new file mode 100755 index 00000000..78e358bb --- /dev/null +++ b/internal/binding/dump/QtQuick/QSGOpacityNode.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QSGOpacityNode QSGOpacityNode::QSGOpacityNode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non constructor false false [] } +&{opacity QSGOpacityNode::opacity commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false qreal [] } +&{setOpacity QSGOpacityNode::setOpacity commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false void [0xc821ba6da0] } +&{~QSGOpacityNode QSGOpacityNode::~QSGOpacityNode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQuick/QSGOpaqueTextureMaterial.txt b/internal/binding/dump/QtQuick/QSGOpaqueTextureMaterial.txt new file mode 100755 index 00000000..e734f48d --- /dev/null +++ b/internal/binding/dump/QtQuick/QSGOpaqueTextureMaterial.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QSGOpaqueTextureMaterial QSGOpaqueTextureMaterial::QSGOpaqueTextureMaterial commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexturematerial.h non constructor false false [] } +&{filtering QSGOpaqueTextureMaterial::filtering commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexturematerial.h non plain false false QSGTexture::Filtering [] } +&{horizontalWrapMode QSGOpaqueTextureMaterial::horizontalWrapMode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexturematerial.h non plain false false QSGTexture::WrapMode [] } +&{mipmapFiltering QSGOpaqueTextureMaterial::mipmapFiltering commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexturematerial.h non plain false false QSGTexture::Filtering [] } +&{setFiltering QSGOpaqueTextureMaterial::setFiltering commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexturematerial.h non plain false false void [0xc822449ca0] } +&{setHorizontalWrapMode QSGOpaqueTextureMaterial::setHorizontalWrapMode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexturematerial.h non plain false false void [0xc821b3a020] } +&{setMipmapFiltering QSGOpaqueTextureMaterial::setMipmapFiltering commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexturematerial.h non plain false false void [0xc821b3a660] } +&{setTexture QSGOpaqueTextureMaterial::setTexture commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexturematerial.h non plain false false void [0xc821b3aa60] } +&{setVerticalWrapMode QSGOpaqueTextureMaterial::setVerticalWrapMode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexturematerial.h non plain false false void [0xc821b3b0e0] } +&{texture QSGOpaqueTextureMaterial::texture commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexturematerial.h non plain false false QSGTexture * [] } +&{verticalWrapMode QSGOpaqueTextureMaterial::verticalWrapMode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexturematerial.h non plain false false QSGTexture::WrapMode [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQuick/QSGSimpleMaterial.txt b/internal/binding/dump/QtQuick/QSGSimpleMaterial.txt new file mode 100755 index 00000000..72799661 --- /dev/null +++ b/internal/binding/dump/QtQuick/QSGSimpleMaterial.txt @@ -0,0 +1,2 @@ +######################################## FUNCTIONS ######################################## +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQuick/QSGSimpleMaterialShader.txt b/internal/binding/dump/QtQuick/QSGSimpleMaterialShader.txt new file mode 100755 index 00000000..9b04f704 --- /dev/null +++ b/internal/binding/dump/QtQuick/QSGSimpleMaterialShader.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{attributes QSGSimpleMaterialShader::attributes commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimplematerial.h pure plain false false QList [] } +&{resolveUniforms QSGSimpleMaterialShader::resolveUniforms commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimplematerial.h impure plain false false void [] } +&{uniformMatrixName QSGSimpleMaterialShader::uniformMatrixName commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimplematerial.h non plain false false const char * [] } +&{uniformOpacityName QSGSimpleMaterialShader::uniformOpacityName commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimplematerial.h non plain false false const char * [] } +&{updateState QSGSimpleMaterialShader::updateState commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimplematerial.h pure plain false false void [0xc821b8a880 0xc821b8a900] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQuick/QSGSimpleRectNode.txt b/internal/binding/dump/QtQuick/QSGSimpleRectNode.txt new file mode 100755 index 00000000..74058b4e --- /dev/null +++ b/internal/binding/dump/QtQuick/QSGSimpleRectNode.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QSGSimpleRectNode QSGSimpleRectNode::QSGSimpleRectNode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimplerectnode.h non constructor false true 2 [] } +&{QSGSimpleRectNode QSGSimpleRectNode::QSGSimpleRectNode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimplerectnode.h non constructor false false [0xc821b8b100 0xc821b8b180] } +&{color QSGSimpleRectNode::color commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimplerectnode.h non plain false false QColor [] } +&{rect QSGSimpleRectNode::rect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimplerectnode.h non plain false false QRectF [] } +&{setColor QSGSimpleRectNode::setColor commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimplerectnode.h non plain false false void [0xc821b8b5c0] } +&{setRect QSGSimpleRectNode::setRect commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimplerectnode.h non plain false false void [0xc821b8b7c0] } +&{setRect QSGSimpleRectNode::setRect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimplerectnode.h non plain false true 2 void [0xc821b8b9a0 0xc821b8ba20 0xc821b8baa0 0xc821b8bb20] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQuick/QSGSimpleTextureNode.txt b/internal/binding/dump/QtQuick/QSGSimpleTextureNode.txt new file mode 100755 index 00000000..f57b3829 --- /dev/null +++ b/internal/binding/dump/QtQuick/QSGSimpleTextureNode.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{QSGSimpleTextureNode QSGSimpleTextureNode::QSGSimpleTextureNode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimpletexturenode.h non constructor false false [] } +&{filtering QSGSimpleTextureNode::filtering commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimpletexturenode.h non plain false false QSGTexture::Filtering [] } +&{ownsTexture QSGSimpleTextureNode::ownsTexture commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimpletexturenode.h non plain false false bool [] } +&{rect QSGSimpleTextureNode::rect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimpletexturenode.h non plain false false QRectF [] } +&{setFiltering QSGSimpleTextureNode::setFiltering commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimpletexturenode.h non plain false false void [0xc821b83760] } +&{setOwnsTexture QSGSimpleTextureNode::setOwnsTexture commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimpletexturenode.h non plain false false void [0xc821b83d40] } +&{setRect QSGSimpleTextureNode::setRect commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimpletexturenode.h non plain false false void [0xc821b6e1c0] } +&{setRect QSGSimpleTextureNode::setRect commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimpletexturenode.h non plain false true 2 void [0xc821b6e520 0xc821b6e6a0 0xc821b6e740 0xc821b6e880] } +&{setSourceRect QSGSimpleTextureNode::setSourceRect commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimpletexturenode.h non plain false false void [0xc821b6eb40] } +&{setSourceRect QSGSimpleTextureNode::setSourceRect commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimpletexturenode.h non plain false true 2 void [0xc821b6ede0 0xc821b6ef00 0xc821b6f060 0xc821b6f120] } +&{setTexture QSGSimpleTextureNode::setTexture commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimpletexturenode.h non plain false false void [0xc821b6f4e0] } +&{setTextureCoordinatesTransform QSGSimpleTextureNode::setTextureCoordinatesTransform commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimpletexturenode.h non plain false false void [0xc821b6f8a0] } +&{sourceRect QSGSimpleTextureNode::sourceRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimpletexturenode.h non plain false false QRectF [] } +&{texture QSGSimpleTextureNode::texture commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimpletexturenode.h non plain false false QSGTexture * [] } +&{textureCoordinatesTransform QSGSimpleTextureNode::textureCoordinatesTransform commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimpletexturenode.h non plain false false TextureCoordinatesTransformMode [] } +&{~QSGSimpleTextureNode QSGSimpleTextureNode::~QSGSimpleTextureNode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgsimpletexturenode.h non destructor false false [] } +######################################## ENUMS ######################################## +&{TextureCoordinatesTransformFlag QSGSimpleTextureNode::TextureCoordinatesTransformFlag commendable public QSGSimpleTextureNode::TextureCoordinatesTransformMode [0xc821b8be40 0xc821b8bee0 0xc821b8bfa0]} diff --git a/internal/binding/dump/QtQuick/QSGTexture.txt b/internal/binding/dump/QtQuick/QSGTexture.txt new file mode 100755 index 00000000..d3c7c547 --- /dev/null +++ b/internal/binding/dump/QtQuick/QSGTexture.txt @@ -0,0 +1,24 @@ +######################################## FUNCTIONS ######################################## +&{QSGTexture QSGTexture::QSGTexture commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexture.h non constructor false false [] } +&{bind QSGTexture::bind commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexture.h pure plain false false void [] } +&{convertToNormalizedSourceRect QSGTexture::convertToNormalizedSourceRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexture.h non plain false false QRectF [0xc821b50520] } +&{filtering QSGTexture::filtering commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexture.h non plain false false QSGTexture::Filtering [] } +&{hasAlphaChannel QSGTexture::hasAlphaChannel commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexture.h pure plain false false bool [] } +&{hasMipmaps QSGTexture::hasMipmaps commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexture.h pure plain false false bool [] } +&{horizontalWrapMode QSGTexture::horizontalWrapMode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexture.h non plain false false QSGTexture::WrapMode [] } +&{isAtlasTexture QSGTexture::isAtlasTexture commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexture.h impure plain false false bool [] } +&{mipmapFiltering QSGTexture::mipmapFiltering commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexture.h non plain false false QSGTexture::Filtering [] } +&{normalizedTextureSubRect QSGTexture::normalizedTextureSubRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexture.h impure plain false false QRectF [] } +&{removedFromAtlas QSGTexture::removedFromAtlas commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexture.h impure plain false false QSGTexture * [] } +&{setFiltering QSGTexture::setFiltering commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexture.h non plain false false void [0xc821b51ee0] } +&{setHorizontalWrapMode QSGTexture::setHorizontalWrapMode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexture.h non plain false false void [0xc8224481c0] } +&{setMipmapFiltering QSGTexture::setMipmapFiltering commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexture.h non plain false false void [0xc8224484c0] } +&{setVerticalWrapMode QSGTexture::setVerticalWrapMode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexture.h non plain false false void [0xc8224487c0] } +&{textureId QSGTexture::textureId commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexture.h pure plain false false int [] } +&{textureSize QSGTexture::textureSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexture.h pure plain false false QSize [] } +&{updateBindOptions QSGTexture::updateBindOptions commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexture.h non plain false false void [0xc822448e00] } +&{verticalWrapMode QSGTexture::verticalWrapMode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexture.h non plain false false QSGTexture::WrapMode [] } +&{~QSGTexture QSGTexture::~QSGTexture commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtexture.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Filtering QSGTexture::Filtering commendable public [0xc821b5ef20 0xc821b5f060 0xc821b5f1c0]} +&{WrapMode QSGTexture::WrapMode commendable public [0xc821b5f600 0xc821b5f720]} diff --git a/internal/binding/dump/QtQuick/QSGTextureMaterial.txt b/internal/binding/dump/QtQuick/QSGTextureMaterial.txt new file mode 100755 index 00000000..72799661 --- /dev/null +++ b/internal/binding/dump/QtQuick/QSGTextureMaterial.txt @@ -0,0 +1,2 @@ +######################################## FUNCTIONS ######################################## +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQuick/QSGTextureProvider.txt b/internal/binding/dump/QtQuick/QSGTextureProvider.txt new file mode 100755 index 00000000..cdfb9c78 --- /dev/null +++ b/internal/binding/dump/QtQuick/QSGTextureProvider.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{texture QSGTextureProvider::texture commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtextureprovider.h pure plain false false QSGTexture * [] } +&{textureChanged QSGTextureProvider::textureChanged commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgtextureprovider.h non signal false false void [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQuick/QSGTransformNode.txt b/internal/binding/dump/QtQuick/QSGTransformNode.txt new file mode 100755 index 00000000..90726fd2 --- /dev/null +++ b/internal/binding/dump/QtQuick/QSGTransformNode.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QSGTransformNode QSGTransformNode::QSGTransformNode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non constructor false false [] } +&{matrix QSGTransformNode::matrix commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false const QMatrix4x4 & [] } +&{setMatrix QSGTransformNode::setMatrix commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non plain false false void [0xc821ba7a20] } +&{~QSGTransformNode QSGTransformNode::~QSGTransformNode commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/coreapi/qsgnode.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtQuick/QSGVertexColorMaterial.txt b/internal/binding/dump/QtQuick/QSGVertexColorMaterial.txt new file mode 100755 index 00000000..2d5e3be5 --- /dev/null +++ b/internal/binding/dump/QtQuick/QSGVertexColorMaterial.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{QSGVertexColorMaterial QSGVertexColorMaterial::QSGVertexColorMaterial commendable public /work/build/qt5_workdir/w/s/qtdeclarative/src/quick/scenegraph/util/qsgvertexcolormaterial.h non constructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtScript/QScriptClass.txt b/internal/binding/dump/QtScript/QScriptClass.txt new file mode 100755 index 00000000..1dc998f7 --- /dev/null +++ b/internal/binding/dump/QtScript/QScriptClass.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{QScriptClass QScriptClass::QScriptClass commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptclass.h non constructor false false [0xc822c47ce0] } +&{engine QScriptClass::engine commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptclass.h non plain false false QScriptEngine * [] } +&{extension QScriptClass::extension commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptclass.h impure plain false false QVariant [0xc822c56460 0xc822c564e0] } +&{name QScriptClass::name commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptclass.h impure plain false false QString [] } +&{newIterator QScriptClass::newIterator commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptclass.h impure plain false false QScriptClassPropertyIterator * [0xc822c569a0] } +&{property QScriptClass::property commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptclass.h impure plain false false QScriptValue [0xc822c56c20 0xc822c56d80 0xc822c56e40] } +&{propertyFlags QScriptClass::propertyFlags commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptclass.h impure plain false false QScriptValue::PropertyFlags [0xc822c57120 0xc822c57240 0xc822c57360] } +&{prototype QScriptClass::prototype commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptclass.h impure plain false false QScriptValue [] } +&{queryProperty QScriptClass::queryProperty commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptclass.h impure plain false false QueryFlags [0xc822c576c0 0xc822c577a0 0xc822c57860 0xc822c57900] } +&{setProperty QScriptClass::setProperty commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptclass.h impure plain false false void [0xc822c57b40 0xc822c57c00 0xc822c57ce0 0xc822c57de0] } +&{supportsExtension QScriptClass::supportsExtension commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptclass.h impure plain false false bool [0xc822c860c0] } +&{~QScriptClass QScriptClass::~QScriptClass commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptclass.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{Extension QScriptClass::Extension commendable public [0xc822c47480 0xc822c47500]} +&{QueryFlag QScriptClass::QueryFlag commendable public QScriptClass::QueryFlags [0xc822c477e0 0xc822c47920]} diff --git a/internal/binding/dump/QtScript/QScriptClassPropertyIterator.txt b/internal/binding/dump/QtScript/QScriptClassPropertyIterator.txt new file mode 100755 index 00000000..15d0d502 --- /dev/null +++ b/internal/binding/dump/QtScript/QScriptClassPropertyIterator.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{id QScriptClassPropertyIterator::id commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptclasspropertyiterator.cpp impure plain false false uint [] } +&{QScriptClassPropertyIterator QScriptClassPropertyIterator::QScriptClassPropertyIterator commendable protected /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptclasspropertyiterator.h non constructor false false [0xc822c86640] } +&{flags QScriptClassPropertyIterator::flags commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptclasspropertyiterator.h impure plain false false QScriptValue::PropertyFlags [] } +&{hasNext QScriptClassPropertyIterator::hasNext commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptclasspropertyiterator.h pure plain false false bool [] } +&{hasPrevious QScriptClassPropertyIterator::hasPrevious commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptclasspropertyiterator.h pure plain false false bool [] } +&{name QScriptClassPropertyIterator::name commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptclasspropertyiterator.h pure plain false false QScriptString [] } +&{next QScriptClassPropertyIterator::next commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptclasspropertyiterator.h pure plain false false void [] } +&{object QScriptClassPropertyIterator::object commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptclasspropertyiterator.h non plain false false QScriptValue [] } +&{previous QScriptClassPropertyIterator::previous commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptclasspropertyiterator.h pure plain false false void [] } +&{toBack QScriptClassPropertyIterator::toBack commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptclasspropertyiterator.h pure plain false false void [] } +&{toFront QScriptClassPropertyIterator::toFront commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptclasspropertyiterator.h pure plain false false void [] } +&{~QScriptClassPropertyIterator QScriptClassPropertyIterator::~QScriptClassPropertyIterator commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptclasspropertyiterator.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtScript/QScriptContext.txt b/internal/binding/dump/QtScript/QScriptContext.txt new file mode 100755 index 00000000..aa28e3c4 --- /dev/null +++ b/internal/binding/dump/QtScript/QScriptContext.txt @@ -0,0 +1,22 @@ +######################################## FUNCTIONS ######################################## +&{activationObject QScriptContext::activationObject commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontext.h non plain false false QScriptValue [] } +&{argument QScriptContext::argument commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontext.h non plain false false QScriptValue [0xc822c87c60] } +&{argumentCount QScriptContext::argumentCount commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontext.h non plain false false int [] } +&{argumentsObject QScriptContext::argumentsObject commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontext.h non plain false false QScriptValue [] } +&{backtrace QScriptContext::backtrace commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontext.h non plain false false QStringList [] } +&{callee QScriptContext::callee commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontext.h non plain false false QScriptValue [] } +&{engine QScriptContext::engine commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontext.h non plain false false QScriptEngine * [] } +&{isCalledAsConstructor QScriptContext::isCalledAsConstructor commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontext.h non plain false false bool [] } +&{parentContext QScriptContext::parentContext commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontext.h non plain false false QScriptContext * [] } +&{setActivationObject QScriptContext::setActivationObject commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontext.h non plain false false void [0xc822caaba0] } +&{setThisObject QScriptContext::setThisObject commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontext.h non plain false false void [0xc822caadc0] } +&{state QScriptContext::state commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontext.h non plain false false ExecutionState [] } +&{thisObject QScriptContext::thisObject commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontext.h non plain false false QScriptValue [] } +&{throwError QScriptContext::throwError commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontext.h non plain false false QScriptValue [0xc822cab2c0 0xc822cab340] } +&{throwError QScriptContext::throwError commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontext.h non plain false true 2 QScriptValue [0xc822cab500] } +&{throwValue QScriptContext::throwValue commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontext.h non plain false false QScriptValue [0xc822cab6e0] } +&{toString QScriptContext::toString commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontext.h non plain false false QString [] } +&{~QScriptContext QScriptContext::~QScriptContext commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontext.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Error QScriptContext::Error commendable public [0xc822c87420 0xc822c874a0 0xc822c87520 0xc822c875a0 0xc822c87640 0xc822c876c0]} +&{ExecutionState QScriptContext::ExecutionState commendable public [0xc822c87860 0xc822c878e0]} diff --git a/internal/binding/dump/QtScript/QScriptContextInfo.txt b/internal/binding/dump/QtScript/QScriptContextInfo.txt new file mode 100755 index 00000000..65a39a08 --- /dev/null +++ b/internal/binding/dump/QtScript/QScriptContextInfo.txt @@ -0,0 +1,20 @@ +######################################## FUNCTIONS ######################################## +&{QScriptContextInfo QScriptContextInfo::QScriptContextInfo commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontextinfo.h non constructor false true 3 [] } +&{QScriptContextInfo QScriptContextInfo::QScriptContextInfo commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontextinfo.h non constructor false false [0xc822cbc5c0] } +&{QScriptContextInfo QScriptContextInfo::QScriptContextInfo commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontextinfo.h non constructor false true 2 [0xc822cbc7e0] } +&{fileName QScriptContextInfo::fileName commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontextinfo.h non plain false false QString [] } +&{functionEndLineNumber QScriptContextInfo::functionEndLineNumber commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontextinfo.h non plain false false int [] } +&{functionMetaIndex QScriptContextInfo::functionMetaIndex commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontextinfo.h non plain false false int [] } +&{functionName QScriptContextInfo::functionName commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontextinfo.h non plain false false QString [] } +&{functionParameterNames QScriptContextInfo::functionParameterNames commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontextinfo.h non plain false false QStringList [] } +&{functionStartLineNumber QScriptContextInfo::functionStartLineNumber commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontextinfo.h non plain false false int [] } +&{functionType QScriptContextInfo::functionType commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontextinfo.h non plain false false FunctionType [] } +&{isNull QScriptContextInfo::isNull commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontextinfo.h non plain false false bool [] } +&{lineNumber QScriptContextInfo::lineNumber commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontextinfo.h non plain false false int [] } +&{operator!= QScriptContextInfo::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontextinfo.h non plain false false bool [0xc822cbd400] } +&{operator= QScriptContextInfo::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontextinfo.h non plain false false QScriptContextInfo & [0xc822cbd680] } +&{operator== QScriptContextInfo::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontextinfo.h non plain false false bool [0xc822cbd8a0] } +&{scriptId QScriptContextInfo::scriptId commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontextinfo.h non plain false false qint64 [] } +&{~QScriptContextInfo QScriptContextInfo::~QScriptContextInfo commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptcontextinfo.h non destructor false false [] } +######################################## ENUMS ######################################## +&{FunctionType QScriptContextInfo::FunctionType commendable public [0xc822cbc020 0xc822cbc0a0 0xc822cbc140 0xc822cbc200]} diff --git a/internal/binding/dump/QtScript/QScriptEngine.txt b/internal/binding/dump/QtScript/QScriptEngine.txt new file mode 100755 index 00000000..c41c5f27 --- /dev/null +++ b/internal/binding/dump/QtScript/QScriptEngine.txt @@ -0,0 +1,56 @@ +######################################## FUNCTIONS ######################################## +&{QScriptEngine QScriptEngine::QScriptEngine commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non constructor false false [] } +&{QScriptEngine QScriptEngine::QScriptEngine commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non constructor false true 2 [0xc822ce1b20] } +&{abortEvaluation QScriptEngine::abortEvaluation commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false void [0xc822cf1ec0] } +&{agent QScriptEngine::agent commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false QScriptEngineAgent * [] } +&{availableExtensions QScriptEngine::availableExtensions commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false QStringList [] } +&{checkSyntax QScriptEngine::checkSyntax commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain true false QScriptSyntaxCheckResult [0xc8222aa620] } +&{clearExceptions QScriptEngine::clearExceptions commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false void [] } +&{collectGarbage QScriptEngine::collectGarbage commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false void [] } +&{currentContext QScriptEngine::currentContext commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false QScriptContext * [] } +&{defaultPrototype QScriptEngine::defaultPrototype commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false QScriptValue [0xc8222aac20] } +&{evaluate QScriptEngine::evaluate commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false true 2 QScriptValue [0xc8222aaec0] } +&{evaluate QScriptEngine::evaluate commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false QScriptValue [0xc8222ab180 0xc8222ab240 0xc8222ab2c0] } +&{fromScriptValue QScriptEngine::fromScriptValue commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false T [0xc8222ab540] } +&{globalObject QScriptEngine::globalObject commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false QScriptValue [] } +&{hasUncaughtException QScriptEngine::hasUncaughtException commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false bool [] } +&{importExtension QScriptEngine::importExtension commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false QScriptValue [0xc8222aba40] } +&{importedExtensions QScriptEngine::importedExtensions commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false QStringList [] } +&{installTranslatorFunctions QScriptEngine::installTranslatorFunctions commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false void [0xc8222abda0] } +&{isEvaluating QScriptEngine::isEvaluating commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false bool [] } +&{newArray QScriptEngine::newArray commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false QScriptValue [0xc8222b4280] } +&{newDate QScriptEngine::newDate commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false true 2 QScriptValue [0xc8222b45e0] } +&{newDate QScriptEngine::newDate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false QScriptValue [0xc8222b4920] } +&{newFunction QScriptEngine::newFunction commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false true 2 QScriptValue [0xc8222b4c80 0xc8222b4e20 0xc8222b4f20] } +&{newFunction QScriptEngine::newFunction commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false QScriptValue [0xc8222b51a0 0xc8222b52a0] } +&{newObject QScriptEngine::newObject commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false QScriptValue [] } +&{newObject QScriptEngine::newObject commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false true 2 QScriptValue [0xc8222b5700 0xc8222b57e0] } +&{newQMetaObject QScriptEngine::newQMetaObject commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false QScriptValue [0xc8222b5ae0 0xc8222b5c00] } +&{newQObject QScriptEngine::newQObject commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false QScriptValue [0xc8222b5e80 0xc8222b5f00 0xc8222b5fe0] } +&{newQObject QScriptEngine::newQObject commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false true 2 QScriptValue [0xc8222c8240 0xc8222c8360 0xc8222c8400 0xc8222c84c0] } +&{newRegExp QScriptEngine::newRegExp commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false QScriptValue [0xc8222c8740] } +&{newRegExp QScriptEngine::newRegExp commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false true 2 QScriptValue [0xc8222c8960 0xc8222c8a00] } +&{newVariant QScriptEngine::newVariant commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false true 2 QScriptValue [0xc8222c8c60 0xc8222c8d60] } +&{newVariant QScriptEngine::newVariant commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false QScriptValue [0xc8222c8fa0] } +&{nullValue QScriptEngine::nullValue commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false QScriptValue [] } +&{popContext QScriptEngine::popContext commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false void [] } +&{processEventsInterval QScriptEngine::processEventsInterval commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false int [] } +&{pushContext QScriptEngine::pushContext commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false QScriptContext * [] } +&{reportAdditionalMemoryCost QScriptEngine::reportAdditionalMemoryCost commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false void [0xc8222c96c0] } +&{scriptValueFromQMetaObject QScriptEngine::scriptValueFromQMetaObject commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false QScriptValue [] } +&{setAgent QScriptEngine::setAgent commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false void [0xc8222c9a20] } +&{setDefaultPrototype QScriptEngine::setDefaultPrototype commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false void [0xc8222c9ca0 0xc8222c9d60] } +&{setGlobalObject QScriptEngine::setGlobalObject commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false void [0xc8222c9fe0] } +&{setProcessEventsInterval QScriptEngine::setProcessEventsInterval commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false void [0xc8222da260] } +&{signalHandlerException QScriptEngine::signalHandlerException commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non signal false false void [0xc8222da4c0] } +&{toObject QScriptEngine::toObject commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false QScriptValue [0xc8222da760] } +&{toScriptValue QScriptEngine::toScriptValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false QScriptValue [0xc8222da9e0] } +&{toStringHandle QScriptEngine::toStringHandle commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false QScriptString [0xc8222dac40] } +&{uncaughtException QScriptEngine::uncaughtException commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false QScriptValue [] } +&{uncaughtExceptionBacktrace QScriptEngine::uncaughtExceptionBacktrace commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false QStringList [] } +&{uncaughtExceptionLineNumber QScriptEngine::uncaughtExceptionLineNumber commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false int [] } +&{undefinedValue QScriptEngine::undefinedValue commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false QScriptValue [] } +&{~QScriptEngine QScriptEngine::~QScriptEngine commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{QObjectWrapOption QScriptEngine::QObjectWrapOption commendable public QScriptEngine::QObjectWrapOptions [0xc822ce07e0 0xc822ce0900 0xc822ce09e0 0xc822ce0b60 0xc822ce0c60 0xc822ce0dc0 0xc822ce0ea0 0xc822ce0f60 0xc822ce10a0]} +&{ValueOwnership QScriptEngine::ValueOwnership commendable public [0xc822ce1300 0xc822ce13c0 0xc822ce1480]} diff --git a/internal/binding/dump/QtScript/QScriptEngineAgent.txt b/internal/binding/dump/QtScript/QScriptEngineAgent.txt new file mode 100755 index 00000000..3c94ae38 --- /dev/null +++ b/internal/binding/dump/QtScript/QScriptEngineAgent.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{QScriptEngineAgent QScriptEngineAgent::QScriptEngineAgent commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengineagent.h non constructor false false [0xc821bccf20] } +&{contextPop QScriptEngineAgent::contextPop commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengineagent.h impure plain false false void [] } +&{contextPush QScriptEngineAgent::contextPush commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengineagent.h impure plain false false void [] } +&{engine QScriptEngineAgent::engine commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengineagent.h non plain false false QScriptEngine * [] } +&{exceptionCatch QScriptEngineAgent::exceptionCatch commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengineagent.h impure plain false false void [0xc821bcd6c0 0xc821bcd760] } +&{exceptionThrow QScriptEngineAgent::exceptionThrow commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengineagent.h impure plain false false void [0xc821bcd900 0xc821bcd9a0 0xc821bcda60] } +&{extension QScriptEngineAgent::extension commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengineagent.h impure plain false false QVariant [0xc821bcdc20 0xc821bcdca0] } +&{functionEntry QScriptEngineAgent::functionEntry commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengineagent.h impure plain false false void [0xc821bcde20] } +&{functionExit QScriptEngineAgent::functionExit commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengineagent.h impure plain false false void [0xc821bcdfe0 0xc821bc6080] } +&{positionChange QScriptEngineAgent::positionChange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengineagent.h impure plain false false void [0xc821bc6220 0xc821bc62a0 0xc821bc6320] } +&{scriptLoad QScriptEngineAgent::scriptLoad commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengineagent.h impure plain false false void [0xc821bc6500 0xc821bc6580 0xc821bc6600 0xc821bc6680] } +&{scriptUnload QScriptEngineAgent::scriptUnload commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengineagent.h impure plain false false void [0xc821bc6860] } +&{supportsExtension QScriptEngineAgent::supportsExtension commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengineagent.h impure plain false false bool [0xc821bc6a20] } +&{~QScriptEngineAgent QScriptEngineAgent::~QScriptEngineAgent commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengineagent.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{Extension QScriptEngineAgent::Extension commendable public [0xc821bccce0]} diff --git a/internal/binding/dump/QtScript/QScriptExtensionPlugin.txt b/internal/binding/dump/QtScript/QScriptExtensionPlugin.txt new file mode 100755 index 00000000..7d231af7 --- /dev/null +++ b/internal/binding/dump/QtScript/QScriptExtensionPlugin.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{QScriptExtensionPlugin QScriptExtensionPlugin::QScriptExtensionPlugin commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptextensionplugin.h non constructor false false [0xc821bc6ee0] } +&{initialize QScriptExtensionPlugin::initialize commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptextensionplugin.h pure plain false false void [0xc821bc7040 0xc821bc70c0] } +&{keys QScriptExtensionPlugin::keys commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptextensionplugin.h pure plain false false QStringList [] } +&{setupPackage QScriptExtensionPlugin::setupPackage commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptextensionplugin.h non plain false false QScriptValue [0xc821bc7380 0xc821bc7400] } +&{~QScriptExtensionPlugin QScriptExtensionPlugin::~QScriptExtensionPlugin commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptextensionplugin.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtScript/QScriptProgram.txt b/internal/binding/dump/QtScript/QScriptProgram.txt new file mode 100755 index 00000000..df3c0381 --- /dev/null +++ b/internal/binding/dump/QtScript/QScriptProgram.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QScriptProgram QScriptProgram::QScriptProgram commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptprogram.h non constructor false false [] } +&{QScriptProgram QScriptProgram::QScriptProgram commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptprogram.h non constructor false true 3 [0xc821bc78e0] } +&{QScriptProgram QScriptProgram::QScriptProgram commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptprogram.h non constructor false true 2 [0xc821bc7ac0 0xc821bc7b40 0xc821bc7bc0] } +&{fileName QScriptProgram::fileName commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptprogram.h non plain false false QString [] } +&{firstLineNumber QScriptProgram::firstLineNumber commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptprogram.h non plain false false int [] } +&{isNull QScriptProgram::isNull commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptprogram.h non plain false false bool [] } +&{operator!= QScriptProgram::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptprogram.h non plain false false bool [0xc821bbe100] } +&{operator= QScriptProgram::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptprogram.h non plain false false QScriptProgram & [0xc821bbe520] } +&{operator== QScriptProgram::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptprogram.h non plain false false bool [0xc821bbe940] } +&{sourceCode QScriptProgram::sourceCode commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptprogram.h non plain false false QString [] } +&{~QScriptProgram QScriptProgram::~QScriptProgram commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptprogram.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtScript/QScriptString.txt b/internal/binding/dump/QtScript/QScriptString.txt new file mode 100755 index 00000000..494cbd8b --- /dev/null +++ b/internal/binding/dump/QtScript/QScriptString.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{QScriptString QScriptString::QScriptString commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptstring.h non constructor false false [] } +&{QScriptString QScriptString::QScriptString commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptstring.h non constructor false true 2 [0xc821bbf480] } +&{isValid QScriptString::isValid commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptstring.h non plain false false bool [] } +&{operator QString QScriptString::operator QString commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptstring.h non plain false false [] } +&{operator!= QScriptString::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptstring.h non plain false false bool [0xc821bbfcc0] } +&{operator= QScriptString::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptstring.h non plain false false QScriptString & [0xc821bae080] } +&{operator== QScriptString::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptstring.h non plain false false bool [0xc821bae2a0] } +&{toArrayIndex QScriptString::toArrayIndex commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptstring.h non plain false false quint32 [0xc821bae4a0] } +&{toString QScriptString::toString commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptstring.h non plain false false QString [] } +&{~QScriptString QScriptString::~QScriptString commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptstring.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtScript/QScriptSyntaxCheckResult.txt b/internal/binding/dump/QtScript/QScriptSyntaxCheckResult.txt new file mode 100755 index 00000000..0dfd8fd9 --- /dev/null +++ b/internal/binding/dump/QtScript/QScriptSyntaxCheckResult.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{QScriptSyntaxCheckResult QScriptSyntaxCheckResult::QScriptSyntaxCheckResult commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non constructor false false [0xc8222db900] } +&{errorColumnNumber QScriptSyntaxCheckResult::errorColumnNumber commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false int [] } +&{errorLineNumber QScriptSyntaxCheckResult::errorLineNumber commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false int [] } +&{errorMessage QScriptSyntaxCheckResult::errorMessage commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false QString [] } +&{operator= QScriptSyntaxCheckResult::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false QScriptSyntaxCheckResult & [0xc8222fc1a0] } +&{state QScriptSyntaxCheckResult::state commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non plain false false State [] } +&{~QScriptSyntaxCheckResult QScriptSyntaxCheckResult::~QScriptSyntaxCheckResult commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptengine.h non destructor false false [] } +######################################## ENUMS ######################################## +&{State QScriptSyntaxCheckResult::State commendable public [0xc8222db540 0xc8222db5e0 0xc8222db6a0]} diff --git a/internal/binding/dump/QtScript/QScriptValue.txt b/internal/binding/dump/QtScript/QScriptValue.txt new file mode 100755 index 00000000..0719bcc8 --- /dev/null +++ b/internal/binding/dump/QtScript/QScriptValue.txt @@ -0,0 +1,67 @@ +######################################## FUNCTIONS ######################################## +&{QScriptValue QScriptValue::QScriptValue commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non constructor false false [] } +&{QScriptValue QScriptValue::QScriptValue commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non constructor false true 10 [0xc821bad140] } +&{QScriptValue QScriptValue::QScriptValue commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non constructor false true 11 [0xc821bad540] } +&{QScriptValue QScriptValue::QScriptValue commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non constructor false true 16 [0xc821bad960] } +&{QScriptValue QScriptValue::QScriptValue commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non constructor false true 2 [0xc821bade80] } +&{QScriptValue QScriptValue::QScriptValue commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non constructor false true 15 [0xc821ba6120] } +&{QScriptValue QScriptValue::QScriptValue commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non constructor false true 17 [0xc821ba62e0] } +&{QScriptValue QScriptValue::QScriptValue commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non constructor false true 12 [0xc821ba64a0] } +&{QScriptValue QScriptValue::QScriptValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non constructor false true 14 [0xc821ba6660] } +&{QScriptValue QScriptValue::QScriptValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non constructor false true 13 [0xc821ba6840] } +&{call QScriptValue::call commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false true 2 QScriptValue [0xc821ba70a0 0xc821ba7180] } +&{call QScriptValue::call commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false QScriptValue [0xc821ba73a0 0xc821ba74a0] } +&{construct QScriptValue::construct commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false true 2 QScriptValue [0xc821ba76c0] } +&{construct QScriptValue::construct commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false QScriptValue [0xc821ba7900] } +&{data QScriptValue::data commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false QScriptValue [] } +&{engine QScriptValue::engine commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false QScriptEngine * [] } +&{equals QScriptValue::equals commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false bool [0xc821ba7d20] } +&{instanceOf QScriptValue::instanceOf commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false bool [0xc821ba7f40] } +&{isArray QScriptValue::isArray commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false bool [] } +&{isBool QScriptValue::isBool commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false bool [] } +&{isDate QScriptValue::isDate commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false bool [] } +&{isError QScriptValue::isError commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false bool [] } +&{isFunction QScriptValue::isFunction commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false bool [] } +&{isNull QScriptValue::isNull commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false bool [] } +&{isNumber QScriptValue::isNumber commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false bool [] } +&{isObject QScriptValue::isObject commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false bool [] } +&{isQMetaObject QScriptValue::isQMetaObject commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false bool [] } +&{isQObject QScriptValue::isQObject commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false bool [] } +&{isRegExp QScriptValue::isRegExp commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false bool [] } +&{isString QScriptValue::isString commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false bool [] } +&{isUndefined QScriptValue::isUndefined commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false bool [] } +&{isValid QScriptValue::isValid commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false bool [] } +&{isVariant QScriptValue::isVariant commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false bool [] } +&{lessThan QScriptValue::lessThan commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false bool [0xc821b9d180] } +&{operator= QScriptValue::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false QScriptValue & [0xc821b9d4a0] } +&{property QScriptValue::property commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false true 2 QScriptValue [0xc821b9d6c0 0xc821b9d7a0] } +&{property QScriptValue::property commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false QScriptValue [0xc821b9d9a0 0xc821b9da40] } +&{property QScriptValue::property commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false true 3 QScriptValue [0xc821b9dc40 0xc821b9dce0] } +&{propertyFlags QScriptValue::propertyFlags commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false true 2 QScriptValue::PropertyFlags [0xc821b9dfc0 0xc821b9a160] } +&{propertyFlags QScriptValue::propertyFlags commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false QScriptValue::PropertyFlags [0xc821b9a5e0 0xc821b9a720] } +&{prototype QScriptValue::prototype commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false QScriptValue [] } +&{scriptClass QScriptValue::scriptClass commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false QScriptClass * [] } +&{setData QScriptValue::setData commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false void [0xc821b9b500] } +&{setProperty QScriptValue::setProperty commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false true 2 void [0xc821b9b960 0xc821b9bb40 0xc821b9bd00] } +&{setProperty QScriptValue::setProperty commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false void [0xc821b94060 0xc821b94100 0xc821b94200] } +&{setProperty QScriptValue::setProperty commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false true 3 void [0xc821b94400 0xc821b944a0 0xc821b945a0] } +&{setPrototype QScriptValue::setPrototype commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false void [0xc821b947c0] } +&{setScriptClass QScriptValue::setScriptClass commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false void [0xc821b949c0] } +&{strictlyEquals QScriptValue::strictlyEquals commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false bool [0xc821b94ba0] } +&{toBool QScriptValue::toBool commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false bool [] } +&{toDateTime QScriptValue::toDateTime commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false QDateTime [] } +&{toInt32 QScriptValue::toInt32 commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false qint32 [] } +&{toInteger QScriptValue::toInteger commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false qsreal [] } +&{toNumber QScriptValue::toNumber commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false qsreal [] } +&{toQMetaObject QScriptValue::toQMetaObject commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false const QMetaObject * [] } +&{toQObject QScriptValue::toQObject commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false QObject * [] } +&{toRegExp QScriptValue::toRegExp commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false QRegExp [] } +&{toString QScriptValue::toString commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false QString [] } +&{toUInt16 QScriptValue::toUInt16 commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false quint16 [] } +&{toUInt32 QScriptValue::toUInt32 commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false quint32 [] } +&{toVariant QScriptValue::toVariant commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non plain false false QVariant [] } +&{~QScriptValue QScriptValue::~QScriptValue commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalue.h non destructor false false [] } +######################################## ENUMS ######################################## +&{PropertyFlag QScriptValue::PropertyFlag commendable public QScriptValue::PropertyFlags [0xc821baf7a0 0xc821baf820 0xc821baf8c0 0xc821baf980 0xc821bafa20 0xc821bafaa0 0xc821bafb40 0xc821bafc00]} +&{ResolveFlag QScriptValue::ResolveFlag commendable public QScriptValue::ResolveFlags [0xc821bafe00 0xc821bafe80 0xc821baff00 0xc821baffa0]} +&{SpecialValue QScriptValue::SpecialValue commendable public [0xc821bac380 0xc821bac4a0]} diff --git a/internal/binding/dump/QtScript/QScriptValueIterator.txt b/internal/binding/dump/QtScript/QScriptValueIterator.txt new file mode 100755 index 00000000..66a869ab --- /dev/null +++ b/internal/binding/dump/QtScript/QScriptValueIterator.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{QScriptValueIterator QScriptValueIterator::QScriptValueIterator commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalueiterator.h non constructor false false [0xc821b95e60] } +&{flags QScriptValueIterator::flags commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalueiterator.h non plain false false QScriptValue::PropertyFlags [] } +&{hasNext QScriptValueIterator::hasNext commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalueiterator.h non plain false false bool [] } +&{hasPrevious QScriptValueIterator::hasPrevious commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalueiterator.h non plain false false bool [] } +&{name QScriptValueIterator::name commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalueiterator.h non plain false false QString [] } +&{next QScriptValueIterator::next commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalueiterator.h non plain false false void [] } +&{operator= QScriptValueIterator::operator= commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalueiterator.h non plain false false QScriptValueIterator & [0xc821b8a600] } +&{previous QScriptValueIterator::previous commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalueiterator.h non plain false false void [] } +&{remove QScriptValueIterator::remove commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalueiterator.h non plain false false void [] } +&{scriptName QScriptValueIterator::scriptName commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalueiterator.h non plain false false QScriptString [] } +&{setValue QScriptValueIterator::setValue commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalueiterator.h non plain false false void [0xc821b8aae0] } +&{toBack QScriptValueIterator::toBack commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalueiterator.h non plain false false void [] } +&{toFront QScriptValueIterator::toFront commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalueiterator.h non plain false false void [] } +&{value QScriptValueIterator::value commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalueiterator.h non plain false false QScriptValue [] } +&{~QScriptValueIterator QScriptValueIterator::~QScriptValueIterator commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptvalueiterator.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtScript/QScriptable.txt b/internal/binding/dump/QtScript/QScriptable.txt new file mode 100755 index 00000000..8285ff98 --- /dev/null +++ b/internal/binding/dump/QtScript/QScriptable.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{argument QScriptable::argument commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptable.h non plain false false QScriptValue [0xc822bb8de0] } +&{argumentCount QScriptable::argumentCount commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptable.h non plain false false int [] } +&{context QScriptable::context commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptable.h non plain false false QScriptContext * [] } +&{engine QScriptable::engine commendable public /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptable.h non plain false false QScriptEngine * [] } +&{thisObject QScriptable::thisObject commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtscript/src/script/api/qscriptable.h non plain false false QScriptValue [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtScriptTools/QScriptEngineDebugger.txt b/internal/binding/dump/QtScriptTools/QScriptEngineDebugger.txt new file mode 100755 index 00000000..237904b6 --- /dev/null +++ b/internal/binding/dump/QtScriptTools/QScriptEngineDebugger.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{QScriptEngineDebugger QScriptEngineDebugger::QScriptEngineDebugger commendable public /work/build/qt5_workdir/w/s/qtscript/src/scripttools/debugging/qscriptenginedebugger.h non constructor false false [0xc823114680] } +&{action QScriptEngineDebugger::action commendable public /work/build/qt5_workdir/w/s/qtscript/src/scripttools/debugging/qscriptenginedebugger.h non plain false false QAction * [0xc823114f80] } +&{attachTo QScriptEngineDebugger::attachTo commendable public /work/build/qt5_workdir/w/s/qtscript/src/scripttools/debugging/qscriptenginedebugger.h non plain false false void [0xc823115380] } +&{autoShowStandardWindow QScriptEngineDebugger::autoShowStandardWindow commendable public /work/build/qt5_workdir/w/s/qtscript/src/scripttools/debugging/qscriptenginedebugger.h non plain false false bool [] } +&{createStandardMenu QScriptEngineDebugger::createStandardMenu commendable public /work/build/qt5_workdir/w/s/qtscript/src/scripttools/debugging/qscriptenginedebugger.h non plain false false QMenu * [0xc8231159a0] } +&{createStandardToolBar QScriptEngineDebugger::createStandardToolBar commendable public /work/build/qt5_workdir/w/s/qtscript/src/scripttools/debugging/qscriptenginedebugger.h non plain false false QToolBar * [0xc823115f20] } +&{detach QScriptEngineDebugger::detach commendable public /work/build/qt5_workdir/w/s/qtscript/src/scripttools/debugging/qscriptenginedebugger.h non plain false false void [] } +&{evaluationResumed QScriptEngineDebugger::evaluationResumed commendable public /work/build/qt5_workdir/w/s/qtscript/src/scripttools/debugging/qscriptenginedebugger.h non signal false false void [] } +&{evaluationSuspended QScriptEngineDebugger::evaluationSuspended commendable public /work/build/qt5_workdir/w/s/qtscript/src/scripttools/debugging/qscriptenginedebugger.h non signal false false void [] } +&{setAutoShowStandardWindow QScriptEngineDebugger::setAutoShowStandardWindow commendable public /work/build/qt5_workdir/w/s/qtscript/src/scripttools/debugging/qscriptenginedebugger.h non plain false false void [0xc82310c7a0] } +&{standardWindow QScriptEngineDebugger::standardWindow commendable public /work/build/qt5_workdir/w/s/qtscript/src/scripttools/debugging/qscriptenginedebugger.h non plain false false QMainWindow * [] } +&{state QScriptEngineDebugger::state commendable public /work/build/qt5_workdir/w/s/qtscript/src/scripttools/debugging/qscriptenginedebugger.h non plain false false DebuggerState [] } +&{widget QScriptEngineDebugger::widget commendable public /work/build/qt5_workdir/w/s/qtscript/src/scripttools/debugging/qscriptenginedebugger.h non plain false false QWidget * [0xc82310cde0] } +&{~QScriptEngineDebugger QScriptEngineDebugger::~QScriptEngineDebugger commendable public /work/build/qt5_workdir/w/s/qtscript/src/scripttools/debugging/qscriptenginedebugger.h non destructor false false [] } +######################################## ENUMS ######################################## +&{DebuggerAction QScriptEngineDebugger::DebuggerAction commendable public [0xc82313ff60 0xc82312a000 0xc82312a100 0xc82312a1a0 0xc82312a2a0 0xc82312a400 0xc82312a560 0xc82312a6c0 0xc82312a860 0xc82312a9c0 0xc82312ab40 0xc82312ace0 0xc82312ae60 0xc82312b0a0 0xc82312b180]} +&{DebuggerState QScriptEngineDebugger::DebuggerState commendable public [0xc82312b4a0 0xc82312b560]} +&{DebuggerWidget QScriptEngineDebugger::DebuggerWidget commendable public [0xc82312b840 0xc82312b9a0 0xc82312ba20 0xc82312bb20 0xc82312bc00 0xc82312bd20 0xc82312be80 0xc82312bfa0 0xc8231141c0]} diff --git a/internal/binding/dump/QtSensors/QAccelerometer.txt b/internal/binding/dump/QtSensors/QAccelerometer.txt new file mode 100755 index 00000000..e0bc0155 --- /dev/null +++ b/internal/binding/dump/QtSensors/QAccelerometer.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{accelerationMode QAccelerometer::accelerationMode commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qaccelerometer.cpp non plain false false AccelerationMode [] } +&{reading QAccelerometer::reading commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qaccelerometer.cpp non plain false false QAccelerometerReading * [] } +&{QAccelerometer QAccelerometer::QAccelerometer commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qaccelerometer.h non constructor false false [0xc822f03a80] } +&{accelerationModeChanged QAccelerometer::accelerationModeChanged commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qaccelerometer.h non signal false false void [0xc822f03d40] } +&{setAccelerationMode QAccelerometer::setAccelerationMode commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qaccelerometer.h non plain false false void [0xc822ef2020] } +&{~QAccelerometer QAccelerometer::~QAccelerometer commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qaccelerometer.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{AccelerationMode QAccelerometer::AccelerationMode commendable public [0xc822f035e0 0xc822f036e0 0xc822f03780]} diff --git a/internal/binding/dump/QtSensors/QAccelerometerFilter.txt b/internal/binding/dump/QtSensors/QAccelerometerFilter.txt new file mode 100755 index 00000000..66959e17 --- /dev/null +++ b/internal/binding/dump/QtSensors/QAccelerometerFilter.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{filter QAccelerometerFilter::filter commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qaccelerometer.h pure plain false false bool [0xc822ef2ea0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QAccelerometerReading.txt b/internal/binding/dump/QtSensors/QAccelerometerReading.txt new file mode 100755 index 00000000..84626022 --- /dev/null +++ b/internal/binding/dump/QtSensors/QAccelerometerReading.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{x QAccelerometerReading::x commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qaccelerometer.cpp non plain false false qreal [] } +&{y QAccelerometerReading::y commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qaccelerometer.cpp non plain false false qreal [] } +&{z QAccelerometerReading::z commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qaccelerometer.cpp non plain false false qreal [] } +&{setX QAccelerometerReading::setX commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qaccelerometer.h non plain false false void [0xc822ef3f00] } +&{setY QAccelerometerReading::setY commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qaccelerometer.h non plain false false void [0xc822ee4200] } +&{setZ QAccelerometerReading::setZ commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qaccelerometer.h non plain false false void [0xc822ee4520] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QAltimeter.txt b/internal/binding/dump/QtSensors/QAltimeter.txt new file mode 100755 index 00000000..b6fce7b5 --- /dev/null +++ b/internal/binding/dump/QtSensors/QAltimeter.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{reading QAltimeter::reading commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qaltimeter.cpp non plain false false QAltimeterReading * [] } +&{QAltimeter QAltimeter::QAltimeter commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qaltimeter.h non constructor false false [0xc822ee50c0] } +&{~QAltimeter QAltimeter::~QAltimeter commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qaltimeter.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QAltimeterFilter.txt b/internal/binding/dump/QtSensors/QAltimeterFilter.txt new file mode 100755 index 00000000..c0279bd1 --- /dev/null +++ b/internal/binding/dump/QtSensors/QAltimeterFilter.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{filter QAltimeterFilter::filter commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qaltimeter.h pure plain false false bool [0xc822ee5a40] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QAltimeterReading.txt b/internal/binding/dump/QtSensors/QAltimeterReading.txt new file mode 100755 index 00000000..3a70db88 --- /dev/null +++ b/internal/binding/dump/QtSensors/QAltimeterReading.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{altitude QAltimeterReading::altitude commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qaltimeter.cpp non plain false false qreal [] } +&{setAltitude QAltimeterReading::setAltitude commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qaltimeter.h non plain false false void [0xc822ed23e0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QAmbientLightFilter.txt b/internal/binding/dump/QtSensors/QAmbientLightFilter.txt new file mode 100755 index 00000000..af66e727 --- /dev/null +++ b/internal/binding/dump/QtSensors/QAmbientLightFilter.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{filter QAmbientLightFilter::filter commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qambientlightsensor.h pure plain false false bool [0xc822ed2da0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QAmbientLightReading.txt b/internal/binding/dump/QtSensors/QAmbientLightReading.txt new file mode 100755 index 00000000..a76ae2f0 --- /dev/null +++ b/internal/binding/dump/QtSensors/QAmbientLightReading.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{lightLevel QAmbientLightReading::lightLevel commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qambientlightsensor.cpp non plain false false LightLevel [] } +&{setLightLevel QAmbientLightReading::setLightLevel commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qambientlightsensor.h non plain false false void [0xc822ed3fe0] } +######################################## ENUMS ######################################## +&{LightLevel QAmbientLightReading::LightLevel commendable public [0xc822ed3620 0xc822ed3720 0xc822ed3800 0xc822ed38c0 0xc822ed39e0 0xc822ed3a80]} diff --git a/internal/binding/dump/QtSensors/QAmbientLightSensor.txt b/internal/binding/dump/QtSensors/QAmbientLightSensor.txt new file mode 100755 index 00000000..f6ccc521 --- /dev/null +++ b/internal/binding/dump/QtSensors/QAmbientLightSensor.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{reading QAmbientLightSensor::reading commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qambientlightsensor.cpp non plain false false QAmbientLightReading * [] } +&{QAmbientLightSensor QAmbientLightSensor::QAmbientLightSensor commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qambientlightsensor.h non constructor false false [0xc822ec6740] } +&{~QAmbientLightSensor QAmbientLightSensor::~QAmbientLightSensor commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qambientlightsensor.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QAmbientTemperatureFilter.txt b/internal/binding/dump/QtSensors/QAmbientTemperatureFilter.txt new file mode 100755 index 00000000..1c452479 --- /dev/null +++ b/internal/binding/dump/QtSensors/QAmbientTemperatureFilter.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{filter QAmbientTemperatureFilter::filter commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qambienttemperaturesensor.h pure plain false false bool [0xc822ec6f40] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QAmbientTemperatureReading.txt b/internal/binding/dump/QtSensors/QAmbientTemperatureReading.txt new file mode 100755 index 00000000..5123147e --- /dev/null +++ b/internal/binding/dump/QtSensors/QAmbientTemperatureReading.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{temperature QAmbientTemperatureReading::temperature commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qambienttemperaturesensor.cpp non plain false false qreal [] } +&{setTemperature QAmbientTemperatureReading::setTemperature commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qambienttemperaturesensor.h non plain false false void [0xc822ec7660] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QAmbientTemperatureSensor.txt b/internal/binding/dump/QtSensors/QAmbientTemperatureSensor.txt new file mode 100755 index 00000000..9883ed6e --- /dev/null +++ b/internal/binding/dump/QtSensors/QAmbientTemperatureSensor.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{reading QAmbientTemperatureSensor::reading commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qambienttemperaturesensor.cpp non plain false false QAmbientTemperatureReading * [] } +&{QAmbientTemperatureSensor QAmbientTemperatureSensor::QAmbientTemperatureSensor commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qambienttemperaturesensor.h non constructor false false [0xc822ec7ce0] } +&{~QAmbientTemperatureSensor QAmbientTemperatureSensor::~QAmbientTemperatureSensor commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qambienttemperaturesensor.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QCompass.txt b/internal/binding/dump/QtSensors/QCompass.txt new file mode 100755 index 00000000..8c5dd420 --- /dev/null +++ b/internal/binding/dump/QtSensors/QCompass.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{reading QCompass::reading commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qcompass.cpp non plain false false QCompassReading * [] } +&{QCompass QCompass::QCompass commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qcompass.h non constructor false false [0xc822ec2580] } +&{~QCompass QCompass::~QCompass commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qcompass.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QCompassFilter.txt b/internal/binding/dump/QtSensors/QCompassFilter.txt new file mode 100755 index 00000000..0064ae0a --- /dev/null +++ b/internal/binding/dump/QtSensors/QCompassFilter.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{filter QCompassFilter::filter commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qcompass.h pure plain false false bool [0xc822ec2f80] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QCompassReading.txt b/internal/binding/dump/QtSensors/QCompassReading.txt new file mode 100755 index 00000000..e4555c67 --- /dev/null +++ b/internal/binding/dump/QtSensors/QCompassReading.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{azimuth QCompassReading::azimuth commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qcompass.cpp non plain false false qreal [] } +&{calibrationLevel QCompassReading::calibrationLevel commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qcompass.cpp non plain false false qreal [] } +&{setAzimuth QCompassReading::setAzimuth commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qcompass.h non plain false false void [0xc822ec3a80] } +&{setCalibrationLevel QCompassReading::setCalibrationLevel commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qcompass.h non plain false false void [0xc822ec3d60] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QDistanceFilter.txt b/internal/binding/dump/QtSensors/QDistanceFilter.txt new file mode 100755 index 00000000..6faac2fd --- /dev/null +++ b/internal/binding/dump/QtSensors/QDistanceFilter.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{filter QDistanceFilter::filter commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qdistancesensor.h pure plain false false bool [0xc822eb4820] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QDistanceReading.txt b/internal/binding/dump/QtSensors/QDistanceReading.txt new file mode 100755 index 00000000..69241baf --- /dev/null +++ b/internal/binding/dump/QtSensors/QDistanceReading.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{distance QDistanceReading::distance commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qdistancesensor.cpp non plain false false qreal [] } +&{setDistance QDistanceReading::setDistance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qdistancesensor.h non plain false false void [0xc822eb5260] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QDistanceSensor.txt b/internal/binding/dump/QtSensors/QDistanceSensor.txt new file mode 100755 index 00000000..a0c49f8c --- /dev/null +++ b/internal/binding/dump/QtSensors/QDistanceSensor.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{reading QDistanceSensor::reading commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qdistancesensor.cpp non plain false false QDistanceReading * [] } +&{QDistanceSensor QDistanceSensor::QDistanceSensor commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qdistancesensor.h non constructor false false [0xc822eb5b40] } +&{~QDistanceSensor QDistanceSensor::~QDistanceSensor commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qdistancesensor.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QGyroscope.txt b/internal/binding/dump/QtSensors/QGyroscope.txt new file mode 100755 index 00000000..a5bbbf39 --- /dev/null +++ b/internal/binding/dump/QtSensors/QGyroscope.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{reading QGyroscope::reading commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qgyroscope.cpp non plain false false QGyroscopeReading * [] } +&{QGyroscope QGyroscope::QGyroscope commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qgyroscope.h non constructor false false [0xc822ea2440] } +&{~QGyroscope QGyroscope::~QGyroscope commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qgyroscope.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QGyroscopeFilter.txt b/internal/binding/dump/QtSensors/QGyroscopeFilter.txt new file mode 100755 index 00000000..a56e7d90 --- /dev/null +++ b/internal/binding/dump/QtSensors/QGyroscopeFilter.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{filter QGyroscopeFilter::filter commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qgyroscope.h pure plain false false bool [0xc822ea2de0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QGyroscopeReading.txt b/internal/binding/dump/QtSensors/QGyroscopeReading.txt new file mode 100755 index 00000000..fde9a9f3 --- /dev/null +++ b/internal/binding/dump/QtSensors/QGyroscopeReading.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{x QGyroscopeReading::x commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qgyroscope.cpp non plain false false qreal [] } +&{y QGyroscopeReading::y commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qgyroscope.cpp non plain false false qreal [] } +&{z QGyroscopeReading::z commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qgyroscope.cpp non plain false false qreal [] } +&{setX QGyroscopeReading::setX commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qgyroscope.h non plain false false void [0xc822ea3c00] } +&{setY QGyroscopeReading::setY commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qgyroscope.h non plain false false void [0xc822ea3f00] } +&{setZ QGyroscopeReading::setZ commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qgyroscope.h non plain false false void [0xc822e94200] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QHolsterFilter.txt b/internal/binding/dump/QtSensors/QHolsterFilter.txt new file mode 100755 index 00000000..82b1bf79 --- /dev/null +++ b/internal/binding/dump/QtSensors/QHolsterFilter.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{filter QHolsterFilter::filter commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qholstersensor.h pure plain false false bool [0xc822e94ee0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QHolsterReading.txt b/internal/binding/dump/QtSensors/QHolsterReading.txt new file mode 100755 index 00000000..ae28272b --- /dev/null +++ b/internal/binding/dump/QtSensors/QHolsterReading.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{holstered QHolsterReading::holstered commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qholstersensor.cpp non plain false false bool [] } +&{setHolstered QHolsterReading::setHolstered commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qholstersensor.h non plain false false void [0xc822e95860] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QHolsterSensor.txt b/internal/binding/dump/QtSensors/QHolsterSensor.txt new file mode 100755 index 00000000..abc07eae --- /dev/null +++ b/internal/binding/dump/QtSensors/QHolsterSensor.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{reading QHolsterSensor::reading commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qholstersensor.cpp non plain false false QHolsterReading * [] } +&{QHolsterSensor QHolsterSensor::QHolsterSensor commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qholstersensor.h non constructor false false [0xc822e90040] } +&{~QHolsterSensor QHolsterSensor::~QHolsterSensor commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qholstersensor.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QIRProximityFilter.txt b/internal/binding/dump/QtSensors/QIRProximityFilter.txt new file mode 100755 index 00000000..bd5c8233 --- /dev/null +++ b/internal/binding/dump/QtSensors/QIRProximityFilter.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{filter QIRProximityFilter::filter commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qirproximitysensor.h pure plain false false bool [0xc822e90920] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QIRProximityReading.txt b/internal/binding/dump/QtSensors/QIRProximityReading.txt new file mode 100755 index 00000000..5ebe3fb3 --- /dev/null +++ b/internal/binding/dump/QtSensors/QIRProximityReading.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{reflectance QIRProximityReading::reflectance commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qirproximitysensor.cpp non plain false false qreal [] } +&{setReflectance QIRProximityReading::setReflectance commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qirproximitysensor.h non plain false false void [0xc822e91160] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QIRProximitySensor.txt b/internal/binding/dump/QtSensors/QIRProximitySensor.txt new file mode 100755 index 00000000..354ba8ec --- /dev/null +++ b/internal/binding/dump/QtSensors/QIRProximitySensor.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{reading QIRProximitySensor::reading commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qirproximitysensor.cpp non plain false false QIRProximityReading * [] } +&{QIRProximitySensor QIRProximitySensor::QIRProximitySensor commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qirproximitysensor.h non constructor false false [0xc822e91900] } +&{~QIRProximitySensor QIRProximitySensor::~QIRProximitySensor commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qirproximitysensor.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QLightFilter.txt b/internal/binding/dump/QtSensors/QLightFilter.txt new file mode 100755 index 00000000..f61a2aa0 --- /dev/null +++ b/internal/binding/dump/QtSensors/QLightFilter.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{filter QLightFilter::filter commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qlightsensor.h pure plain false false bool [0xc822e800e0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QLightReading.txt b/internal/binding/dump/QtSensors/QLightReading.txt new file mode 100755 index 00000000..3ac74b11 --- /dev/null +++ b/internal/binding/dump/QtSensors/QLightReading.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{lux QLightReading::lux commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qlightsensor.cpp non plain false false qreal [] } +&{setLux QLightReading::setLux commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qlightsensor.h non plain false false void [0xc822e80ac0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QLightSensor.txt b/internal/binding/dump/QtSensors/QLightSensor.txt new file mode 100755 index 00000000..13ebf63a --- /dev/null +++ b/internal/binding/dump/QtSensors/QLightSensor.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{fieldOfView QLightSensor::fieldOfView commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qlightsensor.cpp non plain false false qreal [] } +&{reading QLightSensor::reading commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qlightsensor.cpp non plain false false QLightReading * [] } +&{QLightSensor QLightSensor::QLightSensor commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qlightsensor.h non constructor false false [0xc822e813a0] } +&{fieldOfViewChanged QLightSensor::fieldOfViewChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qlightsensor.h non signal false false void [0xc822e81720] } +&{setFieldOfView QLightSensor::setFieldOfView commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qlightsensor.h non plain false false void [0xc822e81a40] } +&{~QLightSensor QLightSensor::~QLightSensor commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qlightsensor.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QMagnetometer.txt b/internal/binding/dump/QtSensors/QMagnetometer.txt new file mode 100755 index 00000000..626526e5 --- /dev/null +++ b/internal/binding/dump/QtSensors/QMagnetometer.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{reading QMagnetometer::reading commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qmagnetometer.cpp non plain false false QMagnetometerReading * [] } +&{returnGeoValues QMagnetometer::returnGeoValues commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qmagnetometer.cpp non plain false false bool [] } +&{setReturnGeoValues QMagnetometer::setReturnGeoValues commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qmagnetometer.cpp non plain false false void [0xc822e70800] } +&{QMagnetometer QMagnetometer::QMagnetometer commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qmagnetometer.h non constructor false false [0xc822e70b00] } +&{returnGeoValuesChanged QMagnetometer::returnGeoValuesChanged commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qmagnetometer.h non signal false false void [0xc822e70e20] } +&{~QMagnetometer QMagnetometer::~QMagnetometer commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qmagnetometer.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QMagnetometerFilter.txt b/internal/binding/dump/QtSensors/QMagnetometerFilter.txt new file mode 100755 index 00000000..e6526dcd --- /dev/null +++ b/internal/binding/dump/QtSensors/QMagnetometerFilter.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{filter QMagnetometerFilter::filter commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qmagnetometer.h pure plain false false bool [0xc822e71b40] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QMagnetometerReading.txt b/internal/binding/dump/QtSensors/QMagnetometerReading.txt new file mode 100755 index 00000000..34ad2090 --- /dev/null +++ b/internal/binding/dump/QtSensors/QMagnetometerReading.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{calibrationLevel QMagnetometerReading::calibrationLevel commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qmagnetometer.cpp non plain false false qreal [] } +&{x QMagnetometerReading::x commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qmagnetometer.cpp non plain false false qreal [] } +&{y QMagnetometerReading::y commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qmagnetometer.cpp non plain false false qreal [] } +&{z QMagnetometerReading::z commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qmagnetometer.cpp non plain false false qreal [] } +&{setCalibrationLevel QMagnetometerReading::setCalibrationLevel commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qmagnetometer.h non plain false false void [0xc822e5eb20] } +&{setX QMagnetometerReading::setX commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qmagnetometer.h non plain false false void [0xc822e5ee60] } +&{setY QMagnetometerReading::setY commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qmagnetometer.h non plain false false void [0xc822e5f180] } +&{setZ QMagnetometerReading::setZ commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qmagnetometer.h non plain false false void [0xc822e5f4e0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QOrientationFilter.txt b/internal/binding/dump/QtSensors/QOrientationFilter.txt new file mode 100755 index 00000000..563f0453 --- /dev/null +++ b/internal/binding/dump/QtSensors/QOrientationFilter.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{filter QOrientationFilter::filter commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qorientationsensor.h pure plain false false bool [0xc822e524a0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QOrientationReading.txt b/internal/binding/dump/QtSensors/QOrientationReading.txt new file mode 100755 index 00000000..d6b887f7 --- /dev/null +++ b/internal/binding/dump/QtSensors/QOrientationReading.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{orientation QOrientationReading::orientation commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qorientationsensor.cpp non plain false false Orientation [] } +&{setOrientation QOrientationReading::setOrientation commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qorientationsensor.h non plain false false void [0xc822e537c0] } +######################################## ENUMS ######################################## +&{Orientation QOrientationReading::Orientation commendable public [0xc822e52e00 0xc822e52ea0 0xc822e52f80 0xc822e53000 0xc822e53140 0xc822e531c0 0xc822e532e0]} diff --git a/internal/binding/dump/QtSensors/QOrientationSensor.txt b/internal/binding/dump/QtSensors/QOrientationSensor.txt new file mode 100755 index 00000000..efa3001f --- /dev/null +++ b/internal/binding/dump/QtSensors/QOrientationSensor.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{reading QOrientationSensor::reading commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qorientationsensor.cpp non plain false false QOrientationReading * [] } +&{QOrientationSensor QOrientationSensor::QOrientationSensor commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qorientationsensor.h non constructor false false [0xc822e3e1a0] } +&{~QOrientationSensor QOrientationSensor::~QOrientationSensor commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qorientationsensor.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QPressureFilter.txt b/internal/binding/dump/QtSensors/QPressureFilter.txt new file mode 100755 index 00000000..ead5df26 --- /dev/null +++ b/internal/binding/dump/QtSensors/QPressureFilter.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{filter QPressureFilter::filter commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qpressuresensor.h pure plain false false bool [0xc822e3ef00] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QPressureReading.txt b/internal/binding/dump/QtSensors/QPressureReading.txt new file mode 100755 index 00000000..f63592b6 --- /dev/null +++ b/internal/binding/dump/QtSensors/QPressureReading.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{pressure QPressureReading::pressure commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qpressuresensor.cpp non plain false false qreal [] } +&{temperature QPressureReading::temperature commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qpressuresensor.cpp non plain false false qreal [] } +&{setPressure QPressureReading::setPressure commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qpressuresensor.h non plain false false void [0xc822e3fe40] } +&{setTemperature QPressureReading::setTemperature commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qpressuresensor.h non plain false false void [0xc822e2e1e0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QPressureSensor.txt b/internal/binding/dump/QtSensors/QPressureSensor.txt new file mode 100755 index 00000000..12219b3b --- /dev/null +++ b/internal/binding/dump/QtSensors/QPressureSensor.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{reading QPressureSensor::reading commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qpressuresensor.cpp non plain false false QPressureReading * [] } +&{QPressureSensor QPressureSensor::QPressureSensor commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qpressuresensor.h non constructor false false [0xc822e2ece0] } +&{~QPressureSensor QPressureSensor::~QPressureSensor commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qpressuresensor.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QProximityFilter.txt b/internal/binding/dump/QtSensors/QProximityFilter.txt new file mode 100755 index 00000000..223cfd24 --- /dev/null +++ b/internal/binding/dump/QtSensors/QProximityFilter.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{filter QProximityFilter::filter commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qproximitysensor.h pure plain false false bool [0xc822e2f760] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QProximityReading.txt b/internal/binding/dump/QtSensors/QProximityReading.txt new file mode 100755 index 00000000..4da565f5 --- /dev/null +++ b/internal/binding/dump/QtSensors/QProximityReading.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{close QProximityReading::close commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qproximitysensor.cpp non plain false false bool [] } +&{setClose QProximityReading::setClose commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qproximitysensor.h non plain false false void [0xc822e202a0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QProximitySensor.txt b/internal/binding/dump/QtSensors/QProximitySensor.txt new file mode 100755 index 00000000..2da667cf --- /dev/null +++ b/internal/binding/dump/QtSensors/QProximitySensor.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{reading QProximitySensor::reading commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qproximitysensor.cpp non plain false false QProximityReading * [] } +&{QProximitySensor QProximitySensor::QProximitySensor commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qproximitysensor.h non constructor false false [0xc822e20a60] } +&{~QProximitySensor QProximitySensor::~QProximitySensor commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qproximitysensor.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QRotationFilter.txt b/internal/binding/dump/QtSensors/QRotationFilter.txt new file mode 100755 index 00000000..0b9ea08c --- /dev/null +++ b/internal/binding/dump/QtSensors/QRotationFilter.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{filter QRotationFilter::filter commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qrotationsensor.h pure plain false false bool [0xc822e21540] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QRotationReading.txt b/internal/binding/dump/QtSensors/QRotationReading.txt new file mode 100755 index 00000000..b630d507 --- /dev/null +++ b/internal/binding/dump/QtSensors/QRotationReading.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{x QRotationReading::x commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qrotationsensor.cpp non plain false false qreal [] } +&{y QRotationReading::y commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qrotationsensor.cpp non plain false false qreal [] } +&{z QRotationReading::z commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qrotationsensor.cpp non plain false false qreal [] } +&{setFromEuler QRotationReading::setFromEuler commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qrotationsensor.h non plain false false void [0xc822e14300 0xc822e143a0 0xc822e14440] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QRotationSensor.txt b/internal/binding/dump/QtSensors/QRotationSensor.txt new file mode 100755 index 00000000..b506e009 --- /dev/null +++ b/internal/binding/dump/QtSensors/QRotationSensor.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{hasZ QRotationSensor::hasZ commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qrotationsensor.cpp non plain false false bool [] } +&{reading QRotationSensor::reading commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qrotationsensor.cpp non plain false false QRotationReading * [] } +&{QRotationSensor QRotationSensor::QRotationSensor commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qrotationsensor.h non constructor false false [0xc822e153a0] } +&{hasZChanged QRotationSensor::hasZChanged commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qrotationsensor.h non signal false false void [0xc822e15740] } +&{setHasZ QRotationSensor::setHasZ commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qrotationsensor.h non plain false false void [0xc822e15ae0] } +&{~QRotationSensor QRotationSensor::~QRotationSensor commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qrotationsensor.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QSensor.txt b/internal/binding/dump/QtSensors/QSensor.txt new file mode 100755 index 00000000..9aba3d23 --- /dev/null +++ b/internal/binding/dump/QtSensors/QSensor.txt @@ -0,0 +1,62 @@ +######################################## FUNCTIONS ######################################## +&{availableDataRates QSensor::availableDataRates commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false qrangelist [] } +&{axesOrientationMode QSensor::axesOrientationMode commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false AxesOrientationMode [] } +&{bufferSize QSensor::bufferSize commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false int [] } +&{currentOrientation QSensor::currentOrientation commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false int [] } +&{dataRate QSensor::dataRate commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false int [] } +&{description QSensor::description commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false QString [] } +&{efficientBufferSize QSensor::efficientBufferSize commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false int [] } +&{error QSensor::error commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false int [] } +&{identifier QSensor::identifier commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false QByteArray [] } +&{isActive QSensor::isActive commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false bool [] } +&{isAlwaysOn QSensor::isAlwaysOn commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false bool [] } +&{isBusy QSensor::isBusy commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false bool [] } +&{isConnectedToBackend QSensor::isConnectedToBackend commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false bool [] } +&{maxBufferSize QSensor::maxBufferSize commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false int [] } +&{outputRange QSensor::outputRange commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false int [] } +&{outputRanges QSensor::outputRanges commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false qoutputrangelist [] } +&{reading QSensor::reading commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false QSensorReading * [] } +&{setActive QSensor::setActive commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false void [0xc822df0720] } +&{setAlwaysOn QSensor::setAlwaysOn commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false void [0xc822df0aa0] } +&{setAxesOrientationMode QSensor::setAxesOrientationMode commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false void [0xc822df0ee0] } +&{setBufferSize QSensor::setBufferSize commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false void [0xc822df1280] } +&{setDataRate QSensor::setDataRate commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false void [0xc822df15e0] } +&{setIdentifier QSensor::setIdentifier commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false void [0xc822df1940] } +&{setOutputRange QSensor::setOutputRange commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false void [0xc822df1ce0] } +&{setUserOrientation QSensor::setUserOrientation commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false void [0xc822de00a0] } +&{skipDuplicates QSensor::skipDuplicates commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false bool [] } +&{type QSensor::type commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false QByteArray [] } +&{userOrientation QSensor::userOrientation commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.cpp non plain false false int [] } +&{QSensor QSensor::QSensor commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non constructor false false [0xc822de1c80 0xc822de1de0] } +&{activeChanged QSensor::activeChanged commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non signal false false void [] } +&{addFilter QSensor::addFilter commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non plain false false void [0xc822dd8660] } +&{alwaysOnChanged QSensor::alwaysOnChanged commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non signal false false void [] } +&{availableSensorsChanged QSensor::availableSensorsChanged commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non signal false false void [] } +&{axesOrientationModeChanged QSensor::axesOrientationModeChanged commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non signal false false void [0xc822dd8c80] } +&{bufferSizeChanged QSensor::bufferSizeChanged commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non signal false false void [0xc822dd90c0] } +&{busyChanged QSensor::busyChanged commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non signal false false void [] } +&{connectToBackend QSensor::connectToBackend commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non plain false false bool [] } +&{currentOrientationChanged QSensor::currentOrientationChanged commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non signal false false void [0xc822dd9600] } +&{dataRateChanged QSensor::dataRateChanged commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non signal false false void [] } +&{defaultSensorForType QSensor::defaultSensorForType commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non plain true false QByteArray [0xc822dd9ae0] } +&{efficientBufferSizeChanged QSensor::efficientBufferSizeChanged commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non signal false false void [0xc822dd9dc0] } +&{filters QSensor::filters commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non plain false false QList [] } +&{isFeatureSupported QSensor::isFeatureSupported commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non plain false false bool [0xc822dcc220] } +&{maxBufferSizeChanged QSensor::maxBufferSizeChanged commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non signal false false void [0xc822dcc640] } +&{readingChanged QSensor::readingChanged commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non signal false false void [] } +&{removeFilter QSensor::removeFilter commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non plain false false void [0xc822dccae0] } +&{sensorError QSensor::sensorError commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non signal false false void [0xc822dcce00] } +&{sensorTypes QSensor::sensorTypes commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non plain true false QList [] } +&{sensorsForType QSensor::sensorsForType commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non plain true false QList [0xc822dcd420] } +&{setCurrentOrientation QSensor::setCurrentOrientation commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non plain false false void [0xc822dcd7e0] } +&{setEfficientBufferSize QSensor::setEfficientBufferSize commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non plain false false void [0xc822dcdba0] } +&{setMaxBufferSize QSensor::setMaxBufferSize commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non plain false false void [0xc822dcdee0] } +&{setSkipDuplicates QSensor::setSkipDuplicates commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non plain false false void [0xc822dbc280] } +&{skipDuplicatesChanged QSensor::skipDuplicatesChanged commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non signal false false void [0xc822dbc620] } +&{start QSensor::start commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non slot false false bool [] } +&{stop QSensor::stop commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non slot false false void [] } +&{userOrientationChanged QSensor::userOrientationChanged commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non signal false false void [0xc822dbcb60] } +&{~QSensor QSensor::~QSensor commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{AxesOrientationMode QSensor::AxesOrientationMode commendable public [0xc822de09c0 0xc822de0ae0 0xc822de0c80]} +&{Feature QSensor::Feature commendable public [0xc822de0fa0 0xc822de1080 0xc822de1120 0xc822de12a0 0xc822de1380 0xc822de14c0 0xc822de15e0 0xc822de1780 0xc822de1960]} diff --git a/internal/binding/dump/QtSensors/QSensorBackend.txt b/internal/binding/dump/QtSensors/QSensorBackend.txt new file mode 100755 index 00000000..4be83a37 --- /dev/null +++ b/internal/binding/dump/QtSensors/QSensorBackend.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{addDataRate QSensorBackend::addDataRate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensorbackend.h non plain false false void [0xc822d94bc0 0xc822d94c60] } +&{isFeatureSupported QSensorBackend::isFeatureSupported commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensorbackend.h impure plain false false bool [0xc822d94e40] } +&{sensorBusy QSensorBackend::sensorBusy commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensorbackend.h non plain false false void [] } +&{sensorError QSensorBackend::sensorError commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensorbackend.h non plain false false void [0xc822d951e0] } +&{addOutputRange QSensorBackend::addOutputRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensorbackend.h non plain false false void [0xc822d95a80 0xc822d95b00 0xc822d95bc0] } +&{newReadingAvailable QSensorBackend::newReadingAvailable commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensorbackend.h non plain false false void [] } +&{reading QSensorBackend::reading commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensorbackend.h non plain false false QSensorReading * [] } +&{sensor QSensorBackend::sensor commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensorbackend.h non plain false false QSensor * [] } +&{sensorStopped QSensorBackend::sensorStopped commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensorbackend.h non plain false false void [] } +&{setDataRates QSensorBackend::setDataRates commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensorbackend.h non plain false false void [0xc822d8a340] } +&{setDescription QSensorBackend::setDescription commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensorbackend.h non plain false false void [0xc822d8a5e0] } +&{setReading QSensorBackend::setReading commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensorbackend.h non plain false false T * [0xc822d8a920] } +&{start QSensorBackend::start commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensorbackend.h pure plain false false void [] } +&{stop QSensorBackend::stop commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensorbackend.h pure plain false false void [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QSensorBackendFactory.txt b/internal/binding/dump/QtSensors/QSensorBackendFactory.txt new file mode 100755 index 00000000..cbdbae89 --- /dev/null +++ b/internal/binding/dump/QtSensors/QSensorBackendFactory.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{createBackend QSensorBackendFactory::createBackend commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensormanager.h pure plain false false QSensorBackend * [0xc822d8b080] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QSensorChangesInterface.txt b/internal/binding/dump/QtSensors/QSensorChangesInterface.txt new file mode 100755 index 00000000..4734dff2 --- /dev/null +++ b/internal/binding/dump/QtSensors/QSensorChangesInterface.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{sensorsChanged QSensorChangesInterface::sensorsChanged commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensorplugin.h pure plain false false void [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QSensorFilter.txt b/internal/binding/dump/QtSensors/QSensorFilter.txt new file mode 100755 index 00000000..94b420c3 --- /dev/null +++ b/internal/binding/dump/QtSensors/QSensorFilter.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{filter QSensorFilter::filter commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h pure plain false false bool [0xc822d9c820] } +&{~QSensorFilter QSensorFilter::~QSensorFilter commendable protected /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QSensorGesture.txt b/internal/binding/dump/QtSensors/QSensorGesture.txt new file mode 100755 index 00000000..6301a526 --- /dev/null +++ b/internal/binding/dump/QtSensors/QSensorGesture.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{QSensorGesture QSensorGesture::QSensorGesture commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesture.h non constructor false false [0xc822f241a0 0xc822f24300] } +&{detected QSensorGesture::detected commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesture.h non signal false false void [0xc822f24640] } +&{gestureSignals QSensorGesture::gestureSignals commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesture.h non plain false false QStringList [] } +&{invalidIds QSensorGesture::invalidIds commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesture.h non plain false false QStringList [] } +&{isActive QSensorGesture::isActive commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesture.h non plain false false bool [] } +&{startDetection QSensorGesture::startDetection commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesture.h non plain false false void [] } +&{stopDetection QSensorGesture::stopDetection commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesture.h non plain false false void [] } +&{validIds QSensorGesture::validIds commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesture.h non plain false false QStringList [] } +&{~QSensorGesture QSensorGesture::~QSensorGesture commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesture.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QSensorGestureManager.txt b/internal/binding/dump/QtSensors/QSensorGestureManager.txt new file mode 100755 index 00000000..cc1d6a9d --- /dev/null +++ b/internal/binding/dump/QtSensors/QSensorGestureManager.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QSensorGestureManager QSensorGestureManager::QSensorGestureManager commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesturemanager.h non constructor false false [0xc822f101c0] } +&{gestureIds QSensorGestureManager::gestureIds commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesturemanager.h non plain false false QStringList [] } +&{newSensorGestureAvailable QSensorGestureManager::newSensorGestureAvailable commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesturemanager.h non signal false false void [] } +&{recognizerSignals QSensorGestureManager::recognizerSignals commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesturemanager.h non plain false false QStringList [0xc822f10700] } +&{registerSensorGestureRecognizer QSensorGestureManager::registerSensorGestureRecognizer commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesturemanager.h non plain false false bool [0xc822f10a20] } +&{sensorGestureRecognizer QSensorGestureManager::sensorGestureRecognizer commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesturemanager.h non plain true false QSensorGestureRecognizer * [0xc822f10e00] } +&{~QSensorGestureManager QSensorGestureManager::~QSensorGestureManager commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesturemanager.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QSensorGesturePluginInterface.txt b/internal/binding/dump/QtSensors/QSensorGesturePluginInterface.txt new file mode 100755 index 00000000..29c54f29 --- /dev/null +++ b/internal/binding/dump/QtSensors/QSensorGesturePluginInterface.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{QSensorGesturePluginInterface QSensorGesturePluginInterface::QSensorGesturePluginInterface commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgestureplugininterface.h non constructor false false [] } +&{createRecognizers QSensorGesturePluginInterface::createRecognizers commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgestureplugininterface.h pure plain false false QList [] } +&{name QSensorGesturePluginInterface::name commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgestureplugininterface.h pure plain false false QString [] } +&{supportedIds QSensorGesturePluginInterface::supportedIds commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgestureplugininterface.h pure plain false false QStringList [] } +&{~QSensorGesturePluginInterface QSensorGesturePluginInterface::~QSensorGesturePluginInterface commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgestureplugininterface.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QSensorGestureRecognizer.txt b/internal/binding/dump/QtSensors/QSensorGestureRecognizer.txt new file mode 100755 index 00000000..dd2a3d9f --- /dev/null +++ b/internal/binding/dump/QtSensors/QSensorGestureRecognizer.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QSensorGestureRecognizer QSensorGestureRecognizer::QSensorGestureRecognizer commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesturerecognizer.h non constructor false false [0xc822f11dc0] } +&{create QSensorGestureRecognizer::create commendable protected /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesturerecognizer.h pure plain false false void [] } +&{createBackend QSensorGestureRecognizer::createBackend commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesturerecognizer.h non plain false false void [] } +&{detected QSensorGestureRecognizer::detected commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesturerecognizer.h non signal false false void [0xc822f02260] } +&{gestureSignals QSensorGestureRecognizer::gestureSignals commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesturerecognizer.h non plain false false QStringList [] } +&{id QSensorGestureRecognizer::id commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesturerecognizer.h pure plain false false QString [] } +&{isActive QSensorGestureRecognizer::isActive commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesturerecognizer.h pure plain false false bool [] } +&{start QSensorGestureRecognizer::start commendable protected /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesturerecognizer.h pure plain false false bool [] } +&{startBackend QSensorGestureRecognizer::startBackend commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesturerecognizer.h non plain false false void [] } +&{stop QSensorGestureRecognizer::stop commendable protected /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesturerecognizer.h pure plain false false bool [] } +&{stopBackend QSensorGestureRecognizer::stopBackend commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesturerecognizer.h non plain false false void [] } +&{~QSensorGestureRecognizer QSensorGestureRecognizer::~QSensorGestureRecognizer commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/gestures/qsensorgesturerecognizer.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QSensorManager.txt b/internal/binding/dump/QtSensors/QSensorManager.txt new file mode 100755 index 00000000..14a505cc --- /dev/null +++ b/internal/binding/dump/QtSensors/QSensorManager.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{createBackend QSensorManager::createBackend commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensormanager.h non plain true false QSensorBackend * [0xc822d8b5c0] } +&{isBackendRegistered QSensorManager::isBackendRegistered commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensormanager.h non plain true false bool [0xc822d8b8a0 0xc822d8ba00] } +&{registerBackend QSensorManager::registerBackend commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensormanager.h non plain true false void [0xc822d8bd20 0xc822d8bea0 0xc822d78020] } +&{setDefaultBackend QSensorManager::setDefaultBackend commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensormanager.h non plain true false void [0xc822d78360 0xc822d784a0] } +&{unregisterBackend QSensorManager::unregisterBackend commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensormanager.h non plain true false void [0xc822d78860 0xc822d78980] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QSensorPluginInterface.txt b/internal/binding/dump/QtSensors/QSensorPluginInterface.txt new file mode 100755 index 00000000..fb2a5cf2 --- /dev/null +++ b/internal/binding/dump/QtSensors/QSensorPluginInterface.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{registerSensors QSensorPluginInterface::registerSensors commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensorplugin.h pure plain false false void [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QSensorReading.txt b/internal/binding/dump/QtSensors/QSensorReading.txt new file mode 100755 index 00000000..a28a53e5 --- /dev/null +++ b/internal/binding/dump/QtSensors/QSensorReading.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{setTimestamp QSensorReading::setTimestamp commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non plain false false void [0xc822d9d5c0] } +&{timestamp QSensorReading::timestamp commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non plain false false quint64 [] } +&{value QSensorReading::value commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non plain false false QVariant [0xc822d9da80] } +&{valueCount QSensorReading::valueCount commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qsensor.h non plain false false int [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QTapFilter.txt b/internal/binding/dump/QtSensors/QTapFilter.txt new file mode 100755 index 00000000..b7628e96 --- /dev/null +++ b/internal/binding/dump/QtSensors/QTapFilter.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{filter QTapFilter::filter commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qtapsensor.h pure plain false false bool [0xc822d79960] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QTapReading.txt b/internal/binding/dump/QtSensors/QTapReading.txt new file mode 100755 index 00000000..8a70d4f0 --- /dev/null +++ b/internal/binding/dump/QtSensors/QTapReading.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{isDoubleTap QTapReading::isDoubleTap commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qtapsensor.cpp non plain false false bool [] } +&{tapDirection QTapReading::tapDirection commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qtapsensor.cpp non plain false false TapDirection [] } +&{setDoubleTap QTapReading::setDoubleTap commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qtapsensor.h non plain false false void [0xc822d6f1a0] } +&{setTapDirection QTapReading::setTapDirection commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qtapsensor.h non plain false false void [0xc822d6f4a0] } +######################################## ENUMS ######################################## +&{TapDirection QTapReading::TapDirection commendable public [0xc822d6e1e0 0xc822d6e2a0 0xc822d6e340 0xc822d6e420 0xc822d6e560 0xc822d6e600 0xc822d6e6e0 0xc822d6e7a0 0xc822d6e8c0 0xc822d6e960 0xc822d6ea60 0xc822d6eb20 0xc822d6eba0]} diff --git a/internal/binding/dump/QtSensors/QTapSensor.txt b/internal/binding/dump/QtSensors/QTapSensor.txt new file mode 100755 index 00000000..264a3730 --- /dev/null +++ b/internal/binding/dump/QtSensors/QTapSensor.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{reading QTapSensor::reading commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qtapsensor.cpp non plain false false QTapReading * [] } +&{returnDoubleTapEvents QTapSensor::returnDoubleTapEvents commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qtapsensor.cpp non plain false false bool [] } +&{setReturnDoubleTapEvents QTapSensor::setReturnDoubleTapEvents commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qtapsensor.cpp non plain false false void [0xc822d5c020] } +&{QTapSensor QTapSensor::QTapSensor commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qtapsensor.h non constructor false false [0xc822d5c500] } +&{returnDoubleTapEventsChanged QTapSensor::returnDoubleTapEventsChanged commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qtapsensor.h non signal false false void [0xc822d5c940] } +&{~QTapSensor QTapSensor::~QTapSensor commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qtapsensor.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QTiltFilter.txt b/internal/binding/dump/QtSensors/QTiltFilter.txt new file mode 100755 index 00000000..6a505112 --- /dev/null +++ b/internal/binding/dump/QtSensors/QTiltFilter.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{filter QTiltFilter::filter commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qtiltsensor.h pure plain false false bool [0xc822d5da40] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QTiltReading.txt b/internal/binding/dump/QtSensors/QTiltReading.txt new file mode 100755 index 00000000..96ce6537 --- /dev/null +++ b/internal/binding/dump/QtSensors/QTiltReading.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{xRotation QTiltReading::xRotation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qtiltsensor.cpp non plain false false qreal [] } +&{yRotation QTiltReading::yRotation commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qtiltsensor.cpp non plain false false qreal [] } +&{setXRotation QTiltReading::setXRotation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qtiltsensor.h non plain false false void [0xc822d4e660] } +&{setYRotation QTiltReading::setYRotation commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qtiltsensor.h non plain false false void [0xc822d4e9a0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSensors/QTiltSensor.txt b/internal/binding/dump/QtSensors/QTiltSensor.txt new file mode 100755 index 00000000..79a18f13 --- /dev/null +++ b/internal/binding/dump/QtSensors/QTiltSensor.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QTiltSensor QTiltSensor::QTiltSensor commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qtiltsensor.cpp non constructor false false [0xc822d4f200] } +&{reading QTiltSensor::reading commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qtiltsensor.cpp non plain false false QTiltReading * [] } +&{~QTiltSensor QTiltSensor::~QTiltSensor commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qtiltsensor.cpp non destructor false false [] } +&{calibrate QTiltSensor::calibrate commendable public /work/build/qt5_workdir/w/s/qtsensors/src/sensors/qtiltsensor.h non plain false false void [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSql/QSqlDatabase.txt b/internal/binding/dump/QtSql/QSqlDatabase.txt new file mode 100755 index 00000000..d06c762c --- /dev/null +++ b/internal/binding/dump/QtSql/QSqlDatabase.txt @@ -0,0 +1,49 @@ +######################################## FUNCTIONS ######################################## +&{addDatabase QSqlDatabase::addDatabase commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.cpp non plain true true 2 QSqlDatabase [0xc8216be5c0 0xc8216be700] } +&{addDatabase QSqlDatabase::addDatabase commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.cpp non plain true false QSqlDatabase [0xc8216beb00 0xc8216bebe0] } +&{QSqlDatabase QSqlDatabase::QSqlDatabase commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non constructor false false [] } +&{QSqlDatabase QSqlDatabase::QSqlDatabase commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non constructor false true 2 [0xc8216bf220] } +&{QSqlDatabase QSqlDatabase::QSqlDatabase commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non constructor false true 4 [0xc8216bf7e0] } +&{QSqlDatabase QSqlDatabase::QSqlDatabase commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non constructor false true 3 [0xc8216bfba0] } +&{cloneDatabase QSqlDatabase::cloneDatabase commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain true false QSqlDatabase [0xc8216800c0 0xc821680200] } +&{close QSqlDatabase::close commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false void [] } +&{commit QSqlDatabase::commit commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false bool [] } +&{connectOptions QSqlDatabase::connectOptions commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false QString [] } +&{connectionName QSqlDatabase::connectionName commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false QString [] } +&{connectionNames QSqlDatabase::connectionNames commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain true false QStringList [] } +&{contains QSqlDatabase::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain true false bool [0xc821680ec0] } +&{database QSqlDatabase::database commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain true false QSqlDatabase [0xc8216811a0 0xc8216812e0] } +&{databaseName QSqlDatabase::databaseName commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false QString [] } +&{driver QSqlDatabase::driver commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false QSqlDriver * [] } +&{driverName QSqlDatabase::driverName commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false QString [] } +&{drivers QSqlDatabase::drivers commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain true false QStringList [] } +&{exec QSqlDatabase::exec commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false QSqlQuery [0xc821681e40] } +&{hostName QSqlDatabase::hostName commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false QString [] } +&{isDriverAvailable QSqlDatabase::isDriverAvailable commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain true false bool [0xc82165e340] } +&{isOpen QSqlDatabase::isOpen commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false bool [] } +&{isOpenError QSqlDatabase::isOpenError commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false bool [] } +&{isValid QSqlDatabase::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false bool [] } +&{lastError QSqlDatabase::lastError commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false QSqlError [] } +&{numericalPrecisionPolicy QSqlDatabase::numericalPrecisionPolicy commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false QSql::NumericalPrecisionPolicy [] } +&{open QSqlDatabase::open commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false bool [] } +&{open QSqlDatabase::open commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false true 2 bool [0xc82165f280 0xc82165f340] } +&{operator= QSqlDatabase::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false QSqlDatabase & [0xc82165f780] } +&{password QSqlDatabase::password commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false QString [] } +&{port QSqlDatabase::port commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false int [] } +&{primaryIndex QSqlDatabase::primaryIndex commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false QSqlIndex [0xc82165ffa0] } +&{record QSqlDatabase::record commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false QSqlRecord [0xc8226ee2c0] } +&{registerSqlDriver QSqlDatabase::registerSqlDriver commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain true false void [0xc8226ee5a0 0xc8226ee6c0] } +&{removeDatabase QSqlDatabase::removeDatabase commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain true false void [0xc8226ee9a0] } +&{rollback QSqlDatabase::rollback commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false bool [] } +&{setConnectOptions QSqlDatabase::setConnectOptions commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false void [0xc8226eee20] } +&{setDatabaseName QSqlDatabase::setDatabaseName commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false void [0xc8226ef0a0] } +&{setHostName QSqlDatabase::setHostName commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false void [0xc8226ef360] } +&{setNumericalPrecisionPolicy QSqlDatabase::setNumericalPrecisionPolicy commendable unsupported_cppEnum /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false void [0xc8226ef620] } +&{setPassword QSqlDatabase::setPassword commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false void [0xc8226ef940] } +&{setPort QSqlDatabase::setPort commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false void [0xc8226efc00] } +&{setUserName QSqlDatabase::setUserName commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false void [0xc8226eff00] } +&{tables QSqlDatabase::tables commendable unsupported_cppEnum /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false QStringList [0xc8216242a0] } +&{transaction QSqlDatabase::transaction commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false bool [] } +&{userName QSqlDatabase::userName commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non plain false false QString [] } +&{~QSqlDatabase QSqlDatabase::~QSqlDatabase commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSql/QSqlDriver.txt b/internal/binding/dump/QtSql/QSqlDriver.txt new file mode 100755 index 00000000..cfef26a3 --- /dev/null +++ b/internal/binding/dump/QtSql/QSqlDriver.txt @@ -0,0 +1,39 @@ +######################################## FUNCTIONS ######################################## +&{QSqlDriver QSqlDriver::QSqlDriver commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h non constructor false false [0xc8215dcc40] } +&{beginTransaction QSqlDriver::beginTransaction commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h impure plain false false bool [] } +&{close QSqlDriver::close commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h pure plain false false void [] } +&{commitTransaction QSqlDriver::commitTransaction commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h impure plain false false bool [] } +&{createResult QSqlDriver::createResult commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h pure plain false false QSqlResult * [] } +&{dbmsType QSqlDriver::dbmsType commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h non plain false false DbmsType [] } +&{escapeIdentifier QSqlDriver::escapeIdentifier commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h impure plain false false QString [0xc8215b0160 0xc8215b0280] } +&{formatValue QSqlDriver::formatValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h impure plain false false QString [0xc8215b05c0 0xc8215b0760] } +&{handle QSqlDriver::handle commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h impure plain false false QVariant [] } +&{hasFeature QSqlDriver::hasFeature commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h pure plain false false bool [0xc8215b0ce0] } +&{isIdentifierEscaped QSqlDriver::isIdentifierEscaped commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h impure plain false false bool [0xc8215b1020 0xc8215b1140] } +&{isOpen QSqlDriver::isOpen commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h impure plain false false bool [] } +&{isOpenError QSqlDriver::isOpenError commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h non plain false false bool [] } +&{lastError QSqlDriver::lastError commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h non plain false false QSqlError [] } +&{notification QSqlDriver::notification commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h non signal false false void [0xc8215b1ac0] } +&{notification QSqlDriver::notification commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h non signal false true 2 void [0xc8215b1e00 0xc8215b1f60 0xc8215a0040] } +&{numericalPrecisionPolicy QSqlDriver::numericalPrecisionPolicy commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h non plain false false QSql::NumericalPrecisionPolicy [] } +&{open QSqlDriver::open commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h pure plain false false bool [0xc8215a0500 0xc8215a06e0 0xc8215a0780 0xc8215a0820 0xc8215a0980 0xc8215a0ac0] } +&{primaryIndex QSqlDriver::primaryIndex commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h impure plain false false QSqlIndex [0xc8215a0da0] } +&{record QSqlDriver::record commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h impure plain false false QSqlRecord [0xc8215a1140] } +&{rollbackTransaction QSqlDriver::rollbackTransaction commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h impure plain false false bool [] } +&{setLastError QSqlDriver::setLastError commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h impure plain false false void [0xc8215a1740] } +&{setNumericalPrecisionPolicy QSqlDriver::setNumericalPrecisionPolicy commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h non plain false false void [0xc8215a1b00] } +&{setOpen QSqlDriver::setOpen commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h impure plain false false void [0xc8215a1fa0] } +&{setOpenError QSqlDriver::setOpenError commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h impure plain false false void [0xc82158c320] } +&{sqlStatement QSqlDriver::sqlStatement commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h impure plain false false QString [0xc82158c640 0xc82158c720 0xc82158c840 0xc82158ca40] } +&{stripDelimiters QSqlDriver::stripDelimiters commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h impure plain false false QString [0xc82158ce00 0xc82158ce80] } +&{subscribeToNotification QSqlDriver::subscribeToNotification commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h impure plain false false bool [0xc82158d180] } +&{subscribedToNotifications QSqlDriver::subscribedToNotifications commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h impure plain false false QStringList [] } +&{tables QSqlDriver::tables commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h impure plain false false QStringList [0xc82158d660] } +&{unsubscribeFromNotification QSqlDriver::unsubscribeFromNotification commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h impure plain false false bool [0xc82158d980] } +&{~QSqlDriver QSqlDriver::~QSqlDriver commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriver.h non destructor false false [] } +######################################## ENUMS ######################################## +&{DbmsType QSqlDriver::DbmsType commendable public [0xc8216258a0 0xc821625960 0xc821625a20 0xc821625b40 0xc821625ca0 0xc821625dc0 0xc821625ee0 0xc821625f80 0xc8216040c0]} +&{DriverFeature QSqlDriver::DriverFeature commendable public [0xc8216043e0 0xc821604520 0xc821604600 0xc8216046c0 0xc821604860 0xc821604980 0xc821604ae0 0xc821604d00 0xc821604e60 0xc821604f00 0xc821605000 0xc821605200 0xc821605380 0xc821605460 0xc8216055e0]} +&{IdentifierType QSqlDriver::IdentifierType commendable public [0xc8216058e0 0xc821605a00]} +&{NotificationSource QSqlDriver::NotificationSource commendable public [0xc821605da0 0xc821605ec0 0xc821605fe0]} +&{StatementType QSqlDriver::StatementType commendable public [0xc8215dc3a0 0xc8215dc480 0xc8215dc540 0xc8215dc660 0xc8215dc820]} diff --git a/internal/binding/dump/QtSql/QSqlDriverCreator.txt b/internal/binding/dump/QtSql/QSqlDriverCreator.txt new file mode 100755 index 00000000..62cbd6fd --- /dev/null +++ b/internal/binding/dump/QtSql/QSqlDriverCreator.txt @@ -0,0 +1,3 @@ +######################################## FUNCTIONS ######################################## +&{createObject QSqlDriverCreator::createObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h impure plain false false QSqlDriver * [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSql/QSqlDriverCreatorBase.txt b/internal/binding/dump/QtSql/QSqlDriverCreatorBase.txt new file mode 100755 index 00000000..35384374 --- /dev/null +++ b/internal/binding/dump/QtSql/QSqlDriverCreatorBase.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{createObject QSqlDriverCreatorBase::createObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h pure plain false false QSqlDriver * [] } +&{~QSqlDriverCreatorBase QSqlDriverCreatorBase::~QSqlDriverCreatorBase commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldatabase.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSql/QSqlDriverPlugin.txt b/internal/binding/dump/QtSql/QSqlDriverPlugin.txt new file mode 100755 index 00000000..ec034c3d --- /dev/null +++ b/internal/binding/dump/QtSql/QSqlDriverPlugin.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{QSqlDriverPlugin QSqlDriverPlugin::QSqlDriverPlugin commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriverplugin.h non constructor false false [0xc82157e000] } +&{create QSqlDriverPlugin::create commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriverplugin.h pure plain false false QSqlDriver * [0xc82157e340] } +&{~QSqlDriverPlugin QSqlDriverPlugin::~QSqlDriverPlugin commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqldriverplugin.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSql/QSqlError.txt b/internal/binding/dump/QtSql/QSqlError.txt new file mode 100755 index 00000000..6335b579 --- /dev/null +++ b/internal/binding/dump/QtSql/QSqlError.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QSqlError QSqlError::QSqlError commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlerror.h non constructor false true 3 [0xc82156e540] } +&{QSqlError QSqlError::QSqlError commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlerror.h non constructor false false [0xc82156e8e0 0xc82156e9a0 0xc82156eb00 0xc82156ec20] } +&{databaseText QSqlError::databaseText commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlerror.h non plain false false QString [] } +&{driverText QSqlError::driverText commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlerror.h non plain false false QString [] } +&{isValid QSqlError::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlerror.h non plain false false bool [] } +&{nativeErrorCode QSqlError::nativeErrorCode commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlerror.h non plain false false QString [] } +&{operator!= QSqlError::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlerror.h non plain false false bool [0xc82156fc60] } +&{operator= QSqlError::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlerror.h non plain false false QSqlError & [0xc821562060] } +&{operator== QSqlError::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlerror.h non plain false false bool [0xc821562420] } +&{text QSqlError::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlerror.h non plain false false QString [] } +&{type QSqlError::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlerror.h non plain false false ErrorType [] } +&{~QSqlError QSqlError::~QSqlError commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlerror.h non destructor false false [] } +######################################## ENUMS ######################################## +&{ErrorType QSqlError::ErrorType commendable public [0xc82157fd80 0xc82157fec0 0xc82157ff80 0xc82156e040 0xc82156e1a0]} diff --git a/internal/binding/dump/QtSql/QSqlField.txt b/internal/binding/dump/QtSql/QSqlField.txt new file mode 100755 index 00000000..21ed4617 --- /dev/null +++ b/internal/binding/dump/QtSql/QSqlField.txt @@ -0,0 +1,33 @@ +######################################## FUNCTIONS ######################################## +&{QSqlField QSqlField::QSqlField commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non constructor false true 2 [0xc821563300] } +&{QSqlField QSqlField::QSqlField commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non constructor false false [0xc821563680 0xc821563780] } +&{clear QSqlField::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non plain false false void [] } +&{defaultValue QSqlField::defaultValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non plain false false QVariant [] } +&{isAutoValue QSqlField::isAutoValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non plain false false bool [] } +&{isGenerated QSqlField::isGenerated commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non plain false false bool [] } +&{isNull QSqlField::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non plain false false bool [] } +&{isReadOnly QSqlField::isReadOnly commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non plain false false bool [] } +&{isValid QSqlField::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non plain false false bool [] } +&{length QSqlField::length commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non plain false false int [] } +&{name QSqlField::name commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non plain false false QString [] } +&{operator!= QSqlField::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non plain false false bool [0xc82154ecc0] } +&{operator= QSqlField::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non plain false false QSqlField & [0xc82154f1e0] } +&{operator== QSqlField::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non plain false false bool [0xc82154f640] } +&{precision QSqlField::precision commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non plain false false int [] } +&{requiredStatus QSqlField::requiredStatus commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non plain false false RequiredStatus [] } +&{setAutoValue QSqlField::setAutoValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non plain false false void [0xc82154fea0] } +&{setDefaultValue QSqlField::setDefaultValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non plain false false void [0xc8215401e0] } +&{setGenerated QSqlField::setGenerated commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non plain false false void [0xc821540540] } +&{setLength QSqlField::setLength commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non plain false false void [0xc8215408c0] } +&{setName QSqlField::setName commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non plain false false void [0xc821540c00] } +&{setPrecision QSqlField::setPrecision commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non plain false false void [0xc821540f80] } +&{setReadOnly QSqlField::setReadOnly commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non plain false false void [0xc821541320] } +&{setRequired QSqlField::setRequired commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non plain false false void [0xc8215416a0] } +&{setRequiredStatus QSqlField::setRequiredStatus commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non plain false false void [0xc821541a40] } +&{setType QSqlField::setType commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non plain false false void [0xc82152a2c0] } +&{setValue QSqlField::setValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non plain false false void [0xc82152a640] } +&{type QSqlField::type commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non plain false false QVariant::Type [] } +&{value QSqlField::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non plain false false QVariant [] } +&{~QSqlField QSqlField::~QSqlField commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlfield.h non destructor false false [] } +######################################## ENUMS ######################################## +&{RequiredStatus QSqlField::RequiredStatus commendable public [0xc821562d00 0xc821562de0 0xc821562f00]} diff --git a/internal/binding/dump/QtSql/QSqlIndex.txt b/internal/binding/dump/QtSql/QSqlIndex.txt new file mode 100755 index 00000000..cfe6a8fa --- /dev/null +++ b/internal/binding/dump/QtSql/QSqlIndex.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QSqlIndex QSqlIndex::QSqlIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlindex.h non constructor false true 2 [0xc82152af20] } +&{QSqlIndex QSqlIndex::QSqlIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlindex.h non constructor false false [0xc82152b2e0 0xc82152b3e0] } +&{append QSqlIndex::append commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlindex.h non plain false false void [0xc82152b760] } +&{append QSqlIndex::append commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlindex.h non plain false true 2 void [0xc82152bb40 0xc82152bc40] } +&{cursorName QSqlIndex::cursorName commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlindex.h non plain false false QString [] } +&{isDescending QSqlIndex::isDescending commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlindex.h non plain false false bool [0xc8215146a0] } +&{name QSqlIndex::name commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlindex.h non plain false false QString [] } +&{operator= QSqlIndex::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlindex.h non plain false false QSqlIndex & [0xc821514b60] } +&{setCursorName QSqlIndex::setCursorName commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlindex.h non plain false false void [0xc821514f60] } +&{setDescending QSqlIndex::setDescending commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlindex.h non plain false false void [0xc8215152a0 0xc821515380] } +&{setName QSqlIndex::setName commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlindex.h non plain false false void [0xc8215156a0] } +&{~QSqlIndex QSqlIndex::~QSqlIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlindex.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSql/QSqlQuery.txt b/internal/binding/dump/QtSql/QSqlQuery.txt new file mode 100755 index 00000000..91ee08fa --- /dev/null +++ b/internal/binding/dump/QtSql/QSqlQuery.txt @@ -0,0 +1,48 @@ +######################################## FUNCTIONS ######################################## +&{QSqlQuery QSqlQuery::QSqlQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non constructor false true 3 [0xc8215044a0] } +&{QSqlQuery QSqlQuery::QSqlQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non constructor false false [0xc821504840] } +&{QSqlQuery QSqlQuery::QSqlQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non constructor false true 4 [0xc821504ba0] } +&{QSqlQuery QSqlQuery::QSqlQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non constructor false true 2 [0xc821504f00 0xc821505000] } +&{addBindValue QSqlQuery::addBindValue commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false void [0xc8215053c0 0xc8215054c0] } +&{at QSqlQuery::at commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false int [] } +&{bindValue QSqlQuery::bindValue commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false void [0xc821505880 0xc8215059e0 0xc821505b00] } +&{bindValue QSqlQuery::bindValue commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false true 2 void [0xc821505de0 0xc821505f20 0xc821505fa0] } +&{boundValue QSqlQuery::boundValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false QVariant [0xc8214f22e0] } +&{boundValue QSqlQuery::boundValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false true 2 QVariant [0xc8214f25a0] } +&{boundValues QSqlQuery::boundValues commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false QMap [] } +&{clear QSqlQuery::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false void [] } +&{driver QSqlQuery::driver commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false const QSqlDriver * [] } +&{exec QSqlQuery::exec commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false true 2 bool [] } +&{exec QSqlQuery::exec commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false bool [0xc8214f2ea0] } +&{execBatch QSqlQuery::execBatch commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false bool [0xc8214f3240] } +&{executedQuery QSqlQuery::executedQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false QString [] } +&{finish QSqlQuery::finish commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false void [] } +&{first QSqlQuery::first commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false bool [] } +&{isActive QSqlQuery::isActive commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false bool [] } +&{isForwardOnly QSqlQuery::isForwardOnly commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false bool [] } +&{isNull QSqlQuery::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false true 2 bool [0xc8214f3e80] } +&{isNull QSqlQuery::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false bool [0xc8214e2220] } +&{isSelect QSqlQuery::isSelect commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false bool [] } +&{isValid QSqlQuery::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false bool [] } +&{last QSqlQuery::last commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false bool [] } +&{lastError QSqlQuery::lastError commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false QSqlError [] } +&{lastInsertId QSqlQuery::lastInsertId commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false QVariant [] } +&{lastQuery QSqlQuery::lastQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false QString [] } +&{next QSqlQuery::next commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false bool [] } +&{nextResult QSqlQuery::nextResult commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false bool [] } +&{numRowsAffected QSqlQuery::numRowsAffected commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false int [] } +&{numericalPrecisionPolicy QSqlQuery::numericalPrecisionPolicy commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false QSql::NumericalPrecisionPolicy [] } +&{operator= QSqlQuery::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false QSqlQuery & [0xc8214e3700] } +&{prepare QSqlQuery::prepare commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false bool [0xc8214e3a20] } +&{previous QSqlQuery::previous commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false bool [] } +&{record QSqlQuery::record commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false QSqlRecord [] } +&{result QSqlQuery::result commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false const QSqlResult * [] } +&{seek QSqlQuery::seek commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false bool [0xc8214d2180 0xc8214d22a0] } +&{setForwardOnly QSqlQuery::setForwardOnly commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false void [0xc8214d25e0] } +&{setNumericalPrecisionPolicy QSqlQuery::setNumericalPrecisionPolicy commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false void [0xc8214d2960] } +&{size QSqlQuery::size commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false int [] } +&{value QSqlQuery::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false true 2 QVariant [0xc8214d2ce0] } +&{value QSqlQuery::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non plain false false QVariant [0xc8214d3020] } +&{~QSqlQuery QSqlQuery::~QSqlQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlquery.h non destructor false false [] } +######################################## ENUMS ######################################## +&{BatchExecutionMode QSqlQuery::BatchExecutionMode commendable public [0xc821515fc0 0xc8215040c0]} diff --git a/internal/binding/dump/QtSql/QSqlQueryModel.txt b/internal/binding/dump/QtSql/QSqlQueryModel.txt new file mode 100755 index 00000000..da797b7b --- /dev/null +++ b/internal/binding/dump/QtSql/QSqlQueryModel.txt @@ -0,0 +1,23 @@ +######################################## FUNCTIONS ######################################## +&{rowCount QSqlQueryModel::rowCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlquerymodel.cpp impure plain false false int [0xc821191380] } +&{QSqlQueryModel QSqlQueryModel::QSqlQueryModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlquerymodel.h non constructor false false [0xc821191820] } +&{data QSqlQueryModel::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlquerymodel.h impure plain false false QVariant [0xc8211485a0 0xc8211487a0] } +&{canFetchMore QSqlQueryModel::canFetchMore commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlquerymodel.h impure plain false false bool [0xc821148fa0] } +&{clear QSqlQueryModel::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlquerymodel.h impure plain false false void [] } +&{columnCount QSqlQueryModel::columnCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlquerymodel.h impure plain false false int [0xc8211497c0] } +&{fetchMore QSqlQueryModel::fetchMore commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlquerymodel.h impure plain false false void [0xc82270c000] } +&{headerData QSqlQueryModel::headerData commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlquerymodel.h impure plain false false QVariant [0xc82270c280 0xc82270c320 0xc82270c3e0] } +&{indexInQuery QSqlQueryModel::indexInQuery commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlquerymodel.h impure plain false false QModelIndex [0xc82270c660] } +&{insertColumns QSqlQueryModel::insertColumns commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlquerymodel.h impure plain false false bool [0xc82270c8e0 0xc82270c980 0xc82270ca80] } +&{lastError QSqlQueryModel::lastError commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlquerymodel.h non plain false false QSqlError [] } +&{query QSqlQueryModel::query commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlquerymodel.h non plain false false QSqlQuery [] } +&{queryChange QSqlQueryModel::queryChange commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlquerymodel.h impure plain false false void [] } +&{record QSqlQueryModel::record commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlquerymodel.h non plain false true 2 QSqlRecord [] } +&{record QSqlQueryModel::record commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlquerymodel.h non plain false false QSqlRecord [0xc82270d260] } +&{removeColumns QSqlQueryModel::removeColumns commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlquerymodel.h impure plain false false bool [0xc82270d4a0 0xc82270d540 0xc82270d600] } +&{setHeaderData QSqlQueryModel::setHeaderData commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlquerymodel.h impure plain false false bool [0xc82270d880 0xc82270d920 0xc82270d9e0 0xc82270daa0] } +&{setLastError QSqlQueryModel::setLastError commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlquerymodel.h non plain false false void [0xc82270dd00] } +&{setQuery QSqlQueryModel::setQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlquerymodel.h non plain false false void [0xc82270dfe0] } +&{setQuery QSqlQueryModel::setQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlquerymodel.h non plain false true 2 void [0xc82113a4a0 0xc82113a640] } +&{~QSqlQueryModel QSqlQueryModel::~QSqlQueryModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlquerymodel.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSql/QSqlRecord.txt b/internal/binding/dump/QtSql/QSqlRecord.txt new file mode 100755 index 00000000..972fb016 --- /dev/null +++ b/internal/binding/dump/QtSql/QSqlRecord.txt @@ -0,0 +1,34 @@ +######################################## FUNCTIONS ######################################## +&{QSqlRecord QSqlRecord::QSqlRecord commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non constructor false false [] } +&{QSqlRecord QSqlRecord::QSqlRecord commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non constructor false true 2 [0xc8214d3940] } +&{append QSqlRecord::append commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false false void [0xc8214d3d00] } +&{clear QSqlRecord::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false false void [] } +&{clearValues QSqlRecord::clearValues commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false false void [] } +&{contains QSqlRecord::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false false bool [0xc8214c44a0] } +&{count QSqlRecord::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false false int [] } +&{field QSqlRecord::field commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false true 2 QSqlField [0xc8214c4bc0] } +&{field QSqlRecord::field commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false false QSqlField [0xc8214c4f40] } +&{fieldName QSqlRecord::fieldName commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false false QString [0xc8214c52c0] } +&{indexOf QSqlRecord::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false false int [0xc8214c5640] } +&{insert QSqlRecord::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false false void [0xc8214c59a0 0xc8214c5aa0] } +&{isEmpty QSqlRecord::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false false bool [] } +&{isGenerated QSqlRecord::isGenerated commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false false bool [0xc8214b2040] } +&{isGenerated QSqlRecord::isGenerated commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false true 2 bool [0xc8214b2360] } +&{isNull QSqlRecord::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false false bool [0xc8214b26e0] } +&{isNull QSqlRecord::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false true 2 bool [0xc8214b2b00] } +&{keyValues QSqlRecord::keyValues commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false false QSqlRecord [0xc8214b2e80] } +&{operator!= QSqlRecord::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false false bool [0xc8214b32a0] } +&{operator= QSqlRecord::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false false QSqlRecord & [0xc8214b3700] } +&{operator== QSqlRecord::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false false bool [0xc8214b3b00] } +&{remove QSqlRecord::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false false void [0xc8214b3f60] } +&{replace QSqlRecord::replace commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false false void [0xc8214a2320 0xc8214a2400] } +&{setGenerated QSqlRecord::setGenerated commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false false void [0xc8214a2800 0xc8214a2940] } +&{setGenerated QSqlRecord::setGenerated commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false true 2 void [0xc8214a2c80 0xc8214a2d80] } +&{setNull QSqlRecord::setNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false true 2 void [0xc8214a3100] } +&{setNull QSqlRecord::setNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false false void [0xc8214a34c0] } +&{setValue QSqlRecord::setValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false true 2 void [0xc8214a3820 0xc8214a3920] } +&{setValue QSqlRecord::setValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false false void [0xc8214a3c20 0xc8214a3d20] } +&{value QSqlRecord::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false true 2 QVariant [0xc821494060] } +&{value QSqlRecord::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non plain false false QVariant [0xc821494440] } +&{~QSqlRecord QSqlRecord::~QSqlRecord commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlrecord.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSql/QSqlRelation.txt b/internal/binding/dump/QtSql/QSqlRelation.txt new file mode 100755 index 00000000..d5c724e5 --- /dev/null +++ b/internal/binding/dump/QtSql/QSqlRelation.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{QSqlRelation QSqlRelation::QSqlRelation commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlrelationaltablemodel.h non constructor false false [] } +&{QSqlRelation QSqlRelation::QSqlRelation commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlrelationaltablemodel.h non constructor false true 2 [0xc8210f8c80 0xc8210f8da0 0xc8210f8e80] } +&{displayColumn QSqlRelation::displayColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlrelationaltablemodel.h non plain false false QString [] } +&{indexColumn QSqlRelation::indexColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlrelationaltablemodel.h non plain false false QString [] } +&{isValid QSqlRelation::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlrelationaltablemodel.h non plain false false bool [] } +&{tableName QSqlRelation::tableName commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlrelationaltablemodel.h non plain false false QString [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSql/QSqlRelationalDelegate.txt b/internal/binding/dump/QtSql/QSqlRelationalDelegate.txt new file mode 100755 index 00000000..19b3cb43 --- /dev/null +++ b/internal/binding/dump/QtSql/QSqlRelationalDelegate.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QSqlRelationalDelegate QSqlRelationalDelegate::QSqlRelationalDelegate commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlrelationaldelegate.h non constructor false false [0xc821119160] } +&{createEditor QSqlRelationalDelegate::createEditor commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlrelationaldelegate.h non plain false false QWidget * [0xc8211193e0 0xc821119660 0xc821119820] } +&{setModelData QSqlRelationalDelegate::setModelData commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlrelationaldelegate.h non plain false false void [0xc821119c80 0xc821119e20 0xc8210f8080] } +&{~QSqlRelationalDelegate QSqlRelationalDelegate::~QSqlRelationalDelegate commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlrelationaldelegate.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSql/QSqlRelationalTableModel.txt b/internal/binding/dump/QtSql/QSqlRelationalTableModel.txt new file mode 100755 index 00000000..fbebca2f --- /dev/null +++ b/internal/binding/dump/QtSql/QSqlRelationalTableModel.txt @@ -0,0 +1,20 @@ +######################################## FUNCTIONS ######################################## +&{QSqlRelationalTableModel QSqlRelationalTableModel::QSqlRelationalTableModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlrelationaltablemodel.h non constructor false false [0xc8210f6520 0xc8210f6620] } +&{clear QSqlRelationalTableModel::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlrelationaltablemodel.h impure plain false false void [] } +&{data QSqlRelationalTableModel::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlrelationaltablemodel.h impure plain false false QVariant [0xc8210f6c00 0xc8210f6da0] } +&{insertRowIntoTable QSqlRelationalTableModel::insertRowIntoTable commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlrelationaltablemodel.h impure plain false false bool [0xc8210f7080] } +&{orderByClause QSqlRelationalTableModel::orderByClause commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlrelationaltablemodel.h impure plain false false QString [] } +&{relation QSqlRelationalTableModel::relation commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlrelationaltablemodel.h non plain false false QSqlRelation [0xc8210f75a0] } +&{relationModel QSqlRelationalTableModel::relationModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlrelationaltablemodel.h impure plain false false QSqlTableModel * [0xc8210f77c0] } +&{removeColumns QSqlRelationalTableModel::removeColumns commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlrelationaltablemodel.h impure plain false false bool [0xc8210f7aa0 0xc8210f7c00 0xc8210f7cc0] } +&{revertRow QSqlRelationalTableModel::revertRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlrelationaltablemodel.h impure slot false false void [0xc8210f0060] } +&{select QSqlRelationalTableModel::select commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlrelationaltablemodel.h impure plain false false bool [] } +&{selectStatement QSqlRelationalTableModel::selectStatement commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlrelationaltablemodel.h impure plain false false QString [] } +&{setData QSqlRelationalTableModel::setData commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlrelationaltablemodel.h impure plain false false bool [0xc8210f03a0 0xc8210f04a0 0xc8210f0520] } +&{setJoinMode QSqlRelationalTableModel::setJoinMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlrelationaltablemodel.h non plain false false void [0xc8210f0680] } +&{setRelation QSqlRelationalTableModel::setRelation commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlrelationaltablemodel.h impure plain false false void [0xc8210f07e0 0xc8210f0880] } +&{setTable QSqlRelationalTableModel::setTable commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlrelationaltablemodel.h impure plain false false void [0xc8210f0a20] } +&{updateRowInTable QSqlRelationalTableModel::updateRowInTable commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlrelationaltablemodel.h impure plain false false bool [0xc8210f0b80 0xc8210f0c20] } +&{~QSqlRelationalTableModel QSqlRelationalTableModel::~QSqlRelationalTableModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqlrelationaltablemodel.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{JoinMode QSqlRelationalTableModel::JoinMode commendable public [0xc8210f6080 0xc8210f6140]} diff --git a/internal/binding/dump/QtSql/QSqlResult.txt b/internal/binding/dump/QtSql/QSqlResult.txt new file mode 100755 index 00000000..4204c20d --- /dev/null +++ b/internal/binding/dump/QtSql/QSqlResult.txt @@ -0,0 +1,50 @@ +######################################## FUNCTIONS ######################################## +&{QSqlResult QSqlResult::QSqlResult commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h non constructor false false [0xc821495120] } +&{addBindValue QSqlResult::addBindValue commendable unsupported_cppEnum /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h non plain false false void [0xc821495d00 0xc821495e80] } +&{at QSqlResult::at commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h non plain false false int [] } +&{bindValue QSqlResult::bindValue commendable unsupported_cppEnum /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h impure plain false true 2 void [0xc821484360 0xc821484460 0xc8214845c0] } +&{bindValue QSqlResult::bindValue commendable unsupported_cppEnum /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h impure plain false false void [0xc8214848a0 0xc821484a60 0xc821484b00] } +&{bindValueType QSqlResult::bindValueType commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h non plain false true 2 QSql::ParamType [0xc821484ea0] } +&{bindValueType QSqlResult::bindValueType commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h non plain false false QSql::ParamType [0xc821485180] } +&{bindingSyntax QSqlResult::bindingSyntax commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h non plain false false BindingSyntax [] } +&{boundValue QSqlResult::boundValue commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h non plain false true 2 QVariant [0xc821485700] } +&{boundValue QSqlResult::boundValue commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h non plain false false QVariant [0xc821485a80] } +&{boundValueCount QSqlResult::boundValueCount commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h non plain false false int [] } +&{boundValueName QSqlResult::boundValueName commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h non plain false false QString [0xc821470040] } +&{boundValues QSqlResult::boundValues commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h non plain false false QVector & [] } +&{clear QSqlResult::clear commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h non plain false false void [] } +&{data QSqlResult::data commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h pure plain false false QVariant [0xc821470860] } +&{driver QSqlResult::driver commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h non plain false false const QSqlDriver * [] } +&{exec QSqlResult::exec commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h impure plain false false bool [] } +&{executedQuery QSqlResult::executedQuery commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h non plain false false QString [] } +&{fetch QSqlResult::fetch commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h pure plain false false bool [0xc821471960] } +&{fetchFirst QSqlResult::fetchFirst commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h pure plain false false bool [] } +&{fetchLast QSqlResult::fetchLast commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h pure plain false false bool [] } +&{fetchNext QSqlResult::fetchNext commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h impure plain false false bool [] } +&{fetchPrevious QSqlResult::fetchPrevious commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h impure plain false false bool [] } +&{handle QSqlResult::handle commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h impure plain false false QVariant [] } +&{hasOutValues QSqlResult::hasOutValues commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h non plain false false bool [] } +&{isActive QSqlResult::isActive commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h non plain false false bool [] } +&{isForwardOnly QSqlResult::isForwardOnly commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h non plain false false bool [] } +&{isNull QSqlResult::isNull commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h pure plain false false bool [0xc821462c40] } +&{isSelect QSqlResult::isSelect commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h non plain false false bool [] } +&{isValid QSqlResult::isValid commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h non plain false false bool [] } +&{lastError QSqlResult::lastError commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h non plain false false QSqlError [] } +&{lastInsertId QSqlResult::lastInsertId commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h impure plain false false QVariant [] } +&{lastQuery QSqlResult::lastQuery commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h non plain false false QString [] } +&{numRowsAffected QSqlResult::numRowsAffected commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h pure plain false false int [] } +&{prepare QSqlResult::prepare commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h impure plain false false bool [0xc821463f00] } +&{record QSqlResult::record commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h impure plain false false QSqlRecord [] } +&{reset QSqlResult::reset commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h pure plain false false bool [0xc8214504a0] } +&{resetBindCount QSqlResult::resetBindCount commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h non plain false false void [] } +&{savePrepare QSqlResult::savePrepare commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h impure plain false false bool [0xc821450a20] } +&{setActive QSqlResult::setActive commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h impure plain false false void [0xc821450da0] } +&{setAt QSqlResult::setAt commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h impure plain false false void [0xc821451180] } +&{setForwardOnly QSqlResult::setForwardOnly commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h impure plain false false void [0xc8214514e0] } +&{setLastError QSqlResult::setLastError commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h impure plain false false void [0xc821451880] } +&{setQuery QSqlResult::setQuery commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h impure plain false false void [0xc821451ca0] } +&{setSelect QSqlResult::setSelect commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h impure plain false false void [0xc821451f80] } +&{size QSqlResult::size commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h pure plain false false int [] } +&{~QSqlResult QSqlResult::~QSqlResult commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/kernel/qsqlresult.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{BindingSyntax QSqlResult::BindingSyntax commendable protected [0xc821494b20 0xc821494c20]} diff --git a/internal/binding/dump/QtSql/QSqlTableModel.txt b/internal/binding/dump/QtSql/QSqlTableModel.txt new file mode 100755 index 00000000..898206d7 --- /dev/null +++ b/internal/binding/dump/QtSql/QSqlTableModel.txt @@ -0,0 +1,51 @@ +######################################## FUNCTIONS ######################################## +&{QSqlTableModel QSqlTableModel::QSqlTableModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h non constructor false false [0xc8210f1300 0xc8210f1380] } +&{beforeDelete QSqlTableModel::beforeDelete commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h non signal false false void [0xc8210f1860] } +&{beforeInsert QSqlTableModel::beforeInsert commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h non signal false false void [0xc8210f1a20] } +&{beforeUpdate QSqlTableModel::beforeUpdate commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h non signal false false void [0xc8210f1c00 0xc8210f1c80] } +&{clear QSqlTableModel::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h impure plain false false void [] } +&{data QSqlTableModel::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h impure plain false false QVariant [0xc8210f1f40 0xc8210d2000] } +&{database QSqlTableModel::database commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h non plain false false QSqlDatabase [] } +&{deleteRowFromTable QSqlTableModel::deleteRowFromTable commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h impure plain false false bool [0xc8210d27a0] } +&{editStrategy QSqlTableModel::editStrategy commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h non plain false false EditStrategy [] } +&{fieldIndex QSqlTableModel::fieldIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h non plain false false int [0xc8210d2d40] } +&{filter QSqlTableModel::filter commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h non plain false false QString [] } +&{flags QSqlTableModel::flags commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h impure plain false false Qt::ItemFlags [0xc8210d3440] } +&{headerData QSqlTableModel::headerData commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h impure plain false false QVariant [0xc8210d3920 0xc8210d3a20 0xc8210d3b80] } +&{indexInQuery QSqlTableModel::indexInQuery commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h impure plain false false QModelIndex [0xc8210b4080] } +&{insertRecord QSqlTableModel::insertRecord commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h non plain false false bool [0xc8210b4560 0xc8210b4760] } +&{insertRowIntoTable QSqlTableModel::insertRowIntoTable commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h impure plain false false bool [0xc8210b4c60] } +&{insertRows QSqlTableModel::insertRows commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h impure plain false false bool [0xc8210b5180 0xc8210b5240 0xc8210b5340] } +&{isDirty QSqlTableModel::isDirty commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h non plain false true 2 bool [] } +&{isDirty QSqlTableModel::isDirty commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h non plain false false bool [0xc8210b5ba0] } +&{orderByClause QSqlTableModel::orderByClause commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h impure plain false false QString [] } +&{primaryKey QSqlTableModel::primaryKey commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h non plain false false QSqlIndex [] } +&{primaryValues QSqlTableModel::primaryValues commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h non plain false false QSqlRecord [0xc82107e3e0] } +&{primeInsert QSqlTableModel::primeInsert commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h non signal false false void [0xc82107e820 0xc82107e960] } +&{record QSqlTableModel::record commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h non plain false false QSqlRecord [] } +&{record QSqlTableModel::record commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h non plain false true 2 QSqlRecord [0xc82107f000] } +&{removeColumns QSqlTableModel::removeColumns commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h impure plain false false bool [0xc82107f440 0xc82107f4e0 0xc82107f680] } +&{removeRows QSqlTableModel::removeRows commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h impure plain false false bool [0xc82107fba0 0xc82107fca0 0xc82107fe80] } +&{revert QSqlTableModel::revert commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h impure slot false false void [] } +&{revertAll QSqlTableModel::revertAll commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h non slot false false void [] } +&{revertRow QSqlTableModel::revertRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h impure plain false false void [0xc8210727a0] } +&{rowCount QSqlTableModel::rowCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h impure plain false false int [0xc821072c80] } +&{select QSqlTableModel::select commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h impure slot false false bool [] } +&{selectRow QSqlTableModel::selectRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h impure slot false false bool [0xc821073440] } +&{selectStatement QSqlTableModel::selectStatement commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h impure plain false false QString [] } +&{setData QSqlTableModel::setData commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h impure plain false false bool [0xc821073ac0 0xc821073c20 0xc821073de0] } +&{setEditStrategy QSqlTableModel::setEditStrategy commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h impure plain false false void [0xc821042240] } +&{setFilter QSqlTableModel::setFilter commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h impure plain false false void [0xc821042660] } +&{setPrimaryKey QSqlTableModel::setPrimaryKey commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h non plain false false void [0xc821042aa0] } +&{setQuery QSqlTableModel::setQuery commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h non plain false false void [0xc821042f80] } +&{setRecord QSqlTableModel::setRecord commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h non plain false false bool [0xc8210433e0 0xc8210435c0] } +&{setSort QSqlTableModel::setSort commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h impure plain false false void [0xc821043ae0 0xc821043c40] } +&{setTable QSqlTableModel::setTable commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h impure plain false false void [0xc821034020] } +&{sort QSqlTableModel::sort commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h impure plain false false void [0xc821034360 0xc821034460] } +&{submit QSqlTableModel::submit commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h impure slot false false bool [] } +&{submitAll QSqlTableModel::submitAll commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h non slot false false bool [] } +&{tableName QSqlTableModel::tableName commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h non plain false false QString [] } +&{updateRowInTable QSqlTableModel::updateRowInTable commendable protected /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h impure plain false false bool [0xc821034c80 0xc821034d60] } +&{~QSqlTableModel QSqlTableModel::~QSqlTableModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/sql/models/qsqltablemodel.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{EditStrategy QSqlTableModel::EditStrategy commendable public [0xc8210f1000 0xc8210f1080 0xc8210f1100]} diff --git a/internal/binding/dump/QtSvg/QGraphicsSvgItem.txt b/internal/binding/dump/QtSvg/QGraphicsSvgItem.txt new file mode 100755 index 00000000..546e21ca --- /dev/null +++ b/internal/binding/dump/QtSvg/QGraphicsSvgItem.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QGraphicsSvgItem QGraphicsSvgItem::QGraphicsSvgItem commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qgraphicssvgitem.h non constructor false false [0xc8225c2ac0] } +&{QGraphicsSvgItem QGraphicsSvgItem::QGraphicsSvgItem commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qgraphicssvgitem.h non constructor false true 2 [0xc8225c2c20 0xc8225c2ca0] } +&{boundingRect QGraphicsSvgItem::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtsvg/src/svg/qgraphicssvgitem.h impure plain false false QRectF [] } +&{elementId QGraphicsSvgItem::elementId commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qgraphicssvgitem.h non plain false false QString [] } +&{maximumCacheSize QGraphicsSvgItem::maximumCacheSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtsvg/src/svg/qgraphicssvgitem.h non plain false false QSize [] } +&{paint QGraphicsSvgItem::paint commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qgraphicssvgitem.h impure plain false false void [0xc8225c3400 0xc8225c34a0 0xc8225c3560] } +&{renderer QGraphicsSvgItem::renderer commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qgraphicssvgitem.h non plain false false QSvgRenderer * [] } +&{setElementId QGraphicsSvgItem::setElementId commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qgraphicssvgitem.h non plain false false void [0xc8225c3a40] } +&{setMaximumCacheSize QGraphicsSvgItem::setMaximumCacheSize commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qgraphicssvgitem.h non plain false false void [0xc8225c3c20] } +&{setSharedRenderer QGraphicsSvgItem::setSharedRenderer commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qgraphicssvgitem.h non plain false false void [0xc8225c3de0] } +&{type QGraphicsSvgItem::type commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qgraphicssvgitem.h impure plain false false int [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSvg/QSvgGenerator.txt b/internal/binding/dump/QtSvg/QSvgGenerator.txt new file mode 100755 index 00000000..6eed9cb9 --- /dev/null +++ b/internal/binding/dump/QtSvg/QSvgGenerator.txt @@ -0,0 +1,22 @@ +######################################## FUNCTIONS ######################################## +&{description QSvgGenerator::description commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvggenerator.cpp non plain false false QString [] } +&{fileName QSvgGenerator::fileName commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvggenerator.cpp non plain false false QString [] } +&{outputDevice QSvgGenerator::outputDevice commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvggenerator.cpp non plain false false QIODevice * [] } +&{resolution QSvgGenerator::resolution commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvggenerator.cpp non plain false false int [] } +&{setDescription QSvgGenerator::setDescription commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvggenerator.cpp non plain false false void [0xc8226aaee0] } +&{setFileName QSvgGenerator::setFileName commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvggenerator.cpp non plain false false void [0xc8226ab0e0] } +&{setOutputDevice QSvgGenerator::setOutputDevice commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvggenerator.cpp non plain false false void [0xc8226ab2c0] } +&{setResolution QSvgGenerator::setResolution commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvggenerator.cpp non plain false false void [0xc8226ab4c0] } +&{setSize QSvgGenerator::setSize commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvggenerator.cpp non plain false false void [0xc8226ab700] } +&{setTitle QSvgGenerator::setTitle commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvggenerator.cpp non plain false false void [0xc8226ab900] } +&{setViewBox QSvgGenerator::setViewBox commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvggenerator.cpp non plain false false void [0xc8226abb00] } +&{setViewBox QSvgGenerator::setViewBox commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvggenerator.cpp non plain false true 2 void [0xc8226abd00] } +&{size QSvgGenerator::size commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvggenerator.cpp non plain false false QSize [] } +&{title QSvgGenerator::title commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvggenerator.cpp non plain false false QString [] } +&{viewBoxF QSvgGenerator::viewBoxF commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvggenerator.cpp non plain false false QRectF [] } +&{QSvgGenerator QSvgGenerator::QSvgGenerator commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvggenerator.h non constructor false false [] } +&{metric QSvgGenerator::metric commendable protected /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvggenerator.h impure plain false false int [0xc821cee3a0] } +&{paintEngine QSvgGenerator::paintEngine commendable protected /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvggenerator.h impure plain false false QPaintEngine * [] } +&{viewBox QSvgGenerator::viewBox commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvggenerator.h non plain false false QRect [] } +&{~QSvgGenerator QSvgGenerator::~QSvgGenerator commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvggenerator.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSvg/QSvgRenderer.txt b/internal/binding/dump/QtSvg/QSvgRenderer.txt new file mode 100755 index 00000000..2a6b32cd --- /dev/null +++ b/internal/binding/dump/QtSvg/QSvgRenderer.txt @@ -0,0 +1,26 @@ +######################################## FUNCTIONS ######################################## +&{framesPerSecond QSvgRenderer::framesPerSecond commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgrenderer.cpp non plain false false int [] } +&{setFramesPerSecond QSvgRenderer::setFramesPerSecond commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgrenderer.cpp non plain false false void [0xc821cef520] } +&{setViewBox QSvgRenderer::setViewBox commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgrenderer.cpp non plain false false void [0xc821cef700] } +&{setViewBox QSvgRenderer::setViewBox commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgrenderer.cpp non plain false true 2 void [0xc821cef8e0] } +&{viewBoxF QSvgRenderer::viewBoxF commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgrenderer.cpp non plain false false QRectF [] } +&{QSvgRenderer QSvgRenderer::QSvgRenderer commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgrenderer.h non constructor false false [0xc821cefc00] } +&{QSvgRenderer QSvgRenderer::QSvgRenderer commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgrenderer.h non constructor false true 4 [0xc821cefde0 0xc821cefea0] } +&{QSvgRenderer QSvgRenderer::QSvgRenderer commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgrenderer.h non constructor false true 3 [0xc821cb4080 0xc821cb4140] } +&{QSvgRenderer QSvgRenderer::QSvgRenderer commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgrenderer.h non constructor false true 2 [0xc821cb4320 0xc821cb43a0] } +&{animated QSvgRenderer::animated commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgrenderer.h non plain false false bool [] } +&{boundsOnElement QSvgRenderer::boundsOnElement commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgrenderer.h non plain false false QRectF [0xc821cb4640] } +&{defaultSize QSvgRenderer::defaultSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgrenderer.h non plain false false QSize [] } +&{elementExists QSvgRenderer::elementExists commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgrenderer.h non plain false false bool [0xc821cb4b40] } +&{isValid QSvgRenderer::isValid commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgrenderer.h non plain false false bool [] } +&{load QSvgRenderer::load commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgrenderer.h non slot false true 3 bool [0xc821cb4e40] } +&{load QSvgRenderer::load commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgrenderer.h non slot false true 2 bool [0xc821cb5060] } +&{load QSvgRenderer::load commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgrenderer.h non slot false false bool [0xc821cb5260] } +&{matrixForElement QSvgRenderer::matrixForElement commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgrenderer.h non plain false false QMatrix [0xc821cb5400] } +&{render QSvgRenderer::render commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgrenderer.h non slot false false void [0xc821cb55e0] } +&{render QSvgRenderer::render commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgrenderer.h non slot false true 2 void [0xc821cb57a0 0xc821cb5820] } +&{render QSvgRenderer::render commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgrenderer.h non slot false true 3 void [0xc821cb59e0 0xc821cb5a60 0xc821cb5ae0] } +&{repaintNeeded QSvgRenderer::repaintNeeded commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgrenderer.h non signal false false void [] } +&{viewBox QSvgRenderer::viewBox commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgrenderer.h non plain false false QRect [] } +&{~QSvgRenderer QSvgRenderer::~QSvgRenderer commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgrenderer.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtSvg/QSvgWidget.txt b/internal/binding/dump/QtSvg/QSvgWidget.txt new file mode 100755 index 00000000..3d50a478 --- /dev/null +++ b/internal/binding/dump/QtSvg/QSvgWidget.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{QSvgWidget QSvgWidget::QSvgWidget commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgwidget.h non constructor false false [0xc821a65ca0] } +&{QSvgWidget QSvgWidget::QSvgWidget commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgwidget.h non constructor false true 2 [0xc821a65e60 0xc821a65ee0] } +&{load QSvgWidget::load commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgwidget.h non slot false true 2 void [0xc821a42060] } +&{load QSvgWidget::load commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgwidget.h non slot false false void [0xc821a42220] } +&{paintEvent QSvgWidget::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgwidget.h impure plain false false void [0xc821a42400] } +&{renderer QSvgWidget::renderer commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgwidget.h non plain false false QSvgRenderer * [] } +&{sizeHint QSvgWidget::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgwidget.h impure plain false false QSize [] } +&{~QSvgWidget QSvgWidget::~QSvgWidget commendable public /work/build/qt5_workdir/w/s/qtsvg/src/svg/qsvgwidget.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWebChannel/QWebChannel.txt b/internal/binding/dump/QtWebChannel/QWebChannel.txt new file mode 100755 index 00000000..8ced4661 --- /dev/null +++ b/internal/binding/dump/QtWebChannel/QWebChannel.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{blockUpdates QWebChannel::blockUpdates commendable public /work/build/qt5_workdir/w/s/qtwebchannel/src/webchannel/qwebchannel.cpp non plain false false bool [] } +&{setBlockUpdates QWebChannel::setBlockUpdates commendable public /work/build/qt5_workdir/w/s/qtwebchannel/src/webchannel/qwebchannel.cpp non plain false false void [0xc822895160] } +&{QWebChannel QWebChannel::QWebChannel commendable public /work/build/qt5_workdir/w/s/qtwebchannel/src/webchannel/qwebchannel.h non constructor false false [0xc822895340] } +&{blockUpdatesChanged QWebChannel::blockUpdatesChanged commendable public /work/build/qt5_workdir/w/s/qtwebchannel/src/webchannel/qwebchannel.h non signal false false void [0xc822895a00] } +&{connectTo QWebChannel::connectTo commendable public /work/build/qt5_workdir/w/s/qtwebchannel/src/webchannel/qwebchannel.h non slot false false void [0xc822895be0] } +&{deregisterObject QWebChannel::deregisterObject commendable public /work/build/qt5_workdir/w/s/qtwebchannel/src/webchannel/qwebchannel.h non plain false false void [0xc822895dc0] } +&{disconnectFrom QWebChannel::disconnectFrom commendable public /work/build/qt5_workdir/w/s/qtwebchannel/src/webchannel/qwebchannel.h non slot false false void [0xc822895fc0] } +&{registerObject QWebChannel::registerObject commendable public /work/build/qt5_workdir/w/s/qtwebchannel/src/webchannel/qwebchannel.h non plain false false void [0xc8228c41c0 0xc8228c4240] } +&{registerObjects QWebChannel::registerObjects commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtwebchannel/src/webchannel/qwebchannel.h non plain false false void [0xc8228c4400] } +&{registeredObjects QWebChannel::registeredObjects commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtwebchannel/src/webchannel/qwebchannel.h non plain false false QHash [] } +&{~QWebChannel QWebChannel::~QWebChannel commendable public /work/build/qt5_workdir/w/s/qtwebchannel/src/webchannel/qwebchannel.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWebChannel/QWebChannelAbstractTransport.txt b/internal/binding/dump/QtWebChannel/QWebChannelAbstractTransport.txt new file mode 100755 index 00000000..867a67e1 --- /dev/null +++ b/internal/binding/dump/QtWebChannel/QWebChannelAbstractTransport.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QWebChannelAbstractTransport QWebChannelAbstractTransport::QWebChannelAbstractTransport commendable public /work/build/qt5_workdir/w/s/qtwebchannel/src/webchannel/qwebchannelabstracttransport.h non constructor false false [0xc8228c4b20] } +&{messageReceived QWebChannelAbstractTransport::messageReceived commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtwebchannel/src/webchannel/qwebchannelabstracttransport.h non signal false false void [0xc8228c4ca0 0xc8228c4d80] } +&{sendMessage QWebChannelAbstractTransport::sendMessage commendable public /work/build/qt5_workdir/w/s/qtwebchannel/src/webchannel/qwebchannelabstracttransport.h pure slot false false void [0xc8228c4f40] } +&{~QWebChannelAbstractTransport QWebChannelAbstractTransport::~QWebChannelAbstractTransport commendable public /work/build/qt5_workdir/w/s/qtwebchannel/src/webchannel/qwebchannelabstracttransport.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWebSockets/QMaskGenerator.txt b/internal/binding/dump/QtWebSockets/QMaskGenerator.txt new file mode 100755 index 00000000..d73e54d2 --- /dev/null +++ b/internal/binding/dump/QtWebSockets/QMaskGenerator.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QMaskGenerator QMaskGenerator::QMaskGenerator commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qmaskgenerator.h non constructor false false [0xc82274f2c0] } +&{nextMask QMaskGenerator::nextMask commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qmaskgenerator.h pure plain false false quint32 [] } +&{seed QMaskGenerator::seed commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qmaskgenerator.h pure plain false false bool [] } +&{~QMaskGenerator QMaskGenerator::~QMaskGenerator commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qmaskgenerator.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWebSockets/QWebSocket.txt b/internal/binding/dump/QtWebSockets/QWebSocket.txt new file mode 100755 index 00000000..f51bb6e7 --- /dev/null +++ b/internal/binding/dump/QtWebSockets/QWebSocket.txt @@ -0,0 +1,53 @@ +######################################## FUNCTIONS ######################################## +&{QWebSocket QWebSocket::QWebSocket commendable unsupported_cppEnum /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non constructor false false [0xc82274fda0 0xc82274fea0 0xc82275e020] } +&{abort QWebSocket::abort commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false void [] } +&{aboutToClose QWebSocket::aboutToClose commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non signal false false void [] } +&{binaryFrameReceived QWebSocket::binaryFrameReceived commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non signal false false void [0xc82275ed20 0xc82275ee80] } +&{binaryMessageReceived QWebSocket::binaryMessageReceived commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non signal false false void [0xc82275f2c0] } +&{bytesWritten QWebSocket::bytesWritten commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non signal false false void [0xc82275f640] } +&{close QWebSocket::close commendable unsupported_cppEnum /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non slot false false void [0xc82275f9a0 0xc82275fae0] } +&{closeCode QWebSocket::closeCode commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false QWebSocketProtocol::CloseCode [] } +&{closeReason QWebSocket::closeReason commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false QString [] } +&{connected QWebSocket::connected commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non signal false false void [] } +&{disconnected QWebSocket::disconnected commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non signal false false void [] } +&{error QWebSocket::error commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non signal false true 2 void [0xc821e66540] } +&{error QWebSocket::error commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false QAbstractSocket::SocketError [] } +&{errorString QWebSocket::errorString commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false QString [] } +&{flush QWebSocket::flush commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false bool [] } +&{ignoreSslErrors QWebSocket::ignoreSslErrors commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non slot false false void [] } +&{ignoreSslErrors QWebSocket::ignoreSslErrors commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false true 2 void [0xc821e66f60] } +&{isValid QWebSocket::isValid commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false bool [] } +&{localAddress QWebSocket::localAddress commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false QHostAddress [] } +&{localPort QWebSocket::localPort commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false quint16 [] } +&{maskGenerator QWebSocket::maskGenerator commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false const QMaskGenerator * [] } +&{open QWebSocket::open commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non slot false false void [0xc821e67a00] } +&{origin QWebSocket::origin commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false QString [] } +&{pauseMode QWebSocket::pauseMode commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false QAbstractSocket::PauseModes [] } +&{peerAddress QWebSocket::peerAddress commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false QHostAddress [] } +&{peerName QWebSocket::peerName commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false QString [] } +&{peerPort QWebSocket::peerPort commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false quint16 [] } +&{ping QWebSocket::ping commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non slot false false void [0xc82276e680] } +&{pong QWebSocket::pong commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non signal false false void [0xc82276e980 0xc82276eaa0] } +&{proxy QWebSocket::proxy commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false QNetworkProxy [] } +&{proxyAuthenticationRequired QWebSocket::proxyAuthenticationRequired commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non signal false false void [0xc82276f0c0 0xc82276f2c0] } +&{readBufferSize QWebSocket::readBufferSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false qint64 [] } +&{readChannelFinished QWebSocket::readChannelFinished commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non signal false false void [] } +&{requestUrl QWebSocket::requestUrl commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false QUrl [] } +&{resourceName QWebSocket::resourceName commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false QString [] } +&{resume QWebSocket::resume commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false void [] } +&{sendBinaryMessage QWebSocket::sendBinaryMessage commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false qint64 [0xc82277c0a0] } +&{sendTextMessage QWebSocket::sendTextMessage commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false qint64 [0xc82277c400] } +&{setMaskGenerator QWebSocket::setMaskGenerator commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false void [0xc82277c7c0] } +&{setPauseMode QWebSocket::setPauseMode commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false void [0xc82277cba0] } +&{setProxy QWebSocket::setProxy commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false void [0xc82277cfe0] } +&{setReadBufferSize QWebSocket::setReadBufferSize commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false void [0xc82277d4e0] } +&{setSslConfiguration QWebSocket::setSslConfiguration commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false void [0xc82277d940] } +&{sslConfiguration QWebSocket::sslConfiguration commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false QSslConfiguration [] } +&{sslErrors QWebSocket::sslErrors commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non signal false false void [0xc821f0c0e0] } +&{state QWebSocket::state commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false QAbstractSocket::SocketState [] } +&{stateChanged QWebSocket::stateChanged commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non signal false false void [0xc821f0c6e0] } +&{textFrameReceived QWebSocket::textFrameReceived commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non signal false false void [0xc821f0caa0 0xc821f0cb40] } +&{textMessageReceived QWebSocket::textMessageReceived commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non signal false false void [0xc821f0ce20] } +&{version QWebSocket::version commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h non plain false false QWebSocketProtocol::Version [] } +&{~QWebSocket QWebSocket::~QWebSocket commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocket.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWebSockets/QWebSocketCorsAuthenticator.txt b/internal/binding/dump/QtWebSockets/QWebSocketCorsAuthenticator.txt new file mode 100755 index 00000000..3aa319bb --- /dev/null +++ b/internal/binding/dump/QtWebSockets/QWebSocketCorsAuthenticator.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{QWebSocketCorsAuthenticator QWebSocketCorsAuthenticator::QWebSocketCorsAuthenticator commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketcorsauthenticator.h non constructor false true 3 [0xc822bb1940] } +&{QWebSocketCorsAuthenticator QWebSocketCorsAuthenticator::QWebSocketCorsAuthenticator commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketcorsauthenticator.h non constructor false false [0xc822bb1ca0] } +&{QWebSocketCorsAuthenticator QWebSocketCorsAuthenticator::QWebSocketCorsAuthenticator commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketcorsauthenticator.h non constructor false true 2 [0xc822bb1f60] } +&{allowed QWebSocketCorsAuthenticator::allowed commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketcorsauthenticator.h non plain false false bool [] } +&{operator= QWebSocketCorsAuthenticator::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketcorsauthenticator.h non plain false false QWebSocketCorsAuthenticator & [0xc821db0380] } +&{operator= QWebSocketCorsAuthenticator::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketcorsauthenticator.h non plain false true 2 QWebSocketCorsAuthenticator & [0xc821db06c0] } +&{origin QWebSocketCorsAuthenticator::origin commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketcorsauthenticator.h non plain false false QString [] } +&{setAllowed QWebSocketCorsAuthenticator::setAllowed commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketcorsauthenticator.h non plain false false void [0xc821db0a20] } +&{swap QWebSocketCorsAuthenticator::swap commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketcorsauthenticator.h non plain false false void [0xc821db0c60] } +&{~QWebSocketCorsAuthenticator QWebSocketCorsAuthenticator::~QWebSocketCorsAuthenticator commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketcorsauthenticator.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWebSockets/QWebSocketServer.txt b/internal/binding/dump/QtWebSockets/QWebSocketServer.txt new file mode 100755 index 00000000..64b9d05e --- /dev/null +++ b/internal/binding/dump/QtWebSockets/QWebSocketServer.txt @@ -0,0 +1,36 @@ +######################################## FUNCTIONS ######################################## +&{QWebSocketServer QWebSocketServer::QWebSocketServer commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non constructor false false [0xc821e26900 0xc821e26980 0xc821e26a40] } +&{acceptError QWebSocketServer::acceptError commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non signal false false void [0xc821e26d20] } +&{close QWebSocketServer::close commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non plain false false void [] } +&{closed QWebSocketServer::closed commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non signal false false void [] } +&{error QWebSocketServer::error commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non plain false false QWebSocketProtocol::CloseCode [] } +&{errorString QWebSocketServer::errorString commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non plain false false QString [] } +&{hasPendingConnections QWebSocketServer::hasPendingConnections commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non plain false false bool [] } +&{isListening QWebSocketServer::isListening commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non plain false false bool [] } +&{listen QWebSocketServer::listen commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non plain false false bool [0xc821e27b20 0xc821e27ca0] } +&{maxPendingConnections QWebSocketServer::maxPendingConnections commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non plain false false int [] } +&{newConnection QWebSocketServer::newConnection commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non signal false false void [] } +&{nextPendingConnection QWebSocketServer::nextPendingConnection commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h impure plain false false QWebSocket * [] } +&{originAuthenticationRequired QWebSocketServer::originAuthenticationRequired commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non signal false false void [0xc821e342a0] } +&{pauseAccepting QWebSocketServer::pauseAccepting commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non plain false false void [] } +&{peerVerifyError QWebSocketServer::peerVerifyError commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non signal false false void [0xc821e34740] } +&{proxy QWebSocketServer::proxy commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non plain false false QNetworkProxy [] } +&{resumeAccepting QWebSocketServer::resumeAccepting commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non plain false false void [] } +&{secureMode QWebSocketServer::secureMode commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non plain false false SslMode [] } +&{serverAddress QWebSocketServer::serverAddress commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non plain false false QHostAddress [] } +&{serverError QWebSocketServer::serverError commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non signal false false void [0xc821e350e0] } +&{serverName QWebSocketServer::serverName commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non plain false false QString [] } +&{serverPort QWebSocketServer::serverPort commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non plain false false quint16 [] } +&{serverUrl QWebSocketServer::serverUrl commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non plain false false QUrl [] } +&{setMaxPendingConnections QWebSocketServer::setMaxPendingConnections commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non plain false false void [0xc821e359e0] } +&{setProxy QWebSocketServer::setProxy commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non plain false false void [0xc821e35d20] } +&{setServerName QWebSocketServer::setServerName commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non plain false false void [0xc822986040] } +&{setSocketDescriptor QWebSocketServer::setSocketDescriptor commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non plain false false bool [0xc8229862e0] } +&{setSslConfiguration QWebSocketServer::setSslConfiguration commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non plain false false void [0xc822986540] } +&{socketDescriptor QWebSocketServer::socketDescriptor commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non plain false false int [] } +&{sslConfiguration QWebSocketServer::sslConfiguration commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non plain false false QSslConfiguration [] } +&{sslErrors QWebSocketServer::sslErrors commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non signal false false void [0xc822986aa0] } +&{supportedVersions QWebSocketServer::supportedVersions commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h non plain false false QList [] } +&{~QWebSocketServer QWebSocketServer::~QWebSocketServer commendable public /work/build/qt5_workdir/w/s/qtwebsockets/src/websockets/qwebsocketserver.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{SslMode QWebSocketServer::SslMode commendable public [0xc821e264a0 0xc821e265c0]} diff --git a/internal/binding/dump/QtWidgets/QAbstractButton.txt b/internal/binding/dump/QtWidgets/QAbstractButton.txt new file mode 100755 index 00000000..ffb0d5b1 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QAbstractButton.txt @@ -0,0 +1,48 @@ +######################################## FUNCTIONS ######################################## +&{autoExclusive QAbstractButton::autoExclusive commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false bool [] } +&{autoRepeat QAbstractButton::autoRepeat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false bool [] } +&{autoRepeatDelay QAbstractButton::autoRepeatDelay commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false int [] } +&{autoRepeatInterval QAbstractButton::autoRepeatInterval commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false int [] } +&{icon QAbstractButton::icon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false QIcon [] } +&{iconSize QAbstractButton::iconSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false QSize [] } +&{isCheckable QAbstractButton::isCheckable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false bool [] } +&{isChecked QAbstractButton::isChecked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false bool [] } +&{isDown QAbstractButton::isDown commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false bool [] } +&{setAutoExclusive QAbstractButton::setAutoExclusive commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false void [0xc8211a51c0] } +&{setAutoRepeat QAbstractButton::setAutoRepeat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false void [0xc8211a56e0] } +&{setAutoRepeatDelay QAbstractButton::setAutoRepeatDelay commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false void [0xc8211a5ca0] } +&{setAutoRepeatInterval QAbstractButton::setAutoRepeatInterval commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false void [0xc82119c1c0] } +&{setCheckable QAbstractButton::setCheckable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false void [0xc82119c540] } +&{setChecked QAbstractButton::setChecked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non slot false false void [0xc82119c8a0] } +&{setDown QAbstractButton::setDown commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false void [0xc82119ccc0] } +&{setIcon QAbstractButton::setIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false void [0xc82119d140] } +&{setIconSize QAbstractButton::setIconSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non slot false false void [0xc82119d540] } +&{setShortcut QAbstractButton::setShortcut commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false void [0xc82119d8a0] } +&{setText QAbstractButton::setText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false void [0xc82119dd60] } +&{shortcut QAbstractButton::shortcut commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false QKeySequence [] } +&{text QAbstractButton::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false QString [] } +&{toggle QAbstractButton::toggle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non slot false false void [] } +&{QAbstractButton QAbstractButton::QAbstractButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.h non constructor false false [0xc8211909e0] } +&{animateClick QAbstractButton::animateClick commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.h non slot false false void [0xc8211915a0] } +&{changeEvent QAbstractButton::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.h impure plain false false void [0xc821191b00] } +&{checkStateSet QAbstractButton::checkStateSet commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.h impure plain false false void [] } +&{click QAbstractButton::click commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.h non slot false false void [] } +&{clicked QAbstractButton::clicked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.h non signal false false void [0xc82117e400] } +&{event QAbstractButton::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.h impure plain false false bool [0xc82117e900] } +&{focusInEvent QAbstractButton::focusInEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.h impure plain false false void [0xc82117eda0] } +&{focusOutEvent QAbstractButton::focusOutEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.h impure plain false false void [0xc82117f1e0] } +&{group QAbstractButton::group commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.h non plain false false QButtonGroup * [] } +&{hitButton QAbstractButton::hitButton commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.h impure plain false false bool [0xc82117f8a0] } +&{keyPressEvent QAbstractButton::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.h impure plain false false void [0xc82117fc80] } +&{keyReleaseEvent QAbstractButton::keyReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.h impure plain false false void [0xc821172060] } +&{mouseMoveEvent QAbstractButton::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.h impure plain false false void [0xc8211724c0] } +&{mousePressEvent QAbstractButton::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.h impure plain false false void [0xc821172880] } +&{mouseReleaseEvent QAbstractButton::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.h impure plain false false void [0xc821172c60] } +&{nextCheckState QAbstractButton::nextCheckState commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.h impure plain false false void [] } +&{paintEvent QAbstractButton::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.h pure plain false false void [0xc821173380] } +&{pressed QAbstractButton::pressed commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.h non signal false false void [] } +&{released QAbstractButton::released commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.h non signal false false void [] } +&{timerEvent QAbstractButton::timerEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.h impure plain false false void [0xc821173ca0] } +&{toggled QAbstractButton::toggled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.h non signal false false void [0xc821160200] } +&{~QAbstractButton QAbstractButton::~QAbstractButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QAbstractGraphicsShapeItem.txt b/internal/binding/dump/QtWidgets/QAbstractGraphicsShapeItem.txt new file mode 100755 index 00000000..d84377f3 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QAbstractGraphicsShapeItem.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{QAbstractGraphicsShapeItem QAbstractGraphicsShapeItem::QAbstractGraphicsShapeItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non constructor false false [0xc822ea3fe0] } +&{brush QAbstractGraphicsShapeItem::brush commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QBrush [] } +&{isObscuredBy QAbstractGraphicsShapeItem::isObscuredBy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false bool [0xc822e947e0] } +&{opaqueArea QAbstractGraphicsShapeItem::opaqueArea commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QPainterPath [] } +&{pen QAbstractGraphicsShapeItem::pen commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QPen [] } +&{setBrush QAbstractGraphicsShapeItem::setBrush commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc822e94e60] } +&{setPen QAbstractGraphicsShapeItem::setPen commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc822e95120] } +&{~QAbstractGraphicsShapeItem QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QAbstractItemDelegate.txt b/internal/binding/dump/QtWidgets/QAbstractItemDelegate.txt new file mode 100755 index 00000000..c2fb47f4 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QAbstractItemDelegate.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{QAbstractItemDelegate QAbstractItemDelegate::QAbstractItemDelegate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemdelegate.h non constructor false false [0xc821e268c0] } +&{closeEditor QAbstractItemDelegate::closeEditor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemdelegate.h non signal false false void [0xc821e26f20 0xc821e26fe0] } +&{commitData QAbstractItemDelegate::commitData commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemdelegate.h non signal false false void [0xc821e271e0] } +&{createEditor QAbstractItemDelegate::createEditor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemdelegate.h impure plain false false QWidget * [0xc821e273a0 0xc821e27460 0xc821e27580] } +&{destroyEditor QAbstractItemDelegate::destroyEditor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemdelegate.h impure plain false false void [0xc821e27780 0xc821e27840] } +&{editorEvent QAbstractItemDelegate::editorEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemdelegate.h impure plain false false bool [0xc821e27a20 0xc821e27b00 0xc821e27c20 0xc821e27d60] } +&{helpEvent QAbstractItemDelegate::helpEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemdelegate.h impure plain false false bool [0xc821e34460 0xc821e34540 0xc821e34660 0xc821e34760] } +&{paint QAbstractItemDelegate::paint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemdelegate.h pure plain false false void [0xc821e34a20 0xc821e34ae0 0xc821e34be0] } +&{setEditorData QAbstractItemDelegate::setEditorData commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemdelegate.h impure plain false false void [0xc821e34ea0 0xc821e34f60] } +&{setModelData QAbstractItemDelegate::setModelData commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemdelegate.h impure plain false false void [0xc821e35160 0xc821e35220 0xc821e35340] } +&{sizeHint QAbstractItemDelegate::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemdelegate.h pure plain false false QSize [0xc821e35600 0xc821e35720] } +&{sizeHintChanged QAbstractItemDelegate::sizeHintChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemdelegate.h non signal false false void [0xc821e35900] } +&{updateEditorGeometry QAbstractItemDelegate::updateEditorGeometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemdelegate.h impure plain false false void [0xc821e35bc0 0xc821e35ca0 0xc821e35dc0] } +&{~QAbstractItemDelegate QAbstractItemDelegate::~QAbstractItemDelegate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemdelegate.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{EndEditHint QAbstractItemDelegate::EndEditHint commendable public [0xc821e26360 0xc821e263e0 0xc821e26480 0xc821e26540 0xc821e26620]} diff --git a/internal/binding/dump/QtWidgets/QAbstractItemView.txt b/internal/binding/dump/QtWidgets/QAbstractItemView.txt new file mode 100755 index 00000000..25832a4d --- /dev/null +++ b/internal/binding/dump/QtWidgets/QAbstractItemView.txt @@ -0,0 +1,132 @@ +######################################## FUNCTIONS ######################################## +&{alternatingRowColors QAbstractItemView::alternatingRowColors commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false bool [] } +&{autoScrollMargin QAbstractItemView::autoScrollMargin commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false int [] } +&{defaultDropAction QAbstractItemView::defaultDropAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false Qt::DropAction [] } +&{dragDropMode QAbstractItemView::dragDropMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false DragDropMode [] } +&{dragDropOverwriteMode QAbstractItemView::dragDropOverwriteMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false bool [] } +&{dragEnabled QAbstractItemView::dragEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false bool [] } +&{dragLeaveEvent QAbstractItemView::dragLeaveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp impure plain false false void [0xc822986ba0] } +&{editTriggers QAbstractItemView::editTriggers commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false EditTriggers [] } +&{hasAutoScroll QAbstractItemView::hasAutoScroll commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false bool [] } +&{horizontalScrollMode QAbstractItemView::horizontalScrollMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false ScrollMode [] } +&{iconSize QAbstractItemView::iconSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false QSize [] } +&{selectionBehavior QAbstractItemView::selectionBehavior commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false QAbstractItemView::SelectionBehavior [] } +&{selectionMode QAbstractItemView::selectionMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false QAbstractItemView::SelectionMode [] } +&{setAlternatingRowColors QAbstractItemView::setAlternatingRowColors commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false void [0xc822987740] } +&{setAutoScroll QAbstractItemView::setAutoScroll commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false void [0xc8229879e0] } +&{setAutoScrollMargin QAbstractItemView::setAutoScrollMargin commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false void [0xc822987c20] } +&{setDefaultDropAction QAbstractItemView::setDefaultDropAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false void [0xc822987ee0] } +&{setDragDropMode QAbstractItemView::setDragDropMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false void [0xc8229920e0] } +&{setDragDropOverwriteMode QAbstractItemView::setDragDropOverwriteMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false void [0xc822992380] } +&{setDragEnabled QAbstractItemView::setDragEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false void [0xc8229925a0] } +&{setDropIndicatorShown QAbstractItemView::setDropIndicatorShown commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false void [0xc822992800] } +&{setEditTriggers QAbstractItemView::setEditTriggers commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false void [0xc822992a00] } +&{setHorizontalScrollMode QAbstractItemView::setHorizontalScrollMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false void [0xc822992c60] } +&{setIconSize QAbstractItemView::setIconSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false void [0xc822992ec0] } +&{setSelectionBehavior QAbstractItemView::setSelectionBehavior commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false void [0xc822993160] } +&{setSelectionMode QAbstractItemView::setSelectionMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false void [0xc822993380] } +&{setTabKeyNavigation QAbstractItemView::setTabKeyNavigation commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false void [0xc822993620] } +&{setTextElideMode QAbstractItemView::setTextElideMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false void [0xc822993840] } +&{setVerticalScrollMode QAbstractItemView::setVerticalScrollMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false void [0xc822993b20] } +&{showDropIndicator QAbstractItemView::showDropIndicator commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false bool [] } +&{tabKeyNavigation QAbstractItemView::tabKeyNavigation commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false bool [] } +&{textElideMode QAbstractItemView::textElideMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false Qt::TextElideMode [] } +&{verticalScrollMode QAbstractItemView::verticalScrollMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp non plain false false ScrollMode [] } +&{viewportEvent QAbstractItemView::viewportEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.cpp impure plain false false bool [0xc8229a6300] } +&{QAbstractItemView QAbstractItemView::QAbstractItemView commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non constructor false false [0xc8229bb540] } +&{activated QAbstractItemView::activated commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non signal false false void [0xc8229bb7e0] } +&{clearSelection QAbstractItemView::clearSelection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non slot false false void [] } +&{clicked QAbstractItemView::clicked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non signal false false void [0xc8229bbbc0] } +&{closeEditor QAbstractItemView::closeEditor commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure slot false false void [0xc8229bbe20 0xc8229bbf00] } +&{closePersistentEditor QAbstractItemView::closePersistentEditor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non plain false false void [0xc8229c81e0] } +&{commitData QAbstractItemView::commitData commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure slot false false void [0xc8229c8500] } +&{currentChanged QAbstractItemView::currentChanged commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure slot false false void [0xc8229c8720 0xc8229c8880] } +&{currentIndex QAbstractItemView::currentIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non plain false false QModelIndex [] } +&{dataChanged QAbstractItemView::dataChanged commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure slot false false void [0xc8229c8d80 0xc8229c8ee0 0xc8229c9080] } +&{dirtyRegionOffset QAbstractItemView::dirtyRegionOffset commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non plain false false QPoint [] } +&{doubleClicked QAbstractItemView::doubleClicked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non signal false false void [0xc8229d8440] } +&{dragEnterEvent QAbstractItemView::dragEnterEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure plain false false void [0xc8229d86a0] } +&{dragMoveEvent QAbstractItemView::dragMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure plain false false void [0xc8229d8940] } +&{dropEvent QAbstractItemView::dropEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure plain false false void [0xc8229d8b80] } +&{dropIndicatorPosition QAbstractItemView::dropIndicatorPosition commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non plain false false DropIndicatorPosition [] } +&{edit QAbstractItemView::edit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non slot false false void [0xc8229d8fe0] } +&{edit QAbstractItemView::edit commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure plain false true 2 bool [0xc8229d92c0 0xc8229d93c0 0xc8229d9460] } +&{editorDestroyed QAbstractItemView::editorDestroyed commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure slot false false void [0xc8229d9640] } +&{entered QAbstractItemView::entered commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non signal false false void [0xc8229d98a0] } +&{event QAbstractItemView::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure plain false false bool [0xc8229d9b80] } +&{executeDelayedItemsLayout QAbstractItemView::executeDelayedItemsLayout commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non plain false false void [] } +&{focusInEvent QAbstractItemView::focusInEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure plain false false void [0xc8229d9ee0] } +&{focusNextPrevChild QAbstractItemView::focusNextPrevChild commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure plain false false bool [0xc8229e8120] } +&{focusOutEvent QAbstractItemView::focusOutEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure plain false false void [0xc8229e83c0] } +&{horizontalOffset QAbstractItemView::horizontalOffset commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h pure plain false false int [] } +&{iconSizeChanged QAbstractItemView::iconSizeChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non signal false false void [0xc8229e8780] } +&{indexAt QAbstractItemView::indexAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h pure plain false false QModelIndex [0xc8229e89a0] } +&{indexWidget QAbstractItemView::indexWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non plain false false QWidget * [0xc8229e8c20] } +&{inputMethodEvent QAbstractItemView::inputMethodEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure plain false false void [0xc8229e8e40] } +&{inputMethodQuery QAbstractItemView::inputMethodQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure plain false false QVariant [0xc8229e9080] } +&{isIndexHidden QAbstractItemView::isIndexHidden commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h pure plain false false bool [0xc8229e9340] } +&{itemDelegate QAbstractItemView::itemDelegate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non plain false false QAbstractItemDelegate * [] } +&{itemDelegate QAbstractItemView::itemDelegate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non plain false true 2 QAbstractItemDelegate * [0xc8229e97e0] } +&{itemDelegateForColumn QAbstractItemView::itemDelegateForColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non plain false false QAbstractItemDelegate * [0xc8229e9ac0] } +&{itemDelegateForRow QAbstractItemView::itemDelegateForRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non plain false false QAbstractItemDelegate * [0xc8229e9da0] } +&{keyPressEvent QAbstractItemView::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure plain false false void [0xc8229e9fc0] } +&{keyboardSearch QAbstractItemView::keyboardSearch commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure plain false false void [0xc8229f6180] } +&{model QAbstractItemView::model commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non plain false false QAbstractItemModel * [] } +&{mouseDoubleClickEvent QAbstractItemView::mouseDoubleClickEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure plain false false void [0xc8229f6580] } +&{mouseMoveEvent QAbstractItemView::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure plain false false void [0xc8229f6740] } +&{mousePressEvent QAbstractItemView::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure plain false false void [0xc8229f68c0] } +&{mouseReleaseEvent QAbstractItemView::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure plain false false void [0xc8229f6b00] } +&{moveCursor QAbstractItemView::moveCursor commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h pure plain false false QModelIndex [0xc8229f6d40 0xc8229f6e40] } +&{openPersistentEditor QAbstractItemView::openPersistentEditor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non plain false false void [0xc8229f7100] } +&{pressed QAbstractItemView::pressed commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non signal false false void [0xc8229f73c0] } +&{reset QAbstractItemView::reset commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure slot false false void [] } +&{resizeEvent QAbstractItemView::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure plain false false void [0xc8229f77a0] } +&{rootIndex QAbstractItemView::rootIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non plain false false QModelIndex [] } +&{rowsAboutToBeRemoved QAbstractItemView::rowsAboutToBeRemoved commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure slot false false void [0xc8229f7b60 0xc8229f7c80 0xc8229f7d20] } +&{rowsInserted QAbstractItemView::rowsInserted commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure slot false false void [0xc8229f7f80 0xc822a040c0 0xc822a041a0] } +&{scheduleDelayedItemsLayout QAbstractItemView::scheduleDelayedItemsLayout commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non plain false false void [] } +&{scrollDirtyRegion QAbstractItemView::scrollDirtyRegion commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non plain false false void [0xc822a045c0 0xc822a04660] } +&{scrollTo QAbstractItemView::scrollTo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h pure plain false false void [0xc822a049c0 0xc822a04ac0] } +&{scrollToBottom QAbstractItemView::scrollToBottom commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non slot false false void [] } +&{scrollToTop QAbstractItemView::scrollToTop commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non slot false false void [] } +&{selectAll QAbstractItemView::selectAll commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure slot false false void [] } +&{selectedIndexes QAbstractItemView::selectedIndexes commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure plain false false QModelIndexList [] } +&{selectionChanged QAbstractItemView::selectionChanged commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure slot false false void [0xc822a05100 0xc822a05220] } +&{selectionCommand QAbstractItemView::selectionCommand commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure plain false false QItemSelectionModel::SelectionFlags [0xc822a054a0 0xc822a05620] } +&{selectionModel QAbstractItemView::selectionModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non plain false false QItemSelectionModel * [] } +&{setCurrentIndex QAbstractItemView::setCurrentIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non slot false false void [0xc822a05980] } +&{setDirtyRegion QAbstractItemView::setDirtyRegion commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non plain false false void [0xc822a05ba0] } +&{setIndexWidget QAbstractItemView::setIndexWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non plain false false void [0xc821e3e080 0xc821e3e160] } +&{setItemDelegate QAbstractItemView::setItemDelegate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non plain false false void [0xc821e3e360] } +&{setItemDelegateForColumn QAbstractItemView::setItemDelegateForColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non plain false false void [0xc821e3e600 0xc821e3e6c0] } +&{setItemDelegateForRow QAbstractItemView::setItemDelegateForRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non plain false false void [0xc821e3e960 0xc821e3ea00] } +&{setModel QAbstractItemView::setModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure plain false false void [0xc821e3ece0] } +&{setRootIndex QAbstractItemView::setRootIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure slot false false void [0xc821e3efa0] } +&{setSelection QAbstractItemView::setSelection commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h pure plain false false void [0xc821e3f260 0xc821e3f2e0] } +&{setSelectionModel QAbstractItemView::setSelectionModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure plain false false void [0xc821e3f560] } +&{setState QAbstractItemView::setState commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non plain false false void [0xc821e3f820] } +&{sizeHintForColumn QAbstractItemView::sizeHintForColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure plain false false int [0xc821e3fc80] } +&{sizeHintForIndex QAbstractItemView::sizeHintForIndex commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non plain false false QSize [0xc821e3fe80] } +&{sizeHintForRow QAbstractItemView::sizeHintForRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure plain false false int [0xc822a14060] } +&{startDrag QAbstractItemView::startDrag commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure plain false false void [0xc822a142a0] } +&{state QAbstractItemView::state commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non plain false false State [] } +&{timerEvent QAbstractItemView::timerEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure plain false false void [0xc822a14660] } +&{update QAbstractItemView::update commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non slot false false void [0xc822a148e0] } +&{updateGeometries QAbstractItemView::updateGeometries commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure slot false false void [] } +&{verticalOffset QAbstractItemView::verticalOffset commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h pure plain false false int [] } +&{viewOptions QAbstractItemView::viewOptions commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure plain false false QStyleOptionViewItem [] } +&{viewportEntered QAbstractItemView::viewportEntered commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non signal false false void [] } +&{viewportSizeHint QAbstractItemView::viewportSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h impure plain false false QSize [] } +&{visualRect QAbstractItemView::visualRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h pure plain false false QRect [0xc822a159e0] } +&{visualRegionForSelection QAbstractItemView::visualRegionForSelection commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h pure plain false false QRegion [0xc822a15c80] } +&{~QAbstractItemView QAbstractItemView::~QAbstractItemView commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qabstractitemview.h non destructor false false [] } +######################################## ENUMS ######################################## +&{CursorAction QAbstractItemView::CursorAction commendable protected [0xc8229a6580 0xc8229a6640 0xc8229a66e0 0xc8229a6780 0xc8229a6820 0xc8229a6900 0xc8229a69a0 0xc8229a6a20 0xc8229a6b00 0xc8229a6ba0]} +&{DragDropMode QAbstractItemView::DragDropMode commendable public [0xc8229a6de0 0xc8229a6e80 0xc8229a6f20 0xc8229a6fa0 0xc8229a70a0]} +&{DropIndicatorPosition QAbstractItemView::DropIndicatorPosition commendable protected [0xc8229a72a0 0xc8229a7380 0xc8229a7420 0xc8229a74a0]} +&{EditTrigger QAbstractItemView::EditTrigger commendable public QAbstractItemView::EditTriggers [0xc8229a7760 0xc8229a77e0 0xc8229a78c0 0xc8229a7960 0xc8229a7a00 0xc8229a7ac0 0xc8229a7b60]} +&{ScrollHint QAbstractItemView::ScrollHint commendable public [0xc8229a7dc0 0xc8229a7e80 0xc8229a7f00 0xc8229a7f80]} +&{ScrollMode QAbstractItemView::ScrollMode commendable public [0xc8229ba1c0 0xc8229ba260]} +&{SelectionBehavior QAbstractItemView::SelectionBehavior commendable public [0xc8229ba4a0 0xc8229ba520 0xc8229ba5c0]} +&{SelectionMode QAbstractItemView::SelectionMode commendable public [0xc8229ba800 0xc8229ba880 0xc8229ba940 0xc8229baa00 0xc8229bab20]} +&{State QAbstractItemView::State commendable protected [0xc8229bade0 0xc8229bae60 0xc8229baf40 0xc8229bb040 0xc8229bb0e0 0xc8229bb180 0xc8229bb220]} diff --git a/internal/binding/dump/QtWidgets/QAbstractScrollArea.txt b/internal/binding/dump/QtWidgets/QAbstractScrollArea.txt new file mode 100755 index 00000000..f848acc6 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QAbstractScrollArea.txt @@ -0,0 +1,45 @@ +######################################## FUNCTIONS ######################################## +&{dragEnterEvent QAbstractScrollArea::dragEnterEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.cpp impure plain false false void [0xc821149b00] } +&{dragLeaveEvent QAbstractScrollArea::dragLeaveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.cpp impure plain false false void [0xc8212be040] } +&{dragMoveEvent QAbstractScrollArea::dragMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.cpp impure plain false false void [0xc8212be260] } +&{dropEvent QAbstractScrollArea::dropEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.cpp impure plain false false void [0xc8212be480] } +&{event QAbstractScrollArea::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.cpp impure plain false false bool [0xc8212be760] } +&{horizontalScrollBarPolicy QAbstractScrollArea::horizontalScrollBarPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.cpp non plain false false Qt::ScrollBarPolicy [] } +&{paintEvent QAbstractScrollArea::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.cpp impure plain false false void [0xc8212beb80] } +&{resizeEvent QAbstractScrollArea::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.cpp impure plain false false void [0xc8212beda0] } +&{setHorizontalScrollBarPolicy QAbstractScrollArea::setHorizontalScrollBarPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.cpp non plain false false void [0xc8212bf0a0] } +&{setSizeAdjustPolicy QAbstractScrollArea::setSizeAdjustPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.cpp non plain false false void [0xc8212bf340] } +&{setVerticalScrollBarPolicy QAbstractScrollArea::setVerticalScrollBarPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.cpp non plain false false void [0xc8212bf5e0] } +&{sizeAdjustPolicy QAbstractScrollArea::sizeAdjustPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.cpp non plain false false SizeAdjustPolicy [] } +&{verticalScrollBarPolicy QAbstractScrollArea::verticalScrollBarPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.cpp non plain false false Qt::ScrollBarPolicy [] } +&{viewportEvent QAbstractScrollArea::viewportEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.cpp impure plain false false bool [0xc8212bfac0] } +&{QAbstractScrollArea QAbstractScrollArea::QAbstractScrollArea commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h non constructor false false [0xc82270c120] } +&{addScrollBarWidget QAbstractScrollArea::addScrollBarWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h non plain false false void [0xc82270cee0 0xc82270cf80] } +&{contextMenuEvent QAbstractScrollArea::contextMenuEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h impure plain false false void [0xc82270d200] } +&{cornerWidget QAbstractScrollArea::cornerWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h non plain false false QWidget * [] } +&{horizontalScrollBar QAbstractScrollArea::horizontalScrollBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h non plain false false QScrollBar * [] } +&{keyPressEvent QAbstractScrollArea::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h impure plain false false void [0xc82270d7a0] } +&{maximumViewportSize QAbstractScrollArea::maximumViewportSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h non plain false false QSize [] } +&{minimumSizeHint QAbstractScrollArea::minimumSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h impure plain false false QSize [] } +&{mouseDoubleClickEvent QAbstractScrollArea::mouseDoubleClickEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h impure plain false false void [0xc82270dd80] } +&{mouseMoveEvent QAbstractScrollArea::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h impure plain false false void [0xc82270df60] } +&{mousePressEvent QAbstractScrollArea::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h impure plain false false void [0xc82113a400] } +&{mouseReleaseEvent QAbstractScrollArea::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h impure plain false false void [0xc82113a980] } +&{scrollBarWidgets QAbstractScrollArea::scrollBarWidgets commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h non plain false false QWidgetList [0xc82113ad20] } +&{scrollContentsBy QAbstractScrollArea::scrollContentsBy commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h impure plain false false void [0xc82113b100 0xc82113b200] } +&{setCornerWidget QAbstractScrollArea::setCornerWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h non plain false false void [0xc82113b5c0] } +&{setHorizontalScrollBar QAbstractScrollArea::setHorizontalScrollBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h non plain false false void [0xc82113b9e0] } +&{setVerticalScrollBar QAbstractScrollArea::setVerticalScrollBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h non plain false false void [0xc82113be80] } +&{setViewport QAbstractScrollArea::setViewport commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h non plain false false void [0xc821124200] } +&{setViewportMargins QAbstractScrollArea::setViewportMargins commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h non plain false true 2 void [0xc821124680] } +&{setViewportMargins QAbstractScrollArea::setViewportMargins commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h non plain false false void [0xc821124a40 0xc821124b60 0xc821124d00 0xc821124de0] } +&{setupViewport QAbstractScrollArea::setupViewport commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h impure plain false false void [0xc821125100] } +&{sizeHint QAbstractScrollArea::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h impure plain false false QSize [] } +&{verticalScrollBar QAbstractScrollArea::verticalScrollBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h non plain false false QScrollBar * [] } +&{viewport QAbstractScrollArea::viewport commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h non plain false false QWidget * [] } +&{viewportMargins QAbstractScrollArea::viewportMargins commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h non plain false false QMargins [] } +&{viewportSizeHint QAbstractScrollArea::viewportSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h impure plain false false QSize [] } +&{wheelEvent QAbstractScrollArea::wheelEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h impure plain false false void [0xc821125e80] } +&{~QAbstractScrollArea QAbstractScrollArea::~QAbstractScrollArea commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractscrollarea.h non destructor false false [] } +######################################## ENUMS ######################################## +&{SizeAdjustPolicy QAbstractScrollArea::SizeAdjustPolicy commendable public [0xc8212bfca0 0xc8212bfd80 0xc8212bfe80]} diff --git a/internal/binding/dump/QtWidgets/QAbstractSlider.txt b/internal/binding/dump/QtWidgets/QAbstractSlider.txt new file mode 100755 index 00000000..6a078259 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QAbstractSlider.txt @@ -0,0 +1,44 @@ +######################################## FUNCTIONS ######################################## +&{hasTracking QAbstractSlider::hasTracking commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.cpp non plain false false bool [] } +&{invertedAppearance QAbstractSlider::invertedAppearance commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.cpp non plain false false bool [] } +&{invertedControls QAbstractSlider::invertedControls commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.cpp non plain false false bool [] } +&{isSliderDown QAbstractSlider::isSliderDown commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.cpp non plain false false bool [] } +&{maximum QAbstractSlider::maximum commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.cpp non plain false false int [] } +&{minimum QAbstractSlider::minimum commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.cpp non plain false false int [] } +&{orientation QAbstractSlider::orientation commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.cpp non plain false false Qt::Orientation [] } +&{pageStep QAbstractSlider::pageStep commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.cpp non plain false false int [] } +&{setInvertedAppearance QAbstractSlider::setInvertedAppearance commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.cpp non plain false false void [0xc8210f8ee0] } +&{setInvertedControls QAbstractSlider::setInvertedControls commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.cpp non plain false false void [0xc8210f9440] } +&{setMaximum QAbstractSlider::setMaximum commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.cpp non plain false false void [0xc8210f9980] } +&{setMinimum QAbstractSlider::setMinimum commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.cpp non plain false false void [0xc8210f9e80] } +&{setOrientation QAbstractSlider::setOrientation commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.cpp non slot false false void [0xc8210f63c0] } +&{setPageStep QAbstractSlider::setPageStep commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.cpp non plain false false void [0xc8210f6920] } +&{setSingleStep QAbstractSlider::setSingleStep commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.cpp non plain false false void [0xc8210f6e20] } +&{setSliderDown QAbstractSlider::setSliderDown commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.cpp non plain false false void [0xc8210f7340] } +&{setSliderPosition QAbstractSlider::setSliderPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.cpp non plain false false void [0xc8210f7760] } +&{setTracking QAbstractSlider::setTracking commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.cpp non plain false false void [0xc8210f7ca0] } +&{setValue QAbstractSlider::setValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.cpp non slot false false void [0xc8210f0100] } +&{singleStep QAbstractSlider::singleStep commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.cpp non plain false false int [] } +&{sliderPosition QAbstractSlider::sliderPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.cpp non plain false false int [] } +&{value QAbstractSlider::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.cpp non plain false false int [] } +&{QAbstractSlider QAbstractSlider::QAbstractSlider commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.h non constructor false false [0xc8210f15e0] } +&{actionTriggered QAbstractSlider::actionTriggered commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.h non signal false false void [0xc8210f1b20] } +&{changeEvent QAbstractSlider::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.h impure plain false false void [0xc8210f1da0] } +&{event QAbstractSlider::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.h impure plain false false bool [0xc8210e4040] } +&{keyPressEvent QAbstractSlider::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.h impure plain false false void [0xc8210e45c0] } +&{rangeChanged QAbstractSlider::rangeChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.h non signal false false void [0xc8210e4ae0 0xc8210e4c20] } +&{repeatAction QAbstractSlider::repeatAction commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.h non plain false false SliderAction [] } +&{setRange QAbstractSlider::setRange commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.h non slot false false void [0xc8210e5500 0xc8210e56a0] } +&{setRepeatAction QAbstractSlider::setRepeatAction commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.h non plain false false void [0xc8210e5b80 0xc8210e5c20 0xc8210e5e40] } +&{sliderChange QAbstractSlider::sliderChange commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.h impure plain false false void [0xc8210d2460] } +&{sliderMoved QAbstractSlider::sliderMoved commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.h non signal false false void [0xc8210d2a40] } +&{sliderPressed QAbstractSlider::sliderPressed commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.h non signal false false void [] } +&{sliderReleased QAbstractSlider::sliderReleased commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.h non signal false false void [] } +&{timerEvent QAbstractSlider::timerEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.h impure plain false false void [0xc8210d3660] } +&{triggerAction QAbstractSlider::triggerAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.h non plain false false void [0xc8210d3bc0] } +&{valueChanged QAbstractSlider::valueChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.h non signal false false void [0xc8210c4100] } +&{wheelEvent QAbstractSlider::wheelEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.h impure plain false false void [0xc8210c45e0] } +&{~QAbstractSlider QAbstractSlider::~QAbstractSlider commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractslider.h non destructor false false [] } +######################################## ENUMS ######################################## +&{SliderAction QAbstractSlider::SliderAction commendable public [0xc8210f0780 0xc8210f0860 0xc8210f0980 0xc8210f0aa0 0xc8210f0be0 0xc8210f0ce0 0xc8210f0d60 0xc8210f0e00]} +&{SliderChange QAbstractSlider::SliderChange commendable protected [0xc8210f1060 0xc8210f1180 0xc8210f1260 0xc8210f13c0]} diff --git a/internal/binding/dump/QtWidgets/QAbstractSpinBox.txt b/internal/binding/dump/QtWidgets/QAbstractSpinBox.txt new file mode 100755 index 00000000..ac099a61 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QAbstractSpinBox.txt @@ -0,0 +1,62 @@ +######################################## FUNCTIONS ######################################## +&{alignment QAbstractSpinBox::alignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.cpp non plain false false Qt::Alignment [] } +&{buttonSymbols QAbstractSpinBox::buttonSymbols commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.cpp non plain false false ButtonSymbols [] } +&{correctionMode QAbstractSpinBox::correctionMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.cpp non plain false false CorrectionMode [] } +&{hasAcceptableInput QAbstractSpinBox::hasAcceptableInput commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.cpp non plain false false bool [] } +&{hasFrame QAbstractSpinBox::hasFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.cpp non plain false false bool [] } +&{isAccelerated QAbstractSpinBox::isAccelerated commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.cpp non plain false false bool [] } +&{isGroupSeparatorShown QAbstractSpinBox::isGroupSeparatorShown commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.cpp non plain false false bool [] } +&{isReadOnly QAbstractSpinBox::isReadOnly commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.cpp non plain false false bool [] } +&{keyboardTracking QAbstractSpinBox::keyboardTracking commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.cpp non plain false false bool [] } +&{setAccelerated QAbstractSpinBox::setAccelerated commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.cpp non plain false false void [0xc826a8f1a0] } +&{setAlignment QAbstractSpinBox::setAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.cpp non plain false false void [0xc826a8f5c0] } +&{setButtonSymbols QAbstractSpinBox::setButtonSymbols commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.cpp non plain false false void [0xc826a8fa00] } +&{setCorrectionMode QAbstractSpinBox::setCorrectionMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.cpp non plain false false void [0xc826a8fea0] } +&{setFrame QAbstractSpinBox::setFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.cpp non plain false false void [0xc820b2a2e0] } +&{setGroupSeparatorShown QAbstractSpinBox::setGroupSeparatorShown commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.cpp non plain false false void [0xc820b2a6e0] } +&{setKeyboardTracking QAbstractSpinBox::setKeyboardTracking commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.cpp non plain false false void [0xc820b2aa80] } +&{setLineEdit QAbstractSpinBox::setLineEdit commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.cpp non plain false false void [0xc820b2ae20] } +&{setReadOnly QAbstractSpinBox::setReadOnly commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.cpp non plain false false void [0xc820b2b200] } +&{setSpecialValueText QAbstractSpinBox::setSpecialValueText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.cpp non plain false false void [0xc820b2b540] } +&{setWrapping QAbstractSpinBox::setWrapping commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.cpp non plain false false void [0xc820b2b9c0] } +&{specialValueText QAbstractSpinBox::specialValueText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.cpp non plain false false QString [] } +&{text QAbstractSpinBox::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.cpp non plain false false QString [] } +&{wrapping QAbstractSpinBox::wrapping commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.cpp non plain false false bool [] } +&{QAbstractSpinBox QAbstractSpinBox::QAbstractSpinBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h non constructor false false [0xc8208dd640] } +&{changeEvent QAbstractSpinBox::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h impure plain false false void [0xc820aa0300] } +&{clear QAbstractSpinBox::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h impure slot false false void [] } +&{closeEvent QAbstractSpinBox::closeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h impure plain false false void [0xc820aa09a0] } +&{contextMenuEvent QAbstractSpinBox::contextMenuEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h impure plain false false void [0xc820aa0d20] } +&{editingFinished QAbstractSpinBox::editingFinished commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h non signal false false void [] } +&{event QAbstractSpinBox::event commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h impure plain false false bool [0xc820aa1400] } +&{fixup QAbstractSpinBox::fixup commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h impure plain false false void [0xc820aa1900] } +&{focusInEvent QAbstractSpinBox::focusInEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h impure plain false false void [0xc820aa1d00] } +&{focusOutEvent QAbstractSpinBox::focusOutEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h impure plain false false void [0xc820a161c0] } +&{hideEvent QAbstractSpinBox::hideEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h impure plain false false void [0xc820a165e0] } +&{initStyleOption QAbstractSpinBox::initStyleOption commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h non plain false false void [0xc820a16900] } +&{inputMethodQuery QAbstractSpinBox::inputMethodQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h impure plain false false QVariant [0xc820a16d20] } +&{interpretText QAbstractSpinBox::interpretText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h non plain false false void [] } +&{keyPressEvent QAbstractSpinBox::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h impure plain false false void [0xc820a172a0] } +&{keyReleaseEvent QAbstractSpinBox::keyReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h impure plain false false void [0xc820a175a0] } +&{lineEdit QAbstractSpinBox::lineEdit commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h non plain false false QLineEdit * [] } +&{minimumSizeHint QAbstractSpinBox::minimumSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h impure plain false false QSize [] } +&{mouseMoveEvent QAbstractSpinBox::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h impure plain false false void [0xc820a17c60] } +&{mousePressEvent QAbstractSpinBox::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h impure plain false false void [0xc820a17f40] } +&{mouseReleaseEvent QAbstractSpinBox::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h impure plain false false void [0xc820cda280] } +&{paintEvent QAbstractSpinBox::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h impure plain false false void [0xc820cda5c0] } +&{resizeEvent QAbstractSpinBox::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h impure plain false false void [0xc820cda960] } +&{selectAll QAbstractSpinBox::selectAll commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h non slot false false void [] } +&{showEvent QAbstractSpinBox::showEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h impure plain false false void [0xc820cdaf20] } +&{sizeHint QAbstractSpinBox::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h impure plain false false QSize [] } +&{stepBy QAbstractSpinBox::stepBy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h impure plain false false void [0xc820cdb540] } +&{stepDown QAbstractSpinBox::stepDown commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h non slot false false void [] } +&{stepEnabled QAbstractSpinBox::stepEnabled commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h impure plain false false StepEnabled [] } +&{stepUp QAbstractSpinBox::stepUp commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h non slot false false void [] } +&{timerEvent QAbstractSpinBox::timerEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h impure plain false false void [0xc820cdbe60] } +&{validate QAbstractSpinBox::validate commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h impure plain false false QValidator::State [0xc820eae480 0xc820eae620] } +&{wheelEvent QAbstractSpinBox::wheelEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h impure plain false false void [0xc820eaec00] } +&{~QAbstractSpinBox QAbstractSpinBox::~QAbstractSpinBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractspinbox.h non destructor false false [] } +######################################## ENUMS ######################################## +&{ButtonSymbols QAbstractSpinBox::ButtonSymbols commendable public [0xc8208dc440 0xc8208dc560 0xc8208dc680]} +&{CorrectionMode QAbstractSpinBox::CorrectionMode commendable public [0xc8208dca60 0xc8208dcc20]} +&{StepEnabledFlag QAbstractSpinBox::StepEnabledFlag commendable public QAbstractSpinBox::StepEnabled [0xc8208dd000 0xc8208dd140 0xc8208dd200]} diff --git a/internal/binding/dump/QtWidgets/QAccessibleWidget.txt b/internal/binding/dump/QtWidgets/QAccessibleWidget.txt new file mode 100755 index 00000000..90e5b45d --- /dev/null +++ b/internal/binding/dump/QtWidgets/QAccessibleWidget.txt @@ -0,0 +1,25 @@ +######################################## FUNCTIONS ######################################## +&{QAccessibleWidget QAccessibleWidget::QAccessibleWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/accessible/qaccessiblewidget.h non constructor false false [0xc823203960 0xc823203aa0 0xc823203c00] } +&{actionNames QAccessibleWidget::actionNames commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/accessible/qaccessiblewidget.h impure plain false false QStringList [] } +&{addControllingSignal QAccessibleWidget::addControllingSignal commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/accessible/qaccessiblewidget.h non plain false false void [0xc8231f40c0] } +&{backgroundColor QAccessibleWidget::backgroundColor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/accessible/qaccessiblewidget.h impure plain false false QColor [] } +&{child QAccessibleWidget::child commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/accessible/qaccessiblewidget.h impure plain false false QAccessibleInterface * [0xc8231f4580] } +&{childCount QAccessibleWidget::childCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/accessible/qaccessiblewidget.h impure plain false false int [] } +&{doAction QAccessibleWidget::doAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/accessible/qaccessiblewidget.h impure plain false false void [0xc8231f4a40] } +&{focusChild QAccessibleWidget::focusChild commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/accessible/qaccessiblewidget.h impure plain false false QAccessibleInterface * [] } +&{foregroundColor QAccessibleWidget::foregroundColor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/accessible/qaccessiblewidget.h impure plain false false QColor [] } +&{indexOfChild QAccessibleWidget::indexOfChild commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/accessible/qaccessiblewidget.h impure plain false false int [0xc8231f4fc0] } +&{interface_cast QAccessibleWidget::interface_cast commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/accessible/qaccessiblewidget.h impure plain false false void * [0xc8231f5300] } +&{isValid QAccessibleWidget::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/accessible/qaccessiblewidget.h impure plain false false bool [] } +&{keyBindingsForAction QAccessibleWidget::keyBindingsForAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/accessible/qaccessiblewidget.h impure plain false false QStringList [0xc8231f57e0] } +&{parent QAccessibleWidget::parent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/accessible/qaccessiblewidget.h impure plain false false QAccessibleInterface * [] } +&{parentObject QAccessibleWidget::parentObject commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/accessible/qaccessiblewidget.h non plain false false QObject * [] } +&{rect QAccessibleWidget::rect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/accessible/qaccessiblewidget.h impure plain false false QRect [] } +&{relations QAccessibleWidget::relations commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/widgets/accessible/qaccessiblewidget.h impure plain false false QVector > [0xc8231de0e0] } +&{role QAccessibleWidget::role commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/accessible/qaccessiblewidget.h impure plain false false QAccessible::Role [] } +&{state QAccessibleWidget::state commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/widgets/accessible/qaccessiblewidget.h impure plain false false QAccessible::State [] } +&{text QAccessibleWidget::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/accessible/qaccessiblewidget.h impure plain false false QString [0xc8231de860] } +&{widget QAccessibleWidget::widget commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/accessible/qaccessiblewidget.h non plain false false QWidget * [] } +&{window QAccessibleWidget::window commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/accessible/qaccessiblewidget.h impure plain false false QWindow * [] } +&{~QAccessibleWidget QAccessibleWidget::~QAccessibleWidget commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/accessible/qaccessiblewidget.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QAction.txt b/internal/binding/dump/QtWidgets/QAction.txt new file mode 100755 index 00000000..5921c0cd --- /dev/null +++ b/internal/binding/dump/QtWidgets/QAction.txt @@ -0,0 +1,68 @@ +######################################## FUNCTIONS ######################################## +&{autoRepeat QAction::autoRepeat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false bool [] } +&{font QAction::font commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false QFont [] } +&{icon QAction::icon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false QIcon [] } +&{iconText QAction::iconText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false QString [] } +&{isCheckable QAction::isCheckable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false bool [] } +&{isChecked QAction::isChecked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false bool [] } +&{isEnabled QAction::isEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false bool [] } +&{isIconVisibleInMenu QAction::isIconVisibleInMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false bool [] } +&{isVisible QAction::isVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false bool [] } +&{menuRole QAction::menuRole commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false MenuRole [] } +&{priority QAction::priority commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false Priority [] } +&{setAutoRepeat QAction::setAutoRepeat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false void [0xc821fb51a0] } +&{setCheckable QAction::setCheckable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false void [0xc821fb53a0] } +&{setChecked QAction::setChecked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non slot false false void [0xc821fb55a0] } +&{setData QAction::setData commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false void [0xc821fb5700] } +&{setEnabled QAction::setEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non slot false false void [0xc821fb5900] } +&{setFont QAction::setFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false void [0xc821fb5b20] } +&{setIcon QAction::setIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false void [0xc821fb5cc0] } +&{setIconText QAction::setIconText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false void [0xc821fb5ea0] } +&{setIconVisibleInMenu QAction::setIconVisibleInMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false void [0xc821fcc180] } +&{setMenuRole QAction::setMenuRole commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false void [0xc821fcc400] } +&{setPriority QAction::setPriority commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false void [0xc821fcc660] } +&{setShortcut QAction::setShortcut commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false void [0xc821fcc880] } +&{setShortcutContext QAction::setShortcutContext commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false void [0xc821fccb80] } +&{setStatusTip QAction::setStatusTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false void [0xc821fcce20] } +&{setText QAction::setText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false void [0xc821fccfe0] } +&{setToolTip QAction::setToolTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false void [0xc821fcd260] } +&{setVisible QAction::setVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non slot false false void [0xc821fcd460] } +&{setWhatsThis QAction::setWhatsThis commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false void [0xc821fcd640] } +&{shortcutContext QAction::shortcutContext commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false Qt::ShortcutContext [] } +&{statusTip QAction::statusTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false QString [] } +&{text QAction::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false QString [] } +&{toggle QAction::toggle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non slot false false void [] } +&{toolTip QAction::toolTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false QString [] } +&{whatsThis QAction::whatsThis commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.cpp non plain false false QString [] } +&{QAction QAction::QAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h non constructor false false [0xc821fe2bc0] } +&{QAction QAction::QAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h non constructor false true 3 [0xc821fe2d80 0xc821fe2e20 0xc821fe2ee0] } +&{QAction QAction::QAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h non constructor false true 2 [0xc821fe3080 0xc821fe3100] } +&{actionGroup QAction::actionGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h non plain false false QActionGroup * [] } +&{activate QAction::activate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h non plain false false void [0xc821fe36e0] } +&{associatedGraphicsWidgets QAction::associatedGraphicsWidgets commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h non plain false false QList [] } +&{associatedWidgets QAction::associatedWidgets commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h non plain false false QList [] } +&{changed QAction::changed commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h non signal false false void [] } +&{data QAction::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h non plain false false QVariant [] } +&{event QAction::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h impure plain false false bool [0xc821fe3d20] } +&{hover QAction::hover commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h non slot false false void [] } +&{hovered QAction::hovered commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h non signal false false void [] } +&{isSeparator QAction::isSeparator commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h non plain false false bool [] } +&{menu QAction::menu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h non plain false false QMenu * [] } +&{parentWidget QAction::parentWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h non plain false false QWidget * [] } +&{setActionGroup QAction::setActionGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h non plain false false void [0xc821ff0540] } +&{setDisabled QAction::setDisabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h non slot false false void [0xc821ff0860] } +&{setMenu QAction::setMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h non plain false false void [0xc821ff0ac0] } +&{setSeparator QAction::setSeparator commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h non plain false false void [0xc821ff0d60] } +&{setShortcuts QAction::setShortcuts commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h non plain false true 2 void [0xc821ff0fc0] } +&{setShortcuts QAction::setShortcuts commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h non plain false false void [0xc821ff12a0] } +&{shortcut QAction::shortcut commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h non plain false false QKeySequence [] } +&{shortcuts QAction::shortcuts commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h non plain false false QList [] } +&{showStatusText QAction::showStatusText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h non plain false false bool [0xc821ff18e0] } +&{toggled QAction::toggled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h non signal false false void [0xc821ff1ac0] } +&{trigger QAction::trigger commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h non slot false false void [] } +&{triggered QAction::triggered commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h non signal false false void [0xc821ff1e00] } +&{~QAction QAction::~QAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qaction.h non destructor false false [] } +######################################## ENUMS ######################################## +&{ActionEvent QAction::ActionEvent commendable public [0xc821fcdea0 0xc821fcdf40]} +&{MenuRole QAction::MenuRole commendable public [0xc821fe2160 0xc821fe2240 0xc821fe2360 0xc821fe2420 0xc821fe2500 0xc821fe25c0 0xc821fe2660]} +&{Priority QAction::Priority commendable public [0xc821fe28a0 0xc821fe2940 0xc821fe29c0]} diff --git a/internal/binding/dump/QtWidgets/QActionGroup.txt b/internal/binding/dump/QtWidgets/QActionGroup.txt new file mode 100755 index 00000000..825cd6da --- /dev/null +++ b/internal/binding/dump/QtWidgets/QActionGroup.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{addAction QActionGroup::addAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qactiongroup.cpp non plain false false QAction * [0xc822068800] } +&{isEnabled QActionGroup::isEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qactiongroup.cpp non plain false false bool [] } +&{isExclusive QActionGroup::isExclusive commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qactiongroup.cpp non plain false false bool [] } +&{isVisible QActionGroup::isVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qactiongroup.cpp non plain false false bool [] } +&{setEnabled QActionGroup::setEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qactiongroup.cpp non slot false false void [0xc822068d80] } +&{setExclusive QActionGroup::setExclusive commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qactiongroup.cpp non slot false false void [0xc822068f80] } +&{setVisible QActionGroup::setVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qactiongroup.cpp non slot false false void [0xc8220691a0] } +&{QActionGroup QActionGroup::QActionGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qactiongroup.h non constructor false false [0xc822069380] } +&{actions QActionGroup::actions commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qactiongroup.h non plain false false QList [] } +&{addAction QActionGroup::addAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qactiongroup.h non plain false true 3 QAction * [0xc822069960 0xc822069a00] } +&{addAction QActionGroup::addAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qactiongroup.h non plain false true 2 QAction * [0xc822069c60] } +&{checkedAction QActionGroup::checkedAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qactiongroup.h non plain false false QAction * [] } +&{hovered QActionGroup::hovered commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qactiongroup.h non signal false false void [0xc82207a080] } +&{removeAction QActionGroup::removeAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qactiongroup.h non plain false false void [0xc82207a300] } +&{setDisabled QActionGroup::setDisabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qactiongroup.h non slot false false void [0xc82207a5a0] } +&{triggered QActionGroup::triggered commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qactiongroup.h non signal false false void [0xc82207a8c0] } +&{~QActionGroup QActionGroup::~QActionGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qactiongroup.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QApplication.txt b/internal/binding/dump/QtWidgets/QApplication.txt new file mode 100755 index 00000000..eaf71e90 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QApplication.txt @@ -0,0 +1,64 @@ +######################################## FUNCTIONS ######################################## +&{alert QApplication::alert commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non plain true false void [0xc82207b420 0xc82207b4c0] } +&{autoMaximizeThreshold QApplication::autoMaximizeThreshold commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non slot false false int [] } +&{autoSipEnabled QApplication::autoSipEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non slot false false bool [] } +&{beep QApplication::beep commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non plain true false void [] } +&{cursorFlashTime QApplication::cursorFlashTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non plain true false int [] } +&{doubleClickInterval QApplication::doubleClickInterval commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non plain true false int [] } +&{globalStrut QApplication::globalStrut commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non plain true false QSize [] } +&{isEffectEnabled QApplication::isEffectEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non plain true false bool [0xc82207bf20] } +&{keyboardInputInterval QApplication::keyboardInputInterval commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non plain true false int [] } +&{palette QApplication::palette commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non plain true false QPalette [0xc822084320] } +&{setActiveWindow QApplication::setActiveWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non plain true false void [0xc822084560] } +&{setAutoMaximizeThreshold QApplication::setAutoMaximizeThreshold commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non slot false false void [0xc8220847e0] } +&{setAutoSipEnabled QApplication::setAutoSipEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non slot false false void [0xc822084aa0] } +&{setCursorFlashTime QApplication::setCursorFlashTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non plain true false void [0xc822084da0] } +&{setDoubleClickInterval QApplication::setDoubleClickInterval commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non plain true false void [0xc822085020] } +&{setEffectEnabled QApplication::setEffectEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non plain true false void [0xc822085260 0xc822085300] } +&{setGlobalStrut QApplication::setGlobalStrut commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non plain true false void [0xc822085580] } +&{setKeyboardInputInterval QApplication::setKeyboardInputInterval commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non plain true false void [0xc8220857a0] } +&{setStartDragDistance QApplication::setStartDragDistance commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non plain true false void [0xc8220859c0] } +&{setStartDragTime QApplication::setStartDragTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non plain true false void [0xc822085ba0] } +&{setStyleSheet QApplication::setStyleSheet commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non slot false false void [0xc822085d60] } +&{setWheelScrollLines QApplication::setWheelScrollLines commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non plain true false void [0xc822085f80] } +&{setWindowIcon QApplication::setWindowIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non plain true false void [0xc822094180] } +&{startDragDistance QApplication::startDragDistance commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non plain true false int [] } +&{startDragTime QApplication::startDragTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non plain true false int [] } +&{styleSheet QApplication::styleSheet commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non plain false false QString [] } +&{topLevelAt QApplication::topLevelAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non plain true false QWidget * [0xc822094820] } +&{wheelScrollLines QApplication::wheelScrollLines commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non plain true false int [] } +&{widgetAt QApplication::widgetAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non plain true false QWidget * [0xc822094ba0] } +&{windowIcon QApplication::windowIcon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.cpp non plain true false QIcon [] } +&{QApplication QApplication::QApplication commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non constructor false false [0xc822095300 0xc8220953a0] } +&{aboutQt QApplication::aboutQt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non slot true false void [] } +&{activeModalWidget QApplication::activeModalWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non plain true false QWidget * [] } +&{activePopupWidget QApplication::activePopupWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non plain true false QWidget * [] } +&{activeWindow QApplication::activeWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non plain true false QWidget * [] } +&{allWidgets QApplication::allWidgets commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non plain true false QWidgetList [] } +&{closeAllWindows QApplication::closeAllWindows commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non slot true false void [] } +&{colorSpec QApplication::colorSpec commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non plain true false int [] } +&{desktop QApplication::desktop commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non plain true false QDesktopWidget * [] } +&{event QApplication::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h impure plain false false bool [0xc822bb84e0] } +&{exec QApplication::exec commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non plain true false int [] } +&{focusChanged QApplication::focusChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non signal false false void [0xc822bb87e0 0xc822bb88c0] } +&{focusWidget QApplication::focusWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non plain true false QWidget * [] } +&{font QApplication::font commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non plain true false QFont [] } +&{font QApplication::font commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non plain true true 2 QFont [0xc822bb8d60] } +&{font QApplication::font commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non plain true true 3 QFont [0xc822bb8fc0] } +&{fontMetrics QApplication::fontMetrics commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non plain true false QFontMetrics [] } +&{navigationMode QApplication::navigationMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non plain true false Qt::NavigationMode [] } +&{notify QApplication::notify commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h impure plain false false bool [0xc822bb98a0 0xc822bb9960] } +&{palette QApplication::palette commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non plain true true 2 QPalette [0xc822bb9ba0] } +&{setColorSpec QApplication::setColorSpec commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non plain true false void [0xc822bb9dc0] } +&{setFont QApplication::setFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non plain true false void [0xc822bc8000 0xc822bc80a0] } +&{setNavigationMode QApplication::setNavigationMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non plain true false void [0xc822bc8960] } +&{setPalette QApplication::setPalette commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non plain true false void [0xc822bc8d00 0xc822bc8d80] } +&{setStyle QApplication::setStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non plain true true 2 QStyle * [0xc822bc9080] } +&{setStyle QApplication::setStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non plain true false void [0xc822bc92e0] } +&{style QApplication::style commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non plain true false QStyle * [] } +&{topLevelAt QApplication::topLevelAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non plain true true 2 QWidget * [0xc822bc9720 0xc822bc97c0] } +&{topLevelWidgets QApplication::topLevelWidgets commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non plain true false QWidgetList [] } +&{widgetAt QApplication::widgetAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h non plain true true 2 QWidget * [0xc822bc9bc0 0xc822bc9c60] } +&{~QApplication QApplication::~QApplication commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qapplication.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{ColorSpec QApplication::ColorSpec commendable public [0xc822094f80 0xc822095060 0xc8220950e0]} diff --git a/internal/binding/dump/QtWidgets/QBoxLayout.txt b/internal/binding/dump/QtWidgets/QBoxLayout.txt new file mode 100755 index 00000000..328da915 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QBoxLayout.txt @@ -0,0 +1,38 @@ +######################################## FUNCTIONS ######################################## +&{direction QBoxLayout::direction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.cpp non plain false false Direction [] } +&{QBoxLayout QBoxLayout::QBoxLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h non constructor false false [0xc822bd9ee0 0xc822bd9fa0] } +&{addItem QBoxLayout::addItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h impure plain false false void [0xc822be4200] } +&{addLayout QBoxLayout::addLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h non plain false false void [0xc822be4460 0xc822be4520] } +&{addSpacerItem QBoxLayout::addSpacerItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h non plain false false void [0xc822be47a0] } +&{addSpacing QBoxLayout::addSpacing commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h non plain false false void [0xc822be4a20] } +&{addStretch QBoxLayout::addStretch commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h non plain false false void [0xc822be4ca0] } +&{addStrut QBoxLayout::addStrut commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h non plain false false void [0xc822be4f20] } +&{addWidget QBoxLayout::addWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h non plain false false void [0xc822be51a0 0xc822be5240 0xc822be5300] } +&{count QBoxLayout::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h impure plain false false int [] } +&{expandingDirections QBoxLayout::expandingDirections commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h impure plain false false Qt::Orientations [] } +&{hasHeightForWidth QBoxLayout::hasHeightForWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h impure plain false false bool [] } +&{heightForWidth QBoxLayout::heightForWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h impure plain false false int [0xc822be5a00] } +&{insertItem QBoxLayout::insertItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h non plain false false void [0xc822be5c40 0xc822be5d00] } +&{insertLayout QBoxLayout::insertLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h non plain false false void [0xc822be5f40 0xc822bec000 0xc822bec0a0] } +&{insertSpacerItem QBoxLayout::insertSpacerItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h non plain false false void [0xc822bec300 0xc822bec3a0] } +&{insertSpacing QBoxLayout::insertSpacing commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h non plain false false void [0xc822bec5e0 0xc822bec680] } +&{insertStretch QBoxLayout::insertStretch commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h non plain false false void [0xc822bec880 0xc822bec920] } +&{insertWidget QBoxLayout::insertWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h non plain false false void [0xc822becb40 0xc822becbe0 0xc822beccc0 0xc822becd40] } +&{invalidate QBoxLayout::invalidate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h impure plain false false void [] } +&{itemAt QBoxLayout::itemAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h impure plain false false QLayoutItem * [0xc822bed0c0] } +&{maximumSize QBoxLayout::maximumSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h impure plain false false QSize [] } +&{minimumHeightForWidth QBoxLayout::minimumHeightForWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h impure plain false false int [0xc822bed400] } +&{minimumSize QBoxLayout::minimumSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h impure plain false false QSize [] } +&{setDirection QBoxLayout::setDirection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h non plain false false void [0xc822bed6c0] } +&{setGeometry QBoxLayout::setGeometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h impure plain false false void [0xc822bed8a0] } +&{setSpacing QBoxLayout::setSpacing commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h non plain false false void [0xc822beda80] } +&{setStretch QBoxLayout::setStretch commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h non plain false false void [0xc822bedca0 0xc822bedd20] } +&{setStretchFactor QBoxLayout::setStretchFactor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h non plain false true 2 bool [0xc822bedf40 0xc822bedfc0] } +&{setStretchFactor QBoxLayout::setStretchFactor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h non plain false false bool [0xc822c00200 0xc822c00280] } +&{sizeHint QBoxLayout::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h impure plain false false QSize [] } +&{spacing QBoxLayout::spacing commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h non plain false false int [] } +&{stretch QBoxLayout::stretch commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h non plain false false int [0xc822c00740] } +&{takeAt QBoxLayout::takeAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h impure plain false false QLayoutItem * [0xc822c009a0] } +&{~QBoxLayout QBoxLayout::~QBoxLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Direction QBoxLayout::Direction commendable public [0xc822bd9920 0xc822bd99c0 0xc822bd9a60 0xc822bd9b20 0xc822bd9be0 0xc822bd9ca0]} diff --git a/internal/binding/dump/QtWidgets/QButtonGroup.txt b/internal/binding/dump/QtWidgets/QButtonGroup.txt new file mode 100755 index 00000000..9bcc5897 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QButtonGroup.txt @@ -0,0 +1,22 @@ +######################################## FUNCTIONS ######################################## +&{QButtonGroup QButtonGroup::QButtonGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non constructor false false [0xc820acfd40] } +&{addButton QButtonGroup::addButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false void [0xc820ee0220 0xc820ee03a0] } +&{button QButtonGroup::button commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false QAbstractButton * [0xc820ee08c0] } +&{buttons QButtonGroup::buttons commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false QList [] } +&{checkedButton QButtonGroup::checkedButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false QAbstractButton * [] } +&{checkedId QButtonGroup::checkedId commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false int [] } +&{exclusive QButtonGroup::exclusive commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false bool [] } +&{id QButtonGroup::id commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false int [0xc820ee1860] } +&{removeButton QButtonGroup::removeButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false void [0xc820ee1e40] } +&{setExclusive QButtonGroup::setExclusive commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false void [0xc82271a300] } +&{setId QButtonGroup::setId commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non plain false false void [0xc82271a680 0xc82271a780] } +&{~QButtonGroup QButtonGroup::~QButtonGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qabstractbutton.cpp non destructor false false [] } +&{buttonClicked QButtonGroup::buttonClicked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qbuttongroup.h non signal false false void [0xc82271ac40] } +&{buttonClicked QButtonGroup::buttonClicked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qbuttongroup.h non signal false true 2 void [0xc82271af60] } +&{buttonPressed QButtonGroup::buttonPressed commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qbuttongroup.h non signal false false void [0xc82271b280] } +&{buttonPressed QButtonGroup::buttonPressed commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qbuttongroup.h non signal false true 2 void [0xc82271b5c0] } +&{buttonReleased QButtonGroup::buttonReleased commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qbuttongroup.h non signal false false void [0xc82271b920] } +&{buttonReleased QButtonGroup::buttonReleased commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qbuttongroup.h non signal false true 2 void [0xc82271bc80] } +&{buttonToggled QButtonGroup::buttonToggled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qbuttongroup.h non signal false false void [0xc82271bfa0 0xc820d82140] } +&{buttonToggled QButtonGroup::buttonToggled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qbuttongroup.h non signal false true 2 void [0xc820d826a0 0xc820d828e0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QCalendarWidget.txt b/internal/binding/dump/QtWidgets/QCalendarWidget.txt new file mode 100755 index 00000000..ae177d34 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QCalendarWidget.txt @@ -0,0 +1,60 @@ +######################################## FUNCTIONS ######################################## +&{dateEditAcceptDelay QCalendarWidget::dateEditAcceptDelay commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.cpp non plain false false int [] } +&{firstDayOfWeek QCalendarWidget::firstDayOfWeek commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.cpp non plain false false Qt::DayOfWeek [] } +&{horizontalHeaderFormat QCalendarWidget::horizontalHeaderFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.cpp non plain false false HorizontalHeaderFormat [] } +&{isDateEditEnabled QCalendarWidget::isDateEditEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.cpp non plain false false bool [] } +&{isGridVisible QCalendarWidget::isGridVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.cpp non plain false false bool [] } +&{isNavigationBarVisible QCalendarWidget::isNavigationBarVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.cpp non plain false false bool [] } +&{maximumDate QCalendarWidget::maximumDate commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.cpp non plain false false QDate [] } +&{minimumDate QCalendarWidget::minimumDate commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.cpp non plain false false QDate [] } +&{selectedDate QCalendarWidget::selectedDate commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.cpp non plain false false QDate [] } +&{selectionMode QCalendarWidget::selectionMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.cpp non plain false false SelectionMode [] } +&{setDateEditAcceptDelay QCalendarWidget::setDateEditAcceptDelay commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.cpp non plain false false void [0xc820d63e60] } +&{setDateEditEnabled QCalendarWidget::setDateEditEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.cpp non plain false false void [0xc820d50480] } +&{setFirstDayOfWeek QCalendarWidget::setFirstDayOfWeek commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.cpp non plain false false void [0xc820d50c80] } +&{setGridVisible QCalendarWidget::setGridVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.cpp non slot false false void [0xc820d51460] } +&{setHorizontalHeaderFormat QCalendarWidget::setHorizontalHeaderFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.cpp non plain false false void [0xc820d51b80] } +&{setMaximumDate QCalendarWidget::setMaximumDate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.cpp non plain false false void [0xc820d36440] } +&{setMinimumDate QCalendarWidget::setMinimumDate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.cpp non plain false false void [0xc820d36b40] } +&{setNavigationBarVisible QCalendarWidget::setNavigationBarVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.cpp non slot false false void [0xc820d37340] } +&{setSelectedDate QCalendarWidget::setSelectedDate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.cpp non slot false false void [0xc820d37a80] } +&{setSelectionMode QCalendarWidget::setSelectionMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.cpp non plain false false void [0xc820d37fa0] } +&{setVerticalHeaderFormat QCalendarWidget::setVerticalHeaderFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.cpp non plain false false void [0xc820d24540] } +&{verticalHeaderFormat QCalendarWidget::verticalHeaderFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.cpp non plain false false VerticalHeaderFormat [] } +&{QCalendarWidget QCalendarWidget::QCalendarWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h non constructor false false [0xc820cf4740] } +&{activated QCalendarWidget::activated commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h non signal false false void [0xc820cf5420] } +&{clicked QCalendarWidget::clicked commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h non signal false false void [0xc820cf5d20] } +&{currentPageChanged QCalendarWidget::currentPageChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h non signal false false void [0xc820cd20a0 0xc820cd2120] } +&{dateTextFormat QCalendarWidget::dateTextFormat commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h non plain false false QMap [] } +&{dateTextFormat QCalendarWidget::dateTextFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h non plain false true 2 QTextCharFormat [0xc820cd24e0] } +&{event QCalendarWidget::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h impure plain false false bool [0xc820cd2760] } +&{eventFilter QCalendarWidget::eventFilter commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h impure plain false false bool [0xc820cd29c0 0xc820cd2a60] } +&{headerTextFormat QCalendarWidget::headerTextFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h non plain false false QTextCharFormat [] } +&{keyPressEvent QCalendarWidget::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h impure plain false false void [0xc820cd2da0] } +&{minimumSizeHint QCalendarWidget::minimumSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h impure plain false false QSize [] } +&{monthShown QCalendarWidget::monthShown commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h non plain false false int [] } +&{mousePressEvent QCalendarWidget::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h impure plain false false void [0xc820cd3240] } +&{paintCell QCalendarWidget::paintCell commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h impure plain false false void [0xc820cd34a0 0xc820cd3580 0xc820cd3620] } +&{resizeEvent QCalendarWidget::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h impure plain false false void [0xc820cd38a0] } +&{selectionChanged QCalendarWidget::selectionChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h non signal false false void [] } +&{setCurrentPage QCalendarWidget::setCurrentPage commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h non slot false false void [0xc820cd3b80 0xc820cd3c20] } +&{setDateRange QCalendarWidget::setDateRange commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h non slot false false void [0xc820cd3e40 0xc820cd3f00] } +&{setDateTextFormat QCalendarWidget::setDateTextFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h non plain false false void [0xc820de21e0 0xc820de2380] } +&{setHeaderTextFormat QCalendarWidget::setHeaderTextFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h non plain false false void [0xc820de2700] } +&{setWeekdayTextFormat QCalendarWidget::setWeekdayTextFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h non plain false false void [0xc820de2b60 0xc820de2c60] } +&{showNextMonth QCalendarWidget::showNextMonth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h non slot false false void [] } +&{showNextYear QCalendarWidget::showNextYear commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h non slot false false void [] } +&{showPreviousMonth QCalendarWidget::showPreviousMonth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h non slot false false void [] } +&{showPreviousYear QCalendarWidget::showPreviousYear commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h non slot false false void [] } +&{showSelectedDate QCalendarWidget::showSelectedDate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h non slot false false void [] } +&{showToday QCalendarWidget::showToday commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h non slot false false void [] } +&{sizeHint QCalendarWidget::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h impure plain false false QSize [] } +&{updateCell QCalendarWidget::updateCell commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h non plain false false void [0xc820de3ae0] } +&{updateCells QCalendarWidget::updateCells commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h non plain false false void [] } +&{weekdayTextFormat QCalendarWidget::weekdayTextFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h non plain false false QTextCharFormat [0xc820de3f80] } +&{yearShown QCalendarWidget::yearShown commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h non plain false false int [] } +&{~QCalendarWidget QCalendarWidget::~QCalendarWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcalendarwidget.h non destructor false false [] } +######################################## ENUMS ######################################## +&{HorizontalHeaderFormat QCalendarWidget::HorizontalHeaderFormat commendable public [0xc820d24ec0 0xc820d25140 0xc820d253c0 0xc820d254a0]} +&{SelectionMode QCalendarWidget::SelectionMode commendable public [0xc820d25840 0xc820d25940]} +&{VerticalHeaderFormat QCalendarWidget::VerticalHeaderFormat commendable public [0xc820d25f40 0xc820cf4060]} diff --git a/internal/binding/dump/QtWidgets/QCheckBox.txt b/internal/binding/dump/QtWidgets/QCheckBox.txt new file mode 100755 index 00000000..7b354e4b --- /dev/null +++ b/internal/binding/dump/QtWidgets/QCheckBox.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{isTristate QCheckBox::isTristate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcheckbox.cpp non plain false false bool [] } +&{setTristate QCheckBox::setTristate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcheckbox.cpp non plain false false void [0xc820c2cd40] } +&{QCheckBox QCheckBox::QCheckBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcheckbox.h non constructor false false [0xc820c2d400] } +&{QCheckBox QCheckBox::QCheckBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcheckbox.h non constructor false true 2 [0xc820c2db60 0xc820c2dce0] } +&{checkState QCheckBox::checkState commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcheckbox.h non plain false false Qt::CheckState [] } +&{checkStateSet QCheckBox::checkStateSet commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcheckbox.h impure plain false false void [] } +&{event QCheckBox::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcheckbox.h impure plain false false bool [0xc820c16900] } +&{hitButton QCheckBox::hitButton commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcheckbox.h impure plain false false bool [0xc820c16ea0] } +&{initStyleOption QCheckBox::initStyleOption commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcheckbox.h non plain false false void [0xc820c174a0] } +&{minimumSizeHint QCheckBox::minimumSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcheckbox.h impure plain false false QSize [] } +&{mouseMoveEvent QCheckBox::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcheckbox.h impure plain false false void [0xc820c17d40] } +&{nextCheckState QCheckBox::nextCheckState commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcheckbox.h impure plain false false void [] } +&{paintEvent QCheckBox::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcheckbox.h impure plain false false void [0xc820bea240] } +&{setCheckState QCheckBox::setCheckState commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcheckbox.h non plain false false void [0xc820bea4a0] } +&{sizeHint QCheckBox::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcheckbox.h impure plain false false QSize [] } +&{stateChanged QCheckBox::stateChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcheckbox.h non signal false false void [0xc820bea860] } +&{~QCheckBox QCheckBox::~QCheckBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcheckbox.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QColorDialog.txt b/internal/binding/dump/QtWidgets/QColorDialog.txt new file mode 100755 index 00000000..50ad1001 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QColorDialog.txt @@ -0,0 +1,25 @@ +######################################## FUNCTIONS ######################################## +&{currentColor QColorDialog::currentColor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qcolordialog.cpp non plain false false QColor [] } +&{options QColorDialog::options commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qcolordialog.cpp non plain false false ColorDialogOptions [] } +&{setCurrentColor QColorDialog::setCurrentColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qcolordialog.cpp non plain false false void [0xc8231df500] } +&{setOptions QColorDialog::setOptions commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qcolordialog.cpp non plain false false void [0xc8231df880] } +&{QColorDialog QColorDialog::QColorDialog commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qcolordialog.h non constructor false false [0xc8231c8380] } +&{QColorDialog QColorDialog::QColorDialog commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qcolordialog.h non constructor false true 2 [0xc8231c86a0 0xc8231c8780] } +&{changeEvent QColorDialog::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qcolordialog.h impure plain false false void [0xc8231c8e00] } +&{colorSelected QColorDialog::colorSelected commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qcolordialog.h non signal false false void [0xc8231c9180] } +&{currentColorChanged QColorDialog::currentColorChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qcolordialog.h non signal false false void [0xc8231c9420] } +&{customColor QColorDialog::customColor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qcolordialog.h non plain true false QColor [0xc8231c96c0] } +&{customCount QColorDialog::customCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qcolordialog.h non plain true false int [] } +&{done QColorDialog::done commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qcolordialog.h impure plain false false void [0xc8231c9b40] } +&{getColor QColorDialog::getColor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qcolordialog.h non plain true false QColor [0xc8231c9e00 0xc8231c9ec0 0xc8231c9f60 0xc8231ba060] } +&{open QColorDialog::open commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qcolordialog.h non plain false false void [0xc8231ba780 0xc8231ba800] } +&{selectedColor QColorDialog::selectedColor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qcolordialog.h non plain false false QColor [] } +&{setCustomColor QColorDialog::setCustomColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qcolordialog.h non plain true false void [0xc8231babe0 0xc8231bac60] } +&{setOption QColorDialog::setOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qcolordialog.h non plain false false void [0xc8231baee0 0xc8231bafe0] } +&{setStandardColor QColorDialog::setStandardColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qcolordialog.h non plain true false void [0xc8231bb200 0xc8231bb2a0] } +&{setVisible QColorDialog::setVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qcolordialog.h impure plain false false void [0xc8231bb560] } +&{standardColor QColorDialog::standardColor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qcolordialog.h non plain true false QColor [0xc8231bb8a0] } +&{testOption QColorDialog::testOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qcolordialog.h non plain false false bool [0xc8231bbb40] } +&{~QColorDialog QColorDialog::~QColorDialog commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qcolordialog.h non destructor false false [] } +######################################## ENUMS ######################################## +&{ColorDialogOption QColorDialog::ColorDialogOption commendable public QColorDialog::ColorDialogOptions [0xc8231dfce0 0xc8231dfd80 0xc8231dfe60]} diff --git a/internal/binding/dump/QtWidgets/QColormap.txt b/internal/binding/dump/QtWidgets/QColormap.txt new file mode 100755 index 00000000..53c9d28a --- /dev/null +++ b/internal/binding/dump/QtWidgets/QColormap.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QColormap QColormap::QColormap commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcolormap.cpp non constructor false false [0xc82136fae0] } +&{colorAt QColormap::colorAt commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcolormap.cpp non plain false false const QColor [0xc82135e420] } +&{colormap QColormap::colormap commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcolormap.cpp non plain false false const QVector [] } +&{depth QColormap::depth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcolormap.cpp non plain false false int [] } +&{instance QColormap::instance commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcolormap.cpp non plain true false QColormap [0xc82135ebc0] } +&{mode QColormap::mode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcolormap.cpp non plain false false Mode [] } +&{operator= QColormap::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcolormap.cpp non plain false false QColormap & [0xc82135f0a0] } +&{pixel QColormap::pixel commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcolormap.cpp non plain false false uint [0xc82135f3c0] } +&{size QColormap::size commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcolormap.cpp non plain false false int [] } +&{~QColormap QColormap::~QColormap commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcolormap.cpp non destructor false false [] } +######################################## ENUMS ######################################## +&{Mode QColormap::Mode commendable public [0xc82135f920 0xc82135fa00 0xc82135fb00]} diff --git a/internal/binding/dump/QtWidgets/QColumnView.txt b/internal/binding/dump/QtWidgets/QColumnView.txt new file mode 100755 index 00000000..54e00877 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QColumnView.txt @@ -0,0 +1,31 @@ +######################################## FUNCTIONS ######################################## +&{resizeGripsVisible QColumnView::resizeGripsVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.cpp non plain false false bool [] } +&{setResizeGripsVisible QColumnView::setResizeGripsVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.cpp non plain false false void [0xc8227dcae0] } +&{QColumnView QColumnView::QColumnView commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.h non constructor false false [0xc8227dce80] } +&{columnWidths QColumnView::columnWidths commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.h non plain false false QList [] } +&{createColumn QColumnView::createColumn commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.h impure plain false false QAbstractItemView * [0xc8227dde40] } +&{currentChanged QColumnView::currentChanged commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.h impure plain false false void [0xc8227ea1e0 0xc8227ea360] } +&{horizontalOffset QColumnView::horizontalOffset commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.h impure plain false false int [] } +&{indexAt QColumnView::indexAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.h impure plain false false QModelIndex [0xc8227ea960] } +&{initializeColumn QColumnView::initializeColumn commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.h non plain false false void [0xc8227ead00] } +&{isIndexHidden QColumnView::isIndexHidden commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.h impure plain false false bool [0xc8227eb120] } +&{moveCursor QColumnView::moveCursor commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.h impure plain false false QModelIndex [0xc8227eb520 0xc8227eb620] } +&{previewWidget QColumnView::previewWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.h non plain false false QWidget * [] } +&{resizeEvent QColumnView::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.h impure plain false false void [0xc8227ebb20] } +&{rowsInserted QColumnView::rowsInserted commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.h impure plain false false void [0xc8227ebf20 0xc8227f6060 0xc8227f6120] } +&{scrollContentsBy QColumnView::scrollContentsBy commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.h impure plain false false void [0xc8227f6360 0xc8227f6400] } +&{scrollTo QColumnView::scrollTo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.h impure plain false false void [0xc8227f6660 0xc8227f6760] } +&{selectAll QColumnView::selectAll commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.h impure plain false false void [] } +&{setColumnWidths QColumnView::setColumnWidths commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.h non plain false false void [0xc8227f6b00] } +&{setModel QColumnView::setModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.h impure plain false false void [0xc8227f6dc0] } +&{setPreviewWidget QColumnView::setPreviewWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.h non plain false false void [0xc8227f7000] } +&{setRootIndex QColumnView::setRootIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.h impure plain false false void [0xc8227f7280] } +&{setSelection QColumnView::setSelection commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.h impure plain false false void [0xc8227f7500 0xc8227f7580] } +&{setSelectionModel QColumnView::setSelectionModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.h impure plain false false void [0xc8227f7860] } +&{sizeHint QColumnView::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.h impure plain false false QSize [] } +&{updatePreviewWidget QColumnView::updatePreviewWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.h non signal false false void [0xc8227f7d00] } +&{verticalOffset QColumnView::verticalOffset commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.h impure plain false false int [] } +&{visualRect QColumnView::visualRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.h impure plain false false QRect [0xc822806120] } +&{visualRegionForSelection QColumnView::visualRegionForSelection commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.h impure plain false false QRegion [0xc8228063e0] } +&{~QColumnView QColumnView::~QColumnView commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qcolumnview.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QComboBox.txt b/internal/binding/dump/QtWidgets/QComboBox.txt new file mode 100755 index 00000000..90a8adf6 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QComboBox.txt @@ -0,0 +1,94 @@ +######################################## FUNCTIONS ######################################## +&{count QComboBox::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non plain false false int [] } +&{currentData QComboBox::currentData commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non plain false false QVariant [0xc820beb060] } +&{currentIndex QComboBox::currentIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non plain false false int [] } +&{currentText QComboBox::currentText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non plain false false QString [] } +&{duplicatesEnabled QComboBox::duplicatesEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non plain false false bool [] } +&{hasFrame QComboBox::hasFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non plain false false bool [] } +&{iconSize QComboBox::iconSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non plain false false QSize [] } +&{insertPolicy QComboBox::insertPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non plain false false InsertPolicy [] } +&{isEditable QComboBox::isEditable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non plain false false bool [] } +&{maxCount QComboBox::maxCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non plain false false int [] } +&{maxVisibleItems QComboBox::maxVisibleItems commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non plain false false int [] } +&{minimumContentsLength QComboBox::minimumContentsLength commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non plain false false int [] } +&{modelColumn QComboBox::modelColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non plain false false int [] } +&{setCompleter QComboBox::setCompleter commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non plain false false void [0xc820bc8620] } +&{setCurrentIndex QComboBox::setCurrentIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non slot false false void [0xc820bc8a60] } +&{setCurrentText QComboBox::setCurrentText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non slot false false void [0xc820bc8e20] } +&{setDuplicatesEnabled QComboBox::setDuplicatesEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non plain false false void [0xc820bc9280] } +&{setEditable QComboBox::setEditable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non plain false false void [0xc820bc96a0] } +&{setFrame QComboBox::setFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non plain false false void [0xc820bc9ac0] } +&{setIconSize QComboBox::setIconSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non plain false false void [0xc820bc9ea0] } +&{setInsertPolicy QComboBox::setInsertPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non plain false false void [0xc820e1c1c0] } +&{setMaxCount QComboBox::setMaxCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non plain false false void [0xc820e1c560] } +&{setMaxVisibleItems QComboBox::setMaxVisibleItems commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non plain false false void [0xc820e1ca00] } +&{setMinimumContentsLength QComboBox::setMinimumContentsLength commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non plain false false void [0xc820e1cd00] } +&{setModelColumn QComboBox::setModelColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non plain false false void [0xc820e1d0a0] } +&{setSizeAdjustPolicy QComboBox::setSizeAdjustPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non plain false false void [0xc820e1d4e0] } +&{setValidator QComboBox::setValidator commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non plain false false void [0xc820e1d7a0] } +&{sizeAdjustPolicy QComboBox::sizeAdjustPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.cpp non plain false false SizeAdjustPolicy [] } +&{QComboBox QComboBox::QComboBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non constructor false false [0xc820b8f140] } +&{activated QComboBox::activated commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non signal false true 2 void [0xc820b8ff20] } +&{activated QComboBox::activated commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non signal false false void [0xc820b56280] } +&{addItem QComboBox::addItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false true 2 void [0xc820b56680 0xc820b567c0 0xc820b56960] } +&{addItem QComboBox::addItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false false void [0xc820b56ec0 0xc820b56f80] } +&{addItems QComboBox::addItems commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false false void [0xc820b574e0] } +&{changeEvent QComboBox::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h impure plain false false void [0xc820b57ee0] } +&{clear QComboBox::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non slot false false void [] } +&{clearEditText QComboBox::clearEditText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non slot false false void [] } +&{completer QComboBox::completer commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false false QCompleter * [] } +&{contextMenuEvent QComboBox::contextMenuEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h impure plain false false void [0xc820b34500] } +&{currentIndexChanged QComboBox::currentIndexChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non signal false true 2 void [0xc820b34840] } +&{currentIndexChanged QComboBox::currentIndexChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non signal false false void [0xc820b34ae0] } +&{currentTextChanged QComboBox::currentTextChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non signal false false void [0xc820b34da0] } +&{editTextChanged QComboBox::editTextChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non signal false false void [0xc820b35000] } +&{event QComboBox::event commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h impure plain false false bool [0xc820b351e0] } +&{findData QComboBox::findData commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false false int [0xc820b35420 0xc820b354a0 0xc820b35580] } +&{findText QComboBox::findText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false false int [0xc820b357c0 0xc820b35840] } +&{focusInEvent QComboBox::focusInEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h impure plain false false void [0xc820b35aa0] } +&{focusOutEvent QComboBox::focusOutEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h impure plain false false void [0xc820b35ce0] } +&{hideEvent QComboBox::hideEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h impure plain false false void [0xc820b35f20] } +&{hidePopup QComboBox::hidePopup commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h impure plain false false void [] } +&{highlighted QComboBox::highlighted commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non signal false true 2 void [0xc820892280] } +&{highlighted QComboBox::highlighted commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non signal false false void [0xc8208924e0] } +&{initStyleOption QComboBox::initStyleOption commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false false void [0xc820892740] } +&{inputMethodEvent QComboBox::inputMethodEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h impure plain false false void [0xc8208929e0] } +&{inputMethodQuery QComboBox::inputMethodQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h impure plain false false QVariant [0xc820892c80] } +&{insertItem QComboBox::insertItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false true 2 void [0xc820892f40 0xc820892fc0 0xc820893080 0xc820893100] } +&{insertItem QComboBox::insertItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false false void [0xc820893340 0xc820893400 0xc820893480] } +&{insertItems QComboBox::insertItems commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false false void [0xc8208936c0 0xc8208937a0] } +&{insertSeparator QComboBox::insertSeparator commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false false void [0xc820893a60] } +&{itemData QComboBox::itemData commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false false QVariant [0xc820893c60 0xc820893d40] } +&{itemDelegate QComboBox::itemDelegate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false false QAbstractItemDelegate * [] } +&{itemIcon QComboBox::itemIcon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false false QIcon [0xc820ade100] } +&{itemText QComboBox::itemText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false false QString [0xc820ade380] } +&{keyPressEvent QComboBox::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h impure plain false false void [0xc820ade5e0] } +&{keyReleaseEvent QComboBox::keyReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h impure plain false false void [0xc820c162a0] } +&{lineEdit QComboBox::lineEdit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false false QLineEdit * [] } +&{minimumSizeHint QComboBox::minimumSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h impure plain false false QSize [] } +&{model QComboBox::model commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false false QAbstractItemModel * [] } +&{mousePressEvent QComboBox::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h impure plain false false void [0xc820c176a0] } +&{mouseReleaseEvent QComboBox::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h impure plain false false void [0xc820c17d60] } +&{paintEvent QComboBox::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h impure plain false false void [0xc820ade820] } +&{removeItem QComboBox::removeItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false false void [0xc820adeac0] } +&{resizeEvent QComboBox::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h impure plain false false void [0xc820aded00] } +&{rootModelIndex QComboBox::rootModelIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false false QModelIndex [] } +&{setEditText QComboBox::setEditText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non slot false false void [0xc820adf660] } +&{setItemData QComboBox::setItemData commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false false void [0xc820adf960 0xc820adf9e0 0xc820adfac0] } +&{setItemDelegate QComboBox::setItemDelegate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false false void [0xc820adfd40] } +&{setItemIcon QComboBox::setItemIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false false void [0xc820adffc0 0xc820acc0a0] } +&{setItemText QComboBox::setItemText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false false void [0xc820acc320 0xc820acc400] } +&{setLineEdit QComboBox::setLineEdit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false false void [0xc820acc6c0] } +&{setModel QComboBox::setModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false false void [0xc820acc940] } +&{setRootModelIndex QComboBox::setRootModelIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false false void [0xc820accd40] } +&{setView QComboBox::setView commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false false void [0xc820acd060] } +&{showEvent QComboBox::showEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h impure plain false false void [0xc820acd420] } +&{showPopup QComboBox::showPopup commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h impure plain false false void [] } +&{sizeHint QComboBox::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h impure plain false false QSize [] } +&{validator QComboBox::validator commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false false const QValidator * [] } +&{view QComboBox::view commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non plain false false QAbstractItemView * [] } +&{wheelEvent QComboBox::wheelEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h impure plain false false void [0xc820acdd80] } +&{~QComboBox QComboBox::~QComboBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcombobox.h non destructor false false [] } +######################################## ENUMS ######################################## +&{InsertPolicy QComboBox::InsertPolicy commendable public [0xc820e1dd20 0xc820e1dde0 0xc820e1dee0 0xc820e1dfc0 0xc820b8e120 0xc820b8e360 0xc820b8e540]} +&{SizeAdjustPolicy QComboBox::SizeAdjustPolicy commendable public [0xc820b8e840 0xc820b8e9e0 0xc820b8eb80 0xc820b8ece0]} diff --git a/internal/binding/dump/QtWidgets/QCommandLinkButton.txt b/internal/binding/dump/QtWidgets/QCommandLinkButton.txt new file mode 100755 index 00000000..22525999 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QCommandLinkButton.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{description QCommandLinkButton::description commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcommandlinkbutton.cpp non plain false false QString [] } +&{setDescription QCommandLinkButton::setDescription commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcommandlinkbutton.cpp non plain false false void [0xc820a7f4c0] } +&{QCommandLinkButton QCommandLinkButton::QCommandLinkButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcommandlinkbutton.h non constructor false false [0xc820a7f7a0] } +&{QCommandLinkButton QCommandLinkButton::QCommandLinkButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcommandlinkbutton.h non constructor false true 2 [0xc820a7fa00 0xc820a7fac0] } +&{QCommandLinkButton QCommandLinkButton::QCommandLinkButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcommandlinkbutton.h non constructor false true 3 [0xc820a7fd40 0xc820a7fde0 0xc820a7fea0] } +&{event QCommandLinkButton::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcommandlinkbutton.h impure plain false false bool [0xc82015a460] } +&{heightForWidth QCommandLinkButton::heightForWidth commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcommandlinkbutton.h impure plain false false int [0xc82015a780] } +&{minimumSizeHint QCommandLinkButton::minimumSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcommandlinkbutton.h impure plain false false QSize [] } +&{paintEvent QCommandLinkButton::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcommandlinkbutton.h impure plain false false void [0xc82015ae80] } +&{sizeHint QCommandLinkButton::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcommandlinkbutton.h impure plain false false QSize [] } +&{~QCommandLinkButton QCommandLinkButton::~QCommandLinkButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qcommandlinkbutton.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QCommonStyle.txt b/internal/binding/dump/QtWidgets/QCommonStyle.txt new file mode 100755 index 00000000..58c7d42c --- /dev/null +++ b/internal/binding/dump/QtWidgets/QCommonStyle.txt @@ -0,0 +1,21 @@ +######################################## FUNCTIONS ######################################## +&{QCommonStyle QCommonStyle::QCommonStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qcommonstyle.h non constructor false false [] } +&{drawControl QCommonStyle::drawControl commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qcommonstyle.h impure plain false false void [0xc822616060 0xc822616160 0xc822616260 0xc822616300] } +&{drawPrimitive QCommonStyle::drawPrimitive commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qcommonstyle.h impure plain false false void [0xc8226165e0 0xc822616720 0xc822616820 0xc822616920] } +&{drawComplexControl QCommonStyle::drawComplexControl commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qcommonstyle.h impure plain false false void [0xc8226174a0 0xc822617600 0xc822617720 0xc8226177e0] } +&{generatedIconPixmap QCommonStyle::generatedIconPixmap commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qcommonstyle.h impure plain false false QPixmap [0xc822617a80 0xc822617b60 0xc822617c60] } +&{hitTestComplexControl QCommonStyle::hitTestComplexControl commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qcommonstyle.h impure plain false false SubControl [0xc822617fc0 0xc822624080 0xc822624200 0xc822624280] } +&{layoutSpacing QCommonStyle::layoutSpacing commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qcommonstyle.h impure plain false false int [0xc8226245c0 0xc822624760 0xc822624880 0xc8226249a0 0xc822624b00] } +&{pixelMetric QCommonStyle::pixelMetric commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qcommonstyle.h impure plain false false int [0xc822624de0 0xc822624ec0 0xc822625040] } +&{polish QCommonStyle::polish commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qcommonstyle.h impure plain false true 2 void [0xc822625340] } +&{polish QCommonStyle::polish commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qcommonstyle.h impure plain false false void [0xc822625600] } +&{polish QCommonStyle::polish commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qcommonstyle.h impure plain false true 3 void [0xc8226258a0] } +&{sizeFromContents QCommonStyle::sizeFromContents commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qcommonstyle.h impure plain false false QSize [0xc822625ba0 0xc822625c80 0xc822625de0 0xc822625ea0] } +&{standardPixmap QCommonStyle::standardPixmap commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qcommonstyle.h impure plain false false QPixmap [0xc822636200 0xc822636400 0xc822636560] } +&{styleHint QCommonStyle::styleHint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qcommonstyle.h impure plain false false int [0xc822636920 0xc822636b00 0xc822636be0 0xc822636d80] } +&{subControlRect QCommonStyle::subControlRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qcommonstyle.h impure plain false false QRect [0xc8226371c0 0xc8226372e0 0xc8226374c0 0xc8226375a0] } +&{subElementRect QCommonStyle::subElementRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qcommonstyle.h impure plain false false QRect [0xc822637920 0xc822637a80 0xc822637c40] } +&{unpolish QCommonStyle::unpolish commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qcommonstyle.h impure plain false true 2 void [0xc822637f60] } +&{unpolish QCommonStyle::unpolish commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qcommonstyle.h impure plain false false void [0xc822648240] } +&{~QCommonStyle QCommonStyle::~QCommonStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qcommonstyle.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QCompleter.txt b/internal/binding/dump/QtWidgets/QCompleter.txt new file mode 100755 index 00000000..53576a4b --- /dev/null +++ b/internal/binding/dump/QtWidgets/QCompleter.txt @@ -0,0 +1,47 @@ +######################################## FUNCTIONS ######################################## +&{caseSensitivity QCompleter::caseSensitivity commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.cpp non plain false false Qt::CaseSensitivity [] } +&{completionColumn QCompleter::completionColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.cpp non plain false false int [] } +&{completionMode QCompleter::completionMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.cpp non plain false false CompletionMode [] } +&{completionPrefix QCompleter::completionPrefix commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.cpp non plain false false QString [] } +&{completionRole QCompleter::completionRole commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.cpp non plain false false int [] } +&{filterMode QCompleter::filterMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.cpp non plain false false Qt::MatchFlags [] } +&{maxVisibleItems QCompleter::maxVisibleItems commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.cpp non plain false false int [] } +&{modelSorting QCompleter::modelSorting commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.cpp non plain false false ModelSorting [] } +&{setCaseSensitivity QCompleter::setCaseSensitivity commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.cpp non plain false false void [0xc821351520] } +&{setCompletionColumn QCompleter::setCompletionColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.cpp non plain false false void [0xc821351980] } +&{setCompletionMode QCompleter::setCompletionMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.cpp non plain false false void [0xc821351da0] } +&{setCompletionPrefix QCompleter::setCompletionPrefix commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.cpp non slot false false void [0xc8213401a0] } +&{setCompletionRole QCompleter::setCompletionRole commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.cpp non plain false false void [0xc821340600] } +&{setFilterMode QCompleter::setFilterMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.cpp non plain false false void [0xc821340980] } +&{setMaxVisibleItems QCompleter::setMaxVisibleItems commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.cpp non plain false false void [0xc821340da0] } +&{setModelSorting QCompleter::setModelSorting commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.cpp non plain false false void [0xc8213410a0] } +&{setWrapAround QCompleter::setWrapAround commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.cpp non slot false false void [0xc821341500] } +&{wrapAround QCompleter::wrapAround commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.cpp non plain false false bool [] } +&{QCompleter QCompleter::QCompleter commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.h non constructor false true 2 [0xc82132c740 0xc82132c880] } +&{QCompleter QCompleter::QCompleter commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.h non constructor false false [0xc82132cbe0] } +&{QCompleter QCompleter::QCompleter commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.h non constructor false true 3 [0xc82132cf80 0xc82132d140] } +&{activated QCompleter::activated commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.h non signal false true 2 void [0xc82132d7e0] } +&{activated QCompleter::activated commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.h non signal false false void [0xc82132db80] } +&{complete QCompleter::complete commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.h non slot false false void [0xc82132df00] } +&{completionCount QCompleter::completionCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.h non plain false false int [] } +&{completionModel QCompleter::completionModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.h non plain false false QAbstractItemModel * [] } +&{currentCompletion QCompleter::currentCompletion commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.h non plain false false QString [] } +&{currentIndex QCompleter::currentIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.h non plain false false QModelIndex [] } +&{currentRow QCompleter::currentRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.h non plain false false int [] } +&{event QCompleter::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.h impure plain false false bool [0xc82131cca0] } +&{eventFilter QCompleter::eventFilter commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.h impure plain false false bool [0xc82131cfe0 0xc82131d0e0] } +&{highlighted QCompleter::highlighted commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.h non signal false true 2 void [0xc82131d4a0] } +&{highlighted QCompleter::highlighted commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.h non signal false false void [0xc82131d820] } +&{model QCompleter::model commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.h non plain false false QAbstractItemModel * [] } +&{pathFromIndex QCompleter::pathFromIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.h impure plain false false QString [0xc82131dd80] } +&{popup QCompleter::popup commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.h non plain false false QAbstractItemView * [] } +&{setCurrentRow QCompleter::setCurrentRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.h non plain false false bool [0xc821308500] } +&{setModel QCompleter::setModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.h non plain false false void [0xc821308960] } +&{setPopup QCompleter::setPopup commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.h non plain false false void [0xc821308e00] } +&{setWidget QCompleter::setWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.h non plain false false void [0xc821309300] } +&{splitPath QCompleter::splitPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.h impure plain false false QStringList [0xc821309700] } +&{widget QCompleter::widget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.h non plain false false QWidget * [] } +&{~QCompleter QCompleter::~QCompleter commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qcompleter.h non destructor false false [] } +######################################## ENUMS ######################################## +&{CompletionMode QCompleter::CompletionMode commendable public [0xc821341aa0 0xc821341ba0 0xc821341d00]} +&{ModelSorting QCompleter::ModelSorting commendable public [0xc82132c020 0xc82132c1c0 0xc82132c340]} diff --git a/internal/binding/dump/QtWidgets/QDataWidgetMapper.txt b/internal/binding/dump/QtWidgets/QDataWidgetMapper.txt new file mode 100755 index 00000000..0da47883 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QDataWidgetMapper.txt @@ -0,0 +1,32 @@ +######################################## FUNCTIONS ######################################## +&{currentIndex QDataWidgetMapper::currentIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.cpp non plain false false int [] } +&{orientation QDataWidgetMapper::orientation commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.cpp non plain false false Qt::Orientation [] } +&{setCurrentIndex QDataWidgetMapper::setCurrentIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.cpp impure slot false false void [0xc822806fe0] } +&{setOrientation QDataWidgetMapper::setOrientation commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.cpp non plain false false void [0xc822807280] } +&{setSubmitPolicy QDataWidgetMapper::setSubmitPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.cpp non plain false false void [0xc8228074a0] } +&{submitPolicy QDataWidgetMapper::submitPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.cpp non plain false false SubmitPolicy [] } +&{QDataWidgetMapper QDataWidgetMapper::QDataWidgetMapper commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.h non constructor false false [0xc822807c80] } +&{addMapping QDataWidgetMapper::addMapping commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.h non plain false false void [0xc821da8180 0xc821da8200] } +&{addMapping QDataWidgetMapper::addMapping commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.h non plain false true 2 void [0xc821da8420 0xc821da8500 0xc821da85a0] } +&{clearMapping QDataWidgetMapper::clearMapping commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.h non plain false false void [] } +&{currentIndexChanged QDataWidgetMapper::currentIndexChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.h non signal false false void [0xc821da89a0] } +&{itemDelegate QDataWidgetMapper::itemDelegate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.h non plain false false QAbstractItemDelegate * [] } +&{mappedPropertyName QDataWidgetMapper::mappedPropertyName commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.h non plain false false QByteArray [0xc821da8ce0] } +&{mappedSection QDataWidgetMapper::mappedSection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.h non plain false false int [0xc821da8ee0] } +&{mappedWidgetAt QDataWidgetMapper::mappedWidgetAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.h non plain false false QWidget * [0xc821da9080] } +&{model QDataWidgetMapper::model commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.h non plain false false QAbstractItemModel * [] } +&{removeMapping QDataWidgetMapper::removeMapping commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.h non plain false false void [0xc821da9480] } +&{revert QDataWidgetMapper::revert commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.h non slot false false void [] } +&{rootIndex QDataWidgetMapper::rootIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.h non plain false false QModelIndex [] } +&{setCurrentModelIndex QDataWidgetMapper::setCurrentModelIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.h non slot false false void [0xc821da9940] } +&{setItemDelegate QDataWidgetMapper::setItemDelegate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.h non plain false false void [0xc821da9b80] } +&{setModel QDataWidgetMapper::setModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.h non plain false false void [0xc821da9e00] } +&{setRootIndex QDataWidgetMapper::setRootIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.h non plain false false void [0xc8228160a0] } +&{submit QDataWidgetMapper::submit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.h non slot false false bool [] } +&{toFirst QDataWidgetMapper::toFirst commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.h non slot false false void [] } +&{toLast QDataWidgetMapper::toLast commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.h non slot false false void [] } +&{toNext QDataWidgetMapper::toNext commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.h non slot false false void [] } +&{toPrevious QDataWidgetMapper::toPrevious commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.h non slot false false void [] } +&{~QDataWidgetMapper QDataWidgetMapper::~QDataWidgetMapper commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qdatawidgetmapper.h non destructor false false [] } +######################################## ENUMS ######################################## +&{SubmitPolicy QDataWidgetMapper::SubmitPolicy commendable public [0xc822807920 0xc8228079a0]} diff --git a/internal/binding/dump/QtWidgets/QDateEdit.txt b/internal/binding/dump/QtWidgets/QDateEdit.txt new file mode 100755 index 00000000..37e607a8 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QDateEdit.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{QDateEdit QDateEdit::QDateEdit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h non constructor false false [0xc8207bc460] } +&{QDateEdit QDateEdit::QDateEdit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h non constructor false true 2 [0xc8207bca20 0xc8207bcb60] } +&{~QDateEdit QDateEdit::~QDateEdit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QDateTimeEdit.txt b/internal/binding/dump/QtWidgets/QDateTimeEdit.txt new file mode 100755 index 00000000..1a3a8101 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QDateTimeEdit.txt @@ -0,0 +1,71 @@ +######################################## FUNCTIONS ######################################## +&{QDateTimeEdit QDateTimeEdit::QDateTimeEdit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non constructor false true 3 [0xc8207a8140 0xc8207a83e0] } +&{QDateTimeEdit QDateTimeEdit::QDateTimeEdit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non constructor false true 4 [0xc8207a8c00 0xc8207a8de0] } +&{calendarPopup QDateTimeEdit::calendarPopup commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false bool [] } +&{clearMaximumDate QDateTimeEdit::clearMaximumDate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false void [] } +&{clearMaximumDateTime QDateTimeEdit::clearMaximumDateTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false void [] } +&{clearMaximumTime QDateTimeEdit::clearMaximumTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false void [] } +&{clearMinimumDate QDateTimeEdit::clearMinimumDate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false void [] } +&{clearMinimumDateTime QDateTimeEdit::clearMinimumDateTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false void [] } +&{clearMinimumTime QDateTimeEdit::clearMinimumTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false void [] } +&{currentSection QDateTimeEdit::currentSection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false Section [] } +&{currentSectionIndex QDateTimeEdit::currentSectionIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false int [] } +&{dateTime QDateTimeEdit::dateTime commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false QDateTime [] } +&{displayFormat QDateTimeEdit::displayFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false QString [] } +&{displayedSections QDateTimeEdit::displayedSections commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false Sections [] } +&{maximumDate QDateTimeEdit::maximumDate commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false QDate [] } +&{maximumDateTime QDateTimeEdit::maximumDateTime commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false QDateTime [] } +&{maximumTime QDateTimeEdit::maximumTime commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false QTime [] } +&{minimumDate QDateTimeEdit::minimumDate commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false QDate [] } +&{minimumDateTime QDateTimeEdit::minimumDateTime commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false QDateTime [] } +&{minimumTime QDateTimeEdit::minimumTime commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false QTime [] } +&{sectionCount QDateTimeEdit::sectionCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false int [] } +&{sectionText QDateTimeEdit::sectionText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false QString [0xc820581980] } +&{setCalendarPopup QDateTimeEdit::setCalendarPopup commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false void [0xc820581c00] } +&{setCurrentSection QDateTimeEdit::setCurrentSection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false void [0xc820581ee0] } +&{setCurrentSectionIndex QDateTimeEdit::setCurrentSectionIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false void [0xc8209f21c0] } +&{setDate QDateTimeEdit::setDate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non slot false false void [0xc8209f2680] } +&{setDateTime QDateTimeEdit::setDateTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non slot false false void [0xc8209f29e0] } +&{setDisplayFormat QDateTimeEdit::setDisplayFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false void [0xc8209f2d40] } +&{setMaximumDate QDateTimeEdit::setMaximumDate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false void [0xc8209f3040] } +&{setMaximumDateTime QDateTimeEdit::setMaximumDateTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false void [0xc8209f3300] } +&{setMaximumTime QDateTimeEdit::setMaximumTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false void [0xc8209f36c0] } +&{setMinimumDate QDateTimeEdit::setMinimumDate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false void [0xc8209f3960] } +&{setMinimumDateTime QDateTimeEdit::setMinimumDateTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false void [0xc8209f3c80] } +&{setMinimumTime QDateTimeEdit::setMinimumTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false void [0xc820e62100] } +&{setTime QDateTimeEdit::setTime commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non slot false false void [0xc820e624a0] } +&{setTimeSpec QDateTimeEdit::setTimeSpec commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false void [0xc820e62880] } +&{timeSpec QDateTimeEdit::timeSpec commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.cpp non plain false false Qt::TimeSpec [] } +&{QDateTimeEdit QDateTimeEdit::QDateTimeEdit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h non constructor false false [0xc820e63fa0] } +&{QDateTimeEdit QDateTimeEdit::QDateTimeEdit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h non constructor false true 2 [0xc820e1d720 0xc820b7e2c0] } +&{calendarWidget QDateTimeEdit::calendarWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h non plain false false QCalendarWidget * [] } +&{clear QDateTimeEdit::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h impure plain false false void [] } +&{date QDateTimeEdit::date commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h non plain false false QDate [] } +&{dateChanged QDateTimeEdit::dateChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h non signal false false void [0xc820c64000] } +&{dateTimeChanged QDateTimeEdit::dateTimeChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h non signal false false void [0xc820c643c0] } +&{dateTimeFromText QDateTimeEdit::dateTimeFromText commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h impure plain false false QDateTime [0xc820c64740] } +&{event QDateTimeEdit::event commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h impure plain false false bool [0xc820c64b80] } +&{fixup QDateTimeEdit::fixup commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h impure plain false false void [0xc820c64f80] } +&{focusInEvent QDateTimeEdit::focusInEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h impure plain false false void [0xc820c652c0] } +&{focusNextPrevChild QDateTimeEdit::focusNextPrevChild commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h impure plain false false bool [0xc820c65620] } +&{initStyleOption QDateTimeEdit::initStyleOption commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h non plain false false void [0xc820c65900] } +&{keyPressEvent QDateTimeEdit::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h impure plain false false void [0xc820c65d40] } +&{mousePressEvent QDateTimeEdit::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h impure plain false false void [0xc82271a0e0] } +&{paintEvent QDateTimeEdit::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h impure plain false false void [0xc82271a440] } +&{sectionAt QDateTimeEdit::sectionAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h non plain false false Section [0xc82271a840] } +&{setCalendarWidget QDateTimeEdit::setCalendarWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h non plain false false void [0xc82271acc0] } +&{setDateRange QDateTimeEdit::setDateRange commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h non plain false false void [0xc82271b0e0 0xc82271b200] } +&{setDateTimeRange QDateTimeEdit::setDateTimeRange commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h non plain false false void [0xc82271b540 0xc82271b760] } +&{setSelectedSection QDateTimeEdit::setSelectedSection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h non plain false false void [0xc82271bb00] } +&{setTimeRange QDateTimeEdit::setTimeRange commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h non plain false false void [0xc82271be80 0xc820cda100] } +&{sizeHint QDateTimeEdit::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h impure plain false false QSize [] } +&{stepBy QDateTimeEdit::stepBy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h impure plain false false void [0xc820cda780] } +&{stepEnabled QDateTimeEdit::stepEnabled commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h impure plain false false StepEnabled [] } +&{textFromDateTime QDateTimeEdit::textFromDateTime commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h impure plain false false QString [0xc820cdae20] } +&{time QDateTimeEdit::time commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h non plain false false QTime [] } +&{timeChanged QDateTimeEdit::timeChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h non signal false false void [0xc820cdb660] } +&{validate QDateTimeEdit::validate commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h impure plain false false QValidator::State [0xc820cdbac0 0xc820cdbc00] } +&{wheelEvent QDateTimeEdit::wheelEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h impure plain false false void [0xc826ada040] } +&{~QDateTimeEdit QDateTimeEdit::~QDateTimeEdit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Section QDateTimeEdit::Section commendable public QDateTimeEdit::Sections [0xc820e63000 0xc820e63080 0xc820e631c0 0xc820e632c0 0xc820e633c0 0xc820e634a0 0xc820e635c0 0xc820e636e0 0xc820e637c0 0xc820e638e0 0xc820e63aa0]} diff --git a/internal/binding/dump/QtWidgets/QDesktopWidget.txt b/internal/binding/dump/QtWidgets/QDesktopWidget.txt new file mode 100755 index 00000000..9629917f --- /dev/null +++ b/internal/binding/dump/QtWidgets/QDesktopWidget.txt @@ -0,0 +1,18 @@ +######################################## FUNCTIONS ######################################## +&{availableGeometry QDesktopWidget::availableGeometry commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qdesktopwidget.cpp non plain false true 2 const QRect [0xc822c01c40] } +&{availableGeometry QDesktopWidget::availableGeometry commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qdesktopwidget.cpp non plain false false const QRect [0xc822c01e80] } +&{isVirtualDesktop QDesktopWidget::isVirtualDesktop commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qdesktopwidget.cpp non plain false false bool [] } +&{primaryScreen QDesktopWidget::primaryScreen commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qdesktopwidget.cpp non plain false false int [] } +&{resizeEvent QDesktopWidget::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qdesktopwidget.cpp impure plain false false void [0xc822c164e0] } +&{screen QDesktopWidget::screen commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qdesktopwidget.cpp non plain false false QWidget * [0xc822c16700] } +&{screenGeometry QDesktopWidget::screenGeometry commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qdesktopwidget.cpp non plain false true 2 const QRect [0xc822c168e0] } +&{screenGeometry QDesktopWidget::screenGeometry commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qdesktopwidget.cpp non plain false false const QRect [0xc822c16ac0] } +&{screenNumber QDesktopWidget::screenNumber commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qdesktopwidget.cpp non plain false true 2 int [0xc822c16d00] } +&{screenNumber QDesktopWidget::screenNumber commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qdesktopwidget.cpp non plain false false int [0xc822c16f80] } +&{availableGeometry QDesktopWidget::availableGeometry commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qdesktopwidget.h non plain false true 3 const QRect [0xc822c17540] } +&{resized QDesktopWidget::resized commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qdesktopwidget.h non signal false false void [0xc822c17760] } +&{screenCount QDesktopWidget::screenCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qdesktopwidget.h non plain false false int [] } +&{screenCountChanged QDesktopWidget::screenCountChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qdesktopwidget.h non signal false false void [0xc822c17a80] } +&{screenGeometry QDesktopWidget::screenGeometry commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qdesktopwidget.h non plain false true 3 const QRect [0xc822c17c40] } +&{workAreaResized QDesktopWidget::workAreaResized commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qdesktopwidget.h non signal false false void [0xc822c17e20] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QDial.txt b/internal/binding/dump/QtWidgets/QDial.txt new file mode 100755 index 00000000..a518ecec --- /dev/null +++ b/internal/binding/dump/QtWidgets/QDial.txt @@ -0,0 +1,21 @@ +######################################## FUNCTIONS ######################################## +&{notchSize QDial::notchSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdial.cpp non plain false false int [] } +&{notchTarget QDial::notchTarget commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdial.cpp non plain false false qreal [] } +&{notchesVisible QDial::notchesVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdial.cpp non plain false false bool [] } +&{setNotchTarget QDial::setNotchTarget commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdial.cpp non plain false false void [0xc8210f8020] } +&{setNotchesVisible QDial::setNotchesVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdial.cpp non slot false false void [0xc8210f8720] } +&{setWrapping QDial::setWrapping commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdial.cpp non slot false false void [0xc8210f8e40] } +&{wrapping QDial::wrapping commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdial.cpp non plain false false bool [] } +&{QDial QDial::QDial commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdial.h non constructor false false [0xc8210f9620] } +&{event QDial::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdial.h impure plain false false bool [0xc8210f9a80] } +&{initStyleOption QDial::initStyleOption commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdial.h non plain false false void [0xc82117e100] } +&{minimumSizeHint QDial::minimumSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdial.h impure plain false false QSize [] } +&{mouseMoveEvent QDial::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdial.h impure plain false false void [0xc82117e9e0] } +&{mousePressEvent QDial::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdial.h impure plain false false void [0xc82117ef00] } +&{mouseReleaseEvent QDial::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdial.h impure plain false false void [0xc82117f540] } +&{paintEvent QDial::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdial.h impure plain false false void [0xc82117fa40] } +&{resizeEvent QDial::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdial.h impure plain false false void [0xc82117fe00] } +&{sizeHint QDial::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdial.h impure plain false false QSize [] } +&{sliderChange QDial::sliderChange commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdial.h impure plain false false void [0xc8212165e0] } +&{~QDial QDial::~QDial commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdial.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QDialog.txt b/internal/binding/dump/QtWidgets/QDialog.txt new file mode 100755 index 00000000..8c364741 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QDialog.txt @@ -0,0 +1,28 @@ +######################################## FUNCTIONS ######################################## +&{isSizeGripEnabled QDialog::isSizeGripEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qdialog.cpp non plain false false bool [] } +&{setModal QDialog::setModal commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qdialog.cpp non plain false false void [0xc8231ab0e0] } +&{setResult QDialog::setResult commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qdialog.cpp non plain false false void [0xc8231ab420] } +&{setSizeGripEnabled QDialog::setSizeGripEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qdialog.cpp non plain false false void [0xc8231ab760] } +&{QDialog QDialog::QDialog commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qdialog.h non constructor false false [0xc8231abd20 0xc8231abde0] } +&{accept QDialog::accept commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qdialog.h impure slot false false void [] } +&{accepted QDialog::accepted commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qdialog.h non signal false false void [] } +&{closeEvent QDialog::closeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qdialog.h impure plain false false void [0xc82322ec40] } +&{contextMenuEvent QDialog::contextMenuEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qdialog.h impure plain false false void [0xc82322efc0] } +&{done QDialog::done commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qdialog.h impure slot false false void [0xc82322f200] } +&{event QDialog::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qdialog.h impure plain false false bool [0xc82322f480] } +&{eventFilter QDialog::eventFilter commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qdialog.h impure plain false false bool [0xc82322f680 0xc82322f720] } +&{exec QDialog::exec commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qdialog.h impure slot false false int [] } +&{finished QDialog::finished commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qdialog.h non signal false false void [0xc82322fc60] } +&{keyPressEvent QDialog::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qdialog.h impure plain false false void [0xc82322ff00] } +&{minimumSizeHint QDialog::minimumSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qdialog.h impure plain false false QSize [] } +&{open QDialog::open commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qdialog.h impure slot false false void [] } +&{reject QDialog::reject commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qdialog.h impure slot false false void [] } +&{rejected QDialog::rejected commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qdialog.h non signal false false void [] } +&{resizeEvent QDialog::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qdialog.h impure plain false false void [0xc8231906a0] } +&{result QDialog::result commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qdialog.h non plain false false int [] } +&{setVisible QDialog::setVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qdialog.h impure plain false false void [0xc823190e20] } +&{showEvent QDialog::showEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qdialog.h impure plain false false void [0xc823191080] } +&{sizeHint QDialog::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qdialog.h impure plain false false QSize [] } +&{~QDialog QDialog::~QDialog commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qdialog.h non destructor false false [] } +######################################## ENUMS ######################################## +&{DialogCode QDialog::DialogCode commendable public [0xc8231aba00 0xc8231abb00]} diff --git a/internal/binding/dump/QtWidgets/QDialogButtonBox.txt b/internal/binding/dump/QtWidgets/QDialogButtonBox.txt new file mode 100755 index 00000000..5458a8d1 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QDialogButtonBox.txt @@ -0,0 +1,31 @@ +######################################## FUNCTIONS ######################################## +&{centerButtons QDialogButtonBox::centerButtons commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdialogbuttonbox.cpp non plain false false bool [] } +&{orientation QDialogButtonBox::orientation commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdialogbuttonbox.cpp non plain false false Qt::Orientation [] } +&{setCenterButtons QDialogButtonBox::setCenterButtons commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdialogbuttonbox.cpp non plain false false void [0xc822252500] } +&{setOrientation QDialogButtonBox::setOrientation commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdialogbuttonbox.cpp non plain false false void [0xc822252820] } +&{setStandardButtons QDialogButtonBox::setStandardButtons commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdialogbuttonbox.cpp non plain false false void [0xc822252ba0] } +&{standardButtons QDialogButtonBox::standardButtons commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdialogbuttonbox.cpp non plain false false StandardButtons [] } +&{QDialogButtonBox QDialogButtonBox::QDialogButtonBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdialogbuttonbox.h non constructor false false [0xc8213c3fe0] } +&{QDialogButtonBox QDialogButtonBox::QDialogButtonBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdialogbuttonbox.h non constructor false true 2 [0xc821442300 0xc821442440] } +&{QDialogButtonBox QDialogButtonBox::QDialogButtonBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdialogbuttonbox.h non constructor false true 3 [0xc821442740 0xc821442940] } +&{QDialogButtonBox QDialogButtonBox::QDialogButtonBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdialogbuttonbox.h non constructor false true 4 [0xc821442c00 0xc821442d60 0xc821442f00] } +&{accepted QDialogButtonBox::accepted commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdialogbuttonbox.h non signal false false void [] } +&{addButton QDialogButtonBox::addButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdialogbuttonbox.h non plain false true 3 QPushButton * [0xc8214437e0] } +&{addButton QDialogButtonBox::addButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdialogbuttonbox.h non plain false true 2 QPushButton * [0xc821443b20 0xc821443bc0] } +&{addButton QDialogButtonBox::addButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdialogbuttonbox.h non plain false false void [0xc8215140a0 0xc821514240] } +&{button QDialogButtonBox::button commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdialogbuttonbox.h non plain false false QPushButton * [0xc8215147a0] } +&{buttonRole QDialogButtonBox::buttonRole commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdialogbuttonbox.h non plain false false ButtonRole [0xc821514dc0] } +&{buttons QDialogButtonBox::buttons commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdialogbuttonbox.h non plain false false QList [] } +&{changeEvent QDialogButtonBox::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdialogbuttonbox.h impure plain false false void [0xc821515840] } +&{clear QDialogButtonBox::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdialogbuttonbox.h non plain false false void [] } +&{clicked QDialogButtonBox::clicked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdialogbuttonbox.h non signal false false void [0xc8215a01c0] } +&{event QDialogButtonBox::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdialogbuttonbox.h impure plain false false bool [0xc8215a0900] } +&{helpRequested QDialogButtonBox::helpRequested commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdialogbuttonbox.h non signal false false void [] } +&{rejected QDialogButtonBox::rejected commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdialogbuttonbox.h non signal false false void [] } +&{removeButton QDialogButtonBox::removeButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdialogbuttonbox.h non plain false false void [0xc8215a15a0] } +&{standardButton QDialogButtonBox::standardButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdialogbuttonbox.h non plain false false StandardButton [0xc8215a1dc0] } +&{~QDialogButtonBox QDialogButtonBox::~QDialogButtonBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdialogbuttonbox.h non destructor false false [] } +######################################## ENUMS ######################################## +&{ButtonLayout QDialogButtonBox::ButtonLayout commendable public [0xc8222530a0 0xc822253140 0xc822253320 0xc8222533a0]} +&{ButtonRole QDialogButtonBox::ButtonRole commendable public [0xc8222536e0 0xc8222537a0 0xc822253820 0xc822253920 0xc8222539e0 0xc822253ac0 0xc822253b60 0xc822253c40 0xc822253d60 0xc822253de0 0xc822253ea0]} +&{StandardButton QDialogButtonBox::StandardButton commendable public QDialogButtonBox::StandardButtons [0xc8213c21c0 0xc8213c22a0 0xc8213c23a0 0xc8213c24a0 0xc8213c2680 0xc8213c2780 0xc8213c2900 0xc8213c2a00 0xc8213c2c00 0xc8213c2d40 0xc8213c2e80 0xc8213c2fc0 0xc8213c3100 0xc8213c3260 0xc8213c33c0 0xc8213c3480 0xc8213c35e0 0xc8213c3720 0xc8213c3840 0xc8213c3a40 0xc8213c3b40]} diff --git a/internal/binding/dump/QtWidgets/QDockWidget.txt b/internal/binding/dump/QtWidgets/QDockWidget.txt new file mode 100755 index 00000000..269f20f6 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QDockWidget.txt @@ -0,0 +1,28 @@ +######################################## FUNCTIONS ######################################## +&{allowedAreas QDockWidget::allowedAreas commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdockwidget.cpp non plain false false Qt::DockWidgetAreas [] } +&{features QDockWidget::features commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdockwidget.cpp non plain false false DockWidgetFeatures [] } +&{setAllowedAreas QDockWidget::setAllowedAreas commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdockwidget.cpp non plain false false void [0xc821631240] } +&{setFeatures QDockWidget::setFeatures commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdockwidget.cpp non plain false false void [0xc821631640] } +&{setFloating QDockWidget::setFloating commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdockwidget.cpp non plain false false void [0xc821631a80] } +&{QDockWidget QDockWidget::QDockWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdockwidget.h non constructor false true 2 [0xc8217014e0 0xc821701620] } +&{QDockWidget QDockWidget::QDockWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdockwidget.h non constructor false false [0xc821701b00 0xc821701c40 0xc821701da0] } +&{allowedAreasChanged QDockWidget::allowedAreasChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdockwidget.h non signal false false void [0xc821776840] } +&{changeEvent QDockWidget::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdockwidget.h impure plain false false void [0xc821776d80] } +&{closeEvent QDockWidget::closeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdockwidget.h impure plain false false void [0xc821777280] } +&{dockLocationChanged QDockWidget::dockLocationChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdockwidget.h non signal false false void [0xc821777760] } +&{event QDockWidget::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdockwidget.h impure plain false false bool [0xc821777d80] } +&{featuresChanged QDockWidget::featuresChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdockwidget.h non signal false false void [0xc8217f62a0] } +&{initStyleOption QDockWidget::initStyleOption commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdockwidget.h non plain false false void [0xc8217f6780] } +&{isAreaAllowed QDockWidget::isAreaAllowed commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdockwidget.h non plain false false bool [0xc8217f6c80] } +&{isFloating QDockWidget::isFloating commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdockwidget.h non plain false false bool [] } +&{paintEvent QDockWidget::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdockwidget.h impure plain false false void [0xc8217f7360] } +&{setTitleBarWidget QDockWidget::setTitleBarWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdockwidget.h non plain false false void [0xc8217f7780] } +&{setWidget QDockWidget::setWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdockwidget.h non plain false false void [0xc8217f7c00] } +&{titleBarWidget QDockWidget::titleBarWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdockwidget.h non plain false false QWidget * [] } +&{toggleViewAction QDockWidget::toggleViewAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdockwidget.h non plain false false QAction * [] } +&{topLevelChanged QDockWidget::topLevelChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdockwidget.h non signal false false void [0xc8218a8460] } +&{visibilityChanged QDockWidget::visibilityChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdockwidget.h non signal false false void [0xc8218a8920] } +&{widget QDockWidget::widget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdockwidget.h non plain false false QWidget * [] } +&{~QDockWidget QDockWidget::~QDockWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdockwidget.h non destructor false false [] } +######################################## ENUMS ######################################## +&{DockWidgetFeature QDockWidget::DockWidgetFeature commendable public QDockWidget::DockWidgetFeatures [0xc821631ec0 0xc821700020 0xc821700260 0xc8217004c0 0xc821700740 0xc821700980 0xc821700b20 0xc821700e20]} diff --git a/internal/binding/dump/QtWidgets/QDoubleSpinBox.txt b/internal/binding/dump/QtWidgets/QDoubleSpinBox.txt new file mode 100755 index 00000000..f59b4e13 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QDoubleSpinBox.txt @@ -0,0 +1,26 @@ +######################################## FUNCTIONS ######################################## +&{cleanText QDoubleSpinBox::cleanText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false QString [] } +&{decimals QDoubleSpinBox::decimals commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false int [] } +&{maximum QDoubleSpinBox::maximum commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false double [] } +&{minimum QDoubleSpinBox::minimum commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false double [] } +&{prefix QDoubleSpinBox::prefix commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false QString [] } +&{setDecimals QDoubleSpinBox::setDecimals commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false void [0xc822d8be40] } +&{setMaximum QDoubleSpinBox::setMaximum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false void [0xc822d78400] } +&{setMinimum QDoubleSpinBox::setMinimum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false void [0xc822d789e0] } +&{setPrefix QDoubleSpinBox::setPrefix commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false void [0xc822d78ee0] } +&{setSingleStep QDoubleSpinBox::setSingleStep commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false void [0xc822d793a0] } +&{setSuffix QDoubleSpinBox::setSuffix commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false void [0xc822d79760] } +&{setValue QDoubleSpinBox::setValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non slot false false void [0xc822d79c00] } +&{singleStep QDoubleSpinBox::singleStep commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false double [] } +&{suffix QDoubleSpinBox::suffix commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false QString [] } +&{value QDoubleSpinBox::value commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false double [] } +&{QDoubleSpinBox QDoubleSpinBox::QDoubleSpinBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.h non constructor false false [0xc822d6e940] } +&{fixup QDoubleSpinBox::fixup commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.h impure plain false false void [0xc822d6ee40] } +&{setRange QDoubleSpinBox::setRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.h non plain false false void [0xc822d6f340 0xc822d6f5e0] } +&{textFromValue QDoubleSpinBox::textFromValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.h impure plain false false QString [0xc822d6fa60] } +&{validate QDoubleSpinBox::validate commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.h impure plain false false QValidator::State [0xc822d4e160 0xc822d4e240] } +&{valueChanged QDoubleSpinBox::valueChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.h non signal false true 2 void [0xc822d4e7c0] } +&{valueChanged QDoubleSpinBox::valueChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.h non signal false false void [0xc822d4edc0] } +&{valueFromText QDoubleSpinBox::valueFromText commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.h impure plain false false double [0xc822d4f220] } +&{~QDoubleSpinBox QDoubleSpinBox::~QDoubleSpinBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QErrorMessage.txt b/internal/binding/dump/QtWidgets/QErrorMessage.txt new file mode 100755 index 00000000..e2e66588 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QErrorMessage.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QErrorMessage QErrorMessage::QErrorMessage commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qerrormessage.h non constructor false false [0xc823191d00] } +&{changeEvent QErrorMessage::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qerrormessage.h impure plain false false void [0xc823191fa0] } +&{done QErrorMessage::done commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qerrormessage.h impure plain false false void [0xc823182200] } +&{qtHandler QErrorMessage::qtHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qerrormessage.h non plain true false QErrorMessage * [] } +&{showMessage QErrorMessage::showMessage commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qerrormessage.h non slot false false void [0xc8231826a0] } +&{showMessage QErrorMessage::showMessage commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qerrormessage.h non slot false true 2 void [0xc823182960 0xc823182a60] } +&{~QErrorMessage QErrorMessage::~QErrorMessage commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qerrormessage.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QFileDialog.txt b/internal/binding/dump/QtWidgets/QFileDialog.txt new file mode 100755 index 00000000..95820c2d --- /dev/null +++ b/internal/binding/dump/QtWidgets/QFileDialog.txt @@ -0,0 +1,85 @@ +######################################## FUNCTIONS ######################################## +&{QFileDialog QFileDialog::QFileDialog commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.cpp non constructor false false [0xc823182f80 0xc823183020] } +&{acceptMode QFileDialog::acceptMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.cpp non plain false false AcceptMode [] } +&{confirmOverwrite QFileDialog::confirmOverwrite commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.cpp non plain false false bool [] } +&{defaultSuffix QFileDialog::defaultSuffix commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.cpp non plain false false QString [] } +&{fileMode QFileDialog::fileMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.cpp non plain false false FileMode [] } +&{isNameFilterDetailsVisible QFileDialog::isNameFilterDetailsVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.cpp non plain false false bool [] } +&{isReadOnly QFileDialog::isReadOnly commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.cpp non plain false false bool [] } +&{options QFileDialog::options commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.cpp non plain false false Options [] } +&{resolveSymlinks QFileDialog::resolveSymlinks commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.cpp non plain false false bool [] } +&{setAcceptMode QFileDialog::setAcceptMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.cpp non plain false false void [0xc8222520c0] } +&{setConfirmOverwrite QFileDialog::setConfirmOverwrite commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.cpp non plain false false void [0xc8222523c0] } +&{setDefaultSuffix QFileDialog::setDefaultSuffix commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.cpp non plain false false void [0xc8222525e0] } +&{setFileMode QFileDialog::setFileMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.cpp non plain false false void [0xc822252880] } +&{setNameFilterDetailsVisible QFileDialog::setNameFilterDetailsVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.cpp non plain false false void [0xc822252ae0] } +&{setOptions QFileDialog::setOptions commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.cpp non plain false false void [0xc822252d80] } +&{setReadOnly QFileDialog::setReadOnly commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.cpp non plain false false void [0xc822252fe0] } +&{setResolveSymlinks QFileDialog::setResolveSymlinks commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.cpp non plain false false void [0xc8222532e0] } +&{setViewMode QFileDialog::setViewMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.cpp non plain false false void [0xc822253500] } +&{viewMode QFileDialog::viewMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.cpp non plain false false ViewMode [] } +&{QFileDialog QFileDialog::QFileDialog commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non constructor false true 2 [0xc821755b20 0xc821755be0 0xc821755ce0 0xc821755e20] } +&{accept QFileDialog::accept commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h impure plain false false void [] } +&{changeEvent QFileDialog::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h impure plain false false void [0xc821816e20] } +&{currentChanged QFileDialog::currentChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non signal false false void [0xc8218171c0] } +&{currentUrlChanged QFileDialog::currentUrlChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non signal false false void [0xc821817600] } +&{directory QFileDialog::directory commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false QDir [] } +&{directoryEntered QFileDialog::directoryEntered commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non signal false false void [0xc821817c40] } +&{directoryUrl QFileDialog::directoryUrl commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false QUrl [] } +&{directoryUrlEntered QFileDialog::directoryUrlEntered commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non signal false false void [0xc821f9e220] } +&{done QFileDialog::done commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h impure plain false false void [0xc821f9e480] } +&{fileSelected QFileDialog::fileSelected commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non signal false false void [0xc821f9e6c0] } +&{filesSelected QFileDialog::filesSelected commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non signal false false void [0xc821f9e960] } +&{filter QFileDialog::filter commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false QDir::Filters [] } +&{filterSelected QFileDialog::filterSelected commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non signal false false void [0xc821f9eca0] } +&{getExistingDirectory QFileDialog::getExistingDirectory commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain true false QString [0xc821f9eee0 0xc821f9efa0 0xc821f9f020 0xc821f9f0c0] } +&{getExistingDirectoryUrl QFileDialog::getExistingDirectoryUrl commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain true false QUrl [0xc821f9f2e0 0xc821f9f3a0 0xc821f9f460 0xc821f9f4e0 0xc821f9f5c0] } +&{getOpenFileName QFileDialog::getOpenFileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain true false QString [0xc821f9f860 0xc821f9f900 0xc821f9f980 0xc821f9fa60 0xc821f9fb20 0xc821f9fbc0] } +&{getOpenFileNames QFileDialog::getOpenFileNames commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain true false QStringList [0xc821f9fdc0 0xc821f9fe80 0xc821f9ff20 0xc821f9ffa0 0xc821e04060 0xc821e04100] } +&{getOpenFileUrl QFileDialog::getOpenFileUrl commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain true false QUrl [0xc821e04340 0xc821e043e0 0xc821e04460 0xc821e04500 0xc821e045c0 0xc821e04680 0xc821e04740] } +&{getOpenFileUrls QFileDialog::getOpenFileUrls commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain true false QList [0xc821e049c0 0xc821e04a40 0xc821e04ae0 0xc821e04b80 0xc821e04c60 0xc821e04d00 0xc821e04da0] } +&{getSaveFileName QFileDialog::getSaveFileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain true false QString [0xc821e05060 0xc821e050e0 0xc821e05180 0xc821e05240 0xc821e05320 0xc821e053e0] } +&{getSaveFileUrl QFileDialog::getSaveFileUrl commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain true false QUrl [0xc821e05620 0xc821e056a0 0xc821e05740 0xc821e05800 0xc821e058e0 0xc821e05980 0xc821e05a20] } +&{history QFileDialog::history commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false QStringList [] } +&{iconProvider QFileDialog::iconProvider commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false QFileIconProvider * [] } +&{itemDelegate QFileDialog::itemDelegate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false QAbstractItemDelegate * [] } +&{labelText QFileDialog::labelText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false QString [0xc82303c2c0] } +&{mimeTypeFilters QFileDialog::mimeTypeFilters commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false QStringList [] } +&{nameFilters QFileDialog::nameFilters commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false QStringList [] } +&{open QFileDialog::open commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false void [0xc82303cbe0 0xc82303cd40] } +&{proxyModel QFileDialog::proxyModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false QAbstractProxyModel * [] } +&{restoreState QFileDialog::restoreState commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false bool [0xc82303d520] } +&{saveState QFileDialog::saveState commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false QByteArray [] } +&{selectFile QFileDialog::selectFile commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false void [0xc82303dc20] } +&{selectMimeTypeFilter QFileDialog::selectMimeTypeFilter commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false void [0xc82303df80] } +&{selectNameFilter QFileDialog::selectNameFilter commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false void [0xc82339e1a0] } +&{selectUrl QFileDialog::selectUrl commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false void [0xc82339e4a0] } +&{selectedFiles QFileDialog::selectedFiles commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false QStringList [] } +&{selectedNameFilter QFileDialog::selectedNameFilter commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false QString [] } +&{selectedUrls QFileDialog::selectedUrls commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false QList [] } +&{setDirectory QFileDialog::setDirectory commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false true 2 void [0xc82339ec20] } +&{setDirectory QFileDialog::setDirectory commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false void [0xc82339eea0] } +&{setDirectoryUrl QFileDialog::setDirectoryUrl commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false void [0xc82339f140] } +&{setFilter QFileDialog::setFilter commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false void [0xc82339f3e0] } +&{setHistory QFileDialog::setHistory commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false void [0xc82339f680] } +&{setIconProvider QFileDialog::setIconProvider commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false void [0xc82339fa20] } +&{setItemDelegate QFileDialog::setItemDelegate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false void [0xc82339fd00] } +&{setLabelText QFileDialog::setLabelText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false void [0xc82339ff80 0xc82340c000] } +&{setMimeTypeFilters QFileDialog::setMimeTypeFilters commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false void [0xc82340c320] } +&{setNameFilter QFileDialog::setNameFilter commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false void [0xc82340c5e0] } +&{setNameFilters QFileDialog::setNameFilters commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false void [0xc82340c840] } +&{setOption QFileDialog::setOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false void [0xc82340cac0 0xc82340cb60] } +&{setProxyModel QFileDialog::setProxyModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false void [0xc82340cde0] } +&{setSidebarUrls QFileDialog::setSidebarUrls commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false void [0xc82340d080] } +&{setVisible QFileDialog::setVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h impure plain false false void [0xc82340d2a0] } +&{sidebarUrls QFileDialog::sidebarUrls commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false QList [] } +&{testOption QFileDialog::testOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non plain false false bool [0xc82340d5e0] } +&{urlSelected QFileDialog::urlSelected commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non signal false false void [0xc82340d840] } +&{urlsSelected QFileDialog::urlsSelected commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non signal false false void [0xc82340dac0] } +&{~QFileDialog QFileDialog::~QFileDialog commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfiledialog.h non destructor false false [] } +######################################## ENUMS ######################################## +&{AcceptMode QFileDialog::AcceptMode commendable public [0xc8222538e0 0xc822253960]} +&{DialogLabel QFileDialog::DialogLabel commendable public [0xc822253b00 0xc822253b80 0xc822253c00 0xc822253c80 0xc822253d20]} +&{FileMode QFileDialog::FileMode commendable public [0xc822253ee0 0xc822253f60 0xc822253fe0 0xc821754140 0xc821754260]} +&{Option QFileDialog::Option commendable public QFileDialog::Options [0xc821754660 0xc821754780 0xc821754980 0xc821754ac0 0xc821754c20 0xc821754de0 0xc821754f20 0xc821755080]} +&{ViewMode QFileDialog::ViewMode commendable public [0xc8217554e0 0xc821755600]} diff --git a/internal/binding/dump/QtWidgets/QFileIconProvider.txt b/internal/binding/dump/QtWidgets/QFileIconProvider.txt new file mode 100755 index 00000000..65108b49 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QFileIconProvider.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{QFileIconProvider QFileIconProvider::QFileIconProvider commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qfileiconprovider.h non constructor false false [] } +&{icon QFileIconProvider::icon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qfileiconprovider.h impure plain false false QIcon [0xc822866ac0] } +&{icon QFileIconProvider::icon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qfileiconprovider.h impure plain false true 2 QIcon [0xc822866d60] } +&{options QFileIconProvider::options commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qfileiconprovider.h non plain false false Options [] } +&{setOptions QFileIconProvider::setOptions commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qfileiconprovider.h non plain false false void [0xc822867180] } +&{type QFileIconProvider::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qfileiconprovider.h impure plain false false QString [0xc822867420] } +&{~QFileIconProvider QFileIconProvider::~QFileIconProvider commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qfileiconprovider.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{IconType QFileIconProvider::IconType commendable public [0xc82285be80 0xc82285bf20 0xc82285bfa0 0xc822866040 0xc822866140 0xc8228661c0 0xc822866240]} +&{Option QFileIconProvider::Option commendable public QFileIconProvider::Options [0xc822866540]} diff --git a/internal/binding/dump/QtWidgets/QFileSystemModel.txt b/internal/binding/dump/QtWidgets/QFileSystemModel.txt new file mode 100755 index 00000000..abed5e75 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QFileSystemModel.txt @@ -0,0 +1,55 @@ +######################################## FUNCTIONS ######################################## +&{isReadOnly QFileSystemModel::isReadOnly commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.cpp non plain false false bool [] } +&{nameFilterDisables QFileSystemModel::nameFilterDisables commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.cpp non plain false false bool [] } +&{remove QFileSystemModel::remove commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.cpp non plain false false bool [0xc8233efc80] } +&{resolveSymlinks QFileSystemModel::resolveSymlinks commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.cpp non plain false false bool [] } +&{rmdir QFileSystemModel::rmdir commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.cpp non plain false false bool [0xc8233de180] } +&{setNameFilterDisables QFileSystemModel::setNameFilterDisables commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.cpp non plain false false void [0xc8233de5a0] } +&{setReadOnly QFileSystemModel::setReadOnly commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.cpp non plain false false void [0xc8233de860] } +&{setResolveSymlinks QFileSystemModel::setResolveSymlinks commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.cpp non plain false false void [0xc8233deac0] } +&{QFileSystemModel QFileSystemModel::QFileSystemModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h non constructor false false [0xc8233df380] } +&{canFetchMore QFileSystemModel::canFetchMore commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h impure plain false false bool [0xc8233dfd20] } +&{columnCount QFileSystemModel::columnCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h impure plain false false int [0xc8233bc000] } +&{data QFileSystemModel::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h impure plain false false QVariant [0xc8233bc340 0xc8233bc440] } +&{directoryLoaded QFileSystemModel::directoryLoaded commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h non signal false false void [0xc8233bc6c0] } +&{dropMimeData QFileSystemModel::dropMimeData commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h impure plain false false bool [0xc8233bc9a0 0xc8233bca80 0xc8233bcb20 0xc8233bcc00 0xc8233bcce0] } +&{event QFileSystemModel::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h impure plain false false bool [0xc8233bd0a0] } +&{fetchMore QFileSystemModel::fetchMore commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h impure plain false false void [0xc8233bd340] } +&{fileIcon QFileSystemModel::fileIcon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h non plain false false QIcon [0xc8233bd700] } +&{fileInfo QFileSystemModel::fileInfo commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h non plain false false QFileInfo [0xc8233bdb00] } +&{fileName QFileSystemModel::fileName commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h non plain false false QString [0xc8233bde80] } +&{filePath QFileSystemModel::filePath commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h non plain false false QString [0xc82338e1c0] } +&{fileRenamed QFileSystemModel::fileRenamed commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h non signal false false void [0xc82338e460 0xc82338e500 0xc82338e5a0] } +&{filter QFileSystemModel::filter commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h non plain false false QDir::Filters [] } +&{flags QFileSystemModel::flags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h impure plain false false Qt::ItemFlags [0xc82338e9c0] } +&{hasChildren QFileSystemModel::hasChildren commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h impure plain false false bool [0xc82338eca0] } +&{headerData QFileSystemModel::headerData commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h impure plain false false QVariant [0xc82338efe0 0xc82338f0c0 0xc82338f180] } +&{iconProvider QFileSystemModel::iconProvider commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h non plain false false QFileIconProvider * [] } +&{index QFileSystemModel::index commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h non plain false true 2 QModelIndex [0xc82338f5c0 0xc82338f680] } +&{index QFileSystemModel::index commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h impure plain false false QModelIndex [0xc82338f9a0 0xc82338fa40 0xc82338fb40] } +&{isDir QFileSystemModel::isDir commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h non plain false false bool [0xc82338ff20] } +&{lastModified QFileSystemModel::lastModified commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h non plain false false QDateTime [0xc82337c1e0] } +&{mimeData QFileSystemModel::mimeData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h impure plain false false QMimeData * [0xc82337c5c0] } +&{mimeTypes QFileSystemModel::mimeTypes commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h impure plain false false QStringList [] } +&{mkdir QFileSystemModel::mkdir commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h non plain false false QModelIndex [0xc82337cac0 0xc82337cc00] } +&{myComputer QFileSystemModel::myComputer commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h non plain false false QVariant [0xc82337cf20] } +&{nameFilters QFileSystemModel::nameFilters commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h non plain false false QStringList [] } +&{parent QFileSystemModel::parent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h impure plain false false QModelIndex [0xc82337d3c0] } +&{permissions QFileSystemModel::permissions commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h non plain false false QFile::Permissions [0xc82337d6e0] } +&{rootDirectory QFileSystemModel::rootDirectory commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h non plain false false QDir [] } +&{rootPath QFileSystemModel::rootPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h non plain false false QString [] } +&{rootPathChanged QFileSystemModel::rootPathChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h non signal false false void [0xc82337dbc0] } +&{rowCount QFileSystemModel::rowCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h impure plain false false int [0xc82337de20] } +&{setData QFileSystemModel::setData commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h impure plain false false bool [0xc8233640a0 0xc8233641a0 0xc823364260] } +&{setFilter QFileSystemModel::setFilter commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h non plain false false void [0xc823364500] } +&{setIconProvider QFileSystemModel::setIconProvider commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h non plain false false void [0xc8233646c0] } +&{setNameFilters QFileSystemModel::setNameFilters commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h non plain false false void [0xc8233649a0] } +&{setRootPath QFileSystemModel::setRootPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h non plain false false QModelIndex [0xc823364ce0] } +&{size QFileSystemModel::size commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h non plain false false qint64 [0xc823364f80] } +&{sort QFileSystemModel::sort commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h impure plain false false void [0xc8233652c0 0xc823365380] } +&{supportedDropActions QFileSystemModel::supportedDropActions commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h impure plain false false Qt::DropActions [] } +&{timerEvent QFileSystemModel::timerEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h impure plain false false void [0xc823365760] } +&{type QFileSystemModel::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h non plain false false QString [0xc823365a60] } +&{~QFileSystemModel QFileSystemModel::~QFileSystemModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfilesystemmodel.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Roles QFileSystemModel::Roles commendable public [0xc8233deda0 0xc8233defa0 0xc8233df020 0xc8233df0c0]} diff --git a/internal/binding/dump/QtWidgets/QFocusFrame.txt b/internal/binding/dump/QtWidgets/QFocusFrame.txt new file mode 100755 index 00000000..d9077192 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QFocusFrame.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{QFocusFrame QFocusFrame::QFocusFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qfocusframe.h non constructor false false [0xc8219464e0] } +&{event QFocusFrame::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qfocusframe.h impure plain false false bool [0xc821946940] } +&{eventFilter QFocusFrame::eventFilter commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qfocusframe.h impure plain false false bool [0xc821946ce0 0xc821946e20] } +&{initStyleOption QFocusFrame::initStyleOption commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qfocusframe.h non plain false false void [0xc8219472e0] } +&{paintEvent QFocusFrame::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qfocusframe.h impure plain false false void [0xc821947700] } +&{setWidget QFocusFrame::setWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qfocusframe.h non plain false false void [0xc821947bc0] } +&{widget QFocusFrame::widget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qfocusframe.h non plain false false QWidget * [] } +&{~QFocusFrame QFocusFrame::~QFocusFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qfocusframe.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QFontComboBox.txt b/internal/binding/dump/QtWidgets/QFontComboBox.txt new file mode 100755 index 00000000..f4db0975 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QFontComboBox.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{currentFont QFontComboBox::currentFont commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qfontcombobox.cpp non plain false false QFont [] } +&{fontFilters QFontComboBox::fontFilters commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qfontcombobox.cpp non plain false false FontFilters [] } +&{setCurrentFont QFontComboBox::setCurrentFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qfontcombobox.cpp non slot false false void [0xc821a0f220] } +&{setFontFilters QFontComboBox::setFontFilters commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qfontcombobox.cpp non plain false false void [0xc821a0fa00] } +&{setWritingSystem QFontComboBox::setWritingSystem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qfontcombobox.cpp non plain false false void [0xc821aba1a0] } +&{writingSystem QFontComboBox::writingSystem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qfontcombobox.cpp non plain false false QFontDatabase::WritingSystem [] } +&{QFontComboBox QFontComboBox::QFontComboBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qfontcombobox.h non constructor false false [0xc821abbb40] } +&{currentFontChanged QFontComboBox::currentFontChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qfontcombobox.h non signal false false void [0xc821b2a400] } +&{event QFontComboBox::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qfontcombobox.h impure plain false false bool [0xc821b2a940] } +&{sizeHint QFontComboBox::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qfontcombobox.h impure plain false false QSize [] } +&{~QFontComboBox QFontComboBox::~QFontComboBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qfontcombobox.h non destructor false false [] } +######################################## ENUMS ######################################## +&{FontFilter QFontComboBox::FontFilter commendable public QFontComboBox::FontFilters [0xc821abad80 0xc821abaec0 0xc821abafa0 0xc821abb120 0xc821abb360]} diff --git a/internal/binding/dump/QtWidgets/QFontDialog.txt b/internal/binding/dump/QtWidgets/QFontDialog.txt new file mode 100755 index 00000000..95b24ff3 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QFontDialog.txt @@ -0,0 +1,20 @@ +######################################## FUNCTIONS ######################################## +&{options QFontDialog::options commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfontdialog.cpp non plain false false FontDialogOptions [] } +&{setOptions QFontDialog::setOptions commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfontdialog.cpp non plain false false void [0xc82334c9e0] } +&{QFontDialog QFontDialog::QFontDialog commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfontdialog.h non constructor false false [0xc82334d640] } +&{QFontDialog QFontDialog::QFontDialog commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfontdialog.h non constructor false true 2 [0xc82334d860 0xc82334d940] } +&{changeEvent QFontDialog::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfontdialog.h impure plain false false void [0xc82334de00] } +&{currentFont QFontDialog::currentFont commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfontdialog.h non plain false false QFont [] } +&{currentFontChanged QFontDialog::currentFontChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfontdialog.h non signal false false void [0xc8233381c0] } +&{done QFontDialog::done commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfontdialog.h impure plain false false void [0xc8233383c0] } +&{fontSelected QFontDialog::fontSelected commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfontdialog.h non signal false false void [0xc823338980] } +&{getFont QFontDialog::getFont commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfontdialog.h non plain true true 2 QFont [0xc823338c00 0xc823338d00] } +&{getFont QFontDialog::getFont commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfontdialog.h non plain true false QFont [0xc823338fc0 0xc823339040 0xc823339160 0xc823339220 0xc823339340] } +&{open QFontDialog::open commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfontdialog.h non plain false false void [0xc823339600 0xc8233396c0] } +&{selectedFont QFontDialog::selectedFont commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfontdialog.h non plain false false QFont [] } +&{setCurrentFont QFontDialog::setCurrentFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfontdialog.h non plain false false void [0xc823339b60] } +&{setOption QFontDialog::setOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfontdialog.h non plain false false void [0xc823339de0 0xc823339e80] } +&{setVisible QFontDialog::setVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfontdialog.h impure plain false false void [0xc823324100] } +&{testOption QFontDialog::testOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qfontdialog.h non plain false false bool [0xc823324380] } +######################################## ENUMS ######################################## +&{FontDialogOption QFontDialog::FontDialogOption commendable public QFontDialog::FontDialogOptions [0xc82334ce40 0xc82334cf00 0xc82334d020 0xc82334d0e0 0xc82334d1a0 0xc82334d240]} diff --git a/internal/binding/dump/QtWidgets/QFormLayout.txt b/internal/binding/dump/QtWidgets/QFormLayout.txt new file mode 100755 index 00000000..52fd556e --- /dev/null +++ b/internal/binding/dump/QtWidgets/QFormLayout.txt @@ -0,0 +1,54 @@ +######################################## FUNCTIONS ######################################## +&{fieldGrowthPolicy QFormLayout::fieldGrowthPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.cpp non plain false false FieldGrowthPolicy [] } +&{formAlignment QFormLayout::formAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.cpp non plain false false Qt::Alignment [] } +&{horizontalSpacing QFormLayout::horizontalSpacing commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.cpp non plain false false int [] } +&{labelAlignment QFormLayout::labelAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.cpp non plain false false Qt::Alignment [] } +&{rowWrapPolicy QFormLayout::rowWrapPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.cpp non plain false false RowWrapPolicy [] } +&{setFieldGrowthPolicy QFormLayout::setFieldGrowthPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.cpp non plain false false void [0xc822c26ba0] } +&{setFormAlignment QFormLayout::setFormAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.cpp non plain false false void [0xc822c26e80] } +&{setHorizontalSpacing QFormLayout::setHorizontalSpacing commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.cpp non plain false false void [0xc822c270e0] } +&{setLabelAlignment QFormLayout::setLabelAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.cpp non plain false false void [0xc822c27360] } +&{setRowWrapPolicy QFormLayout::setRowWrapPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.cpp non plain false false void [0xc822c275e0] } +&{setVerticalSpacing QFormLayout::setVerticalSpacing commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.cpp non plain false false void [0xc822c278a0] } +&{verticalSpacing QFormLayout::verticalSpacing commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.cpp non plain false false int [] } +&{QFormLayout QFormLayout::QFormLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h non constructor false false [0xc822c3a960] } +&{addItem QFormLayout::addItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h impure plain false false void [0xc822c3ac00] } +&{addRow QFormLayout::addRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h non plain false true 6 void [0xc822c3ae40] } +&{addRow QFormLayout::addRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h non plain false true 2 void [0xc822c3b080 0xc822c3b120] } +&{addRow QFormLayout::addRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h non plain false false void [0xc822c3b3a0 0xc822c3b440] } +&{addRow QFormLayout::addRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h non plain false true 5 void [0xc822c3b6c0] } +&{addRow QFormLayout::addRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h non plain false true 4 void [0xc822c3b920 0xc822c3b9a0] } +&{addRow QFormLayout::addRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h non plain false true 3 void [0xc822c3bb60 0xc822c3bc00] } +&{count QFormLayout::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h impure plain false false int [] } +&{expandingDirections QFormLayout::expandingDirections commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h impure plain false false Qt::Orientations [] } +&{getItemPosition QFormLayout::getItemPosition commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h non plain false false void [0xc822c460a0 0xc822c46120 0xc822c461a0] } +&{getLayoutPosition QFormLayout::getLayoutPosition commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h non plain false false void [0xc822c463a0 0xc822c46420 0xc822c464a0] } +&{getWidgetPosition QFormLayout::getWidgetPosition commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h non plain false false void [0xc822c46700 0xc822c467a0 0xc822c46860] } +&{hasHeightForWidth QFormLayout::hasHeightForWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h impure plain false false bool [] } +&{heightForWidth QFormLayout::heightForWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h impure plain false false int [0xc822c46c20] } +&{insertRow QFormLayout::insertRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h non plain false true 6 void [0xc822c46e60 0xc822c46f40] } +&{insertRow QFormLayout::insertRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h non plain false true 2 void [0xc822c47180 0xc822c47220 0xc822c472a0] } +&{insertRow QFormLayout::insertRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h non plain false false void [0xc822c475a0 0xc822c47660 0xc822c47760] } +&{insertRow QFormLayout::insertRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h non plain false true 5 void [0xc822c47a40 0xc822c47b20] } +&{insertRow QFormLayout::insertRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h non plain false true 4 void [0xc822c47dc0 0xc822c47e80 0xc822c47f00] } +&{insertRow QFormLayout::insertRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h non plain false true 3 void [0xc822c561e0 0xc822c562a0 0xc822c56340] } +&{invalidate QFormLayout::invalidate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h impure plain false false void [] } +&{itemAt QFormLayout::itemAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h impure plain false true 2 QLayoutItem * [0xc822c56780] } +&{itemAt QFormLayout::itemAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h non plain false false QLayoutItem * [0xc822c56ae0 0xc822c56bc0] } +&{labelForField QFormLayout::labelForField commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h non plain false true 2 QWidget * [0xc822c56ee0] } +&{labelForField QFormLayout::labelForField commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h non plain false false QWidget * [0xc822c57200] } +&{minimumSize QFormLayout::minimumSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h impure plain false false QSize [] } +&{rowCount QFormLayout::rowCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h non plain false false int [] } +&{setGeometry QFormLayout::setGeometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h impure plain false false void [0xc822c57f20] } +&{setItem QFormLayout::setItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h non plain false false void [0xc822c6a140 0xc822c6a1c0 0xc822c6a240] } +&{setLayout QFormLayout::setLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h non plain false false void [0xc822c6a420 0xc822c6a4a0 0xc822c6a520] } +&{setSpacing QFormLayout::setSpacing commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h non plain false false void [0xc822c6a740] } +&{setWidget QFormLayout::setWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h non plain false false void [0xc822c6a960 0xc822c6a9e0 0xc822c6aa80] } +&{sizeHint QFormLayout::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h impure plain false false QSize [] } +&{spacing QFormLayout::spacing commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h non plain false false int [] } +&{takeAt QFormLayout::takeAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h impure plain false false QLayoutItem * [0xc822c6aee0] } +&{~QFormLayout QFormLayout::~QFormLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qformlayout.h non destructor false false [] } +######################################## ENUMS ######################################## +&{FieldGrowthPolicy QFormLayout::FieldGrowthPolicy commendable public [0xc822c27ce0 0xc822c27e40 0xc822c27f60]} +&{ItemRole QFormLayout::ItemRole commendable public [0xc822c3a200 0xc822c3a2c0 0xc822c3a360]} +&{RowWrapPolicy QFormLayout::RowWrapPolicy commendable public [0xc822c3a5a0 0xc822c3a640 0xc822c3a700]} diff --git a/internal/binding/dump/QtWidgets/QFrame.txt b/internal/binding/dump/QtWidgets/QFrame.txt new file mode 100755 index 00000000..f89f4c71 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QFrame.txt @@ -0,0 +1,25 @@ +######################################## FUNCTIONS ######################################## +&{frameRect QFrame::frameRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qframe.cpp non plain false false QRect [] } +&{frameShadow QFrame::frameShadow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qframe.cpp non plain false false Shadow [] } +&{frameShape QFrame::frameShape commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qframe.cpp non plain false false Shape [] } +&{frameWidth QFrame::frameWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qframe.cpp non plain false false int [] } +&{lineWidth QFrame::lineWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qframe.cpp non plain false false int [] } +&{midLineWidth QFrame::midLineWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qframe.cpp non plain false false int [] } +&{setFrameRect QFrame::setFrameRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qframe.cpp non plain false false void [0xc821baef00] } +&{setFrameShadow QFrame::setFrameShadow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qframe.cpp non plain false false void [0xc821baf1a0] } +&{setFrameShape QFrame::setFrameShape commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qframe.cpp non plain false false void [0xc821baf540] } +&{setLineWidth QFrame::setLineWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qframe.cpp non plain false false void [0xc821baf920] } +&{setMidLineWidth QFrame::setMidLineWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qframe.cpp non plain false false void [0xc821bafd00] } +&{QFrame QFrame::QFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qframe.h non constructor false false [0xc821cd97c0 0xc821cd98c0] } +&{changeEvent QFrame::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qframe.h impure plain false false void [0xc821cd9d20] } +&{event QFrame::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qframe.h impure plain false false bool [0xc822694b40] } +&{frameStyle QFrame::frameStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qframe.h non plain false false int [] } +&{initStyleOption QFrame::initStyleOption commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qframe.h non plain false false void [0xc822695260] } +&{paintEvent QFrame::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qframe.h impure plain false false void [0xc822695700] } +&{setFrameStyle QFrame::setFrameStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qframe.h non plain false false void [0xc822695b20] } +&{sizeHint QFrame::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qframe.h impure plain false false QSize [] } +&{~QFrame QFrame::~QFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qframe.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Shadow QFrame::Shadow commendable public [0xc821cd8100 0xc821cd8280 0xc821cd8360]} +&{Shape QFrame::Shape commendable public [0xc821cd8740 0xc821cd8840 0xc821cd8960 0xc821cd8a20 0xc821cd8c60 0xc821cd8da0 0xc821cd8f00]} +&{StyleMask QFrame::StyleMask commendable public [0xc821cd9340 0xc821cd9400]} diff --git a/internal/binding/dump/QtWidgets/QGesture.txt b/internal/binding/dump/QtWidgets/QGesture.txt new file mode 100755 index 00000000..c78b8f64 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGesture.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{gestureCancelPolicy QGesture::gestureCancelPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false GestureCancelPolicy [] } +&{gestureType QGesture::gestureType commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false Qt::GestureType [] } +&{hasHotSpot QGesture::hasHotSpot commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false bool [] } +&{hotSpot QGesture::hotSpot commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false QPointF [] } +&{setGestureCancelPolicy QGesture::setGestureCancelPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false void [0xc822c86600] } +&{setHotSpot QGesture::setHotSpot commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false void [0xc822c86900] } +&{state QGesture::state commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false Qt::GestureState [] } +&{unsetHotSpot QGesture::unsetHotSpot commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false void [] } +&{QGesture QGesture::QGesture commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.h non constructor false false [0xc822c870e0] } +&{~QGesture QGesture::~QGesture commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.h non destructor false false [] } +######################################## ENUMS ######################################## +&{GestureCancelPolicy QGesture::GestureCancelPolicy commendable public [0xc822c86e00 0xc822c86ea0]} diff --git a/internal/binding/dump/QtWidgets/QGestureEvent.txt b/internal/binding/dump/QtWidgets/QGestureEvent.txt new file mode 100755 index 00000000..1bdb542b --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGestureEvent.txt @@ -0,0 +1,18 @@ +######################################## FUNCTIONS ######################################## +&{QGestureEvent QGestureEvent::QGestureEvent commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.h non constructor false false [0xc822c961a0] } +&{accept QGestureEvent::accept commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.h non plain false false void [0xc822c964a0] } +&{accept QGestureEvent::accept commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.h non plain false true 2 void [0xc822c966e0] } +&{activeGestures QGestureEvent::activeGestures commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.h non plain false false QList [] } +&{canceledGestures QGestureEvent::canceledGestures commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.h non plain false false QList [] } +&{gesture QGestureEvent::gesture commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.h non plain false false QGesture * [0xc822c96c20] } +&{gestures QGestureEvent::gestures commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.h non plain false false QList [] } +&{ignore QGestureEvent::ignore commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.h non plain false false void [0xc822c97040] } +&{ignore QGestureEvent::ignore commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.h non plain false true 2 void [0xc822c972a0] } +&{isAccepted QGestureEvent::isAccepted commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.h non plain false false bool [0xc822c974c0] } +&{isAccepted QGestureEvent::isAccepted commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.h non plain false true 2 bool [0xc822c97700] } +&{mapToGraphicsScene QGestureEvent::mapToGraphicsScene commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.h non plain false false QPointF [0xc822c97920] } +&{setAccepted QGestureEvent::setAccepted commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.h non plain false false void [0xc822c97b60 0xc822c97c20] } +&{setAccepted QGestureEvent::setAccepted commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.h non plain false true 2 void [0xc822c97e80 0xc822c97f20] } +&{widget QGestureEvent::widget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.h non plain false false QWidget * [] } +&{~QGestureEvent QGestureEvent::~QGestureEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGestureRecognizer.txt b/internal/binding/dump/QtWidgets/QGestureRecognizer.txt new file mode 100755 index 00000000..a7f071fb --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGestureRecognizer.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{QGestureRecognizer QGestureRecognizer::QGestureRecognizer commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesturerecognizer.h non constructor false false [] } +&{create QGestureRecognizer::create commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesturerecognizer.h impure plain false false QGesture * [0xc8222984c0] } +&{recognize QGestureRecognizer::recognize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesturerecognizer.h pure plain false false Result [0xc822298760 0xc8222987e0 0xc8222988a0] } +&{registerRecognizer QGestureRecognizer::registerRecognizer commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesturerecognizer.h non plain true false Qt::GestureType [0xc822298ae0] } +&{reset QGestureRecognizer::reset commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesturerecognizer.h impure plain false false void [0xc822298e00] } +&{unregisterRecognizer QGestureRecognizer::unregisterRecognizer commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesturerecognizer.h non plain true false void [0xc822299080] } +&{~QGestureRecognizer QGestureRecognizer::~QGestureRecognizer commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesturerecognizer.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{ResultFlag QGestureRecognizer::ResultFlag commendable public QGestureRecognizer::Result [0xc822cf18a0 0xc822cf1920 0xc822cf19a0 0xc822cf1a40 0xc822cf1bc0 0xc822cf1c60 0xc822cf1d00 0xc822cf1e60]} diff --git a/internal/binding/dump/QtWidgets/QGraphicsAnchor.txt b/internal/binding/dump/QtWidgets/QGraphicsAnchor.txt new file mode 100755 index 00000000..6f9f2cd5 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsAnchor.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{setSizePolicy QGraphicsAnchor::setSizePolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsanchorlayout.cpp non plain false false void [0xc822f43f60] } +&{setSpacing QGraphicsAnchor::setSpacing commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsanchorlayout.cpp non plain false false void [0xc822f30520] } +&{sizePolicy QGraphicsAnchor::sizePolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsanchorlayout.cpp non plain false false QSizePolicy::Policy [] } +&{spacing QGraphicsAnchor::spacing commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsanchorlayout.cpp non plain false false qreal [] } +&{unsetSpacing QGraphicsAnchor::unsetSpacing commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsanchorlayout.cpp non plain false false void [] } +&{~QGraphicsAnchor QGraphicsAnchor::~QGraphicsAnchor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsanchorlayout.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsAnchorLayout.txt b/internal/binding/dump/QtWidgets/QGraphicsAnchorLayout.txt new file mode 100755 index 00000000..6bfcfe0c --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsAnchorLayout.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{QGraphicsAnchorLayout QGraphicsAnchorLayout::QGraphicsAnchorLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsanchorlayout.h non constructor false false [0xc822f24580] } +&{addAnchor QGraphicsAnchorLayout::addAnchor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsanchorlayout.h non plain false false QGraphicsAnchor * [0xc822f24ca0 0xc822f24de0 0xc822f24f80 0xc822f251a0] } +&{addAnchors QGraphicsAnchorLayout::addAnchors commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsanchorlayout.h non plain false false void [0xc822f25540 0xc822f25780 0xc822f259e0] } +&{addCornerAnchors QGraphicsAnchorLayout::addCornerAnchors commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsanchorlayout.h non plain false false void [0xc822f25e60 0xc822f10020 0xc822f10160 0xc822f10360] } +&{anchor QGraphicsAnchorLayout::anchor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsanchorlayout.h non plain false false QGraphicsAnchor * [0xc822f107c0 0xc822f10900 0xc822f10ac0 0xc822f10c40] } +&{count QGraphicsAnchorLayout::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsanchorlayout.h impure plain false false int [] } +&{horizontalSpacing QGraphicsAnchorLayout::horizontalSpacing commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsanchorlayout.h non plain false false qreal [] } +&{invalidate QGraphicsAnchorLayout::invalidate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsanchorlayout.h impure plain false false void [] } +&{itemAt QGraphicsAnchorLayout::itemAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsanchorlayout.h impure plain false false QGraphicsLayoutItem * [0xc822f117c0] } +&{removeAt QGraphicsAnchorLayout::removeAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsanchorlayout.h impure plain false false void [0xc822f11ba0] } +&{setGeometry QGraphicsAnchorLayout::setGeometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsanchorlayout.h impure plain false false void [0xc822f11e60] } +&{setHorizontalSpacing QGraphicsAnchorLayout::setHorizontalSpacing commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsanchorlayout.h non plain false false void [0xc822f021c0] } +&{setSpacing QGraphicsAnchorLayout::setSpacing commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsanchorlayout.h non plain false false void [0xc822f02500] } +&{setVerticalSpacing QGraphicsAnchorLayout::setVerticalSpacing commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsanchorlayout.h non plain false false void [0xc822f02980] } +&{sizeHint QGraphicsAnchorLayout::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsanchorlayout.h impure plain false false QSizeF [0xc822f02d40 0xc822f02f20] } +&{verticalSpacing QGraphicsAnchorLayout::verticalSpacing commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsanchorlayout.h non plain false false qreal [] } +&{~QGraphicsAnchorLayout QGraphicsAnchorLayout::~QGraphicsAnchorLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsanchorlayout.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsBlurEffect.txt b/internal/binding/dump/QtWidgets/QGraphicsBlurEffect.txt new file mode 100755 index 00000000..52685277 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsBlurEffect.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{blurHints QGraphicsBlurEffect::blurHints commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.cpp non plain false false BlurHints [] } +&{blurRadius QGraphicsBlurEffect::blurRadius commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.cpp non plain false false qreal [] } +&{setBlurHints QGraphicsBlurEffect::setBlurHints commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.cpp non slot false false void [0xc82300eb20] } +&{setBlurRadius QGraphicsBlurEffect::setBlurRadius commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.cpp non slot false false void [0xc82300f080] } +&{QGraphicsBlurEffect QGraphicsBlurEffect::QGraphicsBlurEffect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non constructor false false [0xc822ffc200] } +&{blurHintsChanged QGraphicsBlurEffect::blurHintsChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non signal false false void [0xc822ffc640] } +&{blurRadiusChanged QGraphicsBlurEffect::blurRadiusChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non signal false false void [0xc822ffcb00] } +&{boundingRectFor QGraphicsBlurEffect::boundingRectFor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h impure plain false false QRectF [0xc822ffcf20] } +&{draw QGraphicsBlurEffect::draw commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h impure plain false false void [0xc822ffd4e0] } +&{~QGraphicsBlurEffect QGraphicsBlurEffect::~QGraphicsBlurEffect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non destructor false false [] } +######################################## ENUMS ######################################## +&{BlurHint QGraphicsBlurEffect::BlurHint commendable public QGraphicsBlurEffect::BlurHints [0xc82300f820 0xc82300f8e0 0xc82300fa20]} diff --git a/internal/binding/dump/QtWidgets/QGraphicsColorizeEffect.txt b/internal/binding/dump/QtWidgets/QGraphicsColorizeEffect.txt new file mode 100755 index 00000000..afa902b2 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsColorizeEffect.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{color QGraphicsColorizeEffect::color commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.cpp non plain false false QColor [] } +&{setColor QGraphicsColorizeEffect::setColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.cpp non slot false false void [0xc822fe8ac0] } +&{setStrength QGraphicsColorizeEffect::setStrength commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.cpp non slot false false void [0xc822fe8f40] } +&{strength QGraphicsColorizeEffect::strength commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.cpp non plain false false qreal [] } +&{QGraphicsColorizeEffect QGraphicsColorizeEffect::QGraphicsColorizeEffect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non constructor false false [0xc822fe9540] } +&{colorChanged QGraphicsColorizeEffect::colorChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non signal false false void [0xc822fe97e0] } +&{draw QGraphicsColorizeEffect::draw commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h impure plain false false void [0xc822fe9b20] } +&{strengthChanged QGraphicsColorizeEffect::strengthChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non signal false false void [0xc822fe9e80] } +&{~QGraphicsColorizeEffect QGraphicsColorizeEffect::~QGraphicsColorizeEffect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsDropShadowEffect.txt b/internal/binding/dump/QtWidgets/QGraphicsDropShadowEffect.txt new file mode 100755 index 00000000..22e5dbf6 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsDropShadowEffect.txt @@ -0,0 +1,21 @@ +######################################## FUNCTIONS ######################################## +&{blurRadius QGraphicsDropShadowEffect::blurRadius commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.cpp non plain false false qreal [] } +&{color QGraphicsDropShadowEffect::color commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.cpp non plain false false QColor [] } +&{offset QGraphicsDropShadowEffect::offset commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.cpp non plain false false QPointF [] } +&{setBlurRadius QGraphicsDropShadowEffect::setBlurRadius commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.cpp non slot false false void [0xc822fd1a40] } +&{setColor QGraphicsDropShadowEffect::setColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.cpp non slot false false void [0xc822fd1e20] } +&{setOffset QGraphicsDropShadowEffect::setOffset commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.cpp non slot false false void [0xc822fc01e0] } +&{QGraphicsDropShadowEffect QGraphicsDropShadowEffect::QGraphicsDropShadowEffect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non constructor false false [0xc822fc0680] } +&{blurRadiusChanged QGraphicsDropShadowEffect::blurRadiusChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non signal false false void [0xc822fc0ba0] } +&{boundingRectFor QGraphicsDropShadowEffect::boundingRectFor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h impure plain false false QRectF [0xc822fc0f80] } +&{colorChanged QGraphicsDropShadowEffect::colorChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non signal false false void [0xc822fc1280] } +&{draw QGraphicsDropShadowEffect::draw commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h impure plain false false void [0xc822fc15c0] } +&{offsetChanged QGraphicsDropShadowEffect::offsetChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non signal false false void [0xc822fc1880] } +&{setOffset QGraphicsDropShadowEffect::setOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non slot false true 3 void [0xc822fc1c20] } +&{setOffset QGraphicsDropShadowEffect::setOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non slot false true 2 void [0xc822fc1ea0 0xc822fb2080] } +&{setXOffset QGraphicsDropShadowEffect::setXOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non slot false false void [0xc822fb24c0] } +&{setYOffset QGraphicsDropShadowEffect::setYOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non slot false false void [0xc822fb2940] } +&{xOffset QGraphicsDropShadowEffect::xOffset commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non plain false false qreal [] } +&{yOffset QGraphicsDropShadowEffect::yOffset commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non plain false false qreal [] } +&{~QGraphicsDropShadowEffect QGraphicsDropShadowEffect::~QGraphicsDropShadowEffect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsEffect.txt b/internal/binding/dump/QtWidgets/QGraphicsEffect.txt new file mode 100755 index 00000000..20d3d7c4 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsEffect.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{isEnabled QGraphicsEffect::isEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.cpp non plain false false bool [] } +&{setEnabled QGraphicsEffect::setEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.cpp non slot false false void [0xc822f91200] } +&{QGraphicsEffect QGraphicsEffect::QGraphicsEffect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non constructor false false [0xc822f7e900] } +&{boundingRect QGraphicsEffect::boundingRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non plain false false QRectF [] } +&{boundingRectFor QGraphicsEffect::boundingRectFor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h impure plain false false QRectF [0xc822f7efc0] } +&{draw QGraphicsEffect::draw commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h pure plain false false void [0xc822f7f500] } +&{drawSource QGraphicsEffect::drawSource commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non plain false false void [0xc822f7fa00] } +&{enabledChanged QGraphicsEffect::enabledChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non signal false false void [0xc822f7ff40] } +&{sourceBoundingRect QGraphicsEffect::sourceBoundingRect commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non plain false false QRectF [0xc822f6ed20] } +&{sourceChanged QGraphicsEffect::sourceChanged commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h impure plain false false void [0xc822f6f0a0] } +&{sourceIsPixmap QGraphicsEffect::sourceIsPixmap commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non plain false false bool [] } +&{sourcePixmap QGraphicsEffect::sourcePixmap commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non plain false false QPixmap [0xc822f6f780 0xc822f6f900 0xc822f6f9c0] } +&{update QGraphicsEffect::update commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non slot false false void [] } +&{updateBoundingRect QGraphicsEffect::updateBoundingRect commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non plain false false void [] } +&{~QGraphicsEffect QGraphicsEffect::~QGraphicsEffect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{ChangeFlag QGraphicsEffect::ChangeFlag commendable public QGraphicsEffect::ChangeFlags [0xc822f917e0 0xc822f918c0 0xc822f91a20 0xc822f91c00]} +&{PixmapPadMode QGraphicsEffect::PixmapPadMode commendable public [0xc822f91f00 0xc822f7e040 0xc822f7e240]} diff --git a/internal/binding/dump/QtWidgets/QGraphicsEllipseItem.txt b/internal/binding/dump/QtWidgets/QGraphicsEllipseItem.txt new file mode 100755 index 00000000..1d85a8dc --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsEllipseItem.txt @@ -0,0 +1,20 @@ +######################################## FUNCTIONS ######################################## +&{QGraphicsEllipseItem QGraphicsEllipseItem::QGraphicsEllipseItem commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.cpp non constructor false true 3 [0xc822e95940 0xc822e959e0 0xc822e95b20 0xc822e95c00 0xc822e95d00] } +&{QGraphicsEllipseItem QGraphicsEllipseItem::QGraphicsEllipseItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non constructor false false [0xc822e90080] } +&{QGraphicsEllipseItem QGraphicsEllipseItem::QGraphicsEllipseItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non constructor false true 2 [0xc822e903c0 0xc822e90440] } +&{boundingRect QGraphicsEllipseItem::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QRectF [] } +&{contains QGraphicsEllipseItem::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false bool [0xc822e90840] } +&{isObscuredBy QGraphicsEllipseItem::isObscuredBy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false bool [0xc822e90d00] } +&{opaqueArea QGraphicsEllipseItem::opaqueArea commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QPainterPath [] } +&{paint QGraphicsEllipseItem::paint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc822e912c0 0xc822e913c0 0xc822e914e0] } +&{rect QGraphicsEllipseItem::rect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QRectF [] } +&{setRect QGraphicsEllipseItem::setRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc822e91d60] } +&{setRect QGraphicsEllipseItem::setRect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 2 void [0xc822e80060 0xc822e80180 0xc822e802a0 0xc822e80360] } +&{setSpanAngle QGraphicsEllipseItem::setSpanAngle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc822e80640] } +&{setStartAngle QGraphicsEllipseItem::setStartAngle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc822e80820] } +&{shape QGraphicsEllipseItem::shape commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QPainterPath [] } +&{spanAngle QGraphicsEllipseItem::spanAngle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false int [] } +&{startAngle QGraphicsEllipseItem::startAngle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false int [] } +&{type QGraphicsEllipseItem::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false int [] } +&{~QGraphicsEllipseItem QGraphicsEllipseItem::~QGraphicsEllipseItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsGridLayout.txt b/internal/binding/dump/QtWidgets/QGraphicsGridLayout.txt new file mode 100755 index 00000000..b5af75a4 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsGridLayout.txt @@ -0,0 +1,49 @@ +######################################## FUNCTIONS ######################################## +&{QGraphicsGridLayout QGraphicsGridLayout::QGraphicsGridLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non constructor false false [0xc822f03d80] } +&{addItem QGraphicsGridLayout::addItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false true 2 void [0xc822ef2240 0xc822ef2440 0xc822ef2580 0xc822ef26a0] } +&{addItem QGraphicsGridLayout::addItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false void [0xc822ef2b20 0xc822ef2c40 0xc822ef2d80 0xc822ef2fc0 0xc822ef30e0 0xc822ef32e0] } +&{alignment QGraphicsGridLayout::alignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false Qt::Alignment [0xc822ef38a0] } +&{columnAlignment QGraphicsGridLayout::columnAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false Qt::Alignment [0xc822ef3cc0] } +&{columnCount QGraphicsGridLayout::columnCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false int [] } +&{columnMaximumWidth QGraphicsGridLayout::columnMaximumWidth commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false qreal [0xc822ee43a0] } +&{columnMinimumWidth QGraphicsGridLayout::columnMinimumWidth commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false qreal [0xc822ee4840] } +&{columnPreferredWidth QGraphicsGridLayout::columnPreferredWidth commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false qreal [0xc822ee4c20] } +&{columnSpacing QGraphicsGridLayout::columnSpacing commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false qreal [0xc822ee4f00] } +&{columnStretchFactor QGraphicsGridLayout::columnStretchFactor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false int [0xc822ee5380] } +&{count QGraphicsGridLayout::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h impure plain false false int [] } +&{horizontalSpacing QGraphicsGridLayout::horizontalSpacing commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false qreal [] } +&{invalidate QGraphicsGridLayout::invalidate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h impure plain false false void [] } +&{itemAt QGraphicsGridLayout::itemAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h impure plain false true 2 QGraphicsLayoutItem * [0xc822ee5fa0] } +&{itemAt QGraphicsGridLayout::itemAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false QGraphicsLayoutItem * [0xc822ec62a0 0xc822ec6340] } +&{removeAt QGraphicsGridLayout::removeAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h impure plain false false void [0xc822ec6680] } +&{removeItem QGraphicsGridLayout::removeItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false void [0xc822ec6980] } +&{rowAlignment QGraphicsGridLayout::rowAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false Qt::Alignment [0xc822ec6c00] } +&{rowCount QGraphicsGridLayout::rowCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false int [] } +&{rowMaximumHeight QGraphicsGridLayout::rowMaximumHeight commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false qreal [0xc822ec7100] } +&{rowMinimumHeight QGraphicsGridLayout::rowMinimumHeight commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false qreal [0xc822ec7360] } +&{rowPreferredHeight QGraphicsGridLayout::rowPreferredHeight commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false qreal [0xc822ec7620] } +&{rowSpacing QGraphicsGridLayout::rowSpacing commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false qreal [0xc822ec79c0] } +&{rowStretchFactor QGraphicsGridLayout::rowStretchFactor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false int [0xc822ec7c80] } +&{setAlignment QGraphicsGridLayout::setAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false void [0xc822ec7f20 0xc822ec2080] } +&{setColumnAlignment QGraphicsGridLayout::setColumnAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false void [0xc822ec2600 0xc822ec26e0] } +&{setColumnFixedWidth QGraphicsGridLayout::setColumnFixedWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false void [0xc822ec2a80 0xc822ec2c60] } +&{setColumnMaximumWidth QGraphicsGridLayout::setColumnMaximumWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false void [0xc822ec3000 0xc822ec3140] } +&{setColumnMinimumWidth QGraphicsGridLayout::setColumnMinimumWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false void [0xc822ec3500 0xc822ec3660] } +&{setColumnPreferredWidth QGraphicsGridLayout::setColumnPreferredWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false void [0xc822ec39c0 0xc822ec3b20] } +&{setColumnSpacing QGraphicsGridLayout::setColumnSpacing commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false void [0xc822ec3e60 0xc822ec3f20] } +&{setColumnStretchFactor QGraphicsGridLayout::setColumnStretchFactor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false void [0xc822eb42c0 0xc822eb4360] } +&{setGeometry QGraphicsGridLayout::setGeometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h impure plain false false void [0xc822eb46c0] } +&{setHorizontalSpacing QGraphicsGridLayout::setHorizontalSpacing commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false void [0xc822eb4bc0] } +&{setRowAlignment QGraphicsGridLayout::setRowAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false void [0xc822eb4ec0 0xc822eb4fe0] } +&{setRowFixedHeight QGraphicsGridLayout::setRowFixedHeight commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false void [0xc822eb5380 0xc822eb54c0] } +&{setRowMaximumHeight QGraphicsGridLayout::setRowMaximumHeight commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false void [0xc822eb59a0 0xc822eb5aa0] } +&{setRowMinimumHeight QGraphicsGridLayout::setRowMinimumHeight commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false void [0xc822eb5f00 0xc822eb5fa0] } +&{setRowPreferredHeight QGraphicsGridLayout::setRowPreferredHeight commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false void [0xc822ea2360 0xc822ea24e0] } +&{setRowSpacing QGraphicsGridLayout::setRowSpacing commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false void [0xc822ea2720 0xc822ea2820] } +&{setRowStretchFactor QGraphicsGridLayout::setRowStretchFactor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false void [0xc822ea2b00 0xc822ea2c00] } +&{setSpacing QGraphicsGridLayout::setSpacing commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false void [0xc822ea2fc0] } +&{setVerticalSpacing QGraphicsGridLayout::setVerticalSpacing commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false void [0xc822ea32e0] } +&{sizeHint QGraphicsGridLayout::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h impure plain false false QSizeF [0xc822ea3600 0xc822ea3700] } +&{verticalSpacing QGraphicsGridLayout::verticalSpacing commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h non plain false false qreal [] } +&{~QGraphicsGridLayout QGraphicsGridLayout::~QGraphicsGridLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsgridlayout.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsItem.txt b/internal/binding/dump/QtWidgets/QGraphicsItem.txt new file mode 100755 index 00000000..4a709211 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsItem.txt @@ -0,0 +1,208 @@ +######################################## FUNCTIONS ######################################## +&{QGraphicsItem QGraphicsItem::QGraphicsItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non constructor false false [0xc822e3e900] } +&{acceptedMouseButtons QGraphicsItem::acceptedMouseButtons commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false Qt::MouseButtons [] } +&{acceptDrops QGraphicsItem::acceptDrops commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false bool [] } +&{acceptHoverEvents QGraphicsItem::acceptHoverEvents commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false bool [] } +&{acceptTouchEvents QGraphicsItem::acceptTouchEvents commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false bool [] } +&{advance QGraphicsItem::advance commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc822e20500] } +&{boundingRect QGraphicsItem::boundingRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h pure plain false false QRectF [] } +&{boundingRegion QGraphicsItem::boundingRegion commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QRegion [0xc822e20aa0] } +&{boundingRegionGranularity QGraphicsItem::boundingRegionGranularity commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false qreal [] } +&{cacheMode QGraphicsItem::cacheMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false CacheMode [] } +&{childItems QGraphicsItem::childItems commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QList [] } +&{childrenBoundingRect QGraphicsItem::childrenBoundingRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QRectF [] } +&{clearFocus QGraphicsItem::clearFocus commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [] } +&{clipPath QGraphicsItem::clipPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QPainterPath [] } +&{collidesWithItem QGraphicsItem::collidesWithItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false bool [0xc822e21aa0 0xc822e21c60] } +&{collidesWithPath QGraphicsItem::collidesWithPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false bool [0xc822e21fc0 0xc822e141a0] } +&{collidingItems QGraphicsItem::collidingItems commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QList [0xc822e146c0] } +&{commonAncestorItem QGraphicsItem::commonAncestorItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QGraphicsItem * [0xc822e149a0] } +&{contains QGraphicsItem::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false bool [0xc822e14d20] } +&{contextMenuEvent QGraphicsItem::contextMenuEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc822e15020] } +&{cursor QGraphicsItem::cursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QCursor [] } +&{data QGraphicsItem::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QVariant [0xc822e155c0] } +&{deviceTransform QGraphicsItem::deviceTransform commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QTransform [0xc822e15980] } +&{dragEnterEvent QGraphicsItem::dragEnterEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc822e15e20] } +&{dragLeaveEvent QGraphicsItem::dragLeaveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc822e02100] } +&{dragMoveEvent QGraphicsItem::dragMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc822e02460] } +&{dropEvent QGraphicsItem::dropEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc822e02840] } +&{effectiveOpacity QGraphicsItem::effectiveOpacity commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false qreal [] } +&{ensureVisible QGraphicsItem::ensureVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc822e02d60 0xc822e02e60 0xc822e02ee0] } +&{ensureVisible QGraphicsItem::ensureVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 2 void [0xc822e031c0 0xc822e03280 0xc822e033a0 0xc822e034a0 0xc822e03560 0xc822e03660] } +&{focusInEvent QGraphicsItem::focusInEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc822e03960] } +&{focusItem QGraphicsItem::focusItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QGraphicsItem * [] } +&{focusOutEvent QGraphicsItem::focusOutEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc822e03e60] } +&{focusProxy QGraphicsItem::focusProxy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QGraphicsItem * [] } +&{filtersChildEvents QGraphicsItem::filtersChildEvents commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false bool [] } +&{flags QGraphicsItem::flags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false GraphicsItemFlags [] } +&{grabKeyboard QGraphicsItem::grabKeyboard commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [] } +&{grabMouse QGraphicsItem::grabMouse commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [] } +&{graphicsEffect QGraphicsItem::graphicsEffect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QGraphicsEffect * [] } +&{group QGraphicsItem::group commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QGraphicsItemGroup * [] } +&{hasCursor QGraphicsItem::hasCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false bool [] } +&{hasFocus QGraphicsItem::hasFocus commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false bool [] } +&{hide QGraphicsItem::hide commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [] } +&{hoverEnterEvent QGraphicsItem::hoverEnterEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc822df1d40] } +&{hoverLeaveEvent QGraphicsItem::hoverLeaveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc822de0180] } +&{hoverMoveEvent QGraphicsItem::hoverMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc822de0500] } +&{inputMethodEvent QGraphicsItem::inputMethodEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc822de0a20] } +&{inputMethodHints QGraphicsItem::inputMethodHints commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false Qt::InputMethodHints [] } +&{inputMethodQuery QGraphicsItem::inputMethodQuery commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QVariant [0xc822de12c0] } +&{installSceneEventFilter QGraphicsItem::installSceneEventFilter commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc822de1800] } +&{isActive QGraphicsItem::isActive commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false bool [] } +&{isAncestorOf QGraphicsItem::isAncestorOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false bool [0xc822de1fc0] } +&{isBlockedByModalPanel QGraphicsItem::isBlockedByModalPanel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false bool [0xc822dd8260] } +&{isClipped QGraphicsItem::isClipped commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false bool [] } +&{isEnabled QGraphicsItem::isEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false bool [] } +&{isObscured QGraphicsItem::isObscured commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false bool [0xc822dd8800] } +&{isObscured QGraphicsItem::isObscured commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 2 bool [0xc822dd8ae0 0xc822dd8b80 0xc822dd8ca0 0xc822dd8da0] } +&{isObscuredBy QGraphicsItem::isObscuredBy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false bool [0xc822dd9080] } +&{isPanel QGraphicsItem::isPanel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false bool [] } +&{isSelected QGraphicsItem::isSelected commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false bool [] } +&{isUnderMouse QGraphicsItem::isUnderMouse commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false bool [] } +&{isVisible QGraphicsItem::isVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false bool [] } +&{isVisibleTo QGraphicsItem::isVisibleTo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false bool [0xc822dd9a80] } +&{isWidget QGraphicsItem::isWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false bool [] } +&{isWindow QGraphicsItem::isWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false bool [] } +&{itemChange QGraphicsItem::itemChange commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QVariant [0xc822dcc1c0 0xc822dcc380] } +&{itemTransform QGraphicsItem::itemTransform commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QTransform [0xc822dcc720 0xc822dcc8c0] } +&{keyPressEvent QGraphicsItem::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc822dccc40] } +&{keyReleaseEvent QGraphicsItem::keyReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc822dccf40] } +&{mapFromItem QGraphicsItem::mapFromItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 4 QPainterPath [0xc822dcd380 0xc822dcd560] } +&{mapFromItem QGraphicsItem::mapFromItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QPointF [0xc822dcd9a0 0xc822dcdbc0] } +&{mapFromItem QGraphicsItem::mapFromItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 6 QPointF [0xc822dcdf80 0xc822dbc0e0 0xc822dbc200] } +&{mapFromItem QGraphicsItem::mapFromItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 3 QPolygonF [0xc822dbc660 0xc822dbc7e0] } +&{mapFromItem QGraphicsItem::mapFromItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 2 QPolygonF [0xc822dbcc20 0xc822dbcd60] } +&{mapFromItem QGraphicsItem::mapFromItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 5 QPolygonF [0xc822dbd060 0xc822dbd200 0xc822dbd2a0 0xc822dbd380 0xc822dbd4a0] } +&{mapFromParent QGraphicsItem::mapFromParent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 4 QPainterPath [0xc822dbd700] } +&{mapFromParent QGraphicsItem::mapFromParent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QPointF [0xc822dbda80] } +&{mapFromParent QGraphicsItem::mapFromParent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 6 QPointF [0xc822dbdd40 0xc822dbdde0] } +&{mapFromParent QGraphicsItem::mapFromParent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 3 QPolygonF [0xc822dae0c0] } +&{mapFromParent QGraphicsItem::mapFromParent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 2 QPolygonF [0xc822dae420] } +&{mapFromParent QGraphicsItem::mapFromParent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 5 QPolygonF [0xc822dae6a0 0xc822dae7a0 0xc822dae860 0xc822dae8e0] } +&{mapFromScene QGraphicsItem::mapFromScene commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 4 QPainterPath [0xc822daebe0] } +&{mapFromScene QGraphicsItem::mapFromScene commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QPointF [0xc822daef60] } +&{mapFromScene QGraphicsItem::mapFromScene commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 6 QPointF [0xc822daf1a0 0xc822daf2c0] } +&{mapFromScene QGraphicsItem::mapFromScene commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 3 QPolygonF [0xc822daf5e0] } +&{mapFromScene QGraphicsItem::mapFromScene commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 2 QPolygonF [0xc822daf8a0] } +&{mapFromScene QGraphicsItem::mapFromScene commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 5 QPolygonF [0xc822dafb20 0xc822dafc00 0xc822dafcc0 0xc822dafdc0] } +&{mapRectFromItem QGraphicsItem::mapRectFromItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QRectF [0xc822d9c080 0xc822d9c1e0] } +&{mapRectFromItem QGraphicsItem::mapRectFromItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 2 QRectF [0xc822d9c500 0xc822d9c640 0xc822d9c720 0xc822d9c840 0xc822d9c9c0] } +&{mapRectFromParent QGraphicsItem::mapRectFromParent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QRectF [0xc822d9cca0] } +&{mapRectFromParent QGraphicsItem::mapRectFromParent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 2 QRectF [0xc822d9d060 0xc822d9d100 0xc822d9d200 0xc822d9d2a0] } +&{mapRectFromScene QGraphicsItem::mapRectFromScene commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QRectF [0xc822d9d560] } +&{mapRectFromScene QGraphicsItem::mapRectFromScene commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 2 QRectF [0xc822d9d8a0 0xc822d9d9e0 0xc822d9db20 0xc822d9dc00] } +&{mapRectToItem QGraphicsItem::mapRectToItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QRectF [0xc822d9df60 0xc822d940c0] } +&{mapRectToItem QGraphicsItem::mapRectToItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 2 QRectF [0xc822d94380 0xc822d94480 0xc822d94520 0xc822d945a0 0xc822d94660] } +&{mapRectToParent QGraphicsItem::mapRectToParent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QRectF [0xc822d94880] } +&{mapRectToParent QGraphicsItem::mapRectToParent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 2 QRectF [0xc822d94aa0 0xc822d94be0 0xc822d94ca0 0xc822d94d20] } +&{mapRectToScene QGraphicsItem::mapRectToScene commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QRectF [0xc822d94fe0] } +&{mapRectToScene QGraphicsItem::mapRectToScene commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 2 QRectF [0xc822d95280 0xc822d95340 0xc822d953c0 0xc822d95480] } +&{mapToItem QGraphicsItem::mapToItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 4 QPainterPath [0xc822d956e0 0xc822d957c0] } +&{mapToItem QGraphicsItem::mapToItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QPointF [0xc822d95b20 0xc822d95c40] } +&{mapToItem QGraphicsItem::mapToItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 6 QPointF [0xc822d95f20 0xc822d8a020 0xc822d8a0e0] } +&{mapToItem QGraphicsItem::mapToItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 3 QPolygonF [0xc822d8a480 0xc822d8a6c0] } +&{mapToItem QGraphicsItem::mapToItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 2 QPolygonF [0xc822d8aa80 0xc822d8ac20] } +&{mapToItem QGraphicsItem::mapToItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 5 QPolygonF [0xc822d8af20 0xc822d8b020 0xc822d8b120 0xc822d8b1a0 0xc822d8b320] } +&{mapToParent QGraphicsItem::mapToParent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 4 QPainterPath [0xc822d8b6a0] } +&{mapToParent QGraphicsItem::mapToParent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QPointF [0xc822d8bb40] } +&{mapToParent QGraphicsItem::mapToParent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 6 QPointF [0xc822d8bf00 0xc822d78040] } +&{mapToParent QGraphicsItem::mapToParent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 3 QPolygonF [0xc822d78460] } +&{mapToParent QGraphicsItem::mapToParent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 2 QPolygonF [0xc822d788e0] } +&{mapToParent QGraphicsItem::mapToParent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 5 QPolygonF [0xc822d78c20 0xc822d78d60 0xc822d78e60 0xc822d78f20] } +&{mapToScene QGraphicsItem::mapToScene commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 4 QPainterPath [0xc822d792c0] } +&{mapToScene QGraphicsItem::mapToScene commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QPointF [0xc822d79640] } +&{mapToScene QGraphicsItem::mapToScene commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 6 QPointF [0xc822d79980 0xc822d79a40] } +&{mapToScene QGraphicsItem::mapToScene commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 3 QPolygonF [0xc822d79d40] } +&{mapToScene QGraphicsItem::mapToScene commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 2 QPolygonF [0xc822d6e100] } +&{mapToScene QGraphicsItem::mapToScene commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 5 QPolygonF [0xc822d6e540 0xc822d6e620 0xc822d6e720 0xc822d6e860] } +&{mouseDoubleClickEvent QGraphicsItem::mouseDoubleClickEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc822d6ed60] } +&{mouseMoveEvent QGraphicsItem::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc822d6f080] } +&{mousePressEvent QGraphicsItem::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc822d6f520] } +&{mouseReleaseEvent QGraphicsItem::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc822d6f8e0] } +&{moveBy QGraphicsItem::moveBy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc822d6fd00 0xc822d6fe20] } +&{opacity QGraphicsItem::opacity commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false qreal [] } +&{opaqueArea QGraphicsItem::opaqueArea commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QPainterPath [] } +&{paint QGraphicsItem::paint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h pure plain false false void [0xc822d5c720 0xc822d5c8e0 0xc822d5cb20] } +&{panel QGraphicsItem::panel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QGraphicsItem * [] } +&{panelModality QGraphicsItem::panelModality commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false PanelModality [] } +&{parentItem QGraphicsItem::parentItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QGraphicsItem * [] } +&{parentObject QGraphicsItem::parentObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QGraphicsObject * [] } +&{parentWidget QGraphicsItem::parentWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QGraphicsWidget * [] } +&{pos QGraphicsItem::pos commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QPointF [] } +&{prepareGeometryChange QGraphicsItem::prepareGeometryChange commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [] } +&{removeSceneEventFilter QGraphicsItem::removeSceneEventFilter commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc822d4e060] } +&{resetTransform QGraphicsItem::resetTransform commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [] } +&{rotation QGraphicsItem::rotation commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false qreal [] } +&{scale QGraphicsItem::scale commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false qreal [] } +&{scene QGraphicsItem::scene commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QGraphicsScene * [] } +&{sceneBoundingRect QGraphicsItem::sceneBoundingRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QRectF [] } +&{sceneEvent QGraphicsItem::sceneEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false bool [0xc822d4f720] } +&{sceneEventFilter QGraphicsItem::sceneEventFilter commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false bool [0xc822d4f9c0 0xc822d4fac0] } +&{scenePos QGraphicsItem::scenePos commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QPointF [] } +&{sceneTransform QGraphicsItem::sceneTransform commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QTransform [] } +&{scroll QGraphicsItem::scroll commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc822d401a0 0xc822d40280 0xc822d40380] } +&{setAcceptDrops QGraphicsItem::setAcceptDrops commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc822d40620] } +&{setAcceptHoverEvents QGraphicsItem::setAcceptHoverEvents commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc822d40880] } +&{setAcceptTouchEvents QGraphicsItem::setAcceptTouchEvents commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc822d40b00] } +&{setAcceptedMouseButtons QGraphicsItem::setAcceptedMouseButtons commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc822d40dc0] } +&{setActive QGraphicsItem::setActive commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc822d41360] } +&{setBoundingRegionGranularity QGraphicsItem::setBoundingRegionGranularity commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc822d41620] } +&{setCacheMode QGraphicsItem::setCacheMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc822d41920 0xc822d419c0] } +&{setCursor QGraphicsItem::setCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc822d41ce0] } +&{setData QGraphicsItem::setData commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc822d41fe0 0xc821ac8080] } +&{setEnabled QGraphicsItem::setEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc821ac8300] } +&{setFiltersChildEvents QGraphicsItem::setFiltersChildEvents commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc821ac87e0] } +&{setFlag QGraphicsItem::setFlag commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc821ac8a20 0xc821ac8b00] } +&{setFlags QGraphicsItem::setFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc821ac8d40] } +&{setFocus QGraphicsItem::setFocus commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc821ac9020] } +&{setFocusProxy QGraphicsItem::setFocusProxy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc821ac9280] } +&{setGraphicsEffect QGraphicsItem::setGraphicsEffect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc821ac9560] } +&{setGroup QGraphicsItem::setGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc821ac9820] } +&{setInputMethodHints QGraphicsItem::setInputMethodHints commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc821ac9cc0] } +&{setOpacity QGraphicsItem::setOpacity commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc82191e220] } +&{setPanelModality QGraphicsItem::setPanelModality commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc82191e420] } +&{setParentItem QGraphicsItem::setParentItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc82191e6a0] } +&{setPos QGraphicsItem::setPos commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc82191e8e0] } +&{setPos QGraphicsItem::setPos commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 2 void [0xc82191eb40 0xc82191ebc0] } +&{setRotation QGraphicsItem::setRotation commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc82191ee60] } +&{setScale QGraphicsItem::setScale commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc82191f0c0] } +&{setSelected QGraphicsItem::setSelected commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc82191f300] } +&{setToolTip QGraphicsItem::setToolTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc82191f580] } +&{setTransform QGraphicsItem::setTransform commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc82191f7c0 0xc82191f8c0] } +&{setTransformOriginPoint QGraphicsItem::setTransformOriginPoint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc82191fac0] } +&{setTransformOriginPoint QGraphicsItem::setTransformOriginPoint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 2 void [0xc82191fd00 0xc82191fd80] } +&{setTransformations QGraphicsItem::setTransformations commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc82191ffa0] } +&{setVisible QGraphicsItem::setVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc82182a1e0] } +&{setX QGraphicsItem::setX commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc82182a480] } +&{setY QGraphicsItem::setY commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc82182a6e0] } +&{setZValue QGraphicsItem::setZValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc82182a920] } +&{shape QGraphicsItem::shape commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QPainterPath [] } +&{show QGraphicsItem::show commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [] } +&{stackBefore QGraphicsItem::stackBefore commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc82182b0a0] } +&{toGraphicsObject QGraphicsItem::toGraphicsObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QGraphicsObject * [] } +&{toGraphicsObject QGraphicsItem::toGraphicsObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 2 const QGraphicsObject * [] } +&{toolTip QGraphicsItem::toolTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QString [] } +&{topLevelItem QGraphicsItem::topLevelItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QGraphicsItem * [] } +&{topLevelWidget QGraphicsItem::topLevelWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QGraphicsWidget * [] } +&{transform QGraphicsItem::transform commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QTransform [] } +&{transformOriginPoint QGraphicsItem::transformOriginPoint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QPointF [] } +&{transformations QGraphicsItem::transformations commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QList [] } +&{type QGraphicsItem::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false int [] } +&{ungrabKeyboard QGraphicsItem::ungrabKeyboard commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [] } +&{ungrabMouse QGraphicsItem::ungrabMouse commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [] } +&{unsetCursor QGraphicsItem::unsetCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [] } +&{update QGraphicsItem::update commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc8227a27a0] } +&{update QGraphicsItem::update commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 2 void [0xc8227a29e0 0xc8227a2a80 0xc8227a2b00 0xc8227a2bc0] } +&{updateMicroFocus QGraphicsItem::updateMicroFocus commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [] } +&{wheelEvent QGraphicsItem::wheelEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc8227a2f60] } +&{window QGraphicsItem::window commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QGraphicsWidget * [] } +&{x QGraphicsItem::x commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false qreal [] } +&{y QGraphicsItem::y commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false qreal [] } +&{zValue QGraphicsItem::zValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false qreal [] } +&{~QGraphicsItem QGraphicsItem::~QGraphicsItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{CacheMode QGraphicsItem::CacheMode commendable public [0xc822e700c0 0xc822e701a0 0xc822e702c0]} +&{GraphicsItemChange QGraphicsItem::GraphicsItemChange commendable public [0xc822e706c0 0xc822e70900 0xc822e70a00 0xc822e70be0 0xc822e70dc0 0xc822e70f20 0xc822e71060 0xc822e71200 0xc822e71320 0xc822e71500 0xc822e71680 0xc822e717c0 0xc822e71920 0xc822e71a80 0xc822e71ca0 0xc822e71e20 0xc822e71fe0 0xc822e5e180 0xc822e5e2a0 0xc822e5e540 0xc822e5e700 0xc822e5e8c0 0xc822e5e9e0 0xc822e5eba0 0xc822e5ed00 0xc822e5ef40 0xc822e5f220 0xc822e5f360 0xc822e5f640 0xc822e5f760 0xc822e5f900 0xc822e5fa80 0xc822e5fbe0 0xc822e5fda0]} +&{GraphicsItemFlag QGraphicsItem::GraphicsItemFlag commendable public QGraphicsItem::GraphicsItemFlags [0xc822e521a0 0xc822e52240 0xc822e52360 0xc822e52400 0xc822e52620 0xc822e527c0 0xc822e52940 0xc822e52ac0 0xc822e52c20 0xc822e52e40 0xc822e52fe0 0xc822e531a0 0xc822e53380 0xc822e53500 0xc822e53640 0xc822e53700 0xc822e53880 0xc822e53a00 0xc822e53b60 0xc822e53d20]} +&{PanelModality QGraphicsItem::PanelModality commendable public [0xc822e3e1c0 0xc822e3e2a0 0xc822e3e3a0]} diff --git a/internal/binding/dump/QtWidgets/QGraphicsItemGroup.txt b/internal/binding/dump/QtWidgets/QGraphicsItemGroup.txt new file mode 100755 index 00000000..19ae6b5b --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsItemGroup.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{QGraphicsItemGroup QGraphicsItemGroup::QGraphicsItemGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non constructor false false [0xc8227a3b00] } +&{addToGroup QGraphicsItemGroup::addToGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc8227a3d00] } +&{boundingRect QGraphicsItemGroup::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QRectF [] } +&{isObscuredBy QGraphicsItemGroup::isObscuredBy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false bool [0xc821c7c060] } +&{opaqueArea QGraphicsItemGroup::opaqueArea commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QPainterPath [] } +&{paint QGraphicsItemGroup::paint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc821c7c460 0xc821c7c500 0xc821c7c620] } +&{removeFromGroup QGraphicsItemGroup::removeFromGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc821c7c7a0] } +&{type QGraphicsItemGroup::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false int [] } +&{~QGraphicsItemGroup QGraphicsItemGroup::~QGraphicsItemGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsLayout.txt b/internal/binding/dump/QtWidgets/QGraphicsLayout.txt new file mode 100755 index 00000000..b9f2f3e7 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsLayout.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QGraphicsLayout QGraphicsLayout::QGraphicsLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayout.h non constructor false false [0xc821f49380] } +&{activate QGraphicsLayout::activate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayout.h non plain false false void [] } +&{count QGraphicsLayout::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayout.h pure plain false false int [] } +&{getContentsMargins QGraphicsLayout::getContentsMargins commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayout.h impure plain false false void [0xc821f498c0 0xc821f49960 0xc821f499e0 0xc821f49ac0] } +&{invalidate QGraphicsLayout::invalidate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayout.h impure plain false false void [] } +&{isActivated QGraphicsLayout::isActivated commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayout.h non plain false false bool [] } +&{itemAt QGraphicsLayout::itemAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayout.h pure plain false false QGraphicsLayoutItem * [0xc8220de080] } +&{removeAt QGraphicsLayout::removeAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayout.h pure plain false false void [0xc8220de320] } +&{setContentsMargins QGraphicsLayout::setContentsMargins commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayout.h non plain false false void [0xc8220de5c0 0xc8220de660 0xc8220de6e0 0xc8220de780] } +&{addChildLayoutItem QGraphicsLayout::addChildLayoutItem commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayout.h non plain false false void [0xc8220df140] } +&{updateGeometry QGraphicsLayout::updateGeometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayout.h impure plain false false void [] } +&{widgetEvent QGraphicsLayout::widgetEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayout.h impure plain false false void [0xc8220df580] } +&{~QGraphicsLayout QGraphicsLayout::~QGraphicsLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayout.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsLayoutItem.txt b/internal/binding/dump/QtWidgets/QGraphicsLayoutItem.txt new file mode 100755 index 00000000..ee9931bb --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsLayoutItem.txt @@ -0,0 +1,42 @@ +######################################## FUNCTIONS ######################################## +&{geometry QGraphicsLayoutItem::geometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.cpp non plain false false QRectF [] } +&{setGeometry QGraphicsLayoutItem::setGeometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.cpp impure plain false false void [0xc8220dfd80] } +&{QGraphicsLayoutItem QGraphicsLayoutItem::QGraphicsLayoutItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non constructor false false [0xc8220dffc0 0xc8220ec0c0] } +&{contentsRect QGraphicsLayoutItem::contentsRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false QRectF [] } +&{effectiveSizeHint QGraphicsLayoutItem::effectiveSizeHint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false QSizeF [0xc8220ec3e0 0xc8220ec480] } +&{getContentsMargins QGraphicsLayoutItem::getContentsMargins commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h impure plain false false void [0xc8220ecbe0 0xc8220ecc80 0xc8220ecd20 0xc8220ecda0] } +&{graphicsItem QGraphicsLayoutItem::graphicsItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false QGraphicsItem * [] } +&{isLayout QGraphicsLayoutItem::isLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false bool [] } +&{maximumHeight QGraphicsLayoutItem::maximumHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false qreal [] } +&{maximumSize QGraphicsLayoutItem::maximumSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false QSizeF [] } +&{maximumWidth QGraphicsLayoutItem::maximumWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false qreal [] } +&{minimumHeight QGraphicsLayoutItem::minimumHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false qreal [] } +&{minimumSize QGraphicsLayoutItem::minimumSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false QSizeF [] } +&{minimumWidth QGraphicsLayoutItem::minimumWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false qreal [] } +&{ownedByLayout QGraphicsLayoutItem::ownedByLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false bool [] } +&{parentLayoutItem QGraphicsLayoutItem::parentLayoutItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false QGraphicsLayoutItem * [] } +&{preferredHeight QGraphicsLayoutItem::preferredHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false qreal [] } +&{preferredSize QGraphicsLayoutItem::preferredSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false QSizeF [] } +&{preferredWidth QGraphicsLayoutItem::preferredWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false qreal [] } +&{setGraphicsItem QGraphicsLayoutItem::setGraphicsItem commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false void [0xc8220edbc0] } +&{setMaximumHeight QGraphicsLayoutItem::setMaximumHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false void [0xc8220edd60] } +&{setMaximumSize QGraphicsLayoutItem::setMaximumSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false void [0xc8220edf20] } +&{setMaximumSize QGraphicsLayoutItem::setMaximumSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false true 2 void [0xc821d5e100 0xc821d5e1a0] } +&{setMaximumWidth QGraphicsLayoutItem::setMaximumWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false void [0xc821d5e360] } +&{setMinimumHeight QGraphicsLayoutItem::setMinimumHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false void [0xc821d5e540] } +&{setMinimumSize QGraphicsLayoutItem::setMinimumSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false void [0xc821d5e720] } +&{setMinimumSize QGraphicsLayoutItem::setMinimumSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false true 2 void [0xc821d5e8c0 0xc821d5e980] } +&{setMinimumWidth QGraphicsLayoutItem::setMinimumWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false void [0xc821d5eb20] } +&{setOwnedByLayout QGraphicsLayoutItem::setOwnedByLayout commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false void [0xc821d5ed00] } +&{setParentLayoutItem QGraphicsLayoutItem::setParentLayoutItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false void [0xc821d5ef60] } +&{setPreferredHeight QGraphicsLayoutItem::setPreferredHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false void [0xc821d5f220] } +&{setPreferredSize QGraphicsLayoutItem::setPreferredSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false void [0xc821d5f3e0] } +&{setPreferredSize QGraphicsLayoutItem::setPreferredSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false true 2 void [0xc821d5f5e0 0xc821d5f660] } +&{setPreferredWidth QGraphicsLayoutItem::setPreferredWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false void [0xc821d5f8a0] } +&{setSizePolicy QGraphicsLayoutItem::setSizePolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false true 2 void [0xc821d5fac0 0xc821d5fbc0 0xc821d5fd20] } +&{setSizePolicy QGraphicsLayoutItem::setSizePolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false void [0xc821d5ff80] } +&{sizeHint QGraphicsLayoutItem::sizeHint commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h pure plain false false QSizeF [0xc8227c0220 0xc8227c02a0] } +&{sizePolicy QGraphicsLayoutItem::sizePolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h non plain false false QSizePolicy [] } +&{updateGeometry QGraphicsLayoutItem::updateGeometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h impure plain false false void [] } +&{~QGraphicsLayoutItem QGraphicsLayoutItem::~QGraphicsLayoutItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslayoutitem.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsLineItem.txt b/internal/binding/dump/QtWidgets/QGraphicsLineItem.txt new file mode 100755 index 00000000..e2783ad3 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsLineItem.txt @@ -0,0 +1,18 @@ +######################################## FUNCTIONS ######################################## +&{QGraphicsLineItem QGraphicsLineItem::QGraphicsLineItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non constructor false false [0xc821c7ce60] } +&{QGraphicsLineItem QGraphicsLineItem::QGraphicsLineItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non constructor false true 2 [0xc821c7d040 0xc821c7d0e0] } +&{QGraphicsLineItem QGraphicsLineItem::QGraphicsLineItem commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non constructor false true 3 [0xc821c7d2a0 0xc821c7d360 0xc821c7d3e0 0xc821c7d4c0 0xc821c7d580] } +&{boundingRect QGraphicsLineItem::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QRectF [] } +&{contains QGraphicsLineItem::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false bool [0xc821c7d900] } +&{isObscuredBy QGraphicsLineItem::isObscuredBy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false bool [0xc821c7ddc0] } +&{line QGraphicsLineItem::line commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QLineF [] } +&{opaqueArea QGraphicsLineItem::opaqueArea commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QPainterPath [] } +&{paint QGraphicsLineItem::paint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc8219ba300 0xc8219ba400 0xc8219ba500] } +&{pen QGraphicsLineItem::pen commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QPen [] } +&{setLine QGraphicsLineItem::setLine commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc8219bab60] } +&{setLine QGraphicsLineItem::setLine commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 2 void [0xc8219bad80 0xc8219bae40 0xc8219baee0 0xc8219baf60] } +&{setPen QGraphicsLineItem::setPen commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc8219bb200] } +&{shape QGraphicsLineItem::shape commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QPainterPath [] } +&{type QGraphicsLineItem::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false int [] } +&{~QGraphicsLineItem QGraphicsLineItem::~QGraphicsLineItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsLinearLayout.txt b/internal/binding/dump/QtWidgets/QGraphicsLinearLayout.txt new file mode 100755 index 00000000..cb61694b --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsLinearLayout.txt @@ -0,0 +1,26 @@ +######################################## FUNCTIONS ######################################## +&{QGraphicsLinearLayout QGraphicsLinearLayout::QGraphicsLinearLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslinearlayout.h non constructor false false [0xc8227c0d20] } +&{QGraphicsLinearLayout QGraphicsLinearLayout::QGraphicsLinearLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslinearlayout.h non constructor false true 2 [0xc8227c0fa0 0xc8227c1060] } +&{addItem QGraphicsLinearLayout::addItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslinearlayout.h non plain false false void [0xc8227c1360] } +&{addStretch QGraphicsLinearLayout::addStretch commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslinearlayout.h non plain false false void [0xc8227c1560] } +&{alignment QGraphicsLinearLayout::alignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslinearlayout.h non plain false false Qt::Alignment [0xc8227c17e0] } +&{count QGraphicsLinearLayout::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslinearlayout.h impure plain false false int [] } +&{insertItem QGraphicsLinearLayout::insertItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslinearlayout.h non plain false false void [0xc8227c1e40 0xc8227c1f00] } +&{insertStretch QGraphicsLinearLayout::insertStretch commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslinearlayout.h non plain false false void [0xc8220c8100 0xc8220c81a0] } +&{invalidate QGraphicsLinearLayout::invalidate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslinearlayout.h impure plain false false void [] } +&{itemAt QGraphicsLinearLayout::itemAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslinearlayout.h impure plain false false QGraphicsLayoutItem * [0xc8220c8560] } +&{itemSpacing QGraphicsLinearLayout::itemSpacing commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslinearlayout.h non plain false false qreal [0xc8220c8720] } +&{orientation QGraphicsLinearLayout::orientation commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslinearlayout.h non plain false false Qt::Orientation [] } +&{removeAt QGraphicsLinearLayout::removeAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslinearlayout.h impure plain false false void [0xc8220c8a40] } +&{removeItem QGraphicsLinearLayout::removeItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslinearlayout.h non plain false false void [0xc8220c8c40] } +&{setAlignment QGraphicsLinearLayout::setAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslinearlayout.h non plain false false void [0xc8220c8ea0 0xc8220c8fa0] } +&{setGeometry QGraphicsLinearLayout::setGeometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslinearlayout.h impure plain false false void [0xc8220c9160] } +&{setItemSpacing QGraphicsLinearLayout::setItemSpacing commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslinearlayout.h non plain false false void [0xc8220c9360 0xc8220c93e0] } +&{setOrientation QGraphicsLinearLayout::setOrientation commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslinearlayout.h non plain false false void [0xc8220c95e0] } +&{setSpacing QGraphicsLinearLayout::setSpacing commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslinearlayout.h non plain false false void [0xc8220c97a0] } +&{setStretchFactor QGraphicsLinearLayout::setStretchFactor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslinearlayout.h non plain false false void [0xc8220c99a0 0xc8220c9aa0] } +&{sizeHint QGraphicsLinearLayout::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslinearlayout.h impure plain false false QSizeF [0xc8220c9ce0 0xc8220c9d60] } +&{spacing QGraphicsLinearLayout::spacing commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslinearlayout.h non plain false false qreal [] } +&{stretchFactor QGraphicsLinearLayout::stretchFactor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslinearlayout.h non plain false false int [0xc821eb80a0] } +&{~QGraphicsLinearLayout QGraphicsLinearLayout::~QGraphicsLinearLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicslinearlayout.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsObject.txt b/internal/binding/dump/QtWidgets/QGraphicsObject.txt new file mode 100755 index 00000000..98f3c021 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsObject.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{QGraphicsObject QGraphicsObject::QGraphicsObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non constructor false false [0xc8219bbce0] } +&{enabledChanged QGraphicsObject::enabledChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non signal false false void [] } +&{event QGraphicsObject::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false bool [0xc8217b6540] } +&{grabGesture QGraphicsObject::grabGesture commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc8217b6740 0xc8217b6820] } +&{opacityChanged QGraphicsObject::opacityChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non signal false false void [] } +&{parentChanged QGraphicsObject::parentChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non signal false false void [] } +&{rotationChanged QGraphicsObject::rotationChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non signal false false void [] } +&{scaleChanged QGraphicsObject::scaleChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non signal false false void [] } +&{ungrabGesture QGraphicsObject::ungrabGesture commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc8217b7120] } +&{updateMicroFocus QGraphicsObject::updateMicroFocus commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non slot false false void [] } +&{visibleChanged QGraphicsObject::visibleChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non signal false false void [] } +&{xChanged QGraphicsObject::xChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non signal false false void [] } +&{yChanged QGraphicsObject::yChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non signal false false void [] } +&{zChanged QGraphicsObject::zChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non signal false false void [] } +&{~QGraphicsObject QGraphicsObject::~QGraphicsObject commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsOpacityEffect.txt b/internal/binding/dump/QtWidgets/QGraphicsOpacityEffect.txt new file mode 100755 index 00000000..3c61e079 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsOpacityEffect.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{opacity QGraphicsOpacityEffect::opacity commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.cpp non plain false false qreal [] } +&{opacityMask QGraphicsOpacityEffect::opacityMask commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.cpp non plain false false QBrush [] } +&{setOpacity QGraphicsOpacityEffect::setOpacity commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.cpp non slot false false void [0xc822f5b1c0] } +&{setOpacityMask QGraphicsOpacityEffect::setOpacityMask commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.cpp non slot false false void [0xc822f5b520] } +&{QGraphicsOpacityEffect QGraphicsOpacityEffect::QGraphicsOpacityEffect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non constructor false false [0xc822f5ba00] } +&{draw QGraphicsOpacityEffect::draw commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h impure plain false false void [0xc822f5bf80] } +&{opacityChanged QGraphicsOpacityEffect::opacityChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non signal false false void [0xc822f42380] } +&{opacityMaskChanged QGraphicsOpacityEffect::opacityMaskChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non signal false false void [0xc822f428e0] } +&{~QGraphicsOpacityEffect QGraphicsOpacityEffect::~QGraphicsOpacityEffect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/effects/qgraphicseffect.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsPathItem.txt b/internal/binding/dump/QtWidgets/QGraphicsPathItem.txt new file mode 100755 index 00000000..2d46b25b --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsPathItem.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QGraphicsPathItem QGraphicsPathItem::QGraphicsPathItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non constructor false false [0xc8217050e0] } +&{QGraphicsPathItem QGraphicsPathItem::QGraphicsPathItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non constructor false true 2 [0xc821705300 0xc821705400] } +&{boundingRect QGraphicsPathItem::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QRectF [] } +&{contains QGraphicsPathItem::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false bool [0xc821705760] } +&{isObscuredBy QGraphicsPathItem::isObscuredBy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false bool [0xc8217059c0] } +&{opaqueArea QGraphicsPathItem::opaqueArea commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QPainterPath [] } +&{paint QGraphicsPathItem::paint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc821705d60 0xc821705e00 0xc821705f00] } +&{path QGraphicsPathItem::path commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QPainterPath [] } +&{setPath QGraphicsPathItem::setPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc8216462c0] } +&{shape QGraphicsPathItem::shape commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QPainterPath [] } +&{type QGraphicsPathItem::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false int [] } +&{~QGraphicsPathItem QGraphicsPathItem::~QGraphicsPathItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsPixmapItem.txt b/internal/binding/dump/QtWidgets/QGraphicsPixmapItem.txt new file mode 100755 index 00000000..c5398a44 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsPixmapItem.txt @@ -0,0 +1,22 @@ +######################################## FUNCTIONS ######################################## +&{QGraphicsPixmapItem QGraphicsPixmapItem::QGraphicsPixmapItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non constructor false false [0xc8216476e0] } +&{QGraphicsPixmapItem QGraphicsPixmapItem::QGraphicsPixmapItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non constructor false true 2 [0xc8216478e0 0xc821647960] } +&{boundingRect QGraphicsPixmapItem::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QRectF [] } +&{contains QGraphicsPixmapItem::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false bool [0xc821647c20] } +&{isObscuredBy QGraphicsPixmapItem::isObscuredBy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false bool [0xc820d04020] } +&{offset QGraphicsPixmapItem::offset commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QPointF [] } +&{opaqueArea QGraphicsPixmapItem::opaqueArea commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QPainterPath [] } +&{paint QGraphicsPixmapItem::paint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc820d04620 0xc820d04700 0xc820d04800] } +&{pixmap QGraphicsPixmapItem::pixmap commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QPixmap [] } +&{setOffset QGraphicsPixmapItem::setOffset commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc820d04f00] } +&{setOffset QGraphicsPixmapItem::setOffset commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 2 void [0xc820d05200 0xc820d05280] } +&{setPixmap QGraphicsPixmapItem::setPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc820d054c0] } +&{setShapeMode QGraphicsPixmapItem::setShapeMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc820d056c0] } +&{setTransformationMode QGraphicsPixmapItem::setTransformationMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc820d059c0] } +&{shape QGraphicsPixmapItem::shape commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QPainterPath [] } +&{shapeMode QGraphicsPixmapItem::shapeMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false ShapeMode [] } +&{transformationMode QGraphicsPixmapItem::transformationMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false Qt::TransformationMode [] } +&{type QGraphicsPixmapItem::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false int [] } +&{~QGraphicsPixmapItem QGraphicsPixmapItem::~QGraphicsPixmapItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non destructor false false [] } +######################################## ENUMS ######################################## +&{ShapeMode QGraphicsPixmapItem::ShapeMode commendable public [0xc821647240 0xc821647300 0xc821647400]} diff --git a/internal/binding/dump/QtWidgets/QGraphicsPolygonItem.txt b/internal/binding/dump/QtWidgets/QGraphicsPolygonItem.txt new file mode 100755 index 00000000..054bff14 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsPolygonItem.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{QGraphicsPolygonItem QGraphicsPolygonItem::QGraphicsPolygonItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non constructor false false [0xc8214aa7e0] } +&{QGraphicsPolygonItem QGraphicsPolygonItem::QGraphicsPolygonItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non constructor false true 2 [0xc8214aaa40 0xc8214aab40] } +&{boundingRect QGraphicsPolygonItem::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QRectF [] } +&{contains QGraphicsPolygonItem::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false bool [0xc8214aae00] } +&{fillRule QGraphicsPolygonItem::fillRule commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false Qt::FillRule [] } +&{isObscuredBy QGraphicsPolygonItem::isObscuredBy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false bool [0xc8214ab0e0] } +&{opaqueArea QGraphicsPolygonItem::opaqueArea commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QPainterPath [] } +&{paint QGraphicsPolygonItem::paint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc8214ab4c0 0xc8214ab560 0xc8214ab680] } +&{polygon QGraphicsPolygonItem::polygon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QPolygonF [] } +&{setFillRule QGraphicsPolygonItem::setFillRule commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc8214ab960] } +&{setPolygon QGraphicsPolygonItem::setPolygon commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc8214abb80] } +&{shape QGraphicsPolygonItem::shape commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QPainterPath [] } +&{type QGraphicsPolygonItem::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false int [] } +&{~QGraphicsPolygonItem QGraphicsPolygonItem::~QGraphicsPolygonItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsProxyWidget.txt b/internal/binding/dump/QtWidgets/QGraphicsProxyWidget.txt new file mode 100755 index 00000000..d04e8716 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsProxyWidget.txt @@ -0,0 +1,41 @@ +######################################## FUNCTIONS ######################################## +&{newProxyWidget QGraphicsProxyWidget::newProxyWidget commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.cpp non slot false false QGraphicsProxyWidget * [0xc821eb8780] } +&{QGraphicsProxyWidget QGraphicsProxyWidget::QGraphicsProxyWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h non constructor false false [0xc821eb89c0 0xc821eb8a60] } +&{contextMenuEvent QGraphicsProxyWidget::contextMenuEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false void [0xc821eb8e40] } +&{createProxyForChildWidget QGraphicsProxyWidget::createProxyForChildWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h non plain false false QGraphicsProxyWidget * [0xc821eb9160] } +&{dragEnterEvent QGraphicsProxyWidget::dragEnterEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false void [0xc821eb9340] } +&{dragLeaveEvent QGraphicsProxyWidget::dragLeaveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false void [0xc821eb9580] } +&{dragMoveEvent QGraphicsProxyWidget::dragMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false void [0xc821eb97c0] } +&{dropEvent QGraphicsProxyWidget::dropEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false void [0xc821eb9aa0] } +&{event QGraphicsProxyWidget::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false bool [0xc821eb9d80] } +&{eventFilter QGraphicsProxyWidget::eventFilter commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false bool [0xc821eb9f40 0xc821eb9fc0] } +&{focusInEvent QGraphicsProxyWidget::focusInEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false void [0xc8220b01a0] } +&{focusNextPrevChild QGraphicsProxyWidget::focusNextPrevChild commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false bool [0xc8220b03c0] } +&{focusOutEvent QGraphicsProxyWidget::focusOutEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false void [0xc8220b05a0] } +&{grabMouseEvent QGraphicsProxyWidget::grabMouseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false void [0xc8220b0740] } +&{hideEvent QGraphicsProxyWidget::hideEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false void [0xc8220b0980] } +&{hoverEnterEvent QGraphicsProxyWidget::hoverEnterEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false void [0xc8220b0ba0] } +&{hoverLeaveEvent QGraphicsProxyWidget::hoverLeaveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false void [0xc8220b0de0] } +&{hoverMoveEvent QGraphicsProxyWidget::hoverMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false void [0xc8220b1020] } +&{inputMethodEvent QGraphicsProxyWidget::inputMethodEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false void [0xc8220b1220] } +&{inputMethodQuery QGraphicsProxyWidget::inputMethodQuery commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false QVariant [0xc8220b1440] } +&{itemChange QGraphicsProxyWidget::itemChange commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false QVariant [0xc8220b1680 0xc8220b1740] } +&{keyPressEvent QGraphicsProxyWidget::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false void [0xc8220b18a0] } +&{keyReleaseEvent QGraphicsProxyWidget::keyReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false void [0xc8220b1a80] } +&{mouseDoubleClickEvent QGraphicsProxyWidget::mouseDoubleClickEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false void [0xc8220b1cc0] } +&{mouseMoveEvent QGraphicsProxyWidget::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false void [0xc8220b1ee0] } +&{mousePressEvent QGraphicsProxyWidget::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false void [0xc82273a120] } +&{mouseReleaseEvent QGraphicsProxyWidget::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false void [0xc82273a3c0] } +&{paint QGraphicsProxyWidget::paint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false void [0xc82273a680 0xc82273a760 0xc82273a840] } +&{resizeEvent QGraphicsProxyWidget::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false void [0xc82273aa40] } +&{setGeometry QGraphicsProxyWidget::setGeometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false void [0xc82273ac40] } +&{setWidget QGraphicsProxyWidget::setWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h non plain false false void [0xc82273aea0] } +&{showEvent QGraphicsProxyWidget::showEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false void [0xc82273b120] } +&{sizeHint QGraphicsProxyWidget::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false QSizeF [0xc82273b320 0xc82273b3e0] } +&{subWidgetRect QGraphicsProxyWidget::subWidgetRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h non plain false false QRectF [0xc82273b5a0] } +&{type QGraphicsProxyWidget::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false int [] } +&{ungrabMouseEvent QGraphicsProxyWidget::ungrabMouseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false void [0xc82273b8a0] } +&{wheelEvent QGraphicsProxyWidget::wheelEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h impure plain false false void [0xc82273bae0] } +&{widget QGraphicsProxyWidget::widget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h non plain false false QWidget * [] } +&{~QGraphicsProxyWidget QGraphicsProxyWidget::~QGraphicsProxyWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsproxywidget.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsRectItem.txt b/internal/binding/dump/QtWidgets/QGraphicsRectItem.txt new file mode 100755 index 00000000..1c7adba7 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsRectItem.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{QGraphicsRectItem QGraphicsRectItem::QGraphicsRectItem commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.cpp non constructor false true 3 [0xc8212a8ac0 0xc8212a8b60 0xc8212a8be0 0xc8212a8ca0 0xc8212a8d60] } +&{setRect QGraphicsRectItem::setRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.cpp non plain false false void [0xc8212a8fc0] } +&{QGraphicsRectItem QGraphicsRectItem::QGraphicsRectItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non constructor false false [0xc8212a91e0] } +&{QGraphicsRectItem QGraphicsRectItem::QGraphicsRectItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non constructor false true 2 [0xc8212a9420 0xc8212a94a0] } +&{boundingRect QGraphicsRectItem::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QRectF [] } +&{contains QGraphicsRectItem::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false bool [0xc8212a9860] } +&{isObscuredBy QGraphicsRectItem::isObscuredBy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false bool [0xc8212a9ac0] } +&{opaqueArea QGraphicsRectItem::opaqueArea commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QPainterPath [] } +&{paint QGraphicsRectItem::paint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc8212a9ea0 0xc8212a9f40 0xc821d82060] } +&{rect QGraphicsRectItem::rect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QRectF [] } +&{setRect QGraphicsRectItem::setRect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false true 2 void [0xc821d823e0 0xc821d82480 0xc821d82540 0xc821d825e0] } +&{shape QGraphicsRectItem::shape commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QPainterPath [] } +&{type QGraphicsRectItem::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false int [] } +&{~QGraphicsRectItem QGraphicsRectItem::~QGraphicsRectItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsRotation.txt b/internal/binding/dump/QtWidgets/QGraphicsRotation.txt new file mode 100755 index 00000000..303d80b3 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsRotation.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{angle QGraphicsRotation::angle commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.cpp non plain false false qreal [] } +&{axis QGraphicsRotation::axis commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.cpp non plain false false QVector3D [] } +&{origin QGraphicsRotation::origin commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.cpp non plain false false QVector3D [] } +&{setAngle QGraphicsRotation::setAngle commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.cpp non plain false false void [0xc82228be40] } +&{setAxis QGraphicsRotation::setAxis commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.cpp non plain false true 2 void [0xc82274e120] } +&{setAxis QGraphicsRotation::setAxis commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.cpp non plain false false void [0xc82274e3c0] } +&{setOrigin QGraphicsRotation::setOrigin commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.cpp non plain false false void [0xc82274e6a0] } +&{QGraphicsRotation QGraphicsRotation::QGraphicsRotation commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.h non constructor false false [0xc82274e940] } +&{angleChanged QGraphicsRotation::angleChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.h non signal false false void [] } +&{applyTo QGraphicsRotation::applyTo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.h impure plain false false void [0xc82274ed80] } +&{axisChanged QGraphicsRotation::axisChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.h non signal false false void [] } +&{originChanged QGraphicsRotation::originChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.h non signal false false void [] } +&{~QGraphicsRotation QGraphicsRotation::~QGraphicsRotation commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsScale.txt b/internal/binding/dump/QtWidgets/QGraphicsScale.txt new file mode 100755 index 00000000..0f4b0de5 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsScale.txt @@ -0,0 +1,18 @@ +######################################## FUNCTIONS ######################################## +&{origin QGraphicsScale::origin commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.cpp non plain false false QVector3D [] } +&{setOrigin QGraphicsScale::setOrigin commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.cpp non plain false false void [0xc82275e000] } +&{setXScale QGraphicsScale::setXScale commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.cpp non plain false false void [0xc82275e320] } +&{setYScale QGraphicsScale::setYScale commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.cpp non plain false false void [0xc82275e5e0] } +&{setZScale QGraphicsScale::setZScale commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.cpp non plain false false void [0xc82275e8c0] } +&{xScale QGraphicsScale::xScale commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.cpp non plain false false qreal [] } +&{yScale QGraphicsScale::yScale commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.cpp non plain false false qreal [] } +&{zScale QGraphicsScale::zScale commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.cpp non plain false false qreal [] } +&{QGraphicsScale QGraphicsScale::QGraphicsScale commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.h non constructor false false [0xc82275f040] } +&{applyTo QGraphicsScale::applyTo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.h impure plain false false void [0xc82275f2a0] } +&{originChanged QGraphicsScale::originChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.h non signal false false void [] } +&{scaleChanged QGraphicsScale::scaleChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.h non signal false false void [] } +&{xScaleChanged QGraphicsScale::xScaleChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.h non signal false false void [] } +&{yScaleChanged QGraphicsScale::yScaleChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.h non signal false false void [] } +&{zScaleChanged QGraphicsScale::zScaleChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.h non signal false false void [] } +&{~QGraphicsScale QGraphicsScale::~QGraphicsScale commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsScene.txt b/internal/binding/dump/QtWidgets/QGraphicsScene.txt new file mode 100755 index 00000000..74658688 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsScene.txt @@ -0,0 +1,111 @@ +######################################## FUNCTIONS ######################################## +&{backgroundBrush QGraphicsScene::backgroundBrush commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.cpp non plain false false QBrush [] } +&{bspTreeDepth QGraphicsScene::bspTreeDepth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.cpp non plain false false int [] } +&{font QGraphicsScene::font commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.cpp non plain false false QFont [] } +&{foregroundBrush QGraphicsScene::foregroundBrush commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.cpp non plain false false QBrush [] } +&{isSortCacheEnabled QGraphicsScene::isSortCacheEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.cpp non plain false false bool [] } +&{itemIndexMethod QGraphicsScene::itemIndexMethod commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.cpp non plain false false ItemIndexMethod [] } +&{items QGraphicsScene::items commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.cpp non plain false true 7 QList [0xc821e5aca0 0xc821e5adc0 0xc821e5af00 0xc821e5afa0] } +&{items QGraphicsScene::items commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.cpp non plain false true 2 QList [0xc821e5b300 0xc821e5b400 0xc821e5b4e0 0xc821e5b5c0] } +&{items QGraphicsScene::items commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.cpp non plain false true 6 QList [0xc821e5b940 0xc821e5ba80 0xc821e5bb80 0xc821e5bc40] } +&{items QGraphicsScene::items commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.cpp non plain false true 5 QList [0xc821e5bfa0 0xc822532080 0xc822532180 0xc822532240] } +&{minimumRenderSize QGraphicsScene::minimumRenderSize commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.cpp non plain false false qreal [] } +&{palette QGraphicsScene::palette commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.cpp non plain false false QPalette [] } +&{sceneRect QGraphicsScene::sceneRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.cpp non plain false false QRectF [] } +&{setBackgroundBrush QGraphicsScene::setBackgroundBrush commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.cpp non plain false false void [0xc8225329c0] } +&{setBspTreeDepth QGraphicsScene::setBspTreeDepth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.cpp non plain false false void [0xc822532c20] } +&{setFont QGraphicsScene::setFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.cpp non plain false false void [0xc822532ee0] } +&{setForegroundBrush QGraphicsScene::setForegroundBrush commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.cpp non plain false false void [0xc822533180] } +&{setItemIndexMethod QGraphicsScene::setItemIndexMethod commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.cpp non plain false false void [0xc8225333e0] } +&{setMinimumRenderSize QGraphicsScene::setMinimumRenderSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.cpp non plain false false void [0xc822533680] } +&{setPalette QGraphicsScene::setPalette commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.cpp non plain false false void [0xc8225338e0] } +&{setSceneRect QGraphicsScene::setSceneRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.cpp non plain false false void [0xc822533b40] } +&{setSortCacheEnabled QGraphicsScene::setSortCacheEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.cpp non plain false false void [0xc822533d80] } +&{setStickyFocus QGraphicsScene::setStickyFocus commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.cpp non plain false false void [0xc822a28000] } +&{stickyFocus QGraphicsScene::stickyFocus commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.cpp non plain false false bool [] } +&{update QGraphicsScene::update commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.cpp non slot false false void [0xc822a28480] } +&{QGraphicsScene QGraphicsScene::QGraphicsScene commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non constructor false false [0xc822a28ee0] } +&{QGraphicsScene QGraphicsScene::QGraphicsScene commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non constructor false true 2 [0xc822a29100 0xc822a29180] } +&{QGraphicsScene QGraphicsScene::QGraphicsScene commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non constructor false true 3 [0xc822a293a0 0xc822a29440 0xc822a294e0 0xc822a29560 0xc822a29620] } +&{activePanel QGraphicsScene::activePanel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false QGraphicsItem * [] } +&{activeWindow QGraphicsScene::activeWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false QGraphicsWidget * [] } +&{addEllipse QGraphicsScene::addEllipse commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false QGraphicsEllipseItem * [0xc822a29dc0 0xc822a29ea0 0xc822a29f40] } +&{addEllipse QGraphicsScene::addEllipse commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false true 2 QGraphicsEllipseItem * [0xc822a36220 0xc822a362e0 0xc822a36380 0xc822a36400 0xc822a364c0 0xc822a365a0] } +&{addItem QGraphicsScene::addItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false void [0xc822a367a0] } +&{addLine QGraphicsScene::addLine commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false QGraphicsLineItem * [0xc822a36a40 0xc822a36b00] } +&{addLine QGraphicsScene::addLine commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false true 2 QGraphicsLineItem * [0xc822a36d80 0xc822a36e20 0xc822a36ee0 0xc822a36f80 0xc822a37040] } +&{addPath QGraphicsScene::addPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false QGraphicsPathItem * [0xc822a37320 0xc822a37420 0xc822a374c0] } +&{addPixmap QGraphicsScene::addPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false QGraphicsPixmapItem * [0xc822a37760] } +&{addPolygon QGraphicsScene::addPolygon commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false QGraphicsPolygonItem * [0xc822a37a40 0xc822a37b20 0xc822a37bc0] } +&{addRect QGraphicsScene::addRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false QGraphicsRectItem * [0xc822a37e40 0xc822a37f00 0xc822a37f80] } +&{addRect QGraphicsScene::addRect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false true 2 QGraphicsRectItem * [0xc821e84280 0xc821e84340 0xc821e84440 0xc821e844e0 0xc821e845c0 0xc821e84660] } +&{addSimpleText QGraphicsScene::addSimpleText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false QGraphicsSimpleTextItem * [0xc821e84900 0xc821e849c0] } +&{addText QGraphicsScene::addText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false QGraphicsTextItem * [0xc821e84ce0 0xc821e84dc0] } +&{addWidget QGraphicsScene::addWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false QGraphicsProxyWidget * [0xc821e850a0 0xc821e85160] } +&{advance QGraphicsScene::advance commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non slot false false void [] } +&{changed QGraphicsScene::changed commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non signal false false void [0xc821e85520] } +&{clear QGraphicsScene::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non slot false false void [] } +&{clearFocus QGraphicsScene::clearFocus commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false void [] } +&{clearSelection QGraphicsScene::clearSelection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non slot false false void [] } +&{collidingItems QGraphicsScene::collidingItems commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false QList [0xc821e85da0 0xc821e85f40] } +&{contextMenuEvent QGraphicsScene::contextMenuEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h impure plain false false void [0xc821e901a0] } +&{createItemGroup QGraphicsScene::createItemGroup commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false QGraphicsItemGroup * [0xc821e904c0] } +&{destroyItemGroup QGraphicsScene::destroyItemGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false void [0xc821e90720] } +&{dragEnterEvent QGraphicsScene::dragEnterEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h impure plain false false void [0xc821e909c0] } +&{dragLeaveEvent QGraphicsScene::dragLeaveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h impure plain false false void [0xc821e90c40] } +&{dragMoveEvent QGraphicsScene::dragMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h impure plain false false void [0xc821e90ee0] } +&{drawBackground QGraphicsScene::drawBackground commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h impure plain false false void [0xc821e91140 0xc821e911e0] } +&{drawForeground QGraphicsScene::drawForeground commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h impure plain false false void [0xc821e913e0 0xc821e91480] } +&{dropEvent QGraphicsScene::dropEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h impure plain false false void [0xc821e91ca0] } +&{event QGraphicsScene::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h impure plain false false bool [0xc821e91f80] } +&{eventFilter QGraphicsScene::eventFilter commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h impure plain false false bool [0xc821f54180 0xc821f54240] } +&{focusInEvent QGraphicsScene::focusInEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h impure plain false false void [0xc821f54440] } +&{focusItem QGraphicsScene::focusItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false QGraphicsItem * [] } +&{focusItemChanged QGraphicsScene::focusItemChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non signal false false void [0xc821f547a0 0xc821f54840 0xc821f548c0] } +&{focusNextPrevChild QGraphicsScene::focusNextPrevChild commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h impure slot false false bool [0xc821f54ae0] } +&{focusOutEvent QGraphicsScene::focusOutEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h impure plain false false void [0xc821f54d00] } +&{hasFocus QGraphicsScene::hasFocus commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false bool [] } +&{height QGraphicsScene::height commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false qreal [] } +&{helpEvent QGraphicsScene::helpEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h impure plain false false void [0xc821f551c0] } +&{inputMethodEvent QGraphicsScene::inputMethodEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h impure plain false false void [0xc821f55440] } +&{inputMethodQuery QGraphicsScene::inputMethodQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h impure plain false false QVariant [0xc821f556e0] } +&{invalidate QGraphicsScene::invalidate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non slot false false void [0xc821f55960 0xc821f55a00] } +&{invalidate QGraphicsScene::invalidate commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false true 2 void [0xc821f55c40 0xc821f55ce0 0xc821f55d60 0xc821f55e00 0xc821f55ee0] } +&{isActive QGraphicsScene::isActive commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false bool [] } +&{itemAt QGraphicsScene::itemAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false QGraphicsItem * [0xc821f62460 0xc821f62520] } +&{itemAt QGraphicsScene::itemAt commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false true 3 QGraphicsItem * [0xc821f62a60 0xc821f62b00 0xc821f62be0] } +&{items QGraphicsScene::items commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false QList [0xc821f62ee0] } +&{items QGraphicsScene::items commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false true 4 QList [0xc821f63780 0xc821f63820 0xc821f638a0 0xc821f63960 0xc821f63a40 0xc821f63b40 0xc821f63be0] } +&{itemsBoundingRect QGraphicsScene::itemsBoundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false QRectF [] } +&{keyPressEvent QGraphicsScene::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h impure plain false false void [0xc821f63f60] } +&{keyReleaseEvent QGraphicsScene::keyReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h impure plain false false void [0xc821f72180] } +&{mouseDoubleClickEvent QGraphicsScene::mouseDoubleClickEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h impure plain false false void [0xc821f723c0] } +&{mouseGrabberItem QGraphicsScene::mouseGrabberItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false QGraphicsItem * [] } +&{mouseMoveEvent QGraphicsScene::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h impure plain false false void [0xc821f72740] } +&{mousePressEvent QGraphicsScene::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h impure plain false false void [0xc821f729c0] } +&{mouseReleaseEvent QGraphicsScene::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h impure plain false false void [0xc821f72c60] } +&{removeItem QGraphicsScene::removeItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false void [0xc821f72ec0] } +&{render QGraphicsScene::render commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false void [0xc821f73100 0xc821f731c0 0xc821f73240 0xc821f73340] } +&{sceneRectChanged QGraphicsScene::sceneRectChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non signal false false void [0xc821f735a0] } +&{selectedItems QGraphicsScene::selectedItems commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false QList [] } +&{selectionArea QGraphicsScene::selectionArea commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false QPainterPath [] } +&{selectionChanged QGraphicsScene::selectionChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non signal false false void [] } +&{sendEvent QGraphicsScene::sendEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false bool [0xc821f73b60 0xc821f73be0] } +&{setActivePanel QGraphicsScene::setActivePanel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false void [0xc821f73e00] } +&{setActiveWindow QGraphicsScene::setActiveWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false void [0xc822a46020] } +&{setFocus QGraphicsScene::setFocus commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false void [0xc822a462c0] } +&{setFocusItem QGraphicsScene::setFocusItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false void [0xc822a464e0 0xc822a465a0] } +&{setSceneRect QGraphicsScene::setSceneRect commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false true 2 void [0xc822a467e0 0xc822a468c0 0xc822a46940 0xc822a469c0] } +&{setSelectionArea QGraphicsScene::setSelectionArea commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false true 2 void [0xc822a46c00 0xc822a46d40 0xc822a46e40] } +&{setSelectionArea QGraphicsScene::setSelectionArea commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false true 3 void [0xc822a470e0 0xc822a47240 0xc822a473c0 0xc822a474e0] } +&{setSelectionArea QGraphicsScene::setSelectionArea commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false void [0xc822a47760 0xc822a47880] } +&{setStyle QGraphicsScene::setStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false void [0xc822a47b20] } +&{style QGraphicsScene::style commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false QStyle * [] } +&{update QGraphicsScene::update commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false true 2 void [0xc822a47ea0 0xc822a47f20 0xc822a47fc0 0xc822a540a0] } +&{views QGraphicsScene::views commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false QList [] } +&{wheelEvent QGraphicsScene::wheelEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h impure plain false false void [0xc822a54480] } +&{width QGraphicsScene::width commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h non plain false false qreal [] } +&{~QGraphicsScene QGraphicsScene::~QGraphicsScene commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsscene.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{ItemIndexMethod QGraphicsScene::ItemIndexMethod commendable public [0xc822a286e0 0xc822a287a0]} +&{SceneLayer QGraphicsScene::SceneLayer commendable public QGraphicsScene::SceneLayers [0xc822a28a20 0xc822a28ac0 0xc822a28b60 0xc822a28be0]} diff --git a/internal/binding/dump/QtWidgets/QGraphicsSceneContextMenuEvent.txt b/internal/binding/dump/QtWidgets/QGraphicsSceneContextMenuEvent.txt new file mode 100755 index 00000000..8021755d --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsSceneContextMenuEvent.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{modifiers QGraphicsSceneContextMenuEvent::modifiers commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false Qt::KeyboardModifiers [] } +&{pos QGraphicsSceneContextMenuEvent::pos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPointF [] } +&{reason QGraphicsSceneContextMenuEvent::reason commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false Reason [] } +&{scenePos QGraphicsSceneContextMenuEvent::scenePos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPointF [] } +&{screenPos QGraphicsSceneContextMenuEvent::screenPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPoint [] } +&{~QGraphicsSceneContextMenuEvent QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Reason QGraphicsSceneContextMenuEvent::Reason commendable public [0xc82295c0e0 0xc82295c180 0xc82295c260]} diff --git a/internal/binding/dump/QtWidgets/QGraphicsSceneDragDropEvent.txt b/internal/binding/dump/QtWidgets/QGraphicsSceneDragDropEvent.txt new file mode 100755 index 00000000..7295a0ec --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsSceneDragDropEvent.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{acceptProposedAction QGraphicsSceneDragDropEvent::acceptProposedAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false void [] } +&{buttons QGraphicsSceneDragDropEvent::buttons commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false Qt::MouseButtons [] } +&{dropAction QGraphicsSceneDragDropEvent::dropAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false Qt::DropAction [] } +&{mimeData QGraphicsSceneDragDropEvent::mimeData commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false const QMimeData * [] } +&{modifiers QGraphicsSceneDragDropEvent::modifiers commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false Qt::KeyboardModifiers [] } +&{pos QGraphicsSceneDragDropEvent::pos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPointF [] } +&{possibleActions QGraphicsSceneDragDropEvent::possibleActions commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false Qt::DropActions [] } +&{proposedAction QGraphicsSceneDragDropEvent::proposedAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false Qt::DropAction [] } +&{scenePos QGraphicsSceneDragDropEvent::scenePos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPointF [] } +&{screenPos QGraphicsSceneDragDropEvent::screenPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPoint [] } +&{setDropAction QGraphicsSceneDragDropEvent::setDropAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false void [0xc822968500] } +&{source QGraphicsSceneDragDropEvent::source commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QWidget * [] } +&{~QGraphicsSceneDragDropEvent QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsSceneEvent.txt b/internal/binding/dump/QtWidgets/QGraphicsSceneEvent.txt new file mode 100755 index 00000000..977cead1 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsSceneEvent.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{widget QGraphicsSceneEvent::widget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QWidget * [] } +&{~QGraphicsSceneEvent QGraphicsSceneEvent::~QGraphicsSceneEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsSceneHelpEvent.txt b/internal/binding/dump/QtWidgets/QGraphicsSceneHelpEvent.txt new file mode 100755 index 00000000..fda4adf4 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsSceneHelpEvent.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{scenePos QGraphicsSceneHelpEvent::scenePos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPointF [] } +&{screenPos QGraphicsSceneHelpEvent::screenPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPoint [] } +&{~QGraphicsSceneHelpEvent QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsSceneHoverEvent.txt b/internal/binding/dump/QtWidgets/QGraphicsSceneHoverEvent.txt new file mode 100755 index 00000000..1f8053dc --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsSceneHoverEvent.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{lastPos QGraphicsSceneHoverEvent::lastPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPointF [] } +&{lastScenePos QGraphicsSceneHoverEvent::lastScenePos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPointF [] } +&{lastScreenPos QGraphicsSceneHoverEvent::lastScreenPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPoint [] } +&{modifiers QGraphicsSceneHoverEvent::modifiers commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false Qt::KeyboardModifiers [] } +&{pos QGraphicsSceneHoverEvent::pos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPointF [] } +&{scenePos QGraphicsSceneHoverEvent::scenePos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPointF [] } +&{screenPos QGraphicsSceneHoverEvent::screenPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPoint [] } +&{~QGraphicsSceneHoverEvent QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsSceneMouseEvent.txt b/internal/binding/dump/QtWidgets/QGraphicsSceneMouseEvent.txt new file mode 100755 index 00000000..a07ef174 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsSceneMouseEvent.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{button QGraphicsSceneMouseEvent::button commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false Qt::MouseButton [] } +&{buttonDownPos QGraphicsSceneMouseEvent::buttonDownPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPointF [0xc82226d240] } +&{buttonDownScenePos QGraphicsSceneMouseEvent::buttonDownScenePos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPointF [0xc82226d480] } +&{buttonDownScreenPos QGraphicsSceneMouseEvent::buttonDownScreenPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPoint [0xc82226d6c0] } +&{buttons QGraphicsSceneMouseEvent::buttons commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false Qt::MouseButtons [] } +&{flags QGraphicsSceneMouseEvent::flags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false Qt::MouseEventFlags [] } +&{lastPos QGraphicsSceneMouseEvent::lastPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPointF [] } +&{lastScenePos QGraphicsSceneMouseEvent::lastScenePos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPointF [] } +&{lastScreenPos QGraphicsSceneMouseEvent::lastScreenPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPoint [] } +&{modifiers QGraphicsSceneMouseEvent::modifiers commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false Qt::KeyboardModifiers [] } +&{pos QGraphicsSceneMouseEvent::pos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPointF [] } +&{scenePos QGraphicsSceneMouseEvent::scenePos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPointF [] } +&{screenPos QGraphicsSceneMouseEvent::screenPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPoint [] } +&{source QGraphicsSceneMouseEvent::source commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false Qt::MouseEventSource [] } +&{~QGraphicsSceneMouseEvent QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsSceneMoveEvent.txt b/internal/binding/dump/QtWidgets/QGraphicsSceneMoveEvent.txt new file mode 100755 index 00000000..e912f47f --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsSceneMoveEvent.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QGraphicsSceneMoveEvent QGraphicsSceneMoveEvent::QGraphicsSceneMoveEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non constructor false false [] } +&{newPos QGraphicsSceneMoveEvent::newPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPointF [] } +&{oldPos QGraphicsSceneMoveEvent::oldPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPointF [] } +&{~QGraphicsSceneMoveEvent QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsSceneResizeEvent.txt b/internal/binding/dump/QtWidgets/QGraphicsSceneResizeEvent.txt new file mode 100755 index 00000000..ffd95890 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsSceneResizeEvent.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QGraphicsSceneResizeEvent QGraphicsSceneResizeEvent::QGraphicsSceneResizeEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non constructor false false [] } +&{newSize QGraphicsSceneResizeEvent::newSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QSizeF [] } +&{oldSize QGraphicsSceneResizeEvent::oldSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QSizeF [] } +&{~QGraphicsSceneResizeEvent QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsSceneWheelEvent.txt b/internal/binding/dump/QtWidgets/QGraphicsSceneWheelEvent.txt new file mode 100755 index 00000000..a4bf6809 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsSceneWheelEvent.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{buttons QGraphicsSceneWheelEvent::buttons commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false Qt::MouseButtons [] } +&{delta QGraphicsSceneWheelEvent::delta commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false int [] } +&{modifiers QGraphicsSceneWheelEvent::modifiers commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false Qt::KeyboardModifiers [] } +&{orientation QGraphicsSceneWheelEvent::orientation commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false Qt::Orientation [] } +&{pos QGraphicsSceneWheelEvent::pos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPointF [] } +&{scenePos QGraphicsSceneWheelEvent::scenePos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPointF [] } +&{screenPos QGraphicsSceneWheelEvent::screenPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non plain false false QPoint [] } +&{~QGraphicsSceneWheelEvent QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicssceneevent.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsSimpleTextItem.txt b/internal/binding/dump/QtWidgets/QGraphicsSimpleTextItem.txt new file mode 100755 index 00000000..4a8eafb9 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsSimpleTextItem.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{QGraphicsSimpleTextItem QGraphicsSimpleTextItem::QGraphicsSimpleTextItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non constructor false false [0xc821d835e0] } +&{QGraphicsSimpleTextItem QGraphicsSimpleTextItem::QGraphicsSimpleTextItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non constructor false true 2 [0xc821d837e0 0xc821d838a0] } +&{boundingRect QGraphicsSimpleTextItem::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QRectF [] } +&{contains QGraphicsSimpleTextItem::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false bool [0xc821d83ac0] } +&{font QGraphicsSimpleTextItem::font commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QFont [] } +&{isObscuredBy QGraphicsSimpleTextItem::isObscuredBy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false bool [0xc821d83da0] } +&{opaqueArea QGraphicsSimpleTextItem::opaqueArea commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QPainterPath [] } +&{paint QGraphicsSimpleTextItem::paint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc8213980c0 0xc821398180 0xc821398280] } +&{setFont QGraphicsSimpleTextItem::setFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc821398500] } +&{setText QGraphicsSimpleTextItem::setText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc8213986c0] } +&{shape QGraphicsSimpleTextItem::shape commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QPainterPath [] } +&{text QGraphicsSimpleTextItem::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QString [] } +&{type QGraphicsSimpleTextItem::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false int [] } +&{~QGraphicsSimpleTextItem QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsTextItem.txt b/internal/binding/dump/QtWidgets/QGraphicsTextItem.txt new file mode 100755 index 00000000..bda960b6 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsTextItem.txt @@ -0,0 +1,54 @@ +######################################## FUNCTIONS ######################################## +&{openExternalLinks QGraphicsTextItem::openExternalLinks commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.cpp non plain false false bool [] } +&{setOpenExternalLinks QGraphicsTextItem::setOpenExternalLinks commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.cpp non plain false false void [0xc8213997c0] } +&{setTextCursor QGraphicsTextItem::setTextCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.cpp non plain false false void [0xc821399a60] } +&{textCursor QGraphicsTextItem::textCursor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.cpp non plain false false QTextCursor [] } +&{QGraphicsTextItem QGraphicsTextItem::QGraphicsTextItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non constructor false false [0xc821399ea0] } +&{QGraphicsTextItem QGraphicsTextItem::QGraphicsTextItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non constructor false true 2 [0xc821eda0a0 0xc821eda140] } +&{adjustSize QGraphicsTextItem::adjustSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [] } +&{boundingRect QGraphicsTextItem::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QRectF [] } +&{contains QGraphicsTextItem::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false bool [0xc821eda8a0] } +&{contextMenuEvent QGraphicsTextItem::contextMenuEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc821edaa40] } +&{defaultTextColor QGraphicsTextItem::defaultTextColor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QColor [] } +&{document QGraphicsTextItem::document commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QTextDocument * [] } +&{dragEnterEvent QGraphicsTextItem::dragEnterEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc821edae20] } +&{dragLeaveEvent QGraphicsTextItem::dragLeaveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc821edb080] } +&{dragMoveEvent QGraphicsTextItem::dragMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc821edb320] } +&{dropEvent QGraphicsTextItem::dropEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc821edb5e0] } +&{focusInEvent QGraphicsTextItem::focusInEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc821edbaa0] } +&{focusOutEvent QGraphicsTextItem::focusOutEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc821edbca0] } +&{font QGraphicsTextItem::font commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QFont [] } +&{hoverEnterEvent QGraphicsTextItem::hoverEnterEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc821edbfa0] } +&{hoverLeaveEvent QGraphicsTextItem::hoverLeaveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc8224001c0] } +&{hoverMoveEvent QGraphicsTextItem::hoverMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc8224003e0] } +&{inputMethodEvent QGraphicsTextItem::inputMethodEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc822400600] } +&{inputMethodQuery QGraphicsTextItem::inputMethodQuery commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QVariant [0xc822400820] } +&{isObscuredBy QGraphicsTextItem::isObscuredBy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false bool [0xc822400aa0] } +&{keyPressEvent QGraphicsTextItem::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc822400ce0] } +&{keyReleaseEvent QGraphicsTextItem::keyReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc822400e80] } +&{linkActivated QGraphicsTextItem::linkActivated commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non signal false false void [0xc8224010a0] } +&{linkHovered QGraphicsTextItem::linkHovered commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non signal false false void [0xc822401280] } +&{mouseDoubleClickEvent QGraphicsTextItem::mouseDoubleClickEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc8224014c0] } +&{mouseMoveEvent QGraphicsTextItem::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc822401700] } +&{mousePressEvent QGraphicsTextItem::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc822401900] } +&{mouseReleaseEvent QGraphicsTextItem::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc822401b80] } +&{opaqueArea QGraphicsTextItem::opaqueArea commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QPainterPath [] } +&{paint QGraphicsTextItem::paint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false void [0xc822401f20 0xc822401fe0 0xc821d70100] } +&{sceneEvent QGraphicsTextItem::sceneEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false bool [0xc821d70340] } +&{setDefaultTextColor QGraphicsTextItem::setDefaultTextColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc821d70560] } +&{setDocument QGraphicsTextItem::setDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc821d70760] } +&{setFont QGraphicsTextItem::setFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc821d70c80] } +&{setHtml QGraphicsTextItem::setHtml commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc821d70ec0] } +&{setPlainText QGraphicsTextItem::setPlainText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc821d710e0] } +&{setTabChangesFocus QGraphicsTextItem::setTabChangesFocus commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc821d71320] } +&{setTextInteractionFlags QGraphicsTextItem::setTextInteractionFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc821d71560] } +&{setTextWidth QGraphicsTextItem::setTextWidth commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false void [0xc821d717e0] } +&{shape QGraphicsTextItem::shape commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false QPainterPath [] } +&{tabChangesFocus QGraphicsTextItem::tabChangesFocus commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false bool [] } +&{textInteractionFlags QGraphicsTextItem::textInteractionFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false Qt::TextInteractionFlags [] } +&{textWidth QGraphicsTextItem::textWidth commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false qreal [] } +&{toHtml QGraphicsTextItem::toHtml commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QString [] } +&{toPlainText QGraphicsTextItem::toPlainText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non plain false false QString [] } +&{type QGraphicsTextItem::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h impure plain false false int [] } +&{~QGraphicsTextItem QGraphicsTextItem::~QGraphicsTextItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsitem.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsTransform.txt b/internal/binding/dump/QtWidgets/QGraphicsTransform.txt new file mode 100755 index 00000000..c72c23fe --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsTransform.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QGraphicsTransform QGraphicsTransform::QGraphicsTransform commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.h non constructor false false [0xc821e66aa0] } +&{applyTo QGraphicsTransform::applyTo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.h pure plain false false void [0xc821e67020] } +&{update QGraphicsTransform::update commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.h non slot false false void [] } +&{~QGraphicsTransform QGraphicsTransform::~QGraphicsTransform commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicstransform.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGraphicsView.txt b/internal/binding/dump/QtWidgets/QGraphicsView.txt new file mode 100755 index 00000000..7c54b1a1 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsView.txt @@ -0,0 +1,117 @@ +######################################## FUNCTIONS ######################################## +&{alignment QGraphicsView::alignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.cpp non plain false false Qt::Alignment [] } +&{backgroundBrush QGraphicsView::backgroundBrush commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.cpp non plain false false QBrush [] } +&{cacheMode QGraphicsView::cacheMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.cpp non plain false false CacheMode [] } +&{dragMode QGraphicsView::dragMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.cpp non plain false false DragMode [] } +&{foregroundBrush QGraphicsView::foregroundBrush commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.cpp non plain false false QBrush [] } +&{isInteractive QGraphicsView::isInteractive commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.cpp non plain false false bool [] } +&{optimizationFlags QGraphicsView::optimizationFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.cpp non plain false false OptimizationFlags [] } +&{renderHints QGraphicsView::renderHints commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.cpp non plain false false QPainter::RenderHints [] } +&{resizeAnchor QGraphicsView::resizeAnchor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.cpp non plain false false ViewportAnchor [] } +&{rubberBandSelectionMode QGraphicsView::rubberBandSelectionMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.cpp non plain false false Qt::ItemSelectionMode [] } +&{sceneRect QGraphicsView::sceneRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.cpp non plain false false QRectF [] } +&{setAlignment QGraphicsView::setAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.cpp non plain false false void [0xc82276e8a0] } +&{setBackgroundBrush QGraphicsView::setBackgroundBrush commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.cpp non plain false false void [0xc82276eb00] } +&{setCacheMode QGraphicsView::setCacheMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.cpp non plain false false void [0xc82276ed80] } +&{setDragMode QGraphicsView::setDragMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.cpp non plain false false void [0xc82276f040] } +&{setForegroundBrush QGraphicsView::setForegroundBrush commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.cpp non plain false false void [0xc82276f2a0] } +&{setInteractive QGraphicsView::setInteractive commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.cpp non plain false false void [0xc82276f500] } +&{setOptimizationFlags QGraphicsView::setOptimizationFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.cpp non plain false false void [0xc82276f780] } +&{setRenderHints QGraphicsView::setRenderHints commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.cpp non plain false false void [0xc82276fa60] } +&{setResizeAnchor QGraphicsView::setResizeAnchor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.cpp non plain false false void [0xc82276fd40] } +&{setRubberBandSelectionMode QGraphicsView::setRubberBandSelectionMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.cpp non plain false false void [0xc82277c000] } +&{setSceneRect QGraphicsView::setSceneRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.cpp non plain false false void [0xc82277c2c0] } +&{setTransformationAnchor QGraphicsView::setTransformationAnchor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.cpp non plain false false void [0xc82277c540] } +&{setViewportUpdateMode QGraphicsView::setViewportUpdateMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.cpp non plain false false void [0xc82277c800] } +&{transformationAnchor QGraphicsView::transformationAnchor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.cpp non plain false false ViewportAnchor [] } +&{viewportUpdateMode QGraphicsView::viewportUpdateMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.cpp non plain false false ViewportUpdateMode [] } +&{QGraphicsView QGraphicsView::QGraphicsView commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non constructor false true 2 [0xc821f0c660 0xc821f0c700] } +&{QGraphicsView QGraphicsView::QGraphicsView commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non constructor false false [0xc821f0c960] } +&{centerOn QGraphicsView::centerOn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false true 3 void [0xc821f0d140] } +&{centerOn QGraphicsView::centerOn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false false void [0xc821f0d3e0] } +&{centerOn QGraphicsView::centerOn commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false true 2 void [0xc821f0d680 0xc821f0d720] } +&{contextMenuEvent QGraphicsView::contextMenuEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h impure plain false false void [0xc821f0d960] } +&{dragEnterEvent QGraphicsView::dragEnterEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h impure plain false false void [0xc821f0dbe0] } +&{dragLeaveEvent QGraphicsView::dragLeaveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h impure plain false false void [0xc821f0dea0] } +&{dragMoveEvent QGraphicsView::dragMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h impure plain false false void [0xc821f1a120] } +&{drawBackground QGraphicsView::drawBackground commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h impure plain false false void [0xc821f1a340 0xc821f1a3e0] } +&{drawForeground QGraphicsView::drawForeground commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h impure plain false false void [0xc821f1a5e0 0xc821f1a6a0] } +&{dropEvent QGraphicsView::dropEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h impure plain false false void [0xc821f1adc0] } +&{ensureVisible QGraphicsView::ensureVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false true 3 void [0xc821f1afe0 0xc821f1b100 0xc821f1b1a0] } +&{ensureVisible QGraphicsView::ensureVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false false void [0xc821f1b3e0 0xc821f1b4a0 0xc821f1b520] } +&{ensureVisible QGraphicsView::ensureVisible commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false true 2 void [0xc821f1b760 0xc821f1b7e0 0xc821f1b860 0xc821f1b940 0xc821f1ba20 0xc821f1baa0] } +&{event QGraphicsView::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h impure plain false false bool [0xc821f1bd20] } +&{fitInView QGraphicsView::fitInView commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false true 3 void [0xc821f1bfa0 0xc821f36100] } +&{fitInView QGraphicsView::fitInView commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false false void [0xc821f36480 0xc821f365a0] } +&{fitInView QGraphicsView::fitInView commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false true 2 void [0xc821f368a0 0xc821f36960 0xc821f36a00 0xc821f36aa0 0xc821f36c00] } +&{focusInEvent QGraphicsView::focusInEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h impure plain false false void [0xc821f36f20] } +&{focusNextPrevChild QGraphicsView::focusNextPrevChild commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h impure plain false false bool [0xc821f371c0] } +&{focusOutEvent QGraphicsView::focusOutEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h impure plain false false void [0xc821f37420] } +&{inputMethodEvent QGraphicsView::inputMethodEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h impure plain false false void [0xc821f37720] } +&{inputMethodQuery QGraphicsView::inputMethodQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h impure plain false false QVariant [0xc821f37a80] } +&{invalidateScene QGraphicsView::invalidateScene commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non slot false false void [0xc821f37d80 0xc821f37e80] } +&{isTransformed QGraphicsView::isTransformed commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false false bool [] } +&{itemAt QGraphicsView::itemAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false false QGraphicsItem * [0xc822b6a3a0] } +&{itemAt QGraphicsView::itemAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false true 2 QGraphicsItem * [0xc822b6a5e0 0xc822b6a6c0] } +&{items QGraphicsView::items commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false false QList [] } +&{items QGraphicsView::items commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false true 7 QList [0xc822b6aca0 0xc822b6ae00] } +&{items QGraphicsView::items commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false true 2 QList [0xc822b6b200] } +&{items QGraphicsView::items commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false true 6 QList [0xc822b6b560 0xc822b6b6c0] } +&{items QGraphicsView::items commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false true 5 QList [0xc822b6baa0 0xc822b6bc00] } +&{items QGraphicsView::items commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false true 3 QList [0xc822b6bf00 0xc822b6bfc0] } +&{items QGraphicsView::items commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false true 4 QList [0xc822b7e2a0 0xc822b7e320 0xc822b7e3a0 0xc822b7e480 0xc822b7e5a0] } +&{keyPressEvent QGraphicsView::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h impure plain false false void [0xc822b7e840] } +&{keyReleaseEvent QGraphicsView::keyReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h impure plain false false void [0xc822b7ea60] } +&{mapFromScene QGraphicsView::mapFromScene commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false true 4 QPainterPath [0xc822b7ec80] } +&{mapFromScene QGraphicsView::mapFromScene commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false false QPoint [0xc822b7ef20] } +&{mapFromScene QGraphicsView::mapFromScene commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false true 5 QPoint [0xc822b7f120 0xc822b7f1c0] } +&{mapFromScene QGraphicsView::mapFromScene commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false true 3 QPolygon [0xc822b7f3c0] } +&{mapFromScene QGraphicsView::mapFromScene commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false true 2 QPolygon [0xc822b7f660] } +&{mapFromScene QGraphicsView::mapFromScene commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false true 6 QPolygon [0xc822b7f880 0xc822b7f940 0xc822b7f9c0 0xc822b7fa40] } +&{mapToScene QGraphicsView::mapToScene commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false true 4 QPainterPath [0xc822b7fce0] } +&{mapToScene QGraphicsView::mapToScene commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false false QPointF [0xc822b7ff60] } +&{mapToScene QGraphicsView::mapToScene commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false true 5 QPointF [0xc822b8c1c0 0xc822b8c240] } +&{mapToScene QGraphicsView::mapToScene commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false true 3 QPolygonF [0xc822b8c4a0] } +&{mapToScene QGraphicsView::mapToScene commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false true 2 QPolygonF [0xc822b8c6e0] } +&{mapToScene QGraphicsView::mapToScene commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false true 6 QPolygonF [0xc822b8c920 0xc822b8c9e0 0xc822b8ca80 0xc822b8cb00] } +&{matrix QGraphicsView::matrix commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false false QMatrix [] } +&{mouseDoubleClickEvent QGraphicsView::mouseDoubleClickEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h impure plain false false void [0xc822b8ce60] } +&{mouseMoveEvent QGraphicsView::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h impure plain false false void [0xc822b8d0a0] } +&{mousePressEvent QGraphicsView::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h impure plain false false void [0xc822b8d280] } +&{mouseReleaseEvent QGraphicsView::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h impure plain false false void [0xc822b8d520] } +&{paintEvent QGraphicsView::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h impure plain false false void [0xc822b8d760] } +&{render QGraphicsView::render commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false false void [0xc822b8d980 0xc822b8da20 0xc822b8dae0 0xc822b8dba0] } +&{resetCachedContent QGraphicsView::resetCachedContent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false false void [] } +&{resetMatrix QGraphicsView::resetMatrix commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false false void [] } +&{resetTransform QGraphicsView::resetTransform commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false false void [] } +&{resizeEvent QGraphicsView::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h impure plain false false void [0xc822b9e1e0] } +&{rotate QGraphicsView::rotate commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false false void [0xc822b9e420] } +&{rubberBandChanged QGraphicsView::rubberBandChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non signal false false void [0xc822b9e6a0 0xc822b9e720 0xc822b9e7c0] } +&{rubberBandRect QGraphicsView::rubberBandRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false false QRect [] } +&{scale QGraphicsView::scale commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false false void [0xc822b9eb60 0xc822b9ebe0] } +&{scene QGraphicsView::scene commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false false QGraphicsScene * [] } +&{scrollContentsBy QGraphicsView::scrollContentsBy commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h impure plain false false void [0xc822b9ef80 0xc822b9f000] } +&{setMatrix QGraphicsView::setMatrix commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false false void [0xc822b9f200 0xc822b9f2e0] } +&{setOptimizationFlag QGraphicsView::setOptimizationFlag commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false false void [0xc822b9f4e0 0xc822b9f560] } +&{setRenderHint QGraphicsView::setRenderHint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false false void [0xc822b9f7a0 0xc822b9f8a0] } +&{setScene QGraphicsView::setScene commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false false void [0xc822b9fac0] } +&{setSceneRect QGraphicsView::setSceneRect commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false true 2 void [0xc822b9fd20 0xc822b9fda0 0xc822b9fe80 0xc822b9ff20] } +&{setTransform QGraphicsView::setTransform commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false false void [0xc822bb0180 0xc822bb0280] } +&{setupViewport QGraphicsView::setupViewport commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h impure slot false false void [0xc822bb04c0] } +&{shear QGraphicsView::shear commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false false void [0xc822bb0740 0xc822bb07e0] } +&{showEvent QGraphicsView::showEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h impure plain false false void [0xc822bb0a00] } +&{sizeHint QGraphicsView::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h impure plain false false QSize [] } +&{transform QGraphicsView::transform commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false false QTransform [] } +&{translate QGraphicsView::translate commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false false void [0xc822bb0f00 0xc822bb0f80] } +&{updateScene QGraphicsView::updateScene commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non slot false false void [0xc822bb1200] } +&{updateSceneRect QGraphicsView::updateSceneRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non slot false false void [0xc822bb1480] } +&{viewportEvent QGraphicsView::viewportEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h impure plain false false bool [0xc822bb16c0] } +&{viewportTransform QGraphicsView::viewportTransform commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non plain false false QTransform [] } +&{wheelEvent QGraphicsView::wheelEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h impure plain false false void [0xc822bb1a80] } +&{~QGraphicsView QGraphicsView::~QGraphicsView commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicsview.h non destructor false false [] } +######################################## ENUMS ######################################## +&{CacheModeFlag QGraphicsView::CacheModeFlag commendable public QGraphicsView::CacheMode [0xc82277ce80 0xc82277cf20]} +&{DragMode QGraphicsView::DragMode commendable public [0xc82277d140 0xc82277d220 0xc82277d2c0]} +&{OptimizationFlag QGraphicsView::OptimizationFlag commendable public QGraphicsView::OptimizationFlags [0xc82277d560 0xc82277d620 0xc82277d720 0xc82277d840]} +&{ViewportAnchor QGraphicsView::ViewportAnchor commendable public [0xc82277da20 0xc82277db00 0xc82277dba0]} +&{ViewportUpdateMode QGraphicsView::ViewportUpdateMode commendable public [0xc82277de20 0xc82277df20 0xc821f0c060 0xc821f0c160 0xc821f0c220]} diff --git a/internal/binding/dump/QtWidgets/QGraphicsWidget.txt b/internal/binding/dump/QtWidgets/QGraphicsWidget.txt new file mode 100755 index 00000000..740507db --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGraphicsWidget.txt @@ -0,0 +1,84 @@ +######################################## FUNCTIONS ######################################## +&{autoFillBackground QGraphicsWidget::autoFillBackground commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.cpp non plain false false bool [] } +&{focusPolicy QGraphicsWidget::focusPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.cpp non plain false false Qt::FocusPolicy [] } +&{font QGraphicsWidget::font commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.cpp non plain false false QFont [] } +&{layoutDirection QGraphicsWidget::layoutDirection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.cpp non plain false false Qt::LayoutDirection [] } +&{palette QGraphicsWidget::palette commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.cpp non plain false false QPalette [] } +&{resize QGraphicsWidget::resize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.cpp non plain false false void [0xc821dbc1c0] } +&{setAutoFillBackground QGraphicsWidget::setAutoFillBackground commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.cpp non plain false false void [0xc821dbc4c0] } +&{setFocusPolicy QGraphicsWidget::setFocusPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.cpp non plain false false void [0xc821dbc7a0] } +&{setFont QGraphicsWidget::setFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.cpp non plain false false void [0xc821dbcb60] } +&{setGeometry QGraphicsWidget::setGeometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.cpp impure plain false false void [0xc821dbce80] } +&{setLayout QGraphicsWidget::setLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.cpp non plain false false void [0xc821dbd220] } +&{setLayoutDirection QGraphicsWidget::setLayoutDirection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.cpp non plain false false void [0xc821dbd5a0] } +&{setPalette QGraphicsWidget::setPalette commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.cpp non plain false false void [0xc821dbd920] } +&{setWindowFlags QGraphicsWidget::setWindowFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.cpp non plain false false void [0xc821dbdc00] } +&{setWindowTitle QGraphicsWidget::setWindowTitle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.cpp non plain false false void [0xc821dbdf00] } +&{size QGraphicsWidget::size commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.cpp non plain false false QSizeF [] } +&{unsetLayoutDirection QGraphicsWidget::unsetLayoutDirection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.cpp non plain false false void [] } +&{windowFlags QGraphicsWidget::windowFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.cpp non plain false false Qt::WindowFlags [] } +&{windowTitle QGraphicsWidget::windowTitle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.cpp non plain false false QString [] } +&{QGraphicsWidget QGraphicsWidget::QGraphicsWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non constructor false false [0xc822a68740 0xc822a687c0] } +&{actions QGraphicsWidget::actions commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false false QList [] } +&{addAction QGraphicsWidget::addAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false false void [0xc822a690c0] } +&{addActions QGraphicsWidget::addActions commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false false void [0xc822a69360] } +&{adjustSize QGraphicsWidget::adjustSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false false void [] } +&{boundingRect QGraphicsWidget::boundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false QRectF [] } +&{changeEvent QGraphicsWidget::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false void [0xc822a69900] } +&{close QGraphicsWidget::close commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non slot false false bool [] } +&{closeEvent QGraphicsWidget::closeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false void [0xc822a69cc0] } +&{event QGraphicsWidget::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false bool [0xc822a69f60] } +&{focusInEvent QGraphicsWidget::focusInEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false void [0xc821dcc1c0] } +&{focusNextPrevChild QGraphicsWidget::focusNextPrevChild commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false bool [0xc821dcc400] } +&{focusOutEvent QGraphicsWidget::focusOutEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false void [0xc821dcc640] } +&{focusWidget QGraphicsWidget::focusWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false false QGraphicsWidget * [] } +&{geometryChanged QGraphicsWidget::geometryChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non signal false false void [] } +&{getContentsMargins QGraphicsWidget::getContentsMargins commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false void [0xc821dccba0 0xc821dccc40 0xc821dccd00 0xc821dccda0] } +&{getWindowFrameMargins QGraphicsWidget::getWindowFrameMargins commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false false void [0xc821dccfa0 0xc821dcd060 0xc821dcd100 0xc821dcd1a0] } +&{grabKeyboardEvent QGraphicsWidget::grabKeyboardEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false void [0xc821dcd3c0] } +&{grabMouseEvent QGraphicsWidget::grabMouseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false void [0xc821dcd5e0] } +&{grabShortcut QGraphicsWidget::grabShortcut commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false false int [0xc821dcd840 0xc821dcd980] } +&{hideEvent QGraphicsWidget::hideEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false void [0xc821dcdc20] } +&{hoverLeaveEvent QGraphicsWidget::hoverLeaveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false void [0xc821dcde60] } +&{hoverMoveEvent QGraphicsWidget::hoverMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false void [0xc821dd8120] } +&{initStyleOption QGraphicsWidget::initStyleOption commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false void [0xc821dd8380] } +&{insertAction QGraphicsWidget::insertAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false false void [0xc821dd85a0 0xc821dd8640] } +&{insertActions QGraphicsWidget::insertActions commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false false void [0xc821dd8880 0xc821dd8920] } +&{isActiveWindow QGraphicsWidget::isActiveWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false false bool [] } +&{itemChange QGraphicsWidget::itemChange commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false QVariant [0xc821dd8ce0 0xc821dd8da0] } +&{layout QGraphicsWidget::layout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false false QGraphicsLayout * [] } +&{moveEvent QGraphicsWidget::moveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false void [0xc821dd9240] } +&{paint QGraphicsWidget::paint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false void [0xc821dd94e0 0xc821dd95a0 0xc821dd96a0] } +&{paintWindowFrame QGraphicsWidget::paintWindowFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false void [0xc821dd9860 0xc821dd9900 0xc821dd9a00] } +&{polishEvent QGraphicsWidget::polishEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false void [] } +&{rect QGraphicsWidget::rect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false false QRectF [] } +&{releaseShortcut QGraphicsWidget::releaseShortcut commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false false void [0xc821de81e0] } +&{removeAction QGraphicsWidget::removeAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false false void [0xc821de8420] } +&{resize QGraphicsWidget::resize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false true 2 void [0xc821de86c0 0xc821de8760] } +&{resizeEvent QGraphicsWidget::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false void [0xc821de89c0] } +&{sceneEvent QGraphicsWidget::sceneEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false bool [0xc821de8c80] } +&{setAttribute QGraphicsWidget::setAttribute commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false false void [0xc821de8f00 0xc821de8fe0] } +&{setContentsMargins QGraphicsWidget::setContentsMargins commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false false void [0xc821de9200 0xc821de92c0 0xc821de9360 0xc821de9420] } +&{setGeometry QGraphicsWidget::setGeometry commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false true 2 void [0xc821de9660 0xc821de96e0 0xc821de97a0 0xc821de9820] } +&{setShortcutAutoRepeat QGraphicsWidget::setShortcutAutoRepeat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false false void [0xc821de9a80 0xc821de9b20] } +&{setShortcutEnabled QGraphicsWidget::setShortcutEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false false void [0xc821de9d20 0xc821de9de0] } +&{setStyle QGraphicsWidget::setStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false false void [0xc821df6080] } +&{setTabOrder QGraphicsWidget::setTabOrder commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain true false void [0xc821df62c0 0xc821df6400] } +&{setWindowFrameMargins QGraphicsWidget::setWindowFrameMargins commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false false void [0xc821df6680 0xc821df6720 0xc821df67c0 0xc821df6880] } +&{shape QGraphicsWidget::shape commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false QPainterPath [] } +&{showEvent QGraphicsWidget::showEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false void [0xc821df6c20] } +&{sizeHint QGraphicsWidget::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false QSizeF [0xc821df6e60 0xc821df6ee0] } +&{style QGraphicsWidget::style commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false false QStyle * [] } +&{testAttribute QGraphicsWidget::testAttribute commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false false bool [0xc821df7300] } +&{type QGraphicsWidget::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false int [] } +&{ungrabKeyboardEvent QGraphicsWidget::ungrabKeyboardEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false void [0xc821df76c0] } +&{ungrabMouseEvent QGraphicsWidget::ungrabMouseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false void [0xc821df78a0] } +&{unsetWindowFrameMargins QGraphicsWidget::unsetWindowFrameMargins commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false false void [] } +&{updateGeometry QGraphicsWidget::updateGeometry commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false void [] } +&{windowFrameEvent QGraphicsWidget::windowFrameEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false bool [0xc821df7ce0] } +&{windowFrameGeometry QGraphicsWidget::windowFrameGeometry commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false false QRectF [] } +&{windowFrameRect QGraphicsWidget::windowFrameRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false false QRectF [] } +&{windowFrameSectionAt QGraphicsWidget::windowFrameSectionAt commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h impure plain false false Qt::WindowFrameSection [0xc821e16240] } +&{windowType QGraphicsWidget::windowType commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non plain false false Qt::WindowType [] } +&{~QGraphicsWidget QGraphicsWidget::~QGraphicsWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/graphicsview/qgraphicswidget.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGridLayout.txt b/internal/binding/dump/QtWidgets/QGridLayout.txt new file mode 100755 index 00000000..ae739b77 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGridLayout.txt @@ -0,0 +1,44 @@ +######################################## FUNCTIONS ######################################## +&{horizontalSpacing QGridLayout::horizontalSpacing commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.cpp non plain false false int [] } +&{setHorizontalSpacing QGridLayout::setHorizontalSpacing commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.cpp non plain false false void [0xc822299980] } +&{setVerticalSpacing QGridLayout::setVerticalSpacing commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.cpp non plain false false void [0xc822299c40] } +&{verticalSpacing QGridLayout::verticalSpacing commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.cpp non plain false false int [] } +&{QGridLayout QGridLayout::QGridLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h non constructor false true 2 [] } +&{QGridLayout QGridLayout::QGridLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h non constructor false false [0xc8222aa0a0] } +&{addItem QGridLayout::addItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h non plain false false void [0xc8222aa2c0 0xc8222aa340 0xc8222aa400 0xc8222aa4a0 0xc8222aa5e0 0xc8222aa6e0] } +&{addItem QGridLayout::addItem commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h impure plain false true 2 void [0xc8222aa9c0] } +&{addLayout QGridLayout::addLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h non plain false false void [0xc8222aad20 0xc8222aae00 0xc8222aaf20 0xc8222aafe0] } +&{addLayout QGridLayout::addLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h non plain false true 2 void [0xc8222ab340 0xc8222ab3e0 0xc8222ab4c0 0xc8222ab600 0xc8222ab6e0 0xc8222ab7c0] } +&{addWidget QGridLayout::addWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h non plain false true 2 void [0xc8222abae0 0xc8222abb80 0xc8222abc80 0xc8222abd40 0xc8222abec0 0xc8222abf60] } +&{addWidget QGridLayout::addWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h non plain false false void [0xc8222b4380 0xc8222b4460 0xc8222b4560 0xc8222b4700] } +&{cellRect QGridLayout::cellRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h non plain false false QRect [0xc8222b4ea0 0xc8222b4fa0] } +&{columnCount QGridLayout::columnCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h non plain false false int [] } +&{columnMinimumWidth QGridLayout::columnMinimumWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h non plain false false int [0xc8222b5540] } +&{columnStretch QGridLayout::columnStretch commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h non plain false false int [0xc8222b58e0] } +&{count QGridLayout::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h impure plain false false int [] } +&{expandingDirections QGridLayout::expandingDirections commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h impure plain false false Qt::Orientations [] } +&{getItemPosition QGridLayout::getItemPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h non plain false false void [0xc8222b5f80 0xc8222c8060 0xc8222c80e0 0xc8222c8180 0xc8222c82e0] } +&{hasHeightForWidth QGridLayout::hasHeightForWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h impure plain false false bool [] } +&{heightForWidth QGridLayout::heightForWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h impure plain false false int [0xc8222c8800] } +&{invalidate QGridLayout::invalidate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h impure plain false false void [] } +&{itemAt QGridLayout::itemAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h impure plain false false QLayoutItem * [0xc8222c8c80] } +&{itemAtPosition QGridLayout::itemAtPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h non plain false false QLayoutItem * [0xc8222c8f60 0xc8222c9040] } +&{maximumSize QGridLayout::maximumSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h impure plain false false QSize [] } +&{minimumHeightForWidth QGridLayout::minimumHeightForWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h impure plain false false int [0xc8222c9460] } +&{minimumSize QGridLayout::minimumSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h impure plain false false QSize [] } +&{originCorner QGridLayout::originCorner commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h non plain false false Qt::Corner [] } +&{rowCount QGridLayout::rowCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h non plain false false int [] } +&{rowMinimumHeight QGridLayout::rowMinimumHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h non plain false false int [0xc8222c9bc0] } +&{rowStretch QGridLayout::rowStretch commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h non plain false false int [0xc8222c9f00] } +&{setColumnMinimumWidth QGridLayout::setColumnMinimumWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h non plain false false void [0xc8222da220 0xc8222da320] } +&{setColumnStretch QGridLayout::setColumnStretch commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h non plain false false void [0xc8222da5e0 0xc8222da6a0] } +&{setGeometry QGridLayout::setGeometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h impure plain false false void [0xc8222dad20] } +&{setOriginCorner QGridLayout::setOriginCorner commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h non plain false false void [0xc8222dafc0] } +&{setRowMinimumHeight QGridLayout::setRowMinimumHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h non plain false false void [0xc8222db2e0 0xc8222db3a0] } +&{setRowStretch QGridLayout::setRowStretch commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h non plain false false void [0xc8222db6e0 0xc8222db760] } +&{setSpacing QGridLayout::setSpacing commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h non plain false false void [0xc8222dbaa0] } +&{sizeHint QGridLayout::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h impure plain false false QSize [] } +&{spacing QGridLayout::spacing commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h non plain false false int [] } +&{takeAt QGridLayout::takeAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h impure plain false false QLayoutItem * [0xc8222dbfe0] } +&{~QGridLayout QGridLayout::~QGridLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgridlayout.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QGroupBox.txt b/internal/binding/dump/QtWidgets/QGroupBox.txt new file mode 100755 index 00000000..43c662e8 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QGroupBox.txt @@ -0,0 +1,28 @@ +######################################## FUNCTIONS ######################################## +&{alignment QGroupBox::alignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qgroupbox.cpp non plain false false Qt::Alignment [] } +&{isCheckable QGroupBox::isCheckable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qgroupbox.cpp non plain false false bool [] } +&{isChecked QGroupBox::isChecked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qgroupbox.cpp non plain false false bool [] } +&{isFlat QGroupBox::isFlat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qgroupbox.cpp non plain false false bool [] } +&{setAlignment QGroupBox::setAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qgroupbox.cpp non plain false false void [0xc8225cbfe0] } +&{setCheckable QGroupBox::setCheckable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qgroupbox.cpp non plain false false void [0xc8221e8260] } +&{setChecked QGroupBox::setChecked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qgroupbox.cpp non slot false false void [0xc8221e8560] } +&{setFlat QGroupBox::setFlat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qgroupbox.cpp non plain false false void [0xc8221e88a0] } +&{setTitle QGroupBox::setTitle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qgroupbox.cpp non plain false false void [0xc8221e8b80] } +&{title QGroupBox::title commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qgroupbox.cpp non plain false false QString [] } +&{QGroupBox QGroupBox::QGroupBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qgroupbox.h non constructor false false [0xc8221e8fe0] } +&{QGroupBox QGroupBox::QGroupBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qgroupbox.h non constructor false true 2 [0xc8221e9320 0xc8221e93c0] } +&{changeEvent QGroupBox::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qgroupbox.h impure plain false false void [0xc8221e9b40] } +&{childEvent QGroupBox::childEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qgroupbox.h impure plain false false void [0xc8221e9e40] } +&{clicked QGroupBox::clicked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qgroupbox.h non signal false false void [0xc8223ba1c0] } +&{event QGroupBox::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qgroupbox.h impure plain false false bool [0xc8223ba4e0] } +&{focusInEvent QGroupBox::focusInEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qgroupbox.h impure plain false false void [0xc8223ba760] } +&{initStyleOption QGroupBox::initStyleOption commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qgroupbox.h non plain false false void [0xc8223bab80] } +&{minimumSizeHint QGroupBox::minimumSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qgroupbox.h impure plain false false QSize [] } +&{mouseMoveEvent QGroupBox::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qgroupbox.h impure plain false false void [0xc8223bb120] } +&{mousePressEvent QGroupBox::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qgroupbox.h impure plain false false void [0xc8223bb400] } +&{mouseReleaseEvent QGroupBox::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qgroupbox.h impure plain false false void [0xc8223bb6c0] } +&{paintEvent QGroupBox::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qgroupbox.h impure plain false false void [0xc8223bb940] } +&{resizeEvent QGroupBox::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qgroupbox.h impure plain false false void [0xc8223bbc00] } +&{toggled QGroupBox::toggled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qgroupbox.h non signal false false void [0xc8223bbe60] } +&{~QGroupBox QGroupBox::~QGroupBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qgroupbox.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QHBoxLayout.txt b/internal/binding/dump/QtWidgets/QHBoxLayout.txt new file mode 100755 index 00000000..52fdd571 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QHBoxLayout.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{QHBoxLayout QHBoxLayout::QHBoxLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h non constructor false false [] } +&{QHBoxLayout QHBoxLayout::QHBoxLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h non constructor false true 2 [0xc822c00f20] } +&{~QHBoxLayout QHBoxLayout::~QHBoxLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QHeaderView.txt b/internal/binding/dump/QtWidgets/QHeaderView.txt new file mode 100755 index 00000000..90108908 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QHeaderView.txt @@ -0,0 +1,97 @@ +######################################## FUNCTIONS ######################################## +&{cascadingSectionResizes QHeaderView::cascadingSectionResizes commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.cpp non plain false false bool [] } +&{defaultAlignment QHeaderView::defaultAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.cpp non plain false false Qt::Alignment [] } +&{defaultSectionSize QHeaderView::defaultSectionSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.cpp non plain false false int [] } +&{highlightSections QHeaderView::highlightSections commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.cpp non plain false false bool [] } +&{isSortIndicatorShown QHeaderView::isSortIndicatorShown commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.cpp non plain false false bool [] } +&{maximumSectionSize QHeaderView::maximumSectionSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.cpp non plain false false int [] } +&{minimumSectionSize QHeaderView::minimumSectionSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.cpp non plain false false int [] } +&{resetDefaultSectionSize QHeaderView::resetDefaultSectionSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.cpp non plain false false void [] } +&{resizeSection QHeaderView::resizeSection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.cpp non plain false false void [0xc821f2a8e0 0xc821f2a9c0] } +&{setCascadingSectionResizes QHeaderView::setCascadingSectionResizes commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.cpp non plain false false void [0xc821f2aca0] } +&{setDefaultAlignment QHeaderView::setDefaultAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.cpp non plain false false void [0xc821f2afe0] } +&{setDefaultSectionSize QHeaderView::setDefaultSectionSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.cpp non plain false false void [0xc821f2b2c0] } +&{setHighlightSections QHeaderView::setHighlightSections commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.cpp non plain false false void [0xc821f2b5c0] } +&{setMaximumSectionSize QHeaderView::setMaximumSectionSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.cpp non plain false false void [0xc821f2b8c0] } +&{setMinimumSectionSize QHeaderView::setMinimumSectionSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.cpp non plain false false void [0xc821f2bc40] } +&{setOffset QHeaderView::setOffset commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.cpp non slot false false void [0xc821f2bf40] } +&{setSortIndicatorShown QHeaderView::setSortIndicatorShown commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.cpp non plain false false void [0xc822a76200] } +&{setStretchLastSection QHeaderView::setStretchLastSection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.cpp non plain false false void [0xc822a76440] } +&{stretchLastSection QHeaderView::stretchLastSection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.cpp non plain false false bool [] } +&{QHeaderView QHeaderView::QHeaderView commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non constructor false false [0xc822a76da0 0xc822a76e40] } +&{count QHeaderView::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false int [] } +&{currentChanged QHeaderView::currentChanged commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h impure plain false false void [0xc822a77be0 0xc822a77ce0] } +&{event QHeaderView::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h impure plain false false bool [0xc82253f240] } +&{geometriesChanged QHeaderView::geometriesChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non signal false false void [] } +&{headerDataChanged QHeaderView::headerDataChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non slot false false void [0xc82253f760 0xc82253f860 0xc82253f940] } +&{hiddenSectionCount QHeaderView::hiddenSectionCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false int [] } +&{hideSection QHeaderView::hideSection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false void [0xc82253fde0] } +&{horizontalOffset QHeaderView::horizontalOffset commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h impure plain false false int [] } +&{initStyleOption QHeaderView::initStyleOption commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false void [0xc821eb0e40] } +&{isSectionHidden QHeaderView::isSectionHidden commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false bool [0xc821eb1600] } +&{length QHeaderView::length commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false int [] } +&{logicalIndex QHeaderView::logicalIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false int [0xc821eb1960] } +&{logicalIndexAt QHeaderView::logicalIndexAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false true 3 int [0xc821eb1ba0] } +&{logicalIndexAt QHeaderView::logicalIndexAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false int [0xc821eb1de0] } +&{logicalIndexAt QHeaderView::logicalIndexAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false true 2 int [0xc821eb1fc0 0xc8223f8040] } +&{mouseDoubleClickEvent QHeaderView::mouseDoubleClickEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h impure plain false false void [0xc8223f8260] } +&{mouseMoveEvent QHeaderView::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h impure plain false false void [0xc8223f8460] } +&{mousePressEvent QHeaderView::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h impure plain false false void [0xc8223f86a0] } +&{mouseReleaseEvent QHeaderView::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h impure plain false false void [0xc8223f8940] } +&{moveSection QHeaderView::moveSection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false void [0xc8223f8ec0 0xc8223f8f60] } +&{offset QHeaderView::offset commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false int [] } +&{orientation QHeaderView::orientation commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false Qt::Orientation [] } +&{paintEvent QHeaderView::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h impure plain false false void [0xc8223f9400] } +&{paintSection QHeaderView::paintSection commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h impure plain false false void [0xc8223f9640 0xc8223f9700 0xc8223f9780] } +&{reset QHeaderView::reset commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h impure plain false false void [] } +&{resizeContentsPrecision QHeaderView::resizeContentsPrecision commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false int [] } +&{resizeSections QHeaderView::resizeSections commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false void [0xc8223f9e40] } +&{resizeSections QHeaderView::resizeSections commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non slot false true 2 void [] } +&{restoreState QHeaderView::restoreState commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false bool [0xc8226d62c0] } +&{saveState QHeaderView::saveState commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false QByteArray [] } +&{sectionClicked QHeaderView::sectionClicked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non signal false false void [0xc8226d67a0] } +&{sectionCountChanged QHeaderView::sectionCountChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non signal false false void [0xc8226d6b00 0xc8226d6ba0] } +&{sectionDoubleClicked QHeaderView::sectionDoubleClicked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non signal false false void [0xc8226d6dc0] } +&{sectionEntered QHeaderView::sectionEntered commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non signal false false void [0xc8226d7080] } +&{sectionHandleDoubleClicked QHeaderView::sectionHandleDoubleClicked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non signal false false void [0xc8226d7320] } +&{sectionMoved QHeaderView::sectionMoved commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non signal false false void [0xc8226d7660 0xc8226d7720 0xc8226d7820] } +&{sectionPosition QHeaderView::sectionPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false int [0xc8226d7ae0] } +&{sectionPressed QHeaderView::sectionPressed commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non signal false false void [0xc8226d7e00] } +&{sectionResizeMode QHeaderView::sectionResizeMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false ResizeMode [0xc8227181c0] } +&{sectionResized QHeaderView::sectionResized commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non signal false false void [0xc8227185a0 0xc822718740 0xc822718800] } +&{sectionSize QHeaderView::sectionSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false int [0xc822718b80] } +&{sectionSizeFromContents QHeaderView::sectionSizeFromContents commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h impure plain false false QSize [0xc822718ec0] } +&{sectionSizeHint QHeaderView::sectionSizeHint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false int [0xc822719180] } +&{sectionViewportPosition QHeaderView::sectionViewportPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false int [0xc822719400] } +&{sectionsAboutToBeRemoved QHeaderView::sectionsAboutToBeRemoved commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non slot false false void [0xc822719820 0xc822719a20 0xc822719ae0] } +&{sectionsClickable QHeaderView::sectionsClickable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false bool [] } +&{sectionsHidden QHeaderView::sectionsHidden commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false bool [] } +&{sectionsInserted QHeaderView::sectionsInserted commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non slot false false void [0xc822aa8160 0xc822aa8280 0xc822aa8320] } +&{sectionsMovable QHeaderView::sectionsMovable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false bool [] } +&{sectionsMoved QHeaderView::sectionsMoved commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false bool [] } +&{setModel QHeaderView::setModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h impure plain false false void [0xc822aa8a20] } +&{setOffsetToLastSection QHeaderView::setOffsetToLastSection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non slot false false void [] } +&{setOffsetToSectionPosition QHeaderView::setOffsetToSectionPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non slot false false void [0xc822aa9020] } +&{setResizeContentsPrecision QHeaderView::setResizeContentsPrecision commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false void [0xc822aa9260] } +&{setSectionHidden QHeaderView::setSectionHidden commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false void [0xc822aa9940 0xc822aa9a00] } +&{setSectionResizeMode QHeaderView::setSectionResizeMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false void [0xc822aa9c00] } +&{setSectionResizeMode QHeaderView::setSectionResizeMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false true 2 void [0xc822aa9e20 0xc822aa9ea0] } +&{setSectionsClickable QHeaderView::setSectionsClickable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false void [0xc822abc0c0] } +&{setSectionsMovable QHeaderView::setSectionsMovable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false void [0xc822abc360] } +&{setSelection QHeaderView::setSelection commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h impure plain false false void [0xc822abc580 0xc822abc620] } +&{setSortIndicator QHeaderView::setSortIndicator commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false void [0xc822abc820 0xc822abc8a0] } +&{setVisible QHeaderView::setVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h impure plain false false void [0xc822abcb40] } +&{showSection QHeaderView::showSection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false void [0xc822abcd20] } +&{sizeHint QHeaderView::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h impure plain false false QSize [] } +&{sortIndicatorChanged QHeaderView::sortIndicatorChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non signal false false void [0xc822abcfe0 0xc822abd080] } +&{sortIndicatorOrder QHeaderView::sortIndicatorOrder commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false Qt::SortOrder [] } +&{sortIndicatorSection QHeaderView::sortIndicatorSection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false int [] } +&{stretchSectionCount QHeaderView::stretchSectionCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false int [] } +&{swapSections QHeaderView::swapSections commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false void [0xc822abd640 0xc822abd6c0] } +&{verticalOffset QHeaderView::verticalOffset commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h impure plain false false int [] } +&{viewportEvent QHeaderView::viewportEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h impure plain false false bool [0xc822abd9c0] } +&{visualIndex QHeaderView::visualIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false int [0xc822abdbc0] } +&{visualIndexAt QHeaderView::visualIndexAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h non plain false false int [0xc822abde00] } +&{~QHeaderView QHeaderView::~QHeaderView commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qheaderview.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{ResizeMode QHeaderView::ResizeMode commendable public [0xc822a768a0 0xc822a76940 0xc822a76a20 0xc822a76ac0 0xc822a76b80]} diff --git a/internal/binding/dump/QtWidgets/QInputDialog.txt b/internal/binding/dump/QtWidgets/QInputDialog.txt new file mode 100755 index 00000000..1e914167 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QInputDialog.txt @@ -0,0 +1,60 @@ +######################################## FUNCTIONS ######################################## +&{cancelButtonText QInputDialog::cancelButtonText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false QString [] } +&{comboBoxItems QInputDialog::comboBoxItems commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false QStringList [] } +&{doubleDecimals QInputDialog::doubleDecimals commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false int [] } +&{doubleMaximum QInputDialog::doubleMaximum commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false double [] } +&{doubleMinimum QInputDialog::doubleMinimum commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false double [] } +&{doubleValue QInputDialog::doubleValue commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false double [] } +&{inputMode QInputDialog::inputMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false InputMode [] } +&{intMaximum QInputDialog::intMaximum commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false int [] } +&{intMinimum QInputDialog::intMinimum commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false int [] } +&{intStep QInputDialog::intStep commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false int [] } +&{intValue QInputDialog::intValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false int [] } +&{isComboBoxEditable QInputDialog::isComboBoxEditable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false bool [] } +&{labelText QInputDialog::labelText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false QString [] } +&{okButtonText QInputDialog::okButtonText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false QString [] } +&{options QInputDialog::options commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false InputDialogOptions [] } +&{setCancelButtonText QInputDialog::setCancelButtonText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false void [0xc82330c760] } +&{setComboBoxEditable QInputDialog::setComboBoxEditable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false void [0xc82330ca00] } +&{setComboBoxItems QInputDialog::setComboBoxItems commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false void [0xc82330cc60] } +&{setDoubleDecimals QInputDialog::setDoubleDecimals commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false void [0xc82330d060] } +&{setDoubleMaximum QInputDialog::setDoubleMaximum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false void [0xc82330d2c0] } +&{setDoubleMinimum QInputDialog::setDoubleMinimum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false void [0xc82330d4e0] } +&{setDoubleValue QInputDialog::setDoubleValue commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false void [0xc82330d7e0] } +&{setInputMode QInputDialog::setInputMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false void [0xc82330db00] } +&{setIntMaximum QInputDialog::setIntMaximum commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false void [0xc82330dde0] } +&{setIntMinimum QInputDialog::setIntMinimum commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false void [0xc8232fc0e0] } +&{setIntStep QInputDialog::setIntStep commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false void [0xc8232fc460] } +&{setIntValue QInputDialog::setIntValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false void [0xc8232fc700] } +&{setLabelText QInputDialog::setLabelText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false void [0xc8232fca20] } +&{setOkButtonText QInputDialog::setOkButtonText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false void [0xc8232fcca0] } +&{setOptions QInputDialog::setOptions commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false void [0xc8232fcfa0] } +&{setTextEchoMode QInputDialog::setTextEchoMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false void [0xc8232fd2c0] } +&{setTextValue QInputDialog::setTextValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false void [0xc8232fd600] } +&{textEchoMode QInputDialog::textEchoMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false QLineEdit::EchoMode [] } +&{textValue QInputDialog::textValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.cpp non plain false false QString [] } +&{QInputDialog QInputDialog::QInputDialog commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.h non constructor false false [0xc8232e6a20 0xc8232e6b00] } +&{done QInputDialog::done commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.h impure plain false false void [0xc8232e7160] } +&{doubleValueChanged QInputDialog::doubleValueChanged commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.h non signal false false void [0xc8232e74c0] } +&{doubleValueSelected QInputDialog::doubleValueSelected commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.h non signal false false void [0xc8232e7780] } +&{getDouble QInputDialog::getDouble commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.h non plain true false double [0xc8232e7a40 0xc8232e7b00 0xc8232e7ba0 0xc8232e7c60 0xc8232e7dc0 0xc8232e7e60 0xc8232e7f20 0xc8232ce0c0 0xc8232ce180] } +&{getInt QInputDialog::getInt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.h non plain true false int [0xc8232ce3e0 0xc8232ce4e0 0xc8232ce5a0 0xc8232ce6a0 0xc8232ce7a0 0xc8232ce840 0xc8232ce8e0 0xc8232ce980 0xc8232cea40] } +&{getItem QInputDialog::getItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.h non plain true false QString [0xc8232cf580 0xc8232cf620 0xc8232cf6c0 0xc8232cf800 0xc8232cf920 0xc8232cf9e0 0xc8232cfa60 0xc8232cfb40 0xc8232cfc60] } +&{getMultiLineText QInputDialog::getMultiLineText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.h non plain true false QString [0xc8232cffe0 0xc8232c4140 0xc8232c41c0 0xc8232c4260 0xc8232c4360 0xc8232c4400 0xc8232c4520] } +&{getText QInputDialog::getText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.h non plain true false QString [0xc8232c4880 0xc8232c4920 0xc8232c49e0 0xc8232c4b00 0xc8232c4d00 0xc8232c4da0 0xc8232c4e60 0xc8232c4f60] } +&{intValueChanged QInputDialog::intValueChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.h non signal false false void [0xc8232c5320] } +&{intValueSelected QInputDialog::intValueSelected commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.h non signal false false void [0xc8232c55c0] } +&{minimumSizeHint QInputDialog::minimumSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.h impure plain false false QSize [] } +&{open QInputDialog::open commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.h non plain false false void [0xc8232c5940 0xc8232c5a20] } +&{setDoubleRange QInputDialog::setDoubleRange commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.h non plain false false void [0xc8232c5ce0 0xc8232c5dc0] } +&{setIntRange QInputDialog::setIntRange commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.h non plain false false void [0xc8232b40c0 0xc8232b4140] } +&{setOption QInputDialog::setOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.h non plain false false void [0xc8232b4420 0xc8232b4560] } +&{setVisible QInputDialog::setVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.h impure plain false false void [0xc8232b4820] } +&{sizeHint QInputDialog::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.h impure plain false false QSize [] } +&{testOption QInputDialog::testOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.h non plain false false bool [0xc8232b4cc0] } +&{textValueChanged QInputDialog::textValueChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.h non signal false false void [0xc8232b5020] } +&{textValueSelected QInputDialog::textValueSelected commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.h non signal false false void [0xc8232b5380] } +&{~QInputDialog QInputDialog::~QInputDialog commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qinputdialog.h non destructor false false [] } +######################################## ENUMS ######################################## +&{InputDialogOption QInputDialog::InputDialogOption commendable public QInputDialog::InputDialogOptions [0xc8232fdec0 0xc8232fdfc0 0xc8232e60e0]} +&{InputMode QInputDialog::InputMode commendable public [0xc8232e6460 0xc8232e6500 0xc8232e6660]} diff --git a/internal/binding/dump/QtWidgets/QItemDelegate.txt b/internal/binding/dump/QtWidgets/QItemDelegate.txt new file mode 100755 index 00000000..99242d2f --- /dev/null +++ b/internal/binding/dump/QtWidgets/QItemDelegate.txt @@ -0,0 +1,21 @@ +######################################## FUNCTIONS ######################################## +&{eventFilter QItemDelegate::eventFilter commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemdelegate.cpp impure plain false false bool [0xc822acd6c0 0xc822acd740] } +&{hasClipping QItemDelegate::hasClipping commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemdelegate.cpp non plain false false bool [] } +&{setClipping QItemDelegate::setClipping commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemdelegate.cpp non plain false false void [0xc822acdae0] } +&{QItemDelegate QItemDelegate::QItemDelegate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemdelegate.h non constructor false false [0xc822acdcc0] } +&{createEditor QItemDelegate::createEditor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemdelegate.h impure plain false false QWidget * [0xc822acdea0 0xc822acdf40 0xc822ae6020] } +&{drawBackground QItemDelegate::drawBackground commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemdelegate.h non plain false false void [0xc822ae6ec0 0xc822ae6fc0 0xc822ae70c0] } +&{drawCheck QItemDelegate::drawCheck commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemdelegate.h impure plain false false void [0xc822ae7360 0xc822ae7440 0xc822ae7540 0xc822ae75c0] } +&{drawDecoration QItemDelegate::drawDecoration commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemdelegate.h impure plain false false void [0xc822ae77e0 0xc822ae78c0 0xc822ae79c0 0xc822ae7a60] } +&{drawDisplay QItemDelegate::drawDisplay commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemdelegate.h impure plain false false void [0xc822ae7c80 0xc822ae7d40 0xc822ae7e20 0xc822ae7ea0] } +&{drawFocus QItemDelegate::drawFocus commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemdelegate.h impure plain false false void [0xc822af20c0 0xc822af2160 0xc822af2240] } +&{editorEvent QItemDelegate::editorEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemdelegate.h impure plain false false bool [0xc822af2440 0xc822af24e0 0xc822af25c0 0xc822af26a0] } +&{itemEditorFactory QItemDelegate::itemEditorFactory commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemdelegate.h non plain false false QItemEditorFactory * [] } +&{paint QItemDelegate::paint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemdelegate.h impure plain false false void [0xc822af2ae0 0xc822af2ba0 0xc822af2ce0] } +&{setEditorData QItemDelegate::setEditorData commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemdelegate.h impure plain false false void [0xc822af3420 0xc822af3520] } +&{setItemEditorFactory QItemDelegate::setItemEditorFactory commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemdelegate.h non plain false false void [0xc822af37c0] } +&{setModelData QItemDelegate::setModelData commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemdelegate.h impure plain false false void [0xc822af3a20 0xc822af3b20 0xc822af3c00] } +&{sizeHint QItemDelegate::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemdelegate.h impure plain false false QSize [0xc822b04640 0xc822b04760] } +&{updateEditorGeometry QItemDelegate::updateEditorGeometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemdelegate.h impure plain false false void [0xc822b04de0 0xc822b04ee0 0xc822b04fc0] } +&{~QItemDelegate QItemDelegate::~QItemDelegate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemdelegate.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QItemEditorCreator.txt b/internal/binding/dump/QtWidgets/QItemEditorCreator.txt new file mode 100755 index 00000000..611ed0eb --- /dev/null +++ b/internal/binding/dump/QtWidgets/QItemEditorCreator.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{QItemEditorCreator QItemEditorCreator::QItemEditorCreator commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemeditorfactory.h non constructor false false [0xc822b056c0] } +&{createWidget QItemEditorCreator::createWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemeditorfactory.h impure plain false false QWidget * [0xc822b059a0] } +&{valuePropertyName QItemEditorCreator::valuePropertyName commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemeditorfactory.h impure plain false false QByteArray [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QItemEditorCreatorBase.txt b/internal/binding/dump/QtWidgets/QItemEditorCreatorBase.txt new file mode 100755 index 00000000..f16e0cfd --- /dev/null +++ b/internal/binding/dump/QtWidgets/QItemEditorCreatorBase.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{~QItemEditorCreatorBase QItemEditorCreatorBase::~QItemEditorCreatorBase commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemeditorfactory.cpp impure destructor false false [] } +&{createWidget QItemEditorCreatorBase::createWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemeditorfactory.h pure plain false false QWidget * [0xc822b05f60] } +&{valuePropertyName QItemEditorCreatorBase::valuePropertyName commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemeditorfactory.h pure plain false false QByteArray [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QItemEditorFactory.txt b/internal/binding/dump/QtWidgets/QItemEditorFactory.txt new file mode 100755 index 00000000..58685338 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QItemEditorFactory.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QItemEditorFactory QItemEditorFactory::QItemEditorFactory commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemeditorfactory.h non constructor false false [] } +&{createEditor QItemEditorFactory::createEditor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemeditorfactory.h impure plain false false QWidget * [0xc822b1c6e0 0xc822b1c7a0] } +&{defaultFactory QItemEditorFactory::defaultFactory commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemeditorfactory.h non plain true false const QItemEditorFactory * [] } +&{registerEditor QItemEditorFactory::registerEditor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemeditorfactory.h non plain false false void [0xc822b1ca60 0xc822b1cb40] } +&{setDefaultFactory QItemEditorFactory::setDefaultFactory commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemeditorfactory.h non plain true false void [0xc822b1ce20] } +&{valuePropertyName QItemEditorFactory::valuePropertyName commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemeditorfactory.h impure plain false false QByteArray [0xc822b1d080] } +&{~QItemEditorFactory QItemEditorFactory::~QItemEditorFactory commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemeditorfactory.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QKeyEventTransition.txt b/internal/binding/dump/QtWidgets/QKeyEventTransition.txt new file mode 100755 index 00000000..8bc4ce31 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QKeyEventTransition.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{QKeyEventTransition QKeyEventTransition::QKeyEventTransition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/statemachine/qkeyeventtransition.h non constructor false true 2 [0xc8225eb620 0xc8225eb6e0 0xc8225eb760 0xc8225eb880] } +&{QKeyEventTransition QKeyEventTransition::QKeyEventTransition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/statemachine/qkeyeventtransition.h non constructor false false [0xc8225ebb40] } +&{eventTest QKeyEventTransition::eventTest commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/statemachine/qkeyeventtransition.h impure plain false false bool [0xc8225ebe40] } +&{key QKeyEventTransition::key commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/statemachine/qkeyeventtransition.h non plain false false int [] } +&{modifierMask QKeyEventTransition::modifierMask commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/statemachine/qkeyeventtransition.h non plain false false Qt::KeyboardModifiers [] } +&{onTransition QKeyEventTransition::onTransition commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/statemachine/qkeyeventtransition.h impure plain false false void [0xc8225f8400] } +&{setKey QKeyEventTransition::setKey commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/statemachine/qkeyeventtransition.h non plain false false void [0xc8225f87c0] } +&{setModifierMask QKeyEventTransition::setModifierMask commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/statemachine/qkeyeventtransition.h non plain false false void [0xc8225f8a40] } +&{~QKeyEventTransition QKeyEventTransition::~QKeyEventTransition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/statemachine/qkeyeventtransition.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QKeySequenceEdit.txt b/internal/binding/dump/QtWidgets/QKeySequenceEdit.txt new file mode 100755 index 00000000..ffef6ef2 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QKeySequenceEdit.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{keySequence QKeySequenceEdit::keySequence commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qkeysequenceedit.cpp non plain false false QKeySequence [] } +&{setKeySequence QKeySequenceEdit::setKeySequence commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qkeysequenceedit.cpp non slot false false void [0xc822299a00] } +&{QKeySequenceEdit QKeySequenceEdit::QKeySequenceEdit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qkeysequenceedit.h non constructor false false [0xc822299d40] } +&{QKeySequenceEdit QKeySequenceEdit::QKeySequenceEdit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qkeysequenceedit.h non constructor false true 2 [0xc822299fa0 0xc822c000c0] } +&{clear QKeySequenceEdit::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qkeysequenceedit.h non slot false false void [] } +&{editingFinished QKeySequenceEdit::editingFinished commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qkeysequenceedit.h non signal false false void [] } +&{event QKeySequenceEdit::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qkeysequenceedit.h impure plain false false bool [0xc822c00cc0] } +&{keyPressEvent QKeySequenceEdit::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qkeysequenceedit.h impure plain false false void [0xc822c01060] } +&{keyReleaseEvent QKeySequenceEdit::keyReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qkeysequenceedit.h impure plain false false void [0xc822c012a0] } +&{keySequenceChanged QKeySequenceEdit::keySequenceChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qkeysequenceedit.h non signal false false void [0xc822c016a0] } +&{timerEvent QKeySequenceEdit::timerEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qkeysequenceedit.h impure plain false false void [0xc822c01a20] } +&{~QKeySequenceEdit QKeySequenceEdit::~QKeySequenceEdit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qkeysequenceedit.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QLCDNumber.txt b/internal/binding/dump/QtWidgets/QLCDNumber.txt new file mode 100755 index 00000000..d824ef14 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QLCDNumber.txt @@ -0,0 +1,30 @@ +######################################## FUNCTIONS ######################################## +&{intValue QLCDNumber::intValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlcdnumber.cpp non plain false false int [] } +&{mode QLCDNumber::mode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlcdnumber.cpp non plain false false Mode [] } +&{segmentStyle QLCDNumber::segmentStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlcdnumber.cpp non plain false false SegmentStyle [] } +&{setMode QLCDNumber::setMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlcdnumber.cpp non plain false false void [0xc821f1b120] } +&{setSegmentStyle QLCDNumber::setSegmentStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlcdnumber.cpp non plain false false void [0xc821f1b4c0] } +&{setSmallDecimalPoint QLCDNumber::setSmallDecimalPoint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlcdnumber.cpp non slot false false void [0xc821f1b920] } +&{smallDecimalPoint QLCDNumber::smallDecimalPoint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlcdnumber.cpp non plain false false bool [] } +&{value QLCDNumber::value commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlcdnumber.cpp non plain false false double [] } +&{QLCDNumber QLCDNumber::QLCDNumber commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlcdnumber.h non constructor false false [0xc822a46d20] } +&{QLCDNumber QLCDNumber::QLCDNumber commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlcdnumber.h non constructor false true 2 [0xc822a47080 0xc822a47220] } +&{checkOverflow QLCDNumber::checkOverflow commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlcdnumber.h non plain false false bool [0xc822a475a0] } +&{checkOverflow QLCDNumber::checkOverflow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlcdnumber.h non plain false true 2 bool [0xc822a47920] } +&{digitCount QLCDNumber::digitCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlcdnumber.h non plain false false int [] } +&{display QLCDNumber::display commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlcdnumber.h non slot false false void [0xc822a47fa0] } +&{display QLCDNumber::display commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlcdnumber.h non slot false true 2 void [0xc8220b02c0] } +&{display QLCDNumber::display commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlcdnumber.h non slot false true 3 void [0xc8220b06c0] } +&{event QLCDNumber::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlcdnumber.h impure plain false false bool [0xc8220b0aa0] } +&{overflow QLCDNumber::overflow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlcdnumber.h non signal false false void [] } +&{paintEvent QLCDNumber::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlcdnumber.h impure plain false false void [0xc8220b1080] } +&{setBinMode QLCDNumber::setBinMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlcdnumber.h non slot false false void [] } +&{setDecMode QLCDNumber::setDecMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlcdnumber.h non slot false false void [] } +&{setDigitCount QLCDNumber::setDigitCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlcdnumber.h non plain false false void [0xc8220b1700] } +&{setHexMode QLCDNumber::setHexMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlcdnumber.h non slot false false void [] } +&{setOctMode QLCDNumber::setOctMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlcdnumber.h non slot false false void [] } +&{sizeHint QLCDNumber::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlcdnumber.h impure plain false false QSize [] } +&{~QLCDNumber QLCDNumber::~QLCDNumber commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlcdnumber.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Mode QLCDNumber::Mode commendable public [0xc822a461a0 0xc822a462e0 0xc822a46360 0xc822a46500]} +&{SegmentStyle QLCDNumber::SegmentStyle commendable public [0xc822a46860 0xc822a46920 0xc822a469e0]} diff --git a/internal/binding/dump/QtWidgets/QLabel.txt b/internal/binding/dump/QtWidgets/QLabel.txt new file mode 100755 index 00000000..d6098f57 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QLabel.txt @@ -0,0 +1,54 @@ +######################################## FUNCTIONS ######################################## +&{alignment QLabel::alignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.cpp non plain false false Qt::Alignment [] } +&{hasScaledContents QLabel::hasScaledContents commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.cpp non plain false false bool [] } +&{hasSelectedText QLabel::hasSelectedText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.cpp non plain false false bool [] } +&{indent QLabel::indent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.cpp non plain false false int [] } +&{margin QLabel::margin commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.cpp non plain false false int [] } +&{openExternalLinks QLabel::openExternalLinks commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.cpp non plain false false bool [] } +&{pixmap QLabel::pixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.cpp non plain false false const QPixmap * [] } +&{selectedText QLabel::selectedText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.cpp non plain false false QString [] } +&{setAlignment QLabel::setAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.cpp non plain false false void [0xc821fb5420] } +&{setIndent QLabel::setIndent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.cpp non plain false false void [0xc821fb5780] } +&{setMargin QLabel::setMargin commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.cpp non plain false false void [0xc821fb5a00] } +&{setOpenExternalLinks QLabel::setOpenExternalLinks commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.cpp non plain false false void [0xc821fb5de0] } +&{setPixmap QLabel::setPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.cpp non slot false false void [0xc821eb2180] } +&{setScaledContents QLabel::setScaledContents commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.cpp non plain false false void [0xc821eb2600] } +&{setText QLabel::setText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.cpp non slot false false void [0xc821eb2960] } +&{setTextFormat QLabel::setTextFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.cpp non plain false false void [0xc821eb2d60] } +&{setTextInteractionFlags QLabel::setTextInteractionFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.cpp non plain false false void [0xc821eb32a0] } +&{setWordWrap QLabel::setWordWrap commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.cpp non plain false false void [0xc821eb36e0] } +&{text QLabel::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.cpp non plain false false QString [] } +&{textFormat QLabel::textFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.cpp non plain false false Qt::TextFormat [] } +&{textInteractionFlags QLabel::textInteractionFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.cpp non plain false false Qt::TextInteractionFlags [] } +&{wordWrap QLabel::wordWrap commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.cpp non plain false false bool [] } +&{QLabel QLabel::QLabel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h non constructor false false [0xc8228ec260 0xc8228ec320] } +&{QLabel QLabel::QLabel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h non constructor false true 2 [0xc8228ec620 0xc8228ec740 0xc8228ec840] } +&{buddy QLabel::buddy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h non plain false false QWidget * [] } +&{changeEvent QLabel::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h impure plain false false void [0xc8228ed180] } +&{clear QLabel::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h non slot false false void [] } +&{contextMenuEvent QLabel::contextMenuEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h impure plain false false void [0xc8228ed700] } +&{event QLabel::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h impure plain false false bool [0xc8228edbc0] } +&{focusInEvent QLabel::focusInEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h impure plain false false void [0xc822aa8080] } +&{focusNextPrevChild QLabel::focusNextPrevChild commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h impure plain false false bool [0xc822aa84c0] } +&{focusOutEvent QLabel::focusOutEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h impure plain false false void [0xc822aa88e0] } +&{heightForWidth QLabel::heightForWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h impure plain false false int [0xc822aa8c20] } +&{keyPressEvent QLabel::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h impure plain false false void [0xc822aa8fc0] } +&{linkActivated QLabel::linkActivated commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h non signal false false void [0xc822aa9380] } +&{linkHovered QLabel::linkHovered commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h non signal false false void [0xc822aa97e0] } +&{minimumSizeHint QLabel::minimumSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h impure plain false false QSize [] } +&{mouseMoveEvent QLabel::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h impure plain false false void [0xc822aa9c80] } +&{mousePressEvent QLabel::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h impure plain false false void [0xc8227f6020] } +&{mouseReleaseEvent QLabel::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h impure plain false false void [0xc8227f63a0] } +&{movie QLabel::movie commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h non plain false false QMovie * [] } +&{paintEvent QLabel::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h impure plain false false void [0xc8227f67e0] } +&{picture QLabel::picture commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h non plain false false const QPicture * [] } +&{selectionStart QLabel::selectionStart commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h non plain false false int [] } +&{setBuddy QLabel::setBuddy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h non plain false false void [0xc8227f6d60] } +&{setMovie QLabel::setMovie commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h non slot false false void [0xc8227f70a0] } +&{setNum QLabel::setNum commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h non slot false true 2 void [0xc8227f7380] } +&{setNum QLabel::setNum commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h non slot false false void [0xc8227f76a0] } +&{setPicture QLabel::setPicture commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h non slot false false void [0xc8227f7a60] } +&{setSelection QLabel::setSelection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h non plain false false void [0xc8227f7de0 0xc8227f7ec0] } +&{sizeHint QLabel::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h impure plain false false QSize [] } +&{~QLabel QLabel::~QLabel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlabel.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QLayout.txt b/internal/binding/dump/QtWidgets/QLayout.txt new file mode 100755 index 00000000..79c1f236 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QLayout.txt @@ -0,0 +1,46 @@ +######################################## FUNCTIONS ######################################## +&{setSizeConstraint QLayout::setSizeConstraint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.cpp non plain false false void [0xc8222ecbc0] } +&{setSpacing QLayout::setSpacing commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.cpp non plain false false void [0xc8222ece60] } +&{sizeConstraint QLayout::sizeConstraint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.cpp non plain false false SizeConstraint [] } +&{spacing QLayout::spacing commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.cpp non plain false false int [] } +&{QLayout QLayout::QLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h non constructor false true 2 [] } +&{QLayout QLayout::QLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h non constructor false false [0xc8222ed9e0] } +&{activate QLayout::activate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h non plain false false bool [] } +&{addChildLayout QLayout::addChildLayout commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h non plain false false void [0xc8222fc080] } +&{addChildWidget QLayout::addChildWidget commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h non plain false false void [0xc8222fc3c0] } +&{addItem QLayout::addItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h pure plain false false void [0xc8222fc5e0] } +&{addWidget QLayout::addWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h non plain false false void [0xc8222fc840] } +&{alignmentRect QLayout::alignmentRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h non plain false false QRect [0xc8222fcd00] } +&{childEvent QLayout::childEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h impure plain false false void [0xc8222fcf40] } +&{closestAcceptableSize QLayout::closestAcceptableSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h non plain true false QSize [0xc8222fd200 0xc8222fd280] } +&{contentsMargins QLayout::contentsMargins commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h non plain false false QMargins [] } +&{contentsRect QLayout::contentsRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h non plain false false QRect [] } +&{controlTypes QLayout::controlTypes commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h impure plain false false QSizePolicy::ControlTypes [] } +&{count QLayout::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h pure plain false false int [] } +&{expandingDirections QLayout::expandingDirections commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h impure plain false false Qt::Orientations [] } +&{geometry QLayout::geometry commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h impure plain false false QRect [] } +&{getContentsMargins QLayout::getContentsMargins commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h non plain false false void [0xc8222fdce0 0xc8222fddc0 0xc8222fde80 0xc8222fdf20] } +&{indexOf QLayout::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h impure plain false false int [0xc8223100c0] } +&{invalidate QLayout::invalidate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h impure plain false false void [] } +&{isEmpty QLayout::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h impure plain false false bool [] } +&{isEnabled QLayout::isEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h non plain false false bool [] } +&{itemAt QLayout::itemAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h pure plain false false QLayoutItem * [0xc822310600] } +&{layout QLayout::layout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h impure plain false false QLayout * [] } +&{maximumSize QLayout::maximumSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h impure plain false false QSize [] } +&{menuBar QLayout::menuBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h non plain false false QWidget * [] } +&{minimumSize QLayout::minimumSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h impure plain false false QSize [] } +&{parentWidget QLayout::parentWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h non plain false false QWidget * [] } +&{removeItem QLayout::removeItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h non plain false false void [0xc822310ea0] } +&{removeWidget QLayout::removeWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h non plain false false void [0xc822311100] } +&{replaceWidget QLayout::replaceWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h non plain false false QLayoutItem * [0xc822311340 0xc8223113e0 0xc8223114a0] } +&{setAlignment QLayout::setAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h non plain false true 2 bool [0xc822311740 0xc822311820] } +&{setAlignment QLayout::setAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h non plain false false bool [0xc822311a60 0xc822311b00] } +&{setContentsMargins QLayout::setContentsMargins commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h non plain false true 2 void [0xc822311d80] } +&{setContentsMargins QLayout::setContentsMargins commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h non plain false false void [0xc822324020 0xc822324100 0xc822324180 0xc822324220] } +&{setEnabled QLayout::setEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h non plain false false void [0xc8223244a0] } +&{setGeometry QLayout::setGeometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h impure plain false false void [0xc822324720] } +&{setMenuBar QLayout::setMenuBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h non plain false false void [0xc822324c00] } +&{takeAt QLayout::takeAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h pure plain false false QLayoutItem * [0xc822324d80] } +&{update QLayout::update commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayout.h non plain false false void [] } +######################################## ENUMS ######################################## +&{SizeConstraint QLayout::SizeConstraint commendable public [0xc8222ed3c0 0xc8222ed480 0xc8222ed560 0xc8222ed600 0xc8222ed6c0 0xc8222ed740]} diff --git a/internal/binding/dump/QtWidgets/QLayoutItem.txt b/internal/binding/dump/QtWidgets/QLayoutItem.txt new file mode 100755 index 00000000..49bcdd7f --- /dev/null +++ b/internal/binding/dump/QtWidgets/QLayoutItem.txt @@ -0,0 +1,21 @@ +######################################## FUNCTIONS ######################################## +&{QLayoutItem QLayoutItem::QLayoutItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h non constructor false false [0xc822325ec0] } +&{alignment QLayoutItem::alignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h non plain false false Qt::Alignment [] } +&{controlTypes QLayoutItem::controlTypes commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure plain false false QSizePolicy::ControlTypes [] } +&{expandingDirections QLayoutItem::expandingDirections commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h pure plain false false Qt::Orientations [] } +&{geometry QLayoutItem::geometry commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h pure plain false false QRect [] } +&{hasHeightForWidth QLayoutItem::hasHeightForWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure plain false false bool [] } +&{heightForWidth QLayoutItem::heightForWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure plain false false int [0xc8223368c0] } +&{invalidate QLayoutItem::invalidate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure plain false false void [] } +&{isEmpty QLayoutItem::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h pure plain false false bool [] } +&{layout QLayoutItem::layout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure plain false false QLayout * [] } +&{maximumSize QLayoutItem::maximumSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h pure plain false false QSize [] } +&{minimumHeightForWidth QLayoutItem::minimumHeightForWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure plain false false int [0xc822337020] } +&{minimumSize QLayoutItem::minimumSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h pure plain false false QSize [] } +&{setAlignment QLayoutItem::setAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h non plain false false void [0xc8223373a0] } +&{setGeometry QLayoutItem::setGeometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h pure plain false false void [0xc822337580] } +&{sizeHint QLayoutItem::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h pure plain false false QSize [] } +&{spacerItem QLayoutItem::spacerItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure plain false false QSpacerItem * [] } +&{widget QLayoutItem::widget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure plain false false QWidget * [] } +&{~QLayoutItem QLayoutItem::~QLayoutItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QLineEdit.txt b/internal/binding/dump/QtWidgets/QLineEdit.txt new file mode 100755 index 00000000..a4f448fe --- /dev/null +++ b/internal/binding/dump/QtWidgets/QLineEdit.txt @@ -0,0 +1,97 @@ +######################################## FUNCTIONS ######################################## +&{alignment QLineEdit::alignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false Qt::Alignment [] } +&{cursorMoveStyle QLineEdit::cursorMoveStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false Qt::CursorMoveStyle [] } +&{cursorPosition QLineEdit::cursorPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false int [] } +&{displayText QLineEdit::displayText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false QString [] } +&{dragEnabled QLineEdit::dragEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false bool [] } +&{echoMode QLineEdit::echoMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false EchoMode [] } +&{hasAcceptableInput QLineEdit::hasAcceptableInput commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false bool [] } +&{hasFrame QLineEdit::hasFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false bool [] } +&{hasSelectedText QLineEdit::hasSelectedText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false bool [] } +&{inputMask QLineEdit::inputMask commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false QString [] } +&{isClearButtonEnabled QLineEdit::isClearButtonEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false bool [] } +&{isModified QLineEdit::isModified commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false bool [] } +&{isReadOnly QLineEdit::isReadOnly commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false bool [] } +&{isRedoAvailable QLineEdit::isRedoAvailable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false bool [] } +&{isUndoAvailable QLineEdit::isUndoAvailable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false bool [] } +&{maxLength QLineEdit::maxLength commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false int [] } +&{placeholderText QLineEdit::placeholderText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false QString [] } +&{selectedText QLineEdit::selectedText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false QString [] } +&{setAlignment QLineEdit::setAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false void [0xc822e70840] } +&{setClearButtonEnabled QLineEdit::setClearButtonEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false void [0xc822e70ec0] } +&{setCursorMoveStyle QLineEdit::setCursorMoveStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false void [0xc822e71640] } +&{setCursorPosition QLineEdit::setCursorPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false void [0xc822e71ee0] } +&{setDragEnabled QLineEdit::setDragEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false void [0xc822ef26c0] } +&{setEchoMode QLineEdit::setEchoMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false void [0xc822ef2c00] } +&{setFrame QLineEdit::setFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false void [0xc822ef34c0] } +&{setInputMask QLineEdit::setInputMask commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false void [0xc822ef3b60] } +&{setMaxLength QLineEdit::setMaxLength commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false void [0xc822f7e300] } +&{setModified QLineEdit::setModified commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false void [0xc822f7ea60] } +&{setPlaceholderText QLineEdit::setPlaceholderText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false void [0xc822f7f1c0] } +&{setReadOnly QLineEdit::setReadOnly commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false void [0xc822f7fa20] } +&{setText QLineEdit::setText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non slot false false void [0xc822ffc320] } +&{text QLineEdit::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.cpp non plain false false QString [] } +&{QLineEdit QLineEdit::QLineEdit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non constructor false false [0xc822ffdee0] } +&{QLineEdit QLineEdit::QLineEdit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non constructor false true 2 [0xc82305e3c0 0xc82305e4e0] } +&{addAction QLineEdit::addAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non plain false true 2 QAction * [0xc82305ecc0 0xc82305ef00] } +&{addAction QLineEdit::addAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non plain false false void [0xc82305f3e0 0xc82305f540] } +&{backspace QLineEdit::backspace commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non plain false false void [] } +&{changeEvent QLineEdit::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h impure plain false false void [0xc82305fce0] } +&{clear QLineEdit::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non slot false false void [] } +&{completer QLineEdit::completer commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non plain false false QCompleter * [] } +&{contextMenuEvent QLineEdit::contextMenuEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h impure plain false false void [0xc82312a440] } +&{copy QLineEdit::copy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non slot false false void [] } +&{createStandardContextMenu QLineEdit::createStandardContextMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non plain false false QMenu * [] } +&{cursorBackward QLineEdit::cursorBackward commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non plain false false void [0xc82312aa40 0xc82312ab60] } +&{cursorForward QLineEdit::cursorForward commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non plain false false void [0xc82312ae20 0xc82312afe0] } +&{cursorPositionAt QLineEdit::cursorPositionAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non plain false false int [0xc82312b2e0] } +&{cursorPositionChanged QLineEdit::cursorPositionChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non signal false false void [0xc82312b760 0xc82312b7e0] } +&{cursorRect QLineEdit::cursorRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non plain false false QRect [] } +&{cursorWordBackward QLineEdit::cursorWordBackward commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non plain false false void [0xc82312be00] } +&{cursorWordForward QLineEdit::cursorWordForward commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non plain false false void [0xc8232881a0] } +&{cut QLineEdit::cut commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non slot false false void [] } +&{del QLineEdit::del commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non plain false false void [] } +&{deselect QLineEdit::deselect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non plain false false void [] } +&{dragEnterEvent QLineEdit::dragEnterEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h impure plain false false void [0xc823288a60] } +&{dragLeaveEvent QLineEdit::dragLeaveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h impure plain false false void [0xc823288f40] } +&{dragMoveEvent QLineEdit::dragMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h impure plain false false void [0xc823289340] } +&{dropEvent QLineEdit::dropEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h impure plain false false void [0xc823289780] } +&{editingFinished QLineEdit::editingFinished commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non signal false false void [] } +&{end QLineEdit::end commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non plain false false void [0xc823289d00] } +&{event QLineEdit::event commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h impure plain false false bool [0xc823289fc0] } +&{focusInEvent QLineEdit::focusInEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h impure plain false false void [0xc82339e280] } +&{focusOutEvent QLineEdit::focusOutEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h impure plain false false void [0xc82339e600] } +&{getTextMargins QLineEdit::getTextMargins commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non plain false false void [0xc82339e9c0 0xc82339eaa0 0xc82339ec60 0xc82339ed00] } +&{home QLineEdit::home commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non plain false false void [0xc82339f0e0] } +&{initStyleOption QLineEdit::initStyleOption commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non plain false false void [0xc82339f500] } +&{inputMethodEvent QLineEdit::inputMethodEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h impure plain false false void [0xc82339fa80] } +&{inputMethodQuery QLineEdit::inputMethodQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h impure plain false false QVariant [0xc82339fe40] } +&{insert QLineEdit::insert commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non plain false false void [0xc82340c220] } +&{keyPressEvent QLineEdit::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h impure plain false false void [0xc82340c560] } +&{minimumSizeHint QLineEdit::minimumSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h impure plain false false QSize [] } +&{mouseDoubleClickEvent QLineEdit::mouseDoubleClickEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h impure plain false false void [0xc82340cb00] } +&{mouseMoveEvent QLineEdit::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h impure plain false false void [0xc82340cee0] } +&{mousePressEvent QLineEdit::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h impure plain false false void [0xc82340d1a0] } +&{mouseReleaseEvent QLineEdit::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h impure plain false false void [0xc82340d540] } +&{paintEvent QLineEdit::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h impure plain false false void [0xc82340d980] } +&{paste QLineEdit::paste commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non slot false false void [] } +&{redo QLineEdit::redo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non slot false false void [] } +&{returnPressed QLineEdit::returnPressed commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non signal false false void [] } +&{selectAll QLineEdit::selectAll commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non slot false false void [] } +&{selectionChanged QLineEdit::selectionChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non signal false false void [] } +&{selectionStart QLineEdit::selectionStart commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non plain false false int [] } +&{setCompleter QLineEdit::setCompleter commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non plain false false void [0xc8233ee6e0] } +&{setSelection QLineEdit::setSelection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non plain false false void [0xc8233eea80 0xc8233eeb60] } +&{setTextMargins QLineEdit::setTextMargins commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non plain false true 2 void [0xc8233eee60] } +&{setTextMargins QLineEdit::setTextMargins commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non plain false false void [0xc8233ef260 0xc8233ef340 0xc8233ef440 0xc8233ef540] } +&{setValidator QLineEdit::setValidator commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non plain false false void [0xc8233ef980] } +&{sizeHint QLineEdit::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h impure plain false false QSize [] } +&{textChanged QLineEdit::textChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non signal false false void [0xc8233eff20] } +&{textEdited QLineEdit::textEdited commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non signal false false void [0xc8233de320] } +&{textMargins QLineEdit::textMargins commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non plain false false QMargins [] } +&{undo QLineEdit::undo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non slot false false void [] } +&{validator QLineEdit::validator commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non plain false false const QValidator * [] } +&{~QLineEdit QLineEdit::~QLineEdit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qlineedit.h non destructor false false [] } +######################################## ENUMS ######################################## +&{ActionPosition QLineEdit::ActionPosition commendable public [0xc822ffcd20 0xc822ffcec0]} +&{EchoMode QLineEdit::EchoMode commendable public [0xc822ffd540 0xc822ffd700 0xc822ffd7c0 0xc822ffd8e0]} diff --git a/internal/binding/dump/QtWidgets/QListView.txt b/internal/binding/dump/QtWidgets/QListView.txt new file mode 100755 index 00000000..4391af93 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QListView.txt @@ -0,0 +1,69 @@ +######################################## FUNCTIONS ######################################## +&{batchSize QListView::batchSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.cpp non plain false false int [] } +&{flow QListView::flow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.cpp non plain false false Flow [] } +&{gridSize QListView::gridSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.cpp non plain false false QSize [] } +&{isSelectionRectVisible QListView::isSelectionRectVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.cpp non plain false false bool [] } +&{isWrapping QListView::isWrapping commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.cpp non plain false false bool [] } +&{layoutMode QListView::layoutMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.cpp non plain false false LayoutMode [] } +&{modelColumn QListView::modelColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.cpp non plain false false int [] } +&{movement QListView::movement commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.cpp non plain false false Movement [] } +&{resizeMode QListView::resizeMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.cpp non plain false false ResizeMode [] } +&{setBatchSize QListView::setBatchSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.cpp non plain false false void [0xc822b2ea80] } +&{setFlow QListView::setFlow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.cpp non plain false false void [0xc822b2ed00] } +&{setGridSize QListView::setGridSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.cpp non plain false false void [0xc822b2efa0] } +&{setLayoutMode QListView::setLayoutMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.cpp non plain false false void [0xc822b2f200] } +&{setModelColumn QListView::setModelColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.cpp non plain false false void [0xc822b2f4a0] } +&{setMovement QListView::setMovement commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.cpp non plain false false void [0xc822b2f720] } +&{setResizeMode QListView::setResizeMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.cpp non plain false false void [0xc822b2f980] } +&{setSelectionRectVisible QListView::setSelectionRectVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.cpp non plain false false void [0xc822b2fc20] } +&{setSpacing QListView::setSpacing commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.cpp non plain false false void [0xc822b2fec0] } +&{setUniformItemSizes QListView::setUniformItemSizes commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.cpp non plain false false void [0xc822882180] } +&{setViewMode QListView::setViewMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.cpp non plain false false void [0xc8228823e0] } +&{setWordWrap QListView::setWordWrap commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.cpp non plain false false void [0xc822882660] } +&{setWrapping QListView::setWrapping commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.cpp non plain false false void [0xc822882920] } +&{spacing QListView::spacing commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.cpp non plain false false int [] } +&{uniformItemSizes QListView::uniformItemSizes commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.cpp non plain false false bool [] } +&{viewMode QListView::viewMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.cpp non plain false false ViewMode [] } +&{wordWrap QListView::wordWrap commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.cpp non plain false false bool [] } +&{QListView QListView::QListView commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h non constructor false false [0xc822896580] } +&{clearPropertyFlags QListView::clearPropertyFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h non plain false false void [] } +&{currentChanged QListView::currentChanged commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false void [0xc822897be0 0xc822897d40] } +&{dataChanged QListView::dataChanged commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false void [0xc8228a8020 0xc8228a8160 0xc8228a8260] } +&{dragLeaveEvent QListView::dragLeaveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false void [0xc8228a8540] } +&{dragMoveEvent QListView::dragMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false void [0xc8228a87c0] } +&{dropEvent QListView::dropEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false void [0xc8228a8a00] } +&{event QListView::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false bool [0xc8228a8be0] } +&{horizontalOffset QListView::horizontalOffset commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false int [] } +&{indexAt QListView::indexAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false QModelIndex [0xc8228a8f60] } +&{indexesMoved QListView::indexesMoved commendable unsupported_cgoOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h non signal false false void [0xc8228a91e0] } +&{isIndexHidden QListView::isIndexHidden commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false bool [0xc8228a94a0] } +&{isRowHidden QListView::isRowHidden commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h non plain false false bool [0xc8228a9720] } +&{mouseMoveEvent QListView::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false void [0xc8228a9960] } +&{mouseReleaseEvent QListView::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false void [0xc8228a9c20] } +&{moveCursor QListView::moveCursor commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false QModelIndex [0xc8228a9e60 0xc8228a9f20] } +&{paintEvent QListView::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false void [0xc8228c2280] } +&{rectForIndex QListView::rectForIndex commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h non plain false false QRect [0xc8228c2660] } +&{resizeEvent QListView::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false void [0xc8228c2a20] } +&{rowsAboutToBeRemoved QListView::rowsAboutToBeRemoved commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false void [0xc8228c2dc0 0xc8228c2ea0 0xc8228c2f60] } +&{rowsInserted QListView::rowsInserted commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false void [0xc8228c31e0 0xc8228c32c0 0xc8228c3380] } +&{scrollTo QListView::scrollTo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false void [0xc8228c35e0 0xc8228c36e0] } +&{selectedIndexes QListView::selectedIndexes commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false QModelIndexList [] } +&{selectionChanged QListView::selectionChanged commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false void [0xc8228c3bc0 0xc8228c3d60] } +&{setPositionForIndex QListView::setPositionForIndex commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h non plain false false void [0xc822a98120 0xc822a98280] } +&{setRowHidden QListView::setRowHidden commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h non plain false false void [0xc822a98580 0xc822a98640] } +&{setSelection QListView::setSelection commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false void [0xc822a98940 0xc822a98a20] } +&{startDrag QListView::startDrag commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false void [0xc822a98d20] } +&{timerEvent QListView::timerEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false void [0xc822a98fe0] } +&{updateGeometries QListView::updateGeometries commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false void [] } +&{verticalOffset QListView::verticalOffset commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false int [] } +&{viewOptions QListView::viewOptions commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false QStyleOptionViewItem [] } +&{viewportSizeHint QListView::viewportSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false QSize [] } +&{visualRect QListView::visualRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false QRect [0xc822a99920] } +&{visualRegionForSelection QListView::visualRegionForSelection commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h impure plain false false QRegion [0xc822a99c80] } +&{~QListView QListView::~QListView commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistview.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Flow QListView::Flow commendable public [0xc8228833a0 0xc822883420]} +&{LayoutMode QListView::LayoutMode commendable public [0xc822883680 0xc822883720]} +&{Movement QListView::Movement commendable public [0xc822883940 0xc822883a00 0xc822883aa0]} +&{ResizeMode QListView::ResizeMode commendable public [0xc822883d40 0xc822883de0]} +&{ViewMode QListView::ViewMode commendable public [0xc822896140 0xc822896240]} diff --git a/internal/binding/dump/QtWidgets/QListWidget.txt b/internal/binding/dump/QtWidgets/QListWidget.txt new file mode 100755 index 00000000..977e2668 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QListWidget.txt @@ -0,0 +1,55 @@ +######################################## FUNCTIONS ######################################## +&{count QListWidget::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.cpp non plain false false int [] } +&{currentRow QListWidget::currentRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.cpp non plain false false int [] } +&{isSortingEnabled QListWidget::isSortingEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.cpp non plain false false bool [] } +&{setCurrentRow QListWidget::setCurrentRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.cpp non plain false false void [0xc8228ec020] } +&{setSortingEnabled QListWidget::setSortingEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.cpp non plain false false void [0xc8228ec420] } +&{QListWidget QListWidget::QListWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non constructor false false [0xc8228ec6a0] } +&{addItem QListWidget::addItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false true 2 void [0xc8228ecce0] } +&{addItem QListWidget::addItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false void [0xc8228ed0a0] } +&{addItems QListWidget::addItems commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false void [0xc8228ed3e0] } +&{clear QListWidget::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non slot false false void [] } +&{closePersistentEditor QListWidget::closePersistentEditor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false void [0xc8228ed840] } +&{currentItem QListWidget::currentItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false QListWidgetItem * [] } +&{currentItemChanged QListWidget::currentItemChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non signal false false void [0xc8228ede20 0xc8228edf80] } +&{currentRowChanged QListWidget::currentRowChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non signal false false void [0xc822900300] } +&{currentTextChanged QListWidget::currentTextChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non signal false false void [0xc822900580] } +&{dropEvent QListWidget::dropEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h impure plain false false void [0xc822900800] } +&{dropMimeData QListWidget::dropMimeData commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h impure plain false false bool [0xc822900ae0 0xc822900c20 0xc822900d80] } +&{editItem QListWidget::editItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false void [0xc8229010c0] } +&{event QListWidget::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h impure plain false false bool [0xc822901440] } +&{findItems QListWidget::findItems commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false QList [0xc8229017c0 0xc8229018a0] } +&{indexFromItem QListWidget::indexFromItem commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false QModelIndex [0xc822901b40] } +&{insertItem QListWidget::insertItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false void [0xc822901e80 0xc822912060] } +&{insertItem QListWidget::insertItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false true 2 void [0xc822912540 0xc822912640] } +&{insertItems QListWidget::insertItems commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false void [0xc822912a80 0xc822912bc0] } +&{item QListWidget::item commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false QListWidgetItem * [0xc822913740] } +&{itemActivated QListWidget::itemActivated commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non signal false false void [0xc822913a20] } +&{itemAt QListWidget::itemAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false QListWidgetItem * [0xc822913fc0] } +&{itemAt QListWidget::itemAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false true 2 QListWidgetItem * [0xc822a88260 0xc822a882e0] } +&{itemChanged QListWidget::itemChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non signal false false void [0xc822a88560] } +&{itemClicked QListWidget::itemClicked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non signal false false void [0xc822a88820] } +&{itemDoubleClicked QListWidget::itemDoubleClicked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non signal false false void [0xc822a88b40] } +&{itemEntered QListWidget::itemEntered commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non signal false false void [0xc822a88de0] } +&{itemFromIndex QListWidget::itemFromIndex commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false QListWidgetItem * [0xc822a890e0] } +&{itemPressed QListWidget::itemPressed commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non signal false false void [0xc822a893c0] } +&{itemSelectionChanged QListWidget::itemSelectionChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non signal false false void [] } +&{itemWidget QListWidget::itemWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false QWidget * [0xc822a89760] } +&{items QListWidget::items commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false QList [0xc822a89aa0] } +&{mimeData QListWidget::mimeData commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h impure plain false false QMimeData * [0xc822a89d20] } +&{mimeTypes QListWidget::mimeTypes commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h impure plain false false QStringList [] } +&{openPersistentEditor QListWidget::openPersistentEditor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false void [0xc822924160] } +&{removeItemWidget QListWidget::removeItemWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false void [0xc8229243e0] } +&{row QListWidget::row commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false int [0xc822924620] } +&{scrollToItem QListWidget::scrollToItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non slot false false void [0xc8229248c0 0xc822924a20] } +&{selectedItems QListWidget::selectedItems commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false QList [] } +&{setCurrentItem QListWidget::setCurrentItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false void [0xc822924e60] } +&{setCurrentItem QListWidget::setCurrentItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false true 2 void [0xc822925100 0xc8229251e0] } +&{setCurrentRow QListWidget::setCurrentRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false true 2 void [0xc822925440 0xc8229254e0] } +&{setItemWidget QListWidget::setItemWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false void [0xc822925e40 0xc822925f40] } +&{sortItems QListWidget::sortItems commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false void [0xc82292c460] } +&{supportedDropActions QListWidget::supportedDropActions commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h impure plain false false Qt::DropActions [] } +&{takeItem QListWidget::takeItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false QListWidgetItem * [0xc82292c960] } +&{visualItemRect QListWidget::visualItemRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false QRect [0xc82292cbe0] } +&{~QListWidget QListWidget::~QListWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QListWidgetItem.txt b/internal/binding/dump/QtWidgets/QListWidgetItem.txt new file mode 100755 index 00000000..30546ffe --- /dev/null +++ b/internal/binding/dump/QtWidgets/QListWidgetItem.txt @@ -0,0 +1,45 @@ +######################################## FUNCTIONS ######################################## +&{QListWidgetItem QListWidgetItem::QListWidgetItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.cpp non constructor false false [0xc82292d7c0 0xc82292d860] } +&{QListWidgetItem QListWidgetItem::QListWidgetItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.cpp non constructor false true 3 [0xc82292da80 0xc82292db20 0xc82292dbe0 0xc82292dc80] } +&{QListWidgetItem QListWidgetItem::QListWidgetItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.cpp non constructor false true 2 [0xc82292dec0 0xc82292df60 0xc822744000] } +&{setFlags QListWidgetItem::setFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.cpp non plain false false void [0xc822744240] } +&{QListWidgetItem QListWidgetItem::QListWidgetItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non constructor false true 4 [0xc822744780] } +&{background QListWidgetItem::background commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false QBrush [] } +&{checkState QListWidgetItem::checkState commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false Qt::CheckState [] } +&{clone QListWidgetItem::clone commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h impure plain false false QListWidgetItem * [] } +&{data QListWidgetItem::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h impure plain false false QVariant [0xc822744fc0] } +&{flags QListWidgetItem::flags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false Qt::ItemFlags [] } +&{font QListWidgetItem::font commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false QFont [] } +&{foreground QListWidgetItem::foreground commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false QBrush [] } +&{icon QListWidgetItem::icon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false QIcon [] } +&{isHidden QListWidgetItem::isHidden commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false bool [] } +&{isSelected QListWidgetItem::isSelected commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false bool [] } +&{listWidget QListWidgetItem::listWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false QListWidget * [] } +&{operator< QListWidgetItem::operator< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h impure plain false false bool [0xc822745b20] } +&{operator= QListWidgetItem::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false QListWidgetItem & [0xc822745e60] } +&{read QListWidgetItem::read commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h impure plain false false void [0xc822938140] } +&{setBackground QListWidgetItem::setBackground commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false void [0xc822938380] } +&{setCheckState QListWidgetItem::setCheckState commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false void [0xc822938780] } +&{setData QListWidgetItem::setData commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h impure plain false false void [0xc8229389e0 0xc822938a80] } +&{setFont QListWidgetItem::setFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false void [0xc822938cc0] } +&{setForeground QListWidgetItem::setForeground commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false void [0xc822938ee0] } +&{setHidden QListWidgetItem::setHidden commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false void [0xc822939160] } +&{setIcon QListWidgetItem::setIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false void [0xc8229393c0] } +&{setSelected QListWidgetItem::setSelected commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false void [0xc822939640] } +&{setSizeHint QListWidgetItem::setSizeHint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false void [0xc822939880] } +&{setStatusTip QListWidgetItem::setStatusTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false void [0xc822939aa0] } +&{setText QListWidgetItem::setText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false void [0xc822939d00] } +&{setTextAlignment QListWidgetItem::setTextAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false void [0xc822939ec0] } +&{setToolTip QListWidgetItem::setToolTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false void [0xc822942340] } +&{setWhatsThis QListWidgetItem::setWhatsThis commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false void [0xc822942560] } +&{sizeHint QListWidgetItem::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false QSize [] } +&{statusTip QListWidgetItem::statusTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false QString [] } +&{text QListWidgetItem::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false QString [] } +&{textAlignment QListWidgetItem::textAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false int [] } +&{toolTip QListWidgetItem::toolTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false QString [] } +&{type QListWidgetItem::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false int [] } +&{whatsThis QListWidgetItem::whatsThis commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h non plain false false QString [] } +&{write QListWidgetItem::write commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h impure plain false false void [0xc8229431e0] } +&{~QListWidgetItem QListWidgetItem::~QListWidgetItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qlistwidget.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{ItemType QListWidgetItem::ItemType commendable public [0xc822744480 0xc822744520]} diff --git a/internal/binding/dump/QtWidgets/QMacCocoaViewContainer.txt b/internal/binding/dump/QtWidgets/QMacCocoaViewContainer.txt new file mode 100755 index 00000000..a93ae9a1 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QMacCocoaViewContainer.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{cocoaView QMacCocoaViewContainer::cocoaView commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmaccocoaviewcontainer_mac.h non plain false false NSView * [] } +&{setCocoaView QMacCocoaViewContainer::setCocoaView commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmaccocoaviewcontainer_mac.h non plain false false void [0xc82338ea40] } +&{~QMacCocoaViewContainer QMacCocoaViewContainer::~QMacCocoaViewContainer commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmaccocoaviewcontainer_mac.h impure destructor false false [] } +&{QMacCocoaViewContainer QMacCocoaViewContainer::QMacCocoaViewContainer commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmaccocoaviewcontainer_mac.mm non constructor false false [0xc82338f0e0 0xc82338f1c0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QMacNativeWidget.txt b/internal/binding/dump/QtWidgets/QMacNativeWidget.txt new file mode 100755 index 00000000..5a866225 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QMacNativeWidget.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{QMacNativeWidget QMacNativeWidget::QMacNativeWidget commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmacnativewidget_mac.h non constructor false false [0xc82338f5e0] } +&{event QMacNativeWidget::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmacnativewidget_mac.h impure plain false false bool [0xc82338fa00] } +&{sizeHint QMacNativeWidget::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmacnativewidget_mac.h impure plain false false QSize [] } +&{~QMacNativeWidget QMacNativeWidget::~QMacNativeWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmacnativewidget_mac.h non destructor false false [] } +&{nativeView QMacNativeWidget::nativeView commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmacnativewidget_mac.mm non plain false false NSView * [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QMainWindow.txt b/internal/binding/dump/QtWidgets/QMainWindow.txt new file mode 100755 index 00000000..c9261f24 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QMainWindow.txt @@ -0,0 +1,59 @@ +######################################## FUNCTIONS ######################################## +&{dockOptions QMainWindow::dockOptions commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.cpp non plain false false DockOptions [] } +&{documentMode QMainWindow::documentMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.cpp non plain false false bool [] } +&{iconSize QMainWindow::iconSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.cpp non plain false false QSize [] } +&{isAnimated QMainWindow::isAnimated commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.cpp non plain false false bool [] } +&{isDockNestingEnabled QMainWindow::isDockNestingEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.cpp non plain false false bool [] } +&{setAnimated QMainWindow::setAnimated commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.cpp non slot false false void [0xc82337dde0] } +&{setDockNestingEnabled QMainWindow::setDockNestingEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.cpp non slot false false void [0xc823364180] } +&{setDockOptions QMainWindow::setDockOptions commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.cpp non plain false false void [0xc823364540] } +&{setDocumentMode QMainWindow::setDocumentMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.cpp non plain false false void [0xc823364820] } +&{setIconSize QMainWindow::setIconSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.cpp non plain false false void [0xc823364b60] } +&{setTabShape QMainWindow::setTabShape commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.cpp non plain false false void [0xc823364f40] } +&{setToolButtonStyle QMainWindow::setToolButtonStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.cpp non plain false false void [0xc823365420] } +&{setUnifiedTitleAndToolBarOnMac QMainWindow::setUnifiedTitleAndToolBarOnMac commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.cpp non slot false false void [0xc823365840] } +&{splitDockWidget QMainWindow::splitDockWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.cpp non plain false false void [0xc823365cc0 0xc823365d80 0xc823365e80] } +&{tabShape QMainWindow::tabShape commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.cpp non plain false false QTabWidget::TabShape [] } +&{tabifiedDockWidgets QMainWindow::tabifiedDockWidgets commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.cpp non plain false false QList [0xc82334c500] } +&{tabifyDockWidget QMainWindow::tabifyDockWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.cpp non plain false false void [0xc82334c880 0xc82334ca00] } +&{toolButtonStyle QMainWindow::toolButtonStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.cpp non plain false false Qt::ToolButtonStyle [] } +&{unifiedTitleAndToolBarOnMac QMainWindow::unifiedTitleAndToolBarOnMac commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.cpp non plain false false bool [] } +&{QMainWindow QMainWindow::QMainWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non constructor false false [0xc82334ddc0 0xc82334df00] } +&{addDockWidget QMainWindow::addDockWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false false void [0xc823338280 0xc823338360] } +&{addDockWidget QMainWindow::addDockWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false true 2 void [0xc823338800 0xc823338940 0xc823338ac0] } +&{addToolBar QMainWindow::addToolBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false true 3 QToolBar * [0xc823338f20] } +&{addToolBar QMainWindow::addToolBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false true 2 void [0xc823339320] } +&{addToolBar QMainWindow::addToolBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false false void [0xc8233397a0 0xc823339920] } +&{addToolBarBreak QMainWindow::addToolBarBreak commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false false void [0xc823339d20] } +&{centralWidget QMainWindow::centralWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false false QWidget * [] } +&{contextMenuEvent QMainWindow::contextMenuEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h impure plain false false void [0xc823324280] } +&{corner QMainWindow::corner commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false false Qt::DockWidgetArea [0xc8233247a0] } +&{createPopupMenu QMainWindow::createPopupMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h impure plain false false QMenu * [] } +&{dockWidgetArea QMainWindow::dockWidgetArea commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false false Qt::DockWidgetArea [0xc823324dc0] } +&{event QMainWindow::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h impure plain false false bool [0xc8233251e0] } +&{iconSizeChanged QMainWindow::iconSizeChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non signal false false void [0xc823325620] } +&{insertToolBar QMainWindow::insertToolBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false false void [0xc823325aa0 0xc823325b80] } +&{insertToolBarBreak QMainWindow::insertToolBarBreak commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false false void [0xc823325f60] } +&{menuBar QMainWindow::menuBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false false QMenuBar * [] } +&{menuWidget QMainWindow::menuWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false false QWidget * [] } +&{removeDockWidget QMainWindow::removeDockWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false false void [0xc82330cb40] } +&{removeToolBar QMainWindow::removeToolBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false false void [0xc82330cf20] } +&{removeToolBarBreak QMainWindow::removeToolBarBreak commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false false void [0xc82330d380] } +&{restoreDockWidget QMainWindow::restoreDockWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false false bool [0xc82330d920] } +&{restoreState QMainWindow::restoreState commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false false bool [0xc82330dda0 0xc82330dfc0] } +&{saveState QMainWindow::saveState commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false false QByteArray [0xc8232fc480] } +&{setCentralWidget QMainWindow::setCentralWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false false void [0xc8232fc820] } +&{setCorner QMainWindow::setCorner commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false false void [0xc8232fcc20 0xc8232fcd80] } +&{setMenuBar QMainWindow::setMenuBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false false void [0xc8232fd1e0] } +&{setMenuWidget QMainWindow::setMenuWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false false void [0xc8232fd700] } +&{setStatusBar QMainWindow::setStatusBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false false void [0xc8232fdba0] } +&{setTabPosition QMainWindow::setTabPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false false void [0xc8232e6060 0xc8232e62e0] } +&{statusBar QMainWindow::statusBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false false QStatusBar * [] } +&{tabPosition QMainWindow::tabPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false false QTabWidget::TabPosition [0xc8232e6b60] } +&{takeCentralWidget QMainWindow::takeCentralWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false false QWidget * [] } +&{toolBarArea QMainWindow::toolBarArea commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false false Qt::ToolBarArea [0xc8232e72a0] } +&{toolBarBreak QMainWindow::toolBarBreak commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non plain false false bool [0xc8232e7680] } +&{toolButtonStyleChanged QMainWindow::toolButtonStyleChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non signal false false void [0xc8232e7a60] } +&{~QMainWindow QMainWindow::~QMainWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmainwindow.h non destructor false false [] } +######################################## ENUMS ######################################## +&{DockOption QMainWindow::DockOption commendable public QMainWindow::DockOptions [0xc82334d4c0 0xc82334d540 0xc82334d720 0xc82334d800 0xc82334d960]} diff --git a/internal/binding/dump/QtWidgets/QMdiArea.txt b/internal/binding/dump/QtWidgets/QMdiArea.txt new file mode 100755 index 00000000..5a0ac693 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QMdiArea.txt @@ -0,0 +1,50 @@ +######################################## FUNCTIONS ######################################## +&{activationOrder QMdiArea::activationOrder commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.cpp non plain false false WindowOrder [] } +&{background QMdiArea::background commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.cpp non plain false false QBrush [] } +&{documentMode QMdiArea::documentMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.cpp non plain false false bool [] } +&{setActivationOrder QMdiArea::setActivationOrder commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.cpp non plain false false void [0xc8232c4420] } +&{setBackground QMdiArea::setBackground commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.cpp non plain false false void [0xc8232c48e0] } +&{setDocumentMode QMdiArea::setDocumentMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.cpp non plain false false void [0xc8232c4e80] } +&{setTabPosition QMdiArea::setTabPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.cpp non plain false false void [0xc8232c5380] } +&{setTabShape QMdiArea::setTabShape commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.cpp non plain false false void [0xc8232c5880] } +&{setTabsClosable QMdiArea::setTabsClosable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.cpp non plain false false void [0xc8232c5e60] } +&{setTabsMovable QMdiArea::setTabsMovable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.cpp non plain false false void [0xc8232b4320] } +&{setViewMode QMdiArea::setViewMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.cpp non plain false false void [0xc8232b4860] } +&{tabPosition QMdiArea::tabPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.cpp non plain false false QTabWidget::TabPosition [] } +&{tabShape QMdiArea::tabShape commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.cpp non plain false false QTabWidget::TabShape [] } +&{tabsClosable QMdiArea::tabsClosable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.cpp non plain false false bool [] } +&{tabsMovable QMdiArea::tabsMovable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.cpp non plain false false bool [] } +&{viewMode QMdiArea::viewMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.cpp non plain false false ViewMode [] } +&{QMdiArea QMdiArea::QMdiArea commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h non constructor false false [0xc82329c660] } +&{activateNextSubWindow QMdiArea::activateNextSubWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h non slot false false void [] } +&{activatePreviousSubWindow QMdiArea::activatePreviousSubWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h non slot false false void [] } +&{activeSubWindow QMdiArea::activeSubWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h non plain false false QMdiSubWindow * [] } +&{addSubWindow QMdiArea::addSubWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h non plain false false QMdiSubWindow * [0xc82329d020 0xc82329d0a0] } +&{cascadeSubWindows QMdiArea::cascadeSubWindows commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h non slot false false void [] } +&{childEvent QMdiArea::childEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h impure plain false false void [0xc82329d700] } +&{closeActiveSubWindow QMdiArea::closeActiveSubWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h non slot false false void [] } +&{closeAllSubWindows QMdiArea::closeAllSubWindows commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h non slot false false void [] } +&{currentSubWindow QMdiArea::currentSubWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h non plain false false QMdiSubWindow * [] } +&{event QMdiArea::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h impure plain false false bool [0xc8232780c0] } +&{eventFilter QMdiArea::eventFilter commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h impure plain false false bool [0xc8232783c0 0xc823278500] } +&{minimumSizeHint QMdiArea::minimumSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h impure plain false false QSize [] } +&{paintEvent QMdiArea::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h impure plain false false void [0xc823278a00] } +&{removeSubWindow QMdiArea::removeSubWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h non plain false false void [0xc823278d80] } +&{resizeEvent QMdiArea::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h impure plain false false void [0xc823279260] } +&{scrollContentsBy QMdiArea::scrollContentsBy commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h impure plain false false void [0xc8232795e0 0xc8232797a0] } +&{setActiveSubWindow QMdiArea::setActiveSubWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h non slot false false void [0xc823279c20] } +&{setOption QMdiArea::setOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h non plain false false void [0xc8232640a0 0xc823264180] } +&{setupViewport QMdiArea::setupViewport commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h impure slot false false void [0xc823264580] } +&{showEvent QMdiArea::showEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h impure plain false false void [0xc823264a60] } +&{sizeHint QMdiArea::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h impure plain false false QSize [] } +&{subWindowActivated QMdiArea::subWindowActivated commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h non signal false false void [0xc8232651e0] } +&{subWindowList QMdiArea::subWindowList commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h non plain false false QList [0xc823265740] } +&{testOption QMdiArea::testOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h non plain false false bool [0xc823265b60] } +&{tileSubWindows QMdiArea::tileSubWindows commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h non slot false false void [] } +&{timerEvent QMdiArea::timerEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h impure plain false false void [0xc8232541c0] } +&{viewportEvent QMdiArea::viewportEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h impure plain false false bool [0xc823254640] } +&{~QMdiArea QMdiArea::~QMdiArea commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdiarea.h non destructor false false [] } +######################################## ENUMS ######################################## +&{AreaOption QMdiArea::AreaOption commendable public QMdiArea::AreaOptions [0xc8232b59c0]} +&{ViewMode QMdiArea::ViewMode commendable public [0xc8232b5cc0 0xc8232b5d40]} +&{WindowOrder QMdiArea::WindowOrder commendable public [0xc82329c000 0xc82329c0e0 0xc82329c1c0]} diff --git a/internal/binding/dump/QtWidgets/QMdiSubWindow.txt b/internal/binding/dump/QtWidgets/QMdiSubWindow.txt new file mode 100755 index 00000000..e84580ab --- /dev/null +++ b/internal/binding/dump/QtWidgets/QMdiSubWindow.txt @@ -0,0 +1,43 @@ +######################################## FUNCTIONS ######################################## +&{keyboardPageStep QMdiSubWindow::keyboardPageStep commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.cpp non plain false false int [] } +&{keyboardSingleStep QMdiSubWindow::keyboardSingleStep commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.cpp non plain false false int [] } +&{setKeyboardPageStep QMdiSubWindow::setKeyboardPageStep commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.cpp non plain false false void [0xc823242e00] } +&{setKeyboardSingleStep QMdiSubWindow::setKeyboardSingleStep commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.cpp non plain false false void [0xc823243420] } +&{QMdiSubWindow QMdiSubWindow::QMdiSubWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h non constructor false false [0xc82322e540 0xc82322e720] } +&{aboutToActivate QMdiSubWindow::aboutToActivate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h non signal false false void [] } +&{changeEvent QMdiSubWindow::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h impure plain false false void [0xc82322f140] } +&{childEvent QMdiSubWindow::childEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h impure plain false false void [0xc82322f620] } +&{closeEvent QMdiSubWindow::closeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h impure plain false false void [0xc82322f960] } +&{contextMenuEvent QMdiSubWindow::contextMenuEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h impure plain false false void [0xc82322fd40] } +&{event QMdiSubWindow::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h impure plain false false bool [0xc82321a180] } +&{eventFilter QMdiSubWindow::eventFilter commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h impure plain false false bool [0xc82321a460 0xc82321a500] } +&{focusInEvent QMdiSubWindow::focusInEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h impure plain false false void [0xc82321a7e0] } +&{focusOutEvent QMdiSubWindow::focusOutEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h impure plain false false void [0xc82321abe0] } +&{hideEvent QMdiSubWindow::hideEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h impure plain false false void [0xc82321af20] } +&{isShaded QMdiSubWindow::isShaded commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h non plain false false bool [] } +&{keyPressEvent QMdiSubWindow::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h impure plain false false void [0xc82321b480] } +&{leaveEvent QMdiSubWindow::leaveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h impure plain false false void [0xc82321b800] } +&{mdiArea QMdiSubWindow::mdiArea commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h non plain false false QMdiArea * [] } +&{minimumSizeHint QMdiSubWindow::minimumSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h impure plain false false QSize [] } +&{mouseDoubleClickEvent QMdiSubWindow::mouseDoubleClickEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h impure plain false false void [0xc823202260] } +&{mouseMoveEvent QMdiSubWindow::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h impure plain false false void [0xc823202540] } +&{mousePressEvent QMdiSubWindow::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h impure plain false false void [0xc8232027a0] } +&{mouseReleaseEvent QMdiSubWindow::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h impure plain false false void [0xc823202a80] } +&{moveEvent QMdiSubWindow::moveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h impure plain false false void [0xc823202e00] } +&{paintEvent QMdiSubWindow::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h impure plain false false void [0xc8232031a0] } +&{resizeEvent QMdiSubWindow::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h impure plain false false void [0xc823203580] } +&{setOption QMdiSubWindow::setOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h non plain false false void [0xc823203ac0 0xc823203c60] } +&{setSystemMenu QMdiSubWindow::setSystemMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h non plain false false void [0xc8231f4160] } +&{setWidget QMdiSubWindow::setWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h non plain false false void [0xc8231f45a0] } +&{showEvent QMdiSubWindow::showEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h impure plain false false void [0xc8231f49c0] } +&{showShaded QMdiSubWindow::showShaded commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h non slot false false void [] } +&{showSystemMenu QMdiSubWindow::showSystemMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h non slot false false void [] } +&{sizeHint QMdiSubWindow::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h impure plain false false QSize [] } +&{systemMenu QMdiSubWindow::systemMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h non plain false false QMenu * [] } +&{testOption QMdiSubWindow::testOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h non plain false false bool [0xc8231f58e0] } +&{timerEvent QMdiSubWindow::timerEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h impure plain false false void [0xc8231f5d20] } +&{widget QMdiSubWindow::widget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h non plain false false QWidget * [] } +&{windowStateChanged QMdiSubWindow::windowStateChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h non signal false false void [0xc8231de280 0xc8231de400] } +&{~QMdiSubWindow QMdiSubWindow::~QMdiSubWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmdisubwindow.h non destructor false false [] } +######################################## ENUMS ######################################## +&{SubWindowOption QMdiSubWindow::SubWindowOption commendable public QMdiSubWindow::SubWindowOptions [0xc823243a80 0xc823243d60 0xc823243e60 0xc823243f60]} diff --git a/internal/binding/dump/QtWidgets/QMenu.txt b/internal/binding/dump/QtWidgets/QMenu.txt new file mode 100755 index 00000000..9f948b7a --- /dev/null +++ b/internal/binding/dump/QtWidgets/QMenu.txt @@ -0,0 +1,67 @@ +######################################## FUNCTIONS ######################################## +&{icon QMenu::icon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.cpp non plain false false QIcon [] } +&{isTearOffEnabled QMenu::isTearOffEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.cpp non plain false false bool [] } +&{separatorsCollapsible QMenu::separatorsCollapsible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.cpp non plain false false bool [] } +&{setIcon QMenu::setIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.cpp non plain false false void [0xc8231dfdc0] } +&{setSeparatorsCollapsible QMenu::setSeparatorsCollapsible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.cpp non plain false false void [0xc8231c8480] } +&{setTearOffEnabled QMenu::setTearOffEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.cpp non plain false false void [0xc8231c8be0] } +&{setTitle QMenu::setTitle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.cpp non plain false false void [0xc8231c8f60] } +&{setToolTipsVisible QMenu::setToolTipsVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.cpp non plain false false void [0xc8231c9520] } +&{title QMenu::title commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.cpp non plain false false QString [] } +&{toolTipsVisible QMenu::toolTipsVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.cpp non plain false false bool [] } +&{QMenu QMenu::QMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non constructor false false [0xc8231c9ce0] } +&{QMenu QMenu::QMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non constructor false true 2 [0xc8231ba100 0xc8231ba1e0] } +&{aboutToHide QMenu::aboutToHide commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non signal false false void [] } +&{aboutToShow QMenu::aboutToShow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non signal false false void [] } +&{actionAt QMenu::actionAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false false QAction * [0xc8231bb260] } +&{actionEvent QMenu::actionEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h impure plain false false void [0xc8231bb660] } +&{actionGeometry QMenu::actionGeometry commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false false QRect [0xc8231bbae0] } +&{activeAction QMenu::activeAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false false QAction * [] } +&{addAction QMenu::addAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false true 2 QAction * [0xc8231bbfc0 0xc8231aa080] } +&{addAction QMenu::addAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false true 4 QAction * [0xc8231aa360 0xc8231aa400 0xc8231aa620 0xc8231aa6e0 0xc8231aa8a0] } +&{addAction QMenu::addAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false false QAction * [0xc8231aac40] } +&{addAction QMenu::addAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false true 3 QAction * [0xc8231aaea0 0xc8231ab020 0xc8231ab1a0 0xc8231ab2a0] } +&{addMenu QMenu::addMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false false QAction * [0xc8231ab5e0] } +&{addMenu QMenu::addMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false true 3 QMenu * [0xc8231ab8a0 0xc8231ab9a0] } +&{addMenu QMenu::addMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false true 2 QMenu * [0xc8231abc20] } +&{addSection QMenu::addSection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false true 2 QAction * [0xc8231abf40 0xc823190020] } +&{addSection QMenu::addSection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false false QAction * [0xc823190360] } +&{addSeparator QMenu::addSeparator commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false false QAction * [] } +&{changeEvent QMenu::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h impure plain false false void [0xc8231907c0] } +&{clear QMenu::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false false void [] } +&{columnCount QMenu::columnCount commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false false int [] } +&{defaultAction QMenu::defaultAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false false QAction * [] } +&{enterEvent QMenu::enterEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h impure plain false false void [0xc823191020] } +&{event QMenu::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h impure plain false false bool [0xc823191320] } +&{exec QMenu::exec commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false false QAction * [] } +&{exec QMenu::exec commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain true true 3 QAction * [0xc8231915a0 0xc8231916e0 0xc8231917a0 0xc8231918a0] } +&{exec QMenu::exec commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false true 2 QAction * [0xc823191b20 0xc823191c00] } +&{focusNextPrevChild QMenu::focusNextPrevChild commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h impure plain false false bool [0xc823182040] } +&{hideEvent QMenu::hideEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h impure plain false false void [0xc823182360] } +&{hideTearOffMenu QMenu::hideTearOffMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false false void [] } +&{hovered QMenu::hovered commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non signal false false void [0xc823182a00] } +&{initStyleOption QMenu::initStyleOption commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false false void [0xc823182e40 0xc823182fe0] } +&{insertMenu QMenu::insertMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false false QAction * [0xc823183440 0xc823183540] } +&{insertSection QMenu::insertSection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false true 2 QAction * [0xc823183920 0xc823183a20 0xc823183b40] } +&{insertSection QMenu::insertSection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false false QAction * [0xc823183ea0 0xc823183f40] } +&{insertSeparator QMenu::insertSeparator commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false false QAction * [0xc82316a3e0] } +&{isEmpty QMenu::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false false bool [] } +&{isTearOffMenuVisible QMenu::isTearOffMenuVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false false bool [] } +&{keyPressEvent QMenu::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h impure plain false false void [0xc82316af20] } +&{leaveEvent QMenu::leaveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h impure plain false false void [0xc82316b360] } +&{menuAction QMenu::menuAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false false QAction * [] } +&{mouseMoveEvent QMenu::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h impure plain false false void [0xc82316b960] } +&{mousePressEvent QMenu::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h impure plain false false void [0xc82316bd00] } +&{mouseReleaseEvent QMenu::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h impure plain false false void [0xc82315a1c0] } +&{paintEvent QMenu::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h impure plain false false void [0xc82315a520] } +&{setAsDockMenu QMenu::setAsDockMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false false void [] } +&{setDefaultAction QMenu::setDefaultAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false false void [0xc82315aba0] } +&{popup QMenu::popup commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false false void [0xc82315b360 0xc82315b440] } +&{setActiveAction QMenu::setActiveAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false false void [0xc82315b7e0] } +&{sizeHint QMenu::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h impure plain false false QSize [] } +&{timerEvent QMenu::timerEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h impure plain false false void [0xc82315bfe0] } +&{toNSMenu QMenu::toNSMenu commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non plain false false NSMenu * [] } +&{triggered QMenu::triggered commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non signal false false void [0xc82314a4e0] } +&{wheelEvent QMenu::wheelEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h impure plain false false void [0xc82314aec0] } +&{~QMenu QMenu::~QMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenu.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QMenuBar.txt b/internal/binding/dump/QtWidgets/QMenuBar.txt new file mode 100755 index 00000000..dd30a446 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QMenuBar.txt @@ -0,0 +1,47 @@ +######################################## FUNCTIONS ######################################## +&{isDefaultUp QMenuBar::isDefaultUp commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.cpp non plain false false bool [] } +&{isNativeMenuBar QMenuBar::isNativeMenuBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.cpp non plain false false bool [] } +&{setCornerWidget QMenuBar::setCornerWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.cpp non plain false false void [0xc82313f660 0xc82313f7c0] } +&{setDefaultUp QMenuBar::setDefaultUp commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.cpp non plain false false void [0xc82313fc20] } +&{setNativeMenuBar QMenuBar::setNativeMenuBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.cpp non plain false false void [0xc82313ff20] } +&{QMenuBar QMenuBar::QMenuBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h non constructor false false [0xc8231142c0] } +&{actionAt QMenuBar::actionAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h non plain false false QAction * [0xc823114880] } +&{actionEvent QMenuBar::actionEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h impure plain false false void [0xc823114ca0] } +&{actionGeometry QMenuBar::actionGeometry commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h non plain false false QRect [0xc823115040] } +&{activeAction QMenuBar::activeAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h non plain false false QAction * [] } +&{addAction QMenuBar::addAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h non plain false false QAction * [0xc823115640] } +&{addAction QMenuBar::addAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h non plain false true 2 QAction * [0xc823115920 0xc823115a40 0xc823115be0] } +&{addMenu QMenuBar::addMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h non plain false false QAction * [0xc82310c000] } +&{addMenu QMenuBar::addMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h non plain false true 3 QMenu * [0xc82310c300 0xc82310c440] } +&{addMenu QMenuBar::addMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h non plain false true 2 QMenu * [0xc82310c6c0] } +&{addSeparator QMenuBar::addSeparator commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h non plain false false QAction * [] } +&{changeEvent QMenuBar::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h impure plain false false void [0xc82310ccc0] } +&{clear QMenuBar::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h non plain false false void [] } +&{cornerWidget QMenuBar::cornerWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h non plain false false QWidget * [0xc82310d140] } +&{defaultAction QMenuBar::defaultAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h non plain false false QAction * [] } +&{event QMenuBar::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h impure plain false false bool [0xc82310d620] } +&{eventFilter QMenuBar::eventFilter commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h impure plain false false bool [0xc82310d9c0 0xc82310da80] } +&{focusInEvent QMenuBar::focusInEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h impure plain false false void [0xc82310de40] } +&{focusOutEvent QMenuBar::focusOutEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h impure plain false false void [0xc8230f60c0] } +&{heightForWidth QMenuBar::heightForWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h impure plain false false int [0xc8230f6520] } +&{hovered QMenuBar::hovered commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h non signal false false void [0xc8230f6880] } +&{initStyleOption QMenuBar::initStyleOption commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h non plain false false void [0xc8230f6c60 0xc8230f6ea0] } +&{insertMenu QMenuBar::insertMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h non plain false false QAction * [0xc8230f7180 0xc8230f72e0] } +&{insertSeparator QMenuBar::insertSeparator commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h non plain false false QAction * [0xc8230f75e0] } +&{keyPressEvent QMenuBar::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h impure plain false false void [0xc8230f7960] } +&{leaveEvent QMenuBar::leaveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h impure plain false false void [0xc8230f7d40] } +&{minimumSizeHint QMenuBar::minimumSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h impure plain false false QSize [] } +&{mouseMoveEvent QMenuBar::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h impure plain false false void [0xc8230e8480] } +&{mousePressEvent QMenuBar::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h impure plain false false void [0xc8230e8840] } +&{mouseReleaseEvent QMenuBar::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h impure plain false false void [0xc8230e8c80] } +&{paintEvent QMenuBar::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h impure plain false false void [0xc8230e9080] } +&{resizeEvent QMenuBar::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h impure plain false false void [0xc8230e96e0] } +&{setActiveAction QMenuBar::setActiveAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h non plain false false void [0xc8230e9b80] } +&{setDefaultAction QMenuBar::setDefaultAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h non plain false false void [0xc8230e9f20] } +&{setVisible QMenuBar::setVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h impure slot false false void [0xc8230d82a0] } +&{sizeHint QMenuBar::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h impure plain false false QSize [] } +&{timerEvent QMenuBar::timerEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h impure plain false false void [0xc8230d8740] } +&{toNSMenu QMenuBar::toNSMenu commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h non plain false false NSMenu * [] } +&{triggered QMenuBar::triggered commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h non signal false false void [0xc8230d8be0] } +&{~QMenuBar QMenuBar::~QMenuBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qmenubar.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QMessageBox.txt b/internal/binding/dump/QtWidgets/QMessageBox.txt new file mode 100755 index 00000000..77d4a1c5 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QMessageBox.txt @@ -0,0 +1,59 @@ +######################################## FUNCTIONS ######################################## +&{detailedText QMessageBox::detailedText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.cpp non plain false false QString [] } +&{icon QMessageBox::icon commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.cpp non plain false false Icon [] } +&{iconPixmap QMessageBox::iconPixmap commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.cpp non plain false false QPixmap [] } +&{informativeText QMessageBox::informativeText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.cpp non plain false false QString [] } +&{setDetailedText QMessageBox::setDetailedText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.cpp non plain false false void [0xc823288d40] } +&{setIcon QMessageBox::setIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.cpp non plain false false void [0xc823289040] } +&{setIconPixmap QMessageBox::setIconPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.cpp non plain false false void [0xc823289320] } +&{setInformativeText QMessageBox::setInformativeText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.cpp non plain false false void [0xc823289680] } +&{setStandardButtons QMessageBox::setStandardButtons commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.cpp non plain false false void [0xc823289960] } +&{setText QMessageBox::setText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.cpp non plain false false void [0xc823289c00] } +&{setTextFormat QMessageBox::setTextFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.cpp non plain false false void [0xc823289f20] } +&{setTextInteractionFlags QMessageBox::setTextInteractionFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.cpp non plain false false void [0xc823278200] } +&{standardButtons QMessageBox::standardButtons commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.cpp non plain false false StandardButtons [] } +&{text QMessageBox::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.cpp non plain false false QString [] } +&{textFormat QMessageBox::textFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.cpp non plain false false Qt::TextFormat [] } +&{textInteractionFlags QMessageBox::textInteractionFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.cpp non plain false false Qt::TextInteractionFlags [] } +&{QMessageBox QMessageBox::QMessageBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non constructor false true 2 [0xc823265720 0xc8232657a0 0xc823265860 0xc823265940 0xc823265a60 0xc823265b40] } +&{QMessageBox QMessageBox::QMessageBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non constructor false false [0xc823265e40] } +&{about QMessageBox::about commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non plain true false void [0xc823242300 0xc8232423a0 0xc8232424c0] } +&{aboutQt QMessageBox::aboutQt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non plain true false void [0xc823242740 0xc823242840] } +&{addButton QMessageBox::addButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non plain false true 3 QPushButton * [0xc823242ae0] } +&{addButton QMessageBox::addButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non plain false true 2 QPushButton * [0xc823242da0 0xc823242e80] } +&{addButton QMessageBox::addButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non plain false false void [0xc8232431e0 0xc823243360] } +&{button QMessageBox::button commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non plain false false QAbstractButton * [0xc8232436c0] } +&{buttonClicked QMessageBox::buttonClicked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non signal false false void [0xc823243980] } +&{buttonRole QMessageBox::buttonRole commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non plain false false ButtonRole [0xc823243c80] } +&{buttons QMessageBox::buttons commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non plain false false QList [] } +&{changeEvent QMessageBox::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h impure plain false false void [0xc8231c9000] } +&{checkBox QMessageBox::checkBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non plain false false QCheckBox * [] } +&{clickedButton QMessageBox::clickedButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non plain false false QAbstractButton * [] } +&{closeEvent QMessageBox::closeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h impure plain false false void [0xc82316a380] } +&{critical QMessageBox::critical commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non plain true false StandardButton [0xc82316a620 0xc82316a6a0 0xc82316a7a0 0xc82316a820 0xc82316a920] } +&{defaultButton QMessageBox::defaultButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non plain false false QPushButton * [] } +&{escapeButton QMessageBox::escapeButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non plain false false QAbstractButton * [] } +&{event QMessageBox::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h impure plain false false bool [0xc82316be20] } +&{exec QMessageBox::exec commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h impure slot false false int [] } +&{information QMessageBox::information commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non plain true false StandardButton [0xc822f9e500 0xc822f9e640 0xc822f9e7a0 0xc822f9e880 0xc822f9eb60] } +&{keyPressEvent QMessageBox::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h impure plain false false void [0xc822ed28e0] } +&{open QMessageBox::open commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non plain false false void [0xc822ed2d20 0xc822ed2e80] } +&{question QMessageBox::question commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non plain true false StandardButton [0xc822ed3220 0xc822ed32e0 0xc822ed3440 0xc822ed3580 0xc822ed3680] } +&{removeButton QMessageBox::removeButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non plain false false void [0xc822e2ee00] } +&{resizeEvent QMessageBox::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h impure plain false false void [0xc822e2f140] } +&{setCheckBox QMessageBox::setCheckBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non plain false false void [0xc822e2f8a0] } +&{setDefaultButton QMessageBox::setDefaultButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non plain false false void [0xc822e2fbc0] } +&{setDefaultButton QMessageBox::setDefaultButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non plain false true 2 void [0xc822e2fec0] } +&{setEscapeButton QMessageBox::setEscapeButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non plain false false void [0xc821b0a260] } +&{setEscapeButton QMessageBox::setEscapeButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non plain false true 2 void [0xc821b0a680] } +&{setVisible QMessageBox::setVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h impure plain false false void [0xc821b0aa80] } +&{setWindowModality QMessageBox::setWindowModality commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non plain false false void [0xc821b0aec0] } +&{setWindowTitle QMessageBox::setWindowTitle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non plain false false void [0xc821b0b360] } +&{showEvent QMessageBox::showEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h impure plain false false void [0xc821b0b760] } +&{standardButton QMessageBox::standardButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non plain false false StandardButton [0xc821b0bb60] } +&{warning QMessageBox::warning commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non plain true false StandardButton [0xc821a1e340 0xc821a1e3e0 0xc821a1e4e0 0xc821a1e5e0 0xc821a1e720] } +&{~QMessageBox QMessageBox::~QMessageBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qmessagebox.h non destructor false false [] } +######################################## ENUMS ######################################## +&{ButtonRole QMessageBox::ButtonRole commendable public [0xc823278ca0 0xc823278d40 0xc823278de0 0xc823278ec0 0xc823279020 0xc8232790c0 0xc823279160 0xc823279240 0xc8232792e0 0xc823279400 0xc8232794e0]} +&{Icon QMessageBox::Icon commendable public [0xc823279760 0xc8232797e0 0xc823279940 0xc8232799c0 0xc823279ac0]} +&{StandardButton QMessageBox::StandardButton commendable public QMessageBox::StandardButtons [0xc823279de0 0xc823279ea0 0xc823279fa0 0xc823264040 0xc823264100 0xc8232641c0 0xc8232642a0 0xc823264340 0xc823264460 0xc823264520 0xc8232645a0 0xc823264660 0xc823264740 0xc823264800 0xc8232648a0 0xc823264a00 0xc823264ae0 0xc823264b80 0xc823264c00 0xc823264d00 0xc823264da0 0xc823264e80 0xc823264f00 0xc823264fa0 0xc8232650a0 0xc823265140 0xc823265220]} diff --git a/internal/binding/dump/QtWidgets/QMouseEventTransition.txt b/internal/binding/dump/QtWidgets/QMouseEventTransition.txt new file mode 100755 index 00000000..1817cde5 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QMouseEventTransition.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QMouseEventTransition QMouseEventTransition::QMouseEventTransition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/statemachine/qmouseeventtransition.h non constructor false true 2 [0xc8225f9760 0xc8225f98a0 0xc8225f9980 0xc8225f9a20] } +&{QMouseEventTransition QMouseEventTransition::QMouseEventTransition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/statemachine/qmouseeventtransition.h non constructor false false [0xc8225f9d20] } +&{button QMouseEventTransition::button commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/statemachine/qmouseeventtransition.h non plain false false Qt::MouseButton [] } +&{eventTest QMouseEventTransition::eventTest commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/statemachine/qmouseeventtransition.h impure plain false false bool [0xc822606220] } +&{hitTestPath QMouseEventTransition::hitTestPath commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/statemachine/qmouseeventtransition.h non plain false false QPainterPath [] } +&{modifierMask QMouseEventTransition::modifierMask commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/statemachine/qmouseeventtransition.h non plain false false Qt::KeyboardModifiers [] } +&{onTransition QMouseEventTransition::onTransition commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/statemachine/qmouseeventtransition.h impure plain false false void [0xc822606780] } +&{setButton QMouseEventTransition::setButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/statemachine/qmouseeventtransition.h non plain false false void [0xc822606a80] } +&{setHitTestPath QMouseEventTransition::setHitTestPath commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/statemachine/qmouseeventtransition.h non plain false false void [0xc822606d60] } +&{setModifierMask QMouseEventTransition::setModifierMask commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/statemachine/qmouseeventtransition.h non plain false false void [0xc822607080] } +&{~QMouseEventTransition QMouseEventTransition::~QMouseEventTransition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/statemachine/qmouseeventtransition.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QOpenGLWidget.txt b/internal/binding/dump/QtWidgets/QOpenGLWidget.txt new file mode 100755 index 00000000..55867ccd --- /dev/null +++ b/internal/binding/dump/QtWidgets/QOpenGLWidget.txt @@ -0,0 +1,24 @@ +######################################## FUNCTIONS ######################################## +&{QOpenGLWidget QOpenGLWidget::QOpenGLWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qopenglwidget.h non constructor false false [0xc82235b380 0xc82235b400] } +&{aboutToCompose QOpenGLWidget::aboutToCompose commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qopenglwidget.h non signal false false void [] } +&{aboutToResize QOpenGLWidget::aboutToResize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qopenglwidget.h non signal false false void [] } +&{context QOpenGLWidget::context commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qopenglwidget.h non plain false false QOpenGLContext * [] } +&{defaultFramebufferObject QOpenGLWidget::defaultFramebufferObject commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qopenglwidget.h non plain false false GLuint [] } +&{doneCurrent QOpenGLWidget::doneCurrent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qopenglwidget.h non plain false false void [] } +&{format QOpenGLWidget::format commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qopenglwidget.h non plain false false QSurfaceFormat [] } +&{grabFramebuffer QOpenGLWidget::grabFramebuffer commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qopenglwidget.h non plain false false QImage [] } +&{isValid QOpenGLWidget::isValid commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qopenglwidget.h non plain false false bool [] } +&{makeCurrent QOpenGLWidget::makeCurrent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qopenglwidget.h non plain false false void [] } +&{frameSwapped QOpenGLWidget::frameSwapped commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qopenglwidget.h non signal false false void [] } +&{initializeGL QOpenGLWidget::initializeGL commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qopenglwidget.h impure plain false false void [] } +&{paintEvent QOpenGLWidget::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qopenglwidget.h impure plain false false void [0xc822370b20] } +&{paintGL QOpenGLWidget::paintGL commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qopenglwidget.h impure plain false false void [] } +&{resizeEvent QOpenGLWidget::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qopenglwidget.h impure plain false false void [0xc822370e20] } +&{resizeGL QOpenGLWidget::resizeGL commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qopenglwidget.h impure plain false false void [0xc8223710a0 0xc822371160] } +&{resized QOpenGLWidget::resized commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qopenglwidget.h non signal false false void [] } +&{setFormat QOpenGLWidget::setFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qopenglwidget.h non plain false false void [0xc8223714c0] } +&{setUpdateBehavior QOpenGLWidget::setUpdateBehavior commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qopenglwidget.h non plain false false void [0xc822371700] } +&{updateBehavior QOpenGLWidget::updateBehavior commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qopenglwidget.h non plain false false UpdateBehavior [] } +&{~QOpenGLWidget QOpenGLWidget::~QOpenGLWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qopenglwidget.h non destructor false false [] } +######################################## ENUMS ######################################## +&{UpdateBehavior QOpenGLWidget::UpdateBehavior commendable public [0xc82235b0c0 0xc82235b160]} diff --git a/internal/binding/dump/QtWidgets/QPanGesture.txt b/internal/binding/dump/QtWidgets/QPanGesture.txt new file mode 100755 index 00000000..a8fe151b --- /dev/null +++ b/internal/binding/dump/QtWidgets/QPanGesture.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{acceleration QPanGesture::acceleration commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false qreal [] } +&{delta QPanGesture::delta commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false QPointF [] } +&{lastOffset QPanGesture::lastOffset commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false QPointF [] } +&{offset QPanGesture::offset commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false QPointF [] } +&{setAcceleration QPanGesture::setAcceleration commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false void [0xc822caaa80] } +&{setLastOffset QPanGesture::setLastOffset commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false void [0xc822caace0] } +&{setOffset QPanGesture::setOffset commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false void [0xc822caafc0] } +&{~QPanGesture QPanGesture::~QPanGesture commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QPinchGesture.txt b/internal/binding/dump/QtWidgets/QPinchGesture.txt new file mode 100755 index 00000000..f82d8146 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QPinchGesture.txt @@ -0,0 +1,26 @@ +######################################## FUNCTIONS ######################################## +&{centerPoint QPinchGesture::centerPoint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false QPointF [] } +&{changeFlags QPinchGesture::changeFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false ChangeFlags [] } +&{lastCenterPoint QPinchGesture::lastCenterPoint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false QPointF [] } +&{lastRotationAngle QPinchGesture::lastRotationAngle commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false qreal [] } +&{lastScaleFactor QPinchGesture::lastScaleFactor commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false qreal [] } +&{rotationAngle QPinchGesture::rotationAngle commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false qreal [] } +&{scaleFactor QPinchGesture::scaleFactor commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false qreal [] } +&{setCenterPoint QPinchGesture::setCenterPoint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false void [0xc822cbc940] } +&{setChangeFlags QPinchGesture::setChangeFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false void [0xc822cbcb40] } +&{setLastCenterPoint QPinchGesture::setLastCenterPoint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false void [0xc822cbcd40] } +&{setLastRotationAngle QPinchGesture::setLastRotationAngle commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false void [0xc822cbcf60] } +&{setLastScaleFactor QPinchGesture::setLastScaleFactor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false void [0xc822cbd160] } +&{setRotationAngle QPinchGesture::setRotationAngle commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false void [0xc822cbd380] } +&{setScaleFactor QPinchGesture::setScaleFactor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false void [0xc822cbd600] } +&{setStartCenterPoint QPinchGesture::setStartCenterPoint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false void [0xc822cbd840] } +&{setTotalChangeFlags QPinchGesture::setTotalChangeFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false void [0xc822cbda60] } +&{setTotalRotationAngle QPinchGesture::setTotalRotationAngle commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false void [0xc822cbdca0] } +&{setTotalScaleFactor QPinchGesture::setTotalScaleFactor commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false void [0xc822cbde60] } +&{startCenterPoint QPinchGesture::startCenterPoint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false QPointF [] } +&{totalChangeFlags QPinchGesture::totalChangeFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false ChangeFlags [] } +&{totalRotationAngle QPinchGesture::totalRotationAngle commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false qreal [] } +&{totalScaleFactor QPinchGesture::totalScaleFactor commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false qreal [] } +&{~QPinchGesture QPinchGesture::~QPinchGesture commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.h non destructor false false [] } +######################################## ENUMS ######################################## +&{ChangeFlag QPinchGesture::ChangeFlag commendable public QPinchGesture::ChangeFlags [0xc822cd04c0 0xc822cd05a0 0xc822cd0680]} diff --git a/internal/binding/dump/QtWidgets/QPlainTextDocumentLayout.txt b/internal/binding/dump/QtWidgets/QPlainTextDocumentLayout.txt new file mode 100755 index 00000000..d27599ab --- /dev/null +++ b/internal/binding/dump/QtWidgets/QPlainTextDocumentLayout.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{cursorWidth QPlainTextDocumentLayout::cursorWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non plain false false int [] } +&{setCursorWidth QPlainTextDocumentLayout::setCursorWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non plain false false void [0xc8230b6560] } +&{QPlainTextDocumentLayout QPlainTextDocumentLayout::QPlainTextDocumentLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non constructor false false [0xc8230b6f20] } +&{blockBoundingRect QPlainTextDocumentLayout::blockBoundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false QRectF [0xc8230b73e0] } +&{documentChanged QPlainTextDocumentLayout::documentChanged commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false void [0xc8230b7720 0xc8230b7860 0xc8230b79e0] } +&{documentSize QPlainTextDocumentLayout::documentSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false QSizeF [] } +&{draw QPlainTextDocumentLayout::draw commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false void [0xc8230b7ee0 0xc8230b7fe0] } +&{ensureBlockLayout QPlainTextDocumentLayout::ensureBlockLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false void [0xc8230a8420] } +&{frameBoundingRect QPlainTextDocumentLayout::frameBoundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false QRectF [0xc8230a87e0] } +&{hitTest QPlainTextDocumentLayout::hitTest commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false int [0xc8230a89c0 0xc8230a8ae0] } +&{pageCount QPlainTextDocumentLayout::pageCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false int [] } +&{requestUpdate QPlainTextDocumentLayout::requestUpdate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false void [] } +&{~QPlainTextDocumentLayout QPlainTextDocumentLayout::~QPlainTextDocumentLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QPlainTextEdit.txt b/internal/binding/dump/QtWidgets/QPlainTextEdit.txt new file mode 100755 index 00000000..1f03e412 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QPlainTextEdit.txt @@ -0,0 +1,111 @@ +######################################## FUNCTIONS ######################################## +&{backgroundVisible QPlainTextEdit::backgroundVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non plain false false bool [] } +&{blockCount QPlainTextEdit::blockCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non plain false false int [] } +&{centerOnScroll QPlainTextEdit::centerOnScroll commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non plain false false bool [] } +&{contextMenuEvent QPlainTextEdit::contextMenuEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp impure plain false false void [0xc8230a66e0] } +&{cursorWidth QPlainTextEdit::cursorWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non plain false false int [] } +&{find QPlainTextEdit::find commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non plain false true 2 bool [0xc8230a6ec0 0xc8230a6fa0] } +&{isReadOnly QPlainTextEdit::isReadOnly commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non plain false false bool [] } +&{lineWrapMode QPlainTextEdit::lineWrapMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non plain false false LineWrapMode [] } +&{overwriteMode QPlainTextEdit::overwriteMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non plain false false bool [] } +&{placeholderText QPlainTextEdit::placeholderText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non plain false false QString [] } +&{redo QPlainTextEdit::redo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non slot false false void [] } +&{setBackgroundVisible QPlainTextEdit::setBackgroundVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non plain false false void [0xc823096340] } +&{setCenterOnScroll QPlainTextEdit::setCenterOnScroll commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non plain false false void [0xc8230967a0] } +&{setCursorWidth QPlainTextEdit::setCursorWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non plain false false void [0xc823096d20] } +&{setLineWrapMode QPlainTextEdit::setLineWrapMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non plain false false void [0xc823097180] } +&{setOverwriteMode QPlainTextEdit::setOverwriteMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non plain false false void [0xc823097600] } +&{setPlaceholderText QPlainTextEdit::setPlaceholderText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non plain false false void [0xc823097a60] } +&{setReadOnly QPlainTextEdit::setReadOnly commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non plain false false void [0xc823084020] } +&{setTabChangesFocus QPlainTextEdit::setTabChangesFocus commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non plain false false void [0xc823084400] } +&{setTabStopWidth QPlainTextEdit::setTabStopWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non plain false false void [0xc823084960] } +&{setTextInteractionFlags QPlainTextEdit::setTextInteractionFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non plain false false void [0xc823084f40] } +&{setWordWrapMode QPlainTextEdit::setWordWrapMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non plain false false void [0xc823085440] } +&{tabChangesFocus QPlainTextEdit::tabChangesFocus commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non plain false false bool [] } +&{tabStopWidth QPlainTextEdit::tabStopWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non plain false false int [] } +&{textInteractionFlags QPlainTextEdit::textInteractionFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non plain false false Qt::TextInteractionFlags [] } +&{wordWrapMode QPlainTextEdit::wordWrapMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non plain false false QTextOption::WrapMode [] } +&{zoomIn QPlainTextEdit::zoomIn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non slot false false void [0xc8230726e0] } +&{zoomOut QPlainTextEdit::zoomOut commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.cpp non slot false false void [0xc823072be0] } +&{QPlainTextEdit QPlainTextEdit::QPlainTextEdit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non constructor false false [0xc823073540] } +&{QPlainTextEdit QPlainTextEdit::QPlainTextEdit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non constructor false true 2 [0xc8230739e0 0xc823073a60] } +&{anchorAt QPlainTextEdit::anchorAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false QString [0xc82304a3a0] } +&{appendPlainText QPlainTextEdit::appendPlainText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non slot false false void [0xc82304a980] } +&{blockBoundingRect QPlainTextEdit::blockBoundingRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false QRectF [0xc82304af00] } +&{canInsertFromMimeData QPlainTextEdit::canInsertFromMimeData commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false bool [0xc82304b4e0] } +&{centerCursor QPlainTextEdit::centerCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non slot false false void [] } +&{appendHtml QPlainTextEdit::appendHtml commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non slot false false void [0xc82303d260] } +&{blockBoundingGeometry QPlainTextEdit::blockBoundingGeometry commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false QRectF [0xc82303d7c0] } +&{blockCountChanged QPlainTextEdit::blockCountChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non signal false false void [0xc82303dcc0] } +&{canPaste QPlainTextEdit::canPaste commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false bool [] } +&{changeEvent QPlainTextEdit::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false void [0xc82302c3e0] } +&{clear QPlainTextEdit::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non slot false false void [] } +&{contentOffset QPlainTextEdit::contentOffset commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false QPointF [] } +&{copy QPlainTextEdit::copy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non slot false false void [] } +&{copyAvailable QPlainTextEdit::copyAvailable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non signal false false void [0xc82302d080] } +&{createMimeDataFromSelection QPlainTextEdit::createMimeDataFromSelection commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false QMimeData * [] } +&{createStandardContextMenu QPlainTextEdit::createStandardContextMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false QMenu * [] } +&{createStandardContextMenu QPlainTextEdit::createStandardContextMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false true 2 QMenu * [0xc82302d640] } +&{currentCharFormat QPlainTextEdit::currentCharFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false QTextCharFormat [] } +&{cursorForPosition QPlainTextEdit::cursorForPosition commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false QTextCursor [0xc82302dc40] } +&{cursorPositionChanged QPlainTextEdit::cursorPositionChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non signal false false void [] } +&{cursorRect QPlainTextEdit::cursorRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false true 2 QRect [] } +&{cursorRect QPlainTextEdit::cursorRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false QRect [0xc82301e600] } +&{cut QPlainTextEdit::cut commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non slot false false void [] } +&{document QPlainTextEdit::document commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false QTextDocument * [] } +&{documentTitle QPlainTextEdit::documentTitle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false QString [] } +&{dragEnterEvent QPlainTextEdit::dragEnterEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false void [0xc82301f840] } +&{dragLeaveEvent QPlainTextEdit::dragLeaveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false void [0xc82300e000] } +&{dragMoveEvent QPlainTextEdit::dragMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false void [0xc82300e740] } +&{dropEvent QPlainTextEdit::dropEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false void [0xc82300efa0] } +&{ensureCursorVisible QPlainTextEdit::ensureCursorVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false void [] } +&{extraSelections QPlainTextEdit::extraSelections commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false QList [] } +&{find QPlainTextEdit::find commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false bool [0xc822fe8180 0xc822fe8340] } +&{firstVisibleBlock QPlainTextEdit::firstVisibleBlock commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false QTextBlock [] } +&{focusInEvent QPlainTextEdit::focusInEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false void [0xc822fe8ae0] } +&{focusNextPrevChild QPlainTextEdit::focusNextPrevChild commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false bool [0xc822fe9100] } +&{focusOutEvent QPlainTextEdit::focusOutEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false void [0xc822fe9600] } +&{getPaintContext QPlainTextEdit::getPaintContext commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false QAbstractTextDocumentLayout::PaintContext [] } +&{inputMethodEvent QPlainTextEdit::inputMethodEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false void [0xc822fe9ba0] } +&{inputMethodQuery QPlainTextEdit::inputMethodQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false QVariant [0xc822fd0280] } +&{insertFromMimeData QPlainTextEdit::insertFromMimeData commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false void [0xc822fd0a60] } +&{insertPlainText QPlainTextEdit::insertPlainText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non slot false false void [0xc822fd0f40] } +&{isUndoRedoEnabled QPlainTextEdit::isUndoRedoEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false bool [] } +&{keyPressEvent QPlainTextEdit::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false void [0xc822fd1980] } +&{keyReleaseEvent QPlainTextEdit::keyReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false void [0xc822fd1fe0] } +&{loadResource QPlainTextEdit::loadResource commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false QVariant [0xc822fc0560 0xc822fc0880] } +&{maximumBlockCount QPlainTextEdit::maximumBlockCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false int [] } +&{mergeCurrentCharFormat QPlainTextEdit::mergeCurrentCharFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false void [0xc822fc12c0] } +&{modificationChanged QPlainTextEdit::modificationChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non signal false false void [0xc822fc17a0] } +&{mouseDoubleClickEvent QPlainTextEdit::mouseDoubleClickEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false void [0xc822fc1d00] } +&{mouseMoveEvent QPlainTextEdit::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false void [0xc822fb2220] } +&{mousePressEvent QPlainTextEdit::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false void [0xc822fb2880] } +&{mouseReleaseEvent QPlainTextEdit::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false void [0xc822fb2d80] } +&{moveCursor QPlainTextEdit::moveCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false void [0xc822fb3300 0xc822fb35e0] } +&{paintEvent QPlainTextEdit::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false void [0xc822fb3c00] } +&{paste QPlainTextEdit::paste commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non slot false false void [] } +&{print QPlainTextEdit::print commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false void [0xc822f9e620] } +&{redoAvailable QPlainTextEdit::redoAvailable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non signal false false void [0xc822f9ec60] } +&{resizeEvent QPlainTextEdit::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false void [0xc822f9f320] } +&{scrollContentsBy QPlainTextEdit::scrollContentsBy commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false void [0xc822f9f9c0 0xc822f9fca0] } +&{selectAll QPlainTextEdit::selectAll commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non slot false false void [] } +&{selectionChanged QPlainTextEdit::selectionChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non signal false false void [] } +&{setCurrentCharFormat QPlainTextEdit::setCurrentCharFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false void [0xc822f90760] } +&{setDocument QPlainTextEdit::setDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false void [0xc822f90c80] } +&{setDocumentTitle QPlainTextEdit::setDocumentTitle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false void [0xc822f91380] } +&{setExtraSelections QPlainTextEdit::setExtraSelections commendable unsupported_goEnum /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false void [0xc822f91960] } +&{setMaximumBlockCount QPlainTextEdit::setMaximumBlockCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false void [0xc822f91ea0] } +&{setPlainText QPlainTextEdit::setPlainText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non slot false false void [0xc822f6e440] } +&{setTextCursor QPlainTextEdit::setTextCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false void [0xc822f6eb00] } +&{setUndoRedoEnabled QPlainTextEdit::setUndoRedoEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false void [0xc822f6f200] } +&{showEvent QPlainTextEdit::showEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false void [0xc822f6f7a0] } +&{textChanged QPlainTextEdit::textChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non signal false false void [] } +&{textCursor QPlainTextEdit::textCursor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false QTextCursor [] } +&{toPlainText QPlainTextEdit::toPlainText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non plain false false QString [] } +&{undo QPlainTextEdit::undo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non slot false false void [] } +&{undoAvailable QPlainTextEdit::undoAvailable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non signal false false void [0xc822f5ae60] } +&{updateRequest QPlainTextEdit::updateRequest commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h non signal false false void [0xc822f5b740 0xc822f5b880] } +&{wheelEvent QPlainTextEdit::wheelEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure plain false false void [0xc822f42000] } +&{~QPlainTextEdit QPlainTextEdit::~QPlainTextEdit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qplaintextedit.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{LineWrapMode QPlainTextEdit::LineWrapMode commendable public [0xc823072fe0 0xc823073180]} diff --git a/internal/binding/dump/QtWidgets/QProgressBar.txt b/internal/binding/dump/QtWidgets/QProgressBar.txt new file mode 100755 index 00000000..ae061b1d --- /dev/null +++ b/internal/binding/dump/QtWidgets/QProgressBar.txt @@ -0,0 +1,33 @@ +######################################## FUNCTIONS ######################################## +&{alignment QProgressBar::alignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.cpp non plain false false Qt::Alignment [] } +&{format QProgressBar::format commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.cpp non plain false false QString [] } +&{invertedAppearance QProgressBar::invertedAppearance commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.cpp non plain false false bool [] } +&{isTextVisible QProgressBar::isTextVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.cpp non plain false false bool [] } +&{maximum QProgressBar::maximum commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.cpp non plain false false int [] } +&{minimum QProgressBar::minimum commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.cpp non plain false false int [] } +&{orientation QProgressBar::orientation commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.cpp non plain false false Qt::Orientation [] } +&{resetFormat QProgressBar::resetFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.cpp non plain false false void [] } +&{setAlignment QProgressBar::setAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.cpp non plain false false void [0xc822f027a0] } +&{setFormat QProgressBar::setFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.cpp non plain false false void [0xc822f02dc0] } +&{setInvertedAppearance QProgressBar::setInvertedAppearance commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.cpp non plain false false void [0xc822f03300] } +&{setMaximum QProgressBar::setMaximum commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.cpp non slot false false void [0xc822f03920] } +&{setMinimum QProgressBar::setMinimum commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.cpp non slot false false void [0xc822ee4060] } +&{setOrientation QProgressBar::setOrientation commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.cpp non slot false false void [0xc822ee4720] } +&{setTextDirection QProgressBar::setTextDirection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.cpp non plain false false void [0xc822ee4ca0] } +&{setTextVisible QProgressBar::setTextVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.cpp non plain false false void [0xc822ee5280] } +&{setValue QProgressBar::setValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.cpp non slot false false void [0xc822ee5800] } +&{text QProgressBar::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.cpp impure plain false false QString [] } +&{textDirection QProgressBar::textDirection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.cpp non plain false false QProgressBar::Direction [] } +&{value QProgressBar::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.cpp non plain false false int [] } +&{QProgressBar QProgressBar::QProgressBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.h non constructor false false [0xc822ed3080] } +&{event QProgressBar::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.h impure plain false false bool [0xc822ed3700] } +&{initStyleOption QProgressBar::initStyleOption commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.h non plain false false void [0xc822ed3c20] } +&{minimumSizeHint QProgressBar::minimumSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.h impure plain false false QSize [] } +&{paintEvent QProgressBar::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.h impure plain false false void [0xc822ec6320] } +&{reset QProgressBar::reset commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.h non slot false false void [] } +&{setRange QProgressBar::setRange commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.h non slot false false void [0xc822ec69e0 0xc822ec6ae0] } +&{sizeHint QProgressBar::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.h impure plain false false QSize [] } +&{valueChanged QProgressBar::valueChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.h non signal false false void [0xc822ec73a0] } +&{~QProgressBar QProgressBar::~QProgressBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qprogressbar.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Direction QProgressBar::Direction commendable public [0xc822ed2960 0xc822ed2a60]} diff --git a/internal/binding/dump/QtWidgets/QProgressDialog.txt b/internal/binding/dump/QtWidgets/QProgressDialog.txt new file mode 100755 index 00000000..9fc6bb71 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QProgressDialog.txt @@ -0,0 +1,35 @@ +######################################## FUNCTIONS ######################################## +&{autoClose QProgressDialog::autoClose commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.cpp non plain false false bool [] } +&{autoReset QProgressDialog::autoReset commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.cpp non plain false false bool [] } +&{labelText QProgressDialog::labelText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.cpp non plain false false QString [] } +&{maximum QProgressDialog::maximum commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.cpp non plain false false int [] } +&{minimum QProgressDialog::minimum commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.cpp non plain false false int [] } +&{minimumDuration QProgressDialog::minimumDuration commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.cpp non plain false false int [] } +&{setAutoClose QProgressDialog::setAutoClose commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.cpp non plain false false void [0xc8218b3900] } +&{setAutoReset QProgressDialog::setAutoReset commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.cpp non plain false false void [0xc8218b3bc0] } +&{setLabelText QProgressDialog::setLabelText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.cpp non slot false false void [0xc8218b3e80] } +&{setMaximum QProgressDialog::setMaximum commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.cpp non slot false false void [0xc821540240] } +&{setMinimum QProgressDialog::setMinimum commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.cpp non slot false false void [0xc821540660] } +&{setMinimumDuration QProgressDialog::setMinimumDuration commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.cpp non slot false false void [0xc821540b80] } +&{setValue QProgressDialog::setValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.cpp non slot false false void [0xc821541060] } +&{value QProgressDialog::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.cpp non plain false false int [] } +&{wasCanceled QProgressDialog::wasCanceled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.cpp non plain false false bool [] } +&{QProgressDialog QProgressDialog::QProgressDialog commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.h non constructor false false [0xc821541a00 0xc821541b60] } +&{QProgressDialog QProgressDialog::QProgressDialog commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.h non constructor false true 2 [0xc821541e80 0xc821541fc0 0xc8214c4120 0xc8214c41e0 0xc8214c4320 0xc8214c44c0] } +&{cancel QProgressDialog::cancel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.h non slot false false void [] } +&{canceled QProgressDialog::canceled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.h non signal false false void [] } +&{changeEvent QProgressDialog::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.h impure plain false false void [0xc8214c5220] } +&{closeEvent QProgressDialog::closeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.h impure plain false false void [0xc8214c5720] } +&{forceShow QProgressDialog::forceShow commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.h non slot false false void [] } +&{open QProgressDialog::open commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.h non plain false false void [0xc8214c5e00 0xc8214c5f20] } +&{reset QProgressDialog::reset commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.h non slot false false void [] } +&{resizeEvent QProgressDialog::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.h impure plain false false void [0xc821400400] } +&{setBar QProgressDialog::setBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.h non plain false false void [0xc8214007e0] } +&{setCancelButton QProgressDialog::setCancelButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.h non plain false false void [0xc821400b00] } +&{setCancelButtonText QProgressDialog::setCancelButtonText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.h non slot false false void [0xc821400e20] } +&{setLabel QProgressDialog::setLabel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.h non plain false false void [0xc8214011a0] } +&{setRange QProgressDialog::setRange commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.h non slot false false void [0xc821401520 0xc821401640] } +&{showEvent QProgressDialog::showEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.h impure plain false false void [0xc8214019c0] } +&{sizeHint QProgressDialog::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.h impure plain false false QSize [] } +&{~QProgressDialog QProgressDialog::~QProgressDialog commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qprogressdialog.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QProxyStyle.txt b/internal/binding/dump/QtWidgets/QProxyStyle.txt new file mode 100755 index 00000000..dbd855c7 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QProxyStyle.txt @@ -0,0 +1,31 @@ +######################################## FUNCTIONS ######################################## +&{QProxyStyle QProxyStyle::QProxyStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h non constructor false false [0xc821781140] } +&{QProxyStyle QProxyStyle::QProxyStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h non constructor false true 2 [0xc821781380] } +&{baseStyle QProxyStyle::baseStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h non plain false false QStyle * [] } +&{drawComplexControl QProxyStyle::drawComplexControl commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h impure plain false false void [0xc8217816c0 0xc821781760 0xc821781820 0xc8217818a0] } +&{drawControl QProxyStyle::drawControl commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h impure plain false false void [0xc821781a80 0xc821781b20 0xc821781be0 0xc821781c60] } +&{drawItemPixmap QProxyStyle::drawItemPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h impure plain false false void [0xc821781e20 0xc821781ec0 0xc821781f60 0xc821776020] } +&{drawItemText QProxyStyle::drawItemText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h impure plain false false void [0xc8217763c0 0xc8217764e0 0xc8217765a0 0xc821776700 0xc821776800 0xc8217768a0 0xc8217769c0] } +&{drawPrimitive QProxyStyle::drawPrimitive commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h impure plain false false void [0xc821776e00 0xc821776f40 0xc821777120 0xc8217771a0] } +&{event QProxyStyle::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h impure plain false false bool [0xc821777600] } +&{generatedIconPixmap QProxyStyle::generatedIconPixmap commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h impure plain false false QPixmap [0xc8217779c0 0xc821777ac0 0xc821777c40] } +&{hitTestComplexControl QProxyStyle::hitTestComplexControl commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h impure plain false false SubControl [0xc821777fc0 0xc821764160 0xc821764380 0xc8217644e0] } +&{itemPixmapRect QProxyStyle::itemPixmapRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h impure plain false false QRect [0xc821764880 0xc8217649c0 0xc821764bc0] } +&{itemTextRect QProxyStyle::itemTextRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h impure plain false false QRect [0xc8217650a0 0xc821765260 0xc821765360 0xc821765540 0xc821765660] } +&{layoutSpacing QProxyStyle::layoutSpacing commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h impure plain false false int [0xc821765be0 0xc821765d80 0xc821765f20 0xc82174c080 0xc82174c1c0] } +&{pixelMetric QProxyStyle::pixelMetric commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h impure plain false false int [0xc82174c3e0 0xc82174c480 0xc82174c560] } +&{polish QProxyStyle::polish commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h impure plain false true 3 void [0xc82174c7a0] } +&{polish QProxyStyle::polish commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h impure plain false true 2 void [0xc82174c9a0] } +&{polish QProxyStyle::polish commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h impure plain false false void [0xc82174cc00] } +&{setBaseStyle QProxyStyle::setBaseStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h non plain false false void [0xc82174ce60] } +&{sizeFromContents QProxyStyle::sizeFromContents commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h impure plain false false QSize [0xc82174d060 0xc82174d140 0xc82174d200 0xc82174d2a0] } +&{standardIcon QProxyStyle::standardIcon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h impure plain false false QIcon [0xc82174d4a0 0xc82174d560 0xc82174d660] } +&{standardPalette QProxyStyle::standardPalette commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h impure plain false false QPalette [] } +&{standardPixmap QProxyStyle::standardPixmap commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h impure plain false false QPixmap [0xc82174d9a0 0xc82174da40 0xc82174db00] } +&{styleHint QProxyStyle::styleHint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h impure plain false false int [0xc82174dcc0 0xc82174dd60 0xc82174de20 0xc82174dec0] } +&{subControlRect QProxyStyle::subControlRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h impure plain false false QRect [0xc82173e160 0xc82173e280 0xc82173e480 0xc82173e520] } +&{subElementRect QProxyStyle::subElementRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h impure plain false false QRect [0xc82173e820 0xc82173e940 0xc82173eb20] } +&{unpolish QProxyStyle::unpolish commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h impure plain false true 2 void [0xc82173ee40] } +&{unpolish QProxyStyle::unpolish commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h impure plain false false void [0xc82173f1e0] } +&{~QProxyStyle QProxyStyle::~QProxyStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qproxystyle.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QPushButton.txt b/internal/binding/dump/QtWidgets/QPushButton.txt new file mode 100755 index 00000000..906cd3b9 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QPushButton.txt @@ -0,0 +1,24 @@ +######################################## FUNCTIONS ######################################## +&{autoDefault QPushButton::autoDefault commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qpushbutton.cpp non plain false false bool [] } +&{isDefault QPushButton::isDefault commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qpushbutton.cpp non plain false false bool [] } +&{isFlat QPushButton::isFlat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qpushbutton.cpp non plain false false bool [] } +&{setAutoDefault QPushButton::setAutoDefault commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qpushbutton.cpp non plain false false void [0xc822eb5a80] } +&{setDefault QPushButton::setDefault commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qpushbutton.cpp non plain false false void [0xc822ea2280] } +&{setFlat QPushButton::setFlat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qpushbutton.cpp non plain false false void [0xc822ea28a0] } +&{QPushButton QPushButton::QPushButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qpushbutton.h non constructor false false [0xc822ea2d40] } +&{QPushButton QPushButton::QPushButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qpushbutton.h non constructor false true 3 [0xc822ea3260 0xc822ea3420 0xc822ea3540] } +&{QPushButton QPushButton::QPushButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qpushbutton.h non constructor false true 2 [0xc822ea39c0 0xc822ea3a80] } +&{event QPushButton::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qpushbutton.h impure plain false false bool [0xc822e94ae0] } +&{focusInEvent QPushButton::focusInEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qpushbutton.h impure plain false false void [0xc822e94fe0] } +&{focusOutEvent QPushButton::focusOutEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qpushbutton.h impure plain false false void [0xc822e95320] } +&{hitButton QPushButton::hitButton commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qpushbutton.h impure plain false false bool [0xc822e956e0] } +&{initStyleOption QPushButton::initStyleOption commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qpushbutton.h non plain false false void [0xc822e95c40] } +&{keyPressEvent QPushButton::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qpushbutton.h impure plain false false void [0xc822e90240] } +&{menu QPushButton::menu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qpushbutton.h non plain false false QMenu * [] } +&{minimumSizeHint QPushButton::minimumSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qpushbutton.h impure plain false false QSize [] } +&{paintEvent QPushButton::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qpushbutton.h impure plain false false void [0xc822e90c00] } +&{setMenu QPushButton::setMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qpushbutton.h non plain false false void [0xc822e910a0] } +&{showMenu QPushButton::showMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qpushbutton.h non slot false false void [] } +&{sizeHint QPushButton::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qpushbutton.h impure plain false false QSize [] } +&{~QPushButton QPushButton::~QPushButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qpushbutton.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QRadioButton.txt b/internal/binding/dump/QtWidgets/QRadioButton.txt new file mode 100755 index 00000000..86a28ffe --- /dev/null +++ b/internal/binding/dump/QtWidgets/QRadioButton.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{QRadioButton QRadioButton::QRadioButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qradiobutton.h non constructor false false [0xc822e80de0] } +&{QRadioButton QRadioButton::QRadioButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qradiobutton.h non constructor false true 2 [0xc822e812c0 0xc822e815a0] } +&{event QRadioButton::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qradiobutton.h impure plain false false bool [0xc822e81b20] } +&{hitButton QRadioButton::hitButton commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qradiobutton.h impure plain false false bool [0xc822e5e120] } +&{initStyleOption QRadioButton::initStyleOption commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qradiobutton.h non plain false false void [0xc822e5e7a0] } +&{minimumSizeHint QRadioButton::minimumSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qradiobutton.h impure plain false false QSize [] } +&{mouseMoveEvent QRadioButton::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qradiobutton.h impure plain false false void [0xc822e5f240] } +&{paintEvent QRadioButton::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qradiobutton.h impure plain false false void [0xc822e5f920] } +&{sizeHint QRadioButton::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qradiobutton.h impure plain false false QSize [] } +&{~QRadioButton QRadioButton::~QRadioButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qradiobutton.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QRubberBand.txt b/internal/binding/dump/QtWidgets/QRubberBand.txt new file mode 100755 index 00000000..eea6d7d8 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QRubberBand.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{setGeometry QRubberBand::setGeometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qrubberband.cpp non plain false false void [0xc822e52720] } +&{QRubberBand QRubberBand::QRubberBand commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qrubberband.h non constructor false false [0xc822e534c0 0xc822e53620] } +&{changeEvent QRubberBand::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qrubberband.h impure plain false false void [0xc822e53ae0] } +&{event QRubberBand::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qrubberband.h impure plain false false bool [0xc822e3e1e0] } +&{initStyleOption QRubberBand::initStyleOption commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qrubberband.h non plain false false void [0xc822e3e840] } +&{move QRubberBand::move commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qrubberband.h non plain false true 2 void [0xc822e3efc0] } +&{move QRubberBand::move commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qrubberband.h non plain false false void [0xc822e3f6a0 0xc822e3f8e0] } +&{moveEvent QRubberBand::moveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qrubberband.h impure plain false false void [0xc822e3ffc0] } +&{paintEvent QRubberBand::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qrubberband.h impure plain false false void [0xc822e2e5e0] } +&{resize QRubberBand::resize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qrubberband.h non plain false true 2 void [0xc822e2eac0] } +&{resize QRubberBand::resize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qrubberband.h non plain false false void [0xc822e2efa0 0xc822e2f100] } +&{resizeEvent QRubberBand::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qrubberband.h impure plain false false void [0xc822e2f600] } +&{setGeometry QRubberBand::setGeometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qrubberband.h non plain false true 2 void [0xc822e2fc20 0xc822e2fcc0 0xc822e2ff40 0xc822e2ffc0] } +&{shape QRubberBand::shape commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qrubberband.h non plain false false Shape [] } +&{showEvent QRubberBand::showEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qrubberband.h impure plain false false void [0xc822e20760] } +&{~QRubberBand QRubberBand::~QRubberBand commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qrubberband.h non destructor false false [] } +######################################## ENUMS ######################################## +&{Shape QRubberBand::Shape commendable public [0xc822e52d80 0xc822e52fc0]} diff --git a/internal/binding/dump/QtWidgets/QScrollArea.txt b/internal/binding/dump/QtWidgets/QScrollArea.txt new file mode 100755 index 00000000..a660f2d0 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QScrollArea.txt @@ -0,0 +1,20 @@ +######################################## FUNCTIONS ######################################## +&{alignment QScrollArea::alignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollarea.cpp non plain false false Qt::Alignment [] } +&{setAlignment QScrollArea::setAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollarea.cpp non plain false false void [0xc822e216a0] } +&{setWidget QScrollArea::setWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollarea.cpp non plain false false void [0xc822e21b60] } +&{setWidgetResizable QScrollArea::setWidgetResizable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollarea.cpp non plain false false void [0xc822e142a0] } +&{widgetResizable QScrollArea::widgetResizable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollarea.cpp non plain false false bool [] } +&{QScrollArea QScrollArea::QScrollArea commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollarea.h non constructor false false [0xc822e14b20] } +&{ensureVisible QScrollArea::ensureVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollarea.h non plain false false void [0xc822e157c0 0xc822e158e0 0xc822e15ba0 0xc822e15c80] } +&{ensureWidgetVisible QScrollArea::ensureWidgetVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollarea.h non plain false false void [0xc822e02260 0xc822e023a0 0xc822e02520] } +&{event QScrollArea::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollarea.h impure plain false false bool [0xc822e02ac0] } +&{eventFilter QScrollArea::eventFilter commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollarea.h impure plain false false bool [0xc822e02ec0 0xc822e03020] } +&{focusNextPrevChild QScrollArea::focusNextPrevChild commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollarea.h impure plain false false bool [0xc822e035e0] } +&{resizeEvent QScrollArea::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollarea.h impure plain false false void [0xc822e03ba0] } +&{scrollContentsBy QScrollArea::scrollContentsBy commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollarea.h impure plain false false void [0xc822df0020 0xc822df0180] } +&{sizeHint QScrollArea::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollarea.h impure plain false false QSize [] } +&{takeWidget QScrollArea::takeWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollarea.h non plain false false QWidget * [] } +&{viewportSizeHint QScrollArea::viewportSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollarea.h impure plain false false QSize [] } +&{widget QScrollArea::widget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollarea.h non plain false false QWidget * [] } +&{~QScrollArea QScrollArea::~QScrollArea commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollarea.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QScrollBar.txt b/internal/binding/dump/QtWidgets/QScrollBar.txt new file mode 100755 index 00000000..a271aeac --- /dev/null +++ b/internal/binding/dump/QtWidgets/QScrollBar.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{QScrollBar QScrollBar::QScrollBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollbar.h non constructor false false [0xc822dd80e0] } +&{QScrollBar QScrollBar::QScrollBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollbar.h non constructor false true 2 [0xc822dd8420 0xc822dd8560] } +&{contextMenuEvent QScrollBar::contextMenuEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollbar.h impure plain false false void [0xc822dd8a60] } +&{event QScrollBar::event commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollbar.h impure plain false false bool [0xc822dd8f00] } +&{hideEvent QScrollBar::hideEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollbar.h impure plain false false void [0xc822dd9440] } +&{initStyleOption QScrollBar::initStyleOption commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollbar.h non plain false false void [0xc822dd97a0] } +&{mouseMoveEvent QScrollBar::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollbar.h impure plain false false void [0xc822dd9c00] } +&{mousePressEvent QScrollBar::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollbar.h impure plain false false void [0xc822dcc1e0] } +&{mouseReleaseEvent QScrollBar::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollbar.h impure plain false false void [0xc822dcc860] } +&{paintEvent QScrollBar::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollbar.h impure plain false false void [0xc822dcce40] } +&{sizeHint QScrollBar::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollbar.h impure plain false false QSize [] } +&{sliderChange QScrollBar::sliderChange commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollbar.h impure plain false false void [0xc822dcd760] } +&{wheelEvent QScrollBar::wheelEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollbar.h impure plain false false void [0xc822dcdd60] } +&{~QScrollBar QScrollBar::~QScrollBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qscrollbar.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QScroller.txt b/internal/binding/dump/QtWidgets/QScroller.txt new file mode 100755 index 00000000..0905013f --- /dev/null +++ b/internal/binding/dump/QtWidgets/QScroller.txt @@ -0,0 +1,32 @@ +######################################## FUNCTIONS ######################################## +&{scrollerProperties QScroller::scrollerProperties commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscroller.cpp non plain false false QScrollerProperties [] } +&{setScrollerProperties QScroller::setScrollerProperties commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscroller.cpp non slot false false void [0xc8212ec080] } +&{state QScroller::state commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscroller.cpp non plain false false State [] } +&{activeScrollers QScroller::activeScrollers commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscroller.h non plain true false QList [] } +&{ensureVisible QScroller::ensureVisible commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscroller.h non slot false false void [0xc8212edf00 0xc8212edfa0 0xc8212d8120] } +&{ensureVisible QScroller::ensureVisible commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscroller.h non slot false true 2 void [0xc8212d8400 0xc8212d84e0 0xc8212d8620 0xc8212d86e0] } +&{finalPosition QScroller::finalPosition commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscroller.h non plain false false QPointF [] } +&{grabGesture QScroller::grabGesture commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscroller.h non plain true false Qt::GestureType [0xc8212d8be0 0xc8212d8d00] } +&{grabbedGesture QScroller::grabbedGesture commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscroller.h non plain true false Qt::GestureType [0xc8212d9160] } +&{handleInput QScroller::handleInput commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscroller.h non plain false false bool [0xc8212d94c0 0xc8212d9580 0xc8212d9680] } +&{hasScroller QScroller::hasScroller commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscroller.h non plain true false bool [0xc8212d9a00] } +&{pixelPerMeter QScroller::pixelPerMeter commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscroller.h non plain false false QPointF [] } +&{resendPrepareEvent QScroller::resendPrepareEvent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscroller.h non slot false false void [] } +&{scrollTo QScroller::scrollTo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscroller.h non slot false false void [0xc8212cc120] } +&{scrollTo QScroller::scrollTo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscroller.h non slot false true 2 void [0xc8212cc4a0 0xc8212cc540] } +&{scroller QScroller::scroller commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscroller.h non plain true false QScroller * [0xc8212cc8e0] } +&{scroller QScroller::scroller commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscroller.h non plain true true 2 const QScroller * [0xc8212ccd80] } +&{scrollerPropertiesChanged QScroller::scrollerPropertiesChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscroller.h non signal false false void [0xc8212cd120] } +&{setSnapPositionsX QScroller::setSnapPositionsX commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscroller.h non plain false false void [0xc8212cd5e0] } +&{setSnapPositionsX QScroller::setSnapPositionsX commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscroller.h non plain false true 2 void [0xc8212cda20 0xc8212cdb40] } +&{setSnapPositionsY QScroller::setSnapPositionsY commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscroller.h non plain false false void [0xc8212cdf00] } +&{setSnapPositionsY QScroller::setSnapPositionsY commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscroller.h non plain false true 2 void [0xc8212b42c0 0xc8212b4360] } +&{stateChanged QScroller::stateChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscroller.h non signal false false void [0xc8212b46e0] } +&{stop QScroller::stop commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscroller.h non plain false false void [] } +&{target QScroller::target commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscroller.h non plain false false QObject * [] } +&{ungrabGesture QScroller::ungrabGesture commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscroller.h non plain true false void [0xc8212b4d40] } +&{velocity QScroller::velocity commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscroller.h non plain false false QPointF [] } +######################################## ENUMS ######################################## +&{Input QScroller::Input commendable public [0xc8212ec560 0xc8212ec660 0xc8212ec780]} +&{ScrollerGestureType QScroller::ScrollerGestureType commendable public [0xc8212ecb40 0xc8212ecc20 0xc8212ecde0 0xc8212ecf80]} +&{State QScroller::State commendable public [0xc8212ed2c0 0xc8212ed360 0xc8212ed4c0 0xc8212ed5c0]} diff --git a/internal/binding/dump/QtWidgets/QScrollerProperties.txt b/internal/binding/dump/QtWidgets/QScrollerProperties.txt new file mode 100755 index 00000000..9328033e --- /dev/null +++ b/internal/binding/dump/QtWidgets/QScrollerProperties.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QScrollerProperties QScrollerProperties::QScrollerProperties commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscrollerproperties.h non constructor false false [] } +&{QScrollerProperties QScrollerProperties::QScrollerProperties commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscrollerproperties.h non constructor false true 2 [0xc821293120] } +&{operator!= QScrollerProperties::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscrollerproperties.h non plain false false bool [0xc821293900] } +&{operator= QScrollerProperties::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscrollerproperties.h non plain false false QScrollerProperties & [0xc821293e00] } +&{operator== QScrollerProperties::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscrollerproperties.h non plain false false bool [0xc821284260] } +&{scrollMetric QScrollerProperties::scrollMetric commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscrollerproperties.h non plain false false QVariant [0xc821284560] } +&{setDefaultScrollerProperties QScrollerProperties::setDefaultScrollerProperties commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscrollerproperties.h non plain true false void [0xc8212848c0] } +&{setScrollMetric QScrollerProperties::setScrollMetric commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscrollerproperties.h non plain false false void [0xc821284ca0 0xc821284d60] } +&{unsetDefaultScrollerProperties QScrollerProperties::unsetDefaultScrollerProperties commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscrollerproperties.h non plain true false void [] } +&{~QScrollerProperties QScrollerProperties::~QScrollerProperties commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qscrollerproperties.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{FrameRates QScrollerProperties::FrameRates commendable public [0xc8212b5f20 0xc8212a4020 0xc8212a4120 0xc8212a4260]} +&{OvershootPolicy QScrollerProperties::OvershootPolicy commendable public [0xc8212a4540 0xc8212a4720 0xc8212a4940]} +&{ScrollMetric QScrollerProperties::ScrollMetric commendable public [0xc8212a4ca0 0xc8212a4e20 0xc8212a5000 0xc8212a51a0 0xc8212a5340 0xc8212a5480 0xc8212a55e0 0xc8212a5680 0xc8212a5800 0xc8212a5980 0xc8212a5b60 0xc8212a5ce0 0xc8212a5e20 0xc8212a5f20 0xc821292160 0xc821292300 0xc821292500 0xc821292660 0xc8212927e0 0xc8212929c0 0xc821292ae0]} diff --git a/internal/binding/dump/QtWidgets/QShortcut.txt b/internal/binding/dump/QtWidgets/QShortcut.txt new file mode 100755 index 00000000..d4c9ef2b --- /dev/null +++ b/internal/binding/dump/QtWidgets/QShortcut.txt @@ -0,0 +1,19 @@ +######################################## FUNCTIONS ######################################## +&{autoRepeat QShortcut::autoRepeat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qshortcut.cpp non plain false false bool [] } +&{context QShortcut::context commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qshortcut.cpp non plain false false Qt::ShortcutContext [] } +&{isEnabled QShortcut::isEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qshortcut.cpp non plain false false bool [] } +&{key QShortcut::key commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qshortcut.cpp non plain false false QKeySequence [] } +&{setAutoRepeat QShortcut::setAutoRepeat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qshortcut.cpp non plain false false void [0xc822384140] } +&{setContext QShortcut::setContext commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qshortcut.cpp non plain false false void [0xc8223843c0] } +&{setEnabled QShortcut::setEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qshortcut.cpp non plain false false void [0xc8223846a0] } +&{setKey QShortcut::setKey commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qshortcut.cpp non plain false false void [0xc822384980] } +&{setWhatsThis QShortcut::setWhatsThis commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qshortcut.cpp non plain false false void [0xc822384c60] } +&{whatsThis QShortcut::whatsThis commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qshortcut.cpp non plain false false QString [] } +&{QShortcut QShortcut::QShortcut commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qshortcut.h non constructor false false [0xc822385040] } +&{QShortcut QShortcut::QShortcut commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qshortcut.h non constructor false true 2 [0xc822385220 0xc8223852e0 0xc8223853a0 0xc822385460 0xc822385540] } +&{activated QShortcut::activated commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qshortcut.h non signal false false void [] } +&{activatedAmbiguously QShortcut::activatedAmbiguously commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qshortcut.h non signal false false void [] } +&{id QShortcut::id commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qshortcut.h non plain false false int [] } +&{parentWidget QShortcut::parentWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qshortcut.h non plain false false QWidget * [] } +&{~QShortcut QShortcut::~QShortcut commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qshortcut.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QSizeGrip.txt b/internal/binding/dump/QtWidgets/QSizeGrip.txt new file mode 100755 index 00000000..1cabcce4 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QSizeGrip.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{mouseMoveEvent QSizeGrip::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsizegrip.cpp impure plain false false void [0xc822dbc8c0] } +&{mousePressEvent QSizeGrip::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsizegrip.cpp impure plain false false void [0xc822dbcea0] } +&{QSizeGrip QSizeGrip::QSizeGrip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsizegrip.h non constructor false false [0xc822dbd3a0] } +&{event QSizeGrip::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsizegrip.h impure plain false false bool [0xc822dbdd80] } +&{eventFilter QSizeGrip::eventFilter commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsizegrip.h impure plain false false bool [0xc822dae200 0xc822dae3a0] } +&{hideEvent QSizeGrip::hideEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsizegrip.h impure plain false false void [0xc822dae840] } +&{mouseReleaseEvent QSizeGrip::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsizegrip.h impure plain false false void [0xc822daee00] } +&{moveEvent QSizeGrip::moveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsizegrip.h impure plain false false void [0xc822daf300] } +&{paintEvent QSizeGrip::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsizegrip.h impure plain false false void [0xc822daf7a0] } +&{setVisible QSizeGrip::setVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsizegrip.h impure plain false false void [0xc822dafc40] } +&{showEvent QSizeGrip::showEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsizegrip.h impure plain false false void [0xc822d9c000] } +&{sizeHint QSizeGrip::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsizegrip.h impure plain false false QSize [] } +&{~QSizeGrip QSizeGrip::~QSizeGrip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsizegrip.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QSizePolicy.txt b/internal/binding/dump/QtWidgets/QSizePolicy.txt new file mode 100755 index 00000000..f9246f96 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QSizePolicy.txt @@ -0,0 +1,28 @@ +######################################## FUNCTIONS ######################################## +&{QSizePolicy QSizePolicy::QSizePolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qsizepolicy.h non constructor false false [] } +&{QSizePolicy QSizePolicy::QSizePolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qsizepolicy.h non constructor false true 2 [0xc8223ac820 0xc8223ac8e0 0xc8223ac960] } +&{controlType QSizePolicy::controlType commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qsizepolicy.h non plain false false ControlType [] } +&{expandingDirections QSizePolicy::expandingDirections commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qsizepolicy.h non plain false false Qt::Orientations [] } +&{hasHeightForWidth QSizePolicy::hasHeightForWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qsizepolicy.h non plain false false bool [] } +&{hasWidthForHeight QSizePolicy::hasWidthForHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qsizepolicy.h non plain false false bool [] } +&{horizontalPolicy QSizePolicy::horizontalPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qsizepolicy.h non plain false false Policy [] } +&{horizontalStretch QSizePolicy::horizontalStretch commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qsizepolicy.h non plain false false int [] } +&{operator QVariant QSizePolicy::operator QVariant commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qsizepolicy.h non plain false false [] } +&{operator!= QSizePolicy::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qsizepolicy.h non plain false false bool [0xc8223ad820] } +&{operator== QSizePolicy::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qsizepolicy.h non plain false false bool [0xc8223adb20] } +&{retainSizeWhenHidden QSizePolicy::retainSizeWhenHidden commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qsizepolicy.h non plain false false bool [] } +&{setControlType QSizePolicy::setControlType commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qsizepolicy.h non plain false false void [0xc8223ade00] } +&{setHeightForWidth QSizePolicy::setHeightForWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qsizepolicy.h non plain false false void [0xc8223ba080] } +&{setHorizontalPolicy QSizePolicy::setHorizontalPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qsizepolicy.h non plain false false void [0xc8223ba2e0] } +&{setHorizontalStretch QSizePolicy::setHorizontalStretch commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qsizepolicy.h non plain false false void [0xc8223ba4a0] } +&{setRetainSizeWhenHidden QSizePolicy::setRetainSizeWhenHidden commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qsizepolicy.h non plain false false void [0xc8223ba640] } +&{setVerticalPolicy QSizePolicy::setVerticalPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qsizepolicy.h non plain false false void [0xc8223ba840] } +&{setVerticalStretch QSizePolicy::setVerticalStretch commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qsizepolicy.h non plain false false void [0xc8223bab00] } +&{setWidthForHeight QSizePolicy::setWidthForHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qsizepolicy.h non plain false false void [0xc8223bad60] } +&{transpose QSizePolicy::transpose commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qsizepolicy.h non plain false false void [] } +&{verticalPolicy QSizePolicy::verticalPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qsizepolicy.h non plain false false Policy [] } +&{verticalStretch QSizePolicy::verticalStretch commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qsizepolicy.h non plain false false int [] } +######################################## ENUMS ######################################## +&{ControlType QSizePolicy::ControlType commendable public QSizePolicy::ControlTypes [0xc822396fe0 0xc822397060 0xc8223970e0 0xc822397160 0xc822397200 0xc8223972a0 0xc822397380 0xc822397400 0xc8223974c0 0xc8223975a0 0xc822397620 0xc8223976c0 0xc8223977a0 0xc822397820 0xc8223978a0]} +&{Policy QSizePolicy::Policy commendable public [0xc822397ae0 0xc822397bc0 0xc822397c60 0xc822397d00 0xc822397e80 0xc822397f40 0xc822397fe0]} +&{PolicyFlag QSizePolicy::PolicyFlag commendable public [0xc8223ac220 0xc8223ac2a0 0xc8223ac320 0xc8223ac3a0]} diff --git a/internal/binding/dump/QtWidgets/QSlider.txt b/internal/binding/dump/QtWidgets/QSlider.txt new file mode 100755 index 00000000..8ae34426 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QSlider.txt @@ -0,0 +1,18 @@ +######################################## FUNCTIONS ######################################## +&{setTickInterval QSlider::setTickInterval commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qslider.cpp non plain false false void [0xc822d9cb20] } +&{setTickPosition QSlider::setTickPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qslider.cpp non plain false false void [0xc822d9cfa0] } +&{tickInterval QSlider::tickInterval commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qslider.cpp non plain false false int [] } +&{tickPosition QSlider::tickPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qslider.cpp non plain false false TickPosition [] } +&{QSlider QSlider::QSlider commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qslider.h non constructor false false [0xc822d943a0] } +&{QSlider QSlider::QSlider commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qslider.h non constructor false true 2 [0xc822d945e0 0xc822d946c0] } +&{event QSlider::event commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qslider.h impure plain false false bool [0xc822d94900] } +&{initStyleOption QSlider::initStyleOption commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qslider.h non plain false false void [0xc822d94d00] } +&{minimumSizeHint QSlider::minimumSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qslider.h impure plain false false QSize [] } +&{mouseMoveEvent QSlider::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qslider.h impure plain false false void [0xc822d95380] } +&{mousePressEvent QSlider::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qslider.h impure plain false false void [0xc822d95640] } +&{mouseReleaseEvent QSlider::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qslider.h impure plain false false void [0xc822d959a0] } +&{paintEvent QSlider::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qslider.h impure plain false false void [0xc822d95dc0] } +&{sizeHint QSlider::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qslider.h impure plain false false QSize [] } +&{~QSlider QSlider::~QSlider commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qslider.h non destructor false false [] } +######################################## ENUMS ######################################## +&{TickPosition QSlider::TickPosition commendable public [0xc822d9da20 0xc822d9dba0 0xc822d9dca0 0xc822d9dd60 0xc822d9dee0 0xc822d940a0]} diff --git a/internal/binding/dump/QtWidgets/QSpacerItem.txt b/internal/binding/dump/QtWidgets/QSpacerItem.txt new file mode 100755 index 00000000..98d11bc6 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QSpacerItem.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QSpacerItem QSpacerItem::QSpacerItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h non constructor false false [0xc822337ce0 0xc822337d60 0xc822337e80 0xc822337fc0] } +&{changeSize QSpacerItem::changeSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h non plain false false void [0xc822348240 0xc8223482e0 0xc8223483e0 0xc822348500] } +&{expandingDirections QSpacerItem::expandingDirections commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure plain false false Qt::Orientations [] } +&{geometry QSpacerItem::geometry commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure plain false false QRect [] } +&{isEmpty QSpacerItem::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure plain false false bool [] } +&{maximumSize QSpacerItem::maximumSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure plain false false QSize [] } +&{minimumSize QSpacerItem::minimumSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure plain false false QSize [] } +&{setGeometry QSpacerItem::setGeometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure plain false false void [0xc822348e60] } +&{sizeHint QSpacerItem::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure plain false false QSize [] } +&{sizePolicy QSpacerItem::sizePolicy commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h non plain false false QSizePolicy [] } +&{spacerItem QSpacerItem::spacerItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure plain false false QSpacerItem * [] } +&{~QSpacerItem QSpacerItem::~QSpacerItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QSpinBox.txt b/internal/binding/dump/QtWidgets/QSpinBox.txt new file mode 100755 index 00000000..c3558b79 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QSpinBox.txt @@ -0,0 +1,27 @@ +######################################## FUNCTIONS ######################################## +&{cleanText QSpinBox::cleanText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false QString [] } +&{displayIntegerBase QSpinBox::displayIntegerBase commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false int [] } +&{maximum QSpinBox::maximum commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false int [] } +&{minimum QSpinBox::minimum commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false int [] } +&{prefix QSpinBox::prefix commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false QString [] } +&{setDisplayIntegerBase QSpinBox::setDisplayIntegerBase commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false void [0xc821ac8c80] } +&{setMaximum QSpinBox::setMaximum commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false void [0xc821ac90a0] } +&{setMinimum QSpinBox::setMinimum commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false void [0xc821ac9460] } +&{setPrefix QSpinBox::setPrefix commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false void [0xc821ac97e0] } +&{setSingleStep QSpinBox::setSingleStep commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false void [0xc821ac9b80] } +&{setSuffix QSpinBox::setSuffix commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false void [0xc821ac9ea0] } +&{setValue QSpinBox::setValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non slot false false void [0xc82191e1a0] } +&{singleStep QSpinBox::singleStep commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false int [] } +&{suffix QSpinBox::suffix commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false QString [] } +&{value QSpinBox::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp non plain false false int [] } +&{valueFromText QSpinBox::valueFromText commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.cpp impure plain false false int [0xc82191e900] } +&{QSpinBox QSpinBox::QSpinBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.h non constructor false false [0xc82191ec20] } +&{event QSpinBox::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.h impure plain false false bool [0xc82191eea0] } +&{fixup QSpinBox::fixup commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.h impure plain false false void [0xc82191f120] } +&{setRange QSpinBox::setRange commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.h non plain false false void [0xc82191f3e0 0xc82191f480] } +&{textFromValue QSpinBox::textFromValue commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.h impure plain false false QString [0xc82191f780] } +&{validate QSpinBox::validate commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.h impure plain false false QValidator::State [0xc82191fc40 0xc82191fd40] } +&{valueChanged QSpinBox::valueChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.h non signal false true 2 void [0xc82182a0a0] } +&{valueChanged QSpinBox::valueChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.h non signal false false void [0xc82182a440] } +&{~QSpinBox QSpinBox::~QSpinBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qspinbox.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QSplashScreen.txt b/internal/binding/dump/QtWidgets/QSplashScreen.txt new file mode 100755 index 00000000..354686f7 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QSplashScreen.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{QSplashScreen QSplashScreen::QSplashScreen commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplashscreen.h non constructor false true 2 [0xc8227a21c0 0xc8227a22a0 0xc8227a23a0] } +&{QSplashScreen QSplashScreen::QSplashScreen commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplashscreen.h non constructor false false [0xc8227a26e0 0xc8227a2820] } +&{clearMessage QSplashScreen::clearMessage commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplashscreen.h non slot false false void [] } +&{drawContents QSplashScreen::drawContents commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplashscreen.h impure plain false false void [0xc8227a2da0] } +&{event QSplashScreen::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplashscreen.h impure plain false false bool [0xc8227a3180] } +&{finish QSplashScreen::finish commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplashscreen.h non plain false false void [0xc8227a3540] } +&{message QSplashScreen::message commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplashscreen.h non plain false false QString [] } +&{messageChanged QSplashScreen::messageChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplashscreen.h non signal false false void [0xc8227a3980] } +&{mousePressEvent QSplashScreen::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplashscreen.h impure plain false false void [0xc8227a3d20] } +&{pixmap QSplashScreen::pixmap commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplashscreen.h non plain false false const QPixmap [] } +&{repaint QSplashScreen::repaint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplashscreen.h non plain false false void [] } +&{setPixmap QSplashScreen::setPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplashscreen.h non plain false false void [0xc821c7c320] } +&{showMessage QSplashScreen::showMessage commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplashscreen.h non slot false false void [0xc821c7c6e0 0xc821c7c7c0 0xc821c7c8a0] } +&{~QSplashScreen QSplashScreen::~QSplashScreen commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplashscreen.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QSplitter.txt b/internal/binding/dump/QtWidgets/QSplitter.txt new file mode 100755 index 00000000..53d04aae --- /dev/null +++ b/internal/binding/dump/QtWidgets/QSplitter.txt @@ -0,0 +1,39 @@ +######################################## FUNCTIONS ######################################## +&{childrenCollapsible QSplitter::childrenCollapsible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.cpp non plain false false bool [] } +&{handleWidth QSplitter::handleWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.cpp non plain false false int [] } +&{indexOf QSplitter::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.cpp non plain false false int [0xc821c7d320] } +&{opaqueResize QSplitter::opaqueResize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.cpp non plain false false bool [] } +&{orientation QSplitter::orientation commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.cpp non plain false false Qt::Orientation [] } +&{setChildrenCollapsible QSplitter::setChildrenCollapsible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.cpp non plain false false void [0xc821c7dba0] } +&{setHandleWidth QSplitter::setHandleWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.cpp non plain false false void [0xc821c7df80] } +&{setOpaqueResize QSplitter::setOpaqueResize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.cpp non plain false false void [0xc8219ba3a0] } +&{setOrientation QSplitter::setOrientation commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.cpp non plain false false void [0xc8219ba740] } +&{QSplitter QSplitter::QSplitter commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non constructor false false [0xc8219baba0] } +&{QSplitter QSplitter::QSplitter commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non constructor false true 2 [0xc8219baea0 0xc8219bafa0] } +&{addWidget QSplitter::addWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non plain false false void [0xc8219bb2e0] } +&{changeEvent QSplitter::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h impure plain false false void [0xc8219bb680] } +&{childEvent QSplitter::childEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h impure plain false false void [0xc8219bba00] } +&{closestLegalPosition QSplitter::closestLegalPosition commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non plain false false int [0xc8219bbd80 0xc8219bbe80] } +&{count QSplitter::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non plain false false int [] } +&{createHandle QSplitter::createHandle commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h impure plain false false QSplitterHandle * [] } +&{event QSplitter::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h impure plain false false bool [0xc8217b6400] } +&{getRange QSplitter::getRange commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non plain false false void [0xc8217b66c0 0xc8217b67c0 0xc8217b68a0] } +&{handle QSplitter::handle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non plain false false QSplitterHandle * [0xc8217b6b80] } +&{insertWidget QSplitter::insertWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non plain false false void [0xc8217b6de0 0xc8217b6ea0] } +&{isCollapsible QSplitter::isCollapsible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non plain false false bool [0xc8217b7180] } +&{minimumSizeHint QSplitter::minimumSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h impure plain false false QSize [] } +&{moveSplitter QSplitter::moveSplitter commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non plain false false void [0xc8217b7540 0xc8217b75c0] } +&{refresh QSplitter::refresh commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non plain false false void [] } +&{resizeEvent QSplitter::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h impure plain false false void [0xc8217b79c0] } +&{restoreState QSplitter::restoreState commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non plain false false bool [0xc8217b7c20] } +&{saveState QSplitter::saveState commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non plain false false QByteArray [] } +&{setCollapsible QSplitter::setCollapsible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non plain false false void [0xc8217b7fe0 0xc821704080] } +&{setRubberBand QSplitter::setRubberBand commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non plain false false void [0xc8217042e0] } +&{setSizes QSplitter::setSizes commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non plain false false void [0xc821704540] } +&{setStretchFactor QSplitter::setStretchFactor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non plain false false void [0xc821704880 0xc821704980] } +&{sizeHint QSplitter::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h impure plain false false QSize [] } +&{sizes QSplitter::sizes commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non plain false false QList [] } +&{splitterMoved QSplitter::splitterMoved commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non signal false false void [0xc821704e80 0xc821704f80] } +&{widget QSplitter::widget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non plain false false QWidget * [0xc821705320] } +&{~QSplitter QSplitter::~QSplitter commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QSplitterHandle.txt b/internal/binding/dump/QtWidgets/QSplitterHandle.txt new file mode 100755 index 00000000..363741c8 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QSplitterHandle.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{QSplitterHandle QSplitterHandle::QSplitterHandle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non constructor false false [0xc8216466c0 0xc821646760] } +&{closestLegalPosition QSplitterHandle::closestLegalPosition commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non plain false false int [0xc821646a80] } +&{event QSplitterHandle::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h impure plain false false bool [0xc821646d60] } +&{mouseMoveEvent QSplitterHandle::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h impure plain false false void [0xc821646fc0] } +&{mousePressEvent QSplitterHandle::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h impure plain false false void [0xc8216472e0] } +&{mouseReleaseEvent QSplitterHandle::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h impure plain false false void [0xc821647560] } +&{moveSplitter QSplitterHandle::moveSplitter commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non plain false false void [0xc821647880] } +&{opaqueResize QSplitterHandle::opaqueResize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non plain false false bool [] } +&{orientation QSplitterHandle::orientation commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non plain false false Qt::Orientation [] } +&{paintEvent QSplitterHandle::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h impure plain false false void [0xc821647ea0] } +&{resizeEvent QSplitterHandle::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h impure plain false false void [0xc820d042a0] } +&{setOrientation QSplitterHandle::setOrientation commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non plain false false void [0xc820d04640] } +&{sizeHint QSplitterHandle::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h impure plain false false QSize [] } +&{splitter QSplitterHandle::splitter commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non plain false false QSplitter * [] } +&{~QSplitterHandle QSplitterHandle::~QSplitterHandle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qsplitter.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QStackedLayout.txt b/internal/binding/dump/QtWidgets/QStackedLayout.txt new file mode 100755 index 00000000..a4d5e140 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStackedLayout.txt @@ -0,0 +1,27 @@ +######################################## FUNCTIONS ######################################## +&{count QStackedLayout::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qstackedlayout.cpp impure plain false false int [] } +&{currentIndex QStackedLayout::currentIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qstackedlayout.cpp non plain false false int [] } +&{setCurrentIndex QStackedLayout::setCurrentIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qstackedlayout.cpp non slot false false void [0xc8223bbb40] } +&{setCurrentWidget QStackedLayout::setCurrentWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qstackedlayout.cpp non slot false false void [0xc8223bbd40] } +&{setStackingMode QStackedLayout::setStackingMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qstackedlayout.cpp non plain false false void [0xc8223bbf40] } +&{stackingMode QStackedLayout::stackingMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qstackedlayout.cpp non plain false false StackingMode [] } +&{QStackedLayout QStackedLayout::QStackedLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qstackedlayout.h non constructor false false [] } +&{QStackedLayout QStackedLayout::QStackedLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qstackedlayout.h non constructor false true 3 [0xc8223d0500] } +&{QStackedLayout QStackedLayout::QStackedLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qstackedlayout.h non constructor false true 2 [0xc8223d06e0] } +&{addItem QStackedLayout::addItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qstackedlayout.h impure plain false false void [0xc8223d08c0] } +&{addWidget QStackedLayout::addWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qstackedlayout.h non plain false false int [0xc8223d0b40] } +&{currentChanged QStackedLayout::currentChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qstackedlayout.h non signal false false void [0xc8223d0d80] } +&{currentWidget QStackedLayout::currentWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qstackedlayout.h non plain false false QWidget * [] } +&{hasHeightForWidth QStackedLayout::hasHeightForWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qstackedlayout.h impure plain false false bool [] } +&{heightForWidth QStackedLayout::heightForWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qstackedlayout.h impure plain false false int [0xc8223d11c0] } +&{insertWidget QStackedLayout::insertWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qstackedlayout.h non plain false false int [0xc8223d1420 0xc8223d14a0] } +&{itemAt QStackedLayout::itemAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qstackedlayout.h impure plain false false QLayoutItem * [0xc8223d1720] } +&{minimumSize QStackedLayout::minimumSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qstackedlayout.h impure plain false false QSize [] } +&{setGeometry QStackedLayout::setGeometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qstackedlayout.h impure plain false false void [0xc8223d1a80] } +&{sizeHint QStackedLayout::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qstackedlayout.h impure plain false false QSize [] } +&{takeAt QStackedLayout::takeAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qstackedlayout.h impure plain false false QLayoutItem * [0xc8223d1e20] } +&{widget QStackedLayout::widget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qstackedlayout.h non plain false false QWidget * [0xc8223e0020] } +&{widgetRemoved QStackedLayout::widgetRemoved commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qstackedlayout.h non signal false false void [0xc8223e0260] } +&{~QStackedLayout QStackedLayout::~QStackedLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qstackedlayout.h non destructor false false [] } +######################################## ENUMS ######################################## +&{StackingMode QStackedLayout::StackingMode commendable public [0xc8223d0220 0xc8223d02a0]} diff --git a/internal/binding/dump/QtWidgets/QStackedWidget.txt b/internal/binding/dump/QtWidgets/QStackedWidget.txt new file mode 100755 index 00000000..b2338fe7 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStackedWidget.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{count QStackedWidget::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstackedwidget.cpp non plain false false int [] } +&{currentIndex QStackedWidget::currentIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstackedwidget.cpp non plain false false int [] } +&{setCurrentIndex QStackedWidget::setCurrentIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstackedwidget.cpp non slot false false void [0xc820d05f80] } +&{setCurrentWidget QStackedWidget::setCurrentWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstackedwidget.cpp non slot false false void [0xc8214aa2c0] } +&{QStackedWidget QStackedWidget::QStackedWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstackedwidget.h non constructor false false [0xc8214aa560] } +&{addWidget QStackedWidget::addWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstackedwidget.h non plain false false int [0xc8214aa960] } +&{currentChanged QStackedWidget::currentChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstackedwidget.h non signal false false void [0xc8214aad00] } +&{currentWidget QStackedWidget::currentWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstackedwidget.h non plain false false QWidget * [] } +&{event QStackedWidget::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstackedwidget.h impure plain false false bool [0xc8214ab360] } +&{indexOf QStackedWidget::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstackedwidget.h non plain false false int [0xc8214ab760] } +&{insertWidget QStackedWidget::insertWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstackedwidget.h non plain false false int [0xc8214aba60 0xc8214abc00] } +&{removeWidget QStackedWidget::removeWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstackedwidget.h non plain false false void [0xc8214abf40] } +&{widget QStackedWidget::widget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstackedwidget.h non plain false false QWidget * [0xc821d822c0] } +&{widgetRemoved QStackedWidget::widgetRemoved commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstackedwidget.h non signal false false void [0xc821d82640] } +&{~QStackedWidget QStackedWidget::~QStackedWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstackedwidget.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QStandardItemEditorCreator.txt b/internal/binding/dump/QtWidgets/QStandardItemEditorCreator.txt new file mode 100755 index 00000000..31312984 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStandardItemEditorCreator.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{QStandardItemEditorCreator QStandardItemEditorCreator::QStandardItemEditorCreator commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemeditorfactory.h non constructor false false [] } +&{createWidget QStandardItemEditorCreator::createWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemeditorfactory.h impure plain false false QWidget * [0xc822b1d760] } +&{valuePropertyName QStandardItemEditorCreator::valuePropertyName commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qitemeditorfactory.h impure plain false false QByteArray [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QStatusBar.txt b/internal/binding/dump/QtWidgets/QStatusBar.txt new file mode 100755 index 00000000..24590f48 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStatusBar.txt @@ -0,0 +1,21 @@ +######################################## FUNCTIONS ######################################## +&{isSizeGripEnabled QStatusBar::isSizeGripEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstatusbar.cpp non plain false false bool [] } +&{paintEvent QStatusBar::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstatusbar.cpp impure plain false false void [0xc821d83700] } +&{setSizeGripEnabled QStatusBar::setSizeGripEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstatusbar.cpp non plain false false void [0xc821d83b80] } +&{QStatusBar QStatusBar::QStatusBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstatusbar.h non constructor false false [0xc821d83f20] } +&{addPermanentWidget QStatusBar::addPermanentWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstatusbar.h non plain false false void [0xc821398300 0xc8213983a0] } +&{addWidget QStatusBar::addWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstatusbar.h non plain false false void [0xc821398660 0xc821398760] } +&{clearMessage QStatusBar::clearMessage commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstatusbar.h non slot false false void [] } +&{currentMessage QStatusBar::currentMessage commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstatusbar.h non plain false false QString [] } +&{event QStatusBar::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstatusbar.h impure plain false false bool [0xc821398da0] } +&{hideOrShow QStatusBar::hideOrShow commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstatusbar.h non plain false false void [] } +&{insertPermanentWidget QStatusBar::insertPermanentWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstatusbar.h non plain false false int [0xc8213991a0 0xc821399260 0xc821399320] } +&{insertWidget QStatusBar::insertWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstatusbar.h non plain false false int [0xc8213995a0 0xc821399680 0xc821399700] } +&{messageChanged QStatusBar::messageChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstatusbar.h non signal false false void [0xc8213999e0] } +&{reformat QStatusBar::reformat commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstatusbar.h non plain false false void [] } +&{removeWidget QStatusBar::removeWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstatusbar.h non plain false false void [0xc821399e60] } +&{resizeEvent QStatusBar::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstatusbar.h impure plain false false void [0xc821eda160] } +&{showEvent QStatusBar::showEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstatusbar.h impure plain false false void [0xc821eda480] } +&{showMessage QStatusBar::showMessage commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstatusbar.h non slot false false void [0xc821eda7e0 0xc821eda960] } +&{~QStatusBar QStatusBar::~QStatusBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qstatusbar.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QStyle.txt b/internal/binding/dump/QtWidgets/QStyle.txt new file mode 100755 index 00000000..fcd792b8 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyle.txt @@ -0,0 +1,45 @@ +######################################## FUNCTIONS ######################################## +&{drawItemPixmap QStyle::drawItemPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.cpp impure plain false false void [0xc82173ff60 0xc82222a040 0xc82222a0e0 0xc82222a160] } +&{drawItemText QStyle::drawItemText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.cpp impure plain false false void [0xc82222a3a0 0xc82222a420 0xc82222a500 0xc82222a5a0 0xc82222a640 0xc82222a720 0xc82222a7e0] } +&{itemPixmapRect QStyle::itemPixmapRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.cpp impure plain false false QRect [0xc82222aa80 0xc82222ab00 0xc82222aba0] } +&{itemTextRect QStyle::itemTextRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.cpp impure plain false false QRect [0xc82222ad80 0xc82222ae40 0xc82222aec0 0xc82222af40 0xc82222afe0] } +&{polish QStyle::polish commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.cpp impure plain false true 2 void [0xc82222b160] } +&{polish QStyle::polish commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.cpp impure plain false true 3 void [0xc82222b2e0] } +&{proxy QStyle::proxy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.cpp non plain false false const QStyle * [] } +&{sliderValueFromPosition QStyle::sliderValueFromPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.cpp non plain true false int [0xc82222b760 0xc82222b7e0 0xc82222b880 0xc82222b960 0xc82222ba00] } +&{unpolish QStyle::unpolish commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.cpp impure plain false true 2 void [0xc82222bbe0] } +&{visualPos QStyle::visualPos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.cpp non plain true false QPoint [0xc82222bdc0 0xc82222bea0 0xc82222bf60] } +&{visualRect QStyle::visualRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.cpp non plain true false QRect [0xc8217282c0 0xc821728400 0xc8217285a0] } +&{QStyle QStyle::QStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.h non constructor false false [] } +&{alignedRect QStyle::alignedRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.h non plain true false QRect [0xc82157eee0 0xc82157f080 0xc82157f1e0 0xc82157f2a0] } +&{combinedLayoutSpacing QStyle::combinedLayoutSpacing commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.h non plain false false int [0xc82157f6a0 0xc82157f800 0xc82157f9c0 0xc82157fa60 0xc82157fb60] } +&{drawComplexControl QStyle::drawComplexControl commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.h pure plain false false void [0xc82156e120 0xc82156e240 0xc82156e400 0xc82156e560] } +&{drawControl QStyle::drawControl commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.h pure plain false false void [0xc82156e980 0xc82156eb80 0xc82156ed00 0xc82156ede0] } +&{drawPrimitive QStyle::drawPrimitive commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.h pure plain false false void [0xc82156f0e0 0xc82156f220 0xc82156f360 0xc82156f460] } +&{generatedIconPixmap QStyle::generatedIconPixmap commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.h pure plain false false QPixmap [0xc82156f8e0 0xc82156f9e0 0xc82156fb40] } +&{hitTestComplexControl QStyle::hitTestComplexControl commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.h pure plain false false SubControl [0xc821562120 0xc821562200 0xc821562460 0xc821562580] } +&{layoutSpacing QStyle::layoutSpacing commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.h pure plain false false int [0xc8215628e0 0xc821562ac0 0xc821562c60 0xc821562ec0 0xc821563060] } +&{pixelMetric QStyle::pixelMetric commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.h pure plain false false int [0xc821563480 0xc8215635e0 0xc8215637a0] } +&{polish QStyle::polish commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.h impure plain false false void [0xc821563ac0] } +&{sizeFromContents QStyle::sizeFromContents commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.h pure plain false false QSize [0xc821563e00 0xc821563f20 0xc82154e0e0 0xc82154e200] } +&{sliderPositionFromValue QStyle::sliderPositionFromValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.h non plain true false int [0xc82154e680 0xc82154e780 0xc82154e8c0 0xc82154e9a0 0xc82154eb20] } +&{standardIcon QStyle::standardIcon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.h pure plain false false QIcon [0xc82154f040 0xc82154f260 0xc82154f420] } +&{standardPalette QStyle::standardPalette commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.h impure plain false false QPalette [] } +&{styleHint QStyle::styleHint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.h pure plain false false int [0xc82223a140 0xc82223a1e0 0xc82223a2c0 0xc82223a380] } +&{subControlRect QStyle::subControlRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.h pure plain false false QRect [0xc82223a5c0 0xc82223a680 0xc82223a760 0xc82223a7e0] } +&{subElementRect QStyle::subElementRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.h pure plain false false QRect [0xc82223a9a0 0xc82223aa40 0xc82223ab00] } +&{unpolish QStyle::unpolish commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.h impure plain false false void [0xc82223aca0] } +&{visualAlignment QStyle::visualAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.h non plain true false Qt::Alignment [0xc82223aec0 0xc82223afe0] } +&{~QStyle QStyle::~QStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyle.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{ComplexControl QStyle::ComplexControl commendable public [0xc8217289e0 0xc821728a60 0xc821728c20 0xc821728d00 0xc821728e80 0xc821728f40 0xc821729000 0xc821729100 0xc821729280 0xc821729380]} +&{ContentsType QStyle::ContentsType commendable public [0xc8217296e0 0xc8217297a0 0xc8217298a0 0xc8217299a0 0xc821729ae0 0xc821729bc0 0xc821729ca0 0xc821729d40 0xc821729f00 0xc821729fc0 0xc8217140e0 0xc8217141c0 0xc8217142a0 0xc821714380 0xc8217144e0 0xc8217145a0 0xc821714700 0xc8217147c0 0xc821714880 0xc8217149e0 0xc821714ae0 0xc821714ba0 0xc821714ca0 0xc821714dc0]} +&{ControlElement QStyle::ControlElement commendable public [0xc821715160 0xc821715240 0xc821715400 0xc821715560 0xc821715680 0xc821715760 0xc8217158a0 0xc8217159c0 0xc821715b60 0xc821715d60 0xc821715e40 0xc821700000 0xc821700120 0xc8217002e0 0xc8217004a0 0xc821700580 0xc821700620 0xc821700800 0xc8217008c0 0xc8217009a0 0xc821700a80 0xc821700ba0 0xc821700de0 0xc821700f60 0xc821701040 0xc821701100 0xc8217012c0 0xc8217013c0 0xc821701440 0xc821701520 0xc8217016c0 0xc821701860 0xc821701a20 0xc821701be0 0xc821701e00 0xc821701fc0 0xc8216f0180 0xc8216f0320 0xc8216f0480 0xc8216f0540 0xc8216f0640 0xc8216f07a0 0xc8216f0960 0xc8216f0ac0 0xc8216f0ce0 0xc8216f0e40 0xc8216f0f80 0xc8216f1020]} +&{PixelMetric QStyle::PixelMetric commendable public [0xc8216f13a0 0xc8216f1520 0xc8216f1680 0xc8216f18a0 0xc8216f1a60 0xc8216f1c20 0xc8216f1e00 0xc8216f1fc0 0xc8216e0160 0xc8216e0380 0xc8216e0500 0xc8216e0680 0xc8216e0840 0xc8216e0a40 0xc8216e0b60 0xc8216e0ce0 0xc8216e0ea0 0xc8216e1040 0xc8216e1240 0xc8216e13e0 0xc8216e15c0 0xc8216e1760 0xc8216e1900 0xc8216e1b80 0xc8216e1cc0 0xc8216e1ea0 0xc8216e1fe0 0xc8216cc1a0 0xc8216cc2e0 0xc8216cc3e0 0xc8216cc560 0xc8216cc6a0 0xc8216cc8a0 0xc8216cca40 0xc8216ccbe0 0xc8216ccda0 0xc8216ccfa0 0xc8216cd0e0 0xc8216cd300 0xc8216cd480 0xc8216cd640 0xc8216cd7e0 0xc8216cd960 0xc8216cdb60 0xc8216cdd00 0xc8216cdea0 0xc8216be000 0xc8216be2c0 0xc8216be620 0xc8216be7e0 0xc8216bea60 0xc8216becc0 0xc8216bef80 0xc8216bf1e0 0xc8216bf480 0xc8216bf760 0xc8216bf9e0 0xc8216bfc80 0xc8216bff00 0xc8216aa0e0 0xc8216aa280 0xc8216aa420 0xc8216aa620 0xc8216aa7c0 0xc8216aa980 0xc8216aab60 0xc8216aad40 0xc8216aaea0 0xc8216aaf60 0xc8216ab0e0 0xc8216ab2c0 0xc8216ab440 0xc8216ab660 0xc8216ab7a0 0xc8216ab980 0xc8216abae0 0xc8216abc20 0xc8216abec0 0xc821690000 0xc8216900a0 0xc821690180 0xc821690260 0xc821690340 0xc821690420 0xc821690500 0xc8216905e0 0xc8216906c0 0xc8216907a0 0xc821690880 0xc821690960 0xc821690a40 0xc821690b20 0xc821690c00 0xc821690d00 0xc821690dc0 0xc821690ea0 0xc821690f20]} +&{PrimitiveElement QStyle::PrimitiveElement commendable public [0xc821691120 0xc8216911e0 0xc821691300 0xc821691400 0xc821691540 0xc8216915c0 0xc821691640 0xc821691700 0xc821691820 0xc821691960 0xc821691a20 0xc821691ac0 0xc821691c00 0xc821691ce0 0xc821691e00 0xc821691f60 0xc821692120 0xc821692280 0xc8216923a0 0xc821692460 0xc821692540 0xc821692720 0xc8216928c0 0xc821692ac0 0xc821692c40 0xc821692d80 0xc821692f20 0xc821693160 0xc821693320 0xc821693500 0xc821693620 0xc821693780 0xc8216939c0 0xc821693b20 0xc821693d40 0xc821693e80 0xc8216800e0 0xc8216802e0 0xc8216804e0 0xc821680700 0xc821680880 0xc8216809e0 0xc821680c00 0xc821680d60 0xc821680f80 0xc821681140 0xc8216813c0 0xc821681580 0xc8216816c0 0xc821681920 0xc821681aa0 0xc821681ba0]} +&{RequestSoftwareInputPanel QStyle::RequestSoftwareInputPanel commendable public [0xc821681f60 0xc82166e100]} +&{StandardPixmap QStyle::StandardPixmap commendable public [0xc82166e560 0xc82166e700 0xc82166e900 0xc82166eae0 0xc82166ece0 0xc82166eec0 0xc82166f080 0xc82166f1c0 0xc82166f440 0xc82166f640 0xc82166f760 0xc82166f9a0 0xc82166fbc0 0xc82166fcc0 0xc82166fe20 0xc82166ff40 0xc82165e0c0 0xc82165e1c0 0xc82165e380 0xc82165e500 0xc82165e5c0 0xc82165e700 0xc82165e820 0xc82165e920 0xc82165eae0 0xc82165ec80 0xc82165ed00 0xc82165ef00 0xc82165efa0 0xc82165f160 0xc82165f320 0xc82165f520 0xc82165f7c0 0xc82165fa20 0xc82165fbc0 0xc82165fde0 0xc82164a0a0 0xc82164a220 0xc82164a3e0 0xc82164a4e0 0xc82164a6e0 0xc82164a880 0xc82164aa60 0xc82164abe0 0xc82164ade0 0xc82164af40 0xc82164b100 0xc82164b2a0 0xc82164b460 0xc82164b600 0xc82164b800 0xc82164b8c0 0xc82164b9a0 0xc82164bae0 0xc82164bbe0 0xc82164bc80 0xc82164bd40 0xc82164be80 0xc82164bf60 0xc8226ee000 0xc8226ee0e0 0xc8226ee1a0 0xc8226ee300 0xc8226ee3a0 0xc8226ee540 0xc8226ee760 0xc8226ee8c0 0xc8226eeac0 0xc8226eec40 0xc8226eed20 0xc8226eef00 0xc8226ef0c0]} +&{StateFlag QStyle::StateFlag commendable public QStyle::State [0xc8226ef400 0xc8226ef4e0 0xc8226ef640 0xc8226ef760 0xc8226ef840 0xc8226ef9c0 0xc8226efa60 0xc8226efb40 0xc8226efd00 0xc8226efda0 0xc8226efec0 0xc8226effe0 0xc82163a100 0xc82163a2c0 0xc82163a420 0xc82163a500 0xc82163a600 0xc82163a720 0xc82163a840 0xc82163a8e0 0xc82163aa00 0xc82163aae0 0xc82163ac40 0xc82163ad20 0xc82163ae00 0xc82163b060 0xc82163b200 0xc82163b300 0xc82163b380]} +&{StyleHint QStyle::StyleHint commendable public [0xc82163b820 0xc82163b9a0 0xc82163bb40 0xc82163bc20 0xc82163bd80 0xc82163bf60 0xc821630080 0xc821630180 0xc821630280 0xc821630340 0xc8216303c0 0xc821630480 0xc8216305e0 0xc8216306a0 0xc8216307a0 0xc821630880 0xc8216309c0 0xc821630ae0 0xc821630b80 0xc821630ce0 0xc821630dc0 0xc821630ec0 0xc821630fc0 0xc8216310a0 0xc8216311e0 0xc821631320 0xc821631440 0xc821631520 0xc821631680 0xc821631820 0xc821631900 0xc821631a20 0xc821631b00 0xc821631ba0 0xc821631c80 0xc821631d80 0xc821631ee0 0xc821631fc0 0xc821624200 0xc8216243e0 0xc8216245e0 0xc821624700 0xc8216248c0 0xc821624aa0 0xc821624c20 0xc821624d80 0xc821625020 0xc821625260 0xc821625460 0xc821625660 0xc821625880 0xc8216259c0 0xc821625c00 0xc821625ea0 0xc821614000 0xc8216142c0 0xc821614460 0xc8216146a0 0xc821614940 0xc821614ac0 0xc821614de0 0xc821614f00 0xc821615040 0xc821615160 0xc8216154c0 0xc821615660 0xc821615880 0xc821615b40 0xc821615d20 0xc821615f00 0xc82160c0c0 0xc82160c1a0 0xc82160c280 0xc82160c320 0xc82160c420 0xc82160c500 0xc82160c5c0 0xc82160c640 0xc82160c700 0xc82160c7e0 0xc82160c8c0 0xc82160c940 0xc82160c9c0 0xc82160cae0 0xc82160cbc0 0xc82160cce0 0xc82160cd60 0xc82160ce60 0xc82160cf40 0xc82160d020 0xc82160d100 0xc82160d1e0 0xc82160d2c0 0xc82160d3a0 0xc82160d480 0xc82160d560 0xc82160d640 0xc82160d720 0xc82160d800 0xc82160d8e0 0xc82160d9c0 0xc82160daa0 0xc82160db80 0xc82160dc60 0xc82160dd40 0xc82160de20 0xc82160df00 0xc82160dfe0 0xc8216041e0 0xc8216042a0 0xc821604460 0xc8216045a0 0xc8216046a0 0xc8216047e0]} +&{SubControl QStyle::SubControl commendable public QStyle::SubControls [0xc821604de0 0xc821604f60 0xc8216051e0 0xc821605420 0xc821605660 0xc821605880 0xc821605aa0 0xc821605c00 0xc821605f00 0xc8215dc100 0xc8215dc1a0 0xc8215dc300 0xc8215dc4e0 0xc8215dc760 0xc8215dc880 0xc8215dca20 0xc8215dcc60 0xc8215dcdc0 0xc8215dcec0 0xc8215dcf80 0xc8215dd140 0xc8215dd2a0 0xc8215dd4c0 0xc8215dd640 0xc8215dd7e0 0xc8215dda40 0xc8215ddc60 0xc8215dde80 0xc8215c8020 0xc8215c8200 0xc8215c83a0 0xc8215c8460 0xc8215c85c0 0xc8215c86c0 0xc8215c8840 0xc8215c89a0 0xc8215c8b00 0xc8215c8c80 0xc8215c8d60 0xc8215c8e80 0xc8215c9040 0xc8215c9180 0xc8215c9240]} +&{SubElement QStyle::SubElement commendable public [0xc8215c9520 0xc8215c9720 0xc8215c98c0 0xc8215c99e0 0xc8215c9ca0 0xc8215c9e40 0xc8215c9f80 0xc8215b02a0 0xc8215b04a0 0xc8215b0720 0xc8215b0920 0xc8215b0ac0 0xc8215b0d80 0xc8215b0f60 0xc8215b1240 0xc8215b13c0 0xc8215b15c0 0xc8215b16a0 0xc8215b18c0 0xc8215b1a40 0xc8215b1ca0 0xc8215b1ec0 0xc8215a0060 0xc8215a02a0 0xc8215a04c0 0xc8215a07e0 0xc8215a0a00 0xc8215a0c20 0xc8215a0de0 0xc8215a0f40 0xc8215a11c0 0xc8215a1380 0xc8215a15c0 0xc8215a18c0 0xc8215a1a60 0xc8215a1d60 0xc8215a1f00 0xc82158c160 0xc82158c380 0xc82158c5a0 0xc82158c780 0xc82158ca00 0xc82158cc60 0xc82158ce40 0xc82158cfe0 0xc82158d280 0xc82158d460 0xc82158d720 0xc82158d800 0xc82158da60 0xc82158dc40 0xc82158de80 0xc82157e020 0xc82157e180 0xc82157e2c0 0xc82157e480]} diff --git a/internal/binding/dump/QtWidgets/QStyleFactory.txt b/internal/binding/dump/QtWidgets/QStyleFactory.txt new file mode 100755 index 00000000..2c0c3aba --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleFactory.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{create QStyleFactory::create commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstylefactory.h non plain true false QStyle * [0xc82223b440] } +&{keys QStyleFactory::keys commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstylefactory.h non plain true false QStringList [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QStyleHintReturn.txt b/internal/binding/dump/QtWidgets/QStyleHintReturn.txt new file mode 100755 index 00000000..0cb79fab --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleHintReturn.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QStyleHintReturn QStyleHintReturn::QStyleHintReturn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false false [0xc82223bfa0 0xc82152a060] } +######################################## ENUMS ######################################## +&{HintReturnType QStyleHintReturn::HintReturnType commendable public [0xc82223b8a0 0xc82223b920 0xc82223ba00]} +&{StyleOptionType QStyleHintReturn::StyleOptionType commendable public [0xc82223bb60]} +&{StyleOptionVersion QStyleHintReturn::StyleOptionVersion commendable public [0xc82223bda0]} diff --git a/internal/binding/dump/QtWidgets/QStyleHintReturnMask.txt b/internal/binding/dump/QtWidgets/QStyleHintReturnMask.txt new file mode 100755 index 00000000..14043a0f --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleHintReturnMask.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QStyleHintReturnMask QStyleHintReturnMask::QStyleHintReturnMask commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false false [] } +&{~QStyleHintReturnMask QStyleHintReturnMask::~QStyleHintReturnMask commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non destructor false false [] } +######################################## ENUMS ######################################## +&{StyleOptionType QStyleHintReturnMask::StyleOptionType commendable public [0xc82152aa00]} +&{StyleOptionVersion QStyleHintReturnMask::StyleOptionVersion commendable public [0xc82152ad40]} diff --git a/internal/binding/dump/QtWidgets/QStyleHintReturnVariant.txt b/internal/binding/dump/QtWidgets/QStyleHintReturnVariant.txt new file mode 100755 index 00000000..6934e704 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleHintReturnVariant.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QStyleHintReturnVariant QStyleHintReturnVariant::QStyleHintReturnVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false false [] } +&{~QStyleHintReturnVariant QStyleHintReturnVariant::~QStyleHintReturnVariant commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non destructor false false [] } +######################################## ENUMS ######################################## +&{StyleOptionType QStyleHintReturnVariant::StyleOptionType commendable public [0xc82152b920]} +&{StyleOptionVersion QStyleHintReturnVariant::StyleOptionVersion commendable public [0xc82152bd40]} diff --git a/internal/binding/dump/QtWidgets/QStyleOption.txt b/internal/binding/dump/QtWidgets/QStyleOption.txt new file mode 100755 index 00000000..f73f109a --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleOption.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{QStyleOption QStyleOption::QStyleOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false true 2 [0xc8215052c0] } +&{QStyleOption QStyleOption::QStyleOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false false [0xc8215057e0 0xc821505920] } +&{initFrom QStyleOption::initFrom commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non plain false false void [0xc8214f2180] } +&{operator= QStyleOption::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non plain false false QStyleOption & [0xc8214f2620] } +&{~QStyleOption QStyleOption::~QStyleOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non destructor false false [] } +######################################## ENUMS ######################################## +&{OptionType QStyleOption::OptionType commendable public [0xc821514720 0xc8215147e0 0xc8215148c0 0xc821514a00 0xc821514b00 0xc821514ce0 0xc821514de0 0xc821514f00 0xc821515080 0xc821515160 0xc8215152e0 0xc821515480 0xc821515640 0xc821515720 0xc821515800 0xc821515980 0xc821515aa0 0xc821515b60 0xc821515c40 0xc821515d60 0xc821515ec0 0xc821504020 0xc821504160 0xc8215042a0 0xc821504380 0xc821504520]} +&{StyleOptionType QStyleOption::StyleOptionType commendable public [0xc821504960]} +&{StyleOptionVersion QStyleOption::StyleOptionVersion commendable public [0xc821504e20]} diff --git a/internal/binding/dump/QtWidgets/QStyleOptionButton.txt b/internal/binding/dump/QtWidgets/QStyleOptionButton.txt new file mode 100755 index 00000000..26f2f2cb --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleOptionButton.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{QStyleOptionButton QStyleOptionButton::QStyleOptionButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false false [] } +&{QStyleOptionButton QStyleOptionButton::QStyleOptionButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false true 2 [0xc8214e2da0] } +######################################## ENUMS ######################################## +&{ButtonFeature QStyleOptionButton::ButtonFeature commendable public QStyleOptionButton::ButtonFeatures [0xc8214f3880 0xc8214f3980 0xc8214f3aa0 0xc8214f3ba0 0xc8214f3d80 0xc8214f3f80]} +&{StyleOptionType QStyleOptionButton::StyleOptionType commendable public [0xc8214e2360]} +&{StyleOptionVersion QStyleOptionButton::StyleOptionVersion commendable public [0xc8214e2720]} diff --git a/internal/binding/dump/QtWidgets/QStyleOptionComboBox.txt b/internal/binding/dump/QtWidgets/QStyleOptionComboBox.txt new file mode 100755 index 00000000..d3afcbd5 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleOptionComboBox.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QStyleOptionComboBox QStyleOptionComboBox::QStyleOptionComboBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false false [] } +&{QStyleOptionComboBox QStyleOptionComboBox::QStyleOptionComboBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false true 2 [0xc8214d26c0] } +######################################## ENUMS ######################################## +&{StyleOptionType QStyleOptionComboBox::StyleOptionType commendable public [0xc8214e3d40]} +&{StyleOptionVersion QStyleOptionComboBox::StyleOptionVersion commendable public [0xc8214d20c0]} diff --git a/internal/binding/dump/QtWidgets/QStyleOptionComplex.txt b/internal/binding/dump/QtWidgets/QStyleOptionComplex.txt new file mode 100755 index 00000000..24785ba8 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleOptionComplex.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QStyleOptionComplex QStyleOptionComplex::QStyleOptionComplex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false true 2 [0xc8214b2060] } +&{QStyleOptionComplex QStyleOptionComplex::QStyleOptionComplex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false false [0xc8214b2520 0xc8214b2620] } +######################################## ENUMS ######################################## +&{StyleOptionType QStyleOptionComplex::StyleOptionType commendable public [0xc8214d3720]} +&{StyleOptionVersion QStyleOptionComplex::StyleOptionVersion commendable public [0xc8214d3ba0]} diff --git a/internal/binding/dump/QtWidgets/QStyleOptionDockWidget.txt b/internal/binding/dump/QtWidgets/QStyleOptionDockWidget.txt new file mode 100755 index 00000000..f7ad4249 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleOptionDockWidget.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QStyleOptionDockWidget QStyleOptionDockWidget::QStyleOptionDockWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false false [] } +&{QStyleOptionDockWidget QStyleOptionDockWidget::QStyleOptionDockWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false true 2 [0xc8214b3b20] } +######################################## ENUMS ######################################## +&{StyleOptionType QStyleOptionDockWidget::StyleOptionType commendable public [0xc8214b3040]} +&{StyleOptionVersion QStyleOptionDockWidget::StyleOptionVersion commendable public [0xc8214b3480]} diff --git a/internal/binding/dump/QtWidgets/QStyleOptionFocusRect.txt b/internal/binding/dump/QtWidgets/QStyleOptionFocusRect.txt new file mode 100755 index 00000000..185db4d6 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleOptionFocusRect.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QStyleOptionFocusRect QStyleOptionFocusRect::QStyleOptionFocusRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false false [] } +&{QStyleOptionFocusRect QStyleOptionFocusRect::QStyleOptionFocusRect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false true 2 [0xc8214a3780] } +######################################## ENUMS ######################################## +&{StyleOptionType QStyleOptionFocusRect::StyleOptionType commendable public [0xc8214a2ca0]} +&{StyleOptionVersion QStyleOptionFocusRect::StyleOptionVersion commendable public [0xc8214a3020]} diff --git a/internal/binding/dump/QtWidgets/QStyleOptionFrame.txt b/internal/binding/dump/QtWidgets/QStyleOptionFrame.txt new file mode 100755 index 00000000..81f21801 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleOptionFrame.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{QStyleOptionFrame QStyleOptionFrame::QStyleOptionFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false false [] } +&{QStyleOptionFrame QStyleOptionFrame::QStyleOptionFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false true 2 [0xc8214956c0] } +######################################## ENUMS ######################################## +&{FrameFeature QStyleOptionFrame::FrameFeature commendable public QStyleOptionFrame::FrameFeatures [0xc821494500 0xc821494620 0xc821494720]} +&{StyleOptionType QStyleOptionFrame::StyleOptionType commendable public [0xc821494a80]} +&{StyleOptionVersion QStyleOptionFrame::StyleOptionVersion commendable public [0xc821494ec0]} diff --git a/internal/binding/dump/QtWidgets/QStyleOptionGraphicsItem.txt b/internal/binding/dump/QtWidgets/QStyleOptionGraphicsItem.txt new file mode 100755 index 00000000..05e7dbe7 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleOptionGraphicsItem.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{QStyleOptionGraphicsItem QStyleOptionGraphicsItem::QStyleOptionGraphicsItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false false [] } +&{QStyleOptionGraphicsItem QStyleOptionGraphicsItem::QStyleOptionGraphicsItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false true 2 [0xc8214851e0] } +&{levelOfDetailFromTransform QStyleOptionGraphicsItem::levelOfDetailFromTransform commendable unsupported_goOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non plain true false qreal [0xc821485b60] } +######################################## ENUMS ######################################## +&{StyleOptionType QStyleOptionGraphicsItem::StyleOptionType commendable public [0xc821484700]} +&{StyleOptionVersion QStyleOptionGraphicsItem::StyleOptionVersion commendable public [0xc821484b40]} diff --git a/internal/binding/dump/QtWidgets/QStyleOptionGroupBox.txt b/internal/binding/dump/QtWidgets/QStyleOptionGroupBox.txt new file mode 100755 index 00000000..0922fb2e --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleOptionGroupBox.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QStyleOptionGroupBox QStyleOptionGroupBox::QStyleOptionGroupBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false false [] } +&{QStyleOptionGroupBox QStyleOptionGroupBox::QStyleOptionGroupBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false true 2 [0xc8214710c0] } +######################################## ENUMS ######################################## +&{StyleOptionType QStyleOptionGroupBox::StyleOptionType commendable public [0xc8214706a0]} +&{StyleOptionVersion QStyleOptionGroupBox::StyleOptionVersion commendable public [0xc821470a40]} diff --git a/internal/binding/dump/QtWidgets/QStyleOptionHeader.txt b/internal/binding/dump/QtWidgets/QStyleOptionHeader.txt new file mode 100755 index 00000000..dda45a29 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleOptionHeader.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QStyleOptionHeader QStyleOptionHeader::QStyleOptionHeader commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false false [] } +&{QStyleOptionHeader QStyleOptionHeader::QStyleOptionHeader commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false true 2 [0xc821463f60] } +######################################## ENUMS ######################################## +&{SectionPosition QStyleOptionHeader::SectionPosition commendable public [0xc8214622e0 0xc821462420 0xc8214624a0 0xc821462600]} +&{SelectedPosition QStyleOptionHeader::SelectedPosition commendable public [0xc821462900 0xc8214629e0 0xc821462bc0 0xc821462e00]} +&{SortIndicator QStyleOptionHeader::SortIndicator commendable public [0xc8214630a0 0xc8214631e0 0xc8214632c0]} +&{StyleOptionType QStyleOptionHeader::StyleOptionType commendable public [0xc821463560]} +&{StyleOptionVersion QStyleOptionHeader::StyleOptionVersion commendable public [0xc821463900]} diff --git a/internal/binding/dump/QtWidgets/QStyleOptionMenuItem.txt b/internal/binding/dump/QtWidgets/QStyleOptionMenuItem.txt new file mode 100755 index 00000000..d872f9b4 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleOptionMenuItem.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{QStyleOptionMenuItem QStyleOptionMenuItem::QStyleOptionMenuItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false false [] } +&{QStyleOptionMenuItem QStyleOptionMenuItem::QStyleOptionMenuItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false true 2 [0xc821442e00] } +######################################## ENUMS ######################################## +&{CheckType QStyleOptionMenuItem::CheckType commendable public [0xc821451580 0xc8214516e0 0xc8214518a0]} +&{MenuItemType QStyleOptionMenuItem::MenuItemType commendable public [0xc821451b40 0xc821451d00 0xc821451e40 0xc821451f20 0xc821442080 0xc8214421c0 0xc821442240 0xc821442380]} +&{StyleOptionType QStyleOptionMenuItem::StyleOptionType commendable public [0xc8214425a0]} +&{StyleOptionVersion QStyleOptionMenuItem::StyleOptionVersion commendable public [0xc821442840]} diff --git a/internal/binding/dump/QtWidgets/QStyleOptionProgressBar.txt b/internal/binding/dump/QtWidgets/QStyleOptionProgressBar.txt new file mode 100755 index 00000000..547d585d --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleOptionProgressBar.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QStyleOptionProgressBar QStyleOptionProgressBar::QStyleOptionProgressBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false false [] } +&{QStyleOptionProgressBar QStyleOptionProgressBar::QStyleOptionProgressBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false true 2 [0xc8214307e0] } +######################################## ENUMS ######################################## +&{StyleOptionType QStyleOptionProgressBar::StyleOptionType commendable public [0xc821443f60]} +&{StyleOptionVersion QStyleOptionProgressBar::StyleOptionVersion commendable public [0xc821430260]} diff --git a/internal/binding/dump/QtWidgets/QStyleOptionRubberBand.txt b/internal/binding/dump/QtWidgets/QStyleOptionRubberBand.txt new file mode 100755 index 00000000..a88d8334 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleOptionRubberBand.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QStyleOptionRubberBand QStyleOptionRubberBand::QStyleOptionRubberBand commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false false [] } +&{QStyleOptionRubberBand QStyleOptionRubberBand::QStyleOptionRubberBand commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false true 2 [0xc821422060] } +######################################## ENUMS ######################################## +&{StyleOptionType QStyleOptionRubberBand::StyleOptionType commendable public [0xc821431780]} +&{StyleOptionVersion QStyleOptionRubberBand::StyleOptionVersion commendable public [0xc821431aa0]} diff --git a/internal/binding/dump/QtWidgets/QStyleOptionSizeGrip.txt b/internal/binding/dump/QtWidgets/QStyleOptionSizeGrip.txt new file mode 100755 index 00000000..7f7075c0 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleOptionSizeGrip.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QStyleOptionSizeGrip QStyleOptionSizeGrip::QStyleOptionSizeGrip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false false [] } +&{QStyleOptionSizeGrip QStyleOptionSizeGrip::QStyleOptionSizeGrip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false true 2 [0xc8214233a0] } +######################################## ENUMS ######################################## +&{StyleOptionType QStyleOptionSizeGrip::StyleOptionType commendable public [0xc821422b20]} +&{StyleOptionVersion QStyleOptionSizeGrip::StyleOptionVersion commendable public [0xc821422e00]} diff --git a/internal/binding/dump/QtWidgets/QStyleOptionSlider.txt b/internal/binding/dump/QtWidgets/QStyleOptionSlider.txt new file mode 100755 index 00000000..d7abf2df --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleOptionSlider.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QStyleOptionSlider QStyleOptionSlider::QStyleOptionSlider commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false false [] } +&{QStyleOptionSlider QStyleOptionSlider::QStyleOptionSlider commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false true 2 [0xc821412520] } +######################################## ENUMS ######################################## +&{StyleOptionType QStyleOptionSlider::StyleOptionType commendable public [0xc821423d00]} +&{StyleOptionVersion QStyleOptionSlider::StyleOptionVersion commendable public [0xc821412080]} diff --git a/internal/binding/dump/QtWidgets/QStyleOptionSpinBox.txt b/internal/binding/dump/QtWidgets/QStyleOptionSpinBox.txt new file mode 100755 index 00000000..d8f67ec1 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleOptionSpinBox.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QStyleOptionSpinBox QStyleOptionSpinBox::QStyleOptionSpinBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false false [] } +&{QStyleOptionSpinBox QStyleOptionSpinBox::QStyleOptionSpinBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false true 2 [0xc8213f0240] } +######################################## ENUMS ######################################## +&{StyleOptionType QStyleOptionSpinBox::StyleOptionType commendable public [0xc821413a00]} +&{StyleOptionVersion QStyleOptionSpinBox::StyleOptionVersion commendable public [0xc821413d40]} diff --git a/internal/binding/dump/QtWidgets/QStyleOptionTab.txt b/internal/binding/dump/QtWidgets/QStyleOptionTab.txt new file mode 100755 index 00000000..6ecffe66 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleOptionTab.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{QStyleOptionTab QStyleOptionTab::QStyleOptionTab commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false false [] } +&{QStyleOptionTab QStyleOptionTab::QStyleOptionTab commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false true 2 [0xc8213df100] } +######################################## ENUMS ######################################## +&{CornerWidget QStyleOptionTab::CornerWidget commendable public QStyleOptionTab::CornerWidgets [0xc8213f0e20 0xc8213f0f40 0xc8213f1020]} +&{SelectedPosition QStyleOptionTab::SelectedPosition commendable public [0xc8213f12c0 0xc8213f1360 0xc8213f1500]} +&{StyleOptionType QStyleOptionTab::StyleOptionType commendable public [0xc8213f1880]} +&{StyleOptionVersion QStyleOptionTab::StyleOptionVersion commendable public [0xc8213f1bc0]} +&{TabFeature QStyleOptionTab::TabFeature commendable public QStyleOptionTab::TabFeatures [0xc8213f1fe0 0xc8213de100]} +&{TabPosition QStyleOptionTab::TabPosition commendable public [0xc8213de480 0xc8213de580 0xc8213de640 0xc8213de7a0]} diff --git a/internal/binding/dump/QtWidgets/QStyleOptionTabBarBase.txt b/internal/binding/dump/QtWidgets/QStyleOptionTabBarBase.txt new file mode 100755 index 00000000..d78787df --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleOptionTabBarBase.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QStyleOptionTabBarBase QStyleOptionTabBarBase::QStyleOptionTabBarBase commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false false [] } +&{QStyleOptionTabBarBase QStyleOptionTabBarBase::QStyleOptionTabBarBase commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false true 2 [0xc8213d3220] } +######################################## ENUMS ######################################## +&{StyleOptionType QStyleOptionTabBarBase::StyleOptionType commendable public [0xc8213d2880]} +&{StyleOptionVersion QStyleOptionTabBarBase::StyleOptionVersion commendable public [0xc8213d2c20]} diff --git a/internal/binding/dump/QtWidgets/QStyleOptionTabWidgetFrame.txt b/internal/binding/dump/QtWidgets/QStyleOptionTabWidgetFrame.txt new file mode 100755 index 00000000..154a8419 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleOptionTabWidgetFrame.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QStyleOptionTabWidgetFrame QStyleOptionTabWidgetFrame::QStyleOptionTabWidgetFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false false [] } +&{QStyleOptionTabWidgetFrame QStyleOptionTabWidgetFrame::QStyleOptionTabWidgetFrame commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false true 2 [0xc8226fc7c0] } +######################################## ENUMS ######################################## +&{StyleOptionType QStyleOptionTabWidgetFrame::StyleOptionType commendable public [0xc8226fc060]} +&{StyleOptionVersion QStyleOptionTabWidgetFrame::StyleOptionVersion commendable public [0xc8226fc380]} diff --git a/internal/binding/dump/QtWidgets/QStyleOptionTitleBar.txt b/internal/binding/dump/QtWidgets/QStyleOptionTitleBar.txt new file mode 100755 index 00000000..11b9dea0 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleOptionTitleBar.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QStyleOptionTitleBar QStyleOptionTitleBar::QStyleOptionTitleBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false false [] } +&{QStyleOptionTitleBar QStyleOptionTitleBar::QStyleOptionTitleBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false true 2 [0xc8226fdbc0] } +######################################## ENUMS ######################################## +&{StyleOptionType QStyleOptionTitleBar::StyleOptionType commendable public [0xc8226fd480]} +&{StyleOptionVersion QStyleOptionTitleBar::StyleOptionVersion commendable public [0xc8226fd720]} diff --git a/internal/binding/dump/QtWidgets/QStyleOptionToolBar.txt b/internal/binding/dump/QtWidgets/QStyleOptionToolBar.txt new file mode 100755 index 00000000..d3940be0 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleOptionToolBar.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{QStyleOptionToolBar QStyleOptionToolBar::QStyleOptionToolBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false false [] } +&{QStyleOptionToolBar QStyleOptionToolBar::QStyleOptionToolBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false true 2 [0xc8213c39e0] } +######################################## ENUMS ######################################## +&{StyleOptionType QStyleOptionToolBar::StyleOptionType commendable public [0xc8213c2720]} +&{StyleOptionVersion QStyleOptionToolBar::StyleOptionVersion commendable public [0xc8213c2ae0]} +&{ToolBarFeature QStyleOptionToolBar::ToolBarFeature commendable public QStyleOptionToolBar::ToolBarFeatures [0xc8213c2d00 0xc8213c2e20]} +&{ToolBarPosition QStyleOptionToolBar::ToolBarPosition commendable public [0xc8213c30a0 0xc8213c3180 0xc8213c3280 0xc8213c3380]} diff --git a/internal/binding/dump/QtWidgets/QStyleOptionToolBox.txt b/internal/binding/dump/QtWidgets/QStyleOptionToolBox.txt new file mode 100755 index 00000000..4ee208f4 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleOptionToolBox.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{QStyleOptionToolBox QStyleOptionToolBox::QStyleOptionToolBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false false [] } +&{QStyleOptionToolBox QStyleOptionToolBox::QStyleOptionToolBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false true 2 [0xc8213b5a40] } +######################################## ENUMS ######################################## +&{SelectedPosition QStyleOptionToolBox::SelectedPosition commendable public [0xc8213b4720 0xc8213b4820 0xc8213b4980]} +&{StyleOptionType QStyleOptionToolBox::StyleOptionType commendable public [0xc8213b4c40]} +&{StyleOptionVersion QStyleOptionToolBox::StyleOptionVersion commendable public [0xc8213b4ee0]} +&{TabPosition QStyleOptionToolBox::TabPosition commendable public [0xc8213b5240 0xc8213b5320 0xc8213b53e0 0xc8213b54a0]} diff --git a/internal/binding/dump/QtWidgets/QStyleOptionToolButton.txt b/internal/binding/dump/QtWidgets/QStyleOptionToolButton.txt new file mode 100755 index 00000000..c502021e --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleOptionToolButton.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{QStyleOptionToolButton QStyleOptionToolButton::QStyleOptionToolButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false false [] } +&{QStyleOptionToolButton QStyleOptionToolButton::QStyleOptionToolButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false true 2 [0xc8213a1780] } +######################################## ENUMS ######################################## +&{StyleOptionType QStyleOptionToolButton::StyleOptionType commendable public [0xc8213a0640]} +&{StyleOptionVersion QStyleOptionToolButton::StyleOptionVersion commendable public [0xc8213a0900]} +&{ToolButtonFeature QStyleOptionToolButton::ToolButtonFeature commendable public QStyleOptionToolButton::ToolButtonFeatures [0xc8213a0c40 0xc8213a0d40 0xc8213a0dc0 0xc8213a0ea0 0xc8213a1080 0xc8213a1100]} diff --git a/internal/binding/dump/QtWidgets/QStyleOptionViewItem.txt b/internal/binding/dump/QtWidgets/QStyleOptionViewItem.txt new file mode 100755 index 00000000..5babe9f8 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyleOptionViewItem.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QStyleOptionViewItem QStyleOptionViewItem::QStyleOptionViewItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false false [] } +&{QStyleOptionViewItem QStyleOptionViewItem::QStyleOptionViewItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleoption.h non constructor false true 2 [0xc822021880] } +######################################## ENUMS ######################################## +&{Position QStyleOptionViewItem::Position commendable public [0xc8220205c0 0xc822020660 0xc8220206e0 0xc8220207a0]} +&{StyleOptionType QStyleOptionViewItem::StyleOptionType commendable public [0xc822020940]} +&{StyleOptionVersion QStyleOptionViewItem::StyleOptionVersion commendable public [0xc822020b60]} +&{ViewItemFeature QStyleOptionViewItem::ViewItemFeature commendable public QStyleOptionViewItem::ViewItemFeatures [0xc822020cc0 0xc822020da0 0xc822020e20 0xc822020f00 0xc822020fe0 0xc8220210a0]} +&{ViewItemPosition QStyleOptionViewItem::ViewItemPosition commendable public [0xc822021240 0xc8220212c0 0xc822021380 0xc822021420 0xc822021500]} diff --git a/internal/binding/dump/QtWidgets/QStylePainter.txt b/internal/binding/dump/QtWidgets/QStylePainter.txt new file mode 100755 index 00000000..665f73bc --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStylePainter.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QStylePainter QStylePainter::QStylePainter commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstylepainter.h non constructor false false [] } +&{QStylePainter QStylePainter::QStylePainter commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstylepainter.h non constructor false true 3 [0xc821391e60 0xc821391f40] } +&{QStylePainter QStylePainter::QStylePainter commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstylepainter.h non constructor false true 2 [0xc82137c280] } +&{begin QStylePainter::begin commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstylepainter.h non plain false true 2 bool [0xc82137c5a0 0xc82137c6c0] } +&{begin QStylePainter::begin commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstylepainter.h non plain false false bool [0xc82137caa0] } +&{drawComplexControl QStylePainter::drawComplexControl commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstylepainter.h non plain false false void [0xc82137cd60 0xc82137cfa0] } +&{drawControl QStylePainter::drawControl commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstylepainter.h non plain false false void [0xc82137d340 0xc82137d4e0] } +&{drawItemPixmap QStylePainter::drawItemPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstylepainter.h non plain false false void [0xc82137d8a0 0xc82137d960 0xc82137da20] } +&{drawItemText QStylePainter::drawItemText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstylepainter.h non plain false false void [0xc82137de00 0xc82137dee0 0xc82137dfe0 0xc82136e080 0xc82136e1c0 0xc82136e300] } +&{drawPrimitive QStylePainter::drawPrimitive commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstylepainter.h non plain false false void [0xc82136e6e0 0xc82136e900] } +&{style QStylePainter::style commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstylepainter.h non plain false false QStyle * [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QStylePlugin.txt b/internal/binding/dump/QtWidgets/QStylePlugin.txt new file mode 100755 index 00000000..6ddef3d6 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStylePlugin.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{QStylePlugin QStylePlugin::QStylePlugin commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleplugin.h non constructor false false [0xc82136f0a0] } +&{create QStylePlugin::create commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleplugin.h pure plain false false QStyle * [0xc82136f380] } +&{~QStylePlugin QStylePlugin::~QStylePlugin commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qstyleplugin.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QStyledItemDelegate.txt b/internal/binding/dump/QtWidgets/QStyledItemDelegate.txt new file mode 100755 index 00000000..124f8be2 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QStyledItemDelegate.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{eventFilter QStyledItemDelegate::eventFilter commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qstyleditemdelegate.cpp impure plain false false bool [0xc822943c40 0xc822943d00] } +&{QStyledItemDelegate QStyledItemDelegate::QStyledItemDelegate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qstyleditemdelegate.h non constructor false false [0xc822943f60] } +&{createEditor QStyledItemDelegate::createEditor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qstyleditemdelegate.h impure plain false false QWidget * [0xc822458100 0xc822458200 0xc8224582e0] } +&{displayText QStyledItemDelegate::displayText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qstyleditemdelegate.h impure plain false false QString [0xc822458560 0xc822458600] } +&{editorEvent QStyledItemDelegate::editorEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qstyleditemdelegate.h impure plain false false bool [0xc822458880 0xc822458960 0xc822458a60 0xc822458b60] } +&{initStyleOption QStyledItemDelegate::initStyleOption commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qstyleditemdelegate.h impure plain false false void [0xc822458d60 0xc822458e60] } +&{itemEditorFactory QStyledItemDelegate::itemEditorFactory commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qstyleditemdelegate.h non plain false false QItemEditorFactory * [] } +&{paint QStyledItemDelegate::paint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qstyleditemdelegate.h impure plain false false void [0xc822459280 0xc822459380 0xc822459460] } +&{setEditorData QStyledItemDelegate::setEditorData commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qstyleditemdelegate.h impure plain false false void [0xc822459680 0xc822459760] } +&{setItemEditorFactory QStyledItemDelegate::setItemEditorFactory commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qstyleditemdelegate.h non plain false false void [0xc8224599c0] } +&{setModelData QStyledItemDelegate::setModelData commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qstyleditemdelegate.h impure plain false false void [0xc822459ba0 0xc822459c60 0xc822459d60] } +&{sizeHint QStyledItemDelegate::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qstyleditemdelegate.h impure plain false false QSize [0xc822470000 0xc822470100] } +&{updateEditorGeometry QStyledItemDelegate::updateEditorGeometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qstyleditemdelegate.h impure plain false false void [0xc822470380 0xc822470440 0xc822470540] } +&{~QStyledItemDelegate QStyledItemDelegate::~QStyledItemDelegate commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qstyleditemdelegate.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QSwipeGesture.txt b/internal/binding/dump/QtWidgets/QSwipeGesture.txt new file mode 100755 index 00000000..b92c303b --- /dev/null +++ b/internal/binding/dump/QtWidgets/QSwipeGesture.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{horizontalDirection QSwipeGesture::horizontalDirection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false SwipeDirection [] } +&{setSwipeAngle QSwipeGesture::setSwipeAngle commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false void [0xc822ce00c0] } +&{swipeAngle QSwipeGesture::swipeAngle commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false qreal [] } +&{verticalDirection QSwipeGesture::verticalDirection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false SwipeDirection [] } +&{~QSwipeGesture QSwipeGesture::~QSwipeGesture commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.h non destructor false false [] } +######################################## ENUMS ######################################## +&{SwipeDirection QSwipeGesture::SwipeDirection commendable public [0xc822ce0640 0xc822ce0720 0xc822ce0860 0xc822ce0920 0xc822ce0a20]} diff --git a/internal/binding/dump/QtWidgets/QSystemTrayIcon.txt b/internal/binding/dump/QtWidgets/QSystemTrayIcon.txt new file mode 100755 index 00000000..b0757749 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QSystemTrayIcon.txt @@ -0,0 +1,24 @@ +######################################## FUNCTIONS ######################################## +&{icon QSystemTrayIcon::icon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qsystemtrayicon.cpp non plain false false QIcon [] } +&{isVisible QSystemTrayIcon::isVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qsystemtrayicon.cpp non plain false false bool [] } +&{setIcon QSystemTrayIcon::setIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qsystemtrayicon.cpp non plain false false void [0xc821285d80] } +&{setToolTip QSystemTrayIcon::setToolTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qsystemtrayicon.cpp non plain false false void [0xc8212740c0] } +&{setVisible QSystemTrayIcon::setVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qsystemtrayicon.cpp non slot false false void [0xc821274680] } +&{showMessage QSystemTrayIcon::showMessage commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qsystemtrayicon.cpp non slot false false void [0xc821274a20 0xc821274b40 0xc821274ca0 0xc821274ee0] } +&{toolTip QSystemTrayIcon::toolTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qsystemtrayicon.cpp non plain false false QString [] } +&{QSystemTrayIcon QSystemTrayIcon::QSystemTrayIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qsystemtrayicon.h non constructor false false [0xc821264620] } +&{QSystemTrayIcon QSystemTrayIcon::QSystemTrayIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qsystemtrayicon.h non constructor false true 2 [0xc8212649e0 0xc821264a80] } +&{activated QSystemTrayIcon::activated commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qsystemtrayicon.h non signal false false void [0xc821265160] } +&{contextMenu QSystemTrayIcon::contextMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qsystemtrayicon.h non plain false false QMenu * [] } +&{event QSystemTrayIcon::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qsystemtrayicon.h impure plain false false bool [0xc821265780] } +&{geometry QSystemTrayIcon::geometry commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qsystemtrayicon.h non plain false false QRect [] } +&{hide QSystemTrayIcon::hide commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qsystemtrayicon.h non slot false false void [] } +&{isSystemTrayAvailable QSystemTrayIcon::isSystemTrayAvailable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qsystemtrayicon.h non plain true false bool [] } +&{messageClicked QSystemTrayIcon::messageClicked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qsystemtrayicon.h non signal false false void [] } +&{setContextMenu QSystemTrayIcon::setContextMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qsystemtrayicon.h non plain false false void [0xc821252300] } +&{show QSystemTrayIcon::show commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qsystemtrayicon.h non slot false false void [] } +&{supportsMessages QSystemTrayIcon::supportsMessages commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qsystemtrayicon.h non plain true false bool [] } +&{~QSystemTrayIcon QSystemTrayIcon::~QSystemTrayIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qsystemtrayicon.h non destructor false false [] } +######################################## ENUMS ######################################## +&{ActivationReason QSystemTrayIcon::ActivationReason commendable public [0xc821275640 0xc8212757c0 0xc821275960 0xc821275a40 0xc821275c80]} +&{MessageIcon QSystemTrayIcon::MessageIcon commendable public [0xc821264000 0xc821264100 0xc8212641c0 0xc8212642e0]} diff --git a/internal/binding/dump/QtWidgets/QTabBar.txt b/internal/binding/dump/QtWidgets/QTabBar.txt new file mode 100755 index 00000000..f17a449f --- /dev/null +++ b/internal/binding/dump/QtWidgets/QTabBar.txt @@ -0,0 +1,83 @@ +######################################## FUNCTIONS ######################################## +&{autoHide QTabBar::autoHide commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.cpp non plain false false bool [] } +&{changeCurrentOnDrag QTabBar::changeCurrentOnDrag commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.cpp non plain false false bool [] } +&{count QTabBar::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.cpp non plain false false int [] } +&{currentIndex QTabBar::currentIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.cpp non plain false false int [] } +&{documentMode QTabBar::documentMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.cpp non plain false false bool [] } +&{drawBase QTabBar::drawBase commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.cpp non plain false false bool [] } +&{elideMode QTabBar::elideMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.cpp non plain false false Qt::TextElideMode [] } +&{expanding QTabBar::expanding commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.cpp non plain false false bool [] } +&{iconSize QTabBar::iconSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.cpp non plain false false QSize [] } +&{isMovable QTabBar::isMovable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.cpp non plain false false bool [] } +&{selectionBehaviorOnRemove QTabBar::selectionBehaviorOnRemove commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.cpp non plain false false SelectionBehavior [] } +&{setAutoHide QTabBar::setAutoHide commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.cpp non plain false false void [0xc8224009a0] } +&{setChangeCurrentOnDrag QTabBar::setChangeCurrentOnDrag commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.cpp non plain false false void [0xc822400da0] } +&{setCurrentIndex QTabBar::setCurrentIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.cpp non slot false false void [0xc822401100] } +&{setDocumentMode QTabBar::setDocumentMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.cpp non plain false false void [0xc8224013e0] } +&{setDrawBase QTabBar::setDrawBase commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.cpp non plain false false void [0xc8224017e0] } +&{setElideMode QTabBar::setElideMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.cpp non plain false false void [0xc822401c00] } +&{setExpanding QTabBar::setExpanding commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.cpp non plain false false void [0xc821d70080] } +&{setIconSize QTabBar::setIconSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.cpp non plain false false void [0xc821d70480] } +&{setMovable QTabBar::setMovable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.cpp non plain false false void [0xc821d70820] } +&{setSelectionBehaviorOnRemove QTabBar::setSelectionBehaviorOnRemove commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.cpp non plain false false void [0xc821d70bc0] } +&{setShape QTabBar::setShape commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.cpp non plain false false void [0xc821d71140] } +&{setTabsClosable QTabBar::setTabsClosable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.cpp non plain false false void [0xc821d71520] } +&{setUsesScrollButtons QTabBar::setUsesScrollButtons commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.cpp non plain false false void [0xc821d719a0] } +&{shape QTabBar::shape commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.cpp non plain false false Shape [] } +&{tabsClosable QTabBar::tabsClosable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.cpp non plain false false bool [] } +&{usesScrollButtons QTabBar::usesScrollButtons commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.cpp non plain false false bool [] } +&{QTabBar QTabBar::QTabBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non constructor false false [0xc821ecfb20] } +&{addTab QTabBar::addTab commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non plain false true 2 int [0xc821d66220 0xc821d66320] } +&{addTab QTabBar::addTab commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non plain false false int [0xc821d66520] } +&{changeEvent QTabBar::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h impure plain false false void [0xc821d66880] } +&{currentChanged QTabBar::currentChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non signal false false void [0xc821d66be0] } +&{event QTabBar::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h impure plain false false bool [0xc821d66de0] } +&{hideEvent QTabBar::hideEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h impure plain false false void [0xc821d67100] } +&{initStyleOption QTabBar::initStyleOption commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non plain false false void [0xc821d67560 0xc821d67660] } +&{insertTab QTabBar::insertTab commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non plain false true 2 int [0xc821d67a20 0xc821d67b20 0xc821d67c60] } +&{insertTab QTabBar::insertTab commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non plain false false int [0xc821d67fc0 0xc821f48080] } +&{isTabEnabled QTabBar::isTabEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non plain false false bool [0xc821f483c0] } +&{keyPressEvent QTabBar::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h impure plain false false void [0xc821f487c0] } +&{minimumSizeHint QTabBar::minimumSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h impure plain false false QSize [] } +&{minimumTabSizeHint QTabBar::minimumTabSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h impure plain false false QSize [0xc821f48d00] } +&{mouseMoveEvent QTabBar::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h impure plain false false void [0xc821f48fe0] } +&{mousePressEvent QTabBar::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h impure plain false false void [0xc821f49220] } +&{mouseReleaseEvent QTabBar::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h impure plain false false void [0xc821f49600] } +&{moveTab QTabBar::moveTab commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non plain false false void [0xc821f49980 0xc821f49a40] } +&{paintEvent QTabBar::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h impure plain false false void [0xc821f49da0] } +&{removeTab QTabBar::removeTab commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non plain false false void [0xc8220de180] } +&{resizeEvent QTabBar::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h impure plain false false void [0xc8220de4c0] } +&{setTabButton QTabBar::setTabButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non plain false false void [0xc8220de8c0 0xc8220de9a0 0xc8220deb20] } +&{setTabData QTabBar::setTabData commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non plain false false void [0xc8220deec0 0xc8220df000] } +&{setTabEnabled QTabBar::setTabEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non plain false false void [0xc8220df2e0 0xc8220df460] } +&{setTabIcon QTabBar::setTabIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non plain false false void [0xc8220df780 0xc8220df840] } +&{setTabText QTabBar::setTabText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non plain false false void [0xc8220dfb00 0xc8220dfbc0] } +&{setTabTextColor QTabBar::setTabTextColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non plain false false void [0xc8220dff20 0xc8220ec080] } +&{setTabToolTip QTabBar::setTabToolTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non plain false false void [0xc8220ec340 0xc8220ec4e0] } +&{setTabWhatsThis QTabBar::setTabWhatsThis commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non plain false false void [0xc8220ec7e0 0xc8220ec8a0] } +&{showEvent QTabBar::showEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h impure plain false false void [0xc8220ecc00] } +&{sizeHint QTabBar::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h impure plain false false QSize [] } +&{tabAt QTabBar::tabAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non plain false false int [0xc8220ecf80] } +&{tabBarClicked QTabBar::tabBarClicked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non signal false false void [0xc8220ed200] } +&{tabBarDoubleClicked QTabBar::tabBarDoubleClicked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non signal false false void [0xc8220ed4e0] } +&{tabButton QTabBar::tabButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non plain false false QWidget * [0xc8220ed740 0xc8220ed7c0] } +&{tabCloseRequested QTabBar::tabCloseRequested commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non signal false false void [0xc8220edac0] } +&{tabData QTabBar::tabData commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non plain false false QVariant [0xc8220ede00] } +&{tabIcon QTabBar::tabIcon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non plain false false QIcon [0xc821d5e0c0] } +&{tabInserted QTabBar::tabInserted commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h impure plain false false void [0xc821d5e4e0] } +&{tabLayoutChange QTabBar::tabLayoutChange commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h impure plain false false void [] } +&{tabMoved QTabBar::tabMoved commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non signal false false void [0xc821d5ea60 0xc821d5eb60] } +&{tabRect QTabBar::tabRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non plain false false QRect [0xc821d5eda0] } +&{tabRemoved QTabBar::tabRemoved commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h impure plain false false void [0xc821d5f100] } +&{tabSizeHint QTabBar::tabSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h impure plain false false QSize [0xc821d5f3a0] } +&{tabText QTabBar::tabText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non plain false false QString [0xc821d5f6e0] } +&{tabTextColor QTabBar::tabTextColor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non plain false false QColor [0xc821d5fa80] } +&{tabToolTip QTabBar::tabToolTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non plain false false QString [0xc821d5fec0] } +&{tabWhatsThis QTabBar::tabWhatsThis commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non plain false false QString [0xc8227c01e0] } +&{timerEvent QTabBar::timerEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h impure plain false false void [0xc8227c0540] } +&{wheelEvent QTabBar::wheelEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h impure plain false false void [0xc8227c0800] } +&{~QTabBar QTabBar::~QTabBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabbar.h non destructor false false [] } +######################################## ENUMS ######################################## +&{ButtonPosition QTabBar::ButtonPosition commendable public [0xc821ece3a0 0xc821ece540]} +&{SelectionBehavior QTabBar::SelectionBehavior commendable public [0xc821ecea00 0xc821eceac0 0xc821ecec00]} +&{Shape QTabBar::Shape commendable public [0xc821ecef00 0xc821ecf020 0xc821ecf1a0 0xc821ecf240 0xc821ecf420 0xc821ecf4e0 0xc821ecf6c0 0xc821ecf7a0]} diff --git a/internal/binding/dump/QtWidgets/QTabWidget.txt b/internal/binding/dump/QtWidgets/QTabWidget.txt new file mode 100755 index 00000000..e29558c1 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QTabWidget.txt @@ -0,0 +1,68 @@ +######################################## FUNCTIONS ######################################## +&{addTab QTabWidget::addTab commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.cpp non plain false true 2 int [0xc8220c9600 0xc8220c96a0 0xc8220c9800] } +&{addTab QTabWidget::addTab commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.cpp non plain false false int [0xc8220c9b20 0xc8220c9c80] } +&{count QTabWidget::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.cpp non plain false false int [] } +&{currentIndex QTabWidget::currentIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.cpp non plain false false int [] } +&{documentMode QTabWidget::documentMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.cpp non plain false false bool [] } +&{elideMode QTabWidget::elideMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.cpp non plain false false Qt::TextElideMode [] } +&{iconSize QTabWidget::iconSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.cpp non plain false false QSize [] } +&{insertTab QTabWidget::insertTab commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.cpp non plain false true 2 int [0xc821eb8b40 0xc821eb8be0 0xc821eb8d20 0xc821eb8da0] } +&{insertTab QTabWidget::insertTab commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.cpp non plain false false int [0xc821eb91e0 0xc821eb92c0 0xc821eb93a0] } +&{isMovable QTabWidget::isMovable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.cpp non plain false false bool [] } +&{paintEvent QTabWidget::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.cpp impure plain false false void [0xc821eb9900] } +&{setCornerWidget QTabWidget::setCornerWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.cpp non plain false false void [0xc821eb9be0 0xc821eb9ca0] } +&{setCurrentIndex QTabWidget::setCurrentIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.cpp non slot false false void [0xc82273a000] } +&{setDocumentMode QTabWidget::setDocumentMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.cpp non plain false false void [0xc82273a320] } +&{setElideMode QTabWidget::setElideMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.cpp non plain false false void [0xc82273a740] } +&{setIconSize QTabWidget::setIconSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.cpp non plain false false void [0xc82273ab80] } +&{setMovable QTabWidget::setMovable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.cpp non plain false false void [0xc82273afc0] } +&{setTabBarAutoHide QTabWidget::setTabBarAutoHide commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.cpp non plain false false void [0xc82273b440] } +&{setTabPosition QTabWidget::setTabPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.cpp non plain false false void [0xc82273b720] } +&{setTabShape QTabWidget::setTabShape commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.cpp non plain false false void [0xc82273bba0] } +&{setTabsClosable QTabWidget::setTabsClosable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.cpp non plain false false void [0xc82273be80] } +&{setUsesScrollButtons QTabWidget::setUsesScrollButtons commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.cpp non plain false false void [0xc821e5a220] } +&{tabBarAutoHide QTabWidget::tabBarAutoHide commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.cpp non plain false false bool [] } +&{tabPosition QTabWidget::tabPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.cpp non plain false false TabPosition [] } +&{tabShape QTabWidget::tabShape commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.cpp non plain false false TabShape [] } +&{tabsClosable QTabWidget::tabsClosable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.cpp non plain false false bool [] } +&{usesScrollButtons QTabWidget::usesScrollButtons commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.cpp non plain false false bool [] } +&{QTabWidget QTabWidget::QTabWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h non constructor false false [0xc821e5bb40] } +&{changeEvent QTabWidget::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h impure plain false false void [0xc822532280] } +&{clear QTabWidget::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h non plain false false void [] } +&{cornerWidget QTabWidget::cornerWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h non plain false false QWidget * [0xc8225327c0] } +&{currentChanged QTabWidget::currentChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h non signal false false void [0xc822532b20] } +&{currentWidget QTabWidget::currentWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h non plain false false QWidget * [] } +&{event QTabWidget::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h impure plain false false bool [0xc822533060] } +&{hasHeightForWidth QTabWidget::hasHeightForWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h impure plain false false bool [] } +&{heightForWidth QTabWidget::heightForWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h impure plain false false int [0xc822533520] } +&{indexOf QTabWidget::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h non plain false false int [0xc822533880] } +&{initStyleOption QTabWidget::initStyleOption commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h non plain false false void [0xc822533c40] } +&{isTabEnabled QTabWidget::isTabEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h non plain false false bool [0xc822533f80] } +&{keyPressEvent QTabWidget::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h impure plain false false void [0xc822a28300] } +&{minimumSizeHint QTabWidget::minimumSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h impure plain false false QSize [] } +&{removeTab QTabWidget::removeTab commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h non plain false false void [0xc822a288c0] } +&{resizeEvent QTabWidget::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h impure plain false false void [0xc822a28c60] } +&{setCurrentWidget QTabWidget::setCurrentWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h non slot false false void [0xc822a28fa0] } +&{setTabBar QTabWidget::setTabBar commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h non plain false false void [0xc822a29340] } +&{setTabEnabled QTabWidget::setTabEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h non plain false false void [0xc822a29700 0xc822a297a0] } +&{setTabIcon QTabWidget::setTabIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h non plain false false void [0xc822a29ae0 0xc822a29c00] } +&{setTabText QTabWidget::setTabText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h non plain false false void [0xc822a29fe0 0xc822a36080] } +&{setTabToolTip QTabWidget::setTabToolTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h non plain false false void [0xc822a363a0 0xc822a36440] } +&{setTabWhatsThis QTabWidget::setTabWhatsThis commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h non plain false false void [0xc822a36760 0xc822a368a0] } +&{showEvent QTabWidget::showEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h impure plain false false void [0xc822a36c40] } +&{sizeHint QTabWidget::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h impure plain false false QSize [] } +&{tabBar QTabWidget::tabBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h non plain false false QTabBar * [] } +&{tabBarClicked QTabWidget::tabBarClicked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h non signal false false void [0xc822a374a0] } +&{tabBarDoubleClicked QTabWidget::tabBarDoubleClicked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h non signal false false void [0xc822a37860] } +&{tabCloseRequested QTabWidget::tabCloseRequested commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h non signal false false void [0xc822a37ce0] } +&{tabIcon QTabWidget::tabIcon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h non plain false false QIcon [0xc821e84080] } +&{tabInserted QTabWidget::tabInserted commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h impure plain false false void [0xc821e84540] } +&{tabRemoved QTabWidget::tabRemoved commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h impure plain false false void [0xc821e848a0] } +&{tabText QTabWidget::tabText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h non plain false false QString [0xc821e84d60] } +&{tabToolTip QTabWidget::tabToolTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h non plain false false QString [0xc821e851c0] } +&{tabWhatsThis QTabWidget::tabWhatsThis commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h non plain false false QString [0xc821e855c0] } +&{widget QTabWidget::widget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h non plain false false QWidget * [0xc821e85a00] } +&{~QTabWidget QTabWidget::~QTabWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtabwidget.h non destructor false false [] } +######################################## ENUMS ######################################## +&{TabPosition QTabWidget::TabPosition commendable public [0xc821e5b0e0 0xc821e5b160 0xc821e5b2a0 0xc821e5b3c0]} +&{TabShape QTabWidget::TabShape commendable public [0xc821e5b6c0 0xc821e5b7e0]} diff --git a/internal/binding/dump/QtWidgets/QTableView.txt b/internal/binding/dump/QtWidgets/QTableView.txt new file mode 100755 index 00000000..19a0d19a --- /dev/null +++ b/internal/binding/dump/QtWidgets/QTableView.txt @@ -0,0 +1,70 @@ +######################################## FUNCTIONS ######################################## +&{gridStyle QTableView::gridStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.cpp non plain false false Qt::PenStyle [] } +&{isCornerButtonEnabled QTableView::isCornerButtonEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.cpp non plain false false bool [] } +&{isSortingEnabled QTableView::isSortingEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.cpp non plain false false bool [] } +&{moveCursor QTableView::moveCursor commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.cpp impure plain false false QModelIndex [0xc8224710a0 0xc8224711a0] } +&{setCornerButtonEnabled QTableView::setCornerButtonEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.cpp non plain false false void [0xc8224714a0] } +&{setGridStyle QTableView::setGridStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.cpp non plain false false void [0xc8224716e0] } +&{setSelection QTableView::setSelection commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.cpp impure plain false false void [0xc822471960 0xc8224719e0] } +&{setShowGrid QTableView::setShowGrid commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.cpp non slot false false void [0xc822471ca0] } +&{setSpan QTableView::setSpan commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.cpp non plain false false void [0xc822471ec0 0xc822471f40 0xc822471fc0 0xc821e60060] } +&{setWordWrap QTableView::setWordWrap commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.cpp non plain false false void [0xc821e602c0] } +&{showGrid QTableView::showGrid commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.cpp non plain false false bool [] } +&{wordWrap QTableView::wordWrap commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.cpp non plain false false bool [] } +&{QTableView QTableView::QTableView commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non constructor false false [0xc821e607e0] } +&{clearSpans QTableView::clearSpans commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non plain false false void [] } +&{columnAt QTableView::columnAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non plain false false int [0xc821e613c0] } +&{columnCountChanged QTableView::columnCountChanged commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non slot false false void [0xc821e61620 0xc821e616a0] } +&{columnMoved QTableView::columnMoved commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non slot false false void [0xc821e618c0 0xc821e61960 0xc821e61a00] } +&{columnResized QTableView::columnResized commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non slot false false void [0xc821e61be0 0xc821e61c60 0xc821e61d00] } +&{columnSpan QTableView::columnSpan commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non plain false false int [0xc821e61f20 0xc821e61fc0] } +&{columnViewportPosition QTableView::columnViewportPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non plain false false int [0xc821e6c1c0] } +&{columnWidth QTableView::columnWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non plain false false int [0xc821e6c3c0] } +&{currentChanged QTableView::currentChanged commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h impure plain false false void [0xc821e6c600 0xc821e6c6e0] } +&{hideColumn QTableView::hideColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non slot false false void [0xc821e6cac0] } +&{hideRow QTableView::hideRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non slot false false void [0xc821e6cd00] } +&{horizontalHeader QTableView::horizontalHeader commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non plain false false QHeaderView * [] } +&{horizontalOffset QTableView::horizontalOffset commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h impure plain false false int [] } +&{indexAt QTableView::indexAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h impure plain false false QModelIndex [0xc821e6d340] } +&{isColumnHidden QTableView::isColumnHidden commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non plain false false bool [0xc821e6d5c0] } +&{isIndexHidden QTableView::isIndexHidden commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h impure plain false false bool [0xc821e6d7e0] } +&{isRowHidden QTableView::isRowHidden commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non plain false false bool [0xc821e6da80] } +&{paintEvent QTableView::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h impure plain false false void [0xc821e6dcc0] } +&{resizeColumnToContents QTableView::resizeColumnToContents commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non slot false false void [0xc821e6dec0] } +&{resizeColumnsToContents QTableView::resizeColumnsToContents commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non slot false false void [] } +&{resizeRowToContents QTableView::resizeRowToContents commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non slot false false void [0xc822414280] } +&{resizeRowsToContents QTableView::resizeRowsToContents commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non slot false false void [] } +&{rowAt QTableView::rowAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non plain false false int [0xc8224146a0] } +&{rowCountChanged QTableView::rowCountChanged commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non slot false false void [0xc8224148e0 0xc822414980] } +&{rowHeight QTableView::rowHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non plain false false int [0xc822414be0] } +&{rowMoved QTableView::rowMoved commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non slot false false void [0xc822414e40 0xc822414ee0 0xc822414f60] } +&{rowResized QTableView::rowResized commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non slot false false void [0xc8224151c0 0xc822415260 0xc822415300] } +&{rowSpan QTableView::rowSpan commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non plain false false int [0xc822415520 0xc822415600] } +&{rowViewportPosition QTableView::rowViewportPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non plain false false int [0xc8224158a0] } +&{selectColumn QTableView::selectColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non slot false false void [0xc822488120] } +&{selectRow QTableView::selectRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non slot false false void [0xc8224883a0] } +&{selectedIndexes QTableView::selectedIndexes commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h impure plain false false QModelIndexList [] } +&{selectionChanged QTableView::selectionChanged commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h impure plain false false void [0xc822488660 0xc822488760] } +&{setColumnHidden QTableView::setColumnHidden commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non plain false false void [0xc822488a00 0xc822488aa0] } +&{setColumnWidth QTableView::setColumnWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non plain false false void [0xc822488c60 0xc822488ce0] } +&{setHorizontalHeader QTableView::setHorizontalHeader commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non plain false false void [0xc822488ee0] } +&{setModel QTableView::setModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h impure plain false false void [0xc822489120] } +&{setRootIndex QTableView::setRootIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h impure plain false false void [0xc8224893a0] } +&{setRowHeight QTableView::setRowHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non plain false false void [0xc8224895a0 0xc822489620] } +&{setRowHidden QTableView::setRowHidden commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non plain false false void [0xc822489840 0xc8224898e0] } +&{setSelectionModel QTableView::setSelectionModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h impure plain false false void [0xc822489b40] } +&{setSortingEnabled QTableView::setSortingEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non plain false false void [0xc822489da0] } +&{setVerticalHeader QTableView::setVerticalHeader commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non plain false false void [0xc82249a040] } +&{showColumn QTableView::showColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non slot false false void [0xc82249a2a0] } +&{showRow QTableView::showRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non slot false false void [0xc82249a4c0] } +&{sizeHintForColumn QTableView::sizeHintForColumn commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h impure plain false false int [0xc82249a6c0] } +&{sizeHintForRow QTableView::sizeHintForRow commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h impure plain false false int [0xc82249a8e0] } +&{sortByColumn QTableView::sortByColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non plain false false void [0xc82249ad00 0xc82249ad80] } +&{timerEvent QTableView::timerEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h impure plain false false void [0xc82249af40] } +&{updateGeometries QTableView::updateGeometries commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h impure plain false false void [] } +&{verticalHeader QTableView::verticalHeader commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non plain false false QHeaderView * [] } +&{verticalOffset QTableView::verticalOffset commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h impure plain false false int [] } +&{viewOptions QTableView::viewOptions commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h impure plain false false QStyleOptionViewItem [] } +&{viewportSizeHint QTableView::viewportSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h impure plain false false QSize [] } +&{~QTableView QTableView::~QTableView commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtableview.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QTableWidget.txt b/internal/binding/dump/QtWidgets/QTableWidget.txt new file mode 100755 index 00000000..e1fc9dee --- /dev/null +++ b/internal/binding/dump/QtWidgets/QTableWidget.txt @@ -0,0 +1,78 @@ +######################################## FUNCTIONS ######################################## +&{itemAt QTableWidget::itemAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.cpp non plain false false QTableWidgetItem * [0xc8224aad80] } +&{QTableWidget QTableWidget::QTableWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non constructor false false [0xc8224ab0a0] } +&{QTableWidget QTableWidget::QTableWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non constructor false true 2 [0xc8224ab320 0xc8224ab3c0 0xc8224ab4a0] } +&{cellActivated QTableWidget::cellActivated commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non signal false false void [0xc8224abaa0 0xc8224abb40] } +&{cellChanged QTableWidget::cellChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non signal false false void [0xc8224abe40 0xc8224abee0] } +&{cellClicked QTableWidget::cellClicked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non signal false false void [0xc821ea8120 0xc821ea81a0] } +&{cellDoubleClicked QTableWidget::cellDoubleClicked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non signal false false void [0xc821ea8400 0xc821ea84e0] } +&{cellEntered QTableWidget::cellEntered commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non signal false false void [0xc821ea8700 0xc821ea8780] } +&{cellPressed QTableWidget::cellPressed commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non signal false false void [0xc821ea89e0 0xc821ea8a60] } +&{cellWidget QTableWidget::cellWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false QWidget * [0xc821ea8c80 0xc821ea8d00] } +&{clear QTableWidget::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non slot false false void [] } +&{clearContents QTableWidget::clearContents commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non slot false false void [] } +&{closePersistentEditor QTableWidget::closePersistentEditor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821ea9140] } +&{column QTableWidget::column commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false int [0xc821ea93c0] } +&{columnCount QTableWidget::columnCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false int [] } +&{currentCellChanged QTableWidget::currentCellChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non signal false false void [0xc821ea9800 0xc821ea9880 0xc821ea9960 0xc821ea9a00] } +&{currentColumn QTableWidget::currentColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false int [] } +&{currentItem QTableWidget::currentItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false QTableWidgetItem * [] } +&{currentItemChanged QTableWidget::currentItemChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non signal false false void [0xc821ea9f80 0xc821eb20a0] } +&{currentRow QTableWidget::currentRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false int [] } +&{dropEvent QTableWidget::dropEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h impure plain false false void [0xc821eb2440] } +&{dropMimeData QTableWidget::dropMimeData commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h impure plain false false bool [0xc821eb2680 0xc821eb2720 0xc821eb27c0 0xc821eb28c0] } +&{editItem QTableWidget::editItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821eb2b00] } +&{event QTableWidget::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h impure plain false false bool [0xc821eb2da0] } +&{findItems QTableWidget::findItems commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false QList [0xc821eb3000 0xc821eb30c0] } +&{horizontalHeaderItem QTableWidget::horizontalHeaderItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false QTableWidgetItem * [0xc821eb3320] } +&{indexFromItem QTableWidget::indexFromItem commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false QModelIndex [0xc821eb3520] } +&{insertColumn QTableWidget::insertColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non slot false false void [0xc821eb37c0] } +&{insertRow QTableWidget::insertRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non slot false false void [0xc821eb3a00] } +&{item QTableWidget::item commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false QTableWidgetItem * [0xc8224bc060 0xc8224bc100] } +&{itemActivated QTableWidget::itemActivated commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non signal false false void [0xc8224bc380] } +&{itemAt QTableWidget::itemAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false true 2 QTableWidgetItem * [0xc8224bc680 0xc8224bc720] } +&{itemChanged QTableWidget::itemChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non signal false false void [0xc8224bc940] } +&{itemClicked QTableWidget::itemClicked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non signal false false void [0xc8224bcbe0] } +&{itemDoubleClicked QTableWidget::itemDoubleClicked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non signal false false void [0xc8224bcec0] } +&{itemEntered QTableWidget::itemEntered commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non signal false false void [0xc8224bd120] } +&{itemFromIndex QTableWidget::itemFromIndex commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false QTableWidgetItem * [0xc8224bd400] } +&{itemPressed QTableWidget::itemPressed commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non signal false false void [0xc8224bd680] } +&{itemPrototype QTableWidget::itemPrototype commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false const QTableWidgetItem * [] } +&{itemSelectionChanged QTableWidget::itemSelectionChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non signal false false void [] } +&{items QTableWidget::items commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false QList [0xc8224bdbc0] } +&{mimeData QTableWidget::mimeData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h impure plain false false QMimeData * [0xc8224bde40] } +&{mimeTypes QTableWidget::mimeTypes commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h impure plain false false QStringList [] } +&{openPersistentEditor QTableWidget::openPersistentEditor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821ec6180] } +&{removeCellWidget QTableWidget::removeCellWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821ec63c0 0xc821ec6460] } +&{removeColumn QTableWidget::removeColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non slot false false void [0xc821ec66a0] } +&{removeRow QTableWidget::removeRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non slot false false void [0xc821ec68e0] } +&{row QTableWidget::row commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false int [0xc821ec6b20] } +&{rowCount QTableWidget::rowCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false int [] } +&{scrollToItem QTableWidget::scrollToItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non slot false false void [0xc821ec6f40 0xc821ec7060] } +&{selectedItems QTableWidget::selectedItems commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false QList [] } +&{selectedRanges QTableWidget::selectedRanges commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false QList [] } +&{setCellWidget QTableWidget::setCellWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821ec7580 0xc821ec7620 0xc821ec76c0] } +&{setColumnCount QTableWidget::setColumnCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821ec78e0] } +&{setCurrentCell QTableWidget::setCurrentCell commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821ec7b20 0xc821ec7bc0] } +&{setCurrentCell QTableWidget::setCurrentCell commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false true 2 void [0xc821ec7dc0 0xc821ec7e60 0xc821ec7f00] } +&{setCurrentItem QTableWidget::setCurrentItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821ed4120] } +&{setCurrentItem QTableWidget::setCurrentItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false true 2 void [0xc821ed43a0 0xc821ed4480] } +&{setHorizontalHeaderItem QTableWidget::setHorizontalHeaderItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821ed4660 0xc821ed4720] } +&{setHorizontalHeaderLabels QTableWidget::setHorizontalHeaderLabels commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821ed4980] } +&{setItem QTableWidget::setItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821ed4c00 0xc821ed4c80 0xc821ed4d60] } +&{setItemPrototype QTableWidget::setItemPrototype commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821ed4fe0] } +&{setRangeSelected QTableWidget::setRangeSelected commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821ed5800 0xc821ed58a0] } +&{setRowCount QTableWidget::setRowCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821ed5ae0] } +&{setVerticalHeaderItem QTableWidget::setVerticalHeaderItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821ed5f80 0xc821edc040] } +&{setVerticalHeaderLabels QTableWidget::setVerticalHeaderLabels commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821edc2c0] } +&{sortItems QTableWidget::sortItems commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821edc500 0xc821edc5e0] } +&{supportedDropActions QTableWidget::supportedDropActions commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h impure plain false false Qt::DropActions [] } +&{takeHorizontalHeaderItem QTableWidget::takeHorizontalHeaderItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false QTableWidgetItem * [0xc821edc900] } +&{takeItem QTableWidget::takeItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false QTableWidgetItem * [0xc821edcbc0 0xc821edcc60] } +&{takeVerticalHeaderItem QTableWidget::takeVerticalHeaderItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false QTableWidgetItem * [0xc821edcee0] } +&{verticalHeaderItem QTableWidget::verticalHeaderItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false QTableWidgetItem * [0xc821edd1e0] } +&{visualColumn QTableWidget::visualColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false int [0xc821edd3c0] } +&{visualItemRect QTableWidget::visualItemRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false QRect [0xc821edd640] } +&{visualRow QTableWidget::visualRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false int [0xc821edd8a0] } +&{~QTableWidget QTableWidget::~QTableWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QTableWidgetItem.txt b/internal/binding/dump/QtWidgets/QTableWidgetItem.txt new file mode 100755 index 00000000..e91e5bc5 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QTableWidgetItem.txt @@ -0,0 +1,45 @@ +######################################## FUNCTIONS ######################################## +&{setFlags QTableWidgetItem::setFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.cpp non plain false false void [0xc8224d00e0] } +&{QTableWidgetItem QTableWidgetItem::QTableWidgetItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non constructor false true 3 [0xc8224d04e0 0xc8224d0580 0xc8224d0600] } +&{QTableWidgetItem QTableWidgetItem::QTableWidgetItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non constructor false true 2 [0xc8224d0760 0xc8224d07e0] } +&{QTableWidgetItem QTableWidgetItem::QTableWidgetItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non constructor false true 4 [0xc8224d0960] } +&{QTableWidgetItem QTableWidgetItem::QTableWidgetItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non constructor false false [0xc8224d0b60] } +&{background QTableWidgetItem::background commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false QBrush [] } +&{checkState QTableWidgetItem::checkState commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false Qt::CheckState [] } +&{clone QTableWidgetItem::clone commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h impure plain false false QTableWidgetItem * [] } +&{column QTableWidgetItem::column commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false int [] } +&{data QTableWidgetItem::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h impure plain false false QVariant [0xc8224d1260] } +&{flags QTableWidgetItem::flags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false Qt::ItemFlags [] } +&{font QTableWidgetItem::font commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false QFont [] } +&{foreground QTableWidgetItem::foreground commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false QBrush [] } +&{icon QTableWidgetItem::icon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false QIcon [] } +&{isSelected QTableWidgetItem::isSelected commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false bool [] } +&{operator< QTableWidgetItem::operator< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h impure plain false false bool [0xc8224d19c0] } +&{operator= QTableWidgetItem::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false QTableWidgetItem & [0xc8224d1c40] } +&{read QTableWidgetItem::read commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h impure plain false false void [0xc8224d1e80] } +&{row QTableWidgetItem::row commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false int [] } +&{setBackground QTableWidgetItem::setBackground commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821eea180] } +&{setCheckState QTableWidgetItem::setCheckState commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821eea580] } +&{setData QTableWidgetItem::setData commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h impure plain false false void [0xc821eea7c0 0xc821eea840] } +&{setFont QTableWidgetItem::setFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821eeaa60] } +&{setForeground QTableWidgetItem::setForeground commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821eeac80] } +&{setIcon QTableWidgetItem::setIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821eeae80] } +&{setSelected QTableWidgetItem::setSelected commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821eeb0c0] } +&{setSizeHint QTableWidgetItem::setSizeHint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821eeb2c0] } +&{setStatusTip QTableWidgetItem::setStatusTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821eeb4c0] } +&{setText QTableWidgetItem::setText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821eeb6c0] } +&{setTextAlignment QTableWidgetItem::setTextAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821eeb860] } +&{setToolTip QTableWidgetItem::setToolTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821eebca0] } +&{setWhatsThis QTableWidgetItem::setWhatsThis commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false void [0xc821eebe80] } +&{sizeHint QTableWidgetItem::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false QSize [] } +&{statusTip QTableWidgetItem::statusTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false QString [] } +&{tableWidget QTableWidgetItem::tableWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false QTableWidget * [] } +&{text QTableWidgetItem::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false QString [] } +&{textAlignment QTableWidgetItem::textAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false int [] } +&{toolTip QTableWidgetItem::toolTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false QString [] } +&{type QTableWidgetItem::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false int [] } +&{whatsThis QTableWidgetItem::whatsThis commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false QString [] } +&{write QTableWidgetItem::write commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h impure plain false false void [0xc821ef8a80] } +&{~QTableWidgetItem QTableWidgetItem::~QTableWidgetItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{ItemType QTableWidgetItem::ItemType commendable public [0xc8224d0300 0xc8224d0380]} diff --git a/internal/binding/dump/QtWidgets/QTableWidgetSelectionRange.txt b/internal/binding/dump/QtWidgets/QTableWidgetSelectionRange.txt new file mode 100755 index 00000000..61027f62 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QTableWidgetSelectionRange.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{QTableWidgetSelectionRange QTableWidgetSelectionRange::QTableWidgetSelectionRange commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non constructor false false [] } +&{QTableWidgetSelectionRange QTableWidgetSelectionRange::QTableWidgetSelectionRange commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non constructor false true 3 [0xc821ef9000] } +&{QTableWidgetSelectionRange QTableWidgetSelectionRange::QTableWidgetSelectionRange commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non constructor false true 2 [0xc821ef91c0 0xc821ef9260 0xc821ef9300 0xc821ef93a0] } +&{bottomRow QTableWidgetSelectionRange::bottomRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false int [] } +&{columnCount QTableWidgetSelectionRange::columnCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false int [] } +&{leftColumn QTableWidgetSelectionRange::leftColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false int [] } +&{rightColumn QTableWidgetSelectionRange::rightColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false int [] } +&{rowCount QTableWidgetSelectionRange::rowCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false int [] } +&{topRow QTableWidgetSelectionRange::topRow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non plain false false int [] } +&{~QTableWidgetSelectionRange QTableWidgetSelectionRange::~QTableWidgetSelectionRange commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtablewidget.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QTapAndHoldGesture.txt b/internal/binding/dump/QtWidgets/QTapAndHoldGesture.txt new file mode 100755 index 00000000..58575f85 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QTapAndHoldGesture.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{position QTapAndHoldGesture::position commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false QPointF [] } +&{setPosition QTapAndHoldGesture::setPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false void [0xc822ce1c20] } +&{setTimeout QTapAndHoldGesture::setTimeout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.h non plain true false void [0xc822cf0080] } +&{timeout QTapAndHoldGesture::timeout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.h non plain true false int [] } +&{~QTapAndHoldGesture QTapAndHoldGesture::~QTapAndHoldGesture commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QTapGesture.txt b/internal/binding/dump/QtWidgets/QTapGesture.txt new file mode 100755 index 00000000..772b90cc --- /dev/null +++ b/internal/binding/dump/QtWidgets/QTapGesture.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{position QTapGesture::position commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false QPointF [] } +&{setPosition QTapGesture::setPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.cpp non plain false false void [0xc822cf0b00] } +&{~QTapGesture QTapGesture::~QTapGesture commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qgesture.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QTextBrowser.txt b/internal/binding/dump/QtWidgets/QTextBrowser.txt new file mode 100755 index 00000000..4c48283d --- /dev/null +++ b/internal/binding/dump/QtWidgets/QTextBrowser.txt @@ -0,0 +1,38 @@ +######################################## FUNCTIONS ######################################## +&{openExternalLinks QTextBrowser::openExternalLinks commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.cpp non plain false false bool [] } +&{openLinks QTextBrowser::openLinks commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.cpp non plain false false bool [] } +&{searchPaths QTextBrowser::searchPaths commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.cpp non plain false false QStringList [] } +&{setOpenExternalLinks QTextBrowser::setOpenExternalLinks commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.cpp non plain false false void [0xc821f54be0] } +&{setOpenLinks QTextBrowser::setOpenLinks commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.cpp non plain false false void [0xc821f54f20] } +&{setSearchPaths QTextBrowser::setSearchPaths commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.cpp non plain false false void [0xc821f55220] } +&{setSource QTextBrowser::setSource commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.cpp impure slot false false void [0xc821f555c0] } +&{source QTextBrowser::source commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.cpp non plain false false QUrl [] } +&{QTextBrowser QTextBrowser::QTextBrowser commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h non constructor false false [0xc821f55b00] } +&{anchorClicked QTextBrowser::anchorClicked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h non signal false false void [0xc821f62100] } +&{backward QTextBrowser::backward commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h impure slot false false void [] } +&{backwardAvailable QTextBrowser::backwardAvailable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h non signal false false void [0xc821f62620] } +&{backwardHistoryCount QTextBrowser::backwardHistoryCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h non plain false false int [] } +&{clearHistory QTextBrowser::clearHistory commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h non plain false false void [] } +&{event QTextBrowser::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h impure plain false false bool [0xc821f62e00] } +&{focusNextPrevChild QTextBrowser::focusNextPrevChild commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h impure plain false false bool [0xc821f63200] } +&{focusOutEvent QTextBrowser::focusOutEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h impure plain false false void [0xc821f635c0] } +&{forward QTextBrowser::forward commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h impure slot false false void [] } +&{forwardAvailable QTextBrowser::forwardAvailable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h non signal false false void [0xc821f63ac0] } +&{forwardHistoryCount QTextBrowser::forwardHistoryCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h non plain false false int [] } +&{highlighted QTextBrowser::highlighted commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h non signal false true 2 void [0xc821f72060] } +&{highlighted QTextBrowser::highlighted commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h non signal false false void [0xc821f723e0] } +&{historyChanged QTextBrowser::historyChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h non signal false false void [] } +&{historyTitle QTextBrowser::historyTitle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h non plain false false QString [0xc821f728c0] } +&{historyUrl QTextBrowser::historyUrl commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h non plain false false QUrl [0xc821f72d20] } +&{home QTextBrowser::home commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h impure slot false false void [] } +&{isBackwardAvailable QTextBrowser::isBackwardAvailable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h non plain false false bool [] } +&{isForwardAvailable QTextBrowser::isForwardAvailable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h non plain false false bool [] } +&{keyPressEvent QTextBrowser::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h impure plain false false void [0xc821f736a0] } +&{loadResource QTextBrowser::loadResource commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h impure plain false false QVariant [0xc821f73a20 0xc821f73b00] } +&{mouseMoveEvent QTextBrowser::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h impure plain false false void [0xc821f73e80] } +&{mousePressEvent QTextBrowser::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h impure plain false false void [0xc822a541a0] } +&{mouseReleaseEvent QTextBrowser::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h impure plain false false void [0xc822a54600] } +&{paintEvent QTextBrowser::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h impure plain false false void [0xc822a54960] } +&{reload QTextBrowser::reload commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h impure slot false false void [] } +&{sourceChanged QTextBrowser::sourceChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextbrowser.h non signal false false void [0xc822a54dc0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QTextEdit.txt b/internal/binding/dump/QtWidgets/QTextEdit.txt new file mode 100755 index 00000000..44cc6ccd --- /dev/null +++ b/internal/binding/dump/QtWidgets/QTextEdit.txt @@ -0,0 +1,125 @@ +######################################## FUNCTIONS ######################################## +&{acceptRichText QTextEdit::acceptRichText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false false bool [] } +&{autoFormatting QTextEdit::autoFormatting commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false false AutoFormatting [] } +&{contextMenuEvent QTextEdit::contextMenuEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp impure plain false false void [0xc82295cd80] } +&{cursorWidth QTextEdit::cursorWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false false int [] } +&{document QTextEdit::document commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false false QTextDocument * [] } +&{find QTextEdit::find commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false true 2 bool [0xc82295d420 0xc82295d5e0] } +&{isReadOnly QTextEdit::isReadOnly commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false false bool [] } +&{lineWrapColumnOrWidth QTextEdit::lineWrapColumnOrWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false false int [] } +&{lineWrapMode QTextEdit::lineWrapMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false false LineWrapMode [] } +&{overwriteMode QTextEdit::overwriteMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false false bool [] } +&{paintEvent QTextEdit::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp impure plain false false void [0xc8229681c0] } +&{placeholderText QTextEdit::placeholderText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false false QString [] } +&{redo QTextEdit::redo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non slot false false void [] } +&{setAcceptRichText QTextEdit::setAcceptRichText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false false void [0xc822968860] } +&{setAutoFormatting QTextEdit::setAutoFormatting commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false false void [0xc822968c80] } +&{setCursorWidth QTextEdit::setCursorWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false false void [0xc822969060] } +&{setDocument QTextEdit::setDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false false void [0xc822969340] } +&{setFontWeight QTextEdit::setFontWeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non slot false false void [0xc8229696c0] } +&{setHtml QTextEdit::setHtml commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non slot false false void [0xc822969aa0] } +&{setLineWrapColumnOrWidth QTextEdit::setLineWrapColumnOrWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false false void [0xc822969d60] } +&{setLineWrapMode QTextEdit::setLineWrapMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false false void [0xc822946140] } +&{setOverwriteMode QTextEdit::setOverwriteMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false false void [0xc8229464e0] } +&{setPlaceholderText QTextEdit::setPlaceholderText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false false void [0xc822946880] } +&{setReadOnly QTextEdit::setReadOnly commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false false void [0xc822946c00] } +&{setTabChangesFocus QTextEdit::setTabChangesFocus commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false false void [0xc8229470a0] } +&{setTabStopWidth QTextEdit::setTabStopWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false false void [0xc822947460] } +&{setTextInteractionFlags QTextEdit::setTextInteractionFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false false void [0xc822947860] } +&{setWordWrapMode QTextEdit::setWordWrapMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false false void [0xc822947d40] } +&{tabChangesFocus QTextEdit::tabChangesFocus commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false false bool [] } +&{tabStopWidth QTextEdit::tabStopWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false false int [] } +&{textInteractionFlags QTextEdit::textInteractionFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false false Qt::TextInteractionFlags [] } +&{toHtml QTextEdit::toHtml commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false false QString [] } +&{wordWrapMode QTextEdit::wordWrapMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non plain false false QTextOption::WrapMode [] } +&{zoomIn QTextEdit::zoomIn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non slot false false void [0xc82226cd20] } +&{zoomOut QTextEdit::zoomOut commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.cpp non slot false false void [0xc82226d0a0] } +&{QTextEdit QTextEdit::QTextEdit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non constructor false false [0xc82227a560] } +&{QTextEdit QTextEdit::QTextEdit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non constructor false true 2 [0xc82227aa00 0xc82227aae0] } +&{alignment QTextEdit::alignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false Qt::Alignment [] } +&{anchorAt QTextEdit::anchorAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false QString [0xc822260320] } +&{append QTextEdit::append commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non slot false false void [0xc822260700] } +&{canInsertFromMimeData QTextEdit::canInsertFromMimeData commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h impure plain false false bool [0xc822260a60] } +&{canPaste QTextEdit::canPaste commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false bool [] } +&{changeEvent QTextEdit::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h impure plain false false void [0xc8222610e0] } +&{clear QTextEdit::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non slot false false void [] } +&{copy QTextEdit::copy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non slot false false void [] } +&{copyAvailable QTextEdit::copyAvailable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non signal false false void [0xc822261640] } +&{createMimeDataFromSelection QTextEdit::createMimeDataFromSelection commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h impure plain false false QMimeData * [] } +&{createStandardContextMenu QTextEdit::createStandardContextMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false QMenu * [] } +&{createStandardContextMenu QTextEdit::createStandardContextMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false true 2 QMenu * [0xc822261bc0] } +&{currentCharFormat QTextEdit::currentCharFormat commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false QTextCharFormat [] } +&{currentCharFormatChanged QTextEdit::currentCharFormatChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non signal false false void [0xc82228a100] } +&{currentFont QTextEdit::currentFont commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false QFont [] } +&{cursorForPosition QTextEdit::cursorForPosition commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false QTextCursor [0xc82228a6e0] } +&{cursorPositionChanged QTextEdit::cursorPositionChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non signal false false void [] } +&{cursorRect QTextEdit::cursorRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false true 2 QRect [] } +&{cursorRect QTextEdit::cursorRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false QRect [0xc82228af00] } +&{cut QTextEdit::cut commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non slot false false void [] } +&{documentTitle QTextEdit::documentTitle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false QString [] } +&{dragEnterEvent QTextEdit::dragEnterEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h impure plain false false void [0xc82228b5a0] } +&{dragLeaveEvent QTextEdit::dragLeaveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h impure plain false false void [0xc82228b9e0] } +&{dragMoveEvent QTextEdit::dragMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h impure plain false false void [0xc82228bde0] } +&{dropEvent QTextEdit::dropEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h impure plain false false void [0xc82274e1a0] } +&{ensureCursorVisible QTextEdit::ensureCursorVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false void [] } +&{extraSelections QTextEdit::extraSelections commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false QList [] } +&{find QTextEdit::find commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false bool [0xc82274f000 0xc82274f140] } +&{focusInEvent QTextEdit::focusInEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h impure plain false false void [0xc82274f4a0] } +&{focusNextPrevChild QTextEdit::focusNextPrevChild commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h impure plain false false bool [0xc82274f780] } +&{focusOutEvent QTextEdit::focusOutEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h impure plain false false void [0xc82274fa00] } +&{fontFamily QTextEdit::fontFamily commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false QString [] } +&{fontItalic QTextEdit::fontItalic commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false bool [] } +&{fontPointSize QTextEdit::fontPointSize commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false qreal [] } +&{fontUnderline QTextEdit::fontUnderline commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false bool [] } +&{fontWeight QTextEdit::fontWeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false int [] } +&{inputMethodEvent QTextEdit::inputMethodEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h impure plain false false void [0xc82275e440] } +&{inputMethodQuery QTextEdit::inputMethodQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h impure plain false false QVariant [0xc82275e7a0] } +&{insertFromMimeData QTextEdit::insertFromMimeData commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h impure plain false false void [0xc82275eec0] } +&{insertHtml QTextEdit::insertHtml commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non slot false false void [0xc82275f220] } +&{insertPlainText QTextEdit::insertPlainText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non slot false false void [0xc82275f4e0] } +&{isUndoRedoEnabled QTextEdit::isUndoRedoEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false bool [] } +&{keyPressEvent QTextEdit::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h impure plain false false void [0xc82275f960] } +&{keyReleaseEvent QTextEdit::keyReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h impure plain false false void [0xc82275fbe0] } +&{loadResource QTextEdit::loadResource commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h impure plain false false QVariant [0xc82275fe60 0xc82275fee0] } +&{mergeCurrentCharFormat QTextEdit::mergeCurrentCharFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false void [0xc821e66160] } +&{mouseDoubleClickEvent QTextEdit::mouseDoubleClickEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h impure plain false false void [0xc821e664e0] } +&{mouseMoveEvent QTextEdit::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h impure plain false false void [0xc821e667c0] } +&{mousePressEvent QTextEdit::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h impure plain false false void [0xc821e66b80] } +&{mouseReleaseEvent QTextEdit::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h impure plain false false void [0xc821e66fc0] } +&{moveCursor QTextEdit::moveCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false void [0xc821e67340 0xc821e67520] } +&{paste QTextEdit::paste commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non slot false false void [] } +&{print QTextEdit::print commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false void [0xc821e678c0] } +&{redoAvailable QTextEdit::redoAvailable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non signal false false void [0xc821e67c00] } +&{resizeEvent QTextEdit::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h impure plain false false void [0xc821e67f20] } +&{scrollContentsBy QTextEdit::scrollContentsBy commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h impure plain false false void [0xc82276e200 0xc82276e2a0] } +&{scrollToAnchor QTextEdit::scrollToAnchor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non slot false false void [0xc82276e560] } +&{selectAll QTextEdit::selectAll commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non slot false false void [] } +&{selectionChanged QTextEdit::selectionChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non signal false false void [] } +&{setAlignment QTextEdit::setAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non slot false false void [0xc82276eb20] } +&{setCurrentCharFormat QTextEdit::setCurrentCharFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false void [0xc82276ee40] } +&{setCurrentFont QTextEdit::setCurrentFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non slot false false void [0xc82276f240] } +&{setDocumentTitle QTextEdit::setDocumentTitle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false void [0xc82276f5e0] } +&{setExtraSelections QTextEdit::setExtraSelections commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false void [0xc82276fa00] } +&{setFontFamily QTextEdit::setFontFamily commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non slot false false void [0xc82276fe00] } +&{setFontItalic QTextEdit::setFontItalic commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non slot false false void [0xc82277c1c0] } +&{setFontPointSize QTextEdit::setFontPointSize commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non slot false false void [0xc82277c5c0] } +&{setFontUnderline QTextEdit::setFontUnderline commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non slot false false void [0xc82277c940] } +&{setPlainText QTextEdit::setPlainText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non slot false false void [0xc82277ccc0] } +&{setText QTextEdit::setText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non slot false false void [0xc82277d080] } +&{setTextBackgroundColor QTextEdit::setTextBackgroundColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non slot false false void [0xc82277d3e0] } +&{setTextColor QTextEdit::setTextColor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non slot false false void [0xc82277d820] } +&{setTextCursor QTextEdit::setTextCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false void [0xc82277db60] } +&{setUndoRedoEnabled QTextEdit::setUndoRedoEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false void [0xc82277df80] } +&{showEvent QTextEdit::showEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h impure plain false false void [0xc821f0c360] } +&{textBackgroundColor QTextEdit::textBackgroundColor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false QColor [] } +&{textChanged QTextEdit::textChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non signal false false void [] } +&{textColor QTextEdit::textColor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false QColor [] } +&{textCursor QTextEdit::textCursor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false QTextCursor [] } +&{toPlainText QTextEdit::toPlainText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non plain false false QString [] } +&{undo QTextEdit::undo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non slot false false void [] } +&{undoAvailable QTextEdit::undoAvailable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h non signal false false void [0xc821f0d200] } +&{wheelEvent QTextEdit::wheelEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h impure plain false false void [0xc821f0d500] } +&{~QTextEdit QTextEdit::~QTextEdit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtextedit.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{AutoFormattingFlag QTextEdit::AutoFormattingFlag commendable public QTextEdit::AutoFormatting [0xc82226d8a0 0xc82226d980 0xc82226da80]} +&{LineWrapMode QTextEdit::LineWrapMode commendable public [0xc82226dd80 0xc82226de20 0xc82226df00 0xc82226dfa0]} diff --git a/internal/binding/dump/QtWidgets/QTileRules.txt b/internal/binding/dump/QtWidgets/QTileRules.txt new file mode 100755 index 00000000..d72c2aaa --- /dev/null +++ b/internal/binding/dump/QtWidgets/QTileRules.txt @@ -0,0 +1,4 @@ +######################################## FUNCTIONS ######################################## +&{QTileRules QTileRules::QTileRules commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qdrawutil.h non constructor false false [0xc821d31ec0 0xc821d31f40] } +&{QTileRules QTileRules::QTileRules commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/styles/qdrawutil.h non constructor false true 2 [0xc822658280] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QTimeEdit.txt b/internal/binding/dump/QtWidgets/QTimeEdit.txt new file mode 100755 index 00000000..1a96b3d2 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QTimeEdit.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{QTimeEdit QTimeEdit::QTimeEdit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h non constructor false false [0xc826aeae20] } +&{QTimeEdit QTimeEdit::QTimeEdit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h non constructor false true 2 [0xc826aeb6c0 0xc826aeb940] } +&{~QTimeEdit QTimeEdit::~QTimeEdit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qdatetimeedit.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QToolBar.txt b/internal/binding/dump/QtWidgets/QToolBar.txt new file mode 100755 index 00000000..3d3c4cbf --- /dev/null +++ b/internal/binding/dump/QtWidgets/QToolBar.txt @@ -0,0 +1,44 @@ +######################################## FUNCTIONS ######################################## +&{allowedAreas QToolBar::allowedAreas commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.cpp non plain false false Qt::ToolBarAreas [] } +&{iconSize QToolBar::iconSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.cpp non plain false false QSize [] } +&{isFloatable QToolBar::isFloatable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.cpp non plain false false bool [] } +&{isFloating QToolBar::isFloating commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.cpp non plain false false bool [] } +&{isMovable QToolBar::isMovable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.cpp non plain false false bool [] } +&{orientation QToolBar::orientation commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.cpp non plain false false Qt::Orientation [] } +&{setAllowedAreas QToolBar::setAllowedAreas commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.cpp non plain false false void [0xc822b7eee0] } +&{setFloatable QToolBar::setFloatable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.cpp non plain false false void [0xc822b7f280] } +&{setIconSize QToolBar::setIconSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.cpp non slot false false void [0xc822b7f700] } +&{setMovable QToolBar::setMovable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.cpp non plain false false void [0xc822b7fb40] } +&{setOrientation QToolBar::setOrientation commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.cpp non plain false false void [0xc822b7ff20] } +&{setToolButtonStyle QToolBar::setToolButtonStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.cpp non slot false false void [0xc822b8c3c0] } +&{toolButtonStyle QToolBar::toolButtonStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.cpp non plain false false Qt::ToolButtonStyle [] } +&{QToolBar QToolBar::QToolBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h non constructor false true 2 [0xc822b8cac0] } +&{QToolBar QToolBar::QToolBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h non constructor false false [0xc822b8cec0 0xc822b8cf60] } +&{actionAt QToolBar::actionAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h non plain false false QAction * [0xc822b8d7c0] } +&{actionAt QToolBar::actionAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h non plain false true 2 QAction * [0xc822b8db60 0xc822b8dc60] } +&{actionEvent QToolBar::actionEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h impure plain false false void [0xc822b8dfe0] } +&{actionTriggered QToolBar::actionTriggered commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h non signal false false void [0xc822b9eb00] } +&{addAction QToolBar::addAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h non plain false true 2 QAction * [0xc822b9ee40 0xc822b9efc0] } +&{addAction QToolBar::addAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h non plain false true 4 QAction * [0xc822b9f280 0xc822b9f340 0xc822b9f3c0 0xc822b9f500] } +&{addAction QToolBar::addAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h non plain false false QAction * [0xc822b9f760] } +&{addAction QToolBar::addAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h non plain false true 3 QAction * [0xc822b9fa60 0xc822b9fb40 0xc822b9fc00] } +&{addSeparator QToolBar::addSeparator commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h non plain false false QAction * [] } +&{addWidget QToolBar::addWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h non plain false false QAction * [0xc822bb0060] } +&{allowedAreasChanged QToolBar::allowedAreasChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h non signal false false void [0xc822bb0580] } +&{changeEvent QToolBar::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h impure plain false false void [0xc822bb0980] } +&{clear QToolBar::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h non plain false false void [] } +&{event QToolBar::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h impure plain false false bool [0xc822bb0dc0] } +&{iconSizeChanged QToolBar::iconSizeChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h non signal false false void [0xc822bb11c0] } +&{insertSeparator QToolBar::insertSeparator commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h non plain false false QAction * [0xc822bb15a0] } +&{insertWidget QToolBar::insertWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h non plain false false QAction * [0xc822bb1900 0xc822bb1a40] } +&{isAreaAllowed QToolBar::isAreaAllowed commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h non plain false false bool [0xc822bb1e20] } +&{movableChanged QToolBar::movableChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h non signal false false void [0xc821db0100] } +&{orientationChanged QToolBar::orientationChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h non signal false false void [0xc821db0500] } +&{paintEvent QToolBar::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h impure plain false false void [0xc821db07c0] } +&{toggleViewAction QToolBar::toggleViewAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h non plain false false QAction * [] } +&{toolButtonStyleChanged QToolBar::toolButtonStyleChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h non signal false false void [0xc821db0ce0] } +&{topLevelChanged QToolBar::topLevelChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h non signal false false void [0xc821db1020] } +&{visibilityChanged QToolBar::visibilityChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h non signal false false void [0xc821db1340] } +&{widgetForAction QToolBar::widgetForAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h non plain false false QWidget * [0xc821db1660] } +&{~QToolBar QToolBar::~QToolBar commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbar.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QToolBox.txt b/internal/binding/dump/QtWidgets/QToolBox.txt new file mode 100755 index 00000000..15a75b08 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QToolBox.txt @@ -0,0 +1,30 @@ +######################################## FUNCTIONS ######################################## +&{count QToolBox::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.cpp non plain false false int [] } +&{currentIndex QToolBox::currentIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.cpp non plain false false int [] } +&{setCurrentIndex QToolBox::setCurrentIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.cpp non slot false false void [0xc822a68080] } +&{QToolBox QToolBox::QToolBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.h non constructor false false [0xc822a683c0 0xc822a68480] } +&{addItem QToolBox::addItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.h non plain false true 2 int [0xc822a68c00 0xc822a68cc0] } +&{addItem QToolBox::addItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.h non plain false false int [0xc822a69000 0xc822a69160 0xc822a69240] } +&{changeEvent QToolBox::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.h impure plain false false void [0xc822a695c0] } +&{currentChanged QToolBox::currentChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.h non signal false false void [0xc822a69a40] } +&{currentWidget QToolBox::currentWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.h non plain false false QWidget * [] } +&{event QToolBox::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.h impure plain false false bool [0xc822a69f00] } +&{indexOf QToolBox::indexOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.h non plain false false int [0xc821dcc300] } +&{insertItem QToolBox::insertItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.h non plain false false int [0xc821dcc6e0 0xc821dcc7c0 0xc821dcc8e0 0xc821dcc9e0] } +&{insertItem QToolBox::insertItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.h non plain false true 2 int [0xc821dccd60 0xc821dcce80 0xc821dccf60] } +&{isItemEnabled QToolBox::isItemEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.h non plain false false bool [0xc821dcd2c0] } +&{itemIcon QToolBox::itemIcon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.h non plain false false QIcon [0xc821dcd6a0] } +&{itemInserted QToolBox::itemInserted commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.h impure plain false false void [0xc821dcdaa0] } +&{itemRemoved QToolBox::itemRemoved commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.h impure plain false false void [0xc821dcdee0] } +&{itemText QToolBox::itemText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.h non plain false false QString [0xc821dd8260] } +&{itemToolTip QToolBox::itemToolTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.h non plain false false QString [0xc821dd8620] } +&{removeItem QToolBox::removeItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.h non plain false false void [0xc821dd89c0] } +&{setCurrentWidget QToolBox::setCurrentWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.h non slot false false void [0xc821dd8d40] } +&{setItemEnabled QToolBox::setItemEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.h non plain false false void [0xc821dd8fa0 0xc821dd90a0] } +&{setItemIcon QToolBox::setItemIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.h non plain false false void [0xc821dd93e0 0xc821dd94a0] } +&{setItemText QToolBox::setItemText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.h non plain false false void [0xc821dd97e0 0xc821dd9920] } +&{setItemToolTip QToolBox::setItemToolTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.h non plain false false void [0xc821dd9ca0 0xc821dd9da0] } +&{showEvent QToolBox::showEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.h impure plain false false void [0xc821de80e0] } +&{widget QToolBox::widget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.h non plain false false QWidget * [0xc821de83e0] } +&{~QToolBox QToolBox::~QToolBox commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbox.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QToolButton.txt b/internal/binding/dump/QtWidgets/QToolButton.txt new file mode 100755 index 00000000..b72e91c1 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QToolButton.txt @@ -0,0 +1,33 @@ +######################################## FUNCTIONS ######################################## +&{arrowType QToolButton::arrowType commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.cpp non plain false false Qt::ArrowType [] } +&{autoRaise QToolButton::autoRaise commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.cpp non plain false false bool [] } +&{paintEvent QToolButton::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.cpp impure plain false false void [0xc821de9500] } +&{popupMode QToolButton::popupMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.cpp non plain false false ToolButtonPopupMode [] } +&{setArrowType QToolButton::setArrowType commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.cpp non plain false false void [0xc821de9c20] } +&{setAutoRaise QToolButton::setAutoRaise commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.cpp non plain false false void [0xc821df6020] } +&{setPopupMode QToolButton::setPopupMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.cpp non plain false false void [0xc821df6500] } +&{setToolButtonStyle QToolButton::setToolButtonStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.cpp non slot false false void [0xc821df69a0] } +&{toolButtonStyle QToolButton::toolButtonStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.cpp non plain false false Qt::ToolButtonStyle [] } +&{QToolButton QToolButton::QToolButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.h non constructor false false [0xc821df76e0] } +&{actionEvent QToolButton::actionEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.h impure plain false false void [0xc821df7e00] } +&{changeEvent QToolButton::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.h impure plain false false void [0xc821e161e0] } +&{defaultAction QToolButton::defaultAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.h non plain false false QAction * [] } +&{enterEvent QToolButton::enterEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.h impure plain false false void [0xc821e166e0] } +&{event QToolButton::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.h impure plain false false bool [0xc821e16940] } +&{hitButton QToolButton::hitButton commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.h impure plain false false bool [0xc821e16ba0] } +&{initStyleOption QToolButton::initStyleOption commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.h non plain false false void [0xc821e16e20] } +&{leaveEvent QToolButton::leaveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.h impure plain false false void [0xc821e170c0] } +&{menu QToolButton::menu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.h non plain false false QMenu * [] } +&{minimumSizeHint QToolButton::minimumSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.h impure plain false false QSize [] } +&{mousePressEvent QToolButton::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.h impure plain false false void [0xc821e17660] } +&{mouseReleaseEvent QToolButton::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.h impure plain false false void [0xc821e17940] } +&{nextCheckState QToolButton::nextCheckState commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.h impure plain false false void [] } +&{setDefaultAction QToolButton::setDefaultAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.h non slot false false void [0xc821e17da0] } +&{setMenu QToolButton::setMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.h non plain false false void [0xc821e26060] } +&{showMenu QToolButton::showMenu commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.h non slot false false void [] } +&{sizeHint QToolButton::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.h impure plain false false QSize [] } +&{timerEvent QToolButton::timerEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.h impure plain false false void [0xc821e26760] } +&{triggered QToolButton::triggered commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.h non signal false false void [0xc821e26b80] } +&{~QToolButton QToolButton::~QToolButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/widgets/qtoolbutton.h non destructor false false [] } +######################################## ENUMS ######################################## +&{ToolButtonPopupMode QToolButton::ToolButtonPopupMode commendable public [0xc821df70c0 0xc821df7180 0xc821df72a0]} diff --git a/internal/binding/dump/QtWidgets/QToolTip.txt b/internal/binding/dump/QtWidgets/QToolTip.txt new file mode 100755 index 00000000..d1a8e9e2 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QToolTip.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{font QToolTip::font commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qtooltip.h non plain true false QFont [] } +&{hideText QToolTip::hideText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qtooltip.h non plain true false void [] } +&{isVisible QToolTip::isVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qtooltip.h non plain true false bool [] } +&{palette QToolTip::palette commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qtooltip.h non plain true false QPalette [] } +&{setFont QToolTip::setFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qtooltip.h non plain true false void [0xc8223e1020] } +&{setPalette QToolTip::setPalette commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qtooltip.h non plain true false void [0xc8223e1260] } +&{showText QToolTip::showText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qtooltip.h non plain true true 3 void [0xc8223e14a0 0xc8223e1520 0xc8223e1600] } +&{showText QToolTip::showText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qtooltip.h non plain true false void [0xc8223e1880 0xc8223e1900 0xc8223e1980 0xc8223e1a60] } +&{showText QToolTip::showText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qtooltip.h non plain true true 2 void [0xc8223e1cc0 0xc8223e1d40 0xc8223e1de0 0xc8223e1ec0 0xc8223e1f60] } +&{text QToolTip::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qtooltip.h non plain true false QString [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QTreeView.txt b/internal/binding/dump/QtWidgets/QTreeView.txt new file mode 100755 index 00000000..e408434a --- /dev/null +++ b/internal/binding/dump/QtWidgets/QTreeView.txt @@ -0,0 +1,99 @@ +######################################## FUNCTIONS ######################################## +&{allColumnsShowFocus QTreeView::allColumnsShowFocus commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.cpp non plain false false bool [] } +&{autoExpandDelay QTreeView::autoExpandDelay commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.cpp non plain false false int [] } +&{collapse QTreeView::collapse commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.cpp non slot false false void [0xc821f02620] } +&{expand QTreeView::expand commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.cpp non slot false false void [0xc821f029c0] } +&{expandsOnDoubleClick QTreeView::expandsOnDoubleClick commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.cpp non plain false false bool [] } +&{indentation QTreeView::indentation commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.cpp non plain false false int [] } +&{isAnimated QTreeView::isAnimated commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.cpp non plain false false bool [] } +&{isExpanded QTreeView::isExpanded commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.cpp non plain false false bool [0xc821f03400] } +&{isHeaderHidden QTreeView::isHeaderHidden commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.cpp non plain false false bool [] } +&{isSortingEnabled QTreeView::isSortingEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.cpp non plain false false bool [] } +&{itemsExpandable QTreeView::itemsExpandable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.cpp non plain false false bool [] } +&{resetIndentation QTreeView::resetIndentation commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.cpp non plain false false void [] } +&{rootIsDecorated QTreeView::rootIsDecorated commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.cpp non plain false false bool [] } +&{setAllColumnsShowFocus QTreeView::setAllColumnsShowFocus commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.cpp non plain false false void [0xc821f03f80] } +&{setAnimated QTreeView::setAnimated commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.cpp non plain false false void [0xc821d36220] } +&{setAutoExpandDelay QTreeView::setAutoExpandDelay commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.cpp non plain false false void [0xc821d364c0] } +&{setExpandsOnDoubleClick QTreeView::setExpandsOnDoubleClick commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.cpp non plain false false void [0xc821d36720] } +&{setHeaderHidden QTreeView::setHeaderHidden commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.cpp non plain false false void [0xc821d36980] } +&{setIndentation QTreeView::setIndentation commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.cpp non plain false false void [0xc821d36c20] } +&{setItemsExpandable QTreeView::setItemsExpandable commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.cpp non plain false false void [0xc821d36ec0] } +&{setRootIsDecorated QTreeView::setRootIsDecorated commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.cpp non plain false false void [0xc821d37160] } +&{setSortingEnabled QTreeView::setSortingEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.cpp non plain false false void [0xc821d373e0] } +&{setUniformRowHeights QTreeView::setUniformRowHeights commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.cpp non plain false false void [0xc821d376a0] } +&{setWordWrap QTreeView::setWordWrap commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.cpp non plain false false void [0xc821d37900] } +&{uniformRowHeights QTreeView::uniformRowHeights commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.cpp non plain false false bool [] } +&{wordWrap QTreeView::wordWrap commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.cpp non plain false false bool [] } +&{QTreeView QTreeView::QTreeView commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non constructor false false [0xc821d37ea0] } +&{collapseAll QTreeView::collapseAll commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non slot false false void [] } +&{collapsed QTreeView::collapsed commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non signal false false void [0xc8224ea7a0] } +&{columnAt QTreeView::columnAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non plain false false int [0xc8224eaa40] } +&{columnCountChanged QTreeView::columnCountChanged commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non slot false false void [0xc8224eace0 0xc8224eadc0] } +&{columnMoved QTreeView::columnMoved commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non slot false false void [] } +&{columnViewportPosition QTreeView::columnViewportPosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non plain false false int [0xc8224eb100] } +&{columnWidth QTreeView::columnWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non plain false false int [0xc8224eb300] } +&{columnResized QTreeView::columnResized commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non slot false false void [0xc8224eb960 0xc8224eb9e0 0xc8224eba60] } +&{currentChanged QTreeView::currentChanged commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false void [0xc8224ebc40 0xc8224ebd20] } +&{dataChanged QTreeView::dataChanged commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false void [0xc821d3e000 0xc821d3e140 0xc821d3e260] } +&{dragMoveEvent QTreeView::dragMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false void [0xc821d3e480] } +&{drawBranches QTreeView::drawBranches commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false void [0xc821d3e6c0 0xc821d3e740 0xc821d3e7e0] } +&{drawRow QTreeView::drawRow commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false void [0xc821d3ea40 0xc821d3eb20 0xc821d3ec20] } +&{drawTree QTreeView::drawTree commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non plain false false void [0xc821d3ee80 0xc821d3ef20] } +&{expandAll QTreeView::expandAll commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non slot false false void [] } +&{expandToDepth QTreeView::expandToDepth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non slot false false void [0xc821d3f280] } +&{expanded QTreeView::expanded commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non signal false false void [0xc821d3f4e0] } +&{header QTreeView::header commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non plain false false QHeaderView * [] } +&{hideColumn QTreeView::hideColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non slot false false void [0xc821d3f8e0] } +&{horizontalOffset QTreeView::horizontalOffset commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false int [] } +&{indexAbove QTreeView::indexAbove commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non plain false false QModelIndex [0xc821d3fe80] } +&{indexAt QTreeView::indexAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false QModelIndex [0xc821d46120] } +&{indexBelow QTreeView::indexBelow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non plain false false QModelIndex [0xc821d46380] } +&{indexRowSizeHint QTreeView::indexRowSizeHint commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non plain false false int [0xc821d46620] } +&{isColumnHidden QTreeView::isColumnHidden commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non plain false false bool [0xc821d468a0] } +&{isFirstColumnSpanned QTreeView::isFirstColumnSpanned commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non plain false false bool [0xc821d46b40 0xc821d46c00] } +&{isIndexHidden QTreeView::isIndexHidden commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false bool [0xc821d46ec0] } +&{isRowHidden QTreeView::isRowHidden commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non plain false false bool [0xc821d47140 0xc821d47220] } +&{keyPressEvent QTreeView::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false void [0xc821d474a0] } +&{keyboardSearch QTreeView::keyboardSearch commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false void [0xc821d476c0] } +&{mouseDoubleClickEvent QTreeView::mouseDoubleClickEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false void [0xc821d47900] } +&{mouseMoveEvent QTreeView::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false void [0xc821d47b60] } +&{mousePressEvent QTreeView::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false void [0xc821d47d40] } +&{mouseReleaseEvent QTreeView::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false void [0xc821d47fe0] } +&{moveCursor QTreeView::moveCursor commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false QModelIndex [0xc822d2c220 0xc822d2c320] } +&{paintEvent QTreeView::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false void [0xc822d2c580] } +&{reset QTreeView::reset commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false void [] } +&{resizeColumnToContents QTreeView::resizeColumnToContents commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non slot false false void [0xc822d2c820] } +&{rowHeight QTreeView::rowHeight commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non plain false false int [0xc822d2caa0] } +&{rowsAboutToBeRemoved QTreeView::rowsAboutToBeRemoved commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false void [0xc822d2cd80 0xc822d2ce80 0xc822d2cf20] } +&{rowsInserted QTreeView::rowsInserted commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false void [0xc822d2d160 0xc822d2d260 0xc822d2d320] } +&{rowsRemoved QTreeView::rowsRemoved commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non slot false false void [0xc822d2d580 0xc822d2d660 0xc822d2d700] } +&{scrollContentsBy QTreeView::scrollContentsBy commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false void [0xc822d2d940 0xc822d2d9e0] } +&{scrollTo QTreeView::scrollTo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false void [0xc822d2dc40 0xc822d2dd20] } +&{selectAll QTreeView::selectAll commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false void [] } +&{selectedIndexes QTreeView::selectedIndexes commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false QModelIndexList [] } +&{selectionChanged QTreeView::selectionChanged commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false void [0xc821d4c160 0xc821d4c280] } +&{setColumnHidden QTreeView::setColumnHidden commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non plain false false void [0xc821d4c500 0xc821d4c5a0] } +&{setColumnWidth QTreeView::setColumnWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non plain false false void [0xc821d4c7a0 0xc821d4c820] } +&{setExpanded QTreeView::setExpanded commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non plain false false void [0xc821d4ca80 0xc821d4cb40] } +&{setFirstColumnSpanned QTreeView::setFirstColumnSpanned commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non plain false false void [0xc821d4cd80 0xc821d4ce60 0xc821d4cf40] } +&{setHeader QTreeView::setHeader commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non plain false false void [0xc821d4d160] } +&{setModel QTreeView::setModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false void [0xc821d4d3a0] } +&{setRootIndex QTreeView::setRootIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false void [0xc821d4d640] } +&{setRowHidden QTreeView::setRowHidden commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non plain false false void [0xc821d4d8e0 0xc821d4d9a0 0xc821d4daa0] } +&{setSelection QTreeView::setSelection commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false void [0xc821d4dce0 0xc821d4dd80] } +&{setSelectionModel QTreeView::setSelectionModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false void [0xc821d56020] } +&{setTreePosition QTreeView::setTreePosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non plain false false void [0xc821d562a0] } +&{showColumn QTreeView::showColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non slot false false void [0xc821d56500] } +&{sizeHintForColumn QTreeView::sizeHintForColumn commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false int [0xc821d567a0] } +&{sortByColumn QTreeView::sortByColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non plain false false void [0xc821d56c00 0xc821d56ca0] } +&{timerEvent QTreeView::timerEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false void [0xc821d56ea0] } +&{treePosition QTreeView::treePosition commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non plain false false int [] } +&{updateGeometries QTreeView::updateGeometries commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false void [] } +&{verticalOffset QTreeView::verticalOffset commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false int [] } +&{viewportEvent QTreeView::viewportEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false bool [0xc821d57440] } +&{viewportSizeHint QTreeView::viewportSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false QSize [] } +&{visualRect QTreeView::visualRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false QRect [0xc821d577c0] } +&{visualRegionForSelection QTreeView::visualRegionForSelection commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h impure plain false false QRegion [0xc821d57a00] } +&{~QTreeView QTreeView::~QTreeView commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreeview.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QTreeWidget.txt b/internal/binding/dump/QtWidgets/QTreeWidget.txt new file mode 100755 index 00000000..686fd63b --- /dev/null +++ b/internal/binding/dump/QtWidgets/QTreeWidget.txt @@ -0,0 +1,64 @@ +######################################## FUNCTIONS ######################################## +&{columnCount QTreeWidget::columnCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.cpp non plain false false int [] } +&{setColumnCount QTreeWidget::setColumnCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.cpp non plain false false void [0xc821d65580] } +&{topLevelItemCount QTreeWidget::topLevelItemCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.cpp non plain false false int [] } +&{QTreeWidget QTreeWidget::QTreeWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non constructor false false [0xc821d65980] } +&{addTopLevelItem QTreeWidget::addTopLevelItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc821d65e40] } +&{addTopLevelItems QTreeWidget::addTopLevelItems commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc822500080] } +&{clear QTreeWidget::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non slot false false void [] } +&{closePersistentEditor QTreeWidget::closePersistentEditor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc8225003c0 0xc8225004c0] } +&{collapseItem QTreeWidget::collapseItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non slot false false void [0xc822500700] } +&{currentColumn QTreeWidget::currentColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false int [] } +&{currentItem QTreeWidget::currentItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QTreeWidgetItem * [] } +&{currentItemChanged QTreeWidget::currentItemChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non signal false false void [0xc822500ca0 0xc822500de0] } +&{dropEvent QTreeWidget::dropEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h impure plain false false void [0xc822501060] } +&{dropMimeData QTreeWidget::dropMimeData commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h impure plain false false bool [0xc822501240 0xc822501320 0xc8225013c0 0xc822501480] } +&{editItem QTreeWidget::editItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc822501660 0xc822501720] } +&{event QTreeWidget::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h impure plain false false bool [0xc8225019c0] } +&{expandItem QTreeWidget::expandItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non slot false false void [0xc822501c00] } +&{findItems QTreeWidget::findItems commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QList [0xc822501f00 0xc822501f80 0xc821d76060] } +&{headerItem QTreeWidget::headerItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QTreeWidgetItem * [] } +&{indexFromItem QTreeWidget::indexFromItem commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QModelIndex [0xc821d76560 0xc821d76640] } +&{indexOfTopLevelItem QTreeWidget::indexOfTopLevelItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false int [0xc821d76980] } +&{insertTopLevelItem QTreeWidget::insertTopLevelItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc821d76ce0 0xc821d76e20] } +&{insertTopLevelItems QTreeWidget::insertTopLevelItems commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc821d77140 0xc821d77240] } +&{invisibleRootItem QTreeWidget::invisibleRootItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QTreeWidgetItem * [] } +&{isFirstItemColumnSpanned QTreeWidget::isFirstItemColumnSpanned commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false bool [0xc821d777c0] } +&{itemAbove QTreeWidget::itemAbove commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QTreeWidgetItem * [0xc821d802a0] } +&{itemActivated QTreeWidget::itemActivated commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non signal false false void [0xc821d805a0 0xc821d806a0] } +&{itemAt QTreeWidget::itemAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QTreeWidgetItem * [0xc821d80940] } +&{itemAt QTreeWidget::itemAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false true 2 QTreeWidgetItem * [0xc821d80be0 0xc821d80ca0] } +&{itemBelow QTreeWidget::itemBelow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QTreeWidgetItem * [0xc821d80f80] } +&{itemChanged QTreeWidget::itemChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non signal false false void [0xc821d81200 0xc821d812e0] } +&{itemClicked QTreeWidget::itemClicked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non signal false false void [0xc821d81520 0xc821d81600] } +&{itemCollapsed QTreeWidget::itemCollapsed commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non signal false false void [0xc821d81840] } +&{itemDoubleClicked QTreeWidget::itemDoubleClicked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non signal false false void [0xc821d81b20 0xc821d81be0] } +&{itemEntered QTreeWidget::itemEntered commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non signal false false void [0xc821d81e40 0xc821d81f60] } +&{itemExpanded QTreeWidget::itemExpanded commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non signal false false void [0xc821d8c180] } +&{itemFromIndex QTreeWidget::itemFromIndex commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QTreeWidgetItem * [0xc821d8c4a0] } +&{itemPressed QTreeWidget::itemPressed commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non signal false false void [0xc821d8c740 0xc821d8c820] } +&{itemSelectionChanged QTreeWidget::itemSelectionChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non signal false false void [] } +&{itemWidget QTreeWidget::itemWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QWidget * [0xc821d8cb80 0xc821d8cc40] } +&{mimeData QTreeWidget::mimeData commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h impure plain false false QMimeData * [0xc821d8d220] } +&{mimeTypes QTreeWidget::mimeTypes commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h impure plain false false QStringList [] } +&{openPersistentEditor QTreeWidget::openPersistentEditor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc821d8d5c0 0xc821d8d6e0] } +&{removeItemWidget QTreeWidget::removeItemWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc821d8d900 0xc821d8da00] } +&{scrollToItem QTreeWidget::scrollToItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non slot false false void [0xc821d8dc40 0xc821d8dd80] } +&{selectedItems QTreeWidget::selectedItems commendable unsupported_cppType /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QList [] } +&{setCurrentItem QTreeWidget::setCurrentItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc821d9a1c0] } +&{setCurrentItem QTreeWidget::setCurrentItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false true 2 void [0xc821d9a440 0xc821d9a540] } +&{setCurrentItem QTreeWidget::setCurrentItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false true 3 void [0xc821d9a740 0xc821d9a840 0xc821d9a8c0] } +&{setFirstItemColumnSpanned QTreeWidget::setFirstItemColumnSpanned commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc821d9ab00 0xc821d9abc0] } +&{setHeaderItem QTreeWidget::setHeaderItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc821d9ae20] } +&{setHeaderLabel QTreeWidget::setHeaderLabel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc821d9b0a0] } +&{setHeaderLabels QTreeWidget::setHeaderLabels commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc821d9b2c0] } +&{setItemWidget QTreeWidget::setItemWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc821d9be80 0xc821d9bf60 0xc821d9bfe0] } +&{setSelectionModel QTreeWidget::setSelectionModel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h impure plain false false void [0xc8223e4540] } +&{sortColumn QTreeWidget::sortColumn commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false int [] } +&{sortItems QTreeWidget::sortItems commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc8223e4920 0xc8223e49a0] } +&{supportedDropActions QTreeWidget::supportedDropActions commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h impure plain false false Qt::DropActions [] } +&{takeTopLevelItem QTreeWidget::takeTopLevelItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QTreeWidgetItem * [0xc8223e4ce0] } +&{topLevelItem QTreeWidget::topLevelItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QTreeWidgetItem * [0xc8223e4f60] } +&{visualItemRect QTreeWidget::visualItemRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QRect [0xc8223e51e0] } +&{~QTreeWidget QTreeWidget::~QTreeWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QTreeWidgetItem.txt b/internal/binding/dump/QtWidgets/QTreeWidgetItem.txt new file mode 100755 index 00000000..3a9ec84d --- /dev/null +++ b/internal/binding/dump/QtWidgets/QTreeWidgetItem.txt @@ -0,0 +1,73 @@ +######################################## FUNCTIONS ######################################## +&{QTreeWidgetItem QTreeWidgetItem::QTreeWidgetItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.cpp non constructor false true 5 [0xc8223e5a80 0xc8223e5b40 0xc8223e5c20] } +&{QTreeWidgetItem QTreeWidgetItem::QTreeWidgetItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.cpp non constructor false true 4 [0xc8223e5e40 0xc8223e5f40 0xc822518020] } +&{QTreeWidgetItem QTreeWidgetItem::QTreeWidgetItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.cpp non constructor false true 3 [0xc822518220 0xc8225182a0] } +&{QTreeWidgetItem QTreeWidgetItem::QTreeWidgetItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.cpp non constructor false true 8 [0xc8225184e0 0xc822518620 0xc8225186e0] } +&{flags QTreeWidgetItem::flags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.cpp non plain false false Qt::ItemFlags [] } +&{setFlags QTreeWidgetItem::setFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.cpp non plain false false void [0xc822518a40] } +&{QTreeWidgetItem QTreeWidgetItem::QTreeWidgetItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non constructor false true 7 [0xc822519300 0xc822519420 0xc822519540] } +&{QTreeWidgetItem QTreeWidgetItem::QTreeWidgetItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non constructor false true 6 [0xc822519780 0xc822519840] } +&{QTreeWidgetItem QTreeWidgetItem::QTreeWidgetItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non constructor false true 2 [0xc822519aa0 0xc822519b60] } +&{QTreeWidgetItem QTreeWidgetItem::QTreeWidgetItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non constructor false true 9 [0xc822519dc0] } +&{QTreeWidgetItem QTreeWidgetItem::QTreeWidgetItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non constructor false false [0xc8223f00a0] } +&{addChild QTreeWidgetItem::addChild commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc8223f0300] } +&{addChildren QTreeWidgetItem::addChildren commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc8223f05c0] } +&{background QTreeWidgetItem::background commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QBrush [0xc8223f0820] } +&{checkState QTreeWidgetItem::checkState commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false Qt::CheckState [0xc8223f0c60] } +&{child QTreeWidgetItem::child commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QTreeWidgetItem * [0xc8223f0f20] } +&{childCount QTreeWidgetItem::childCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false int [] } +&{childIndicatorPolicy QTreeWidgetItem::childIndicatorPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QTreeWidgetItem::ChildIndicatorPolicy [] } +&{columnCount QTreeWidgetItem::columnCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false int [] } +&{data QTreeWidgetItem::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h impure plain false false QVariant [0xc8223f1500 0xc8223f15a0] } +&{emitDataChanged QTreeWidgetItem::emitDataChanged commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [] } +&{clone QTreeWidgetItem::clone commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h impure plain false false QTreeWidgetItem * [] } +&{font QTreeWidgetItem::font commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QFont [0xc8224042c0] } +&{foreground QTreeWidgetItem::foreground commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QBrush [0xc8224044e0] } +&{icon QTreeWidgetItem::icon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QIcon [0xc822404740] } +&{indexOfChild QTreeWidgetItem::indexOfChild commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false int [0xc822404980] } +&{insertChild QTreeWidgetItem::insertChild commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc822404bc0 0xc822404cc0] } +&{insertChildren QTreeWidgetItem::insertChildren commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc822404f00 0xc822405000] } +&{isDisabled QTreeWidgetItem::isDisabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false bool [] } +&{isExpanded QTreeWidgetItem::isExpanded commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false bool [] } +&{isFirstColumnSpanned QTreeWidgetItem::isFirstColumnSpanned commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false bool [] } +&{isHidden QTreeWidgetItem::isHidden commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false bool [] } +&{isSelected QTreeWidgetItem::isSelected commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false bool [] } +&{operator< QTreeWidgetItem::operator< commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h impure plain false false bool [0xc822405840] } +&{operator= QTreeWidgetItem::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QTreeWidgetItem & [0xc822405ba0] } +&{parent QTreeWidgetItem::parent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QTreeWidgetItem * [] } +&{read QTreeWidgetItem::read commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h impure plain false false void [0xc821f8c000] } +&{removeChild QTreeWidgetItem::removeChild commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc821f8c200] } +&{setBackground QTreeWidgetItem::setBackground commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc821f8c3e0 0xc821f8c460] } +&{setCheckState QTreeWidgetItem::setCheckState commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc821f8c960 0xc821f8c9e0] } +&{setChildIndicatorPolicy QTreeWidgetItem::setChildIndicatorPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc821f8cba0] } +&{setData QTreeWidgetItem::setData commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h impure plain false false void [0xc821f8cd60 0xc821f8ce00 0xc821f8cee0] } +&{setDisabled QTreeWidgetItem::setDisabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc821f8d140] } +&{setExpanded QTreeWidgetItem::setExpanded commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc821f8d3a0] } +&{setFirstColumnSpanned QTreeWidgetItem::setFirstColumnSpanned commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc821f8d540] } +&{setFont QTreeWidgetItem::setFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc821f8d760 0xc821f8d7e0] } +&{setForeground QTreeWidgetItem::setForeground commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc821f8d9a0 0xc821f8da20] } +&{setHidden QTreeWidgetItem::setHidden commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc821f8dc60] } +&{setIcon QTreeWidgetItem::setIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc821f8de80 0xc821f8df20] } +&{setSelected QTreeWidgetItem::setSelected commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc8224221e0] } +&{setSizeHint QTreeWidgetItem::setSizeHint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc822422420 0xc8224224c0] } +&{setStatusTip QTreeWidgetItem::setStatusTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc8224226a0 0xc822422760] } +&{setText QTreeWidgetItem::setText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc822422960 0xc822422a20] } +&{setTextAlignment QTreeWidgetItem::setTextAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc822422ba0 0xc822422c20] } +&{setToolTip QTreeWidgetItem::setToolTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc8224230e0 0xc822423180] } +&{setWhatsThis QTreeWidgetItem::setWhatsThis commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc822423360 0xc8224233e0] } +&{sizeHint QTreeWidgetItem::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QSize [0xc822423640] } +&{sortChildren QTreeWidgetItem::sortChildren commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false void [0xc822423880 0xc822423900] } +&{statusTip QTreeWidgetItem::statusTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QString [0xc822423b40] } +&{takeChild QTreeWidgetItem::takeChild commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QTreeWidgetItem * [0xc822423dc0] } +&{takeChildren QTreeWidgetItem::takeChildren commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QList [] } +&{text QTreeWidgetItem::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QString [0xc822428160] } +&{textAlignment QTreeWidgetItem::textAlignment commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false int [0xc822428380] } +&{toolTip QTreeWidgetItem::toolTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QString [0xc8224287a0] } +&{treeWidget QTreeWidgetItem::treeWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QTreeWidget * [] } +&{type QTreeWidgetItem::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false int [] } +&{whatsThis QTreeWidgetItem::whatsThis commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h non plain false false QString [0xc822428c20] } +&{write QTreeWidgetItem::write commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h impure plain false false void [0xc822428e40] } +&{~QTreeWidgetItem QTreeWidgetItem::~QTreeWidgetItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidget.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{ChildIndicatorPolicy QTreeWidgetItem::ChildIndicatorPolicy commendable public [0xc822518c20 0xc822518d00 0xc822518e00]} +&{ItemType QTreeWidgetItem::ItemType commendable public [0xc822519060 0xc822519100]} diff --git a/internal/binding/dump/QtWidgets/QTreeWidgetItemIterator.txt b/internal/binding/dump/QtWidgets/QTreeWidgetItemIterator.txt new file mode 100755 index 00000000..92b4fca0 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QTreeWidgetItemIterator.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QTreeWidgetItemIterator QTreeWidgetItemIterator::QTreeWidgetItemIterator commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidgetitemiterator.h non constructor false true 2 [0xc8224385a0 0xc822438640] } +&{QTreeWidgetItemIterator QTreeWidgetItemIterator::QTreeWidgetItemIterator commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidgetitemiterator.h non constructor false true 3 [0xc8224388a0 0xc8224389a0] } +&{QTreeWidgetItemIterator QTreeWidgetItemIterator::QTreeWidgetItemIterator commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidgetitemiterator.h non constructor false false [0xc822438c00] } +&{operator* QTreeWidgetItemIterator::operator* commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidgetitemiterator.h non plain false false QTreeWidgetItem * [] } +&{operator++ QTreeWidgetItemIterator::operator++ commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidgetitemiterator.h non plain false false QTreeWidgetItemIterator & [] } +&{operator++ QTreeWidgetItemIterator::operator++ commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidgetitemiterator.h non plain false true 2 const QTreeWidgetItemIterator [0xc8224392e0] } +&{operator+= QTreeWidgetItemIterator::operator+= commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidgetitemiterator.h non plain false false QTreeWidgetItemIterator & [0xc822439520] } +&{operator-- QTreeWidgetItemIterator::operator-- commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidgetitemiterator.h non plain false false QTreeWidgetItemIterator & [] } +&{operator-- QTreeWidgetItemIterator::operator-- commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidgetitemiterator.h non plain false true 2 const QTreeWidgetItemIterator [0xc822439860] } +&{operator-= QTreeWidgetItemIterator::operator-= commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidgetitemiterator.h non plain false false QTreeWidgetItemIterator & [0xc822439a80] } +&{operator= QTreeWidgetItemIterator::operator= commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidgetitemiterator.h non plain false false QTreeWidgetItemIterator & [0xc822439d00] } +&{~QTreeWidgetItemIterator QTreeWidgetItemIterator::~QTreeWidgetItemIterator commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/itemviews/qtreewidgetitemiterator.h non destructor false false [] } +######################################## ENUMS ######################################## +&{IteratorFlag QTreeWidgetItemIterator::IteratorFlag commendable public QTreeWidgetItemIterator::IteratorFlags [0xc8224295c0 0xc8224296a0 0xc822429740 0xc8224297e0 0xc8224298a0 0xc822429940 0xc8224299e0 0xc822429aa0 0xc822429b60 0xc822429c00 0xc822429ca0 0xc822429d20 0xc822429e00 0xc822429ea0 0xc822429f20 0xc822438000 0xc8224380c0 0xc822438180 0xc822438200 0xc8224382a0]} diff --git a/internal/binding/dump/QtWidgets/QUndoCommand.txt b/internal/binding/dump/QtWidgets/QUndoCommand.txt new file mode 100755 index 00000000..514330c6 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QUndoCommand.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QUndoCommand QUndoCommand::QUndoCommand commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non constructor false false [0xc82122fb80] } +&{QUndoCommand QUndoCommand::QUndoCommand commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non constructor false true 2 [0xc82122ff60 0xc821216040] } +&{actionText QUndoCommand::actionText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non plain false false QString [] } +&{child QUndoCommand::child commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non plain false false const QUndoCommand * [0xc8212168c0] } +&{childCount QUndoCommand::childCount commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non plain false false int [] } +&{id QUndoCommand::id commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h impure plain false false int [] } +&{mergeWith QUndoCommand::mergeWith commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h impure plain false false bool [0xc821217180] } +&{redo QUndoCommand::redo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h impure plain false false void [] } +&{setText QUndoCommand::setText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non plain false false void [0xc821217920] } +&{text QUndoCommand::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non plain false false QString [] } +&{undo QUndoCommand::undo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h impure plain false false void [] } +&{~QUndoCommand QUndoCommand::~QUndoCommand commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QUndoGroup.txt b/internal/binding/dump/QtWidgets/QUndoGroup.txt new file mode 100755 index 00000000..abe33b74 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QUndoGroup.txt @@ -0,0 +1,25 @@ +######################################## FUNCTIONS ######################################## +&{QUndoGroup QUndoGroup::QUndoGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundogroup.h non constructor false false [0xc8212535e0] } +&{activeStack QUndoGroup::activeStack commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundogroup.h non plain false false QUndoStack * [] } +&{activeStackChanged QUndoGroup::activeStackChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundogroup.h non signal false false void [0xc821253b40] } +&{addStack QUndoGroup::addStack commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundogroup.h non plain false false void [0xc821253f00] } +&{canRedo QUndoGroup::canRedo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundogroup.h non plain false false bool [] } +&{canRedoChanged QUndoGroup::canRedoChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundogroup.h non signal false false void [0xc82123c500] } +&{canUndo QUndoGroup::canUndo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundogroup.h non plain false false bool [] } +&{canUndoChanged QUndoGroup::canUndoChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundogroup.h non signal false false void [0xc82123cac0] } +&{cleanChanged QUndoGroup::cleanChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundogroup.h non signal false false void [0xc82123cea0] } +&{createRedoAction QUndoGroup::createRedoAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundogroup.h non plain false false QAction * [0xc82123d220 0xc82123d300] } +&{createUndoAction QUndoGroup::createUndoAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundogroup.h non plain false false QAction * [0xc82123d640 0xc82123d700] } +&{indexChanged QUndoGroup::indexChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundogroup.h non signal false false void [0xc82123da80] } +&{isClean QUndoGroup::isClean commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundogroup.h non plain false false bool [] } +&{redo QUndoGroup::redo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundogroup.h non slot false false void [] } +&{redoText QUndoGroup::redoText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundogroup.h non plain false false QString [] } +&{redoTextChanged QUndoGroup::redoTextChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundogroup.h non signal false false void [0xc82122e280] } +&{removeStack QUndoGroup::removeStack commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundogroup.h non plain false false void [0xc82122e600] } +&{setActiveStack QUndoGroup::setActiveStack commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundogroup.h non slot false false void [0xc82122e9e0] } +&{stacks QUndoGroup::stacks commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundogroup.h non plain false false QList [] } +&{undo QUndoGroup::undo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundogroup.h non slot false false void [] } +&{undoText QUndoGroup::undoText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundogroup.h non plain false false QString [] } +&{undoTextChanged QUndoGroup::undoTextChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundogroup.h non signal false false void [0xc82122f380] } +&{~QUndoGroup QUndoGroup::~QUndoGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundogroup.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QUndoStack.txt b/internal/binding/dump/QtWidgets/QUndoStack.txt new file mode 100755 index 00000000..aeaebf8d --- /dev/null +++ b/internal/binding/dump/QtWidgets/QUndoStack.txt @@ -0,0 +1,34 @@ +######################################## FUNCTIONS ######################################## +&{isActive QUndoStack::isActive commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.cpp non plain false false bool [] } +&{setActive QUndoStack::setActive commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.cpp non slot false false void [0xc821206dc0] } +&{setUndoLimit QUndoStack::setUndoLimit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.cpp non plain false false void [0xc8212072c0] } +&{undoLimit QUndoStack::undoLimit commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.cpp non plain false false int [] } +&{QUndoStack QUndoStack::QUndoStack commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non constructor false false [0xc821207ac0] } +&{beginMacro QUndoStack::beginMacro commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non plain false false void [0xc821207e80] } +&{canRedo QUndoStack::canRedo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non plain false false bool [] } +&{canRedoChanged QUndoStack::canRedoChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non signal false false void [0xc8211f4440] } +&{canUndo QUndoStack::canUndo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non plain false false bool [] } +&{canUndoChanged QUndoStack::canUndoChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non signal false false void [0xc8211f4b20] } +&{cleanChanged QUndoStack::cleanChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non signal false false void [0xc8211f5020] } +&{cleanIndex QUndoStack::cleanIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non plain false false int [] } +&{clear QUndoStack::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non plain false false void [] } +&{command QUndoStack::command commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non plain false false const QUndoCommand * [0xc8211f58e0] } +&{count QUndoStack::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non plain false false int [] } +&{createRedoAction QUndoStack::createRedoAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non plain false false QAction * [0xc8211f5fe0 0xc8211e40e0] } +&{createUndoAction QUndoStack::createUndoAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non plain false false QAction * [0xc8211e4580 0xc8211e4700] } +&{endMacro QUndoStack::endMacro commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non plain false false void [] } +&{index QUndoStack::index commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non plain false false int [] } +&{indexChanged QUndoStack::indexChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non signal false false void [0xc8211e4fc0] } +&{isClean QUndoStack::isClean commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non plain false false bool [] } +&{push QUndoStack::push commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non plain false false void [0xc8211e55a0] } +&{redo QUndoStack::redo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non slot false false void [] } +&{redoText QUndoStack::redoText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non plain false false QString [] } +&{redoTextChanged QUndoStack::redoTextChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non signal false false void [0xc8211e5be0] } +&{setClean QUndoStack::setClean commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non slot false false void [] } +&{setIndex QUndoStack::setIndex commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non slot false false void [0xc8211d0380] } +&{text QUndoStack::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non plain false false QString [0xc8211d06a0] } +&{undo QUndoStack::undo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non slot false false void [] } +&{undoText QUndoStack::undoText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non plain false false QString [] } +&{undoTextChanged QUndoStack::undoTextChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non signal false false void [0xc8211d0e60] } +&{~QUndoStack QUndoStack::~QUndoStack commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundostack.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QUndoView.txt b/internal/binding/dump/QtWidgets/QUndoView.txt new file mode 100755 index 00000000..ee3d720d --- /dev/null +++ b/internal/binding/dump/QtWidgets/QUndoView.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{cleanIcon QUndoView::cleanIcon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundoview.cpp non plain false false QIcon [] } +&{emptyLabel QUndoView::emptyLabel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundoview.cpp non plain false false QString [] } +&{setCleanIcon QUndoView::setCleanIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundoview.cpp non plain false false void [0xc8211c2560] } +&{setEmptyLabel QUndoView::setEmptyLabel commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundoview.cpp non plain false false void [0xc8211c2ac0] } +&{QUndoView QUndoView::QUndoView commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundoview.h non constructor false true 3 [0xc8211c2e80 0xc8211c2fe0] } +&{QUndoView QUndoView::QUndoView commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundoview.h non constructor false true 2 [0xc8211c3420 0xc8211c3560] } +&{QUndoView QUndoView::QUndoView commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundoview.h non constructor false false [0xc8211c3a00] } +&{group QUndoView::group commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundoview.h non plain false false QUndoGroup * [] } +&{setGroup QUndoView::setGroup commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundoview.h non slot false false void [0xc8211c3fe0] } +&{setStack QUndoView::setStack commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundoview.h non slot false false void [0xc8211b4460] } +&{stack QUndoView::stack commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundoview.h non plain false false QUndoStack * [] } +&{~QUndoView QUndoView::~QUndoView commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/util/qundoview.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QVBoxLayout.txt b/internal/binding/dump/QtWidgets/QVBoxLayout.txt new file mode 100755 index 00000000..f16848ab --- /dev/null +++ b/internal/binding/dump/QtWidgets/QVBoxLayout.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{QVBoxLayout QVBoxLayout::QVBoxLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h non constructor false false [] } +&{QVBoxLayout QVBoxLayout::QVBoxLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h non constructor false true 2 [0xc822c01520] } +&{~QVBoxLayout QVBoxLayout::~QVBoxLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qboxlayout.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QWhatsThis.txt b/internal/binding/dump/QtWidgets/QWhatsThis.txt new file mode 100755 index 00000000..99776a51 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QWhatsThis.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{createAction QWhatsThis::createAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwhatsthis.h non plain true false QAction * [0xc82210c460] } +&{enterWhatsThisMode QWhatsThis::enterWhatsThisMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwhatsthis.h non plain true false void [] } +&{hideText QWhatsThis::hideText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwhatsthis.h non plain true false void [] } +&{inWhatsThisMode QWhatsThis::inWhatsThisMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwhatsthis.h non plain true false bool [] } +&{leaveWhatsThisMode QWhatsThis::leaveWhatsThisMode commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwhatsthis.h non plain true false void [] } +&{showText QWhatsThis::showText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwhatsthis.h non plain true false void [0xc82210cc80 0xc82210cd60 0xc82210cde0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QWidget.txt b/internal/binding/dump/QtWidgets/QWidget.txt new file mode 100755 index 00000000..0851aa7e --- /dev/null +++ b/internal/binding/dump/QtWidgets/QWidget.txt @@ -0,0 +1,282 @@ +######################################## FUNCTIONS ######################################## +&{acceptDrops QWidget::acceptDrops commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false bool [] } +&{accessibleDescription QWidget::accessibleDescription commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false QString [] } +&{accessibleName QWidget::accessibleName commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false QString [] } +&{actionEvent QWidget::actionEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp impure plain false false void [0xc82210dd80] } +&{activateWindow QWidget::activateWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [] } +&{autoFillBackground QWidget::autoFillBackground commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false bool [] } +&{baseSize QWidget::baseSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false QSize [] } +&{childrenRect QWidget::childrenRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false QRect [] } +&{childrenRegion QWidget::childrenRegion commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false QRegion [] } +&{clearMask QWidget::clearMask commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [] } +&{contextMenuPolicy QWidget::contextMenuPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false Qt::ContextMenuPolicy [] } +&{cursor QWidget::cursor commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false QCursor [] } +&{destroy QWidget::destroy commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc82211ce20 0xc82211cf00] } +&{dragEnterEvent QWidget::dragEnterEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp impure plain false false void [0xc82211d220] } +&{dragLeaveEvent QWidget::dragLeaveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp impure plain false false void [0xc82211d540] } +&{dragMoveEvent QWidget::dragMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp impure plain false false void [0xc82211d7a0] } +&{dropEvent QWidget::dropEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp impure plain false false void [0xc82211db40] } +&{enterEvent QWidget::enterEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp impure plain false false void [0xc82211dd80] } +&{focusInEvent QWidget::focusInEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp impure plain false false void [0xc82213a040] } +&{focusOutEvent QWidget::focusOutEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp impure plain false false void [0xc82213a340] } +&{focusPolicy QWidget::focusPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false Qt::FocusPolicy [] } +&{frameGeometry QWidget::frameGeometry commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false QRect [] } +&{frameSize QWidget::frameSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false QSize [] } +&{grabKeyboard QWidget::grabKeyboard commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [] } +&{grabMouse QWidget::grabMouse commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [] } +&{grabMouse QWidget::grabMouse commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false true 2 void [0xc82213ae20] } +&{hasFocus QWidget::hasFocus commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false bool [] } +&{hideEvent QWidget::hideEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp impure plain false false void [0xc82213b320] } +&{inputMethodHints QWidget::inputMethodHints commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false Qt::InputMethodHints [] } +&{isActiveWindow QWidget::isActiveWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false bool [] } +&{isFullScreen QWidget::isFullScreen commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false bool [] } +&{isMaximized QWidget::isMaximized commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false bool [] } +&{isMinimized QWidget::isMinimized commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false bool [] } +&{isWindowModified QWidget::isWindowModified commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false bool [] } +&{keyboardGrabber QWidget::keyboardGrabber commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain true false QWidget * [] } +&{layoutDirection QWidget::layoutDirection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false Qt::LayoutDirection [] } +&{leaveEvent QWidget::leaveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp impure plain false false void [0xc82214e2e0] } +&{locale QWidget::locale commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false QLocale [] } +&{mapFromGlobal QWidget::mapFromGlobal commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false QPoint [0xc82214e640] } +&{mapToGlobal QWidget::mapToGlobal commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false QPoint [0xc82214e880] } +&{maximumSize QWidget::maximumSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false QSize [] } +&{metric QWidget::metric commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp impure plain false false int [0xc82214eb20] } +&{minimumSize QWidget::minimumSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false QSize [] } +&{minimumSizeHint QWidget::minimumSizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp impure plain false false QSize [] } +&{mouseGrabber QWidget::mouseGrabber commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain true false QWidget * [] } +&{move QWidget::move commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc82214f100] } +&{moveEvent QWidget::moveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp impure plain false false void [0xc82214f2e0] } +&{normalGeometry QWidget::normalGeometry commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false QRect [] } +&{paintEngine QWidget::paintEngine commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp impure plain false false QPaintEngine * [] } +&{paintEvent QWidget::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp impure plain false false void [0xc82214f6c0] } +&{palette QWidget::palette commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false const QPalette & [] } +&{pos QWidget::pos commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false QPoint [] } +&{releaseKeyboard QWidget::releaseKeyboard commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [] } +&{releaseMouse QWidget::releaseMouse commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [] } +&{resize QWidget::resize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc82214fca0] } +&{setAcceptDrops QWidget::setAcceptDrops commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc82214ff20] } +&{setAccessibleDescription QWidget::setAccessibleDescription commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc822164160] } +&{setAccessibleName QWidget::setAccessibleName commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc822164440] } +&{setAutoFillBackground QWidget::setAutoFillBackground commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc822164700] } +&{setContextMenuPolicy QWidget::setContextMenuPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc822164960] } +&{setCursor QWidget::setCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc822164c20] } +&{setEditFocus QWidget::setEditFocus commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc822164e40] } +&{setEnabled QWidget::setEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non slot false false void [0xc822165060] } +&{setFixedSize QWidget::setFixedSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false true 2 void [0xc822165240 0xc8221652c0] } +&{setFocusPolicy QWidget::setFocusPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc822165500] } +&{setFont QWidget::setFont commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc822165720] } +&{setGeometry QWidget::setGeometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc822165960] } +&{setInputMethodHints QWidget::setInputMethodHints commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc822165c60] } +&{setLayout QWidget::setLayout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc822165f00] } +&{setLayoutDirection QWidget::setLayoutDirection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc82217c220] } +&{setLocale QWidget::setLocale commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc82217c4e0] } +&{setMask QWidget::setMask commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc82217c640] } +&{setMask QWidget::setMask commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false true 2 void [0xc82217c7a0] } +&{setMaximumHeight QWidget::setMaximumHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc82217ca20] } +&{setMaximumWidth QWidget::setMaximumWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc82217cd20] } +&{setMinimumHeight QWidget::setMinimumHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc82217d0c0] } +&{setMinimumWidth QWidget::setMinimumWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc82217d3e0] } +&{setPalette QWidget::setPalette commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc82217d680] } +&{setSizePolicy QWidget::setSizePolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc82217d980] } +&{setStatusTip QWidget::setStatusTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc82217dba0] } +&{setStyleSheet QWidget::setStyleSheet commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non slot false false void [0xc82217de60] } +&{setToolTip QWidget::setToolTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc8221940e0] } +&{setToolTipDuration QWidget::setToolTipDuration commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc822194380] } +&{setUpdatesEnabled QWidget::setUpdatesEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc822194660] } +&{setVisible QWidget::setVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp impure slot false false void [0xc822194880] } +&{setWhatsThis QWidget::setWhatsThis commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc822194a60] } +&{setWindowFilePath QWidget::setWindowFilePath commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc822194d80] } +&{setWindowFlags QWidget::setWindowFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc822194fc0] } +&{setWindowIcon QWidget::setWindowIcon commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc822195220] } +&{setWindowIconText QWidget::setWindowIconText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc822195500] } +&{setWindowModality QWidget::setWindowModality commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc822195800] } +&{setWindowModified QWidget::setWindowModified commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non slot false false void [0xc822195b80] } +&{setWindowOpacity QWidget::setWindowOpacity commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc822195dc0] } +&{setWindowState QWidget::setWindowState commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [0xc8221a4000] } +&{setWindowTitle QWidget::setWindowTitle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non slot false false void [0xc8221a4240] } +&{showEvent QWidget::showEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp impure plain false false void [0xc8221a4460] } +&{sizeHint QWidget::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp impure plain false false QSize [] } +&{sizeIncrement QWidget::sizeIncrement commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false QSize [] } +&{sizePolicy QWidget::sizePolicy commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false QSizePolicy [] } +&{statusTip QWidget::statusTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false QString [] } +&{styleSheet QWidget::styleSheet commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false QString [] } +&{toolTip QWidget::toolTip commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false QString [] } +&{toolTipDuration QWidget::toolTipDuration commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false int [] } +&{unsetCursor QWidget::unsetCursor commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [] } +&{unsetLayoutDirection QWidget::unsetLayoutDirection commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [] } +&{unsetLocale QWidget::unsetLocale commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false void [] } +&{whatsThis QWidget::whatsThis commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false QString [] } +&{winId QWidget::winId commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false WId [] } +&{windowFilePath QWidget::windowFilePath commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false QString [] } +&{windowIcon QWidget::windowIcon commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false QIcon [] } +&{windowIconText QWidget::windowIconText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false QString [] } +&{windowModality QWidget::windowModality commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false Qt::WindowModality [] } +&{windowOpacity QWidget::windowOpacity commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false qreal [] } +&{windowTitle QWidget::windowTitle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false QString [] } +&{x QWidget::x commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false int [] } +&{y QWidget::y commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.cpp non plain false false int [] } +&{QWidget QWidget::QWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non constructor false false [0xc8221bc980 0xc8221bca40] } +&{actions QWidget::actions commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QList [] } +&{addAction QWidget::addAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc8221d2000] } +&{addActions QWidget::addActions commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc8221d2240] } +&{adjustSize QWidget::adjustSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [] } +&{backgroundRole QWidget::backgroundRole commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QPalette::ColorRole [] } +&{backingStore QWidget::backingStore commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QBackingStore * [] } +&{changeEvent QWidget::changeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h impure plain false false void [0xc8221d28c0] } +&{childAt QWidget::childAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false true 2 QWidget * [0xc8221d2a80] } +&{childAt QWidget::childAt commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QWidget * [0xc8221d2c20 0xc8221d2cc0] } +&{clearFocus QWidget::clearFocus commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [] } +&{close QWidget::close commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non slot false false bool [] } +&{closeEvent QWidget::closeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h impure plain false false void [0xc8221d30e0] } +&{contentsMargins QWidget::contentsMargins commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QMargins [] } +&{contentsRect QWidget::contentsRect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QRect [] } +&{contextMenuEvent QWidget::contextMenuEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h impure plain false false void [0xc8221d35c0] } +&{create QWidget::create commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc8221d37a0 0xc8221d3820 0xc8221d3920] } +&{customContextMenuRequested QWidget::customContextMenuRequested commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non signal false false void [0xc8221d3b00] } +&{effectiveWinId QWidget::effectiveWinId commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false WId [] } +&{ensurePolished QWidget::ensurePolished commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [] } +&{event QWidget::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h impure plain false false bool [0xc821e9e0a0] } +&{find QWidget::find commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain true false QWidget * [0xc821e9e2c0] } +&{focusNextChild QWidget::focusNextChild commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false bool [] } +&{focusNextPrevChild QWidget::focusNextPrevChild commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h impure plain false false bool [0xc821e9e680] } +&{focusPreviousChild QWidget::focusPreviousChild commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false bool [] } +&{focusProxy QWidget::focusProxy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QWidget * [] } +&{focusWidget QWidget::focusWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QWidget * [] } +&{font QWidget::font commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false const QFont & [] } +&{fontInfo QWidget::fontInfo commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QFontInfo [] } +&{fontMetrics QWidget::fontMetrics commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QFontMetrics [] } +&{foregroundRole QWidget::foregroundRole commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QPalette::ColorRole [] } +&{geometry QWidget::geometry commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false const QRect & [] } +&{getContentsMargins QWidget::getContentsMargins commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc821e9f360 0xc821e9f420 0xc821e9f4c0 0xc821e9f540] } +&{grab QWidget::grab commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QPixmap [0xc821e9f720] } +&{grabGesture QWidget::grabGesture commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc821e9f940 0xc821e9fa40] } +&{grabShortcut QWidget::grabShortcut commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false int [0xc821e9fca0 0xc821e9fda0] } +&{graphicsEffect QWidget::graphicsEffect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QGraphicsEffect * [] } +&{graphicsProxyWidget QWidget::graphicsProxyWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QGraphicsProxyWidget * [] } +&{hasEditFocus QWidget::hasEditFocus commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false bool [] } +&{hasHeightForWidth QWidget::hasHeightForWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h impure plain false false bool [] } +&{hasMouseTracking QWidget::hasMouseTracking commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false bool [] } +&{height QWidget::height commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false int [] } +&{heightForWidth QWidget::heightForWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h impure plain false false int [0xc8221e8860] } +&{hide QWidget::hide commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non slot false false void [] } +&{initPainter QWidget::initPainter commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h impure plain false false void [0xc8221e8b00] } +&{inputMethodEvent QWidget::inputMethodEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h impure plain false false void [0xc8221e8da0] } +&{inputMethodQuery QWidget::inputMethodQuery commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h impure plain false false QVariant [0xc8221e9020] } +&{insertAction QWidget::insertAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc8221e92e0 0xc8221e9360] } +&{insertActions QWidget::insertActions commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc8221e9580 0xc8221e9660] } +&{isAncestorOf QWidget::isAncestorOf commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false bool [0xc8221e99e0] } +&{isEnabled QWidget::isEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false bool [] } +&{isEnabledTo QWidget::isEnabledTo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false bool [0xc8221e9d20] } +&{isHidden QWidget::isHidden commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false bool [] } +&{isModal QWidget::isModal commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false bool [] } +&{isVisible QWidget::isVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false bool [] } +&{isVisibleTo QWidget::isVisibleTo commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false bool [0xc822b3e520] } +&{isWindow QWidget::isWindow commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false bool [] } +&{keyPressEvent QWidget::keyPressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h impure plain false false void [0xc822b3e940] } +&{keyReleaseEvent QWidget::keyReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h impure plain false false void [0xc822b3eb20] } +&{layout QWidget::layout commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QLayout * [] } +&{lower QWidget::lower commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non slot false false void [] } +&{mapFrom QWidget::mapFrom commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QPoint [0xc822b3eee0 0xc822b3efe0] } +&{mapFromParent QWidget::mapFromParent commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QPoint [0xc822b3f240] } +&{mapTo QWidget::mapTo commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QPoint [0xc822b3f4a0 0xc822b3f580] } +&{mapToParent QWidget::mapToParent commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QPoint [0xc822b3f880] } +&{mask QWidget::mask commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QRegion [] } +&{maximumHeight QWidget::maximumHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false int [] } +&{maximumWidth QWidget::maximumWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false int [] } +&{minimumHeight QWidget::minimumHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false int [] } +&{minimumWidth QWidget::minimumWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false int [] } +&{mouseDoubleClickEvent QWidget::mouseDoubleClickEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h impure plain false false void [0xc822b52400] } +&{mouseMoveEvent QWidget::mouseMoveEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h impure plain false false void [0xc822b526a0] } +&{mousePressEvent QWidget::mousePressEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h impure plain false false void [0xc822b52960] } +&{mouseReleaseEvent QWidget::mouseReleaseEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h impure plain false false void [0xc822b52d20] } +&{move QWidget::move commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false true 2 void [0xc822b52fc0 0xc822b530a0] } +&{nativeEvent QWidget::nativeEvent commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h impure plain false false bool [0xc822b533c0 0xc822b534e0 0xc822b535c0] } +&{nativeParentWidget QWidget::nativeParentWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QWidget * [] } +&{nextInFocusChain QWidget::nextInFocusChain commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QWidget * [] } +&{overrideWindowFlags QWidget::overrideWindowFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc822b53c80] } +&{parentWidget QWidget::parentWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QWidget * [] } +&{previousInFocusChain QWidget::previousInFocusChain commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QWidget * [] } +&{raise QWidget::raise commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non slot false false void [] } +&{rect QWidget::rect commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QRect [] } +&{releaseShortcut QWidget::releaseShortcut commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc82254e4e0] } +&{removeAction QWidget::removeAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc82254e760] } +&{render QWidget::render commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc82254e9c0 0xc82254eac0 0xc82254eb60 0xc82254ec20] } +&{render QWidget::render commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false true 2 void [0xc82254ee60 0xc82254ef20 0xc82254f000 0xc82254f0a0] } +&{repaint QWidget::repaint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non slot false false void [] } +&{repaint QWidget::repaint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false true 3 void [0xc82254f3e0] } +&{repaint QWidget::repaint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false true 4 void [0xc82254f660] } +&{repaint QWidget::repaint commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false true 2 void [0xc82254f840 0xc82254f920 0xc82254f9c0 0xc82254fac0] } +&{resize QWidget::resize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false true 2 void [0xc82254fd20 0xc82254fda0] } +&{resizeEvent QWidget::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h impure plain false false void [0xc82255e0a0] } +&{restoreGeometry QWidget::restoreGeometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false bool [0xc82255e3a0] } +&{saveGeometry QWidget::saveGeometry commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QByteArray [] } +&{scroll QWidget::scroll commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc82255e840 0xc82255e900] } +&{scroll QWidget::scroll commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false true 2 void [0xc82255eb00 0xc82255ec00 0xc82255ece0] } +&{setAttribute QWidget::setAttribute commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc82255efc0 0xc82255f120] } +&{setBackgroundRole QWidget::setBackgroundRole commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc82255f4a0] } +&{setBaseSize QWidget::setBaseSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc82255f800] } +&{setBaseSize QWidget::setBaseSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false true 2 void [0xc82255fb00 0xc82255fba0] } +&{setContentsMargins QWidget::setContentsMargins commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false true 2 void [0xc82255fee0] } +&{setContentsMargins QWidget::setContentsMargins commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc82256a240 0xc82256a360 0xc82256a440 0xc82256a4e0] } +&{setDisabled QWidget::setDisabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non slot false false void [0xc82256a840] } +&{setFixedHeight QWidget::setFixedHeight commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc82256ac40] } +&{setFixedSize QWidget::setFixedSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc82256afe0] } +&{setFixedWidth QWidget::setFixedWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc82256b3e0] } +&{setFocus QWidget::setFocus commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non slot false true 2 void [] } +&{setFocus QWidget::setFocus commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc82256b8e0] } +&{setFocusProxy QWidget::setFocusProxy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc82256bca0] } +&{setForegroundRole QWidget::setForegroundRole commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc82257a160] } +&{setGeometry QWidget::setGeometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false true 2 void [0xc82257a600 0xc82257a6e0 0xc82257a820 0xc82257a9a0] } +&{setGraphicsEffect QWidget::setGraphicsEffect commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc82257af00] } +&{setHidden QWidget::setHidden commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non slot false false void [0xc82257b3e0] } +&{setMaximumSize QWidget::setMaximumSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc82257b960] } +&{setMaximumSize QWidget::setMaximumSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false true 2 void [0xc82257bde0 0xc82257bf40] } +&{setMinimumSize QWidget::setMinimumSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc822588220] } +&{setMinimumSize QWidget::setMinimumSize commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false true 2 void [0xc822588500 0xc822588620] } +&{setMouseTracking QWidget::setMouseTracking commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc822588940] } +&{setParent QWidget::setParent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc822588c40] } +&{setParent QWidget::setParent commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false true 2 void [0xc822588f40 0xc822588fc0] } +&{setShortcutAutoRepeat QWidget::setShortcutAutoRepeat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc822589300 0xc822589400] } +&{setShortcutEnabled QWidget::setShortcutEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc822589700 0xc8225897c0] } +&{setSizeIncrement QWidget::setSizeIncrement commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc822589ac0] } +&{setSizeIncrement QWidget::setSizeIncrement commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false true 2 void [0xc822589e00 0xc822589e80] } +&{setSizePolicy QWidget::setSizePolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false true 2 void [0xc82259a1c0 0xc82259a320] } +&{setStyle QWidget::setStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc82259a680] } +&{setTabOrder QWidget::setTabOrder commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain true false void [0xc82259a960 0xc82259a9e0] } +&{setWindowRole QWidget::setWindowRole commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc82259acc0] } +&{setupUi QWidget::setupUi commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc82259af20] } +&{show QWidget::show commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non slot false false void [] } +&{showFullScreen QWidget::showFullScreen commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non slot false false void [] } +&{showMaximized QWidget::showMaximized commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non slot false false void [] } +&{showMinimized QWidget::showMinimized commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non slot false false void [] } +&{showNormal QWidget::showNormal commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non slot false false void [] } +&{size QWidget::size commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QSize [] } +&{stackUnder QWidget::stackUnder commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc82259ba80] } +&{style QWidget::style commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QStyle * [] } +&{tabletEvent QWidget::tabletEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h impure plain false false void [0xc82259be60] } +&{testAttribute QWidget::testAttribute commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false bool [0xc8225a8140] } +&{underMouse QWidget::underMouse commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false bool [] } +&{ungrabGesture QWidget::ungrabGesture commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [0xc8225a8740] } +&{update QWidget::update commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non slot false false void [] } +&{update QWidget::update commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false true 3 void [0xc8225a8a40] } +&{update QWidget::update commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false true 4 void [0xc8225a8ca0] } +&{update QWidget::update commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false true 2 void [0xc8225a8ec0 0xc8225a8fc0 0xc8225a9040 0xc8225a9120] } +&{updateGeometry QWidget::updateGeometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false void [] } +&{updateMicroFocus QWidget::updateMicroFocus commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non slot false false void [] } +&{updatesEnabled QWidget::updatesEnabled commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false bool [] } +&{visibleRegion QWidget::visibleRegion commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QRegion [] } +&{wheelEvent QWidget::wheelEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h impure plain false false void [0xc8225a9ac0] } +&{width QWidget::width commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false int [] } +&{window QWidget::window commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QWidget * [] } +&{windowFlags QWidget::windowFlags commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false Qt::WindowFlags [] } +&{windowHandle QWidget::windowHandle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QWindow * [] } +&{windowIconChanged QWidget::windowIconChanged commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non signal false false void [0xc8225ba3a0] } +&{windowIconTextChanged QWidget::windowIconTextChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non signal false false void [0xc8225ba720] } +&{windowRole QWidget::windowRole commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false QString [] } +&{windowState QWidget::windowState commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false Qt::WindowStates [] } +&{windowTitleChanged QWidget::windowTitleChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non signal false false void [0xc8225bae40] } +&{windowType QWidget::windowType commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non plain false false Qt::WindowType [] } +&{~QWidget QWidget::~QWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidget.h non destructor false false [] } +&{createWindowContainer QWidget::createWindowContainer commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwindowcontainer.cpp non plain true false QWidget * [0xc8225d8d20 0xc8225d8e20 0xc8225d8f20] } +######################################## ENUMS ######################################## +&{RenderFlag QWidget::RenderFlag commendable public QWidget::RenderFlags [0xc8221bc5e0 0xc8221bc6a0 0xc8221bc720]} diff --git a/internal/binding/dump/QtWidgets/QWidgetAction.txt b/internal/binding/dump/QtWidgets/QWidgetAction.txt new file mode 100755 index 00000000..19b57aa2 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QWidgetAction.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QWidgetAction QWidgetAction::QWidgetAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidgetaction.h non constructor false false [0xc8225d9400] } +&{createWidget QWidgetAction::createWidget commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidgetaction.h impure plain false false QWidget * [0xc8225d9a00] } +&{createdWidgets QWidgetAction::createdWidgets commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidgetaction.h non plain false false QList [] } +&{defaultWidget QWidgetAction::defaultWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidgetaction.h non plain false false QWidget * [] } +&{deleteWidget QWidgetAction::deleteWidget commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidgetaction.h impure plain false false void [0xc8225d9fa0] } +&{event QWidgetAction::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidgetaction.h impure plain false false bool [0xc8225ea300] } +&{eventFilter QWidgetAction::eventFilter commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidgetaction.h impure plain false false bool [0xc8225ea5c0 0xc8225ea6a0] } +&{releaseWidget QWidgetAction::releaseWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidgetaction.h non plain false false void [0xc8225ea9a0] } +&{requestWidget QWidgetAction::requestWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidgetaction.h non plain false false QWidget * [0xc8225eaca0] } +&{setDefaultWidget QWidgetAction::setDefaultWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidgetaction.h non plain false false void [0xc8225eaf40] } +&{~QWidgetAction QWidgetAction::~QWidgetAction commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qwidgetaction.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QWidgetItem.txt b/internal/binding/dump/QtWidgets/QWidgetItem.txt new file mode 100755 index 00000000..c2ae1cd7 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QWidgetItem.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QWidgetItem QWidgetItem::QWidgetItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h non constructor false false [0xc8223496e0] } +&{controlTypes QWidgetItem::controlTypes commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure plain false false QSizePolicy::ControlTypes [] } +&{expandingDirections QWidgetItem::expandingDirections commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure plain false false Qt::Orientations [] } +&{geometry QWidgetItem::geometry commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure plain false false QRect [] } +&{hasHeightForWidth QWidgetItem::hasHeightForWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure plain false false bool [] } +&{heightForWidth QWidgetItem::heightForWidth commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure plain false false int [0xc822349f00] } +&{isEmpty QWidgetItem::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure plain false false bool [] } +&{maximumSize QWidgetItem::maximumSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure plain false false QSize [] } +&{minimumSize QWidgetItem::minimumSize commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure plain false false QSize [] } +&{setGeometry QWidgetItem::setGeometry commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure plain false false void [0xc82235a520] } +&{sizeHint QWidgetItem::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure plain false false QSize [] } +&{widget QWidgetItem::widget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h impure plain false false QWidget * [] } +&{~QWidgetItem QWidgetItem::~QWidgetItem commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/kernel/qlayoutitem.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtWidgets/QWizard.txt b/internal/binding/dump/QtWidgets/QWizard.txt new file mode 100755 index 00000000..a13f6b22 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QWizard.txt @@ -0,0 +1,60 @@ +######################################## FUNCTIONS ######################################## +&{cleanupPage QWizard::cleanupPage commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.cpp impure plain false false void [0xc826b1b6e0] } +&{currentId QWizard::currentId commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.cpp non plain false false int [] } +&{hasVisitedPage QWizard::hasVisitedPage commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.cpp non plain false false bool [0xc826b1be80] } +&{initializePage QWizard::initializePage commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.cpp impure plain false false void [0xc826b0a2c0] } +&{options QWizard::options commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.cpp non plain false false WizardOptions [] } +&{page QWizard::page commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.cpp non plain false false QWizardPage * [0xc826b0a840] } +&{setOptions QWizard::setOptions commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.cpp non plain false false void [0xc826b0ad60] } +&{setPage QWizard::setPage commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.cpp non plain false false void [0xc826b0b0a0 0xc826b0b200] } +&{setStartId QWizard::setStartId commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.cpp non plain false false void [0xc826b0b700] } +&{setSubTitleFormat QWizard::setSubTitleFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.cpp non plain false false void [0xc826b0bb80] } +&{setTitleFormat QWizard::setTitleFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.cpp non plain false false void [0xc826aea020] } +&{setWizardStyle QWizard::setWizardStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.cpp non plain false false void [0xc826aea440] } +&{startId QWizard::startId commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.cpp non plain false false int [] } +&{subTitleFormat QWizard::subTitleFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.cpp non plain false false Qt::TextFormat [] } +&{titleFormat QWizard::titleFormat commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.cpp non plain false false Qt::TextFormat [] } +&{wizardStyle QWizard::wizardStyle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.cpp non plain false false WizardStyle [] } +&{QWizard QWizard::QWizard commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non constructor false false [0xc820b9e3e0 0xc820b9e540] } +&{addPage QWizard::addPage commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false int [0xc820b9ebc0] } +&{back QWizard::back commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non slot false false void [] } +&{button QWizard::button commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false QAbstractButton * [0xc820b9f040] } +&{buttonText QWizard::buttonText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false QString [0xc820b9f440] } +&{currentIdChanged QWizard::currentIdChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non signal false false void [0xc820b9f7e0] } +&{currentPage QWizard::currentPage commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false QWizardPage * [] } +&{customButtonClicked QWizard::customButtonClicked commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non signal false false void [0xc820b9fe20] } +&{done QWizard::done commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h impure plain false false void [0xc820c640c0] } +&{event QWizard::event commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h impure plain false false bool [0xc820c64300] } +&{field QWizard::field commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false QVariant [0xc820c644c0] } +&{helpRequested QWizard::helpRequested commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non signal false false void [] } +&{nativeEvent QWizard::nativeEvent commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h impure plain false false bool [0xc820c64880 0xc820c64980 0xc820c64a00] } +&{next QWizard::next commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non slot false false void [] } +&{nextId QWizard::nextId commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h impure plain false false int [] } +&{pageAdded QWizard::pageAdded commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non signal false false void [0xc820c64e00] } +&{pageIds QWizard::pageIds commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false QList [] } +&{pageRemoved QWizard::pageRemoved commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non signal false false void [0xc820c65140] } +&{paintEvent QWizard::paintEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h impure plain false false void [0xc820c653a0] } +&{pixmap QWizard::pixmap commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false QPixmap [0xc820c65540] } +&{removePage QWizard::removePage commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false void [0xc820c657c0] } +&{resizeEvent QWizard::resizeEvent commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h impure plain false false void [0xc820c65a00] } +&{restart QWizard::restart commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non slot false false void [] } +&{setButton QWizard::setButton commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false void [0xc820c65ce0 0xc820c65d80] } +&{setButtonLayout QWizard::setButtonLayout commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false void [0xc820b7e0c0] } +&{setButtonText QWizard::setButtonText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false void [0xc820b7e620 0xc820b7e780] } +&{setDefaultProperty QWizard::setDefaultProperty commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false void [0xc820b7ec20 0xc820b7ed40 0xc820b7ee80] } +&{setField QWizard::setField commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false void [0xc820b7f140 0xc820b7f260] } +&{setOption QWizard::setOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false void [0xc820b7f560 0xc820b7f6a0] } +&{setPixmap QWizard::setPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false void [0xc820b7fa40 0xc820b7fb00] } +&{setSideWidget QWizard::setSideWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false void [0xc820b7fea0] } +&{setVisible QWizard::setVisible commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h impure plain false false void [0xc82315a100] } +&{sideWidget QWizard::sideWidget commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false QWidget * [] } +&{sizeHint QWizard::sizeHint commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h impure plain false false QSize [] } +&{testOption QWizard::testOption commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false bool [0xc82315a5c0] } +&{validateCurrentPage QWizard::validateCurrentPage commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h impure plain false false bool [] } +&{visitedPages QWizard::visitedPages commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false QList [] } +&{~QWizard QWizard::~QWizard commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non destructor false false [] } +######################################## ENUMS ######################################## +&{WizardButton QWizard::WizardButton commendable public [0xc826aeb520 0xc826aeb6e0 0xc826aeb860 0xc826aeb9a0 0xc826aebc60 0xc826aebd80 0xc826aebf20 0xc826ada000 0xc826ada100 0xc826ada240 0xc826ada380 0xc826ada580 0xc826ada6a0]} +&{WizardOption QWizard::WizardOption commendable public QWizard::WizardOptions [0xc826adaba0 0xc826adace0 0xc826adae80 0xc826adb060 0xc826adb260 0xc826adb4e0 0xc826adb720 0xc826adb960 0xc826adbbc0 0xc826adbe20 0xc826adbf00 0xc826abc180 0xc826abc320 0xc826abc540 0xc826abc720 0xc826abc900 0xc826abcc20]} +&{WizardPixmap QWizard::WizardPixmap commendable public [0xc826abd040 0xc826abd1a0 0xc826abd320 0xc826abd440 0xc826abd580]} +&{WizardStyle QWizard::WizardStyle commendable public [0xc826abda40 0xc826abdb40 0xc826abdc60 0xc826abdde0 0xc826abdfe0]} diff --git a/internal/binding/dump/QtWidgets/QWizardPage.txt b/internal/binding/dump/QtWidgets/QWizardPage.txt new file mode 100755 index 00000000..1d3a1c13 --- /dev/null +++ b/internal/binding/dump/QtWidgets/QWizardPage.txt @@ -0,0 +1,26 @@ +######################################## FUNCTIONS ######################################## +&{setSubTitle QWizardPage::setSubTitle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.cpp non plain false false void [0xc82315bd20] } +&{setTitle QWizardPage::setTitle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.cpp non plain false false void [0xc82314a040] } +&{subTitle QWizardPage::subTitle commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.cpp non plain false false QString [] } +&{title QWizardPage::title commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.cpp non plain false false QString [] } +&{QWizardPage QWizardPage::QWizardPage commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non constructor false false [0xc82314a6c0] } +&{buttonText QWizardPage::buttonText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false QString [0xc82314acc0] } +&{cleanupPage QWizardPage::cleanupPage commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h impure plain false false void [] } +&{completeChanged QWizardPage::completeChanged commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non signal false false void [] } +&{field QWizardPage::field commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false QVariant [0xc82314b2a0] } +&{initializePage QWizardPage::initializePage commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h impure plain false false void [] } +&{isCommitPage QWizardPage::isCommitPage commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false bool [] } +&{isComplete QWizardPage::isComplete commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h impure plain false false bool [] } +&{isFinalPage QWizardPage::isFinalPage commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false bool [] } +&{nextId QWizardPage::nextId commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h impure plain false false int [] } +&{pixmap QWizardPage::pixmap commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false QPixmap [0xc82314be80] } +&{registerField QWizardPage::registerField commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false void [0xc82313e2a0 0xc82313e380 0xc82313e420 0xc82313e520] } +&{setButtonText QWizardPage::setButtonText commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false void [0xc82313e7e0 0xc82313e8a0] } +&{setCommitPage QWizardPage::setCommitPage commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false void [0xc82313eae0] } +&{setField QWizardPage::setField commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false void [0xc82313ed20 0xc82313eda0] } +&{setFinalPage QWizardPage::setFinalPage commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false void [0xc82313f000] } +&{setPixmap QWizardPage::setPixmap commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false void [0xc82313f200 0xc82313f340] } +&{validatePage QWizardPage::validatePage commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h impure plain false false bool [] } +&{wizard QWizardPage::wizard commendable protected /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non plain false false QWizard * [] } +&{~QWizardPage QWizardPage::~QWizardPage commendable public /work/build/qt5_workdir/w/s/qtbase/src/widgets/dialogs/qwizard.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QDomAttr.txt b/internal/binding/dump/QtXml/QDomAttr.txt new file mode 100755 index 00000000..a9647c02 --- /dev/null +++ b/internal/binding/dump/QtXml/QDomAttr.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{QDomAttr QDomAttr::QDomAttr commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false false [] } +&{QDomAttr QDomAttr::QDomAttr commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false true 2 [0xc821690e60] } +&{name QDomAttr::name commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QString [] } +&{nodeType QDomAttr::nodeType commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode::NodeType [] } +&{operator= QDomAttr::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomAttr & [0xc821691220] } +&{ownerElement QDomAttr::ownerElement commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomElement [] } +&{setValue QDomAttr::setValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false void [0xc821691500] } +&{specified QDomAttr::specified commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [] } +&{value QDomAttr::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QString [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QDomCDATASection.txt b/internal/binding/dump/QtXml/QDomCDATASection.txt new file mode 100755 index 00000000..a0e69875 --- /dev/null +++ b/internal/binding/dump/QtXml/QDomCDATASection.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QDomCDATASection QDomCDATASection::QDomCDATASection commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false false [] } +&{QDomCDATASection QDomCDATASection::QDomCDATASection commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false true 2 [0xc821691b80] } +&{nodeType QDomCDATASection::nodeType commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode::NodeType [] } +&{operator= QDomCDATASection::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomCDATASection & [0xc821691f40] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QDomCharacterData.txt b/internal/binding/dump/QtXml/QDomCharacterData.txt new file mode 100755 index 00000000..b0046429 --- /dev/null +++ b/internal/binding/dump/QtXml/QDomCharacterData.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QDomCharacterData QDomCharacterData::QDomCharacterData commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false false [] } +&{QDomCharacterData QDomCharacterData::QDomCharacterData commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false true 2 [0xc821630560] } +&{appendData QDomCharacterData::appendData commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false void [0xc821630740] } +&{data QDomCharacterData::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QString [] } +&{deleteData QDomCharacterData::deleteData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false void [0xc821630a00 0xc821630a80] } +&{insertData QDomCharacterData::insertData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false void [0xc821630c20 0xc821630ca0] } +&{length QDomCharacterData::length commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false int [] } +&{nodeType QDomCharacterData::nodeType commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode::NodeType [] } +&{operator= QDomCharacterData::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomCharacterData & [0xc821631120] } +&{replaceData QDomCharacterData::replaceData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false void [0xc821631300 0xc821631380 0xc821631400] } +&{setData QDomCharacterData::setData commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false void [0xc8216315e0] } +&{substringData QDomCharacterData::substringData commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QString [0xc821631780 0xc821631800] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QDomComment.txt b/internal/binding/dump/QtXml/QDomComment.txt new file mode 100755 index 00000000..1b8dd7ec --- /dev/null +++ b/internal/binding/dump/QtXml/QDomComment.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QDomComment QDomComment::QDomComment commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false false [] } +&{QDomComment QDomComment::QDomComment commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false true 2 [0xc821631e60] } +&{nodeType QDomComment::nodeType commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode::NodeType [] } +&{operator= QDomComment::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomComment & [0xc82160c1e0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QDomDocument.txt b/internal/binding/dump/QtXml/QDomDocument.txt new file mode 100755 index 00000000..ec037d81 --- /dev/null +++ b/internal/binding/dump/QtXml/QDomDocument.txt @@ -0,0 +1,36 @@ +######################################## FUNCTIONS ######################################## +&{QDomDocument QDomDocument::QDomDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false false [] } +&{QDomDocument QDomDocument::QDomDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false true 4 [0xc82160c860] } +&{QDomDocument QDomDocument::QDomDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false true 3 [0xc82160ca80] } +&{QDomDocument QDomDocument::QDomDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false true 2 [0xc82160cca0] } +&{createAttribute QDomDocument::createAttribute commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomAttr [0xc82160ce40] } +&{createAttributeNS QDomDocument::createAttributeNS commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomAttr [0xc821792180 0xc821792200] } +&{createCDATASection QDomDocument::createCDATASection commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomCDATASection [0xc821792400] } +&{createComment QDomDocument::createComment commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomComment [0xc8217925e0] } +&{createDocumentFragment QDomDocument::createDocumentFragment commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomDocumentFragment [] } +&{createElement QDomDocument::createElement commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomElement [0xc8217928c0] } +&{createElementNS QDomDocument::createElementNS commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomElement [0xc821792a60 0xc821792ae0] } +&{createEntityReference QDomDocument::createEntityReference commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomEntityReference [0xc821792d00] } +&{createProcessingInstruction QDomDocument::createProcessingInstruction commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomProcessingInstruction [0xc821792f20 0xc821792fa0] } +&{createTextNode QDomDocument::createTextNode commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomText [0xc821793160] } +&{doctype QDomDocument::doctype commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomDocumentType [] } +&{documentElement QDomDocument::documentElement commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomElement [] } +&{elementById QDomDocument::elementById commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomElement [0xc821793500] } +&{elementsByTagName QDomDocument::elementsByTagName commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNodeList [0xc821793700] } +&{elementsByTagNameNS QDomDocument::elementsByTagNameNS commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNodeList [0xc8217938a0 0xc821793920] } +&{implementation QDomDocument::implementation commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomImplementation [] } +&{importNode QDomDocument::importNode commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode [0xc821793c20 0xc821793ca0] } +&{nodeType QDomDocument::nodeType commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode::NodeType [] } +&{operator= QDomDocument::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomDocument & [0xc821793fc0] } +&{setContent QDomDocument::setContent commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false true 7 bool [0xc8202526a0 0xc820252880 0xc820252a40 0xc820252bc0] } +&{setContent QDomDocument::setContent commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false true 3 bool [0xc820253300 0xc820253760 0xc820253920 0xc820253b00 0xc820253c40] } +&{setContent QDomDocument::setContent commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false true 8 bool [0xc8202d2160 0xc8202d2240 0xc8202d2320 0xc8202d23e0 0xc8202d24c0] } +&{setContent QDomDocument::setContent commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false true 4 bool [0xc8202d2780 0xc8202d28c0 0xc8202d2a00 0xc8202d2b00 0xc8202d2ba0] } +&{setContent QDomDocument::setContent commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false true 6 bool [0xc8202d2ec0 0xc8202d2fe0 0xc8202d30a0 0xc8202d3160] } +&{setContent QDomDocument::setContent commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [0xc8202d33e0 0xc8202d3560 0xc8202d3680 0xc8202d3700 0xc8202d3820] } +&{setContent QDomDocument::setContent commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false true 5 bool [0xc8202d3a80 0xc8202d3b40 0xc8202d3be0 0xc8202d3d00] } +&{setContent QDomDocument::setContent commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false true 2 bool [0xc8202d3f60 0xc820402040 0xc8204023e0 0xc8204024e0 0xc820402640] } +&{toByteArray QDomDocument::toByteArray commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QByteArray [0xc820402b60] } +&{toString QDomDocument::toString commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QString [0xc820403020] } +&{~QDomDocument QDomDocument::~QDomDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QDomDocumentFragment.txt b/internal/binding/dump/QtXml/QDomDocumentFragment.txt new file mode 100755 index 00000000..eb7f4c45 --- /dev/null +++ b/internal/binding/dump/QtXml/QDomDocumentFragment.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QDomDocumentFragment QDomDocumentFragment::QDomDocumentFragment commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false false [] } +&{QDomDocumentFragment QDomDocumentFragment::QDomDocumentFragment commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false true 2 [0xc8204be200] } +&{nodeType QDomDocumentFragment::nodeType commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode::NodeType [] } +&{operator= QDomDocumentFragment::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomDocumentFragment & [0xc8204bedc0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QDomDocumentType.txt b/internal/binding/dump/QtXml/QDomDocumentType.txt new file mode 100755 index 00000000..41ca340e --- /dev/null +++ b/internal/binding/dump/QtXml/QDomDocumentType.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{QDomDocumentType QDomDocumentType::QDomDocumentType commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false false [] } +&{QDomDocumentType QDomDocumentType::QDomDocumentType commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false true 2 [0xc8204bfde0] } +&{entities QDomDocumentType::entities commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNamedNodeMap [] } +&{internalSubset QDomDocumentType::internalSubset commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QString [] } +&{name QDomDocumentType::name commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QString [] } +&{nodeType QDomDocumentType::nodeType commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode::NodeType [] } +&{notations QDomDocumentType::notations commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNamedNodeMap [] } +&{operator= QDomDocumentType::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomDocumentType & [0xc820525f00] } +&{publicId QDomDocumentType::publicId commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QString [] } +&{systemId QDomDocumentType::systemId commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QString [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QDomElement.txt b/internal/binding/dump/QtXml/QDomElement.txt new file mode 100755 index 00000000..68dc25bd --- /dev/null +++ b/internal/binding/dump/QtXml/QDomElement.txt @@ -0,0 +1,36 @@ +######################################## FUNCTIONS ######################################## +&{QDomElement QDomElement::QDomElement commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false false [] } +&{QDomElement QDomElement::QDomElement commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false true 2 [0xc8205ad520] } +&{attribute QDomElement::attribute commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QString [0xc8205ad920 0xc8205adaa0] } +&{attributeNS QDomElement::attributeNS commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QString [0xc8205adf00 0xc826a5a060 0xc826a5a1e0] } +&{attributeNode QDomElement::attributeNode commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomAttr [0xc826a5a620] } +&{attributeNodeNS QDomElement::attributeNodeNS commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomAttr [0xc826a5ab00 0xc826a5ac80] } +&{attributes QDomElement::attributes commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNamedNodeMap [] } +&{elementsByTagName QDomElement::elementsByTagName commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNodeList [0xc826a5b4a0] } +&{elementsByTagNameNS QDomElement::elementsByTagNameNS commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNodeList [0xc826a5b9e0 0xc826a5bb20] } +&{hasAttribute QDomElement::hasAttribute commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [0xc826a5bfc0] } +&{hasAttributeNS QDomElement::hasAttributeNS commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [0xc8206e85e0 0xc8206e86e0] } +&{nodeType QDomElement::nodeType commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode::NodeType [] } +&{operator= QDomElement::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomElement & [0xc8206e8ee0] } +&{removeAttribute QDomElement::removeAttribute commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false void [0xc8206e9300] } +&{removeAttributeNS QDomElement::removeAttributeNS commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false void [0xc8206e9a40 0xc8206e9be0] } +&{removeAttributeNode QDomElement::removeAttributeNode commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomAttr [0xc820780240] } +&{setAttribute QDomElement::setAttribute commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false void [0xc820780660 0xc820780780] } +&{setAttribute QDomElement::setAttribute commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false true 7 void [0xc820780bc0 0xc820780c40] } +&{setAttribute QDomElement::setAttribute commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false true 6 void [0xc820781060 0xc820781220] } +&{setAttribute QDomElement::setAttribute commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false true 2 void [0xc8207816c0 0xc820781840] } +&{setAttribute QDomElement::setAttribute commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false true 4 void [0xc820781c40 0xc820781de0] } +&{setAttribute QDomElement::setAttribute commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false true 5 void [0xc820876280 0xc8208764a0] } +&{setAttribute QDomElement::setAttribute commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false true 3 void [0xc820876d00 0xc820876fc0] } +&{setAttributeNS QDomElement::setAttributeNS commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false void [0xc8208776c0 0xc820877920 0xc820877b40] } +&{setAttributeNS QDomElement::setAttributeNS commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false true 6 void [0xc8208f6020 0xc8208f60a0 0xc8208f6240] } +&{setAttributeNS QDomElement::setAttributeNS commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false true 2 void [0xc8208f6520 0xc8208f6660 0xc8208f67a0] } +&{setAttributeNS QDomElement::setAttributeNS commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false true 4 void [0xc8208f6b40 0xc8208f6c80 0xc8208f6d60] } +&{setAttributeNS QDomElement::setAttributeNS commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false true 5 void [0xc8208f70c0 0xc8208f7220 0xc8208f72c0] } +&{setAttributeNS QDomElement::setAttributeNS commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false true 3 void [0xc8208f7540 0xc8208f7640 0xc8208f7780] } +&{setAttributeNode QDomElement::setAttributeNode commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomAttr [0xc8208f7b20] } +&{setAttributeNodeNS QDomElement::setAttributeNodeNS commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomAttr [0xc8208f7ee0] } +&{setTagName QDomElement::setTagName commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false void [0xc82099c240] } +&{tagName QDomElement::tagName commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QString [] } +&{text QDomElement::text commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QString [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QDomEntity.txt b/internal/binding/dump/QtXml/QDomEntity.txt new file mode 100755 index 00000000..8272c27c --- /dev/null +++ b/internal/binding/dump/QtXml/QDomEntity.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QDomEntity QDomEntity::QDomEntity commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false false [] } +&{QDomEntity QDomEntity::QDomEntity commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false true 2 [0xc82099d460] } +&{nodeType QDomEntity::nodeType commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode::NodeType [] } +&{notationName QDomEntity::notationName commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QString [] } +&{operator= QDomEntity::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomEntity & [0xc82099de40] } +&{publicId QDomEntity::publicId commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QString [] } +&{systemId QDomEntity::systemId commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QString [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QDomEntityReference.txt b/internal/binding/dump/QtXml/QDomEntityReference.txt new file mode 100755 index 00000000..4c7d8e8a --- /dev/null +++ b/internal/binding/dump/QtXml/QDomEntityReference.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QDomEntityReference QDomEntityReference::QDomEntityReference commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false false [] } +&{QDomEntityReference QDomEntityReference::QDomEntityReference commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false true 2 [0xc820e48920] } +&{nodeType QDomEntityReference::nodeType commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode::NodeType [] } +&{operator= QDomEntityReference::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomEntityReference & [0xc820e48dc0] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QDomImplementation.txt b/internal/binding/dump/QtXml/QDomImplementation.txt new file mode 100755 index 00000000..ba24e689 --- /dev/null +++ b/internal/binding/dump/QtXml/QDomImplementation.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{QDomImplementation QDomImplementation::QDomImplementation commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false false [] } +&{QDomImplementation QDomImplementation::QDomImplementation commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false true 2 [0xc820e499a0] } +&{createDocument QDomImplementation::createDocument commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomDocument [0xc820e49bc0 0xc820e49c40 0xc820e49d40] } +&{createDocumentType QDomImplementation::createDocumentType commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomDocumentType [0xc820e49fc0 0xc820b56040 0xc820b56120] } +&{hasFeature QDomImplementation::hasFeature commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [0xc820b56440 0xc820b565c0] } +&{invalidDataPolicy QDomImplementation::invalidDataPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain true false InvalidDataPolicy [] } +&{isNull QDomImplementation::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [] } +&{operator!= QDomImplementation::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [0xc820b56d60] } +&{operator= QDomImplementation::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomImplementation & [0xc820b57200] } +&{operator== QDomImplementation::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [0xc820b57660] } +&{setInvalidDataPolicy QDomImplementation::setInvalidDataPolicy commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain true false void [0xc820b57aa0] } +&{~QDomImplementation QDomImplementation::~QDomImplementation commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non destructor false false [] } +######################################## ENUMS ######################################## +&{InvalidDataPolicy QDomImplementation::InvalidDataPolicy commendable public [0xc820e494a0 0xc820e495c0 0xc820e49660]} diff --git a/internal/binding/dump/QtXml/QDomNamedNodeMap.txt b/internal/binding/dump/QtXml/QDomNamedNodeMap.txt new file mode 100755 index 00000000..c50cefe1 --- /dev/null +++ b/internal/binding/dump/QtXml/QDomNamedNodeMap.txt @@ -0,0 +1,20 @@ +######################################## FUNCTIONS ######################################## +&{QDomNamedNodeMap QDomNamedNodeMap::QDomNamedNodeMap commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false false [] } +&{QDomNamedNodeMap QDomNamedNodeMap::QDomNamedNodeMap commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false true 2 [0xc820c24560] } +&{contains QDomNamedNodeMap::contains commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [0xc820c24c00] } +&{count QDomNamedNodeMap::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false int [] } +&{isEmpty QDomNamedNodeMap::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [] } +&{item QDomNamedNodeMap::item commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode [0xc820c257c0] } +&{length QDomNamedNodeMap::length commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false int [] } +&{namedItem QDomNamedNodeMap::namedItem commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode [0xc820cf4100] } +&{namedItemNS QDomNamedNodeMap::namedItemNS commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode [0xc820cf4600 0xc820cf4700] } +&{operator!= QDomNamedNodeMap::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [0xc820cf4b80] } +&{operator= QDomNamedNodeMap::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNamedNodeMap & [0xc820cf5200] } +&{operator== QDomNamedNodeMap::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [0xc820cf5740] } +&{removeNamedItem QDomNamedNodeMap::removeNamedItem commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode [0xc820cf5d00] } +&{removeNamedItemNS QDomNamedNodeMap::removeNamedItemNS commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode [0xc820d620a0 0xc820d62220] } +&{setNamedItem QDomNamedNodeMap::setNamedItem commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode [0xc820d626c0] } +&{setNamedItemNS QDomNamedNodeMap::setNamedItemNS commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode [0xc820d62b00] } +&{size QDomNamedNodeMap::size commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false int [] } +&{~QDomNamedNodeMap QDomNamedNodeMap::~QDomNamedNodeMap commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QDomNode.txt b/internal/binding/dump/QtXml/QDomNode.txt new file mode 100755 index 00000000..70c17265 --- /dev/null +++ b/internal/binding/dump/QtXml/QDomNode.txt @@ -0,0 +1,72 @@ +######################################## FUNCTIONS ######################################## +&{QDomNode QDomNode::QDomNode commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false false [] } +&{QDomNode QDomNode::QDomNode commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false true 2 [0xc826a79d80] } +&{appendChild QDomNode::appendChild commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode [0xc826aea660] } +&{attributes QDomNode::attributes commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNamedNodeMap [] } +&{childNodes QDomNode::childNodes commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNodeList [] } +&{clear QDomNode::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false void [] } +&{cloneNode QDomNode::cloneNode commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode [0xc826aeb140] } +&{columnNumber QDomNode::columnNumber commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false int [] } +&{firstChild QDomNode::firstChild commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode [] } +&{firstChildElement QDomNode::firstChildElement commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomElement [0xc826aebb00] } +&{hasAttributes QDomNode::hasAttributes commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [] } +&{hasChildNodes QDomNode::hasChildNodes commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [] } +&{insertAfter QDomNode::insertAfter commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode [0xc820f6e3e0 0xc820f6e500] } +&{insertBefore QDomNode::insertBefore commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode [0xc820f6e900 0xc820f6e9e0] } +&{isAttr QDomNode::isAttr commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [] } +&{isCDATASection QDomNode::isCDATASection commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [] } +&{isCharacterData QDomNode::isCharacterData commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [] } +&{isComment QDomNode::isComment commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [] } +&{isDocument QDomNode::isDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [] } +&{isDocumentFragment QDomNode::isDocumentFragment commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [] } +&{isDocumentType QDomNode::isDocumentType commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [] } +&{isElement QDomNode::isElement commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [] } +&{isEntity QDomNode::isEntity commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [] } +&{isEntityReference QDomNode::isEntityReference commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [] } +&{isNotation QDomNode::isNotation commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [] } +&{isNull QDomNode::isNull commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [] } +&{isProcessingInstruction QDomNode::isProcessingInstruction commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [] } +&{isSupported QDomNode::isSupported commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [0xc821043100 0xc821043220] } +&{isText QDomNode::isText commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [] } +&{lastChild QDomNode::lastChild commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode [] } +&{lastChildElement QDomNode::lastChildElement commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomElement [0xc821043d00] } +&{lineNumber QDomNode::lineNumber commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false int [] } +&{localName QDomNode::localName commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QString [] } +&{namedItem QDomNode::namedItem commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode [0xc8210e46c0] } +&{namespaceURI QDomNode::namespaceURI commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QString [] } +&{nextSibling QDomNode::nextSibling commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode [] } +&{nextSiblingElement QDomNode::nextSiblingElement commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomElement [0xc8210e5100] } +&{nodeName QDomNode::nodeName commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QString [] } +&{nodeType QDomNode::nodeType commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false NodeType [] } +&{nodeValue QDomNode::nodeValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QString [] } +&{normalize QDomNode::normalize commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false void [] } +&{operator!= QDomNode::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [0xc8210e5f40] } +&{operator= QDomNode::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode & [0xc821274240] } +&{operator== QDomNode::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [0xc821274600] } +&{ownerDocument QDomNode::ownerDocument commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomDocument [] } +&{parentNode QDomNode::parentNode commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode [] } +&{prefix QDomNode::prefix commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QString [] } +&{previousSibling QDomNode::previousSibling commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode [] } +&{previousSiblingElement QDomNode::previousSiblingElement commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomElement [0xc821275040] } +&{removeChild QDomNode::removeChild commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode [0xc821275380] } +&{replaceChild QDomNode::replaceChild commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode [0xc8212756e0 0xc821275780] } +&{save QDomNode::save commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false void [0xc821275aa0 0xc821275b80 0xc821275d00] } +&{setNodeValue QDomNode::setNodeValue commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false void [0xc8213de060] } +&{setPrefix QDomNode::setPrefix commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false void [0xc8213de360] } +&{toAttr QDomNode::toAttr commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomAttr [] } +&{toCDATASection QDomNode::toCDATASection commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomCDATASection [] } +&{toCharacterData QDomNode::toCharacterData commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomCharacterData [] } +&{toComment QDomNode::toComment commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomComment [] } +&{toDocument QDomNode::toDocument commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomDocument [] } +&{toDocumentFragment QDomNode::toDocumentFragment commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomDocumentFragment [] } +&{toDocumentType QDomNode::toDocumentType commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomDocumentType [] } +&{toElement QDomNode::toElement commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomElement [] } +&{toEntity QDomNode::toEntity commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomEntity [] } +&{toEntityReference QDomNode::toEntityReference commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomEntityReference [] } +&{toNotation QDomNode::toNotation commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNotation [] } +&{toProcessingInstruction QDomNode::toProcessingInstruction commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomProcessingInstruction [] } +&{toText QDomNode::toText commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomText [] } +&{~QDomNode QDomNode::~QDomNode commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non destructor false false [] } +######################################## ENUMS ######################################## +&{EncodingPolicy QDomNode::EncodingPolicy commendable public [0xc820d637a0 0xc820d63b60]} +&{NodeType QDomNode::NodeType commendable public [0xc826a78280 0xc826a783e0 0xc826a784e0 0xc826a78680 0xc826a787e0 0xc826a789a0 0xc826a78ae0 0xc826a78ca0 0xc826a78e00 0xc826a78fe0 0xc826a79100 0xc826a79300 0xc826a793a0 0xc826a79520]} diff --git a/internal/binding/dump/QtXml/QDomNodeList.txt b/internal/binding/dump/QtXml/QDomNodeList.txt new file mode 100755 index 00000000..2988e2f1 --- /dev/null +++ b/internal/binding/dump/QtXml/QDomNodeList.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QDomNodeList QDomNodeList::QDomNodeList commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false false [] } +&{QDomNodeList QDomNodeList::QDomNodeList commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false true 2 [0xc821764dc0] } +&{at QDomNodeList::at commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode [0xc8217651a0] } +&{count QDomNodeList::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false int [] } +&{isEmpty QDomNodeList::isEmpty commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [] } +&{item QDomNodeList::item commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode [0xc8217659a0] } +&{length QDomNodeList::length commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false int [] } +&{operator!= QDomNodeList::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [0xc821816000] } +&{operator= QDomNodeList::operator= commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNodeList & [0xc8218164a0] } +&{operator== QDomNodeList::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false bool [0xc821816860] } +&{size QDomNodeList::size commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false int [] } +&{~QDomNodeList QDomNodeList::~QDomNodeList commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QDomNotation.txt b/internal/binding/dump/QtXml/QDomNotation.txt new file mode 100755 index 00000000..3ab943f9 --- /dev/null +++ b/internal/binding/dump/QtXml/QDomNotation.txt @@ -0,0 +1,8 @@ +######################################## FUNCTIONS ######################################## +&{QDomNotation QDomNotation::QDomNotation commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false false [] } +&{QDomNotation QDomNotation::QDomNotation commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false true 2 [0xc821817880] } +&{nodeType QDomNotation::nodeType commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode::NodeType [] } +&{operator= QDomNotation::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNotation & [0xc821817e80] } +&{publicId QDomNotation::publicId commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QString [] } +&{systemId QDomNotation::systemId commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QString [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QDomProcessingInstruction.txt b/internal/binding/dump/QtXml/QDomProcessingInstruction.txt new file mode 100755 index 00000000..4c5ae743 --- /dev/null +++ b/internal/binding/dump/QtXml/QDomProcessingInstruction.txt @@ -0,0 +1,9 @@ +######################################## FUNCTIONS ######################################## +&{QDomProcessingInstruction QDomProcessingInstruction::QDomProcessingInstruction commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false false [] } +&{QDomProcessingInstruction QDomProcessingInstruction::QDomProcessingInstruction commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false true 2 [0xc8218e8ee0] } +&{data QDomProcessingInstruction::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QString [] } +&{nodeType QDomProcessingInstruction::nodeType commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode::NodeType [] } +&{operator= QDomProcessingInstruction::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomProcessingInstruction & [0xc8218e9660] } +&{setData QDomProcessingInstruction::setData commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false void [0xc8218e9900] } +&{target QDomProcessingInstruction::target commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QString [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QDomText.txt b/internal/binding/dump/QtXml/QDomText.txt new file mode 100755 index 00000000..2a016860 --- /dev/null +++ b/internal/binding/dump/QtXml/QDomText.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{QDomText QDomText::QDomText commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false false [] } +&{QDomText QDomText::QDomText commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non constructor false true 2 [0xc8219c6560] } +&{nodeType QDomText::nodeType commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomNode::NodeType [] } +&{operator= QDomText::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomText & [0xc8219c6ae0] } +&{splitText QDomText::splitText commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/dom/qdom.h non plain false false QDomText [0xc8219c6e40] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QXmlAttributes.txt b/internal/binding/dump/QtXml/QXmlAttributes.txt new file mode 100755 index 00000000..b3217078 --- /dev/null +++ b/internal/binding/dump/QtXml/QXmlAttributes.txt @@ -0,0 +1,21 @@ +######################################## FUNCTIONS ######################################## +&{QXmlAttributes QXmlAttributes::QXmlAttributes commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.cpp non constructor false false [] } +&{~QXmlAttributes QXmlAttributes::~QXmlAttributes commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.cpp impure destructor false false [] } +&{append QXmlAttributes::append commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false false void [0xc8219c7aa0 0xc8219c7b60 0xc8219c7ca0 0xc8219c7d60] } +&{clear QXmlAttributes::clear commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false false void [] } +&{count QXmlAttributes::count commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false false int [] } +&{index QXmlAttributes::index commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false true 2 int [0xc821ab04e0] } +&{index QXmlAttributes::index commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false false int [0xc821ab07c0] } +&{index QXmlAttributes::index commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false true 3 int [0xc821ab0b80 0xc821ab0c40] } +&{length QXmlAttributes::length commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false false int [] } +&{localName QXmlAttributes::localName commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false false QString [0xc821ab1200] } +&{qName QXmlAttributes::qName commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false false QString [0xc821ab1520] } +&{type QXmlAttributes::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false true 2 QString [0xc821ab1880] } +&{type QXmlAttributes::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false true 3 QString [0xc821ab1bc0 0xc821ab1ce0] } +&{type QXmlAttributes::type commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false false QString [0xc821b82040] } +&{uri QXmlAttributes::uri commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false false QString [0xc821b82460] } +&{value QXmlAttributes::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false true 3 QString [0xc821b82800] } +&{value QXmlAttributes::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false true 2 QString [0xc821b82b20] } +&{value QXmlAttributes::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false true 4 QString [0xc821b82ec0 0xc821b82f80] } +&{value QXmlAttributes::value commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false false QString [0xc821b83340] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QXmlContentHandler.txt b/internal/binding/dump/QtXml/QXmlContentHandler.txt new file mode 100755 index 00000000..4511c97e --- /dev/null +++ b/internal/binding/dump/QtXml/QXmlContentHandler.txt @@ -0,0 +1,15 @@ +######################################## FUNCTIONS ######################################## +&{characters QXmlContentHandler::characters commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [0xc821b838c0] } +&{endDocument QXmlContentHandler::endDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [] } +&{endElement QXmlContentHandler::endElement commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [0xc821b83de0 0xc821b83e80 0xc821b83f60] } +&{endPrefixMapping QXmlContentHandler::endPrefixMapping commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [0xc821c3e200] } +&{errorString QXmlContentHandler::errorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false QString [] } +&{ignorableWhitespace QXmlContentHandler::ignorableWhitespace commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [0xc821c3e720] } +&{processingInstruction QXmlContentHandler::processingInstruction commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [0xc821c3ea20 0xc821c3eb00] } +&{setDocumentLocator QXmlContentHandler::setDocumentLocator commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false void [0xc821c3ee40] } +&{skippedEntity QXmlContentHandler::skippedEntity commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [0xc821c3f120] } +&{startDocument QXmlContentHandler::startDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [] } +&{startElement QXmlContentHandler::startElement commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [0xc821c3f540 0xc821c3f620 0xc821c3f720 0xc821c3f840] } +&{startPrefixMapping QXmlContentHandler::startPrefixMapping commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [0xc821c3fc20 0xc821c3fd40] } +&{~QXmlContentHandler QXmlContentHandler::~QXmlContentHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QXmlDTDHandler.txt b/internal/binding/dump/QtXml/QXmlDTDHandler.txt new file mode 100755 index 00000000..d63cfd5d --- /dev/null +++ b/internal/binding/dump/QtXml/QXmlDTDHandler.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{errorString QXmlDTDHandler::errorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false QString [] } +&{notationDecl QXmlDTDHandler::notationDecl commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [0xc8226a2460 0xc8226a2500 0xc8226a25e0] } +&{unparsedEntityDecl QXmlDTDHandler::unparsedEntityDecl commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [0xc8226a2860 0xc8226a2960 0xc8226a2a00 0xc8226a2aa0] } +&{~QXmlDTDHandler QXmlDTDHandler::~QXmlDTDHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QXmlDeclHandler.txt b/internal/binding/dump/QtXml/QXmlDeclHandler.txt new file mode 100755 index 00000000..0ec167f2 --- /dev/null +++ b/internal/binding/dump/QtXml/QXmlDeclHandler.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{attributeDecl QXmlDeclHandler::attributeDecl commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [0xc8226a3000 0xc8226a3100 0xc8226a31a0 0xc8226a3240 0xc8226a3360] } +&{errorString QXmlDeclHandler::errorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false QString [] } +&{externalEntityDecl QXmlDeclHandler::externalEntityDecl commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [0xc8226a3760 0xc8226a3860 0xc8226a3920] } +&{internalEntityDecl QXmlDeclHandler::internalEntityDecl commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [0xc8226a3ba0 0xc8226a3ca0] } +&{~QXmlDeclHandler QXmlDeclHandler::~QXmlDeclHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QXmlDefaultHandler.txt b/internal/binding/dump/QtXml/QXmlDefaultHandler.txt new file mode 100755 index 00000000..9381783d --- /dev/null +++ b/internal/binding/dump/QtXml/QXmlDefaultHandler.txt @@ -0,0 +1,32 @@ +######################################## FUNCTIONS ######################################## +&{QXmlDefaultHandler QXmlDefaultHandler::QXmlDefaultHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.cpp non constructor false false [] } +&{~QXmlDefaultHandler QXmlDefaultHandler::~QXmlDefaultHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.cpp impure destructor false false [] } +&{attributeDecl QXmlDefaultHandler::attributeDecl commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [0xc82257a460 0xc82257a4e0 0xc82257a5e0 0xc82257a660 0xc82257a7c0] } +&{characters QXmlDefaultHandler::characters commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [0xc82257aa20] } +&{comment QXmlDefaultHandler::comment commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [0xc82257ad40] } +&{endCDATA QXmlDefaultHandler::endCDATA commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [] } +&{endDTD QXmlDefaultHandler::endDTD commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [] } +&{endDocument QXmlDefaultHandler::endDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [] } +&{endElement QXmlDefaultHandler::endElement commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [0xc82257b420 0xc82257b500 0xc82257b5c0] } +&{endEntity QXmlDefaultHandler::endEntity commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [0xc82257b840] } +&{endPrefixMapping QXmlDefaultHandler::endPrefixMapping commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [0xc82257ba40] } +&{error QXmlDefaultHandler::error commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [0xc82257bd40] } +&{errorString QXmlDefaultHandler::errorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false QString [] } +&{externalEntityDecl QXmlDefaultHandler::externalEntityDecl commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [0xc82213a140 0xc82213a1e0 0xc82213a2a0] } +&{fatalError QXmlDefaultHandler::fatalError commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [0xc82213a4a0] } +&{ignorableWhitespace QXmlDefaultHandler::ignorableWhitespace commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [0xc82213a720] } +&{internalEntityDecl QXmlDefaultHandler::internalEntityDecl commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [0xc82213a960 0xc82213a9e0] } +&{notationDecl QXmlDefaultHandler::notationDecl commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [0xc82213abe0 0xc82213ac80 0xc82213ad00] } +&{processingInstruction QXmlDefaultHandler::processingInstruction commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [0xc82213aee0 0xc82213af80] } +&{resolveEntity QXmlDefaultHandler::resolveEntity commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [0xc82213b100 0xc82213b1e0 0xc82213b280] } +&{setDocumentLocator QXmlDefaultHandler::setDocumentLocator commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false void [0xc82213b480] } +&{skippedEntity QXmlDefaultHandler::skippedEntity commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [0xc82213b5c0] } +&{startCDATA QXmlDefaultHandler::startCDATA commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [] } +&{startDTD QXmlDefaultHandler::startDTD commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [0xc82213b8c0 0xc82213b960 0xc82213b9e0] } +&{startDocument QXmlDefaultHandler::startDocument commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [] } +&{startElement QXmlDefaultHandler::startElement commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [0xc82213bc60 0xc82213bce0 0xc82213bd80 0xc82213be80] } +&{startEntity QXmlDefaultHandler::startEntity commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [0xc8222b40c0] } +&{startPrefixMapping QXmlDefaultHandler::startPrefixMapping commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [0xc8222b4300 0xc8222b43a0] } +&{unparsedEntityDecl QXmlDefaultHandler::unparsedEntityDecl commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [0xc8222b45c0 0xc8222b4660 0xc8222b4760 0xc8222b47e0] } +&{warning QXmlDefaultHandler::warning commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [0xc8222b4a40] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QXmlEntityResolver.txt b/internal/binding/dump/QtXml/QXmlEntityResolver.txt new file mode 100755 index 00000000..5348a4d9 --- /dev/null +++ b/internal/binding/dump/QtXml/QXmlEntityResolver.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{errorString QXmlEntityResolver::errorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false QString [] } +&{resolveEntity QXmlEntityResolver::resolveEntity commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [0xc8222b4ee0 0xc8222b4f60 0xc8222b5000] } +&{~QXmlEntityResolver QXmlEntityResolver::~QXmlEntityResolver commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QXmlErrorHandler.txt b/internal/binding/dump/QtXml/QXmlErrorHandler.txt new file mode 100755 index 00000000..4b278972 --- /dev/null +++ b/internal/binding/dump/QtXml/QXmlErrorHandler.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{error QXmlErrorHandler::error commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [0xc8222b54c0] } +&{errorString QXmlErrorHandler::errorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false QString [] } +&{fatalError QXmlErrorHandler::fatalError commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [0xc8222b5860] } +&{warning QXmlErrorHandler::warning commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [0xc8222b5ac0] } +&{~QXmlErrorHandler QXmlErrorHandler::~QXmlErrorHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QXmlInputSource.txt b/internal/binding/dump/QtXml/QXmlInputSource.txt new file mode 100755 index 00000000..3fa2c20a --- /dev/null +++ b/internal/binding/dump/QtXml/QXmlInputSource.txt @@ -0,0 +1,12 @@ +######################################## FUNCTIONS ######################################## +&{QXmlInputSource QXmlInputSource::QXmlInputSource commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non constructor false false [] } +&{QXmlInputSource QXmlInputSource::QXmlInputSource commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non constructor false true 2 [0xc822bc8100] } +&{data QXmlInputSource::data commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false QString [] } +&{fetchData QXmlInputSource::fetchData commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false void [] } +&{fromRawData QXmlInputSource::fromRawData commendable protected /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false QString [0xc822bc85e0 0xc822bc86e0] } +&{next QXmlInputSource::next commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false QChar [] } +&{reset QXmlInputSource::reset commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false void [] } +&{setData QXmlInputSource::setData commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false true 2 void [0xc822bc8bc0] } +&{setData QXmlInputSource::setData commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false void [0xc822bc8ea0] } +&{~QXmlInputSource QXmlInputSource::~QXmlInputSource commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QXmlLexicalHandler.txt b/internal/binding/dump/QtXml/QXmlLexicalHandler.txt new file mode 100755 index 00000000..b1786103 --- /dev/null +++ b/internal/binding/dump/QtXml/QXmlLexicalHandler.txt @@ -0,0 +1,11 @@ +######################################## FUNCTIONS ######################################## +&{comment QXmlLexicalHandler::comment commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [0xc822bc9460] } +&{endCDATA QXmlLexicalHandler::endCDATA commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [] } +&{endDTD QXmlLexicalHandler::endDTD commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [] } +&{endEntity QXmlLexicalHandler::endEntity commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [0xc822bc98e0] } +&{errorString QXmlLexicalHandler::errorString commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false QString [] } +&{startCDATA QXmlLexicalHandler::startCDATA commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [] } +&{startDTD QXmlLexicalHandler::startDTD commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [0xc822bc9cc0 0xc822bc9d40 0xc822bc9dc0] } +&{startEntity QXmlLexicalHandler::startEntity commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [0xc822bc9fa0] } +&{~QXmlLexicalHandler QXmlLexicalHandler::~QXmlLexicalHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QXmlLocator.txt b/internal/binding/dump/QtXml/QXmlLocator.txt new file mode 100755 index 00000000..007ae3d6 --- /dev/null +++ b/internal/binding/dump/QtXml/QXmlLocator.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QXmlLocator QXmlLocator::QXmlLocator commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non constructor false false [] } +&{columnNumber QXmlLocator::columnNumber commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false int [] } +&{lineNumber QXmlLocator::lineNumber commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false int [] } +&{~QXmlLocator QXmlLocator::~QXmlLocator commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QXmlNamespaceSupport.txt b/internal/binding/dump/QtXml/QXmlNamespaceSupport.txt new file mode 100755 index 00000000..517ca3c1 --- /dev/null +++ b/internal/binding/dump/QtXml/QXmlNamespaceSupport.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QXmlNamespaceSupport QXmlNamespaceSupport::QXmlNamespaceSupport commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non constructor false false [] } +&{popContext QXmlNamespaceSupport::popContext commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false false void [] } +&{prefix QXmlNamespaceSupport::prefix commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false false QString [0xc821f02f20] } +&{prefixes QXmlNamespaceSupport::prefixes commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false false QStringList [] } +&{prefixes QXmlNamespaceSupport::prefixes commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false true 2 QStringList [0xc821f032e0] } +&{processName QXmlNamespaceSupport::processName commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false false void [0xc821f03480 0xc821f03560 0xc821f035e0 0xc821f03660] } +&{pushContext QXmlNamespaceSupport::pushContext commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false false void [] } +&{reset QXmlNamespaceSupport::reset commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false false void [] } +&{setPrefix QXmlNamespaceSupport::setPrefix commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false false void [0xc821f039e0 0xc821f03a80] } +&{splitName QXmlNamespaceSupport::splitName commendable unsupported_CppInput /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false false void [0xc821f03c80 0xc821f03d20 0xc821f03dc0] } +&{uri QXmlNamespaceSupport::uri commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false false QString [0xc822912040] } +&{~QXmlNamespaceSupport QXmlNamespaceSupport::~QXmlNamespaceSupport commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QXmlParseException.txt b/internal/binding/dump/QtXml/QXmlParseException.txt new file mode 100755 index 00000000..25e4ba6d --- /dev/null +++ b/internal/binding/dump/QtXml/QXmlParseException.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{QXmlParseException QXmlParseException::QXmlParseException commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non constructor false false [0xc8229126a0 0xc822912720 0xc822912860 0xc822912920 0xc822912a00] } +&{QXmlParseException QXmlParseException::QXmlParseException commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non constructor false true 2 [0xc822912d00] } +&{columnNumber QXmlParseException::columnNumber commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false false int [] } +&{lineNumber QXmlParseException::lineNumber commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false false int [] } +&{message QXmlParseException::message commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false false QString [] } +&{publicId QXmlParseException::publicId commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false false QString [] } +&{systemId QXmlParseException::systemId commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non plain false false QString [] } +&{~QXmlParseException QXmlParseException::~QXmlParseException commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QXmlReader.txt b/internal/binding/dump/QtXml/QXmlReader.txt new file mode 100755 index 00000000..f8194f63 --- /dev/null +++ b/internal/binding/dump/QtXml/QXmlReader.txt @@ -0,0 +1,22 @@ +######################################## FUNCTIONS ######################################## +&{DTDHandler QXmlReader::DTDHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false QXmlDTDHandler * [] } +&{contentHandler QXmlReader::contentHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false QXmlContentHandler * [] } +&{declHandler QXmlReader::declHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false QXmlDeclHandler * [] } +&{entityResolver QXmlReader::entityResolver commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false QXmlEntityResolver * [] } +&{errorHandler QXmlReader::errorHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false QXmlErrorHandler * [] } +&{feature QXmlReader::feature commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [0xc8226d6300 0xc8226d63c0] } +&{hasFeature QXmlReader::hasFeature commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [0xc8226d6600] } +&{hasProperty QXmlReader::hasProperty commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [0xc8226d6840] } +&{lexicalHandler QXmlReader::lexicalHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false QXmlLexicalHandler * [] } +&{parse QXmlReader::parse commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false bool [0xc8226d6f20] } +&{property QXmlReader::property commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false void * [0xc8226d71c0 0xc8226d7260] } +&{setContentHandler QXmlReader::setContentHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false void [0xc8226d7500] } +&{setDTDHandler QXmlReader::setDTDHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false void [0xc8226d7780] } +&{setDeclHandler QXmlReader::setDeclHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false void [0xc8226d79e0] } +&{setEntityResolver QXmlReader::setEntityResolver commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false void [0xc8226d7d00] } +&{setErrorHandler QXmlReader::setErrorHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false void [0xc8226d7fc0] } +&{setFeature QXmlReader::setFeature commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false void [0xc8227dc220 0xc8227dc2a0] } +&{setLexicalHandler QXmlReader::setLexicalHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false void [0xc8227dc5a0] } +&{setProperty QXmlReader::setProperty commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h pure plain false false void [0xc8227dc820 0xc8227dc8c0] } +&{~QXmlReader QXmlReader::~QXmlReader commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXml/QXmlSimpleReader.txt b/internal/binding/dump/QtXml/QXmlSimpleReader.txt new file mode 100755 index 00000000..968875f6 --- /dev/null +++ b/internal/binding/dump/QtXml/QXmlSimpleReader.txt @@ -0,0 +1,26 @@ +######################################## FUNCTIONS ######################################## +&{DTDHandler QXmlSimpleReader::DTDHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false QXmlDTDHandler * [] } +&{QXmlSimpleReader QXmlSimpleReader::QXmlSimpleReader commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h non constructor false false [] } +&{contentHandler QXmlSimpleReader::contentHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false QXmlContentHandler * [] } +&{declHandler QXmlSimpleReader::declHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false QXmlDeclHandler * [] } +&{entityResolver QXmlSimpleReader::entityResolver commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false QXmlEntityResolver * [] } +&{errorHandler QXmlSimpleReader::errorHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false QXmlErrorHandler * [] } +&{feature QXmlSimpleReader::feature commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [0xc8227dd4c0 0xc8227dd560] } +&{hasFeature QXmlSimpleReader::hasFeature commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [0xc8227dd7a0] } +&{hasProperty QXmlSimpleReader::hasProperty commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [0xc8227dd9e0] } +&{lexicalHandler QXmlSimpleReader::lexicalHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false QXmlLexicalHandler * [] } +&{parse QXmlSimpleReader::parse commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [0xc8227ddda0] } +&{parse QXmlSimpleReader::parse commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false true 2 bool [0xc822b6a0a0] } +&{parse QXmlSimpleReader::parse commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false true 3 bool [0xc822b6a300 0xc822b6a400] } +&{parseContinue QXmlSimpleReader::parseContinue commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false bool [] } +&{property QXmlSimpleReader::property commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false void * [0xc822b6a720 0xc822b6a7e0] } +&{setContentHandler QXmlSimpleReader::setContentHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false void [0xc822b6a9e0] } +&{setDTDHandler QXmlSimpleReader::setDTDHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false void [0xc822b6ac80] } +&{setDeclHandler QXmlSimpleReader::setDeclHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false void [0xc822b6ae80] } +&{setEntityResolver QXmlSimpleReader::setEntityResolver commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false void [0xc822b6b100] } +&{setErrorHandler QXmlSimpleReader::setErrorHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false void [0xc822b6b300] } +&{setFeature QXmlSimpleReader::setFeature commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false void [0xc822b6b5a0 0xc822b6b620] } +&{setLexicalHandler QXmlSimpleReader::setLexicalHandler commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false void [0xc822b6b840] } +&{setProperty QXmlSimpleReader::setProperty commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure plain false false void [0xc822b6bae0 0xc822b6bb60] } +&{~QXmlSimpleReader QXmlSimpleReader::~QXmlSimpleReader commendable public /work/build/qt5_workdir/w/s/qtbase/src/xml/sax/qxml.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXmlPatterns/QAbstractMessageHandler.txt b/internal/binding/dump/QtXmlPatterns/QAbstractMessageHandler.txt new file mode 100755 index 00000000..680220ad --- /dev/null +++ b/internal/binding/dump/QtXmlPatterns/QAbstractMessageHandler.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QAbstractMessageHandler QAbstractMessageHandler::QAbstractMessageHandler commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractmessagehandler.h non constructor false false [0xc8213de3e0] } +&{handleMessage QAbstractMessageHandler::handleMessage commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractmessagehandler.h pure plain false false void [0xc8213de820 0xc8213de980 0xc8213dea60 0xc8213deb80] } +&{message QAbstractMessageHandler::message commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractmessagehandler.h non plain false false void [0xc8213df1a0 0xc8213df260 0xc8213df3c0 0xc8213df600] } +&{~QAbstractMessageHandler QAbstractMessageHandler::~QAbstractMessageHandler commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractmessagehandler.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXmlPatterns/QAbstractUriResolver.txt b/internal/binding/dump/QtXmlPatterns/QAbstractUriResolver.txt new file mode 100755 index 00000000..0b4749cf --- /dev/null +++ b/internal/binding/dump/QtXmlPatterns/QAbstractUriResolver.txt @@ -0,0 +1,5 @@ +######################################## FUNCTIONS ######################################## +&{QAbstractUriResolver QAbstractUriResolver::QAbstractUriResolver commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstracturiresolver.h non constructor false false [0xc820ed2aa0] } +&{resolve QAbstractUriResolver::resolve commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstracturiresolver.h pure plain false false QUrl [0xc820ed2ea0 0xc820ed3020] } +&{~QAbstractUriResolver QAbstractUriResolver::~QAbstractUriResolver commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstracturiresolver.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXmlPatterns/QAbstractXmlNodeModel.txt b/internal/binding/dump/QtXmlPatterns/QAbstractXmlNodeModel.txt new file mode 100755 index 00000000..8b951789 --- /dev/null +++ b/internal/binding/dump/QtXmlPatterns/QAbstractXmlNodeModel.txt @@ -0,0 +1,22 @@ +######################################## FUNCTIONS ######################################## +&{QAbstractXmlNodeModel QAbstractXmlNodeModel::QAbstractXmlNodeModel commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h non constructor false false [] } +&{attributes QAbstractXmlNodeModel::attributes commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h pure plain false false QVector [0xc8216ab7c0] } +&{baseUri QAbstractXmlNodeModel::baseUri commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h pure plain false false QUrl [0xc8216abee0] } +&{compareOrder QAbstractXmlNodeModel::compareOrder commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h pure plain false false QXmlNodeModelIndex::DocumentOrder [0xc821754300 0xc821754520] } +&{createIndex QAbstractXmlNodeModel::createIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h non plain false false QXmlNodeModelIndex [0xc821755380] } +&{createIndex QAbstractXmlNodeModel::createIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h non plain false true 3 QXmlNodeModelIndex [0xc821755840 0xc821755940] } +&{createIndex QAbstractXmlNodeModel::createIndex commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h non plain false true 2 QXmlNodeModelIndex [0xc821755e40 0xc821755f20] } +&{documentUri QAbstractXmlNodeModel::documentUri commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h pure plain false false QUrl [0xc8217f6280] } +&{elementById QAbstractXmlNodeModel::elementById commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h pure plain false false QXmlNodeModelIndex [0xc8217f66c0] } +&{kind QAbstractXmlNodeModel::kind commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h pure plain false false QXmlNodeModelIndex::NodeKind [0xc8217f6ca0] } +&{namespaceBindings QAbstractXmlNodeModel::namespaceBindings commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h pure plain false false QVector [0xc8217f72c0] } +&{name QAbstractXmlNodeModel::name commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h pure plain false false QXmlName [0xc8218a9140] } +&{nextFromSimpleAxis QAbstractXmlNodeModel::nextFromSimpleAxis commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h pure plain false false QXmlNodeModelIndex [0xc8218a95e0 0xc8218a96e0] } +&{nodesByIdref QAbstractXmlNodeModel::nodesByIdref commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h pure plain false false QVector [0xc8218a9ae0] } +&{root QAbstractXmlNodeModel::root commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h pure plain false false QXmlNodeModelIndex [0xc8218a9f20] } +&{sourceLocation QAbstractXmlNodeModel::sourceLocation commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h non plain false false QSourceLocation [0xc8219667a0] } +&{stringValue QAbstractXmlNodeModel::stringValue commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h pure plain false false QString [0xc821966aa0] } +&{typedValue QAbstractXmlNodeModel::typedValue commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h pure plain false false QVariant [0xc821967840] } +&{~QAbstractXmlNodeModel QAbstractXmlNodeModel::~QAbstractXmlNodeModel commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h impure destructor false false [] } +######################################## ENUMS ######################################## +&{SimpleAxis QAbstractXmlNodeModel::SimpleAxis commendable public [0xc8215dd920 0xc8215ddac0 0xc8215ddd60 0xc8215ddea0]} diff --git a/internal/binding/dump/QtXmlPatterns/QAbstractXmlReceiver.txt b/internal/binding/dump/QtXmlPatterns/QAbstractXmlReceiver.txt new file mode 100755 index 00000000..be04b277 --- /dev/null +++ b/internal/binding/dump/QtXmlPatterns/QAbstractXmlReceiver.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{QAbstractXmlReceiver QAbstractXmlReceiver::QAbstractXmlReceiver commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlreceiver.h non constructor false false [] } +&{atomicValue QAbstractXmlReceiver::atomicValue commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlreceiver.h pure plain false false void [0xc8221bd8e0] } +&{attribute QAbstractXmlReceiver::attribute commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlreceiver.h pure plain false false void [0xc8221bdaa0 0xc8221bdba0] } +&{characters QAbstractXmlReceiver::characters commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlreceiver.h pure plain false false void [0xc8221bde20] } +&{comment QAbstractXmlReceiver::comment commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlreceiver.h pure plain false false void [0xc8222fc260] } +&{endDocument QAbstractXmlReceiver::endDocument commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlreceiver.h pure plain false false void [] } +&{endElement QAbstractXmlReceiver::endElement commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlreceiver.h pure plain false false void [] } +&{endOfSequence QAbstractXmlReceiver::endOfSequence commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlreceiver.h pure plain false false void [] } +&{namespaceBinding QAbstractXmlReceiver::namespaceBinding commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlreceiver.h pure plain false false void [0xc8222fc8a0] } +&{processingInstruction QAbstractXmlReceiver::processingInstruction commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlreceiver.h pure plain false false void [0xc8222fcae0 0xc8222fcb80] } +&{startDocument QAbstractXmlReceiver::startDocument commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlreceiver.h pure plain false false void [] } +&{startElement QAbstractXmlReceiver::startElement commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlreceiver.h pure plain false false void [0xc8222fcec0] } +&{startOfSequence QAbstractXmlReceiver::startOfSequence commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlreceiver.h pure plain false false void [] } +&{~QAbstractXmlReceiver QAbstractXmlReceiver::~QAbstractXmlReceiver commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/data/qsequencereceiver.cpp impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXmlPatterns/QSimpleXmlNodeModel.txt b/internal/binding/dump/QtXmlPatterns/QSimpleXmlNodeModel.txt new file mode 100755 index 00000000..f37f75ee --- /dev/null +++ b/internal/binding/dump/QtXmlPatterns/QSimpleXmlNodeModel.txt @@ -0,0 +1,10 @@ +######################################## FUNCTIONS ######################################## +&{QSimpleXmlNodeModel QSimpleXmlNodeModel::QSimpleXmlNodeModel commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qsimplexmlnodemodel.h non constructor false false [0xc822bd8a20] } +&{baseUri QSimpleXmlNodeModel::baseUri commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qsimplexmlnodemodel.h impure plain false false QUrl [0xc822bd8d20] } +&{elementById QSimpleXmlNodeModel::elementById commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qsimplexmlnodemodel.h impure plain false false QXmlNodeModelIndex [0xc822bd9040] } +&{namePool QSimpleXmlNodeModel::namePool commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qsimplexmlnodemodel.h non plain false false QXmlNamePool & [] } +&{namespaceBindings QSimpleXmlNodeModel::namespaceBindings commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qsimplexmlnodemodel.h impure plain false false QVector [0xc822bd94c0] } +&{nodesByIdref QSimpleXmlNodeModel::nodesByIdref commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qsimplexmlnodemodel.h impure plain false false QVector [0xc822bd97a0] } +&{stringValue QSimpleXmlNodeModel::stringValue commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qsimplexmlnodemodel.h impure plain false false QString [0xc822bd9ae0] } +&{~QSimpleXmlNodeModel QSimpleXmlNodeModel::~QSimpleXmlNodeModel commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qsimplexmlnodemodel.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXmlPatterns/QSourceLocation.txt b/internal/binding/dump/QtXmlPatterns/QSourceLocation.txt new file mode 100755 index 00000000..8332c94d --- /dev/null +++ b/internal/binding/dump/QtXmlPatterns/QSourceLocation.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{QSourceLocation QSourceLocation::QSourceLocation commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qsourcelocation.h non constructor false false [] } +&{QSourceLocation QSourceLocation::QSourceLocation commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qsourcelocation.h non constructor false true 2 [0xc821f9e380] } +&{QSourceLocation QSourceLocation::QSourceLocation commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qsourcelocation.h non constructor false true 3 [0xc821f9e6e0 0xc821f9e7a0 0xc821f9e820] } +&{column QSourceLocation::column commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qsourcelocation.h non plain false false qint64 [] } +&{isNull QSourceLocation::isNull commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qsourcelocation.h non plain false false bool [] } +&{line QSourceLocation::line commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qsourcelocation.h non plain false false qint64 [] } +&{operator!= QSourceLocation::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qsourcelocation.h non plain false false bool [0xc821f9f0e0] } +&{operator= QSourceLocation::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qsourcelocation.h non plain false false QSourceLocation & [0xc821f9f520] } +&{operator== QSourceLocation::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qsourcelocation.h non plain false false bool [0xc821f9f8c0] } +&{setColumn QSourceLocation::setColumn commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qsourcelocation.h non plain false false void [0xc821f9fc40] } +&{setLine QSourceLocation::setLine commendable unsupported_goInput /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qsourcelocation.h non plain false false void [0xc821f9ff80] } +&{setUri QSourceLocation::setUri commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qsourcelocation.h non plain false false void [0xc821d3e300] } +&{uri QSourceLocation::uri commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qsourcelocation.h non plain false false QUrl [] } +&{~QSourceLocation QSourceLocation::~QSourceLocation commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qsourcelocation.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXmlPatterns/QXmlFormatter.txt b/internal/binding/dump/QtXmlPatterns/QXmlFormatter.txt new file mode 100755 index 00000000..ee928a5c --- /dev/null +++ b/internal/binding/dump/QtXmlPatterns/QXmlFormatter.txt @@ -0,0 +1,16 @@ +######################################## FUNCTIONS ######################################## +&{QXmlFormatter QXmlFormatter::QXmlFormatter commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlformatter.h non constructor false false [0xc821d3ede0 0xc821d3ef60] } +&{atomicValue QXmlFormatter::atomicValue commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlformatter.h impure plain false false void [0xc821d3f1a0] } +&{attribute QXmlFormatter::attribute commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlformatter.h impure plain false false void [0xc821d3f480 0xc821d3f5c0] } +&{characters QXmlFormatter::characters commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlformatter.h impure plain false false void [0xc821d3f900] } +&{comment QXmlFormatter::comment commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlformatter.h impure plain false false void [0xc821d3fbe0] } +&{endDocument QXmlFormatter::endDocument commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlformatter.h impure plain false false void [] } +&{endElement QXmlFormatter::endElement commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlformatter.h impure plain false false void [] } +&{endOfSequence QXmlFormatter::endOfSequence commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlformatter.h impure plain false false void [] } +&{indentationDepth QXmlFormatter::indentationDepth commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlformatter.h non plain false false int [] } +&{processingInstruction QXmlFormatter::processingInstruction commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlformatter.h impure plain false false void [0xc822458800 0xc822458900] } +&{setIndentationDepth QXmlFormatter::setIndentationDepth commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlformatter.h non plain false false void [0xc822458bc0] } +&{startDocument QXmlFormatter::startDocument commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlformatter.h impure plain false false void [] } +&{startElement QXmlFormatter::startElement commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlformatter.h impure plain false false void [0xc822458fc0] } +&{startOfSequence QXmlFormatter::startOfSequence commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlformatter.h impure plain false false void [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXmlPatterns/QXmlItem.txt b/internal/binding/dump/QtXmlPatterns/QXmlItem.txt new file mode 100755 index 00000000..50255d62 --- /dev/null +++ b/internal/binding/dump/QtXmlPatterns/QXmlItem.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QXmlItem QXmlItem::QXmlItem commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h non constructor false false [] } +&{QXmlItem QXmlItem::QXmlItem commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h non constructor false true 4 [0xc821a58740] } +&{QXmlItem QXmlItem::QXmlItem commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h non constructor false true 2 [0xc821a58ac0] } +&{QXmlItem QXmlItem::QXmlItem commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h non constructor false true 3 [0xc821a58ec0] } +&{isAtomicValue QXmlItem::isAtomicValue commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h non plain false false bool [] } +&{isNode QXmlItem::isNode commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h non plain false false bool [] } +&{isNull QXmlItem::isNull commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h non plain false false bool [] } +&{operator= QXmlItem::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h non plain false false QXmlItem & [0xc821a59c40] } +&{toAtomicValue QXmlItem::toAtomicValue commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h non plain false false QVariant [] } +&{toNodeModelIndex QXmlItem::toNodeModelIndex commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h non plain false false QXmlNodeModelIndex [] } +&{~QXmlItem QXmlItem::~QXmlItem commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXmlPatterns/QXmlName.txt b/internal/binding/dump/QtXmlPatterns/QXmlName.txt new file mode 100755 index 00000000..3f8166ef --- /dev/null +++ b/internal/binding/dump/QtXmlPatterns/QXmlName.txt @@ -0,0 +1,14 @@ +######################################## FUNCTIONS ######################################## +&{QXmlName QXmlName::QXmlName commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlname.h non constructor false false [] } +&{QXmlName QXmlName::QXmlName commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlname.h non constructor false true 2 [0xc82282a300 0xc82282a3e0 0xc82282a4a0 0xc82282a560] } +&{fromClarkName QXmlName::fromClarkName commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlname.h non plain true false QXmlName [0xc82282a840 0xc82282a900] } +&{isNCName QXmlName::isNCName commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlname.h non plain true false bool [0xc82282ac40] } +&{isNull QXmlName::isNull commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlname.h non plain false false bool [] } +&{localName QXmlName::localName commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlname.h non plain false false QString [0xc82282af80] } +&{namespaceUri QXmlName::namespaceUri commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlname.h non plain false false QString [0xc82282b200] } +&{operator!= QXmlName::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlname.h non plain false false bool [0xc82282b4a0] } +&{operator= QXmlName::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlname.h non plain false false QXmlName & [0xc82282b6e0] } +&{operator== QXmlName::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlname.h non plain false false bool [0xc82282b900] } +&{prefix QXmlName::prefix commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlname.h non plain false false QString [0xc82282bb40] } +&{toClarkName QXmlName::toClarkName commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlname.h non plain false false QString [0xc82282bf20] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXmlPatterns/QXmlNamePool.txt b/internal/binding/dump/QtXmlPatterns/QXmlNamePool.txt new file mode 100755 index 00000000..60e59d02 --- /dev/null +++ b/internal/binding/dump/QtXmlPatterns/QXmlNamePool.txt @@ -0,0 +1,6 @@ +######################################## FUNCTIONS ######################################## +&{QXmlNamePool QXmlNamePool::QXmlNamePool commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlnamepool.h non constructor false false [] } +&{QXmlNamePool QXmlNamePool::QXmlNamePool commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlnamepool.h non constructor false true 2 [0xc821e26c00] } +&{operator= QXmlNamePool::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlnamepool.h non plain false false QXmlNamePool & [0xc821e27040] } +&{~QXmlNamePool QXmlNamePool::~QXmlNamePool commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlnamepool.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXmlPatterns/QXmlNodeModelIndex.txt b/internal/binding/dump/QtXmlPatterns/QXmlNodeModelIndex.txt new file mode 100755 index 00000000..a888f4ef --- /dev/null +++ b/internal/binding/dump/QtXmlPatterns/QXmlNodeModelIndex.txt @@ -0,0 +1,13 @@ +######################################## FUNCTIONS ######################################## +&{QXmlNodeModelIndex QXmlNodeModelIndex::QXmlNodeModelIndex commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h non constructor false false [] } +&{QXmlNodeModelIndex QXmlNodeModelIndex::QXmlNodeModelIndex commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h non constructor false true 2 [0xc821bfe300] } +&{additionalData QXmlNodeModelIndex::additionalData commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h non plain false false qint64 [] } +&{data QXmlNodeModelIndex::data commendable unsupported_GoBodyOutputFailed /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h non plain false false qint64 [] } +&{internalPointer QXmlNodeModelIndex::internalPointer commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h non plain false false void * [] } +&{isNull QXmlNodeModelIndex::isNull commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h non plain false false bool [] } +&{model QXmlNodeModelIndex::model commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h non plain false false const QAbstractXmlNodeModel * [] } +&{operator!= QXmlNodeModelIndex::operator!= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h non plain false false bool [0xc8221bc7c0] } +&{operator== QXmlNodeModelIndex::operator== commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qabstractxmlnodemodel.h non plain false false bool [0xc8221bcae0] } +######################################## ENUMS ######################################## +&{DocumentOrder QXmlNodeModelIndex::DocumentOrder commendable public [0xc821b82b40 0xc821b82c80 0xc821b82d80]} +&{NodeKind QXmlNodeModelIndex::NodeKind commendable public [0xc821b831c0 0xc821b83380 0xc821b83440 0xc821b83560 0xc821b83700 0xc821b83880 0xc821b83a40]} diff --git a/internal/binding/dump/QtXmlPatterns/QXmlQuery.txt b/internal/binding/dump/QtXmlPatterns/QXmlQuery.txt new file mode 100755 index 00000000..4601581d --- /dev/null +++ b/internal/binding/dump/QtXmlPatterns/QXmlQuery.txt @@ -0,0 +1,39 @@ +######################################## FUNCTIONS ######################################## +&{QXmlQuery QXmlQuery::QXmlQuery commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non constructor false false [] } +&{QXmlQuery QXmlQuery::QXmlQuery commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non constructor false true 4 [0xc822b7eb80 0xc822b7ed00] } +&{QXmlQuery QXmlQuery::QXmlQuery commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non constructor false true 3 [0xc822b7f0c0] } +&{QXmlQuery QXmlQuery::QXmlQuery commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non constructor false true 2 [0xc822b7f520] } +&{bindVariable QXmlQuery::bindVariable commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false true 5 void [0xc822b7f980 0xc822b7fa20] } +&{bindVariable QXmlQuery::bindVariable commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false true 4 void [0xc822b7fdc0 0xc822b7fec0] } +&{bindVariable QXmlQuery::bindVariable commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false true 6 void [0xc82227a1e0 0xc82227a300] } +&{bindVariable QXmlQuery::bindVariable commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false true 2 void [0xc82227a6e0 0xc82227a7c0] } +&{bindVariable QXmlQuery::bindVariable commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false false void [0xc82227ab00 0xc82227aba0] } +&{bindVariable QXmlQuery::bindVariable commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false true 3 void [0xc82227ae80 0xc82227af80] } +&{evaluateTo QXmlQuery::evaluateTo commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false true 2 bool [0xc82227b300] } +&{evaluateTo QXmlQuery::evaluateTo commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false true 5 bool [0xc82227b580] } +&{evaluateTo QXmlQuery::evaluateTo commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false true 4 bool [0xc82227b7a0] } +&{evaluateTo QXmlQuery::evaluateTo commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false true 3 bool [0xc82227b9e0] } +&{evaluateTo QXmlQuery::evaluateTo commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false false void [0xc82227bc00] } +&{initialTemplateName QXmlQuery::initialTemplateName commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false false QXmlName [] } +&{isValid QXmlQuery::isValid commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false false bool [] } +&{messageHandler QXmlQuery::messageHandler commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false false QAbstractMessageHandler * [] } +&{namePool QXmlQuery::namePool commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false false QXmlNamePool [] } +&{networkAccessManager QXmlQuery::networkAccessManager commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false false QNetworkAccessManager * [] } +&{operator= QXmlQuery::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false false QXmlQuery & [0xc8220b0be0] } +&{queryLanguage QXmlQuery::queryLanguage commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false false QueryLanguage [] } +&{setFocus QXmlQuery::setFocus commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false true 3 bool [0xc8220b1280] } +&{setFocus QXmlQuery::setFocus commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false true 4 bool [0xc8220b15c0] } +&{setFocus QXmlQuery::setFocus commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false true 2 bool [0xc8220b1960] } +&{setFocus QXmlQuery::setFocus commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false false void [0xc8220b1c80] } +&{setInitialTemplateName QXmlQuery::setInitialTemplateName commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false true 2 void [0xc8220b1fa0] } +&{setInitialTemplateName QXmlQuery::setInitialTemplateName commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false false void [0xc821704260] } +&{setMessageHandler QXmlQuery::setMessageHandler commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false false void [0xc8217046c0] } +&{setNetworkAccessManager QXmlQuery::setNetworkAccessManager commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false false void [0xc8217049e0] } +&{setQuery QXmlQuery::setQuery commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false false void [0xc821704d00 0xc821704e00] } +&{setQuery QXmlQuery::setQuery commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false true 3 void [0xc8217051a0 0xc8217053c0] } +&{setQuery QXmlQuery::setQuery commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false true 2 void [0xc821705700 0xc8217057e0] } +&{setUriResolver QXmlQuery::setUriResolver commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false false void [0xc821705be0] } +&{uriResolver QXmlQuery::uriResolver commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non plain false false const QAbstractUriResolver * [] } +&{~QXmlQuery QXmlQuery::~QXmlQuery commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlquery.h non destructor false false [] } +######################################## ENUMS ######################################## +&{QueryLanguage QXmlQuery::QueryLanguage commendable public [0xc822b7e2e0 0xc822b7e380 0xc822b7e4a0 0xc822b7e580 0xc822b7e680]} diff --git a/internal/binding/dump/QtXmlPatterns/QXmlResultItems.txt b/internal/binding/dump/QtXmlPatterns/QXmlResultItems.txt new file mode 100755 index 00000000..744a72ac --- /dev/null +++ b/internal/binding/dump/QtXmlPatterns/QXmlResultItems.txt @@ -0,0 +1,7 @@ +######################################## FUNCTIONS ######################################## +&{QXmlResultItems QXmlResultItems::QXmlResultItems commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlresultitems.h non constructor false false [] } +&{current QXmlResultItems::current commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlresultitems.h non plain false false QXmlItem [] } +&{hasError QXmlResultItems::hasError commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlresultitems.h non plain false false bool [] } +&{next QXmlResultItems::next commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlresultitems.h non plain false false QXmlItem [] } +&{~QXmlResultItems QXmlResultItems::~QXmlResultItems commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlresultitems.h impure destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXmlPatterns/QXmlSchema.txt b/internal/binding/dump/QtXmlPatterns/QXmlSchema.txt new file mode 100755 index 00000000..1f9d8dd5 --- /dev/null +++ b/internal/binding/dump/QtXmlPatterns/QXmlSchema.txt @@ -0,0 +1,18 @@ +######################################## FUNCTIONS ######################################## +&{QXmlSchema QXmlSchema::QXmlSchema commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschema.h non constructor false false [] } +&{QXmlSchema QXmlSchema::QXmlSchema commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschema.h non constructor false true 2 [0xc822f5b240] } +&{documentUri QXmlSchema::documentUri commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschema.h non plain false false QUrl [] } +&{isValid QXmlSchema::isValid commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschema.h non plain false false bool [] } +&{load QXmlSchema::load commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschema.h non plain false true 2 bool [0xc822fd00e0 0xc822fd0300] } +&{load QXmlSchema::load commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschema.h non plain false true 3 bool [0xc822fd0760 0xc822fd0ac0] } +&{load QXmlSchema::load commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschema.h non plain false false bool [0xc822fd0ea0] } +&{messageHandler QXmlSchema::messageHandler commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschema.h non plain false false QAbstractMessageHandler * [] } +&{namePool QXmlSchema::namePool commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschema.h non plain false false QXmlNamePool [] } +&{networkAccessManager QXmlSchema::networkAccessManager commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschema.h non plain false false QNetworkAccessManager * [] } +&{operator= QXmlSchema::operator= commendable unsupported_GoHeaderName /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschema.h non plain false false QXmlSchema & [0xc82302c2c0] } +&{setMessageHandler QXmlSchema::setMessageHandler commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschema.h non plain false false void [0xc82302ca40] } +&{setNetworkAccessManager QXmlSchema::setNetworkAccessManager commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschema.h non plain false false void [0xc82302cf80] } +&{setUriResolver QXmlSchema::setUriResolver commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschema.h non plain false false void [0xc82302d4c0] } +&{uriResolver QXmlSchema::uriResolver commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschema.h non plain false false const QAbstractUriResolver * [] } +&{~QXmlSchema QXmlSchema::~QXmlSchema commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschema.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXmlPatterns/QXmlSchemaValidator.txt b/internal/binding/dump/QtXmlPatterns/QXmlSchemaValidator.txt new file mode 100755 index 00000000..f5c89758 --- /dev/null +++ b/internal/binding/dump/QtXmlPatterns/QXmlSchemaValidator.txt @@ -0,0 +1,17 @@ +######################################## FUNCTIONS ######################################## +&{QXmlSchemaValidator QXmlSchemaValidator::QXmlSchemaValidator commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschemavalidator.h non constructor false false [] } +&{QXmlSchemaValidator QXmlSchemaValidator::QXmlSchemaValidator commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschemavalidator.h non constructor false true 2 [0xc823324840] } +&{messageHandler QXmlSchemaValidator::messageHandler commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschemavalidator.h non plain false false QAbstractMessageHandler * [] } +&{namePool QXmlSchemaValidator::namePool commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschemavalidator.h non plain false false QXmlNamePool [] } +&{networkAccessManager QXmlSchemaValidator::networkAccessManager commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschemavalidator.h non plain false false QNetworkAccessManager * [] } +&{schema QXmlSchemaValidator::schema commendable unsupported_cppOutput /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschemavalidator.h non plain false false QXmlSchema [] } +&{setMessageHandler QXmlSchemaValidator::setMessageHandler commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschemavalidator.h non plain false false void [0xc823325460] } +&{setNetworkAccessManager QXmlSchemaValidator::setNetworkAccessManager commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschemavalidator.h non plain false false void [0xc823325980] } +&{setSchema QXmlSchemaValidator::setSchema commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschemavalidator.h non plain false false void [0xc823325ee0] } +&{setUriResolver QXmlSchemaValidator::setUriResolver commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschemavalidator.h non plain false false void [0xc82340c2c0] } +&{uriResolver QXmlSchemaValidator::uriResolver commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschemavalidator.h non plain false false const QAbstractUriResolver * [] } +&{validate QXmlSchemaValidator::validate commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschemavalidator.h non plain false true 2 bool [0xc82340c9a0 0xc82340cb20] } +&{validate QXmlSchemaValidator::validate commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschemavalidator.h non plain false true 3 bool [0xc82340cf00 0xc82340cfe0] } +&{validate QXmlSchemaValidator::validate commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschemavalidator.h non plain false false bool [0xc82340d2e0] } +&{~QXmlSchemaValidator QXmlSchemaValidator::~QXmlSchemaValidator commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlschemavalidator.h non destructor false false [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/dump/QtXmlPatterns/QXmlSerializer.txt b/internal/binding/dump/QtXmlPatterns/QXmlSerializer.txt new file mode 100755 index 00000000..947c1257 --- /dev/null +++ b/internal/binding/dump/QtXmlPatterns/QXmlSerializer.txt @@ -0,0 +1,18 @@ +######################################## FUNCTIONS ######################################## +&{QXmlSerializer QXmlSerializer::QXmlSerializer commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlserializer.h non constructor false false [0xc8234b2980 0xc8234b2a40] } +&{atomicValue QXmlSerializer::atomicValue commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlserializer.h impure plain false false void [0xc8234b3220] } +&{attribute QXmlSerializer::attribute commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlserializer.h impure plain false false void [0xc8234b3420 0xc8234b34c0] } +&{characters QXmlSerializer::characters commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlserializer.h impure plain false false void [0xc8234b3780] } +&{comment QXmlSerializer::comment commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlserializer.h impure plain false false void [0xc8234b39e0] } +&{endDocument QXmlSerializer::endDocument commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlserializer.h impure plain false false void [] } +&{endElement QXmlSerializer::endElement commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlserializer.h impure plain false false void [] } +&{codec QXmlSerializer::codec commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlserializer.h non plain false false const QTextCodec * [] } +&{endOfSequence QXmlSerializer::endOfSequence commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlserializer.h impure plain false false void [] } +&{namespaceBinding QXmlSerializer::namespaceBinding commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlserializer.h impure plain false false void [0xc822502620] } +&{outputDevice QXmlSerializer::outputDevice commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlserializer.h non plain false false QIODevice * [] } +&{processingInstruction QXmlSerializer::processingInstruction commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlserializer.h impure plain false false void [0xc8225028c0 0xc822502940] } +&{setCodec QXmlSerializer::setCodec commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlserializer.h non plain false false void [0xc822502b40] } +&{startDocument QXmlSerializer::startDocument commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlserializer.h impure plain false false void [] } +&{startElement QXmlSerializer::startElement commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlserializer.h impure plain false false void [0xc822502f20] } +&{startOfSequence QXmlSerializer::startOfSequence commendable public /work/build/qt5_workdir/w/s/qtxmlpatterns/src/xmlpatterns/api/qxmlserializer.h impure plain false false void [] } +######################################## ENUMS ######################################## diff --git a/internal/binding/gen.go b/internal/binding/gen.go new file mode 100755 index 00000000..3f59149e --- /dev/null +++ b/internal/binding/gen.go @@ -0,0 +1,29 @@ +package main + +import ( + "fmt" + "os/exec" + "strings" + "time" + + "github.com/therecipe/qt/internal/binding/templater" +) + +func main() { + fmt.Println("________________________Generate________________________") + + for _, module := range templater.GetLibs() { + + var before = time.Now() + templater.GenModule(module) + fmt.Printf("\t%v\n", time.Since(before).String()) + + var out, err = exec.Command("go", "fmt", fmt.Sprintf("github.com/therecipe/qt/%v", strings.ToLower(module))).CombinedOutput() + if err != nil { + fmt.Println(string(out), err) + return + } + + } + +} diff --git a/internal/binding/install.go b/internal/binding/install.go new file mode 100755 index 00000000..6b019085 --- /dev/null +++ b/internal/binding/install.go @@ -0,0 +1,36 @@ +package main + +import ( + "fmt" + "os/exec" + "strings" + "time" + + "github.com/therecipe/qt/internal/binding/templater" +) + +func main() { + fmt.Println("________________________Install________________________") + + for _, m := range templater.GetLibs() { + var before = time.Now() + + fmt.Print(strings.ToLower(m)) + + var out, err = exec.Command("go", "install", fmt.Sprintf("github.com/therecipe/qt/%v", strings.ToLower(m))).CombinedOutput() + if err != nil { + fmt.Println(string(out), err) + return + } + + var sep = "\t" + if len(m) < 8 { + sep += "\t\t" + } + if len(m) >= 8 && len(m) < 17 { + sep += "\t" + } + + fmt.Printf("%v\t\t%v\n", sep, time.Since(before).String()) + } +} diff --git a/internal/binding/make.bat b/internal/binding/make.bat new file mode 100755 index 00000000..0102d9e1 --- /dev/null +++ b/internal/binding/make.bat @@ -0,0 +1,3 @@ +go run gen.go +go run install.go +go run test.go diff --git a/internal/binding/make.sh b/internal/binding/make.sh new file mode 100755 index 00000000..0102d9e1 --- /dev/null +++ b/internal/binding/make.sh @@ -0,0 +1,3 @@ +go run gen.go +go run install.go +go run test.go diff --git a/internal/binding/parser/class.go b/internal/binding/parser/class.go new file mode 100755 index 00000000..bd5f50e9 --- /dev/null +++ b/internal/binding/parser/class.go @@ -0,0 +1,124 @@ +package parser + +import ( + "fmt" + "strings" + + "github.com/therecipe/qt/internal/utils" +) + +type Class struct { + Name string `xml:"name,attr"` + Status string `xml:"status,attr"` + Access string `xml:"access,attr"` + Abstract bool `xml:"abstract,attr"` + Bases string `xml:"bases,attr"` + Module string `xml:"module,attr"` + Brief string `xml:"brief,attr"` + Functions []*Function `xml:"function"` + Enums []*Enum `xml:"enum"` +} + +func (c *Class) register(module string) { + c.Module = module + ClassMap[c.Name] = c +} + +func (c *Class) registerAbstact() { + for _, f := range c.Functions { + if f.Virtual == "pure" || c.Abstract { + AbstractMap[c.Name] = true + return + } + } +} + +func (c *Class) removeFunctions() { + for i := len(c.Functions) - 1; i >= 0; i-- { + var f = c.Functions[i] + if f.Status == "obsolete" || !(f.Access == "public" || f.Access == "protected") { + c.Functions = append(c.Functions[:i], c.Functions[i+1:]...) + } + } +} + +func (c *Class) removeEnums() { + for i := len(c.Enums) - 1; i >= 0; i-- { + var e = c.Enums[i] + if e.Status == "obsolete" || !(e.Access == "public" || e.Access == "protected") { + c.Enums = append(c.Enums[:i], c.Enums[i+1:]...) + } + } +} + +func (c *Class) Dump() { + + var tmp = fmt.Sprintln("########################################\t\t\tFUNCTIONS\t\t\t########################################") + + for _, f := range c.Functions { + tmp += fmt.Sprintln(f) + } + + tmp += fmt.Sprintln("########################################\t\t\tENUMS\t\t\t########################################") + + for _, e := range c.Enums { + tmp += fmt.Sprintln(e) + } + + utils.MakeFolder(utils.GetQtPkgPath("internal", "binding", "dump", c.Module)) + utils.Save(utils.GetQtPkgPath("internal", "binding", "dump", c.Module, fmt.Sprintf("%v.txt", c.Name)), tmp) +} + +func (c *Class) GetBases() []string { + + if c.Bases == "" { + return make([]string, 0) + } + + if strings.Contains(c.Bases, ",") { + return strings.Split(c.Bases, ",") + } + + return []string{c.Bases} +} + +func (c *Class) GetAllBases(input []string) []string { + + var bases = c.GetBases() + + switch len(bases) { + case 0: + { + return input + } + + case 1: + { + input = append(input, bases[0]) + return ClassMap[bases[0]].GetAllBases(input) + } + + } + + for _, b := range bases { + input = append(input, b) + for _, sb := range ClassMap[b].GetAllBases([]string{}) { + input = append(input, sb) + } + } + return input +} + +func (c *Class) IsQObjectSubClass() bool { + if c.Name == "QObject" { + return true + } + + for _, b := range c.GetAllBases([]string{}) { + if b == "QObject" { + return true + } + } + + return false +} diff --git a/internal/binding/parser/enum.go b/internal/binding/parser/enum.go new file mode 100755 index 00000000..47395866 --- /dev/null +++ b/internal/binding/parser/enum.go @@ -0,0 +1,28 @@ +package parser + +import "strings" + +type Enum struct { + Name string `xml:"name,attr"` + Fullname string `xml:"fullname,attr"` + Status string `xml:"status,attr"` + Access string `xml:"access,attr"` + Typedef string `xml:"typedef,attr"` + Values []*Value `xml:"value"` +} + +type Value struct { + Name string `xml:"name,attr"` + Value string `xml:"value,attr"` +} + +func (e *Enum) Class() string { return strings.Split(e.Fullname, "::")[0] } + +func (e *Enum) register(module string) { + SubnamespaceMap[e.Class()] = true + if c, exists := ClassMap[e.Class()]; !exists { + ClassMap[e.Class()] = &Class{Name: e.Class(), Status: "commendable", Module: module, Access: "public", Enums: []*Enum{e}} + } else { + c.Enums = append(c.Enums, e) + } +} diff --git a/internal/binding/parser/function.go b/internal/binding/parser/function.go new file mode 100755 index 00000000..827b46f2 --- /dev/null +++ b/internal/binding/parser/function.go @@ -0,0 +1,34 @@ +package parser + +import "strings" + +type Function struct { + Name string `xml:"name,attr"` + Fullname string `xml:"fullname,attr"` + Status string `xml:"status,attr"` + Access string `xml:"access,attr"` + Filepath string `xml:"filepath,attr"` + Virtual string `xml:"virtual,attr"` + Meta string `xml:"meta,attr"` + Static bool `xml:"static,attr"` + Overload bool `xml:"overload,attr"` + OverloadNumber string `xml:"overload-number,attr"` + Output string `xml:"type,attr"` + Parameters []*Parameter `xml:"parameter"` + SignalMode string +} + +type Parameter struct { + Name string `xml:"name,attr"` + Value string `xml:"left,attr"` +} + +func (f *Function) Class() string { return strings.Split(f.Fullname, "::")[0] } + +func (f *Function) register(module string) { + if c, exists := ClassMap[f.Class()]; !exists { + ClassMap[f.Class()] = &Class{Name: f.Class(), Module: module, Access: "public", Functions: []*Function{f}} + } else { + c.Functions = append(c.Functions, f) + } +} diff --git a/internal/binding/parser/module.go b/internal/binding/parser/module.go new file mode 100755 index 00000000..c6795a09 --- /dev/null +++ b/internal/binding/parser/module.go @@ -0,0 +1,53 @@ +package parser + +type Module struct { + Namespace *Namespace `xml:"namespace"` + Project string `xml:"project,attr"` +} + +type Namespace struct { + Classes []*Class `xml:"class"` + //Functions []*Function `xml:"function"` + SubNamespace *SubNamespace `xml:"namespace"` +} + +type SubNamespace struct { + //Classes []*Class `xml:"class"` + //Functions []*Function `xml:"function"` + Enums []*Enum `xml:"enum"` +} + +func (m *Module) prepare() { + + //Register Namespace + for _, c := range m.Namespace.Classes { + c.register(m.Project) + } + + //Register Subnamespace + if m.Project == "QtCore" { + if m.Namespace.SubNamespace != nil { + for _, e := range m.Namespace.SubNamespace.Enums { + e.register(m.Project) + } + } + } + + //Remove obsolete and private + m.removeClasses() + for _, c := range ClassMap { + if c.Module == m.Project { + c.removeFunctions() + c.removeEnums() + c.registerAbstact() + } + } +} + +func (m *Module) removeClasses() { + for _, c := range ClassMap { + if c.Status == "obsolete" || !(c.Access == "public" || c.Access == "protected") || c.Name == "qoutputrange" { + delete(ClassMap, c.Name) + } + } +} diff --git a/internal/binding/parser/parser.go b/internal/binding/parser/parser.go new file mode 100755 index 00000000..d67d792e --- /dev/null +++ b/internal/binding/parser/parser.go @@ -0,0 +1,30 @@ +package parser + +import ( + "encoding/xml" + "fmt" + "runtime" + + "github.com/therecipe/qt/internal/utils" +) + +var ( + AbstractMap = make(map[string]bool) + ClassMap = make(map[string]*Class) + SubnamespaceMap = make(map[string]bool) +) + +func GetModule(s string) (m *Module) { + + switch runtime.GOOS { + case "darwin", "linux": + xml.Unmarshal([]byte(utils.Load(fmt.Sprintf("/usr/local/Qt5.5.1/Docs/Qt-5.5/qt%v/qt%v.index", s, s))), &m) + + case "windows": + xml.Unmarshal([]byte(utils.Load(fmt.Sprintf("C:\\Qt\\Qt5.5.1\\Docs\\Qt-5.5\\qt%v\\qt%v.index", s, s))), &m) + } + + m.prepare() + + return m +} diff --git a/internal/binding/templater/binding.go b/internal/binding/templater/binding.go new file mode 100755 index 00000000..c258d407 --- /dev/null +++ b/internal/binding/templater/binding.go @@ -0,0 +1,60 @@ +package templater + +import ( + "fmt" + "strings" + + "github.com/therecipe/qt/internal/utils" + + "github.com/therecipe/qt/internal/binding/parser" +) + +func terminalSeperator(module string) string { + var sep = "" + if len(module) < 8 { + sep += "\t\t" + } + if len(module) >= 8 && len(module) < 17 { + sep += "\t" + } + return sep +} + +func GenModule(name string) { + var moduleT = name + + name = strings.ToLower(name) + + parser.GetModule(name) + + if ShouldBuild(moduleT) { + + utils.RemoveAll(utils.GetQtPkgPath(name)) + utils.RemoveAll(utils.GetQtPkgPath("internal", "binding", "dump", moduleT)) + + var fcount = 0 + for _, c := range parser.ClassMap { + + if moduleT == strings.TrimPrefix(c.Module, "Qt") { + + //Dry run to catch all unsupported + for _, f := range map[string]func(*parser.Class) string{"cpp": CppTemplate, "h": HTemplate, "go": GoTemplate} { + f(c) + } + + for e, f := range map[string]func(*parser.Class) string{"cpp": CppTemplate, "h": HTemplate, "go": GoTemplate} { + utils.MakeFolder(utils.GetQtPkgPath(name)) + utils.Save(utils.GetQtPkgPath(name, fmt.Sprintf("%v.%v", strings.ToLower(c.Name), e)), f(c)) + CopyCgo(moduleT) + } + + c.Dump() + + fcount += len(c.Functions) + } + + } + fmt.Printf("%v%v\tfunctions:%v", name, terminalSeperator(name), fcount) + } + +} diff --git a/internal/binding/templater/cgo.go b/internal/binding/templater/cgo.go new file mode 100755 index 00000000..57fdfbb1 --- /dev/null +++ b/internal/binding/templater/cgo.go @@ -0,0 +1,126 @@ +package templater + +import ( + "fmt" + "strings" + + "github.com/therecipe/qt/internal/utils" +) + +func CopyCgo(module string) { + createCgoDarwin(module) + createCgoWindows(module) + createCgoLinux(module) +} + +func createCgoDarwin(module string) { + var tmp string + + tmp += fmt.Sprintf("package %v\n", strings.ToLower(module)) + tmp += "/*\n" + + tmp += "#cgo CPPFLAGS: -pipe -O2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 -Wall -W\n" + + tmp += "#cgo CPPFLAGS: -DQT_NO_DEBUG" + for _, m := range append(LibDeps[module], module) { + tmp += fmt.Sprintf(" -DQT_%v_LIB", strings.ToUpper(m)) + } + tmp += "\n" + + tmp += "#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/mkspecs/macx-clang -F/usr/local/Qt5.5.1/5.5/clang_64/lib\n" + + tmp += "#cgo CPPFLAGS:" + for _, m := range append(LibDeps[module], module) { + tmp += fmt.Sprintf(" -I/usr/local/Qt5.5.1/5.5/clang_64/lib/Qt%v.framework/Headers", m) + } + tmp += "\n" + + tmp += "#cgo CPPFLAGS: -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.framework/Headers\n" + tmp += "\n" + + tmp += "#cgo LDFLAGS: -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7\n" + + tmp += "#cgo LDFLAGS: -F/usr/local/Qt5.5.1/5.5/clang_64/lib" + for _, m := range append(LibDeps[module], module) { + tmp += fmt.Sprintf(" -framework Qt%v", m) + } + tmp += " -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL\n" + + tmp += "*/\n" + tmp += fmt.Sprintf("import \"C\"\n") + + utils.Save(utils.GetQtPkgPath(strings.ToLower(module), "cgo_darwin_amd64.go"), tmp) +} + +func createCgoWindows(module string) { + var tmp string + + tmp += fmt.Sprintf("package %v\n", strings.ToLower(module)) + tmp += "/*\n" + + tmp += "#cgo CPPFLAGS: -pipe -fno-keep-inline-dllexport -O2 -Wall -Wextra -fexceptions -mthreads\n" + + tmp += "#cgo CPPFLAGS: -DUNICODE -DQT_NO_DEBUG" + for _, m := range append(LibDeps[module], module) { + tmp += fmt.Sprintf(" -DQT_%v_LIB", strings.ToUpper(m)) + } + tmp += "\n" + + tmp += "#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include -IC:/Qt/Qt5.5.1/5.5/mingw492_32/mkspecs/win32-g++\n" + + tmp += "#cgo CPPFLAGS:" + for _, m := range append(LibDeps[module], module) { + tmp += fmt.Sprintf(" -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/Qt%v", m) + } + tmp += "\n\n" + + tmp += "#cgo LDFLAGS: -Wl,-s -Wl,-subsystem,windows -mthreads\n" + + tmp += "#cgo LDFLAGS: -LC:/Qt/Qt5.5.1/5.5/mingw492_32/bin" + for _, m := range append(LibDeps[module], module) { + tmp += fmt.Sprintf(" -lQt5%v", m) + } + + tmp += "\n*/\n" + tmp += fmt.Sprintf("import \"C\"\n") + + utils.Save(utils.GetQtPkgPath(strings.ToLower(module), "cgo_windows_386.go"), tmp) +} + +func createCgoLinux(module string) { + var tmp string + + tmp += fmt.Sprintf("package %v\n", strings.ToLower(module)) + tmp += "/*\n" + + tmp += "#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT\n" + + tmp += "#cgo CPPFLAGS: -DQT_NO_DEBUG" + for _, m := range append(LibDeps[module], module) { + tmp += fmt.Sprintf(" -DQT_%v_LIB", strings.ToUpper(m)) + } + tmp += "\n" + + tmp += "#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include -I/usr/local/Qt5.5.1/5.5/gcc/mkspecs/linux-g++\n" + + tmp += "#cgo CPPFLAGS:" + for _, m := range append(LibDeps[module], module) { + tmp += fmt.Sprintf(" -I/usr/local/Qt5.5.1/5.5/gcc/include/Qt%v", m) + } + tmp += "\n\n" + + tmp += "#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc/lib\n" + + tmp += "#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc/lib -L/usr/lib64" + for _, m := range append(LibDeps[module], module) { + tmp += fmt.Sprintf(" -lQt5%v", m) + } + + tmp += " -lpthread\n" + + tmp += "*/\n" + tmp += fmt.Sprintf("import \"C\"\n") + + utils.Save(utils.GetQtPkgPath(strings.ToLower(module), "cgo_linux_386.go"), strings.Replace(tmp, "lib64", "lib", -1)) + utils.Save(utils.GetQtPkgPath(strings.ToLower(module), "cgo_linux_amd64.go"), strings.Replace(tmp, "gcc", "gcc_64", -1)) +} diff --git a/internal/binding/templater/enum_cpp.go b/internal/binding/templater/enum_cpp.go new file mode 100755 index 00000000..67da5a3d --- /dev/null +++ b/internal/binding/templater/enum_cpp.go @@ -0,0 +1,20 @@ +package templater + +import ( + "fmt" + "github.com/therecipe/qt/internal/binding/converter" + "github.com/therecipe/qt/internal/binding/parser" + "strings" +) + +func cppEnum(e *parser.Enum, v *parser.Value) string { + return fmt.Sprintf("%v{\n\t%v\n}", cppEnumHeader(e, v), cppEnumBody(e, v)) +} + +func cppEnumHeader(e *parser.Enum, v *parser.Value) string { + return fmt.Sprintf("int %v_%v_Type()", strings.Split(e.Fullname, "::")[0], v.Name) +} + +func cppEnumBody(e *parser.Enum, v *parser.Value) string { + return fmt.Sprintf("return %v;", converter.CppEnum(v, e)) +} diff --git a/internal/binding/templater/enum_go.go b/internal/binding/templater/enum_go.go new file mode 100755 index 00000000..290f5819 --- /dev/null +++ b/internal/binding/templater/enum_go.go @@ -0,0 +1,36 @@ +package templater + +import ( + "fmt" + "github.com/therecipe/qt/internal/binding/converter" + "github.com/therecipe/qt/internal/binding/parser" + "strings" +) + +func goEnum(e *parser.Enum) (o string) { + var t string + + o += fmt.Sprintf("//%v\ntype %v int\nvar (\n", e.Fullname, strings.Replace(e.Fullname, ":", "_", -1)) + + for _, v := range e.Values { + switch v.Name { + case "ByteOrder": + + default: + if strings.Contains(v.Value, " | ") { + var tArray = make([]string, 0) + for _, s := range strings.Split(v.Value, " | ") { + tArray = append(tArray, converter.GoEnum(v.Name, s, e)) + } + t = strings.Join(tArray, " | ") + } else { + t = converter.GoEnum(v.Name, v.Value, e) + } + o += fmt.Sprintf("%v__%v = %v(%v)\n", strings.Split(e.Fullname, "::")[0], v.Name, strings.Replace(e.Fullname, ":", "_", -1), t) + } + } + + o += ")" + + return +} diff --git a/internal/binding/templater/function_cpp.go b/internal/binding/templater/function_cpp.go new file mode 100755 index 00000000..29905165 --- /dev/null +++ b/internal/binding/templater/function_cpp.go @@ -0,0 +1,59 @@ +package templater + +import ( + "fmt" + "strings" + + "github.com/therecipe/qt/internal/binding/converter" + "github.com/therecipe/qt/internal/binding/parser" +) + +func cppFunctionSignal(f *parser.Function) string { + return fmt.Sprintf("void Signal_%v(%v){callback%v%v(%v);}", strings.Title(f.Name), converter.CppBodyInputCallback(f), f.Class(), strings.Title(f.Name), converter.CppBodyOutputCallback(f)) +} + +func cppFunction(f *parser.Function) string { + return fmt.Sprintf("%v{\n\t%v\n}", cppFunctionHeader(f), cppFunctionBody(f)) +} + +func cppFunctionHeader(f *parser.Function) string { + return fmt.Sprintf("%v %v(%v)", converter.CppHeaderOutput(f), converter.CppHeaderName(f), converter.CppHeaderInput(f)) +} + +func cppFunctionBody(f *parser.Function) (o string) { + + if converter.CppHeaderOutput(f) != "void" { + o += "return " + } + + switch f.Meta { + case "constructor": + o += fmt.Sprintf("new %v(%v)", f.Class(), converter.CppBodyInput(f)) + + case "slot": + if f.Static { + o += fmt.Sprintf("QMetaObject::invokeMethod(%v::instance(), \"%v\"%v)", f.Class(), f.Name, converter.CppBodyInput(f)) + } else { + o += fmt.Sprintf("QMetaObject::invokeMethod(static_cast<%v*>(ptr), \"%v\"%v)", f.Class(), f.Name, converter.CppBodyInput(f)) + } + + case "plain", "destructor": + if f.Static { + o += converter.CppBodyOutput(f, fmt.Sprintf("%v::%v(%v)", f.Class(), f.Name, converter.CppBodyInput(f))) + } else { + o += converter.CppBodyOutput(f, fmt.Sprintf("static_cast<%v*>(ptr)->%v(%v)", f.Class(), f.Name, converter.CppBodyInput(f))) + } + + case "signal": + if converter.PrivateSignal(f) { + o += fmt.Sprintf("QObject::%v(%v, &%v::%v, static_cast(ptr), static_cast<%v (My%v::*)(%v)>(&My%v::Signal_%v));", strings.ToLower(f.SignalMode), fmt.Sprintf("static_cast<%v*>(%v)", f.Class(), "ptr"), f.Class(), f.Name, f.Class(), f.Output, f.Class(), converter.CppBodyInput(f), f.Class(), strings.Title(f.Name)) + } else { + o += fmt.Sprintf("QObject::%v(%v, static_cast(&%v::%v), static_cast(ptr), static_cast<%v (My%v::*)(%v)>(&My%v::Signal_%v));", strings.ToLower(f.SignalMode), fmt.Sprintf("static_cast<%v*>(%v)", f.Class(), "ptr"), f.Class(), converter.CppBodyInput(f), f.Class(), f.Name, f.Class(), f.Output, f.Class(), converter.CppBodyInput(f), f.Class(), strings.Title(f.Name)) + } + default: + f.Access = "unsupported_CppFunctionBody" + return f.Access + } + + return fmt.Sprintf("%v;", o) +} diff --git a/internal/binding/templater/function_go.go b/internal/binding/templater/function_go.go new file mode 100755 index 00000000..2e2f127f --- /dev/null +++ b/internal/binding/templater/function_go.go @@ -0,0 +1,86 @@ +package templater + +import ( + "fmt" + "runtime" + "strings" + + "github.com/therecipe/qt/internal/binding/converter" + "github.com/therecipe/qt/internal/binding/parser" +) + +func goFunction(f *parser.Function) string { + + if f.Name == "exec" && runtime.GOOS == "linux" { + f.Output = "void" + } + + if f.Meta == "signal" && !f.Overload { + var tmp string + for _, signalMode := range []string{"Connect", "Disconnect", "callback"} { + f.SignalMode = signalMode + if signalMode == "callback" { + tmp += fmt.Sprintf("//export callback%v%v\n", f.Class(), strings.Title(f.Name)) + } + tmp += fmt.Sprintf("%v{\n%v\n}\n\n", goFunctionHeader(f), goFunctionBody(f)) + } + f.SignalMode = "" + return tmp + } + return fmt.Sprintf("%v{\n%v\n}", goFunctionHeader(f), goFunctionBody(f)) +} + +func goFunctionHeader(f *parser.Function) string { + if f.Static || f.Meta == "constructor" || f.SignalMode == "callback" { + return fmt.Sprintf("func %v", goInterface(f)) + } + return fmt.Sprintf("func (ptr *%v)%v", f.Class(), goInterface(f)) +} + +func goInterface(f *parser.Function) string { + return fmt.Sprintf("%v(%v)%v", converter.GoHeaderName(f), converter.GoHeaderInput(f), converter.GoHeaderOutput(f)) +} + +func goFunctionBody(f *parser.Function) (o string) { + + if !f.Static && f.Meta != "constructor" && f.SignalMode != "callback" { + o += fmt.Sprintf("if ptr.Pointer() != nil {\n") + } + + if converter.GoHeaderOutput(f) != "" { + o += "return " + } + + /* + if (f.Meta == "destructor" && isObjectSubClass(f.Class())) || (f.Meta == "slot" && strings.Contains(f.Name, "deleteLater")) { + o += "getSignal(ptr.ObjectName(), \"destroyed\").(func(QObject, QObject))(ptr, ptr)\n" + } + */ + + if f.SignalMode == "callback" { + o += fmt.Sprintf("qt.GetSignal(C.GoString(ptrName), \"%v\").(%v)(%v)", f.Name, converter.GoHeaderInputSignalFunction(f), converter.GoBodyInputSignalValues(f)) + } else { + o += converter.GoBodyOutput(f, fmt.Sprintf("C.%v(%v)", converter.CppHeaderName(f), converter.GoBodyInput(f))) + } + + if f.SignalMode == "Connect" { + o += fmt.Sprintf("\nqt.ConnectSignal(ptr.ObjectName(), \"%v\", f)", f.Name) + } + + if f.SignalMode == "Disconnect" { + o += fmt.Sprintf("\nqt.DisconnectSignal(ptr.ObjectName(), \"%v\")", f.Name) + } + + if (f.Meta == "destructor" && isObjectSubClass(f.Class())) || (f.Meta == "slot" && strings.Contains(f.Name, "deleteLater")) { + o += "\nptr.SetPointer(nil)" + } + + if !f.Static && f.Meta != "constructor" && f.SignalMode != "callback" { + o += "\n}" + if converter.GoHeaderOutput(f) != "" { + o += fmt.Sprintf("\nreturn %v", converter.GoBodyOutputFailed(f.Output, f)) + } + } + + return o +} diff --git a/internal/binding/templater/template_cpp.go b/internal/binding/templater/template_cpp.go new file mode 100755 index 00000000..b75e3e64 --- /dev/null +++ b/internal/binding/templater/template_cpp.go @@ -0,0 +1,123 @@ +package templater + +import ( + "fmt" + "strings" + + "github.com/therecipe/qt/internal/binding/parser" +) + +func HTemplate(c *parser.Class) (o string) { + o += "#ifdef __cplusplus\nextern \"C\" {\n#endif\n#include \"../cgoutil.h\"\n\n" + + for _, e := range c.Enums { + if isSupportedEnum(e) { + for _, v := range e.Values { + if needsCppValueGlue(v) { + o += fmt.Sprintf("%v;\n", cppEnumHeader(e, v)) + } + } + } + } + + if isSupportedClass(c) { + for _, f := range c.Functions { + if f.Meta == "signal" && !f.Overload { + for _, signalMode := range []string{"Connect", "Disconnect"} { + f.SignalMode = signalMode + if i := cppFunctionHeader(f); isSupportedFunction(c, f) { + o += fmt.Sprintf("%v;\n", i) + } + } + f.SignalMode = "" + } else { + if i := cppFunctionHeader(f); isSupportedFunction(c, f) { + o += fmt.Sprintf("%v;\n", i) + } + } + } + } + + o += "\n#ifdef __cplusplus\n}\n#endif" + return +} + +func CppTemplate(c *parser.Class) (o string) { + for _, h := range []string{strings.ToLower(c.Name)} { + o += fmt.Sprintf("#include \"%v.h\"\n", h) + } + + if strings.Contains(c.Name, "List") { + o += "#include \n" + } + + o += "PLACEHOLDER_IMPORTS" + + if isSupportedFile(c) { + o += fmt.Sprintf("#include <%v>\n", c.Name) + } + + o += "#include \"_cgo_export.h\"\n\n" + + if isSupportedClass(c) { + if !strings.Contains(c.Name, "tomic") { + o += fmt.Sprintf("class My%v: public %v {\npublic:\n", c.Name, c.Name) + for _, f := range c.Functions { + if f.Meta == "signal" && !f.Overload { + if i := cppFunctionSignal(f); isSupportedFunction(c, f) { + o += fmt.Sprintf("%v;\n", i) + } + } + } + o += "};\n\n" + } + } + + for _, e := range c.Enums { + if isSupportedEnum(e) { + for _, v := range e.Values { + if needsCppValueGlue(v) { + o += fmt.Sprintf("%v\n\n", cppEnum(e, v)) + } + } + } + } + + if isSupportedClass(c) { + for _, f := range c.Functions { + if f.Meta == "signal" && !f.Overload { + for _, signalMode := range []string{"Connect", "Disconnect"} { + f.SignalMode = signalMode + if i := cppFunction(f); isSupportedFunction(c, f) { + o += fmt.Sprintf("%v\n\n", i) + } + } + f.SignalMode = "" + } else { + if i := cppFunction(f); isSupportedFunction(c, f) { + o += fmt.Sprintf("%v\n\n", i) + } + } + } + } + + return managedImportsCpp(c.Name, o) +} + +func managedImportsCpp(className, input string) string { + var tmpIM = map[string]bool{"QString": true, "QVariant": true, "QUrl": true, "QModelIndex": true} + + for m := range parser.ClassMap { + if strings.Contains(input, m) && m != className && strings.HasPrefix(m, "Q") && !strings.HasPrefix(m, "Qt") { + tmpIM[m] = true + } + } + + var tmpI string + + for i := range tmpIM { + tmpI += fmt.Sprintf("#include <%v>\n", i) + } + + return strings.Replace(input, "PLACEHOLDER_IMPORTS", tmpI, -1) +} diff --git a/internal/binding/templater/template_go.go b/internal/binding/templater/template_go.go new file mode 100755 index 00000000..d6c0d3b5 --- /dev/null +++ b/internal/binding/templater/template_go.go @@ -0,0 +1,131 @@ +package templater + +import ( + "fmt" + "strings" + + "github.com/therecipe/qt/internal/binding/parser" +) + +func GoTemplate(c *parser.Class) (o string) { + + if c.Name != "Qt" { + + o += fmt.Sprintf("type %v struct {\n", c.Name) + if c.Bases == "" { + o += "ptr unsafe.Pointer" + } else { + for _, b := range c.GetBases() { + if bC, exists := parser.ClassMap[b]; exists { + if m := shortModule(bC.Module); m != shortModule(c.Module) { + o += fmt.Sprintf("%v.%v\n", m, b) + } else { + o += fmt.Sprintf("%v\n", b) + } + } + } + } + o += "}\n\n" + + o += fmt.Sprintf("type %vITF interface {\n", c.Name) + + if c.Bases != "" { + for _, b := range c.GetBases() { + if bC, exists := parser.ClassMap[b]; exists { + if m := shortModule(bC.Module); m != shortModule(c.Module) { + o += fmt.Sprintf("%v.%vITF\n", m, b) + } else { + o += fmt.Sprintf("%vITF\n", b) + } + } + } + } + o += fmt.Sprintf("%vPTR() *%v\n", c.Name, c.Name) + o += "\n}\n\n" + + if c.Bases == "" { + o += fmt.Sprintf("func (p *%v)Pointer() unsafe.Pointer {\nreturn p.ptr\n}\n\n", c.Name) + o += fmt.Sprintf("func (p *%v)SetPointer(ptr unsafe.Pointer) {\np.ptr = ptr\n}\n\n", c.Name) + } + + if len(c.GetBases()) > 1 { + o += fmt.Sprintf("func (p *%v)Pointer() unsafe.Pointer {\nreturn p.%vPTR().Pointer()\n}\n\n", c.Name, c.GetBases()[0]) + + o += fmt.Sprintf("func (p *%v)SetPointer(ptr unsafe.Pointer) {\n", c.Name) + for _, b := range c.GetBases() { + o += fmt.Sprintf("p.%vPTR().SetPointer(ptr)\n", b) + } + o += "}\n\n" + } + + o += fmt.Sprintf("func PointerFrom%v(ptr %vITF) unsafe.Pointer {\n", c.Name, c.Name) + o += fmt.Sprintf("if ptr != nil {\nreturn ptr.%vPTR().Pointer()\n}\nreturn nil\n}\n\n", c.Name) + + o += fmt.Sprintf("func %vFromPointer(ptr unsafe.Pointer) *%v {\n", c.Name, c.Name) + o += fmt.Sprintf("var n = new(%v)\n", c.Name) + o += "n.SetPointer(ptr)\n" + + if isObjectSubClass(c.Name) { + o += "if n.ObjectName() == \"\" {\n" + o += fmt.Sprintf("n.SetObjectName(\"%v_\" + qt.RandomIdentifier())\n", c.Name) + o += "}\n" + } + o += "return n\n}\n\n" + + o += fmt.Sprintf("func (ptr *%v) %vPTR() *%v {\n", c.Name, c.Name, c.Name) + o += "return ptr\n}\n\n" + + } + + for _, e := range c.Enums { + if isSupportedEnum(e) { + o += fmt.Sprintf("%v\n\n", goEnum(e)) + } + } + + if isSupportedClass(c) { + for _, f := range c.Functions { + if i := goFunction(f); isSupportedFunction(c, f) { + o += fmt.Sprintf("%v\n\n", i) + } + } + } + + return preambleGo(c.Name, o) +} + +func preambleGo(className, input string) string { + + var tmp string + + tmp += fmt.Sprintf("package %v\n", shortModule(parser.ClassMap[className].Module)) + tmp += fmt.Sprintf("//#include \"%v.h\"\n", strings.ToLower(className)) + tmp += "import \"C\"\n" + tmp += "import (\n" + + for _, i := range append(Libs, "qt", "strings", "unsafe") { + i = strings.ToLower(i) + + if strings.Contains(input, fmt.Sprintf("%v.", i)) && i != shortModule(parser.ClassMap[className].Module) { + switch i { + case "qt": + tmp += fmt.Sprintf("\"github.com/therecipe/%v\"\n", i) + + case "strings", "unsafe": + tmp += fmt.Sprintf("\"%v\"\n", i) + + default: + tmp += fmt.Sprintf("\"github.com/therecipe/qt/%v\"\n", i) + } + } + + } + + tmp += ")\n" + + return tmp + input +} + +func shortModule(module string) string { + return strings.ToLower(strings.TrimPrefix(module, "Qt")) +} diff --git a/internal/binding/templater/templater.go b/internal/binding/templater/templater.go new file mode 100755 index 00000000..0166e854 --- /dev/null +++ b/internal/binding/templater/templater.go @@ -0,0 +1,247 @@ +package templater + +import ( + "runtime" + "strings" + + "github.com/therecipe/qt/internal/binding/parser" +) + +func isSupportedFunction(c *parser.Class, f *parser.Function) bool { + return f.Access == "public" && f.Status != "obsolete" && isNotAbstractConstructor(c, f) && isNotAtomic(f) && !isBlocked(f) && !(f.Meta == "signal" && f.Overload) +} + +func isNotAbstractConstructor(c *parser.Class, f *parser.Function) bool { + return !(hasPureVirtualFunctions(c.Name) && f.Meta == "constructor") +} + +func hasPureVirtualFunctions(c string) bool { + + if parser.AbstractMap[c] { + return true + } + + if b := parser.ClassMap[c].Bases; b != "" && !strings.Contains(b, ",") { + if parser.AbstractMap[b] { + for _, fBase := range parser.ClassMap[b].Functions { + if fBase.Virtual == "pure" { + if !classHasRealFunction(c, fBase.Name) { + return true + } + } + } + } else { + return hasPureVirtualFunctions(b) + } + } + + return false +} + +func classHasRealFunction(c string, n string) bool { + if c != "" && c != "Qt" { + for _, f := range parser.ClassMap[c].Functions { + if f.Name == n { + return true + } + } + } + return false +} + +func isBlocked(f *parser.Function) bool { + for _, n := range []string{"QPlaceProposedSearchResult", "evaluateTo", "detected", "isRecordType", "replace", "insert", "remove", "find", "changedStates", "state", "requestTexture", "draw", "setTabPositions", "setExtraSelections", "disconnect", "QJsonObject", "QJsonArray", "QAccessibleStateChangeEvent", "hitTest", "setupUi", "setEditFocus", "toUnicode", "registerConverter", "registerEqualsComparator", "registerComparators", "hasRegisteredConverterFunction", "hasRegisteredComparators", "setNavigationMode", "navigationMode", "setNativeArguments", "setAlphaChannel", "setDefaultAction", "unregisterEventNotifier", "QXmlStreamWriter", "hasEditFocus", "QVariant", "QTextStream", "QStringRef", "QSignalBlocker", "defaultAction", "canConvert", "queryItemValue", "hasQueryItem", "hasEncodedQueryItem", "hasLocalData", "registerEventNotifier", "registerTimer", "setYMD", "nativeArguments"} { + if f.Name == n { + return true + } + } + + for _, blockedAndroid := range []string{"setAsDockMenu"} { + if f.Name == blockedAndroid { + return true + } + } + return false +} + +func isObjectSubClass(b string) bool { + return parser.ClassMap[b].IsQObjectSubClass() +} + +func isNotTemplate(c *parser.Class) bool { + return !strings.Contains(c.Brief, "emplate") +} + +func isNotAtomic(f *parser.Function) bool { + return !strings.Contains(f.Fullname, "tomic") +} + +func isSupportedClass(c *parser.Class) bool { + return c.Access == "public" && c.Status != "obsolete" && isNotTemplate(c) && !isBlockedClass(c) && isSupportedFile(c) +} + +func isBlockedClass(c *parser.Class) bool { + for _, n := range []string{"QPlaceContentRequest", "QPlaceContentReply", "QPlaceContent", "QPlaceContactDetail", "QPlaceCategory", "QPlaceAttribute", "QPlace", "QGeoCodingManagerEngine", "QGeoCodingManager", "QHash", "QGenericMatrix", "QContiguousCache", "QStringList", "QCache", "QUrl", "QString", "QItemEditorCreator", "QIODevice", "QImageIOPlugin", "QImageIOHandler", "QIconEnginePlugin", "QGraphicsTransform", "QGraphicsObject", "QGraphicsLayoutItem", "QGraphicsLayout", "QGraphicsItem", "QGraphicsEffect", "QGestureRecognizer", "QGenericPlugin", "QDebug", "QAnimationGroup", "QAccessiblePlugin", "QAccessibleObject", "QOpenGLFunctions_ES2", "Qt", "QSharedDataPointer", "QScopedValueRollback", "QScopedArrayPointer", "QQueue", "QMultiMap", "QWinEventNotifier", "QWeakPointer", "QVarLengthArray", "QThreadStorage", "QSharedPointer", "QScopedPointer", "QMutableHashIterator", "QMultiHash", "QMapIterator", "QListIterator", "QLinkedListIterator", "QHashIterator", "QGlobalStatic", "QFutureWatcher", "QFutureSynchronizer", "QFutureIterator", "QFuture", "QEnableSharedFromThis", "QExplicitlySharedDataPointer", "QFlags"} { + if c.Name == n || strings.Contains(c.Name, "Iterator") { + return true + } + } + if strings.Contains(c.Name, "QPlace") { + return true + } + + return false +} + +func isSupportedEnum(e *parser.Enum) bool { + return e.Access == "public" && e.Status != "obsolete" +} + +func needsCppValueGlue(v *parser.Value) bool { + return strings.ContainsAny(v.Value, "()<>~+") || v.Value == "" +} + +func isSupportedFile(c *parser.Class) bool { + switch c.Name { + case + "QStandardItemEditorCreator", + "QSupportedWritingSystems", + "QRasterPaintEngine", + "QPlatformSystemTrayIcon", + "QPlatformGraphicsBuffer", + "QAbstractOpenGLFunctions", + "QQmlListProperty", + "QQuickWidget", + "QSGSimpleMaterialShader", + "QSqlRelationalDelegate", + "QDBusPendingReply", + "QDBusReply", + "QDBus", + "QGeoLocation", + "QGeoCodeReply", + "QGeoCodingManager", + "QGeoCodingManagerEngine": + return false + } + + if strings.Contains(c.Name, "QPlace") { + return false + } + + if _, exists := parser.SubnamespaceMap[c.Name]; exists { + return false + } + + return true +} + +func ShouldBuild(module string) bool { + return true //Build[module] +} + +var Build = map[string]bool{ + "Core": false, + "Gui": false, + "Network": false, + "Sql": false, + "Xml": false, + "DBus": false, + "Nfc": false, + "Script": false, + "Sensors": false, + "Positioning": false, + "Widgets": false, + "MacExtras": false, + "Qml": false, + "WebSockets": false, + "XmlPatterns": false, + "Bluetooth": false, + "WebChannel": false, + "Svg": false, + "Multimedia": false, + "Quick": false, + "Help": false, + "Location": true, + "ScriptTools": true, + "MultimediaWidgets": true, +} + +var Libs = []string{ + "Core", + "Gui", + "Network", + "Sql", + "Xml", + "DBus", + "Nfc", + "Script", + "Sensors", + "Positioning", + "Widgets", + "MacExtras", + "Qml", + "WebSockets", + "XmlPatterns", + "Bluetooth", + "WebChannel", + "Svg", + "Multimedia", + "Quick", + "Help", + "Location", + "ScriptTools", + "MultimediaWidgets", +} + +func GetLibs() []string { + for i := len(Libs) - 1; i >= 0; i-- { + switch { + case + runtime.GOOS != "darwin" && Libs[i] == "MacExtras", + runtime.GOOS != "windows" && Libs[i] == "WinExtras", + runtime.GOOS != "android" && Libs[i] == "AndroidExtras": + { + Libs = append(Libs[:i], Libs[i+1:]...) + } + } + } + + return Libs +} + +var LibDeps = map[string][]string{ + "Core": []string{}, + "Gui": []string{"Core"}, + "Network": []string{"Core"}, + "Sql": []string{"Core"}, + "Xml": []string{"Core"}, + "DBus": []string{"Core"}, + "Nfc": []string{"Core"}, + "Script": []string{"Core"}, + "Sensors": []string{"Core"}, + "Positioning": []string{"Core"}, + "Widgets": []string{"Core", "Gui"}, + "MacExtras": []string{"Core", "Gui"}, + "Qml": []string{"Core", "Network"}, + "WebSockets": []string{"Core", "Network"}, + "XmlPatterns": []string{"Core", "Network"}, + "Bluetooth": []string{"Core", "Concurrent"}, + "WebChannel": []string{"Core", "Network", "Qml"}, + "Svg": []string{"Core", "Gui", "Widgets"}, + "Multimedia": []string{"Core", "Gui", "Network"}, + "Quick": []string{"Core", "Gui", "Network", "Qml"}, + "Help": []string{"Core", "Gui", "Network", "Sql", "CLucene", "Widgets"}, + "Location": []string{"Core", "Gui", "Network", "Positioning", "Qml", "Quick"}, + "ScriptTools": []string{"Core", "Gui", "Script", "Widgets"}, + "MultimediaWidgets": []string{"Core", "Gui", "Network", "Widgets", "OpenGL", "Multimedia"}, + + /* + CLucene + Designer + OpenGL + Concurrent + WinExtras + UiTools + AndroidExtras + */ +} diff --git a/internal/binding/test.go b/internal/binding/test.go new file mode 100755 index 00000000..bfc07af0 --- /dev/null +++ b/internal/binding/test.go @@ -0,0 +1,38 @@ +package main + +import ( + "fmt" + "os/exec" + "path" + "runtime" + "time" + + "github.com/therecipe/qt/internal/utils" +) + +func main() { + fmt.Println("_________________________Test__________________________") + + var out, err = exec.Command("go", "build", "-o", utils.GetQtPkgPath("internal", "deploy", "deploy"), utils.GetQtPkgPath("internal", "deploy", fmt.Sprintf("deploy_%v.go", runtime.GOOS))).CombinedOutput() + if err != nil { + fmt.Println("test", string(out), err) + } else { + for _, example := range []string{"widgets", path.Join("quick", "calc"), path.Join("quick", "view"), path.Join("qml", "application"), path.Join("qml", "prop")} { + var before = time.Now() + + fmt.Print(example) + + exec.Command(utils.GetQtPkgPath("internal", "deploy", "deploy"), path.Join(utils.GetQtPkgPath("internal", "examples"), example)).Run() + + var sep = "\t" + if len(example) < 8 { + sep += "\t\t" + } + if len(example) >= 8 && len(example) < 17 { + sep += "\t" + } + + fmt.Printf("%v\t\t%v\n", sep, time.Since(before).String()) + } + } +} diff --git a/internal/deploy/deploy_darwin.go b/internal/deploy/deploy_darwin.go new file mode 100755 index 00000000..4cdd0e9e --- /dev/null +++ b/internal/deploy/deploy_darwin.go @@ -0,0 +1,88 @@ +package main + +import ( + "fmt" + "os" + "os/exec" + "path" + + "github.com/therecipe/qt/internal/utils" +) + +func main() { + + var appPath = os.Args[1] + var deployPath string = path.Join(appPath, "deploy_darwin") + var appName string = path.Base(appPath) + + utils.RemoveAll(deployPath) + + var out, err = exec.Command("go", "build", "-ldflags=\"-w\" \"-r=/usr/local/Qt5.5.1/5.5/clang_64/lib\"", "-o", path.Join(deployPath, fmt.Sprintf("%v.app/Contents/MacOS/%v", appName, appName)), fmt.Sprintf("%v/%v.go", appPath, appName)).CombinedOutput() + if err != nil { + fmt.Println("deploy.build", string(out), err) + } + + utils.Save(path.Join(deployPath, fmt.Sprintf("%v.app/Contents/MacOS/%v_sh", appName, appName)), macSH(appName)) + utils.Save(path.Join(deployPath, fmt.Sprintf("%v.app/Contents/MacOS/Info.plist", appName)), macPLIST(appName)) + + var macdeploy = exec.Command("/usr/local/Qt5.5.1/5.5/clang_64/bin/macdeployqt", path.Join(deployPath, fmt.Sprintf("%v.app/", appName)), fmt.Sprintf("-qmldir=%v", path.Join(appPath, "qml")), "-always-overwrite") + macdeploy.Dir = "/usr/local/Qt5.5.1/5.5/clang_64/bin/" + out, err = macdeploy.CombinedOutput() + if err != nil { + fmt.Println("deploy.qtdeploy", string(out), err) + } + + exec.Command("cp", "-R", path.Join(appPath, "qml/"), path.Join(deployPath, fmt.Sprintf("%v.app/Contents/MacOS/qml/", appName))).Run() + + exec.Command("mv", path.Join(deployPath, fmt.Sprintf("%v.app/Contents/MacOS/%v", appName, appName)), path.Join(deployPath, fmt.Sprintf("%v.app/Contents/MacOS/%v_app", appName, appName))).Run() + exec.Command("mv", path.Join(deployPath, fmt.Sprintf("%v.app/Contents/MacOS/%v_sh", appName, appName)), path.Join(deployPath, fmt.Sprintf("%v.app/Contents/MacOS/%v", appName, appName))).Run() + + exec.Command("open", path.Join(deployPath, fmt.Sprintf("%v.app/", appName))).Start() + +} + +func macSH(appName string) (o string) { + o += "#!/bin/bash\n" + o += "cd \"${0%/*}\"\n" + o += fmt.Sprintf("./%v_app", appName) + return +} + +func macPLIST(appName string) string { + return fmt.Sprintf(` + + + + CFBundleDevelopmentRegion + English + + CFBundleExecutable + %v + + CFBundleIconFile + %v.icns + + CFBundleIdentifier + com.identifier.%v + + CFBundleInfoDictionaryVersion + 6.0 + + CFBundleName + %v + + CFBundlePackageType + APPL + + CFBundleShortVersionString + 1.0.0.0 + + CFBundleVersion + 1 + + NSHighResolutionCapable + True + + +`, appName, appName, appName, appName) +} diff --git a/internal/deploy/deploy_linux.go b/internal/deploy/deploy_linux.go new file mode 100755 index 00000000..97f7b1ba --- /dev/null +++ b/internal/deploy/deploy_linux.go @@ -0,0 +1,89 @@ +package main + +import ( + "fmt" + "os" + "os/exec" + "path" + "strings" + + "github.com/therecipe/qt/internal/utils" +) + +func main() { + + var appPath = os.Args[1] + var deployPath string = path.Join(appPath, "deploy_linux") + var appName string = path.Base(appPath) + var libraryPath string + + utils.RemoveAll(deployPath) + + var out, err = exec.Command("go", "build", "-ldflags=\"-s\" \"-w\"", "-o", path.Join(deployPath, appName), fmt.Sprintf("%v/%v.go", appPath, appName)).CombinedOutput() + if err != nil { + fmt.Println("deploy.build", string(out), err) + } + + utils.Save(path.Join(deployPath, fmt.Sprintf("%v.sh", appName)), linuxSH(appName)) + + exec.Command("cp", "-R", path.Join(appPath, "qml/"), path.Join(deployPath, "qml/")).Run() + + out, err = exec.Command("ldd", path.Join(deployPath, appName)).CombinedOutput() + if err != nil { + fmt.Println("deploy.ldd", string(out), err) + } else { + for _, dep := range strings.Split(string(out), "\n") { + if strings.Contains(dep, "libQt5") || strings.Contains(dep, "libicu") { + var libraryP, libName = path.Split(strings.Split(dep, " ")[2]) + libraryPath = libraryP + exec.Command("cp", "-L", path.Join(libraryPath, libName), path.Join(deployPath, libName)).Run() + } + } + + exec.Command("cp", "-L", path.Join(libraryPath, "libQt5DBus.so.5"), path.Join(deployPath, "libQt5DBus.so.5")).Run() + exec.Command("cp", "-L", path.Join(libraryPath, "libQt5XcbQpa.so.5"), path.Join(deployPath, "libQt5XcbQpa.so.5")).Run() + exec.Command("cp", "-L", path.Join(libraryPath, "libQt5Quick.so.5"), path.Join(deployPath, "libQt5Quick.so.5")).Run() + + libraryPath = strings.TrimSuffix(libraryPath, "lib/") + + exec.Command("cp", "-R", path.Join(libraryPath, "qml/"), deployPath).Run() + + utils.MakeFolder(path.Join(deployPath, "platforms")) + exec.Command("cp", "-L", path.Join(libraryPath, "plugins", "platforms", "libqxcb.so"), path.Join(deployPath, "platforms", "libqxcb.so")).Run() + + utils.MakeFolder(path.Join(deployPath, "platformthemes")) + exec.Command("cp", "-L", path.Join(libraryPath, "plugins", "platformthemes", "libqgtk2.so"), path.Join(deployPath, "platformthemes", "libqgtk2.so")).Run() + + utils.MakeFolder(path.Join(deployPath, "xcbglintegrations")) + exec.Command("cp", "-L", path.Join(libraryPath, "plugins", "xcbglintegrations", "libqxcb-glx-integration.so"), path.Join(deployPath, "xcbglintegrations", "libqxcb-glx-integration.so")).Run() + + } + + var cmd = exec.Command(path.Join(deployPath, fmt.Sprintf("%v.sh", appName))) + cmd.Dir = deployPath + cmd.Start() +} + +func linuxSH(appName string) (o string) { + + o += "#!/bin/sh\n" + o += "appname=`basename $0 | sed s,\\.sh$,,`\n\n" + o += "dirname=`dirname $0`\n" + o += "tmp=\"${dirname#?}\"\n\n" + o += "if [ \"${dirname%$tmp}\" != \"/\" ]; then\n" + o += "dirname=$PWD/$dirname\n" + o += "fi\n" + + o += "LD_LIBRARY_PATH=$dirname\n" + o += "export LD_LIBRARY_PATH\n" + + o += "QML_IMPORT_PATH=$dirname/\"qml\"\n" + o += "export QML_IMPORT_PATH\n" + + o += "QML2_IMPORT_PATH=$dirname/\"qml\"\n" + o += "export QML2_IMPORT_PATH\n" + + o += "$dirname/$appname \"$@\"\n" + + return +} diff --git a/internal/deploy/deploy_windows.go b/internal/deploy/deploy_windows.go new file mode 100755 index 00000000..e57987e0 --- /dev/null +++ b/internal/deploy/deploy_windows.go @@ -0,0 +1,33 @@ +package main + +import ( + "fmt" + "os" + "os/exec" + "path" + + "github.com/therecipe/qt/internal/utils" +) + +func main() { + + var appPath = os.Args[1] + var deployPath string = path.Join(appPath, "deploy_windows") + var appName string = path.Base(appPath) + + utils.RemoveAll(deployPath) + + var out, err = exec.Command("go", "build", "-ldflags=\"-H=windowsgui\"", "-o", path.Join(deployPath, appName), fmt.Sprintf("%v/%v.go", appPath, appName)).CombinedOutput() + if err != nil { + fmt.Println("deploy.build", string(out), err) + } + + out, err = exec.Command("windeployqt", path.Join(deployPath, appName), fmt.Sprintf("-qmldir=%v", path.Join(appPath, "qml")), "--force").CombinedOutput() + if err != nil { + fmt.Println("deploy.qtdeploy", string(out), err) + } + + exec.Command("cp", "-R", path.Join(appPath, "qml/"), path.Join(deployPath, "qml/")).Start() + + exec.Command(path.Join(deployPath, appName)) +} diff --git a/internal/examples/qml/application/application.go b/internal/examples/qml/application/application.go new file mode 100755 index 00000000..34f52132 --- /dev/null +++ b/internal/examples/qml/application/application.go @@ -0,0 +1,16 @@ +package main + +import ( + "github.com/therecipe/qt/gui" + "github.com/therecipe/qt/qml" +) + +func main() { + + gui.NewQGuiApplication(0, "") + + var app = qml.NewQQmlApplicationEngine(nil) + app.Load("qml/application.qml") + + gui.QGuiApplication_Exec() +} diff --git a/internal/examples/qml/application/qml/application.qml b/internal/examples/qml/application/qml/application.qml new file mode 100755 index 00000000..e6f4d423 --- /dev/null +++ b/internal/examples/qml/application/qml/application.qml @@ -0,0 +1,113 @@ +/**************************************************************************** +** +** Copyright (C) 2015 The Qt Company Ltd. +** Contact: http://www.qt.io/licensing/ +** +** This file is part of the examples of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of The Qt Company Ltd nor the names of its +** contributors may be used to endorse or promote products derived +** from this software without specific prior written permission. +** +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick.Window 2.2 +import QtQuick 2.2 +import QtQuick.Controls 1.2 +import QtQuick.Layouts 1.0 + +ApplicationWindow { + visible: true + title: "Basic layouts" + property int margin: 11 + width: mainLayout.implicitWidth + 2 * margin + height: mainLayout.implicitHeight + 2 * margin + minimumWidth: mainLayout.Layout.minimumWidth + 2 * margin + minimumHeight: mainLayout.Layout.minimumHeight + 2 * margin + + ColumnLayout { + id: mainLayout + anchors.fill: parent + anchors.margins: margin + GroupBox { + id: rowBox + title: "Row layout" + Layout.fillWidth: true + + RowLayout { + id: rowLayout + anchors.fill: parent + TextField { + placeholderText: "This wants to grow horizontally" + Layout.fillWidth: true + } + Button { + text: "Button" + } + } + } + + GroupBox { + id: gridBox + title: "Grid layout" + Layout.fillWidth: true + + GridLayout { + id: gridLayout + rows: 3 + flow: GridLayout.TopToBottom + anchors.fill: parent + + Label { text: "Line 1" } + Label { text: "Line 2" } + Label { text: "Line 3" } + + TextField { } + TextField { } + TextField { } + + TextArea { + text: "This widget spans over three rows in the GridLayout.\n" + + "All items in the GridLayout are implicitly positioned from top to bottom." + Layout.rowSpan: 3 + Layout.fillHeight: true + Layout.fillWidth: true + } + } + } + TextArea { + id: t3 + text: "This fills the whole cell" + Layout.minimumHeight: 30 + Layout.fillHeight: true + Layout.fillWidth: true + } + } +} diff --git a/internal/examples/qml/prop/prop.go b/internal/examples/qml/prop/prop.go new file mode 100755 index 00000000..87daadfc --- /dev/null +++ b/internal/examples/qml/prop/prop.go @@ -0,0 +1,22 @@ +package main + +import ( + "fmt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/qml" +) + +func main() { + + core.NewQCoreApplication(0, "") + + var ( + component = qml.NewQQmlComponent3(qml.NewQQmlEngine(nil), "qml/prop.qml", nil) + object = component.Create(nil) + ) + + fmt.Println("Property value:", object.Property("someNumber")) + object.SetProperty("someNumber", "5000") + fmt.Println("Property value:", object.Property("someNumber")) + object.SetProperty("someNumber", "100") +} diff --git a/internal/examples/qml/prop/qml/prop.qml b/internal/examples/qml/prop/qml/prop.qml new file mode 100755 index 00000000..68e4500e --- /dev/null +++ b/internal/examples/qml/prop/qml/prop.qml @@ -0,0 +1,5 @@ +import QtQuick 2.0 + +Item { + property int someNumber: 100 +} diff --git a/internal/examples/quick/calc/calc.go b/internal/examples/quick/calc/calc.go new file mode 100755 index 00000000..d8b5ea46 --- /dev/null +++ b/internal/examples/quick/calc/calc.go @@ -0,0 +1,18 @@ +package main + +import ( + "github.com/therecipe/qt/gui" + "github.com/therecipe/qt/quick" +) + +func main() { + + gui.NewQGuiApplication(0, "") + + var view = quick.NewQQuickView(nil) + view.SetSource("qml/calc.qml") + view.SetResizeMode(quick.QQuickView__SizeRootObjectToView) + view.Show() + + gui.QGuiApplication_Exec() +} diff --git a/internal/examples/quick/calc/qml/calc.qml b/internal/examples/quick/calc/qml/calc.qml new file mode 100755 index 00000000..81f95907 --- /dev/null +++ b/internal/examples/quick/calc/qml/calc.qml @@ -0,0 +1,162 @@ +/**************************************************************************** +** +** Copyright (C) 2015 The Qt Company Ltd. +** Contact: http://www.qt.io/licensing/ +** +** This file is part of the examples of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of The Qt Company Ltd nor the names of its +** contributors may be used to endorse or promote products derived +** from this software without specific prior written permission. +** +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 +import "content" +import "content/calculator.js" as CalcEngine + + +Rectangle { + id: window + width: 320 + height: 480 + focus: true + color: "#272822" + + onWidthChanged: controller.reload() + onHeightChanged: controller.reload() + + function operatorPressed(operator) { + CalcEngine.operatorPressed(operator) + numPad.buttonPressed() + } + function digitPressed(digit) { + CalcEngine.digitPressed(digit) + numPad.buttonPressed() + } + function isButtonDisabled(op) { + return CalcEngine.disabled(op) + } + + Item { + id: pad + width: 180 + NumberPad { id: numPad; y: 10; anchors.horizontalCenter: parent.horizontalCenter } + } + + AnimationController { + id: controller + animation: ParallelAnimation { + id: anim + NumberAnimation { target: display; property: "x"; duration: 400; from: -16; to: window.width - display.width; easing.type: Easing.InOutQuad } + NumberAnimation { target: pad; property: "x"; duration: 400; from: window.width - pad.width; to: 0; easing.type: Easing.InOutQuad } + SequentialAnimation { + NumberAnimation { target: pad; property: "scale"; duration: 200; from: 1; to: 0.97; easing.type: Easing.InOutQuad } + NumberAnimation { target: pad; property: "scale"; duration: 200; from: 0.97; to: 1; easing.type: Easing.InOutQuad } + } + } + } + + Keys.onPressed: { + if (event.key == Qt.Key_0) + digitPressed("0") + else if (event.key == Qt.Key_1) + digitPressed("1") + else if (event.key == Qt.Key_2) + digitPressed("2") + else if (event.key == Qt.Key_3) + digitPressed("3") + else if (event.key == Qt.Key_4) + digitPressed("4") + else if (event.key == Qt.Key_5) + digitPressed("5") + else if (event.key == Qt.Key_6) + digitPressed("6") + else if (event.key == Qt.Key_7) + digitPressed("7") + else if (event.key == Qt.Key_8) + digitPressed("8") + else if (event.key == Qt.Key_9) + digitPressed("9") + else if (event.key == Qt.Key_Plus) + operatorPressed("+") + else if (event.key == Qt.Key_Minus) + operatorPressed("−") + else if (event.key == Qt.Key_Asterisk) + operatorPressed("×") + else if (event.key == Qt.Key_Slash) + operatorPressed("÷") + else if (event.key == Qt.Key_Enter || event.key == Qt.Key_Return) + operatorPressed("=") + else if (event.key == Qt.Key_Comma || event.key == Qt.Key_Period) + digitPressed(".") + else if (event.key == Qt.Key_Backspace) + operatorPressed("backspace") + } + + Display { + id: display + x: -16 + width: window.width - pad.width + height: parent.height + + MouseArea { + property real startX: 0 + property real oldP: 0 + property bool rewind: false + + anchors { + bottom: parent.bottom + left: parent.left + right: parent.right + } + height: 50 + onPositionChanged: { + var reverse = startX > window.width / 2 + var mx = mapToItem(window, mouse.x).x + var p = Math.abs((mx - startX) / (window.width - display.width)) + if (p < oldP) + rewind = reverse ? false : true + else + rewind = reverse ? true : false + controller.progress = reverse ? 1 - p : p + oldP = p + } + onPressed: startX = mapToItem(window, mouse.x).x + onReleased: { + if (rewind) + controller.completeToBeginning() + else + controller.completeToEnd() + } + } + } + +} diff --git a/internal/examples/quick/calc/qml/content/Button.qml b/internal/examples/quick/calc/qml/content/Button.qml new file mode 100755 index 00000000..9c5c6ecf --- /dev/null +++ b/internal/examples/quick/calc/qml/content/Button.qml @@ -0,0 +1,94 @@ +/**************************************************************************** +** +** Copyright (C) 2015 The Qt Company Ltd. +** Contact: http://www.qt.io/licensing/ +** +** This file is part of the examples of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of The Qt Company Ltd nor the names of its +** contributors may be used to endorse or promote products derived +** from this software without specific prior written permission. +** +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 + +Item { + id: button + property alias text: textItem.text + property color color: "#eceeea" + + property bool operator: false + property bool dimmable: false + property bool dimmed: false + + width: 30 + height: 50 + + Text { + id: textItem + font.pixelSize: 48 + wrapMode: Text.WordWrap + lineHeight: 0.75 + color: (dimmable && dimmed) ? Qt.darker(button.color) : button.color + Behavior on color { ColorAnimation { duration: 120; easing.type: Easing.OutElastic} } + states: [ + State { + name: "pressed" + when: mouse.pressed && !dimmed + PropertyChanges { + target: textItem + color: Qt.lighter(button.color) + } + } + ] + } + + MouseArea { + id: mouse + anchors.fill: parent + anchors.margins: -5 + onClicked: { + if (operator) + window.operatorPressed(parent.text) + else + window.digitPressed(parent.text) + } + } + + function updateDimmed() { + dimmed = window.isButtonDisabled(button.text) + } + + Component.onCompleted: { + numPad.buttonPressed.connect(updateDimmed) + updateDimmed() + } +} diff --git a/internal/examples/quick/calc/qml/content/Display.qml b/internal/examples/quick/calc/qml/content/Display.qml new file mode 100755 index 00000000..cf93d878 --- /dev/null +++ b/internal/examples/quick/calc/qml/content/Display.qml @@ -0,0 +1,193 @@ +/**************************************************************************** +** +** Copyright (C) 2015 The Qt Company Ltd. +** Contact: http://www.qt.io/licensing/ +** +** This file is part of the examples of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of The Qt Company Ltd nor the names of its +** contributors may be used to endorse or promote products derived +** from this software without specific prior written permission. +** +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 +import QtQuick.Window 2.0 + +Item { + id: display + property real fontSize: Math.floor(Screen.pixelDensity * 5.0) + property bool enteringDigits: false + property int maxDigits: (width / fontSize) + 1 + property string displayedOperand + property string errorString: qsTr("ERROR") + property bool isError: displayedOperand === errorString + + function displayOperator(operator) + { + listView.model.append({ "operator": operator, "operand": "" }) + enteringDigits = true + listView.positionViewAtEnd() + } + + function newLine(operator, operand) + { + displayedOperand = displayNumber(operand) + listView.model.append({ "operator": operator, "operand": displayedOperand }) + enteringDigits = false + listView.positionViewAtEnd() + } + + function appendDigit(digit) + { + if (!enteringDigits) + listView.model.append({ "operator": "", "operand": "" }) + var i = listView.model.count - 1; + listView.model.get(i).operand = listView.model.get(i).operand + digit; + enteringDigits = true + listView.positionViewAtEnd() + } + + function setDigit(digit) + { + var i = listView.model.count - 1; + listView.model.get(i).operand = digit; + listView.positionViewAtEnd() + } + + function clear() + { + displayedOperand = "" + if (enteringDigits) { + var i = listView.model.count - 1 + if (i >= 0) + listView.model.remove(i) + enteringDigits = false + } + } + + // Returns a string representation of a number that fits in + // display.maxDigits characters, trying to keep as much precision + // as possible. If the number cannot be displayed, returns an + // error string. + function displayNumber(num) { + if (typeof(num) != "number") + return errorString; + + var intNum = parseInt(num); + var intLen = intNum.toString().length; + + // Do not count the minus sign as a digit + var maxLen = num < 0 ? maxDigits + 1 : maxDigits; + + if (num.toString().length <= maxLen) { + if (isFinite(num)) + return num.toString(); + return errorString; + } + + // Integer part of the number is too long - try + // an exponential notation + if (intNum == num || intLen > maxLen - 3) { + var expVal = num.toExponential(maxDigits - 6).toString(); + if (expVal.length <= maxLen) + return expVal; + } + + // Try a float presentation with fixed number of digits + var floatStr = parseFloat(num).toFixed(maxDigits - intLen - 1).toString(); + if (floatStr.length <= maxLen) + return floatStr; + + return errorString; + } + + Item { + id: theItem + width: parent.width + 32 + height: parent.height + + Rectangle { + id: rect + x: 16 + color: "white" + height: parent.height + width: display.width - 16 + } + Image { + anchors.right: rect.left + source: "images/paper-edge-left.png" + height: parent.height + fillMode: Image.TileVertically + } + Image { + anchors.left: rect.right + source: "images/paper-edge-right.png" + height: parent.height + fillMode: Image.TileVertically + } + + Image { + id: grip + source: "images/paper-grip.png" + anchors.horizontalCenter: parent.horizontalCenter + anchors.bottom: parent.bottom + anchors.bottomMargin: 20 + } + + ListView { + id: listView + x: 16; y: 30 + width: display.width + height: display.height - 50 - y + delegate: Item { + height: display.fontSize * 1.1 + width: parent.width + Text { + id: operator + x: 6 + font.pixelSize: display.fontSize + color: "#6da43d" + text: model.operator + } + Text { + id: operand + font.pixelSize: display.fontSize + anchors.right: parent.right + anchors.rightMargin: 22 + text: model.operand + } + } + model: ListModel { } + } + + } + +} diff --git a/internal/examples/quick/calc/qml/content/NumberPad.qml b/internal/examples/quick/calc/qml/content/NumberPad.qml new file mode 100755 index 00000000..6e7d441d --- /dev/null +++ b/internal/examples/quick/calc/qml/content/NumberPad.qml @@ -0,0 +1,71 @@ +/**************************************************************************** +** +** Copyright (C) 2015 The Qt Company Ltd. +** Contact: http://www.qt.io/licensing/ +** +** This file is part of the examples of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of The Qt Company Ltd nor the names of its +** contributors may be used to endorse or promote products derived +** from this software without specific prior written permission. +** +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 + +Grid { + columns: 3 + columnSpacing: 32 + rowSpacing: 16 + + signal buttonPressed + + Button { text: "7" } + Button { text: "8" } + Button { text: "9" } + Button { text: "4" } + Button { text: "5" } + Button { text: "6" } + Button { text: "1" } + Button { text: "2" } + Button { text: "3" } + Button { text: "0" } + Button { text: "."; dimmable: true } + Button { text: " " } + Button { text: "±"; color: "#6da43d"; operator: true; dimmable: true } + Button { text: "−"; color: "#6da43d"; operator: true; dimmable: true } + Button { text: "+"; color: "#6da43d"; operator: true; dimmable: true } + Button { text: "√"; color: "#6da43d"; operator: true; dimmable: true } + Button { text: "÷"; color: "#6da43d"; operator: true; dimmable: true } + Button { text: "×"; color: "#6da43d"; operator: true; dimmable: true } + Button { text: "C"; color: "#6da43d"; operator: true } + Button { text: " "; color: "#6da43d"; operator: true } + Button { text: "="; color: "#6da43d"; operator: true; dimmable: true } +} diff --git a/internal/examples/quick/calc/qml/content/calculator.js b/internal/examples/quick/calc/qml/content/calculator.js new file mode 100755 index 00000000..496a93ba --- /dev/null +++ b/internal/examples/quick/calc/qml/content/calculator.js @@ -0,0 +1,151 @@ +/**************************************************************************** +** +** Copyright (C) 2015 The Qt Company Ltd. +** Contact: http://www.qt.io/licensing/ +** +** This file is part of the examples of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of The Qt Company Ltd nor the names of its +** contributors may be used to endorse or promote products derived +** from this software without specific prior written permission. +** +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +var curVal = 0 +var memory = 0 +var lastOp = "" +var previousOperator = "" +var digits = "" + +function disabled(op) { + if (digits == "" && !((op >= "0" && op <= "9") || op == ".")) + return true + else if (op == '=' && previousOperator.length != 1) + return true + else if (op == "." && digits.toString().search(/\./) != -1) { + return true + } else if (op == "√" && digits.toString().search(/-/) != -1) { + return true + } else { + return false + } +} + +function digitPressed(op) +{ + if (disabled(op)) + return + if (digits.toString().length >= display.maxDigits) + return + if (lastOp.toString().length == 1 && ((lastOp >= "0" && lastOp <= "9") || lastOp == ".") ) { + digits = digits + op.toString() + display.appendDigit(op.toString()) + } else { + digits = op + display.appendDigit(op.toString()) + } + lastOp = op +} + +function operatorPressed(op) +{ + if (disabled(op)) + return + lastOp = op + + if (op == "±") { + digits = Number(digits.valueOf() * -1) + display.setDigit(display.displayNumber(digits)) + return + } + + if (previousOperator == "+") { + digits = Number(digits.valueOf()) + Number(curVal.valueOf()) + } else if (previousOperator == "−") { + digits = Number(curVal.valueOf()) - Number(digits.valueOf()) + } else if (previousOperator == "×") { + digits = Number(curVal) * Number(digits.valueOf()) + } else if (previousOperator == "÷") { + digits = Number(curVal) / Number(digits.valueOf()) + } + + if (op == "+" || op == "−" || op == "×" || op == "÷") { + previousOperator = op + curVal = digits.valueOf() + digits = "" + display.displayOperator(previousOperator) + return + } + + if (op == "=") { + display.newLine("=", digits.valueOf()) + } + + curVal = 0 + previousOperator = "" + + if (op == "1/x") { + digits = (1 / digits.valueOf()).toString() + } else if (op == "x^2") { + digits = (digits.valueOf() * digits.valueOf()).toString() + } else if (op == "Abs") { + digits = (Math.abs(digits.valueOf())).toString() + } else if (op == "Int") { + digits = (Math.floor(digits.valueOf())).toString() + } else if (op == "√") { + digits = Number(Math.sqrt(digits.valueOf())) + display.newLine("√", digits.valueOf()) + } else if (op == "mc") { + memory = 0; + } else if (op == "m+") { + memory += digits.valueOf() + } else if (op == "mr") { + digits = memory.toString() + } else if (op == "m-") { + memory = digits.valueOf() + } else if (op == "backspace") { + digits = digits.toString().slice(0, -1) + display.clear() + display.appendDigit(digits) + } else if (op == "Off") { + Qt.quit(); + } + + // Reset the state on 'C' operator or after + // an error occurred + if (op == "C" || display.isError) { + display.clear() + curVal = 0 + memory = 0 + lastOp = "" + digits = "" + } +} + diff --git a/internal/examples/quick/calc/qml/content/images/paper-edge-left.png b/internal/examples/quick/calc/qml/content/images/paper-edge-left.png new file mode 100755 index 00000000..ca29a3ae Binary files /dev/null and b/internal/examples/quick/calc/qml/content/images/paper-edge-left.png differ diff --git a/internal/examples/quick/calc/qml/content/images/paper-edge-right.png b/internal/examples/quick/calc/qml/content/images/paper-edge-right.png new file mode 100755 index 00000000..7c2da7b9 Binary files /dev/null and b/internal/examples/quick/calc/qml/content/images/paper-edge-right.png differ diff --git a/internal/examples/quick/calc/qml/content/images/paper-grip.png b/internal/examples/quick/calc/qml/content/images/paper-grip.png new file mode 100755 index 00000000..953c408b Binary files /dev/null and b/internal/examples/quick/calc/qml/content/images/paper-grip.png differ diff --git a/internal/examples/quick/view/qml/view.qml b/internal/examples/quick/view/qml/view.qml new file mode 100755 index 00000000..d1f1a0d1 --- /dev/null +++ b/internal/examples/quick/view/qml/view.qml @@ -0,0 +1,15 @@ +import QtQuick 2.0 + +Rectangle { + id: page + width: 320; height: 480 + color: "lightgray" + + Text { + id: helloText + text: "Hello world!" + y: 30 + anchors.horizontalCenter: page.horizontalCenter + font.pointSize: 24; font.bold: true + } +} diff --git a/internal/examples/quick/view/view.go b/internal/examples/quick/view/view.go new file mode 100755 index 00000000..41b8599c --- /dev/null +++ b/internal/examples/quick/view/view.go @@ -0,0 +1,18 @@ +package main + +import ( + "github.com/therecipe/qt/gui" + "github.com/therecipe/qt/quick" +) + +func main() { + + gui.NewQGuiApplication(0, "") + + var view = quick.NewQQuickView(nil) + view.SetSource("qml/view.qml") + view.SetResizeMode(quick.QQuickView__SizeRootObjectToView) + view.Show() + + gui.QGuiApplication_Exec() +} diff --git a/internal/examples/widgets/widgets.go b/internal/examples/widgets/widgets.go new file mode 100755 index 00000000..475828dc --- /dev/null +++ b/internal/examples/widgets/widgets.go @@ -0,0 +1,172 @@ +//original: http://doc.qt.io/qt-5/qtwidgets-widgets-lineedits-example.html + +package main + +import ( + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "github.com/therecipe/qt/widgets" +) + +func main() { + widgets.NewQApplication(0, "") + + var ( + echoGroup = widgets.NewQGroupBox2("Echo", nil) + echoLabel = widgets.NewQLabel2("Mode", nil, 0) + echoComboBox = widgets.NewQComboBox(nil) + echoLineEdit = widgets.NewQLineEdit(nil) + ) + echoComboBox.AddItems([]string{"Normal", "Password", "PasswordEchoOnEdit", "No Echo"}) + echoLineEdit.SetPlaceholderText("Placeholder Text") + + var ( + validatorGroup = widgets.NewQGroupBox2("Validator", nil) + validatorLabel = widgets.NewQLabel2("Type:", nil, 0) + validatorComboBox = widgets.NewQComboBox(nil) + validatorLineEdit = widgets.NewQLineEdit(nil) + ) + validatorComboBox.AddItems([]string{"No validator", "Integer validator", "Double validator"}) + validatorLineEdit.SetPlaceholderText("Placeholder Text") + + var ( + alignmentGroup = widgets.NewQGroupBox2("Alignment", nil) + alignmentLabel = widgets.NewQLabel2("Type:", nil, 0) + alignmentComboBox = widgets.NewQComboBox(nil) + alignmentLineEdit = widgets.NewQLineEdit(nil) + ) + alignmentComboBox.AddItems([]string{"Left", "Centered", "Right"}) + alignmentLineEdit.SetPlaceholderText("Placeholder Text") + + var ( + inputMaskGroup = widgets.NewQGroupBox2("Input mask", nil) + inputMaskLabel = widgets.NewQLabel2("Type:", nil, 0) + inputMaskComboBox = widgets.NewQComboBox(nil) + inputMaskLineEdit = widgets.NewQLineEdit(nil) + ) + inputMaskComboBox.AddItems([]string{"No mask", "Phone number", "ISO date", "License key"}) + inputMaskLineEdit.SetPlaceholderText("Placeholder Text") + + var ( + accessGroup = widgets.NewQGroupBox2("Access", nil) + accessLabel = widgets.NewQLabel2("Read-only:", nil, 0) + accessComboBox = widgets.NewQComboBox(nil) + accessLineEdit = widgets.NewQLineEdit(nil) + ) + accessComboBox.AddItems([]string{"False", "True"}) + accessLineEdit.SetPlaceholderText("Placeholder Text") + + echoComboBox.ConnectCurrentIndexChanged(func(index int) { echoChanged(echoLineEdit, index) }) + validatorComboBox.ConnectCurrentIndexChanged(func(index int) { validatorChanged(validatorLineEdit, index) }) + alignmentComboBox.ConnectCurrentIndexChanged(func(index int) { alignmentChanged(alignmentLineEdit, index) }) + inputMaskComboBox.ConnectCurrentIndexChanged(func(index int) { inputMaskChanged(inputMaskLineEdit, index) }) + accessComboBox.ConnectCurrentIndexChanged(func(index int) { accessChanged(accessLineEdit, index) }) + + var echoLayout = widgets.NewQGridLayout2() + echoLayout.AddWidget(echoLabel, 0, 0, 0) + echoLayout.AddWidget(echoComboBox, 0, 1, 0) + echoLayout.AddWidget2(echoLineEdit, 1, 0, 1, 2, 0) + echoGroup.SetLayout(echoLayout) + + var validatorLayout = widgets.NewQGridLayout2() + validatorLayout.AddWidget(validatorLabel, 0, 0, 0) + validatorLayout.AddWidget(validatorComboBox, 0, 1, 0) + validatorLayout.AddWidget2(validatorLineEdit, 1, 0, 1, 2, 0) + validatorGroup.SetLayout(validatorLayout) + + var alignmentLayout = widgets.NewQGridLayout2() + alignmentLayout.AddWidget(alignmentLabel, 0, 0, 0) + alignmentLayout.AddWidget(alignmentComboBox, 0, 1, 0) + alignmentLayout.AddWidget2(alignmentLineEdit, 1, 0, 1, 2, 0) + alignmentGroup.SetLayout(alignmentLayout) + + var inputMaskLayout = widgets.NewQGridLayout2() + inputMaskLayout.AddWidget(inputMaskLabel, 0, 0, 0) + inputMaskLayout.AddWidget(inputMaskComboBox, 0, 1, 0) + inputMaskLayout.AddWidget2(inputMaskLineEdit, 1, 0, 1, 2, 0) + inputMaskGroup.SetLayout(inputMaskLayout) + + var accessLayout = widgets.NewQGridLayout2() + accessLayout.AddWidget(accessLabel, 0, 0, 0) + accessLayout.AddWidget(accessComboBox, 0, 1, 0) + accessLayout.AddWidget2(accessLineEdit, 1, 0, 1, 2, 0) + accessGroup.SetLayout(accessLayout) + + var layout = widgets.NewQGridLayout2() + layout.AddWidget(echoGroup, 0, 0, 0) + layout.AddWidget(validatorGroup, 1, 0, 0) + layout.AddWidget(alignmentGroup, 2, 0, 0) + layout.AddWidget(inputMaskGroup, 0, 1, 0) + layout.AddWidget(accessGroup, 1, 1, 0) + + var window = widgets.NewQMainWindow(nil, 0) + window.Layout().DestroyQObject() + window.SetLayout(layout) + + window.SetWindowTitle("Line Edits") + + window.Show() + + widgets.QApplication_Exec() +} + +func echoChanged(echoLineEdit *widgets.QLineEdit, index int) { + switch index { + case 0: + echoLineEdit.SetEchoMode(widgets.QLineEdit__Normal) + case 1: + echoLineEdit.SetEchoMode(widgets.QLineEdit__Password) + case 2: + echoLineEdit.SetEchoMode(widgets.QLineEdit__PasswordEchoOnEdit) + case 3: + echoLineEdit.SetEchoMode(widgets.QLineEdit__NoEcho) + } +} + +func validatorChanged(validatorLineEdit *widgets.QLineEdit, index int) { + switch index { + case 0: + validatorLineEdit.SetValidator(nil) + case 1: + validatorLineEdit.SetValidator(gui.NewQIntValidator(validatorLineEdit)) + case 2: + validatorLineEdit.SetValidator(gui.NewQDoubleValidator(validatorLineEdit)) //TODO: MIN MAX + } + + validatorLineEdit.Clear() +} + +func alignmentChanged(alignmentLineEdit *widgets.QLineEdit, index int) { + switch index { + case 0: + alignmentLineEdit.SetAlignment(core.Qt__AlignLeft) + case 1: + alignmentLineEdit.SetAlignment(core.Qt__AlignCenter) + case 2: + alignmentLineEdit.SetAlignment(core.Qt__AlignRight) + } +} + +func inputMaskChanged(inputMaskLineEdit *widgets.QLineEdit, index int) { + switch index { + case 0: + inputMaskLineEdit.SetInputMask("") + case 1: + inputMaskLineEdit.SetInputMask("+99 99 99 99 99;_") + case 2: + inputMaskLineEdit.SetInputMask("0000-00-00") + inputMaskLineEdit.SetText("00000000") + inputMaskLineEdit.SetCursorPosition(0) + case 3: + inputMaskLineEdit.SetInputMask(">AAAAA-AAAAA-AAAAA-AAAAA-AAAAA;#") + } +} + +func accessChanged(accessLineEdit *widgets.QLineEdit, index int) { + switch index { + case 0: + accessLineEdit.SetReadOnly(false) + case 1: + accessLineEdit.SetReadOnly(true) + } +} diff --git a/internal/utils/file.go b/internal/utils/file.go new file mode 100755 index 00000000..86e7ae6a --- /dev/null +++ b/internal/utils/file.go @@ -0,0 +1,36 @@ +package utils + +import ( + "fmt" + "io/ioutil" + "os" +) + +func MakeFolder(dir string) { + var err = os.MkdirAll(dir, 0777) + if err != nil { + fmt.Println("file.MakeFolder", err) + } +} + +func RemoveAll(name string) { + var err = os.RemoveAll(name) + if err != nil { + fmt.Println("file.RemoveAll", err) + } +} + +func Save(name, data string) { + var err = ioutil.WriteFile(name, []byte(data), 0777) + if err != nil { + fmt.Println("file.Save", err) + } +} + +func Load(name string) string { + var b, err = ioutil.ReadFile(name) + if err != nil { + fmt.Println("file.Load", err) + } + return string(b) +} diff --git a/internal/utils/file_test.go b/internal/utils/file_test.go new file mode 100755 index 00000000..f7d08fbd --- /dev/null +++ b/internal/utils/file_test.go @@ -0,0 +1,31 @@ +package utils + +import ( + "io/ioutil" + "testing" +) + +func TestMakeFolder(t *testing.T) { + var dir = "TestFolder/" + defer RemoveAll(dir) + + MakeFolder(dir) + + if _, err := ioutil.ReadDir(dir); err != nil { + t.Error(err) + } +} + +func TestSaveLoad(t *testing.T) { + var ( + check = "TEST STRING FOR TEST FILE" + file = "TestFile.txt" + ) + defer RemoveAll(file) + + Save(file, check) + + if output := Load(file); output != check { + t.Errorf("%v != %v", output, check) + } +} diff --git a/internal/utils/path.go b/internal/utils/path.go new file mode 100755 index 00000000..c62e71a4 --- /dev/null +++ b/internal/utils/path.go @@ -0,0 +1,10 @@ +package utils + +import ( + "os" + "path" +) + +func GetQtPkgPath(s ...string) string { + return path.Join(os.Getenv("GOPATH"), "src", "github.com", "therecipe", "qt", path.Join(s...)) +} diff --git a/internal/utils/path_test.go b/internal/utils/path_test.go new file mode 100755 index 00000000..fba4acf1 --- /dev/null +++ b/internal/utils/path_test.go @@ -0,0 +1,15 @@ +package utils + +import ( + "os" + "testing" +) + +func TestGetQtPath(t *testing.T) { + os.Setenv("GOPATH", "/Users/HOME/golang/") + var check = "/Users/HOME/golang/src/github.com/therecipe/qt" + + if r := GetQtPkgPath(); r != check { + t.Errorf("%v != %v", r, check) + } +} diff --git a/location/cgo_darwin_amd64.go b/location/cgo_darwin_amd64.go new file mode 100755 index 00000000..29eba216 --- /dev/null +++ b/location/cgo_darwin_amd64.go @@ -0,0 +1,13 @@ +package location + +/* +#cgo CPPFLAGS: -pipe -O2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 -Wall -W +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_POSITIONING_LIB -DQT_QML_LIB -DQT_QUICK_LIB -DQT_LOCATION_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/mkspecs/macx-clang -F/usr/local/Qt5.5.1/5.5/clang_64/lib +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtCore.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtGui.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtNetwork.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtPositioning.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtQml.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtQuick.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtLocation.framework/Headers +#cgo CPPFLAGS: -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.framework/Headers + +#cgo LDFLAGS: -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 +#cgo LDFLAGS: -F/usr/local/Qt5.5.1/5.5/clang_64/lib -framework QtCore -framework QtGui -framework QtNetwork -framework QtPositioning -framework QtQml -framework QtQuick -framework QtLocation -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL +*/ +import "C" diff --git a/location/cgo_linux_386.go b/location/cgo_linux_386.go new file mode 100755 index 00000000..4f3e31b6 --- /dev/null +++ b/location/cgo_linux_386.go @@ -0,0 +1,12 @@ +package location + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_POSITIONING_LIB -DQT_QML_LIB -DQT_QUICK_LIB -DQT_LOCATION_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include -I/usr/local/Qt5.5.1/5.5/gcc/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc/include/QtGui -I/usr/local/Qt5.5.1/5.5/gcc/include/QtNetwork -I/usr/local/Qt5.5.1/5.5/gcc/include/QtPositioning -I/usr/local/Qt5.5.1/5.5/gcc/include/QtQml -I/usr/local/Qt5.5.1/5.5/gcc/include/QtQuick -I/usr/local/Qt5.5.1/5.5/gcc/include/QtLocation + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc/lib -L/usr/lib -lQt5Core -lQt5Gui -lQt5Network -lQt5Positioning -lQt5Qml -lQt5Quick -lQt5Location -lpthread +*/ +import "C" diff --git a/location/cgo_linux_amd64.go b/location/cgo_linux_amd64.go new file mode 100755 index 00000000..4e7358a4 --- /dev/null +++ b/location/cgo_linux_amd64.go @@ -0,0 +1,12 @@ +package location + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_POSITIONING_LIB -DQT_QML_LIB -DQT_QUICK_LIB -DQT_LOCATION_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include -I/usr/local/Qt5.5.1/5.5/gcc_64/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtGui -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtNetwork -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtPositioning -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtQml -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtQuick -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtLocation + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc_64/lib -L/usr/lib64 -lQt5Core -lQt5Gui -lQt5Network -lQt5Positioning -lQt5Qml -lQt5Quick -lQt5Location -lpthread +*/ +import "C" diff --git a/location/cgo_windows_386.go b/location/cgo_windows_386.go new file mode 100755 index 00000000..9b9120c5 --- /dev/null +++ b/location/cgo_windows_386.go @@ -0,0 +1,12 @@ +package location + +/* +#cgo CPPFLAGS: -pipe -fno-keep-inline-dllexport -O2 -Wall -Wextra -fexceptions -mthreads +#cgo CPPFLAGS: -DUNICODE -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_POSITIONING_LIB -DQT_QML_LIB -DQT_QUICK_LIB -DQT_LOCATION_LIB +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include -IC:/Qt/Qt5.5.1/5.5/mingw492_32/mkspecs/win32-g++ +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtCore -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtGui -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtNetwork -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtPositioning -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtQml -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtQuick -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtLocation + +#cgo LDFLAGS: -Wl,-s -Wl,-subsystem,windows -mthreads +#cgo LDFLAGS: -LC:/Qt/Qt5.5.1/5.5/mingw492_32/bin -lQt5Core -lQt5Gui -lQt5Network -lQt5Positioning -lQt5Qml -lQt5Quick -lQt5Location +*/ +import "C" diff --git a/location/qgeocodereply.cpp b/location/qgeocodereply.cpp new file mode 100755 index 00000000..8e90aa33 --- /dev/null +++ b/location/qgeocodereply.cpp @@ -0,0 +1,7 @@ +#include "qgeocodereply.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qgeocodereply.go b/location/qgeocodereply.go new file mode 100755 index 00000000..66c25b4b --- /dev/null +++ b/location/qgeocodereply.go @@ -0,0 +1,51 @@ +package location + +//#include "qgeocodereply.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGeoCodeReply struct { + core.QObject +} + +type QGeoCodeReplyITF interface { + core.QObjectITF + QGeoCodeReplyPTR() *QGeoCodeReply +} + +func PointerFromQGeoCodeReply(ptr QGeoCodeReplyITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGeoCodeReplyPTR().Pointer() + } + return nil +} + +func QGeoCodeReplyFromPointer(ptr unsafe.Pointer) *QGeoCodeReply { + var n = new(QGeoCodeReply) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGeoCodeReply_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGeoCodeReply) QGeoCodeReplyPTR() *QGeoCodeReply { + return ptr +} + +//QGeoCodeReply::Error +type QGeoCodeReply__Error int + +var ( + QGeoCodeReply__NoError = QGeoCodeReply__Error(0) + QGeoCodeReply__EngineNotSetError = QGeoCodeReply__Error(1) + QGeoCodeReply__CommunicationError = QGeoCodeReply__Error(2) + QGeoCodeReply__ParseError = QGeoCodeReply__Error(3) + QGeoCodeReply__UnsupportedOptionError = QGeoCodeReply__Error(4) + QGeoCodeReply__CombinationError = QGeoCodeReply__Error(5) + QGeoCodeReply__UnknownError = QGeoCodeReply__Error(6) +) diff --git a/location/qgeocodereply.h b/location/qgeocodereply.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qgeocodereply.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qgeocodingmanager.cpp b/location/qgeocodingmanager.cpp new file mode 100755 index 00000000..66c0f84e --- /dev/null +++ b/location/qgeocodingmanager.cpp @@ -0,0 +1,7 @@ +#include "qgeocodingmanager.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qgeocodingmanager.go b/location/qgeocodingmanager.go new file mode 100755 index 00000000..d3c01475 --- /dev/null +++ b/location/qgeocodingmanager.go @@ -0,0 +1,38 @@ +package location + +//#include "qgeocodingmanager.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGeoCodingManager struct { + core.QObject +} + +type QGeoCodingManagerITF interface { + core.QObjectITF + QGeoCodingManagerPTR() *QGeoCodingManager +} + +func PointerFromQGeoCodingManager(ptr QGeoCodingManagerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGeoCodingManagerPTR().Pointer() + } + return nil +} + +func QGeoCodingManagerFromPointer(ptr unsafe.Pointer) *QGeoCodingManager { + var n = new(QGeoCodingManager) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGeoCodingManager_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGeoCodingManager) QGeoCodingManagerPTR() *QGeoCodingManager { + return ptr +} diff --git a/location/qgeocodingmanager.h b/location/qgeocodingmanager.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qgeocodingmanager.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qgeocodingmanagerengine.cpp b/location/qgeocodingmanagerengine.cpp new file mode 100755 index 00000000..71ba60ae --- /dev/null +++ b/location/qgeocodingmanagerengine.cpp @@ -0,0 +1,7 @@ +#include "qgeocodingmanagerengine.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qgeocodingmanagerengine.go b/location/qgeocodingmanagerengine.go new file mode 100755 index 00000000..4f9e2359 --- /dev/null +++ b/location/qgeocodingmanagerengine.go @@ -0,0 +1,38 @@ +package location + +//#include "qgeocodingmanagerengine.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGeoCodingManagerEngine struct { + core.QObject +} + +type QGeoCodingManagerEngineITF interface { + core.QObjectITF + QGeoCodingManagerEnginePTR() *QGeoCodingManagerEngine +} + +func PointerFromQGeoCodingManagerEngine(ptr QGeoCodingManagerEngineITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGeoCodingManagerEnginePTR().Pointer() + } + return nil +} + +func QGeoCodingManagerEngineFromPointer(ptr unsafe.Pointer) *QGeoCodingManagerEngine { + var n = new(QGeoCodingManagerEngine) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGeoCodingManagerEngine_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGeoCodingManagerEngine) QGeoCodingManagerEnginePTR() *QGeoCodingManagerEngine { + return ptr +} diff --git a/location/qgeocodingmanagerengine.h b/location/qgeocodingmanagerengine.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qgeocodingmanagerengine.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qgeomaneuver.cpp b/location/qgeomaneuver.cpp new file mode 100755 index 00000000..55d2b4d0 --- /dev/null +++ b/location/qgeomaneuver.cpp @@ -0,0 +1,61 @@ +#include "qgeomaneuver.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGeoManeuver: public QGeoManeuver { +public: +}; + +QtObjectPtr QGeoManeuver_NewQGeoManeuver(){ + return new QGeoManeuver(); +} + +QtObjectPtr QGeoManeuver_NewQGeoManeuver2(QtObjectPtr other){ + return new QGeoManeuver(*static_cast(other)); +} + +int QGeoManeuver_Direction(QtObjectPtr ptr){ + return static_cast(ptr)->direction(); +} + +char* QGeoManeuver_InstructionText(QtObjectPtr ptr){ + return static_cast(ptr)->instructionText().toUtf8().data(); +} + +int QGeoManeuver_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +void QGeoManeuver_SetDirection(QtObjectPtr ptr, int direction){ + static_cast(ptr)->setDirection(static_cast(direction)); +} + +void QGeoManeuver_SetInstructionText(QtObjectPtr ptr, char* instructionText){ + static_cast(ptr)->setInstructionText(QString(instructionText)); +} + +void QGeoManeuver_SetPosition(QtObjectPtr ptr, QtObjectPtr position){ + static_cast(ptr)->setPosition(*static_cast(position)); +} + +void QGeoManeuver_SetTimeToNextInstruction(QtObjectPtr ptr, int secs){ + static_cast(ptr)->setTimeToNextInstruction(secs); +} + +void QGeoManeuver_SetWaypoint(QtObjectPtr ptr, QtObjectPtr coordinate){ + static_cast(ptr)->setWaypoint(*static_cast(coordinate)); +} + +int QGeoManeuver_TimeToNextInstruction(QtObjectPtr ptr){ + return static_cast(ptr)->timeToNextInstruction(); +} + +void QGeoManeuver_DestroyQGeoManeuver(QtObjectPtr ptr){ + static_cast(ptr)->~QGeoManeuver(); +} + diff --git a/location/qgeomaneuver.go b/location/qgeomaneuver.go new file mode 100755 index 00000000..4eb3afef --- /dev/null +++ b/location/qgeomaneuver.go @@ -0,0 +1,131 @@ +package location + +//#include "qgeomaneuver.h" +import "C" +import ( + "github.com/therecipe/qt/positioning" + "unsafe" +) + +type QGeoManeuver struct { + ptr unsafe.Pointer +} + +type QGeoManeuverITF interface { + QGeoManeuverPTR() *QGeoManeuver +} + +func (p *QGeoManeuver) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QGeoManeuver) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQGeoManeuver(ptr QGeoManeuverITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGeoManeuverPTR().Pointer() + } + return nil +} + +func QGeoManeuverFromPointer(ptr unsafe.Pointer) *QGeoManeuver { + var n = new(QGeoManeuver) + n.SetPointer(ptr) + return n +} + +func (ptr *QGeoManeuver) QGeoManeuverPTR() *QGeoManeuver { + return ptr +} + +//QGeoManeuver::InstructionDirection +type QGeoManeuver__InstructionDirection int + +var ( + QGeoManeuver__NoDirection = QGeoManeuver__InstructionDirection(0) + QGeoManeuver__DirectionForward = QGeoManeuver__InstructionDirection(1) + QGeoManeuver__DirectionBearRight = QGeoManeuver__InstructionDirection(2) + QGeoManeuver__DirectionLightRight = QGeoManeuver__InstructionDirection(3) + QGeoManeuver__DirectionRight = QGeoManeuver__InstructionDirection(4) + QGeoManeuver__DirectionHardRight = QGeoManeuver__InstructionDirection(5) + QGeoManeuver__DirectionUTurnRight = QGeoManeuver__InstructionDirection(6) + QGeoManeuver__DirectionUTurnLeft = QGeoManeuver__InstructionDirection(7) + QGeoManeuver__DirectionHardLeft = QGeoManeuver__InstructionDirection(8) + QGeoManeuver__DirectionLeft = QGeoManeuver__InstructionDirection(9) + QGeoManeuver__DirectionLightLeft = QGeoManeuver__InstructionDirection(10) + QGeoManeuver__DirectionBearLeft = QGeoManeuver__InstructionDirection(11) +) + +func NewQGeoManeuver() *QGeoManeuver { + return QGeoManeuverFromPointer(unsafe.Pointer(C.QGeoManeuver_NewQGeoManeuver())) +} + +func NewQGeoManeuver2(other QGeoManeuverITF) *QGeoManeuver { + return QGeoManeuverFromPointer(unsafe.Pointer(C.QGeoManeuver_NewQGeoManeuver2(C.QtObjectPtr(PointerFromQGeoManeuver(other))))) +} + +func (ptr *QGeoManeuver) Direction() QGeoManeuver__InstructionDirection { + if ptr.Pointer() != nil { + return QGeoManeuver__InstructionDirection(C.QGeoManeuver_Direction(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoManeuver) InstructionText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGeoManeuver_InstructionText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QGeoManeuver) IsValid() bool { + if ptr.Pointer() != nil { + return C.QGeoManeuver_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGeoManeuver) SetDirection(direction QGeoManeuver__InstructionDirection) { + if ptr.Pointer() != nil { + C.QGeoManeuver_SetDirection(C.QtObjectPtr(ptr.Pointer()), C.int(direction)) + } +} + +func (ptr *QGeoManeuver) SetInstructionText(instructionText string) { + if ptr.Pointer() != nil { + C.QGeoManeuver_SetInstructionText(C.QtObjectPtr(ptr.Pointer()), C.CString(instructionText)) + } +} + +func (ptr *QGeoManeuver) SetPosition(position positioning.QGeoCoordinateITF) { + if ptr.Pointer() != nil { + C.QGeoManeuver_SetPosition(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(positioning.PointerFromQGeoCoordinate(position))) + } +} + +func (ptr *QGeoManeuver) SetTimeToNextInstruction(secs int) { + if ptr.Pointer() != nil { + C.QGeoManeuver_SetTimeToNextInstruction(C.QtObjectPtr(ptr.Pointer()), C.int(secs)) + } +} + +func (ptr *QGeoManeuver) SetWaypoint(coordinate positioning.QGeoCoordinateITF) { + if ptr.Pointer() != nil { + C.QGeoManeuver_SetWaypoint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(positioning.PointerFromQGeoCoordinate(coordinate))) + } +} + +func (ptr *QGeoManeuver) TimeToNextInstruction() int { + if ptr.Pointer() != nil { + return int(C.QGeoManeuver_TimeToNextInstruction(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoManeuver) DestroyQGeoManeuver() { + if ptr.Pointer() != nil { + C.QGeoManeuver_DestroyQGeoManeuver(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/location/qgeomaneuver.h b/location/qgeomaneuver.h new file mode 100755 index 00000000..626c001b --- /dev/null +++ b/location/qgeomaneuver.h @@ -0,0 +1,21 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGeoManeuver_NewQGeoManeuver(); +QtObjectPtr QGeoManeuver_NewQGeoManeuver2(QtObjectPtr other); +int QGeoManeuver_Direction(QtObjectPtr ptr); +char* QGeoManeuver_InstructionText(QtObjectPtr ptr); +int QGeoManeuver_IsValid(QtObjectPtr ptr); +void QGeoManeuver_SetDirection(QtObjectPtr ptr, int direction); +void QGeoManeuver_SetInstructionText(QtObjectPtr ptr, char* instructionText); +void QGeoManeuver_SetPosition(QtObjectPtr ptr, QtObjectPtr position); +void QGeoManeuver_SetTimeToNextInstruction(QtObjectPtr ptr, int secs); +void QGeoManeuver_SetWaypoint(QtObjectPtr ptr, QtObjectPtr coordinate); +int QGeoManeuver_TimeToNextInstruction(QtObjectPtr ptr); +void QGeoManeuver_DestroyQGeoManeuver(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qgeoroute.cpp b/location/qgeoroute.cpp new file mode 100755 index 00000000..533519d4 --- /dev/null +++ b/location/qgeoroute.cpp @@ -0,0 +1,63 @@ +#include "qgeoroute.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGeoRoute: public QGeoRoute { +public: +}; + +QtObjectPtr QGeoRoute_NewQGeoRoute(){ + return new QGeoRoute(); +} + +QtObjectPtr QGeoRoute_NewQGeoRoute2(QtObjectPtr other){ + return new QGeoRoute(*static_cast(other)); +} + +char* QGeoRoute_RouteId(QtObjectPtr ptr){ + return static_cast(ptr)->routeId().toUtf8().data(); +} + +void QGeoRoute_SetBounds(QtObjectPtr ptr, QtObjectPtr bounds){ + static_cast(ptr)->setBounds(*static_cast(bounds)); +} + +void QGeoRoute_SetFirstRouteSegment(QtObjectPtr ptr, QtObjectPtr routeSegment){ + static_cast(ptr)->setFirstRouteSegment(*static_cast(routeSegment)); +} + +void QGeoRoute_SetRequest(QtObjectPtr ptr, QtObjectPtr request){ + static_cast(ptr)->setRequest(*static_cast(request)); +} + +void QGeoRoute_SetRouteId(QtObjectPtr ptr, char* id){ + static_cast(ptr)->setRouteId(QString(id)); +} + +void QGeoRoute_SetTravelMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setTravelMode(static_cast(mode)); +} + +void QGeoRoute_SetTravelTime(QtObjectPtr ptr, int secs){ + static_cast(ptr)->setTravelTime(secs); +} + +int QGeoRoute_TravelMode(QtObjectPtr ptr){ + return static_cast(ptr)->travelMode(); +} + +int QGeoRoute_TravelTime(QtObjectPtr ptr){ + return static_cast(ptr)->travelTime(); +} + +void QGeoRoute_DestroyQGeoRoute(QtObjectPtr ptr){ + static_cast(ptr)->~QGeoRoute(); +} + diff --git a/location/qgeoroute.go b/location/qgeoroute.go new file mode 100755 index 00000000..61766be6 --- /dev/null +++ b/location/qgeoroute.go @@ -0,0 +1,112 @@ +package location + +//#include "qgeoroute.h" +import "C" +import ( + "github.com/therecipe/qt/positioning" + "unsafe" +) + +type QGeoRoute struct { + ptr unsafe.Pointer +} + +type QGeoRouteITF interface { + QGeoRoutePTR() *QGeoRoute +} + +func (p *QGeoRoute) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QGeoRoute) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQGeoRoute(ptr QGeoRouteITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGeoRoutePTR().Pointer() + } + return nil +} + +func QGeoRouteFromPointer(ptr unsafe.Pointer) *QGeoRoute { + var n = new(QGeoRoute) + n.SetPointer(ptr) + return n +} + +func (ptr *QGeoRoute) QGeoRoutePTR() *QGeoRoute { + return ptr +} + +func NewQGeoRoute() *QGeoRoute { + return QGeoRouteFromPointer(unsafe.Pointer(C.QGeoRoute_NewQGeoRoute())) +} + +func NewQGeoRoute2(other QGeoRouteITF) *QGeoRoute { + return QGeoRouteFromPointer(unsafe.Pointer(C.QGeoRoute_NewQGeoRoute2(C.QtObjectPtr(PointerFromQGeoRoute(other))))) +} + +func (ptr *QGeoRoute) RouteId() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGeoRoute_RouteId(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QGeoRoute) SetBounds(bounds positioning.QGeoRectangleITF) { + if ptr.Pointer() != nil { + C.QGeoRoute_SetBounds(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(positioning.PointerFromQGeoRectangle(bounds))) + } +} + +func (ptr *QGeoRoute) SetFirstRouteSegment(routeSegment QGeoRouteSegmentITF) { + if ptr.Pointer() != nil { + C.QGeoRoute_SetFirstRouteSegment(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGeoRouteSegment(routeSegment))) + } +} + +func (ptr *QGeoRoute) SetRequest(request QGeoRouteRequestITF) { + if ptr.Pointer() != nil { + C.QGeoRoute_SetRequest(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGeoRouteRequest(request))) + } +} + +func (ptr *QGeoRoute) SetRouteId(id string) { + if ptr.Pointer() != nil { + C.QGeoRoute_SetRouteId(C.QtObjectPtr(ptr.Pointer()), C.CString(id)) + } +} + +func (ptr *QGeoRoute) SetTravelMode(mode QGeoRouteRequest__TravelMode) { + if ptr.Pointer() != nil { + C.QGeoRoute_SetTravelMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QGeoRoute) SetTravelTime(secs int) { + if ptr.Pointer() != nil { + C.QGeoRoute_SetTravelTime(C.QtObjectPtr(ptr.Pointer()), C.int(secs)) + } +} + +func (ptr *QGeoRoute) TravelMode() QGeoRouteRequest__TravelMode { + if ptr.Pointer() != nil { + return QGeoRouteRequest__TravelMode(C.QGeoRoute_TravelMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoRoute) TravelTime() int { + if ptr.Pointer() != nil { + return int(C.QGeoRoute_TravelTime(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoRoute) DestroyQGeoRoute() { + if ptr.Pointer() != nil { + C.QGeoRoute_DestroyQGeoRoute(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/location/qgeoroute.h b/location/qgeoroute.h new file mode 100755 index 00000000..a958317a --- /dev/null +++ b/location/qgeoroute.h @@ -0,0 +1,21 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGeoRoute_NewQGeoRoute(); +QtObjectPtr QGeoRoute_NewQGeoRoute2(QtObjectPtr other); +char* QGeoRoute_RouteId(QtObjectPtr ptr); +void QGeoRoute_SetBounds(QtObjectPtr ptr, QtObjectPtr bounds); +void QGeoRoute_SetFirstRouteSegment(QtObjectPtr ptr, QtObjectPtr routeSegment); +void QGeoRoute_SetRequest(QtObjectPtr ptr, QtObjectPtr request); +void QGeoRoute_SetRouteId(QtObjectPtr ptr, char* id); +void QGeoRoute_SetTravelMode(QtObjectPtr ptr, int mode); +void QGeoRoute_SetTravelTime(QtObjectPtr ptr, int secs); +int QGeoRoute_TravelMode(QtObjectPtr ptr); +int QGeoRoute_TravelTime(QtObjectPtr ptr); +void QGeoRoute_DestroyQGeoRoute(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qgeoroutereply.cpp b/location/qgeoroutereply.cpp new file mode 100755 index 00000000..5339f6a0 --- /dev/null +++ b/location/qgeoroutereply.cpp @@ -0,0 +1,47 @@ +#include "qgeoroutereply.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGeoRouteReply: public QGeoRouteReply { +public: +void Signal_Finished(){callbackQGeoRouteReplyFinished(this->objectName().toUtf8().data());}; +}; + +QtObjectPtr QGeoRouteReply_NewQGeoRouteReply(int error, char* errorString, QtObjectPtr parent){ + return new QGeoRouteReply(static_cast(error), QString(errorString), static_cast(parent)); +} + +void QGeoRouteReply_Abort(QtObjectPtr ptr){ + static_cast(ptr)->abort(); +} + +int QGeoRouteReply_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +char* QGeoRouteReply_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +void QGeoRouteReply_ConnectFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGeoRouteReply::finished), static_cast(ptr), static_cast(&MyQGeoRouteReply::Signal_Finished));; +} + +void QGeoRouteReply_DisconnectFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGeoRouteReply::finished), static_cast(ptr), static_cast(&MyQGeoRouteReply::Signal_Finished));; +} + +int QGeoRouteReply_IsFinished(QtObjectPtr ptr){ + return static_cast(ptr)->isFinished(); +} + +void QGeoRouteReply_DestroyQGeoRouteReply(QtObjectPtr ptr){ + static_cast(ptr)->~QGeoRouteReply(); +} + diff --git a/location/qgeoroutereply.go b/location/qgeoroutereply.go new file mode 100755 index 00000000..95b8aaaa --- /dev/null +++ b/location/qgeoroutereply.go @@ -0,0 +1,107 @@ +package location + +//#include "qgeoroutereply.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGeoRouteReply struct { + core.QObject +} + +type QGeoRouteReplyITF interface { + core.QObjectITF + QGeoRouteReplyPTR() *QGeoRouteReply +} + +func PointerFromQGeoRouteReply(ptr QGeoRouteReplyITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGeoRouteReplyPTR().Pointer() + } + return nil +} + +func QGeoRouteReplyFromPointer(ptr unsafe.Pointer) *QGeoRouteReply { + var n = new(QGeoRouteReply) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGeoRouteReply_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGeoRouteReply) QGeoRouteReplyPTR() *QGeoRouteReply { + return ptr +} + +//QGeoRouteReply::Error +type QGeoRouteReply__Error int + +var ( + QGeoRouteReply__NoError = QGeoRouteReply__Error(0) + QGeoRouteReply__EngineNotSetError = QGeoRouteReply__Error(1) + QGeoRouteReply__CommunicationError = QGeoRouteReply__Error(2) + QGeoRouteReply__ParseError = QGeoRouteReply__Error(3) + QGeoRouteReply__UnsupportedOptionError = QGeoRouteReply__Error(4) + QGeoRouteReply__UnknownError = QGeoRouteReply__Error(5) +) + +func NewQGeoRouteReply(error QGeoRouteReply__Error, errorString string, parent core.QObjectITF) *QGeoRouteReply { + return QGeoRouteReplyFromPointer(unsafe.Pointer(C.QGeoRouteReply_NewQGeoRouteReply(C.int(error), C.CString(errorString), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QGeoRouteReply) Abort() { + if ptr.Pointer() != nil { + C.QGeoRouteReply_Abort(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QGeoRouteReply) Error() QGeoRouteReply__Error { + if ptr.Pointer() != nil { + return QGeoRouteReply__Error(C.QGeoRouteReply_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoRouteReply) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGeoRouteReply_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QGeoRouteReply) ConnectFinished(f func()) { + if ptr.Pointer() != nil { + C.QGeoRouteReply_ConnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "finished", f) + } +} + +func (ptr *QGeoRouteReply) DisconnectFinished() { + if ptr.Pointer() != nil { + C.QGeoRouteReply_DisconnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "finished") + } +} + +//export callbackQGeoRouteReplyFinished +func callbackQGeoRouteReplyFinished(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "finished").(func())() +} + +func (ptr *QGeoRouteReply) IsFinished() bool { + if ptr.Pointer() != nil { + return C.QGeoRouteReply_IsFinished(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGeoRouteReply) DestroyQGeoRouteReply() { + if ptr.Pointer() != nil { + C.QGeoRouteReply_DestroyQGeoRouteReply(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/location/qgeoroutereply.h b/location/qgeoroutereply.h new file mode 100755 index 00000000..fe56ae7b --- /dev/null +++ b/location/qgeoroutereply.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGeoRouteReply_NewQGeoRouteReply(int error, char* errorString, QtObjectPtr parent); +void QGeoRouteReply_Abort(QtObjectPtr ptr); +int QGeoRouteReply_Error(QtObjectPtr ptr); +char* QGeoRouteReply_ErrorString(QtObjectPtr ptr); +void QGeoRouteReply_ConnectFinished(QtObjectPtr ptr); +void QGeoRouteReply_DisconnectFinished(QtObjectPtr ptr); +int QGeoRouteReply_IsFinished(QtObjectPtr ptr); +void QGeoRouteReply_DestroyQGeoRouteReply(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qgeorouterequest.cpp b/location/qgeorouterequest.cpp new file mode 100755 index 00000000..c9908439 --- /dev/null +++ b/location/qgeorouterequest.cpp @@ -0,0 +1,74 @@ +#include "qgeorouterequest.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGeoRouteRequest: public QGeoRouteRequest { +public: +}; + +QtObjectPtr QGeoRouteRequest_NewQGeoRouteRequest2(QtObjectPtr origin, QtObjectPtr destination){ + return new QGeoRouteRequest(*static_cast(origin), *static_cast(destination)); +} + +QtObjectPtr QGeoRouteRequest_NewQGeoRouteRequest3(QtObjectPtr other){ + return new QGeoRouteRequest(*static_cast(other)); +} + +int QGeoRouteRequest_FeatureWeight(QtObjectPtr ptr, int featureType){ + return static_cast(ptr)->featureWeight(static_cast(featureType)); +} + +int QGeoRouteRequest_ManeuverDetail(QtObjectPtr ptr){ + return static_cast(ptr)->maneuverDetail(); +} + +int QGeoRouteRequest_NumberAlternativeRoutes(QtObjectPtr ptr){ + return static_cast(ptr)->numberAlternativeRoutes(); +} + +int QGeoRouteRequest_RouteOptimization(QtObjectPtr ptr){ + return static_cast(ptr)->routeOptimization(); +} + +int QGeoRouteRequest_SegmentDetail(QtObjectPtr ptr){ + return static_cast(ptr)->segmentDetail(); +} + +void QGeoRouteRequest_SetFeatureWeight(QtObjectPtr ptr, int featureType, int featureWeight){ + static_cast(ptr)->setFeatureWeight(static_cast(featureType), static_cast(featureWeight)); +} + +void QGeoRouteRequest_SetManeuverDetail(QtObjectPtr ptr, int maneuverDetail){ + static_cast(ptr)->setManeuverDetail(static_cast(maneuverDetail)); +} + +void QGeoRouteRequest_SetNumberAlternativeRoutes(QtObjectPtr ptr, int alternatives){ + static_cast(ptr)->setNumberAlternativeRoutes(alternatives); +} + +void QGeoRouteRequest_SetRouteOptimization(QtObjectPtr ptr, int optimization){ + static_cast(ptr)->setRouteOptimization(static_cast(optimization)); +} + +void QGeoRouteRequest_SetSegmentDetail(QtObjectPtr ptr, int segmentDetail){ + static_cast(ptr)->setSegmentDetail(static_cast(segmentDetail)); +} + +void QGeoRouteRequest_SetTravelModes(QtObjectPtr ptr, int travelModes){ + static_cast(ptr)->setTravelModes(static_cast(travelModes)); +} + +int QGeoRouteRequest_TravelModes(QtObjectPtr ptr){ + return static_cast(ptr)->travelModes(); +} + +void QGeoRouteRequest_DestroyQGeoRouteRequest(QtObjectPtr ptr){ + static_cast(ptr)->~QGeoRouteRequest(); +} + diff --git a/location/qgeorouterequest.go b/location/qgeorouterequest.go new file mode 100755 index 00000000..071e24a7 --- /dev/null +++ b/location/qgeorouterequest.go @@ -0,0 +1,196 @@ +package location + +//#include "qgeorouterequest.h" +import "C" +import ( + "github.com/therecipe/qt/positioning" + "unsafe" +) + +type QGeoRouteRequest struct { + ptr unsafe.Pointer +} + +type QGeoRouteRequestITF interface { + QGeoRouteRequestPTR() *QGeoRouteRequest +} + +func (p *QGeoRouteRequest) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QGeoRouteRequest) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQGeoRouteRequest(ptr QGeoRouteRequestITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGeoRouteRequestPTR().Pointer() + } + return nil +} + +func QGeoRouteRequestFromPointer(ptr unsafe.Pointer) *QGeoRouteRequest { + var n = new(QGeoRouteRequest) + n.SetPointer(ptr) + return n +} + +func (ptr *QGeoRouteRequest) QGeoRouteRequestPTR() *QGeoRouteRequest { + return ptr +} + +//QGeoRouteRequest::FeatureType +type QGeoRouteRequest__FeatureType int + +var ( + QGeoRouteRequest__NoFeature = QGeoRouteRequest__FeatureType(0x00000000) + QGeoRouteRequest__TollFeature = QGeoRouteRequest__FeatureType(0x00000001) + QGeoRouteRequest__HighwayFeature = QGeoRouteRequest__FeatureType(0x00000002) + QGeoRouteRequest__PublicTransitFeature = QGeoRouteRequest__FeatureType(0x00000004) + QGeoRouteRequest__FerryFeature = QGeoRouteRequest__FeatureType(0x00000008) + QGeoRouteRequest__TunnelFeature = QGeoRouteRequest__FeatureType(0x00000010) + QGeoRouteRequest__DirtRoadFeature = QGeoRouteRequest__FeatureType(0x00000020) + QGeoRouteRequest__ParksFeature = QGeoRouteRequest__FeatureType(0x00000040) + QGeoRouteRequest__MotorPoolLaneFeature = QGeoRouteRequest__FeatureType(0x00000080) +) + +//QGeoRouteRequest::FeatureWeight +type QGeoRouteRequest__FeatureWeight int + +var ( + QGeoRouteRequest__NeutralFeatureWeight = QGeoRouteRequest__FeatureWeight(0x00000000) + QGeoRouteRequest__PreferFeatureWeight = QGeoRouteRequest__FeatureWeight(0x00000001) + QGeoRouteRequest__RequireFeatureWeight = QGeoRouteRequest__FeatureWeight(0x00000002) + QGeoRouteRequest__AvoidFeatureWeight = QGeoRouteRequest__FeatureWeight(0x00000004) + QGeoRouteRequest__DisallowFeatureWeight = QGeoRouteRequest__FeatureWeight(0x00000008) +) + +//QGeoRouteRequest::ManeuverDetail +type QGeoRouteRequest__ManeuverDetail int + +var ( + QGeoRouteRequest__NoManeuvers = QGeoRouteRequest__ManeuverDetail(0x0000) + QGeoRouteRequest__BasicManeuvers = QGeoRouteRequest__ManeuverDetail(0x0001) +) + +//QGeoRouteRequest::RouteOptimization +type QGeoRouteRequest__RouteOptimization int + +var ( + QGeoRouteRequest__ShortestRoute = QGeoRouteRequest__RouteOptimization(0x0001) + QGeoRouteRequest__FastestRoute = QGeoRouteRequest__RouteOptimization(0x0002) + QGeoRouteRequest__MostEconomicRoute = QGeoRouteRequest__RouteOptimization(0x0004) + QGeoRouteRequest__MostScenicRoute = QGeoRouteRequest__RouteOptimization(0x0008) +) + +//QGeoRouteRequest::SegmentDetail +type QGeoRouteRequest__SegmentDetail int + +var ( + QGeoRouteRequest__NoSegmentData = QGeoRouteRequest__SegmentDetail(0x0000) + QGeoRouteRequest__BasicSegmentData = QGeoRouteRequest__SegmentDetail(0x0001) +) + +//QGeoRouteRequest::TravelMode +type QGeoRouteRequest__TravelMode int + +var ( + QGeoRouteRequest__CarTravel = QGeoRouteRequest__TravelMode(0x0001) + QGeoRouteRequest__PedestrianTravel = QGeoRouteRequest__TravelMode(0x0002) + QGeoRouteRequest__BicycleTravel = QGeoRouteRequest__TravelMode(0x0004) + QGeoRouteRequest__PublicTransitTravel = QGeoRouteRequest__TravelMode(0x0008) + QGeoRouteRequest__TruckTravel = QGeoRouteRequest__TravelMode(0x0010) +) + +func NewQGeoRouteRequest2(origin positioning.QGeoCoordinateITF, destination positioning.QGeoCoordinateITF) *QGeoRouteRequest { + return QGeoRouteRequestFromPointer(unsafe.Pointer(C.QGeoRouteRequest_NewQGeoRouteRequest2(C.QtObjectPtr(positioning.PointerFromQGeoCoordinate(origin)), C.QtObjectPtr(positioning.PointerFromQGeoCoordinate(destination))))) +} + +func NewQGeoRouteRequest3(other QGeoRouteRequestITF) *QGeoRouteRequest { + return QGeoRouteRequestFromPointer(unsafe.Pointer(C.QGeoRouteRequest_NewQGeoRouteRequest3(C.QtObjectPtr(PointerFromQGeoRouteRequest(other))))) +} + +func (ptr *QGeoRouteRequest) FeatureWeight(featureType QGeoRouteRequest__FeatureType) QGeoRouteRequest__FeatureWeight { + if ptr.Pointer() != nil { + return QGeoRouteRequest__FeatureWeight(C.QGeoRouteRequest_FeatureWeight(C.QtObjectPtr(ptr.Pointer()), C.int(featureType))) + } + return 0 +} + +func (ptr *QGeoRouteRequest) ManeuverDetail() QGeoRouteRequest__ManeuverDetail { + if ptr.Pointer() != nil { + return QGeoRouteRequest__ManeuverDetail(C.QGeoRouteRequest_ManeuverDetail(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoRouteRequest) NumberAlternativeRoutes() int { + if ptr.Pointer() != nil { + return int(C.QGeoRouteRequest_NumberAlternativeRoutes(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoRouteRequest) RouteOptimization() QGeoRouteRequest__RouteOptimization { + if ptr.Pointer() != nil { + return QGeoRouteRequest__RouteOptimization(C.QGeoRouteRequest_RouteOptimization(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoRouteRequest) SegmentDetail() QGeoRouteRequest__SegmentDetail { + if ptr.Pointer() != nil { + return QGeoRouteRequest__SegmentDetail(C.QGeoRouteRequest_SegmentDetail(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoRouteRequest) SetFeatureWeight(featureType QGeoRouteRequest__FeatureType, featureWeight QGeoRouteRequest__FeatureWeight) { + if ptr.Pointer() != nil { + C.QGeoRouteRequest_SetFeatureWeight(C.QtObjectPtr(ptr.Pointer()), C.int(featureType), C.int(featureWeight)) + } +} + +func (ptr *QGeoRouteRequest) SetManeuverDetail(maneuverDetail QGeoRouteRequest__ManeuverDetail) { + if ptr.Pointer() != nil { + C.QGeoRouteRequest_SetManeuverDetail(C.QtObjectPtr(ptr.Pointer()), C.int(maneuverDetail)) + } +} + +func (ptr *QGeoRouteRequest) SetNumberAlternativeRoutes(alternatives int) { + if ptr.Pointer() != nil { + C.QGeoRouteRequest_SetNumberAlternativeRoutes(C.QtObjectPtr(ptr.Pointer()), C.int(alternatives)) + } +} + +func (ptr *QGeoRouteRequest) SetRouteOptimization(optimization QGeoRouteRequest__RouteOptimization) { + if ptr.Pointer() != nil { + C.QGeoRouteRequest_SetRouteOptimization(C.QtObjectPtr(ptr.Pointer()), C.int(optimization)) + } +} + +func (ptr *QGeoRouteRequest) SetSegmentDetail(segmentDetail QGeoRouteRequest__SegmentDetail) { + if ptr.Pointer() != nil { + C.QGeoRouteRequest_SetSegmentDetail(C.QtObjectPtr(ptr.Pointer()), C.int(segmentDetail)) + } +} + +func (ptr *QGeoRouteRequest) SetTravelModes(travelModes QGeoRouteRequest__TravelMode) { + if ptr.Pointer() != nil { + C.QGeoRouteRequest_SetTravelModes(C.QtObjectPtr(ptr.Pointer()), C.int(travelModes)) + } +} + +func (ptr *QGeoRouteRequest) TravelModes() QGeoRouteRequest__TravelMode { + if ptr.Pointer() != nil { + return QGeoRouteRequest__TravelMode(C.QGeoRouteRequest_TravelModes(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoRouteRequest) DestroyQGeoRouteRequest() { + if ptr.Pointer() != nil { + C.QGeoRouteRequest_DestroyQGeoRouteRequest(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/location/qgeorouterequest.h b/location/qgeorouterequest.h new file mode 100755 index 00000000..f5af937b --- /dev/null +++ b/location/qgeorouterequest.h @@ -0,0 +1,24 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGeoRouteRequest_NewQGeoRouteRequest2(QtObjectPtr origin, QtObjectPtr destination); +QtObjectPtr QGeoRouteRequest_NewQGeoRouteRequest3(QtObjectPtr other); +int QGeoRouteRequest_FeatureWeight(QtObjectPtr ptr, int featureType); +int QGeoRouteRequest_ManeuverDetail(QtObjectPtr ptr); +int QGeoRouteRequest_NumberAlternativeRoutes(QtObjectPtr ptr); +int QGeoRouteRequest_RouteOptimization(QtObjectPtr ptr); +int QGeoRouteRequest_SegmentDetail(QtObjectPtr ptr); +void QGeoRouteRequest_SetFeatureWeight(QtObjectPtr ptr, int featureType, int featureWeight); +void QGeoRouteRequest_SetManeuverDetail(QtObjectPtr ptr, int maneuverDetail); +void QGeoRouteRequest_SetNumberAlternativeRoutes(QtObjectPtr ptr, int alternatives); +void QGeoRouteRequest_SetRouteOptimization(QtObjectPtr ptr, int optimization); +void QGeoRouteRequest_SetSegmentDetail(QtObjectPtr ptr, int segmentDetail); +void QGeoRouteRequest_SetTravelModes(QtObjectPtr ptr, int travelModes); +int QGeoRouteRequest_TravelModes(QtObjectPtr ptr); +void QGeoRouteRequest_DestroyQGeoRouteRequest(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qgeoroutesegment.cpp b/location/qgeoroutesegment.cpp new file mode 100755 index 00000000..fcd19f5c --- /dev/null +++ b/location/qgeoroutesegment.cpp @@ -0,0 +1,46 @@ +#include "qgeoroutesegment.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGeoRouteSegment: public QGeoRouteSegment { +public: +}; + +QtObjectPtr QGeoRouteSegment_NewQGeoRouteSegment(){ + return new QGeoRouteSegment(); +} + +QtObjectPtr QGeoRouteSegment_NewQGeoRouteSegment2(QtObjectPtr other){ + return new QGeoRouteSegment(*static_cast(other)); +} + +int QGeoRouteSegment_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +void QGeoRouteSegment_SetManeuver(QtObjectPtr ptr, QtObjectPtr maneuver){ + static_cast(ptr)->setManeuver(*static_cast(maneuver)); +} + +void QGeoRouteSegment_SetNextRouteSegment(QtObjectPtr ptr, QtObjectPtr routeSegment){ + static_cast(ptr)->setNextRouteSegment(*static_cast(routeSegment)); +} + +void QGeoRouteSegment_SetTravelTime(QtObjectPtr ptr, int secs){ + static_cast(ptr)->setTravelTime(secs); +} + +int QGeoRouteSegment_TravelTime(QtObjectPtr ptr){ + return static_cast(ptr)->travelTime(); +} + +void QGeoRouteSegment_DestroyQGeoRouteSegment(QtObjectPtr ptr){ + static_cast(ptr)->~QGeoRouteSegment(); +} + diff --git a/location/qgeoroutesegment.go b/location/qgeoroutesegment.go new file mode 100755 index 00000000..da81f455 --- /dev/null +++ b/location/qgeoroutesegment.go @@ -0,0 +1,86 @@ +package location + +//#include "qgeoroutesegment.h" +import "C" +import ( + "unsafe" +) + +type QGeoRouteSegment struct { + ptr unsafe.Pointer +} + +type QGeoRouteSegmentITF interface { + QGeoRouteSegmentPTR() *QGeoRouteSegment +} + +func (p *QGeoRouteSegment) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QGeoRouteSegment) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQGeoRouteSegment(ptr QGeoRouteSegmentITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGeoRouteSegmentPTR().Pointer() + } + return nil +} + +func QGeoRouteSegmentFromPointer(ptr unsafe.Pointer) *QGeoRouteSegment { + var n = new(QGeoRouteSegment) + n.SetPointer(ptr) + return n +} + +func (ptr *QGeoRouteSegment) QGeoRouteSegmentPTR() *QGeoRouteSegment { + return ptr +} + +func NewQGeoRouteSegment() *QGeoRouteSegment { + return QGeoRouteSegmentFromPointer(unsafe.Pointer(C.QGeoRouteSegment_NewQGeoRouteSegment())) +} + +func NewQGeoRouteSegment2(other QGeoRouteSegmentITF) *QGeoRouteSegment { + return QGeoRouteSegmentFromPointer(unsafe.Pointer(C.QGeoRouteSegment_NewQGeoRouteSegment2(C.QtObjectPtr(PointerFromQGeoRouteSegment(other))))) +} + +func (ptr *QGeoRouteSegment) IsValid() bool { + if ptr.Pointer() != nil { + return C.QGeoRouteSegment_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGeoRouteSegment) SetManeuver(maneuver QGeoManeuverITF) { + if ptr.Pointer() != nil { + C.QGeoRouteSegment_SetManeuver(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGeoManeuver(maneuver))) + } +} + +func (ptr *QGeoRouteSegment) SetNextRouteSegment(routeSegment QGeoRouteSegmentITF) { + if ptr.Pointer() != nil { + C.QGeoRouteSegment_SetNextRouteSegment(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGeoRouteSegment(routeSegment))) + } +} + +func (ptr *QGeoRouteSegment) SetTravelTime(secs int) { + if ptr.Pointer() != nil { + C.QGeoRouteSegment_SetTravelTime(C.QtObjectPtr(ptr.Pointer()), C.int(secs)) + } +} + +func (ptr *QGeoRouteSegment) TravelTime() int { + if ptr.Pointer() != nil { + return int(C.QGeoRouteSegment_TravelTime(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoRouteSegment) DestroyQGeoRouteSegment() { + if ptr.Pointer() != nil { + C.QGeoRouteSegment_DestroyQGeoRouteSegment(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/location/qgeoroutesegment.h b/location/qgeoroutesegment.h new file mode 100755 index 00000000..4b8a0568 --- /dev/null +++ b/location/qgeoroutesegment.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGeoRouteSegment_NewQGeoRouteSegment(); +QtObjectPtr QGeoRouteSegment_NewQGeoRouteSegment2(QtObjectPtr other); +int QGeoRouteSegment_IsValid(QtObjectPtr ptr); +void QGeoRouteSegment_SetManeuver(QtObjectPtr ptr, QtObjectPtr maneuver); +void QGeoRouteSegment_SetNextRouteSegment(QtObjectPtr ptr, QtObjectPtr routeSegment); +void QGeoRouteSegment_SetTravelTime(QtObjectPtr ptr, int secs); +int QGeoRouteSegment_TravelTime(QtObjectPtr ptr); +void QGeoRouteSegment_DestroyQGeoRouteSegment(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qgeoroutingmanager.cpp b/location/qgeoroutingmanager.cpp new file mode 100755 index 00000000..84d8c324 --- /dev/null +++ b/location/qgeoroutingmanager.cpp @@ -0,0 +1,92 @@ +#include "qgeoroutingmanager.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGeoRoutingManager: public QGeoRoutingManager { +public: +void Signal_Error(QGeoRouteReply * reply, QGeoRouteReply::Error error, QString errorString){callbackQGeoRoutingManagerError(this->objectName().toUtf8().data(), reply, error, errorString.toUtf8().data());}; +void Signal_Finished(QGeoRouteReply * reply){callbackQGeoRoutingManagerFinished(this->objectName().toUtf8().data(), reply);}; +}; + +QtObjectPtr QGeoRoutingManager_CalculateRoute(QtObjectPtr ptr, QtObjectPtr request){ + return static_cast(ptr)->calculateRoute(*static_cast(request)); +} + +void QGeoRoutingManager_ConnectError(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGeoRoutingManager::error), static_cast(ptr), static_cast(&MyQGeoRoutingManager::Signal_Error));; +} + +void QGeoRoutingManager_DisconnectError(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGeoRoutingManager::error), static_cast(ptr), static_cast(&MyQGeoRoutingManager::Signal_Error));; +} + +void QGeoRoutingManager_ConnectFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGeoRoutingManager::finished), static_cast(ptr), static_cast(&MyQGeoRoutingManager::Signal_Finished));; +} + +void QGeoRoutingManager_DisconnectFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGeoRoutingManager::finished), static_cast(ptr), static_cast(&MyQGeoRoutingManager::Signal_Finished));; +} + +char* QGeoRoutingManager_ManagerName(QtObjectPtr ptr){ + return static_cast(ptr)->managerName().toUtf8().data(); +} + +int QGeoRoutingManager_ManagerVersion(QtObjectPtr ptr){ + return static_cast(ptr)->managerVersion(); +} + +int QGeoRoutingManager_MeasurementSystem(QtObjectPtr ptr){ + return static_cast(ptr)->measurementSystem(); +} + +void QGeoRoutingManager_SetLocale(QtObjectPtr ptr, QtObjectPtr locale){ + static_cast(ptr)->setLocale(*static_cast(locale)); +} + +void QGeoRoutingManager_SetMeasurementSystem(QtObjectPtr ptr, int system){ + static_cast(ptr)->setMeasurementSystem(static_cast(system)); +} + +int QGeoRoutingManager_SupportedFeatureTypes(QtObjectPtr ptr){ + return static_cast(ptr)->supportedFeatureTypes(); +} + +int QGeoRoutingManager_SupportedFeatureWeights(QtObjectPtr ptr){ + return static_cast(ptr)->supportedFeatureWeights(); +} + +int QGeoRoutingManager_SupportedManeuverDetails(QtObjectPtr ptr){ + return static_cast(ptr)->supportedManeuverDetails(); +} + +int QGeoRoutingManager_SupportedRouteOptimizations(QtObjectPtr ptr){ + return static_cast(ptr)->supportedRouteOptimizations(); +} + +int QGeoRoutingManager_SupportedSegmentDetails(QtObjectPtr ptr){ + return static_cast(ptr)->supportedSegmentDetails(); +} + +int QGeoRoutingManager_SupportedTravelModes(QtObjectPtr ptr){ + return static_cast(ptr)->supportedTravelModes(); +} + +QtObjectPtr QGeoRoutingManager_UpdateRoute(QtObjectPtr ptr, QtObjectPtr route, QtObjectPtr position){ + return static_cast(ptr)->updateRoute(*static_cast(route), *static_cast(position)); +} + +void QGeoRoutingManager_DestroyQGeoRoutingManager(QtObjectPtr ptr){ + static_cast(ptr)->~QGeoRoutingManager(); +} + diff --git a/location/qgeoroutingmanager.go b/location/qgeoroutingmanager.go new file mode 100755 index 00000000..b2145f99 --- /dev/null +++ b/location/qgeoroutingmanager.go @@ -0,0 +1,173 @@ +package location + +//#include "qgeoroutingmanager.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/positioning" + "unsafe" +) + +type QGeoRoutingManager struct { + core.QObject +} + +type QGeoRoutingManagerITF interface { + core.QObjectITF + QGeoRoutingManagerPTR() *QGeoRoutingManager +} + +func PointerFromQGeoRoutingManager(ptr QGeoRoutingManagerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGeoRoutingManagerPTR().Pointer() + } + return nil +} + +func QGeoRoutingManagerFromPointer(ptr unsafe.Pointer) *QGeoRoutingManager { + var n = new(QGeoRoutingManager) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGeoRoutingManager_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGeoRoutingManager) QGeoRoutingManagerPTR() *QGeoRoutingManager { + return ptr +} + +func (ptr *QGeoRoutingManager) CalculateRoute(request QGeoRouteRequestITF) *QGeoRouteReply { + if ptr.Pointer() != nil { + return QGeoRouteReplyFromPointer(unsafe.Pointer(C.QGeoRoutingManager_CalculateRoute(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGeoRouteRequest(request))))) + } + return nil +} + +func (ptr *QGeoRoutingManager) ConnectError(f func(reply QGeoRouteReplyITF, error QGeoRouteReply__Error, errorString string)) { + if ptr.Pointer() != nil { + C.QGeoRoutingManager_ConnectError(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "error", f) + } +} + +func (ptr *QGeoRoutingManager) DisconnectError() { + if ptr.Pointer() != nil { + C.QGeoRoutingManager_DisconnectError(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "error") + } +} + +//export callbackQGeoRoutingManagerError +func callbackQGeoRoutingManagerError(ptrName *C.char, reply unsafe.Pointer, error C.int, errorString *C.char) { + qt.GetSignal(C.GoString(ptrName), "error").(func(*QGeoRouteReply, QGeoRouteReply__Error, string))(QGeoRouteReplyFromPointer(reply), QGeoRouteReply__Error(error), C.GoString(errorString)) +} + +func (ptr *QGeoRoutingManager) ConnectFinished(f func(reply QGeoRouteReplyITF)) { + if ptr.Pointer() != nil { + C.QGeoRoutingManager_ConnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "finished", f) + } +} + +func (ptr *QGeoRoutingManager) DisconnectFinished() { + if ptr.Pointer() != nil { + C.QGeoRoutingManager_DisconnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "finished") + } +} + +//export callbackQGeoRoutingManagerFinished +func callbackQGeoRoutingManagerFinished(ptrName *C.char, reply unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "finished").(func(*QGeoRouteReply))(QGeoRouteReplyFromPointer(reply)) +} + +func (ptr *QGeoRoutingManager) ManagerName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGeoRoutingManager_ManagerName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QGeoRoutingManager) ManagerVersion() int { + if ptr.Pointer() != nil { + return int(C.QGeoRoutingManager_ManagerVersion(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoRoutingManager) MeasurementSystem() core.QLocale__MeasurementSystem { + if ptr.Pointer() != nil { + return core.QLocale__MeasurementSystem(C.QGeoRoutingManager_MeasurementSystem(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoRoutingManager) SetLocale(locale core.QLocaleITF) { + if ptr.Pointer() != nil { + C.QGeoRoutingManager_SetLocale(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQLocale(locale))) + } +} + +func (ptr *QGeoRoutingManager) SetMeasurementSystem(system core.QLocale__MeasurementSystem) { + if ptr.Pointer() != nil { + C.QGeoRoutingManager_SetMeasurementSystem(C.QtObjectPtr(ptr.Pointer()), C.int(system)) + } +} + +func (ptr *QGeoRoutingManager) SupportedFeatureTypes() QGeoRouteRequest__FeatureType { + if ptr.Pointer() != nil { + return QGeoRouteRequest__FeatureType(C.QGeoRoutingManager_SupportedFeatureTypes(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoRoutingManager) SupportedFeatureWeights() QGeoRouteRequest__FeatureWeight { + if ptr.Pointer() != nil { + return QGeoRouteRequest__FeatureWeight(C.QGeoRoutingManager_SupportedFeatureWeights(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoRoutingManager) SupportedManeuverDetails() QGeoRouteRequest__ManeuverDetail { + if ptr.Pointer() != nil { + return QGeoRouteRequest__ManeuverDetail(C.QGeoRoutingManager_SupportedManeuverDetails(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoRoutingManager) SupportedRouteOptimizations() QGeoRouteRequest__RouteOptimization { + if ptr.Pointer() != nil { + return QGeoRouteRequest__RouteOptimization(C.QGeoRoutingManager_SupportedRouteOptimizations(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoRoutingManager) SupportedSegmentDetails() QGeoRouteRequest__SegmentDetail { + if ptr.Pointer() != nil { + return QGeoRouteRequest__SegmentDetail(C.QGeoRoutingManager_SupportedSegmentDetails(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoRoutingManager) SupportedTravelModes() QGeoRouteRequest__TravelMode { + if ptr.Pointer() != nil { + return QGeoRouteRequest__TravelMode(C.QGeoRoutingManager_SupportedTravelModes(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoRoutingManager) UpdateRoute(route QGeoRouteITF, position positioning.QGeoCoordinateITF) *QGeoRouteReply { + if ptr.Pointer() != nil { + return QGeoRouteReplyFromPointer(unsafe.Pointer(C.QGeoRoutingManager_UpdateRoute(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGeoRoute(route)), C.QtObjectPtr(positioning.PointerFromQGeoCoordinate(position))))) + } + return nil +} + +func (ptr *QGeoRoutingManager) DestroyQGeoRoutingManager() { + if ptr.Pointer() != nil { + C.QGeoRoutingManager_DestroyQGeoRoutingManager(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/location/qgeoroutingmanager.h b/location/qgeoroutingmanager.h new file mode 100755 index 00000000..88100033 --- /dev/null +++ b/location/qgeoroutingmanager.h @@ -0,0 +1,27 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGeoRoutingManager_CalculateRoute(QtObjectPtr ptr, QtObjectPtr request); +void QGeoRoutingManager_ConnectError(QtObjectPtr ptr); +void QGeoRoutingManager_DisconnectError(QtObjectPtr ptr); +void QGeoRoutingManager_ConnectFinished(QtObjectPtr ptr); +void QGeoRoutingManager_DisconnectFinished(QtObjectPtr ptr); +char* QGeoRoutingManager_ManagerName(QtObjectPtr ptr); +int QGeoRoutingManager_ManagerVersion(QtObjectPtr ptr); +int QGeoRoutingManager_MeasurementSystem(QtObjectPtr ptr); +void QGeoRoutingManager_SetLocale(QtObjectPtr ptr, QtObjectPtr locale); +void QGeoRoutingManager_SetMeasurementSystem(QtObjectPtr ptr, int system); +int QGeoRoutingManager_SupportedFeatureTypes(QtObjectPtr ptr); +int QGeoRoutingManager_SupportedFeatureWeights(QtObjectPtr ptr); +int QGeoRoutingManager_SupportedManeuverDetails(QtObjectPtr ptr); +int QGeoRoutingManager_SupportedRouteOptimizations(QtObjectPtr ptr); +int QGeoRoutingManager_SupportedSegmentDetails(QtObjectPtr ptr); +int QGeoRoutingManager_SupportedTravelModes(QtObjectPtr ptr); +QtObjectPtr QGeoRoutingManager_UpdateRoute(QtObjectPtr ptr, QtObjectPtr route, QtObjectPtr position); +void QGeoRoutingManager_DestroyQGeoRoutingManager(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qgeoroutingmanagerengine.cpp b/location/qgeoroutingmanagerengine.cpp new file mode 100755 index 00000000..1c6e5144 --- /dev/null +++ b/location/qgeoroutingmanagerengine.cpp @@ -0,0 +1,93 @@ +#include "qgeoroutingmanagerengine.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGeoRoutingManagerEngine: public QGeoRoutingManagerEngine { +public: +void Signal_Error(QGeoRouteReply * reply, QGeoRouteReply::Error error, QString errorString){callbackQGeoRoutingManagerEngineError(this->objectName().toUtf8().data(), reply, error, errorString.toUtf8().data());}; +void Signal_Finished(QGeoRouteReply * reply){callbackQGeoRoutingManagerEngineFinished(this->objectName().toUtf8().data(), reply);}; +}; + +QtObjectPtr QGeoRoutingManagerEngine_CalculateRoute(QtObjectPtr ptr, QtObjectPtr request){ + return static_cast(ptr)->calculateRoute(*static_cast(request)); +} + +void QGeoRoutingManagerEngine_ConnectError(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGeoRoutingManagerEngine::error), static_cast(ptr), static_cast(&MyQGeoRoutingManagerEngine::Signal_Error));; +} + +void QGeoRoutingManagerEngine_DisconnectError(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGeoRoutingManagerEngine::error), static_cast(ptr), static_cast(&MyQGeoRoutingManagerEngine::Signal_Error));; +} + +void QGeoRoutingManagerEngine_ConnectFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGeoRoutingManagerEngine::finished), static_cast(ptr), static_cast(&MyQGeoRoutingManagerEngine::Signal_Finished));; +} + +void QGeoRoutingManagerEngine_DisconnectFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGeoRoutingManagerEngine::finished), static_cast(ptr), static_cast(&MyQGeoRoutingManagerEngine::Signal_Finished));; +} + +char* QGeoRoutingManagerEngine_ManagerName(QtObjectPtr ptr){ + return static_cast(ptr)->managerName().toUtf8().data(); +} + +int QGeoRoutingManagerEngine_ManagerVersion(QtObjectPtr ptr){ + return static_cast(ptr)->managerVersion(); +} + +int QGeoRoutingManagerEngine_MeasurementSystem(QtObjectPtr ptr){ + return static_cast(ptr)->measurementSystem(); +} + +void QGeoRoutingManagerEngine_SetLocale(QtObjectPtr ptr, QtObjectPtr locale){ + static_cast(ptr)->setLocale(*static_cast(locale)); +} + +void QGeoRoutingManagerEngine_SetMeasurementSystem(QtObjectPtr ptr, int system){ + static_cast(ptr)->setMeasurementSystem(static_cast(system)); +} + +int QGeoRoutingManagerEngine_SupportedFeatureTypes(QtObjectPtr ptr){ + return static_cast(ptr)->supportedFeatureTypes(); +} + +int QGeoRoutingManagerEngine_SupportedFeatureWeights(QtObjectPtr ptr){ + return static_cast(ptr)->supportedFeatureWeights(); +} + +int QGeoRoutingManagerEngine_SupportedManeuverDetails(QtObjectPtr ptr){ + return static_cast(ptr)->supportedManeuverDetails(); +} + +int QGeoRoutingManagerEngine_SupportedRouteOptimizations(QtObjectPtr ptr){ + return static_cast(ptr)->supportedRouteOptimizations(); +} + +int QGeoRoutingManagerEngine_SupportedSegmentDetails(QtObjectPtr ptr){ + return static_cast(ptr)->supportedSegmentDetails(); +} + +int QGeoRoutingManagerEngine_SupportedTravelModes(QtObjectPtr ptr){ + return static_cast(ptr)->supportedTravelModes(); +} + +QtObjectPtr QGeoRoutingManagerEngine_UpdateRoute(QtObjectPtr ptr, QtObjectPtr route, QtObjectPtr position){ + return static_cast(ptr)->updateRoute(*static_cast(route), *static_cast(position)); +} + +void QGeoRoutingManagerEngine_DestroyQGeoRoutingManagerEngine(QtObjectPtr ptr){ + static_cast(ptr)->~QGeoRoutingManagerEngine(); +} + diff --git a/location/qgeoroutingmanagerengine.go b/location/qgeoroutingmanagerengine.go new file mode 100755 index 00000000..950b9e97 --- /dev/null +++ b/location/qgeoroutingmanagerengine.go @@ -0,0 +1,173 @@ +package location + +//#include "qgeoroutingmanagerengine.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/positioning" + "unsafe" +) + +type QGeoRoutingManagerEngine struct { + core.QObject +} + +type QGeoRoutingManagerEngineITF interface { + core.QObjectITF + QGeoRoutingManagerEnginePTR() *QGeoRoutingManagerEngine +} + +func PointerFromQGeoRoutingManagerEngine(ptr QGeoRoutingManagerEngineITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGeoRoutingManagerEnginePTR().Pointer() + } + return nil +} + +func QGeoRoutingManagerEngineFromPointer(ptr unsafe.Pointer) *QGeoRoutingManagerEngine { + var n = new(QGeoRoutingManagerEngine) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGeoRoutingManagerEngine_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGeoRoutingManagerEngine) QGeoRoutingManagerEnginePTR() *QGeoRoutingManagerEngine { + return ptr +} + +func (ptr *QGeoRoutingManagerEngine) CalculateRoute(request QGeoRouteRequestITF) *QGeoRouteReply { + if ptr.Pointer() != nil { + return QGeoRouteReplyFromPointer(unsafe.Pointer(C.QGeoRoutingManagerEngine_CalculateRoute(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGeoRouteRequest(request))))) + } + return nil +} + +func (ptr *QGeoRoutingManagerEngine) ConnectError(f func(reply QGeoRouteReplyITF, error QGeoRouteReply__Error, errorString string)) { + if ptr.Pointer() != nil { + C.QGeoRoutingManagerEngine_ConnectError(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "error", f) + } +} + +func (ptr *QGeoRoutingManagerEngine) DisconnectError() { + if ptr.Pointer() != nil { + C.QGeoRoutingManagerEngine_DisconnectError(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "error") + } +} + +//export callbackQGeoRoutingManagerEngineError +func callbackQGeoRoutingManagerEngineError(ptrName *C.char, reply unsafe.Pointer, error C.int, errorString *C.char) { + qt.GetSignal(C.GoString(ptrName), "error").(func(*QGeoRouteReply, QGeoRouteReply__Error, string))(QGeoRouteReplyFromPointer(reply), QGeoRouteReply__Error(error), C.GoString(errorString)) +} + +func (ptr *QGeoRoutingManagerEngine) ConnectFinished(f func(reply QGeoRouteReplyITF)) { + if ptr.Pointer() != nil { + C.QGeoRoutingManagerEngine_ConnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "finished", f) + } +} + +func (ptr *QGeoRoutingManagerEngine) DisconnectFinished() { + if ptr.Pointer() != nil { + C.QGeoRoutingManagerEngine_DisconnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "finished") + } +} + +//export callbackQGeoRoutingManagerEngineFinished +func callbackQGeoRoutingManagerEngineFinished(ptrName *C.char, reply unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "finished").(func(*QGeoRouteReply))(QGeoRouteReplyFromPointer(reply)) +} + +func (ptr *QGeoRoutingManagerEngine) ManagerName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGeoRoutingManagerEngine_ManagerName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QGeoRoutingManagerEngine) ManagerVersion() int { + if ptr.Pointer() != nil { + return int(C.QGeoRoutingManagerEngine_ManagerVersion(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoRoutingManagerEngine) MeasurementSystem() core.QLocale__MeasurementSystem { + if ptr.Pointer() != nil { + return core.QLocale__MeasurementSystem(C.QGeoRoutingManagerEngine_MeasurementSystem(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoRoutingManagerEngine) SetLocale(locale core.QLocaleITF) { + if ptr.Pointer() != nil { + C.QGeoRoutingManagerEngine_SetLocale(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQLocale(locale))) + } +} + +func (ptr *QGeoRoutingManagerEngine) SetMeasurementSystem(system core.QLocale__MeasurementSystem) { + if ptr.Pointer() != nil { + C.QGeoRoutingManagerEngine_SetMeasurementSystem(C.QtObjectPtr(ptr.Pointer()), C.int(system)) + } +} + +func (ptr *QGeoRoutingManagerEngine) SupportedFeatureTypes() QGeoRouteRequest__FeatureType { + if ptr.Pointer() != nil { + return QGeoRouteRequest__FeatureType(C.QGeoRoutingManagerEngine_SupportedFeatureTypes(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoRoutingManagerEngine) SupportedFeatureWeights() QGeoRouteRequest__FeatureWeight { + if ptr.Pointer() != nil { + return QGeoRouteRequest__FeatureWeight(C.QGeoRoutingManagerEngine_SupportedFeatureWeights(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoRoutingManagerEngine) SupportedManeuverDetails() QGeoRouteRequest__ManeuverDetail { + if ptr.Pointer() != nil { + return QGeoRouteRequest__ManeuverDetail(C.QGeoRoutingManagerEngine_SupportedManeuverDetails(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoRoutingManagerEngine) SupportedRouteOptimizations() QGeoRouteRequest__RouteOptimization { + if ptr.Pointer() != nil { + return QGeoRouteRequest__RouteOptimization(C.QGeoRoutingManagerEngine_SupportedRouteOptimizations(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoRoutingManagerEngine) SupportedSegmentDetails() QGeoRouteRequest__SegmentDetail { + if ptr.Pointer() != nil { + return QGeoRouteRequest__SegmentDetail(C.QGeoRoutingManagerEngine_SupportedSegmentDetails(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoRoutingManagerEngine) SupportedTravelModes() QGeoRouteRequest__TravelMode { + if ptr.Pointer() != nil { + return QGeoRouteRequest__TravelMode(C.QGeoRoutingManagerEngine_SupportedTravelModes(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoRoutingManagerEngine) UpdateRoute(route QGeoRouteITF, position positioning.QGeoCoordinateITF) *QGeoRouteReply { + if ptr.Pointer() != nil { + return QGeoRouteReplyFromPointer(unsafe.Pointer(C.QGeoRoutingManagerEngine_UpdateRoute(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGeoRoute(route)), C.QtObjectPtr(positioning.PointerFromQGeoCoordinate(position))))) + } + return nil +} + +func (ptr *QGeoRoutingManagerEngine) DestroyQGeoRoutingManagerEngine() { + if ptr.Pointer() != nil { + C.QGeoRoutingManagerEngine_DestroyQGeoRoutingManagerEngine(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/location/qgeoroutingmanagerengine.h b/location/qgeoroutingmanagerengine.h new file mode 100755 index 00000000..52b0fb9c --- /dev/null +++ b/location/qgeoroutingmanagerengine.h @@ -0,0 +1,27 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGeoRoutingManagerEngine_CalculateRoute(QtObjectPtr ptr, QtObjectPtr request); +void QGeoRoutingManagerEngine_ConnectError(QtObjectPtr ptr); +void QGeoRoutingManagerEngine_DisconnectError(QtObjectPtr ptr); +void QGeoRoutingManagerEngine_ConnectFinished(QtObjectPtr ptr); +void QGeoRoutingManagerEngine_DisconnectFinished(QtObjectPtr ptr); +char* QGeoRoutingManagerEngine_ManagerName(QtObjectPtr ptr); +int QGeoRoutingManagerEngine_ManagerVersion(QtObjectPtr ptr); +int QGeoRoutingManagerEngine_MeasurementSystem(QtObjectPtr ptr); +void QGeoRoutingManagerEngine_SetLocale(QtObjectPtr ptr, QtObjectPtr locale); +void QGeoRoutingManagerEngine_SetMeasurementSystem(QtObjectPtr ptr, int system); +int QGeoRoutingManagerEngine_SupportedFeatureTypes(QtObjectPtr ptr); +int QGeoRoutingManagerEngine_SupportedFeatureWeights(QtObjectPtr ptr); +int QGeoRoutingManagerEngine_SupportedManeuverDetails(QtObjectPtr ptr); +int QGeoRoutingManagerEngine_SupportedRouteOptimizations(QtObjectPtr ptr); +int QGeoRoutingManagerEngine_SupportedSegmentDetails(QtObjectPtr ptr); +int QGeoRoutingManagerEngine_SupportedTravelModes(QtObjectPtr ptr); +QtObjectPtr QGeoRoutingManagerEngine_UpdateRoute(QtObjectPtr ptr, QtObjectPtr route, QtObjectPtr position); +void QGeoRoutingManagerEngine_DestroyQGeoRoutingManagerEngine(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qgeoserviceprovider.cpp b/location/qgeoserviceprovider.cpp new file mode 100755 index 00000000..78a5d39a --- /dev/null +++ b/location/qgeoserviceprovider.cpp @@ -0,0 +1,177 @@ +#include "qgeoserviceprovider.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGeoServiceProvider: public QGeoServiceProvider { +public: +}; + +int QGeoServiceProvider_OnlineGeocodingFeature_Type(){ + return QGeoServiceProvider::OnlineGeocodingFeature; +} + +int QGeoServiceProvider_OfflineGeocodingFeature_Type(){ + return QGeoServiceProvider::OfflineGeocodingFeature; +} + +int QGeoServiceProvider_ReverseGeocodingFeature_Type(){ + return QGeoServiceProvider::ReverseGeocodingFeature; +} + +int QGeoServiceProvider_LocalizedGeocodingFeature_Type(){ + return QGeoServiceProvider::LocalizedGeocodingFeature; +} + +int QGeoServiceProvider_AnyGeocodingFeatures_Type(){ + return QGeoServiceProvider::AnyGeocodingFeatures; +} + +int QGeoServiceProvider_OnlineMappingFeature_Type(){ + return QGeoServiceProvider::OnlineMappingFeature; +} + +int QGeoServiceProvider_OfflineMappingFeature_Type(){ + return QGeoServiceProvider::OfflineMappingFeature; +} + +int QGeoServiceProvider_LocalizedMappingFeature_Type(){ + return QGeoServiceProvider::LocalizedMappingFeature; +} + +int QGeoServiceProvider_AnyMappingFeatures_Type(){ + return QGeoServiceProvider::AnyMappingFeatures; +} + +int QGeoServiceProvider_OnlinePlacesFeature_Type(){ + return QGeoServiceProvider::OnlinePlacesFeature; +} + +int QGeoServiceProvider_OfflinePlacesFeature_Type(){ + return QGeoServiceProvider::OfflinePlacesFeature; +} + +int QGeoServiceProvider_SavePlaceFeature_Type(){ + return QGeoServiceProvider::SavePlaceFeature; +} + +int QGeoServiceProvider_RemovePlaceFeature_Type(){ + return QGeoServiceProvider::RemovePlaceFeature; +} + +int QGeoServiceProvider_SaveCategoryFeature_Type(){ + return QGeoServiceProvider::SaveCategoryFeature; +} + +int QGeoServiceProvider_RemoveCategoryFeature_Type(){ + return QGeoServiceProvider::RemoveCategoryFeature; +} + +int QGeoServiceProvider_PlaceRecommendationsFeature_Type(){ + return QGeoServiceProvider::PlaceRecommendationsFeature; +} + +int QGeoServiceProvider_SearchSuggestionsFeature_Type(){ + return QGeoServiceProvider::SearchSuggestionsFeature; +} + +int QGeoServiceProvider_LocalizedPlacesFeature_Type(){ + return QGeoServiceProvider::LocalizedPlacesFeature; +} + +int QGeoServiceProvider_NotificationsFeature_Type(){ + return QGeoServiceProvider::NotificationsFeature; +} + +int QGeoServiceProvider_PlaceMatchingFeature_Type(){ + return QGeoServiceProvider::PlaceMatchingFeature; +} + +int QGeoServiceProvider_AnyPlacesFeatures_Type(){ + return QGeoServiceProvider::AnyPlacesFeatures; +} + +int QGeoServiceProvider_OnlineRoutingFeature_Type(){ + return QGeoServiceProvider::OnlineRoutingFeature; +} + +int QGeoServiceProvider_OfflineRoutingFeature_Type(){ + return QGeoServiceProvider::OfflineRoutingFeature; +} + +int QGeoServiceProvider_LocalizedRoutingFeature_Type(){ + return QGeoServiceProvider::LocalizedRoutingFeature; +} + +int QGeoServiceProvider_RouteUpdatesFeature_Type(){ + return QGeoServiceProvider::RouteUpdatesFeature; +} + +int QGeoServiceProvider_AlternativeRoutesFeature_Type(){ + return QGeoServiceProvider::AlternativeRoutesFeature; +} + +int QGeoServiceProvider_ExcludeAreasRoutingFeature_Type(){ + return QGeoServiceProvider::ExcludeAreasRoutingFeature; +} + +int QGeoServiceProvider_AnyRoutingFeatures_Type(){ + return QGeoServiceProvider::AnyRoutingFeatures; +} + +char* QGeoServiceProvider_QGeoServiceProvider_AvailableServiceProviders(){ + return QGeoServiceProvider::availableServiceProviders().join("|").toUtf8().data(); +} + +int QGeoServiceProvider_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +char* QGeoServiceProvider_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +int QGeoServiceProvider_GeocodingFeatures(QtObjectPtr ptr){ + return static_cast(ptr)->geocodingFeatures(); +} + +QtObjectPtr QGeoServiceProvider_GeocodingManager(QtObjectPtr ptr){ + return static_cast(ptr)->geocodingManager(); +} + +int QGeoServiceProvider_MappingFeatures(QtObjectPtr ptr){ + return static_cast(ptr)->mappingFeatures(); +} + +QtObjectPtr QGeoServiceProvider_PlaceManager(QtObjectPtr ptr){ + return static_cast(ptr)->placeManager(); +} + +int QGeoServiceProvider_PlacesFeatures(QtObjectPtr ptr){ + return static_cast(ptr)->placesFeatures(); +} + +int QGeoServiceProvider_RoutingFeatures(QtObjectPtr ptr){ + return static_cast(ptr)->routingFeatures(); +} + +QtObjectPtr QGeoServiceProvider_RoutingManager(QtObjectPtr ptr){ + return static_cast(ptr)->routingManager(); +} + +void QGeoServiceProvider_SetAllowExperimental(QtObjectPtr ptr, int allow){ + static_cast(ptr)->setAllowExperimental(allow != 0); +} + +void QGeoServiceProvider_SetLocale(QtObjectPtr ptr, QtObjectPtr locale){ + static_cast(ptr)->setLocale(*static_cast(locale)); +} + +void QGeoServiceProvider_DestroyQGeoServiceProvider(QtObjectPtr ptr){ + static_cast(ptr)->~QGeoServiceProvider(); +} + diff --git a/location/qgeoserviceprovider.go b/location/qgeoserviceprovider.go new file mode 100755 index 00000000..5d287074 --- /dev/null +++ b/location/qgeoserviceprovider.go @@ -0,0 +1,192 @@ +package location + +//#include "qgeoserviceprovider.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QGeoServiceProvider struct { + core.QObject +} + +type QGeoServiceProviderITF interface { + core.QObjectITF + QGeoServiceProviderPTR() *QGeoServiceProvider +} + +func PointerFromQGeoServiceProvider(ptr QGeoServiceProviderITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGeoServiceProviderPTR().Pointer() + } + return nil +} + +func QGeoServiceProviderFromPointer(ptr unsafe.Pointer) *QGeoServiceProvider { + var n = new(QGeoServiceProvider) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGeoServiceProvider_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGeoServiceProvider) QGeoServiceProviderPTR() *QGeoServiceProvider { + return ptr +} + +//QGeoServiceProvider::Error +type QGeoServiceProvider__Error int + +var ( + QGeoServiceProvider__NoError = QGeoServiceProvider__Error(0) + QGeoServiceProvider__NotSupportedError = QGeoServiceProvider__Error(1) + QGeoServiceProvider__UnknownParameterError = QGeoServiceProvider__Error(2) + QGeoServiceProvider__MissingRequiredParameterError = QGeoServiceProvider__Error(3) + QGeoServiceProvider__ConnectionError = QGeoServiceProvider__Error(4) +) + +//QGeoServiceProvider::GeocodingFeature +type QGeoServiceProvider__GeocodingFeature int + +var ( + QGeoServiceProvider__NoGeocodingFeatures = QGeoServiceProvider__GeocodingFeature(0) + QGeoServiceProvider__OnlineGeocodingFeature = QGeoServiceProvider__GeocodingFeature(C.QGeoServiceProvider_OnlineGeocodingFeature_Type()) + QGeoServiceProvider__OfflineGeocodingFeature = QGeoServiceProvider__GeocodingFeature(C.QGeoServiceProvider_OfflineGeocodingFeature_Type()) + QGeoServiceProvider__ReverseGeocodingFeature = QGeoServiceProvider__GeocodingFeature(C.QGeoServiceProvider_ReverseGeocodingFeature_Type()) + QGeoServiceProvider__LocalizedGeocodingFeature = QGeoServiceProvider__GeocodingFeature(C.QGeoServiceProvider_LocalizedGeocodingFeature_Type()) + QGeoServiceProvider__AnyGeocodingFeatures = QGeoServiceProvider__GeocodingFeature(C.QGeoServiceProvider_AnyGeocodingFeatures_Type()) +) + +//QGeoServiceProvider::MappingFeature +type QGeoServiceProvider__MappingFeature int + +var ( + QGeoServiceProvider__NoMappingFeatures = QGeoServiceProvider__MappingFeature(0) + QGeoServiceProvider__OnlineMappingFeature = QGeoServiceProvider__MappingFeature(C.QGeoServiceProvider_OnlineMappingFeature_Type()) + QGeoServiceProvider__OfflineMappingFeature = QGeoServiceProvider__MappingFeature(C.QGeoServiceProvider_OfflineMappingFeature_Type()) + QGeoServiceProvider__LocalizedMappingFeature = QGeoServiceProvider__MappingFeature(C.QGeoServiceProvider_LocalizedMappingFeature_Type()) + QGeoServiceProvider__AnyMappingFeatures = QGeoServiceProvider__MappingFeature(C.QGeoServiceProvider_AnyMappingFeatures_Type()) +) + +//QGeoServiceProvider::PlacesFeature +type QGeoServiceProvider__PlacesFeature int + +var ( + QGeoServiceProvider__NoPlacesFeatures = QGeoServiceProvider__PlacesFeature(0) + QGeoServiceProvider__OnlinePlacesFeature = QGeoServiceProvider__PlacesFeature(C.QGeoServiceProvider_OnlinePlacesFeature_Type()) + QGeoServiceProvider__OfflinePlacesFeature = QGeoServiceProvider__PlacesFeature(C.QGeoServiceProvider_OfflinePlacesFeature_Type()) + QGeoServiceProvider__SavePlaceFeature = QGeoServiceProvider__PlacesFeature(C.QGeoServiceProvider_SavePlaceFeature_Type()) + QGeoServiceProvider__RemovePlaceFeature = QGeoServiceProvider__PlacesFeature(C.QGeoServiceProvider_RemovePlaceFeature_Type()) + QGeoServiceProvider__SaveCategoryFeature = QGeoServiceProvider__PlacesFeature(C.QGeoServiceProvider_SaveCategoryFeature_Type()) + QGeoServiceProvider__RemoveCategoryFeature = QGeoServiceProvider__PlacesFeature(C.QGeoServiceProvider_RemoveCategoryFeature_Type()) + QGeoServiceProvider__PlaceRecommendationsFeature = QGeoServiceProvider__PlacesFeature(C.QGeoServiceProvider_PlaceRecommendationsFeature_Type()) + QGeoServiceProvider__SearchSuggestionsFeature = QGeoServiceProvider__PlacesFeature(C.QGeoServiceProvider_SearchSuggestionsFeature_Type()) + QGeoServiceProvider__LocalizedPlacesFeature = QGeoServiceProvider__PlacesFeature(C.QGeoServiceProvider_LocalizedPlacesFeature_Type()) + QGeoServiceProvider__NotificationsFeature = QGeoServiceProvider__PlacesFeature(C.QGeoServiceProvider_NotificationsFeature_Type()) + QGeoServiceProvider__PlaceMatchingFeature = QGeoServiceProvider__PlacesFeature(C.QGeoServiceProvider_PlaceMatchingFeature_Type()) + QGeoServiceProvider__AnyPlacesFeatures = QGeoServiceProvider__PlacesFeature(C.QGeoServiceProvider_AnyPlacesFeatures_Type()) +) + +//QGeoServiceProvider::RoutingFeature +type QGeoServiceProvider__RoutingFeature int + +var ( + QGeoServiceProvider__NoRoutingFeatures = QGeoServiceProvider__RoutingFeature(0) + QGeoServiceProvider__OnlineRoutingFeature = QGeoServiceProvider__RoutingFeature(C.QGeoServiceProvider_OnlineRoutingFeature_Type()) + QGeoServiceProvider__OfflineRoutingFeature = QGeoServiceProvider__RoutingFeature(C.QGeoServiceProvider_OfflineRoutingFeature_Type()) + QGeoServiceProvider__LocalizedRoutingFeature = QGeoServiceProvider__RoutingFeature(C.QGeoServiceProvider_LocalizedRoutingFeature_Type()) + QGeoServiceProvider__RouteUpdatesFeature = QGeoServiceProvider__RoutingFeature(C.QGeoServiceProvider_RouteUpdatesFeature_Type()) + QGeoServiceProvider__AlternativeRoutesFeature = QGeoServiceProvider__RoutingFeature(C.QGeoServiceProvider_AlternativeRoutesFeature_Type()) + QGeoServiceProvider__ExcludeAreasRoutingFeature = QGeoServiceProvider__RoutingFeature(C.QGeoServiceProvider_ExcludeAreasRoutingFeature_Type()) + QGeoServiceProvider__AnyRoutingFeatures = QGeoServiceProvider__RoutingFeature(C.QGeoServiceProvider_AnyRoutingFeatures_Type()) +) + +func QGeoServiceProvider_AvailableServiceProviders() []string { + return strings.Split(C.GoString(C.QGeoServiceProvider_QGeoServiceProvider_AvailableServiceProviders()), "|") +} + +func (ptr *QGeoServiceProvider) Error() QGeoServiceProvider__Error { + if ptr.Pointer() != nil { + return QGeoServiceProvider__Error(C.QGeoServiceProvider_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoServiceProvider) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGeoServiceProvider_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QGeoServiceProvider) GeocodingFeatures() QGeoServiceProvider__GeocodingFeature { + if ptr.Pointer() != nil { + return QGeoServiceProvider__GeocodingFeature(C.QGeoServiceProvider_GeocodingFeatures(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoServiceProvider) GeocodingManager() *QGeoCodingManager { + if ptr.Pointer() != nil { + return QGeoCodingManagerFromPointer(unsafe.Pointer(C.QGeoServiceProvider_GeocodingManager(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QGeoServiceProvider) MappingFeatures() QGeoServiceProvider__MappingFeature { + if ptr.Pointer() != nil { + return QGeoServiceProvider__MappingFeature(C.QGeoServiceProvider_MappingFeatures(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoServiceProvider) PlaceManager() *QPlaceManager { + if ptr.Pointer() != nil { + return QPlaceManagerFromPointer(unsafe.Pointer(C.QGeoServiceProvider_PlaceManager(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QGeoServiceProvider) PlacesFeatures() QGeoServiceProvider__PlacesFeature { + if ptr.Pointer() != nil { + return QGeoServiceProvider__PlacesFeature(C.QGeoServiceProvider_PlacesFeatures(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoServiceProvider) RoutingFeatures() QGeoServiceProvider__RoutingFeature { + if ptr.Pointer() != nil { + return QGeoServiceProvider__RoutingFeature(C.QGeoServiceProvider_RoutingFeatures(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoServiceProvider) RoutingManager() *QGeoRoutingManager { + if ptr.Pointer() != nil { + return QGeoRoutingManagerFromPointer(unsafe.Pointer(C.QGeoServiceProvider_RoutingManager(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QGeoServiceProvider) SetAllowExperimental(allow bool) { + if ptr.Pointer() != nil { + C.QGeoServiceProvider_SetAllowExperimental(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(allow))) + } +} + +func (ptr *QGeoServiceProvider) SetLocale(locale core.QLocaleITF) { + if ptr.Pointer() != nil { + C.QGeoServiceProvider_SetLocale(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQLocale(locale))) + } +} + +func (ptr *QGeoServiceProvider) DestroyQGeoServiceProvider() { + if ptr.Pointer() != nil { + C.QGeoServiceProvider_DestroyQGeoServiceProvider(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/location/qgeoserviceprovider.h b/location/qgeoserviceprovider.h new file mode 100755 index 00000000..6e99aea5 --- /dev/null +++ b/location/qgeoserviceprovider.h @@ -0,0 +1,50 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QGeoServiceProvider_OnlineGeocodingFeature_Type(); +int QGeoServiceProvider_OfflineGeocodingFeature_Type(); +int QGeoServiceProvider_ReverseGeocodingFeature_Type(); +int QGeoServiceProvider_LocalizedGeocodingFeature_Type(); +int QGeoServiceProvider_AnyGeocodingFeatures_Type(); +int QGeoServiceProvider_OnlineMappingFeature_Type(); +int QGeoServiceProvider_OfflineMappingFeature_Type(); +int QGeoServiceProvider_LocalizedMappingFeature_Type(); +int QGeoServiceProvider_AnyMappingFeatures_Type(); +int QGeoServiceProvider_OnlinePlacesFeature_Type(); +int QGeoServiceProvider_OfflinePlacesFeature_Type(); +int QGeoServiceProvider_SavePlaceFeature_Type(); +int QGeoServiceProvider_RemovePlaceFeature_Type(); +int QGeoServiceProvider_SaveCategoryFeature_Type(); +int QGeoServiceProvider_RemoveCategoryFeature_Type(); +int QGeoServiceProvider_PlaceRecommendationsFeature_Type(); +int QGeoServiceProvider_SearchSuggestionsFeature_Type(); +int QGeoServiceProvider_LocalizedPlacesFeature_Type(); +int QGeoServiceProvider_NotificationsFeature_Type(); +int QGeoServiceProvider_PlaceMatchingFeature_Type(); +int QGeoServiceProvider_AnyPlacesFeatures_Type(); +int QGeoServiceProvider_OnlineRoutingFeature_Type(); +int QGeoServiceProvider_OfflineRoutingFeature_Type(); +int QGeoServiceProvider_LocalizedRoutingFeature_Type(); +int QGeoServiceProvider_RouteUpdatesFeature_Type(); +int QGeoServiceProvider_AlternativeRoutesFeature_Type(); +int QGeoServiceProvider_ExcludeAreasRoutingFeature_Type(); +int QGeoServiceProvider_AnyRoutingFeatures_Type(); +char* QGeoServiceProvider_QGeoServiceProvider_AvailableServiceProviders(); +int QGeoServiceProvider_Error(QtObjectPtr ptr); +char* QGeoServiceProvider_ErrorString(QtObjectPtr ptr); +int QGeoServiceProvider_GeocodingFeatures(QtObjectPtr ptr); +QtObjectPtr QGeoServiceProvider_GeocodingManager(QtObjectPtr ptr); +int QGeoServiceProvider_MappingFeatures(QtObjectPtr ptr); +QtObjectPtr QGeoServiceProvider_PlaceManager(QtObjectPtr ptr); +int QGeoServiceProvider_PlacesFeatures(QtObjectPtr ptr); +int QGeoServiceProvider_RoutingFeatures(QtObjectPtr ptr); +QtObjectPtr QGeoServiceProvider_RoutingManager(QtObjectPtr ptr); +void QGeoServiceProvider_SetAllowExperimental(QtObjectPtr ptr, int allow); +void QGeoServiceProvider_SetLocale(QtObjectPtr ptr, QtObjectPtr locale); +void QGeoServiceProvider_DestroyQGeoServiceProvider(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qgeoserviceproviderfactory.cpp b/location/qgeoserviceproviderfactory.cpp new file mode 100755 index 00000000..8c53bbb9 --- /dev/null +++ b/location/qgeoserviceproviderfactory.cpp @@ -0,0 +1,17 @@ +#include "qgeoserviceproviderfactory.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGeoServiceProviderFactory: public QGeoServiceProviderFactory { +public: +}; + +void QGeoServiceProviderFactory_DestroyQGeoServiceProviderFactory(QtObjectPtr ptr){ + static_cast(ptr)->~QGeoServiceProviderFactory(); +} + diff --git a/location/qgeoserviceproviderfactory.go b/location/qgeoserviceproviderfactory.go new file mode 100755 index 00000000..c983e84c --- /dev/null +++ b/location/qgeoserviceproviderfactory.go @@ -0,0 +1,46 @@ +package location + +//#include "qgeoserviceproviderfactory.h" +import "C" +import ( + "unsafe" +) + +type QGeoServiceProviderFactory struct { + ptr unsafe.Pointer +} + +type QGeoServiceProviderFactoryITF interface { + QGeoServiceProviderFactoryPTR() *QGeoServiceProviderFactory +} + +func (p *QGeoServiceProviderFactory) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QGeoServiceProviderFactory) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQGeoServiceProviderFactory(ptr QGeoServiceProviderFactoryITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGeoServiceProviderFactoryPTR().Pointer() + } + return nil +} + +func QGeoServiceProviderFactoryFromPointer(ptr unsafe.Pointer) *QGeoServiceProviderFactory { + var n = new(QGeoServiceProviderFactory) + n.SetPointer(ptr) + return n +} + +func (ptr *QGeoServiceProviderFactory) QGeoServiceProviderFactoryPTR() *QGeoServiceProviderFactory { + return ptr +} + +func (ptr *QGeoServiceProviderFactory) DestroyQGeoServiceProviderFactory() { + if ptr.Pointer() != nil { + C.QGeoServiceProviderFactory_DestroyQGeoServiceProviderFactory(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/location/qgeoserviceproviderfactory.h b/location/qgeoserviceproviderfactory.h new file mode 100755 index 00000000..e149d937 --- /dev/null +++ b/location/qgeoserviceproviderfactory.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QGeoServiceProviderFactory_DestroyQGeoServiceProviderFactory(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qplace.cpp b/location/qplace.cpp new file mode 100755 index 00000000..3a4d134a --- /dev/null +++ b/location/qplace.cpp @@ -0,0 +1,7 @@ +#include "qplace.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qplace.go b/location/qplace.go new file mode 100755 index 00000000..f78d0878 --- /dev/null +++ b/location/qplace.go @@ -0,0 +1,40 @@ +package location + +//#include "qplace.h" +import "C" +import ( + "unsafe" +) + +type QPlace struct { + ptr unsafe.Pointer +} + +type QPlaceITF interface { + QPlacePTR() *QPlace +} + +func (p *QPlace) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPlace) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPlace(ptr QPlaceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlacePTR().Pointer() + } + return nil +} + +func QPlaceFromPointer(ptr unsafe.Pointer) *QPlace { + var n = new(QPlace) + n.SetPointer(ptr) + return n +} + +func (ptr *QPlace) QPlacePTR() *QPlace { + return ptr +} diff --git a/location/qplace.h b/location/qplace.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qplace.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qplaceattribute.cpp b/location/qplaceattribute.cpp new file mode 100755 index 00000000..8b6057af --- /dev/null +++ b/location/qplaceattribute.cpp @@ -0,0 +1,7 @@ +#include "qplaceattribute.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qplaceattribute.go b/location/qplaceattribute.go new file mode 100755 index 00000000..7f7dca5c --- /dev/null +++ b/location/qplaceattribute.go @@ -0,0 +1,40 @@ +package location + +//#include "qplaceattribute.h" +import "C" +import ( + "unsafe" +) + +type QPlaceAttribute struct { + ptr unsafe.Pointer +} + +type QPlaceAttributeITF interface { + QPlaceAttributePTR() *QPlaceAttribute +} + +func (p *QPlaceAttribute) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPlaceAttribute) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPlaceAttribute(ptr QPlaceAttributeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlaceAttributePTR().Pointer() + } + return nil +} + +func QPlaceAttributeFromPointer(ptr unsafe.Pointer) *QPlaceAttribute { + var n = new(QPlaceAttribute) + n.SetPointer(ptr) + return n +} + +func (ptr *QPlaceAttribute) QPlaceAttributePTR() *QPlaceAttribute { + return ptr +} diff --git a/location/qplaceattribute.h b/location/qplaceattribute.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qplaceattribute.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qplacecategory.cpp b/location/qplacecategory.cpp new file mode 100755 index 00000000..8e5e8f85 --- /dev/null +++ b/location/qplacecategory.cpp @@ -0,0 +1,7 @@ +#include "qplacecategory.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qplacecategory.go b/location/qplacecategory.go new file mode 100755 index 00000000..04d7475e --- /dev/null +++ b/location/qplacecategory.go @@ -0,0 +1,40 @@ +package location + +//#include "qplacecategory.h" +import "C" +import ( + "unsafe" +) + +type QPlaceCategory struct { + ptr unsafe.Pointer +} + +type QPlaceCategoryITF interface { + QPlaceCategoryPTR() *QPlaceCategory +} + +func (p *QPlaceCategory) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPlaceCategory) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPlaceCategory(ptr QPlaceCategoryITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlaceCategoryPTR().Pointer() + } + return nil +} + +func QPlaceCategoryFromPointer(ptr unsafe.Pointer) *QPlaceCategory { + var n = new(QPlaceCategory) + n.SetPointer(ptr) + return n +} + +func (ptr *QPlaceCategory) QPlaceCategoryPTR() *QPlaceCategory { + return ptr +} diff --git a/location/qplacecategory.h b/location/qplacecategory.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qplacecategory.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qplacecontactdetail.cpp b/location/qplacecontactdetail.cpp new file mode 100755 index 00000000..e1c0c59f --- /dev/null +++ b/location/qplacecontactdetail.cpp @@ -0,0 +1,7 @@ +#include "qplacecontactdetail.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qplacecontactdetail.go b/location/qplacecontactdetail.go new file mode 100755 index 00000000..769bec7e --- /dev/null +++ b/location/qplacecontactdetail.go @@ -0,0 +1,40 @@ +package location + +//#include "qplacecontactdetail.h" +import "C" +import ( + "unsafe" +) + +type QPlaceContactDetail struct { + ptr unsafe.Pointer +} + +type QPlaceContactDetailITF interface { + QPlaceContactDetailPTR() *QPlaceContactDetail +} + +func (p *QPlaceContactDetail) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPlaceContactDetail) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPlaceContactDetail(ptr QPlaceContactDetailITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlaceContactDetailPTR().Pointer() + } + return nil +} + +func QPlaceContactDetailFromPointer(ptr unsafe.Pointer) *QPlaceContactDetail { + var n = new(QPlaceContactDetail) + n.SetPointer(ptr) + return n +} + +func (ptr *QPlaceContactDetail) QPlaceContactDetailPTR() *QPlaceContactDetail { + return ptr +} diff --git a/location/qplacecontactdetail.h b/location/qplacecontactdetail.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qplacecontactdetail.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qplacecontent.cpp b/location/qplacecontent.cpp new file mode 100755 index 00000000..65e39929 --- /dev/null +++ b/location/qplacecontent.cpp @@ -0,0 +1,7 @@ +#include "qplacecontent.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qplacecontent.go b/location/qplacecontent.go new file mode 100755 index 00000000..3bdccc21 --- /dev/null +++ b/location/qplacecontent.go @@ -0,0 +1,50 @@ +package location + +//#include "qplacecontent.h" +import "C" +import ( + "unsafe" +) + +type QPlaceContent struct { + ptr unsafe.Pointer +} + +type QPlaceContentITF interface { + QPlaceContentPTR() *QPlaceContent +} + +func (p *QPlaceContent) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPlaceContent) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPlaceContent(ptr QPlaceContentITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlaceContentPTR().Pointer() + } + return nil +} + +func QPlaceContentFromPointer(ptr unsafe.Pointer) *QPlaceContent { + var n = new(QPlaceContent) + n.SetPointer(ptr) + return n +} + +func (ptr *QPlaceContent) QPlaceContentPTR() *QPlaceContent { + return ptr +} + +//QPlaceContent::Type +type QPlaceContent__Type int + +var ( + QPlaceContent__NoType = QPlaceContent__Type(0) + QPlaceContent__ImageType = QPlaceContent__Type(1) + QPlaceContent__ReviewType = QPlaceContent__Type(2) + QPlaceContent__EditorialType = QPlaceContent__Type(3) +) diff --git a/location/qplacecontent.h b/location/qplacecontent.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qplacecontent.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qplacecontentreply.cpp b/location/qplacecontentreply.cpp new file mode 100755 index 00000000..3335c06a --- /dev/null +++ b/location/qplacecontentreply.cpp @@ -0,0 +1,7 @@ +#include "qplacecontentreply.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qplacecontentreply.go b/location/qplacecontentreply.go new file mode 100755 index 00000000..a4aa977b --- /dev/null +++ b/location/qplacecontentreply.go @@ -0,0 +1,37 @@ +package location + +//#include "qplacecontentreply.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QPlaceContentReply struct { + QPlaceReply +} + +type QPlaceContentReplyITF interface { + QPlaceReplyITF + QPlaceContentReplyPTR() *QPlaceContentReply +} + +func PointerFromQPlaceContentReply(ptr QPlaceContentReplyITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlaceContentReplyPTR().Pointer() + } + return nil +} + +func QPlaceContentReplyFromPointer(ptr unsafe.Pointer) *QPlaceContentReply { + var n = new(QPlaceContentReply) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QPlaceContentReply_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QPlaceContentReply) QPlaceContentReplyPTR() *QPlaceContentReply { + return ptr +} diff --git a/location/qplacecontentreply.h b/location/qplacecontentreply.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qplacecontentreply.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qplacecontentrequest.cpp b/location/qplacecontentrequest.cpp new file mode 100755 index 00000000..6962610c --- /dev/null +++ b/location/qplacecontentrequest.cpp @@ -0,0 +1,7 @@ +#include "qplacecontentrequest.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qplacecontentrequest.go b/location/qplacecontentrequest.go new file mode 100755 index 00000000..b0dea2ec --- /dev/null +++ b/location/qplacecontentrequest.go @@ -0,0 +1,40 @@ +package location + +//#include "qplacecontentrequest.h" +import "C" +import ( + "unsafe" +) + +type QPlaceContentRequest struct { + ptr unsafe.Pointer +} + +type QPlaceContentRequestITF interface { + QPlaceContentRequestPTR() *QPlaceContentRequest +} + +func (p *QPlaceContentRequest) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPlaceContentRequest) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPlaceContentRequest(ptr QPlaceContentRequestITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlaceContentRequestPTR().Pointer() + } + return nil +} + +func QPlaceContentRequestFromPointer(ptr unsafe.Pointer) *QPlaceContentRequest { + var n = new(QPlaceContentRequest) + n.SetPointer(ptr) + return n +} + +func (ptr *QPlaceContentRequest) QPlaceContentRequestPTR() *QPlaceContentRequest { + return ptr +} diff --git a/location/qplacecontentrequest.h b/location/qplacecontentrequest.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qplacecontentrequest.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qplacedetailsreply.cpp b/location/qplacedetailsreply.cpp new file mode 100755 index 00000000..00d97746 --- /dev/null +++ b/location/qplacedetailsreply.cpp @@ -0,0 +1,7 @@ +#include "qplacedetailsreply.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qplacedetailsreply.go b/location/qplacedetailsreply.go new file mode 100755 index 00000000..f21d6658 --- /dev/null +++ b/location/qplacedetailsreply.go @@ -0,0 +1,37 @@ +package location + +//#include "qplacedetailsreply.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QPlaceDetailsReply struct { + QPlaceReply +} + +type QPlaceDetailsReplyITF interface { + QPlaceReplyITF + QPlaceDetailsReplyPTR() *QPlaceDetailsReply +} + +func PointerFromQPlaceDetailsReply(ptr QPlaceDetailsReplyITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlaceDetailsReplyPTR().Pointer() + } + return nil +} + +func QPlaceDetailsReplyFromPointer(ptr unsafe.Pointer) *QPlaceDetailsReply { + var n = new(QPlaceDetailsReply) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QPlaceDetailsReply_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QPlaceDetailsReply) QPlaceDetailsReplyPTR() *QPlaceDetailsReply { + return ptr +} diff --git a/location/qplacedetailsreply.h b/location/qplacedetailsreply.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qplacedetailsreply.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qplaceeditorial.cpp b/location/qplaceeditorial.cpp new file mode 100755 index 00000000..98760832 --- /dev/null +++ b/location/qplaceeditorial.cpp @@ -0,0 +1,7 @@ +#include "qplaceeditorial.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qplaceeditorial.go b/location/qplaceeditorial.go new file mode 100755 index 00000000..fe14d92a --- /dev/null +++ b/location/qplaceeditorial.go @@ -0,0 +1,33 @@ +package location + +//#include "qplaceeditorial.h" +import "C" +import ( + "unsafe" +) + +type QPlaceEditorial struct { + QPlaceContent +} + +type QPlaceEditorialITF interface { + QPlaceContentITF + QPlaceEditorialPTR() *QPlaceEditorial +} + +func PointerFromQPlaceEditorial(ptr QPlaceEditorialITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlaceEditorialPTR().Pointer() + } + return nil +} + +func QPlaceEditorialFromPointer(ptr unsafe.Pointer) *QPlaceEditorial { + var n = new(QPlaceEditorial) + n.SetPointer(ptr) + return n +} + +func (ptr *QPlaceEditorial) QPlaceEditorialPTR() *QPlaceEditorial { + return ptr +} diff --git a/location/qplaceeditorial.h b/location/qplaceeditorial.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qplaceeditorial.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qplaceicon.cpp b/location/qplaceicon.cpp new file mode 100755 index 00000000..a15641b9 --- /dev/null +++ b/location/qplaceicon.cpp @@ -0,0 +1,7 @@ +#include "qplaceicon.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qplaceicon.go b/location/qplaceicon.go new file mode 100755 index 00000000..29f53242 --- /dev/null +++ b/location/qplaceicon.go @@ -0,0 +1,40 @@ +package location + +//#include "qplaceicon.h" +import "C" +import ( + "unsafe" +) + +type QPlaceIcon struct { + ptr unsafe.Pointer +} + +type QPlaceIconITF interface { + QPlaceIconPTR() *QPlaceIcon +} + +func (p *QPlaceIcon) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPlaceIcon) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPlaceIcon(ptr QPlaceIconITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlaceIconPTR().Pointer() + } + return nil +} + +func QPlaceIconFromPointer(ptr unsafe.Pointer) *QPlaceIcon { + var n = new(QPlaceIcon) + n.SetPointer(ptr) + return n +} + +func (ptr *QPlaceIcon) QPlaceIconPTR() *QPlaceIcon { + return ptr +} diff --git a/location/qplaceicon.h b/location/qplaceicon.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qplaceicon.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qplaceidreply.cpp b/location/qplaceidreply.cpp new file mode 100755 index 00000000..3d51d99b --- /dev/null +++ b/location/qplaceidreply.cpp @@ -0,0 +1,7 @@ +#include "qplaceidreply.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qplaceidreply.go b/location/qplaceidreply.go new file mode 100755 index 00000000..5a3a955f --- /dev/null +++ b/location/qplaceidreply.go @@ -0,0 +1,47 @@ +package location + +//#include "qplaceidreply.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QPlaceIdReply struct { + QPlaceReply +} + +type QPlaceIdReplyITF interface { + QPlaceReplyITF + QPlaceIdReplyPTR() *QPlaceIdReply +} + +func PointerFromQPlaceIdReply(ptr QPlaceIdReplyITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlaceIdReplyPTR().Pointer() + } + return nil +} + +func QPlaceIdReplyFromPointer(ptr unsafe.Pointer) *QPlaceIdReply { + var n = new(QPlaceIdReply) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QPlaceIdReply_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QPlaceIdReply) QPlaceIdReplyPTR() *QPlaceIdReply { + return ptr +} + +//QPlaceIdReply::OperationType +type QPlaceIdReply__OperationType int + +var ( + QPlaceIdReply__SavePlace = QPlaceIdReply__OperationType(0) + QPlaceIdReply__SaveCategory = QPlaceIdReply__OperationType(1) + QPlaceIdReply__RemovePlace = QPlaceIdReply__OperationType(2) + QPlaceIdReply__RemoveCategory = QPlaceIdReply__OperationType(3) +) diff --git a/location/qplaceidreply.h b/location/qplaceidreply.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qplaceidreply.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qplaceimage.cpp b/location/qplaceimage.cpp new file mode 100755 index 00000000..976ed19b --- /dev/null +++ b/location/qplaceimage.cpp @@ -0,0 +1,7 @@ +#include "qplaceimage.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qplaceimage.go b/location/qplaceimage.go new file mode 100755 index 00000000..69d8f861 --- /dev/null +++ b/location/qplaceimage.go @@ -0,0 +1,33 @@ +package location + +//#include "qplaceimage.h" +import "C" +import ( + "unsafe" +) + +type QPlaceImage struct { + QPlaceContent +} + +type QPlaceImageITF interface { + QPlaceContentITF + QPlaceImagePTR() *QPlaceImage +} + +func PointerFromQPlaceImage(ptr QPlaceImageITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlaceImagePTR().Pointer() + } + return nil +} + +func QPlaceImageFromPointer(ptr unsafe.Pointer) *QPlaceImage { + var n = new(QPlaceImage) + n.SetPointer(ptr) + return n +} + +func (ptr *QPlaceImage) QPlaceImagePTR() *QPlaceImage { + return ptr +} diff --git a/location/qplaceimage.h b/location/qplaceimage.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qplaceimage.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qplacemanager.cpp b/location/qplacemanager.cpp new file mode 100755 index 00000000..99abbf1c --- /dev/null +++ b/location/qplacemanager.cpp @@ -0,0 +1,7 @@ +#include "qplacemanager.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qplacemanager.go b/location/qplacemanager.go new file mode 100755 index 00000000..216b29d0 --- /dev/null +++ b/location/qplacemanager.go @@ -0,0 +1,38 @@ +package location + +//#include "qplacemanager.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QPlaceManager struct { + core.QObject +} + +type QPlaceManagerITF interface { + core.QObjectITF + QPlaceManagerPTR() *QPlaceManager +} + +func PointerFromQPlaceManager(ptr QPlaceManagerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlaceManagerPTR().Pointer() + } + return nil +} + +func QPlaceManagerFromPointer(ptr unsafe.Pointer) *QPlaceManager { + var n = new(QPlaceManager) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QPlaceManager_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QPlaceManager) QPlaceManagerPTR() *QPlaceManager { + return ptr +} diff --git a/location/qplacemanager.h b/location/qplacemanager.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qplacemanager.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qplacemanagerengine.cpp b/location/qplacemanagerengine.cpp new file mode 100755 index 00000000..5ade3766 --- /dev/null +++ b/location/qplacemanagerengine.cpp @@ -0,0 +1,7 @@ +#include "qplacemanagerengine.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qplacemanagerengine.go b/location/qplacemanagerengine.go new file mode 100755 index 00000000..cad09d5f --- /dev/null +++ b/location/qplacemanagerengine.go @@ -0,0 +1,38 @@ +package location + +//#include "qplacemanagerengine.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QPlaceManagerEngine struct { + core.QObject +} + +type QPlaceManagerEngineITF interface { + core.QObjectITF + QPlaceManagerEnginePTR() *QPlaceManagerEngine +} + +func PointerFromQPlaceManagerEngine(ptr QPlaceManagerEngineITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlaceManagerEnginePTR().Pointer() + } + return nil +} + +func QPlaceManagerEngineFromPointer(ptr unsafe.Pointer) *QPlaceManagerEngine { + var n = new(QPlaceManagerEngine) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QPlaceManagerEngine_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QPlaceManagerEngine) QPlaceManagerEnginePTR() *QPlaceManagerEngine { + return ptr +} diff --git a/location/qplacemanagerengine.h b/location/qplacemanagerengine.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qplacemanagerengine.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qplacematchreply.cpp b/location/qplacematchreply.cpp new file mode 100755 index 00000000..4c6edb7e --- /dev/null +++ b/location/qplacematchreply.cpp @@ -0,0 +1,7 @@ +#include "qplacematchreply.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qplacematchreply.go b/location/qplacematchreply.go new file mode 100755 index 00000000..e049b5c3 --- /dev/null +++ b/location/qplacematchreply.go @@ -0,0 +1,37 @@ +package location + +//#include "qplacematchreply.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QPlaceMatchReply struct { + QPlaceReply +} + +type QPlaceMatchReplyITF interface { + QPlaceReplyITF + QPlaceMatchReplyPTR() *QPlaceMatchReply +} + +func PointerFromQPlaceMatchReply(ptr QPlaceMatchReplyITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlaceMatchReplyPTR().Pointer() + } + return nil +} + +func QPlaceMatchReplyFromPointer(ptr unsafe.Pointer) *QPlaceMatchReply { + var n = new(QPlaceMatchReply) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QPlaceMatchReply_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QPlaceMatchReply) QPlaceMatchReplyPTR() *QPlaceMatchReply { + return ptr +} diff --git a/location/qplacematchreply.h b/location/qplacematchreply.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qplacematchreply.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qplacematchrequest.cpp b/location/qplacematchrequest.cpp new file mode 100755 index 00000000..61590fef --- /dev/null +++ b/location/qplacematchrequest.cpp @@ -0,0 +1,7 @@ +#include "qplacematchrequest.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qplacematchrequest.go b/location/qplacematchrequest.go new file mode 100755 index 00000000..deb0b617 --- /dev/null +++ b/location/qplacematchrequest.go @@ -0,0 +1,40 @@ +package location + +//#include "qplacematchrequest.h" +import "C" +import ( + "unsafe" +) + +type QPlaceMatchRequest struct { + ptr unsafe.Pointer +} + +type QPlaceMatchRequestITF interface { + QPlaceMatchRequestPTR() *QPlaceMatchRequest +} + +func (p *QPlaceMatchRequest) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPlaceMatchRequest) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPlaceMatchRequest(ptr QPlaceMatchRequestITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlaceMatchRequestPTR().Pointer() + } + return nil +} + +func QPlaceMatchRequestFromPointer(ptr unsafe.Pointer) *QPlaceMatchRequest { + var n = new(QPlaceMatchRequest) + n.SetPointer(ptr) + return n +} + +func (ptr *QPlaceMatchRequest) QPlaceMatchRequestPTR() *QPlaceMatchRequest { + return ptr +} diff --git a/location/qplacematchrequest.h b/location/qplacematchrequest.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qplacematchrequest.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qplaceproposedsearchresult.cpp b/location/qplaceproposedsearchresult.cpp new file mode 100755 index 00000000..c974e30d --- /dev/null +++ b/location/qplaceproposedsearchresult.cpp @@ -0,0 +1,7 @@ +#include "qplaceproposedsearchresult.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qplaceproposedsearchresult.go b/location/qplaceproposedsearchresult.go new file mode 100755 index 00000000..2d119127 --- /dev/null +++ b/location/qplaceproposedsearchresult.go @@ -0,0 +1,33 @@ +package location + +//#include "qplaceproposedsearchresult.h" +import "C" +import ( + "unsafe" +) + +type QPlaceProposedSearchResult struct { + QPlaceSearchResult +} + +type QPlaceProposedSearchResultITF interface { + QPlaceSearchResultITF + QPlaceProposedSearchResultPTR() *QPlaceProposedSearchResult +} + +func PointerFromQPlaceProposedSearchResult(ptr QPlaceProposedSearchResultITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlaceProposedSearchResultPTR().Pointer() + } + return nil +} + +func QPlaceProposedSearchResultFromPointer(ptr unsafe.Pointer) *QPlaceProposedSearchResult { + var n = new(QPlaceProposedSearchResult) + n.SetPointer(ptr) + return n +} + +func (ptr *QPlaceProposedSearchResult) QPlaceProposedSearchResultPTR() *QPlaceProposedSearchResult { + return ptr +} diff --git a/location/qplaceproposedsearchresult.h b/location/qplaceproposedsearchresult.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qplaceproposedsearchresult.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qplaceratings.cpp b/location/qplaceratings.cpp new file mode 100755 index 00000000..e7e59511 --- /dev/null +++ b/location/qplaceratings.cpp @@ -0,0 +1,7 @@ +#include "qplaceratings.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qplaceratings.go b/location/qplaceratings.go new file mode 100755 index 00000000..310561f1 --- /dev/null +++ b/location/qplaceratings.go @@ -0,0 +1,40 @@ +package location + +//#include "qplaceratings.h" +import "C" +import ( + "unsafe" +) + +type QPlaceRatings struct { + ptr unsafe.Pointer +} + +type QPlaceRatingsITF interface { + QPlaceRatingsPTR() *QPlaceRatings +} + +func (p *QPlaceRatings) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPlaceRatings) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPlaceRatings(ptr QPlaceRatingsITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlaceRatingsPTR().Pointer() + } + return nil +} + +func QPlaceRatingsFromPointer(ptr unsafe.Pointer) *QPlaceRatings { + var n = new(QPlaceRatings) + n.SetPointer(ptr) + return n +} + +func (ptr *QPlaceRatings) QPlaceRatingsPTR() *QPlaceRatings { + return ptr +} diff --git a/location/qplaceratings.h b/location/qplaceratings.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qplaceratings.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qplacereply.cpp b/location/qplacereply.cpp new file mode 100755 index 00000000..a73f9768 --- /dev/null +++ b/location/qplacereply.cpp @@ -0,0 +1,7 @@ +#include "qplacereply.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qplacereply.go b/location/qplacereply.go new file mode 100755 index 00000000..b76d968d --- /dev/null +++ b/location/qplacereply.go @@ -0,0 +1,67 @@ +package location + +//#include "qplacereply.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QPlaceReply struct { + core.QObject +} + +type QPlaceReplyITF interface { + core.QObjectITF + QPlaceReplyPTR() *QPlaceReply +} + +func PointerFromQPlaceReply(ptr QPlaceReplyITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlaceReplyPTR().Pointer() + } + return nil +} + +func QPlaceReplyFromPointer(ptr unsafe.Pointer) *QPlaceReply { + var n = new(QPlaceReply) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QPlaceReply_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QPlaceReply) QPlaceReplyPTR() *QPlaceReply { + return ptr +} + +//QPlaceReply::Error +type QPlaceReply__Error int + +var ( + QPlaceReply__NoError = QPlaceReply__Error(0) + QPlaceReply__PlaceDoesNotExistError = QPlaceReply__Error(1) + QPlaceReply__CategoryDoesNotExistError = QPlaceReply__Error(2) + QPlaceReply__CommunicationError = QPlaceReply__Error(3) + QPlaceReply__ParseError = QPlaceReply__Error(4) + QPlaceReply__PermissionsError = QPlaceReply__Error(5) + QPlaceReply__UnsupportedError = QPlaceReply__Error(6) + QPlaceReply__BadArgumentError = QPlaceReply__Error(7) + QPlaceReply__CancelError = QPlaceReply__Error(8) + QPlaceReply__UnknownError = QPlaceReply__Error(9) +) + +//QPlaceReply::Type +type QPlaceReply__Type int + +var ( + QPlaceReply__Reply = QPlaceReply__Type(0) + QPlaceReply__DetailsReply = QPlaceReply__Type(1) + QPlaceReply__SearchReply = QPlaceReply__Type(2) + QPlaceReply__SearchSuggestionReply = QPlaceReply__Type(3) + QPlaceReply__ContentReply = QPlaceReply__Type(4) + QPlaceReply__IdReply = QPlaceReply__Type(5) + QPlaceReply__MatchReply = QPlaceReply__Type(6) +) diff --git a/location/qplacereply.h b/location/qplacereply.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qplacereply.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qplaceresult.cpp b/location/qplaceresult.cpp new file mode 100755 index 00000000..8eca7605 --- /dev/null +++ b/location/qplaceresult.cpp @@ -0,0 +1,7 @@ +#include "qplaceresult.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qplaceresult.go b/location/qplaceresult.go new file mode 100755 index 00000000..3158e48e --- /dev/null +++ b/location/qplaceresult.go @@ -0,0 +1,33 @@ +package location + +//#include "qplaceresult.h" +import "C" +import ( + "unsafe" +) + +type QPlaceResult struct { + QPlaceSearchResult +} + +type QPlaceResultITF interface { + QPlaceSearchResultITF + QPlaceResultPTR() *QPlaceResult +} + +func PointerFromQPlaceResult(ptr QPlaceResultITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlaceResultPTR().Pointer() + } + return nil +} + +func QPlaceResultFromPointer(ptr unsafe.Pointer) *QPlaceResult { + var n = new(QPlaceResult) + n.SetPointer(ptr) + return n +} + +func (ptr *QPlaceResult) QPlaceResultPTR() *QPlaceResult { + return ptr +} diff --git a/location/qplaceresult.h b/location/qplaceresult.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qplaceresult.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qplacereview.cpp b/location/qplacereview.cpp new file mode 100755 index 00000000..f8e4f3e4 --- /dev/null +++ b/location/qplacereview.cpp @@ -0,0 +1,7 @@ +#include "qplacereview.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qplacereview.go b/location/qplacereview.go new file mode 100755 index 00000000..44d6b67a --- /dev/null +++ b/location/qplacereview.go @@ -0,0 +1,33 @@ +package location + +//#include "qplacereview.h" +import "C" +import ( + "unsafe" +) + +type QPlaceReview struct { + QPlaceContent +} + +type QPlaceReviewITF interface { + QPlaceContentITF + QPlaceReviewPTR() *QPlaceReview +} + +func PointerFromQPlaceReview(ptr QPlaceReviewITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlaceReviewPTR().Pointer() + } + return nil +} + +func QPlaceReviewFromPointer(ptr unsafe.Pointer) *QPlaceReview { + var n = new(QPlaceReview) + n.SetPointer(ptr) + return n +} + +func (ptr *QPlaceReview) QPlaceReviewPTR() *QPlaceReview { + return ptr +} diff --git a/location/qplacereview.h b/location/qplacereview.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qplacereview.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qplacesearchreply.cpp b/location/qplacesearchreply.cpp new file mode 100755 index 00000000..3b038e10 --- /dev/null +++ b/location/qplacesearchreply.cpp @@ -0,0 +1,7 @@ +#include "qplacesearchreply.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qplacesearchreply.go b/location/qplacesearchreply.go new file mode 100755 index 00000000..2378a7e5 --- /dev/null +++ b/location/qplacesearchreply.go @@ -0,0 +1,37 @@ +package location + +//#include "qplacesearchreply.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QPlaceSearchReply struct { + QPlaceReply +} + +type QPlaceSearchReplyITF interface { + QPlaceReplyITF + QPlaceSearchReplyPTR() *QPlaceSearchReply +} + +func PointerFromQPlaceSearchReply(ptr QPlaceSearchReplyITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlaceSearchReplyPTR().Pointer() + } + return nil +} + +func QPlaceSearchReplyFromPointer(ptr unsafe.Pointer) *QPlaceSearchReply { + var n = new(QPlaceSearchReply) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QPlaceSearchReply_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QPlaceSearchReply) QPlaceSearchReplyPTR() *QPlaceSearchReply { + return ptr +} diff --git a/location/qplacesearchreply.h b/location/qplacesearchreply.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qplacesearchreply.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qplacesearchrequest.cpp b/location/qplacesearchrequest.cpp new file mode 100755 index 00000000..16b5eb8b --- /dev/null +++ b/location/qplacesearchrequest.cpp @@ -0,0 +1,7 @@ +#include "qplacesearchrequest.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qplacesearchrequest.go b/location/qplacesearchrequest.go new file mode 100755 index 00000000..33a5023f --- /dev/null +++ b/location/qplacesearchrequest.go @@ -0,0 +1,49 @@ +package location + +//#include "qplacesearchrequest.h" +import "C" +import ( + "unsafe" +) + +type QPlaceSearchRequest struct { + ptr unsafe.Pointer +} + +type QPlaceSearchRequestITF interface { + QPlaceSearchRequestPTR() *QPlaceSearchRequest +} + +func (p *QPlaceSearchRequest) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPlaceSearchRequest) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPlaceSearchRequest(ptr QPlaceSearchRequestITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlaceSearchRequestPTR().Pointer() + } + return nil +} + +func QPlaceSearchRequestFromPointer(ptr unsafe.Pointer) *QPlaceSearchRequest { + var n = new(QPlaceSearchRequest) + n.SetPointer(ptr) + return n +} + +func (ptr *QPlaceSearchRequest) QPlaceSearchRequestPTR() *QPlaceSearchRequest { + return ptr +} + +//QPlaceSearchRequest::RelevanceHint +type QPlaceSearchRequest__RelevanceHint int + +var ( + QPlaceSearchRequest__UnspecifiedHint = QPlaceSearchRequest__RelevanceHint(0) + QPlaceSearchRequest__DistanceHint = QPlaceSearchRequest__RelevanceHint(1) + QPlaceSearchRequest__LexicalPlaceNameHint = QPlaceSearchRequest__RelevanceHint(2) +) diff --git a/location/qplacesearchrequest.h b/location/qplacesearchrequest.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qplacesearchrequest.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qplacesearchresult.cpp b/location/qplacesearchresult.cpp new file mode 100755 index 00000000..02825475 --- /dev/null +++ b/location/qplacesearchresult.cpp @@ -0,0 +1,7 @@ +#include "qplacesearchresult.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qplacesearchresult.go b/location/qplacesearchresult.go new file mode 100755 index 00000000..d930eafc --- /dev/null +++ b/location/qplacesearchresult.go @@ -0,0 +1,49 @@ +package location + +//#include "qplacesearchresult.h" +import "C" +import ( + "unsafe" +) + +type QPlaceSearchResult struct { + ptr unsafe.Pointer +} + +type QPlaceSearchResultITF interface { + QPlaceSearchResultPTR() *QPlaceSearchResult +} + +func (p *QPlaceSearchResult) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPlaceSearchResult) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPlaceSearchResult(ptr QPlaceSearchResultITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlaceSearchResultPTR().Pointer() + } + return nil +} + +func QPlaceSearchResultFromPointer(ptr unsafe.Pointer) *QPlaceSearchResult { + var n = new(QPlaceSearchResult) + n.SetPointer(ptr) + return n +} + +func (ptr *QPlaceSearchResult) QPlaceSearchResultPTR() *QPlaceSearchResult { + return ptr +} + +//QPlaceSearchResult::SearchResultType +type QPlaceSearchResult__SearchResultType int + +var ( + QPlaceSearchResult__UnknownSearchResult = QPlaceSearchResult__SearchResultType(0) + QPlaceSearchResult__PlaceResult = QPlaceSearchResult__SearchResultType(1) + QPlaceSearchResult__ProposedSearchResult = QPlaceSearchResult__SearchResultType(2) +) diff --git a/location/qplacesearchresult.h b/location/qplacesearchresult.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qplacesearchresult.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qplacesearchsuggestionreply.cpp b/location/qplacesearchsuggestionreply.cpp new file mode 100755 index 00000000..0413ebd7 --- /dev/null +++ b/location/qplacesearchsuggestionreply.cpp @@ -0,0 +1,7 @@ +#include "qplacesearchsuggestionreply.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qplacesearchsuggestionreply.go b/location/qplacesearchsuggestionreply.go new file mode 100755 index 00000000..cf80f073 --- /dev/null +++ b/location/qplacesearchsuggestionreply.go @@ -0,0 +1,37 @@ +package location + +//#include "qplacesearchsuggestionreply.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QPlaceSearchSuggestionReply struct { + QPlaceReply +} + +type QPlaceSearchSuggestionReplyITF interface { + QPlaceReplyITF + QPlaceSearchSuggestionReplyPTR() *QPlaceSearchSuggestionReply +} + +func PointerFromQPlaceSearchSuggestionReply(ptr QPlaceSearchSuggestionReplyITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlaceSearchSuggestionReplyPTR().Pointer() + } + return nil +} + +func QPlaceSearchSuggestionReplyFromPointer(ptr unsafe.Pointer) *QPlaceSearchSuggestionReply { + var n = new(QPlaceSearchSuggestionReply) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QPlaceSearchSuggestionReply_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QPlaceSearchSuggestionReply) QPlaceSearchSuggestionReplyPTR() *QPlaceSearchSuggestionReply { + return ptr +} diff --git a/location/qplacesearchsuggestionreply.h b/location/qplacesearchsuggestionreply.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qplacesearchsuggestionreply.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qplacesupplier.cpp b/location/qplacesupplier.cpp new file mode 100755 index 00000000..540adb9d --- /dev/null +++ b/location/qplacesupplier.cpp @@ -0,0 +1,7 @@ +#include "qplacesupplier.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qplacesupplier.go b/location/qplacesupplier.go new file mode 100755 index 00000000..1f9f70e2 --- /dev/null +++ b/location/qplacesupplier.go @@ -0,0 +1,40 @@ +package location + +//#include "qplacesupplier.h" +import "C" +import ( + "unsafe" +) + +type QPlaceSupplier struct { + ptr unsafe.Pointer +} + +type QPlaceSupplierITF interface { + QPlaceSupplierPTR() *QPlaceSupplier +} + +func (p *QPlaceSupplier) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPlaceSupplier) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPlaceSupplier(ptr QPlaceSupplierITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlaceSupplierPTR().Pointer() + } + return nil +} + +func QPlaceSupplierFromPointer(ptr unsafe.Pointer) *QPlaceSupplier { + var n = new(QPlaceSupplier) + n.SetPointer(ptr) + return n +} + +func (ptr *QPlaceSupplier) QPlaceSupplierPTR() *QPlaceSupplier { + return ptr +} diff --git a/location/qplacesupplier.h b/location/qplacesupplier.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qplacesupplier.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/location/qplaceuser.cpp b/location/qplaceuser.cpp new file mode 100755 index 00000000..53390459 --- /dev/null +++ b/location/qplaceuser.cpp @@ -0,0 +1,7 @@ +#include "qplaceuser.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/location/qplaceuser.go b/location/qplaceuser.go new file mode 100755 index 00000000..63cab545 --- /dev/null +++ b/location/qplaceuser.go @@ -0,0 +1,40 @@ +package location + +//#include "qplaceuser.h" +import "C" +import ( + "unsafe" +) + +type QPlaceUser struct { + ptr unsafe.Pointer +} + +type QPlaceUserITF interface { + QPlaceUserPTR() *QPlaceUser +} + +func (p *QPlaceUser) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QPlaceUser) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQPlaceUser(ptr QPlaceUserITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlaceUserPTR().Pointer() + } + return nil +} + +func QPlaceUserFromPointer(ptr unsafe.Pointer) *QPlaceUser { + var n = new(QPlaceUser) + n.SetPointer(ptr) + return n +} + +func (ptr *QPlaceUser) QPlaceUserPTR() *QPlaceUser { + return ptr +} diff --git a/location/qplaceuser.h b/location/qplaceuser.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/location/qplaceuser.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/macextras/cgo_darwin_amd64.go b/macextras/cgo_darwin_amd64.go new file mode 100755 index 00000000..c4bc3297 --- /dev/null +++ b/macextras/cgo_darwin_amd64.go @@ -0,0 +1,13 @@ +package macextras + +/* +#cgo CPPFLAGS: -pipe -O2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 -Wall -W +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_MACEXTRAS_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/mkspecs/macx-clang -F/usr/local/Qt5.5.1/5.5/clang_64/lib +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtCore.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtGui.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtMacExtras.framework/Headers +#cgo CPPFLAGS: -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.framework/Headers + +#cgo LDFLAGS: -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 +#cgo LDFLAGS: -F/usr/local/Qt5.5.1/5.5/clang_64/lib -framework QtCore -framework QtGui -framework QtMacExtras -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL +*/ +import "C" diff --git a/macextras/cgo_linux_386.go b/macextras/cgo_linux_386.go new file mode 100755 index 00000000..617c8217 --- /dev/null +++ b/macextras/cgo_linux_386.go @@ -0,0 +1,12 @@ +package macextras + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_MACEXTRAS_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include -I/usr/local/Qt5.5.1/5.5/gcc/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc/include/QtGui -I/usr/local/Qt5.5.1/5.5/gcc/include/QtMacExtras + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc/lib -L/usr/lib -lQt5Core -lQt5Gui -lQt5MacExtras -lpthread +*/ +import "C" diff --git a/macextras/cgo_linux_amd64.go b/macextras/cgo_linux_amd64.go new file mode 100755 index 00000000..f6c54fad --- /dev/null +++ b/macextras/cgo_linux_amd64.go @@ -0,0 +1,12 @@ +package macextras + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_MACEXTRAS_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include -I/usr/local/Qt5.5.1/5.5/gcc_64/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtGui -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtMacExtras + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc_64/lib -L/usr/lib64 -lQt5Core -lQt5Gui -lQt5MacExtras -lpthread +*/ +import "C" diff --git a/macextras/cgo_windows_386.go b/macextras/cgo_windows_386.go new file mode 100755 index 00000000..09dd577c --- /dev/null +++ b/macextras/cgo_windows_386.go @@ -0,0 +1,12 @@ +package macextras + +/* +#cgo CPPFLAGS: -pipe -fno-keep-inline-dllexport -O2 -Wall -Wextra -fexceptions -mthreads +#cgo CPPFLAGS: -DUNICODE -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_MACEXTRAS_LIB +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include -IC:/Qt/Qt5.5.1/5.5/mingw492_32/mkspecs/win32-g++ +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtCore -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtGui -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtMacExtras + +#cgo LDFLAGS: -Wl,-s -Wl,-subsystem,windows -mthreads +#cgo LDFLAGS: -LC:/Qt/Qt5.5.1/5.5/mingw492_32/bin -lQt5Core -lQt5Gui -lQt5MacExtras +*/ +import "C" diff --git a/macextras/qmacpasteboardmime.cpp b/macextras/qmacpasteboardmime.cpp new file mode 100755 index 00000000..55224f04 --- /dev/null +++ b/macextras/qmacpasteboardmime.cpp @@ -0,0 +1,33 @@ +#include "qmacpasteboardmime.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMacPasteboardMime: public QMacPasteboardMime { +public: +}; + +char* QMacPasteboardMime_ConvertorName(QtObjectPtr ptr){ + return static_cast(ptr)->convertorName().toUtf8().data(); +} + +int QMacPasteboardMime_Count(QtObjectPtr ptr, QtObjectPtr mimeData){ + return static_cast(ptr)->count(static_cast(mimeData)); +} + +char* QMacPasteboardMime_FlavorFor(QtObjectPtr ptr, char* mime){ + return static_cast(ptr)->flavorFor(QString(mime)).toUtf8().data(); +} + +char* QMacPasteboardMime_MimeFor(QtObjectPtr ptr, char* flav){ + return static_cast(ptr)->mimeFor(QString(flav)).toUtf8().data(); +} + +void QMacPasteboardMime_DestroyQMacPasteboardMime(QtObjectPtr ptr){ + static_cast(ptr)->~QMacPasteboardMime(); +} + diff --git a/macextras/qmacpasteboardmime.go b/macextras/qmacpasteboardmime.go new file mode 100755 index 00000000..effe7af7 --- /dev/null +++ b/macextras/qmacpasteboardmime.go @@ -0,0 +1,75 @@ +package macextras + +//#include "qmacpasteboardmime.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QMacPasteboardMime struct { + ptr unsafe.Pointer +} + +type QMacPasteboardMimeITF interface { + QMacPasteboardMimePTR() *QMacPasteboardMime +} + +func (p *QMacPasteboardMime) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMacPasteboardMime) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMacPasteboardMime(ptr QMacPasteboardMimeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMacPasteboardMimePTR().Pointer() + } + return nil +} + +func QMacPasteboardMimeFromPointer(ptr unsafe.Pointer) *QMacPasteboardMime { + var n = new(QMacPasteboardMime) + n.SetPointer(ptr) + return n +} + +func (ptr *QMacPasteboardMime) QMacPasteboardMimePTR() *QMacPasteboardMime { + return ptr +} + +func (ptr *QMacPasteboardMime) ConvertorName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMacPasteboardMime_ConvertorName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMacPasteboardMime) Count(mimeData core.QMimeDataITF) int { + if ptr.Pointer() != nil { + return int(C.QMacPasteboardMime_Count(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQMimeData(mimeData)))) + } + return 0 +} + +func (ptr *QMacPasteboardMime) FlavorFor(mime string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QMacPasteboardMime_FlavorFor(C.QtObjectPtr(ptr.Pointer()), C.CString(mime))) + } + return "" +} + +func (ptr *QMacPasteboardMime) MimeFor(flav string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QMacPasteboardMime_MimeFor(C.QtObjectPtr(ptr.Pointer()), C.CString(flav))) + } + return "" +} + +func (ptr *QMacPasteboardMime) DestroyQMacPasteboardMime() { + if ptr.Pointer() != nil { + C.QMacPasteboardMime_DestroyQMacPasteboardMime(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/macextras/qmacpasteboardmime.h b/macextras/qmacpasteboardmime.h new file mode 100755 index 00000000..a11c9815 --- /dev/null +++ b/macextras/qmacpasteboardmime.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QMacPasteboardMime_ConvertorName(QtObjectPtr ptr); +int QMacPasteboardMime_Count(QtObjectPtr ptr, QtObjectPtr mimeData); +char* QMacPasteboardMime_FlavorFor(QtObjectPtr ptr, char* mime); +char* QMacPasteboardMime_MimeFor(QtObjectPtr ptr, char* flav); +void QMacPasteboardMime_DestroyQMacPasteboardMime(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/macextras/qmactoolbar.cpp b/macextras/qmactoolbar.cpp new file mode 100755 index 00000000..1597cd54 --- /dev/null +++ b/macextras/qmactoolbar.cpp @@ -0,0 +1,47 @@ +#include "qmactoolbar.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMacToolBar: public QMacToolBar { +public: +}; + +QtObjectPtr QMacToolBar_NewQMacToolBar(QtObjectPtr parent){ + return new QMacToolBar(static_cast(parent)); +} + +QtObjectPtr QMacToolBar_NewQMacToolBar2(char* identifier, QtObjectPtr parent){ + return new QMacToolBar(QString(identifier), static_cast(parent)); +} + +QtObjectPtr QMacToolBar_AddAllowedItem(QtObjectPtr ptr, QtObjectPtr icon, char* text){ + return static_cast(ptr)->addAllowedItem(*static_cast(icon), QString(text)); +} + +QtObjectPtr QMacToolBar_AddItem(QtObjectPtr ptr, QtObjectPtr icon, char* text){ + return static_cast(ptr)->addItem(*static_cast(icon), QString(text)); +} + +void QMacToolBar_AddSeparator(QtObjectPtr ptr){ + static_cast(ptr)->addSeparator(); +} + +void QMacToolBar_AttachToWindow(QtObjectPtr ptr, QtObjectPtr window){ + static_cast(ptr)->attachToWindow(static_cast(window)); +} + +void QMacToolBar_DetachFromWindow(QtObjectPtr ptr){ + static_cast(ptr)->detachFromWindow(); +} + +void QMacToolBar_DestroyQMacToolBar(QtObjectPtr ptr){ + static_cast(ptr)->~QMacToolBar(); +} + diff --git a/macextras/qmactoolbar.go b/macextras/qmactoolbar.go new file mode 100755 index 00000000..cdec420e --- /dev/null +++ b/macextras/qmactoolbar.go @@ -0,0 +1,86 @@ +package macextras + +//#include "qmactoolbar.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QMacToolBar struct { + core.QObject +} + +type QMacToolBarITF interface { + core.QObjectITF + QMacToolBarPTR() *QMacToolBar +} + +func PointerFromQMacToolBar(ptr QMacToolBarITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMacToolBarPTR().Pointer() + } + return nil +} + +func QMacToolBarFromPointer(ptr unsafe.Pointer) *QMacToolBar { + var n = new(QMacToolBar) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMacToolBar_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMacToolBar) QMacToolBarPTR() *QMacToolBar { + return ptr +} + +func NewQMacToolBar(parent core.QObjectITF) *QMacToolBar { + return QMacToolBarFromPointer(unsafe.Pointer(C.QMacToolBar_NewQMacToolBar(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQMacToolBar2(identifier string, parent core.QObjectITF) *QMacToolBar { + return QMacToolBarFromPointer(unsafe.Pointer(C.QMacToolBar_NewQMacToolBar2(C.CString(identifier), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QMacToolBar) AddAllowedItem(icon gui.QIconITF, text string) *QMacToolBarItem { + if ptr.Pointer() != nil { + return QMacToolBarItemFromPointer(unsafe.Pointer(C.QMacToolBar_AddAllowedItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQIcon(icon)), C.CString(text)))) + } + return nil +} + +func (ptr *QMacToolBar) AddItem(icon gui.QIconITF, text string) *QMacToolBarItem { + if ptr.Pointer() != nil { + return QMacToolBarItemFromPointer(unsafe.Pointer(C.QMacToolBar_AddItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQIcon(icon)), C.CString(text)))) + } + return nil +} + +func (ptr *QMacToolBar) AddSeparator() { + if ptr.Pointer() != nil { + C.QMacToolBar_AddSeparator(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMacToolBar) AttachToWindow(window gui.QWindowITF) { + if ptr.Pointer() != nil { + C.QMacToolBar_AttachToWindow(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQWindow(window))) + } +} + +func (ptr *QMacToolBar) DetachFromWindow() { + if ptr.Pointer() != nil { + C.QMacToolBar_DetachFromWindow(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMacToolBar) DestroyQMacToolBar() { + if ptr.Pointer() != nil { + C.QMacToolBar_DestroyQMacToolBar(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/macextras/qmactoolbar.h b/macextras/qmactoolbar.h new file mode 100755 index 00000000..7de4b4cc --- /dev/null +++ b/macextras/qmactoolbar.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QMacToolBar_NewQMacToolBar(QtObjectPtr parent); +QtObjectPtr QMacToolBar_NewQMacToolBar2(char* identifier, QtObjectPtr parent); +QtObjectPtr QMacToolBar_AddAllowedItem(QtObjectPtr ptr, QtObjectPtr icon, char* text); +QtObjectPtr QMacToolBar_AddItem(QtObjectPtr ptr, QtObjectPtr icon, char* text); +void QMacToolBar_AddSeparator(QtObjectPtr ptr); +void QMacToolBar_AttachToWindow(QtObjectPtr ptr, QtObjectPtr window); +void QMacToolBar_DetachFromWindow(QtObjectPtr ptr); +void QMacToolBar_DestroyQMacToolBar(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/macextras/qmactoolbaritem.cpp b/macextras/qmactoolbaritem.cpp new file mode 100755 index 00000000..967b8780 --- /dev/null +++ b/macextras/qmactoolbaritem.cpp @@ -0,0 +1,60 @@ +#include "qmactoolbaritem.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMacToolBarItem: public QMacToolBarItem { +public: +void Signal_Activated(){callbackQMacToolBarItemActivated(this->objectName().toUtf8().data());}; +}; + +QtObjectPtr QMacToolBarItem_NewQMacToolBarItem(QtObjectPtr parent){ + return new QMacToolBarItem(static_cast(parent)); +} + +void QMacToolBarItem_ConnectActivated(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMacToolBarItem::activated), static_cast(ptr), static_cast(&MyQMacToolBarItem::Signal_Activated));; +} + +void QMacToolBarItem_DisconnectActivated(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMacToolBarItem::activated), static_cast(ptr), static_cast(&MyQMacToolBarItem::Signal_Activated));; +} + +void QMacToolBarItem_DestroyQMacToolBarItem(QtObjectPtr ptr){ + static_cast(ptr)->~QMacToolBarItem(); +} + +int QMacToolBarItem_Selectable(QtObjectPtr ptr){ + return static_cast(ptr)->selectable(); +} + +void QMacToolBarItem_SetIcon(QtObjectPtr ptr, QtObjectPtr icon){ + static_cast(ptr)->setIcon(*static_cast(icon)); +} + +void QMacToolBarItem_SetSelectable(QtObjectPtr ptr, int selectable){ + static_cast(ptr)->setSelectable(selectable != 0); +} + +void QMacToolBarItem_SetStandardItem(QtObjectPtr ptr, int standardItem){ + static_cast(ptr)->setStandardItem(static_cast(standardItem)); +} + +void QMacToolBarItem_SetText(QtObjectPtr ptr, char* text){ + static_cast(ptr)->setText(QString(text)); +} + +int QMacToolBarItem_StandardItem(QtObjectPtr ptr){ + return static_cast(ptr)->standardItem(); +} + +char* QMacToolBarItem_Text(QtObjectPtr ptr){ + return static_cast(ptr)->text().toUtf8().data(); +} + diff --git a/macextras/qmactoolbaritem.go b/macextras/qmactoolbaritem.go new file mode 100755 index 00000000..260b5ef9 --- /dev/null +++ b/macextras/qmactoolbaritem.go @@ -0,0 +1,123 @@ +package macextras + +//#include "qmactoolbaritem.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QMacToolBarItem struct { + core.QObject +} + +type QMacToolBarItemITF interface { + core.QObjectITF + QMacToolBarItemPTR() *QMacToolBarItem +} + +func PointerFromQMacToolBarItem(ptr QMacToolBarItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMacToolBarItemPTR().Pointer() + } + return nil +} + +func QMacToolBarItemFromPointer(ptr unsafe.Pointer) *QMacToolBarItem { + var n = new(QMacToolBarItem) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMacToolBarItem_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMacToolBarItem) QMacToolBarItemPTR() *QMacToolBarItem { + return ptr +} + +//QMacToolBarItem::StandardItem +type QMacToolBarItem__StandardItem int + +var ( + QMacToolBarItem__NoStandardItem = QMacToolBarItem__StandardItem(0) + QMacToolBarItem__Space = QMacToolBarItem__StandardItem(1) + QMacToolBarItem__FlexibleSpace = QMacToolBarItem__StandardItem(2) +) + +func NewQMacToolBarItem(parent core.QObjectITF) *QMacToolBarItem { + return QMacToolBarItemFromPointer(unsafe.Pointer(C.QMacToolBarItem_NewQMacToolBarItem(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QMacToolBarItem) ConnectActivated(f func()) { + if ptr.Pointer() != nil { + C.QMacToolBarItem_ConnectActivated(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "activated", f) + } +} + +func (ptr *QMacToolBarItem) DisconnectActivated() { + if ptr.Pointer() != nil { + C.QMacToolBarItem_DisconnectActivated(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "activated") + } +} + +//export callbackQMacToolBarItemActivated +func callbackQMacToolBarItemActivated(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "activated").(func())() +} + +func (ptr *QMacToolBarItem) DestroyQMacToolBarItem() { + if ptr.Pointer() != nil { + C.QMacToolBarItem_DestroyQMacToolBarItem(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} + +func (ptr *QMacToolBarItem) Selectable() bool { + if ptr.Pointer() != nil { + return C.QMacToolBarItem_Selectable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMacToolBarItem) SetIcon(icon gui.QIconITF) { + if ptr.Pointer() != nil { + C.QMacToolBarItem_SetIcon(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQIcon(icon))) + } +} + +func (ptr *QMacToolBarItem) SetSelectable(selectable bool) { + if ptr.Pointer() != nil { + C.QMacToolBarItem_SetSelectable(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(selectable))) + } +} + +func (ptr *QMacToolBarItem) SetStandardItem(standardItem QMacToolBarItem__StandardItem) { + if ptr.Pointer() != nil { + C.QMacToolBarItem_SetStandardItem(C.QtObjectPtr(ptr.Pointer()), C.int(standardItem)) + } +} + +func (ptr *QMacToolBarItem) SetText(text string) { + if ptr.Pointer() != nil { + C.QMacToolBarItem_SetText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QMacToolBarItem) StandardItem() QMacToolBarItem__StandardItem { + if ptr.Pointer() != nil { + return QMacToolBarItem__StandardItem(C.QMacToolBarItem_StandardItem(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMacToolBarItem) Text() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMacToolBarItem_Text(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/macextras/qmactoolbaritem.h b/macextras/qmactoolbaritem.h new file mode 100755 index 00000000..9befa1e8 --- /dev/null +++ b/macextras/qmactoolbaritem.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QMacToolBarItem_NewQMacToolBarItem(QtObjectPtr parent); +void QMacToolBarItem_ConnectActivated(QtObjectPtr ptr); +void QMacToolBarItem_DisconnectActivated(QtObjectPtr ptr); +void QMacToolBarItem_DestroyQMacToolBarItem(QtObjectPtr ptr); +int QMacToolBarItem_Selectable(QtObjectPtr ptr); +void QMacToolBarItem_SetIcon(QtObjectPtr ptr, QtObjectPtr icon); +void QMacToolBarItem_SetSelectable(QtObjectPtr ptr, int selectable); +void QMacToolBarItem_SetStandardItem(QtObjectPtr ptr, int standardItem); +void QMacToolBarItem_SetText(QtObjectPtr ptr, char* text); +int QMacToolBarItem_StandardItem(QtObjectPtr ptr); +char* QMacToolBarItem_Text(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/cgo_darwin_amd64.go b/multimedia/cgo_darwin_amd64.go new file mode 100755 index 00000000..1c8c7d13 --- /dev/null +++ b/multimedia/cgo_darwin_amd64.go @@ -0,0 +1,13 @@ +package multimedia + +/* +#cgo CPPFLAGS: -pipe -O2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 -Wall -W +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_MULTIMEDIA_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/mkspecs/macx-clang -F/usr/local/Qt5.5.1/5.5/clang_64/lib +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtCore.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtGui.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtNetwork.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtMultimedia.framework/Headers +#cgo CPPFLAGS: -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.framework/Headers + +#cgo LDFLAGS: -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 +#cgo LDFLAGS: -F/usr/local/Qt5.5.1/5.5/clang_64/lib -framework QtCore -framework QtGui -framework QtNetwork -framework QtMultimedia -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL +*/ +import "C" diff --git a/multimedia/cgo_linux_386.go b/multimedia/cgo_linux_386.go new file mode 100755 index 00000000..54b80e50 --- /dev/null +++ b/multimedia/cgo_linux_386.go @@ -0,0 +1,12 @@ +package multimedia + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_MULTIMEDIA_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include -I/usr/local/Qt5.5.1/5.5/gcc/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc/include/QtGui -I/usr/local/Qt5.5.1/5.5/gcc/include/QtNetwork -I/usr/local/Qt5.5.1/5.5/gcc/include/QtMultimedia + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc/lib -L/usr/lib -lQt5Core -lQt5Gui -lQt5Network -lQt5Multimedia -lpthread +*/ +import "C" diff --git a/multimedia/cgo_linux_amd64.go b/multimedia/cgo_linux_amd64.go new file mode 100755 index 00000000..3c47ef55 --- /dev/null +++ b/multimedia/cgo_linux_amd64.go @@ -0,0 +1,12 @@ +package multimedia + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_MULTIMEDIA_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include -I/usr/local/Qt5.5.1/5.5/gcc_64/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtGui -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtNetwork -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtMultimedia + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc_64/lib -L/usr/lib64 -lQt5Core -lQt5Gui -lQt5Network -lQt5Multimedia -lpthread +*/ +import "C" diff --git a/multimedia/cgo_windows_386.go b/multimedia/cgo_windows_386.go new file mode 100755 index 00000000..0d12d929 --- /dev/null +++ b/multimedia/cgo_windows_386.go @@ -0,0 +1,12 @@ +package multimedia + +/* +#cgo CPPFLAGS: -pipe -fno-keep-inline-dllexport -O2 -Wall -Wextra -fexceptions -mthreads +#cgo CPPFLAGS: -DUNICODE -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_MULTIMEDIA_LIB +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include -IC:/Qt/Qt5.5.1/5.5/mingw492_32/mkspecs/win32-g++ +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtCore -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtGui -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtNetwork -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtMultimedia + +#cgo LDFLAGS: -Wl,-s -Wl,-subsystem,windows -mthreads +#cgo LDFLAGS: -LC:/Qt/Qt5.5.1/5.5/mingw492_32/bin -lQt5Core -lQt5Gui -lQt5Network -lQt5Multimedia +*/ +import "C" diff --git a/multimedia/qabstractplanarvideobuffer.cpp b/multimedia/qabstractplanarvideobuffer.cpp new file mode 100755 index 00000000..e8b7b9c8 --- /dev/null +++ b/multimedia/qabstractplanarvideobuffer.cpp @@ -0,0 +1,16 @@ +#include "qabstractplanarvideobuffer.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAbstractPlanarVideoBuffer: public QAbstractPlanarVideoBuffer { +public: +}; + +void QAbstractPlanarVideoBuffer_DestroyQAbstractPlanarVideoBuffer(QtObjectPtr ptr){ + static_cast(ptr)->~QAbstractPlanarVideoBuffer(); +} + diff --git a/multimedia/qabstractplanarvideobuffer.go b/multimedia/qabstractplanarvideobuffer.go new file mode 100755 index 00000000..a037b5e3 --- /dev/null +++ b/multimedia/qabstractplanarvideobuffer.go @@ -0,0 +1,39 @@ +package multimedia + +//#include "qabstractplanarvideobuffer.h" +import "C" +import ( + "unsafe" +) + +type QAbstractPlanarVideoBuffer struct { + QAbstractVideoBuffer +} + +type QAbstractPlanarVideoBufferITF interface { + QAbstractVideoBufferITF + QAbstractPlanarVideoBufferPTR() *QAbstractPlanarVideoBuffer +} + +func PointerFromQAbstractPlanarVideoBuffer(ptr QAbstractPlanarVideoBufferITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractPlanarVideoBufferPTR().Pointer() + } + return nil +} + +func QAbstractPlanarVideoBufferFromPointer(ptr unsafe.Pointer) *QAbstractPlanarVideoBuffer { + var n = new(QAbstractPlanarVideoBuffer) + n.SetPointer(ptr) + return n +} + +func (ptr *QAbstractPlanarVideoBuffer) QAbstractPlanarVideoBufferPTR() *QAbstractPlanarVideoBuffer { + return ptr +} + +func (ptr *QAbstractPlanarVideoBuffer) DestroyQAbstractPlanarVideoBuffer() { + if ptr.Pointer() != nil { + C.QAbstractPlanarVideoBuffer_DestroyQAbstractPlanarVideoBuffer(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/multimedia/qabstractplanarvideobuffer.h b/multimedia/qabstractplanarvideobuffer.h new file mode 100755 index 00000000..879f9fd6 --- /dev/null +++ b/multimedia/qabstractplanarvideobuffer.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QAbstractPlanarVideoBuffer_DestroyQAbstractPlanarVideoBuffer(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qabstractvideobuffer.cpp b/multimedia/qabstractvideobuffer.cpp new file mode 100755 index 00000000..ae147b33 --- /dev/null +++ b/multimedia/qabstractvideobuffer.cpp @@ -0,0 +1,36 @@ +#include "qabstractvideobuffer.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAbstractVideoBuffer: public QAbstractVideoBuffer { +public: +}; + +char* QAbstractVideoBuffer_Handle(QtObjectPtr ptr){ + return static_cast(ptr)->handle().toString().toUtf8().data(); +} + +int QAbstractVideoBuffer_HandleType(QtObjectPtr ptr){ + return static_cast(ptr)->handleType(); +} + +int QAbstractVideoBuffer_MapMode(QtObjectPtr ptr){ + return static_cast(ptr)->mapMode(); +} + +void QAbstractVideoBuffer_Release(QtObjectPtr ptr){ + static_cast(ptr)->release(); +} + +void QAbstractVideoBuffer_Unmap(QtObjectPtr ptr){ + static_cast(ptr)->unmap(); +} + +void QAbstractVideoBuffer_DestroyQAbstractVideoBuffer(QtObjectPtr ptr){ + static_cast(ptr)->~QAbstractVideoBuffer(); +} + diff --git a/multimedia/qabstractvideobuffer.go b/multimedia/qabstractvideobuffer.go new file mode 100755 index 00000000..ff8a0be2 --- /dev/null +++ b/multimedia/qabstractvideobuffer.go @@ -0,0 +1,102 @@ +package multimedia + +//#include "qabstractvideobuffer.h" +import "C" +import ( + "unsafe" +) + +type QAbstractVideoBuffer struct { + ptr unsafe.Pointer +} + +type QAbstractVideoBufferITF interface { + QAbstractVideoBufferPTR() *QAbstractVideoBuffer +} + +func (p *QAbstractVideoBuffer) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QAbstractVideoBuffer) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQAbstractVideoBuffer(ptr QAbstractVideoBufferITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractVideoBufferPTR().Pointer() + } + return nil +} + +func QAbstractVideoBufferFromPointer(ptr unsafe.Pointer) *QAbstractVideoBuffer { + var n = new(QAbstractVideoBuffer) + n.SetPointer(ptr) + return n +} + +func (ptr *QAbstractVideoBuffer) QAbstractVideoBufferPTR() *QAbstractVideoBuffer { + return ptr +} + +//QAbstractVideoBuffer::HandleType +type QAbstractVideoBuffer__HandleType int + +var ( + QAbstractVideoBuffer__NoHandle = QAbstractVideoBuffer__HandleType(0) + QAbstractVideoBuffer__GLTextureHandle = QAbstractVideoBuffer__HandleType(1) + QAbstractVideoBuffer__XvShmImageHandle = QAbstractVideoBuffer__HandleType(2) + QAbstractVideoBuffer__CoreImageHandle = QAbstractVideoBuffer__HandleType(3) + QAbstractVideoBuffer__QPixmapHandle = QAbstractVideoBuffer__HandleType(4) + QAbstractVideoBuffer__EGLImageHandle = QAbstractVideoBuffer__HandleType(5) + QAbstractVideoBuffer__UserHandle = QAbstractVideoBuffer__HandleType(1000) +) + +//QAbstractVideoBuffer::MapMode +type QAbstractVideoBuffer__MapMode int + +var ( + QAbstractVideoBuffer__NotMapped = QAbstractVideoBuffer__MapMode(0x00) + QAbstractVideoBuffer__ReadOnly = QAbstractVideoBuffer__MapMode(0x01) + QAbstractVideoBuffer__WriteOnly = QAbstractVideoBuffer__MapMode(0x02) + QAbstractVideoBuffer__ReadWrite = QAbstractVideoBuffer__MapMode(QAbstractVideoBuffer__ReadOnly | QAbstractVideoBuffer__WriteOnly) +) + +func (ptr *QAbstractVideoBuffer) Handle() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAbstractVideoBuffer_Handle(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAbstractVideoBuffer) HandleType() QAbstractVideoBuffer__HandleType { + if ptr.Pointer() != nil { + return QAbstractVideoBuffer__HandleType(C.QAbstractVideoBuffer_HandleType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractVideoBuffer) MapMode() QAbstractVideoBuffer__MapMode { + if ptr.Pointer() != nil { + return QAbstractVideoBuffer__MapMode(C.QAbstractVideoBuffer_MapMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractVideoBuffer) Release() { + if ptr.Pointer() != nil { + C.QAbstractVideoBuffer_Release(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractVideoBuffer) Unmap() { + if ptr.Pointer() != nil { + C.QAbstractVideoBuffer_Unmap(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractVideoBuffer) DestroyQAbstractVideoBuffer() { + if ptr.Pointer() != nil { + C.QAbstractVideoBuffer_DestroyQAbstractVideoBuffer(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/multimedia/qabstractvideobuffer.h b/multimedia/qabstractvideobuffer.h new file mode 100755 index 00000000..c9f2f124 --- /dev/null +++ b/multimedia/qabstractvideobuffer.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QAbstractVideoBuffer_Handle(QtObjectPtr ptr); +int QAbstractVideoBuffer_HandleType(QtObjectPtr ptr); +int QAbstractVideoBuffer_MapMode(QtObjectPtr ptr); +void QAbstractVideoBuffer_Release(QtObjectPtr ptr); +void QAbstractVideoBuffer_Unmap(QtObjectPtr ptr); +void QAbstractVideoBuffer_DestroyQAbstractVideoBuffer(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qabstractvideofilter.cpp b/multimedia/qabstractvideofilter.cpp new file mode 100755 index 00000000..17102121 --- /dev/null +++ b/multimedia/qabstractvideofilter.cpp @@ -0,0 +1,34 @@ +#include "qabstractvideofilter.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAbstractVideoFilter: public QAbstractVideoFilter { +public: +void Signal_ActiveChanged(){callbackQAbstractVideoFilterActiveChanged(this->objectName().toUtf8().data());}; +}; + +int QAbstractVideoFilter_IsActive(QtObjectPtr ptr){ + return static_cast(ptr)->isActive(); +} + +void QAbstractVideoFilter_SetActive(QtObjectPtr ptr, int v){ + static_cast(ptr)->setActive(v != 0); +} + +void QAbstractVideoFilter_ConnectActiveChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractVideoFilter::activeChanged), static_cast(ptr), static_cast(&MyQAbstractVideoFilter::Signal_ActiveChanged));; +} + +void QAbstractVideoFilter_DisconnectActiveChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractVideoFilter::activeChanged), static_cast(ptr), static_cast(&MyQAbstractVideoFilter::Signal_ActiveChanged));; +} + +QtObjectPtr QAbstractVideoFilter_CreateFilterRunnable(QtObjectPtr ptr){ + return static_cast(ptr)->createFilterRunnable(); +} + diff --git a/multimedia/qabstractvideofilter.go b/multimedia/qabstractvideofilter.go new file mode 100755 index 00000000..5bddb252 --- /dev/null +++ b/multimedia/qabstractvideofilter.go @@ -0,0 +1,77 @@ +package multimedia + +//#include "qabstractvideofilter.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAbstractVideoFilter struct { + core.QObject +} + +type QAbstractVideoFilterITF interface { + core.QObjectITF + QAbstractVideoFilterPTR() *QAbstractVideoFilter +} + +func PointerFromQAbstractVideoFilter(ptr QAbstractVideoFilterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractVideoFilterPTR().Pointer() + } + return nil +} + +func QAbstractVideoFilterFromPointer(ptr unsafe.Pointer) *QAbstractVideoFilter { + var n = new(QAbstractVideoFilter) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAbstractVideoFilter_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAbstractVideoFilter) QAbstractVideoFilterPTR() *QAbstractVideoFilter { + return ptr +} + +func (ptr *QAbstractVideoFilter) IsActive() bool { + if ptr.Pointer() != nil { + return C.QAbstractVideoFilter_IsActive(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractVideoFilter) SetActive(v bool) { + if ptr.Pointer() != nil { + C.QAbstractVideoFilter_SetActive(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QAbstractVideoFilter) ConnectActiveChanged(f func()) { + if ptr.Pointer() != nil { + C.QAbstractVideoFilter_ConnectActiveChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "activeChanged", f) + } +} + +func (ptr *QAbstractVideoFilter) DisconnectActiveChanged() { + if ptr.Pointer() != nil { + C.QAbstractVideoFilter_DisconnectActiveChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "activeChanged") + } +} + +//export callbackQAbstractVideoFilterActiveChanged +func callbackQAbstractVideoFilterActiveChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "activeChanged").(func())() +} + +func (ptr *QAbstractVideoFilter) CreateFilterRunnable() *QVideoFilterRunnable { + if ptr.Pointer() != nil { + return QVideoFilterRunnableFromPointer(unsafe.Pointer(C.QAbstractVideoFilter_CreateFilterRunnable(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} diff --git a/multimedia/qabstractvideofilter.h b/multimedia/qabstractvideofilter.h new file mode 100755 index 00000000..07f1993b --- /dev/null +++ b/multimedia/qabstractvideofilter.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QAbstractVideoFilter_IsActive(QtObjectPtr ptr); +void QAbstractVideoFilter_SetActive(QtObjectPtr ptr, int v); +void QAbstractVideoFilter_ConnectActiveChanged(QtObjectPtr ptr); +void QAbstractVideoFilter_DisconnectActiveChanged(QtObjectPtr ptr); +QtObjectPtr QAbstractVideoFilter_CreateFilterRunnable(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qabstractvideosurface.cpp b/multimedia/qabstractvideosurface.cpp new file mode 100755 index 00000000..77f54cec --- /dev/null +++ b/multimedia/qabstractvideosurface.cpp @@ -0,0 +1,61 @@ +#include "qabstractvideosurface.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAbstractVideoSurface: public QAbstractVideoSurface { +public: +void Signal_ActiveChanged(bool active){callbackQAbstractVideoSurfaceActiveChanged(this->objectName().toUtf8().data(), active);}; +void Signal_SupportedFormatsChanged(){callbackQAbstractVideoSurfaceSupportedFormatsChanged(this->objectName().toUtf8().data());}; +}; + +void QAbstractVideoSurface_ConnectActiveChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractVideoSurface::activeChanged), static_cast(ptr), static_cast(&MyQAbstractVideoSurface::Signal_ActiveChanged));; +} + +void QAbstractVideoSurface_DisconnectActiveChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractVideoSurface::activeChanged), static_cast(ptr), static_cast(&MyQAbstractVideoSurface::Signal_ActiveChanged));; +} + +int QAbstractVideoSurface_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +int QAbstractVideoSurface_IsActive(QtObjectPtr ptr){ + return static_cast(ptr)->isActive(); +} + +int QAbstractVideoSurface_IsFormatSupported(QtObjectPtr ptr, QtObjectPtr format){ + return static_cast(ptr)->isFormatSupported(*static_cast(format)); +} + +int QAbstractVideoSurface_Present(QtObjectPtr ptr, QtObjectPtr frame){ + return static_cast(ptr)->present(*static_cast(frame)); +} + +int QAbstractVideoSurface_Start(QtObjectPtr ptr, QtObjectPtr format){ + return static_cast(ptr)->start(*static_cast(format)); +} + +void QAbstractVideoSurface_Stop(QtObjectPtr ptr){ + static_cast(ptr)->stop(); +} + +void QAbstractVideoSurface_ConnectSupportedFormatsChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractVideoSurface::supportedFormatsChanged), static_cast(ptr), static_cast(&MyQAbstractVideoSurface::Signal_SupportedFormatsChanged));; +} + +void QAbstractVideoSurface_DisconnectSupportedFormatsChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractVideoSurface::supportedFormatsChanged), static_cast(ptr), static_cast(&MyQAbstractVideoSurface::Signal_SupportedFormatsChanged));; +} + +void QAbstractVideoSurface_DestroyQAbstractVideoSurface(QtObjectPtr ptr){ + static_cast(ptr)->~QAbstractVideoSurface(); +} + diff --git a/multimedia/qabstractvideosurface.go b/multimedia/qabstractvideosurface.go new file mode 100755 index 00000000..5fc527ee --- /dev/null +++ b/multimedia/qabstractvideosurface.go @@ -0,0 +1,135 @@ +package multimedia + +//#include "qabstractvideosurface.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAbstractVideoSurface struct { + core.QObject +} + +type QAbstractVideoSurfaceITF interface { + core.QObjectITF + QAbstractVideoSurfacePTR() *QAbstractVideoSurface +} + +func PointerFromQAbstractVideoSurface(ptr QAbstractVideoSurfaceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractVideoSurfacePTR().Pointer() + } + return nil +} + +func QAbstractVideoSurfaceFromPointer(ptr unsafe.Pointer) *QAbstractVideoSurface { + var n = new(QAbstractVideoSurface) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAbstractVideoSurface_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAbstractVideoSurface) QAbstractVideoSurfacePTR() *QAbstractVideoSurface { + return ptr +} + +//QAbstractVideoSurface::Error +type QAbstractVideoSurface__Error int + +var ( + QAbstractVideoSurface__NoError = QAbstractVideoSurface__Error(0) + QAbstractVideoSurface__UnsupportedFormatError = QAbstractVideoSurface__Error(1) + QAbstractVideoSurface__IncorrectFormatError = QAbstractVideoSurface__Error(2) + QAbstractVideoSurface__StoppedError = QAbstractVideoSurface__Error(3) + QAbstractVideoSurface__ResourceError = QAbstractVideoSurface__Error(4) +) + +func (ptr *QAbstractVideoSurface) ConnectActiveChanged(f func(active bool)) { + if ptr.Pointer() != nil { + C.QAbstractVideoSurface_ConnectActiveChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "activeChanged", f) + } +} + +func (ptr *QAbstractVideoSurface) DisconnectActiveChanged() { + if ptr.Pointer() != nil { + C.QAbstractVideoSurface_DisconnectActiveChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "activeChanged") + } +} + +//export callbackQAbstractVideoSurfaceActiveChanged +func callbackQAbstractVideoSurfaceActiveChanged(ptrName *C.char, active C.int) { + qt.GetSignal(C.GoString(ptrName), "activeChanged").(func(bool))(int(active) != 0) +} + +func (ptr *QAbstractVideoSurface) Error() QAbstractVideoSurface__Error { + if ptr.Pointer() != nil { + return QAbstractVideoSurface__Error(C.QAbstractVideoSurface_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractVideoSurface) IsActive() bool { + if ptr.Pointer() != nil { + return C.QAbstractVideoSurface_IsActive(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractVideoSurface) IsFormatSupported(format QVideoSurfaceFormatITF) bool { + if ptr.Pointer() != nil { + return C.QAbstractVideoSurface_IsFormatSupported(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQVideoSurfaceFormat(format))) != 0 + } + return false +} + +func (ptr *QAbstractVideoSurface) Present(frame QVideoFrameITF) bool { + if ptr.Pointer() != nil { + return C.QAbstractVideoSurface_Present(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQVideoFrame(frame))) != 0 + } + return false +} + +func (ptr *QAbstractVideoSurface) Start(format QVideoSurfaceFormatITF) bool { + if ptr.Pointer() != nil { + return C.QAbstractVideoSurface_Start(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQVideoSurfaceFormat(format))) != 0 + } + return false +} + +func (ptr *QAbstractVideoSurface) Stop() { + if ptr.Pointer() != nil { + C.QAbstractVideoSurface_Stop(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractVideoSurface) ConnectSupportedFormatsChanged(f func()) { + if ptr.Pointer() != nil { + C.QAbstractVideoSurface_ConnectSupportedFormatsChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "supportedFormatsChanged", f) + } +} + +func (ptr *QAbstractVideoSurface) DisconnectSupportedFormatsChanged() { + if ptr.Pointer() != nil { + C.QAbstractVideoSurface_DisconnectSupportedFormatsChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "supportedFormatsChanged") + } +} + +//export callbackQAbstractVideoSurfaceSupportedFormatsChanged +func callbackQAbstractVideoSurfaceSupportedFormatsChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "supportedFormatsChanged").(func())() +} + +func (ptr *QAbstractVideoSurface) DestroyQAbstractVideoSurface() { + if ptr.Pointer() != nil { + C.QAbstractVideoSurface_DestroyQAbstractVideoSurface(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qabstractvideosurface.h b/multimedia/qabstractvideosurface.h new file mode 100755 index 00000000..df1b4b63 --- /dev/null +++ b/multimedia/qabstractvideosurface.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QAbstractVideoSurface_ConnectActiveChanged(QtObjectPtr ptr); +void QAbstractVideoSurface_DisconnectActiveChanged(QtObjectPtr ptr); +int QAbstractVideoSurface_Error(QtObjectPtr ptr); +int QAbstractVideoSurface_IsActive(QtObjectPtr ptr); +int QAbstractVideoSurface_IsFormatSupported(QtObjectPtr ptr, QtObjectPtr format); +int QAbstractVideoSurface_Present(QtObjectPtr ptr, QtObjectPtr frame); +int QAbstractVideoSurface_Start(QtObjectPtr ptr, QtObjectPtr format); +void QAbstractVideoSurface_Stop(QtObjectPtr ptr); +void QAbstractVideoSurface_ConnectSupportedFormatsChanged(QtObjectPtr ptr); +void QAbstractVideoSurface_DisconnectSupportedFormatsChanged(QtObjectPtr ptr); +void QAbstractVideoSurface_DestroyQAbstractVideoSurface(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qaudiobuffer.cpp b/multimedia/qaudiobuffer.cpp new file mode 100755 index 00000000..0f1863ad --- /dev/null +++ b/multimedia/qaudiobuffer.cpp @@ -0,0 +1,52 @@ +#include "qaudiobuffer.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAudioBuffer: public QAudioBuffer { +public: +}; + +QtObjectPtr QAudioBuffer_NewQAudioBuffer(){ + return new QAudioBuffer(); +} + +QtObjectPtr QAudioBuffer_NewQAudioBuffer3(QtObjectPtr other){ + return new QAudioBuffer(*static_cast(other)); +} + +int QAudioBuffer_ByteCount(QtObjectPtr ptr){ + return static_cast(ptr)->byteCount(); +} + +void QAudioBuffer_ConstData(QtObjectPtr ptr){ + static_cast(ptr)->constData(); +} + +void QAudioBuffer_Data2(QtObjectPtr ptr){ + static_cast(ptr)->data(); +} + +void QAudioBuffer_Data(QtObjectPtr ptr){ + static_cast(ptr)->data(); +} + +int QAudioBuffer_FrameCount(QtObjectPtr ptr){ + return static_cast(ptr)->frameCount(); +} + +int QAudioBuffer_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QAudioBuffer_SampleCount(QtObjectPtr ptr){ + return static_cast(ptr)->sampleCount(); +} + +void QAudioBuffer_DestroyQAudioBuffer(QtObjectPtr ptr){ + static_cast(ptr)->~QAudioBuffer(); +} + diff --git a/multimedia/qaudiobuffer.go b/multimedia/qaudiobuffer.go new file mode 100755 index 00000000..56f76c29 --- /dev/null +++ b/multimedia/qaudiobuffer.go @@ -0,0 +1,100 @@ +package multimedia + +//#include "qaudiobuffer.h" +import "C" +import ( + "unsafe" +) + +type QAudioBuffer struct { + ptr unsafe.Pointer +} + +type QAudioBufferITF interface { + QAudioBufferPTR() *QAudioBuffer +} + +func (p *QAudioBuffer) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QAudioBuffer) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQAudioBuffer(ptr QAudioBufferITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAudioBufferPTR().Pointer() + } + return nil +} + +func QAudioBufferFromPointer(ptr unsafe.Pointer) *QAudioBuffer { + var n = new(QAudioBuffer) + n.SetPointer(ptr) + return n +} + +func (ptr *QAudioBuffer) QAudioBufferPTR() *QAudioBuffer { + return ptr +} + +func NewQAudioBuffer() *QAudioBuffer { + return QAudioBufferFromPointer(unsafe.Pointer(C.QAudioBuffer_NewQAudioBuffer())) +} + +func NewQAudioBuffer3(other QAudioBufferITF) *QAudioBuffer { + return QAudioBufferFromPointer(unsafe.Pointer(C.QAudioBuffer_NewQAudioBuffer3(C.QtObjectPtr(PointerFromQAudioBuffer(other))))) +} + +func (ptr *QAudioBuffer) ByteCount() int { + if ptr.Pointer() != nil { + return int(C.QAudioBuffer_ByteCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAudioBuffer) ConstData() { + if ptr.Pointer() != nil { + C.QAudioBuffer_ConstData(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAudioBuffer) Data2() { + if ptr.Pointer() != nil { + C.QAudioBuffer_Data2(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAudioBuffer) Data() { + if ptr.Pointer() != nil { + C.QAudioBuffer_Data(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAudioBuffer) FrameCount() int { + if ptr.Pointer() != nil { + return int(C.QAudioBuffer_FrameCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAudioBuffer) IsValid() bool { + if ptr.Pointer() != nil { + return C.QAudioBuffer_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAudioBuffer) SampleCount() int { + if ptr.Pointer() != nil { + return int(C.QAudioBuffer_SampleCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAudioBuffer) DestroyQAudioBuffer() { + if ptr.Pointer() != nil { + C.QAudioBuffer_DestroyQAudioBuffer(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/multimedia/qaudiobuffer.h b/multimedia/qaudiobuffer.h new file mode 100755 index 00000000..8c41dc78 --- /dev/null +++ b/multimedia/qaudiobuffer.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAudioBuffer_NewQAudioBuffer(); +QtObjectPtr QAudioBuffer_NewQAudioBuffer3(QtObjectPtr other); +int QAudioBuffer_ByteCount(QtObjectPtr ptr); +void QAudioBuffer_ConstData(QtObjectPtr ptr); +void QAudioBuffer_Data2(QtObjectPtr ptr); +void QAudioBuffer_Data(QtObjectPtr ptr); +int QAudioBuffer_FrameCount(QtObjectPtr ptr); +int QAudioBuffer_IsValid(QtObjectPtr ptr); +int QAudioBuffer_SampleCount(QtObjectPtr ptr); +void QAudioBuffer_DestroyQAudioBuffer(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qaudiodecoder.cpp b/multimedia/qaudiodecoder.cpp new file mode 100755 index 00000000..fafe2d5f --- /dev/null +++ b/multimedia/qaudiodecoder.cpp @@ -0,0 +1,109 @@ +#include "qaudiodecoder.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAudioDecoder: public QAudioDecoder { +public: +void Signal_BufferAvailableChanged(bool available){callbackQAudioDecoderBufferAvailableChanged(this->objectName().toUtf8().data(), available);}; +void Signal_BufferReady(){callbackQAudioDecoderBufferReady(this->objectName().toUtf8().data());}; +void Signal_Finished(){callbackQAudioDecoderFinished(this->objectName().toUtf8().data());}; +void Signal_SourceChanged(){callbackQAudioDecoderSourceChanged(this->objectName().toUtf8().data());}; +void Signal_StateChanged(QAudioDecoder::State state){callbackQAudioDecoderStateChanged(this->objectName().toUtf8().data(), state);}; +}; + +char* QAudioDecoder_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +QtObjectPtr QAudioDecoder_NewQAudioDecoder(QtObjectPtr parent){ + return new QAudioDecoder(static_cast(parent)); +} + +int QAudioDecoder_BufferAvailable(QtObjectPtr ptr){ + return static_cast(ptr)->bufferAvailable(); +} + +void QAudioDecoder_ConnectBufferAvailableChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAudioDecoder::bufferAvailableChanged), static_cast(ptr), static_cast(&MyQAudioDecoder::Signal_BufferAvailableChanged));; +} + +void QAudioDecoder_DisconnectBufferAvailableChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAudioDecoder::bufferAvailableChanged), static_cast(ptr), static_cast(&MyQAudioDecoder::Signal_BufferAvailableChanged));; +} + +void QAudioDecoder_ConnectBufferReady(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAudioDecoder::bufferReady), static_cast(ptr), static_cast(&MyQAudioDecoder::Signal_BufferReady));; +} + +void QAudioDecoder_DisconnectBufferReady(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAudioDecoder::bufferReady), static_cast(ptr), static_cast(&MyQAudioDecoder::Signal_BufferReady));; +} + +int QAudioDecoder_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +void QAudioDecoder_ConnectFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAudioDecoder::finished), static_cast(ptr), static_cast(&MyQAudioDecoder::Signal_Finished));; +} + +void QAudioDecoder_DisconnectFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAudioDecoder::finished), static_cast(ptr), static_cast(&MyQAudioDecoder::Signal_Finished));; +} + +void QAudioDecoder_SetAudioFormat(QtObjectPtr ptr, QtObjectPtr format){ + static_cast(ptr)->setAudioFormat(*static_cast(format)); +} + +void QAudioDecoder_SetSourceDevice(QtObjectPtr ptr, QtObjectPtr device){ + static_cast(ptr)->setSourceDevice(static_cast(device)); +} + +void QAudioDecoder_SetSourceFilename(QtObjectPtr ptr, char* fileName){ + static_cast(ptr)->setSourceFilename(QString(fileName)); +} + +void QAudioDecoder_ConnectSourceChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAudioDecoder::sourceChanged), static_cast(ptr), static_cast(&MyQAudioDecoder::Signal_SourceChanged));; +} + +void QAudioDecoder_DisconnectSourceChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAudioDecoder::sourceChanged), static_cast(ptr), static_cast(&MyQAudioDecoder::Signal_SourceChanged));; +} + +QtObjectPtr QAudioDecoder_SourceDevice(QtObjectPtr ptr){ + return static_cast(ptr)->sourceDevice(); +} + +char* QAudioDecoder_SourceFilename(QtObjectPtr ptr){ + return static_cast(ptr)->sourceFilename().toUtf8().data(); +} + +void QAudioDecoder_Start(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "start"); +} + +void QAudioDecoder_ConnectStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAudioDecoder::stateChanged), static_cast(ptr), static_cast(&MyQAudioDecoder::Signal_StateChanged));; +} + +void QAudioDecoder_DisconnectStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAudioDecoder::stateChanged), static_cast(ptr), static_cast(&MyQAudioDecoder::Signal_StateChanged));; +} + +void QAudioDecoder_Stop(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "stop"); +} + +void QAudioDecoder_DestroyQAudioDecoder(QtObjectPtr ptr){ + static_cast(ptr)->~QAudioDecoder(); +} + diff --git a/multimedia/qaudiodecoder.go b/multimedia/qaudiodecoder.go new file mode 100755 index 00000000..f6ef3c91 --- /dev/null +++ b/multimedia/qaudiodecoder.go @@ -0,0 +1,228 @@ +package multimedia + +//#include "qaudiodecoder.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAudioDecoder struct { + QMediaObject +} + +type QAudioDecoderITF interface { + QMediaObjectITF + QAudioDecoderPTR() *QAudioDecoder +} + +func PointerFromQAudioDecoder(ptr QAudioDecoderITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAudioDecoderPTR().Pointer() + } + return nil +} + +func QAudioDecoderFromPointer(ptr unsafe.Pointer) *QAudioDecoder { + var n = new(QAudioDecoder) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAudioDecoder_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAudioDecoder) QAudioDecoderPTR() *QAudioDecoder { + return ptr +} + +//QAudioDecoder::Error +type QAudioDecoder__Error int + +var ( + QAudioDecoder__NoError = QAudioDecoder__Error(0) + QAudioDecoder__ResourceError = QAudioDecoder__Error(1) + QAudioDecoder__FormatError = QAudioDecoder__Error(2) + QAudioDecoder__AccessDeniedError = QAudioDecoder__Error(3) + QAudioDecoder__ServiceMissingError = QAudioDecoder__Error(4) +) + +//QAudioDecoder::State +type QAudioDecoder__State int + +var ( + QAudioDecoder__StoppedState = QAudioDecoder__State(0) + QAudioDecoder__DecodingState = QAudioDecoder__State(1) +) + +func (ptr *QAudioDecoder) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAudioDecoder_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func NewQAudioDecoder(parent core.QObjectITF) *QAudioDecoder { + return QAudioDecoderFromPointer(unsafe.Pointer(C.QAudioDecoder_NewQAudioDecoder(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QAudioDecoder) BufferAvailable() bool { + if ptr.Pointer() != nil { + return C.QAudioDecoder_BufferAvailable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAudioDecoder) ConnectBufferAvailableChanged(f func(available bool)) { + if ptr.Pointer() != nil { + C.QAudioDecoder_ConnectBufferAvailableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "bufferAvailableChanged", f) + } +} + +func (ptr *QAudioDecoder) DisconnectBufferAvailableChanged() { + if ptr.Pointer() != nil { + C.QAudioDecoder_DisconnectBufferAvailableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "bufferAvailableChanged") + } +} + +//export callbackQAudioDecoderBufferAvailableChanged +func callbackQAudioDecoderBufferAvailableChanged(ptrName *C.char, available C.int) { + qt.GetSignal(C.GoString(ptrName), "bufferAvailableChanged").(func(bool))(int(available) != 0) +} + +func (ptr *QAudioDecoder) ConnectBufferReady(f func()) { + if ptr.Pointer() != nil { + C.QAudioDecoder_ConnectBufferReady(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "bufferReady", f) + } +} + +func (ptr *QAudioDecoder) DisconnectBufferReady() { + if ptr.Pointer() != nil { + C.QAudioDecoder_DisconnectBufferReady(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "bufferReady") + } +} + +//export callbackQAudioDecoderBufferReady +func callbackQAudioDecoderBufferReady(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "bufferReady").(func())() +} + +func (ptr *QAudioDecoder) Error() QAudioDecoder__Error { + if ptr.Pointer() != nil { + return QAudioDecoder__Error(C.QAudioDecoder_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAudioDecoder) ConnectFinished(f func()) { + if ptr.Pointer() != nil { + C.QAudioDecoder_ConnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "finished", f) + } +} + +func (ptr *QAudioDecoder) DisconnectFinished() { + if ptr.Pointer() != nil { + C.QAudioDecoder_DisconnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "finished") + } +} + +//export callbackQAudioDecoderFinished +func callbackQAudioDecoderFinished(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "finished").(func())() +} + +func (ptr *QAudioDecoder) SetAudioFormat(format QAudioFormatITF) { + if ptr.Pointer() != nil { + C.QAudioDecoder_SetAudioFormat(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAudioFormat(format))) + } +} + +func (ptr *QAudioDecoder) SetSourceDevice(device core.QIODeviceITF) { + if ptr.Pointer() != nil { + C.QAudioDecoder_SetSourceDevice(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQIODevice(device))) + } +} + +func (ptr *QAudioDecoder) SetSourceFilename(fileName string) { + if ptr.Pointer() != nil { + C.QAudioDecoder_SetSourceFilename(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName)) + } +} + +func (ptr *QAudioDecoder) ConnectSourceChanged(f func()) { + if ptr.Pointer() != nil { + C.QAudioDecoder_ConnectSourceChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "sourceChanged", f) + } +} + +func (ptr *QAudioDecoder) DisconnectSourceChanged() { + if ptr.Pointer() != nil { + C.QAudioDecoder_DisconnectSourceChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "sourceChanged") + } +} + +//export callbackQAudioDecoderSourceChanged +func callbackQAudioDecoderSourceChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "sourceChanged").(func())() +} + +func (ptr *QAudioDecoder) SourceDevice() *core.QIODevice { + if ptr.Pointer() != nil { + return core.QIODeviceFromPointer(unsafe.Pointer(C.QAudioDecoder_SourceDevice(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAudioDecoder) SourceFilename() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAudioDecoder_SourceFilename(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAudioDecoder) Start() { + if ptr.Pointer() != nil { + C.QAudioDecoder_Start(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAudioDecoder) ConnectStateChanged(f func(state QAudioDecoder__State)) { + if ptr.Pointer() != nil { + C.QAudioDecoder_ConnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stateChanged", f) + } +} + +func (ptr *QAudioDecoder) DisconnectStateChanged() { + if ptr.Pointer() != nil { + C.QAudioDecoder_DisconnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stateChanged") + } +} + +//export callbackQAudioDecoderStateChanged +func callbackQAudioDecoderStateChanged(ptrName *C.char, state C.int) { + qt.GetSignal(C.GoString(ptrName), "stateChanged").(func(QAudioDecoder__State))(QAudioDecoder__State(state)) +} + +func (ptr *QAudioDecoder) Stop() { + if ptr.Pointer() != nil { + C.QAudioDecoder_Stop(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAudioDecoder) DestroyQAudioDecoder() { + if ptr.Pointer() != nil { + C.QAudioDecoder_DestroyQAudioDecoder(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qaudiodecoder.h b/multimedia/qaudiodecoder.h new file mode 100755 index 00000000..f07bf756 --- /dev/null +++ b/multimedia/qaudiodecoder.h @@ -0,0 +1,31 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QAudioDecoder_ErrorString(QtObjectPtr ptr); +QtObjectPtr QAudioDecoder_NewQAudioDecoder(QtObjectPtr parent); +int QAudioDecoder_BufferAvailable(QtObjectPtr ptr); +void QAudioDecoder_ConnectBufferAvailableChanged(QtObjectPtr ptr); +void QAudioDecoder_DisconnectBufferAvailableChanged(QtObjectPtr ptr); +void QAudioDecoder_ConnectBufferReady(QtObjectPtr ptr); +void QAudioDecoder_DisconnectBufferReady(QtObjectPtr ptr); +int QAudioDecoder_Error(QtObjectPtr ptr); +void QAudioDecoder_ConnectFinished(QtObjectPtr ptr); +void QAudioDecoder_DisconnectFinished(QtObjectPtr ptr); +void QAudioDecoder_SetAudioFormat(QtObjectPtr ptr, QtObjectPtr format); +void QAudioDecoder_SetSourceDevice(QtObjectPtr ptr, QtObjectPtr device); +void QAudioDecoder_SetSourceFilename(QtObjectPtr ptr, char* fileName); +void QAudioDecoder_ConnectSourceChanged(QtObjectPtr ptr); +void QAudioDecoder_DisconnectSourceChanged(QtObjectPtr ptr); +QtObjectPtr QAudioDecoder_SourceDevice(QtObjectPtr ptr); +char* QAudioDecoder_SourceFilename(QtObjectPtr ptr); +void QAudioDecoder_Start(QtObjectPtr ptr); +void QAudioDecoder_ConnectStateChanged(QtObjectPtr ptr); +void QAudioDecoder_DisconnectStateChanged(QtObjectPtr ptr); +void QAudioDecoder_Stop(QtObjectPtr ptr); +void QAudioDecoder_DestroyQAudioDecoder(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qaudiodecodercontrol.cpp b/multimedia/qaudiodecodercontrol.cpp new file mode 100755 index 00000000..5ce90975 --- /dev/null +++ b/multimedia/qaudiodecodercontrol.cpp @@ -0,0 +1,106 @@ +#include "qaudiodecodercontrol.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAudioDecoderControl: public QAudioDecoderControl { +public: +void Signal_BufferAvailableChanged(bool available){callbackQAudioDecoderControlBufferAvailableChanged(this->objectName().toUtf8().data(), available);}; +void Signal_BufferReady(){callbackQAudioDecoderControlBufferReady(this->objectName().toUtf8().data());}; +void Signal_Error(int error, const QString & errorString){callbackQAudioDecoderControlError(this->objectName().toUtf8().data(), error, errorString.toUtf8().data());}; +void Signal_Finished(){callbackQAudioDecoderControlFinished(this->objectName().toUtf8().data());}; +void Signal_SourceChanged(){callbackQAudioDecoderControlSourceChanged(this->objectName().toUtf8().data());}; +void Signal_StateChanged(QAudioDecoder::State state){callbackQAudioDecoderControlStateChanged(this->objectName().toUtf8().data(), state);}; +}; + +int QAudioDecoderControl_BufferAvailable(QtObjectPtr ptr){ + return static_cast(ptr)->bufferAvailable(); +} + +void QAudioDecoderControl_ConnectBufferAvailableChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAudioDecoderControl::bufferAvailableChanged), static_cast(ptr), static_cast(&MyQAudioDecoderControl::Signal_BufferAvailableChanged));; +} + +void QAudioDecoderControl_DisconnectBufferAvailableChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAudioDecoderControl::bufferAvailableChanged), static_cast(ptr), static_cast(&MyQAudioDecoderControl::Signal_BufferAvailableChanged));; +} + +void QAudioDecoderControl_ConnectBufferReady(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAudioDecoderControl::bufferReady), static_cast(ptr), static_cast(&MyQAudioDecoderControl::Signal_BufferReady));; +} + +void QAudioDecoderControl_DisconnectBufferReady(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAudioDecoderControl::bufferReady), static_cast(ptr), static_cast(&MyQAudioDecoderControl::Signal_BufferReady));; +} + +void QAudioDecoderControl_ConnectError(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAudioDecoderControl::error), static_cast(ptr), static_cast(&MyQAudioDecoderControl::Signal_Error));; +} + +void QAudioDecoderControl_DisconnectError(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAudioDecoderControl::error), static_cast(ptr), static_cast(&MyQAudioDecoderControl::Signal_Error));; +} + +void QAudioDecoderControl_ConnectFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAudioDecoderControl::finished), static_cast(ptr), static_cast(&MyQAudioDecoderControl::Signal_Finished));; +} + +void QAudioDecoderControl_DisconnectFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAudioDecoderControl::finished), static_cast(ptr), static_cast(&MyQAudioDecoderControl::Signal_Finished));; +} + +void QAudioDecoderControl_SetAudioFormat(QtObjectPtr ptr, QtObjectPtr format){ + static_cast(ptr)->setAudioFormat(*static_cast(format)); +} + +void QAudioDecoderControl_SetSourceDevice(QtObjectPtr ptr, QtObjectPtr device){ + static_cast(ptr)->setSourceDevice(static_cast(device)); +} + +void QAudioDecoderControl_SetSourceFilename(QtObjectPtr ptr, char* fileName){ + static_cast(ptr)->setSourceFilename(QString(fileName)); +} + +void QAudioDecoderControl_ConnectSourceChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAudioDecoderControl::sourceChanged), static_cast(ptr), static_cast(&MyQAudioDecoderControl::Signal_SourceChanged));; +} + +void QAudioDecoderControl_DisconnectSourceChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAudioDecoderControl::sourceChanged), static_cast(ptr), static_cast(&MyQAudioDecoderControl::Signal_SourceChanged));; +} + +QtObjectPtr QAudioDecoderControl_SourceDevice(QtObjectPtr ptr){ + return static_cast(ptr)->sourceDevice(); +} + +char* QAudioDecoderControl_SourceFilename(QtObjectPtr ptr){ + return static_cast(ptr)->sourceFilename().toUtf8().data(); +} + +void QAudioDecoderControl_Start(QtObjectPtr ptr){ + static_cast(ptr)->start(); +} + +void QAudioDecoderControl_ConnectStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAudioDecoderControl::stateChanged), static_cast(ptr), static_cast(&MyQAudioDecoderControl::Signal_StateChanged));; +} + +void QAudioDecoderControl_DisconnectStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAudioDecoderControl::stateChanged), static_cast(ptr), static_cast(&MyQAudioDecoderControl::Signal_StateChanged));; +} + +void QAudioDecoderControl_Stop(QtObjectPtr ptr){ + static_cast(ptr)->stop(); +} + +void QAudioDecoderControl_DestroyQAudioDecoderControl(QtObjectPtr ptr){ + static_cast(ptr)->~QAudioDecoderControl(); +} + diff --git a/multimedia/qaudiodecodercontrol.go b/multimedia/qaudiodecodercontrol.go new file mode 100755 index 00000000..296d9346 --- /dev/null +++ b/multimedia/qaudiodecodercontrol.go @@ -0,0 +1,210 @@ +package multimedia + +//#include "qaudiodecodercontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAudioDecoderControl struct { + QMediaControl +} + +type QAudioDecoderControlITF interface { + QMediaControlITF + QAudioDecoderControlPTR() *QAudioDecoderControl +} + +func PointerFromQAudioDecoderControl(ptr QAudioDecoderControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAudioDecoderControlPTR().Pointer() + } + return nil +} + +func QAudioDecoderControlFromPointer(ptr unsafe.Pointer) *QAudioDecoderControl { + var n = new(QAudioDecoderControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAudioDecoderControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAudioDecoderControl) QAudioDecoderControlPTR() *QAudioDecoderControl { + return ptr +} + +func (ptr *QAudioDecoderControl) BufferAvailable() bool { + if ptr.Pointer() != nil { + return C.QAudioDecoderControl_BufferAvailable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAudioDecoderControl) ConnectBufferAvailableChanged(f func(available bool)) { + if ptr.Pointer() != nil { + C.QAudioDecoderControl_ConnectBufferAvailableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "bufferAvailableChanged", f) + } +} + +func (ptr *QAudioDecoderControl) DisconnectBufferAvailableChanged() { + if ptr.Pointer() != nil { + C.QAudioDecoderControl_DisconnectBufferAvailableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "bufferAvailableChanged") + } +} + +//export callbackQAudioDecoderControlBufferAvailableChanged +func callbackQAudioDecoderControlBufferAvailableChanged(ptrName *C.char, available C.int) { + qt.GetSignal(C.GoString(ptrName), "bufferAvailableChanged").(func(bool))(int(available) != 0) +} + +func (ptr *QAudioDecoderControl) ConnectBufferReady(f func()) { + if ptr.Pointer() != nil { + C.QAudioDecoderControl_ConnectBufferReady(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "bufferReady", f) + } +} + +func (ptr *QAudioDecoderControl) DisconnectBufferReady() { + if ptr.Pointer() != nil { + C.QAudioDecoderControl_DisconnectBufferReady(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "bufferReady") + } +} + +//export callbackQAudioDecoderControlBufferReady +func callbackQAudioDecoderControlBufferReady(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "bufferReady").(func())() +} + +func (ptr *QAudioDecoderControl) ConnectError(f func(error int, errorString string)) { + if ptr.Pointer() != nil { + C.QAudioDecoderControl_ConnectError(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "error", f) + } +} + +func (ptr *QAudioDecoderControl) DisconnectError() { + if ptr.Pointer() != nil { + C.QAudioDecoderControl_DisconnectError(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "error") + } +} + +//export callbackQAudioDecoderControlError +func callbackQAudioDecoderControlError(ptrName *C.char, error C.int, errorString *C.char) { + qt.GetSignal(C.GoString(ptrName), "error").(func(int, string))(int(error), C.GoString(errorString)) +} + +func (ptr *QAudioDecoderControl) ConnectFinished(f func()) { + if ptr.Pointer() != nil { + C.QAudioDecoderControl_ConnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "finished", f) + } +} + +func (ptr *QAudioDecoderControl) DisconnectFinished() { + if ptr.Pointer() != nil { + C.QAudioDecoderControl_DisconnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "finished") + } +} + +//export callbackQAudioDecoderControlFinished +func callbackQAudioDecoderControlFinished(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "finished").(func())() +} + +func (ptr *QAudioDecoderControl) SetAudioFormat(format QAudioFormatITF) { + if ptr.Pointer() != nil { + C.QAudioDecoderControl_SetAudioFormat(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAudioFormat(format))) + } +} + +func (ptr *QAudioDecoderControl) SetSourceDevice(device core.QIODeviceITF) { + if ptr.Pointer() != nil { + C.QAudioDecoderControl_SetSourceDevice(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQIODevice(device))) + } +} + +func (ptr *QAudioDecoderControl) SetSourceFilename(fileName string) { + if ptr.Pointer() != nil { + C.QAudioDecoderControl_SetSourceFilename(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName)) + } +} + +func (ptr *QAudioDecoderControl) ConnectSourceChanged(f func()) { + if ptr.Pointer() != nil { + C.QAudioDecoderControl_ConnectSourceChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "sourceChanged", f) + } +} + +func (ptr *QAudioDecoderControl) DisconnectSourceChanged() { + if ptr.Pointer() != nil { + C.QAudioDecoderControl_DisconnectSourceChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "sourceChanged") + } +} + +//export callbackQAudioDecoderControlSourceChanged +func callbackQAudioDecoderControlSourceChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "sourceChanged").(func())() +} + +func (ptr *QAudioDecoderControl) SourceDevice() *core.QIODevice { + if ptr.Pointer() != nil { + return core.QIODeviceFromPointer(unsafe.Pointer(C.QAudioDecoderControl_SourceDevice(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAudioDecoderControl) SourceFilename() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAudioDecoderControl_SourceFilename(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAudioDecoderControl) Start() { + if ptr.Pointer() != nil { + C.QAudioDecoderControl_Start(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAudioDecoderControl) ConnectStateChanged(f func(state QAudioDecoder__State)) { + if ptr.Pointer() != nil { + C.QAudioDecoderControl_ConnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stateChanged", f) + } +} + +func (ptr *QAudioDecoderControl) DisconnectStateChanged() { + if ptr.Pointer() != nil { + C.QAudioDecoderControl_DisconnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stateChanged") + } +} + +//export callbackQAudioDecoderControlStateChanged +func callbackQAudioDecoderControlStateChanged(ptrName *C.char, state C.int) { + qt.GetSignal(C.GoString(ptrName), "stateChanged").(func(QAudioDecoder__State))(QAudioDecoder__State(state)) +} + +func (ptr *QAudioDecoderControl) Stop() { + if ptr.Pointer() != nil { + C.QAudioDecoderControl_Stop(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAudioDecoderControl) DestroyQAudioDecoderControl() { + if ptr.Pointer() != nil { + C.QAudioDecoderControl_DestroyQAudioDecoderControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qaudiodecodercontrol.h b/multimedia/qaudiodecodercontrol.h new file mode 100755 index 00000000..882cafc4 --- /dev/null +++ b/multimedia/qaudiodecodercontrol.h @@ -0,0 +1,30 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QAudioDecoderControl_BufferAvailable(QtObjectPtr ptr); +void QAudioDecoderControl_ConnectBufferAvailableChanged(QtObjectPtr ptr); +void QAudioDecoderControl_DisconnectBufferAvailableChanged(QtObjectPtr ptr); +void QAudioDecoderControl_ConnectBufferReady(QtObjectPtr ptr); +void QAudioDecoderControl_DisconnectBufferReady(QtObjectPtr ptr); +void QAudioDecoderControl_ConnectError(QtObjectPtr ptr); +void QAudioDecoderControl_DisconnectError(QtObjectPtr ptr); +void QAudioDecoderControl_ConnectFinished(QtObjectPtr ptr); +void QAudioDecoderControl_DisconnectFinished(QtObjectPtr ptr); +void QAudioDecoderControl_SetAudioFormat(QtObjectPtr ptr, QtObjectPtr format); +void QAudioDecoderControl_SetSourceDevice(QtObjectPtr ptr, QtObjectPtr device); +void QAudioDecoderControl_SetSourceFilename(QtObjectPtr ptr, char* fileName); +void QAudioDecoderControl_ConnectSourceChanged(QtObjectPtr ptr); +void QAudioDecoderControl_DisconnectSourceChanged(QtObjectPtr ptr); +QtObjectPtr QAudioDecoderControl_SourceDevice(QtObjectPtr ptr); +char* QAudioDecoderControl_SourceFilename(QtObjectPtr ptr); +void QAudioDecoderControl_Start(QtObjectPtr ptr); +void QAudioDecoderControl_ConnectStateChanged(QtObjectPtr ptr); +void QAudioDecoderControl_DisconnectStateChanged(QtObjectPtr ptr); +void QAudioDecoderControl_Stop(QtObjectPtr ptr); +void QAudioDecoderControl_DestroyQAudioDecoderControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qaudiodeviceinfo.cpp b/multimedia/qaudiodeviceinfo.cpp new file mode 100755 index 00000000..a7477877 --- /dev/null +++ b/multimedia/qaudiodeviceinfo.cpp @@ -0,0 +1,41 @@ +#include "qaudiodeviceinfo.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAudioDeviceInfo: public QAudioDeviceInfo { +public: +}; + +QtObjectPtr QAudioDeviceInfo_NewQAudioDeviceInfo(){ + return new QAudioDeviceInfo(); +} + +QtObjectPtr QAudioDeviceInfo_NewQAudioDeviceInfo2(QtObjectPtr other){ + return new QAudioDeviceInfo(*static_cast(other)); +} + +char* QAudioDeviceInfo_DeviceName(QtObjectPtr ptr){ + return static_cast(ptr)->deviceName().toUtf8().data(); +} + +int QAudioDeviceInfo_IsFormatSupported(QtObjectPtr ptr, QtObjectPtr settings){ + return static_cast(ptr)->isFormatSupported(*static_cast(settings)); +} + +int QAudioDeviceInfo_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +char* QAudioDeviceInfo_SupportedCodecs(QtObjectPtr ptr){ + return static_cast(ptr)->supportedCodecs().join("|").toUtf8().data(); +} + +void QAudioDeviceInfo_DestroyQAudioDeviceInfo(QtObjectPtr ptr){ + static_cast(ptr)->~QAudioDeviceInfo(); +} + diff --git a/multimedia/qaudiodeviceinfo.go b/multimedia/qaudiodeviceinfo.go new file mode 100755 index 00000000..2ee88038 --- /dev/null +++ b/multimedia/qaudiodeviceinfo.go @@ -0,0 +1,83 @@ +package multimedia + +//#include "qaudiodeviceinfo.h" +import "C" +import ( + "strings" + "unsafe" +) + +type QAudioDeviceInfo struct { + ptr unsafe.Pointer +} + +type QAudioDeviceInfoITF interface { + QAudioDeviceInfoPTR() *QAudioDeviceInfo +} + +func (p *QAudioDeviceInfo) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QAudioDeviceInfo) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQAudioDeviceInfo(ptr QAudioDeviceInfoITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAudioDeviceInfoPTR().Pointer() + } + return nil +} + +func QAudioDeviceInfoFromPointer(ptr unsafe.Pointer) *QAudioDeviceInfo { + var n = new(QAudioDeviceInfo) + n.SetPointer(ptr) + return n +} + +func (ptr *QAudioDeviceInfo) QAudioDeviceInfoPTR() *QAudioDeviceInfo { + return ptr +} + +func NewQAudioDeviceInfo() *QAudioDeviceInfo { + return QAudioDeviceInfoFromPointer(unsafe.Pointer(C.QAudioDeviceInfo_NewQAudioDeviceInfo())) +} + +func NewQAudioDeviceInfo2(other QAudioDeviceInfoITF) *QAudioDeviceInfo { + return QAudioDeviceInfoFromPointer(unsafe.Pointer(C.QAudioDeviceInfo_NewQAudioDeviceInfo2(C.QtObjectPtr(PointerFromQAudioDeviceInfo(other))))) +} + +func (ptr *QAudioDeviceInfo) DeviceName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAudioDeviceInfo_DeviceName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAudioDeviceInfo) IsFormatSupported(settings QAudioFormatITF) bool { + if ptr.Pointer() != nil { + return C.QAudioDeviceInfo_IsFormatSupported(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAudioFormat(settings))) != 0 + } + return false +} + +func (ptr *QAudioDeviceInfo) IsNull() bool { + if ptr.Pointer() != nil { + return C.QAudioDeviceInfo_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAudioDeviceInfo) SupportedCodecs() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QAudioDeviceInfo_SupportedCodecs(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QAudioDeviceInfo) DestroyQAudioDeviceInfo() { + if ptr.Pointer() != nil { + C.QAudioDeviceInfo_DestroyQAudioDeviceInfo(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/multimedia/qaudiodeviceinfo.h b/multimedia/qaudiodeviceinfo.h new file mode 100755 index 00000000..059eeabf --- /dev/null +++ b/multimedia/qaudiodeviceinfo.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAudioDeviceInfo_NewQAudioDeviceInfo(); +QtObjectPtr QAudioDeviceInfo_NewQAudioDeviceInfo2(QtObjectPtr other); +char* QAudioDeviceInfo_DeviceName(QtObjectPtr ptr); +int QAudioDeviceInfo_IsFormatSupported(QtObjectPtr ptr, QtObjectPtr settings); +int QAudioDeviceInfo_IsNull(QtObjectPtr ptr); +char* QAudioDeviceInfo_SupportedCodecs(QtObjectPtr ptr); +void QAudioDeviceInfo_DestroyQAudioDeviceInfo(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qaudioencodersettings.cpp b/multimedia/qaudioencodersettings.cpp new file mode 100755 index 00000000..51e794e5 --- /dev/null +++ b/multimedia/qaudioencodersettings.cpp @@ -0,0 +1,68 @@ +#include "qaudioencodersettings.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAudioEncoderSettings: public QAudioEncoderSettings { +public: +}; + +QtObjectPtr QAudioEncoderSettings_NewQAudioEncoderSettings(){ + return new QAudioEncoderSettings(); +} + +QtObjectPtr QAudioEncoderSettings_NewQAudioEncoderSettings2(QtObjectPtr other){ + return new QAudioEncoderSettings(*static_cast(other)); +} + +int QAudioEncoderSettings_BitRate(QtObjectPtr ptr){ + return static_cast(ptr)->bitRate(); +} + +int QAudioEncoderSettings_ChannelCount(QtObjectPtr ptr){ + return static_cast(ptr)->channelCount(); +} + +char* QAudioEncoderSettings_Codec(QtObjectPtr ptr){ + return static_cast(ptr)->codec().toUtf8().data(); +} + +char* QAudioEncoderSettings_EncodingOption(QtObjectPtr ptr, char* option){ + return static_cast(ptr)->encodingOption(QString(option)).toString().toUtf8().data(); +} + +int QAudioEncoderSettings_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QAudioEncoderSettings_SampleRate(QtObjectPtr ptr){ + return static_cast(ptr)->sampleRate(); +} + +void QAudioEncoderSettings_SetBitRate(QtObjectPtr ptr, int rate){ + static_cast(ptr)->setBitRate(rate); +} + +void QAudioEncoderSettings_SetChannelCount(QtObjectPtr ptr, int channels){ + static_cast(ptr)->setChannelCount(channels); +} + +void QAudioEncoderSettings_SetCodec(QtObjectPtr ptr, char* codec){ + static_cast(ptr)->setCodec(QString(codec)); +} + +void QAudioEncoderSettings_SetEncodingOption(QtObjectPtr ptr, char* option, char* value){ + static_cast(ptr)->setEncodingOption(QString(option), QVariant(value)); +} + +void QAudioEncoderSettings_SetSampleRate(QtObjectPtr ptr, int rate){ + static_cast(ptr)->setSampleRate(rate); +} + +void QAudioEncoderSettings_DestroyQAudioEncoderSettings(QtObjectPtr ptr){ + static_cast(ptr)->~QAudioEncoderSettings(); +} + diff --git a/multimedia/qaudioencodersettings.go b/multimedia/qaudioencodersettings.go new file mode 100755 index 00000000..64fc0188 --- /dev/null +++ b/multimedia/qaudioencodersettings.go @@ -0,0 +1,126 @@ +package multimedia + +//#include "qaudioencodersettings.h" +import "C" +import ( + "unsafe" +) + +type QAudioEncoderSettings struct { + ptr unsafe.Pointer +} + +type QAudioEncoderSettingsITF interface { + QAudioEncoderSettingsPTR() *QAudioEncoderSettings +} + +func (p *QAudioEncoderSettings) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QAudioEncoderSettings) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQAudioEncoderSettings(ptr QAudioEncoderSettingsITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAudioEncoderSettingsPTR().Pointer() + } + return nil +} + +func QAudioEncoderSettingsFromPointer(ptr unsafe.Pointer) *QAudioEncoderSettings { + var n = new(QAudioEncoderSettings) + n.SetPointer(ptr) + return n +} + +func (ptr *QAudioEncoderSettings) QAudioEncoderSettingsPTR() *QAudioEncoderSettings { + return ptr +} + +func NewQAudioEncoderSettings() *QAudioEncoderSettings { + return QAudioEncoderSettingsFromPointer(unsafe.Pointer(C.QAudioEncoderSettings_NewQAudioEncoderSettings())) +} + +func NewQAudioEncoderSettings2(other QAudioEncoderSettingsITF) *QAudioEncoderSettings { + return QAudioEncoderSettingsFromPointer(unsafe.Pointer(C.QAudioEncoderSettings_NewQAudioEncoderSettings2(C.QtObjectPtr(PointerFromQAudioEncoderSettings(other))))) +} + +func (ptr *QAudioEncoderSettings) BitRate() int { + if ptr.Pointer() != nil { + return int(C.QAudioEncoderSettings_BitRate(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAudioEncoderSettings) ChannelCount() int { + if ptr.Pointer() != nil { + return int(C.QAudioEncoderSettings_ChannelCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAudioEncoderSettings) Codec() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAudioEncoderSettings_Codec(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAudioEncoderSettings) EncodingOption(option string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAudioEncoderSettings_EncodingOption(C.QtObjectPtr(ptr.Pointer()), C.CString(option))) + } + return "" +} + +func (ptr *QAudioEncoderSettings) IsNull() bool { + if ptr.Pointer() != nil { + return C.QAudioEncoderSettings_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAudioEncoderSettings) SampleRate() int { + if ptr.Pointer() != nil { + return int(C.QAudioEncoderSettings_SampleRate(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAudioEncoderSettings) SetBitRate(rate int) { + if ptr.Pointer() != nil { + C.QAudioEncoderSettings_SetBitRate(C.QtObjectPtr(ptr.Pointer()), C.int(rate)) + } +} + +func (ptr *QAudioEncoderSettings) SetChannelCount(channels int) { + if ptr.Pointer() != nil { + C.QAudioEncoderSettings_SetChannelCount(C.QtObjectPtr(ptr.Pointer()), C.int(channels)) + } +} + +func (ptr *QAudioEncoderSettings) SetCodec(codec string) { + if ptr.Pointer() != nil { + C.QAudioEncoderSettings_SetCodec(C.QtObjectPtr(ptr.Pointer()), C.CString(codec)) + } +} + +func (ptr *QAudioEncoderSettings) SetEncodingOption(option string, value string) { + if ptr.Pointer() != nil { + C.QAudioEncoderSettings_SetEncodingOption(C.QtObjectPtr(ptr.Pointer()), C.CString(option), C.CString(value)) + } +} + +func (ptr *QAudioEncoderSettings) SetSampleRate(rate int) { + if ptr.Pointer() != nil { + C.QAudioEncoderSettings_SetSampleRate(C.QtObjectPtr(ptr.Pointer()), C.int(rate)) + } +} + +func (ptr *QAudioEncoderSettings) DestroyQAudioEncoderSettings() { + if ptr.Pointer() != nil { + C.QAudioEncoderSettings_DestroyQAudioEncoderSettings(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/multimedia/qaudioencodersettings.h b/multimedia/qaudioencodersettings.h new file mode 100755 index 00000000..d485c6d0 --- /dev/null +++ b/multimedia/qaudioencodersettings.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAudioEncoderSettings_NewQAudioEncoderSettings(); +QtObjectPtr QAudioEncoderSettings_NewQAudioEncoderSettings2(QtObjectPtr other); +int QAudioEncoderSettings_BitRate(QtObjectPtr ptr); +int QAudioEncoderSettings_ChannelCount(QtObjectPtr ptr); +char* QAudioEncoderSettings_Codec(QtObjectPtr ptr); +char* QAudioEncoderSettings_EncodingOption(QtObjectPtr ptr, char* option); +int QAudioEncoderSettings_IsNull(QtObjectPtr ptr); +int QAudioEncoderSettings_SampleRate(QtObjectPtr ptr); +void QAudioEncoderSettings_SetBitRate(QtObjectPtr ptr, int rate); +void QAudioEncoderSettings_SetChannelCount(QtObjectPtr ptr, int channels); +void QAudioEncoderSettings_SetCodec(QtObjectPtr ptr, char* codec); +void QAudioEncoderSettings_SetEncodingOption(QtObjectPtr ptr, char* option, char* value); +void QAudioEncoderSettings_SetSampleRate(QtObjectPtr ptr, int rate); +void QAudioEncoderSettings_DestroyQAudioEncoderSettings(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qaudioencodersettingscontrol.cpp b/multimedia/qaudioencodersettingscontrol.cpp new file mode 100755 index 00000000..d0cd7180 --- /dev/null +++ b/multimedia/qaudioencodersettingscontrol.cpp @@ -0,0 +1,29 @@ +#include "qaudioencodersettingscontrol.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAudioEncoderSettingsControl: public QAudioEncoderSettingsControl { +public: +}; + +char* QAudioEncoderSettingsControl_CodecDescription(QtObjectPtr ptr, char* codec){ + return static_cast(ptr)->codecDescription(QString(codec)).toUtf8().data(); +} + +void QAudioEncoderSettingsControl_SetAudioSettings(QtObjectPtr ptr, QtObjectPtr settings){ + static_cast(ptr)->setAudioSettings(*static_cast(settings)); +} + +char* QAudioEncoderSettingsControl_SupportedAudioCodecs(QtObjectPtr ptr){ + return static_cast(ptr)->supportedAudioCodecs().join("|").toUtf8().data(); +} + +void QAudioEncoderSettingsControl_DestroyQAudioEncoderSettingsControl(QtObjectPtr ptr){ + static_cast(ptr)->~QAudioEncoderSettingsControl(); +} + diff --git a/multimedia/qaudioencodersettingscontrol.go b/multimedia/qaudioencodersettingscontrol.go new file mode 100755 index 00000000..a24f97b8 --- /dev/null +++ b/multimedia/qaudioencodersettingscontrol.go @@ -0,0 +1,65 @@ +package multimedia + +//#include "qaudioencodersettingscontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "strings" + "unsafe" +) + +type QAudioEncoderSettingsControl struct { + QMediaControl +} + +type QAudioEncoderSettingsControlITF interface { + QMediaControlITF + QAudioEncoderSettingsControlPTR() *QAudioEncoderSettingsControl +} + +func PointerFromQAudioEncoderSettingsControl(ptr QAudioEncoderSettingsControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAudioEncoderSettingsControlPTR().Pointer() + } + return nil +} + +func QAudioEncoderSettingsControlFromPointer(ptr unsafe.Pointer) *QAudioEncoderSettingsControl { + var n = new(QAudioEncoderSettingsControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAudioEncoderSettingsControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAudioEncoderSettingsControl) QAudioEncoderSettingsControlPTR() *QAudioEncoderSettingsControl { + return ptr +} + +func (ptr *QAudioEncoderSettingsControl) CodecDescription(codec string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAudioEncoderSettingsControl_CodecDescription(C.QtObjectPtr(ptr.Pointer()), C.CString(codec))) + } + return "" +} + +func (ptr *QAudioEncoderSettingsControl) SetAudioSettings(settings QAudioEncoderSettingsITF) { + if ptr.Pointer() != nil { + C.QAudioEncoderSettingsControl_SetAudioSettings(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAudioEncoderSettings(settings))) + } +} + +func (ptr *QAudioEncoderSettingsControl) SupportedAudioCodecs() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QAudioEncoderSettingsControl_SupportedAudioCodecs(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QAudioEncoderSettingsControl) DestroyQAudioEncoderSettingsControl() { + if ptr.Pointer() != nil { + C.QAudioEncoderSettingsControl_DestroyQAudioEncoderSettingsControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qaudioencodersettingscontrol.h b/multimedia/qaudioencodersettingscontrol.h new file mode 100755 index 00000000..3e796e68 --- /dev/null +++ b/multimedia/qaudioencodersettingscontrol.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QAudioEncoderSettingsControl_CodecDescription(QtObjectPtr ptr, char* codec); +void QAudioEncoderSettingsControl_SetAudioSettings(QtObjectPtr ptr, QtObjectPtr settings); +char* QAudioEncoderSettingsControl_SupportedAudioCodecs(QtObjectPtr ptr); +void QAudioEncoderSettingsControl_DestroyQAudioEncoderSettingsControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qaudioformat.cpp b/multimedia/qaudioformat.cpp new file mode 100755 index 00000000..52c7b5f6 --- /dev/null +++ b/multimedia/qaudioformat.cpp @@ -0,0 +1,80 @@ +#include "qaudioformat.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAudioFormat: public QAudioFormat { +public: +}; + +QtObjectPtr QAudioFormat_NewQAudioFormat(){ + return new QAudioFormat(); +} + +QtObjectPtr QAudioFormat_NewQAudioFormat2(QtObjectPtr other){ + return new QAudioFormat(*static_cast(other)); +} + +int QAudioFormat_ByteOrder(QtObjectPtr ptr){ + return static_cast(ptr)->byteOrder(); +} + +int QAudioFormat_BytesPerFrame(QtObjectPtr ptr){ + return static_cast(ptr)->bytesPerFrame(); +} + +int QAudioFormat_ChannelCount(QtObjectPtr ptr){ + return static_cast(ptr)->channelCount(); +} + +char* QAudioFormat_Codec(QtObjectPtr ptr){ + return static_cast(ptr)->codec().toUtf8().data(); +} + +int QAudioFormat_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QAudioFormat_SampleRate(QtObjectPtr ptr){ + return static_cast(ptr)->sampleRate(); +} + +int QAudioFormat_SampleSize(QtObjectPtr ptr){ + return static_cast(ptr)->sampleSize(); +} + +int QAudioFormat_SampleType(QtObjectPtr ptr){ + return static_cast(ptr)->sampleType(); +} + +void QAudioFormat_SetByteOrder(QtObjectPtr ptr, int byteOrder){ + static_cast(ptr)->setByteOrder(static_cast(byteOrder)); +} + +void QAudioFormat_SetChannelCount(QtObjectPtr ptr, int channels){ + static_cast(ptr)->setChannelCount(channels); +} + +void QAudioFormat_SetCodec(QtObjectPtr ptr, char* codec){ + static_cast(ptr)->setCodec(QString(codec)); +} + +void QAudioFormat_SetSampleRate(QtObjectPtr ptr, int samplerate){ + static_cast(ptr)->setSampleRate(samplerate); +} + +void QAudioFormat_SetSampleSize(QtObjectPtr ptr, int sampleSize){ + static_cast(ptr)->setSampleSize(sampleSize); +} + +void QAudioFormat_SetSampleType(QtObjectPtr ptr, int sampleType){ + static_cast(ptr)->setSampleType(static_cast(sampleType)); +} + +void QAudioFormat_DestroyQAudioFormat(QtObjectPtr ptr){ + static_cast(ptr)->~QAudioFormat(); +} + diff --git a/multimedia/qaudioformat.go b/multimedia/qaudioformat.go new file mode 100755 index 00000000..a62f492a --- /dev/null +++ b/multimedia/qaudioformat.go @@ -0,0 +1,165 @@ +package multimedia + +//#include "qaudioformat.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAudioFormat struct { + ptr unsafe.Pointer +} + +type QAudioFormatITF interface { + QAudioFormatPTR() *QAudioFormat +} + +func (p *QAudioFormat) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QAudioFormat) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQAudioFormat(ptr QAudioFormatITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAudioFormatPTR().Pointer() + } + return nil +} + +func QAudioFormatFromPointer(ptr unsafe.Pointer) *QAudioFormat { + var n = new(QAudioFormat) + n.SetPointer(ptr) + return n +} + +func (ptr *QAudioFormat) QAudioFormatPTR() *QAudioFormat { + return ptr +} + +//QAudioFormat::Endian +type QAudioFormat__Endian int + +var ( + QAudioFormat__BigEndian = QAudioFormat__Endian(core.QSysInfo__BigEndian) + QAudioFormat__LittleEndian = QAudioFormat__Endian(core.QSysInfo__LittleEndian) +) + +//QAudioFormat::SampleType +type QAudioFormat__SampleType int + +var ( + QAudioFormat__Unknown = QAudioFormat__SampleType(0) + QAudioFormat__SignedInt = QAudioFormat__SampleType(1) + QAudioFormat__UnSignedInt = QAudioFormat__SampleType(2) + QAudioFormat__Float = QAudioFormat__SampleType(3) +) + +func NewQAudioFormat() *QAudioFormat { + return QAudioFormatFromPointer(unsafe.Pointer(C.QAudioFormat_NewQAudioFormat())) +} + +func NewQAudioFormat2(other QAudioFormatITF) *QAudioFormat { + return QAudioFormatFromPointer(unsafe.Pointer(C.QAudioFormat_NewQAudioFormat2(C.QtObjectPtr(PointerFromQAudioFormat(other))))) +} + +func (ptr *QAudioFormat) ByteOrder() QAudioFormat__Endian { + if ptr.Pointer() != nil { + return QAudioFormat__Endian(C.QAudioFormat_ByteOrder(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAudioFormat) BytesPerFrame() int { + if ptr.Pointer() != nil { + return int(C.QAudioFormat_BytesPerFrame(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAudioFormat) ChannelCount() int { + if ptr.Pointer() != nil { + return int(C.QAudioFormat_ChannelCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAudioFormat) Codec() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAudioFormat_Codec(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAudioFormat) IsValid() bool { + if ptr.Pointer() != nil { + return C.QAudioFormat_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAudioFormat) SampleRate() int { + if ptr.Pointer() != nil { + return int(C.QAudioFormat_SampleRate(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAudioFormat) SampleSize() int { + if ptr.Pointer() != nil { + return int(C.QAudioFormat_SampleSize(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAudioFormat) SampleType() QAudioFormat__SampleType { + if ptr.Pointer() != nil { + return QAudioFormat__SampleType(C.QAudioFormat_SampleType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAudioFormat) SetByteOrder(byteOrder QAudioFormat__Endian) { + if ptr.Pointer() != nil { + C.QAudioFormat_SetByteOrder(C.QtObjectPtr(ptr.Pointer()), C.int(byteOrder)) + } +} + +func (ptr *QAudioFormat) SetChannelCount(channels int) { + if ptr.Pointer() != nil { + C.QAudioFormat_SetChannelCount(C.QtObjectPtr(ptr.Pointer()), C.int(channels)) + } +} + +func (ptr *QAudioFormat) SetCodec(codec string) { + if ptr.Pointer() != nil { + C.QAudioFormat_SetCodec(C.QtObjectPtr(ptr.Pointer()), C.CString(codec)) + } +} + +func (ptr *QAudioFormat) SetSampleRate(samplerate int) { + if ptr.Pointer() != nil { + C.QAudioFormat_SetSampleRate(C.QtObjectPtr(ptr.Pointer()), C.int(samplerate)) + } +} + +func (ptr *QAudioFormat) SetSampleSize(sampleSize int) { + if ptr.Pointer() != nil { + C.QAudioFormat_SetSampleSize(C.QtObjectPtr(ptr.Pointer()), C.int(sampleSize)) + } +} + +func (ptr *QAudioFormat) SetSampleType(sampleType QAudioFormat__SampleType) { + if ptr.Pointer() != nil { + C.QAudioFormat_SetSampleType(C.QtObjectPtr(ptr.Pointer()), C.int(sampleType)) + } +} + +func (ptr *QAudioFormat) DestroyQAudioFormat() { + if ptr.Pointer() != nil { + C.QAudioFormat_DestroyQAudioFormat(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/multimedia/qaudioformat.h b/multimedia/qaudioformat.h new file mode 100755 index 00000000..790f0b1b --- /dev/null +++ b/multimedia/qaudioformat.h @@ -0,0 +1,26 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAudioFormat_NewQAudioFormat(); +QtObjectPtr QAudioFormat_NewQAudioFormat2(QtObjectPtr other); +int QAudioFormat_ByteOrder(QtObjectPtr ptr); +int QAudioFormat_BytesPerFrame(QtObjectPtr ptr); +int QAudioFormat_ChannelCount(QtObjectPtr ptr); +char* QAudioFormat_Codec(QtObjectPtr ptr); +int QAudioFormat_IsValid(QtObjectPtr ptr); +int QAudioFormat_SampleRate(QtObjectPtr ptr); +int QAudioFormat_SampleSize(QtObjectPtr ptr); +int QAudioFormat_SampleType(QtObjectPtr ptr); +void QAudioFormat_SetByteOrder(QtObjectPtr ptr, int byteOrder); +void QAudioFormat_SetChannelCount(QtObjectPtr ptr, int channels); +void QAudioFormat_SetCodec(QtObjectPtr ptr, char* codec); +void QAudioFormat_SetSampleRate(QtObjectPtr ptr, int samplerate); +void QAudioFormat_SetSampleSize(QtObjectPtr ptr, int sampleSize); +void QAudioFormat_SetSampleType(QtObjectPtr ptr, int sampleType); +void QAudioFormat_DestroyQAudioFormat(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qaudioinput.cpp b/multimedia/qaudioinput.cpp new file mode 100755 index 00000000..3302b899 --- /dev/null +++ b/multimedia/qaudioinput.cpp @@ -0,0 +1,85 @@ +#include "qaudioinput.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAudioInput: public QAudioInput { +public: +void Signal_Notify(){callbackQAudioInputNotify(this->objectName().toUtf8().data());}; +}; + +QtObjectPtr QAudioInput_NewQAudioInput2(QtObjectPtr audioDevice, QtObjectPtr format, QtObjectPtr parent){ + return new QAudioInput(*static_cast(audioDevice), *static_cast(format), static_cast(parent)); +} + +QtObjectPtr QAudioInput_NewQAudioInput(QtObjectPtr format, QtObjectPtr parent){ + return new QAudioInput(*static_cast(format), static_cast(parent)); +} + +int QAudioInput_BufferSize(QtObjectPtr ptr){ + return static_cast(ptr)->bufferSize(); +} + +int QAudioInput_BytesReady(QtObjectPtr ptr){ + return static_cast(ptr)->bytesReady(); +} + +void QAudioInput_ConnectNotify(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAudioInput::notify), static_cast(ptr), static_cast(&MyQAudioInput::Signal_Notify));; +} + +void QAudioInput_DisconnectNotify(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAudioInput::notify), static_cast(ptr), static_cast(&MyQAudioInput::Signal_Notify));; +} + +int QAudioInput_NotifyInterval(QtObjectPtr ptr){ + return static_cast(ptr)->notifyInterval(); +} + +int QAudioInput_PeriodSize(QtObjectPtr ptr){ + return static_cast(ptr)->periodSize(); +} + +void QAudioInput_Reset(QtObjectPtr ptr){ + static_cast(ptr)->reset(); +} + +void QAudioInput_Resume(QtObjectPtr ptr){ + static_cast(ptr)->resume(); +} + +void QAudioInput_SetBufferSize(QtObjectPtr ptr, int value){ + static_cast(ptr)->setBufferSize(value); +} + +void QAudioInput_SetNotifyInterval(QtObjectPtr ptr, int ms){ + static_cast(ptr)->setNotifyInterval(ms); +} + +QtObjectPtr QAudioInput_Start2(QtObjectPtr ptr){ + return static_cast(ptr)->start(); +} + +void QAudioInput_Start(QtObjectPtr ptr, QtObjectPtr device){ + static_cast(ptr)->start(static_cast(device)); +} + +void QAudioInput_Stop(QtObjectPtr ptr){ + static_cast(ptr)->stop(); +} + +void QAudioInput_Suspend(QtObjectPtr ptr){ + static_cast(ptr)->suspend(); +} + +void QAudioInput_DestroyQAudioInput(QtObjectPtr ptr){ + static_cast(ptr)->~QAudioInput(); +} + diff --git a/multimedia/qaudioinput.go b/multimedia/qaudioinput.go new file mode 100755 index 00000000..62a806c2 --- /dev/null +++ b/multimedia/qaudioinput.go @@ -0,0 +1,149 @@ +package multimedia + +//#include "qaudioinput.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAudioInput struct { + core.QObject +} + +type QAudioInputITF interface { + core.QObjectITF + QAudioInputPTR() *QAudioInput +} + +func PointerFromQAudioInput(ptr QAudioInputITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAudioInputPTR().Pointer() + } + return nil +} + +func QAudioInputFromPointer(ptr unsafe.Pointer) *QAudioInput { + var n = new(QAudioInput) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAudioInput_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAudioInput) QAudioInputPTR() *QAudioInput { + return ptr +} + +func NewQAudioInput2(audioDevice QAudioDeviceInfoITF, format QAudioFormatITF, parent core.QObjectITF) *QAudioInput { + return QAudioInputFromPointer(unsafe.Pointer(C.QAudioInput_NewQAudioInput2(C.QtObjectPtr(PointerFromQAudioDeviceInfo(audioDevice)), C.QtObjectPtr(PointerFromQAudioFormat(format)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQAudioInput(format QAudioFormatITF, parent core.QObjectITF) *QAudioInput { + return QAudioInputFromPointer(unsafe.Pointer(C.QAudioInput_NewQAudioInput(C.QtObjectPtr(PointerFromQAudioFormat(format)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QAudioInput) BufferSize() int { + if ptr.Pointer() != nil { + return int(C.QAudioInput_BufferSize(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAudioInput) BytesReady() int { + if ptr.Pointer() != nil { + return int(C.QAudioInput_BytesReady(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAudioInput) ConnectNotify(f func()) { + if ptr.Pointer() != nil { + C.QAudioInput_ConnectNotify(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "notify", f) + } +} + +func (ptr *QAudioInput) DisconnectNotify() { + if ptr.Pointer() != nil { + C.QAudioInput_DisconnectNotify(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "notify") + } +} + +//export callbackQAudioInputNotify +func callbackQAudioInputNotify(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "notify").(func())() +} + +func (ptr *QAudioInput) NotifyInterval() int { + if ptr.Pointer() != nil { + return int(C.QAudioInput_NotifyInterval(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAudioInput) PeriodSize() int { + if ptr.Pointer() != nil { + return int(C.QAudioInput_PeriodSize(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAudioInput) Reset() { + if ptr.Pointer() != nil { + C.QAudioInput_Reset(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAudioInput) Resume() { + if ptr.Pointer() != nil { + C.QAudioInput_Resume(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAudioInput) SetBufferSize(value int) { + if ptr.Pointer() != nil { + C.QAudioInput_SetBufferSize(C.QtObjectPtr(ptr.Pointer()), C.int(value)) + } +} + +func (ptr *QAudioInput) SetNotifyInterval(ms int) { + if ptr.Pointer() != nil { + C.QAudioInput_SetNotifyInterval(C.QtObjectPtr(ptr.Pointer()), C.int(ms)) + } +} + +func (ptr *QAudioInput) Start2() *core.QIODevice { + if ptr.Pointer() != nil { + return core.QIODeviceFromPointer(unsafe.Pointer(C.QAudioInput_Start2(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAudioInput) Start(device core.QIODeviceITF) { + if ptr.Pointer() != nil { + C.QAudioInput_Start(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQIODevice(device))) + } +} + +func (ptr *QAudioInput) Stop() { + if ptr.Pointer() != nil { + C.QAudioInput_Stop(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAudioInput) Suspend() { + if ptr.Pointer() != nil { + C.QAudioInput_Suspend(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAudioInput) DestroyQAudioInput() { + if ptr.Pointer() != nil { + C.QAudioInput_DestroyQAudioInput(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qaudioinput.h b/multimedia/qaudioinput.h new file mode 100755 index 00000000..95b2ba14 --- /dev/null +++ b/multimedia/qaudioinput.h @@ -0,0 +1,26 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAudioInput_NewQAudioInput2(QtObjectPtr audioDevice, QtObjectPtr format, QtObjectPtr parent); +QtObjectPtr QAudioInput_NewQAudioInput(QtObjectPtr format, QtObjectPtr parent); +int QAudioInput_BufferSize(QtObjectPtr ptr); +int QAudioInput_BytesReady(QtObjectPtr ptr); +void QAudioInput_ConnectNotify(QtObjectPtr ptr); +void QAudioInput_DisconnectNotify(QtObjectPtr ptr); +int QAudioInput_NotifyInterval(QtObjectPtr ptr); +int QAudioInput_PeriodSize(QtObjectPtr ptr); +void QAudioInput_Reset(QtObjectPtr ptr); +void QAudioInput_Resume(QtObjectPtr ptr); +void QAudioInput_SetBufferSize(QtObjectPtr ptr, int value); +void QAudioInput_SetNotifyInterval(QtObjectPtr ptr, int ms); +QtObjectPtr QAudioInput_Start2(QtObjectPtr ptr); +void QAudioInput_Start(QtObjectPtr ptr, QtObjectPtr device); +void QAudioInput_Stop(QtObjectPtr ptr); +void QAudioInput_Suspend(QtObjectPtr ptr); +void QAudioInput_DestroyQAudioInput(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qaudioinputselectorcontrol.cpp b/multimedia/qaudioinputselectorcontrol.cpp new file mode 100755 index 00000000..d37401d9 --- /dev/null +++ b/multimedia/qaudioinputselectorcontrol.cpp @@ -0,0 +1,53 @@ +#include "qaudioinputselectorcontrol.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAudioInputSelectorControl: public QAudioInputSelectorControl { +public: +void Signal_ActiveInputChanged(const QString & name){callbackQAudioInputSelectorControlActiveInputChanged(this->objectName().toUtf8().data(), name.toUtf8().data());}; +void Signal_AvailableInputsChanged(){callbackQAudioInputSelectorControlAvailableInputsChanged(this->objectName().toUtf8().data());}; +}; + +char* QAudioInputSelectorControl_ActiveInput(QtObjectPtr ptr){ + return static_cast(ptr)->activeInput().toUtf8().data(); +} + +void QAudioInputSelectorControl_ConnectActiveInputChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAudioInputSelectorControl::activeInputChanged), static_cast(ptr), static_cast(&MyQAudioInputSelectorControl::Signal_ActiveInputChanged));; +} + +void QAudioInputSelectorControl_DisconnectActiveInputChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAudioInputSelectorControl::activeInputChanged), static_cast(ptr), static_cast(&MyQAudioInputSelectorControl::Signal_ActiveInputChanged));; +} + +void QAudioInputSelectorControl_ConnectAvailableInputsChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAudioInputSelectorControl::availableInputsChanged), static_cast(ptr), static_cast(&MyQAudioInputSelectorControl::Signal_AvailableInputsChanged));; +} + +void QAudioInputSelectorControl_DisconnectAvailableInputsChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAudioInputSelectorControl::availableInputsChanged), static_cast(ptr), static_cast(&MyQAudioInputSelectorControl::Signal_AvailableInputsChanged));; +} + +char* QAudioInputSelectorControl_DefaultInput(QtObjectPtr ptr){ + return static_cast(ptr)->defaultInput().toUtf8().data(); +} + +char* QAudioInputSelectorControl_InputDescription(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->inputDescription(QString(name)).toUtf8().data(); +} + +void QAudioInputSelectorControl_SetActiveInput(QtObjectPtr ptr, char* name){ + QMetaObject::invokeMethod(static_cast(ptr), "setActiveInput", Q_ARG(QString, QString(name))); +} + +void QAudioInputSelectorControl_DestroyQAudioInputSelectorControl(QtObjectPtr ptr){ + static_cast(ptr)->~QAudioInputSelectorControl(); +} + diff --git a/multimedia/qaudioinputselectorcontrol.go b/multimedia/qaudioinputselectorcontrol.go new file mode 100755 index 00000000..5a424c92 --- /dev/null +++ b/multimedia/qaudioinputselectorcontrol.go @@ -0,0 +1,109 @@ +package multimedia + +//#include "qaudioinputselectorcontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QAudioInputSelectorControl struct { + QMediaControl +} + +type QAudioInputSelectorControlITF interface { + QMediaControlITF + QAudioInputSelectorControlPTR() *QAudioInputSelectorControl +} + +func PointerFromQAudioInputSelectorControl(ptr QAudioInputSelectorControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAudioInputSelectorControlPTR().Pointer() + } + return nil +} + +func QAudioInputSelectorControlFromPointer(ptr unsafe.Pointer) *QAudioInputSelectorControl { + var n = new(QAudioInputSelectorControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAudioInputSelectorControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAudioInputSelectorControl) QAudioInputSelectorControlPTR() *QAudioInputSelectorControl { + return ptr +} + +func (ptr *QAudioInputSelectorControl) ActiveInput() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAudioInputSelectorControl_ActiveInput(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAudioInputSelectorControl) ConnectActiveInputChanged(f func(name string)) { + if ptr.Pointer() != nil { + C.QAudioInputSelectorControl_ConnectActiveInputChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "activeInputChanged", f) + } +} + +func (ptr *QAudioInputSelectorControl) DisconnectActiveInputChanged() { + if ptr.Pointer() != nil { + C.QAudioInputSelectorControl_DisconnectActiveInputChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "activeInputChanged") + } +} + +//export callbackQAudioInputSelectorControlActiveInputChanged +func callbackQAudioInputSelectorControlActiveInputChanged(ptrName *C.char, name *C.char) { + qt.GetSignal(C.GoString(ptrName), "activeInputChanged").(func(string))(C.GoString(name)) +} + +func (ptr *QAudioInputSelectorControl) ConnectAvailableInputsChanged(f func()) { + if ptr.Pointer() != nil { + C.QAudioInputSelectorControl_ConnectAvailableInputsChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "availableInputsChanged", f) + } +} + +func (ptr *QAudioInputSelectorControl) DisconnectAvailableInputsChanged() { + if ptr.Pointer() != nil { + C.QAudioInputSelectorControl_DisconnectAvailableInputsChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "availableInputsChanged") + } +} + +//export callbackQAudioInputSelectorControlAvailableInputsChanged +func callbackQAudioInputSelectorControlAvailableInputsChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "availableInputsChanged").(func())() +} + +func (ptr *QAudioInputSelectorControl) DefaultInput() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAudioInputSelectorControl_DefaultInput(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAudioInputSelectorControl) InputDescription(name string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAudioInputSelectorControl_InputDescription(C.QtObjectPtr(ptr.Pointer()), C.CString(name))) + } + return "" +} + +func (ptr *QAudioInputSelectorControl) SetActiveInput(name string) { + if ptr.Pointer() != nil { + C.QAudioInputSelectorControl_SetActiveInput(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func (ptr *QAudioInputSelectorControl) DestroyQAudioInputSelectorControl() { + if ptr.Pointer() != nil { + C.QAudioInputSelectorControl_DestroyQAudioInputSelectorControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qaudioinputselectorcontrol.h b/multimedia/qaudioinputselectorcontrol.h new file mode 100755 index 00000000..13198471 --- /dev/null +++ b/multimedia/qaudioinputselectorcontrol.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QAudioInputSelectorControl_ActiveInput(QtObjectPtr ptr); +void QAudioInputSelectorControl_ConnectActiveInputChanged(QtObjectPtr ptr); +void QAudioInputSelectorControl_DisconnectActiveInputChanged(QtObjectPtr ptr); +void QAudioInputSelectorControl_ConnectAvailableInputsChanged(QtObjectPtr ptr); +void QAudioInputSelectorControl_DisconnectAvailableInputsChanged(QtObjectPtr ptr); +char* QAudioInputSelectorControl_DefaultInput(QtObjectPtr ptr); +char* QAudioInputSelectorControl_InputDescription(QtObjectPtr ptr, char* name); +void QAudioInputSelectorControl_SetActiveInput(QtObjectPtr ptr, char* name); +void QAudioInputSelectorControl_DestroyQAudioInputSelectorControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qaudiooutput.cpp b/multimedia/qaudiooutput.cpp new file mode 100755 index 00000000..3c4cda69 --- /dev/null +++ b/multimedia/qaudiooutput.cpp @@ -0,0 +1,93 @@ +#include "qaudiooutput.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAudioOutput: public QAudioOutput { +public: +void Signal_Notify(){callbackQAudioOutputNotify(this->objectName().toUtf8().data());}; +}; + +QtObjectPtr QAudioOutput_NewQAudioOutput2(QtObjectPtr audioDevice, QtObjectPtr format, QtObjectPtr parent){ + return new QAudioOutput(*static_cast(audioDevice), *static_cast(format), static_cast(parent)); +} + +QtObjectPtr QAudioOutput_NewQAudioOutput(QtObjectPtr format, QtObjectPtr parent){ + return new QAudioOutput(*static_cast(format), static_cast(parent)); +} + +int QAudioOutput_BufferSize(QtObjectPtr ptr){ + return static_cast(ptr)->bufferSize(); +} + +int QAudioOutput_BytesFree(QtObjectPtr ptr){ + return static_cast(ptr)->bytesFree(); +} + +char* QAudioOutput_Category(QtObjectPtr ptr){ + return static_cast(ptr)->category().toUtf8().data(); +} + +void QAudioOutput_ConnectNotify(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAudioOutput::notify), static_cast(ptr), static_cast(&MyQAudioOutput::Signal_Notify));; +} + +void QAudioOutput_DisconnectNotify(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAudioOutput::notify), static_cast(ptr), static_cast(&MyQAudioOutput::Signal_Notify));; +} + +int QAudioOutput_NotifyInterval(QtObjectPtr ptr){ + return static_cast(ptr)->notifyInterval(); +} + +int QAudioOutput_PeriodSize(QtObjectPtr ptr){ + return static_cast(ptr)->periodSize(); +} + +void QAudioOutput_Reset(QtObjectPtr ptr){ + static_cast(ptr)->reset(); +} + +void QAudioOutput_Resume(QtObjectPtr ptr){ + static_cast(ptr)->resume(); +} + +void QAudioOutput_SetBufferSize(QtObjectPtr ptr, int value){ + static_cast(ptr)->setBufferSize(value); +} + +void QAudioOutput_SetCategory(QtObjectPtr ptr, char* category){ + static_cast(ptr)->setCategory(QString(category)); +} + +void QAudioOutput_SetNotifyInterval(QtObjectPtr ptr, int ms){ + static_cast(ptr)->setNotifyInterval(ms); +} + +QtObjectPtr QAudioOutput_Start2(QtObjectPtr ptr){ + return static_cast(ptr)->start(); +} + +void QAudioOutput_Start(QtObjectPtr ptr, QtObjectPtr device){ + static_cast(ptr)->start(static_cast(device)); +} + +void QAudioOutput_Stop(QtObjectPtr ptr){ + static_cast(ptr)->stop(); +} + +void QAudioOutput_Suspend(QtObjectPtr ptr){ + static_cast(ptr)->suspend(); +} + +void QAudioOutput_DestroyQAudioOutput(QtObjectPtr ptr){ + static_cast(ptr)->~QAudioOutput(); +} + diff --git a/multimedia/qaudiooutput.go b/multimedia/qaudiooutput.go new file mode 100755 index 00000000..72897975 --- /dev/null +++ b/multimedia/qaudiooutput.go @@ -0,0 +1,162 @@ +package multimedia + +//#include "qaudiooutput.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAudioOutput struct { + core.QObject +} + +type QAudioOutputITF interface { + core.QObjectITF + QAudioOutputPTR() *QAudioOutput +} + +func PointerFromQAudioOutput(ptr QAudioOutputITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAudioOutputPTR().Pointer() + } + return nil +} + +func QAudioOutputFromPointer(ptr unsafe.Pointer) *QAudioOutput { + var n = new(QAudioOutput) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAudioOutput_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAudioOutput) QAudioOutputPTR() *QAudioOutput { + return ptr +} + +func NewQAudioOutput2(audioDevice QAudioDeviceInfoITF, format QAudioFormatITF, parent core.QObjectITF) *QAudioOutput { + return QAudioOutputFromPointer(unsafe.Pointer(C.QAudioOutput_NewQAudioOutput2(C.QtObjectPtr(PointerFromQAudioDeviceInfo(audioDevice)), C.QtObjectPtr(PointerFromQAudioFormat(format)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQAudioOutput(format QAudioFormatITF, parent core.QObjectITF) *QAudioOutput { + return QAudioOutputFromPointer(unsafe.Pointer(C.QAudioOutput_NewQAudioOutput(C.QtObjectPtr(PointerFromQAudioFormat(format)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QAudioOutput) BufferSize() int { + if ptr.Pointer() != nil { + return int(C.QAudioOutput_BufferSize(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAudioOutput) BytesFree() int { + if ptr.Pointer() != nil { + return int(C.QAudioOutput_BytesFree(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAudioOutput) Category() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAudioOutput_Category(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAudioOutput) ConnectNotify(f func()) { + if ptr.Pointer() != nil { + C.QAudioOutput_ConnectNotify(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "notify", f) + } +} + +func (ptr *QAudioOutput) DisconnectNotify() { + if ptr.Pointer() != nil { + C.QAudioOutput_DisconnectNotify(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "notify") + } +} + +//export callbackQAudioOutputNotify +func callbackQAudioOutputNotify(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "notify").(func())() +} + +func (ptr *QAudioOutput) NotifyInterval() int { + if ptr.Pointer() != nil { + return int(C.QAudioOutput_NotifyInterval(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAudioOutput) PeriodSize() int { + if ptr.Pointer() != nil { + return int(C.QAudioOutput_PeriodSize(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAudioOutput) Reset() { + if ptr.Pointer() != nil { + C.QAudioOutput_Reset(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAudioOutput) Resume() { + if ptr.Pointer() != nil { + C.QAudioOutput_Resume(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAudioOutput) SetBufferSize(value int) { + if ptr.Pointer() != nil { + C.QAudioOutput_SetBufferSize(C.QtObjectPtr(ptr.Pointer()), C.int(value)) + } +} + +func (ptr *QAudioOutput) SetCategory(category string) { + if ptr.Pointer() != nil { + C.QAudioOutput_SetCategory(C.QtObjectPtr(ptr.Pointer()), C.CString(category)) + } +} + +func (ptr *QAudioOutput) SetNotifyInterval(ms int) { + if ptr.Pointer() != nil { + C.QAudioOutput_SetNotifyInterval(C.QtObjectPtr(ptr.Pointer()), C.int(ms)) + } +} + +func (ptr *QAudioOutput) Start2() *core.QIODevice { + if ptr.Pointer() != nil { + return core.QIODeviceFromPointer(unsafe.Pointer(C.QAudioOutput_Start2(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAudioOutput) Start(device core.QIODeviceITF) { + if ptr.Pointer() != nil { + C.QAudioOutput_Start(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQIODevice(device))) + } +} + +func (ptr *QAudioOutput) Stop() { + if ptr.Pointer() != nil { + C.QAudioOutput_Stop(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAudioOutput) Suspend() { + if ptr.Pointer() != nil { + C.QAudioOutput_Suspend(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAudioOutput) DestroyQAudioOutput() { + if ptr.Pointer() != nil { + C.QAudioOutput_DestroyQAudioOutput(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qaudiooutput.h b/multimedia/qaudiooutput.h new file mode 100755 index 00000000..13c447a6 --- /dev/null +++ b/multimedia/qaudiooutput.h @@ -0,0 +1,28 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAudioOutput_NewQAudioOutput2(QtObjectPtr audioDevice, QtObjectPtr format, QtObjectPtr parent); +QtObjectPtr QAudioOutput_NewQAudioOutput(QtObjectPtr format, QtObjectPtr parent); +int QAudioOutput_BufferSize(QtObjectPtr ptr); +int QAudioOutput_BytesFree(QtObjectPtr ptr); +char* QAudioOutput_Category(QtObjectPtr ptr); +void QAudioOutput_ConnectNotify(QtObjectPtr ptr); +void QAudioOutput_DisconnectNotify(QtObjectPtr ptr); +int QAudioOutput_NotifyInterval(QtObjectPtr ptr); +int QAudioOutput_PeriodSize(QtObjectPtr ptr); +void QAudioOutput_Reset(QtObjectPtr ptr); +void QAudioOutput_Resume(QtObjectPtr ptr); +void QAudioOutput_SetBufferSize(QtObjectPtr ptr, int value); +void QAudioOutput_SetCategory(QtObjectPtr ptr, char* category); +void QAudioOutput_SetNotifyInterval(QtObjectPtr ptr, int ms); +QtObjectPtr QAudioOutput_Start2(QtObjectPtr ptr); +void QAudioOutput_Start(QtObjectPtr ptr, QtObjectPtr device); +void QAudioOutput_Stop(QtObjectPtr ptr); +void QAudioOutput_Suspend(QtObjectPtr ptr); +void QAudioOutput_DestroyQAudioOutput(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qaudiooutputselectorcontrol.cpp b/multimedia/qaudiooutputselectorcontrol.cpp new file mode 100755 index 00000000..76fa5079 --- /dev/null +++ b/multimedia/qaudiooutputselectorcontrol.cpp @@ -0,0 +1,53 @@ +#include "qaudiooutputselectorcontrol.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAudioOutputSelectorControl: public QAudioOutputSelectorControl { +public: +void Signal_ActiveOutputChanged(const QString & name){callbackQAudioOutputSelectorControlActiveOutputChanged(this->objectName().toUtf8().data(), name.toUtf8().data());}; +void Signal_AvailableOutputsChanged(){callbackQAudioOutputSelectorControlAvailableOutputsChanged(this->objectName().toUtf8().data());}; +}; + +char* QAudioOutputSelectorControl_ActiveOutput(QtObjectPtr ptr){ + return static_cast(ptr)->activeOutput().toUtf8().data(); +} + +void QAudioOutputSelectorControl_ConnectActiveOutputChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAudioOutputSelectorControl::activeOutputChanged), static_cast(ptr), static_cast(&MyQAudioOutputSelectorControl::Signal_ActiveOutputChanged));; +} + +void QAudioOutputSelectorControl_DisconnectActiveOutputChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAudioOutputSelectorControl::activeOutputChanged), static_cast(ptr), static_cast(&MyQAudioOutputSelectorControl::Signal_ActiveOutputChanged));; +} + +void QAudioOutputSelectorControl_ConnectAvailableOutputsChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAudioOutputSelectorControl::availableOutputsChanged), static_cast(ptr), static_cast(&MyQAudioOutputSelectorControl::Signal_AvailableOutputsChanged));; +} + +void QAudioOutputSelectorControl_DisconnectAvailableOutputsChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAudioOutputSelectorControl::availableOutputsChanged), static_cast(ptr), static_cast(&MyQAudioOutputSelectorControl::Signal_AvailableOutputsChanged));; +} + +char* QAudioOutputSelectorControl_DefaultOutput(QtObjectPtr ptr){ + return static_cast(ptr)->defaultOutput().toUtf8().data(); +} + +char* QAudioOutputSelectorControl_OutputDescription(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->outputDescription(QString(name)).toUtf8().data(); +} + +void QAudioOutputSelectorControl_SetActiveOutput(QtObjectPtr ptr, char* name){ + QMetaObject::invokeMethod(static_cast(ptr), "setActiveOutput", Q_ARG(QString, QString(name))); +} + +void QAudioOutputSelectorControl_DestroyQAudioOutputSelectorControl(QtObjectPtr ptr){ + static_cast(ptr)->~QAudioOutputSelectorControl(); +} + diff --git a/multimedia/qaudiooutputselectorcontrol.go b/multimedia/qaudiooutputselectorcontrol.go new file mode 100755 index 00000000..35eec37d --- /dev/null +++ b/multimedia/qaudiooutputselectorcontrol.go @@ -0,0 +1,109 @@ +package multimedia + +//#include "qaudiooutputselectorcontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QAudioOutputSelectorControl struct { + QMediaControl +} + +type QAudioOutputSelectorControlITF interface { + QMediaControlITF + QAudioOutputSelectorControlPTR() *QAudioOutputSelectorControl +} + +func PointerFromQAudioOutputSelectorControl(ptr QAudioOutputSelectorControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAudioOutputSelectorControlPTR().Pointer() + } + return nil +} + +func QAudioOutputSelectorControlFromPointer(ptr unsafe.Pointer) *QAudioOutputSelectorControl { + var n = new(QAudioOutputSelectorControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAudioOutputSelectorControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAudioOutputSelectorControl) QAudioOutputSelectorControlPTR() *QAudioOutputSelectorControl { + return ptr +} + +func (ptr *QAudioOutputSelectorControl) ActiveOutput() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAudioOutputSelectorControl_ActiveOutput(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAudioOutputSelectorControl) ConnectActiveOutputChanged(f func(name string)) { + if ptr.Pointer() != nil { + C.QAudioOutputSelectorControl_ConnectActiveOutputChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "activeOutputChanged", f) + } +} + +func (ptr *QAudioOutputSelectorControl) DisconnectActiveOutputChanged() { + if ptr.Pointer() != nil { + C.QAudioOutputSelectorControl_DisconnectActiveOutputChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "activeOutputChanged") + } +} + +//export callbackQAudioOutputSelectorControlActiveOutputChanged +func callbackQAudioOutputSelectorControlActiveOutputChanged(ptrName *C.char, name *C.char) { + qt.GetSignal(C.GoString(ptrName), "activeOutputChanged").(func(string))(C.GoString(name)) +} + +func (ptr *QAudioOutputSelectorControl) ConnectAvailableOutputsChanged(f func()) { + if ptr.Pointer() != nil { + C.QAudioOutputSelectorControl_ConnectAvailableOutputsChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "availableOutputsChanged", f) + } +} + +func (ptr *QAudioOutputSelectorControl) DisconnectAvailableOutputsChanged() { + if ptr.Pointer() != nil { + C.QAudioOutputSelectorControl_DisconnectAvailableOutputsChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "availableOutputsChanged") + } +} + +//export callbackQAudioOutputSelectorControlAvailableOutputsChanged +func callbackQAudioOutputSelectorControlAvailableOutputsChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "availableOutputsChanged").(func())() +} + +func (ptr *QAudioOutputSelectorControl) DefaultOutput() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAudioOutputSelectorControl_DefaultOutput(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAudioOutputSelectorControl) OutputDescription(name string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAudioOutputSelectorControl_OutputDescription(C.QtObjectPtr(ptr.Pointer()), C.CString(name))) + } + return "" +} + +func (ptr *QAudioOutputSelectorControl) SetActiveOutput(name string) { + if ptr.Pointer() != nil { + C.QAudioOutputSelectorControl_SetActiveOutput(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func (ptr *QAudioOutputSelectorControl) DestroyQAudioOutputSelectorControl() { + if ptr.Pointer() != nil { + C.QAudioOutputSelectorControl_DestroyQAudioOutputSelectorControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qaudiooutputselectorcontrol.h b/multimedia/qaudiooutputselectorcontrol.h new file mode 100755 index 00000000..8deb437e --- /dev/null +++ b/multimedia/qaudiooutputselectorcontrol.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QAudioOutputSelectorControl_ActiveOutput(QtObjectPtr ptr); +void QAudioOutputSelectorControl_ConnectActiveOutputChanged(QtObjectPtr ptr); +void QAudioOutputSelectorControl_DisconnectActiveOutputChanged(QtObjectPtr ptr); +void QAudioOutputSelectorControl_ConnectAvailableOutputsChanged(QtObjectPtr ptr); +void QAudioOutputSelectorControl_DisconnectAvailableOutputsChanged(QtObjectPtr ptr); +char* QAudioOutputSelectorControl_DefaultOutput(QtObjectPtr ptr); +char* QAudioOutputSelectorControl_OutputDescription(QtObjectPtr ptr, char* name); +void QAudioOutputSelectorControl_SetActiveOutput(QtObjectPtr ptr, char* name); +void QAudioOutputSelectorControl_DestroyQAudioOutputSelectorControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qaudioprobe.cpp b/multimedia/qaudioprobe.cpp new file mode 100755 index 00000000..68e9f7d5 --- /dev/null +++ b/multimedia/qaudioprobe.cpp @@ -0,0 +1,44 @@ +#include "qaudioprobe.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAudioProbe: public QAudioProbe { +public: +void Signal_Flush(){callbackQAudioProbeFlush(this->objectName().toUtf8().data());}; +}; + +QtObjectPtr QAudioProbe_NewQAudioProbe(QtObjectPtr parent){ + return new QAudioProbe(static_cast(parent)); +} + +void QAudioProbe_ConnectFlush(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAudioProbe::flush), static_cast(ptr), static_cast(&MyQAudioProbe::Signal_Flush));; +} + +void QAudioProbe_DisconnectFlush(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAudioProbe::flush), static_cast(ptr), static_cast(&MyQAudioProbe::Signal_Flush));; +} + +int QAudioProbe_IsActive(QtObjectPtr ptr){ + return static_cast(ptr)->isActive(); +} + +int QAudioProbe_SetSource(QtObjectPtr ptr, QtObjectPtr source){ + return static_cast(ptr)->setSource(static_cast(source)); +} + +int QAudioProbe_SetSource2(QtObjectPtr ptr, QtObjectPtr mediaRecorder){ + return static_cast(ptr)->setSource(static_cast(mediaRecorder)); +} + +void QAudioProbe_DestroyQAudioProbe(QtObjectPtr ptr){ + static_cast(ptr)->~QAudioProbe(); +} + diff --git a/multimedia/qaudioprobe.go b/multimedia/qaudioprobe.go new file mode 100755 index 00000000..d2418246 --- /dev/null +++ b/multimedia/qaudioprobe.go @@ -0,0 +1,89 @@ +package multimedia + +//#include "qaudioprobe.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAudioProbe struct { + core.QObject +} + +type QAudioProbeITF interface { + core.QObjectITF + QAudioProbePTR() *QAudioProbe +} + +func PointerFromQAudioProbe(ptr QAudioProbeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAudioProbePTR().Pointer() + } + return nil +} + +func QAudioProbeFromPointer(ptr unsafe.Pointer) *QAudioProbe { + var n = new(QAudioProbe) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAudioProbe_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAudioProbe) QAudioProbePTR() *QAudioProbe { + return ptr +} + +func NewQAudioProbe(parent core.QObjectITF) *QAudioProbe { + return QAudioProbeFromPointer(unsafe.Pointer(C.QAudioProbe_NewQAudioProbe(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QAudioProbe) ConnectFlush(f func()) { + if ptr.Pointer() != nil { + C.QAudioProbe_ConnectFlush(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "flush", f) + } +} + +func (ptr *QAudioProbe) DisconnectFlush() { + if ptr.Pointer() != nil { + C.QAudioProbe_DisconnectFlush(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "flush") + } +} + +//export callbackQAudioProbeFlush +func callbackQAudioProbeFlush(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "flush").(func())() +} + +func (ptr *QAudioProbe) IsActive() bool { + if ptr.Pointer() != nil { + return C.QAudioProbe_IsActive(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAudioProbe) SetSource(source QMediaObjectITF) bool { + if ptr.Pointer() != nil { + return C.QAudioProbe_SetSource(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMediaObject(source))) != 0 + } + return false +} + +func (ptr *QAudioProbe) SetSource2(mediaRecorder QMediaRecorderITF) bool { + if ptr.Pointer() != nil { + return C.QAudioProbe_SetSource2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMediaRecorder(mediaRecorder))) != 0 + } + return false +} + +func (ptr *QAudioProbe) DestroyQAudioProbe() { + if ptr.Pointer() != nil { + C.QAudioProbe_DestroyQAudioProbe(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qaudioprobe.h b/multimedia/qaudioprobe.h new file mode 100755 index 00000000..8ddf9093 --- /dev/null +++ b/multimedia/qaudioprobe.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAudioProbe_NewQAudioProbe(QtObjectPtr parent); +void QAudioProbe_ConnectFlush(QtObjectPtr ptr); +void QAudioProbe_DisconnectFlush(QtObjectPtr ptr); +int QAudioProbe_IsActive(QtObjectPtr ptr); +int QAudioProbe_SetSource(QtObjectPtr ptr, QtObjectPtr source); +int QAudioProbe_SetSource2(QtObjectPtr ptr, QtObjectPtr mediaRecorder); +void QAudioProbe_DestroyQAudioProbe(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qaudiorecorder.cpp b/multimedia/qaudiorecorder.cpp new file mode 100755 index 00000000..8ee16add --- /dev/null +++ b/multimedia/qaudiorecorder.cpp @@ -0,0 +1,60 @@ +#include "qaudiorecorder.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAudioRecorder: public QAudioRecorder { +public: +void Signal_AudioInputChanged(const QString & name){callbackQAudioRecorderAudioInputChanged(this->objectName().toUtf8().data(), name.toUtf8().data());}; +void Signal_AvailableAudioInputsChanged(){callbackQAudioRecorderAvailableAudioInputsChanged(this->objectName().toUtf8().data());}; +}; + +QtObjectPtr QAudioRecorder_NewQAudioRecorder(QtObjectPtr parent){ + return new QAudioRecorder(static_cast(parent)); +} + +char* QAudioRecorder_AudioInput(QtObjectPtr ptr){ + return static_cast(ptr)->audioInput().toUtf8().data(); +} + +void QAudioRecorder_ConnectAudioInputChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAudioRecorder::audioInputChanged), static_cast(ptr), static_cast(&MyQAudioRecorder::Signal_AudioInputChanged));; +} + +void QAudioRecorder_DisconnectAudioInputChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAudioRecorder::audioInputChanged), static_cast(ptr), static_cast(&MyQAudioRecorder::Signal_AudioInputChanged));; +} + +char* QAudioRecorder_AudioInputDescription(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->audioInputDescription(QString(name)).toUtf8().data(); +} + +char* QAudioRecorder_AudioInputs(QtObjectPtr ptr){ + return static_cast(ptr)->audioInputs().join("|").toUtf8().data(); +} + +void QAudioRecorder_ConnectAvailableAudioInputsChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAudioRecorder::availableAudioInputsChanged), static_cast(ptr), static_cast(&MyQAudioRecorder::Signal_AvailableAudioInputsChanged));; +} + +void QAudioRecorder_DisconnectAvailableAudioInputsChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAudioRecorder::availableAudioInputsChanged), static_cast(ptr), static_cast(&MyQAudioRecorder::Signal_AvailableAudioInputsChanged));; +} + +char* QAudioRecorder_DefaultAudioInput(QtObjectPtr ptr){ + return static_cast(ptr)->defaultAudioInput().toUtf8().data(); +} + +void QAudioRecorder_SetAudioInput(QtObjectPtr ptr, char* name){ + QMetaObject::invokeMethod(static_cast(ptr), "setAudioInput", Q_ARG(QString, QString(name))); +} + +void QAudioRecorder_DestroyQAudioRecorder(QtObjectPtr ptr){ + static_cast(ptr)->~QAudioRecorder(); +} + diff --git a/multimedia/qaudiorecorder.go b/multimedia/qaudiorecorder.go new file mode 100755 index 00000000..2d695821 --- /dev/null +++ b/multimedia/qaudiorecorder.go @@ -0,0 +1,122 @@ +package multimedia + +//#include "qaudiorecorder.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QAudioRecorder struct { + QMediaRecorder +} + +type QAudioRecorderITF interface { + QMediaRecorderITF + QAudioRecorderPTR() *QAudioRecorder +} + +func PointerFromQAudioRecorder(ptr QAudioRecorderITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAudioRecorderPTR().Pointer() + } + return nil +} + +func QAudioRecorderFromPointer(ptr unsafe.Pointer) *QAudioRecorder { + var n = new(QAudioRecorder) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAudioRecorder_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAudioRecorder) QAudioRecorderPTR() *QAudioRecorder { + return ptr +} + +func NewQAudioRecorder(parent core.QObjectITF) *QAudioRecorder { + return QAudioRecorderFromPointer(unsafe.Pointer(C.QAudioRecorder_NewQAudioRecorder(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QAudioRecorder) AudioInput() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAudioRecorder_AudioInput(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAudioRecorder) ConnectAudioInputChanged(f func(name string)) { + if ptr.Pointer() != nil { + C.QAudioRecorder_ConnectAudioInputChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "audioInputChanged", f) + } +} + +func (ptr *QAudioRecorder) DisconnectAudioInputChanged() { + if ptr.Pointer() != nil { + C.QAudioRecorder_DisconnectAudioInputChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "audioInputChanged") + } +} + +//export callbackQAudioRecorderAudioInputChanged +func callbackQAudioRecorderAudioInputChanged(ptrName *C.char, name *C.char) { + qt.GetSignal(C.GoString(ptrName), "audioInputChanged").(func(string))(C.GoString(name)) +} + +func (ptr *QAudioRecorder) AudioInputDescription(name string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAudioRecorder_AudioInputDescription(C.QtObjectPtr(ptr.Pointer()), C.CString(name))) + } + return "" +} + +func (ptr *QAudioRecorder) AudioInputs() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QAudioRecorder_AudioInputs(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QAudioRecorder) ConnectAvailableAudioInputsChanged(f func()) { + if ptr.Pointer() != nil { + C.QAudioRecorder_ConnectAvailableAudioInputsChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "availableAudioInputsChanged", f) + } +} + +func (ptr *QAudioRecorder) DisconnectAvailableAudioInputsChanged() { + if ptr.Pointer() != nil { + C.QAudioRecorder_DisconnectAvailableAudioInputsChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "availableAudioInputsChanged") + } +} + +//export callbackQAudioRecorderAvailableAudioInputsChanged +func callbackQAudioRecorderAvailableAudioInputsChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "availableAudioInputsChanged").(func())() +} + +func (ptr *QAudioRecorder) DefaultAudioInput() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAudioRecorder_DefaultAudioInput(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAudioRecorder) SetAudioInput(name string) { + if ptr.Pointer() != nil { + C.QAudioRecorder_SetAudioInput(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func (ptr *QAudioRecorder) DestroyQAudioRecorder() { + if ptr.Pointer() != nil { + C.QAudioRecorder_DestroyQAudioRecorder(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qaudiorecorder.h b/multimedia/qaudiorecorder.h new file mode 100755 index 00000000..ca16cef4 --- /dev/null +++ b/multimedia/qaudiorecorder.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAudioRecorder_NewQAudioRecorder(QtObjectPtr parent); +char* QAudioRecorder_AudioInput(QtObjectPtr ptr); +void QAudioRecorder_ConnectAudioInputChanged(QtObjectPtr ptr); +void QAudioRecorder_DisconnectAudioInputChanged(QtObjectPtr ptr); +char* QAudioRecorder_AudioInputDescription(QtObjectPtr ptr, char* name); +char* QAudioRecorder_AudioInputs(QtObjectPtr ptr); +void QAudioRecorder_ConnectAvailableAudioInputsChanged(QtObjectPtr ptr); +void QAudioRecorder_DisconnectAvailableAudioInputsChanged(QtObjectPtr ptr); +char* QAudioRecorder_DefaultAudioInput(QtObjectPtr ptr); +void QAudioRecorder_SetAudioInput(QtObjectPtr ptr, char* name); +void QAudioRecorder_DestroyQAudioRecorder(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qcamera.cpp b/multimedia/qcamera.cpp new file mode 100755 index 00000000..25c3af57 --- /dev/null +++ b/multimedia/qcamera.cpp @@ -0,0 +1,184 @@ +#include "qcamera.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCamera: public QCamera { +public: +void Signal_CaptureModeChanged(QCamera::CaptureModes mode){callbackQCameraCaptureModeChanged(this->objectName().toUtf8().data(), mode);}; +void Signal_LockFailed(){callbackQCameraLockFailed(this->objectName().toUtf8().data());}; +void Signal_LockStatusChanged(QCamera::LockStatus status, QCamera::LockChangeReason reason){callbackQCameraLockStatusChanged(this->objectName().toUtf8().data(), status, reason);}; +void Signal_Locked(){callbackQCameraLocked(this->objectName().toUtf8().data());}; +void Signal_StateChanged(QCamera::State state){callbackQCameraStateChanged(this->objectName().toUtf8().data(), state);}; +void Signal_StatusChanged(QCamera::Status status){callbackQCameraStatusChanged(this->objectName().toUtf8().data(), status);}; +}; + +int QCamera_CaptureMode(QtObjectPtr ptr){ + return static_cast(ptr)->captureMode(); +} + +void QCamera_SearchAndLock2(QtObjectPtr ptr, int locks){ + QMetaObject::invokeMethod(static_cast(ptr), "searchAndLock", Q_ARG(QCamera::LockType, static_cast(locks))); +} + +void QCamera_SetCaptureMode(QtObjectPtr ptr, int mode){ + QMetaObject::invokeMethod(static_cast(ptr), "setCaptureMode", Q_ARG(QCamera::CaptureMode, static_cast(mode))); +} + +int QCamera_Status(QtObjectPtr ptr){ + return static_cast(ptr)->status(); +} + +QtObjectPtr QCamera_NewQCamera4(int position, QtObjectPtr parent){ + return new QCamera(static_cast(position), static_cast(parent)); +} + +QtObjectPtr QCamera_NewQCamera(QtObjectPtr parent){ + return new QCamera(static_cast(parent)); +} + +QtObjectPtr QCamera_NewQCamera2(QtObjectPtr deviceName, QtObjectPtr parent){ + return new QCamera(*static_cast(deviceName), static_cast(parent)); +} + +QtObjectPtr QCamera_NewQCamera3(QtObjectPtr cameraInfo, QtObjectPtr parent){ + return new QCamera(*static_cast(cameraInfo), static_cast(parent)); +} + +void QCamera_ConnectCaptureModeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCamera::captureModeChanged), static_cast(ptr), static_cast(&MyQCamera::Signal_CaptureModeChanged));; +} + +void QCamera_DisconnectCaptureModeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCamera::captureModeChanged), static_cast(ptr), static_cast(&MyQCamera::Signal_CaptureModeChanged));; +} + +int QCamera_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +char* QCamera_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +QtObjectPtr QCamera_Exposure(QtObjectPtr ptr){ + return static_cast(ptr)->exposure(); +} + +QtObjectPtr QCamera_Focus(QtObjectPtr ptr){ + return static_cast(ptr)->focus(); +} + +QtObjectPtr QCamera_ImageProcessing(QtObjectPtr ptr){ + return static_cast(ptr)->imageProcessing(); +} + +int QCamera_IsCaptureModeSupported(QtObjectPtr ptr, int mode){ + return static_cast(ptr)->isCaptureModeSupported(static_cast(mode)); +} + +void QCamera_Load(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "load"); +} + +void QCamera_ConnectLockFailed(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCamera::lockFailed), static_cast(ptr), static_cast(&MyQCamera::Signal_LockFailed));; +} + +void QCamera_DisconnectLockFailed(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCamera::lockFailed), static_cast(ptr), static_cast(&MyQCamera::Signal_LockFailed));; +} + +int QCamera_LockStatus(QtObjectPtr ptr){ + return static_cast(ptr)->lockStatus(); +} + +int QCamera_LockStatus2(QtObjectPtr ptr, int lockType){ + return static_cast(ptr)->lockStatus(static_cast(lockType)); +} + +void QCamera_ConnectLockStatusChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCamera::lockStatusChanged), static_cast(ptr), static_cast(&MyQCamera::Signal_LockStatusChanged));; +} + +void QCamera_DisconnectLockStatusChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCamera::lockStatusChanged), static_cast(ptr), static_cast(&MyQCamera::Signal_LockStatusChanged));; +} + +void QCamera_ConnectLocked(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCamera::locked), static_cast(ptr), static_cast(&MyQCamera::Signal_Locked));; +} + +void QCamera_DisconnectLocked(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCamera::locked), static_cast(ptr), static_cast(&MyQCamera::Signal_Locked));; +} + +int QCamera_RequestedLocks(QtObjectPtr ptr){ + return static_cast(ptr)->requestedLocks(); +} + +void QCamera_SearchAndLock(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "searchAndLock"); +} + +void QCamera_SetViewfinder3(QtObjectPtr ptr, QtObjectPtr surface){ + static_cast(ptr)->setViewfinder(static_cast(surface)); +} + +void QCamera_SetViewfinderSettings(QtObjectPtr ptr, QtObjectPtr settings){ + static_cast(ptr)->setViewfinderSettings(*static_cast(settings)); +} + +void QCamera_Start(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "start"); +} + +void QCamera_ConnectStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCamera::stateChanged), static_cast(ptr), static_cast(&MyQCamera::Signal_StateChanged));; +} + +void QCamera_DisconnectStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCamera::stateChanged), static_cast(ptr), static_cast(&MyQCamera::Signal_StateChanged));; +} + +void QCamera_ConnectStatusChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCamera::statusChanged), static_cast(ptr), static_cast(&MyQCamera::Signal_StatusChanged));; +} + +void QCamera_DisconnectStatusChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCamera::statusChanged), static_cast(ptr), static_cast(&MyQCamera::Signal_StatusChanged));; +} + +void QCamera_Stop(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "stop"); +} + +int QCamera_SupportedLocks(QtObjectPtr ptr){ + return static_cast(ptr)->supportedLocks(); +} + +void QCamera_Unload(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "unload"); +} + +void QCamera_Unlock(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "unlock"); +} + +void QCamera_Unlock2(QtObjectPtr ptr, int locks){ + QMetaObject::invokeMethod(static_cast(ptr), "unlock", Q_ARG(QCamera::LockType, static_cast(locks))); +} + +void QCamera_DestroyQCamera(QtObjectPtr ptr){ + static_cast(ptr)->~QCamera(); +} + diff --git a/multimedia/qcamera.go b/multimedia/qcamera.go new file mode 100755 index 00000000..a05697a0 --- /dev/null +++ b/multimedia/qcamera.go @@ -0,0 +1,408 @@ +package multimedia + +//#include "qcamera.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QCamera struct { + QMediaObject +} + +type QCameraITF interface { + QMediaObjectITF + QCameraPTR() *QCamera +} + +func PointerFromQCamera(ptr QCameraITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCameraPTR().Pointer() + } + return nil +} + +func QCameraFromPointer(ptr unsafe.Pointer) *QCamera { + var n = new(QCamera) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCamera_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCamera) QCameraPTR() *QCamera { + return ptr +} + +//QCamera::CaptureMode +type QCamera__CaptureMode int + +var ( + QCamera__CaptureViewfinder = QCamera__CaptureMode(0) + QCamera__CaptureStillImage = QCamera__CaptureMode(0x01) + QCamera__CaptureVideo = QCamera__CaptureMode(0x02) +) + +//QCamera::Error +type QCamera__Error int + +var ( + QCamera__NoError = QCamera__Error(0) + QCamera__CameraError = QCamera__Error(1) + QCamera__InvalidRequestError = QCamera__Error(2) + QCamera__ServiceMissingError = QCamera__Error(3) + QCamera__NotSupportedFeatureError = QCamera__Error(4) +) + +//QCamera::LockChangeReason +type QCamera__LockChangeReason int + +var ( + QCamera__UserRequest = QCamera__LockChangeReason(0) + QCamera__LockAcquired = QCamera__LockChangeReason(1) + QCamera__LockFailed = QCamera__LockChangeReason(2) + QCamera__LockLost = QCamera__LockChangeReason(3) + QCamera__LockTemporaryLost = QCamera__LockChangeReason(4) +) + +//QCamera::LockStatus +type QCamera__LockStatus int + +var ( + QCamera__Unlocked = QCamera__LockStatus(0) + QCamera__Searching = QCamera__LockStatus(1) + QCamera__Locked = QCamera__LockStatus(2) +) + +//QCamera::LockType +type QCamera__LockType int + +var ( + QCamera__NoLock = QCamera__LockType(0) + QCamera__LockExposure = QCamera__LockType(0x01) + QCamera__LockWhiteBalance = QCamera__LockType(0x02) + QCamera__LockFocus = QCamera__LockType(0x04) +) + +//QCamera::Position +type QCamera__Position int + +var ( + QCamera__UnspecifiedPosition = QCamera__Position(0) + QCamera__BackFace = QCamera__Position(1) + QCamera__FrontFace = QCamera__Position(2) +) + +//QCamera::State +type QCamera__State int + +var ( + QCamera__UnloadedState = QCamera__State(0) + QCamera__LoadedState = QCamera__State(1) + QCamera__ActiveState = QCamera__State(2) +) + +//QCamera::Status +type QCamera__Status int + +var ( + QCamera__UnavailableStatus = QCamera__Status(0) + QCamera__UnloadedStatus = QCamera__Status(1) + QCamera__LoadingStatus = QCamera__Status(2) + QCamera__UnloadingStatus = QCamera__Status(3) + QCamera__LoadedStatus = QCamera__Status(4) + QCamera__StandbyStatus = QCamera__Status(5) + QCamera__StartingStatus = QCamera__Status(6) + QCamera__StoppingStatus = QCamera__Status(7) + QCamera__ActiveStatus = QCamera__Status(8) +) + +func (ptr *QCamera) CaptureMode() QCamera__CaptureMode { + if ptr.Pointer() != nil { + return QCamera__CaptureMode(C.QCamera_CaptureMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCamera) SearchAndLock2(locks QCamera__LockType) { + if ptr.Pointer() != nil { + C.QCamera_SearchAndLock2(C.QtObjectPtr(ptr.Pointer()), C.int(locks)) + } +} + +func (ptr *QCamera) SetCaptureMode(mode QCamera__CaptureMode) { + if ptr.Pointer() != nil { + C.QCamera_SetCaptureMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QCamera) Status() QCamera__Status { + if ptr.Pointer() != nil { + return QCamera__Status(C.QCamera_Status(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQCamera4(position QCamera__Position, parent core.QObjectITF) *QCamera { + return QCameraFromPointer(unsafe.Pointer(C.QCamera_NewQCamera4(C.int(position), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQCamera(parent core.QObjectITF) *QCamera { + return QCameraFromPointer(unsafe.Pointer(C.QCamera_NewQCamera(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQCamera2(deviceName core.QByteArrayITF, parent core.QObjectITF) *QCamera { + return QCameraFromPointer(unsafe.Pointer(C.QCamera_NewQCamera2(C.QtObjectPtr(core.PointerFromQByteArray(deviceName)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQCamera3(cameraInfo QCameraInfoITF, parent core.QObjectITF) *QCamera { + return QCameraFromPointer(unsafe.Pointer(C.QCamera_NewQCamera3(C.QtObjectPtr(PointerFromQCameraInfo(cameraInfo)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QCamera) ConnectCaptureModeChanged(f func(mode QCamera__CaptureMode)) { + if ptr.Pointer() != nil { + C.QCamera_ConnectCaptureModeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "captureModeChanged", f) + } +} + +func (ptr *QCamera) DisconnectCaptureModeChanged() { + if ptr.Pointer() != nil { + C.QCamera_DisconnectCaptureModeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "captureModeChanged") + } +} + +//export callbackQCameraCaptureModeChanged +func callbackQCameraCaptureModeChanged(ptrName *C.char, mode C.int) { + qt.GetSignal(C.GoString(ptrName), "captureModeChanged").(func(QCamera__CaptureMode))(QCamera__CaptureMode(mode)) +} + +func (ptr *QCamera) Error() QCamera__Error { + if ptr.Pointer() != nil { + return QCamera__Error(C.QCamera_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCamera) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QCamera_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QCamera) Exposure() *QCameraExposure { + if ptr.Pointer() != nil { + return QCameraExposureFromPointer(unsafe.Pointer(C.QCamera_Exposure(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QCamera) Focus() *QCameraFocus { + if ptr.Pointer() != nil { + return QCameraFocusFromPointer(unsafe.Pointer(C.QCamera_Focus(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QCamera) ImageProcessing() *QCameraImageProcessing { + if ptr.Pointer() != nil { + return QCameraImageProcessingFromPointer(unsafe.Pointer(C.QCamera_ImageProcessing(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QCamera) IsCaptureModeSupported(mode QCamera__CaptureMode) bool { + if ptr.Pointer() != nil { + return C.QCamera_IsCaptureModeSupported(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) != 0 + } + return false +} + +func (ptr *QCamera) Load() { + if ptr.Pointer() != nil { + C.QCamera_Load(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QCamera) ConnectLockFailed(f func()) { + if ptr.Pointer() != nil { + C.QCamera_ConnectLockFailed(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "lockFailed", f) + } +} + +func (ptr *QCamera) DisconnectLockFailed() { + if ptr.Pointer() != nil { + C.QCamera_DisconnectLockFailed(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "lockFailed") + } +} + +//export callbackQCameraLockFailed +func callbackQCameraLockFailed(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "lockFailed").(func())() +} + +func (ptr *QCamera) LockStatus() QCamera__LockStatus { + if ptr.Pointer() != nil { + return QCamera__LockStatus(C.QCamera_LockStatus(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCamera) LockStatus2(lockType QCamera__LockType) QCamera__LockStatus { + if ptr.Pointer() != nil { + return QCamera__LockStatus(C.QCamera_LockStatus2(C.QtObjectPtr(ptr.Pointer()), C.int(lockType))) + } + return 0 +} + +func (ptr *QCamera) ConnectLockStatusChanged(f func(status QCamera__LockStatus, reason QCamera__LockChangeReason)) { + if ptr.Pointer() != nil { + C.QCamera_ConnectLockStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "lockStatusChanged", f) + } +} + +func (ptr *QCamera) DisconnectLockStatusChanged() { + if ptr.Pointer() != nil { + C.QCamera_DisconnectLockStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "lockStatusChanged") + } +} + +//export callbackQCameraLockStatusChanged +func callbackQCameraLockStatusChanged(ptrName *C.char, status C.int, reason C.int) { + qt.GetSignal(C.GoString(ptrName), "lockStatusChanged").(func(QCamera__LockStatus, QCamera__LockChangeReason))(QCamera__LockStatus(status), QCamera__LockChangeReason(reason)) +} + +func (ptr *QCamera) ConnectLocked(f func()) { + if ptr.Pointer() != nil { + C.QCamera_ConnectLocked(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "locked", f) + } +} + +func (ptr *QCamera) DisconnectLocked() { + if ptr.Pointer() != nil { + C.QCamera_DisconnectLocked(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "locked") + } +} + +//export callbackQCameraLocked +func callbackQCameraLocked(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "locked").(func())() +} + +func (ptr *QCamera) RequestedLocks() QCamera__LockType { + if ptr.Pointer() != nil { + return QCamera__LockType(C.QCamera_RequestedLocks(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCamera) SearchAndLock() { + if ptr.Pointer() != nil { + C.QCamera_SearchAndLock(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QCamera) SetViewfinder3(surface QAbstractVideoSurfaceITF) { + if ptr.Pointer() != nil { + C.QCamera_SetViewfinder3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractVideoSurface(surface))) + } +} + +func (ptr *QCamera) SetViewfinderSettings(settings QCameraViewfinderSettingsITF) { + if ptr.Pointer() != nil { + C.QCamera_SetViewfinderSettings(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQCameraViewfinderSettings(settings))) + } +} + +func (ptr *QCamera) Start() { + if ptr.Pointer() != nil { + C.QCamera_Start(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QCamera) ConnectStateChanged(f func(state QCamera__State)) { + if ptr.Pointer() != nil { + C.QCamera_ConnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stateChanged", f) + } +} + +func (ptr *QCamera) DisconnectStateChanged() { + if ptr.Pointer() != nil { + C.QCamera_DisconnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stateChanged") + } +} + +//export callbackQCameraStateChanged +func callbackQCameraStateChanged(ptrName *C.char, state C.int) { + qt.GetSignal(C.GoString(ptrName), "stateChanged").(func(QCamera__State))(QCamera__State(state)) +} + +func (ptr *QCamera) ConnectStatusChanged(f func(status QCamera__Status)) { + if ptr.Pointer() != nil { + C.QCamera_ConnectStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "statusChanged", f) + } +} + +func (ptr *QCamera) DisconnectStatusChanged() { + if ptr.Pointer() != nil { + C.QCamera_DisconnectStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "statusChanged") + } +} + +//export callbackQCameraStatusChanged +func callbackQCameraStatusChanged(ptrName *C.char, status C.int) { + qt.GetSignal(C.GoString(ptrName), "statusChanged").(func(QCamera__Status))(QCamera__Status(status)) +} + +func (ptr *QCamera) Stop() { + if ptr.Pointer() != nil { + C.QCamera_Stop(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QCamera) SupportedLocks() QCamera__LockType { + if ptr.Pointer() != nil { + return QCamera__LockType(C.QCamera_SupportedLocks(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCamera) Unload() { + if ptr.Pointer() != nil { + C.QCamera_Unload(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QCamera) Unlock() { + if ptr.Pointer() != nil { + C.QCamera_Unlock(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QCamera) Unlock2(locks QCamera__LockType) { + if ptr.Pointer() != nil { + C.QCamera_Unlock2(C.QtObjectPtr(ptr.Pointer()), C.int(locks)) + } +} + +func (ptr *QCamera) DestroyQCamera() { + if ptr.Pointer() != nil { + C.QCamera_DestroyQCamera(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qcamera.h b/multimedia/qcamera.h new file mode 100755 index 00000000..f3257f14 --- /dev/null +++ b/multimedia/qcamera.h @@ -0,0 +1,49 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QCamera_CaptureMode(QtObjectPtr ptr); +void QCamera_SearchAndLock2(QtObjectPtr ptr, int locks); +void QCamera_SetCaptureMode(QtObjectPtr ptr, int mode); +int QCamera_Status(QtObjectPtr ptr); +QtObjectPtr QCamera_NewQCamera4(int position, QtObjectPtr parent); +QtObjectPtr QCamera_NewQCamera(QtObjectPtr parent); +QtObjectPtr QCamera_NewQCamera2(QtObjectPtr deviceName, QtObjectPtr parent); +QtObjectPtr QCamera_NewQCamera3(QtObjectPtr cameraInfo, QtObjectPtr parent); +void QCamera_ConnectCaptureModeChanged(QtObjectPtr ptr); +void QCamera_DisconnectCaptureModeChanged(QtObjectPtr ptr); +int QCamera_Error(QtObjectPtr ptr); +char* QCamera_ErrorString(QtObjectPtr ptr); +QtObjectPtr QCamera_Exposure(QtObjectPtr ptr); +QtObjectPtr QCamera_Focus(QtObjectPtr ptr); +QtObjectPtr QCamera_ImageProcessing(QtObjectPtr ptr); +int QCamera_IsCaptureModeSupported(QtObjectPtr ptr, int mode); +void QCamera_Load(QtObjectPtr ptr); +void QCamera_ConnectLockFailed(QtObjectPtr ptr); +void QCamera_DisconnectLockFailed(QtObjectPtr ptr); +int QCamera_LockStatus(QtObjectPtr ptr); +int QCamera_LockStatus2(QtObjectPtr ptr, int lockType); +void QCamera_ConnectLockStatusChanged(QtObjectPtr ptr); +void QCamera_DisconnectLockStatusChanged(QtObjectPtr ptr); +void QCamera_ConnectLocked(QtObjectPtr ptr); +void QCamera_DisconnectLocked(QtObjectPtr ptr); +int QCamera_RequestedLocks(QtObjectPtr ptr); +void QCamera_SearchAndLock(QtObjectPtr ptr); +void QCamera_SetViewfinder3(QtObjectPtr ptr, QtObjectPtr surface); +void QCamera_SetViewfinderSettings(QtObjectPtr ptr, QtObjectPtr settings); +void QCamera_Start(QtObjectPtr ptr); +void QCamera_ConnectStateChanged(QtObjectPtr ptr); +void QCamera_DisconnectStateChanged(QtObjectPtr ptr); +void QCamera_ConnectStatusChanged(QtObjectPtr ptr); +void QCamera_DisconnectStatusChanged(QtObjectPtr ptr); +void QCamera_Stop(QtObjectPtr ptr); +int QCamera_SupportedLocks(QtObjectPtr ptr); +void QCamera_Unload(QtObjectPtr ptr); +void QCamera_Unlock(QtObjectPtr ptr); +void QCamera_Unlock2(QtObjectPtr ptr, int locks); +void QCamera_DestroyQCamera(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qcameracapturebufferformatcontrol.cpp b/multimedia/qcameracapturebufferformatcontrol.cpp new file mode 100755 index 00000000..4783edc4 --- /dev/null +++ b/multimedia/qcameracapturebufferformatcontrol.cpp @@ -0,0 +1,36 @@ +#include "qcameracapturebufferformatcontrol.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCameraCaptureBufferFormatControl: public QCameraCaptureBufferFormatControl { +public: +void Signal_BufferFormatChanged(QVideoFrame::PixelFormat format){callbackQCameraCaptureBufferFormatControlBufferFormatChanged(this->objectName().toUtf8().data(), format);}; +}; + +int QCameraCaptureBufferFormatControl_BufferFormat(QtObjectPtr ptr){ + return static_cast(ptr)->bufferFormat(); +} + +void QCameraCaptureBufferFormatControl_ConnectBufferFormatChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraCaptureBufferFormatControl::bufferFormatChanged), static_cast(ptr), static_cast(&MyQCameraCaptureBufferFormatControl::Signal_BufferFormatChanged));; +} + +void QCameraCaptureBufferFormatControl_DisconnectBufferFormatChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraCaptureBufferFormatControl::bufferFormatChanged), static_cast(ptr), static_cast(&MyQCameraCaptureBufferFormatControl::Signal_BufferFormatChanged));; +} + +void QCameraCaptureBufferFormatControl_SetBufferFormat(QtObjectPtr ptr, int format){ + static_cast(ptr)->setBufferFormat(static_cast(format)); +} + +void QCameraCaptureBufferFormatControl_DestroyQCameraCaptureBufferFormatControl(QtObjectPtr ptr){ + static_cast(ptr)->~QCameraCaptureBufferFormatControl(); +} + diff --git a/multimedia/qcameracapturebufferformatcontrol.go b/multimedia/qcameracapturebufferformatcontrol.go new file mode 100755 index 00000000..5e823eee --- /dev/null +++ b/multimedia/qcameracapturebufferformatcontrol.go @@ -0,0 +1,76 @@ +package multimedia + +//#include "qcameracapturebufferformatcontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QCameraCaptureBufferFormatControl struct { + QMediaControl +} + +type QCameraCaptureBufferFormatControlITF interface { + QMediaControlITF + QCameraCaptureBufferFormatControlPTR() *QCameraCaptureBufferFormatControl +} + +func PointerFromQCameraCaptureBufferFormatControl(ptr QCameraCaptureBufferFormatControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCameraCaptureBufferFormatControlPTR().Pointer() + } + return nil +} + +func QCameraCaptureBufferFormatControlFromPointer(ptr unsafe.Pointer) *QCameraCaptureBufferFormatControl { + var n = new(QCameraCaptureBufferFormatControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCameraCaptureBufferFormatControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCameraCaptureBufferFormatControl) QCameraCaptureBufferFormatControlPTR() *QCameraCaptureBufferFormatControl { + return ptr +} + +func (ptr *QCameraCaptureBufferFormatControl) BufferFormat() QVideoFrame__PixelFormat { + if ptr.Pointer() != nil { + return QVideoFrame__PixelFormat(C.QCameraCaptureBufferFormatControl_BufferFormat(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCameraCaptureBufferFormatControl) ConnectBufferFormatChanged(f func(format QVideoFrame__PixelFormat)) { + if ptr.Pointer() != nil { + C.QCameraCaptureBufferFormatControl_ConnectBufferFormatChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "bufferFormatChanged", f) + } +} + +func (ptr *QCameraCaptureBufferFormatControl) DisconnectBufferFormatChanged() { + if ptr.Pointer() != nil { + C.QCameraCaptureBufferFormatControl_DisconnectBufferFormatChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "bufferFormatChanged") + } +} + +//export callbackQCameraCaptureBufferFormatControlBufferFormatChanged +func callbackQCameraCaptureBufferFormatControlBufferFormatChanged(ptrName *C.char, format C.int) { + qt.GetSignal(C.GoString(ptrName), "bufferFormatChanged").(func(QVideoFrame__PixelFormat))(QVideoFrame__PixelFormat(format)) +} + +func (ptr *QCameraCaptureBufferFormatControl) SetBufferFormat(format QVideoFrame__PixelFormat) { + if ptr.Pointer() != nil { + C.QCameraCaptureBufferFormatControl_SetBufferFormat(C.QtObjectPtr(ptr.Pointer()), C.int(format)) + } +} + +func (ptr *QCameraCaptureBufferFormatControl) DestroyQCameraCaptureBufferFormatControl() { + if ptr.Pointer() != nil { + C.QCameraCaptureBufferFormatControl_DestroyQCameraCaptureBufferFormatControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qcameracapturebufferformatcontrol.h b/multimedia/qcameracapturebufferformatcontrol.h new file mode 100755 index 00000000..92e65bfd --- /dev/null +++ b/multimedia/qcameracapturebufferformatcontrol.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QCameraCaptureBufferFormatControl_BufferFormat(QtObjectPtr ptr); +void QCameraCaptureBufferFormatControl_ConnectBufferFormatChanged(QtObjectPtr ptr); +void QCameraCaptureBufferFormatControl_DisconnectBufferFormatChanged(QtObjectPtr ptr); +void QCameraCaptureBufferFormatControl_SetBufferFormat(QtObjectPtr ptr, int format); +void QCameraCaptureBufferFormatControl_DestroyQCameraCaptureBufferFormatControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qcameracapturedestinationcontrol.cpp b/multimedia/qcameracapturedestinationcontrol.cpp new file mode 100755 index 00000000..bedbe4f4 --- /dev/null +++ b/multimedia/qcameracapturedestinationcontrol.cpp @@ -0,0 +1,40 @@ +#include "qcameracapturedestinationcontrol.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCameraCaptureDestinationControl: public QCameraCaptureDestinationControl { +public: +void Signal_CaptureDestinationChanged(QCameraImageCapture::CaptureDestinations destination){callbackQCameraCaptureDestinationControlCaptureDestinationChanged(this->objectName().toUtf8().data(), destination);}; +}; + +int QCameraCaptureDestinationControl_CaptureDestination(QtObjectPtr ptr){ + return static_cast(ptr)->captureDestination(); +} + +void QCameraCaptureDestinationControl_ConnectCaptureDestinationChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraCaptureDestinationControl::captureDestinationChanged), static_cast(ptr), static_cast(&MyQCameraCaptureDestinationControl::Signal_CaptureDestinationChanged));; +} + +void QCameraCaptureDestinationControl_DisconnectCaptureDestinationChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraCaptureDestinationControl::captureDestinationChanged), static_cast(ptr), static_cast(&MyQCameraCaptureDestinationControl::Signal_CaptureDestinationChanged));; +} + +int QCameraCaptureDestinationControl_IsCaptureDestinationSupported(QtObjectPtr ptr, int destination){ + return static_cast(ptr)->isCaptureDestinationSupported(static_cast(destination)); +} + +void QCameraCaptureDestinationControl_SetCaptureDestination(QtObjectPtr ptr, int destination){ + static_cast(ptr)->setCaptureDestination(static_cast(destination)); +} + +void QCameraCaptureDestinationControl_DestroyQCameraCaptureDestinationControl(QtObjectPtr ptr){ + static_cast(ptr)->~QCameraCaptureDestinationControl(); +} + diff --git a/multimedia/qcameracapturedestinationcontrol.go b/multimedia/qcameracapturedestinationcontrol.go new file mode 100755 index 00000000..e31d67c0 --- /dev/null +++ b/multimedia/qcameracapturedestinationcontrol.go @@ -0,0 +1,83 @@ +package multimedia + +//#include "qcameracapturedestinationcontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QCameraCaptureDestinationControl struct { + QMediaControl +} + +type QCameraCaptureDestinationControlITF interface { + QMediaControlITF + QCameraCaptureDestinationControlPTR() *QCameraCaptureDestinationControl +} + +func PointerFromQCameraCaptureDestinationControl(ptr QCameraCaptureDestinationControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCameraCaptureDestinationControlPTR().Pointer() + } + return nil +} + +func QCameraCaptureDestinationControlFromPointer(ptr unsafe.Pointer) *QCameraCaptureDestinationControl { + var n = new(QCameraCaptureDestinationControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCameraCaptureDestinationControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCameraCaptureDestinationControl) QCameraCaptureDestinationControlPTR() *QCameraCaptureDestinationControl { + return ptr +} + +func (ptr *QCameraCaptureDestinationControl) CaptureDestination() QCameraImageCapture__CaptureDestination { + if ptr.Pointer() != nil { + return QCameraImageCapture__CaptureDestination(C.QCameraCaptureDestinationControl_CaptureDestination(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCameraCaptureDestinationControl) ConnectCaptureDestinationChanged(f func(destination QCameraImageCapture__CaptureDestination)) { + if ptr.Pointer() != nil { + C.QCameraCaptureDestinationControl_ConnectCaptureDestinationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "captureDestinationChanged", f) + } +} + +func (ptr *QCameraCaptureDestinationControl) DisconnectCaptureDestinationChanged() { + if ptr.Pointer() != nil { + C.QCameraCaptureDestinationControl_DisconnectCaptureDestinationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "captureDestinationChanged") + } +} + +//export callbackQCameraCaptureDestinationControlCaptureDestinationChanged +func callbackQCameraCaptureDestinationControlCaptureDestinationChanged(ptrName *C.char, destination C.int) { + qt.GetSignal(C.GoString(ptrName), "captureDestinationChanged").(func(QCameraImageCapture__CaptureDestination))(QCameraImageCapture__CaptureDestination(destination)) +} + +func (ptr *QCameraCaptureDestinationControl) IsCaptureDestinationSupported(destination QCameraImageCapture__CaptureDestination) bool { + if ptr.Pointer() != nil { + return C.QCameraCaptureDestinationControl_IsCaptureDestinationSupported(C.QtObjectPtr(ptr.Pointer()), C.int(destination)) != 0 + } + return false +} + +func (ptr *QCameraCaptureDestinationControl) SetCaptureDestination(destination QCameraImageCapture__CaptureDestination) { + if ptr.Pointer() != nil { + C.QCameraCaptureDestinationControl_SetCaptureDestination(C.QtObjectPtr(ptr.Pointer()), C.int(destination)) + } +} + +func (ptr *QCameraCaptureDestinationControl) DestroyQCameraCaptureDestinationControl() { + if ptr.Pointer() != nil { + C.QCameraCaptureDestinationControl_DestroyQCameraCaptureDestinationControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qcameracapturedestinationcontrol.h b/multimedia/qcameracapturedestinationcontrol.h new file mode 100755 index 00000000..6a118813 --- /dev/null +++ b/multimedia/qcameracapturedestinationcontrol.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QCameraCaptureDestinationControl_CaptureDestination(QtObjectPtr ptr); +void QCameraCaptureDestinationControl_ConnectCaptureDestinationChanged(QtObjectPtr ptr); +void QCameraCaptureDestinationControl_DisconnectCaptureDestinationChanged(QtObjectPtr ptr); +int QCameraCaptureDestinationControl_IsCaptureDestinationSupported(QtObjectPtr ptr, int destination); +void QCameraCaptureDestinationControl_SetCaptureDestination(QtObjectPtr ptr, int destination); +void QCameraCaptureDestinationControl_DestroyQCameraCaptureDestinationControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qcameracontrol.cpp b/multimedia/qcameracontrol.cpp new file mode 100755 index 00000000..03a786a5 --- /dev/null +++ b/multimedia/qcameracontrol.cpp @@ -0,0 +1,78 @@ +#include "qcameracontrol.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCameraControl: public QCameraControl { +public: +void Signal_CaptureModeChanged(QCamera::CaptureModes mode){callbackQCameraControlCaptureModeChanged(this->objectName().toUtf8().data(), mode);}; +void Signal_Error(int error, const QString & errorString){callbackQCameraControlError(this->objectName().toUtf8().data(), error, errorString.toUtf8().data());}; +void Signal_StateChanged(QCamera::State state){callbackQCameraControlStateChanged(this->objectName().toUtf8().data(), state);}; +void Signal_StatusChanged(QCamera::Status status){callbackQCameraControlStatusChanged(this->objectName().toUtf8().data(), status);}; +}; + +int QCameraControl_CanChangeProperty(QtObjectPtr ptr, int changeType, int status){ + return static_cast(ptr)->canChangeProperty(static_cast(changeType), static_cast(status)); +} + +int QCameraControl_CaptureMode(QtObjectPtr ptr){ + return static_cast(ptr)->captureMode(); +} + +void QCameraControl_ConnectCaptureModeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraControl::captureModeChanged), static_cast(ptr), static_cast(&MyQCameraControl::Signal_CaptureModeChanged));; +} + +void QCameraControl_DisconnectCaptureModeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraControl::captureModeChanged), static_cast(ptr), static_cast(&MyQCameraControl::Signal_CaptureModeChanged));; +} + +void QCameraControl_ConnectError(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraControl::error), static_cast(ptr), static_cast(&MyQCameraControl::Signal_Error));; +} + +void QCameraControl_DisconnectError(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraControl::error), static_cast(ptr), static_cast(&MyQCameraControl::Signal_Error));; +} + +int QCameraControl_IsCaptureModeSupported(QtObjectPtr ptr, int mode){ + return static_cast(ptr)->isCaptureModeSupported(static_cast(mode)); +} + +void QCameraControl_SetCaptureMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setCaptureMode(static_cast(mode)); +} + +void QCameraControl_SetState(QtObjectPtr ptr, int state){ + static_cast(ptr)->setState(static_cast(state)); +} + +void QCameraControl_ConnectStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraControl::stateChanged), static_cast(ptr), static_cast(&MyQCameraControl::Signal_StateChanged));; +} + +void QCameraControl_DisconnectStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraControl::stateChanged), static_cast(ptr), static_cast(&MyQCameraControl::Signal_StateChanged));; +} + +int QCameraControl_Status(QtObjectPtr ptr){ + return static_cast(ptr)->status(); +} + +void QCameraControl_ConnectStatusChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraControl::statusChanged), static_cast(ptr), static_cast(&MyQCameraControl::Signal_StatusChanged));; +} + +void QCameraControl_DisconnectStatusChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraControl::statusChanged), static_cast(ptr), static_cast(&MyQCameraControl::Signal_StatusChanged));; +} + +void QCameraControl_DestroyQCameraControl(QtObjectPtr ptr){ + static_cast(ptr)->~QCameraControl(); +} + diff --git a/multimedia/qcameracontrol.go b/multimedia/qcameracontrol.go new file mode 100755 index 00000000..94527344 --- /dev/null +++ b/multimedia/qcameracontrol.go @@ -0,0 +1,171 @@ +package multimedia + +//#include "qcameracontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QCameraControl struct { + QMediaControl +} + +type QCameraControlITF interface { + QMediaControlITF + QCameraControlPTR() *QCameraControl +} + +func PointerFromQCameraControl(ptr QCameraControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCameraControlPTR().Pointer() + } + return nil +} + +func QCameraControlFromPointer(ptr unsafe.Pointer) *QCameraControl { + var n = new(QCameraControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCameraControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCameraControl) QCameraControlPTR() *QCameraControl { + return ptr +} + +//QCameraControl::PropertyChangeType +type QCameraControl__PropertyChangeType int + +var ( + QCameraControl__CaptureMode = QCameraControl__PropertyChangeType(1) + QCameraControl__ImageEncodingSettings = QCameraControl__PropertyChangeType(2) + QCameraControl__VideoEncodingSettings = QCameraControl__PropertyChangeType(3) + QCameraControl__Viewfinder = QCameraControl__PropertyChangeType(4) + QCameraControl__ViewfinderSettings = QCameraControl__PropertyChangeType(5) +) + +func (ptr *QCameraControl) CanChangeProperty(changeType QCameraControl__PropertyChangeType, status QCamera__Status) bool { + if ptr.Pointer() != nil { + return C.QCameraControl_CanChangeProperty(C.QtObjectPtr(ptr.Pointer()), C.int(changeType), C.int(status)) != 0 + } + return false +} + +func (ptr *QCameraControl) CaptureMode() QCamera__CaptureMode { + if ptr.Pointer() != nil { + return QCamera__CaptureMode(C.QCameraControl_CaptureMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCameraControl) ConnectCaptureModeChanged(f func(mode QCamera__CaptureMode)) { + if ptr.Pointer() != nil { + C.QCameraControl_ConnectCaptureModeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "captureModeChanged", f) + } +} + +func (ptr *QCameraControl) DisconnectCaptureModeChanged() { + if ptr.Pointer() != nil { + C.QCameraControl_DisconnectCaptureModeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "captureModeChanged") + } +} + +//export callbackQCameraControlCaptureModeChanged +func callbackQCameraControlCaptureModeChanged(ptrName *C.char, mode C.int) { + qt.GetSignal(C.GoString(ptrName), "captureModeChanged").(func(QCamera__CaptureMode))(QCamera__CaptureMode(mode)) +} + +func (ptr *QCameraControl) ConnectError(f func(error int, errorString string)) { + if ptr.Pointer() != nil { + C.QCameraControl_ConnectError(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "error", f) + } +} + +func (ptr *QCameraControl) DisconnectError() { + if ptr.Pointer() != nil { + C.QCameraControl_DisconnectError(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "error") + } +} + +//export callbackQCameraControlError +func callbackQCameraControlError(ptrName *C.char, error C.int, errorString *C.char) { + qt.GetSignal(C.GoString(ptrName), "error").(func(int, string))(int(error), C.GoString(errorString)) +} + +func (ptr *QCameraControl) IsCaptureModeSupported(mode QCamera__CaptureMode) bool { + if ptr.Pointer() != nil { + return C.QCameraControl_IsCaptureModeSupported(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) != 0 + } + return false +} + +func (ptr *QCameraControl) SetCaptureMode(mode QCamera__CaptureMode) { + if ptr.Pointer() != nil { + C.QCameraControl_SetCaptureMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QCameraControl) SetState(state QCamera__State) { + if ptr.Pointer() != nil { + C.QCameraControl_SetState(C.QtObjectPtr(ptr.Pointer()), C.int(state)) + } +} + +func (ptr *QCameraControl) ConnectStateChanged(f func(state QCamera__State)) { + if ptr.Pointer() != nil { + C.QCameraControl_ConnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stateChanged", f) + } +} + +func (ptr *QCameraControl) DisconnectStateChanged() { + if ptr.Pointer() != nil { + C.QCameraControl_DisconnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stateChanged") + } +} + +//export callbackQCameraControlStateChanged +func callbackQCameraControlStateChanged(ptrName *C.char, state C.int) { + qt.GetSignal(C.GoString(ptrName), "stateChanged").(func(QCamera__State))(QCamera__State(state)) +} + +func (ptr *QCameraControl) Status() QCamera__Status { + if ptr.Pointer() != nil { + return QCamera__Status(C.QCameraControl_Status(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCameraControl) ConnectStatusChanged(f func(status QCamera__Status)) { + if ptr.Pointer() != nil { + C.QCameraControl_ConnectStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "statusChanged", f) + } +} + +func (ptr *QCameraControl) DisconnectStatusChanged() { + if ptr.Pointer() != nil { + C.QCameraControl_DisconnectStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "statusChanged") + } +} + +//export callbackQCameraControlStatusChanged +func callbackQCameraControlStatusChanged(ptrName *C.char, status C.int) { + qt.GetSignal(C.GoString(ptrName), "statusChanged").(func(QCamera__Status))(QCamera__Status(status)) +} + +func (ptr *QCameraControl) DestroyQCameraControl() { + if ptr.Pointer() != nil { + C.QCameraControl_DestroyQCameraControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qcameracontrol.h b/multimedia/qcameracontrol.h new file mode 100755 index 00000000..40d27dc0 --- /dev/null +++ b/multimedia/qcameracontrol.h @@ -0,0 +1,24 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QCameraControl_CanChangeProperty(QtObjectPtr ptr, int changeType, int status); +int QCameraControl_CaptureMode(QtObjectPtr ptr); +void QCameraControl_ConnectCaptureModeChanged(QtObjectPtr ptr); +void QCameraControl_DisconnectCaptureModeChanged(QtObjectPtr ptr); +void QCameraControl_ConnectError(QtObjectPtr ptr); +void QCameraControl_DisconnectError(QtObjectPtr ptr); +int QCameraControl_IsCaptureModeSupported(QtObjectPtr ptr, int mode); +void QCameraControl_SetCaptureMode(QtObjectPtr ptr, int mode); +void QCameraControl_SetState(QtObjectPtr ptr, int state); +void QCameraControl_ConnectStateChanged(QtObjectPtr ptr); +void QCameraControl_DisconnectStateChanged(QtObjectPtr ptr); +int QCameraControl_Status(QtObjectPtr ptr); +void QCameraControl_ConnectStatusChanged(QtObjectPtr ptr); +void QCameraControl_DisconnectStatusChanged(QtObjectPtr ptr); +void QCameraControl_DestroyQCameraControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qcameraexposure.cpp b/multimedia/qcameraexposure.cpp new file mode 100755 index 00000000..84471d3d --- /dev/null +++ b/multimedia/qcameraexposure.cpp @@ -0,0 +1,125 @@ +#include "qcameraexposure.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCameraExposure: public QCameraExposure { +public: +void Signal_ApertureRangeChanged(){callbackQCameraExposureApertureRangeChanged(this->objectName().toUtf8().data());}; +void Signal_FlashReady(bool ready){callbackQCameraExposureFlashReady(this->objectName().toUtf8().data(), ready);}; +void Signal_IsoSensitivityChanged(int value){callbackQCameraExposureIsoSensitivityChanged(this->objectName().toUtf8().data(), value);}; +void Signal_ShutterSpeedRangeChanged(){callbackQCameraExposureShutterSpeedRangeChanged(this->objectName().toUtf8().data());}; +}; + +int QCameraExposure_ExposureMode(QtObjectPtr ptr){ + return static_cast(ptr)->exposureMode(); +} + +int QCameraExposure_FlashMode(QtObjectPtr ptr){ + return static_cast(ptr)->flashMode(); +} + +int QCameraExposure_IsoSensitivity(QtObjectPtr ptr){ + return static_cast(ptr)->isoSensitivity(); +} + +int QCameraExposure_MeteringMode(QtObjectPtr ptr){ + return static_cast(ptr)->meteringMode(); +} + +void QCameraExposure_SetAutoAperture(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "setAutoAperture"); +} + +void QCameraExposure_SetAutoIsoSensitivity(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "setAutoIsoSensitivity"); +} + +void QCameraExposure_SetExposureMode(QtObjectPtr ptr, int mode){ + QMetaObject::invokeMethod(static_cast(ptr), "setExposureMode", Q_ARG(QCameraExposure::ExposureMode, static_cast(mode))); +} + +void QCameraExposure_SetFlashMode(QtObjectPtr ptr, int mode){ + QMetaObject::invokeMethod(static_cast(ptr), "setFlashMode", Q_ARG(QCameraExposure::FlashMode, static_cast(mode))); +} + +void QCameraExposure_SetManualIsoSensitivity(QtObjectPtr ptr, int iso){ + QMetaObject::invokeMethod(static_cast(ptr), "setManualIsoSensitivity", Q_ARG(int, iso)); +} + +void QCameraExposure_SetMeteringMode(QtObjectPtr ptr, int mode){ + QMetaObject::invokeMethod(static_cast(ptr), "setMeteringMode", Q_ARG(QCameraExposure::MeteringMode, static_cast(mode))); +} + +void QCameraExposure_SetSpotMeteringPoint(QtObjectPtr ptr, QtObjectPtr point){ + static_cast(ptr)->setSpotMeteringPoint(*static_cast(point)); +} + +void QCameraExposure_ConnectApertureRangeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraExposure::apertureRangeChanged), static_cast(ptr), static_cast(&MyQCameraExposure::Signal_ApertureRangeChanged));; +} + +void QCameraExposure_DisconnectApertureRangeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraExposure::apertureRangeChanged), static_cast(ptr), static_cast(&MyQCameraExposure::Signal_ApertureRangeChanged));; +} + +void QCameraExposure_ConnectFlashReady(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraExposure::flashReady), static_cast(ptr), static_cast(&MyQCameraExposure::Signal_FlashReady));; +} + +void QCameraExposure_DisconnectFlashReady(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraExposure::flashReady), static_cast(ptr), static_cast(&MyQCameraExposure::Signal_FlashReady));; +} + +int QCameraExposure_IsAvailable(QtObjectPtr ptr){ + return static_cast(ptr)->isAvailable(); +} + +int QCameraExposure_IsExposureModeSupported(QtObjectPtr ptr, int mode){ + return static_cast(ptr)->isExposureModeSupported(static_cast(mode)); +} + +int QCameraExposure_IsFlashModeSupported(QtObjectPtr ptr, int mode){ + return static_cast(ptr)->isFlashModeSupported(static_cast(mode)); +} + +int QCameraExposure_IsFlashReady(QtObjectPtr ptr){ + return static_cast(ptr)->isFlashReady(); +} + +int QCameraExposure_IsMeteringModeSupported(QtObjectPtr ptr, int mode){ + return static_cast(ptr)->isMeteringModeSupported(static_cast(mode)); +} + +void QCameraExposure_ConnectIsoSensitivityChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraExposure::isoSensitivityChanged), static_cast(ptr), static_cast(&MyQCameraExposure::Signal_IsoSensitivityChanged));; +} + +void QCameraExposure_DisconnectIsoSensitivityChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraExposure::isoSensitivityChanged), static_cast(ptr), static_cast(&MyQCameraExposure::Signal_IsoSensitivityChanged));; +} + +int QCameraExposure_RequestedIsoSensitivity(QtObjectPtr ptr){ + return static_cast(ptr)->requestedIsoSensitivity(); +} + +void QCameraExposure_SetAutoShutterSpeed(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "setAutoShutterSpeed"); +} + +void QCameraExposure_ConnectShutterSpeedRangeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraExposure::shutterSpeedRangeChanged), static_cast(ptr), static_cast(&MyQCameraExposure::Signal_ShutterSpeedRangeChanged));; +} + +void QCameraExposure_DisconnectShutterSpeedRangeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraExposure::shutterSpeedRangeChanged), static_cast(ptr), static_cast(&MyQCameraExposure::Signal_ShutterSpeedRangeChanged));; +} + diff --git a/multimedia/qcameraexposure.go b/multimedia/qcameraexposure.go new file mode 100755 index 00000000..5538f6b1 --- /dev/null +++ b/multimedia/qcameraexposure.go @@ -0,0 +1,285 @@ +package multimedia + +//#include "qcameraexposure.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QCameraExposure struct { + core.QObject +} + +type QCameraExposureITF interface { + core.QObjectITF + QCameraExposurePTR() *QCameraExposure +} + +func PointerFromQCameraExposure(ptr QCameraExposureITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCameraExposurePTR().Pointer() + } + return nil +} + +func QCameraExposureFromPointer(ptr unsafe.Pointer) *QCameraExposure { + var n = new(QCameraExposure) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCameraExposure_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCameraExposure) QCameraExposurePTR() *QCameraExposure { + return ptr +} + +//QCameraExposure::ExposureMode +type QCameraExposure__ExposureMode int + +var ( + QCameraExposure__ExposureAuto = QCameraExposure__ExposureMode(0) + QCameraExposure__ExposureManual = QCameraExposure__ExposureMode(1) + QCameraExposure__ExposurePortrait = QCameraExposure__ExposureMode(2) + QCameraExposure__ExposureNight = QCameraExposure__ExposureMode(3) + QCameraExposure__ExposureBacklight = QCameraExposure__ExposureMode(4) + QCameraExposure__ExposureSpotlight = QCameraExposure__ExposureMode(5) + QCameraExposure__ExposureSports = QCameraExposure__ExposureMode(6) + QCameraExposure__ExposureSnow = QCameraExposure__ExposureMode(7) + QCameraExposure__ExposureBeach = QCameraExposure__ExposureMode(8) + QCameraExposure__ExposureLargeAperture = QCameraExposure__ExposureMode(9) + QCameraExposure__ExposureSmallAperture = QCameraExposure__ExposureMode(10) + QCameraExposure__ExposureAction = QCameraExposure__ExposureMode(11) + QCameraExposure__ExposureLandscape = QCameraExposure__ExposureMode(12) + QCameraExposure__ExposureNightPortrait = QCameraExposure__ExposureMode(13) + QCameraExposure__ExposureTheatre = QCameraExposure__ExposureMode(14) + QCameraExposure__ExposureSunset = QCameraExposure__ExposureMode(15) + QCameraExposure__ExposureSteadyPhoto = QCameraExposure__ExposureMode(16) + QCameraExposure__ExposureFireworks = QCameraExposure__ExposureMode(17) + QCameraExposure__ExposureParty = QCameraExposure__ExposureMode(18) + QCameraExposure__ExposureCandlelight = QCameraExposure__ExposureMode(19) + QCameraExposure__ExposureBarcode = QCameraExposure__ExposureMode(20) + QCameraExposure__ExposureModeVendor = QCameraExposure__ExposureMode(1000) +) + +//QCameraExposure::FlashMode +type QCameraExposure__FlashMode int + +var ( + QCameraExposure__FlashAuto = QCameraExposure__FlashMode(0x1) + QCameraExposure__FlashOff = QCameraExposure__FlashMode(0x2) + QCameraExposure__FlashOn = QCameraExposure__FlashMode(0x4) + QCameraExposure__FlashRedEyeReduction = QCameraExposure__FlashMode(0x8) + QCameraExposure__FlashFill = QCameraExposure__FlashMode(0x10) + QCameraExposure__FlashTorch = QCameraExposure__FlashMode(0x20) + QCameraExposure__FlashVideoLight = QCameraExposure__FlashMode(0x40) + QCameraExposure__FlashSlowSyncFrontCurtain = QCameraExposure__FlashMode(0x80) + QCameraExposure__FlashSlowSyncRearCurtain = QCameraExposure__FlashMode(0x100) + QCameraExposure__FlashManual = QCameraExposure__FlashMode(0x200) +) + +//QCameraExposure::MeteringMode +type QCameraExposure__MeteringMode int + +var ( + QCameraExposure__MeteringMatrix = QCameraExposure__MeteringMode(1) + QCameraExposure__MeteringAverage = QCameraExposure__MeteringMode(2) + QCameraExposure__MeteringSpot = QCameraExposure__MeteringMode(3) +) + +func (ptr *QCameraExposure) ExposureMode() QCameraExposure__ExposureMode { + if ptr.Pointer() != nil { + return QCameraExposure__ExposureMode(C.QCameraExposure_ExposureMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCameraExposure) FlashMode() QCameraExposure__FlashMode { + if ptr.Pointer() != nil { + return QCameraExposure__FlashMode(C.QCameraExposure_FlashMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCameraExposure) IsoSensitivity() int { + if ptr.Pointer() != nil { + return int(C.QCameraExposure_IsoSensitivity(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCameraExposure) MeteringMode() QCameraExposure__MeteringMode { + if ptr.Pointer() != nil { + return QCameraExposure__MeteringMode(C.QCameraExposure_MeteringMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCameraExposure) SetAutoAperture() { + if ptr.Pointer() != nil { + C.QCameraExposure_SetAutoAperture(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QCameraExposure) SetAutoIsoSensitivity() { + if ptr.Pointer() != nil { + C.QCameraExposure_SetAutoIsoSensitivity(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QCameraExposure) SetExposureMode(mode QCameraExposure__ExposureMode) { + if ptr.Pointer() != nil { + C.QCameraExposure_SetExposureMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QCameraExposure) SetFlashMode(mode QCameraExposure__FlashMode) { + if ptr.Pointer() != nil { + C.QCameraExposure_SetFlashMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QCameraExposure) SetManualIsoSensitivity(iso int) { + if ptr.Pointer() != nil { + C.QCameraExposure_SetManualIsoSensitivity(C.QtObjectPtr(ptr.Pointer()), C.int(iso)) + } +} + +func (ptr *QCameraExposure) SetMeteringMode(mode QCameraExposure__MeteringMode) { + if ptr.Pointer() != nil { + C.QCameraExposure_SetMeteringMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QCameraExposure) SetSpotMeteringPoint(point core.QPointFITF) { + if ptr.Pointer() != nil { + C.QCameraExposure_SetSpotMeteringPoint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(point))) + } +} + +func (ptr *QCameraExposure) ConnectApertureRangeChanged(f func()) { + if ptr.Pointer() != nil { + C.QCameraExposure_ConnectApertureRangeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "apertureRangeChanged", f) + } +} + +func (ptr *QCameraExposure) DisconnectApertureRangeChanged() { + if ptr.Pointer() != nil { + C.QCameraExposure_DisconnectApertureRangeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "apertureRangeChanged") + } +} + +//export callbackQCameraExposureApertureRangeChanged +func callbackQCameraExposureApertureRangeChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "apertureRangeChanged").(func())() +} + +func (ptr *QCameraExposure) ConnectFlashReady(f func(ready bool)) { + if ptr.Pointer() != nil { + C.QCameraExposure_ConnectFlashReady(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "flashReady", f) + } +} + +func (ptr *QCameraExposure) DisconnectFlashReady() { + if ptr.Pointer() != nil { + C.QCameraExposure_DisconnectFlashReady(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "flashReady") + } +} + +//export callbackQCameraExposureFlashReady +func callbackQCameraExposureFlashReady(ptrName *C.char, ready C.int) { + qt.GetSignal(C.GoString(ptrName), "flashReady").(func(bool))(int(ready) != 0) +} + +func (ptr *QCameraExposure) IsAvailable() bool { + if ptr.Pointer() != nil { + return C.QCameraExposure_IsAvailable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QCameraExposure) IsExposureModeSupported(mode QCameraExposure__ExposureMode) bool { + if ptr.Pointer() != nil { + return C.QCameraExposure_IsExposureModeSupported(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) != 0 + } + return false +} + +func (ptr *QCameraExposure) IsFlashModeSupported(mode QCameraExposure__FlashMode) bool { + if ptr.Pointer() != nil { + return C.QCameraExposure_IsFlashModeSupported(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) != 0 + } + return false +} + +func (ptr *QCameraExposure) IsFlashReady() bool { + if ptr.Pointer() != nil { + return C.QCameraExposure_IsFlashReady(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QCameraExposure) IsMeteringModeSupported(mode QCameraExposure__MeteringMode) bool { + if ptr.Pointer() != nil { + return C.QCameraExposure_IsMeteringModeSupported(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) != 0 + } + return false +} + +func (ptr *QCameraExposure) ConnectIsoSensitivityChanged(f func(value int)) { + if ptr.Pointer() != nil { + C.QCameraExposure_ConnectIsoSensitivityChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "isoSensitivityChanged", f) + } +} + +func (ptr *QCameraExposure) DisconnectIsoSensitivityChanged() { + if ptr.Pointer() != nil { + C.QCameraExposure_DisconnectIsoSensitivityChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "isoSensitivityChanged") + } +} + +//export callbackQCameraExposureIsoSensitivityChanged +func callbackQCameraExposureIsoSensitivityChanged(ptrName *C.char, value C.int) { + qt.GetSignal(C.GoString(ptrName), "isoSensitivityChanged").(func(int))(int(value)) +} + +func (ptr *QCameraExposure) RequestedIsoSensitivity() int { + if ptr.Pointer() != nil { + return int(C.QCameraExposure_RequestedIsoSensitivity(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCameraExposure) SetAutoShutterSpeed() { + if ptr.Pointer() != nil { + C.QCameraExposure_SetAutoShutterSpeed(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QCameraExposure) ConnectShutterSpeedRangeChanged(f func()) { + if ptr.Pointer() != nil { + C.QCameraExposure_ConnectShutterSpeedRangeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "shutterSpeedRangeChanged", f) + } +} + +func (ptr *QCameraExposure) DisconnectShutterSpeedRangeChanged() { + if ptr.Pointer() != nil { + C.QCameraExposure_DisconnectShutterSpeedRangeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "shutterSpeedRangeChanged") + } +} + +//export callbackQCameraExposureShutterSpeedRangeChanged +func callbackQCameraExposureShutterSpeedRangeChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "shutterSpeedRangeChanged").(func())() +} diff --git a/multimedia/qcameraexposure.h b/multimedia/qcameraexposure.h new file mode 100755 index 00000000..852b15da --- /dev/null +++ b/multimedia/qcameraexposure.h @@ -0,0 +1,35 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QCameraExposure_ExposureMode(QtObjectPtr ptr); +int QCameraExposure_FlashMode(QtObjectPtr ptr); +int QCameraExposure_IsoSensitivity(QtObjectPtr ptr); +int QCameraExposure_MeteringMode(QtObjectPtr ptr); +void QCameraExposure_SetAutoAperture(QtObjectPtr ptr); +void QCameraExposure_SetAutoIsoSensitivity(QtObjectPtr ptr); +void QCameraExposure_SetExposureMode(QtObjectPtr ptr, int mode); +void QCameraExposure_SetFlashMode(QtObjectPtr ptr, int mode); +void QCameraExposure_SetManualIsoSensitivity(QtObjectPtr ptr, int iso); +void QCameraExposure_SetMeteringMode(QtObjectPtr ptr, int mode); +void QCameraExposure_SetSpotMeteringPoint(QtObjectPtr ptr, QtObjectPtr point); +void QCameraExposure_ConnectApertureRangeChanged(QtObjectPtr ptr); +void QCameraExposure_DisconnectApertureRangeChanged(QtObjectPtr ptr); +void QCameraExposure_ConnectFlashReady(QtObjectPtr ptr); +void QCameraExposure_DisconnectFlashReady(QtObjectPtr ptr); +int QCameraExposure_IsAvailable(QtObjectPtr ptr); +int QCameraExposure_IsExposureModeSupported(QtObjectPtr ptr, int mode); +int QCameraExposure_IsFlashModeSupported(QtObjectPtr ptr, int mode); +int QCameraExposure_IsFlashReady(QtObjectPtr ptr); +int QCameraExposure_IsMeteringModeSupported(QtObjectPtr ptr, int mode); +void QCameraExposure_ConnectIsoSensitivityChanged(QtObjectPtr ptr); +void QCameraExposure_DisconnectIsoSensitivityChanged(QtObjectPtr ptr); +int QCameraExposure_RequestedIsoSensitivity(QtObjectPtr ptr); +void QCameraExposure_SetAutoShutterSpeed(QtObjectPtr ptr); +void QCameraExposure_ConnectShutterSpeedRangeChanged(QtObjectPtr ptr); +void QCameraExposure_DisconnectShutterSpeedRangeChanged(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qcameraexposurecontrol.cpp b/multimedia/qcameraexposurecontrol.cpp new file mode 100755 index 00000000..28b95571 --- /dev/null +++ b/multimedia/qcameraexposurecontrol.cpp @@ -0,0 +1,62 @@ +#include "qcameraexposurecontrol.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCameraExposureControl: public QCameraExposureControl { +public: +void Signal_ActualValueChanged(int parameter){callbackQCameraExposureControlActualValueChanged(this->objectName().toUtf8().data(), parameter);}; +void Signal_ParameterRangeChanged(int parameter){callbackQCameraExposureControlParameterRangeChanged(this->objectName().toUtf8().data(), parameter);}; +void Signal_RequestedValueChanged(int parameter){callbackQCameraExposureControlRequestedValueChanged(this->objectName().toUtf8().data(), parameter);}; +}; + +char* QCameraExposureControl_ActualValue(QtObjectPtr ptr, int parameter){ + return static_cast(ptr)->actualValue(static_cast(parameter)).toString().toUtf8().data(); +} + +void QCameraExposureControl_ConnectActualValueChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraExposureControl::actualValueChanged), static_cast(ptr), static_cast(&MyQCameraExposureControl::Signal_ActualValueChanged));; +} + +void QCameraExposureControl_DisconnectActualValueChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraExposureControl::actualValueChanged), static_cast(ptr), static_cast(&MyQCameraExposureControl::Signal_ActualValueChanged));; +} + +int QCameraExposureControl_IsParameterSupported(QtObjectPtr ptr, int parameter){ + return static_cast(ptr)->isParameterSupported(static_cast(parameter)); +} + +void QCameraExposureControl_ConnectParameterRangeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraExposureControl::parameterRangeChanged), static_cast(ptr), static_cast(&MyQCameraExposureControl::Signal_ParameterRangeChanged));; +} + +void QCameraExposureControl_DisconnectParameterRangeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraExposureControl::parameterRangeChanged), static_cast(ptr), static_cast(&MyQCameraExposureControl::Signal_ParameterRangeChanged));; +} + +char* QCameraExposureControl_RequestedValue(QtObjectPtr ptr, int parameter){ + return static_cast(ptr)->requestedValue(static_cast(parameter)).toString().toUtf8().data(); +} + +void QCameraExposureControl_ConnectRequestedValueChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraExposureControl::requestedValueChanged), static_cast(ptr), static_cast(&MyQCameraExposureControl::Signal_RequestedValueChanged));; +} + +void QCameraExposureControl_DisconnectRequestedValueChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraExposureControl::requestedValueChanged), static_cast(ptr), static_cast(&MyQCameraExposureControl::Signal_RequestedValueChanged));; +} + +int QCameraExposureControl_SetValue(QtObjectPtr ptr, int parameter, char* value){ + return static_cast(ptr)->setValue(static_cast(parameter), QVariant(value)); +} + +void QCameraExposureControl_DestroyQCameraExposureControl(QtObjectPtr ptr){ + static_cast(ptr)->~QCameraExposureControl(); +} + diff --git a/multimedia/qcameraexposurecontrol.go b/multimedia/qcameraexposurecontrol.go new file mode 100755 index 00000000..ec30535b --- /dev/null +++ b/multimedia/qcameraexposurecontrol.go @@ -0,0 +1,146 @@ +package multimedia + +//#include "qcameraexposurecontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QCameraExposureControl struct { + QMediaControl +} + +type QCameraExposureControlITF interface { + QMediaControlITF + QCameraExposureControlPTR() *QCameraExposureControl +} + +func PointerFromQCameraExposureControl(ptr QCameraExposureControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCameraExposureControlPTR().Pointer() + } + return nil +} + +func QCameraExposureControlFromPointer(ptr unsafe.Pointer) *QCameraExposureControl { + var n = new(QCameraExposureControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCameraExposureControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCameraExposureControl) QCameraExposureControlPTR() *QCameraExposureControl { + return ptr +} + +//QCameraExposureControl::ExposureParameter +type QCameraExposureControl__ExposureParameter int + +var ( + QCameraExposureControl__ISO = QCameraExposureControl__ExposureParameter(0) + QCameraExposureControl__Aperture = QCameraExposureControl__ExposureParameter(1) + QCameraExposureControl__ShutterSpeed = QCameraExposureControl__ExposureParameter(2) + QCameraExposureControl__ExposureCompensation = QCameraExposureControl__ExposureParameter(3) + QCameraExposureControl__FlashPower = QCameraExposureControl__ExposureParameter(4) + QCameraExposureControl__FlashCompensation = QCameraExposureControl__ExposureParameter(5) + QCameraExposureControl__TorchPower = QCameraExposureControl__ExposureParameter(6) + QCameraExposureControl__SpotMeteringPoint = QCameraExposureControl__ExposureParameter(7) + QCameraExposureControl__ExposureMode = QCameraExposureControl__ExposureParameter(8) + QCameraExposureControl__MeteringMode = QCameraExposureControl__ExposureParameter(9) + QCameraExposureControl__ExtendedExposureParameter = QCameraExposureControl__ExposureParameter(1000) +) + +func (ptr *QCameraExposureControl) ActualValue(parameter QCameraExposureControl__ExposureParameter) string { + if ptr.Pointer() != nil { + return C.GoString(C.QCameraExposureControl_ActualValue(C.QtObjectPtr(ptr.Pointer()), C.int(parameter))) + } + return "" +} + +func (ptr *QCameraExposureControl) ConnectActualValueChanged(f func(parameter int)) { + if ptr.Pointer() != nil { + C.QCameraExposureControl_ConnectActualValueChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "actualValueChanged", f) + } +} + +func (ptr *QCameraExposureControl) DisconnectActualValueChanged() { + if ptr.Pointer() != nil { + C.QCameraExposureControl_DisconnectActualValueChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "actualValueChanged") + } +} + +//export callbackQCameraExposureControlActualValueChanged +func callbackQCameraExposureControlActualValueChanged(ptrName *C.char, parameter C.int) { + qt.GetSignal(C.GoString(ptrName), "actualValueChanged").(func(int))(int(parameter)) +} + +func (ptr *QCameraExposureControl) IsParameterSupported(parameter QCameraExposureControl__ExposureParameter) bool { + if ptr.Pointer() != nil { + return C.QCameraExposureControl_IsParameterSupported(C.QtObjectPtr(ptr.Pointer()), C.int(parameter)) != 0 + } + return false +} + +func (ptr *QCameraExposureControl) ConnectParameterRangeChanged(f func(parameter int)) { + if ptr.Pointer() != nil { + C.QCameraExposureControl_ConnectParameterRangeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "parameterRangeChanged", f) + } +} + +func (ptr *QCameraExposureControl) DisconnectParameterRangeChanged() { + if ptr.Pointer() != nil { + C.QCameraExposureControl_DisconnectParameterRangeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "parameterRangeChanged") + } +} + +//export callbackQCameraExposureControlParameterRangeChanged +func callbackQCameraExposureControlParameterRangeChanged(ptrName *C.char, parameter C.int) { + qt.GetSignal(C.GoString(ptrName), "parameterRangeChanged").(func(int))(int(parameter)) +} + +func (ptr *QCameraExposureControl) RequestedValue(parameter QCameraExposureControl__ExposureParameter) string { + if ptr.Pointer() != nil { + return C.GoString(C.QCameraExposureControl_RequestedValue(C.QtObjectPtr(ptr.Pointer()), C.int(parameter))) + } + return "" +} + +func (ptr *QCameraExposureControl) ConnectRequestedValueChanged(f func(parameter int)) { + if ptr.Pointer() != nil { + C.QCameraExposureControl_ConnectRequestedValueChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "requestedValueChanged", f) + } +} + +func (ptr *QCameraExposureControl) DisconnectRequestedValueChanged() { + if ptr.Pointer() != nil { + C.QCameraExposureControl_DisconnectRequestedValueChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "requestedValueChanged") + } +} + +//export callbackQCameraExposureControlRequestedValueChanged +func callbackQCameraExposureControlRequestedValueChanged(ptrName *C.char, parameter C.int) { + qt.GetSignal(C.GoString(ptrName), "requestedValueChanged").(func(int))(int(parameter)) +} + +func (ptr *QCameraExposureControl) SetValue(parameter QCameraExposureControl__ExposureParameter, value string) bool { + if ptr.Pointer() != nil { + return C.QCameraExposureControl_SetValue(C.QtObjectPtr(ptr.Pointer()), C.int(parameter), C.CString(value)) != 0 + } + return false +} + +func (ptr *QCameraExposureControl) DestroyQCameraExposureControl() { + if ptr.Pointer() != nil { + C.QCameraExposureControl_DestroyQCameraExposureControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qcameraexposurecontrol.h b/multimedia/qcameraexposurecontrol.h new file mode 100755 index 00000000..593350bb --- /dev/null +++ b/multimedia/qcameraexposurecontrol.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QCameraExposureControl_ActualValue(QtObjectPtr ptr, int parameter); +void QCameraExposureControl_ConnectActualValueChanged(QtObjectPtr ptr); +void QCameraExposureControl_DisconnectActualValueChanged(QtObjectPtr ptr); +int QCameraExposureControl_IsParameterSupported(QtObjectPtr ptr, int parameter); +void QCameraExposureControl_ConnectParameterRangeChanged(QtObjectPtr ptr); +void QCameraExposureControl_DisconnectParameterRangeChanged(QtObjectPtr ptr); +char* QCameraExposureControl_RequestedValue(QtObjectPtr ptr, int parameter); +void QCameraExposureControl_ConnectRequestedValueChanged(QtObjectPtr ptr); +void QCameraExposureControl_DisconnectRequestedValueChanged(QtObjectPtr ptr); +int QCameraExposureControl_SetValue(QtObjectPtr ptr, int parameter, char* value); +void QCameraExposureControl_DestroyQCameraExposureControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qcamerafeedbackcontrol.cpp b/multimedia/qcamerafeedbackcontrol.cpp new file mode 100755 index 00000000..04164ead --- /dev/null +++ b/multimedia/qcamerafeedbackcontrol.cpp @@ -0,0 +1,37 @@ +#include "qcamerafeedbackcontrol.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCameraFeedbackControl: public QCameraFeedbackControl { +public: +}; + +int QCameraFeedbackControl_IsEventFeedbackEnabled(QtObjectPtr ptr, int event){ + return static_cast(ptr)->isEventFeedbackEnabled(static_cast(event)); +} + +int QCameraFeedbackControl_IsEventFeedbackLocked(QtObjectPtr ptr, int event){ + return static_cast(ptr)->isEventFeedbackLocked(static_cast(event)); +} + +void QCameraFeedbackControl_ResetEventFeedback(QtObjectPtr ptr, int event){ + static_cast(ptr)->resetEventFeedback(static_cast(event)); +} + +int QCameraFeedbackControl_SetEventFeedbackEnabled(QtObjectPtr ptr, int event, int enabled){ + return static_cast(ptr)->setEventFeedbackEnabled(static_cast(event), enabled != 0); +} + +int QCameraFeedbackControl_SetEventFeedbackSound(QtObjectPtr ptr, int event, char* filePath){ + return static_cast(ptr)->setEventFeedbackSound(static_cast(event), QString(filePath)); +} + +void QCameraFeedbackControl_DestroyQCameraFeedbackControl(QtObjectPtr ptr){ + static_cast(ptr)->~QCameraFeedbackControl(); +} + diff --git a/multimedia/qcamerafeedbackcontrol.go b/multimedia/qcamerafeedbackcontrol.go new file mode 100755 index 00000000..cdd50bcd --- /dev/null +++ b/multimedia/qcamerafeedbackcontrol.go @@ -0,0 +1,95 @@ +package multimedia + +//#include "qcamerafeedbackcontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QCameraFeedbackControl struct { + QMediaControl +} + +type QCameraFeedbackControlITF interface { + QMediaControlITF + QCameraFeedbackControlPTR() *QCameraFeedbackControl +} + +func PointerFromQCameraFeedbackControl(ptr QCameraFeedbackControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCameraFeedbackControlPTR().Pointer() + } + return nil +} + +func QCameraFeedbackControlFromPointer(ptr unsafe.Pointer) *QCameraFeedbackControl { + var n = new(QCameraFeedbackControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCameraFeedbackControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCameraFeedbackControl) QCameraFeedbackControlPTR() *QCameraFeedbackControl { + return ptr +} + +//QCameraFeedbackControl::EventType +type QCameraFeedbackControl__EventType int + +var ( + QCameraFeedbackControl__ViewfinderStarted = QCameraFeedbackControl__EventType(1) + QCameraFeedbackControl__ViewfinderStopped = QCameraFeedbackControl__EventType(2) + QCameraFeedbackControl__ImageCaptured = QCameraFeedbackControl__EventType(3) + QCameraFeedbackControl__ImageSaved = QCameraFeedbackControl__EventType(4) + QCameraFeedbackControl__ImageError = QCameraFeedbackControl__EventType(5) + QCameraFeedbackControl__RecordingStarted = QCameraFeedbackControl__EventType(6) + QCameraFeedbackControl__RecordingInProgress = QCameraFeedbackControl__EventType(7) + QCameraFeedbackControl__RecordingStopped = QCameraFeedbackControl__EventType(8) + QCameraFeedbackControl__AutoFocusInProgress = QCameraFeedbackControl__EventType(9) + QCameraFeedbackControl__AutoFocusLocked = QCameraFeedbackControl__EventType(10) + QCameraFeedbackControl__AutoFocusFailed = QCameraFeedbackControl__EventType(11) +) + +func (ptr *QCameraFeedbackControl) IsEventFeedbackEnabled(event QCameraFeedbackControl__EventType) bool { + if ptr.Pointer() != nil { + return C.QCameraFeedbackControl_IsEventFeedbackEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(event)) != 0 + } + return false +} + +func (ptr *QCameraFeedbackControl) IsEventFeedbackLocked(event QCameraFeedbackControl__EventType) bool { + if ptr.Pointer() != nil { + return C.QCameraFeedbackControl_IsEventFeedbackLocked(C.QtObjectPtr(ptr.Pointer()), C.int(event)) != 0 + } + return false +} + +func (ptr *QCameraFeedbackControl) ResetEventFeedback(event QCameraFeedbackControl__EventType) { + if ptr.Pointer() != nil { + C.QCameraFeedbackControl_ResetEventFeedback(C.QtObjectPtr(ptr.Pointer()), C.int(event)) + } +} + +func (ptr *QCameraFeedbackControl) SetEventFeedbackEnabled(event QCameraFeedbackControl__EventType, enabled bool) bool { + if ptr.Pointer() != nil { + return C.QCameraFeedbackControl_SetEventFeedbackEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(event), C.int(qt.GoBoolToInt(enabled))) != 0 + } + return false +} + +func (ptr *QCameraFeedbackControl) SetEventFeedbackSound(event QCameraFeedbackControl__EventType, filePath string) bool { + if ptr.Pointer() != nil { + return C.QCameraFeedbackControl_SetEventFeedbackSound(C.QtObjectPtr(ptr.Pointer()), C.int(event), C.CString(filePath)) != 0 + } + return false +} + +func (ptr *QCameraFeedbackControl) DestroyQCameraFeedbackControl() { + if ptr.Pointer() != nil { + C.QCameraFeedbackControl_DestroyQCameraFeedbackControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qcamerafeedbackcontrol.h b/multimedia/qcamerafeedbackcontrol.h new file mode 100755 index 00000000..bac2168f --- /dev/null +++ b/multimedia/qcamerafeedbackcontrol.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QCameraFeedbackControl_IsEventFeedbackEnabled(QtObjectPtr ptr, int event); +int QCameraFeedbackControl_IsEventFeedbackLocked(QtObjectPtr ptr, int event); +void QCameraFeedbackControl_ResetEventFeedback(QtObjectPtr ptr, int event); +int QCameraFeedbackControl_SetEventFeedbackEnabled(QtObjectPtr ptr, int event, int enabled); +int QCameraFeedbackControl_SetEventFeedbackSound(QtObjectPtr ptr, int event, char* filePath); +void QCameraFeedbackControl_DestroyQCameraFeedbackControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qcameraflashcontrol.cpp b/multimedia/qcameraflashcontrol.cpp new file mode 100755 index 00000000..8be6a22d --- /dev/null +++ b/multimedia/qcameraflashcontrol.cpp @@ -0,0 +1,44 @@ +#include "qcameraflashcontrol.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCameraFlashControl: public QCameraFlashControl { +public: +void Signal_FlashReady(bool ready){callbackQCameraFlashControlFlashReady(this->objectName().toUtf8().data(), ready);}; +}; + +int QCameraFlashControl_FlashMode(QtObjectPtr ptr){ + return static_cast(ptr)->flashMode(); +} + +void QCameraFlashControl_ConnectFlashReady(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraFlashControl::flashReady), static_cast(ptr), static_cast(&MyQCameraFlashControl::Signal_FlashReady));; +} + +void QCameraFlashControl_DisconnectFlashReady(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraFlashControl::flashReady), static_cast(ptr), static_cast(&MyQCameraFlashControl::Signal_FlashReady));; +} + +int QCameraFlashControl_IsFlashModeSupported(QtObjectPtr ptr, int mode){ + return static_cast(ptr)->isFlashModeSupported(static_cast(mode)); +} + +int QCameraFlashControl_IsFlashReady(QtObjectPtr ptr){ + return static_cast(ptr)->isFlashReady(); +} + +void QCameraFlashControl_SetFlashMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setFlashMode(static_cast(mode)); +} + +void QCameraFlashControl_DestroyQCameraFlashControl(QtObjectPtr ptr){ + static_cast(ptr)->~QCameraFlashControl(); +} + diff --git a/multimedia/qcameraflashcontrol.go b/multimedia/qcameraflashcontrol.go new file mode 100755 index 00000000..f058ce19 --- /dev/null +++ b/multimedia/qcameraflashcontrol.go @@ -0,0 +1,90 @@ +package multimedia + +//#include "qcameraflashcontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QCameraFlashControl struct { + QMediaControl +} + +type QCameraFlashControlITF interface { + QMediaControlITF + QCameraFlashControlPTR() *QCameraFlashControl +} + +func PointerFromQCameraFlashControl(ptr QCameraFlashControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCameraFlashControlPTR().Pointer() + } + return nil +} + +func QCameraFlashControlFromPointer(ptr unsafe.Pointer) *QCameraFlashControl { + var n = new(QCameraFlashControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCameraFlashControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCameraFlashControl) QCameraFlashControlPTR() *QCameraFlashControl { + return ptr +} + +func (ptr *QCameraFlashControl) FlashMode() QCameraExposure__FlashMode { + if ptr.Pointer() != nil { + return QCameraExposure__FlashMode(C.QCameraFlashControl_FlashMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCameraFlashControl) ConnectFlashReady(f func(ready bool)) { + if ptr.Pointer() != nil { + C.QCameraFlashControl_ConnectFlashReady(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "flashReady", f) + } +} + +func (ptr *QCameraFlashControl) DisconnectFlashReady() { + if ptr.Pointer() != nil { + C.QCameraFlashControl_DisconnectFlashReady(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "flashReady") + } +} + +//export callbackQCameraFlashControlFlashReady +func callbackQCameraFlashControlFlashReady(ptrName *C.char, ready C.int) { + qt.GetSignal(C.GoString(ptrName), "flashReady").(func(bool))(int(ready) != 0) +} + +func (ptr *QCameraFlashControl) IsFlashModeSupported(mode QCameraExposure__FlashMode) bool { + if ptr.Pointer() != nil { + return C.QCameraFlashControl_IsFlashModeSupported(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) != 0 + } + return false +} + +func (ptr *QCameraFlashControl) IsFlashReady() bool { + if ptr.Pointer() != nil { + return C.QCameraFlashControl_IsFlashReady(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QCameraFlashControl) SetFlashMode(mode QCameraExposure__FlashMode) { + if ptr.Pointer() != nil { + C.QCameraFlashControl_SetFlashMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QCameraFlashControl) DestroyQCameraFlashControl() { + if ptr.Pointer() != nil { + C.QCameraFlashControl_DestroyQCameraFlashControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qcameraflashcontrol.h b/multimedia/qcameraflashcontrol.h new file mode 100755 index 00000000..292a1ad2 --- /dev/null +++ b/multimedia/qcameraflashcontrol.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QCameraFlashControl_FlashMode(QtObjectPtr ptr); +void QCameraFlashControl_ConnectFlashReady(QtObjectPtr ptr); +void QCameraFlashControl_DisconnectFlashReady(QtObjectPtr ptr); +int QCameraFlashControl_IsFlashModeSupported(QtObjectPtr ptr, int mode); +int QCameraFlashControl_IsFlashReady(QtObjectPtr ptr); +void QCameraFlashControl_SetFlashMode(QtObjectPtr ptr, int mode); +void QCameraFlashControl_DestroyQCameraFlashControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qcamerafocus.cpp b/multimedia/qcamerafocus.cpp new file mode 100755 index 00000000..c4d017e0 --- /dev/null +++ b/multimedia/qcamerafocus.cpp @@ -0,0 +1,57 @@ +#include "qcamerafocus.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCameraFocus: public QCameraFocus { +public: +void Signal_FocusZonesChanged(){callbackQCameraFocusFocusZonesChanged(this->objectName().toUtf8().data());}; +}; + +int QCameraFocus_FocusMode(QtObjectPtr ptr){ + return static_cast(ptr)->focusMode(); +} + +int QCameraFocus_FocusPointMode(QtObjectPtr ptr){ + return static_cast(ptr)->focusPointMode(); +} + +void QCameraFocus_SetCustomFocusPoint(QtObjectPtr ptr, QtObjectPtr point){ + static_cast(ptr)->setCustomFocusPoint(*static_cast(point)); +} + +void QCameraFocus_SetFocusMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setFocusMode(static_cast(mode)); +} + +void QCameraFocus_SetFocusPointMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setFocusPointMode(static_cast(mode)); +} + +void QCameraFocus_ConnectFocusZonesChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraFocus::focusZonesChanged), static_cast(ptr), static_cast(&MyQCameraFocus::Signal_FocusZonesChanged));; +} + +void QCameraFocus_DisconnectFocusZonesChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraFocus::focusZonesChanged), static_cast(ptr), static_cast(&MyQCameraFocus::Signal_FocusZonesChanged));; +} + +int QCameraFocus_IsAvailable(QtObjectPtr ptr){ + return static_cast(ptr)->isAvailable(); +} + +int QCameraFocus_IsFocusModeSupported(QtObjectPtr ptr, int mode){ + return static_cast(ptr)->isFocusModeSupported(static_cast(mode)); +} + +int QCameraFocus_IsFocusPointModeSupported(QtObjectPtr ptr, int mode){ + return static_cast(ptr)->isFocusPointModeSupported(static_cast(mode)); +} + diff --git a/multimedia/qcamerafocus.go b/multimedia/qcamerafocus.go new file mode 100755 index 00000000..f6e416e0 --- /dev/null +++ b/multimedia/qcamerafocus.go @@ -0,0 +1,132 @@ +package multimedia + +//#include "qcamerafocus.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QCameraFocus struct { + core.QObject +} + +type QCameraFocusITF interface { + core.QObjectITF + QCameraFocusPTR() *QCameraFocus +} + +func PointerFromQCameraFocus(ptr QCameraFocusITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCameraFocusPTR().Pointer() + } + return nil +} + +func QCameraFocusFromPointer(ptr unsafe.Pointer) *QCameraFocus { + var n = new(QCameraFocus) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCameraFocus_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCameraFocus) QCameraFocusPTR() *QCameraFocus { + return ptr +} + +//QCameraFocus::FocusMode +type QCameraFocus__FocusMode int + +var ( + QCameraFocus__ManualFocus = QCameraFocus__FocusMode(0x1) + QCameraFocus__HyperfocalFocus = QCameraFocus__FocusMode(0x02) + QCameraFocus__InfinityFocus = QCameraFocus__FocusMode(0x04) + QCameraFocus__AutoFocus = QCameraFocus__FocusMode(0x8) + QCameraFocus__ContinuousFocus = QCameraFocus__FocusMode(0x10) + QCameraFocus__MacroFocus = QCameraFocus__FocusMode(0x20) +) + +//QCameraFocus::FocusPointMode +type QCameraFocus__FocusPointMode int + +var ( + QCameraFocus__FocusPointAuto = QCameraFocus__FocusPointMode(0) + QCameraFocus__FocusPointCenter = QCameraFocus__FocusPointMode(1) + QCameraFocus__FocusPointFaceDetection = QCameraFocus__FocusPointMode(2) + QCameraFocus__FocusPointCustom = QCameraFocus__FocusPointMode(3) +) + +func (ptr *QCameraFocus) FocusMode() QCameraFocus__FocusMode { + if ptr.Pointer() != nil { + return QCameraFocus__FocusMode(C.QCameraFocus_FocusMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCameraFocus) FocusPointMode() QCameraFocus__FocusPointMode { + if ptr.Pointer() != nil { + return QCameraFocus__FocusPointMode(C.QCameraFocus_FocusPointMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCameraFocus) SetCustomFocusPoint(point core.QPointFITF) { + if ptr.Pointer() != nil { + C.QCameraFocus_SetCustomFocusPoint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(point))) + } +} + +func (ptr *QCameraFocus) SetFocusMode(mode QCameraFocus__FocusMode) { + if ptr.Pointer() != nil { + C.QCameraFocus_SetFocusMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QCameraFocus) SetFocusPointMode(mode QCameraFocus__FocusPointMode) { + if ptr.Pointer() != nil { + C.QCameraFocus_SetFocusPointMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QCameraFocus) ConnectFocusZonesChanged(f func()) { + if ptr.Pointer() != nil { + C.QCameraFocus_ConnectFocusZonesChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "focusZonesChanged", f) + } +} + +func (ptr *QCameraFocus) DisconnectFocusZonesChanged() { + if ptr.Pointer() != nil { + C.QCameraFocus_DisconnectFocusZonesChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "focusZonesChanged") + } +} + +//export callbackQCameraFocusFocusZonesChanged +func callbackQCameraFocusFocusZonesChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "focusZonesChanged").(func())() +} + +func (ptr *QCameraFocus) IsAvailable() bool { + if ptr.Pointer() != nil { + return C.QCameraFocus_IsAvailable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QCameraFocus) IsFocusModeSupported(mode QCameraFocus__FocusMode) bool { + if ptr.Pointer() != nil { + return C.QCameraFocus_IsFocusModeSupported(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) != 0 + } + return false +} + +func (ptr *QCameraFocus) IsFocusPointModeSupported(mode QCameraFocus__FocusPointMode) bool { + if ptr.Pointer() != nil { + return C.QCameraFocus_IsFocusPointModeSupported(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) != 0 + } + return false +} diff --git a/multimedia/qcamerafocus.h b/multimedia/qcamerafocus.h new file mode 100755 index 00000000..355f56f2 --- /dev/null +++ b/multimedia/qcamerafocus.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QCameraFocus_FocusMode(QtObjectPtr ptr); +int QCameraFocus_FocusPointMode(QtObjectPtr ptr); +void QCameraFocus_SetCustomFocusPoint(QtObjectPtr ptr, QtObjectPtr point); +void QCameraFocus_SetFocusMode(QtObjectPtr ptr, int mode); +void QCameraFocus_SetFocusPointMode(QtObjectPtr ptr, int mode); +void QCameraFocus_ConnectFocusZonesChanged(QtObjectPtr ptr); +void QCameraFocus_DisconnectFocusZonesChanged(QtObjectPtr ptr); +int QCameraFocus_IsAvailable(QtObjectPtr ptr); +int QCameraFocus_IsFocusModeSupported(QtObjectPtr ptr, int mode); +int QCameraFocus_IsFocusPointModeSupported(QtObjectPtr ptr, int mode); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qcamerafocuscontrol.cpp b/multimedia/qcamerafocuscontrol.cpp new file mode 100755 index 00000000..814d5d4d --- /dev/null +++ b/multimedia/qcamerafocuscontrol.cpp @@ -0,0 +1,76 @@ +#include "qcamerafocuscontrol.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCameraFocusControl: public QCameraFocusControl { +public: +void Signal_FocusModeChanged(QCameraFocus::FocusModes mode){callbackQCameraFocusControlFocusModeChanged(this->objectName().toUtf8().data(), mode);}; +void Signal_FocusPointModeChanged(QCameraFocus::FocusPointMode mode){callbackQCameraFocusControlFocusPointModeChanged(this->objectName().toUtf8().data(), mode);}; +void Signal_FocusZonesChanged(){callbackQCameraFocusControlFocusZonesChanged(this->objectName().toUtf8().data());}; +}; + +int QCameraFocusControl_FocusMode(QtObjectPtr ptr){ + return static_cast(ptr)->focusMode(); +} + +void QCameraFocusControl_ConnectFocusModeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraFocusControl::focusModeChanged), static_cast(ptr), static_cast(&MyQCameraFocusControl::Signal_FocusModeChanged));; +} + +void QCameraFocusControl_DisconnectFocusModeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraFocusControl::focusModeChanged), static_cast(ptr), static_cast(&MyQCameraFocusControl::Signal_FocusModeChanged));; +} + +int QCameraFocusControl_FocusPointMode(QtObjectPtr ptr){ + return static_cast(ptr)->focusPointMode(); +} + +void QCameraFocusControl_ConnectFocusPointModeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraFocusControl::focusPointModeChanged), static_cast(ptr), static_cast(&MyQCameraFocusControl::Signal_FocusPointModeChanged));; +} + +void QCameraFocusControl_DisconnectFocusPointModeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraFocusControl::focusPointModeChanged), static_cast(ptr), static_cast(&MyQCameraFocusControl::Signal_FocusPointModeChanged));; +} + +void QCameraFocusControl_ConnectFocusZonesChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraFocusControl::focusZonesChanged), static_cast(ptr), static_cast(&MyQCameraFocusControl::Signal_FocusZonesChanged));; +} + +void QCameraFocusControl_DisconnectFocusZonesChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraFocusControl::focusZonesChanged), static_cast(ptr), static_cast(&MyQCameraFocusControl::Signal_FocusZonesChanged));; +} + +int QCameraFocusControl_IsFocusModeSupported(QtObjectPtr ptr, int mode){ + return static_cast(ptr)->isFocusModeSupported(static_cast(mode)); +} + +int QCameraFocusControl_IsFocusPointModeSupported(QtObjectPtr ptr, int mode){ + return static_cast(ptr)->isFocusPointModeSupported(static_cast(mode)); +} + +void QCameraFocusControl_SetCustomFocusPoint(QtObjectPtr ptr, QtObjectPtr point){ + static_cast(ptr)->setCustomFocusPoint(*static_cast(point)); +} + +void QCameraFocusControl_SetFocusMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setFocusMode(static_cast(mode)); +} + +void QCameraFocusControl_SetFocusPointMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setFocusPointMode(static_cast(mode)); +} + +void QCameraFocusControl_DestroyQCameraFocusControl(QtObjectPtr ptr){ + static_cast(ptr)->~QCameraFocusControl(); +} + diff --git a/multimedia/qcamerafocuscontrol.go b/multimedia/qcamerafocuscontrol.go new file mode 100755 index 00000000..de85b1be --- /dev/null +++ b/multimedia/qcamerafocuscontrol.go @@ -0,0 +1,148 @@ +package multimedia + +//#include "qcamerafocuscontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QCameraFocusControl struct { + QMediaControl +} + +type QCameraFocusControlITF interface { + QMediaControlITF + QCameraFocusControlPTR() *QCameraFocusControl +} + +func PointerFromQCameraFocusControl(ptr QCameraFocusControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCameraFocusControlPTR().Pointer() + } + return nil +} + +func QCameraFocusControlFromPointer(ptr unsafe.Pointer) *QCameraFocusControl { + var n = new(QCameraFocusControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCameraFocusControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCameraFocusControl) QCameraFocusControlPTR() *QCameraFocusControl { + return ptr +} + +func (ptr *QCameraFocusControl) FocusMode() QCameraFocus__FocusMode { + if ptr.Pointer() != nil { + return QCameraFocus__FocusMode(C.QCameraFocusControl_FocusMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCameraFocusControl) ConnectFocusModeChanged(f func(mode QCameraFocus__FocusMode)) { + if ptr.Pointer() != nil { + C.QCameraFocusControl_ConnectFocusModeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "focusModeChanged", f) + } +} + +func (ptr *QCameraFocusControl) DisconnectFocusModeChanged() { + if ptr.Pointer() != nil { + C.QCameraFocusControl_DisconnectFocusModeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "focusModeChanged") + } +} + +//export callbackQCameraFocusControlFocusModeChanged +func callbackQCameraFocusControlFocusModeChanged(ptrName *C.char, mode C.int) { + qt.GetSignal(C.GoString(ptrName), "focusModeChanged").(func(QCameraFocus__FocusMode))(QCameraFocus__FocusMode(mode)) +} + +func (ptr *QCameraFocusControl) FocusPointMode() QCameraFocus__FocusPointMode { + if ptr.Pointer() != nil { + return QCameraFocus__FocusPointMode(C.QCameraFocusControl_FocusPointMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCameraFocusControl) ConnectFocusPointModeChanged(f func(mode QCameraFocus__FocusPointMode)) { + if ptr.Pointer() != nil { + C.QCameraFocusControl_ConnectFocusPointModeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "focusPointModeChanged", f) + } +} + +func (ptr *QCameraFocusControl) DisconnectFocusPointModeChanged() { + if ptr.Pointer() != nil { + C.QCameraFocusControl_DisconnectFocusPointModeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "focusPointModeChanged") + } +} + +//export callbackQCameraFocusControlFocusPointModeChanged +func callbackQCameraFocusControlFocusPointModeChanged(ptrName *C.char, mode C.int) { + qt.GetSignal(C.GoString(ptrName), "focusPointModeChanged").(func(QCameraFocus__FocusPointMode))(QCameraFocus__FocusPointMode(mode)) +} + +func (ptr *QCameraFocusControl) ConnectFocusZonesChanged(f func()) { + if ptr.Pointer() != nil { + C.QCameraFocusControl_ConnectFocusZonesChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "focusZonesChanged", f) + } +} + +func (ptr *QCameraFocusControl) DisconnectFocusZonesChanged() { + if ptr.Pointer() != nil { + C.QCameraFocusControl_DisconnectFocusZonesChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "focusZonesChanged") + } +} + +//export callbackQCameraFocusControlFocusZonesChanged +func callbackQCameraFocusControlFocusZonesChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "focusZonesChanged").(func())() +} + +func (ptr *QCameraFocusControl) IsFocusModeSupported(mode QCameraFocus__FocusMode) bool { + if ptr.Pointer() != nil { + return C.QCameraFocusControl_IsFocusModeSupported(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) != 0 + } + return false +} + +func (ptr *QCameraFocusControl) IsFocusPointModeSupported(mode QCameraFocus__FocusPointMode) bool { + if ptr.Pointer() != nil { + return C.QCameraFocusControl_IsFocusPointModeSupported(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) != 0 + } + return false +} + +func (ptr *QCameraFocusControl) SetCustomFocusPoint(point core.QPointFITF) { + if ptr.Pointer() != nil { + C.QCameraFocusControl_SetCustomFocusPoint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(point))) + } +} + +func (ptr *QCameraFocusControl) SetFocusMode(mode QCameraFocus__FocusMode) { + if ptr.Pointer() != nil { + C.QCameraFocusControl_SetFocusMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QCameraFocusControl) SetFocusPointMode(mode QCameraFocus__FocusPointMode) { + if ptr.Pointer() != nil { + C.QCameraFocusControl_SetFocusPointMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QCameraFocusControl) DestroyQCameraFocusControl() { + if ptr.Pointer() != nil { + C.QCameraFocusControl_DestroyQCameraFocusControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qcamerafocuscontrol.h b/multimedia/qcamerafocuscontrol.h new file mode 100755 index 00000000..5e908d6a --- /dev/null +++ b/multimedia/qcamerafocuscontrol.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QCameraFocusControl_FocusMode(QtObjectPtr ptr); +void QCameraFocusControl_ConnectFocusModeChanged(QtObjectPtr ptr); +void QCameraFocusControl_DisconnectFocusModeChanged(QtObjectPtr ptr); +int QCameraFocusControl_FocusPointMode(QtObjectPtr ptr); +void QCameraFocusControl_ConnectFocusPointModeChanged(QtObjectPtr ptr); +void QCameraFocusControl_DisconnectFocusPointModeChanged(QtObjectPtr ptr); +void QCameraFocusControl_ConnectFocusZonesChanged(QtObjectPtr ptr); +void QCameraFocusControl_DisconnectFocusZonesChanged(QtObjectPtr ptr); +int QCameraFocusControl_IsFocusModeSupported(QtObjectPtr ptr, int mode); +int QCameraFocusControl_IsFocusPointModeSupported(QtObjectPtr ptr, int mode); +void QCameraFocusControl_SetCustomFocusPoint(QtObjectPtr ptr, QtObjectPtr point); +void QCameraFocusControl_SetFocusMode(QtObjectPtr ptr, int mode); +void QCameraFocusControl_SetFocusPointMode(QtObjectPtr ptr, int mode); +void QCameraFocusControl_DestroyQCameraFocusControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qcamerafocuszone.cpp b/multimedia/qcamerafocuszone.cpp new file mode 100755 index 00000000..1a7c52a9 --- /dev/null +++ b/multimedia/qcamerafocuszone.cpp @@ -0,0 +1,30 @@ +#include "qcamerafocuszone.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCameraFocusZone: public QCameraFocusZone { +public: +}; + +QtObjectPtr QCameraFocusZone_NewQCameraFocusZone(QtObjectPtr other){ + return new QCameraFocusZone(*static_cast(other)); +} + +int QCameraFocusZone_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QCameraFocusZone_Status(QtObjectPtr ptr){ + return static_cast(ptr)->status(); +} + +void QCameraFocusZone_DestroyQCameraFocusZone(QtObjectPtr ptr){ + static_cast(ptr)->~QCameraFocusZone(); +} + diff --git a/multimedia/qcamerafocuszone.go b/multimedia/qcamerafocuszone.go new file mode 100755 index 00000000..ca896939 --- /dev/null +++ b/multimedia/qcamerafocuszone.go @@ -0,0 +1,74 @@ +package multimedia + +//#include "qcamerafocuszone.h" +import "C" +import ( + "unsafe" +) + +type QCameraFocusZone struct { + ptr unsafe.Pointer +} + +type QCameraFocusZoneITF interface { + QCameraFocusZonePTR() *QCameraFocusZone +} + +func (p *QCameraFocusZone) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QCameraFocusZone) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQCameraFocusZone(ptr QCameraFocusZoneITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCameraFocusZonePTR().Pointer() + } + return nil +} + +func QCameraFocusZoneFromPointer(ptr unsafe.Pointer) *QCameraFocusZone { + var n = new(QCameraFocusZone) + n.SetPointer(ptr) + return n +} + +func (ptr *QCameraFocusZone) QCameraFocusZonePTR() *QCameraFocusZone { + return ptr +} + +//QCameraFocusZone::FocusZoneStatus +type QCameraFocusZone__FocusZoneStatus int + +var ( + QCameraFocusZone__Invalid = QCameraFocusZone__FocusZoneStatus(0) + QCameraFocusZone__Unused = QCameraFocusZone__FocusZoneStatus(1) + QCameraFocusZone__Selected = QCameraFocusZone__FocusZoneStatus(2) + QCameraFocusZone__Focused = QCameraFocusZone__FocusZoneStatus(3) +) + +func NewQCameraFocusZone(other QCameraFocusZoneITF) *QCameraFocusZone { + return QCameraFocusZoneFromPointer(unsafe.Pointer(C.QCameraFocusZone_NewQCameraFocusZone(C.QtObjectPtr(PointerFromQCameraFocusZone(other))))) +} + +func (ptr *QCameraFocusZone) IsValid() bool { + if ptr.Pointer() != nil { + return C.QCameraFocusZone_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QCameraFocusZone) Status() QCameraFocusZone__FocusZoneStatus { + if ptr.Pointer() != nil { + return QCameraFocusZone__FocusZoneStatus(C.QCameraFocusZone_Status(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCameraFocusZone) DestroyQCameraFocusZone() { + if ptr.Pointer() != nil { + C.QCameraFocusZone_DestroyQCameraFocusZone(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/multimedia/qcamerafocuszone.h b/multimedia/qcamerafocuszone.h new file mode 100755 index 00000000..8e80a0ce --- /dev/null +++ b/multimedia/qcamerafocuszone.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QCameraFocusZone_NewQCameraFocusZone(QtObjectPtr other); +int QCameraFocusZone_IsValid(QtObjectPtr ptr); +int QCameraFocusZone_Status(QtObjectPtr ptr); +void QCameraFocusZone_DestroyQCameraFocusZone(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qcameraimagecapture.cpp b/multimedia/qcameraimagecapture.cpp new file mode 100755 index 00000000..22b76671 --- /dev/null +++ b/multimedia/qcameraimagecapture.cpp @@ -0,0 +1,141 @@ +#include "qcameraimagecapture.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCameraImageCapture: public QCameraImageCapture { +public: +void Signal_BufferFormatChanged(QVideoFrame::PixelFormat format){callbackQCameraImageCaptureBufferFormatChanged(this->objectName().toUtf8().data(), format);}; +void Signal_CaptureDestinationChanged(QCameraImageCapture::CaptureDestinations destination){callbackQCameraImageCaptureCaptureDestinationChanged(this->objectName().toUtf8().data(), destination);}; +void Signal_ImageExposed(int id){callbackQCameraImageCaptureImageExposed(this->objectName().toUtf8().data(), id);}; +void Signal_ImageMetadataAvailable(int id, const QString & key, const QVariant & value){callbackQCameraImageCaptureImageMetadataAvailable(this->objectName().toUtf8().data(), id, key.toUtf8().data(), value.toString().toUtf8().data());}; +void Signal_ImageSaved(int id, const QString & fileName){callbackQCameraImageCaptureImageSaved(this->objectName().toUtf8().data(), id, fileName.toUtf8().data());}; +void Signal_ReadyForCaptureChanged(bool ready){callbackQCameraImageCaptureReadyForCaptureChanged(this->objectName().toUtf8().data(), ready);}; +}; + +int QCameraImageCapture_IsReadyForCapture(QtObjectPtr ptr){ + return static_cast(ptr)->isReadyForCapture(); +} + +QtObjectPtr QCameraImageCapture_NewQCameraImageCapture(QtObjectPtr mediaObject, QtObjectPtr parent){ + return new QCameraImageCapture(static_cast(mediaObject), static_cast(parent)); +} + +int QCameraImageCapture_BufferFormat(QtObjectPtr ptr){ + return static_cast(ptr)->bufferFormat(); +} + +void QCameraImageCapture_ConnectBufferFormatChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraImageCapture::bufferFormatChanged), static_cast(ptr), static_cast(&MyQCameraImageCapture::Signal_BufferFormatChanged));; +} + +void QCameraImageCapture_DisconnectBufferFormatChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraImageCapture::bufferFormatChanged), static_cast(ptr), static_cast(&MyQCameraImageCapture::Signal_BufferFormatChanged));; +} + +void QCameraImageCapture_CancelCapture(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "cancelCapture"); +} + +int QCameraImageCapture_Capture(QtObjectPtr ptr, char* file){ + return QMetaObject::invokeMethod(static_cast(ptr), "capture", Q_ARG(QString, QString(file))); +} + +int QCameraImageCapture_CaptureDestination(QtObjectPtr ptr){ + return static_cast(ptr)->captureDestination(); +} + +void QCameraImageCapture_ConnectCaptureDestinationChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraImageCapture::captureDestinationChanged), static_cast(ptr), static_cast(&MyQCameraImageCapture::Signal_CaptureDestinationChanged));; +} + +void QCameraImageCapture_DisconnectCaptureDestinationChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraImageCapture::captureDestinationChanged), static_cast(ptr), static_cast(&MyQCameraImageCapture::Signal_CaptureDestinationChanged));; +} + +int QCameraImageCapture_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +char* QCameraImageCapture_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +char* QCameraImageCapture_ImageCodecDescription(QtObjectPtr ptr, char* codec){ + return static_cast(ptr)->imageCodecDescription(QString(codec)).toUtf8().data(); +} + +void QCameraImageCapture_ConnectImageExposed(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraImageCapture::imageExposed), static_cast(ptr), static_cast(&MyQCameraImageCapture::Signal_ImageExposed));; +} + +void QCameraImageCapture_DisconnectImageExposed(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraImageCapture::imageExposed), static_cast(ptr), static_cast(&MyQCameraImageCapture::Signal_ImageExposed));; +} + +void QCameraImageCapture_ConnectImageMetadataAvailable(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraImageCapture::imageMetadataAvailable), static_cast(ptr), static_cast(&MyQCameraImageCapture::Signal_ImageMetadataAvailable));; +} + +void QCameraImageCapture_DisconnectImageMetadataAvailable(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraImageCapture::imageMetadataAvailable), static_cast(ptr), static_cast(&MyQCameraImageCapture::Signal_ImageMetadataAvailable));; +} + +void QCameraImageCapture_ConnectImageSaved(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraImageCapture::imageSaved), static_cast(ptr), static_cast(&MyQCameraImageCapture::Signal_ImageSaved));; +} + +void QCameraImageCapture_DisconnectImageSaved(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraImageCapture::imageSaved), static_cast(ptr), static_cast(&MyQCameraImageCapture::Signal_ImageSaved));; +} + +int QCameraImageCapture_IsAvailable(QtObjectPtr ptr){ + return static_cast(ptr)->isAvailable(); +} + +int QCameraImageCapture_IsCaptureDestinationSupported(QtObjectPtr ptr, int destination){ + return static_cast(ptr)->isCaptureDestinationSupported(static_cast(destination)); +} + +QtObjectPtr QCameraImageCapture_MediaObject(QtObjectPtr ptr){ + return static_cast(ptr)->mediaObject(); +} + +void QCameraImageCapture_ConnectReadyForCaptureChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraImageCapture::readyForCaptureChanged), static_cast(ptr), static_cast(&MyQCameraImageCapture::Signal_ReadyForCaptureChanged));; +} + +void QCameraImageCapture_DisconnectReadyForCaptureChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraImageCapture::readyForCaptureChanged), static_cast(ptr), static_cast(&MyQCameraImageCapture::Signal_ReadyForCaptureChanged));; +} + +void QCameraImageCapture_SetBufferFormat(QtObjectPtr ptr, int format){ + static_cast(ptr)->setBufferFormat(static_cast(format)); +} + +void QCameraImageCapture_SetCaptureDestination(QtObjectPtr ptr, int destination){ + static_cast(ptr)->setCaptureDestination(static_cast(destination)); +} + +void QCameraImageCapture_SetEncodingSettings(QtObjectPtr ptr, QtObjectPtr settings){ + static_cast(ptr)->setEncodingSettings(*static_cast(settings)); +} + +char* QCameraImageCapture_SupportedImageCodecs(QtObjectPtr ptr){ + return static_cast(ptr)->supportedImageCodecs().join("|").toUtf8().data(); +} + +void QCameraImageCapture_DestroyQCameraImageCapture(QtObjectPtr ptr){ + static_cast(ptr)->~QCameraImageCapture(); +} + diff --git a/multimedia/qcameraimagecapture.go b/multimedia/qcameraimagecapture.go new file mode 100755 index 00000000..296c022a --- /dev/null +++ b/multimedia/qcameraimagecapture.go @@ -0,0 +1,303 @@ +package multimedia + +//#include "qcameraimagecapture.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QCameraImageCapture struct { + core.QObject + QMediaBindableInterface +} + +type QCameraImageCaptureITF interface { + core.QObjectITF + QMediaBindableInterfaceITF + QCameraImageCapturePTR() *QCameraImageCapture +} + +func (p *QCameraImageCapture) Pointer() unsafe.Pointer { + return p.QObjectPTR().Pointer() +} + +func (p *QCameraImageCapture) SetPointer(ptr unsafe.Pointer) { + p.QObjectPTR().SetPointer(ptr) + p.QMediaBindableInterfacePTR().SetPointer(ptr) +} + +func PointerFromQCameraImageCapture(ptr QCameraImageCaptureITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCameraImageCapturePTR().Pointer() + } + return nil +} + +func QCameraImageCaptureFromPointer(ptr unsafe.Pointer) *QCameraImageCapture { + var n = new(QCameraImageCapture) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCameraImageCapture_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCameraImageCapture) QCameraImageCapturePTR() *QCameraImageCapture { + return ptr +} + +//QCameraImageCapture::CaptureDestination +type QCameraImageCapture__CaptureDestination int + +var ( + QCameraImageCapture__CaptureToFile = QCameraImageCapture__CaptureDestination(0x01) + QCameraImageCapture__CaptureToBuffer = QCameraImageCapture__CaptureDestination(0x02) +) + +//QCameraImageCapture::DriveMode +type QCameraImageCapture__DriveMode int + +var ( + QCameraImageCapture__SingleImageCapture = QCameraImageCapture__DriveMode(0) +) + +//QCameraImageCapture::Error +type QCameraImageCapture__Error int + +var ( + QCameraImageCapture__NoError = QCameraImageCapture__Error(0) + QCameraImageCapture__NotReadyError = QCameraImageCapture__Error(1) + QCameraImageCapture__ResourceError = QCameraImageCapture__Error(2) + QCameraImageCapture__OutOfSpaceError = QCameraImageCapture__Error(3) + QCameraImageCapture__NotSupportedFeatureError = QCameraImageCapture__Error(4) + QCameraImageCapture__FormatError = QCameraImageCapture__Error(5) +) + +func (ptr *QCameraImageCapture) IsReadyForCapture() bool { + if ptr.Pointer() != nil { + return C.QCameraImageCapture_IsReadyForCapture(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func NewQCameraImageCapture(mediaObject QMediaObjectITF, parent core.QObjectITF) *QCameraImageCapture { + return QCameraImageCaptureFromPointer(unsafe.Pointer(C.QCameraImageCapture_NewQCameraImageCapture(C.QtObjectPtr(PointerFromQMediaObject(mediaObject)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QCameraImageCapture) BufferFormat() QVideoFrame__PixelFormat { + if ptr.Pointer() != nil { + return QVideoFrame__PixelFormat(C.QCameraImageCapture_BufferFormat(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCameraImageCapture) ConnectBufferFormatChanged(f func(format QVideoFrame__PixelFormat)) { + if ptr.Pointer() != nil { + C.QCameraImageCapture_ConnectBufferFormatChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "bufferFormatChanged", f) + } +} + +func (ptr *QCameraImageCapture) DisconnectBufferFormatChanged() { + if ptr.Pointer() != nil { + C.QCameraImageCapture_DisconnectBufferFormatChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "bufferFormatChanged") + } +} + +//export callbackQCameraImageCaptureBufferFormatChanged +func callbackQCameraImageCaptureBufferFormatChanged(ptrName *C.char, format C.int) { + qt.GetSignal(C.GoString(ptrName), "bufferFormatChanged").(func(QVideoFrame__PixelFormat))(QVideoFrame__PixelFormat(format)) +} + +func (ptr *QCameraImageCapture) CancelCapture() { + if ptr.Pointer() != nil { + C.QCameraImageCapture_CancelCapture(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QCameraImageCapture) Capture(file string) int { + if ptr.Pointer() != nil { + return int(C.QCameraImageCapture_Capture(C.QtObjectPtr(ptr.Pointer()), C.CString(file))) + } + return 0 +} + +func (ptr *QCameraImageCapture) CaptureDestination() QCameraImageCapture__CaptureDestination { + if ptr.Pointer() != nil { + return QCameraImageCapture__CaptureDestination(C.QCameraImageCapture_CaptureDestination(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCameraImageCapture) ConnectCaptureDestinationChanged(f func(destination QCameraImageCapture__CaptureDestination)) { + if ptr.Pointer() != nil { + C.QCameraImageCapture_ConnectCaptureDestinationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "captureDestinationChanged", f) + } +} + +func (ptr *QCameraImageCapture) DisconnectCaptureDestinationChanged() { + if ptr.Pointer() != nil { + C.QCameraImageCapture_DisconnectCaptureDestinationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "captureDestinationChanged") + } +} + +//export callbackQCameraImageCaptureCaptureDestinationChanged +func callbackQCameraImageCaptureCaptureDestinationChanged(ptrName *C.char, destination C.int) { + qt.GetSignal(C.GoString(ptrName), "captureDestinationChanged").(func(QCameraImageCapture__CaptureDestination))(QCameraImageCapture__CaptureDestination(destination)) +} + +func (ptr *QCameraImageCapture) Error() QCameraImageCapture__Error { + if ptr.Pointer() != nil { + return QCameraImageCapture__Error(C.QCameraImageCapture_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCameraImageCapture) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QCameraImageCapture_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QCameraImageCapture) ImageCodecDescription(codec string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QCameraImageCapture_ImageCodecDescription(C.QtObjectPtr(ptr.Pointer()), C.CString(codec))) + } + return "" +} + +func (ptr *QCameraImageCapture) ConnectImageExposed(f func(id int)) { + if ptr.Pointer() != nil { + C.QCameraImageCapture_ConnectImageExposed(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "imageExposed", f) + } +} + +func (ptr *QCameraImageCapture) DisconnectImageExposed() { + if ptr.Pointer() != nil { + C.QCameraImageCapture_DisconnectImageExposed(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "imageExposed") + } +} + +//export callbackQCameraImageCaptureImageExposed +func callbackQCameraImageCaptureImageExposed(ptrName *C.char, id C.int) { + qt.GetSignal(C.GoString(ptrName), "imageExposed").(func(int))(int(id)) +} + +func (ptr *QCameraImageCapture) ConnectImageMetadataAvailable(f func(id int, key string, value string)) { + if ptr.Pointer() != nil { + C.QCameraImageCapture_ConnectImageMetadataAvailable(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "imageMetadataAvailable", f) + } +} + +func (ptr *QCameraImageCapture) DisconnectImageMetadataAvailable() { + if ptr.Pointer() != nil { + C.QCameraImageCapture_DisconnectImageMetadataAvailable(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "imageMetadataAvailable") + } +} + +//export callbackQCameraImageCaptureImageMetadataAvailable +func callbackQCameraImageCaptureImageMetadataAvailable(ptrName *C.char, id C.int, key *C.char, value *C.char) { + qt.GetSignal(C.GoString(ptrName), "imageMetadataAvailable").(func(int, string, string))(int(id), C.GoString(key), C.GoString(value)) +} + +func (ptr *QCameraImageCapture) ConnectImageSaved(f func(id int, fileName string)) { + if ptr.Pointer() != nil { + C.QCameraImageCapture_ConnectImageSaved(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "imageSaved", f) + } +} + +func (ptr *QCameraImageCapture) DisconnectImageSaved() { + if ptr.Pointer() != nil { + C.QCameraImageCapture_DisconnectImageSaved(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "imageSaved") + } +} + +//export callbackQCameraImageCaptureImageSaved +func callbackQCameraImageCaptureImageSaved(ptrName *C.char, id C.int, fileName *C.char) { + qt.GetSignal(C.GoString(ptrName), "imageSaved").(func(int, string))(int(id), C.GoString(fileName)) +} + +func (ptr *QCameraImageCapture) IsAvailable() bool { + if ptr.Pointer() != nil { + return C.QCameraImageCapture_IsAvailable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QCameraImageCapture) IsCaptureDestinationSupported(destination QCameraImageCapture__CaptureDestination) bool { + if ptr.Pointer() != nil { + return C.QCameraImageCapture_IsCaptureDestinationSupported(C.QtObjectPtr(ptr.Pointer()), C.int(destination)) != 0 + } + return false +} + +func (ptr *QCameraImageCapture) MediaObject() *QMediaObject { + if ptr.Pointer() != nil { + return QMediaObjectFromPointer(unsafe.Pointer(C.QCameraImageCapture_MediaObject(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QCameraImageCapture) ConnectReadyForCaptureChanged(f func(ready bool)) { + if ptr.Pointer() != nil { + C.QCameraImageCapture_ConnectReadyForCaptureChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "readyForCaptureChanged", f) + } +} + +func (ptr *QCameraImageCapture) DisconnectReadyForCaptureChanged() { + if ptr.Pointer() != nil { + C.QCameraImageCapture_DisconnectReadyForCaptureChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "readyForCaptureChanged") + } +} + +//export callbackQCameraImageCaptureReadyForCaptureChanged +func callbackQCameraImageCaptureReadyForCaptureChanged(ptrName *C.char, ready C.int) { + qt.GetSignal(C.GoString(ptrName), "readyForCaptureChanged").(func(bool))(int(ready) != 0) +} + +func (ptr *QCameraImageCapture) SetBufferFormat(format QVideoFrame__PixelFormat) { + if ptr.Pointer() != nil { + C.QCameraImageCapture_SetBufferFormat(C.QtObjectPtr(ptr.Pointer()), C.int(format)) + } +} + +func (ptr *QCameraImageCapture) SetCaptureDestination(destination QCameraImageCapture__CaptureDestination) { + if ptr.Pointer() != nil { + C.QCameraImageCapture_SetCaptureDestination(C.QtObjectPtr(ptr.Pointer()), C.int(destination)) + } +} + +func (ptr *QCameraImageCapture) SetEncodingSettings(settings QImageEncoderSettingsITF) { + if ptr.Pointer() != nil { + C.QCameraImageCapture_SetEncodingSettings(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQImageEncoderSettings(settings))) + } +} + +func (ptr *QCameraImageCapture) SupportedImageCodecs() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QCameraImageCapture_SupportedImageCodecs(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QCameraImageCapture) DestroyQCameraImageCapture() { + if ptr.Pointer() != nil { + C.QCameraImageCapture_DestroyQCameraImageCapture(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qcameraimagecapture.h b/multimedia/qcameraimagecapture.h new file mode 100755 index 00000000..7db65579 --- /dev/null +++ b/multimedia/qcameraimagecapture.h @@ -0,0 +1,38 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QCameraImageCapture_IsReadyForCapture(QtObjectPtr ptr); +QtObjectPtr QCameraImageCapture_NewQCameraImageCapture(QtObjectPtr mediaObject, QtObjectPtr parent); +int QCameraImageCapture_BufferFormat(QtObjectPtr ptr); +void QCameraImageCapture_ConnectBufferFormatChanged(QtObjectPtr ptr); +void QCameraImageCapture_DisconnectBufferFormatChanged(QtObjectPtr ptr); +void QCameraImageCapture_CancelCapture(QtObjectPtr ptr); +int QCameraImageCapture_Capture(QtObjectPtr ptr, char* file); +int QCameraImageCapture_CaptureDestination(QtObjectPtr ptr); +void QCameraImageCapture_ConnectCaptureDestinationChanged(QtObjectPtr ptr); +void QCameraImageCapture_DisconnectCaptureDestinationChanged(QtObjectPtr ptr); +int QCameraImageCapture_Error(QtObjectPtr ptr); +char* QCameraImageCapture_ErrorString(QtObjectPtr ptr); +char* QCameraImageCapture_ImageCodecDescription(QtObjectPtr ptr, char* codec); +void QCameraImageCapture_ConnectImageExposed(QtObjectPtr ptr); +void QCameraImageCapture_DisconnectImageExposed(QtObjectPtr ptr); +void QCameraImageCapture_ConnectImageMetadataAvailable(QtObjectPtr ptr); +void QCameraImageCapture_DisconnectImageMetadataAvailable(QtObjectPtr ptr); +void QCameraImageCapture_ConnectImageSaved(QtObjectPtr ptr); +void QCameraImageCapture_DisconnectImageSaved(QtObjectPtr ptr); +int QCameraImageCapture_IsAvailable(QtObjectPtr ptr); +int QCameraImageCapture_IsCaptureDestinationSupported(QtObjectPtr ptr, int destination); +QtObjectPtr QCameraImageCapture_MediaObject(QtObjectPtr ptr); +void QCameraImageCapture_ConnectReadyForCaptureChanged(QtObjectPtr ptr); +void QCameraImageCapture_DisconnectReadyForCaptureChanged(QtObjectPtr ptr); +void QCameraImageCapture_SetBufferFormat(QtObjectPtr ptr, int format); +void QCameraImageCapture_SetCaptureDestination(QtObjectPtr ptr, int destination); +void QCameraImageCapture_SetEncodingSettings(QtObjectPtr ptr, QtObjectPtr settings); +char* QCameraImageCapture_SupportedImageCodecs(QtObjectPtr ptr); +void QCameraImageCapture_DestroyQCameraImageCapture(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qcameraimagecapturecontrol.cpp b/multimedia/qcameraimagecapturecontrol.cpp new file mode 100755 index 00000000..c87eaea1 --- /dev/null +++ b/multimedia/qcameraimagecapturecontrol.cpp @@ -0,0 +1,84 @@ +#include "qcameraimagecapturecontrol.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCameraImageCaptureControl: public QCameraImageCaptureControl { +public: +void Signal_Error(int id, int error, const QString & errorString){callbackQCameraImageCaptureControlError(this->objectName().toUtf8().data(), id, error, errorString.toUtf8().data());}; +void Signal_ImageExposed(int requestId){callbackQCameraImageCaptureControlImageExposed(this->objectName().toUtf8().data(), requestId);}; +void Signal_ImageMetadataAvailable(int id, const QString & key, const QVariant & value){callbackQCameraImageCaptureControlImageMetadataAvailable(this->objectName().toUtf8().data(), id, key.toUtf8().data(), value.toString().toUtf8().data());}; +void Signal_ImageSaved(int requestId, const QString & fileName){callbackQCameraImageCaptureControlImageSaved(this->objectName().toUtf8().data(), requestId, fileName.toUtf8().data());}; +void Signal_ReadyForCaptureChanged(bool ready){callbackQCameraImageCaptureControlReadyForCaptureChanged(this->objectName().toUtf8().data(), ready);}; +}; + +void QCameraImageCaptureControl_CancelCapture(QtObjectPtr ptr){ + static_cast(ptr)->cancelCapture(); +} + +int QCameraImageCaptureControl_Capture(QtObjectPtr ptr, char* fileName){ + return static_cast(ptr)->capture(QString(fileName)); +} + +int QCameraImageCaptureControl_DriveMode(QtObjectPtr ptr){ + return static_cast(ptr)->driveMode(); +} + +void QCameraImageCaptureControl_ConnectError(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraImageCaptureControl::error), static_cast(ptr), static_cast(&MyQCameraImageCaptureControl::Signal_Error));; +} + +void QCameraImageCaptureControl_DisconnectError(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraImageCaptureControl::error), static_cast(ptr), static_cast(&MyQCameraImageCaptureControl::Signal_Error));; +} + +void QCameraImageCaptureControl_ConnectImageExposed(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraImageCaptureControl::imageExposed), static_cast(ptr), static_cast(&MyQCameraImageCaptureControl::Signal_ImageExposed));; +} + +void QCameraImageCaptureControl_DisconnectImageExposed(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraImageCaptureControl::imageExposed), static_cast(ptr), static_cast(&MyQCameraImageCaptureControl::Signal_ImageExposed));; +} + +void QCameraImageCaptureControl_ConnectImageMetadataAvailable(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraImageCaptureControl::imageMetadataAvailable), static_cast(ptr), static_cast(&MyQCameraImageCaptureControl::Signal_ImageMetadataAvailable));; +} + +void QCameraImageCaptureControl_DisconnectImageMetadataAvailable(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraImageCaptureControl::imageMetadataAvailable), static_cast(ptr), static_cast(&MyQCameraImageCaptureControl::Signal_ImageMetadataAvailable));; +} + +void QCameraImageCaptureControl_ConnectImageSaved(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraImageCaptureControl::imageSaved), static_cast(ptr), static_cast(&MyQCameraImageCaptureControl::Signal_ImageSaved));; +} + +void QCameraImageCaptureControl_DisconnectImageSaved(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraImageCaptureControl::imageSaved), static_cast(ptr), static_cast(&MyQCameraImageCaptureControl::Signal_ImageSaved));; +} + +int QCameraImageCaptureControl_IsReadyForCapture(QtObjectPtr ptr){ + return static_cast(ptr)->isReadyForCapture(); +} + +void QCameraImageCaptureControl_ConnectReadyForCaptureChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraImageCaptureControl::readyForCaptureChanged), static_cast(ptr), static_cast(&MyQCameraImageCaptureControl::Signal_ReadyForCaptureChanged));; +} + +void QCameraImageCaptureControl_DisconnectReadyForCaptureChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraImageCaptureControl::readyForCaptureChanged), static_cast(ptr), static_cast(&MyQCameraImageCaptureControl::Signal_ReadyForCaptureChanged));; +} + +void QCameraImageCaptureControl_SetDriveMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setDriveMode(static_cast(mode)); +} + +void QCameraImageCaptureControl_DestroyQCameraImageCaptureControl(QtObjectPtr ptr){ + static_cast(ptr)->~QCameraImageCaptureControl(); +} + diff --git a/multimedia/qcameraimagecapturecontrol.go b/multimedia/qcameraimagecapturecontrol.go new file mode 100755 index 00000000..8db87ecb --- /dev/null +++ b/multimedia/qcameraimagecapturecontrol.go @@ -0,0 +1,172 @@ +package multimedia + +//#include "qcameraimagecapturecontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QCameraImageCaptureControl struct { + QMediaControl +} + +type QCameraImageCaptureControlITF interface { + QMediaControlITF + QCameraImageCaptureControlPTR() *QCameraImageCaptureControl +} + +func PointerFromQCameraImageCaptureControl(ptr QCameraImageCaptureControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCameraImageCaptureControlPTR().Pointer() + } + return nil +} + +func QCameraImageCaptureControlFromPointer(ptr unsafe.Pointer) *QCameraImageCaptureControl { + var n = new(QCameraImageCaptureControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCameraImageCaptureControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCameraImageCaptureControl) QCameraImageCaptureControlPTR() *QCameraImageCaptureControl { + return ptr +} + +func (ptr *QCameraImageCaptureControl) CancelCapture() { + if ptr.Pointer() != nil { + C.QCameraImageCaptureControl_CancelCapture(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QCameraImageCaptureControl) Capture(fileName string) int { + if ptr.Pointer() != nil { + return int(C.QCameraImageCaptureControl_Capture(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName))) + } + return 0 +} + +func (ptr *QCameraImageCaptureControl) DriveMode() QCameraImageCapture__DriveMode { + if ptr.Pointer() != nil { + return QCameraImageCapture__DriveMode(C.QCameraImageCaptureControl_DriveMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCameraImageCaptureControl) ConnectError(f func(id int, error int, errorString string)) { + if ptr.Pointer() != nil { + C.QCameraImageCaptureControl_ConnectError(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "error", f) + } +} + +func (ptr *QCameraImageCaptureControl) DisconnectError() { + if ptr.Pointer() != nil { + C.QCameraImageCaptureControl_DisconnectError(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "error") + } +} + +//export callbackQCameraImageCaptureControlError +func callbackQCameraImageCaptureControlError(ptrName *C.char, id C.int, error C.int, errorString *C.char) { + qt.GetSignal(C.GoString(ptrName), "error").(func(int, int, string))(int(id), int(error), C.GoString(errorString)) +} + +func (ptr *QCameraImageCaptureControl) ConnectImageExposed(f func(requestId int)) { + if ptr.Pointer() != nil { + C.QCameraImageCaptureControl_ConnectImageExposed(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "imageExposed", f) + } +} + +func (ptr *QCameraImageCaptureControl) DisconnectImageExposed() { + if ptr.Pointer() != nil { + C.QCameraImageCaptureControl_DisconnectImageExposed(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "imageExposed") + } +} + +//export callbackQCameraImageCaptureControlImageExposed +func callbackQCameraImageCaptureControlImageExposed(ptrName *C.char, requestId C.int) { + qt.GetSignal(C.GoString(ptrName), "imageExposed").(func(int))(int(requestId)) +} + +func (ptr *QCameraImageCaptureControl) ConnectImageMetadataAvailable(f func(id int, key string, value string)) { + if ptr.Pointer() != nil { + C.QCameraImageCaptureControl_ConnectImageMetadataAvailable(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "imageMetadataAvailable", f) + } +} + +func (ptr *QCameraImageCaptureControl) DisconnectImageMetadataAvailable() { + if ptr.Pointer() != nil { + C.QCameraImageCaptureControl_DisconnectImageMetadataAvailable(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "imageMetadataAvailable") + } +} + +//export callbackQCameraImageCaptureControlImageMetadataAvailable +func callbackQCameraImageCaptureControlImageMetadataAvailable(ptrName *C.char, id C.int, key *C.char, value *C.char) { + qt.GetSignal(C.GoString(ptrName), "imageMetadataAvailable").(func(int, string, string))(int(id), C.GoString(key), C.GoString(value)) +} + +func (ptr *QCameraImageCaptureControl) ConnectImageSaved(f func(requestId int, fileName string)) { + if ptr.Pointer() != nil { + C.QCameraImageCaptureControl_ConnectImageSaved(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "imageSaved", f) + } +} + +func (ptr *QCameraImageCaptureControl) DisconnectImageSaved() { + if ptr.Pointer() != nil { + C.QCameraImageCaptureControl_DisconnectImageSaved(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "imageSaved") + } +} + +//export callbackQCameraImageCaptureControlImageSaved +func callbackQCameraImageCaptureControlImageSaved(ptrName *C.char, requestId C.int, fileName *C.char) { + qt.GetSignal(C.GoString(ptrName), "imageSaved").(func(int, string))(int(requestId), C.GoString(fileName)) +} + +func (ptr *QCameraImageCaptureControl) IsReadyForCapture() bool { + if ptr.Pointer() != nil { + return C.QCameraImageCaptureControl_IsReadyForCapture(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QCameraImageCaptureControl) ConnectReadyForCaptureChanged(f func(ready bool)) { + if ptr.Pointer() != nil { + C.QCameraImageCaptureControl_ConnectReadyForCaptureChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "readyForCaptureChanged", f) + } +} + +func (ptr *QCameraImageCaptureControl) DisconnectReadyForCaptureChanged() { + if ptr.Pointer() != nil { + C.QCameraImageCaptureControl_DisconnectReadyForCaptureChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "readyForCaptureChanged") + } +} + +//export callbackQCameraImageCaptureControlReadyForCaptureChanged +func callbackQCameraImageCaptureControlReadyForCaptureChanged(ptrName *C.char, ready C.int) { + qt.GetSignal(C.GoString(ptrName), "readyForCaptureChanged").(func(bool))(int(ready) != 0) +} + +func (ptr *QCameraImageCaptureControl) SetDriveMode(mode QCameraImageCapture__DriveMode) { + if ptr.Pointer() != nil { + C.QCameraImageCaptureControl_SetDriveMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QCameraImageCaptureControl) DestroyQCameraImageCaptureControl() { + if ptr.Pointer() != nil { + C.QCameraImageCaptureControl_DestroyQCameraImageCaptureControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qcameraimagecapturecontrol.h b/multimedia/qcameraimagecapturecontrol.h new file mode 100755 index 00000000..425530d5 --- /dev/null +++ b/multimedia/qcameraimagecapturecontrol.h @@ -0,0 +1,25 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QCameraImageCaptureControl_CancelCapture(QtObjectPtr ptr); +int QCameraImageCaptureControl_Capture(QtObjectPtr ptr, char* fileName); +int QCameraImageCaptureControl_DriveMode(QtObjectPtr ptr); +void QCameraImageCaptureControl_ConnectError(QtObjectPtr ptr); +void QCameraImageCaptureControl_DisconnectError(QtObjectPtr ptr); +void QCameraImageCaptureControl_ConnectImageExposed(QtObjectPtr ptr); +void QCameraImageCaptureControl_DisconnectImageExposed(QtObjectPtr ptr); +void QCameraImageCaptureControl_ConnectImageMetadataAvailable(QtObjectPtr ptr); +void QCameraImageCaptureControl_DisconnectImageMetadataAvailable(QtObjectPtr ptr); +void QCameraImageCaptureControl_ConnectImageSaved(QtObjectPtr ptr); +void QCameraImageCaptureControl_DisconnectImageSaved(QtObjectPtr ptr); +int QCameraImageCaptureControl_IsReadyForCapture(QtObjectPtr ptr); +void QCameraImageCaptureControl_ConnectReadyForCaptureChanged(QtObjectPtr ptr); +void QCameraImageCaptureControl_DisconnectReadyForCaptureChanged(QtObjectPtr ptr); +void QCameraImageCaptureControl_SetDriveMode(QtObjectPtr ptr, int mode); +void QCameraImageCaptureControl_DestroyQCameraImageCaptureControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qcameraimageprocessing.cpp b/multimedia/qcameraimageprocessing.cpp new file mode 100755 index 00000000..9544a9b3 --- /dev/null +++ b/multimedia/qcameraimageprocessing.cpp @@ -0,0 +1,41 @@ +#include "qcameraimageprocessing.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCameraImageProcessing: public QCameraImageProcessing { +public: +}; + +int QCameraImageProcessing_ColorFilter(QtObjectPtr ptr){ + return static_cast(ptr)->colorFilter(); +} + +int QCameraImageProcessing_IsAvailable(QtObjectPtr ptr){ + return static_cast(ptr)->isAvailable(); +} + +int QCameraImageProcessing_IsColorFilterSupported(QtObjectPtr ptr, int filter){ + return static_cast(ptr)->isColorFilterSupported(static_cast(filter)); +} + +int QCameraImageProcessing_IsWhiteBalanceModeSupported(QtObjectPtr ptr, int mode){ + return static_cast(ptr)->isWhiteBalanceModeSupported(static_cast(mode)); +} + +void QCameraImageProcessing_SetColorFilter(QtObjectPtr ptr, int filter){ + static_cast(ptr)->setColorFilter(static_cast(filter)); +} + +void QCameraImageProcessing_SetWhiteBalanceMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setWhiteBalanceMode(static_cast(mode)); +} + +int QCameraImageProcessing_WhiteBalanceMode(QtObjectPtr ptr){ + return static_cast(ptr)->whiteBalanceMode(); +} + diff --git a/multimedia/qcameraimageprocessing.go b/multimedia/qcameraimageprocessing.go new file mode 100755 index 00000000..b49d0e9a --- /dev/null +++ b/multimedia/qcameraimageprocessing.go @@ -0,0 +1,117 @@ +package multimedia + +//#include "qcameraimageprocessing.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QCameraImageProcessing struct { + core.QObject +} + +type QCameraImageProcessingITF interface { + core.QObjectITF + QCameraImageProcessingPTR() *QCameraImageProcessing +} + +func PointerFromQCameraImageProcessing(ptr QCameraImageProcessingITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCameraImageProcessingPTR().Pointer() + } + return nil +} + +func QCameraImageProcessingFromPointer(ptr unsafe.Pointer) *QCameraImageProcessing { + var n = new(QCameraImageProcessing) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCameraImageProcessing_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCameraImageProcessing) QCameraImageProcessingPTR() *QCameraImageProcessing { + return ptr +} + +//QCameraImageProcessing::ColorFilter +type QCameraImageProcessing__ColorFilter int + +var ( + QCameraImageProcessing__ColorFilterNone = QCameraImageProcessing__ColorFilter(0) + QCameraImageProcessing__ColorFilterGrayscale = QCameraImageProcessing__ColorFilter(1) + QCameraImageProcessing__ColorFilterNegative = QCameraImageProcessing__ColorFilter(2) + QCameraImageProcessing__ColorFilterSolarize = QCameraImageProcessing__ColorFilter(3) + QCameraImageProcessing__ColorFilterSepia = QCameraImageProcessing__ColorFilter(4) + QCameraImageProcessing__ColorFilterPosterize = QCameraImageProcessing__ColorFilter(5) + QCameraImageProcessing__ColorFilterWhiteboard = QCameraImageProcessing__ColorFilter(6) + QCameraImageProcessing__ColorFilterBlackboard = QCameraImageProcessing__ColorFilter(7) + QCameraImageProcessing__ColorFilterAqua = QCameraImageProcessing__ColorFilter(8) + QCameraImageProcessing__ColorFilterVendor = QCameraImageProcessing__ColorFilter(1000) +) + +//QCameraImageProcessing::WhiteBalanceMode +type QCameraImageProcessing__WhiteBalanceMode int + +var ( + QCameraImageProcessing__WhiteBalanceAuto = QCameraImageProcessing__WhiteBalanceMode(0) + QCameraImageProcessing__WhiteBalanceManual = QCameraImageProcessing__WhiteBalanceMode(1) + QCameraImageProcessing__WhiteBalanceSunlight = QCameraImageProcessing__WhiteBalanceMode(2) + QCameraImageProcessing__WhiteBalanceCloudy = QCameraImageProcessing__WhiteBalanceMode(3) + QCameraImageProcessing__WhiteBalanceShade = QCameraImageProcessing__WhiteBalanceMode(4) + QCameraImageProcessing__WhiteBalanceTungsten = QCameraImageProcessing__WhiteBalanceMode(5) + QCameraImageProcessing__WhiteBalanceFluorescent = QCameraImageProcessing__WhiteBalanceMode(6) + QCameraImageProcessing__WhiteBalanceFlash = QCameraImageProcessing__WhiteBalanceMode(7) + QCameraImageProcessing__WhiteBalanceSunset = QCameraImageProcessing__WhiteBalanceMode(8) + QCameraImageProcessing__WhiteBalanceVendor = QCameraImageProcessing__WhiteBalanceMode(1000) +) + +func (ptr *QCameraImageProcessing) ColorFilter() QCameraImageProcessing__ColorFilter { + if ptr.Pointer() != nil { + return QCameraImageProcessing__ColorFilter(C.QCameraImageProcessing_ColorFilter(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCameraImageProcessing) IsAvailable() bool { + if ptr.Pointer() != nil { + return C.QCameraImageProcessing_IsAvailable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QCameraImageProcessing) IsColorFilterSupported(filter QCameraImageProcessing__ColorFilter) bool { + if ptr.Pointer() != nil { + return C.QCameraImageProcessing_IsColorFilterSupported(C.QtObjectPtr(ptr.Pointer()), C.int(filter)) != 0 + } + return false +} + +func (ptr *QCameraImageProcessing) IsWhiteBalanceModeSupported(mode QCameraImageProcessing__WhiteBalanceMode) bool { + if ptr.Pointer() != nil { + return C.QCameraImageProcessing_IsWhiteBalanceModeSupported(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) != 0 + } + return false +} + +func (ptr *QCameraImageProcessing) SetColorFilter(filter QCameraImageProcessing__ColorFilter) { + if ptr.Pointer() != nil { + C.QCameraImageProcessing_SetColorFilter(C.QtObjectPtr(ptr.Pointer()), C.int(filter)) + } +} + +func (ptr *QCameraImageProcessing) SetWhiteBalanceMode(mode QCameraImageProcessing__WhiteBalanceMode) { + if ptr.Pointer() != nil { + C.QCameraImageProcessing_SetWhiteBalanceMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QCameraImageProcessing) WhiteBalanceMode() QCameraImageProcessing__WhiteBalanceMode { + if ptr.Pointer() != nil { + return QCameraImageProcessing__WhiteBalanceMode(C.QCameraImageProcessing_WhiteBalanceMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/multimedia/qcameraimageprocessing.h b/multimedia/qcameraimageprocessing.h new file mode 100755 index 00000000..d0445f16 --- /dev/null +++ b/multimedia/qcameraimageprocessing.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QCameraImageProcessing_ColorFilter(QtObjectPtr ptr); +int QCameraImageProcessing_IsAvailable(QtObjectPtr ptr); +int QCameraImageProcessing_IsColorFilterSupported(QtObjectPtr ptr, int filter); +int QCameraImageProcessing_IsWhiteBalanceModeSupported(QtObjectPtr ptr, int mode); +void QCameraImageProcessing_SetColorFilter(QtObjectPtr ptr, int filter); +void QCameraImageProcessing_SetWhiteBalanceMode(QtObjectPtr ptr, int mode); +int QCameraImageProcessing_WhiteBalanceMode(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qcameraimageprocessingcontrol.cpp b/multimedia/qcameraimageprocessingcontrol.cpp new file mode 100755 index 00000000..c6a146a6 --- /dev/null +++ b/multimedia/qcameraimageprocessingcontrol.cpp @@ -0,0 +1,34 @@ +#include "qcameraimageprocessingcontrol.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCameraImageProcessingControl: public QCameraImageProcessingControl { +public: +}; + +int QCameraImageProcessingControl_IsParameterSupported(QtObjectPtr ptr, int parameter){ + return static_cast(ptr)->isParameterSupported(static_cast(parameter)); +} + +int QCameraImageProcessingControl_IsParameterValueSupported(QtObjectPtr ptr, int parameter, char* value){ + return static_cast(ptr)->isParameterValueSupported(static_cast(parameter), QVariant(value)); +} + +char* QCameraImageProcessingControl_Parameter(QtObjectPtr ptr, int parameter){ + return static_cast(ptr)->parameter(static_cast(parameter)).toString().toUtf8().data(); +} + +void QCameraImageProcessingControl_SetParameter(QtObjectPtr ptr, int parameter, char* value){ + static_cast(ptr)->setParameter(static_cast(parameter), QVariant(value)); +} + +void QCameraImageProcessingControl_DestroyQCameraImageProcessingControl(QtObjectPtr ptr){ + static_cast(ptr)->~QCameraImageProcessingControl(); +} + diff --git a/multimedia/qcameraimageprocessingcontrol.go b/multimedia/qcameraimageprocessingcontrol.go new file mode 100755 index 00000000..0472d60b --- /dev/null +++ b/multimedia/qcameraimageprocessingcontrol.go @@ -0,0 +1,91 @@ +package multimedia + +//#include "qcameraimageprocessingcontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QCameraImageProcessingControl struct { + QMediaControl +} + +type QCameraImageProcessingControlITF interface { + QMediaControlITF + QCameraImageProcessingControlPTR() *QCameraImageProcessingControl +} + +func PointerFromQCameraImageProcessingControl(ptr QCameraImageProcessingControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCameraImageProcessingControlPTR().Pointer() + } + return nil +} + +func QCameraImageProcessingControlFromPointer(ptr unsafe.Pointer) *QCameraImageProcessingControl { + var n = new(QCameraImageProcessingControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCameraImageProcessingControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCameraImageProcessingControl) QCameraImageProcessingControlPTR() *QCameraImageProcessingControl { + return ptr +} + +//QCameraImageProcessingControl::ProcessingParameter +type QCameraImageProcessingControl__ProcessingParameter int + +var ( + QCameraImageProcessingControl__WhiteBalancePreset = QCameraImageProcessingControl__ProcessingParameter(0) + QCameraImageProcessingControl__ColorTemperature = QCameraImageProcessingControl__ProcessingParameter(1) + QCameraImageProcessingControl__Contrast = QCameraImageProcessingControl__ProcessingParameter(2) + QCameraImageProcessingControl__Saturation = QCameraImageProcessingControl__ProcessingParameter(3) + QCameraImageProcessingControl__Brightness = QCameraImageProcessingControl__ProcessingParameter(4) + QCameraImageProcessingControl__Sharpening = QCameraImageProcessingControl__ProcessingParameter(5) + QCameraImageProcessingControl__Denoising = QCameraImageProcessingControl__ProcessingParameter(6) + QCameraImageProcessingControl__ContrastAdjustment = QCameraImageProcessingControl__ProcessingParameter(7) + QCameraImageProcessingControl__SaturationAdjustment = QCameraImageProcessingControl__ProcessingParameter(8) + QCameraImageProcessingControl__BrightnessAdjustment = QCameraImageProcessingControl__ProcessingParameter(9) + QCameraImageProcessingControl__SharpeningAdjustment = QCameraImageProcessingControl__ProcessingParameter(10) + QCameraImageProcessingControl__DenoisingAdjustment = QCameraImageProcessingControl__ProcessingParameter(11) + QCameraImageProcessingControl__ColorFilter = QCameraImageProcessingControl__ProcessingParameter(12) + QCameraImageProcessingControl__ExtendedParameter = QCameraImageProcessingControl__ProcessingParameter(1000) +) + +func (ptr *QCameraImageProcessingControl) IsParameterSupported(parameter QCameraImageProcessingControl__ProcessingParameter) bool { + if ptr.Pointer() != nil { + return C.QCameraImageProcessingControl_IsParameterSupported(C.QtObjectPtr(ptr.Pointer()), C.int(parameter)) != 0 + } + return false +} + +func (ptr *QCameraImageProcessingControl) IsParameterValueSupported(parameter QCameraImageProcessingControl__ProcessingParameter, value string) bool { + if ptr.Pointer() != nil { + return C.QCameraImageProcessingControl_IsParameterValueSupported(C.QtObjectPtr(ptr.Pointer()), C.int(parameter), C.CString(value)) != 0 + } + return false +} + +func (ptr *QCameraImageProcessingControl) Parameter(parameter QCameraImageProcessingControl__ProcessingParameter) string { + if ptr.Pointer() != nil { + return C.GoString(C.QCameraImageProcessingControl_Parameter(C.QtObjectPtr(ptr.Pointer()), C.int(parameter))) + } + return "" +} + +func (ptr *QCameraImageProcessingControl) SetParameter(parameter QCameraImageProcessingControl__ProcessingParameter, value string) { + if ptr.Pointer() != nil { + C.QCameraImageProcessingControl_SetParameter(C.QtObjectPtr(ptr.Pointer()), C.int(parameter), C.CString(value)) + } +} + +func (ptr *QCameraImageProcessingControl) DestroyQCameraImageProcessingControl() { + if ptr.Pointer() != nil { + C.QCameraImageProcessingControl_DestroyQCameraImageProcessingControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qcameraimageprocessingcontrol.h b/multimedia/qcameraimageprocessingcontrol.h new file mode 100755 index 00000000..64520fbc --- /dev/null +++ b/multimedia/qcameraimageprocessingcontrol.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QCameraImageProcessingControl_IsParameterSupported(QtObjectPtr ptr, int parameter); +int QCameraImageProcessingControl_IsParameterValueSupported(QtObjectPtr ptr, int parameter, char* value); +char* QCameraImageProcessingControl_Parameter(QtObjectPtr ptr, int parameter); +void QCameraImageProcessingControl_SetParameter(QtObjectPtr ptr, int parameter, char* value); +void QCameraImageProcessingControl_DestroyQCameraImageProcessingControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qcamerainfo.cpp b/multimedia/qcamerainfo.cpp new file mode 100755 index 00000000..eb5e335a --- /dev/null +++ b/multimedia/qcamerainfo.cpp @@ -0,0 +1,50 @@ +#include "qcamerainfo.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCameraInfo: public QCameraInfo { +public: +}; + +QtObjectPtr QCameraInfo_NewQCameraInfo(QtObjectPtr name){ + return new QCameraInfo(*static_cast(name)); +} + +QtObjectPtr QCameraInfo_NewQCameraInfo2(QtObjectPtr camera){ + return new QCameraInfo(*static_cast(camera)); +} + +QtObjectPtr QCameraInfo_NewQCameraInfo3(QtObjectPtr other){ + return new QCameraInfo(*static_cast(other)); +} + +char* QCameraInfo_Description(QtObjectPtr ptr){ + return static_cast(ptr)->description().toUtf8().data(); +} + +char* QCameraInfo_DeviceName(QtObjectPtr ptr){ + return static_cast(ptr)->deviceName().toUtf8().data(); +} + +int QCameraInfo_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QCameraInfo_Orientation(QtObjectPtr ptr){ + return static_cast(ptr)->orientation(); +} + +int QCameraInfo_Position(QtObjectPtr ptr){ + return static_cast(ptr)->position(); +} + +void QCameraInfo_DestroyQCameraInfo(QtObjectPtr ptr){ + static_cast(ptr)->~QCameraInfo(); +} + diff --git a/multimedia/qcamerainfo.go b/multimedia/qcamerainfo.go new file mode 100755 index 00000000..f322c96c --- /dev/null +++ b/multimedia/qcamerainfo.go @@ -0,0 +1,94 @@ +package multimedia + +//#include "qcamerainfo.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QCameraInfo struct { + ptr unsafe.Pointer +} + +type QCameraInfoITF interface { + QCameraInfoPTR() *QCameraInfo +} + +func (p *QCameraInfo) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QCameraInfo) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQCameraInfo(ptr QCameraInfoITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCameraInfoPTR().Pointer() + } + return nil +} + +func QCameraInfoFromPointer(ptr unsafe.Pointer) *QCameraInfo { + var n = new(QCameraInfo) + n.SetPointer(ptr) + return n +} + +func (ptr *QCameraInfo) QCameraInfoPTR() *QCameraInfo { + return ptr +} + +func NewQCameraInfo(name core.QByteArrayITF) *QCameraInfo { + return QCameraInfoFromPointer(unsafe.Pointer(C.QCameraInfo_NewQCameraInfo(C.QtObjectPtr(core.PointerFromQByteArray(name))))) +} + +func NewQCameraInfo2(camera QCameraITF) *QCameraInfo { + return QCameraInfoFromPointer(unsafe.Pointer(C.QCameraInfo_NewQCameraInfo2(C.QtObjectPtr(PointerFromQCamera(camera))))) +} + +func NewQCameraInfo3(other QCameraInfoITF) *QCameraInfo { + return QCameraInfoFromPointer(unsafe.Pointer(C.QCameraInfo_NewQCameraInfo3(C.QtObjectPtr(PointerFromQCameraInfo(other))))) +} + +func (ptr *QCameraInfo) Description() string { + if ptr.Pointer() != nil { + return C.GoString(C.QCameraInfo_Description(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QCameraInfo) DeviceName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QCameraInfo_DeviceName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QCameraInfo) IsNull() bool { + if ptr.Pointer() != nil { + return C.QCameraInfo_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QCameraInfo) Orientation() int { + if ptr.Pointer() != nil { + return int(C.QCameraInfo_Orientation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCameraInfo) Position() QCamera__Position { + if ptr.Pointer() != nil { + return QCamera__Position(C.QCameraInfo_Position(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCameraInfo) DestroyQCameraInfo() { + if ptr.Pointer() != nil { + C.QCameraInfo_DestroyQCameraInfo(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/multimedia/qcamerainfo.h b/multimedia/qcamerainfo.h new file mode 100755 index 00000000..9153e6ea --- /dev/null +++ b/multimedia/qcamerainfo.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QCameraInfo_NewQCameraInfo(QtObjectPtr name); +QtObjectPtr QCameraInfo_NewQCameraInfo2(QtObjectPtr camera); +QtObjectPtr QCameraInfo_NewQCameraInfo3(QtObjectPtr other); +char* QCameraInfo_Description(QtObjectPtr ptr); +char* QCameraInfo_DeviceName(QtObjectPtr ptr); +int QCameraInfo_IsNull(QtObjectPtr ptr); +int QCameraInfo_Orientation(QtObjectPtr ptr); +int QCameraInfo_Position(QtObjectPtr ptr); +void QCameraInfo_DestroyQCameraInfo(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qcamerainfocontrol.cpp b/multimedia/qcamerainfocontrol.cpp new file mode 100755 index 00000000..c29a2f89 --- /dev/null +++ b/multimedia/qcamerainfocontrol.cpp @@ -0,0 +1,26 @@ +#include "qcamerainfocontrol.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCameraInfoControl: public QCameraInfoControl { +public: +}; + +int QCameraInfoControl_CameraOrientation(QtObjectPtr ptr, char* deviceName){ + return static_cast(ptr)->cameraOrientation(QString(deviceName)); +} + +int QCameraInfoControl_CameraPosition(QtObjectPtr ptr, char* deviceName){ + return static_cast(ptr)->cameraPosition(QString(deviceName)); +} + +void QCameraInfoControl_DestroyQCameraInfoControl(QtObjectPtr ptr){ + static_cast(ptr)->~QCameraInfoControl(); +} + diff --git a/multimedia/qcamerainfocontrol.go b/multimedia/qcamerainfocontrol.go new file mode 100755 index 00000000..1bda7e3c --- /dev/null +++ b/multimedia/qcamerainfocontrol.go @@ -0,0 +1,58 @@ +package multimedia + +//#include "qcamerainfocontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QCameraInfoControl struct { + QMediaControl +} + +type QCameraInfoControlITF interface { + QMediaControlITF + QCameraInfoControlPTR() *QCameraInfoControl +} + +func PointerFromQCameraInfoControl(ptr QCameraInfoControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCameraInfoControlPTR().Pointer() + } + return nil +} + +func QCameraInfoControlFromPointer(ptr unsafe.Pointer) *QCameraInfoControl { + var n = new(QCameraInfoControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCameraInfoControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCameraInfoControl) QCameraInfoControlPTR() *QCameraInfoControl { + return ptr +} + +func (ptr *QCameraInfoControl) CameraOrientation(deviceName string) int { + if ptr.Pointer() != nil { + return int(C.QCameraInfoControl_CameraOrientation(C.QtObjectPtr(ptr.Pointer()), C.CString(deviceName))) + } + return 0 +} + +func (ptr *QCameraInfoControl) CameraPosition(deviceName string) QCamera__Position { + if ptr.Pointer() != nil { + return QCamera__Position(C.QCameraInfoControl_CameraPosition(C.QtObjectPtr(ptr.Pointer()), C.CString(deviceName))) + } + return 0 +} + +func (ptr *QCameraInfoControl) DestroyQCameraInfoControl() { + if ptr.Pointer() != nil { + C.QCameraInfoControl_DestroyQCameraInfoControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qcamerainfocontrol.h b/multimedia/qcamerainfocontrol.h new file mode 100755 index 00000000..bb781d52 --- /dev/null +++ b/multimedia/qcamerainfocontrol.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QCameraInfoControl_CameraOrientation(QtObjectPtr ptr, char* deviceName); +int QCameraInfoControl_CameraPosition(QtObjectPtr ptr, char* deviceName); +void QCameraInfoControl_DestroyQCameraInfoControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qcameralockscontrol.cpp b/multimedia/qcameralockscontrol.cpp new file mode 100755 index 00000000..2b46006a --- /dev/null +++ b/multimedia/qcameralockscontrol.cpp @@ -0,0 +1,43 @@ +#include "qcameralockscontrol.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCameraLocksControl: public QCameraLocksControl { +public: +void Signal_LockStatusChanged(QCamera::LockType lock, QCamera::LockStatus status, QCamera::LockChangeReason reason){callbackQCameraLocksControlLockStatusChanged(this->objectName().toUtf8().data(), lock, status, reason);}; +}; + +int QCameraLocksControl_LockStatus(QtObjectPtr ptr, int lock){ + return static_cast(ptr)->lockStatus(static_cast(lock)); +} + +void QCameraLocksControl_ConnectLockStatusChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCameraLocksControl::lockStatusChanged), static_cast(ptr), static_cast(&MyQCameraLocksControl::Signal_LockStatusChanged));; +} + +void QCameraLocksControl_DisconnectLockStatusChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCameraLocksControl::lockStatusChanged), static_cast(ptr), static_cast(&MyQCameraLocksControl::Signal_LockStatusChanged));; +} + +void QCameraLocksControl_SearchAndLock(QtObjectPtr ptr, int locks){ + static_cast(ptr)->searchAndLock(static_cast(locks)); +} + +int QCameraLocksControl_SupportedLocks(QtObjectPtr ptr){ + return static_cast(ptr)->supportedLocks(); +} + +void QCameraLocksControl_Unlock(QtObjectPtr ptr, int locks){ + static_cast(ptr)->unlock(static_cast(locks)); +} + +void QCameraLocksControl_DestroyQCameraLocksControl(QtObjectPtr ptr){ + static_cast(ptr)->~QCameraLocksControl(); +} + diff --git a/multimedia/qcameralockscontrol.go b/multimedia/qcameralockscontrol.go new file mode 100755 index 00000000..ebccb5ea --- /dev/null +++ b/multimedia/qcameralockscontrol.go @@ -0,0 +1,89 @@ +package multimedia + +//#include "qcameralockscontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QCameraLocksControl struct { + QMediaControl +} + +type QCameraLocksControlITF interface { + QMediaControlITF + QCameraLocksControlPTR() *QCameraLocksControl +} + +func PointerFromQCameraLocksControl(ptr QCameraLocksControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCameraLocksControlPTR().Pointer() + } + return nil +} + +func QCameraLocksControlFromPointer(ptr unsafe.Pointer) *QCameraLocksControl { + var n = new(QCameraLocksControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCameraLocksControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCameraLocksControl) QCameraLocksControlPTR() *QCameraLocksControl { + return ptr +} + +func (ptr *QCameraLocksControl) LockStatus(lock QCamera__LockType) QCamera__LockStatus { + if ptr.Pointer() != nil { + return QCamera__LockStatus(C.QCameraLocksControl_LockStatus(C.QtObjectPtr(ptr.Pointer()), C.int(lock))) + } + return 0 +} + +func (ptr *QCameraLocksControl) ConnectLockStatusChanged(f func(lock QCamera__LockType, status QCamera__LockStatus, reason QCamera__LockChangeReason)) { + if ptr.Pointer() != nil { + C.QCameraLocksControl_ConnectLockStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "lockStatusChanged", f) + } +} + +func (ptr *QCameraLocksControl) DisconnectLockStatusChanged() { + if ptr.Pointer() != nil { + C.QCameraLocksControl_DisconnectLockStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "lockStatusChanged") + } +} + +//export callbackQCameraLocksControlLockStatusChanged +func callbackQCameraLocksControlLockStatusChanged(ptrName *C.char, lock C.int, status C.int, reason C.int) { + qt.GetSignal(C.GoString(ptrName), "lockStatusChanged").(func(QCamera__LockType, QCamera__LockStatus, QCamera__LockChangeReason))(QCamera__LockType(lock), QCamera__LockStatus(status), QCamera__LockChangeReason(reason)) +} + +func (ptr *QCameraLocksControl) SearchAndLock(locks QCamera__LockType) { + if ptr.Pointer() != nil { + C.QCameraLocksControl_SearchAndLock(C.QtObjectPtr(ptr.Pointer()), C.int(locks)) + } +} + +func (ptr *QCameraLocksControl) SupportedLocks() QCamera__LockType { + if ptr.Pointer() != nil { + return QCamera__LockType(C.QCameraLocksControl_SupportedLocks(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCameraLocksControl) Unlock(locks QCamera__LockType) { + if ptr.Pointer() != nil { + C.QCameraLocksControl_Unlock(C.QtObjectPtr(ptr.Pointer()), C.int(locks)) + } +} + +func (ptr *QCameraLocksControl) DestroyQCameraLocksControl() { + if ptr.Pointer() != nil { + C.QCameraLocksControl_DestroyQCameraLocksControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qcameralockscontrol.h b/multimedia/qcameralockscontrol.h new file mode 100755 index 00000000..6dd0ba58 --- /dev/null +++ b/multimedia/qcameralockscontrol.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QCameraLocksControl_LockStatus(QtObjectPtr ptr, int lock); +void QCameraLocksControl_ConnectLockStatusChanged(QtObjectPtr ptr); +void QCameraLocksControl_DisconnectLockStatusChanged(QtObjectPtr ptr); +void QCameraLocksControl_SearchAndLock(QtObjectPtr ptr, int locks); +int QCameraLocksControl_SupportedLocks(QtObjectPtr ptr); +void QCameraLocksControl_Unlock(QtObjectPtr ptr, int locks); +void QCameraLocksControl_DestroyQCameraLocksControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qcameraviewfindersettings.cpp b/multimedia/qcameraviewfindersettings.cpp new file mode 100755 index 00000000..c7452024 --- /dev/null +++ b/multimedia/qcameraviewfindersettings.cpp @@ -0,0 +1,59 @@ +#include "qcameraviewfindersettings.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCameraViewfinderSettings: public QCameraViewfinderSettings { +public: +}; + +QtObjectPtr QCameraViewfinderSettings_NewQCameraViewfinderSettings(){ + return new QCameraViewfinderSettings(); +} + +QtObjectPtr QCameraViewfinderSettings_NewQCameraViewfinderSettings2(QtObjectPtr other){ + return new QCameraViewfinderSettings(*static_cast(other)); +} + +int QCameraViewfinderSettings_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QCameraViewfinderSettings_PixelFormat(QtObjectPtr ptr){ + return static_cast(ptr)->pixelFormat(); +} + +void QCameraViewfinderSettings_SetPixelAspectRatio(QtObjectPtr ptr, QtObjectPtr ratio){ + static_cast(ptr)->setPixelAspectRatio(*static_cast(ratio)); +} + +void QCameraViewfinderSettings_SetPixelAspectRatio2(QtObjectPtr ptr, int horizontal, int vertical){ + static_cast(ptr)->setPixelAspectRatio(horizontal, vertical); +} + +void QCameraViewfinderSettings_SetPixelFormat(QtObjectPtr ptr, int format){ + static_cast(ptr)->setPixelFormat(static_cast(format)); +} + +void QCameraViewfinderSettings_SetResolution(QtObjectPtr ptr, QtObjectPtr resolution){ + static_cast(ptr)->setResolution(*static_cast(resolution)); +} + +void QCameraViewfinderSettings_SetResolution2(QtObjectPtr ptr, int width, int height){ + static_cast(ptr)->setResolution(width, height); +} + +void QCameraViewfinderSettings_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QCameraViewfinderSettings_DestroyQCameraViewfinderSettings(QtObjectPtr ptr){ + static_cast(ptr)->~QCameraViewfinderSettings(); +} + diff --git a/multimedia/qcameraviewfindersettings.go b/multimedia/qcameraviewfindersettings.go new file mode 100755 index 00000000..a82acd6a --- /dev/null +++ b/multimedia/qcameraviewfindersettings.go @@ -0,0 +1,105 @@ +package multimedia + +//#include "qcameraviewfindersettings.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QCameraViewfinderSettings struct { + ptr unsafe.Pointer +} + +type QCameraViewfinderSettingsITF interface { + QCameraViewfinderSettingsPTR() *QCameraViewfinderSettings +} + +func (p *QCameraViewfinderSettings) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QCameraViewfinderSettings) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQCameraViewfinderSettings(ptr QCameraViewfinderSettingsITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCameraViewfinderSettingsPTR().Pointer() + } + return nil +} + +func QCameraViewfinderSettingsFromPointer(ptr unsafe.Pointer) *QCameraViewfinderSettings { + var n = new(QCameraViewfinderSettings) + n.SetPointer(ptr) + return n +} + +func (ptr *QCameraViewfinderSettings) QCameraViewfinderSettingsPTR() *QCameraViewfinderSettings { + return ptr +} + +func NewQCameraViewfinderSettings() *QCameraViewfinderSettings { + return QCameraViewfinderSettingsFromPointer(unsafe.Pointer(C.QCameraViewfinderSettings_NewQCameraViewfinderSettings())) +} + +func NewQCameraViewfinderSettings2(other QCameraViewfinderSettingsITF) *QCameraViewfinderSettings { + return QCameraViewfinderSettingsFromPointer(unsafe.Pointer(C.QCameraViewfinderSettings_NewQCameraViewfinderSettings2(C.QtObjectPtr(PointerFromQCameraViewfinderSettings(other))))) +} + +func (ptr *QCameraViewfinderSettings) IsNull() bool { + if ptr.Pointer() != nil { + return C.QCameraViewfinderSettings_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QCameraViewfinderSettings) PixelFormat() QVideoFrame__PixelFormat { + if ptr.Pointer() != nil { + return QVideoFrame__PixelFormat(C.QCameraViewfinderSettings_PixelFormat(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCameraViewfinderSettings) SetPixelAspectRatio(ratio core.QSizeITF) { + if ptr.Pointer() != nil { + C.QCameraViewfinderSettings_SetPixelAspectRatio(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(ratio))) + } +} + +func (ptr *QCameraViewfinderSettings) SetPixelAspectRatio2(horizontal int, vertical int) { + if ptr.Pointer() != nil { + C.QCameraViewfinderSettings_SetPixelAspectRatio2(C.QtObjectPtr(ptr.Pointer()), C.int(horizontal), C.int(vertical)) + } +} + +func (ptr *QCameraViewfinderSettings) SetPixelFormat(format QVideoFrame__PixelFormat) { + if ptr.Pointer() != nil { + C.QCameraViewfinderSettings_SetPixelFormat(C.QtObjectPtr(ptr.Pointer()), C.int(format)) + } +} + +func (ptr *QCameraViewfinderSettings) SetResolution(resolution core.QSizeITF) { + if ptr.Pointer() != nil { + C.QCameraViewfinderSettings_SetResolution(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(resolution))) + } +} + +func (ptr *QCameraViewfinderSettings) SetResolution2(width int, height int) { + if ptr.Pointer() != nil { + C.QCameraViewfinderSettings_SetResolution2(C.QtObjectPtr(ptr.Pointer()), C.int(width), C.int(height)) + } +} + +func (ptr *QCameraViewfinderSettings) Swap(other QCameraViewfinderSettingsITF) { + if ptr.Pointer() != nil { + C.QCameraViewfinderSettings_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQCameraViewfinderSettings(other))) + } +} + +func (ptr *QCameraViewfinderSettings) DestroyQCameraViewfinderSettings() { + if ptr.Pointer() != nil { + C.QCameraViewfinderSettings_DestroyQCameraViewfinderSettings(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/multimedia/qcameraviewfindersettings.h b/multimedia/qcameraviewfindersettings.h new file mode 100755 index 00000000..3ce5f53e --- /dev/null +++ b/multimedia/qcameraviewfindersettings.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QCameraViewfinderSettings_NewQCameraViewfinderSettings(); +QtObjectPtr QCameraViewfinderSettings_NewQCameraViewfinderSettings2(QtObjectPtr other); +int QCameraViewfinderSettings_IsNull(QtObjectPtr ptr); +int QCameraViewfinderSettings_PixelFormat(QtObjectPtr ptr); +void QCameraViewfinderSettings_SetPixelAspectRatio(QtObjectPtr ptr, QtObjectPtr ratio); +void QCameraViewfinderSettings_SetPixelAspectRatio2(QtObjectPtr ptr, int horizontal, int vertical); +void QCameraViewfinderSettings_SetPixelFormat(QtObjectPtr ptr, int format); +void QCameraViewfinderSettings_SetResolution(QtObjectPtr ptr, QtObjectPtr resolution); +void QCameraViewfinderSettings_SetResolution2(QtObjectPtr ptr, int width, int height); +void QCameraViewfinderSettings_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QCameraViewfinderSettings_DestroyQCameraViewfinderSettings(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qcameraviewfindersettingscontrol.cpp b/multimedia/qcameraviewfindersettingscontrol.cpp new file mode 100755 index 00000000..08525d03 --- /dev/null +++ b/multimedia/qcameraviewfindersettingscontrol.cpp @@ -0,0 +1,30 @@ +#include "qcameraviewfindersettingscontrol.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCameraViewfinderSettingsControl: public QCameraViewfinderSettingsControl { +public: +}; + +int QCameraViewfinderSettingsControl_IsViewfinderParameterSupported(QtObjectPtr ptr, int parameter){ + return static_cast(ptr)->isViewfinderParameterSupported(static_cast(parameter)); +} + +void QCameraViewfinderSettingsControl_SetViewfinderParameter(QtObjectPtr ptr, int parameter, char* value){ + static_cast(ptr)->setViewfinderParameter(static_cast(parameter), QVariant(value)); +} + +char* QCameraViewfinderSettingsControl_ViewfinderParameter(QtObjectPtr ptr, int parameter){ + return static_cast(ptr)->viewfinderParameter(static_cast(parameter)).toString().toUtf8().data(); +} + +void QCameraViewfinderSettingsControl_DestroyQCameraViewfinderSettingsControl(QtObjectPtr ptr){ + static_cast(ptr)->~QCameraViewfinderSettingsControl(); +} + diff --git a/multimedia/qcameraviewfindersettingscontrol.go b/multimedia/qcameraviewfindersettingscontrol.go new file mode 100755 index 00000000..0dbc846e --- /dev/null +++ b/multimedia/qcameraviewfindersettingscontrol.go @@ -0,0 +1,76 @@ +package multimedia + +//#include "qcameraviewfindersettingscontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QCameraViewfinderSettingsControl struct { + QMediaControl +} + +type QCameraViewfinderSettingsControlITF interface { + QMediaControlITF + QCameraViewfinderSettingsControlPTR() *QCameraViewfinderSettingsControl +} + +func PointerFromQCameraViewfinderSettingsControl(ptr QCameraViewfinderSettingsControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCameraViewfinderSettingsControlPTR().Pointer() + } + return nil +} + +func QCameraViewfinderSettingsControlFromPointer(ptr unsafe.Pointer) *QCameraViewfinderSettingsControl { + var n = new(QCameraViewfinderSettingsControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCameraViewfinderSettingsControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCameraViewfinderSettingsControl) QCameraViewfinderSettingsControlPTR() *QCameraViewfinderSettingsControl { + return ptr +} + +//QCameraViewfinderSettingsControl::ViewfinderParameter +type QCameraViewfinderSettingsControl__ViewfinderParameter int + +var ( + QCameraViewfinderSettingsControl__Resolution = QCameraViewfinderSettingsControl__ViewfinderParameter(0) + QCameraViewfinderSettingsControl__PixelAspectRatio = QCameraViewfinderSettingsControl__ViewfinderParameter(1) + QCameraViewfinderSettingsControl__MinimumFrameRate = QCameraViewfinderSettingsControl__ViewfinderParameter(2) + QCameraViewfinderSettingsControl__MaximumFrameRate = QCameraViewfinderSettingsControl__ViewfinderParameter(3) + QCameraViewfinderSettingsControl__PixelFormat = QCameraViewfinderSettingsControl__ViewfinderParameter(4) + QCameraViewfinderSettingsControl__UserParameter = QCameraViewfinderSettingsControl__ViewfinderParameter(1000) +) + +func (ptr *QCameraViewfinderSettingsControl) IsViewfinderParameterSupported(parameter QCameraViewfinderSettingsControl__ViewfinderParameter) bool { + if ptr.Pointer() != nil { + return C.QCameraViewfinderSettingsControl_IsViewfinderParameterSupported(C.QtObjectPtr(ptr.Pointer()), C.int(parameter)) != 0 + } + return false +} + +func (ptr *QCameraViewfinderSettingsControl) SetViewfinderParameter(parameter QCameraViewfinderSettingsControl__ViewfinderParameter, value string) { + if ptr.Pointer() != nil { + C.QCameraViewfinderSettingsControl_SetViewfinderParameter(C.QtObjectPtr(ptr.Pointer()), C.int(parameter), C.CString(value)) + } +} + +func (ptr *QCameraViewfinderSettingsControl) ViewfinderParameter(parameter QCameraViewfinderSettingsControl__ViewfinderParameter) string { + if ptr.Pointer() != nil { + return C.GoString(C.QCameraViewfinderSettingsControl_ViewfinderParameter(C.QtObjectPtr(ptr.Pointer()), C.int(parameter))) + } + return "" +} + +func (ptr *QCameraViewfinderSettingsControl) DestroyQCameraViewfinderSettingsControl() { + if ptr.Pointer() != nil { + C.QCameraViewfinderSettingsControl_DestroyQCameraViewfinderSettingsControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qcameraviewfindersettingscontrol.h b/multimedia/qcameraviewfindersettingscontrol.h new file mode 100755 index 00000000..67358755 --- /dev/null +++ b/multimedia/qcameraviewfindersettingscontrol.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QCameraViewfinderSettingsControl_IsViewfinderParameterSupported(QtObjectPtr ptr, int parameter); +void QCameraViewfinderSettingsControl_SetViewfinderParameter(QtObjectPtr ptr, int parameter, char* value); +char* QCameraViewfinderSettingsControl_ViewfinderParameter(QtObjectPtr ptr, int parameter); +void QCameraViewfinderSettingsControl_DestroyQCameraViewfinderSettingsControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qcameraviewfindersettingscontrol2.cpp b/multimedia/qcameraviewfindersettingscontrol2.cpp new file mode 100755 index 00000000..c3a52ccf --- /dev/null +++ b/multimedia/qcameraviewfindersettingscontrol2.cpp @@ -0,0 +1,23 @@ +#include "qcameraviewfindersettingscontrol2.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCameraViewfinderSettingsControl2: public QCameraViewfinderSettingsControl2 { +public: +}; + +void QCameraViewfinderSettingsControl2_SetViewfinderSettings(QtObjectPtr ptr, QtObjectPtr settings){ + static_cast(ptr)->setViewfinderSettings(*static_cast(settings)); +} + +void QCameraViewfinderSettingsControl2_DestroyQCameraViewfinderSettingsControl2(QtObjectPtr ptr){ + static_cast(ptr)->~QCameraViewfinderSettingsControl2(); +} + diff --git a/multimedia/qcameraviewfindersettingscontrol2.go b/multimedia/qcameraviewfindersettingscontrol2.go new file mode 100755 index 00000000..bccd2bc1 --- /dev/null +++ b/multimedia/qcameraviewfindersettingscontrol2.go @@ -0,0 +1,50 @@ +package multimedia + +//#include "qcameraviewfindersettingscontrol2.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QCameraViewfinderSettingsControl2 struct { + QMediaControl +} + +type QCameraViewfinderSettingsControl2ITF interface { + QMediaControlITF + QCameraViewfinderSettingsControl2PTR() *QCameraViewfinderSettingsControl2 +} + +func PointerFromQCameraViewfinderSettingsControl2(ptr QCameraViewfinderSettingsControl2ITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCameraViewfinderSettingsControl2PTR().Pointer() + } + return nil +} + +func QCameraViewfinderSettingsControl2FromPointer(ptr unsafe.Pointer) *QCameraViewfinderSettingsControl2 { + var n = new(QCameraViewfinderSettingsControl2) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCameraViewfinderSettingsControl2_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCameraViewfinderSettingsControl2) QCameraViewfinderSettingsControl2PTR() *QCameraViewfinderSettingsControl2 { + return ptr +} + +func (ptr *QCameraViewfinderSettingsControl2) SetViewfinderSettings(settings QCameraViewfinderSettingsITF) { + if ptr.Pointer() != nil { + C.QCameraViewfinderSettingsControl2_SetViewfinderSettings(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQCameraViewfinderSettings(settings))) + } +} + +func (ptr *QCameraViewfinderSettingsControl2) DestroyQCameraViewfinderSettingsControl2() { + if ptr.Pointer() != nil { + C.QCameraViewfinderSettingsControl2_DestroyQCameraViewfinderSettingsControl2(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qcameraviewfindersettingscontrol2.h b/multimedia/qcameraviewfindersettingscontrol2.h new file mode 100755 index 00000000..a37abbbd --- /dev/null +++ b/multimedia/qcameraviewfindersettingscontrol2.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QCameraViewfinderSettingsControl2_SetViewfinderSettings(QtObjectPtr ptr, QtObjectPtr settings); +void QCameraViewfinderSettingsControl2_DestroyQCameraViewfinderSettingsControl2(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qcamerazoomcontrol.cpp b/multimedia/qcamerazoomcontrol.cpp new file mode 100755 index 00000000..ba72f75d --- /dev/null +++ b/multimedia/qcamerazoomcontrol.cpp @@ -0,0 +1,17 @@ +#include "qcamerazoomcontrol.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCameraZoomControl: public QCameraZoomControl { +public: +}; + +void QCameraZoomControl_DestroyQCameraZoomControl(QtObjectPtr ptr){ + static_cast(ptr)->~QCameraZoomControl(); +} + diff --git a/multimedia/qcamerazoomcontrol.go b/multimedia/qcamerazoomcontrol.go new file mode 100755 index 00000000..05c06975 --- /dev/null +++ b/multimedia/qcamerazoomcontrol.go @@ -0,0 +1,44 @@ +package multimedia + +//#include "qcamerazoomcontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QCameraZoomControl struct { + QMediaControl +} + +type QCameraZoomControlITF interface { + QMediaControlITF + QCameraZoomControlPTR() *QCameraZoomControl +} + +func PointerFromQCameraZoomControl(ptr QCameraZoomControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCameraZoomControlPTR().Pointer() + } + return nil +} + +func QCameraZoomControlFromPointer(ptr unsafe.Pointer) *QCameraZoomControl { + var n = new(QCameraZoomControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCameraZoomControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCameraZoomControl) QCameraZoomControlPTR() *QCameraZoomControl { + return ptr +} + +func (ptr *QCameraZoomControl) DestroyQCameraZoomControl() { + if ptr.Pointer() != nil { + C.QCameraZoomControl_DestroyQCameraZoomControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qcamerazoomcontrol.h b/multimedia/qcamerazoomcontrol.h new file mode 100755 index 00000000..95b5aef4 --- /dev/null +++ b/multimedia/qcamerazoomcontrol.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QCameraZoomControl_DestroyQCameraZoomControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qimageencodercontrol.cpp b/multimedia/qimageencodercontrol.cpp new file mode 100755 index 00000000..4d1da62d --- /dev/null +++ b/multimedia/qimageencodercontrol.cpp @@ -0,0 +1,30 @@ +#include "qimageencodercontrol.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQImageEncoderControl: public QImageEncoderControl { +public: +}; + +char* QImageEncoderControl_ImageCodecDescription(QtObjectPtr ptr, char* codec){ + return static_cast(ptr)->imageCodecDescription(QString(codec)).toUtf8().data(); +} + +void QImageEncoderControl_SetImageSettings(QtObjectPtr ptr, QtObjectPtr settings){ + static_cast(ptr)->setImageSettings(*static_cast(settings)); +} + +char* QImageEncoderControl_SupportedImageCodecs(QtObjectPtr ptr){ + return static_cast(ptr)->supportedImageCodecs().join("|").toUtf8().data(); +} + +void QImageEncoderControl_DestroyQImageEncoderControl(QtObjectPtr ptr){ + static_cast(ptr)->~QImageEncoderControl(); +} + diff --git a/multimedia/qimageencodercontrol.go b/multimedia/qimageencodercontrol.go new file mode 100755 index 00000000..0473782a --- /dev/null +++ b/multimedia/qimageencodercontrol.go @@ -0,0 +1,65 @@ +package multimedia + +//#include "qimageencodercontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "strings" + "unsafe" +) + +type QImageEncoderControl struct { + QMediaControl +} + +type QImageEncoderControlITF interface { + QMediaControlITF + QImageEncoderControlPTR() *QImageEncoderControl +} + +func PointerFromQImageEncoderControl(ptr QImageEncoderControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QImageEncoderControlPTR().Pointer() + } + return nil +} + +func QImageEncoderControlFromPointer(ptr unsafe.Pointer) *QImageEncoderControl { + var n = new(QImageEncoderControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QImageEncoderControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QImageEncoderControl) QImageEncoderControlPTR() *QImageEncoderControl { + return ptr +} + +func (ptr *QImageEncoderControl) ImageCodecDescription(codec string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QImageEncoderControl_ImageCodecDescription(C.QtObjectPtr(ptr.Pointer()), C.CString(codec))) + } + return "" +} + +func (ptr *QImageEncoderControl) SetImageSettings(settings QImageEncoderSettingsITF) { + if ptr.Pointer() != nil { + C.QImageEncoderControl_SetImageSettings(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQImageEncoderSettings(settings))) + } +} + +func (ptr *QImageEncoderControl) SupportedImageCodecs() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QImageEncoderControl_SupportedImageCodecs(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QImageEncoderControl) DestroyQImageEncoderControl() { + if ptr.Pointer() != nil { + C.QImageEncoderControl_DestroyQImageEncoderControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qimageencodercontrol.h b/multimedia/qimageencodercontrol.h new file mode 100755 index 00000000..36694b12 --- /dev/null +++ b/multimedia/qimageencodercontrol.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QImageEncoderControl_ImageCodecDescription(QtObjectPtr ptr, char* codec); +void QImageEncoderControl_SetImageSettings(QtObjectPtr ptr, QtObjectPtr settings); +char* QImageEncoderControl_SupportedImageCodecs(QtObjectPtr ptr); +void QImageEncoderControl_DestroyQImageEncoderControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qimageencodersettings.cpp b/multimedia/qimageencodersettings.cpp new file mode 100755 index 00000000..42bd52b3 --- /dev/null +++ b/multimedia/qimageencodersettings.cpp @@ -0,0 +1,54 @@ +#include "qimageencodersettings.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQImageEncoderSettings: public QImageEncoderSettings { +public: +}; + +QtObjectPtr QImageEncoderSettings_NewQImageEncoderSettings(){ + return new QImageEncoderSettings(); +} + +QtObjectPtr QImageEncoderSettings_NewQImageEncoderSettings2(QtObjectPtr other){ + return new QImageEncoderSettings(*static_cast(other)); +} + +char* QImageEncoderSettings_Codec(QtObjectPtr ptr){ + return static_cast(ptr)->codec().toUtf8().data(); +} + +char* QImageEncoderSettings_EncodingOption(QtObjectPtr ptr, char* option){ + return static_cast(ptr)->encodingOption(QString(option)).toString().toUtf8().data(); +} + +int QImageEncoderSettings_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +void QImageEncoderSettings_SetCodec(QtObjectPtr ptr, char* codec){ + static_cast(ptr)->setCodec(QString(codec)); +} + +void QImageEncoderSettings_SetEncodingOption(QtObjectPtr ptr, char* option, char* value){ + static_cast(ptr)->setEncodingOption(QString(option), QVariant(value)); +} + +void QImageEncoderSettings_SetResolution(QtObjectPtr ptr, QtObjectPtr resolution){ + static_cast(ptr)->setResolution(*static_cast(resolution)); +} + +void QImageEncoderSettings_SetResolution2(QtObjectPtr ptr, int width, int height){ + static_cast(ptr)->setResolution(width, height); +} + +void QImageEncoderSettings_DestroyQImageEncoderSettings(QtObjectPtr ptr){ + static_cast(ptr)->~QImageEncoderSettings(); +} + diff --git a/multimedia/qimageencodersettings.go b/multimedia/qimageencodersettings.go new file mode 100755 index 00000000..2657d9d7 --- /dev/null +++ b/multimedia/qimageencodersettings.go @@ -0,0 +1,100 @@ +package multimedia + +//#include "qimageencodersettings.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QImageEncoderSettings struct { + ptr unsafe.Pointer +} + +type QImageEncoderSettingsITF interface { + QImageEncoderSettingsPTR() *QImageEncoderSettings +} + +func (p *QImageEncoderSettings) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QImageEncoderSettings) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQImageEncoderSettings(ptr QImageEncoderSettingsITF) unsafe.Pointer { + if ptr != nil { + return ptr.QImageEncoderSettingsPTR().Pointer() + } + return nil +} + +func QImageEncoderSettingsFromPointer(ptr unsafe.Pointer) *QImageEncoderSettings { + var n = new(QImageEncoderSettings) + n.SetPointer(ptr) + return n +} + +func (ptr *QImageEncoderSettings) QImageEncoderSettingsPTR() *QImageEncoderSettings { + return ptr +} + +func NewQImageEncoderSettings() *QImageEncoderSettings { + return QImageEncoderSettingsFromPointer(unsafe.Pointer(C.QImageEncoderSettings_NewQImageEncoderSettings())) +} + +func NewQImageEncoderSettings2(other QImageEncoderSettingsITF) *QImageEncoderSettings { + return QImageEncoderSettingsFromPointer(unsafe.Pointer(C.QImageEncoderSettings_NewQImageEncoderSettings2(C.QtObjectPtr(PointerFromQImageEncoderSettings(other))))) +} + +func (ptr *QImageEncoderSettings) Codec() string { + if ptr.Pointer() != nil { + return C.GoString(C.QImageEncoderSettings_Codec(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QImageEncoderSettings) EncodingOption(option string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QImageEncoderSettings_EncodingOption(C.QtObjectPtr(ptr.Pointer()), C.CString(option))) + } + return "" +} + +func (ptr *QImageEncoderSettings) IsNull() bool { + if ptr.Pointer() != nil { + return C.QImageEncoderSettings_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QImageEncoderSettings) SetCodec(codec string) { + if ptr.Pointer() != nil { + C.QImageEncoderSettings_SetCodec(C.QtObjectPtr(ptr.Pointer()), C.CString(codec)) + } +} + +func (ptr *QImageEncoderSettings) SetEncodingOption(option string, value string) { + if ptr.Pointer() != nil { + C.QImageEncoderSettings_SetEncodingOption(C.QtObjectPtr(ptr.Pointer()), C.CString(option), C.CString(value)) + } +} + +func (ptr *QImageEncoderSettings) SetResolution(resolution core.QSizeITF) { + if ptr.Pointer() != nil { + C.QImageEncoderSettings_SetResolution(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(resolution))) + } +} + +func (ptr *QImageEncoderSettings) SetResolution2(width int, height int) { + if ptr.Pointer() != nil { + C.QImageEncoderSettings_SetResolution2(C.QtObjectPtr(ptr.Pointer()), C.int(width), C.int(height)) + } +} + +func (ptr *QImageEncoderSettings) DestroyQImageEncoderSettings() { + if ptr.Pointer() != nil { + C.QImageEncoderSettings_DestroyQImageEncoderSettings(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/multimedia/qimageencodersettings.h b/multimedia/qimageencodersettings.h new file mode 100755 index 00000000..e68b60e7 --- /dev/null +++ b/multimedia/qimageencodersettings.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QImageEncoderSettings_NewQImageEncoderSettings(); +QtObjectPtr QImageEncoderSettings_NewQImageEncoderSettings2(QtObjectPtr other); +char* QImageEncoderSettings_Codec(QtObjectPtr ptr); +char* QImageEncoderSettings_EncodingOption(QtObjectPtr ptr, char* option); +int QImageEncoderSettings_IsNull(QtObjectPtr ptr); +void QImageEncoderSettings_SetCodec(QtObjectPtr ptr, char* codec); +void QImageEncoderSettings_SetEncodingOption(QtObjectPtr ptr, char* option, char* value); +void QImageEncoderSettings_SetResolution(QtObjectPtr ptr, QtObjectPtr resolution); +void QImageEncoderSettings_SetResolution2(QtObjectPtr ptr, int width, int height); +void QImageEncoderSettings_DestroyQImageEncoderSettings(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmediaaudioprobecontrol.cpp b/multimedia/qmediaaudioprobecontrol.cpp new file mode 100755 index 00000000..f514cdc6 --- /dev/null +++ b/multimedia/qmediaaudioprobecontrol.cpp @@ -0,0 +1,26 @@ +#include "qmediaaudioprobecontrol.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMediaAudioProbeControl: public QMediaAudioProbeControl { +public: +void Signal_Flush(){callbackQMediaAudioProbeControlFlush(this->objectName().toUtf8().data());}; +}; + +void QMediaAudioProbeControl_ConnectFlush(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaAudioProbeControl::flush), static_cast(ptr), static_cast(&MyQMediaAudioProbeControl::Signal_Flush));; +} + +void QMediaAudioProbeControl_DisconnectFlush(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaAudioProbeControl::flush), static_cast(ptr), static_cast(&MyQMediaAudioProbeControl::Signal_Flush));; +} + +void QMediaAudioProbeControl_DestroyQMediaAudioProbeControl(QtObjectPtr ptr){ + static_cast(ptr)->~QMediaAudioProbeControl(); +} + diff --git a/multimedia/qmediaaudioprobecontrol.go b/multimedia/qmediaaudioprobecontrol.go new file mode 100755 index 00000000..77f32c0f --- /dev/null +++ b/multimedia/qmediaaudioprobecontrol.go @@ -0,0 +1,63 @@ +package multimedia + +//#include "qmediaaudioprobecontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QMediaAudioProbeControl struct { + QMediaControl +} + +type QMediaAudioProbeControlITF interface { + QMediaControlITF + QMediaAudioProbeControlPTR() *QMediaAudioProbeControl +} + +func PointerFromQMediaAudioProbeControl(ptr QMediaAudioProbeControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMediaAudioProbeControlPTR().Pointer() + } + return nil +} + +func QMediaAudioProbeControlFromPointer(ptr unsafe.Pointer) *QMediaAudioProbeControl { + var n = new(QMediaAudioProbeControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMediaAudioProbeControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMediaAudioProbeControl) QMediaAudioProbeControlPTR() *QMediaAudioProbeControl { + return ptr +} + +func (ptr *QMediaAudioProbeControl) ConnectFlush(f func()) { + if ptr.Pointer() != nil { + C.QMediaAudioProbeControl_ConnectFlush(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "flush", f) + } +} + +func (ptr *QMediaAudioProbeControl) DisconnectFlush() { + if ptr.Pointer() != nil { + C.QMediaAudioProbeControl_DisconnectFlush(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "flush") + } +} + +//export callbackQMediaAudioProbeControlFlush +func callbackQMediaAudioProbeControlFlush(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "flush").(func())() +} + +func (ptr *QMediaAudioProbeControl) DestroyQMediaAudioProbeControl() { + if ptr.Pointer() != nil { + C.QMediaAudioProbeControl_DestroyQMediaAudioProbeControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qmediaaudioprobecontrol.h b/multimedia/qmediaaudioprobecontrol.h new file mode 100755 index 00000000..28a9ec8b --- /dev/null +++ b/multimedia/qmediaaudioprobecontrol.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QMediaAudioProbeControl_ConnectFlush(QtObjectPtr ptr); +void QMediaAudioProbeControl_DisconnectFlush(QtObjectPtr ptr); +void QMediaAudioProbeControl_DestroyQMediaAudioProbeControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmediaavailabilitycontrol.cpp b/multimedia/qmediaavailabilitycontrol.cpp new file mode 100755 index 00000000..ac886512 --- /dev/null +++ b/multimedia/qmediaavailabilitycontrol.cpp @@ -0,0 +1,16 @@ +#include "qmediaavailabilitycontrol.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMediaAvailabilityControl: public QMediaAvailabilityControl { +public: +}; + +void QMediaAvailabilityControl_DestroyQMediaAvailabilityControl(QtObjectPtr ptr){ + static_cast(ptr)->~QMediaAvailabilityControl(); +} + diff --git a/multimedia/qmediaavailabilitycontrol.go b/multimedia/qmediaavailabilitycontrol.go new file mode 100755 index 00000000..2552a9e6 --- /dev/null +++ b/multimedia/qmediaavailabilitycontrol.go @@ -0,0 +1,44 @@ +package multimedia + +//#include "qmediaavailabilitycontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QMediaAvailabilityControl struct { + QMediaControl +} + +type QMediaAvailabilityControlITF interface { + QMediaControlITF + QMediaAvailabilityControlPTR() *QMediaAvailabilityControl +} + +func PointerFromQMediaAvailabilityControl(ptr QMediaAvailabilityControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMediaAvailabilityControlPTR().Pointer() + } + return nil +} + +func QMediaAvailabilityControlFromPointer(ptr unsafe.Pointer) *QMediaAvailabilityControl { + var n = new(QMediaAvailabilityControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMediaAvailabilityControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMediaAvailabilityControl) QMediaAvailabilityControlPTR() *QMediaAvailabilityControl { + return ptr +} + +func (ptr *QMediaAvailabilityControl) DestroyQMediaAvailabilityControl() { + if ptr.Pointer() != nil { + C.QMediaAvailabilityControl_DestroyQMediaAvailabilityControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qmediaavailabilitycontrol.h b/multimedia/qmediaavailabilitycontrol.h new file mode 100755 index 00000000..0ac9faa1 --- /dev/null +++ b/multimedia/qmediaavailabilitycontrol.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QMediaAvailabilityControl_DestroyQMediaAvailabilityControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmediabindableinterface.cpp b/multimedia/qmediabindableinterface.cpp new file mode 100755 index 00000000..586bffdc --- /dev/null +++ b/multimedia/qmediabindableinterface.cpp @@ -0,0 +1,20 @@ +#include "qmediabindableinterface.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMediaBindableInterface: public QMediaBindableInterface { +public: +}; + +QtObjectPtr QMediaBindableInterface_MediaObject(QtObjectPtr ptr){ + return static_cast(ptr)->mediaObject(); +} + +void QMediaBindableInterface_DestroyQMediaBindableInterface(QtObjectPtr ptr){ + static_cast(ptr)->~QMediaBindableInterface(); +} + diff --git a/multimedia/qmediabindableinterface.go b/multimedia/qmediabindableinterface.go new file mode 100755 index 00000000..ba8aba6c --- /dev/null +++ b/multimedia/qmediabindableinterface.go @@ -0,0 +1,53 @@ +package multimedia + +//#include "qmediabindableinterface.h" +import "C" +import ( + "unsafe" +) + +type QMediaBindableInterface struct { + ptr unsafe.Pointer +} + +type QMediaBindableInterfaceITF interface { + QMediaBindableInterfacePTR() *QMediaBindableInterface +} + +func (p *QMediaBindableInterface) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMediaBindableInterface) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMediaBindableInterface(ptr QMediaBindableInterfaceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMediaBindableInterfacePTR().Pointer() + } + return nil +} + +func QMediaBindableInterfaceFromPointer(ptr unsafe.Pointer) *QMediaBindableInterface { + var n = new(QMediaBindableInterface) + n.SetPointer(ptr) + return n +} + +func (ptr *QMediaBindableInterface) QMediaBindableInterfacePTR() *QMediaBindableInterface { + return ptr +} + +func (ptr *QMediaBindableInterface) MediaObject() *QMediaObject { + if ptr.Pointer() != nil { + return QMediaObjectFromPointer(unsafe.Pointer(C.QMediaBindableInterface_MediaObject(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMediaBindableInterface) DestroyQMediaBindableInterface() { + if ptr.Pointer() != nil { + C.QMediaBindableInterface_DestroyQMediaBindableInterface(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/multimedia/qmediabindableinterface.h b/multimedia/qmediabindableinterface.h new file mode 100755 index 00000000..d58e55c9 --- /dev/null +++ b/multimedia/qmediabindableinterface.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QMediaBindableInterface_MediaObject(QtObjectPtr ptr); +void QMediaBindableInterface_DestroyQMediaBindableInterface(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmediacontainercontrol.cpp b/multimedia/qmediacontainercontrol.cpp new file mode 100755 index 00000000..978ee1ce --- /dev/null +++ b/multimedia/qmediacontainercontrol.cpp @@ -0,0 +1,32 @@ +#include "qmediacontainercontrol.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMediaContainerControl: public QMediaContainerControl { +public: +}; + +char* QMediaContainerControl_ContainerDescription(QtObjectPtr ptr, char* format){ + return static_cast(ptr)->containerDescription(QString(format)).toUtf8().data(); +} + +char* QMediaContainerControl_ContainerFormat(QtObjectPtr ptr){ + return static_cast(ptr)->containerFormat().toUtf8().data(); +} + +void QMediaContainerControl_SetContainerFormat(QtObjectPtr ptr, char* format){ + static_cast(ptr)->setContainerFormat(QString(format)); +} + +char* QMediaContainerControl_SupportedContainers(QtObjectPtr ptr){ + return static_cast(ptr)->supportedContainers().join("|").toUtf8().data(); +} + +void QMediaContainerControl_DestroyQMediaContainerControl(QtObjectPtr ptr){ + static_cast(ptr)->~QMediaContainerControl(); +} + diff --git a/multimedia/qmediacontainercontrol.go b/multimedia/qmediacontainercontrol.go new file mode 100755 index 00000000..82d389c5 --- /dev/null +++ b/multimedia/qmediacontainercontrol.go @@ -0,0 +1,72 @@ +package multimedia + +//#include "qmediacontainercontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "strings" + "unsafe" +) + +type QMediaContainerControl struct { + QMediaControl +} + +type QMediaContainerControlITF interface { + QMediaControlITF + QMediaContainerControlPTR() *QMediaContainerControl +} + +func PointerFromQMediaContainerControl(ptr QMediaContainerControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMediaContainerControlPTR().Pointer() + } + return nil +} + +func QMediaContainerControlFromPointer(ptr unsafe.Pointer) *QMediaContainerControl { + var n = new(QMediaContainerControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMediaContainerControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMediaContainerControl) QMediaContainerControlPTR() *QMediaContainerControl { + return ptr +} + +func (ptr *QMediaContainerControl) ContainerDescription(format string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QMediaContainerControl_ContainerDescription(C.QtObjectPtr(ptr.Pointer()), C.CString(format))) + } + return "" +} + +func (ptr *QMediaContainerControl) ContainerFormat() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMediaContainerControl_ContainerFormat(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMediaContainerControl) SetContainerFormat(format string) { + if ptr.Pointer() != nil { + C.QMediaContainerControl_SetContainerFormat(C.QtObjectPtr(ptr.Pointer()), C.CString(format)) + } +} + +func (ptr *QMediaContainerControl) SupportedContainers() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QMediaContainerControl_SupportedContainers(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QMediaContainerControl) DestroyQMediaContainerControl() { + if ptr.Pointer() != nil { + C.QMediaContainerControl_DestroyQMediaContainerControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qmediacontainercontrol.h b/multimedia/qmediacontainercontrol.h new file mode 100755 index 00000000..11aa4ef9 --- /dev/null +++ b/multimedia/qmediacontainercontrol.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QMediaContainerControl_ContainerDescription(QtObjectPtr ptr, char* format); +char* QMediaContainerControl_ContainerFormat(QtObjectPtr ptr); +void QMediaContainerControl_SetContainerFormat(QtObjectPtr ptr, char* format); +char* QMediaContainerControl_SupportedContainers(QtObjectPtr ptr); +void QMediaContainerControl_DestroyQMediaContainerControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmediacontent.cpp b/multimedia/qmediacontent.cpp new file mode 100755 index 00000000..b9315528 --- /dev/null +++ b/multimedia/qmediacontent.cpp @@ -0,0 +1,55 @@ +#include "qmediacontent.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMediaContent: public QMediaContent { +public: +}; + +QtObjectPtr QMediaContent_NewQMediaContent(){ + return new QMediaContent(); +} + +QtObjectPtr QMediaContent_NewQMediaContent7(QtObjectPtr playlist, char* contentUrl, int takeOwnership){ + return new QMediaContent(static_cast(playlist), QUrl(QString(contentUrl)), takeOwnership != 0); +} + +QtObjectPtr QMediaContent_NewQMediaContent6(QtObjectPtr other){ + return new QMediaContent(*static_cast(other)); +} + +QtObjectPtr QMediaContent_NewQMediaContent4(QtObjectPtr resource){ + return new QMediaContent(*static_cast(resource)); +} + +QtObjectPtr QMediaContent_NewQMediaContent3(QtObjectPtr request){ + return new QMediaContent(*static_cast(request)); +} + +QtObjectPtr QMediaContent_NewQMediaContent2(char* url){ + return new QMediaContent(QUrl(QString(url))); +} + +char* QMediaContent_CanonicalUrl(QtObjectPtr ptr){ + return static_cast(ptr)->canonicalUrl().toString().toUtf8().data(); +} + +int QMediaContent_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +QtObjectPtr QMediaContent_Playlist(QtObjectPtr ptr){ + return static_cast(ptr)->playlist(); +} + +void QMediaContent_DestroyQMediaContent(QtObjectPtr ptr){ + static_cast(ptr)->~QMediaContent(); +} + diff --git a/multimedia/qmediacontent.go b/multimedia/qmediacontent.go new file mode 100755 index 00000000..f501793d --- /dev/null +++ b/multimedia/qmediacontent.go @@ -0,0 +1,93 @@ +package multimedia + +//#include "qmediacontent.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/network" + "unsafe" +) + +type QMediaContent struct { + ptr unsafe.Pointer +} + +type QMediaContentITF interface { + QMediaContentPTR() *QMediaContent +} + +func (p *QMediaContent) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMediaContent) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMediaContent(ptr QMediaContentITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMediaContentPTR().Pointer() + } + return nil +} + +func QMediaContentFromPointer(ptr unsafe.Pointer) *QMediaContent { + var n = new(QMediaContent) + n.SetPointer(ptr) + return n +} + +func (ptr *QMediaContent) QMediaContentPTR() *QMediaContent { + return ptr +} + +func NewQMediaContent() *QMediaContent { + return QMediaContentFromPointer(unsafe.Pointer(C.QMediaContent_NewQMediaContent())) +} + +func NewQMediaContent7(playlist QMediaPlaylistITF, contentUrl string, takeOwnership bool) *QMediaContent { + return QMediaContentFromPointer(unsafe.Pointer(C.QMediaContent_NewQMediaContent7(C.QtObjectPtr(PointerFromQMediaPlaylist(playlist)), C.CString(contentUrl), C.int(qt.GoBoolToInt(takeOwnership))))) +} + +func NewQMediaContent6(other QMediaContentITF) *QMediaContent { + return QMediaContentFromPointer(unsafe.Pointer(C.QMediaContent_NewQMediaContent6(C.QtObjectPtr(PointerFromQMediaContent(other))))) +} + +func NewQMediaContent4(resource QMediaResourceITF) *QMediaContent { + return QMediaContentFromPointer(unsafe.Pointer(C.QMediaContent_NewQMediaContent4(C.QtObjectPtr(PointerFromQMediaResource(resource))))) +} + +func NewQMediaContent3(request network.QNetworkRequestITF) *QMediaContent { + return QMediaContentFromPointer(unsafe.Pointer(C.QMediaContent_NewQMediaContent3(C.QtObjectPtr(network.PointerFromQNetworkRequest(request))))) +} + +func NewQMediaContent2(url string) *QMediaContent { + return QMediaContentFromPointer(unsafe.Pointer(C.QMediaContent_NewQMediaContent2(C.CString(url)))) +} + +func (ptr *QMediaContent) CanonicalUrl() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMediaContent_CanonicalUrl(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMediaContent) IsNull() bool { + if ptr.Pointer() != nil { + return C.QMediaContent_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMediaContent) Playlist() *QMediaPlaylist { + if ptr.Pointer() != nil { + return QMediaPlaylistFromPointer(unsafe.Pointer(C.QMediaContent_Playlist(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMediaContent) DestroyQMediaContent() { + if ptr.Pointer() != nil { + C.QMediaContent_DestroyQMediaContent(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/multimedia/qmediacontent.h b/multimedia/qmediacontent.h new file mode 100755 index 00000000..3ee924d4 --- /dev/null +++ b/multimedia/qmediacontent.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QMediaContent_NewQMediaContent(); +QtObjectPtr QMediaContent_NewQMediaContent7(QtObjectPtr playlist, char* contentUrl, int takeOwnership); +QtObjectPtr QMediaContent_NewQMediaContent6(QtObjectPtr other); +QtObjectPtr QMediaContent_NewQMediaContent4(QtObjectPtr resource); +QtObjectPtr QMediaContent_NewQMediaContent3(QtObjectPtr request); +QtObjectPtr QMediaContent_NewQMediaContent2(char* url); +char* QMediaContent_CanonicalUrl(QtObjectPtr ptr); +int QMediaContent_IsNull(QtObjectPtr ptr); +QtObjectPtr QMediaContent_Playlist(QtObjectPtr ptr); +void QMediaContent_DestroyQMediaContent(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmediacontrol.cpp b/multimedia/qmediacontrol.cpp new file mode 100755 index 00000000..b5673f9e --- /dev/null +++ b/multimedia/qmediacontrol.cpp @@ -0,0 +1,16 @@ +#include "qmediacontrol.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMediaControl: public QMediaControl { +public: +}; + +void QMediaControl_DestroyQMediaControl(QtObjectPtr ptr){ + static_cast(ptr)->~QMediaControl(); +} + diff --git a/multimedia/qmediacontrol.go b/multimedia/qmediacontrol.go new file mode 100755 index 00000000..d4016fbf --- /dev/null +++ b/multimedia/qmediacontrol.go @@ -0,0 +1,45 @@ +package multimedia + +//#include "qmediacontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QMediaControl struct { + core.QObject +} + +type QMediaControlITF interface { + core.QObjectITF + QMediaControlPTR() *QMediaControl +} + +func PointerFromQMediaControl(ptr QMediaControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMediaControlPTR().Pointer() + } + return nil +} + +func QMediaControlFromPointer(ptr unsafe.Pointer) *QMediaControl { + var n = new(QMediaControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMediaControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMediaControl) QMediaControlPTR() *QMediaControl { + return ptr +} + +func (ptr *QMediaControl) DestroyQMediaControl() { + if ptr.Pointer() != nil { + C.QMediaControl_DestroyQMediaControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qmediacontrol.h b/multimedia/qmediacontrol.h new file mode 100755 index 00000000..c08c9a96 --- /dev/null +++ b/multimedia/qmediacontrol.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QMediaControl_DestroyQMediaControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmediagaplessplaybackcontrol.cpp b/multimedia/qmediagaplessplaybackcontrol.cpp new file mode 100755 index 00000000..75defccb --- /dev/null +++ b/multimedia/qmediagaplessplaybackcontrol.cpp @@ -0,0 +1,35 @@ +#include "qmediagaplessplaybackcontrol.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMediaGaplessPlaybackControl: public QMediaGaplessPlaybackControl { +public: +void Signal_AdvancedToNextMedia(){callbackQMediaGaplessPlaybackControlAdvancedToNextMedia(this->objectName().toUtf8().data());}; +}; + +void QMediaGaplessPlaybackControl_ConnectAdvancedToNextMedia(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaGaplessPlaybackControl::advancedToNextMedia), static_cast(ptr), static_cast(&MyQMediaGaplessPlaybackControl::Signal_AdvancedToNextMedia));; +} + +void QMediaGaplessPlaybackControl_DisconnectAdvancedToNextMedia(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaGaplessPlaybackControl::advancedToNextMedia), static_cast(ptr), static_cast(&MyQMediaGaplessPlaybackControl::Signal_AdvancedToNextMedia));; +} + +int QMediaGaplessPlaybackControl_IsCrossfadeSupported(QtObjectPtr ptr){ + return static_cast(ptr)->isCrossfadeSupported(); +} + +void QMediaGaplessPlaybackControl_SetNextMedia(QtObjectPtr ptr, QtObjectPtr media){ + static_cast(ptr)->setNextMedia(*static_cast(media)); +} + +void QMediaGaplessPlaybackControl_DestroyQMediaGaplessPlaybackControl(QtObjectPtr ptr){ + static_cast(ptr)->~QMediaGaplessPlaybackControl(); +} + diff --git a/multimedia/qmediagaplessplaybackcontrol.go b/multimedia/qmediagaplessplaybackcontrol.go new file mode 100755 index 00000000..c2f6c87a --- /dev/null +++ b/multimedia/qmediagaplessplaybackcontrol.go @@ -0,0 +1,76 @@ +package multimedia + +//#include "qmediagaplessplaybackcontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QMediaGaplessPlaybackControl struct { + QMediaControl +} + +type QMediaGaplessPlaybackControlITF interface { + QMediaControlITF + QMediaGaplessPlaybackControlPTR() *QMediaGaplessPlaybackControl +} + +func PointerFromQMediaGaplessPlaybackControl(ptr QMediaGaplessPlaybackControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMediaGaplessPlaybackControlPTR().Pointer() + } + return nil +} + +func QMediaGaplessPlaybackControlFromPointer(ptr unsafe.Pointer) *QMediaGaplessPlaybackControl { + var n = new(QMediaGaplessPlaybackControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMediaGaplessPlaybackControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMediaGaplessPlaybackControl) QMediaGaplessPlaybackControlPTR() *QMediaGaplessPlaybackControl { + return ptr +} + +func (ptr *QMediaGaplessPlaybackControl) ConnectAdvancedToNextMedia(f func()) { + if ptr.Pointer() != nil { + C.QMediaGaplessPlaybackControl_ConnectAdvancedToNextMedia(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "advancedToNextMedia", f) + } +} + +func (ptr *QMediaGaplessPlaybackControl) DisconnectAdvancedToNextMedia() { + if ptr.Pointer() != nil { + C.QMediaGaplessPlaybackControl_DisconnectAdvancedToNextMedia(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "advancedToNextMedia") + } +} + +//export callbackQMediaGaplessPlaybackControlAdvancedToNextMedia +func callbackQMediaGaplessPlaybackControlAdvancedToNextMedia(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "advancedToNextMedia").(func())() +} + +func (ptr *QMediaGaplessPlaybackControl) IsCrossfadeSupported() bool { + if ptr.Pointer() != nil { + return C.QMediaGaplessPlaybackControl_IsCrossfadeSupported(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMediaGaplessPlaybackControl) SetNextMedia(media QMediaContentITF) { + if ptr.Pointer() != nil { + C.QMediaGaplessPlaybackControl_SetNextMedia(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMediaContent(media))) + } +} + +func (ptr *QMediaGaplessPlaybackControl) DestroyQMediaGaplessPlaybackControl() { + if ptr.Pointer() != nil { + C.QMediaGaplessPlaybackControl_DestroyQMediaGaplessPlaybackControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qmediagaplessplaybackcontrol.h b/multimedia/qmediagaplessplaybackcontrol.h new file mode 100755 index 00000000..1c0c76b9 --- /dev/null +++ b/multimedia/qmediagaplessplaybackcontrol.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QMediaGaplessPlaybackControl_ConnectAdvancedToNextMedia(QtObjectPtr ptr); +void QMediaGaplessPlaybackControl_DisconnectAdvancedToNextMedia(QtObjectPtr ptr); +int QMediaGaplessPlaybackControl_IsCrossfadeSupported(QtObjectPtr ptr); +void QMediaGaplessPlaybackControl_SetNextMedia(QtObjectPtr ptr, QtObjectPtr media); +void QMediaGaplessPlaybackControl_DestroyQMediaGaplessPlaybackControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmedianetworkaccesscontrol.cpp b/multimedia/qmedianetworkaccesscontrol.cpp new file mode 100755 index 00000000..a1961889 --- /dev/null +++ b/multimedia/qmedianetworkaccesscontrol.cpp @@ -0,0 +1,16 @@ +#include "qmedianetworkaccesscontrol.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMediaNetworkAccessControl: public QMediaNetworkAccessControl { +public: +}; + +void QMediaNetworkAccessControl_DestroyQMediaNetworkAccessControl(QtObjectPtr ptr){ + static_cast(ptr)->~QMediaNetworkAccessControl(); +} + diff --git a/multimedia/qmedianetworkaccesscontrol.go b/multimedia/qmedianetworkaccesscontrol.go new file mode 100755 index 00000000..51b30080 --- /dev/null +++ b/multimedia/qmedianetworkaccesscontrol.go @@ -0,0 +1,44 @@ +package multimedia + +//#include "qmedianetworkaccesscontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QMediaNetworkAccessControl struct { + QMediaControl +} + +type QMediaNetworkAccessControlITF interface { + QMediaControlITF + QMediaNetworkAccessControlPTR() *QMediaNetworkAccessControl +} + +func PointerFromQMediaNetworkAccessControl(ptr QMediaNetworkAccessControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMediaNetworkAccessControlPTR().Pointer() + } + return nil +} + +func QMediaNetworkAccessControlFromPointer(ptr unsafe.Pointer) *QMediaNetworkAccessControl { + var n = new(QMediaNetworkAccessControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMediaNetworkAccessControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMediaNetworkAccessControl) QMediaNetworkAccessControlPTR() *QMediaNetworkAccessControl { + return ptr +} + +func (ptr *QMediaNetworkAccessControl) DestroyQMediaNetworkAccessControl() { + if ptr.Pointer() != nil { + C.QMediaNetworkAccessControl_DestroyQMediaNetworkAccessControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qmedianetworkaccesscontrol.h b/multimedia/qmedianetworkaccesscontrol.h new file mode 100755 index 00000000..2a8cbce3 --- /dev/null +++ b/multimedia/qmedianetworkaccesscontrol.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QMediaNetworkAccessControl_DestroyQMediaNetworkAccessControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmediaobject.cpp b/multimedia/qmediaobject.cpp new file mode 100755 index 00000000..9e298b57 --- /dev/null +++ b/multimedia/qmediaobject.cpp @@ -0,0 +1,89 @@ +#include "qmediaobject.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMediaObject: public QMediaObject { +public: +void Signal_AvailabilityChanged(bool available){callbackQMediaObjectAvailabilityChanged(this->objectName().toUtf8().data(), available);}; +void Signal_MetaDataAvailableChanged(bool available){callbackQMediaObjectMetaDataAvailableChanged(this->objectName().toUtf8().data(), available);}; +void Signal_MetaDataChanged(){callbackQMediaObjectMetaDataChanged(this->objectName().toUtf8().data());}; +void Signal_NotifyIntervalChanged(int milliseconds){callbackQMediaObjectNotifyIntervalChanged(this->objectName().toUtf8().data(), milliseconds);}; +}; + +int QMediaObject_NotifyInterval(QtObjectPtr ptr){ + return static_cast(ptr)->notifyInterval(); +} + +void QMediaObject_SetNotifyInterval(QtObjectPtr ptr, int milliSeconds){ + static_cast(ptr)->setNotifyInterval(milliSeconds); +} + +void QMediaObject_ConnectAvailabilityChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaObject::availabilityChanged), static_cast(ptr), static_cast(&MyQMediaObject::Signal_AvailabilityChanged));; +} + +void QMediaObject_DisconnectAvailabilityChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaObject::availabilityChanged), static_cast(ptr), static_cast(&MyQMediaObject::Signal_AvailabilityChanged));; +} + +char* QMediaObject_AvailableMetaData(QtObjectPtr ptr){ + return static_cast(ptr)->availableMetaData().join("|").toUtf8().data(); +} + +int QMediaObject_Bind(QtObjectPtr ptr, QtObjectPtr object){ + return static_cast(ptr)->bind(static_cast(object)); +} + +int QMediaObject_IsAvailable(QtObjectPtr ptr){ + return static_cast(ptr)->isAvailable(); +} + +int QMediaObject_IsMetaDataAvailable(QtObjectPtr ptr){ + return static_cast(ptr)->isMetaDataAvailable(); +} + +char* QMediaObject_MetaData(QtObjectPtr ptr, char* key){ + return static_cast(ptr)->metaData(QString(key)).toString().toUtf8().data(); +} + +void QMediaObject_ConnectMetaDataAvailableChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaObject::metaDataAvailableChanged), static_cast(ptr), static_cast(&MyQMediaObject::Signal_MetaDataAvailableChanged));; +} + +void QMediaObject_DisconnectMetaDataAvailableChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaObject::metaDataAvailableChanged), static_cast(ptr), static_cast(&MyQMediaObject::Signal_MetaDataAvailableChanged));; +} + +void QMediaObject_ConnectMetaDataChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaObject::metaDataChanged), static_cast(ptr), static_cast(&MyQMediaObject::Signal_MetaDataChanged));; +} + +void QMediaObject_DisconnectMetaDataChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaObject::metaDataChanged), static_cast(ptr), static_cast(&MyQMediaObject::Signal_MetaDataChanged));; +} + +void QMediaObject_ConnectNotifyIntervalChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaObject::notifyIntervalChanged), static_cast(ptr), static_cast(&MyQMediaObject::Signal_NotifyIntervalChanged));; +} + +void QMediaObject_DisconnectNotifyIntervalChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaObject::notifyIntervalChanged), static_cast(ptr), static_cast(&MyQMediaObject::Signal_NotifyIntervalChanged));; +} + +QtObjectPtr QMediaObject_Service(QtObjectPtr ptr){ + return static_cast(ptr)->service(); +} + +void QMediaObject_Unbind(QtObjectPtr ptr, QtObjectPtr object){ + static_cast(ptr)->unbind(static_cast(object)); +} + +void QMediaObject_DestroyQMediaObject(QtObjectPtr ptr){ + static_cast(ptr)->~QMediaObject(); +} + diff --git a/multimedia/qmediaobject.go b/multimedia/qmediaobject.go new file mode 100755 index 00000000..b518aea6 --- /dev/null +++ b/multimedia/qmediaobject.go @@ -0,0 +1,183 @@ +package multimedia + +//#include "qmediaobject.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QMediaObject struct { + core.QObject +} + +type QMediaObjectITF interface { + core.QObjectITF + QMediaObjectPTR() *QMediaObject +} + +func PointerFromQMediaObject(ptr QMediaObjectITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMediaObjectPTR().Pointer() + } + return nil +} + +func QMediaObjectFromPointer(ptr unsafe.Pointer) *QMediaObject { + var n = new(QMediaObject) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMediaObject_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMediaObject) QMediaObjectPTR() *QMediaObject { + return ptr +} + +func (ptr *QMediaObject) NotifyInterval() int { + if ptr.Pointer() != nil { + return int(C.QMediaObject_NotifyInterval(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMediaObject) SetNotifyInterval(milliSeconds int) { + if ptr.Pointer() != nil { + C.QMediaObject_SetNotifyInterval(C.QtObjectPtr(ptr.Pointer()), C.int(milliSeconds)) + } +} + +func (ptr *QMediaObject) ConnectAvailabilityChanged(f func(available bool)) { + if ptr.Pointer() != nil { + C.QMediaObject_ConnectAvailabilityChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "availabilityChanged", f) + } +} + +func (ptr *QMediaObject) DisconnectAvailabilityChanged() { + if ptr.Pointer() != nil { + C.QMediaObject_DisconnectAvailabilityChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "availabilityChanged") + } +} + +//export callbackQMediaObjectAvailabilityChanged +func callbackQMediaObjectAvailabilityChanged(ptrName *C.char, available C.int) { + qt.GetSignal(C.GoString(ptrName), "availabilityChanged").(func(bool))(int(available) != 0) +} + +func (ptr *QMediaObject) AvailableMetaData() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QMediaObject_AvailableMetaData(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QMediaObject) Bind(object core.QObjectITF) bool { + if ptr.Pointer() != nil { + return C.QMediaObject_Bind(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(object))) != 0 + } + return false +} + +func (ptr *QMediaObject) IsAvailable() bool { + if ptr.Pointer() != nil { + return C.QMediaObject_IsAvailable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMediaObject) IsMetaDataAvailable() bool { + if ptr.Pointer() != nil { + return C.QMediaObject_IsMetaDataAvailable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMediaObject) MetaData(key string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QMediaObject_MetaData(C.QtObjectPtr(ptr.Pointer()), C.CString(key))) + } + return "" +} + +func (ptr *QMediaObject) ConnectMetaDataAvailableChanged(f func(available bool)) { + if ptr.Pointer() != nil { + C.QMediaObject_ConnectMetaDataAvailableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "metaDataAvailableChanged", f) + } +} + +func (ptr *QMediaObject) DisconnectMetaDataAvailableChanged() { + if ptr.Pointer() != nil { + C.QMediaObject_DisconnectMetaDataAvailableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "metaDataAvailableChanged") + } +} + +//export callbackQMediaObjectMetaDataAvailableChanged +func callbackQMediaObjectMetaDataAvailableChanged(ptrName *C.char, available C.int) { + qt.GetSignal(C.GoString(ptrName), "metaDataAvailableChanged").(func(bool))(int(available) != 0) +} + +func (ptr *QMediaObject) ConnectMetaDataChanged(f func()) { + if ptr.Pointer() != nil { + C.QMediaObject_ConnectMetaDataChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "metaDataChanged", f) + } +} + +func (ptr *QMediaObject) DisconnectMetaDataChanged() { + if ptr.Pointer() != nil { + C.QMediaObject_DisconnectMetaDataChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "metaDataChanged") + } +} + +//export callbackQMediaObjectMetaDataChanged +func callbackQMediaObjectMetaDataChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "metaDataChanged").(func())() +} + +func (ptr *QMediaObject) ConnectNotifyIntervalChanged(f func(milliseconds int)) { + if ptr.Pointer() != nil { + C.QMediaObject_ConnectNotifyIntervalChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "notifyIntervalChanged", f) + } +} + +func (ptr *QMediaObject) DisconnectNotifyIntervalChanged() { + if ptr.Pointer() != nil { + C.QMediaObject_DisconnectNotifyIntervalChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "notifyIntervalChanged") + } +} + +//export callbackQMediaObjectNotifyIntervalChanged +func callbackQMediaObjectNotifyIntervalChanged(ptrName *C.char, milliseconds C.int) { + qt.GetSignal(C.GoString(ptrName), "notifyIntervalChanged").(func(int))(int(milliseconds)) +} + +func (ptr *QMediaObject) Service() *QMediaService { + if ptr.Pointer() != nil { + return QMediaServiceFromPointer(unsafe.Pointer(C.QMediaObject_Service(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMediaObject) Unbind(object core.QObjectITF) { + if ptr.Pointer() != nil { + C.QMediaObject_Unbind(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(object))) + } +} + +func (ptr *QMediaObject) DestroyQMediaObject() { + if ptr.Pointer() != nil { + C.QMediaObject_DestroyQMediaObject(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qmediaobject.h b/multimedia/qmediaobject.h new file mode 100755 index 00000000..6b58aa3e --- /dev/null +++ b/multimedia/qmediaobject.h @@ -0,0 +1,27 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QMediaObject_NotifyInterval(QtObjectPtr ptr); +void QMediaObject_SetNotifyInterval(QtObjectPtr ptr, int milliSeconds); +void QMediaObject_ConnectAvailabilityChanged(QtObjectPtr ptr); +void QMediaObject_DisconnectAvailabilityChanged(QtObjectPtr ptr); +char* QMediaObject_AvailableMetaData(QtObjectPtr ptr); +int QMediaObject_Bind(QtObjectPtr ptr, QtObjectPtr object); +int QMediaObject_IsAvailable(QtObjectPtr ptr); +int QMediaObject_IsMetaDataAvailable(QtObjectPtr ptr); +char* QMediaObject_MetaData(QtObjectPtr ptr, char* key); +void QMediaObject_ConnectMetaDataAvailableChanged(QtObjectPtr ptr); +void QMediaObject_DisconnectMetaDataAvailableChanged(QtObjectPtr ptr); +void QMediaObject_ConnectMetaDataChanged(QtObjectPtr ptr); +void QMediaObject_DisconnectMetaDataChanged(QtObjectPtr ptr); +void QMediaObject_ConnectNotifyIntervalChanged(QtObjectPtr ptr); +void QMediaObject_DisconnectNotifyIntervalChanged(QtObjectPtr ptr); +QtObjectPtr QMediaObject_Service(QtObjectPtr ptr); +void QMediaObject_Unbind(QtObjectPtr ptr, QtObjectPtr object); +void QMediaObject_DestroyQMediaObject(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmediaplayer.cpp b/multimedia/qmediaplayer.cpp new file mode 100755 index 00000000..a35854c4 --- /dev/null +++ b/multimedia/qmediaplayer.cpp @@ -0,0 +1,174 @@ +#include "qmediaplayer.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMediaPlayer: public QMediaPlayer { +public: +void Signal_AudioAvailableChanged(bool available){callbackQMediaPlayerAudioAvailableChanged(this->objectName().toUtf8().data(), available);}; +void Signal_BufferStatusChanged(int percentFilled){callbackQMediaPlayerBufferStatusChanged(this->objectName().toUtf8().data(), percentFilled);}; +void Signal_MediaStatusChanged(QMediaPlayer::MediaStatus status){callbackQMediaPlayerMediaStatusChanged(this->objectName().toUtf8().data(), status);}; +void Signal_MutedChanged(bool muted){callbackQMediaPlayerMutedChanged(this->objectName().toUtf8().data(), muted);}; +void Signal_SeekableChanged(bool seekable){callbackQMediaPlayerSeekableChanged(this->objectName().toUtf8().data(), seekable);}; +void Signal_StateChanged(QMediaPlayer::State state){callbackQMediaPlayerStateChanged(this->objectName().toUtf8().data(), state);}; +void Signal_VideoAvailableChanged(bool videoAvailable){callbackQMediaPlayerVideoAvailableChanged(this->objectName().toUtf8().data(), videoAvailable);}; +void Signal_VolumeChanged(int volume){callbackQMediaPlayerVolumeChanged(this->objectName().toUtf8().data(), volume);}; +}; + +int QMediaPlayer_BufferStatus(QtObjectPtr ptr){ + return static_cast(ptr)->bufferStatus(); +} + +char* QMediaPlayer_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +int QMediaPlayer_IsAudioAvailable(QtObjectPtr ptr){ + return static_cast(ptr)->isAudioAvailable(); +} + +int QMediaPlayer_IsMuted(QtObjectPtr ptr){ + return static_cast(ptr)->isMuted(); +} + +int QMediaPlayer_IsSeekable(QtObjectPtr ptr){ + return static_cast(ptr)->isSeekable(); +} + +int QMediaPlayer_IsVideoAvailable(QtObjectPtr ptr){ + return static_cast(ptr)->isVideoAvailable(); +} + +int QMediaPlayer_MediaStatus(QtObjectPtr ptr){ + return static_cast(ptr)->mediaStatus(); +} + +QtObjectPtr QMediaPlayer_Playlist(QtObjectPtr ptr){ + return static_cast(ptr)->playlist(); +} + +void QMediaPlayer_SetMuted(QtObjectPtr ptr, int muted){ + QMetaObject::invokeMethod(static_cast(ptr), "setMuted", Q_ARG(bool, muted != 0)); +} + +void QMediaPlayer_SetPlaylist(QtObjectPtr ptr, QtObjectPtr playlist){ + QMetaObject::invokeMethod(static_cast(ptr), "setPlaylist", Q_ARG(QMediaPlaylist*, static_cast(playlist))); +} + +void QMediaPlayer_SetVolume(QtObjectPtr ptr, int volume){ + QMetaObject::invokeMethod(static_cast(ptr), "setVolume", Q_ARG(int, volume)); +} + +int QMediaPlayer_Volume(QtObjectPtr ptr){ + return static_cast(ptr)->volume(); +} + +QtObjectPtr QMediaPlayer_NewQMediaPlayer(QtObjectPtr parent, int flags){ + return new QMediaPlayer(static_cast(parent), static_cast(flags)); +} + +void QMediaPlayer_ConnectAudioAvailableChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaPlayer::audioAvailableChanged), static_cast(ptr), static_cast(&MyQMediaPlayer::Signal_AudioAvailableChanged));; +} + +void QMediaPlayer_DisconnectAudioAvailableChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaPlayer::audioAvailableChanged), static_cast(ptr), static_cast(&MyQMediaPlayer::Signal_AudioAvailableChanged));; +} + +void QMediaPlayer_ConnectBufferStatusChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaPlayer::bufferStatusChanged), static_cast(ptr), static_cast(&MyQMediaPlayer::Signal_BufferStatusChanged));; +} + +void QMediaPlayer_DisconnectBufferStatusChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaPlayer::bufferStatusChanged), static_cast(ptr), static_cast(&MyQMediaPlayer::Signal_BufferStatusChanged));; +} + +int QMediaPlayer_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +void QMediaPlayer_ConnectMediaStatusChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaPlayer::mediaStatusChanged), static_cast(ptr), static_cast(&MyQMediaPlayer::Signal_MediaStatusChanged));; +} + +void QMediaPlayer_DisconnectMediaStatusChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaPlayer::mediaStatusChanged), static_cast(ptr), static_cast(&MyQMediaPlayer::Signal_MediaStatusChanged));; +} + +QtObjectPtr QMediaPlayer_MediaStream(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->mediaStream()); +} + +void QMediaPlayer_ConnectMutedChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaPlayer::mutedChanged), static_cast(ptr), static_cast(&MyQMediaPlayer::Signal_MutedChanged));; +} + +void QMediaPlayer_DisconnectMutedChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaPlayer::mutedChanged), static_cast(ptr), static_cast(&MyQMediaPlayer::Signal_MutedChanged));; +} + +void QMediaPlayer_Pause(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "pause"); +} + +void QMediaPlayer_Play(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "play"); +} + +void QMediaPlayer_ConnectSeekableChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaPlayer::seekableChanged), static_cast(ptr), static_cast(&MyQMediaPlayer::Signal_SeekableChanged));; +} + +void QMediaPlayer_DisconnectSeekableChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaPlayer::seekableChanged), static_cast(ptr), static_cast(&MyQMediaPlayer::Signal_SeekableChanged));; +} + +void QMediaPlayer_SetMedia(QtObjectPtr ptr, QtObjectPtr media, QtObjectPtr stream){ + QMetaObject::invokeMethod(static_cast(ptr), "setMedia", Q_ARG(QMediaContent, *static_cast(media)), Q_ARG(QIODevice*, static_cast(stream))); +} + +void QMediaPlayer_SetVideoOutput3(QtObjectPtr ptr, QtObjectPtr surface){ + static_cast(ptr)->setVideoOutput(static_cast(surface)); +} + +void QMediaPlayer_ConnectStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaPlayer::stateChanged), static_cast(ptr), static_cast(&MyQMediaPlayer::Signal_StateChanged));; +} + +void QMediaPlayer_DisconnectStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaPlayer::stateChanged), static_cast(ptr), static_cast(&MyQMediaPlayer::Signal_StateChanged));; +} + +void QMediaPlayer_Stop(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "stop"); +} + +void QMediaPlayer_ConnectVideoAvailableChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaPlayer::videoAvailableChanged), static_cast(ptr), static_cast(&MyQMediaPlayer::Signal_VideoAvailableChanged));; +} + +void QMediaPlayer_DisconnectVideoAvailableChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaPlayer::videoAvailableChanged), static_cast(ptr), static_cast(&MyQMediaPlayer::Signal_VideoAvailableChanged));; +} + +void QMediaPlayer_ConnectVolumeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaPlayer::volumeChanged), static_cast(ptr), static_cast(&MyQMediaPlayer::Signal_VolumeChanged));; +} + +void QMediaPlayer_DisconnectVolumeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaPlayer::volumeChanged), static_cast(ptr), static_cast(&MyQMediaPlayer::Signal_VolumeChanged));; +} + +void QMediaPlayer_DestroyQMediaPlayer(QtObjectPtr ptr){ + static_cast(ptr)->~QMediaPlayer(); +} + diff --git a/multimedia/qmediaplayer.go b/multimedia/qmediaplayer.go new file mode 100755 index 00000000..f56ad683 --- /dev/null +++ b/multimedia/qmediaplayer.go @@ -0,0 +1,372 @@ +package multimedia + +//#include "qmediaplayer.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QMediaPlayer struct { + QMediaObject +} + +type QMediaPlayerITF interface { + QMediaObjectITF + QMediaPlayerPTR() *QMediaPlayer +} + +func PointerFromQMediaPlayer(ptr QMediaPlayerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMediaPlayerPTR().Pointer() + } + return nil +} + +func QMediaPlayerFromPointer(ptr unsafe.Pointer) *QMediaPlayer { + var n = new(QMediaPlayer) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMediaPlayer_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMediaPlayer) QMediaPlayerPTR() *QMediaPlayer { + return ptr +} + +//QMediaPlayer::Error +type QMediaPlayer__Error int + +var ( + QMediaPlayer__NoError = QMediaPlayer__Error(0) + QMediaPlayer__ResourceError = QMediaPlayer__Error(1) + QMediaPlayer__FormatError = QMediaPlayer__Error(2) + QMediaPlayer__NetworkError = QMediaPlayer__Error(3) + QMediaPlayer__AccessDeniedError = QMediaPlayer__Error(4) + QMediaPlayer__ServiceMissingError = QMediaPlayer__Error(5) + QMediaPlayer__MediaIsPlaylist = QMediaPlayer__Error(6) +) + +//QMediaPlayer::Flag +type QMediaPlayer__Flag int + +var ( + QMediaPlayer__LowLatency = QMediaPlayer__Flag(0x01) + QMediaPlayer__StreamPlayback = QMediaPlayer__Flag(0x02) + QMediaPlayer__VideoSurface = QMediaPlayer__Flag(0x04) +) + +//QMediaPlayer::MediaStatus +type QMediaPlayer__MediaStatus int + +var ( + QMediaPlayer__UnknownMediaStatus = QMediaPlayer__MediaStatus(0) + QMediaPlayer__NoMedia = QMediaPlayer__MediaStatus(1) + QMediaPlayer__LoadingMedia = QMediaPlayer__MediaStatus(2) + QMediaPlayer__LoadedMedia = QMediaPlayer__MediaStatus(3) + QMediaPlayer__StalledMedia = QMediaPlayer__MediaStatus(4) + QMediaPlayer__BufferingMedia = QMediaPlayer__MediaStatus(5) + QMediaPlayer__BufferedMedia = QMediaPlayer__MediaStatus(6) + QMediaPlayer__EndOfMedia = QMediaPlayer__MediaStatus(7) + QMediaPlayer__InvalidMedia = QMediaPlayer__MediaStatus(8) +) + +//QMediaPlayer::State +type QMediaPlayer__State int + +var ( + QMediaPlayer__StoppedState = QMediaPlayer__State(0) + QMediaPlayer__PlayingState = QMediaPlayer__State(1) + QMediaPlayer__PausedState = QMediaPlayer__State(2) +) + +func (ptr *QMediaPlayer) BufferStatus() int { + if ptr.Pointer() != nil { + return int(C.QMediaPlayer_BufferStatus(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMediaPlayer) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMediaPlayer_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMediaPlayer) IsAudioAvailable() bool { + if ptr.Pointer() != nil { + return C.QMediaPlayer_IsAudioAvailable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMediaPlayer) IsMuted() bool { + if ptr.Pointer() != nil { + return C.QMediaPlayer_IsMuted(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMediaPlayer) IsSeekable() bool { + if ptr.Pointer() != nil { + return C.QMediaPlayer_IsSeekable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMediaPlayer) IsVideoAvailable() bool { + if ptr.Pointer() != nil { + return C.QMediaPlayer_IsVideoAvailable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMediaPlayer) MediaStatus() QMediaPlayer__MediaStatus { + if ptr.Pointer() != nil { + return QMediaPlayer__MediaStatus(C.QMediaPlayer_MediaStatus(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMediaPlayer) Playlist() *QMediaPlaylist { + if ptr.Pointer() != nil { + return QMediaPlaylistFromPointer(unsafe.Pointer(C.QMediaPlayer_Playlist(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMediaPlayer) SetMuted(muted bool) { + if ptr.Pointer() != nil { + C.QMediaPlayer_SetMuted(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(muted))) + } +} + +func (ptr *QMediaPlayer) SetPlaylist(playlist QMediaPlaylistITF) { + if ptr.Pointer() != nil { + C.QMediaPlayer_SetPlaylist(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMediaPlaylist(playlist))) + } +} + +func (ptr *QMediaPlayer) SetVolume(volume int) { + if ptr.Pointer() != nil { + C.QMediaPlayer_SetVolume(C.QtObjectPtr(ptr.Pointer()), C.int(volume)) + } +} + +func (ptr *QMediaPlayer) Volume() int { + if ptr.Pointer() != nil { + return int(C.QMediaPlayer_Volume(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQMediaPlayer(parent core.QObjectITF, flags QMediaPlayer__Flag) *QMediaPlayer { + return QMediaPlayerFromPointer(unsafe.Pointer(C.QMediaPlayer_NewQMediaPlayer(C.QtObjectPtr(core.PointerFromQObject(parent)), C.int(flags)))) +} + +func (ptr *QMediaPlayer) ConnectAudioAvailableChanged(f func(available bool)) { + if ptr.Pointer() != nil { + C.QMediaPlayer_ConnectAudioAvailableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "audioAvailableChanged", f) + } +} + +func (ptr *QMediaPlayer) DisconnectAudioAvailableChanged() { + if ptr.Pointer() != nil { + C.QMediaPlayer_DisconnectAudioAvailableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "audioAvailableChanged") + } +} + +//export callbackQMediaPlayerAudioAvailableChanged +func callbackQMediaPlayerAudioAvailableChanged(ptrName *C.char, available C.int) { + qt.GetSignal(C.GoString(ptrName), "audioAvailableChanged").(func(bool))(int(available) != 0) +} + +func (ptr *QMediaPlayer) ConnectBufferStatusChanged(f func(percentFilled int)) { + if ptr.Pointer() != nil { + C.QMediaPlayer_ConnectBufferStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "bufferStatusChanged", f) + } +} + +func (ptr *QMediaPlayer) DisconnectBufferStatusChanged() { + if ptr.Pointer() != nil { + C.QMediaPlayer_DisconnectBufferStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "bufferStatusChanged") + } +} + +//export callbackQMediaPlayerBufferStatusChanged +func callbackQMediaPlayerBufferStatusChanged(ptrName *C.char, percentFilled C.int) { + qt.GetSignal(C.GoString(ptrName), "bufferStatusChanged").(func(int))(int(percentFilled)) +} + +func (ptr *QMediaPlayer) Error() QMediaPlayer__Error { + if ptr.Pointer() != nil { + return QMediaPlayer__Error(C.QMediaPlayer_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMediaPlayer) ConnectMediaStatusChanged(f func(status QMediaPlayer__MediaStatus)) { + if ptr.Pointer() != nil { + C.QMediaPlayer_ConnectMediaStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "mediaStatusChanged", f) + } +} + +func (ptr *QMediaPlayer) DisconnectMediaStatusChanged() { + if ptr.Pointer() != nil { + C.QMediaPlayer_DisconnectMediaStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "mediaStatusChanged") + } +} + +//export callbackQMediaPlayerMediaStatusChanged +func callbackQMediaPlayerMediaStatusChanged(ptrName *C.char, status C.int) { + qt.GetSignal(C.GoString(ptrName), "mediaStatusChanged").(func(QMediaPlayer__MediaStatus))(QMediaPlayer__MediaStatus(status)) +} + +func (ptr *QMediaPlayer) MediaStream() *core.QIODevice { + if ptr.Pointer() != nil { + return core.QIODeviceFromPointer(unsafe.Pointer(C.QMediaPlayer_MediaStream(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMediaPlayer) ConnectMutedChanged(f func(muted bool)) { + if ptr.Pointer() != nil { + C.QMediaPlayer_ConnectMutedChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "mutedChanged", f) + } +} + +func (ptr *QMediaPlayer) DisconnectMutedChanged() { + if ptr.Pointer() != nil { + C.QMediaPlayer_DisconnectMutedChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "mutedChanged") + } +} + +//export callbackQMediaPlayerMutedChanged +func callbackQMediaPlayerMutedChanged(ptrName *C.char, muted C.int) { + qt.GetSignal(C.GoString(ptrName), "mutedChanged").(func(bool))(int(muted) != 0) +} + +func (ptr *QMediaPlayer) Pause() { + if ptr.Pointer() != nil { + C.QMediaPlayer_Pause(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMediaPlayer) Play() { + if ptr.Pointer() != nil { + C.QMediaPlayer_Play(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMediaPlayer) ConnectSeekableChanged(f func(seekable bool)) { + if ptr.Pointer() != nil { + C.QMediaPlayer_ConnectSeekableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "seekableChanged", f) + } +} + +func (ptr *QMediaPlayer) DisconnectSeekableChanged() { + if ptr.Pointer() != nil { + C.QMediaPlayer_DisconnectSeekableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "seekableChanged") + } +} + +//export callbackQMediaPlayerSeekableChanged +func callbackQMediaPlayerSeekableChanged(ptrName *C.char, seekable C.int) { + qt.GetSignal(C.GoString(ptrName), "seekableChanged").(func(bool))(int(seekable) != 0) +} + +func (ptr *QMediaPlayer) SetMedia(media QMediaContentITF, stream core.QIODeviceITF) { + if ptr.Pointer() != nil { + C.QMediaPlayer_SetMedia(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMediaContent(media)), C.QtObjectPtr(core.PointerFromQIODevice(stream))) + } +} + +func (ptr *QMediaPlayer) SetVideoOutput3(surface QAbstractVideoSurfaceITF) { + if ptr.Pointer() != nil { + C.QMediaPlayer_SetVideoOutput3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractVideoSurface(surface))) + } +} + +func (ptr *QMediaPlayer) ConnectStateChanged(f func(state QMediaPlayer__State)) { + if ptr.Pointer() != nil { + C.QMediaPlayer_ConnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stateChanged", f) + } +} + +func (ptr *QMediaPlayer) DisconnectStateChanged() { + if ptr.Pointer() != nil { + C.QMediaPlayer_DisconnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stateChanged") + } +} + +//export callbackQMediaPlayerStateChanged +func callbackQMediaPlayerStateChanged(ptrName *C.char, state C.int) { + qt.GetSignal(C.GoString(ptrName), "stateChanged").(func(QMediaPlayer__State))(QMediaPlayer__State(state)) +} + +func (ptr *QMediaPlayer) Stop() { + if ptr.Pointer() != nil { + C.QMediaPlayer_Stop(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMediaPlayer) ConnectVideoAvailableChanged(f func(videoAvailable bool)) { + if ptr.Pointer() != nil { + C.QMediaPlayer_ConnectVideoAvailableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "videoAvailableChanged", f) + } +} + +func (ptr *QMediaPlayer) DisconnectVideoAvailableChanged() { + if ptr.Pointer() != nil { + C.QMediaPlayer_DisconnectVideoAvailableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "videoAvailableChanged") + } +} + +//export callbackQMediaPlayerVideoAvailableChanged +func callbackQMediaPlayerVideoAvailableChanged(ptrName *C.char, videoAvailable C.int) { + qt.GetSignal(C.GoString(ptrName), "videoAvailableChanged").(func(bool))(int(videoAvailable) != 0) +} + +func (ptr *QMediaPlayer) ConnectVolumeChanged(f func(volume int)) { + if ptr.Pointer() != nil { + C.QMediaPlayer_ConnectVolumeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "volumeChanged", f) + } +} + +func (ptr *QMediaPlayer) DisconnectVolumeChanged() { + if ptr.Pointer() != nil { + C.QMediaPlayer_DisconnectVolumeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "volumeChanged") + } +} + +//export callbackQMediaPlayerVolumeChanged +func callbackQMediaPlayerVolumeChanged(ptrName *C.char, volume C.int) { + qt.GetSignal(C.GoString(ptrName), "volumeChanged").(func(int))(int(volume)) +} + +func (ptr *QMediaPlayer) DestroyQMediaPlayer() { + if ptr.Pointer() != nil { + C.QMediaPlayer_DestroyQMediaPlayer(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qmediaplayer.h b/multimedia/qmediaplayer.h new file mode 100755 index 00000000..680a1735 --- /dev/null +++ b/multimedia/qmediaplayer.h @@ -0,0 +1,46 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QMediaPlayer_BufferStatus(QtObjectPtr ptr); +char* QMediaPlayer_ErrorString(QtObjectPtr ptr); +int QMediaPlayer_IsAudioAvailable(QtObjectPtr ptr); +int QMediaPlayer_IsMuted(QtObjectPtr ptr); +int QMediaPlayer_IsSeekable(QtObjectPtr ptr); +int QMediaPlayer_IsVideoAvailable(QtObjectPtr ptr); +int QMediaPlayer_MediaStatus(QtObjectPtr ptr); +QtObjectPtr QMediaPlayer_Playlist(QtObjectPtr ptr); +void QMediaPlayer_SetMuted(QtObjectPtr ptr, int muted); +void QMediaPlayer_SetPlaylist(QtObjectPtr ptr, QtObjectPtr playlist); +void QMediaPlayer_SetVolume(QtObjectPtr ptr, int volume); +int QMediaPlayer_Volume(QtObjectPtr ptr); +QtObjectPtr QMediaPlayer_NewQMediaPlayer(QtObjectPtr parent, int flags); +void QMediaPlayer_ConnectAudioAvailableChanged(QtObjectPtr ptr); +void QMediaPlayer_DisconnectAudioAvailableChanged(QtObjectPtr ptr); +void QMediaPlayer_ConnectBufferStatusChanged(QtObjectPtr ptr); +void QMediaPlayer_DisconnectBufferStatusChanged(QtObjectPtr ptr); +int QMediaPlayer_Error(QtObjectPtr ptr); +void QMediaPlayer_ConnectMediaStatusChanged(QtObjectPtr ptr); +void QMediaPlayer_DisconnectMediaStatusChanged(QtObjectPtr ptr); +QtObjectPtr QMediaPlayer_MediaStream(QtObjectPtr ptr); +void QMediaPlayer_ConnectMutedChanged(QtObjectPtr ptr); +void QMediaPlayer_DisconnectMutedChanged(QtObjectPtr ptr); +void QMediaPlayer_Pause(QtObjectPtr ptr); +void QMediaPlayer_Play(QtObjectPtr ptr); +void QMediaPlayer_ConnectSeekableChanged(QtObjectPtr ptr); +void QMediaPlayer_DisconnectSeekableChanged(QtObjectPtr ptr); +void QMediaPlayer_SetMedia(QtObjectPtr ptr, QtObjectPtr media, QtObjectPtr stream); +void QMediaPlayer_SetVideoOutput3(QtObjectPtr ptr, QtObjectPtr surface); +void QMediaPlayer_ConnectStateChanged(QtObjectPtr ptr); +void QMediaPlayer_DisconnectStateChanged(QtObjectPtr ptr); +void QMediaPlayer_Stop(QtObjectPtr ptr); +void QMediaPlayer_ConnectVideoAvailableChanged(QtObjectPtr ptr); +void QMediaPlayer_DisconnectVideoAvailableChanged(QtObjectPtr ptr); +void QMediaPlayer_ConnectVolumeChanged(QtObjectPtr ptr); +void QMediaPlayer_DisconnectVolumeChanged(QtObjectPtr ptr); +void QMediaPlayer_DestroyQMediaPlayer(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmediaplayercontrol.cpp b/multimedia/qmediaplayercontrol.cpp new file mode 100755 index 00000000..94707b79 --- /dev/null +++ b/multimedia/qmediaplayercontrol.cpp @@ -0,0 +1,157 @@ +#include "qmediaplayercontrol.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMediaPlayerControl: public QMediaPlayerControl { +public: +void Signal_AudioAvailableChanged(bool audio){callbackQMediaPlayerControlAudioAvailableChanged(this->objectName().toUtf8().data(), audio);}; +void Signal_BufferStatusChanged(int progress){callbackQMediaPlayerControlBufferStatusChanged(this->objectName().toUtf8().data(), progress);}; +void Signal_Error(int error, const QString & errorString){callbackQMediaPlayerControlError(this->objectName().toUtf8().data(), error, errorString.toUtf8().data());}; +void Signal_MediaStatusChanged(QMediaPlayer::MediaStatus status){callbackQMediaPlayerControlMediaStatusChanged(this->objectName().toUtf8().data(), status);}; +void Signal_MutedChanged(bool mute){callbackQMediaPlayerControlMutedChanged(this->objectName().toUtf8().data(), mute);}; +void Signal_SeekableChanged(bool seekable){callbackQMediaPlayerControlSeekableChanged(this->objectName().toUtf8().data(), seekable);}; +void Signal_StateChanged(QMediaPlayer::State state){callbackQMediaPlayerControlStateChanged(this->objectName().toUtf8().data(), state);}; +void Signal_VideoAvailableChanged(bool video){callbackQMediaPlayerControlVideoAvailableChanged(this->objectName().toUtf8().data(), video);}; +void Signal_VolumeChanged(int volume){callbackQMediaPlayerControlVolumeChanged(this->objectName().toUtf8().data(), volume);}; +}; + +void QMediaPlayerControl_ConnectAudioAvailableChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaPlayerControl::audioAvailableChanged), static_cast(ptr), static_cast(&MyQMediaPlayerControl::Signal_AudioAvailableChanged));; +} + +void QMediaPlayerControl_DisconnectAudioAvailableChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaPlayerControl::audioAvailableChanged), static_cast(ptr), static_cast(&MyQMediaPlayerControl::Signal_AudioAvailableChanged));; +} + +int QMediaPlayerControl_BufferStatus(QtObjectPtr ptr){ + return static_cast(ptr)->bufferStatus(); +} + +void QMediaPlayerControl_ConnectBufferStatusChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaPlayerControl::bufferStatusChanged), static_cast(ptr), static_cast(&MyQMediaPlayerControl::Signal_BufferStatusChanged));; +} + +void QMediaPlayerControl_DisconnectBufferStatusChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaPlayerControl::bufferStatusChanged), static_cast(ptr), static_cast(&MyQMediaPlayerControl::Signal_BufferStatusChanged));; +} + +void QMediaPlayerControl_ConnectError(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaPlayerControl::error), static_cast(ptr), static_cast(&MyQMediaPlayerControl::Signal_Error));; +} + +void QMediaPlayerControl_DisconnectError(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaPlayerControl::error), static_cast(ptr), static_cast(&MyQMediaPlayerControl::Signal_Error));; +} + +int QMediaPlayerControl_IsAudioAvailable(QtObjectPtr ptr){ + return static_cast(ptr)->isAudioAvailable(); +} + +int QMediaPlayerControl_IsMuted(QtObjectPtr ptr){ + return static_cast(ptr)->isMuted(); +} + +int QMediaPlayerControl_IsSeekable(QtObjectPtr ptr){ + return static_cast(ptr)->isSeekable(); +} + +int QMediaPlayerControl_IsVideoAvailable(QtObjectPtr ptr){ + return static_cast(ptr)->isVideoAvailable(); +} + +int QMediaPlayerControl_MediaStatus(QtObjectPtr ptr){ + return static_cast(ptr)->mediaStatus(); +} + +void QMediaPlayerControl_ConnectMediaStatusChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaPlayerControl::mediaStatusChanged), static_cast(ptr), static_cast(&MyQMediaPlayerControl::Signal_MediaStatusChanged));; +} + +void QMediaPlayerControl_DisconnectMediaStatusChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaPlayerControl::mediaStatusChanged), static_cast(ptr), static_cast(&MyQMediaPlayerControl::Signal_MediaStatusChanged));; +} + +QtObjectPtr QMediaPlayerControl_MediaStream(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->mediaStream()); +} + +void QMediaPlayerControl_ConnectMutedChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaPlayerControl::mutedChanged), static_cast(ptr), static_cast(&MyQMediaPlayerControl::Signal_MutedChanged));; +} + +void QMediaPlayerControl_DisconnectMutedChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaPlayerControl::mutedChanged), static_cast(ptr), static_cast(&MyQMediaPlayerControl::Signal_MutedChanged));; +} + +void QMediaPlayerControl_Pause(QtObjectPtr ptr){ + static_cast(ptr)->pause(); +} + +void QMediaPlayerControl_Play(QtObjectPtr ptr){ + static_cast(ptr)->play(); +} + +void QMediaPlayerControl_ConnectSeekableChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaPlayerControl::seekableChanged), static_cast(ptr), static_cast(&MyQMediaPlayerControl::Signal_SeekableChanged));; +} + +void QMediaPlayerControl_DisconnectSeekableChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaPlayerControl::seekableChanged), static_cast(ptr), static_cast(&MyQMediaPlayerControl::Signal_SeekableChanged));; +} + +void QMediaPlayerControl_SetMedia(QtObjectPtr ptr, QtObjectPtr media, QtObjectPtr stream){ + static_cast(ptr)->setMedia(*static_cast(media), static_cast(stream)); +} + +void QMediaPlayerControl_SetMuted(QtObjectPtr ptr, int mute){ + static_cast(ptr)->setMuted(mute != 0); +} + +void QMediaPlayerControl_SetVolume(QtObjectPtr ptr, int volume){ + static_cast(ptr)->setVolume(volume); +} + +void QMediaPlayerControl_ConnectStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaPlayerControl::stateChanged), static_cast(ptr), static_cast(&MyQMediaPlayerControl::Signal_StateChanged));; +} + +void QMediaPlayerControl_DisconnectStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaPlayerControl::stateChanged), static_cast(ptr), static_cast(&MyQMediaPlayerControl::Signal_StateChanged));; +} + +void QMediaPlayerControl_Stop(QtObjectPtr ptr){ + static_cast(ptr)->stop(); +} + +void QMediaPlayerControl_ConnectVideoAvailableChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaPlayerControl::videoAvailableChanged), static_cast(ptr), static_cast(&MyQMediaPlayerControl::Signal_VideoAvailableChanged));; +} + +void QMediaPlayerControl_DisconnectVideoAvailableChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaPlayerControl::videoAvailableChanged), static_cast(ptr), static_cast(&MyQMediaPlayerControl::Signal_VideoAvailableChanged));; +} + +int QMediaPlayerControl_Volume(QtObjectPtr ptr){ + return static_cast(ptr)->volume(); +} + +void QMediaPlayerControl_ConnectVolumeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaPlayerControl::volumeChanged), static_cast(ptr), static_cast(&MyQMediaPlayerControl::Signal_VolumeChanged));; +} + +void QMediaPlayerControl_DisconnectVolumeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaPlayerControl::volumeChanged), static_cast(ptr), static_cast(&MyQMediaPlayerControl::Signal_VolumeChanged));; +} + +void QMediaPlayerControl_DestroyQMediaPlayerControl(QtObjectPtr ptr){ + static_cast(ptr)->~QMediaPlayerControl(); +} + diff --git a/multimedia/qmediaplayercontrol.go b/multimedia/qmediaplayercontrol.go new file mode 100755 index 00000000..4bee9a09 --- /dev/null +++ b/multimedia/qmediaplayercontrol.go @@ -0,0 +1,308 @@ +package multimedia + +//#include "qmediaplayercontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QMediaPlayerControl struct { + QMediaControl +} + +type QMediaPlayerControlITF interface { + QMediaControlITF + QMediaPlayerControlPTR() *QMediaPlayerControl +} + +func PointerFromQMediaPlayerControl(ptr QMediaPlayerControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMediaPlayerControlPTR().Pointer() + } + return nil +} + +func QMediaPlayerControlFromPointer(ptr unsafe.Pointer) *QMediaPlayerControl { + var n = new(QMediaPlayerControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMediaPlayerControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMediaPlayerControl) QMediaPlayerControlPTR() *QMediaPlayerControl { + return ptr +} + +func (ptr *QMediaPlayerControl) ConnectAudioAvailableChanged(f func(audio bool)) { + if ptr.Pointer() != nil { + C.QMediaPlayerControl_ConnectAudioAvailableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "audioAvailableChanged", f) + } +} + +func (ptr *QMediaPlayerControl) DisconnectAudioAvailableChanged() { + if ptr.Pointer() != nil { + C.QMediaPlayerControl_DisconnectAudioAvailableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "audioAvailableChanged") + } +} + +//export callbackQMediaPlayerControlAudioAvailableChanged +func callbackQMediaPlayerControlAudioAvailableChanged(ptrName *C.char, audio C.int) { + qt.GetSignal(C.GoString(ptrName), "audioAvailableChanged").(func(bool))(int(audio) != 0) +} + +func (ptr *QMediaPlayerControl) BufferStatus() int { + if ptr.Pointer() != nil { + return int(C.QMediaPlayerControl_BufferStatus(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMediaPlayerControl) ConnectBufferStatusChanged(f func(progress int)) { + if ptr.Pointer() != nil { + C.QMediaPlayerControl_ConnectBufferStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "bufferStatusChanged", f) + } +} + +func (ptr *QMediaPlayerControl) DisconnectBufferStatusChanged() { + if ptr.Pointer() != nil { + C.QMediaPlayerControl_DisconnectBufferStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "bufferStatusChanged") + } +} + +//export callbackQMediaPlayerControlBufferStatusChanged +func callbackQMediaPlayerControlBufferStatusChanged(ptrName *C.char, progress C.int) { + qt.GetSignal(C.GoString(ptrName), "bufferStatusChanged").(func(int))(int(progress)) +} + +func (ptr *QMediaPlayerControl) ConnectError(f func(error int, errorString string)) { + if ptr.Pointer() != nil { + C.QMediaPlayerControl_ConnectError(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "error", f) + } +} + +func (ptr *QMediaPlayerControl) DisconnectError() { + if ptr.Pointer() != nil { + C.QMediaPlayerControl_DisconnectError(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "error") + } +} + +//export callbackQMediaPlayerControlError +func callbackQMediaPlayerControlError(ptrName *C.char, error C.int, errorString *C.char) { + qt.GetSignal(C.GoString(ptrName), "error").(func(int, string))(int(error), C.GoString(errorString)) +} + +func (ptr *QMediaPlayerControl) IsAudioAvailable() bool { + if ptr.Pointer() != nil { + return C.QMediaPlayerControl_IsAudioAvailable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMediaPlayerControl) IsMuted() bool { + if ptr.Pointer() != nil { + return C.QMediaPlayerControl_IsMuted(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMediaPlayerControl) IsSeekable() bool { + if ptr.Pointer() != nil { + return C.QMediaPlayerControl_IsSeekable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMediaPlayerControl) IsVideoAvailable() bool { + if ptr.Pointer() != nil { + return C.QMediaPlayerControl_IsVideoAvailable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMediaPlayerControl) MediaStatus() QMediaPlayer__MediaStatus { + if ptr.Pointer() != nil { + return QMediaPlayer__MediaStatus(C.QMediaPlayerControl_MediaStatus(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMediaPlayerControl) ConnectMediaStatusChanged(f func(status QMediaPlayer__MediaStatus)) { + if ptr.Pointer() != nil { + C.QMediaPlayerControl_ConnectMediaStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "mediaStatusChanged", f) + } +} + +func (ptr *QMediaPlayerControl) DisconnectMediaStatusChanged() { + if ptr.Pointer() != nil { + C.QMediaPlayerControl_DisconnectMediaStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "mediaStatusChanged") + } +} + +//export callbackQMediaPlayerControlMediaStatusChanged +func callbackQMediaPlayerControlMediaStatusChanged(ptrName *C.char, status C.int) { + qt.GetSignal(C.GoString(ptrName), "mediaStatusChanged").(func(QMediaPlayer__MediaStatus))(QMediaPlayer__MediaStatus(status)) +} + +func (ptr *QMediaPlayerControl) MediaStream() *core.QIODevice { + if ptr.Pointer() != nil { + return core.QIODeviceFromPointer(unsafe.Pointer(C.QMediaPlayerControl_MediaStream(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMediaPlayerControl) ConnectMutedChanged(f func(mute bool)) { + if ptr.Pointer() != nil { + C.QMediaPlayerControl_ConnectMutedChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "mutedChanged", f) + } +} + +func (ptr *QMediaPlayerControl) DisconnectMutedChanged() { + if ptr.Pointer() != nil { + C.QMediaPlayerControl_DisconnectMutedChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "mutedChanged") + } +} + +//export callbackQMediaPlayerControlMutedChanged +func callbackQMediaPlayerControlMutedChanged(ptrName *C.char, mute C.int) { + qt.GetSignal(C.GoString(ptrName), "mutedChanged").(func(bool))(int(mute) != 0) +} + +func (ptr *QMediaPlayerControl) Pause() { + if ptr.Pointer() != nil { + C.QMediaPlayerControl_Pause(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMediaPlayerControl) Play() { + if ptr.Pointer() != nil { + C.QMediaPlayerControl_Play(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMediaPlayerControl) ConnectSeekableChanged(f func(seekable bool)) { + if ptr.Pointer() != nil { + C.QMediaPlayerControl_ConnectSeekableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "seekableChanged", f) + } +} + +func (ptr *QMediaPlayerControl) DisconnectSeekableChanged() { + if ptr.Pointer() != nil { + C.QMediaPlayerControl_DisconnectSeekableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "seekableChanged") + } +} + +//export callbackQMediaPlayerControlSeekableChanged +func callbackQMediaPlayerControlSeekableChanged(ptrName *C.char, seekable C.int) { + qt.GetSignal(C.GoString(ptrName), "seekableChanged").(func(bool))(int(seekable) != 0) +} + +func (ptr *QMediaPlayerControl) SetMedia(media QMediaContentITF, stream core.QIODeviceITF) { + if ptr.Pointer() != nil { + C.QMediaPlayerControl_SetMedia(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMediaContent(media)), C.QtObjectPtr(core.PointerFromQIODevice(stream))) + } +} + +func (ptr *QMediaPlayerControl) SetMuted(mute bool) { + if ptr.Pointer() != nil { + C.QMediaPlayerControl_SetMuted(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(mute))) + } +} + +func (ptr *QMediaPlayerControl) SetVolume(volume int) { + if ptr.Pointer() != nil { + C.QMediaPlayerControl_SetVolume(C.QtObjectPtr(ptr.Pointer()), C.int(volume)) + } +} + +func (ptr *QMediaPlayerControl) ConnectStateChanged(f func(state QMediaPlayer__State)) { + if ptr.Pointer() != nil { + C.QMediaPlayerControl_ConnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stateChanged", f) + } +} + +func (ptr *QMediaPlayerControl) DisconnectStateChanged() { + if ptr.Pointer() != nil { + C.QMediaPlayerControl_DisconnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stateChanged") + } +} + +//export callbackQMediaPlayerControlStateChanged +func callbackQMediaPlayerControlStateChanged(ptrName *C.char, state C.int) { + qt.GetSignal(C.GoString(ptrName), "stateChanged").(func(QMediaPlayer__State))(QMediaPlayer__State(state)) +} + +func (ptr *QMediaPlayerControl) Stop() { + if ptr.Pointer() != nil { + C.QMediaPlayerControl_Stop(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMediaPlayerControl) ConnectVideoAvailableChanged(f func(video bool)) { + if ptr.Pointer() != nil { + C.QMediaPlayerControl_ConnectVideoAvailableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "videoAvailableChanged", f) + } +} + +func (ptr *QMediaPlayerControl) DisconnectVideoAvailableChanged() { + if ptr.Pointer() != nil { + C.QMediaPlayerControl_DisconnectVideoAvailableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "videoAvailableChanged") + } +} + +//export callbackQMediaPlayerControlVideoAvailableChanged +func callbackQMediaPlayerControlVideoAvailableChanged(ptrName *C.char, video C.int) { + qt.GetSignal(C.GoString(ptrName), "videoAvailableChanged").(func(bool))(int(video) != 0) +} + +func (ptr *QMediaPlayerControl) Volume() int { + if ptr.Pointer() != nil { + return int(C.QMediaPlayerControl_Volume(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMediaPlayerControl) ConnectVolumeChanged(f func(volume int)) { + if ptr.Pointer() != nil { + C.QMediaPlayerControl_ConnectVolumeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "volumeChanged", f) + } +} + +func (ptr *QMediaPlayerControl) DisconnectVolumeChanged() { + if ptr.Pointer() != nil { + C.QMediaPlayerControl_DisconnectVolumeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "volumeChanged") + } +} + +//export callbackQMediaPlayerControlVolumeChanged +func callbackQMediaPlayerControlVolumeChanged(ptrName *C.char, volume C.int) { + qt.GetSignal(C.GoString(ptrName), "volumeChanged").(func(int))(int(volume)) +} + +func (ptr *QMediaPlayerControl) DestroyQMediaPlayerControl() { + if ptr.Pointer() != nil { + C.QMediaPlayerControl_DestroyQMediaPlayerControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qmediaplayercontrol.h b/multimedia/qmediaplayercontrol.h new file mode 100755 index 00000000..cf85f58d --- /dev/null +++ b/multimedia/qmediaplayercontrol.h @@ -0,0 +1,42 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QMediaPlayerControl_ConnectAudioAvailableChanged(QtObjectPtr ptr); +void QMediaPlayerControl_DisconnectAudioAvailableChanged(QtObjectPtr ptr); +int QMediaPlayerControl_BufferStatus(QtObjectPtr ptr); +void QMediaPlayerControl_ConnectBufferStatusChanged(QtObjectPtr ptr); +void QMediaPlayerControl_DisconnectBufferStatusChanged(QtObjectPtr ptr); +void QMediaPlayerControl_ConnectError(QtObjectPtr ptr); +void QMediaPlayerControl_DisconnectError(QtObjectPtr ptr); +int QMediaPlayerControl_IsAudioAvailable(QtObjectPtr ptr); +int QMediaPlayerControl_IsMuted(QtObjectPtr ptr); +int QMediaPlayerControl_IsSeekable(QtObjectPtr ptr); +int QMediaPlayerControl_IsVideoAvailable(QtObjectPtr ptr); +int QMediaPlayerControl_MediaStatus(QtObjectPtr ptr); +void QMediaPlayerControl_ConnectMediaStatusChanged(QtObjectPtr ptr); +void QMediaPlayerControl_DisconnectMediaStatusChanged(QtObjectPtr ptr); +QtObjectPtr QMediaPlayerControl_MediaStream(QtObjectPtr ptr); +void QMediaPlayerControl_ConnectMutedChanged(QtObjectPtr ptr); +void QMediaPlayerControl_DisconnectMutedChanged(QtObjectPtr ptr); +void QMediaPlayerControl_Pause(QtObjectPtr ptr); +void QMediaPlayerControl_Play(QtObjectPtr ptr); +void QMediaPlayerControl_ConnectSeekableChanged(QtObjectPtr ptr); +void QMediaPlayerControl_DisconnectSeekableChanged(QtObjectPtr ptr); +void QMediaPlayerControl_SetMedia(QtObjectPtr ptr, QtObjectPtr media, QtObjectPtr stream); +void QMediaPlayerControl_SetMuted(QtObjectPtr ptr, int mute); +void QMediaPlayerControl_SetVolume(QtObjectPtr ptr, int volume); +void QMediaPlayerControl_ConnectStateChanged(QtObjectPtr ptr); +void QMediaPlayerControl_DisconnectStateChanged(QtObjectPtr ptr); +void QMediaPlayerControl_Stop(QtObjectPtr ptr); +void QMediaPlayerControl_ConnectVideoAvailableChanged(QtObjectPtr ptr); +void QMediaPlayerControl_DisconnectVideoAvailableChanged(QtObjectPtr ptr); +int QMediaPlayerControl_Volume(QtObjectPtr ptr); +void QMediaPlayerControl_ConnectVolumeChanged(QtObjectPtr ptr); +void QMediaPlayerControl_DisconnectVolumeChanged(QtObjectPtr ptr); +void QMediaPlayerControl_DestroyQMediaPlayerControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmediaplaylist.cpp b/multimedia/qmediaplaylist.cpp new file mode 100755 index 00000000..a2502418 --- /dev/null +++ b/multimedia/qmediaplaylist.cpp @@ -0,0 +1,206 @@ +#include "qmediaplaylist.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMediaPlaylist: public QMediaPlaylist { +public: +void Signal_CurrentIndexChanged(int position){callbackQMediaPlaylistCurrentIndexChanged(this->objectName().toUtf8().data(), position);}; +void Signal_LoadFailed(){callbackQMediaPlaylistLoadFailed(this->objectName().toUtf8().data());}; +void Signal_Loaded(){callbackQMediaPlaylistLoaded(this->objectName().toUtf8().data());}; +void Signal_MediaAboutToBeInserted(int start, int end){callbackQMediaPlaylistMediaAboutToBeInserted(this->objectName().toUtf8().data(), start, end);}; +void Signal_MediaAboutToBeRemoved(int start, int end){callbackQMediaPlaylistMediaAboutToBeRemoved(this->objectName().toUtf8().data(), start, end);}; +void Signal_MediaChanged(int start, int end){callbackQMediaPlaylistMediaChanged(this->objectName().toUtf8().data(), start, end);}; +void Signal_MediaInserted(int start, int end){callbackQMediaPlaylistMediaInserted(this->objectName().toUtf8().data(), start, end);}; +void Signal_MediaRemoved(int start, int end){callbackQMediaPlaylistMediaRemoved(this->objectName().toUtf8().data(), start, end);}; +void Signal_PlaybackModeChanged(QMediaPlaylist::PlaybackMode mode){callbackQMediaPlaylistPlaybackModeChanged(this->objectName().toUtf8().data(), mode);}; +}; + +int QMediaPlaylist_PlaybackMode(QtObjectPtr ptr){ + return static_cast(ptr)->playbackMode(); +} + +void QMediaPlaylist_SetPlaybackMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setPlaybackMode(static_cast(mode)); +} + +QtObjectPtr QMediaPlaylist_NewQMediaPlaylist(QtObjectPtr parent){ + return new QMediaPlaylist(static_cast(parent)); +} + +int QMediaPlaylist_AddMedia(QtObjectPtr ptr, QtObjectPtr content){ + return static_cast(ptr)->addMedia(*static_cast(content)); +} + +int QMediaPlaylist_Clear(QtObjectPtr ptr){ + return static_cast(ptr)->clear(); +} + +int QMediaPlaylist_CurrentIndex(QtObjectPtr ptr){ + return static_cast(ptr)->currentIndex(); +} + +void QMediaPlaylist_ConnectCurrentIndexChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaPlaylist::currentIndexChanged), static_cast(ptr), static_cast(&MyQMediaPlaylist::Signal_CurrentIndexChanged));; +} + +void QMediaPlaylist_DisconnectCurrentIndexChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaPlaylist::currentIndexChanged), static_cast(ptr), static_cast(&MyQMediaPlaylist::Signal_CurrentIndexChanged));; +} + +int QMediaPlaylist_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +char* QMediaPlaylist_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +int QMediaPlaylist_InsertMedia(QtObjectPtr ptr, int pos, QtObjectPtr content){ + return static_cast(ptr)->insertMedia(pos, *static_cast(content)); +} + +int QMediaPlaylist_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +int QMediaPlaylist_IsReadOnly(QtObjectPtr ptr){ + return static_cast(ptr)->isReadOnly(); +} + +void QMediaPlaylist_Load3(QtObjectPtr ptr, QtObjectPtr device, char* format){ + static_cast(ptr)->load(static_cast(device), const_cast(format)); +} + +void QMediaPlaylist_Load(QtObjectPtr ptr, QtObjectPtr request, char* format){ + static_cast(ptr)->load(*static_cast(request), const_cast(format)); +} + +void QMediaPlaylist_Load2(QtObjectPtr ptr, char* location, char* format){ + static_cast(ptr)->load(QUrl(QString(location)), const_cast(format)); +} + +void QMediaPlaylist_ConnectLoadFailed(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaPlaylist::loadFailed), static_cast(ptr), static_cast(&MyQMediaPlaylist::Signal_LoadFailed));; +} + +void QMediaPlaylist_DisconnectLoadFailed(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaPlaylist::loadFailed), static_cast(ptr), static_cast(&MyQMediaPlaylist::Signal_LoadFailed));; +} + +void QMediaPlaylist_ConnectLoaded(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaPlaylist::loaded), static_cast(ptr), static_cast(&MyQMediaPlaylist::Signal_Loaded));; +} + +void QMediaPlaylist_DisconnectLoaded(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaPlaylist::loaded), static_cast(ptr), static_cast(&MyQMediaPlaylist::Signal_Loaded));; +} + +void QMediaPlaylist_ConnectMediaAboutToBeInserted(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaPlaylist::mediaAboutToBeInserted), static_cast(ptr), static_cast(&MyQMediaPlaylist::Signal_MediaAboutToBeInserted));; +} + +void QMediaPlaylist_DisconnectMediaAboutToBeInserted(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaPlaylist::mediaAboutToBeInserted), static_cast(ptr), static_cast(&MyQMediaPlaylist::Signal_MediaAboutToBeInserted));; +} + +void QMediaPlaylist_ConnectMediaAboutToBeRemoved(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaPlaylist::mediaAboutToBeRemoved), static_cast(ptr), static_cast(&MyQMediaPlaylist::Signal_MediaAboutToBeRemoved));; +} + +void QMediaPlaylist_DisconnectMediaAboutToBeRemoved(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaPlaylist::mediaAboutToBeRemoved), static_cast(ptr), static_cast(&MyQMediaPlaylist::Signal_MediaAboutToBeRemoved));; +} + +void QMediaPlaylist_ConnectMediaChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaPlaylist::mediaChanged), static_cast(ptr), static_cast(&MyQMediaPlaylist::Signal_MediaChanged));; +} + +void QMediaPlaylist_DisconnectMediaChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaPlaylist::mediaChanged), static_cast(ptr), static_cast(&MyQMediaPlaylist::Signal_MediaChanged));; +} + +int QMediaPlaylist_MediaCount(QtObjectPtr ptr){ + return static_cast(ptr)->mediaCount(); +} + +void QMediaPlaylist_ConnectMediaInserted(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaPlaylist::mediaInserted), static_cast(ptr), static_cast(&MyQMediaPlaylist::Signal_MediaInserted));; +} + +void QMediaPlaylist_DisconnectMediaInserted(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaPlaylist::mediaInserted), static_cast(ptr), static_cast(&MyQMediaPlaylist::Signal_MediaInserted));; +} + +QtObjectPtr QMediaPlaylist_MediaObject(QtObjectPtr ptr){ + return static_cast(ptr)->mediaObject(); +} + +void QMediaPlaylist_ConnectMediaRemoved(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaPlaylist::mediaRemoved), static_cast(ptr), static_cast(&MyQMediaPlaylist::Signal_MediaRemoved));; +} + +void QMediaPlaylist_DisconnectMediaRemoved(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaPlaylist::mediaRemoved), static_cast(ptr), static_cast(&MyQMediaPlaylist::Signal_MediaRemoved));; +} + +void QMediaPlaylist_Next(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "next"); +} + +int QMediaPlaylist_NextIndex(QtObjectPtr ptr, int steps){ + return static_cast(ptr)->nextIndex(steps); +} + +void QMediaPlaylist_ConnectPlaybackModeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaPlaylist::playbackModeChanged), static_cast(ptr), static_cast(&MyQMediaPlaylist::Signal_PlaybackModeChanged));; +} + +void QMediaPlaylist_DisconnectPlaybackModeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaPlaylist::playbackModeChanged), static_cast(ptr), static_cast(&MyQMediaPlaylist::Signal_PlaybackModeChanged));; +} + +void QMediaPlaylist_Previous(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "previous"); +} + +int QMediaPlaylist_PreviousIndex(QtObjectPtr ptr, int steps){ + return static_cast(ptr)->previousIndex(steps); +} + +int QMediaPlaylist_RemoveMedia(QtObjectPtr ptr, int pos){ + return static_cast(ptr)->removeMedia(pos); +} + +int QMediaPlaylist_RemoveMedia2(QtObjectPtr ptr, int start, int end){ + return static_cast(ptr)->removeMedia(start, end); +} + +int QMediaPlaylist_Save2(QtObjectPtr ptr, QtObjectPtr device, char* format){ + return static_cast(ptr)->save(static_cast(device), const_cast(format)); +} + +int QMediaPlaylist_Save(QtObjectPtr ptr, char* location, char* format){ + return static_cast(ptr)->save(QUrl(QString(location)), const_cast(format)); +} + +void QMediaPlaylist_SetCurrentIndex(QtObjectPtr ptr, int playlistPosition){ + QMetaObject::invokeMethod(static_cast(ptr), "setCurrentIndex", Q_ARG(int, playlistPosition)); +} + +void QMediaPlaylist_Shuffle(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "shuffle"); +} + +void QMediaPlaylist_DestroyQMediaPlaylist(QtObjectPtr ptr){ + static_cast(ptr)->~QMediaPlaylist(); +} + diff --git a/multimedia/qmediaplaylist.go b/multimedia/qmediaplaylist.go new file mode 100755 index 00000000..2398451c --- /dev/null +++ b/multimedia/qmediaplaylist.go @@ -0,0 +1,421 @@ +package multimedia + +//#include "qmediaplaylist.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/network" + "unsafe" +) + +type QMediaPlaylist struct { + core.QObject + QMediaBindableInterface +} + +type QMediaPlaylistITF interface { + core.QObjectITF + QMediaBindableInterfaceITF + QMediaPlaylistPTR() *QMediaPlaylist +} + +func (p *QMediaPlaylist) Pointer() unsafe.Pointer { + return p.QObjectPTR().Pointer() +} + +func (p *QMediaPlaylist) SetPointer(ptr unsafe.Pointer) { + p.QObjectPTR().SetPointer(ptr) + p.QMediaBindableInterfacePTR().SetPointer(ptr) +} + +func PointerFromQMediaPlaylist(ptr QMediaPlaylistITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMediaPlaylistPTR().Pointer() + } + return nil +} + +func QMediaPlaylistFromPointer(ptr unsafe.Pointer) *QMediaPlaylist { + var n = new(QMediaPlaylist) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMediaPlaylist_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMediaPlaylist) QMediaPlaylistPTR() *QMediaPlaylist { + return ptr +} + +//QMediaPlaylist::Error +type QMediaPlaylist__Error int + +var ( + QMediaPlaylist__NoError = QMediaPlaylist__Error(0) + QMediaPlaylist__FormatError = QMediaPlaylist__Error(1) + QMediaPlaylist__FormatNotSupportedError = QMediaPlaylist__Error(2) + QMediaPlaylist__NetworkError = QMediaPlaylist__Error(3) + QMediaPlaylist__AccessDeniedError = QMediaPlaylist__Error(4) +) + +//QMediaPlaylist::PlaybackMode +type QMediaPlaylist__PlaybackMode int + +var ( + QMediaPlaylist__CurrentItemOnce = QMediaPlaylist__PlaybackMode(0) + QMediaPlaylist__CurrentItemInLoop = QMediaPlaylist__PlaybackMode(1) + QMediaPlaylist__Sequential = QMediaPlaylist__PlaybackMode(2) + QMediaPlaylist__Loop = QMediaPlaylist__PlaybackMode(3) + QMediaPlaylist__Random = QMediaPlaylist__PlaybackMode(4) +) + +func (ptr *QMediaPlaylist) PlaybackMode() QMediaPlaylist__PlaybackMode { + if ptr.Pointer() != nil { + return QMediaPlaylist__PlaybackMode(C.QMediaPlaylist_PlaybackMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMediaPlaylist) SetPlaybackMode(mode QMediaPlaylist__PlaybackMode) { + if ptr.Pointer() != nil { + C.QMediaPlaylist_SetPlaybackMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func NewQMediaPlaylist(parent core.QObjectITF) *QMediaPlaylist { + return QMediaPlaylistFromPointer(unsafe.Pointer(C.QMediaPlaylist_NewQMediaPlaylist(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QMediaPlaylist) AddMedia(content QMediaContentITF) bool { + if ptr.Pointer() != nil { + return C.QMediaPlaylist_AddMedia(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMediaContent(content))) != 0 + } + return false +} + +func (ptr *QMediaPlaylist) Clear() bool { + if ptr.Pointer() != nil { + return C.QMediaPlaylist_Clear(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMediaPlaylist) CurrentIndex() int { + if ptr.Pointer() != nil { + return int(C.QMediaPlaylist_CurrentIndex(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMediaPlaylist) ConnectCurrentIndexChanged(f func(position int)) { + if ptr.Pointer() != nil { + C.QMediaPlaylist_ConnectCurrentIndexChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "currentIndexChanged", f) + } +} + +func (ptr *QMediaPlaylist) DisconnectCurrentIndexChanged() { + if ptr.Pointer() != nil { + C.QMediaPlaylist_DisconnectCurrentIndexChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "currentIndexChanged") + } +} + +//export callbackQMediaPlaylistCurrentIndexChanged +func callbackQMediaPlaylistCurrentIndexChanged(ptrName *C.char, position C.int) { + qt.GetSignal(C.GoString(ptrName), "currentIndexChanged").(func(int))(int(position)) +} + +func (ptr *QMediaPlaylist) Error() QMediaPlaylist__Error { + if ptr.Pointer() != nil { + return QMediaPlaylist__Error(C.QMediaPlaylist_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMediaPlaylist) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMediaPlaylist_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMediaPlaylist) InsertMedia(pos int, content QMediaContentITF) bool { + if ptr.Pointer() != nil { + return C.QMediaPlaylist_InsertMedia(C.QtObjectPtr(ptr.Pointer()), C.int(pos), C.QtObjectPtr(PointerFromQMediaContent(content))) != 0 + } + return false +} + +func (ptr *QMediaPlaylist) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QMediaPlaylist_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMediaPlaylist) IsReadOnly() bool { + if ptr.Pointer() != nil { + return C.QMediaPlaylist_IsReadOnly(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMediaPlaylist) Load3(device core.QIODeviceITF, format string) { + if ptr.Pointer() != nil { + C.QMediaPlaylist_Load3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQIODevice(device)), C.CString(format)) + } +} + +func (ptr *QMediaPlaylist) Load(request network.QNetworkRequestITF, format string) { + if ptr.Pointer() != nil { + C.QMediaPlaylist_Load(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(network.PointerFromQNetworkRequest(request)), C.CString(format)) + } +} + +func (ptr *QMediaPlaylist) Load2(location string, format string) { + if ptr.Pointer() != nil { + C.QMediaPlaylist_Load2(C.QtObjectPtr(ptr.Pointer()), C.CString(location), C.CString(format)) + } +} + +func (ptr *QMediaPlaylist) ConnectLoadFailed(f func()) { + if ptr.Pointer() != nil { + C.QMediaPlaylist_ConnectLoadFailed(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "loadFailed", f) + } +} + +func (ptr *QMediaPlaylist) DisconnectLoadFailed() { + if ptr.Pointer() != nil { + C.QMediaPlaylist_DisconnectLoadFailed(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "loadFailed") + } +} + +//export callbackQMediaPlaylistLoadFailed +func callbackQMediaPlaylistLoadFailed(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "loadFailed").(func())() +} + +func (ptr *QMediaPlaylist) ConnectLoaded(f func()) { + if ptr.Pointer() != nil { + C.QMediaPlaylist_ConnectLoaded(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "loaded", f) + } +} + +func (ptr *QMediaPlaylist) DisconnectLoaded() { + if ptr.Pointer() != nil { + C.QMediaPlaylist_DisconnectLoaded(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "loaded") + } +} + +//export callbackQMediaPlaylistLoaded +func callbackQMediaPlaylistLoaded(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "loaded").(func())() +} + +func (ptr *QMediaPlaylist) ConnectMediaAboutToBeInserted(f func(start int, end int)) { + if ptr.Pointer() != nil { + C.QMediaPlaylist_ConnectMediaAboutToBeInserted(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "mediaAboutToBeInserted", f) + } +} + +func (ptr *QMediaPlaylist) DisconnectMediaAboutToBeInserted() { + if ptr.Pointer() != nil { + C.QMediaPlaylist_DisconnectMediaAboutToBeInserted(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "mediaAboutToBeInserted") + } +} + +//export callbackQMediaPlaylistMediaAboutToBeInserted +func callbackQMediaPlaylistMediaAboutToBeInserted(ptrName *C.char, start C.int, end C.int) { + qt.GetSignal(C.GoString(ptrName), "mediaAboutToBeInserted").(func(int, int))(int(start), int(end)) +} + +func (ptr *QMediaPlaylist) ConnectMediaAboutToBeRemoved(f func(start int, end int)) { + if ptr.Pointer() != nil { + C.QMediaPlaylist_ConnectMediaAboutToBeRemoved(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "mediaAboutToBeRemoved", f) + } +} + +func (ptr *QMediaPlaylist) DisconnectMediaAboutToBeRemoved() { + if ptr.Pointer() != nil { + C.QMediaPlaylist_DisconnectMediaAboutToBeRemoved(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "mediaAboutToBeRemoved") + } +} + +//export callbackQMediaPlaylistMediaAboutToBeRemoved +func callbackQMediaPlaylistMediaAboutToBeRemoved(ptrName *C.char, start C.int, end C.int) { + qt.GetSignal(C.GoString(ptrName), "mediaAboutToBeRemoved").(func(int, int))(int(start), int(end)) +} + +func (ptr *QMediaPlaylist) ConnectMediaChanged(f func(start int, end int)) { + if ptr.Pointer() != nil { + C.QMediaPlaylist_ConnectMediaChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "mediaChanged", f) + } +} + +func (ptr *QMediaPlaylist) DisconnectMediaChanged() { + if ptr.Pointer() != nil { + C.QMediaPlaylist_DisconnectMediaChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "mediaChanged") + } +} + +//export callbackQMediaPlaylistMediaChanged +func callbackQMediaPlaylistMediaChanged(ptrName *C.char, start C.int, end C.int) { + qt.GetSignal(C.GoString(ptrName), "mediaChanged").(func(int, int))(int(start), int(end)) +} + +func (ptr *QMediaPlaylist) MediaCount() int { + if ptr.Pointer() != nil { + return int(C.QMediaPlaylist_MediaCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMediaPlaylist) ConnectMediaInserted(f func(start int, end int)) { + if ptr.Pointer() != nil { + C.QMediaPlaylist_ConnectMediaInserted(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "mediaInserted", f) + } +} + +func (ptr *QMediaPlaylist) DisconnectMediaInserted() { + if ptr.Pointer() != nil { + C.QMediaPlaylist_DisconnectMediaInserted(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "mediaInserted") + } +} + +//export callbackQMediaPlaylistMediaInserted +func callbackQMediaPlaylistMediaInserted(ptrName *C.char, start C.int, end C.int) { + qt.GetSignal(C.GoString(ptrName), "mediaInserted").(func(int, int))(int(start), int(end)) +} + +func (ptr *QMediaPlaylist) MediaObject() *QMediaObject { + if ptr.Pointer() != nil { + return QMediaObjectFromPointer(unsafe.Pointer(C.QMediaPlaylist_MediaObject(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMediaPlaylist) ConnectMediaRemoved(f func(start int, end int)) { + if ptr.Pointer() != nil { + C.QMediaPlaylist_ConnectMediaRemoved(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "mediaRemoved", f) + } +} + +func (ptr *QMediaPlaylist) DisconnectMediaRemoved() { + if ptr.Pointer() != nil { + C.QMediaPlaylist_DisconnectMediaRemoved(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "mediaRemoved") + } +} + +//export callbackQMediaPlaylistMediaRemoved +func callbackQMediaPlaylistMediaRemoved(ptrName *C.char, start C.int, end C.int) { + qt.GetSignal(C.GoString(ptrName), "mediaRemoved").(func(int, int))(int(start), int(end)) +} + +func (ptr *QMediaPlaylist) Next() { + if ptr.Pointer() != nil { + C.QMediaPlaylist_Next(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMediaPlaylist) NextIndex(steps int) int { + if ptr.Pointer() != nil { + return int(C.QMediaPlaylist_NextIndex(C.QtObjectPtr(ptr.Pointer()), C.int(steps))) + } + return 0 +} + +func (ptr *QMediaPlaylist) ConnectPlaybackModeChanged(f func(mode QMediaPlaylist__PlaybackMode)) { + if ptr.Pointer() != nil { + C.QMediaPlaylist_ConnectPlaybackModeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "playbackModeChanged", f) + } +} + +func (ptr *QMediaPlaylist) DisconnectPlaybackModeChanged() { + if ptr.Pointer() != nil { + C.QMediaPlaylist_DisconnectPlaybackModeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "playbackModeChanged") + } +} + +//export callbackQMediaPlaylistPlaybackModeChanged +func callbackQMediaPlaylistPlaybackModeChanged(ptrName *C.char, mode C.int) { + qt.GetSignal(C.GoString(ptrName), "playbackModeChanged").(func(QMediaPlaylist__PlaybackMode))(QMediaPlaylist__PlaybackMode(mode)) +} + +func (ptr *QMediaPlaylist) Previous() { + if ptr.Pointer() != nil { + C.QMediaPlaylist_Previous(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMediaPlaylist) PreviousIndex(steps int) int { + if ptr.Pointer() != nil { + return int(C.QMediaPlaylist_PreviousIndex(C.QtObjectPtr(ptr.Pointer()), C.int(steps))) + } + return 0 +} + +func (ptr *QMediaPlaylist) RemoveMedia(pos int) bool { + if ptr.Pointer() != nil { + return C.QMediaPlaylist_RemoveMedia(C.QtObjectPtr(ptr.Pointer()), C.int(pos)) != 0 + } + return false +} + +func (ptr *QMediaPlaylist) RemoveMedia2(start int, end int) bool { + if ptr.Pointer() != nil { + return C.QMediaPlaylist_RemoveMedia2(C.QtObjectPtr(ptr.Pointer()), C.int(start), C.int(end)) != 0 + } + return false +} + +func (ptr *QMediaPlaylist) Save2(device core.QIODeviceITF, format string) bool { + if ptr.Pointer() != nil { + return C.QMediaPlaylist_Save2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQIODevice(device)), C.CString(format)) != 0 + } + return false +} + +func (ptr *QMediaPlaylist) Save(location string, format string) bool { + if ptr.Pointer() != nil { + return C.QMediaPlaylist_Save(C.QtObjectPtr(ptr.Pointer()), C.CString(location), C.CString(format)) != 0 + } + return false +} + +func (ptr *QMediaPlaylist) SetCurrentIndex(playlistPosition int) { + if ptr.Pointer() != nil { + C.QMediaPlaylist_SetCurrentIndex(C.QtObjectPtr(ptr.Pointer()), C.int(playlistPosition)) + } +} + +func (ptr *QMediaPlaylist) Shuffle() { + if ptr.Pointer() != nil { + C.QMediaPlaylist_Shuffle(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMediaPlaylist) DestroyQMediaPlaylist() { + if ptr.Pointer() != nil { + C.QMediaPlaylist_DestroyQMediaPlaylist(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qmediaplaylist.h b/multimedia/qmediaplaylist.h new file mode 100755 index 00000000..7da1172b --- /dev/null +++ b/multimedia/qmediaplaylist.h @@ -0,0 +1,54 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QMediaPlaylist_PlaybackMode(QtObjectPtr ptr); +void QMediaPlaylist_SetPlaybackMode(QtObjectPtr ptr, int mode); +QtObjectPtr QMediaPlaylist_NewQMediaPlaylist(QtObjectPtr parent); +int QMediaPlaylist_AddMedia(QtObjectPtr ptr, QtObjectPtr content); +int QMediaPlaylist_Clear(QtObjectPtr ptr); +int QMediaPlaylist_CurrentIndex(QtObjectPtr ptr); +void QMediaPlaylist_ConnectCurrentIndexChanged(QtObjectPtr ptr); +void QMediaPlaylist_DisconnectCurrentIndexChanged(QtObjectPtr ptr); +int QMediaPlaylist_Error(QtObjectPtr ptr); +char* QMediaPlaylist_ErrorString(QtObjectPtr ptr); +int QMediaPlaylist_InsertMedia(QtObjectPtr ptr, int pos, QtObjectPtr content); +int QMediaPlaylist_IsEmpty(QtObjectPtr ptr); +int QMediaPlaylist_IsReadOnly(QtObjectPtr ptr); +void QMediaPlaylist_Load3(QtObjectPtr ptr, QtObjectPtr device, char* format); +void QMediaPlaylist_Load(QtObjectPtr ptr, QtObjectPtr request, char* format); +void QMediaPlaylist_Load2(QtObjectPtr ptr, char* location, char* format); +void QMediaPlaylist_ConnectLoadFailed(QtObjectPtr ptr); +void QMediaPlaylist_DisconnectLoadFailed(QtObjectPtr ptr); +void QMediaPlaylist_ConnectLoaded(QtObjectPtr ptr); +void QMediaPlaylist_DisconnectLoaded(QtObjectPtr ptr); +void QMediaPlaylist_ConnectMediaAboutToBeInserted(QtObjectPtr ptr); +void QMediaPlaylist_DisconnectMediaAboutToBeInserted(QtObjectPtr ptr); +void QMediaPlaylist_ConnectMediaAboutToBeRemoved(QtObjectPtr ptr); +void QMediaPlaylist_DisconnectMediaAboutToBeRemoved(QtObjectPtr ptr); +void QMediaPlaylist_ConnectMediaChanged(QtObjectPtr ptr); +void QMediaPlaylist_DisconnectMediaChanged(QtObjectPtr ptr); +int QMediaPlaylist_MediaCount(QtObjectPtr ptr); +void QMediaPlaylist_ConnectMediaInserted(QtObjectPtr ptr); +void QMediaPlaylist_DisconnectMediaInserted(QtObjectPtr ptr); +QtObjectPtr QMediaPlaylist_MediaObject(QtObjectPtr ptr); +void QMediaPlaylist_ConnectMediaRemoved(QtObjectPtr ptr); +void QMediaPlaylist_DisconnectMediaRemoved(QtObjectPtr ptr); +void QMediaPlaylist_Next(QtObjectPtr ptr); +int QMediaPlaylist_NextIndex(QtObjectPtr ptr, int steps); +void QMediaPlaylist_ConnectPlaybackModeChanged(QtObjectPtr ptr); +void QMediaPlaylist_DisconnectPlaybackModeChanged(QtObjectPtr ptr); +void QMediaPlaylist_Previous(QtObjectPtr ptr); +int QMediaPlaylist_PreviousIndex(QtObjectPtr ptr, int steps); +int QMediaPlaylist_RemoveMedia(QtObjectPtr ptr, int pos); +int QMediaPlaylist_RemoveMedia2(QtObjectPtr ptr, int start, int end); +int QMediaPlaylist_Save2(QtObjectPtr ptr, QtObjectPtr device, char* format); +int QMediaPlaylist_Save(QtObjectPtr ptr, char* location, char* format); +void QMediaPlaylist_SetCurrentIndex(QtObjectPtr ptr, int playlistPosition); +void QMediaPlaylist_Shuffle(QtObjectPtr ptr); +void QMediaPlaylist_DestroyQMediaPlaylist(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmediarecorder.cpp b/multimedia/qmediarecorder.cpp new file mode 100755 index 00000000..d969b8fe --- /dev/null +++ b/multimedia/qmediarecorder.cpp @@ -0,0 +1,213 @@ +#include "qmediarecorder.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMediaRecorder: public QMediaRecorder { +public: +void Signal_ActualLocationChanged(const QUrl & location){callbackQMediaRecorderActualLocationChanged(this->objectName().toUtf8().data(), location.toString().toUtf8().data());}; +void Signal_AvailabilityChanged(bool available){callbackQMediaRecorderAvailabilityChanged(this->objectName().toUtf8().data(), available);}; +void Signal_MetaDataAvailableChanged(bool available){callbackQMediaRecorderMetaDataAvailableChanged(this->objectName().toUtf8().data(), available);}; +void Signal_MetaDataChanged(){callbackQMediaRecorderMetaDataChanged(this->objectName().toUtf8().data());}; +void Signal_MetaDataWritableChanged(bool writable){callbackQMediaRecorderMetaDataWritableChanged(this->objectName().toUtf8().data(), writable);}; +void Signal_MutedChanged(bool muted){callbackQMediaRecorderMutedChanged(this->objectName().toUtf8().data(), muted);}; +void Signal_StateChanged(QMediaRecorder::State state){callbackQMediaRecorderStateChanged(this->objectName().toUtf8().data(), state);}; +void Signal_StatusChanged(QMediaRecorder::Status status){callbackQMediaRecorderStatusChanged(this->objectName().toUtf8().data(), status);}; +}; + +char* QMediaRecorder_ActualLocation(QtObjectPtr ptr){ + return static_cast(ptr)->actualLocation().toString().toUtf8().data(); +} + +int QMediaRecorder_IsMetaDataAvailable(QtObjectPtr ptr){ + return static_cast(ptr)->isMetaDataAvailable(); +} + +int QMediaRecorder_IsMetaDataWritable(QtObjectPtr ptr){ + return static_cast(ptr)->isMetaDataWritable(); +} + +int QMediaRecorder_IsMuted(QtObjectPtr ptr){ + return static_cast(ptr)->isMuted(); +} + +char* QMediaRecorder_OutputLocation(QtObjectPtr ptr){ + return static_cast(ptr)->outputLocation().toString().toUtf8().data(); +} + +void QMediaRecorder_SetMuted(QtObjectPtr ptr, int muted){ + QMetaObject::invokeMethod(static_cast(ptr), "setMuted", Q_ARG(bool, muted != 0)); +} + +int QMediaRecorder_SetOutputLocation(QtObjectPtr ptr, char* location){ + return static_cast(ptr)->setOutputLocation(QUrl(QString(location))); +} + +QtObjectPtr QMediaRecorder_NewQMediaRecorder(QtObjectPtr mediaObject, QtObjectPtr parent){ + return new QMediaRecorder(static_cast(mediaObject), static_cast(parent)); +} + +void QMediaRecorder_ConnectActualLocationChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaRecorder::actualLocationChanged), static_cast(ptr), static_cast(&MyQMediaRecorder::Signal_ActualLocationChanged));; +} + +void QMediaRecorder_DisconnectActualLocationChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaRecorder::actualLocationChanged), static_cast(ptr), static_cast(&MyQMediaRecorder::Signal_ActualLocationChanged));; +} + +char* QMediaRecorder_AudioCodecDescription(QtObjectPtr ptr, char* codec){ + return static_cast(ptr)->audioCodecDescription(QString(codec)).toUtf8().data(); +} + +void QMediaRecorder_ConnectAvailabilityChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaRecorder::availabilityChanged), static_cast(ptr), static_cast(&MyQMediaRecorder::Signal_AvailabilityChanged));; +} + +void QMediaRecorder_DisconnectAvailabilityChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaRecorder::availabilityChanged), static_cast(ptr), static_cast(&MyQMediaRecorder::Signal_AvailabilityChanged));; +} + +char* QMediaRecorder_AvailableMetaData(QtObjectPtr ptr){ + return static_cast(ptr)->availableMetaData().join("|").toUtf8().data(); +} + +char* QMediaRecorder_ContainerDescription(QtObjectPtr ptr, char* format){ + return static_cast(ptr)->containerDescription(QString(format)).toUtf8().data(); +} + +char* QMediaRecorder_ContainerFormat(QtObjectPtr ptr){ + return static_cast(ptr)->containerFormat().toUtf8().data(); +} + +int QMediaRecorder_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +char* QMediaRecorder_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +int QMediaRecorder_IsAvailable(QtObjectPtr ptr){ + return static_cast(ptr)->isAvailable(); +} + +QtObjectPtr QMediaRecorder_MediaObject(QtObjectPtr ptr){ + return static_cast(ptr)->mediaObject(); +} + +char* QMediaRecorder_MetaData(QtObjectPtr ptr, char* key){ + return static_cast(ptr)->metaData(QString(key)).toString().toUtf8().data(); +} + +void QMediaRecorder_ConnectMetaDataAvailableChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaRecorder::metaDataAvailableChanged), static_cast(ptr), static_cast(&MyQMediaRecorder::Signal_MetaDataAvailableChanged));; +} + +void QMediaRecorder_DisconnectMetaDataAvailableChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaRecorder::metaDataAvailableChanged), static_cast(ptr), static_cast(&MyQMediaRecorder::Signal_MetaDataAvailableChanged));; +} + +void QMediaRecorder_ConnectMetaDataChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaRecorder::metaDataChanged), static_cast(ptr), static_cast(&MyQMediaRecorder::Signal_MetaDataChanged));; +} + +void QMediaRecorder_DisconnectMetaDataChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaRecorder::metaDataChanged), static_cast(ptr), static_cast(&MyQMediaRecorder::Signal_MetaDataChanged));; +} + +void QMediaRecorder_ConnectMetaDataWritableChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaRecorder::metaDataWritableChanged), static_cast(ptr), static_cast(&MyQMediaRecorder::Signal_MetaDataWritableChanged));; +} + +void QMediaRecorder_DisconnectMetaDataWritableChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaRecorder::metaDataWritableChanged), static_cast(ptr), static_cast(&MyQMediaRecorder::Signal_MetaDataWritableChanged));; +} + +void QMediaRecorder_ConnectMutedChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaRecorder::mutedChanged), static_cast(ptr), static_cast(&MyQMediaRecorder::Signal_MutedChanged));; +} + +void QMediaRecorder_DisconnectMutedChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaRecorder::mutedChanged), static_cast(ptr), static_cast(&MyQMediaRecorder::Signal_MutedChanged));; +} + +void QMediaRecorder_Pause(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "pause"); +} + +void QMediaRecorder_Record(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "record"); +} + +void QMediaRecorder_SetAudioSettings(QtObjectPtr ptr, QtObjectPtr settings){ + static_cast(ptr)->setAudioSettings(*static_cast(settings)); +} + +void QMediaRecorder_SetContainerFormat(QtObjectPtr ptr, char* container){ + static_cast(ptr)->setContainerFormat(QString(container)); +} + +void QMediaRecorder_SetEncodingSettings(QtObjectPtr ptr, QtObjectPtr audio, QtObjectPtr video, char* container){ + static_cast(ptr)->setEncodingSettings(*static_cast(audio), *static_cast(video), QString(container)); +} + +void QMediaRecorder_SetMetaData(QtObjectPtr ptr, char* key, char* value){ + static_cast(ptr)->setMetaData(QString(key), QVariant(value)); +} + +void QMediaRecorder_SetVideoSettings(QtObjectPtr ptr, QtObjectPtr settings){ + static_cast(ptr)->setVideoSettings(*static_cast(settings)); +} + +void QMediaRecorder_ConnectStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaRecorder::stateChanged), static_cast(ptr), static_cast(&MyQMediaRecorder::Signal_StateChanged));; +} + +void QMediaRecorder_DisconnectStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaRecorder::stateChanged), static_cast(ptr), static_cast(&MyQMediaRecorder::Signal_StateChanged));; +} + +int QMediaRecorder_Status(QtObjectPtr ptr){ + return static_cast(ptr)->status(); +} + +void QMediaRecorder_ConnectStatusChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaRecorder::statusChanged), static_cast(ptr), static_cast(&MyQMediaRecorder::Signal_StatusChanged));; +} + +void QMediaRecorder_DisconnectStatusChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaRecorder::statusChanged), static_cast(ptr), static_cast(&MyQMediaRecorder::Signal_StatusChanged));; +} + +void QMediaRecorder_Stop(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "stop"); +} + +char* QMediaRecorder_SupportedAudioCodecs(QtObjectPtr ptr){ + return static_cast(ptr)->supportedAudioCodecs().join("|").toUtf8().data(); +} + +char* QMediaRecorder_SupportedContainers(QtObjectPtr ptr){ + return static_cast(ptr)->supportedContainers().join("|").toUtf8().data(); +} + +char* QMediaRecorder_SupportedVideoCodecs(QtObjectPtr ptr){ + return static_cast(ptr)->supportedVideoCodecs().join("|").toUtf8().data(); +} + +char* QMediaRecorder_VideoCodecDescription(QtObjectPtr ptr, char* codec){ + return static_cast(ptr)->videoCodecDescription(QString(codec)).toUtf8().data(); +} + +void QMediaRecorder_DestroyQMediaRecorder(QtObjectPtr ptr){ + static_cast(ptr)->~QMediaRecorder(); +} + diff --git a/multimedia/qmediarecorder.go b/multimedia/qmediarecorder.go new file mode 100755 index 00000000..5604cf4c --- /dev/null +++ b/multimedia/qmediarecorder.go @@ -0,0 +1,440 @@ +package multimedia + +//#include "qmediarecorder.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QMediaRecorder struct { + core.QObject + QMediaBindableInterface +} + +type QMediaRecorderITF interface { + core.QObjectITF + QMediaBindableInterfaceITF + QMediaRecorderPTR() *QMediaRecorder +} + +func (p *QMediaRecorder) Pointer() unsafe.Pointer { + return p.QObjectPTR().Pointer() +} + +func (p *QMediaRecorder) SetPointer(ptr unsafe.Pointer) { + p.QObjectPTR().SetPointer(ptr) + p.QMediaBindableInterfacePTR().SetPointer(ptr) +} + +func PointerFromQMediaRecorder(ptr QMediaRecorderITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMediaRecorderPTR().Pointer() + } + return nil +} + +func QMediaRecorderFromPointer(ptr unsafe.Pointer) *QMediaRecorder { + var n = new(QMediaRecorder) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMediaRecorder_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMediaRecorder) QMediaRecorderPTR() *QMediaRecorder { + return ptr +} + +//QMediaRecorder::Error +type QMediaRecorder__Error int + +var ( + QMediaRecorder__NoError = QMediaRecorder__Error(0) + QMediaRecorder__ResourceError = QMediaRecorder__Error(1) + QMediaRecorder__FormatError = QMediaRecorder__Error(2) + QMediaRecorder__OutOfSpaceError = QMediaRecorder__Error(3) +) + +//QMediaRecorder::State +type QMediaRecorder__State int + +var ( + QMediaRecorder__StoppedState = QMediaRecorder__State(0) + QMediaRecorder__RecordingState = QMediaRecorder__State(1) + QMediaRecorder__PausedState = QMediaRecorder__State(2) +) + +//QMediaRecorder::Status +type QMediaRecorder__Status int + +var ( + QMediaRecorder__UnavailableStatus = QMediaRecorder__Status(0) + QMediaRecorder__UnloadedStatus = QMediaRecorder__Status(1) + QMediaRecorder__LoadingStatus = QMediaRecorder__Status(2) + QMediaRecorder__LoadedStatus = QMediaRecorder__Status(3) + QMediaRecorder__StartingStatus = QMediaRecorder__Status(4) + QMediaRecorder__RecordingStatus = QMediaRecorder__Status(5) + QMediaRecorder__PausedStatus = QMediaRecorder__Status(6) + QMediaRecorder__FinalizingStatus = QMediaRecorder__Status(7) +) + +func (ptr *QMediaRecorder) ActualLocation() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMediaRecorder_ActualLocation(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMediaRecorder) IsMetaDataAvailable() bool { + if ptr.Pointer() != nil { + return C.QMediaRecorder_IsMetaDataAvailable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMediaRecorder) IsMetaDataWritable() bool { + if ptr.Pointer() != nil { + return C.QMediaRecorder_IsMetaDataWritable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMediaRecorder) IsMuted() bool { + if ptr.Pointer() != nil { + return C.QMediaRecorder_IsMuted(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMediaRecorder) OutputLocation() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMediaRecorder_OutputLocation(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMediaRecorder) SetMuted(muted bool) { + if ptr.Pointer() != nil { + C.QMediaRecorder_SetMuted(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(muted))) + } +} + +func (ptr *QMediaRecorder) SetOutputLocation(location string) bool { + if ptr.Pointer() != nil { + return C.QMediaRecorder_SetOutputLocation(C.QtObjectPtr(ptr.Pointer()), C.CString(location)) != 0 + } + return false +} + +func NewQMediaRecorder(mediaObject QMediaObjectITF, parent core.QObjectITF) *QMediaRecorder { + return QMediaRecorderFromPointer(unsafe.Pointer(C.QMediaRecorder_NewQMediaRecorder(C.QtObjectPtr(PointerFromQMediaObject(mediaObject)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QMediaRecorder) ConnectActualLocationChanged(f func(location string)) { + if ptr.Pointer() != nil { + C.QMediaRecorder_ConnectActualLocationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "actualLocationChanged", f) + } +} + +func (ptr *QMediaRecorder) DisconnectActualLocationChanged() { + if ptr.Pointer() != nil { + C.QMediaRecorder_DisconnectActualLocationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "actualLocationChanged") + } +} + +//export callbackQMediaRecorderActualLocationChanged +func callbackQMediaRecorderActualLocationChanged(ptrName *C.char, location *C.char) { + qt.GetSignal(C.GoString(ptrName), "actualLocationChanged").(func(string))(C.GoString(location)) +} + +func (ptr *QMediaRecorder) AudioCodecDescription(codec string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QMediaRecorder_AudioCodecDescription(C.QtObjectPtr(ptr.Pointer()), C.CString(codec))) + } + return "" +} + +func (ptr *QMediaRecorder) ConnectAvailabilityChanged(f func(available bool)) { + if ptr.Pointer() != nil { + C.QMediaRecorder_ConnectAvailabilityChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "availabilityChanged", f) + } +} + +func (ptr *QMediaRecorder) DisconnectAvailabilityChanged() { + if ptr.Pointer() != nil { + C.QMediaRecorder_DisconnectAvailabilityChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "availabilityChanged") + } +} + +//export callbackQMediaRecorderAvailabilityChanged +func callbackQMediaRecorderAvailabilityChanged(ptrName *C.char, available C.int) { + qt.GetSignal(C.GoString(ptrName), "availabilityChanged").(func(bool))(int(available) != 0) +} + +func (ptr *QMediaRecorder) AvailableMetaData() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QMediaRecorder_AvailableMetaData(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QMediaRecorder) ContainerDescription(format string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QMediaRecorder_ContainerDescription(C.QtObjectPtr(ptr.Pointer()), C.CString(format))) + } + return "" +} + +func (ptr *QMediaRecorder) ContainerFormat() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMediaRecorder_ContainerFormat(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMediaRecorder) Error() QMediaRecorder__Error { + if ptr.Pointer() != nil { + return QMediaRecorder__Error(C.QMediaRecorder_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMediaRecorder) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMediaRecorder_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMediaRecorder) IsAvailable() bool { + if ptr.Pointer() != nil { + return C.QMediaRecorder_IsAvailable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMediaRecorder) MediaObject() *QMediaObject { + if ptr.Pointer() != nil { + return QMediaObjectFromPointer(unsafe.Pointer(C.QMediaRecorder_MediaObject(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMediaRecorder) MetaData(key string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QMediaRecorder_MetaData(C.QtObjectPtr(ptr.Pointer()), C.CString(key))) + } + return "" +} + +func (ptr *QMediaRecorder) ConnectMetaDataAvailableChanged(f func(available bool)) { + if ptr.Pointer() != nil { + C.QMediaRecorder_ConnectMetaDataAvailableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "metaDataAvailableChanged", f) + } +} + +func (ptr *QMediaRecorder) DisconnectMetaDataAvailableChanged() { + if ptr.Pointer() != nil { + C.QMediaRecorder_DisconnectMetaDataAvailableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "metaDataAvailableChanged") + } +} + +//export callbackQMediaRecorderMetaDataAvailableChanged +func callbackQMediaRecorderMetaDataAvailableChanged(ptrName *C.char, available C.int) { + qt.GetSignal(C.GoString(ptrName), "metaDataAvailableChanged").(func(bool))(int(available) != 0) +} + +func (ptr *QMediaRecorder) ConnectMetaDataChanged(f func()) { + if ptr.Pointer() != nil { + C.QMediaRecorder_ConnectMetaDataChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "metaDataChanged", f) + } +} + +func (ptr *QMediaRecorder) DisconnectMetaDataChanged() { + if ptr.Pointer() != nil { + C.QMediaRecorder_DisconnectMetaDataChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "metaDataChanged") + } +} + +//export callbackQMediaRecorderMetaDataChanged +func callbackQMediaRecorderMetaDataChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "metaDataChanged").(func())() +} + +func (ptr *QMediaRecorder) ConnectMetaDataWritableChanged(f func(writable bool)) { + if ptr.Pointer() != nil { + C.QMediaRecorder_ConnectMetaDataWritableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "metaDataWritableChanged", f) + } +} + +func (ptr *QMediaRecorder) DisconnectMetaDataWritableChanged() { + if ptr.Pointer() != nil { + C.QMediaRecorder_DisconnectMetaDataWritableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "metaDataWritableChanged") + } +} + +//export callbackQMediaRecorderMetaDataWritableChanged +func callbackQMediaRecorderMetaDataWritableChanged(ptrName *C.char, writable C.int) { + qt.GetSignal(C.GoString(ptrName), "metaDataWritableChanged").(func(bool))(int(writable) != 0) +} + +func (ptr *QMediaRecorder) ConnectMutedChanged(f func(muted bool)) { + if ptr.Pointer() != nil { + C.QMediaRecorder_ConnectMutedChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "mutedChanged", f) + } +} + +func (ptr *QMediaRecorder) DisconnectMutedChanged() { + if ptr.Pointer() != nil { + C.QMediaRecorder_DisconnectMutedChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "mutedChanged") + } +} + +//export callbackQMediaRecorderMutedChanged +func callbackQMediaRecorderMutedChanged(ptrName *C.char, muted C.int) { + qt.GetSignal(C.GoString(ptrName), "mutedChanged").(func(bool))(int(muted) != 0) +} + +func (ptr *QMediaRecorder) Pause() { + if ptr.Pointer() != nil { + C.QMediaRecorder_Pause(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMediaRecorder) Record() { + if ptr.Pointer() != nil { + C.QMediaRecorder_Record(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMediaRecorder) SetAudioSettings(settings QAudioEncoderSettingsITF) { + if ptr.Pointer() != nil { + C.QMediaRecorder_SetAudioSettings(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAudioEncoderSettings(settings))) + } +} + +func (ptr *QMediaRecorder) SetContainerFormat(container string) { + if ptr.Pointer() != nil { + C.QMediaRecorder_SetContainerFormat(C.QtObjectPtr(ptr.Pointer()), C.CString(container)) + } +} + +func (ptr *QMediaRecorder) SetEncodingSettings(audio QAudioEncoderSettingsITF, video QVideoEncoderSettingsITF, container string) { + if ptr.Pointer() != nil { + C.QMediaRecorder_SetEncodingSettings(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAudioEncoderSettings(audio)), C.QtObjectPtr(PointerFromQVideoEncoderSettings(video)), C.CString(container)) + } +} + +func (ptr *QMediaRecorder) SetMetaData(key string, value string) { + if ptr.Pointer() != nil { + C.QMediaRecorder_SetMetaData(C.QtObjectPtr(ptr.Pointer()), C.CString(key), C.CString(value)) + } +} + +func (ptr *QMediaRecorder) SetVideoSettings(settings QVideoEncoderSettingsITF) { + if ptr.Pointer() != nil { + C.QMediaRecorder_SetVideoSettings(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQVideoEncoderSettings(settings))) + } +} + +func (ptr *QMediaRecorder) ConnectStateChanged(f func(state QMediaRecorder__State)) { + if ptr.Pointer() != nil { + C.QMediaRecorder_ConnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stateChanged", f) + } +} + +func (ptr *QMediaRecorder) DisconnectStateChanged() { + if ptr.Pointer() != nil { + C.QMediaRecorder_DisconnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stateChanged") + } +} + +//export callbackQMediaRecorderStateChanged +func callbackQMediaRecorderStateChanged(ptrName *C.char, state C.int) { + qt.GetSignal(C.GoString(ptrName), "stateChanged").(func(QMediaRecorder__State))(QMediaRecorder__State(state)) +} + +func (ptr *QMediaRecorder) Status() QMediaRecorder__Status { + if ptr.Pointer() != nil { + return QMediaRecorder__Status(C.QMediaRecorder_Status(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMediaRecorder) ConnectStatusChanged(f func(status QMediaRecorder__Status)) { + if ptr.Pointer() != nil { + C.QMediaRecorder_ConnectStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "statusChanged", f) + } +} + +func (ptr *QMediaRecorder) DisconnectStatusChanged() { + if ptr.Pointer() != nil { + C.QMediaRecorder_DisconnectStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "statusChanged") + } +} + +//export callbackQMediaRecorderStatusChanged +func callbackQMediaRecorderStatusChanged(ptrName *C.char, status C.int) { + qt.GetSignal(C.GoString(ptrName), "statusChanged").(func(QMediaRecorder__Status))(QMediaRecorder__Status(status)) +} + +func (ptr *QMediaRecorder) Stop() { + if ptr.Pointer() != nil { + C.QMediaRecorder_Stop(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMediaRecorder) SupportedAudioCodecs() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QMediaRecorder_SupportedAudioCodecs(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QMediaRecorder) SupportedContainers() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QMediaRecorder_SupportedContainers(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QMediaRecorder) SupportedVideoCodecs() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QMediaRecorder_SupportedVideoCodecs(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QMediaRecorder) VideoCodecDescription(codec string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QMediaRecorder_VideoCodecDescription(C.QtObjectPtr(ptr.Pointer()), C.CString(codec))) + } + return "" +} + +func (ptr *QMediaRecorder) DestroyQMediaRecorder() { + if ptr.Pointer() != nil { + C.QMediaRecorder_DestroyQMediaRecorder(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qmediarecorder.h b/multimedia/qmediarecorder.h new file mode 100755 index 00000000..173fd30a --- /dev/null +++ b/multimedia/qmediarecorder.h @@ -0,0 +1,56 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QMediaRecorder_ActualLocation(QtObjectPtr ptr); +int QMediaRecorder_IsMetaDataAvailable(QtObjectPtr ptr); +int QMediaRecorder_IsMetaDataWritable(QtObjectPtr ptr); +int QMediaRecorder_IsMuted(QtObjectPtr ptr); +char* QMediaRecorder_OutputLocation(QtObjectPtr ptr); +void QMediaRecorder_SetMuted(QtObjectPtr ptr, int muted); +int QMediaRecorder_SetOutputLocation(QtObjectPtr ptr, char* location); +QtObjectPtr QMediaRecorder_NewQMediaRecorder(QtObjectPtr mediaObject, QtObjectPtr parent); +void QMediaRecorder_ConnectActualLocationChanged(QtObjectPtr ptr); +void QMediaRecorder_DisconnectActualLocationChanged(QtObjectPtr ptr); +char* QMediaRecorder_AudioCodecDescription(QtObjectPtr ptr, char* codec); +void QMediaRecorder_ConnectAvailabilityChanged(QtObjectPtr ptr); +void QMediaRecorder_DisconnectAvailabilityChanged(QtObjectPtr ptr); +char* QMediaRecorder_AvailableMetaData(QtObjectPtr ptr); +char* QMediaRecorder_ContainerDescription(QtObjectPtr ptr, char* format); +char* QMediaRecorder_ContainerFormat(QtObjectPtr ptr); +int QMediaRecorder_Error(QtObjectPtr ptr); +char* QMediaRecorder_ErrorString(QtObjectPtr ptr); +int QMediaRecorder_IsAvailable(QtObjectPtr ptr); +QtObjectPtr QMediaRecorder_MediaObject(QtObjectPtr ptr); +char* QMediaRecorder_MetaData(QtObjectPtr ptr, char* key); +void QMediaRecorder_ConnectMetaDataAvailableChanged(QtObjectPtr ptr); +void QMediaRecorder_DisconnectMetaDataAvailableChanged(QtObjectPtr ptr); +void QMediaRecorder_ConnectMetaDataChanged(QtObjectPtr ptr); +void QMediaRecorder_DisconnectMetaDataChanged(QtObjectPtr ptr); +void QMediaRecorder_ConnectMetaDataWritableChanged(QtObjectPtr ptr); +void QMediaRecorder_DisconnectMetaDataWritableChanged(QtObjectPtr ptr); +void QMediaRecorder_ConnectMutedChanged(QtObjectPtr ptr); +void QMediaRecorder_DisconnectMutedChanged(QtObjectPtr ptr); +void QMediaRecorder_Pause(QtObjectPtr ptr); +void QMediaRecorder_Record(QtObjectPtr ptr); +void QMediaRecorder_SetAudioSettings(QtObjectPtr ptr, QtObjectPtr settings); +void QMediaRecorder_SetContainerFormat(QtObjectPtr ptr, char* container); +void QMediaRecorder_SetEncodingSettings(QtObjectPtr ptr, QtObjectPtr audio, QtObjectPtr video, char* container); +void QMediaRecorder_SetMetaData(QtObjectPtr ptr, char* key, char* value); +void QMediaRecorder_SetVideoSettings(QtObjectPtr ptr, QtObjectPtr settings); +void QMediaRecorder_ConnectStateChanged(QtObjectPtr ptr); +void QMediaRecorder_DisconnectStateChanged(QtObjectPtr ptr); +int QMediaRecorder_Status(QtObjectPtr ptr); +void QMediaRecorder_ConnectStatusChanged(QtObjectPtr ptr); +void QMediaRecorder_DisconnectStatusChanged(QtObjectPtr ptr); +void QMediaRecorder_Stop(QtObjectPtr ptr); +char* QMediaRecorder_SupportedAudioCodecs(QtObjectPtr ptr); +char* QMediaRecorder_SupportedContainers(QtObjectPtr ptr); +char* QMediaRecorder_SupportedVideoCodecs(QtObjectPtr ptr); +char* QMediaRecorder_VideoCodecDescription(QtObjectPtr ptr, char* codec); +void QMediaRecorder_DestroyQMediaRecorder(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmediarecordercontrol.cpp b/multimedia/qmediarecordercontrol.cpp new file mode 100755 index 00000000..5c9946d4 --- /dev/null +++ b/multimedia/qmediarecordercontrol.cpp @@ -0,0 +1,92 @@ +#include "qmediarecordercontrol.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMediaRecorderControl: public QMediaRecorderControl { +public: +void Signal_ActualLocationChanged(const QUrl & location){callbackQMediaRecorderControlActualLocationChanged(this->objectName().toUtf8().data(), location.toString().toUtf8().data());}; +void Signal_Error(int error, const QString & errorString){callbackQMediaRecorderControlError(this->objectName().toUtf8().data(), error, errorString.toUtf8().data());}; +void Signal_MutedChanged(bool muted){callbackQMediaRecorderControlMutedChanged(this->objectName().toUtf8().data(), muted);}; +void Signal_StateChanged(QMediaRecorder::State state){callbackQMediaRecorderControlStateChanged(this->objectName().toUtf8().data(), state);}; +void Signal_StatusChanged(QMediaRecorder::Status status){callbackQMediaRecorderControlStatusChanged(this->objectName().toUtf8().data(), status);}; +}; + +void QMediaRecorderControl_ConnectActualLocationChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaRecorderControl::actualLocationChanged), static_cast(ptr), static_cast(&MyQMediaRecorderControl::Signal_ActualLocationChanged));; +} + +void QMediaRecorderControl_DisconnectActualLocationChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaRecorderControl::actualLocationChanged), static_cast(ptr), static_cast(&MyQMediaRecorderControl::Signal_ActualLocationChanged));; +} + +void QMediaRecorderControl_ApplySettings(QtObjectPtr ptr){ + static_cast(ptr)->applySettings(); +} + +void QMediaRecorderControl_ConnectError(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaRecorderControl::error), static_cast(ptr), static_cast(&MyQMediaRecorderControl::Signal_Error));; +} + +void QMediaRecorderControl_DisconnectError(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaRecorderControl::error), static_cast(ptr), static_cast(&MyQMediaRecorderControl::Signal_Error));; +} + +int QMediaRecorderControl_IsMuted(QtObjectPtr ptr){ + return static_cast(ptr)->isMuted(); +} + +void QMediaRecorderControl_ConnectMutedChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaRecorderControl::mutedChanged), static_cast(ptr), static_cast(&MyQMediaRecorderControl::Signal_MutedChanged));; +} + +void QMediaRecorderControl_DisconnectMutedChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaRecorderControl::mutedChanged), static_cast(ptr), static_cast(&MyQMediaRecorderControl::Signal_MutedChanged));; +} + +char* QMediaRecorderControl_OutputLocation(QtObjectPtr ptr){ + return static_cast(ptr)->outputLocation().toString().toUtf8().data(); +} + +void QMediaRecorderControl_SetMuted(QtObjectPtr ptr, int muted){ + QMetaObject::invokeMethod(static_cast(ptr), "setMuted", Q_ARG(bool, muted != 0)); +} + +int QMediaRecorderControl_SetOutputLocation(QtObjectPtr ptr, char* location){ + return static_cast(ptr)->setOutputLocation(QUrl(QString(location))); +} + +void QMediaRecorderControl_SetState(QtObjectPtr ptr, int state){ + QMetaObject::invokeMethod(static_cast(ptr), "setState", Q_ARG(QMediaRecorder::State, static_cast(state))); +} + +void QMediaRecorderControl_ConnectStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaRecorderControl::stateChanged), static_cast(ptr), static_cast(&MyQMediaRecorderControl::Signal_StateChanged));; +} + +void QMediaRecorderControl_DisconnectStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaRecorderControl::stateChanged), static_cast(ptr), static_cast(&MyQMediaRecorderControl::Signal_StateChanged));; +} + +int QMediaRecorderControl_Status(QtObjectPtr ptr){ + return static_cast(ptr)->status(); +} + +void QMediaRecorderControl_ConnectStatusChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaRecorderControl::statusChanged), static_cast(ptr), static_cast(&MyQMediaRecorderControl::Signal_StatusChanged));; +} + +void QMediaRecorderControl_DisconnectStatusChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaRecorderControl::statusChanged), static_cast(ptr), static_cast(&MyQMediaRecorderControl::Signal_StatusChanged));; +} + +void QMediaRecorderControl_DestroyQMediaRecorderControl(QtObjectPtr ptr){ + static_cast(ptr)->~QMediaRecorderControl(); +} + diff --git a/multimedia/qmediarecordercontrol.go b/multimedia/qmediarecordercontrol.go new file mode 100755 index 00000000..66f01a88 --- /dev/null +++ b/multimedia/qmediarecordercontrol.go @@ -0,0 +1,185 @@ +package multimedia + +//#include "qmediarecordercontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QMediaRecorderControl struct { + QMediaControl +} + +type QMediaRecorderControlITF interface { + QMediaControlITF + QMediaRecorderControlPTR() *QMediaRecorderControl +} + +func PointerFromQMediaRecorderControl(ptr QMediaRecorderControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMediaRecorderControlPTR().Pointer() + } + return nil +} + +func QMediaRecorderControlFromPointer(ptr unsafe.Pointer) *QMediaRecorderControl { + var n = new(QMediaRecorderControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMediaRecorderControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMediaRecorderControl) QMediaRecorderControlPTR() *QMediaRecorderControl { + return ptr +} + +func (ptr *QMediaRecorderControl) ConnectActualLocationChanged(f func(location string)) { + if ptr.Pointer() != nil { + C.QMediaRecorderControl_ConnectActualLocationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "actualLocationChanged", f) + } +} + +func (ptr *QMediaRecorderControl) DisconnectActualLocationChanged() { + if ptr.Pointer() != nil { + C.QMediaRecorderControl_DisconnectActualLocationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "actualLocationChanged") + } +} + +//export callbackQMediaRecorderControlActualLocationChanged +func callbackQMediaRecorderControlActualLocationChanged(ptrName *C.char, location *C.char) { + qt.GetSignal(C.GoString(ptrName), "actualLocationChanged").(func(string))(C.GoString(location)) +} + +func (ptr *QMediaRecorderControl) ApplySettings() { + if ptr.Pointer() != nil { + C.QMediaRecorderControl_ApplySettings(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMediaRecorderControl) ConnectError(f func(error int, errorString string)) { + if ptr.Pointer() != nil { + C.QMediaRecorderControl_ConnectError(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "error", f) + } +} + +func (ptr *QMediaRecorderControl) DisconnectError() { + if ptr.Pointer() != nil { + C.QMediaRecorderControl_DisconnectError(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "error") + } +} + +//export callbackQMediaRecorderControlError +func callbackQMediaRecorderControlError(ptrName *C.char, error C.int, errorString *C.char) { + qt.GetSignal(C.GoString(ptrName), "error").(func(int, string))(int(error), C.GoString(errorString)) +} + +func (ptr *QMediaRecorderControl) IsMuted() bool { + if ptr.Pointer() != nil { + return C.QMediaRecorderControl_IsMuted(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMediaRecorderControl) ConnectMutedChanged(f func(muted bool)) { + if ptr.Pointer() != nil { + C.QMediaRecorderControl_ConnectMutedChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "mutedChanged", f) + } +} + +func (ptr *QMediaRecorderControl) DisconnectMutedChanged() { + if ptr.Pointer() != nil { + C.QMediaRecorderControl_DisconnectMutedChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "mutedChanged") + } +} + +//export callbackQMediaRecorderControlMutedChanged +func callbackQMediaRecorderControlMutedChanged(ptrName *C.char, muted C.int) { + qt.GetSignal(C.GoString(ptrName), "mutedChanged").(func(bool))(int(muted) != 0) +} + +func (ptr *QMediaRecorderControl) OutputLocation() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMediaRecorderControl_OutputLocation(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMediaRecorderControl) SetMuted(muted bool) { + if ptr.Pointer() != nil { + C.QMediaRecorderControl_SetMuted(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(muted))) + } +} + +func (ptr *QMediaRecorderControl) SetOutputLocation(location string) bool { + if ptr.Pointer() != nil { + return C.QMediaRecorderControl_SetOutputLocation(C.QtObjectPtr(ptr.Pointer()), C.CString(location)) != 0 + } + return false +} + +func (ptr *QMediaRecorderControl) SetState(state QMediaRecorder__State) { + if ptr.Pointer() != nil { + C.QMediaRecorderControl_SetState(C.QtObjectPtr(ptr.Pointer()), C.int(state)) + } +} + +func (ptr *QMediaRecorderControl) ConnectStateChanged(f func(state QMediaRecorder__State)) { + if ptr.Pointer() != nil { + C.QMediaRecorderControl_ConnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stateChanged", f) + } +} + +func (ptr *QMediaRecorderControl) DisconnectStateChanged() { + if ptr.Pointer() != nil { + C.QMediaRecorderControl_DisconnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stateChanged") + } +} + +//export callbackQMediaRecorderControlStateChanged +func callbackQMediaRecorderControlStateChanged(ptrName *C.char, state C.int) { + qt.GetSignal(C.GoString(ptrName), "stateChanged").(func(QMediaRecorder__State))(QMediaRecorder__State(state)) +} + +func (ptr *QMediaRecorderControl) Status() QMediaRecorder__Status { + if ptr.Pointer() != nil { + return QMediaRecorder__Status(C.QMediaRecorderControl_Status(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMediaRecorderControl) ConnectStatusChanged(f func(status QMediaRecorder__Status)) { + if ptr.Pointer() != nil { + C.QMediaRecorderControl_ConnectStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "statusChanged", f) + } +} + +func (ptr *QMediaRecorderControl) DisconnectStatusChanged() { + if ptr.Pointer() != nil { + C.QMediaRecorderControl_DisconnectStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "statusChanged") + } +} + +//export callbackQMediaRecorderControlStatusChanged +func callbackQMediaRecorderControlStatusChanged(ptrName *C.char, status C.int) { + qt.GetSignal(C.GoString(ptrName), "statusChanged").(func(QMediaRecorder__Status))(QMediaRecorder__Status(status)) +} + +func (ptr *QMediaRecorderControl) DestroyQMediaRecorderControl() { + if ptr.Pointer() != nil { + C.QMediaRecorderControl_DestroyQMediaRecorderControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qmediarecordercontrol.h b/multimedia/qmediarecordercontrol.h new file mode 100755 index 00000000..bea2db1f --- /dev/null +++ b/multimedia/qmediarecordercontrol.h @@ -0,0 +1,27 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QMediaRecorderControl_ConnectActualLocationChanged(QtObjectPtr ptr); +void QMediaRecorderControl_DisconnectActualLocationChanged(QtObjectPtr ptr); +void QMediaRecorderControl_ApplySettings(QtObjectPtr ptr); +void QMediaRecorderControl_ConnectError(QtObjectPtr ptr); +void QMediaRecorderControl_DisconnectError(QtObjectPtr ptr); +int QMediaRecorderControl_IsMuted(QtObjectPtr ptr); +void QMediaRecorderControl_ConnectMutedChanged(QtObjectPtr ptr); +void QMediaRecorderControl_DisconnectMutedChanged(QtObjectPtr ptr); +char* QMediaRecorderControl_OutputLocation(QtObjectPtr ptr); +void QMediaRecorderControl_SetMuted(QtObjectPtr ptr, int muted); +int QMediaRecorderControl_SetOutputLocation(QtObjectPtr ptr, char* location); +void QMediaRecorderControl_SetState(QtObjectPtr ptr, int state); +void QMediaRecorderControl_ConnectStateChanged(QtObjectPtr ptr); +void QMediaRecorderControl_DisconnectStateChanged(QtObjectPtr ptr); +int QMediaRecorderControl_Status(QtObjectPtr ptr); +void QMediaRecorderControl_ConnectStatusChanged(QtObjectPtr ptr); +void QMediaRecorderControl_DisconnectStatusChanged(QtObjectPtr ptr); +void QMediaRecorderControl_DestroyQMediaRecorderControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmediaresource.cpp b/multimedia/qmediaresource.cpp new file mode 100755 index 00000000..97c0ea96 --- /dev/null +++ b/multimedia/qmediaresource.cpp @@ -0,0 +1,110 @@ +#include "qmediaresource.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMediaResource: public QMediaResource { +public: +}; + +QtObjectPtr QMediaResource_NewQMediaResource(){ + return new QMediaResource(); +} + +QtObjectPtr QMediaResource_NewQMediaResource4(QtObjectPtr other){ + return new QMediaResource(*static_cast(other)); +} + +QtObjectPtr QMediaResource_NewQMediaResource3(QtObjectPtr request, char* mimeType){ + return new QMediaResource(*static_cast(request), QString(mimeType)); +} + +QtObjectPtr QMediaResource_NewQMediaResource2(char* url, char* mimeType){ + return new QMediaResource(QUrl(QString(url)), QString(mimeType)); +} + +int QMediaResource_AudioBitRate(QtObjectPtr ptr){ + return static_cast(ptr)->audioBitRate(); +} + +char* QMediaResource_AudioCodec(QtObjectPtr ptr){ + return static_cast(ptr)->audioCodec().toUtf8().data(); +} + +int QMediaResource_ChannelCount(QtObjectPtr ptr){ + return static_cast(ptr)->channelCount(); +} + +int QMediaResource_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +char* QMediaResource_Language(QtObjectPtr ptr){ + return static_cast(ptr)->language().toUtf8().data(); +} + +char* QMediaResource_MimeType(QtObjectPtr ptr){ + return static_cast(ptr)->mimeType().toUtf8().data(); +} + +int QMediaResource_SampleRate(QtObjectPtr ptr){ + return static_cast(ptr)->sampleRate(); +} + +void QMediaResource_SetAudioBitRate(QtObjectPtr ptr, int rate){ + static_cast(ptr)->setAudioBitRate(rate); +} + +void QMediaResource_SetAudioCodec(QtObjectPtr ptr, char* codec){ + static_cast(ptr)->setAudioCodec(QString(codec)); +} + +void QMediaResource_SetChannelCount(QtObjectPtr ptr, int channels){ + static_cast(ptr)->setChannelCount(channels); +} + +void QMediaResource_SetLanguage(QtObjectPtr ptr, char* language){ + static_cast(ptr)->setLanguage(QString(language)); +} + +void QMediaResource_SetResolution(QtObjectPtr ptr, QtObjectPtr resolution){ + static_cast(ptr)->setResolution(*static_cast(resolution)); +} + +void QMediaResource_SetResolution2(QtObjectPtr ptr, int width, int height){ + static_cast(ptr)->setResolution(width, height); +} + +void QMediaResource_SetSampleRate(QtObjectPtr ptr, int sampleRate){ + static_cast(ptr)->setSampleRate(sampleRate); +} + +void QMediaResource_SetVideoBitRate(QtObjectPtr ptr, int rate){ + static_cast(ptr)->setVideoBitRate(rate); +} + +void QMediaResource_SetVideoCodec(QtObjectPtr ptr, char* codec){ + static_cast(ptr)->setVideoCodec(QString(codec)); +} + +char* QMediaResource_Url(QtObjectPtr ptr){ + return static_cast(ptr)->url().toString().toUtf8().data(); +} + +int QMediaResource_VideoBitRate(QtObjectPtr ptr){ + return static_cast(ptr)->videoBitRate(); +} + +char* QMediaResource_VideoCodec(QtObjectPtr ptr){ + return static_cast(ptr)->videoCodec().toUtf8().data(); +} + +void QMediaResource_DestroyQMediaResource(QtObjectPtr ptr){ + static_cast(ptr)->~QMediaResource(); +} + diff --git a/multimedia/qmediaresource.go b/multimedia/qmediaresource.go new file mode 100755 index 00000000..45f71985 --- /dev/null +++ b/multimedia/qmediaresource.go @@ -0,0 +1,188 @@ +package multimedia + +//#include "qmediaresource.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/network" + "unsafe" +) + +type QMediaResource struct { + ptr unsafe.Pointer +} + +type QMediaResourceITF interface { + QMediaResourcePTR() *QMediaResource +} + +func (p *QMediaResource) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMediaResource) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMediaResource(ptr QMediaResourceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMediaResourcePTR().Pointer() + } + return nil +} + +func QMediaResourceFromPointer(ptr unsafe.Pointer) *QMediaResource { + var n = new(QMediaResource) + n.SetPointer(ptr) + return n +} + +func (ptr *QMediaResource) QMediaResourcePTR() *QMediaResource { + return ptr +} + +func NewQMediaResource() *QMediaResource { + return QMediaResourceFromPointer(unsafe.Pointer(C.QMediaResource_NewQMediaResource())) +} + +func NewQMediaResource4(other QMediaResourceITF) *QMediaResource { + return QMediaResourceFromPointer(unsafe.Pointer(C.QMediaResource_NewQMediaResource4(C.QtObjectPtr(PointerFromQMediaResource(other))))) +} + +func NewQMediaResource3(request network.QNetworkRequestITF, mimeType string) *QMediaResource { + return QMediaResourceFromPointer(unsafe.Pointer(C.QMediaResource_NewQMediaResource3(C.QtObjectPtr(network.PointerFromQNetworkRequest(request)), C.CString(mimeType)))) +} + +func NewQMediaResource2(url string, mimeType string) *QMediaResource { + return QMediaResourceFromPointer(unsafe.Pointer(C.QMediaResource_NewQMediaResource2(C.CString(url), C.CString(mimeType)))) +} + +func (ptr *QMediaResource) AudioBitRate() int { + if ptr.Pointer() != nil { + return int(C.QMediaResource_AudioBitRate(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMediaResource) AudioCodec() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMediaResource_AudioCodec(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMediaResource) ChannelCount() int { + if ptr.Pointer() != nil { + return int(C.QMediaResource_ChannelCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMediaResource) IsNull() bool { + if ptr.Pointer() != nil { + return C.QMediaResource_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMediaResource) Language() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMediaResource_Language(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMediaResource) MimeType() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMediaResource_MimeType(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMediaResource) SampleRate() int { + if ptr.Pointer() != nil { + return int(C.QMediaResource_SampleRate(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMediaResource) SetAudioBitRate(rate int) { + if ptr.Pointer() != nil { + C.QMediaResource_SetAudioBitRate(C.QtObjectPtr(ptr.Pointer()), C.int(rate)) + } +} + +func (ptr *QMediaResource) SetAudioCodec(codec string) { + if ptr.Pointer() != nil { + C.QMediaResource_SetAudioCodec(C.QtObjectPtr(ptr.Pointer()), C.CString(codec)) + } +} + +func (ptr *QMediaResource) SetChannelCount(channels int) { + if ptr.Pointer() != nil { + C.QMediaResource_SetChannelCount(C.QtObjectPtr(ptr.Pointer()), C.int(channels)) + } +} + +func (ptr *QMediaResource) SetLanguage(language string) { + if ptr.Pointer() != nil { + C.QMediaResource_SetLanguage(C.QtObjectPtr(ptr.Pointer()), C.CString(language)) + } +} + +func (ptr *QMediaResource) SetResolution(resolution core.QSizeITF) { + if ptr.Pointer() != nil { + C.QMediaResource_SetResolution(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(resolution))) + } +} + +func (ptr *QMediaResource) SetResolution2(width int, height int) { + if ptr.Pointer() != nil { + C.QMediaResource_SetResolution2(C.QtObjectPtr(ptr.Pointer()), C.int(width), C.int(height)) + } +} + +func (ptr *QMediaResource) SetSampleRate(sampleRate int) { + if ptr.Pointer() != nil { + C.QMediaResource_SetSampleRate(C.QtObjectPtr(ptr.Pointer()), C.int(sampleRate)) + } +} + +func (ptr *QMediaResource) SetVideoBitRate(rate int) { + if ptr.Pointer() != nil { + C.QMediaResource_SetVideoBitRate(C.QtObjectPtr(ptr.Pointer()), C.int(rate)) + } +} + +func (ptr *QMediaResource) SetVideoCodec(codec string) { + if ptr.Pointer() != nil { + C.QMediaResource_SetVideoCodec(C.QtObjectPtr(ptr.Pointer()), C.CString(codec)) + } +} + +func (ptr *QMediaResource) Url() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMediaResource_Url(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMediaResource) VideoBitRate() int { + if ptr.Pointer() != nil { + return int(C.QMediaResource_VideoBitRate(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMediaResource) VideoCodec() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMediaResource_VideoCodec(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMediaResource) DestroyQMediaResource() { + if ptr.Pointer() != nil { + C.QMediaResource_DestroyQMediaResource(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/multimedia/qmediaresource.h b/multimedia/qmediaresource.h new file mode 100755 index 00000000..32299b9e --- /dev/null +++ b/multimedia/qmediaresource.h @@ -0,0 +1,33 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QMediaResource_NewQMediaResource(); +QtObjectPtr QMediaResource_NewQMediaResource4(QtObjectPtr other); +QtObjectPtr QMediaResource_NewQMediaResource3(QtObjectPtr request, char* mimeType); +QtObjectPtr QMediaResource_NewQMediaResource2(char* url, char* mimeType); +int QMediaResource_AudioBitRate(QtObjectPtr ptr); +char* QMediaResource_AudioCodec(QtObjectPtr ptr); +int QMediaResource_ChannelCount(QtObjectPtr ptr); +int QMediaResource_IsNull(QtObjectPtr ptr); +char* QMediaResource_Language(QtObjectPtr ptr); +char* QMediaResource_MimeType(QtObjectPtr ptr); +int QMediaResource_SampleRate(QtObjectPtr ptr); +void QMediaResource_SetAudioBitRate(QtObjectPtr ptr, int rate); +void QMediaResource_SetAudioCodec(QtObjectPtr ptr, char* codec); +void QMediaResource_SetChannelCount(QtObjectPtr ptr, int channels); +void QMediaResource_SetLanguage(QtObjectPtr ptr, char* language); +void QMediaResource_SetResolution(QtObjectPtr ptr, QtObjectPtr resolution); +void QMediaResource_SetResolution2(QtObjectPtr ptr, int width, int height); +void QMediaResource_SetSampleRate(QtObjectPtr ptr, int sampleRate); +void QMediaResource_SetVideoBitRate(QtObjectPtr ptr, int rate); +void QMediaResource_SetVideoCodec(QtObjectPtr ptr, char* codec); +char* QMediaResource_Url(QtObjectPtr ptr); +int QMediaResource_VideoBitRate(QtObjectPtr ptr); +char* QMediaResource_VideoCodec(QtObjectPtr ptr); +void QMediaResource_DestroyQMediaResource(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmediaservice.cpp b/multimedia/qmediaservice.cpp new file mode 100755 index 00000000..fd352177 --- /dev/null +++ b/multimedia/qmediaservice.cpp @@ -0,0 +1,25 @@ +#include "qmediaservice.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMediaService: public QMediaService { +public: +}; + +void QMediaService_ReleaseControl(QtObjectPtr ptr, QtObjectPtr control){ + static_cast(ptr)->releaseControl(static_cast(control)); +} + +QtObjectPtr QMediaService_RequestControl(QtObjectPtr ptr, char* interfa){ + return static_cast(ptr)->requestControl(const_cast(interfa)); +} + +void QMediaService_DestroyQMediaService(QtObjectPtr ptr){ + static_cast(ptr)->~QMediaService(); +} + diff --git a/multimedia/qmediaservice.go b/multimedia/qmediaservice.go new file mode 100755 index 00000000..66efa6db --- /dev/null +++ b/multimedia/qmediaservice.go @@ -0,0 +1,58 @@ +package multimedia + +//#include "qmediaservice.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QMediaService struct { + core.QObject +} + +type QMediaServiceITF interface { + core.QObjectITF + QMediaServicePTR() *QMediaService +} + +func PointerFromQMediaService(ptr QMediaServiceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMediaServicePTR().Pointer() + } + return nil +} + +func QMediaServiceFromPointer(ptr unsafe.Pointer) *QMediaService { + var n = new(QMediaService) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMediaService_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMediaService) QMediaServicePTR() *QMediaService { + return ptr +} + +func (ptr *QMediaService) ReleaseControl(control QMediaControlITF) { + if ptr.Pointer() != nil { + C.QMediaService_ReleaseControl(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMediaControl(control))) + } +} + +func (ptr *QMediaService) RequestControl(interfa string) *QMediaControl { + if ptr.Pointer() != nil { + return QMediaControlFromPointer(unsafe.Pointer(C.QMediaService_RequestControl(C.QtObjectPtr(ptr.Pointer()), C.CString(interfa)))) + } + return nil +} + +func (ptr *QMediaService) DestroyQMediaService() { + if ptr.Pointer() != nil { + C.QMediaService_DestroyQMediaService(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qmediaservice.h b/multimedia/qmediaservice.h new file mode 100755 index 00000000..cc2332b7 --- /dev/null +++ b/multimedia/qmediaservice.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QMediaService_ReleaseControl(QtObjectPtr ptr, QtObjectPtr control); +QtObjectPtr QMediaService_RequestControl(QtObjectPtr ptr, char* interfa); +void QMediaService_DestroyQMediaService(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmediaservicecamerainfointerface.cpp b/multimedia/qmediaservicecamerainfointerface.cpp new file mode 100755 index 00000000..f1d71ca9 --- /dev/null +++ b/multimedia/qmediaservicecamerainfointerface.cpp @@ -0,0 +1,26 @@ +#include "qmediaservicecamerainfointerface.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMediaServiceCameraInfoInterface: public QMediaServiceCameraInfoInterface { +public: +}; + +int QMediaServiceCameraInfoInterface_CameraOrientation(QtObjectPtr ptr, QtObjectPtr device){ + return static_cast(ptr)->cameraOrientation(*static_cast(device)); +} + +int QMediaServiceCameraInfoInterface_CameraPosition(QtObjectPtr ptr, QtObjectPtr device){ + return static_cast(ptr)->cameraPosition(*static_cast(device)); +} + +void QMediaServiceCameraInfoInterface_DestroyQMediaServiceCameraInfoInterface(QtObjectPtr ptr){ + static_cast(ptr)->~QMediaServiceCameraInfoInterface(); +} + diff --git a/multimedia/qmediaservicecamerainfointerface.go b/multimedia/qmediaservicecamerainfointerface.go new file mode 100755 index 00000000..dbf80639 --- /dev/null +++ b/multimedia/qmediaservicecamerainfointerface.go @@ -0,0 +1,61 @@ +package multimedia + +//#include "qmediaservicecamerainfointerface.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QMediaServiceCameraInfoInterface struct { + ptr unsafe.Pointer +} + +type QMediaServiceCameraInfoInterfaceITF interface { + QMediaServiceCameraInfoInterfacePTR() *QMediaServiceCameraInfoInterface +} + +func (p *QMediaServiceCameraInfoInterface) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMediaServiceCameraInfoInterface) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMediaServiceCameraInfoInterface(ptr QMediaServiceCameraInfoInterfaceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMediaServiceCameraInfoInterfacePTR().Pointer() + } + return nil +} + +func QMediaServiceCameraInfoInterfaceFromPointer(ptr unsafe.Pointer) *QMediaServiceCameraInfoInterface { + var n = new(QMediaServiceCameraInfoInterface) + n.SetPointer(ptr) + return n +} + +func (ptr *QMediaServiceCameraInfoInterface) QMediaServiceCameraInfoInterfacePTR() *QMediaServiceCameraInfoInterface { + return ptr +} + +func (ptr *QMediaServiceCameraInfoInterface) CameraOrientation(device core.QByteArrayITF) int { + if ptr.Pointer() != nil { + return int(C.QMediaServiceCameraInfoInterface_CameraOrientation(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(device)))) + } + return 0 +} + +func (ptr *QMediaServiceCameraInfoInterface) CameraPosition(device core.QByteArrayITF) QCamera__Position { + if ptr.Pointer() != nil { + return QCamera__Position(C.QMediaServiceCameraInfoInterface_CameraPosition(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(device)))) + } + return 0 +} + +func (ptr *QMediaServiceCameraInfoInterface) DestroyQMediaServiceCameraInfoInterface() { + if ptr.Pointer() != nil { + C.QMediaServiceCameraInfoInterface_DestroyQMediaServiceCameraInfoInterface(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/multimedia/qmediaservicecamerainfointerface.h b/multimedia/qmediaservicecamerainfointerface.h new file mode 100755 index 00000000..173a5a0b --- /dev/null +++ b/multimedia/qmediaservicecamerainfointerface.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QMediaServiceCameraInfoInterface_CameraOrientation(QtObjectPtr ptr, QtObjectPtr device); +int QMediaServiceCameraInfoInterface_CameraPosition(QtObjectPtr ptr, QtObjectPtr device); +void QMediaServiceCameraInfoInterface_DestroyQMediaServiceCameraInfoInterface(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmediaservicedefaultdeviceinterface.cpp b/multimedia/qmediaservicedefaultdeviceinterface.cpp new file mode 100755 index 00000000..5e3e33b8 --- /dev/null +++ b/multimedia/qmediaservicedefaultdeviceinterface.cpp @@ -0,0 +1,17 @@ +#include "qmediaservicedefaultdeviceinterface.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMediaServiceDefaultDeviceInterface: public QMediaServiceDefaultDeviceInterface { +public: +}; + +void QMediaServiceDefaultDeviceInterface_DestroyQMediaServiceDefaultDeviceInterface(QtObjectPtr ptr){ + static_cast(ptr)->~QMediaServiceDefaultDeviceInterface(); +} + diff --git a/multimedia/qmediaservicedefaultdeviceinterface.go b/multimedia/qmediaservicedefaultdeviceinterface.go new file mode 100755 index 00000000..bfe21e8d --- /dev/null +++ b/multimedia/qmediaservicedefaultdeviceinterface.go @@ -0,0 +1,46 @@ +package multimedia + +//#include "qmediaservicedefaultdeviceinterface.h" +import "C" +import ( + "unsafe" +) + +type QMediaServiceDefaultDeviceInterface struct { + ptr unsafe.Pointer +} + +type QMediaServiceDefaultDeviceInterfaceITF interface { + QMediaServiceDefaultDeviceInterfacePTR() *QMediaServiceDefaultDeviceInterface +} + +func (p *QMediaServiceDefaultDeviceInterface) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMediaServiceDefaultDeviceInterface) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMediaServiceDefaultDeviceInterface(ptr QMediaServiceDefaultDeviceInterfaceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMediaServiceDefaultDeviceInterfacePTR().Pointer() + } + return nil +} + +func QMediaServiceDefaultDeviceInterfaceFromPointer(ptr unsafe.Pointer) *QMediaServiceDefaultDeviceInterface { + var n = new(QMediaServiceDefaultDeviceInterface) + n.SetPointer(ptr) + return n +} + +func (ptr *QMediaServiceDefaultDeviceInterface) QMediaServiceDefaultDeviceInterfacePTR() *QMediaServiceDefaultDeviceInterface { + return ptr +} + +func (ptr *QMediaServiceDefaultDeviceInterface) DestroyQMediaServiceDefaultDeviceInterface() { + if ptr.Pointer() != nil { + C.QMediaServiceDefaultDeviceInterface_DestroyQMediaServiceDefaultDeviceInterface(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/multimedia/qmediaservicedefaultdeviceinterface.h b/multimedia/qmediaservicedefaultdeviceinterface.h new file mode 100755 index 00000000..6f39fdff --- /dev/null +++ b/multimedia/qmediaservicedefaultdeviceinterface.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QMediaServiceDefaultDeviceInterface_DestroyQMediaServiceDefaultDeviceInterface(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmediaservicefeaturesinterface.cpp b/multimedia/qmediaservicefeaturesinterface.cpp new file mode 100755 index 00000000..e10d8729 --- /dev/null +++ b/multimedia/qmediaservicefeaturesinterface.cpp @@ -0,0 +1,17 @@ +#include "qmediaservicefeaturesinterface.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMediaServiceFeaturesInterface: public QMediaServiceFeaturesInterface { +public: +}; + +void QMediaServiceFeaturesInterface_DestroyQMediaServiceFeaturesInterface(QtObjectPtr ptr){ + static_cast(ptr)->~QMediaServiceFeaturesInterface(); +} + diff --git a/multimedia/qmediaservicefeaturesinterface.go b/multimedia/qmediaservicefeaturesinterface.go new file mode 100755 index 00000000..9fcb35d0 --- /dev/null +++ b/multimedia/qmediaservicefeaturesinterface.go @@ -0,0 +1,46 @@ +package multimedia + +//#include "qmediaservicefeaturesinterface.h" +import "C" +import ( + "unsafe" +) + +type QMediaServiceFeaturesInterface struct { + ptr unsafe.Pointer +} + +type QMediaServiceFeaturesInterfaceITF interface { + QMediaServiceFeaturesInterfacePTR() *QMediaServiceFeaturesInterface +} + +func (p *QMediaServiceFeaturesInterface) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMediaServiceFeaturesInterface) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMediaServiceFeaturesInterface(ptr QMediaServiceFeaturesInterfaceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMediaServiceFeaturesInterfacePTR().Pointer() + } + return nil +} + +func QMediaServiceFeaturesInterfaceFromPointer(ptr unsafe.Pointer) *QMediaServiceFeaturesInterface { + var n = new(QMediaServiceFeaturesInterface) + n.SetPointer(ptr) + return n +} + +func (ptr *QMediaServiceFeaturesInterface) QMediaServiceFeaturesInterfacePTR() *QMediaServiceFeaturesInterface { + return ptr +} + +func (ptr *QMediaServiceFeaturesInterface) DestroyQMediaServiceFeaturesInterface() { + if ptr.Pointer() != nil { + C.QMediaServiceFeaturesInterface_DestroyQMediaServiceFeaturesInterface(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/multimedia/qmediaservicefeaturesinterface.h b/multimedia/qmediaservicefeaturesinterface.h new file mode 100755 index 00000000..4370f8fc --- /dev/null +++ b/multimedia/qmediaservicefeaturesinterface.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QMediaServiceFeaturesInterface_DestroyQMediaServiceFeaturesInterface(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmediaserviceproviderplugin.cpp b/multimedia/qmediaserviceproviderplugin.cpp new file mode 100755 index 00000000..e7b9a26d --- /dev/null +++ b/multimedia/qmediaserviceproviderplugin.cpp @@ -0,0 +1,21 @@ +#include "qmediaserviceproviderplugin.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMediaServiceProviderPlugin: public QMediaServiceProviderPlugin { +public: +}; + +QtObjectPtr QMediaServiceProviderPlugin_Create(QtObjectPtr ptr, char* key){ + return static_cast(ptr)->create(QString(key)); +} + +void QMediaServiceProviderPlugin_Release(QtObjectPtr ptr, QtObjectPtr service){ + static_cast(ptr)->release(static_cast(service)); +} + diff --git a/multimedia/qmediaserviceproviderplugin.go b/multimedia/qmediaserviceproviderplugin.go new file mode 100755 index 00000000..f0f49d22 --- /dev/null +++ b/multimedia/qmediaserviceproviderplugin.go @@ -0,0 +1,51 @@ +package multimedia + +//#include "qmediaserviceproviderplugin.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QMediaServiceProviderPlugin struct { + core.QObject +} + +type QMediaServiceProviderPluginITF interface { + core.QObjectITF + QMediaServiceProviderPluginPTR() *QMediaServiceProviderPlugin +} + +func PointerFromQMediaServiceProviderPlugin(ptr QMediaServiceProviderPluginITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMediaServiceProviderPluginPTR().Pointer() + } + return nil +} + +func QMediaServiceProviderPluginFromPointer(ptr unsafe.Pointer) *QMediaServiceProviderPlugin { + var n = new(QMediaServiceProviderPlugin) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMediaServiceProviderPlugin_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMediaServiceProviderPlugin) QMediaServiceProviderPluginPTR() *QMediaServiceProviderPlugin { + return ptr +} + +func (ptr *QMediaServiceProviderPlugin) Create(key string) *QMediaService { + if ptr.Pointer() != nil { + return QMediaServiceFromPointer(unsafe.Pointer(C.QMediaServiceProviderPlugin_Create(C.QtObjectPtr(ptr.Pointer()), C.CString(key)))) + } + return nil +} + +func (ptr *QMediaServiceProviderPlugin) Release(service QMediaServiceITF) { + if ptr.Pointer() != nil { + C.QMediaServiceProviderPlugin_Release(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMediaService(service))) + } +} diff --git a/multimedia/qmediaserviceproviderplugin.h b/multimedia/qmediaserviceproviderplugin.h new file mode 100755 index 00000000..77da35bf --- /dev/null +++ b/multimedia/qmediaserviceproviderplugin.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QMediaServiceProviderPlugin_Create(QtObjectPtr ptr, char* key); +void QMediaServiceProviderPlugin_Release(QtObjectPtr ptr, QtObjectPtr service); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmediaservicesupporteddevicesinterface.cpp b/multimedia/qmediaservicesupporteddevicesinterface.cpp new file mode 100755 index 00000000..25574bc6 --- /dev/null +++ b/multimedia/qmediaservicesupporteddevicesinterface.cpp @@ -0,0 +1,22 @@ +#include "qmediaservicesupporteddevicesinterface.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMediaServiceSupportedDevicesInterface: public QMediaServiceSupportedDevicesInterface { +public: +}; + +char* QMediaServiceSupportedDevicesInterface_DeviceDescription(QtObjectPtr ptr, QtObjectPtr service, QtObjectPtr device){ + return static_cast(ptr)->deviceDescription(*static_cast(service), *static_cast(device)).toUtf8().data(); +} + +void QMediaServiceSupportedDevicesInterface_DestroyQMediaServiceSupportedDevicesInterface(QtObjectPtr ptr){ + static_cast(ptr)->~QMediaServiceSupportedDevicesInterface(); +} + diff --git a/multimedia/qmediaservicesupporteddevicesinterface.go b/multimedia/qmediaservicesupporteddevicesinterface.go new file mode 100755 index 00000000..3211bed1 --- /dev/null +++ b/multimedia/qmediaservicesupporteddevicesinterface.go @@ -0,0 +1,54 @@ +package multimedia + +//#include "qmediaservicesupporteddevicesinterface.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QMediaServiceSupportedDevicesInterface struct { + ptr unsafe.Pointer +} + +type QMediaServiceSupportedDevicesInterfaceITF interface { + QMediaServiceSupportedDevicesInterfacePTR() *QMediaServiceSupportedDevicesInterface +} + +func (p *QMediaServiceSupportedDevicesInterface) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMediaServiceSupportedDevicesInterface) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMediaServiceSupportedDevicesInterface(ptr QMediaServiceSupportedDevicesInterfaceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMediaServiceSupportedDevicesInterfacePTR().Pointer() + } + return nil +} + +func QMediaServiceSupportedDevicesInterfaceFromPointer(ptr unsafe.Pointer) *QMediaServiceSupportedDevicesInterface { + var n = new(QMediaServiceSupportedDevicesInterface) + n.SetPointer(ptr) + return n +} + +func (ptr *QMediaServiceSupportedDevicesInterface) QMediaServiceSupportedDevicesInterfacePTR() *QMediaServiceSupportedDevicesInterface { + return ptr +} + +func (ptr *QMediaServiceSupportedDevicesInterface) DeviceDescription(service core.QByteArrayITF, device core.QByteArrayITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QMediaServiceSupportedDevicesInterface_DeviceDescription(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(service)), C.QtObjectPtr(core.PointerFromQByteArray(device)))) + } + return "" +} + +func (ptr *QMediaServiceSupportedDevicesInterface) DestroyQMediaServiceSupportedDevicesInterface() { + if ptr.Pointer() != nil { + C.QMediaServiceSupportedDevicesInterface_DestroyQMediaServiceSupportedDevicesInterface(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/multimedia/qmediaservicesupporteddevicesinterface.h b/multimedia/qmediaservicesupporteddevicesinterface.h new file mode 100755 index 00000000..e6d7d862 --- /dev/null +++ b/multimedia/qmediaservicesupporteddevicesinterface.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QMediaServiceSupportedDevicesInterface_DeviceDescription(QtObjectPtr ptr, QtObjectPtr service, QtObjectPtr device); +void QMediaServiceSupportedDevicesInterface_DestroyQMediaServiceSupportedDevicesInterface(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmediaservicesupportedformatsinterface.cpp b/multimedia/qmediaservicesupportedformatsinterface.cpp new file mode 100755 index 00000000..de378ea6 --- /dev/null +++ b/multimedia/qmediaservicesupportedformatsinterface.cpp @@ -0,0 +1,21 @@ +#include "qmediaservicesupportedformatsinterface.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMediaServiceSupportedFormatsInterface: public QMediaServiceSupportedFormatsInterface { +public: +}; + +char* QMediaServiceSupportedFormatsInterface_SupportedMimeTypes(QtObjectPtr ptr){ + return static_cast(ptr)->supportedMimeTypes().join("|").toUtf8().data(); +} + +void QMediaServiceSupportedFormatsInterface_DestroyQMediaServiceSupportedFormatsInterface(QtObjectPtr ptr){ + static_cast(ptr)->~QMediaServiceSupportedFormatsInterface(); +} + diff --git a/multimedia/qmediaservicesupportedformatsinterface.go b/multimedia/qmediaservicesupportedformatsinterface.go new file mode 100755 index 00000000..64c718cf --- /dev/null +++ b/multimedia/qmediaservicesupportedformatsinterface.go @@ -0,0 +1,54 @@ +package multimedia + +//#include "qmediaservicesupportedformatsinterface.h" +import "C" +import ( + "strings" + "unsafe" +) + +type QMediaServiceSupportedFormatsInterface struct { + ptr unsafe.Pointer +} + +type QMediaServiceSupportedFormatsInterfaceITF interface { + QMediaServiceSupportedFormatsInterfacePTR() *QMediaServiceSupportedFormatsInterface +} + +func (p *QMediaServiceSupportedFormatsInterface) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMediaServiceSupportedFormatsInterface) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMediaServiceSupportedFormatsInterface(ptr QMediaServiceSupportedFormatsInterfaceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMediaServiceSupportedFormatsInterfacePTR().Pointer() + } + return nil +} + +func QMediaServiceSupportedFormatsInterfaceFromPointer(ptr unsafe.Pointer) *QMediaServiceSupportedFormatsInterface { + var n = new(QMediaServiceSupportedFormatsInterface) + n.SetPointer(ptr) + return n +} + +func (ptr *QMediaServiceSupportedFormatsInterface) QMediaServiceSupportedFormatsInterfacePTR() *QMediaServiceSupportedFormatsInterface { + return ptr +} + +func (ptr *QMediaServiceSupportedFormatsInterface) SupportedMimeTypes() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QMediaServiceSupportedFormatsInterface_SupportedMimeTypes(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QMediaServiceSupportedFormatsInterface) DestroyQMediaServiceSupportedFormatsInterface() { + if ptr.Pointer() != nil { + C.QMediaServiceSupportedFormatsInterface_DestroyQMediaServiceSupportedFormatsInterface(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/multimedia/qmediaservicesupportedformatsinterface.h b/multimedia/qmediaservicesupportedformatsinterface.h new file mode 100755 index 00000000..1755ee37 --- /dev/null +++ b/multimedia/qmediaservicesupportedformatsinterface.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QMediaServiceSupportedFormatsInterface_SupportedMimeTypes(QtObjectPtr ptr); +void QMediaServiceSupportedFormatsInterface_DestroyQMediaServiceSupportedFormatsInterface(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmediastreamscontrol.cpp b/multimedia/qmediastreamscontrol.cpp new file mode 100755 index 00000000..203bce7c --- /dev/null +++ b/multimedia/qmediastreamscontrol.cpp @@ -0,0 +1,55 @@ +#include "qmediastreamscontrol.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMediaStreamsControl: public QMediaStreamsControl { +public: +void Signal_ActiveStreamsChanged(){callbackQMediaStreamsControlActiveStreamsChanged(this->objectName().toUtf8().data());}; +void Signal_StreamsChanged(){callbackQMediaStreamsControlStreamsChanged(this->objectName().toUtf8().data());}; +}; + +void QMediaStreamsControl_ConnectActiveStreamsChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaStreamsControl::activeStreamsChanged), static_cast(ptr), static_cast(&MyQMediaStreamsControl::Signal_ActiveStreamsChanged));; +} + +void QMediaStreamsControl_DisconnectActiveStreamsChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaStreamsControl::activeStreamsChanged), static_cast(ptr), static_cast(&MyQMediaStreamsControl::Signal_ActiveStreamsChanged));; +} + +int QMediaStreamsControl_IsActive(QtObjectPtr ptr, int stream){ + return static_cast(ptr)->isActive(stream); +} + +char* QMediaStreamsControl_MetaData(QtObjectPtr ptr, int stream, char* key){ + return static_cast(ptr)->metaData(stream, QString(key)).toString().toUtf8().data(); +} + +void QMediaStreamsControl_SetActive(QtObjectPtr ptr, int stream, int state){ + static_cast(ptr)->setActive(stream, state != 0); +} + +int QMediaStreamsControl_StreamCount(QtObjectPtr ptr){ + return static_cast(ptr)->streamCount(); +} + +int QMediaStreamsControl_StreamType(QtObjectPtr ptr, int stream){ + return static_cast(ptr)->streamType(stream); +} + +void QMediaStreamsControl_ConnectStreamsChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaStreamsControl::streamsChanged), static_cast(ptr), static_cast(&MyQMediaStreamsControl::Signal_StreamsChanged));; +} + +void QMediaStreamsControl_DisconnectStreamsChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaStreamsControl::streamsChanged), static_cast(ptr), static_cast(&MyQMediaStreamsControl::Signal_StreamsChanged));; +} + +void QMediaStreamsControl_DestroyQMediaStreamsControl(QtObjectPtr ptr){ + static_cast(ptr)->~QMediaStreamsControl(); +} + diff --git a/multimedia/qmediastreamscontrol.go b/multimedia/qmediastreamscontrol.go new file mode 100755 index 00000000..0c8a83a4 --- /dev/null +++ b/multimedia/qmediastreamscontrol.go @@ -0,0 +1,127 @@ +package multimedia + +//#include "qmediastreamscontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QMediaStreamsControl struct { + QMediaControl +} + +type QMediaStreamsControlITF interface { + QMediaControlITF + QMediaStreamsControlPTR() *QMediaStreamsControl +} + +func PointerFromQMediaStreamsControl(ptr QMediaStreamsControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMediaStreamsControlPTR().Pointer() + } + return nil +} + +func QMediaStreamsControlFromPointer(ptr unsafe.Pointer) *QMediaStreamsControl { + var n = new(QMediaStreamsControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMediaStreamsControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMediaStreamsControl) QMediaStreamsControlPTR() *QMediaStreamsControl { + return ptr +} + +//QMediaStreamsControl::StreamType +type QMediaStreamsControl__StreamType int + +var ( + QMediaStreamsControl__UnknownStream = QMediaStreamsControl__StreamType(0) + QMediaStreamsControl__VideoStream = QMediaStreamsControl__StreamType(1) + QMediaStreamsControl__AudioStream = QMediaStreamsControl__StreamType(2) + QMediaStreamsControl__SubPictureStream = QMediaStreamsControl__StreamType(3) + QMediaStreamsControl__DataStream = QMediaStreamsControl__StreamType(4) +) + +func (ptr *QMediaStreamsControl) ConnectActiveStreamsChanged(f func()) { + if ptr.Pointer() != nil { + C.QMediaStreamsControl_ConnectActiveStreamsChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "activeStreamsChanged", f) + } +} + +func (ptr *QMediaStreamsControl) DisconnectActiveStreamsChanged() { + if ptr.Pointer() != nil { + C.QMediaStreamsControl_DisconnectActiveStreamsChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "activeStreamsChanged") + } +} + +//export callbackQMediaStreamsControlActiveStreamsChanged +func callbackQMediaStreamsControlActiveStreamsChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "activeStreamsChanged").(func())() +} + +func (ptr *QMediaStreamsControl) IsActive(stream int) bool { + if ptr.Pointer() != nil { + return C.QMediaStreamsControl_IsActive(C.QtObjectPtr(ptr.Pointer()), C.int(stream)) != 0 + } + return false +} + +func (ptr *QMediaStreamsControl) MetaData(stream int, key string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QMediaStreamsControl_MetaData(C.QtObjectPtr(ptr.Pointer()), C.int(stream), C.CString(key))) + } + return "" +} + +func (ptr *QMediaStreamsControl) SetActive(stream int, state bool) { + if ptr.Pointer() != nil { + C.QMediaStreamsControl_SetActive(C.QtObjectPtr(ptr.Pointer()), C.int(stream), C.int(qt.GoBoolToInt(state))) + } +} + +func (ptr *QMediaStreamsControl) StreamCount() int { + if ptr.Pointer() != nil { + return int(C.QMediaStreamsControl_StreamCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMediaStreamsControl) StreamType(stream int) QMediaStreamsControl__StreamType { + if ptr.Pointer() != nil { + return QMediaStreamsControl__StreamType(C.QMediaStreamsControl_StreamType(C.QtObjectPtr(ptr.Pointer()), C.int(stream))) + } + return 0 +} + +func (ptr *QMediaStreamsControl) ConnectStreamsChanged(f func()) { + if ptr.Pointer() != nil { + C.QMediaStreamsControl_ConnectStreamsChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "streamsChanged", f) + } +} + +func (ptr *QMediaStreamsControl) DisconnectStreamsChanged() { + if ptr.Pointer() != nil { + C.QMediaStreamsControl_DisconnectStreamsChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "streamsChanged") + } +} + +//export callbackQMediaStreamsControlStreamsChanged +func callbackQMediaStreamsControlStreamsChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "streamsChanged").(func())() +} + +func (ptr *QMediaStreamsControl) DestroyQMediaStreamsControl() { + if ptr.Pointer() != nil { + C.QMediaStreamsControl_DestroyQMediaStreamsControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qmediastreamscontrol.h b/multimedia/qmediastreamscontrol.h new file mode 100755 index 00000000..a3ad0164 --- /dev/null +++ b/multimedia/qmediastreamscontrol.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QMediaStreamsControl_ConnectActiveStreamsChanged(QtObjectPtr ptr); +void QMediaStreamsControl_DisconnectActiveStreamsChanged(QtObjectPtr ptr); +int QMediaStreamsControl_IsActive(QtObjectPtr ptr, int stream); +char* QMediaStreamsControl_MetaData(QtObjectPtr ptr, int stream, char* key); +void QMediaStreamsControl_SetActive(QtObjectPtr ptr, int stream, int state); +int QMediaStreamsControl_StreamCount(QtObjectPtr ptr); +int QMediaStreamsControl_StreamType(QtObjectPtr ptr, int stream); +void QMediaStreamsControl_ConnectStreamsChanged(QtObjectPtr ptr); +void QMediaStreamsControl_DisconnectStreamsChanged(QtObjectPtr ptr); +void QMediaStreamsControl_DestroyQMediaStreamsControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmediatimeinterval.cpp b/multimedia/qmediatimeinterval.cpp new file mode 100755 index 00000000..ca0b9940 --- /dev/null +++ b/multimedia/qmediatimeinterval.cpp @@ -0,0 +1,24 @@ +#include "qmediatimeinterval.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMediaTimeInterval: public QMediaTimeInterval { +public: +}; + +QtObjectPtr QMediaTimeInterval_NewQMediaTimeInterval(){ + return new QMediaTimeInterval(); +} + +QtObjectPtr QMediaTimeInterval_NewQMediaTimeInterval3(QtObjectPtr other){ + return new QMediaTimeInterval(*static_cast(other)); +} + +int QMediaTimeInterval_IsNormal(QtObjectPtr ptr){ + return static_cast(ptr)->isNormal(); +} + diff --git a/multimedia/qmediatimeinterval.go b/multimedia/qmediatimeinterval.go new file mode 100755 index 00000000..5c0734e8 --- /dev/null +++ b/multimedia/qmediatimeinterval.go @@ -0,0 +1,55 @@ +package multimedia + +//#include "qmediatimeinterval.h" +import "C" +import ( + "unsafe" +) + +type QMediaTimeInterval struct { + ptr unsafe.Pointer +} + +type QMediaTimeIntervalITF interface { + QMediaTimeIntervalPTR() *QMediaTimeInterval +} + +func (p *QMediaTimeInterval) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMediaTimeInterval) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMediaTimeInterval(ptr QMediaTimeIntervalITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMediaTimeIntervalPTR().Pointer() + } + return nil +} + +func QMediaTimeIntervalFromPointer(ptr unsafe.Pointer) *QMediaTimeInterval { + var n = new(QMediaTimeInterval) + n.SetPointer(ptr) + return n +} + +func (ptr *QMediaTimeInterval) QMediaTimeIntervalPTR() *QMediaTimeInterval { + return ptr +} + +func NewQMediaTimeInterval() *QMediaTimeInterval { + return QMediaTimeIntervalFromPointer(unsafe.Pointer(C.QMediaTimeInterval_NewQMediaTimeInterval())) +} + +func NewQMediaTimeInterval3(other QMediaTimeIntervalITF) *QMediaTimeInterval { + return QMediaTimeIntervalFromPointer(unsafe.Pointer(C.QMediaTimeInterval_NewQMediaTimeInterval3(C.QtObjectPtr(PointerFromQMediaTimeInterval(other))))) +} + +func (ptr *QMediaTimeInterval) IsNormal() bool { + if ptr.Pointer() != nil { + return C.QMediaTimeInterval_IsNormal(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} diff --git a/multimedia/qmediatimeinterval.h b/multimedia/qmediatimeinterval.h new file mode 100755 index 00000000..6b602cd7 --- /dev/null +++ b/multimedia/qmediatimeinterval.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QMediaTimeInterval_NewQMediaTimeInterval(); +QtObjectPtr QMediaTimeInterval_NewQMediaTimeInterval3(QtObjectPtr other); +int QMediaTimeInterval_IsNormal(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmediatimerange.cpp b/multimedia/qmediatimerange.cpp new file mode 100755 index 00000000..ed491e33 --- /dev/null +++ b/multimedia/qmediatimerange.cpp @@ -0,0 +1,57 @@ +#include "qmediatimerange.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMediaTimeRange: public QMediaTimeRange { +public: +}; + +QtObjectPtr QMediaTimeRange_NewQMediaTimeRange(){ + return new QMediaTimeRange(); +} + +QtObjectPtr QMediaTimeRange_NewQMediaTimeRange3(QtObjectPtr interval){ + return new QMediaTimeRange(*static_cast(interval)); +} + +QtObjectPtr QMediaTimeRange_NewQMediaTimeRange4(QtObjectPtr ran){ + return new QMediaTimeRange(*static_cast(ran)); +} + +void QMediaTimeRange_AddInterval(QtObjectPtr ptr, QtObjectPtr interval){ + static_cast(ptr)->addInterval(*static_cast(interval)); +} + +void QMediaTimeRange_AddTimeRange(QtObjectPtr ptr, QtObjectPtr ran){ + static_cast(ptr)->addTimeRange(*static_cast(ran)); +} + +void QMediaTimeRange_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +int QMediaTimeRange_IsContinuous(QtObjectPtr ptr){ + return static_cast(ptr)->isContinuous(); +} + +int QMediaTimeRange_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +void QMediaTimeRange_RemoveInterval(QtObjectPtr ptr, QtObjectPtr interval){ + static_cast(ptr)->removeInterval(*static_cast(interval)); +} + +void QMediaTimeRange_RemoveTimeRange(QtObjectPtr ptr, QtObjectPtr ran){ + static_cast(ptr)->removeTimeRange(*static_cast(ran)); +} + +void QMediaTimeRange_DestroyQMediaTimeRange(QtObjectPtr ptr){ + static_cast(ptr)->~QMediaTimeRange(); +} + diff --git a/multimedia/qmediatimerange.go b/multimedia/qmediatimerange.go new file mode 100755 index 00000000..2d4d074d --- /dev/null +++ b/multimedia/qmediatimerange.go @@ -0,0 +1,102 @@ +package multimedia + +//#include "qmediatimerange.h" +import "C" +import ( + "unsafe" +) + +type QMediaTimeRange struct { + ptr unsafe.Pointer +} + +type QMediaTimeRangeITF interface { + QMediaTimeRangePTR() *QMediaTimeRange +} + +func (p *QMediaTimeRange) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QMediaTimeRange) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQMediaTimeRange(ptr QMediaTimeRangeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMediaTimeRangePTR().Pointer() + } + return nil +} + +func QMediaTimeRangeFromPointer(ptr unsafe.Pointer) *QMediaTimeRange { + var n = new(QMediaTimeRange) + n.SetPointer(ptr) + return n +} + +func (ptr *QMediaTimeRange) QMediaTimeRangePTR() *QMediaTimeRange { + return ptr +} + +func NewQMediaTimeRange() *QMediaTimeRange { + return QMediaTimeRangeFromPointer(unsafe.Pointer(C.QMediaTimeRange_NewQMediaTimeRange())) +} + +func NewQMediaTimeRange3(interval QMediaTimeIntervalITF) *QMediaTimeRange { + return QMediaTimeRangeFromPointer(unsafe.Pointer(C.QMediaTimeRange_NewQMediaTimeRange3(C.QtObjectPtr(PointerFromQMediaTimeInterval(interval))))) +} + +func NewQMediaTimeRange4(ran QMediaTimeRangeITF) *QMediaTimeRange { + return QMediaTimeRangeFromPointer(unsafe.Pointer(C.QMediaTimeRange_NewQMediaTimeRange4(C.QtObjectPtr(PointerFromQMediaTimeRange(ran))))) +} + +func (ptr *QMediaTimeRange) AddInterval(interval QMediaTimeIntervalITF) { + if ptr.Pointer() != nil { + C.QMediaTimeRange_AddInterval(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMediaTimeInterval(interval))) + } +} + +func (ptr *QMediaTimeRange) AddTimeRange(ran QMediaTimeRangeITF) { + if ptr.Pointer() != nil { + C.QMediaTimeRange_AddTimeRange(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMediaTimeRange(ran))) + } +} + +func (ptr *QMediaTimeRange) Clear() { + if ptr.Pointer() != nil { + C.QMediaTimeRange_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMediaTimeRange) IsContinuous() bool { + if ptr.Pointer() != nil { + return C.QMediaTimeRange_IsContinuous(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMediaTimeRange) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QMediaTimeRange_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMediaTimeRange) RemoveInterval(interval QMediaTimeIntervalITF) { + if ptr.Pointer() != nil { + C.QMediaTimeRange_RemoveInterval(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMediaTimeInterval(interval))) + } +} + +func (ptr *QMediaTimeRange) RemoveTimeRange(ran QMediaTimeRangeITF) { + if ptr.Pointer() != nil { + C.QMediaTimeRange_RemoveTimeRange(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMediaTimeRange(ran))) + } +} + +func (ptr *QMediaTimeRange) DestroyQMediaTimeRange() { + if ptr.Pointer() != nil { + C.QMediaTimeRange_DestroyQMediaTimeRange(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/multimedia/qmediatimerange.h b/multimedia/qmediatimerange.h new file mode 100755 index 00000000..2ae78c20 --- /dev/null +++ b/multimedia/qmediatimerange.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QMediaTimeRange_NewQMediaTimeRange(); +QtObjectPtr QMediaTimeRange_NewQMediaTimeRange3(QtObjectPtr interval); +QtObjectPtr QMediaTimeRange_NewQMediaTimeRange4(QtObjectPtr ran); +void QMediaTimeRange_AddInterval(QtObjectPtr ptr, QtObjectPtr interval); +void QMediaTimeRange_AddTimeRange(QtObjectPtr ptr, QtObjectPtr ran); +void QMediaTimeRange_Clear(QtObjectPtr ptr); +int QMediaTimeRange_IsContinuous(QtObjectPtr ptr); +int QMediaTimeRange_IsEmpty(QtObjectPtr ptr); +void QMediaTimeRange_RemoveInterval(QtObjectPtr ptr, QtObjectPtr interval); +void QMediaTimeRange_RemoveTimeRange(QtObjectPtr ptr, QtObjectPtr ran); +void QMediaTimeRange_DestroyQMediaTimeRange(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmediavideoprobecontrol.cpp b/multimedia/qmediavideoprobecontrol.cpp new file mode 100755 index 00000000..86f241c7 --- /dev/null +++ b/multimedia/qmediavideoprobecontrol.cpp @@ -0,0 +1,26 @@ +#include "qmediavideoprobecontrol.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMediaVideoProbeControl: public QMediaVideoProbeControl { +public: +void Signal_Flush(){callbackQMediaVideoProbeControlFlush(this->objectName().toUtf8().data());}; +}; + +void QMediaVideoProbeControl_ConnectFlush(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMediaVideoProbeControl::flush), static_cast(ptr), static_cast(&MyQMediaVideoProbeControl::Signal_Flush));; +} + +void QMediaVideoProbeControl_DisconnectFlush(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMediaVideoProbeControl::flush), static_cast(ptr), static_cast(&MyQMediaVideoProbeControl::Signal_Flush));; +} + +void QMediaVideoProbeControl_DestroyQMediaVideoProbeControl(QtObjectPtr ptr){ + static_cast(ptr)->~QMediaVideoProbeControl(); +} + diff --git a/multimedia/qmediavideoprobecontrol.go b/multimedia/qmediavideoprobecontrol.go new file mode 100755 index 00000000..4f80d0e6 --- /dev/null +++ b/multimedia/qmediavideoprobecontrol.go @@ -0,0 +1,63 @@ +package multimedia + +//#include "qmediavideoprobecontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QMediaVideoProbeControl struct { + QMediaControl +} + +type QMediaVideoProbeControlITF interface { + QMediaControlITF + QMediaVideoProbeControlPTR() *QMediaVideoProbeControl +} + +func PointerFromQMediaVideoProbeControl(ptr QMediaVideoProbeControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMediaVideoProbeControlPTR().Pointer() + } + return nil +} + +func QMediaVideoProbeControlFromPointer(ptr unsafe.Pointer) *QMediaVideoProbeControl { + var n = new(QMediaVideoProbeControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMediaVideoProbeControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMediaVideoProbeControl) QMediaVideoProbeControlPTR() *QMediaVideoProbeControl { + return ptr +} + +func (ptr *QMediaVideoProbeControl) ConnectFlush(f func()) { + if ptr.Pointer() != nil { + C.QMediaVideoProbeControl_ConnectFlush(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "flush", f) + } +} + +func (ptr *QMediaVideoProbeControl) DisconnectFlush() { + if ptr.Pointer() != nil { + C.QMediaVideoProbeControl_DisconnectFlush(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "flush") + } +} + +//export callbackQMediaVideoProbeControlFlush +func callbackQMediaVideoProbeControlFlush(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "flush").(func())() +} + +func (ptr *QMediaVideoProbeControl) DestroyQMediaVideoProbeControl() { + if ptr.Pointer() != nil { + C.QMediaVideoProbeControl_DestroyQMediaVideoProbeControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qmediavideoprobecontrol.h b/multimedia/qmediavideoprobecontrol.h new file mode 100755 index 00000000..0f5a5149 --- /dev/null +++ b/multimedia/qmediavideoprobecontrol.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QMediaVideoProbeControl_ConnectFlush(QtObjectPtr ptr); +void QMediaVideoProbeControl_DisconnectFlush(QtObjectPtr ptr); +void QMediaVideoProbeControl_DestroyQMediaVideoProbeControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmetadatareadercontrol.cpp b/multimedia/qmetadatareadercontrol.cpp new file mode 100755 index 00000000..baafb8c0 --- /dev/null +++ b/multimedia/qmetadatareadercontrol.cpp @@ -0,0 +1,47 @@ +#include "qmetadatareadercontrol.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMetaDataReaderControl: public QMetaDataReaderControl { +public: +void Signal_MetaDataAvailableChanged(bool available){callbackQMetaDataReaderControlMetaDataAvailableChanged(this->objectName().toUtf8().data(), available);}; +void Signal_MetaDataChanged(){callbackQMetaDataReaderControlMetaDataChanged(this->objectName().toUtf8().data());}; +}; + +char* QMetaDataReaderControl_AvailableMetaData(QtObjectPtr ptr){ + return static_cast(ptr)->availableMetaData().join("|").toUtf8().data(); +} + +int QMetaDataReaderControl_IsMetaDataAvailable(QtObjectPtr ptr){ + return static_cast(ptr)->isMetaDataAvailable(); +} + +char* QMetaDataReaderControl_MetaData(QtObjectPtr ptr, char* key){ + return static_cast(ptr)->metaData(QString(key)).toString().toUtf8().data(); +} + +void QMetaDataReaderControl_ConnectMetaDataAvailableChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMetaDataReaderControl::metaDataAvailableChanged), static_cast(ptr), static_cast(&MyQMetaDataReaderControl::Signal_MetaDataAvailableChanged));; +} + +void QMetaDataReaderControl_DisconnectMetaDataAvailableChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMetaDataReaderControl::metaDataAvailableChanged), static_cast(ptr), static_cast(&MyQMetaDataReaderControl::Signal_MetaDataAvailableChanged));; +} + +void QMetaDataReaderControl_ConnectMetaDataChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMetaDataReaderControl::metaDataChanged), static_cast(ptr), static_cast(&MyQMetaDataReaderControl::Signal_MetaDataChanged));; +} + +void QMetaDataReaderControl_DisconnectMetaDataChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMetaDataReaderControl::metaDataChanged), static_cast(ptr), static_cast(&MyQMetaDataReaderControl::Signal_MetaDataChanged));; +} + +void QMetaDataReaderControl_DestroyQMetaDataReaderControl(QtObjectPtr ptr){ + static_cast(ptr)->~QMetaDataReaderControl(); +} + diff --git a/multimedia/qmetadatareadercontrol.go b/multimedia/qmetadatareadercontrol.go new file mode 100755 index 00000000..07cf0531 --- /dev/null +++ b/multimedia/qmetadatareadercontrol.go @@ -0,0 +1,104 @@ +package multimedia + +//#include "qmetadatareadercontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "strings" + "unsafe" +) + +type QMetaDataReaderControl struct { + QMediaControl +} + +type QMetaDataReaderControlITF interface { + QMediaControlITF + QMetaDataReaderControlPTR() *QMetaDataReaderControl +} + +func PointerFromQMetaDataReaderControl(ptr QMetaDataReaderControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMetaDataReaderControlPTR().Pointer() + } + return nil +} + +func QMetaDataReaderControlFromPointer(ptr unsafe.Pointer) *QMetaDataReaderControl { + var n = new(QMetaDataReaderControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMetaDataReaderControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMetaDataReaderControl) QMetaDataReaderControlPTR() *QMetaDataReaderControl { + return ptr +} + +func (ptr *QMetaDataReaderControl) AvailableMetaData() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QMetaDataReaderControl_AvailableMetaData(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QMetaDataReaderControl) IsMetaDataAvailable() bool { + if ptr.Pointer() != nil { + return C.QMetaDataReaderControl_IsMetaDataAvailable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMetaDataReaderControl) MetaData(key string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QMetaDataReaderControl_MetaData(C.QtObjectPtr(ptr.Pointer()), C.CString(key))) + } + return "" +} + +func (ptr *QMetaDataReaderControl) ConnectMetaDataAvailableChanged(f func(available bool)) { + if ptr.Pointer() != nil { + C.QMetaDataReaderControl_ConnectMetaDataAvailableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "metaDataAvailableChanged", f) + } +} + +func (ptr *QMetaDataReaderControl) DisconnectMetaDataAvailableChanged() { + if ptr.Pointer() != nil { + C.QMetaDataReaderControl_DisconnectMetaDataAvailableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "metaDataAvailableChanged") + } +} + +//export callbackQMetaDataReaderControlMetaDataAvailableChanged +func callbackQMetaDataReaderControlMetaDataAvailableChanged(ptrName *C.char, available C.int) { + qt.GetSignal(C.GoString(ptrName), "metaDataAvailableChanged").(func(bool))(int(available) != 0) +} + +func (ptr *QMetaDataReaderControl) ConnectMetaDataChanged(f func()) { + if ptr.Pointer() != nil { + C.QMetaDataReaderControl_ConnectMetaDataChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "metaDataChanged", f) + } +} + +func (ptr *QMetaDataReaderControl) DisconnectMetaDataChanged() { + if ptr.Pointer() != nil { + C.QMetaDataReaderControl_DisconnectMetaDataChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "metaDataChanged") + } +} + +//export callbackQMetaDataReaderControlMetaDataChanged +func callbackQMetaDataReaderControlMetaDataChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "metaDataChanged").(func())() +} + +func (ptr *QMetaDataReaderControl) DestroyQMetaDataReaderControl() { + if ptr.Pointer() != nil { + C.QMetaDataReaderControl_DestroyQMetaDataReaderControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qmetadatareadercontrol.h b/multimedia/qmetadatareadercontrol.h new file mode 100755 index 00000000..75f80b61 --- /dev/null +++ b/multimedia/qmetadatareadercontrol.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QMetaDataReaderControl_AvailableMetaData(QtObjectPtr ptr); +int QMetaDataReaderControl_IsMetaDataAvailable(QtObjectPtr ptr); +char* QMetaDataReaderControl_MetaData(QtObjectPtr ptr, char* key); +void QMetaDataReaderControl_ConnectMetaDataAvailableChanged(QtObjectPtr ptr); +void QMetaDataReaderControl_DisconnectMetaDataAvailableChanged(QtObjectPtr ptr); +void QMetaDataReaderControl_ConnectMetaDataChanged(QtObjectPtr ptr); +void QMetaDataReaderControl_DisconnectMetaDataChanged(QtObjectPtr ptr); +void QMetaDataReaderControl_DestroyQMetaDataReaderControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qmetadatawritercontrol.cpp b/multimedia/qmetadatawritercontrol.cpp new file mode 100755 index 00000000..2e60d127 --- /dev/null +++ b/multimedia/qmetadatawritercontrol.cpp @@ -0,0 +1,64 @@ +#include "qmetadatawritercontrol.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMetaDataWriterControl: public QMetaDataWriterControl { +public: +void Signal_MetaDataAvailableChanged(bool available){callbackQMetaDataWriterControlMetaDataAvailableChanged(this->objectName().toUtf8().data(), available);}; +void Signal_MetaDataChanged(){callbackQMetaDataWriterControlMetaDataChanged(this->objectName().toUtf8().data());}; +void Signal_WritableChanged(bool writable){callbackQMetaDataWriterControlWritableChanged(this->objectName().toUtf8().data(), writable);}; +}; + +char* QMetaDataWriterControl_AvailableMetaData(QtObjectPtr ptr){ + return static_cast(ptr)->availableMetaData().join("|").toUtf8().data(); +} + +int QMetaDataWriterControl_IsMetaDataAvailable(QtObjectPtr ptr){ + return static_cast(ptr)->isMetaDataAvailable(); +} + +int QMetaDataWriterControl_IsWritable(QtObjectPtr ptr){ + return static_cast(ptr)->isWritable(); +} + +char* QMetaDataWriterControl_MetaData(QtObjectPtr ptr, char* key){ + return static_cast(ptr)->metaData(QString(key)).toString().toUtf8().data(); +} + +void QMetaDataWriterControl_ConnectMetaDataAvailableChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMetaDataWriterControl::metaDataAvailableChanged), static_cast(ptr), static_cast(&MyQMetaDataWriterControl::Signal_MetaDataAvailableChanged));; +} + +void QMetaDataWriterControl_DisconnectMetaDataAvailableChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMetaDataWriterControl::metaDataAvailableChanged), static_cast(ptr), static_cast(&MyQMetaDataWriterControl::Signal_MetaDataAvailableChanged));; +} + +void QMetaDataWriterControl_ConnectMetaDataChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMetaDataWriterControl::metaDataChanged), static_cast(ptr), static_cast(&MyQMetaDataWriterControl::Signal_MetaDataChanged));; +} + +void QMetaDataWriterControl_DisconnectMetaDataChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMetaDataWriterControl::metaDataChanged), static_cast(ptr), static_cast(&MyQMetaDataWriterControl::Signal_MetaDataChanged));; +} + +void QMetaDataWriterControl_SetMetaData(QtObjectPtr ptr, char* key, char* value){ + static_cast(ptr)->setMetaData(QString(key), QVariant(value)); +} + +void QMetaDataWriterControl_ConnectWritableChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMetaDataWriterControl::writableChanged), static_cast(ptr), static_cast(&MyQMetaDataWriterControl::Signal_WritableChanged));; +} + +void QMetaDataWriterControl_DisconnectWritableChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMetaDataWriterControl::writableChanged), static_cast(ptr), static_cast(&MyQMetaDataWriterControl::Signal_WritableChanged));; +} + +void QMetaDataWriterControl_DestroyQMetaDataWriterControl(QtObjectPtr ptr){ + static_cast(ptr)->~QMetaDataWriterControl(); +} + diff --git a/multimedia/qmetadatawritercontrol.go b/multimedia/qmetadatawritercontrol.go new file mode 100755 index 00000000..178623aa --- /dev/null +++ b/multimedia/qmetadatawritercontrol.go @@ -0,0 +1,136 @@ +package multimedia + +//#include "qmetadatawritercontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "strings" + "unsafe" +) + +type QMetaDataWriterControl struct { + QMediaControl +} + +type QMetaDataWriterControlITF interface { + QMediaControlITF + QMetaDataWriterControlPTR() *QMetaDataWriterControl +} + +func PointerFromQMetaDataWriterControl(ptr QMetaDataWriterControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMetaDataWriterControlPTR().Pointer() + } + return nil +} + +func QMetaDataWriterControlFromPointer(ptr unsafe.Pointer) *QMetaDataWriterControl { + var n = new(QMetaDataWriterControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMetaDataWriterControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMetaDataWriterControl) QMetaDataWriterControlPTR() *QMetaDataWriterControl { + return ptr +} + +func (ptr *QMetaDataWriterControl) AvailableMetaData() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QMetaDataWriterControl_AvailableMetaData(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QMetaDataWriterControl) IsMetaDataAvailable() bool { + if ptr.Pointer() != nil { + return C.QMetaDataWriterControl_IsMetaDataAvailable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMetaDataWriterControl) IsWritable() bool { + if ptr.Pointer() != nil { + return C.QMetaDataWriterControl_IsWritable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMetaDataWriterControl) MetaData(key string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QMetaDataWriterControl_MetaData(C.QtObjectPtr(ptr.Pointer()), C.CString(key))) + } + return "" +} + +func (ptr *QMetaDataWriterControl) ConnectMetaDataAvailableChanged(f func(available bool)) { + if ptr.Pointer() != nil { + C.QMetaDataWriterControl_ConnectMetaDataAvailableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "metaDataAvailableChanged", f) + } +} + +func (ptr *QMetaDataWriterControl) DisconnectMetaDataAvailableChanged() { + if ptr.Pointer() != nil { + C.QMetaDataWriterControl_DisconnectMetaDataAvailableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "metaDataAvailableChanged") + } +} + +//export callbackQMetaDataWriterControlMetaDataAvailableChanged +func callbackQMetaDataWriterControlMetaDataAvailableChanged(ptrName *C.char, available C.int) { + qt.GetSignal(C.GoString(ptrName), "metaDataAvailableChanged").(func(bool))(int(available) != 0) +} + +func (ptr *QMetaDataWriterControl) ConnectMetaDataChanged(f func()) { + if ptr.Pointer() != nil { + C.QMetaDataWriterControl_ConnectMetaDataChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "metaDataChanged", f) + } +} + +func (ptr *QMetaDataWriterControl) DisconnectMetaDataChanged() { + if ptr.Pointer() != nil { + C.QMetaDataWriterControl_DisconnectMetaDataChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "metaDataChanged") + } +} + +//export callbackQMetaDataWriterControlMetaDataChanged +func callbackQMetaDataWriterControlMetaDataChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "metaDataChanged").(func())() +} + +func (ptr *QMetaDataWriterControl) SetMetaData(key string, value string) { + if ptr.Pointer() != nil { + C.QMetaDataWriterControl_SetMetaData(C.QtObjectPtr(ptr.Pointer()), C.CString(key), C.CString(value)) + } +} + +func (ptr *QMetaDataWriterControl) ConnectWritableChanged(f func(writable bool)) { + if ptr.Pointer() != nil { + C.QMetaDataWriterControl_ConnectWritableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "writableChanged", f) + } +} + +func (ptr *QMetaDataWriterControl) DisconnectWritableChanged() { + if ptr.Pointer() != nil { + C.QMetaDataWriterControl_DisconnectWritableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "writableChanged") + } +} + +//export callbackQMetaDataWriterControlWritableChanged +func callbackQMetaDataWriterControlWritableChanged(ptrName *C.char, writable C.int) { + qt.GetSignal(C.GoString(ptrName), "writableChanged").(func(bool))(int(writable) != 0) +} + +func (ptr *QMetaDataWriterControl) DestroyQMetaDataWriterControl() { + if ptr.Pointer() != nil { + C.QMetaDataWriterControl_DestroyQMetaDataWriterControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qmetadatawritercontrol.h b/multimedia/qmetadatawritercontrol.h new file mode 100755 index 00000000..00eca8be --- /dev/null +++ b/multimedia/qmetadatawritercontrol.h @@ -0,0 +1,21 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QMetaDataWriterControl_AvailableMetaData(QtObjectPtr ptr); +int QMetaDataWriterControl_IsMetaDataAvailable(QtObjectPtr ptr); +int QMetaDataWriterControl_IsWritable(QtObjectPtr ptr); +char* QMetaDataWriterControl_MetaData(QtObjectPtr ptr, char* key); +void QMetaDataWriterControl_ConnectMetaDataAvailableChanged(QtObjectPtr ptr); +void QMetaDataWriterControl_DisconnectMetaDataAvailableChanged(QtObjectPtr ptr); +void QMetaDataWriterControl_ConnectMetaDataChanged(QtObjectPtr ptr); +void QMetaDataWriterControl_DisconnectMetaDataChanged(QtObjectPtr ptr); +void QMetaDataWriterControl_SetMetaData(QtObjectPtr ptr, char* key, char* value); +void QMetaDataWriterControl_ConnectWritableChanged(QtObjectPtr ptr); +void QMetaDataWriterControl_DisconnectWritableChanged(QtObjectPtr ptr); +void QMetaDataWriterControl_DestroyQMetaDataWriterControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qradiodata.cpp b/multimedia/qradiodata.cpp new file mode 100755 index 00000000..8a199eb5 --- /dev/null +++ b/multimedia/qradiodata.cpp @@ -0,0 +1,117 @@ +#include "qradiodata.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQRadioData: public QRadioData { +public: +void Signal_AlternativeFrequenciesEnabledChanged(bool enabled){callbackQRadioDataAlternativeFrequenciesEnabledChanged(this->objectName().toUtf8().data(), enabled);}; +void Signal_ProgramTypeChanged(QRadioData::ProgramType programType){callbackQRadioDataProgramTypeChanged(this->objectName().toUtf8().data(), programType);}; +void Signal_ProgramTypeNameChanged(QString programTypeName){callbackQRadioDataProgramTypeNameChanged(this->objectName().toUtf8().data(), programTypeName.toUtf8().data());}; +void Signal_RadioTextChanged(QString radioText){callbackQRadioDataRadioTextChanged(this->objectName().toUtf8().data(), radioText.toUtf8().data());}; +void Signal_StationIdChanged(QString stationId){callbackQRadioDataStationIdChanged(this->objectName().toUtf8().data(), stationId.toUtf8().data());}; +void Signal_StationNameChanged(QString stationName){callbackQRadioDataStationNameChanged(this->objectName().toUtf8().data(), stationName.toUtf8().data());}; +}; + +int QRadioData_IsAlternativeFrequenciesEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isAlternativeFrequenciesEnabled(); +} + +int QRadioData_ProgramType(QtObjectPtr ptr){ + return static_cast(ptr)->programType(); +} + +char* QRadioData_ProgramTypeName(QtObjectPtr ptr){ + return static_cast(ptr)->programTypeName().toUtf8().data(); +} + +char* QRadioData_RadioText(QtObjectPtr ptr){ + return static_cast(ptr)->radioText().toUtf8().data(); +} + +void QRadioData_SetAlternativeFrequenciesEnabled(QtObjectPtr ptr, int enabled){ + QMetaObject::invokeMethod(static_cast(ptr), "setAlternativeFrequenciesEnabled", Q_ARG(bool, enabled != 0)); +} + +char* QRadioData_StationId(QtObjectPtr ptr){ + return static_cast(ptr)->stationId().toUtf8().data(); +} + +char* QRadioData_StationName(QtObjectPtr ptr){ + return static_cast(ptr)->stationName().toUtf8().data(); +} + +QtObjectPtr QRadioData_NewQRadioData(QtObjectPtr mediaObject, QtObjectPtr parent){ + return new QRadioData(static_cast(mediaObject), static_cast(parent)); +} + +void QRadioData_ConnectAlternativeFrequenciesEnabledChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioData::alternativeFrequenciesEnabledChanged), static_cast(ptr), static_cast(&MyQRadioData::Signal_AlternativeFrequenciesEnabledChanged));; +} + +void QRadioData_DisconnectAlternativeFrequenciesEnabledChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioData::alternativeFrequenciesEnabledChanged), static_cast(ptr), static_cast(&MyQRadioData::Signal_AlternativeFrequenciesEnabledChanged));; +} + +int QRadioData_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +char* QRadioData_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +QtObjectPtr QRadioData_MediaObject(QtObjectPtr ptr){ + return static_cast(ptr)->mediaObject(); +} + +void QRadioData_ConnectProgramTypeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioData::programTypeChanged), static_cast(ptr), static_cast(&MyQRadioData::Signal_ProgramTypeChanged));; +} + +void QRadioData_DisconnectProgramTypeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioData::programTypeChanged), static_cast(ptr), static_cast(&MyQRadioData::Signal_ProgramTypeChanged));; +} + +void QRadioData_ConnectProgramTypeNameChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioData::programTypeNameChanged), static_cast(ptr), static_cast(&MyQRadioData::Signal_ProgramTypeNameChanged));; +} + +void QRadioData_DisconnectProgramTypeNameChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioData::programTypeNameChanged), static_cast(ptr), static_cast(&MyQRadioData::Signal_ProgramTypeNameChanged));; +} + +void QRadioData_ConnectRadioTextChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioData::radioTextChanged), static_cast(ptr), static_cast(&MyQRadioData::Signal_RadioTextChanged));; +} + +void QRadioData_DisconnectRadioTextChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioData::radioTextChanged), static_cast(ptr), static_cast(&MyQRadioData::Signal_RadioTextChanged));; +} + +void QRadioData_ConnectStationIdChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioData::stationIdChanged), static_cast(ptr), static_cast(&MyQRadioData::Signal_StationIdChanged));; +} + +void QRadioData_DisconnectStationIdChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioData::stationIdChanged), static_cast(ptr), static_cast(&MyQRadioData::Signal_StationIdChanged));; +} + +void QRadioData_ConnectStationNameChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioData::stationNameChanged), static_cast(ptr), static_cast(&MyQRadioData::Signal_StationNameChanged));; +} + +void QRadioData_DisconnectStationNameChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioData::stationNameChanged), static_cast(ptr), static_cast(&MyQRadioData::Signal_StationNameChanged));; +} + +void QRadioData_DestroyQRadioData(QtObjectPtr ptr){ + static_cast(ptr)->~QRadioData(); +} + diff --git a/multimedia/qradiodata.go b/multimedia/qradiodata.go new file mode 100755 index 00000000..cd38532c --- /dev/null +++ b/multimedia/qradiodata.go @@ -0,0 +1,307 @@ +package multimedia + +//#include "qradiodata.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QRadioData struct { + core.QObject + QMediaBindableInterface +} + +type QRadioDataITF interface { + core.QObjectITF + QMediaBindableInterfaceITF + QRadioDataPTR() *QRadioData +} + +func (p *QRadioData) Pointer() unsafe.Pointer { + return p.QObjectPTR().Pointer() +} + +func (p *QRadioData) SetPointer(ptr unsafe.Pointer) { + p.QObjectPTR().SetPointer(ptr) + p.QMediaBindableInterfacePTR().SetPointer(ptr) +} + +func PointerFromQRadioData(ptr QRadioDataITF) unsafe.Pointer { + if ptr != nil { + return ptr.QRadioDataPTR().Pointer() + } + return nil +} + +func QRadioDataFromPointer(ptr unsafe.Pointer) *QRadioData { + var n = new(QRadioData) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QRadioData_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QRadioData) QRadioDataPTR() *QRadioData { + return ptr +} + +//QRadioData::Error +type QRadioData__Error int + +var ( + QRadioData__NoError = QRadioData__Error(0) + QRadioData__ResourceError = QRadioData__Error(1) + QRadioData__OpenError = QRadioData__Error(2) + QRadioData__OutOfRangeError = QRadioData__Error(3) +) + +//QRadioData::ProgramType +type QRadioData__ProgramType int + +var ( + QRadioData__Undefined = QRadioData__ProgramType(0) + QRadioData__News = QRadioData__ProgramType(1) + QRadioData__CurrentAffairs = QRadioData__ProgramType(2) + QRadioData__Information = QRadioData__ProgramType(3) + QRadioData__Sport = QRadioData__ProgramType(4) + QRadioData__Education = QRadioData__ProgramType(5) + QRadioData__Drama = QRadioData__ProgramType(6) + QRadioData__Culture = QRadioData__ProgramType(7) + QRadioData__Science = QRadioData__ProgramType(8) + QRadioData__Varied = QRadioData__ProgramType(9) + QRadioData__PopMusic = QRadioData__ProgramType(10) + QRadioData__RockMusic = QRadioData__ProgramType(11) + QRadioData__EasyListening = QRadioData__ProgramType(12) + QRadioData__LightClassical = QRadioData__ProgramType(13) + QRadioData__SeriousClassical = QRadioData__ProgramType(14) + QRadioData__OtherMusic = QRadioData__ProgramType(15) + QRadioData__Weather = QRadioData__ProgramType(16) + QRadioData__Finance = QRadioData__ProgramType(17) + QRadioData__ChildrensProgrammes = QRadioData__ProgramType(18) + QRadioData__SocialAffairs = QRadioData__ProgramType(19) + QRadioData__Religion = QRadioData__ProgramType(20) + QRadioData__PhoneIn = QRadioData__ProgramType(21) + QRadioData__Travel = QRadioData__ProgramType(22) + QRadioData__Leisure = QRadioData__ProgramType(23) + QRadioData__JazzMusic = QRadioData__ProgramType(24) + QRadioData__CountryMusic = QRadioData__ProgramType(25) + QRadioData__NationalMusic = QRadioData__ProgramType(26) + QRadioData__OldiesMusic = QRadioData__ProgramType(27) + QRadioData__FolkMusic = QRadioData__ProgramType(28) + QRadioData__Documentary = QRadioData__ProgramType(29) + QRadioData__AlarmTest = QRadioData__ProgramType(30) + QRadioData__Alarm = QRadioData__ProgramType(31) + QRadioData__Talk = QRadioData__ProgramType(32) + QRadioData__ClassicRock = QRadioData__ProgramType(33) + QRadioData__AdultHits = QRadioData__ProgramType(34) + QRadioData__SoftRock = QRadioData__ProgramType(35) + QRadioData__Top40 = QRadioData__ProgramType(36) + QRadioData__Soft = QRadioData__ProgramType(37) + QRadioData__Nostalgia = QRadioData__ProgramType(38) + QRadioData__Classical = QRadioData__ProgramType(39) + QRadioData__RhythmAndBlues = QRadioData__ProgramType(40) + QRadioData__SoftRhythmAndBlues = QRadioData__ProgramType(41) + QRadioData__Language = QRadioData__ProgramType(42) + QRadioData__ReligiousMusic = QRadioData__ProgramType(43) + QRadioData__ReligiousTalk = QRadioData__ProgramType(44) + QRadioData__Personality = QRadioData__ProgramType(45) + QRadioData__Public = QRadioData__ProgramType(46) + QRadioData__College = QRadioData__ProgramType(47) +) + +func (ptr *QRadioData) IsAlternativeFrequenciesEnabled() bool { + if ptr.Pointer() != nil { + return C.QRadioData_IsAlternativeFrequenciesEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRadioData) ProgramType() QRadioData__ProgramType { + if ptr.Pointer() != nil { + return QRadioData__ProgramType(C.QRadioData_ProgramType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRadioData) ProgramTypeName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QRadioData_ProgramTypeName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QRadioData) RadioText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QRadioData_RadioText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QRadioData) SetAlternativeFrequenciesEnabled(enabled bool) { + if ptr.Pointer() != nil { + C.QRadioData_SetAlternativeFrequenciesEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QRadioData) StationId() string { + if ptr.Pointer() != nil { + return C.GoString(C.QRadioData_StationId(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QRadioData) StationName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QRadioData_StationName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func NewQRadioData(mediaObject QMediaObjectITF, parent core.QObjectITF) *QRadioData { + return QRadioDataFromPointer(unsafe.Pointer(C.QRadioData_NewQRadioData(C.QtObjectPtr(PointerFromQMediaObject(mediaObject)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QRadioData) ConnectAlternativeFrequenciesEnabledChanged(f func(enabled bool)) { + if ptr.Pointer() != nil { + C.QRadioData_ConnectAlternativeFrequenciesEnabledChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "alternativeFrequenciesEnabledChanged", f) + } +} + +func (ptr *QRadioData) DisconnectAlternativeFrequenciesEnabledChanged() { + if ptr.Pointer() != nil { + C.QRadioData_DisconnectAlternativeFrequenciesEnabledChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "alternativeFrequenciesEnabledChanged") + } +} + +//export callbackQRadioDataAlternativeFrequenciesEnabledChanged +func callbackQRadioDataAlternativeFrequenciesEnabledChanged(ptrName *C.char, enabled C.int) { + qt.GetSignal(C.GoString(ptrName), "alternativeFrequenciesEnabledChanged").(func(bool))(int(enabled) != 0) +} + +func (ptr *QRadioData) Error() QRadioData__Error { + if ptr.Pointer() != nil { + return QRadioData__Error(C.QRadioData_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRadioData) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QRadioData_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QRadioData) MediaObject() *QMediaObject { + if ptr.Pointer() != nil { + return QMediaObjectFromPointer(unsafe.Pointer(C.QRadioData_MediaObject(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QRadioData) ConnectProgramTypeChanged(f func(programType QRadioData__ProgramType)) { + if ptr.Pointer() != nil { + C.QRadioData_ConnectProgramTypeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "programTypeChanged", f) + } +} + +func (ptr *QRadioData) DisconnectProgramTypeChanged() { + if ptr.Pointer() != nil { + C.QRadioData_DisconnectProgramTypeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "programTypeChanged") + } +} + +//export callbackQRadioDataProgramTypeChanged +func callbackQRadioDataProgramTypeChanged(ptrName *C.char, programType C.int) { + qt.GetSignal(C.GoString(ptrName), "programTypeChanged").(func(QRadioData__ProgramType))(QRadioData__ProgramType(programType)) +} + +func (ptr *QRadioData) ConnectProgramTypeNameChanged(f func(programTypeName string)) { + if ptr.Pointer() != nil { + C.QRadioData_ConnectProgramTypeNameChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "programTypeNameChanged", f) + } +} + +func (ptr *QRadioData) DisconnectProgramTypeNameChanged() { + if ptr.Pointer() != nil { + C.QRadioData_DisconnectProgramTypeNameChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "programTypeNameChanged") + } +} + +//export callbackQRadioDataProgramTypeNameChanged +func callbackQRadioDataProgramTypeNameChanged(ptrName *C.char, programTypeName *C.char) { + qt.GetSignal(C.GoString(ptrName), "programTypeNameChanged").(func(string))(C.GoString(programTypeName)) +} + +func (ptr *QRadioData) ConnectRadioTextChanged(f func(radioText string)) { + if ptr.Pointer() != nil { + C.QRadioData_ConnectRadioTextChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "radioTextChanged", f) + } +} + +func (ptr *QRadioData) DisconnectRadioTextChanged() { + if ptr.Pointer() != nil { + C.QRadioData_DisconnectRadioTextChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "radioTextChanged") + } +} + +//export callbackQRadioDataRadioTextChanged +func callbackQRadioDataRadioTextChanged(ptrName *C.char, radioText *C.char) { + qt.GetSignal(C.GoString(ptrName), "radioTextChanged").(func(string))(C.GoString(radioText)) +} + +func (ptr *QRadioData) ConnectStationIdChanged(f func(stationId string)) { + if ptr.Pointer() != nil { + C.QRadioData_ConnectStationIdChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stationIdChanged", f) + } +} + +func (ptr *QRadioData) DisconnectStationIdChanged() { + if ptr.Pointer() != nil { + C.QRadioData_DisconnectStationIdChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stationIdChanged") + } +} + +//export callbackQRadioDataStationIdChanged +func callbackQRadioDataStationIdChanged(ptrName *C.char, stationId *C.char) { + qt.GetSignal(C.GoString(ptrName), "stationIdChanged").(func(string))(C.GoString(stationId)) +} + +func (ptr *QRadioData) ConnectStationNameChanged(f func(stationName string)) { + if ptr.Pointer() != nil { + C.QRadioData_ConnectStationNameChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stationNameChanged", f) + } +} + +func (ptr *QRadioData) DisconnectStationNameChanged() { + if ptr.Pointer() != nil { + C.QRadioData_DisconnectStationNameChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stationNameChanged") + } +} + +//export callbackQRadioDataStationNameChanged +func callbackQRadioDataStationNameChanged(ptrName *C.char, stationName *C.char) { + qt.GetSignal(C.GoString(ptrName), "stationNameChanged").(func(string))(C.GoString(stationName)) +} + +func (ptr *QRadioData) DestroyQRadioData() { + if ptr.Pointer() != nil { + C.QRadioData_DestroyQRadioData(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qradiodata.h b/multimedia/qradiodata.h new file mode 100755 index 00000000..cee8cddb --- /dev/null +++ b/multimedia/qradiodata.h @@ -0,0 +1,33 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QRadioData_IsAlternativeFrequenciesEnabled(QtObjectPtr ptr); +int QRadioData_ProgramType(QtObjectPtr ptr); +char* QRadioData_ProgramTypeName(QtObjectPtr ptr); +char* QRadioData_RadioText(QtObjectPtr ptr); +void QRadioData_SetAlternativeFrequenciesEnabled(QtObjectPtr ptr, int enabled); +char* QRadioData_StationId(QtObjectPtr ptr); +char* QRadioData_StationName(QtObjectPtr ptr); +QtObjectPtr QRadioData_NewQRadioData(QtObjectPtr mediaObject, QtObjectPtr parent); +void QRadioData_ConnectAlternativeFrequenciesEnabledChanged(QtObjectPtr ptr); +void QRadioData_DisconnectAlternativeFrequenciesEnabledChanged(QtObjectPtr ptr); +int QRadioData_Error(QtObjectPtr ptr); +char* QRadioData_ErrorString(QtObjectPtr ptr); +QtObjectPtr QRadioData_MediaObject(QtObjectPtr ptr); +void QRadioData_ConnectProgramTypeChanged(QtObjectPtr ptr); +void QRadioData_DisconnectProgramTypeChanged(QtObjectPtr ptr); +void QRadioData_ConnectProgramTypeNameChanged(QtObjectPtr ptr); +void QRadioData_DisconnectProgramTypeNameChanged(QtObjectPtr ptr); +void QRadioData_ConnectRadioTextChanged(QtObjectPtr ptr); +void QRadioData_DisconnectRadioTextChanged(QtObjectPtr ptr); +void QRadioData_ConnectStationIdChanged(QtObjectPtr ptr); +void QRadioData_DisconnectStationIdChanged(QtObjectPtr ptr); +void QRadioData_ConnectStationNameChanged(QtObjectPtr ptr); +void QRadioData_DisconnectStationNameChanged(QtObjectPtr ptr); +void QRadioData_DestroyQRadioData(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qradiodatacontrol.cpp b/multimedia/qradiodatacontrol.cpp new file mode 100755 index 00000000..5f41c875 --- /dev/null +++ b/multimedia/qradiodatacontrol.cpp @@ -0,0 +1,108 @@ +#include "qradiodatacontrol.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQRadioDataControl: public QRadioDataControl { +public: +void Signal_AlternativeFrequenciesEnabledChanged(bool enabled){callbackQRadioDataControlAlternativeFrequenciesEnabledChanged(this->objectName().toUtf8().data(), enabled);}; +void Signal_ProgramTypeChanged(QRadioData::ProgramType programType){callbackQRadioDataControlProgramTypeChanged(this->objectName().toUtf8().data(), programType);}; +void Signal_ProgramTypeNameChanged(QString programTypeName){callbackQRadioDataControlProgramTypeNameChanged(this->objectName().toUtf8().data(), programTypeName.toUtf8().data());}; +void Signal_RadioTextChanged(QString radioText){callbackQRadioDataControlRadioTextChanged(this->objectName().toUtf8().data(), radioText.toUtf8().data());}; +void Signal_StationIdChanged(QString stationId){callbackQRadioDataControlStationIdChanged(this->objectName().toUtf8().data(), stationId.toUtf8().data());}; +void Signal_StationNameChanged(QString stationName){callbackQRadioDataControlStationNameChanged(this->objectName().toUtf8().data(), stationName.toUtf8().data());}; +}; + +void QRadioDataControl_ConnectAlternativeFrequenciesEnabledChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioDataControl::alternativeFrequenciesEnabledChanged), static_cast(ptr), static_cast(&MyQRadioDataControl::Signal_AlternativeFrequenciesEnabledChanged));; +} + +void QRadioDataControl_DisconnectAlternativeFrequenciesEnabledChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioDataControl::alternativeFrequenciesEnabledChanged), static_cast(ptr), static_cast(&MyQRadioDataControl::Signal_AlternativeFrequenciesEnabledChanged));; +} + +int QRadioDataControl_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +char* QRadioDataControl_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +int QRadioDataControl_IsAlternativeFrequenciesEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isAlternativeFrequenciesEnabled(); +} + +int QRadioDataControl_ProgramType(QtObjectPtr ptr){ + return static_cast(ptr)->programType(); +} + +void QRadioDataControl_ConnectProgramTypeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioDataControl::programTypeChanged), static_cast(ptr), static_cast(&MyQRadioDataControl::Signal_ProgramTypeChanged));; +} + +void QRadioDataControl_DisconnectProgramTypeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioDataControl::programTypeChanged), static_cast(ptr), static_cast(&MyQRadioDataControl::Signal_ProgramTypeChanged));; +} + +char* QRadioDataControl_ProgramTypeName(QtObjectPtr ptr){ + return static_cast(ptr)->programTypeName().toUtf8().data(); +} + +void QRadioDataControl_ConnectProgramTypeNameChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioDataControl::programTypeNameChanged), static_cast(ptr), static_cast(&MyQRadioDataControl::Signal_ProgramTypeNameChanged));; +} + +void QRadioDataControl_DisconnectProgramTypeNameChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioDataControl::programTypeNameChanged), static_cast(ptr), static_cast(&MyQRadioDataControl::Signal_ProgramTypeNameChanged));; +} + +char* QRadioDataControl_RadioText(QtObjectPtr ptr){ + return static_cast(ptr)->radioText().toUtf8().data(); +} + +void QRadioDataControl_ConnectRadioTextChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioDataControl::radioTextChanged), static_cast(ptr), static_cast(&MyQRadioDataControl::Signal_RadioTextChanged));; +} + +void QRadioDataControl_DisconnectRadioTextChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioDataControl::radioTextChanged), static_cast(ptr), static_cast(&MyQRadioDataControl::Signal_RadioTextChanged));; +} + +void QRadioDataControl_SetAlternativeFrequenciesEnabled(QtObjectPtr ptr, int enabled){ + static_cast(ptr)->setAlternativeFrequenciesEnabled(enabled != 0); +} + +char* QRadioDataControl_StationId(QtObjectPtr ptr){ + return static_cast(ptr)->stationId().toUtf8().data(); +} + +void QRadioDataControl_ConnectStationIdChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioDataControl::stationIdChanged), static_cast(ptr), static_cast(&MyQRadioDataControl::Signal_StationIdChanged));; +} + +void QRadioDataControl_DisconnectStationIdChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioDataControl::stationIdChanged), static_cast(ptr), static_cast(&MyQRadioDataControl::Signal_StationIdChanged));; +} + +char* QRadioDataControl_StationName(QtObjectPtr ptr){ + return static_cast(ptr)->stationName().toUtf8().data(); +} + +void QRadioDataControl_ConnectStationNameChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioDataControl::stationNameChanged), static_cast(ptr), static_cast(&MyQRadioDataControl::Signal_StationNameChanged));; +} + +void QRadioDataControl_DisconnectStationNameChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioDataControl::stationNameChanged), static_cast(ptr), static_cast(&MyQRadioDataControl::Signal_StationNameChanged));; +} + +void QRadioDataControl_DestroyQRadioDataControl(QtObjectPtr ptr){ + static_cast(ptr)->~QRadioDataControl(); +} + diff --git a/multimedia/qradiodatacontrol.go b/multimedia/qradiodatacontrol.go new file mode 100755 index 00000000..db1d2966 --- /dev/null +++ b/multimedia/qradiodatacontrol.go @@ -0,0 +1,220 @@ +package multimedia + +//#include "qradiodatacontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QRadioDataControl struct { + QMediaControl +} + +type QRadioDataControlITF interface { + QMediaControlITF + QRadioDataControlPTR() *QRadioDataControl +} + +func PointerFromQRadioDataControl(ptr QRadioDataControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QRadioDataControlPTR().Pointer() + } + return nil +} + +func QRadioDataControlFromPointer(ptr unsafe.Pointer) *QRadioDataControl { + var n = new(QRadioDataControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QRadioDataControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QRadioDataControl) QRadioDataControlPTR() *QRadioDataControl { + return ptr +} + +func (ptr *QRadioDataControl) ConnectAlternativeFrequenciesEnabledChanged(f func(enabled bool)) { + if ptr.Pointer() != nil { + C.QRadioDataControl_ConnectAlternativeFrequenciesEnabledChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "alternativeFrequenciesEnabledChanged", f) + } +} + +func (ptr *QRadioDataControl) DisconnectAlternativeFrequenciesEnabledChanged() { + if ptr.Pointer() != nil { + C.QRadioDataControl_DisconnectAlternativeFrequenciesEnabledChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "alternativeFrequenciesEnabledChanged") + } +} + +//export callbackQRadioDataControlAlternativeFrequenciesEnabledChanged +func callbackQRadioDataControlAlternativeFrequenciesEnabledChanged(ptrName *C.char, enabled C.int) { + qt.GetSignal(C.GoString(ptrName), "alternativeFrequenciesEnabledChanged").(func(bool))(int(enabled) != 0) +} + +func (ptr *QRadioDataControl) Error() QRadioData__Error { + if ptr.Pointer() != nil { + return QRadioData__Error(C.QRadioDataControl_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRadioDataControl) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QRadioDataControl_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QRadioDataControl) IsAlternativeFrequenciesEnabled() bool { + if ptr.Pointer() != nil { + return C.QRadioDataControl_IsAlternativeFrequenciesEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRadioDataControl) ProgramType() QRadioData__ProgramType { + if ptr.Pointer() != nil { + return QRadioData__ProgramType(C.QRadioDataControl_ProgramType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRadioDataControl) ConnectProgramTypeChanged(f func(programType QRadioData__ProgramType)) { + if ptr.Pointer() != nil { + C.QRadioDataControl_ConnectProgramTypeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "programTypeChanged", f) + } +} + +func (ptr *QRadioDataControl) DisconnectProgramTypeChanged() { + if ptr.Pointer() != nil { + C.QRadioDataControl_DisconnectProgramTypeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "programTypeChanged") + } +} + +//export callbackQRadioDataControlProgramTypeChanged +func callbackQRadioDataControlProgramTypeChanged(ptrName *C.char, programType C.int) { + qt.GetSignal(C.GoString(ptrName), "programTypeChanged").(func(QRadioData__ProgramType))(QRadioData__ProgramType(programType)) +} + +func (ptr *QRadioDataControl) ProgramTypeName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QRadioDataControl_ProgramTypeName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QRadioDataControl) ConnectProgramTypeNameChanged(f func(programTypeName string)) { + if ptr.Pointer() != nil { + C.QRadioDataControl_ConnectProgramTypeNameChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "programTypeNameChanged", f) + } +} + +func (ptr *QRadioDataControl) DisconnectProgramTypeNameChanged() { + if ptr.Pointer() != nil { + C.QRadioDataControl_DisconnectProgramTypeNameChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "programTypeNameChanged") + } +} + +//export callbackQRadioDataControlProgramTypeNameChanged +func callbackQRadioDataControlProgramTypeNameChanged(ptrName *C.char, programTypeName *C.char) { + qt.GetSignal(C.GoString(ptrName), "programTypeNameChanged").(func(string))(C.GoString(programTypeName)) +} + +func (ptr *QRadioDataControl) RadioText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QRadioDataControl_RadioText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QRadioDataControl) ConnectRadioTextChanged(f func(radioText string)) { + if ptr.Pointer() != nil { + C.QRadioDataControl_ConnectRadioTextChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "radioTextChanged", f) + } +} + +func (ptr *QRadioDataControl) DisconnectRadioTextChanged() { + if ptr.Pointer() != nil { + C.QRadioDataControl_DisconnectRadioTextChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "radioTextChanged") + } +} + +//export callbackQRadioDataControlRadioTextChanged +func callbackQRadioDataControlRadioTextChanged(ptrName *C.char, radioText *C.char) { + qt.GetSignal(C.GoString(ptrName), "radioTextChanged").(func(string))(C.GoString(radioText)) +} + +func (ptr *QRadioDataControl) SetAlternativeFrequenciesEnabled(enabled bool) { + if ptr.Pointer() != nil { + C.QRadioDataControl_SetAlternativeFrequenciesEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QRadioDataControl) StationId() string { + if ptr.Pointer() != nil { + return C.GoString(C.QRadioDataControl_StationId(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QRadioDataControl) ConnectStationIdChanged(f func(stationId string)) { + if ptr.Pointer() != nil { + C.QRadioDataControl_ConnectStationIdChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stationIdChanged", f) + } +} + +func (ptr *QRadioDataControl) DisconnectStationIdChanged() { + if ptr.Pointer() != nil { + C.QRadioDataControl_DisconnectStationIdChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stationIdChanged") + } +} + +//export callbackQRadioDataControlStationIdChanged +func callbackQRadioDataControlStationIdChanged(ptrName *C.char, stationId *C.char) { + qt.GetSignal(C.GoString(ptrName), "stationIdChanged").(func(string))(C.GoString(stationId)) +} + +func (ptr *QRadioDataControl) StationName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QRadioDataControl_StationName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QRadioDataControl) ConnectStationNameChanged(f func(stationName string)) { + if ptr.Pointer() != nil { + C.QRadioDataControl_ConnectStationNameChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stationNameChanged", f) + } +} + +func (ptr *QRadioDataControl) DisconnectStationNameChanged() { + if ptr.Pointer() != nil { + C.QRadioDataControl_DisconnectStationNameChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stationNameChanged") + } +} + +//export callbackQRadioDataControlStationNameChanged +func callbackQRadioDataControlStationNameChanged(ptrName *C.char, stationName *C.char) { + qt.GetSignal(C.GoString(ptrName), "stationNameChanged").(func(string))(C.GoString(stationName)) +} + +func (ptr *QRadioDataControl) DestroyQRadioDataControl() { + if ptr.Pointer() != nil { + C.QRadioDataControl_DestroyQRadioDataControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qradiodatacontrol.h b/multimedia/qradiodatacontrol.h new file mode 100755 index 00000000..04b7502d --- /dev/null +++ b/multimedia/qradiodatacontrol.h @@ -0,0 +1,31 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QRadioDataControl_ConnectAlternativeFrequenciesEnabledChanged(QtObjectPtr ptr); +void QRadioDataControl_DisconnectAlternativeFrequenciesEnabledChanged(QtObjectPtr ptr); +int QRadioDataControl_Error(QtObjectPtr ptr); +char* QRadioDataControl_ErrorString(QtObjectPtr ptr); +int QRadioDataControl_IsAlternativeFrequenciesEnabled(QtObjectPtr ptr); +int QRadioDataControl_ProgramType(QtObjectPtr ptr); +void QRadioDataControl_ConnectProgramTypeChanged(QtObjectPtr ptr); +void QRadioDataControl_DisconnectProgramTypeChanged(QtObjectPtr ptr); +char* QRadioDataControl_ProgramTypeName(QtObjectPtr ptr); +void QRadioDataControl_ConnectProgramTypeNameChanged(QtObjectPtr ptr); +void QRadioDataControl_DisconnectProgramTypeNameChanged(QtObjectPtr ptr); +char* QRadioDataControl_RadioText(QtObjectPtr ptr); +void QRadioDataControl_ConnectRadioTextChanged(QtObjectPtr ptr); +void QRadioDataControl_DisconnectRadioTextChanged(QtObjectPtr ptr); +void QRadioDataControl_SetAlternativeFrequenciesEnabled(QtObjectPtr ptr, int enabled); +char* QRadioDataControl_StationId(QtObjectPtr ptr); +void QRadioDataControl_ConnectStationIdChanged(QtObjectPtr ptr); +void QRadioDataControl_DisconnectStationIdChanged(QtObjectPtr ptr); +char* QRadioDataControl_StationName(QtObjectPtr ptr); +void QRadioDataControl_ConnectStationNameChanged(QtObjectPtr ptr); +void QRadioDataControl_DisconnectStationNameChanged(QtObjectPtr ptr); +void QRadioDataControl_DestroyQRadioDataControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qradiotuner.cpp b/multimedia/qradiotuner.cpp new file mode 100755 index 00000000..361ea9ea --- /dev/null +++ b/multimedia/qradiotuner.cpp @@ -0,0 +1,212 @@ +#include "qradiotuner.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQRadioTuner: public QRadioTuner { +public: +void Signal_AntennaConnectedChanged(bool connectionStatus){callbackQRadioTunerAntennaConnectedChanged(this->objectName().toUtf8().data(), connectionStatus);}; +void Signal_BandChanged(QRadioTuner::Band band){callbackQRadioTunerBandChanged(this->objectName().toUtf8().data(), band);}; +void Signal_FrequencyChanged(int frequency){callbackQRadioTunerFrequencyChanged(this->objectName().toUtf8().data(), frequency);}; +void Signal_MutedChanged(bool muted){callbackQRadioTunerMutedChanged(this->objectName().toUtf8().data(), muted);}; +void Signal_SearchingChanged(bool searching){callbackQRadioTunerSearchingChanged(this->objectName().toUtf8().data(), searching);}; +void Signal_SignalStrengthChanged(int strength){callbackQRadioTunerSignalStrengthChanged(this->objectName().toUtf8().data(), strength);}; +void Signal_StateChanged(QRadioTuner::State state){callbackQRadioTunerStateChanged(this->objectName().toUtf8().data(), state);}; +void Signal_StationFound(int frequency, QString stationId){callbackQRadioTunerStationFound(this->objectName().toUtf8().data(), frequency, stationId.toUtf8().data());}; +void Signal_StereoStatusChanged(bool stereo){callbackQRadioTunerStereoStatusChanged(this->objectName().toUtf8().data(), stereo);}; +void Signal_VolumeChanged(int volume){callbackQRadioTunerVolumeChanged(this->objectName().toUtf8().data(), volume);}; +}; + +int QRadioTuner_Band(QtObjectPtr ptr){ + return static_cast(ptr)->band(); +} + +int QRadioTuner_Frequency(QtObjectPtr ptr){ + return static_cast(ptr)->frequency(); +} + +int QRadioTuner_IsAntennaConnected(QtObjectPtr ptr){ + return static_cast(ptr)->isAntennaConnected(); +} + +int QRadioTuner_IsMuted(QtObjectPtr ptr){ + return static_cast(ptr)->isMuted(); +} + +int QRadioTuner_IsSearching(QtObjectPtr ptr){ + return static_cast(ptr)->isSearching(); +} + +int QRadioTuner_IsStereo(QtObjectPtr ptr){ + return static_cast(ptr)->isStereo(); +} + +QtObjectPtr QRadioTuner_RadioData(QtObjectPtr ptr){ + return static_cast(ptr)->radioData(); +} + +void QRadioTuner_SetMuted(QtObjectPtr ptr, int muted){ + QMetaObject::invokeMethod(static_cast(ptr), "setMuted", Q_ARG(bool, muted != 0)); +} + +void QRadioTuner_SetStereoMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setStereoMode(static_cast(mode)); +} + +void QRadioTuner_SetVolume(QtObjectPtr ptr, int volume){ + QMetaObject::invokeMethod(static_cast(ptr), "setVolume", Q_ARG(int, volume)); +} + +int QRadioTuner_SignalStrength(QtObjectPtr ptr){ + return static_cast(ptr)->signalStrength(); +} + +int QRadioTuner_StereoMode(QtObjectPtr ptr){ + return static_cast(ptr)->stereoMode(); +} + +int QRadioTuner_Volume(QtObjectPtr ptr){ + return static_cast(ptr)->volume(); +} + +QtObjectPtr QRadioTuner_NewQRadioTuner(QtObjectPtr parent){ + return new QRadioTuner(static_cast(parent)); +} + +void QRadioTuner_ConnectAntennaConnectedChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioTuner::antennaConnectedChanged), static_cast(ptr), static_cast(&MyQRadioTuner::Signal_AntennaConnectedChanged));; +} + +void QRadioTuner_DisconnectAntennaConnectedChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioTuner::antennaConnectedChanged), static_cast(ptr), static_cast(&MyQRadioTuner::Signal_AntennaConnectedChanged));; +} + +void QRadioTuner_ConnectBandChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioTuner::bandChanged), static_cast(ptr), static_cast(&MyQRadioTuner::Signal_BandChanged));; +} + +void QRadioTuner_DisconnectBandChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioTuner::bandChanged), static_cast(ptr), static_cast(&MyQRadioTuner::Signal_BandChanged));; +} + +void QRadioTuner_CancelSearch(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "cancelSearch"); +} + +int QRadioTuner_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +char* QRadioTuner_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +void QRadioTuner_ConnectFrequencyChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioTuner::frequencyChanged), static_cast(ptr), static_cast(&MyQRadioTuner::Signal_FrequencyChanged));; +} + +void QRadioTuner_DisconnectFrequencyChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioTuner::frequencyChanged), static_cast(ptr), static_cast(&MyQRadioTuner::Signal_FrequencyChanged));; +} + +int QRadioTuner_FrequencyStep(QtObjectPtr ptr, int band){ + return static_cast(ptr)->frequencyStep(static_cast(band)); +} + +int QRadioTuner_IsBandSupported(QtObjectPtr ptr, int band){ + return static_cast(ptr)->isBandSupported(static_cast(band)); +} + +void QRadioTuner_ConnectMutedChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioTuner::mutedChanged), static_cast(ptr), static_cast(&MyQRadioTuner::Signal_MutedChanged));; +} + +void QRadioTuner_DisconnectMutedChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioTuner::mutedChanged), static_cast(ptr), static_cast(&MyQRadioTuner::Signal_MutedChanged));; +} + +void QRadioTuner_SearchAllStations(QtObjectPtr ptr, int searchMode){ + QMetaObject::invokeMethod(static_cast(ptr), "searchAllStations", Q_ARG(QRadioTuner::SearchMode, static_cast(searchMode))); +} + +void QRadioTuner_SearchBackward(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "searchBackward"); +} + +void QRadioTuner_SearchForward(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "searchForward"); +} + +void QRadioTuner_ConnectSearchingChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioTuner::searchingChanged), static_cast(ptr), static_cast(&MyQRadioTuner::Signal_SearchingChanged));; +} + +void QRadioTuner_DisconnectSearchingChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioTuner::searchingChanged), static_cast(ptr), static_cast(&MyQRadioTuner::Signal_SearchingChanged));; +} + +void QRadioTuner_SetBand(QtObjectPtr ptr, int band){ + QMetaObject::invokeMethod(static_cast(ptr), "setBand", Q_ARG(QRadioTuner::Band, static_cast(band))); +} + +void QRadioTuner_SetFrequency(QtObjectPtr ptr, int frequency){ + QMetaObject::invokeMethod(static_cast(ptr), "setFrequency", Q_ARG(int, frequency)); +} + +void QRadioTuner_ConnectSignalStrengthChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioTuner::signalStrengthChanged), static_cast(ptr), static_cast(&MyQRadioTuner::Signal_SignalStrengthChanged));; +} + +void QRadioTuner_DisconnectSignalStrengthChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioTuner::signalStrengthChanged), static_cast(ptr), static_cast(&MyQRadioTuner::Signal_SignalStrengthChanged));; +} + +void QRadioTuner_Start(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "start"); +} + +void QRadioTuner_ConnectStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioTuner::stateChanged), static_cast(ptr), static_cast(&MyQRadioTuner::Signal_StateChanged));; +} + +void QRadioTuner_DisconnectStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioTuner::stateChanged), static_cast(ptr), static_cast(&MyQRadioTuner::Signal_StateChanged));; +} + +void QRadioTuner_ConnectStationFound(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioTuner::stationFound), static_cast(ptr), static_cast(&MyQRadioTuner::Signal_StationFound));; +} + +void QRadioTuner_DisconnectStationFound(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioTuner::stationFound), static_cast(ptr), static_cast(&MyQRadioTuner::Signal_StationFound));; +} + +void QRadioTuner_ConnectStereoStatusChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioTuner::stereoStatusChanged), static_cast(ptr), static_cast(&MyQRadioTuner::Signal_StereoStatusChanged));; +} + +void QRadioTuner_DisconnectStereoStatusChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioTuner::stereoStatusChanged), static_cast(ptr), static_cast(&MyQRadioTuner::Signal_StereoStatusChanged));; +} + +void QRadioTuner_Stop(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "stop"); +} + +void QRadioTuner_ConnectVolumeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioTuner::volumeChanged), static_cast(ptr), static_cast(&MyQRadioTuner::Signal_VolumeChanged));; +} + +void QRadioTuner_DisconnectVolumeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioTuner::volumeChanged), static_cast(ptr), static_cast(&MyQRadioTuner::Signal_VolumeChanged));; +} + +void QRadioTuner_DestroyQRadioTuner(QtObjectPtr ptr){ + static_cast(ptr)->~QRadioTuner(); +} + diff --git a/multimedia/qradiotuner.go b/multimedia/qradiotuner.go new file mode 100755 index 00000000..cc0ab94f --- /dev/null +++ b/multimedia/qradiotuner.go @@ -0,0 +1,449 @@ +package multimedia + +//#include "qradiotuner.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QRadioTuner struct { + QMediaObject +} + +type QRadioTunerITF interface { + QMediaObjectITF + QRadioTunerPTR() *QRadioTuner +} + +func PointerFromQRadioTuner(ptr QRadioTunerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QRadioTunerPTR().Pointer() + } + return nil +} + +func QRadioTunerFromPointer(ptr unsafe.Pointer) *QRadioTuner { + var n = new(QRadioTuner) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QRadioTuner_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QRadioTuner) QRadioTunerPTR() *QRadioTuner { + return ptr +} + +//QRadioTuner::Band +type QRadioTuner__Band int + +var ( + QRadioTuner__AM = QRadioTuner__Band(0) + QRadioTuner__FM = QRadioTuner__Band(1) + QRadioTuner__SW = QRadioTuner__Band(2) + QRadioTuner__LW = QRadioTuner__Band(3) + QRadioTuner__FM2 = QRadioTuner__Band(4) +) + +//QRadioTuner::Error +type QRadioTuner__Error int + +var ( + QRadioTuner__NoError = QRadioTuner__Error(0) + QRadioTuner__ResourceError = QRadioTuner__Error(1) + QRadioTuner__OpenError = QRadioTuner__Error(2) + QRadioTuner__OutOfRangeError = QRadioTuner__Error(3) +) + +//QRadioTuner::SearchMode +type QRadioTuner__SearchMode int + +var ( + QRadioTuner__SearchFast = QRadioTuner__SearchMode(0) + QRadioTuner__SearchGetStationId = QRadioTuner__SearchMode(1) +) + +//QRadioTuner::State +type QRadioTuner__State int + +var ( + QRadioTuner__ActiveState = QRadioTuner__State(0) + QRadioTuner__StoppedState = QRadioTuner__State(1) +) + +//QRadioTuner::StereoMode +type QRadioTuner__StereoMode int + +var ( + QRadioTuner__ForceStereo = QRadioTuner__StereoMode(0) + QRadioTuner__ForceMono = QRadioTuner__StereoMode(1) + QRadioTuner__Auto = QRadioTuner__StereoMode(2) +) + +func (ptr *QRadioTuner) Band() QRadioTuner__Band { + if ptr.Pointer() != nil { + return QRadioTuner__Band(C.QRadioTuner_Band(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRadioTuner) Frequency() int { + if ptr.Pointer() != nil { + return int(C.QRadioTuner_Frequency(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRadioTuner) IsAntennaConnected() bool { + if ptr.Pointer() != nil { + return C.QRadioTuner_IsAntennaConnected(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRadioTuner) IsMuted() bool { + if ptr.Pointer() != nil { + return C.QRadioTuner_IsMuted(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRadioTuner) IsSearching() bool { + if ptr.Pointer() != nil { + return C.QRadioTuner_IsSearching(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRadioTuner) IsStereo() bool { + if ptr.Pointer() != nil { + return C.QRadioTuner_IsStereo(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRadioTuner) RadioData() *QRadioData { + if ptr.Pointer() != nil { + return QRadioDataFromPointer(unsafe.Pointer(C.QRadioTuner_RadioData(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QRadioTuner) SetMuted(muted bool) { + if ptr.Pointer() != nil { + C.QRadioTuner_SetMuted(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(muted))) + } +} + +func (ptr *QRadioTuner) SetStereoMode(mode QRadioTuner__StereoMode) { + if ptr.Pointer() != nil { + C.QRadioTuner_SetStereoMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QRadioTuner) SetVolume(volume int) { + if ptr.Pointer() != nil { + C.QRadioTuner_SetVolume(C.QtObjectPtr(ptr.Pointer()), C.int(volume)) + } +} + +func (ptr *QRadioTuner) SignalStrength() int { + if ptr.Pointer() != nil { + return int(C.QRadioTuner_SignalStrength(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRadioTuner) StereoMode() QRadioTuner__StereoMode { + if ptr.Pointer() != nil { + return QRadioTuner__StereoMode(C.QRadioTuner_StereoMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRadioTuner) Volume() int { + if ptr.Pointer() != nil { + return int(C.QRadioTuner_Volume(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQRadioTuner(parent core.QObjectITF) *QRadioTuner { + return QRadioTunerFromPointer(unsafe.Pointer(C.QRadioTuner_NewQRadioTuner(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QRadioTuner) ConnectAntennaConnectedChanged(f func(connectionStatus bool)) { + if ptr.Pointer() != nil { + C.QRadioTuner_ConnectAntennaConnectedChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "antennaConnectedChanged", f) + } +} + +func (ptr *QRadioTuner) DisconnectAntennaConnectedChanged() { + if ptr.Pointer() != nil { + C.QRadioTuner_DisconnectAntennaConnectedChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "antennaConnectedChanged") + } +} + +//export callbackQRadioTunerAntennaConnectedChanged +func callbackQRadioTunerAntennaConnectedChanged(ptrName *C.char, connectionStatus C.int) { + qt.GetSignal(C.GoString(ptrName), "antennaConnectedChanged").(func(bool))(int(connectionStatus) != 0) +} + +func (ptr *QRadioTuner) ConnectBandChanged(f func(band QRadioTuner__Band)) { + if ptr.Pointer() != nil { + C.QRadioTuner_ConnectBandChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "bandChanged", f) + } +} + +func (ptr *QRadioTuner) DisconnectBandChanged() { + if ptr.Pointer() != nil { + C.QRadioTuner_DisconnectBandChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "bandChanged") + } +} + +//export callbackQRadioTunerBandChanged +func callbackQRadioTunerBandChanged(ptrName *C.char, band C.int) { + qt.GetSignal(C.GoString(ptrName), "bandChanged").(func(QRadioTuner__Band))(QRadioTuner__Band(band)) +} + +func (ptr *QRadioTuner) CancelSearch() { + if ptr.Pointer() != nil { + C.QRadioTuner_CancelSearch(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QRadioTuner) Error() QRadioTuner__Error { + if ptr.Pointer() != nil { + return QRadioTuner__Error(C.QRadioTuner_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRadioTuner) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QRadioTuner_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QRadioTuner) ConnectFrequencyChanged(f func(frequency int)) { + if ptr.Pointer() != nil { + C.QRadioTuner_ConnectFrequencyChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "frequencyChanged", f) + } +} + +func (ptr *QRadioTuner) DisconnectFrequencyChanged() { + if ptr.Pointer() != nil { + C.QRadioTuner_DisconnectFrequencyChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "frequencyChanged") + } +} + +//export callbackQRadioTunerFrequencyChanged +func callbackQRadioTunerFrequencyChanged(ptrName *C.char, frequency C.int) { + qt.GetSignal(C.GoString(ptrName), "frequencyChanged").(func(int))(int(frequency)) +} + +func (ptr *QRadioTuner) FrequencyStep(band QRadioTuner__Band) int { + if ptr.Pointer() != nil { + return int(C.QRadioTuner_FrequencyStep(C.QtObjectPtr(ptr.Pointer()), C.int(band))) + } + return 0 +} + +func (ptr *QRadioTuner) IsBandSupported(band QRadioTuner__Band) bool { + if ptr.Pointer() != nil { + return C.QRadioTuner_IsBandSupported(C.QtObjectPtr(ptr.Pointer()), C.int(band)) != 0 + } + return false +} + +func (ptr *QRadioTuner) ConnectMutedChanged(f func(muted bool)) { + if ptr.Pointer() != nil { + C.QRadioTuner_ConnectMutedChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "mutedChanged", f) + } +} + +func (ptr *QRadioTuner) DisconnectMutedChanged() { + if ptr.Pointer() != nil { + C.QRadioTuner_DisconnectMutedChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "mutedChanged") + } +} + +//export callbackQRadioTunerMutedChanged +func callbackQRadioTunerMutedChanged(ptrName *C.char, muted C.int) { + qt.GetSignal(C.GoString(ptrName), "mutedChanged").(func(bool))(int(muted) != 0) +} + +func (ptr *QRadioTuner) SearchAllStations(searchMode QRadioTuner__SearchMode) { + if ptr.Pointer() != nil { + C.QRadioTuner_SearchAllStations(C.QtObjectPtr(ptr.Pointer()), C.int(searchMode)) + } +} + +func (ptr *QRadioTuner) SearchBackward() { + if ptr.Pointer() != nil { + C.QRadioTuner_SearchBackward(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QRadioTuner) SearchForward() { + if ptr.Pointer() != nil { + C.QRadioTuner_SearchForward(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QRadioTuner) ConnectSearchingChanged(f func(searching bool)) { + if ptr.Pointer() != nil { + C.QRadioTuner_ConnectSearchingChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "searchingChanged", f) + } +} + +func (ptr *QRadioTuner) DisconnectSearchingChanged() { + if ptr.Pointer() != nil { + C.QRadioTuner_DisconnectSearchingChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "searchingChanged") + } +} + +//export callbackQRadioTunerSearchingChanged +func callbackQRadioTunerSearchingChanged(ptrName *C.char, searching C.int) { + qt.GetSignal(C.GoString(ptrName), "searchingChanged").(func(bool))(int(searching) != 0) +} + +func (ptr *QRadioTuner) SetBand(band QRadioTuner__Band) { + if ptr.Pointer() != nil { + C.QRadioTuner_SetBand(C.QtObjectPtr(ptr.Pointer()), C.int(band)) + } +} + +func (ptr *QRadioTuner) SetFrequency(frequency int) { + if ptr.Pointer() != nil { + C.QRadioTuner_SetFrequency(C.QtObjectPtr(ptr.Pointer()), C.int(frequency)) + } +} + +func (ptr *QRadioTuner) ConnectSignalStrengthChanged(f func(strength int)) { + if ptr.Pointer() != nil { + C.QRadioTuner_ConnectSignalStrengthChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "signalStrengthChanged", f) + } +} + +func (ptr *QRadioTuner) DisconnectSignalStrengthChanged() { + if ptr.Pointer() != nil { + C.QRadioTuner_DisconnectSignalStrengthChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "signalStrengthChanged") + } +} + +//export callbackQRadioTunerSignalStrengthChanged +func callbackQRadioTunerSignalStrengthChanged(ptrName *C.char, strength C.int) { + qt.GetSignal(C.GoString(ptrName), "signalStrengthChanged").(func(int))(int(strength)) +} + +func (ptr *QRadioTuner) Start() { + if ptr.Pointer() != nil { + C.QRadioTuner_Start(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QRadioTuner) ConnectStateChanged(f func(state QRadioTuner__State)) { + if ptr.Pointer() != nil { + C.QRadioTuner_ConnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stateChanged", f) + } +} + +func (ptr *QRadioTuner) DisconnectStateChanged() { + if ptr.Pointer() != nil { + C.QRadioTuner_DisconnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stateChanged") + } +} + +//export callbackQRadioTunerStateChanged +func callbackQRadioTunerStateChanged(ptrName *C.char, state C.int) { + qt.GetSignal(C.GoString(ptrName), "stateChanged").(func(QRadioTuner__State))(QRadioTuner__State(state)) +} + +func (ptr *QRadioTuner) ConnectStationFound(f func(frequency int, stationId string)) { + if ptr.Pointer() != nil { + C.QRadioTuner_ConnectStationFound(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stationFound", f) + } +} + +func (ptr *QRadioTuner) DisconnectStationFound() { + if ptr.Pointer() != nil { + C.QRadioTuner_DisconnectStationFound(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stationFound") + } +} + +//export callbackQRadioTunerStationFound +func callbackQRadioTunerStationFound(ptrName *C.char, frequency C.int, stationId *C.char) { + qt.GetSignal(C.GoString(ptrName), "stationFound").(func(int, string))(int(frequency), C.GoString(stationId)) +} + +func (ptr *QRadioTuner) ConnectStereoStatusChanged(f func(stereo bool)) { + if ptr.Pointer() != nil { + C.QRadioTuner_ConnectStereoStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stereoStatusChanged", f) + } +} + +func (ptr *QRadioTuner) DisconnectStereoStatusChanged() { + if ptr.Pointer() != nil { + C.QRadioTuner_DisconnectStereoStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stereoStatusChanged") + } +} + +//export callbackQRadioTunerStereoStatusChanged +func callbackQRadioTunerStereoStatusChanged(ptrName *C.char, stereo C.int) { + qt.GetSignal(C.GoString(ptrName), "stereoStatusChanged").(func(bool))(int(stereo) != 0) +} + +func (ptr *QRadioTuner) Stop() { + if ptr.Pointer() != nil { + C.QRadioTuner_Stop(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QRadioTuner) ConnectVolumeChanged(f func(volume int)) { + if ptr.Pointer() != nil { + C.QRadioTuner_ConnectVolumeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "volumeChanged", f) + } +} + +func (ptr *QRadioTuner) DisconnectVolumeChanged() { + if ptr.Pointer() != nil { + C.QRadioTuner_DisconnectVolumeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "volumeChanged") + } +} + +//export callbackQRadioTunerVolumeChanged +func callbackQRadioTunerVolumeChanged(ptrName *C.char, volume C.int) { + qt.GetSignal(C.GoString(ptrName), "volumeChanged").(func(int))(int(volume)) +} + +func (ptr *QRadioTuner) DestroyQRadioTuner() { + if ptr.Pointer() != nil { + C.QRadioTuner_DestroyQRadioTuner(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qradiotuner.h b/multimedia/qradiotuner.h new file mode 100755 index 00000000..5252a17c --- /dev/null +++ b/multimedia/qradiotuner.h @@ -0,0 +1,56 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QRadioTuner_Band(QtObjectPtr ptr); +int QRadioTuner_Frequency(QtObjectPtr ptr); +int QRadioTuner_IsAntennaConnected(QtObjectPtr ptr); +int QRadioTuner_IsMuted(QtObjectPtr ptr); +int QRadioTuner_IsSearching(QtObjectPtr ptr); +int QRadioTuner_IsStereo(QtObjectPtr ptr); +QtObjectPtr QRadioTuner_RadioData(QtObjectPtr ptr); +void QRadioTuner_SetMuted(QtObjectPtr ptr, int muted); +void QRadioTuner_SetStereoMode(QtObjectPtr ptr, int mode); +void QRadioTuner_SetVolume(QtObjectPtr ptr, int volume); +int QRadioTuner_SignalStrength(QtObjectPtr ptr); +int QRadioTuner_StereoMode(QtObjectPtr ptr); +int QRadioTuner_Volume(QtObjectPtr ptr); +QtObjectPtr QRadioTuner_NewQRadioTuner(QtObjectPtr parent); +void QRadioTuner_ConnectAntennaConnectedChanged(QtObjectPtr ptr); +void QRadioTuner_DisconnectAntennaConnectedChanged(QtObjectPtr ptr); +void QRadioTuner_ConnectBandChanged(QtObjectPtr ptr); +void QRadioTuner_DisconnectBandChanged(QtObjectPtr ptr); +void QRadioTuner_CancelSearch(QtObjectPtr ptr); +int QRadioTuner_Error(QtObjectPtr ptr); +char* QRadioTuner_ErrorString(QtObjectPtr ptr); +void QRadioTuner_ConnectFrequencyChanged(QtObjectPtr ptr); +void QRadioTuner_DisconnectFrequencyChanged(QtObjectPtr ptr); +int QRadioTuner_FrequencyStep(QtObjectPtr ptr, int band); +int QRadioTuner_IsBandSupported(QtObjectPtr ptr, int band); +void QRadioTuner_ConnectMutedChanged(QtObjectPtr ptr); +void QRadioTuner_DisconnectMutedChanged(QtObjectPtr ptr); +void QRadioTuner_SearchAllStations(QtObjectPtr ptr, int searchMode); +void QRadioTuner_SearchBackward(QtObjectPtr ptr); +void QRadioTuner_SearchForward(QtObjectPtr ptr); +void QRadioTuner_ConnectSearchingChanged(QtObjectPtr ptr); +void QRadioTuner_DisconnectSearchingChanged(QtObjectPtr ptr); +void QRadioTuner_SetBand(QtObjectPtr ptr, int band); +void QRadioTuner_SetFrequency(QtObjectPtr ptr, int frequency); +void QRadioTuner_ConnectSignalStrengthChanged(QtObjectPtr ptr); +void QRadioTuner_DisconnectSignalStrengthChanged(QtObjectPtr ptr); +void QRadioTuner_Start(QtObjectPtr ptr); +void QRadioTuner_ConnectStateChanged(QtObjectPtr ptr); +void QRadioTuner_DisconnectStateChanged(QtObjectPtr ptr); +void QRadioTuner_ConnectStationFound(QtObjectPtr ptr); +void QRadioTuner_DisconnectStationFound(QtObjectPtr ptr); +void QRadioTuner_ConnectStereoStatusChanged(QtObjectPtr ptr); +void QRadioTuner_DisconnectStereoStatusChanged(QtObjectPtr ptr); +void QRadioTuner_Stop(QtObjectPtr ptr); +void QRadioTuner_ConnectVolumeChanged(QtObjectPtr ptr); +void QRadioTuner_DisconnectVolumeChanged(QtObjectPtr ptr); +void QRadioTuner_DestroyQRadioTuner(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qradiotunercontrol.cpp b/multimedia/qradiotunercontrol.cpp new file mode 100755 index 00000000..327b5cd8 --- /dev/null +++ b/multimedia/qradiotunercontrol.cpp @@ -0,0 +1,204 @@ +#include "qradiotunercontrol.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQRadioTunerControl: public QRadioTunerControl { +public: +void Signal_AntennaConnectedChanged(bool connectionStatus){callbackQRadioTunerControlAntennaConnectedChanged(this->objectName().toUtf8().data(), connectionStatus);}; +void Signal_BandChanged(QRadioTuner::Band band){callbackQRadioTunerControlBandChanged(this->objectName().toUtf8().data(), band);}; +void Signal_FrequencyChanged(int frequency){callbackQRadioTunerControlFrequencyChanged(this->objectName().toUtf8().data(), frequency);}; +void Signal_MutedChanged(bool muted){callbackQRadioTunerControlMutedChanged(this->objectName().toUtf8().data(), muted);}; +void Signal_SearchingChanged(bool searching){callbackQRadioTunerControlSearchingChanged(this->objectName().toUtf8().data(), searching);}; +void Signal_SignalStrengthChanged(int strength){callbackQRadioTunerControlSignalStrengthChanged(this->objectName().toUtf8().data(), strength);}; +void Signal_StateChanged(QRadioTuner::State state){callbackQRadioTunerControlStateChanged(this->objectName().toUtf8().data(), state);}; +void Signal_StationFound(int frequency, QString stationId){callbackQRadioTunerControlStationFound(this->objectName().toUtf8().data(), frequency, stationId.toUtf8().data());}; +void Signal_StereoStatusChanged(bool stereo){callbackQRadioTunerControlStereoStatusChanged(this->objectName().toUtf8().data(), stereo);}; +void Signal_VolumeChanged(int volume){callbackQRadioTunerControlVolumeChanged(this->objectName().toUtf8().data(), volume);}; +}; + +void QRadioTunerControl_ConnectAntennaConnectedChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioTunerControl::antennaConnectedChanged), static_cast(ptr), static_cast(&MyQRadioTunerControl::Signal_AntennaConnectedChanged));; +} + +void QRadioTunerControl_DisconnectAntennaConnectedChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioTunerControl::antennaConnectedChanged), static_cast(ptr), static_cast(&MyQRadioTunerControl::Signal_AntennaConnectedChanged));; +} + +int QRadioTunerControl_Band(QtObjectPtr ptr){ + return static_cast(ptr)->band(); +} + +void QRadioTunerControl_ConnectBandChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioTunerControl::bandChanged), static_cast(ptr), static_cast(&MyQRadioTunerControl::Signal_BandChanged));; +} + +void QRadioTunerControl_DisconnectBandChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioTunerControl::bandChanged), static_cast(ptr), static_cast(&MyQRadioTunerControl::Signal_BandChanged));; +} + +void QRadioTunerControl_CancelSearch(QtObjectPtr ptr){ + static_cast(ptr)->cancelSearch(); +} + +int QRadioTunerControl_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +char* QRadioTunerControl_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +int QRadioTunerControl_Frequency(QtObjectPtr ptr){ + return static_cast(ptr)->frequency(); +} + +void QRadioTunerControl_ConnectFrequencyChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioTunerControl::frequencyChanged), static_cast(ptr), static_cast(&MyQRadioTunerControl::Signal_FrequencyChanged));; +} + +void QRadioTunerControl_DisconnectFrequencyChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioTunerControl::frequencyChanged), static_cast(ptr), static_cast(&MyQRadioTunerControl::Signal_FrequencyChanged));; +} + +int QRadioTunerControl_FrequencyStep(QtObjectPtr ptr, int band){ + return static_cast(ptr)->frequencyStep(static_cast(band)); +} + +int QRadioTunerControl_IsAntennaConnected(QtObjectPtr ptr){ + return static_cast(ptr)->isAntennaConnected(); +} + +int QRadioTunerControl_IsBandSupported(QtObjectPtr ptr, int band){ + return static_cast(ptr)->isBandSupported(static_cast(band)); +} + +int QRadioTunerControl_IsMuted(QtObjectPtr ptr){ + return static_cast(ptr)->isMuted(); +} + +int QRadioTunerControl_IsSearching(QtObjectPtr ptr){ + return static_cast(ptr)->isSearching(); +} + +int QRadioTunerControl_IsStereo(QtObjectPtr ptr){ + return static_cast(ptr)->isStereo(); +} + +void QRadioTunerControl_ConnectMutedChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioTunerControl::mutedChanged), static_cast(ptr), static_cast(&MyQRadioTunerControl::Signal_MutedChanged));; +} + +void QRadioTunerControl_DisconnectMutedChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioTunerControl::mutedChanged), static_cast(ptr), static_cast(&MyQRadioTunerControl::Signal_MutedChanged));; +} + +void QRadioTunerControl_SearchAllStations(QtObjectPtr ptr, int searchMode){ + static_cast(ptr)->searchAllStations(static_cast(searchMode)); +} + +void QRadioTunerControl_SearchBackward(QtObjectPtr ptr){ + static_cast(ptr)->searchBackward(); +} + +void QRadioTunerControl_SearchForward(QtObjectPtr ptr){ + static_cast(ptr)->searchForward(); +} + +void QRadioTunerControl_ConnectSearchingChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioTunerControl::searchingChanged), static_cast(ptr), static_cast(&MyQRadioTunerControl::Signal_SearchingChanged));; +} + +void QRadioTunerControl_DisconnectSearchingChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioTunerControl::searchingChanged), static_cast(ptr), static_cast(&MyQRadioTunerControl::Signal_SearchingChanged));; +} + +void QRadioTunerControl_SetBand(QtObjectPtr ptr, int band){ + static_cast(ptr)->setBand(static_cast(band)); +} + +void QRadioTunerControl_SetFrequency(QtObjectPtr ptr, int frequency){ + static_cast(ptr)->setFrequency(frequency); +} + +void QRadioTunerControl_SetMuted(QtObjectPtr ptr, int muted){ + static_cast(ptr)->setMuted(muted != 0); +} + +void QRadioTunerControl_SetStereoMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setStereoMode(static_cast(mode)); +} + +void QRadioTunerControl_SetVolume(QtObjectPtr ptr, int volume){ + static_cast(ptr)->setVolume(volume); +} + +int QRadioTunerControl_SignalStrength(QtObjectPtr ptr){ + return static_cast(ptr)->signalStrength(); +} + +void QRadioTunerControl_ConnectSignalStrengthChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioTunerControl::signalStrengthChanged), static_cast(ptr), static_cast(&MyQRadioTunerControl::Signal_SignalStrengthChanged));; +} + +void QRadioTunerControl_DisconnectSignalStrengthChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioTunerControl::signalStrengthChanged), static_cast(ptr), static_cast(&MyQRadioTunerControl::Signal_SignalStrengthChanged));; +} + +void QRadioTunerControl_Start(QtObjectPtr ptr){ + static_cast(ptr)->start(); +} + +void QRadioTunerControl_ConnectStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioTunerControl::stateChanged), static_cast(ptr), static_cast(&MyQRadioTunerControl::Signal_StateChanged));; +} + +void QRadioTunerControl_DisconnectStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioTunerControl::stateChanged), static_cast(ptr), static_cast(&MyQRadioTunerControl::Signal_StateChanged));; +} + +void QRadioTunerControl_ConnectStationFound(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioTunerControl::stationFound), static_cast(ptr), static_cast(&MyQRadioTunerControl::Signal_StationFound));; +} + +void QRadioTunerControl_DisconnectStationFound(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioTunerControl::stationFound), static_cast(ptr), static_cast(&MyQRadioTunerControl::Signal_StationFound));; +} + +int QRadioTunerControl_StereoMode(QtObjectPtr ptr){ + return static_cast(ptr)->stereoMode(); +} + +void QRadioTunerControl_ConnectStereoStatusChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioTunerControl::stereoStatusChanged), static_cast(ptr), static_cast(&MyQRadioTunerControl::Signal_StereoStatusChanged));; +} + +void QRadioTunerControl_DisconnectStereoStatusChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioTunerControl::stereoStatusChanged), static_cast(ptr), static_cast(&MyQRadioTunerControl::Signal_StereoStatusChanged));; +} + +void QRadioTunerControl_Stop(QtObjectPtr ptr){ + static_cast(ptr)->stop(); +} + +int QRadioTunerControl_Volume(QtObjectPtr ptr){ + return static_cast(ptr)->volume(); +} + +void QRadioTunerControl_ConnectVolumeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRadioTunerControl::volumeChanged), static_cast(ptr), static_cast(&MyQRadioTunerControl::Signal_VolumeChanged));; +} + +void QRadioTunerControl_DisconnectVolumeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRadioTunerControl::volumeChanged), static_cast(ptr), static_cast(&MyQRadioTunerControl::Signal_VolumeChanged));; +} + +void QRadioTunerControl_DestroyQRadioTunerControl(QtObjectPtr ptr){ + static_cast(ptr)->~QRadioTunerControl(); +} + diff --git a/multimedia/qradiotunercontrol.go b/multimedia/qradiotunercontrol.go new file mode 100755 index 00000000..a41d3b3c --- /dev/null +++ b/multimedia/qradiotunercontrol.go @@ -0,0 +1,391 @@ +package multimedia + +//#include "qradiotunercontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QRadioTunerControl struct { + QMediaControl +} + +type QRadioTunerControlITF interface { + QMediaControlITF + QRadioTunerControlPTR() *QRadioTunerControl +} + +func PointerFromQRadioTunerControl(ptr QRadioTunerControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QRadioTunerControlPTR().Pointer() + } + return nil +} + +func QRadioTunerControlFromPointer(ptr unsafe.Pointer) *QRadioTunerControl { + var n = new(QRadioTunerControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QRadioTunerControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QRadioTunerControl) QRadioTunerControlPTR() *QRadioTunerControl { + return ptr +} + +func (ptr *QRadioTunerControl) ConnectAntennaConnectedChanged(f func(connectionStatus bool)) { + if ptr.Pointer() != nil { + C.QRadioTunerControl_ConnectAntennaConnectedChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "antennaConnectedChanged", f) + } +} + +func (ptr *QRadioTunerControl) DisconnectAntennaConnectedChanged() { + if ptr.Pointer() != nil { + C.QRadioTunerControl_DisconnectAntennaConnectedChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "antennaConnectedChanged") + } +} + +//export callbackQRadioTunerControlAntennaConnectedChanged +func callbackQRadioTunerControlAntennaConnectedChanged(ptrName *C.char, connectionStatus C.int) { + qt.GetSignal(C.GoString(ptrName), "antennaConnectedChanged").(func(bool))(int(connectionStatus) != 0) +} + +func (ptr *QRadioTunerControl) Band() QRadioTuner__Band { + if ptr.Pointer() != nil { + return QRadioTuner__Band(C.QRadioTunerControl_Band(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRadioTunerControl) ConnectBandChanged(f func(band QRadioTuner__Band)) { + if ptr.Pointer() != nil { + C.QRadioTunerControl_ConnectBandChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "bandChanged", f) + } +} + +func (ptr *QRadioTunerControl) DisconnectBandChanged() { + if ptr.Pointer() != nil { + C.QRadioTunerControl_DisconnectBandChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "bandChanged") + } +} + +//export callbackQRadioTunerControlBandChanged +func callbackQRadioTunerControlBandChanged(ptrName *C.char, band C.int) { + qt.GetSignal(C.GoString(ptrName), "bandChanged").(func(QRadioTuner__Band))(QRadioTuner__Band(band)) +} + +func (ptr *QRadioTunerControl) CancelSearch() { + if ptr.Pointer() != nil { + C.QRadioTunerControl_CancelSearch(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QRadioTunerControl) Error() QRadioTuner__Error { + if ptr.Pointer() != nil { + return QRadioTuner__Error(C.QRadioTunerControl_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRadioTunerControl) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QRadioTunerControl_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QRadioTunerControl) Frequency() int { + if ptr.Pointer() != nil { + return int(C.QRadioTunerControl_Frequency(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRadioTunerControl) ConnectFrequencyChanged(f func(frequency int)) { + if ptr.Pointer() != nil { + C.QRadioTunerControl_ConnectFrequencyChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "frequencyChanged", f) + } +} + +func (ptr *QRadioTunerControl) DisconnectFrequencyChanged() { + if ptr.Pointer() != nil { + C.QRadioTunerControl_DisconnectFrequencyChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "frequencyChanged") + } +} + +//export callbackQRadioTunerControlFrequencyChanged +func callbackQRadioTunerControlFrequencyChanged(ptrName *C.char, frequency C.int) { + qt.GetSignal(C.GoString(ptrName), "frequencyChanged").(func(int))(int(frequency)) +} + +func (ptr *QRadioTunerControl) FrequencyStep(band QRadioTuner__Band) int { + if ptr.Pointer() != nil { + return int(C.QRadioTunerControl_FrequencyStep(C.QtObjectPtr(ptr.Pointer()), C.int(band))) + } + return 0 +} + +func (ptr *QRadioTunerControl) IsAntennaConnected() bool { + if ptr.Pointer() != nil { + return C.QRadioTunerControl_IsAntennaConnected(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRadioTunerControl) IsBandSupported(band QRadioTuner__Band) bool { + if ptr.Pointer() != nil { + return C.QRadioTunerControl_IsBandSupported(C.QtObjectPtr(ptr.Pointer()), C.int(band)) != 0 + } + return false +} + +func (ptr *QRadioTunerControl) IsMuted() bool { + if ptr.Pointer() != nil { + return C.QRadioTunerControl_IsMuted(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRadioTunerControl) IsSearching() bool { + if ptr.Pointer() != nil { + return C.QRadioTunerControl_IsSearching(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRadioTunerControl) IsStereo() bool { + if ptr.Pointer() != nil { + return C.QRadioTunerControl_IsStereo(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRadioTunerControl) ConnectMutedChanged(f func(muted bool)) { + if ptr.Pointer() != nil { + C.QRadioTunerControl_ConnectMutedChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "mutedChanged", f) + } +} + +func (ptr *QRadioTunerControl) DisconnectMutedChanged() { + if ptr.Pointer() != nil { + C.QRadioTunerControl_DisconnectMutedChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "mutedChanged") + } +} + +//export callbackQRadioTunerControlMutedChanged +func callbackQRadioTunerControlMutedChanged(ptrName *C.char, muted C.int) { + qt.GetSignal(C.GoString(ptrName), "mutedChanged").(func(bool))(int(muted) != 0) +} + +func (ptr *QRadioTunerControl) SearchAllStations(searchMode QRadioTuner__SearchMode) { + if ptr.Pointer() != nil { + C.QRadioTunerControl_SearchAllStations(C.QtObjectPtr(ptr.Pointer()), C.int(searchMode)) + } +} + +func (ptr *QRadioTunerControl) SearchBackward() { + if ptr.Pointer() != nil { + C.QRadioTunerControl_SearchBackward(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QRadioTunerControl) SearchForward() { + if ptr.Pointer() != nil { + C.QRadioTunerControl_SearchForward(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QRadioTunerControl) ConnectSearchingChanged(f func(searching bool)) { + if ptr.Pointer() != nil { + C.QRadioTunerControl_ConnectSearchingChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "searchingChanged", f) + } +} + +func (ptr *QRadioTunerControl) DisconnectSearchingChanged() { + if ptr.Pointer() != nil { + C.QRadioTunerControl_DisconnectSearchingChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "searchingChanged") + } +} + +//export callbackQRadioTunerControlSearchingChanged +func callbackQRadioTunerControlSearchingChanged(ptrName *C.char, searching C.int) { + qt.GetSignal(C.GoString(ptrName), "searchingChanged").(func(bool))(int(searching) != 0) +} + +func (ptr *QRadioTunerControl) SetBand(band QRadioTuner__Band) { + if ptr.Pointer() != nil { + C.QRadioTunerControl_SetBand(C.QtObjectPtr(ptr.Pointer()), C.int(band)) + } +} + +func (ptr *QRadioTunerControl) SetFrequency(frequency int) { + if ptr.Pointer() != nil { + C.QRadioTunerControl_SetFrequency(C.QtObjectPtr(ptr.Pointer()), C.int(frequency)) + } +} + +func (ptr *QRadioTunerControl) SetMuted(muted bool) { + if ptr.Pointer() != nil { + C.QRadioTunerControl_SetMuted(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(muted))) + } +} + +func (ptr *QRadioTunerControl) SetStereoMode(mode QRadioTuner__StereoMode) { + if ptr.Pointer() != nil { + C.QRadioTunerControl_SetStereoMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QRadioTunerControl) SetVolume(volume int) { + if ptr.Pointer() != nil { + C.QRadioTunerControl_SetVolume(C.QtObjectPtr(ptr.Pointer()), C.int(volume)) + } +} + +func (ptr *QRadioTunerControl) SignalStrength() int { + if ptr.Pointer() != nil { + return int(C.QRadioTunerControl_SignalStrength(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRadioTunerControl) ConnectSignalStrengthChanged(f func(strength int)) { + if ptr.Pointer() != nil { + C.QRadioTunerControl_ConnectSignalStrengthChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "signalStrengthChanged", f) + } +} + +func (ptr *QRadioTunerControl) DisconnectSignalStrengthChanged() { + if ptr.Pointer() != nil { + C.QRadioTunerControl_DisconnectSignalStrengthChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "signalStrengthChanged") + } +} + +//export callbackQRadioTunerControlSignalStrengthChanged +func callbackQRadioTunerControlSignalStrengthChanged(ptrName *C.char, strength C.int) { + qt.GetSignal(C.GoString(ptrName), "signalStrengthChanged").(func(int))(int(strength)) +} + +func (ptr *QRadioTunerControl) Start() { + if ptr.Pointer() != nil { + C.QRadioTunerControl_Start(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QRadioTunerControl) ConnectStateChanged(f func(state QRadioTuner__State)) { + if ptr.Pointer() != nil { + C.QRadioTunerControl_ConnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stateChanged", f) + } +} + +func (ptr *QRadioTunerControl) DisconnectStateChanged() { + if ptr.Pointer() != nil { + C.QRadioTunerControl_DisconnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stateChanged") + } +} + +//export callbackQRadioTunerControlStateChanged +func callbackQRadioTunerControlStateChanged(ptrName *C.char, state C.int) { + qt.GetSignal(C.GoString(ptrName), "stateChanged").(func(QRadioTuner__State))(QRadioTuner__State(state)) +} + +func (ptr *QRadioTunerControl) ConnectStationFound(f func(frequency int, stationId string)) { + if ptr.Pointer() != nil { + C.QRadioTunerControl_ConnectStationFound(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stationFound", f) + } +} + +func (ptr *QRadioTunerControl) DisconnectStationFound() { + if ptr.Pointer() != nil { + C.QRadioTunerControl_DisconnectStationFound(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stationFound") + } +} + +//export callbackQRadioTunerControlStationFound +func callbackQRadioTunerControlStationFound(ptrName *C.char, frequency C.int, stationId *C.char) { + qt.GetSignal(C.GoString(ptrName), "stationFound").(func(int, string))(int(frequency), C.GoString(stationId)) +} + +func (ptr *QRadioTunerControl) StereoMode() QRadioTuner__StereoMode { + if ptr.Pointer() != nil { + return QRadioTuner__StereoMode(C.QRadioTunerControl_StereoMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRadioTunerControl) ConnectStereoStatusChanged(f func(stereo bool)) { + if ptr.Pointer() != nil { + C.QRadioTunerControl_ConnectStereoStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stereoStatusChanged", f) + } +} + +func (ptr *QRadioTunerControl) DisconnectStereoStatusChanged() { + if ptr.Pointer() != nil { + C.QRadioTunerControl_DisconnectStereoStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stereoStatusChanged") + } +} + +//export callbackQRadioTunerControlStereoStatusChanged +func callbackQRadioTunerControlStereoStatusChanged(ptrName *C.char, stereo C.int) { + qt.GetSignal(C.GoString(ptrName), "stereoStatusChanged").(func(bool))(int(stereo) != 0) +} + +func (ptr *QRadioTunerControl) Stop() { + if ptr.Pointer() != nil { + C.QRadioTunerControl_Stop(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QRadioTunerControl) Volume() int { + if ptr.Pointer() != nil { + return int(C.QRadioTunerControl_Volume(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRadioTunerControl) ConnectVolumeChanged(f func(volume int)) { + if ptr.Pointer() != nil { + C.QRadioTunerControl_ConnectVolumeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "volumeChanged", f) + } +} + +func (ptr *QRadioTunerControl) DisconnectVolumeChanged() { + if ptr.Pointer() != nil { + C.QRadioTunerControl_DisconnectVolumeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "volumeChanged") + } +} + +//export callbackQRadioTunerControlVolumeChanged +func callbackQRadioTunerControlVolumeChanged(ptrName *C.char, volume C.int) { + qt.GetSignal(C.GoString(ptrName), "volumeChanged").(func(int))(int(volume)) +} + +func (ptr *QRadioTunerControl) DestroyQRadioTunerControl() { + if ptr.Pointer() != nil { + C.QRadioTunerControl_DestroyQRadioTunerControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qradiotunercontrol.h b/multimedia/qradiotunercontrol.h new file mode 100755 index 00000000..e9d8cb25 --- /dev/null +++ b/multimedia/qradiotunercontrol.h @@ -0,0 +1,54 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QRadioTunerControl_ConnectAntennaConnectedChanged(QtObjectPtr ptr); +void QRadioTunerControl_DisconnectAntennaConnectedChanged(QtObjectPtr ptr); +int QRadioTunerControl_Band(QtObjectPtr ptr); +void QRadioTunerControl_ConnectBandChanged(QtObjectPtr ptr); +void QRadioTunerControl_DisconnectBandChanged(QtObjectPtr ptr); +void QRadioTunerControl_CancelSearch(QtObjectPtr ptr); +int QRadioTunerControl_Error(QtObjectPtr ptr); +char* QRadioTunerControl_ErrorString(QtObjectPtr ptr); +int QRadioTunerControl_Frequency(QtObjectPtr ptr); +void QRadioTunerControl_ConnectFrequencyChanged(QtObjectPtr ptr); +void QRadioTunerControl_DisconnectFrequencyChanged(QtObjectPtr ptr); +int QRadioTunerControl_FrequencyStep(QtObjectPtr ptr, int band); +int QRadioTunerControl_IsAntennaConnected(QtObjectPtr ptr); +int QRadioTunerControl_IsBandSupported(QtObjectPtr ptr, int band); +int QRadioTunerControl_IsMuted(QtObjectPtr ptr); +int QRadioTunerControl_IsSearching(QtObjectPtr ptr); +int QRadioTunerControl_IsStereo(QtObjectPtr ptr); +void QRadioTunerControl_ConnectMutedChanged(QtObjectPtr ptr); +void QRadioTunerControl_DisconnectMutedChanged(QtObjectPtr ptr); +void QRadioTunerControl_SearchAllStations(QtObjectPtr ptr, int searchMode); +void QRadioTunerControl_SearchBackward(QtObjectPtr ptr); +void QRadioTunerControl_SearchForward(QtObjectPtr ptr); +void QRadioTunerControl_ConnectSearchingChanged(QtObjectPtr ptr); +void QRadioTunerControl_DisconnectSearchingChanged(QtObjectPtr ptr); +void QRadioTunerControl_SetBand(QtObjectPtr ptr, int band); +void QRadioTunerControl_SetFrequency(QtObjectPtr ptr, int frequency); +void QRadioTunerControl_SetMuted(QtObjectPtr ptr, int muted); +void QRadioTunerControl_SetStereoMode(QtObjectPtr ptr, int mode); +void QRadioTunerControl_SetVolume(QtObjectPtr ptr, int volume); +int QRadioTunerControl_SignalStrength(QtObjectPtr ptr); +void QRadioTunerControl_ConnectSignalStrengthChanged(QtObjectPtr ptr); +void QRadioTunerControl_DisconnectSignalStrengthChanged(QtObjectPtr ptr); +void QRadioTunerControl_Start(QtObjectPtr ptr); +void QRadioTunerControl_ConnectStateChanged(QtObjectPtr ptr); +void QRadioTunerControl_DisconnectStateChanged(QtObjectPtr ptr); +void QRadioTunerControl_ConnectStationFound(QtObjectPtr ptr); +void QRadioTunerControl_DisconnectStationFound(QtObjectPtr ptr); +int QRadioTunerControl_StereoMode(QtObjectPtr ptr); +void QRadioTunerControl_ConnectStereoStatusChanged(QtObjectPtr ptr); +void QRadioTunerControl_DisconnectStereoStatusChanged(QtObjectPtr ptr); +void QRadioTunerControl_Stop(QtObjectPtr ptr); +int QRadioTunerControl_Volume(QtObjectPtr ptr); +void QRadioTunerControl_ConnectVolumeChanged(QtObjectPtr ptr); +void QRadioTunerControl_DisconnectVolumeChanged(QtObjectPtr ptr); +void QRadioTunerControl_DestroyQRadioTunerControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qsound.cpp b/multimedia/qsound.cpp new file mode 100755 index 00000000..32b5433e --- /dev/null +++ b/multimedia/qsound.cpp @@ -0,0 +1,54 @@ +#include "qsound.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSound: public QSound { +public: +}; + +void QSound_SetLoops(QtObjectPtr ptr, int number){ + static_cast(ptr)->setLoops(number); +} + +QtObjectPtr QSound_NewQSound(char* filename, QtObjectPtr parent){ + return new QSound(QString(filename), static_cast(parent)); +} + +char* QSound_FileName(QtObjectPtr ptr){ + return static_cast(ptr)->fileName().toUtf8().data(); +} + +int QSound_IsFinished(QtObjectPtr ptr){ + return static_cast(ptr)->isFinished(); +} + +int QSound_Loops(QtObjectPtr ptr){ + return static_cast(ptr)->loops(); +} + +int QSound_LoopsRemaining(QtObjectPtr ptr){ + return static_cast(ptr)->loopsRemaining(); +} + +void QSound_Play2(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "play"); +} + +void QSound_QSound_Play(char* filename){ + QSound::play(QString(filename)); +} + +void QSound_Stop(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "stop"); +} + +void QSound_DestroyQSound(QtObjectPtr ptr){ + static_cast(ptr)->~QSound(); +} + diff --git a/multimedia/qsound.go b/multimedia/qsound.go new file mode 100755 index 00000000..1d7bbe9b --- /dev/null +++ b/multimedia/qsound.go @@ -0,0 +1,106 @@ +package multimedia + +//#include "qsound.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QSound struct { + core.QObject +} + +type QSoundITF interface { + core.QObjectITF + QSoundPTR() *QSound +} + +func PointerFromQSound(ptr QSoundITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSoundPTR().Pointer() + } + return nil +} + +func QSoundFromPointer(ptr unsafe.Pointer) *QSound { + var n = new(QSound) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSound_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSound) QSoundPTR() *QSound { + return ptr +} + +//QSound::Loop +type QSound__Loop int + +var ( + QSound__Infinite = QSound__Loop(-1) +) + +func (ptr *QSound) SetLoops(number int) { + if ptr.Pointer() != nil { + C.QSound_SetLoops(C.QtObjectPtr(ptr.Pointer()), C.int(number)) + } +} + +func NewQSound(filename string, parent core.QObjectITF) *QSound { + return QSoundFromPointer(unsafe.Pointer(C.QSound_NewQSound(C.CString(filename), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QSound) FileName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSound_FileName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSound) IsFinished() bool { + if ptr.Pointer() != nil { + return C.QSound_IsFinished(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSound) Loops() int { + if ptr.Pointer() != nil { + return int(C.QSound_Loops(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSound) LoopsRemaining() int { + if ptr.Pointer() != nil { + return int(C.QSound_LoopsRemaining(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSound) Play2() { + if ptr.Pointer() != nil { + C.QSound_Play2(C.QtObjectPtr(ptr.Pointer())) + } +} + +func QSound_Play(filename string) { + C.QSound_QSound_Play(C.CString(filename)) +} + +func (ptr *QSound) Stop() { + if ptr.Pointer() != nil { + C.QSound_Stop(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSound) DestroyQSound() { + if ptr.Pointer() != nil { + C.QSound_DestroyQSound(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qsound.h b/multimedia/qsound.h new file mode 100755 index 00000000..5d9b5f1c --- /dev/null +++ b/multimedia/qsound.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QSound_SetLoops(QtObjectPtr ptr, int number); +QtObjectPtr QSound_NewQSound(char* filename, QtObjectPtr parent); +char* QSound_FileName(QtObjectPtr ptr); +int QSound_IsFinished(QtObjectPtr ptr); +int QSound_Loops(QtObjectPtr ptr); +int QSound_LoopsRemaining(QtObjectPtr ptr); +void QSound_Play2(QtObjectPtr ptr); +void QSound_QSound_Play(char* filename); +void QSound_Stop(QtObjectPtr ptr); +void QSound_DestroyQSound(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qsoundeffect.cpp b/multimedia/qsoundeffect.cpp new file mode 100755 index 00000000..e18cbcb6 --- /dev/null +++ b/multimedia/qsoundeffect.cpp @@ -0,0 +1,164 @@ +#include "qsoundeffect.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSoundEffect: public QSoundEffect { +public: +void Signal_CategoryChanged(){callbackQSoundEffectCategoryChanged(this->objectName().toUtf8().data());}; +void Signal_LoadedChanged(){callbackQSoundEffectLoadedChanged(this->objectName().toUtf8().data());}; +void Signal_LoopCountChanged(){callbackQSoundEffectLoopCountChanged(this->objectName().toUtf8().data());}; +void Signal_LoopsRemainingChanged(){callbackQSoundEffectLoopsRemainingChanged(this->objectName().toUtf8().data());}; +void Signal_MutedChanged(){callbackQSoundEffectMutedChanged(this->objectName().toUtf8().data());}; +void Signal_PlayingChanged(){callbackQSoundEffectPlayingChanged(this->objectName().toUtf8().data());}; +void Signal_SourceChanged(){callbackQSoundEffectSourceChanged(this->objectName().toUtf8().data());}; +void Signal_StatusChanged(){callbackQSoundEffectStatusChanged(this->objectName().toUtf8().data());}; +void Signal_VolumeChanged(){callbackQSoundEffectVolumeChanged(this->objectName().toUtf8().data());}; +}; + +int QSoundEffect_IsLoaded(QtObjectPtr ptr){ + return static_cast(ptr)->isLoaded(); +} + +int QSoundEffect_LoopsRemaining(QtObjectPtr ptr){ + return static_cast(ptr)->loopsRemaining(); +} + +void QSoundEffect_Play(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "play"); +} + +void QSoundEffect_Stop(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "stop"); +} + +char* QSoundEffect_QSoundEffect_SupportedMimeTypes(){ + return QSoundEffect::supportedMimeTypes().join("|").toUtf8().data(); +} + +QtObjectPtr QSoundEffect_NewQSoundEffect(QtObjectPtr parent){ + return new QSoundEffect(static_cast(parent)); +} + +char* QSoundEffect_Category(QtObjectPtr ptr){ + return static_cast(ptr)->category().toUtf8().data(); +} + +void QSoundEffect_ConnectCategoryChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSoundEffect::categoryChanged), static_cast(ptr), static_cast(&MyQSoundEffect::Signal_CategoryChanged));; +} + +void QSoundEffect_DisconnectCategoryChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSoundEffect::categoryChanged), static_cast(ptr), static_cast(&MyQSoundEffect::Signal_CategoryChanged));; +} + +int QSoundEffect_IsMuted(QtObjectPtr ptr){ + return static_cast(ptr)->isMuted(); +} + +int QSoundEffect_IsPlaying(QtObjectPtr ptr){ + return static_cast(ptr)->isPlaying(); +} + +void QSoundEffect_ConnectLoadedChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSoundEffect::loadedChanged), static_cast(ptr), static_cast(&MyQSoundEffect::Signal_LoadedChanged));; +} + +void QSoundEffect_DisconnectLoadedChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSoundEffect::loadedChanged), static_cast(ptr), static_cast(&MyQSoundEffect::Signal_LoadedChanged));; +} + +int QSoundEffect_LoopCount(QtObjectPtr ptr){ + return static_cast(ptr)->loopCount(); +} + +void QSoundEffect_ConnectLoopCountChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSoundEffect::loopCountChanged), static_cast(ptr), static_cast(&MyQSoundEffect::Signal_LoopCountChanged));; +} + +void QSoundEffect_DisconnectLoopCountChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSoundEffect::loopCountChanged), static_cast(ptr), static_cast(&MyQSoundEffect::Signal_LoopCountChanged));; +} + +void QSoundEffect_ConnectLoopsRemainingChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSoundEffect::loopsRemainingChanged), static_cast(ptr), static_cast(&MyQSoundEffect::Signal_LoopsRemainingChanged));; +} + +void QSoundEffect_DisconnectLoopsRemainingChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSoundEffect::loopsRemainingChanged), static_cast(ptr), static_cast(&MyQSoundEffect::Signal_LoopsRemainingChanged));; +} + +void QSoundEffect_ConnectMutedChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSoundEffect::mutedChanged), static_cast(ptr), static_cast(&MyQSoundEffect::Signal_MutedChanged));; +} + +void QSoundEffect_DisconnectMutedChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSoundEffect::mutedChanged), static_cast(ptr), static_cast(&MyQSoundEffect::Signal_MutedChanged));; +} + +void QSoundEffect_ConnectPlayingChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSoundEffect::playingChanged), static_cast(ptr), static_cast(&MyQSoundEffect::Signal_PlayingChanged));; +} + +void QSoundEffect_DisconnectPlayingChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSoundEffect::playingChanged), static_cast(ptr), static_cast(&MyQSoundEffect::Signal_PlayingChanged));; +} + +void QSoundEffect_SetCategory(QtObjectPtr ptr, char* category){ + static_cast(ptr)->setCategory(QString(category)); +} + +void QSoundEffect_SetLoopCount(QtObjectPtr ptr, int loopCount){ + static_cast(ptr)->setLoopCount(loopCount); +} + +void QSoundEffect_SetMuted(QtObjectPtr ptr, int muted){ + static_cast(ptr)->setMuted(muted != 0); +} + +void QSoundEffect_SetSource(QtObjectPtr ptr, char* url){ + static_cast(ptr)->setSource(QUrl(QString(url))); +} + +char* QSoundEffect_Source(QtObjectPtr ptr){ + return static_cast(ptr)->source().toString().toUtf8().data(); +} + +void QSoundEffect_ConnectSourceChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSoundEffect::sourceChanged), static_cast(ptr), static_cast(&MyQSoundEffect::Signal_SourceChanged));; +} + +void QSoundEffect_DisconnectSourceChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSoundEffect::sourceChanged), static_cast(ptr), static_cast(&MyQSoundEffect::Signal_SourceChanged));; +} + +int QSoundEffect_Status(QtObjectPtr ptr){ + return static_cast(ptr)->status(); +} + +void QSoundEffect_ConnectStatusChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSoundEffect::statusChanged), static_cast(ptr), static_cast(&MyQSoundEffect::Signal_StatusChanged));; +} + +void QSoundEffect_DisconnectStatusChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSoundEffect::statusChanged), static_cast(ptr), static_cast(&MyQSoundEffect::Signal_StatusChanged));; +} + +void QSoundEffect_ConnectVolumeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSoundEffect::volumeChanged), static_cast(ptr), static_cast(&MyQSoundEffect::Signal_VolumeChanged));; +} + +void QSoundEffect_DisconnectVolumeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSoundEffect::volumeChanged), static_cast(ptr), static_cast(&MyQSoundEffect::Signal_VolumeChanged));; +} + +void QSoundEffect_DestroyQSoundEffect(QtObjectPtr ptr){ + static_cast(ptr)->~QSoundEffect(); +} + diff --git a/multimedia/qsoundeffect.go b/multimedia/qsoundeffect.go new file mode 100755 index 00000000..977c5107 --- /dev/null +++ b/multimedia/qsoundeffect.go @@ -0,0 +1,334 @@ +package multimedia + +//#include "qsoundeffect.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QSoundEffect struct { + core.QObject +} + +type QSoundEffectITF interface { + core.QObjectITF + QSoundEffectPTR() *QSoundEffect +} + +func PointerFromQSoundEffect(ptr QSoundEffectITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSoundEffectPTR().Pointer() + } + return nil +} + +func QSoundEffectFromPointer(ptr unsafe.Pointer) *QSoundEffect { + var n = new(QSoundEffect) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSoundEffect_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSoundEffect) QSoundEffectPTR() *QSoundEffect { + return ptr +} + +//QSoundEffect::Loop +type QSoundEffect__Loop int + +var ( + QSoundEffect__Infinite = QSoundEffect__Loop(-2) +) + +//QSoundEffect::Status +type QSoundEffect__Status int + +var ( + QSoundEffect__Null = QSoundEffect__Status(0) + QSoundEffect__Loading = QSoundEffect__Status(1) + QSoundEffect__Ready = QSoundEffect__Status(2) + QSoundEffect__Error = QSoundEffect__Status(3) +) + +func (ptr *QSoundEffect) IsLoaded() bool { + if ptr.Pointer() != nil { + return C.QSoundEffect_IsLoaded(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSoundEffect) LoopsRemaining() int { + if ptr.Pointer() != nil { + return int(C.QSoundEffect_LoopsRemaining(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSoundEffect) Play() { + if ptr.Pointer() != nil { + C.QSoundEffect_Play(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSoundEffect) Stop() { + if ptr.Pointer() != nil { + C.QSoundEffect_Stop(C.QtObjectPtr(ptr.Pointer())) + } +} + +func QSoundEffect_SupportedMimeTypes() []string { + return strings.Split(C.GoString(C.QSoundEffect_QSoundEffect_SupportedMimeTypes()), "|") +} + +func NewQSoundEffect(parent core.QObjectITF) *QSoundEffect { + return QSoundEffectFromPointer(unsafe.Pointer(C.QSoundEffect_NewQSoundEffect(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QSoundEffect) Category() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSoundEffect_Category(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSoundEffect) ConnectCategoryChanged(f func()) { + if ptr.Pointer() != nil { + C.QSoundEffect_ConnectCategoryChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "categoryChanged", f) + } +} + +func (ptr *QSoundEffect) DisconnectCategoryChanged() { + if ptr.Pointer() != nil { + C.QSoundEffect_DisconnectCategoryChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "categoryChanged") + } +} + +//export callbackQSoundEffectCategoryChanged +func callbackQSoundEffectCategoryChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "categoryChanged").(func())() +} + +func (ptr *QSoundEffect) IsMuted() bool { + if ptr.Pointer() != nil { + return C.QSoundEffect_IsMuted(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSoundEffect) IsPlaying() bool { + if ptr.Pointer() != nil { + return C.QSoundEffect_IsPlaying(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSoundEffect) ConnectLoadedChanged(f func()) { + if ptr.Pointer() != nil { + C.QSoundEffect_ConnectLoadedChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "loadedChanged", f) + } +} + +func (ptr *QSoundEffect) DisconnectLoadedChanged() { + if ptr.Pointer() != nil { + C.QSoundEffect_DisconnectLoadedChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "loadedChanged") + } +} + +//export callbackQSoundEffectLoadedChanged +func callbackQSoundEffectLoadedChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "loadedChanged").(func())() +} + +func (ptr *QSoundEffect) LoopCount() int { + if ptr.Pointer() != nil { + return int(C.QSoundEffect_LoopCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSoundEffect) ConnectLoopCountChanged(f func()) { + if ptr.Pointer() != nil { + C.QSoundEffect_ConnectLoopCountChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "loopCountChanged", f) + } +} + +func (ptr *QSoundEffect) DisconnectLoopCountChanged() { + if ptr.Pointer() != nil { + C.QSoundEffect_DisconnectLoopCountChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "loopCountChanged") + } +} + +//export callbackQSoundEffectLoopCountChanged +func callbackQSoundEffectLoopCountChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "loopCountChanged").(func())() +} + +func (ptr *QSoundEffect) ConnectLoopsRemainingChanged(f func()) { + if ptr.Pointer() != nil { + C.QSoundEffect_ConnectLoopsRemainingChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "loopsRemainingChanged", f) + } +} + +func (ptr *QSoundEffect) DisconnectLoopsRemainingChanged() { + if ptr.Pointer() != nil { + C.QSoundEffect_DisconnectLoopsRemainingChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "loopsRemainingChanged") + } +} + +//export callbackQSoundEffectLoopsRemainingChanged +func callbackQSoundEffectLoopsRemainingChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "loopsRemainingChanged").(func())() +} + +func (ptr *QSoundEffect) ConnectMutedChanged(f func()) { + if ptr.Pointer() != nil { + C.QSoundEffect_ConnectMutedChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "mutedChanged", f) + } +} + +func (ptr *QSoundEffect) DisconnectMutedChanged() { + if ptr.Pointer() != nil { + C.QSoundEffect_DisconnectMutedChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "mutedChanged") + } +} + +//export callbackQSoundEffectMutedChanged +func callbackQSoundEffectMutedChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "mutedChanged").(func())() +} + +func (ptr *QSoundEffect) ConnectPlayingChanged(f func()) { + if ptr.Pointer() != nil { + C.QSoundEffect_ConnectPlayingChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "playingChanged", f) + } +} + +func (ptr *QSoundEffect) DisconnectPlayingChanged() { + if ptr.Pointer() != nil { + C.QSoundEffect_DisconnectPlayingChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "playingChanged") + } +} + +//export callbackQSoundEffectPlayingChanged +func callbackQSoundEffectPlayingChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "playingChanged").(func())() +} + +func (ptr *QSoundEffect) SetCategory(category string) { + if ptr.Pointer() != nil { + C.QSoundEffect_SetCategory(C.QtObjectPtr(ptr.Pointer()), C.CString(category)) + } +} + +func (ptr *QSoundEffect) SetLoopCount(loopCount int) { + if ptr.Pointer() != nil { + C.QSoundEffect_SetLoopCount(C.QtObjectPtr(ptr.Pointer()), C.int(loopCount)) + } +} + +func (ptr *QSoundEffect) SetMuted(muted bool) { + if ptr.Pointer() != nil { + C.QSoundEffect_SetMuted(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(muted))) + } +} + +func (ptr *QSoundEffect) SetSource(url string) { + if ptr.Pointer() != nil { + C.QSoundEffect_SetSource(C.QtObjectPtr(ptr.Pointer()), C.CString(url)) + } +} + +func (ptr *QSoundEffect) Source() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSoundEffect_Source(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSoundEffect) ConnectSourceChanged(f func()) { + if ptr.Pointer() != nil { + C.QSoundEffect_ConnectSourceChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "sourceChanged", f) + } +} + +func (ptr *QSoundEffect) DisconnectSourceChanged() { + if ptr.Pointer() != nil { + C.QSoundEffect_DisconnectSourceChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "sourceChanged") + } +} + +//export callbackQSoundEffectSourceChanged +func callbackQSoundEffectSourceChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "sourceChanged").(func())() +} + +func (ptr *QSoundEffect) Status() QSoundEffect__Status { + if ptr.Pointer() != nil { + return QSoundEffect__Status(C.QSoundEffect_Status(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSoundEffect) ConnectStatusChanged(f func()) { + if ptr.Pointer() != nil { + C.QSoundEffect_ConnectStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "statusChanged", f) + } +} + +func (ptr *QSoundEffect) DisconnectStatusChanged() { + if ptr.Pointer() != nil { + C.QSoundEffect_DisconnectStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "statusChanged") + } +} + +//export callbackQSoundEffectStatusChanged +func callbackQSoundEffectStatusChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "statusChanged").(func())() +} + +func (ptr *QSoundEffect) ConnectVolumeChanged(f func()) { + if ptr.Pointer() != nil { + C.QSoundEffect_ConnectVolumeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "volumeChanged", f) + } +} + +func (ptr *QSoundEffect) DisconnectVolumeChanged() { + if ptr.Pointer() != nil { + C.QSoundEffect_DisconnectVolumeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "volumeChanged") + } +} + +//export callbackQSoundEffectVolumeChanged +func callbackQSoundEffectVolumeChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "volumeChanged").(func())() +} + +func (ptr *QSoundEffect) DestroyQSoundEffect() { + if ptr.Pointer() != nil { + C.QSoundEffect_DestroyQSoundEffect(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qsoundeffect.h b/multimedia/qsoundeffect.h new file mode 100755 index 00000000..f00def93 --- /dev/null +++ b/multimedia/qsoundeffect.h @@ -0,0 +1,44 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QSoundEffect_IsLoaded(QtObjectPtr ptr); +int QSoundEffect_LoopsRemaining(QtObjectPtr ptr); +void QSoundEffect_Play(QtObjectPtr ptr); +void QSoundEffect_Stop(QtObjectPtr ptr); +char* QSoundEffect_QSoundEffect_SupportedMimeTypes(); +QtObjectPtr QSoundEffect_NewQSoundEffect(QtObjectPtr parent); +char* QSoundEffect_Category(QtObjectPtr ptr); +void QSoundEffect_ConnectCategoryChanged(QtObjectPtr ptr); +void QSoundEffect_DisconnectCategoryChanged(QtObjectPtr ptr); +int QSoundEffect_IsMuted(QtObjectPtr ptr); +int QSoundEffect_IsPlaying(QtObjectPtr ptr); +void QSoundEffect_ConnectLoadedChanged(QtObjectPtr ptr); +void QSoundEffect_DisconnectLoadedChanged(QtObjectPtr ptr); +int QSoundEffect_LoopCount(QtObjectPtr ptr); +void QSoundEffect_ConnectLoopCountChanged(QtObjectPtr ptr); +void QSoundEffect_DisconnectLoopCountChanged(QtObjectPtr ptr); +void QSoundEffect_ConnectLoopsRemainingChanged(QtObjectPtr ptr); +void QSoundEffect_DisconnectLoopsRemainingChanged(QtObjectPtr ptr); +void QSoundEffect_ConnectMutedChanged(QtObjectPtr ptr); +void QSoundEffect_DisconnectMutedChanged(QtObjectPtr ptr); +void QSoundEffect_ConnectPlayingChanged(QtObjectPtr ptr); +void QSoundEffect_DisconnectPlayingChanged(QtObjectPtr ptr); +void QSoundEffect_SetCategory(QtObjectPtr ptr, char* category); +void QSoundEffect_SetLoopCount(QtObjectPtr ptr, int loopCount); +void QSoundEffect_SetMuted(QtObjectPtr ptr, int muted); +void QSoundEffect_SetSource(QtObjectPtr ptr, char* url); +char* QSoundEffect_Source(QtObjectPtr ptr); +void QSoundEffect_ConnectSourceChanged(QtObjectPtr ptr); +void QSoundEffect_DisconnectSourceChanged(QtObjectPtr ptr); +int QSoundEffect_Status(QtObjectPtr ptr); +void QSoundEffect_ConnectStatusChanged(QtObjectPtr ptr); +void QSoundEffect_DisconnectStatusChanged(QtObjectPtr ptr); +void QSoundEffect_ConnectVolumeChanged(QtObjectPtr ptr); +void QSoundEffect_DisconnectVolumeChanged(QtObjectPtr ptr); +void QSoundEffect_DestroyQSoundEffect(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qvideodeviceselectorcontrol.cpp b/multimedia/qvideodeviceselectorcontrol.cpp new file mode 100755 index 00000000..15873ba7 --- /dev/null +++ b/multimedia/qvideodeviceselectorcontrol.cpp @@ -0,0 +1,60 @@ +#include "qvideodeviceselectorcontrol.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQVideoDeviceSelectorControl: public QVideoDeviceSelectorControl { +public: +void Signal_DevicesChanged(){callbackQVideoDeviceSelectorControlDevicesChanged(this->objectName().toUtf8().data());}; +void Signal_SelectedDeviceChanged(int index){callbackQVideoDeviceSelectorControlSelectedDeviceChanged(this->objectName().toUtf8().data(), index);}; +}; + +int QVideoDeviceSelectorControl_DefaultDevice(QtObjectPtr ptr){ + return static_cast(ptr)->defaultDevice(); +} + +int QVideoDeviceSelectorControl_DeviceCount(QtObjectPtr ptr){ + return static_cast(ptr)->deviceCount(); +} + +char* QVideoDeviceSelectorControl_DeviceDescription(QtObjectPtr ptr, int index){ + return static_cast(ptr)->deviceDescription(index).toUtf8().data(); +} + +char* QVideoDeviceSelectorControl_DeviceName(QtObjectPtr ptr, int index){ + return static_cast(ptr)->deviceName(index).toUtf8().data(); +} + +void QVideoDeviceSelectorControl_ConnectDevicesChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QVideoDeviceSelectorControl::devicesChanged), static_cast(ptr), static_cast(&MyQVideoDeviceSelectorControl::Signal_DevicesChanged));; +} + +void QVideoDeviceSelectorControl_DisconnectDevicesChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QVideoDeviceSelectorControl::devicesChanged), static_cast(ptr), static_cast(&MyQVideoDeviceSelectorControl::Signal_DevicesChanged));; +} + +int QVideoDeviceSelectorControl_SelectedDevice(QtObjectPtr ptr){ + return static_cast(ptr)->selectedDevice(); +} + +void QVideoDeviceSelectorControl_ConnectSelectedDeviceChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QVideoDeviceSelectorControl::selectedDeviceChanged), static_cast(ptr), static_cast(&MyQVideoDeviceSelectorControl::Signal_SelectedDeviceChanged));; +} + +void QVideoDeviceSelectorControl_DisconnectSelectedDeviceChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QVideoDeviceSelectorControl::selectedDeviceChanged), static_cast(ptr), static_cast(&MyQVideoDeviceSelectorControl::Signal_SelectedDeviceChanged));; +} + +void QVideoDeviceSelectorControl_SetSelectedDevice(QtObjectPtr ptr, int index){ + QMetaObject::invokeMethod(static_cast(ptr), "setSelectedDevice", Q_ARG(int, index)); +} + +void QVideoDeviceSelectorControl_DestroyQVideoDeviceSelectorControl(QtObjectPtr ptr){ + static_cast(ptr)->~QVideoDeviceSelectorControl(); +} + diff --git a/multimedia/qvideodeviceselectorcontrol.go b/multimedia/qvideodeviceselectorcontrol.go new file mode 100755 index 00000000..46eef2ac --- /dev/null +++ b/multimedia/qvideodeviceselectorcontrol.go @@ -0,0 +1,123 @@ +package multimedia + +//#include "qvideodeviceselectorcontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QVideoDeviceSelectorControl struct { + QMediaControl +} + +type QVideoDeviceSelectorControlITF interface { + QMediaControlITF + QVideoDeviceSelectorControlPTR() *QVideoDeviceSelectorControl +} + +func PointerFromQVideoDeviceSelectorControl(ptr QVideoDeviceSelectorControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QVideoDeviceSelectorControlPTR().Pointer() + } + return nil +} + +func QVideoDeviceSelectorControlFromPointer(ptr unsafe.Pointer) *QVideoDeviceSelectorControl { + var n = new(QVideoDeviceSelectorControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QVideoDeviceSelectorControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QVideoDeviceSelectorControl) QVideoDeviceSelectorControlPTR() *QVideoDeviceSelectorControl { + return ptr +} + +func (ptr *QVideoDeviceSelectorControl) DefaultDevice() int { + if ptr.Pointer() != nil { + return int(C.QVideoDeviceSelectorControl_DefaultDevice(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoDeviceSelectorControl) DeviceCount() int { + if ptr.Pointer() != nil { + return int(C.QVideoDeviceSelectorControl_DeviceCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoDeviceSelectorControl) DeviceDescription(index int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QVideoDeviceSelectorControl_DeviceDescription(C.QtObjectPtr(ptr.Pointer()), C.int(index))) + } + return "" +} + +func (ptr *QVideoDeviceSelectorControl) DeviceName(index int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QVideoDeviceSelectorControl_DeviceName(C.QtObjectPtr(ptr.Pointer()), C.int(index))) + } + return "" +} + +func (ptr *QVideoDeviceSelectorControl) ConnectDevicesChanged(f func()) { + if ptr.Pointer() != nil { + C.QVideoDeviceSelectorControl_ConnectDevicesChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "devicesChanged", f) + } +} + +func (ptr *QVideoDeviceSelectorControl) DisconnectDevicesChanged() { + if ptr.Pointer() != nil { + C.QVideoDeviceSelectorControl_DisconnectDevicesChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "devicesChanged") + } +} + +//export callbackQVideoDeviceSelectorControlDevicesChanged +func callbackQVideoDeviceSelectorControlDevicesChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "devicesChanged").(func())() +} + +func (ptr *QVideoDeviceSelectorControl) SelectedDevice() int { + if ptr.Pointer() != nil { + return int(C.QVideoDeviceSelectorControl_SelectedDevice(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoDeviceSelectorControl) ConnectSelectedDeviceChanged(f func(index int)) { + if ptr.Pointer() != nil { + C.QVideoDeviceSelectorControl_ConnectSelectedDeviceChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "selectedDeviceChanged", f) + } +} + +func (ptr *QVideoDeviceSelectorControl) DisconnectSelectedDeviceChanged() { + if ptr.Pointer() != nil { + C.QVideoDeviceSelectorControl_DisconnectSelectedDeviceChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "selectedDeviceChanged") + } +} + +//export callbackQVideoDeviceSelectorControlSelectedDeviceChanged +func callbackQVideoDeviceSelectorControlSelectedDeviceChanged(ptrName *C.char, index C.int) { + qt.GetSignal(C.GoString(ptrName), "selectedDeviceChanged").(func(int))(int(index)) +} + +func (ptr *QVideoDeviceSelectorControl) SetSelectedDevice(index int) { + if ptr.Pointer() != nil { + C.QVideoDeviceSelectorControl_SetSelectedDevice(C.QtObjectPtr(ptr.Pointer()), C.int(index)) + } +} + +func (ptr *QVideoDeviceSelectorControl) DestroyQVideoDeviceSelectorControl() { + if ptr.Pointer() != nil { + C.QVideoDeviceSelectorControl_DestroyQVideoDeviceSelectorControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qvideodeviceselectorcontrol.h b/multimedia/qvideodeviceselectorcontrol.h new file mode 100755 index 00000000..11924554 --- /dev/null +++ b/multimedia/qvideodeviceselectorcontrol.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QVideoDeviceSelectorControl_DefaultDevice(QtObjectPtr ptr); +int QVideoDeviceSelectorControl_DeviceCount(QtObjectPtr ptr); +char* QVideoDeviceSelectorControl_DeviceDescription(QtObjectPtr ptr, int index); +char* QVideoDeviceSelectorControl_DeviceName(QtObjectPtr ptr, int index); +void QVideoDeviceSelectorControl_ConnectDevicesChanged(QtObjectPtr ptr); +void QVideoDeviceSelectorControl_DisconnectDevicesChanged(QtObjectPtr ptr); +int QVideoDeviceSelectorControl_SelectedDevice(QtObjectPtr ptr); +void QVideoDeviceSelectorControl_ConnectSelectedDeviceChanged(QtObjectPtr ptr); +void QVideoDeviceSelectorControl_DisconnectSelectedDeviceChanged(QtObjectPtr ptr); +void QVideoDeviceSelectorControl_SetSelectedDevice(QtObjectPtr ptr, int index); +void QVideoDeviceSelectorControl_DestroyQVideoDeviceSelectorControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qvideoencodersettings.cpp b/multimedia/qvideoencodersettings.cpp new file mode 100755 index 00000000..69c2687b --- /dev/null +++ b/multimedia/qvideoencodersettings.cpp @@ -0,0 +1,61 @@ +#include "qvideoencodersettings.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQVideoEncoderSettings: public QVideoEncoderSettings { +public: +}; + +QtObjectPtr QVideoEncoderSettings_NewQVideoEncoderSettings(){ + return new QVideoEncoderSettings(); +} + +QtObjectPtr QVideoEncoderSettings_NewQVideoEncoderSettings2(QtObjectPtr other){ + return new QVideoEncoderSettings(*static_cast(other)); +} + +int QVideoEncoderSettings_BitRate(QtObjectPtr ptr){ + return static_cast(ptr)->bitRate(); +} + +char* QVideoEncoderSettings_Codec(QtObjectPtr ptr){ + return static_cast(ptr)->codec().toUtf8().data(); +} + +char* QVideoEncoderSettings_EncodingOption(QtObjectPtr ptr, char* option){ + return static_cast(ptr)->encodingOption(QString(option)).toString().toUtf8().data(); +} + +int QVideoEncoderSettings_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +void QVideoEncoderSettings_SetBitRate(QtObjectPtr ptr, int value){ + static_cast(ptr)->setBitRate(value); +} + +void QVideoEncoderSettings_SetCodec(QtObjectPtr ptr, char* codec){ + static_cast(ptr)->setCodec(QString(codec)); +} + +void QVideoEncoderSettings_SetEncodingOption(QtObjectPtr ptr, char* option, char* value){ + static_cast(ptr)->setEncodingOption(QString(option), QVariant(value)); +} + +void QVideoEncoderSettings_SetResolution(QtObjectPtr ptr, QtObjectPtr resolution){ + static_cast(ptr)->setResolution(*static_cast(resolution)); +} + +void QVideoEncoderSettings_SetResolution2(QtObjectPtr ptr, int width, int height){ + static_cast(ptr)->setResolution(width, height); +} + +void QVideoEncoderSettings_DestroyQVideoEncoderSettings(QtObjectPtr ptr){ + static_cast(ptr)->~QVideoEncoderSettings(); +} + diff --git a/multimedia/qvideoencodersettings.go b/multimedia/qvideoencodersettings.go new file mode 100755 index 00000000..57d70583 --- /dev/null +++ b/multimedia/qvideoencodersettings.go @@ -0,0 +1,113 @@ +package multimedia + +//#include "qvideoencodersettings.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QVideoEncoderSettings struct { + ptr unsafe.Pointer +} + +type QVideoEncoderSettingsITF interface { + QVideoEncoderSettingsPTR() *QVideoEncoderSettings +} + +func (p *QVideoEncoderSettings) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QVideoEncoderSettings) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQVideoEncoderSettings(ptr QVideoEncoderSettingsITF) unsafe.Pointer { + if ptr != nil { + return ptr.QVideoEncoderSettingsPTR().Pointer() + } + return nil +} + +func QVideoEncoderSettingsFromPointer(ptr unsafe.Pointer) *QVideoEncoderSettings { + var n = new(QVideoEncoderSettings) + n.SetPointer(ptr) + return n +} + +func (ptr *QVideoEncoderSettings) QVideoEncoderSettingsPTR() *QVideoEncoderSettings { + return ptr +} + +func NewQVideoEncoderSettings() *QVideoEncoderSettings { + return QVideoEncoderSettingsFromPointer(unsafe.Pointer(C.QVideoEncoderSettings_NewQVideoEncoderSettings())) +} + +func NewQVideoEncoderSettings2(other QVideoEncoderSettingsITF) *QVideoEncoderSettings { + return QVideoEncoderSettingsFromPointer(unsafe.Pointer(C.QVideoEncoderSettings_NewQVideoEncoderSettings2(C.QtObjectPtr(PointerFromQVideoEncoderSettings(other))))) +} + +func (ptr *QVideoEncoderSettings) BitRate() int { + if ptr.Pointer() != nil { + return int(C.QVideoEncoderSettings_BitRate(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoEncoderSettings) Codec() string { + if ptr.Pointer() != nil { + return C.GoString(C.QVideoEncoderSettings_Codec(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QVideoEncoderSettings) EncodingOption(option string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QVideoEncoderSettings_EncodingOption(C.QtObjectPtr(ptr.Pointer()), C.CString(option))) + } + return "" +} + +func (ptr *QVideoEncoderSettings) IsNull() bool { + if ptr.Pointer() != nil { + return C.QVideoEncoderSettings_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QVideoEncoderSettings) SetBitRate(value int) { + if ptr.Pointer() != nil { + C.QVideoEncoderSettings_SetBitRate(C.QtObjectPtr(ptr.Pointer()), C.int(value)) + } +} + +func (ptr *QVideoEncoderSettings) SetCodec(codec string) { + if ptr.Pointer() != nil { + C.QVideoEncoderSettings_SetCodec(C.QtObjectPtr(ptr.Pointer()), C.CString(codec)) + } +} + +func (ptr *QVideoEncoderSettings) SetEncodingOption(option string, value string) { + if ptr.Pointer() != nil { + C.QVideoEncoderSettings_SetEncodingOption(C.QtObjectPtr(ptr.Pointer()), C.CString(option), C.CString(value)) + } +} + +func (ptr *QVideoEncoderSettings) SetResolution(resolution core.QSizeITF) { + if ptr.Pointer() != nil { + C.QVideoEncoderSettings_SetResolution(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(resolution))) + } +} + +func (ptr *QVideoEncoderSettings) SetResolution2(width int, height int) { + if ptr.Pointer() != nil { + C.QVideoEncoderSettings_SetResolution2(C.QtObjectPtr(ptr.Pointer()), C.int(width), C.int(height)) + } +} + +func (ptr *QVideoEncoderSettings) DestroyQVideoEncoderSettings() { + if ptr.Pointer() != nil { + C.QVideoEncoderSettings_DestroyQVideoEncoderSettings(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/multimedia/qvideoencodersettings.h b/multimedia/qvideoencodersettings.h new file mode 100755 index 00000000..fd350dac --- /dev/null +++ b/multimedia/qvideoencodersettings.h @@ -0,0 +1,21 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QVideoEncoderSettings_NewQVideoEncoderSettings(); +QtObjectPtr QVideoEncoderSettings_NewQVideoEncoderSettings2(QtObjectPtr other); +int QVideoEncoderSettings_BitRate(QtObjectPtr ptr); +char* QVideoEncoderSettings_Codec(QtObjectPtr ptr); +char* QVideoEncoderSettings_EncodingOption(QtObjectPtr ptr, char* option); +int QVideoEncoderSettings_IsNull(QtObjectPtr ptr); +void QVideoEncoderSettings_SetBitRate(QtObjectPtr ptr, int value); +void QVideoEncoderSettings_SetCodec(QtObjectPtr ptr, char* codec); +void QVideoEncoderSettings_SetEncodingOption(QtObjectPtr ptr, char* option, char* value); +void QVideoEncoderSettings_SetResolution(QtObjectPtr ptr, QtObjectPtr resolution); +void QVideoEncoderSettings_SetResolution2(QtObjectPtr ptr, int width, int height); +void QVideoEncoderSettings_DestroyQVideoEncoderSettings(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qvideoencodersettingscontrol.cpp b/multimedia/qvideoencodersettingscontrol.cpp new file mode 100755 index 00000000..feecefba --- /dev/null +++ b/multimedia/qvideoencodersettingscontrol.cpp @@ -0,0 +1,29 @@ +#include "qvideoencodersettingscontrol.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQVideoEncoderSettingsControl: public QVideoEncoderSettingsControl { +public: +}; + +void QVideoEncoderSettingsControl_SetVideoSettings(QtObjectPtr ptr, QtObjectPtr settings){ + static_cast(ptr)->setVideoSettings(*static_cast(settings)); +} + +char* QVideoEncoderSettingsControl_SupportedVideoCodecs(QtObjectPtr ptr){ + return static_cast(ptr)->supportedVideoCodecs().join("|").toUtf8().data(); +} + +char* QVideoEncoderSettingsControl_VideoCodecDescription(QtObjectPtr ptr, char* codec){ + return static_cast(ptr)->videoCodecDescription(QString(codec)).toUtf8().data(); +} + +void QVideoEncoderSettingsControl_DestroyQVideoEncoderSettingsControl(QtObjectPtr ptr){ + static_cast(ptr)->~QVideoEncoderSettingsControl(); +} + diff --git a/multimedia/qvideoencodersettingscontrol.go b/multimedia/qvideoencodersettingscontrol.go new file mode 100755 index 00000000..3a749f96 --- /dev/null +++ b/multimedia/qvideoencodersettingscontrol.go @@ -0,0 +1,65 @@ +package multimedia + +//#include "qvideoencodersettingscontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "strings" + "unsafe" +) + +type QVideoEncoderSettingsControl struct { + QMediaControl +} + +type QVideoEncoderSettingsControlITF interface { + QMediaControlITF + QVideoEncoderSettingsControlPTR() *QVideoEncoderSettingsControl +} + +func PointerFromQVideoEncoderSettingsControl(ptr QVideoEncoderSettingsControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QVideoEncoderSettingsControlPTR().Pointer() + } + return nil +} + +func QVideoEncoderSettingsControlFromPointer(ptr unsafe.Pointer) *QVideoEncoderSettingsControl { + var n = new(QVideoEncoderSettingsControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QVideoEncoderSettingsControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QVideoEncoderSettingsControl) QVideoEncoderSettingsControlPTR() *QVideoEncoderSettingsControl { + return ptr +} + +func (ptr *QVideoEncoderSettingsControl) SetVideoSettings(settings QVideoEncoderSettingsITF) { + if ptr.Pointer() != nil { + C.QVideoEncoderSettingsControl_SetVideoSettings(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQVideoEncoderSettings(settings))) + } +} + +func (ptr *QVideoEncoderSettingsControl) SupportedVideoCodecs() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QVideoEncoderSettingsControl_SupportedVideoCodecs(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QVideoEncoderSettingsControl) VideoCodecDescription(codec string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QVideoEncoderSettingsControl_VideoCodecDescription(C.QtObjectPtr(ptr.Pointer()), C.CString(codec))) + } + return "" +} + +func (ptr *QVideoEncoderSettingsControl) DestroyQVideoEncoderSettingsControl() { + if ptr.Pointer() != nil { + C.QVideoEncoderSettingsControl_DestroyQVideoEncoderSettingsControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qvideoencodersettingscontrol.h b/multimedia/qvideoencodersettingscontrol.h new file mode 100755 index 00000000..cc37a34f --- /dev/null +++ b/multimedia/qvideoencodersettingscontrol.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QVideoEncoderSettingsControl_SetVideoSettings(QtObjectPtr ptr, QtObjectPtr settings); +char* QVideoEncoderSettingsControl_SupportedVideoCodecs(QtObjectPtr ptr); +char* QVideoEncoderSettingsControl_VideoCodecDescription(QtObjectPtr ptr, char* codec); +void QVideoEncoderSettingsControl_DestroyQVideoEncoderSettingsControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qvideofilterrunnable.cpp b/multimedia/qvideofilterrunnable.cpp new file mode 100755 index 00000000..ebfd76a1 --- /dev/null +++ b/multimedia/qvideofilterrunnable.cpp @@ -0,0 +1,12 @@ +#include "qvideofilterrunnable.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQVideoFilterRunnable: public QVideoFilterRunnable { +public: +}; + diff --git a/multimedia/qvideofilterrunnable.go b/multimedia/qvideofilterrunnable.go new file mode 100755 index 00000000..20d22563 --- /dev/null +++ b/multimedia/qvideofilterrunnable.go @@ -0,0 +1,47 @@ +package multimedia + +//#include "qvideofilterrunnable.h" +import "C" +import ( + "unsafe" +) + +type QVideoFilterRunnable struct { + ptr unsafe.Pointer +} + +type QVideoFilterRunnableITF interface { + QVideoFilterRunnablePTR() *QVideoFilterRunnable +} + +func (p *QVideoFilterRunnable) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QVideoFilterRunnable) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQVideoFilterRunnable(ptr QVideoFilterRunnableITF) unsafe.Pointer { + if ptr != nil { + return ptr.QVideoFilterRunnablePTR().Pointer() + } + return nil +} + +func QVideoFilterRunnableFromPointer(ptr unsafe.Pointer) *QVideoFilterRunnable { + var n = new(QVideoFilterRunnable) + n.SetPointer(ptr) + return n +} + +func (ptr *QVideoFilterRunnable) QVideoFilterRunnablePTR() *QVideoFilterRunnable { + return ptr +} + +//QVideoFilterRunnable::RunFlag +type QVideoFilterRunnable__RunFlag int + +var ( + QVideoFilterRunnable__LastInChain = QVideoFilterRunnable__RunFlag(0x01) +) diff --git a/multimedia/qvideofilterrunnable.h b/multimedia/qvideofilterrunnable.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/multimedia/qvideofilterrunnable.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qvideoframe.cpp b/multimedia/qvideoframe.cpp new file mode 100755 index 00000000..71fdad61 --- /dev/null +++ b/multimedia/qvideoframe.cpp @@ -0,0 +1,127 @@ +#include "qvideoframe.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQVideoFrame: public QVideoFrame { +public: +}; + +QtObjectPtr QVideoFrame_NewQVideoFrame(){ + return new QVideoFrame(); +} + +QtObjectPtr QVideoFrame_NewQVideoFrame2(QtObjectPtr buffer, QtObjectPtr size, int format){ + return new QVideoFrame(static_cast(buffer), *static_cast(size), static_cast(format)); +} + +QtObjectPtr QVideoFrame_NewQVideoFrame4(QtObjectPtr image){ + return new QVideoFrame(*static_cast(image)); +} + +QtObjectPtr QVideoFrame_NewQVideoFrame5(QtObjectPtr other){ + return new QVideoFrame(*static_cast(other)); +} + +QtObjectPtr QVideoFrame_NewQVideoFrame3(int bytes, QtObjectPtr size, int bytesPerLine, int format){ + return new QVideoFrame(bytes, *static_cast(size), bytesPerLine, static_cast(format)); +} + +int QVideoFrame_BytesPerLine(QtObjectPtr ptr){ + return static_cast(ptr)->bytesPerLine(); +} + +int QVideoFrame_BytesPerLine2(QtObjectPtr ptr, int plane){ + return static_cast(ptr)->bytesPerLine(plane); +} + +int QVideoFrame_FieldType(QtObjectPtr ptr){ + return static_cast(ptr)->fieldType(); +} + +char* QVideoFrame_Handle(QtObjectPtr ptr){ + return static_cast(ptr)->handle().toString().toUtf8().data(); +} + +int QVideoFrame_HandleType(QtObjectPtr ptr){ + return static_cast(ptr)->handleType(); +} + +int QVideoFrame_Height(QtObjectPtr ptr){ + return static_cast(ptr)->height(); +} + +int QVideoFrame_QVideoFrame_ImageFormatFromPixelFormat(int format){ + return QVideoFrame::imageFormatFromPixelFormat(static_cast(format)); +} + +int QVideoFrame_IsMapped(QtObjectPtr ptr){ + return static_cast(ptr)->isMapped(); +} + +int QVideoFrame_IsReadable(QtObjectPtr ptr){ + return static_cast(ptr)->isReadable(); +} + +int QVideoFrame_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QVideoFrame_IsWritable(QtObjectPtr ptr){ + return static_cast(ptr)->isWritable(); +} + +int QVideoFrame_Map(QtObjectPtr ptr, int mode){ + return static_cast(ptr)->map(static_cast(mode)); +} + +int QVideoFrame_MapMode(QtObjectPtr ptr){ + return static_cast(ptr)->mapMode(); +} + +int QVideoFrame_MappedBytes(QtObjectPtr ptr){ + return static_cast(ptr)->mappedBytes(); +} + +char* QVideoFrame_MetaData(QtObjectPtr ptr, char* key){ + return static_cast(ptr)->metaData(QString(key)).toString().toUtf8().data(); +} + +int QVideoFrame_PixelFormat(QtObjectPtr ptr){ + return static_cast(ptr)->pixelFormat(); +} + +int QVideoFrame_QVideoFrame_PixelFormatFromImageFormat(int format){ + return QVideoFrame::pixelFormatFromImageFormat(static_cast(format)); +} + +int QVideoFrame_PlaneCount(QtObjectPtr ptr){ + return static_cast(ptr)->planeCount(); +} + +void QVideoFrame_SetFieldType(QtObjectPtr ptr, int field){ + static_cast(ptr)->setFieldType(static_cast(field)); +} + +void QVideoFrame_SetMetaData(QtObjectPtr ptr, char* key, char* value){ + static_cast(ptr)->setMetaData(QString(key), QVariant(value)); +} + +void QVideoFrame_Unmap(QtObjectPtr ptr){ + static_cast(ptr)->unmap(); +} + +int QVideoFrame_Width(QtObjectPtr ptr){ + return static_cast(ptr)->width(); +} + +void QVideoFrame_DestroyQVideoFrame(QtObjectPtr ptr){ + static_cast(ptr)->~QVideoFrame(); +} + diff --git a/multimedia/qvideoframe.go b/multimedia/qvideoframe.go new file mode 100755 index 00000000..a4fbfa2d --- /dev/null +++ b/multimedia/qvideoframe.go @@ -0,0 +1,263 @@ +package multimedia + +//#include "qvideoframe.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QVideoFrame struct { + ptr unsafe.Pointer +} + +type QVideoFrameITF interface { + QVideoFramePTR() *QVideoFrame +} + +func (p *QVideoFrame) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QVideoFrame) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQVideoFrame(ptr QVideoFrameITF) unsafe.Pointer { + if ptr != nil { + return ptr.QVideoFramePTR().Pointer() + } + return nil +} + +func QVideoFrameFromPointer(ptr unsafe.Pointer) *QVideoFrame { + var n = new(QVideoFrame) + n.SetPointer(ptr) + return n +} + +func (ptr *QVideoFrame) QVideoFramePTR() *QVideoFrame { + return ptr +} + +//QVideoFrame::FieldType +type QVideoFrame__FieldType int + +var ( + QVideoFrame__ProgressiveFrame = QVideoFrame__FieldType(0) + QVideoFrame__TopField = QVideoFrame__FieldType(1) + QVideoFrame__BottomField = QVideoFrame__FieldType(2) + QVideoFrame__InterlacedFrame = QVideoFrame__FieldType(3) +) + +//QVideoFrame::PixelFormat +type QVideoFrame__PixelFormat int + +var ( + QVideoFrame__Format_Invalid = QVideoFrame__PixelFormat(0) + QVideoFrame__Format_ARGB32 = QVideoFrame__PixelFormat(1) + QVideoFrame__Format_ARGB32_Premultiplied = QVideoFrame__PixelFormat(2) + QVideoFrame__Format_RGB32 = QVideoFrame__PixelFormat(3) + QVideoFrame__Format_RGB24 = QVideoFrame__PixelFormat(4) + QVideoFrame__Format_RGB565 = QVideoFrame__PixelFormat(5) + QVideoFrame__Format_RGB555 = QVideoFrame__PixelFormat(6) + QVideoFrame__Format_ARGB8565_Premultiplied = QVideoFrame__PixelFormat(7) + QVideoFrame__Format_BGRA32 = QVideoFrame__PixelFormat(8) + QVideoFrame__Format_BGRA32_Premultiplied = QVideoFrame__PixelFormat(9) + QVideoFrame__Format_BGR32 = QVideoFrame__PixelFormat(10) + QVideoFrame__Format_BGR24 = QVideoFrame__PixelFormat(11) + QVideoFrame__Format_BGR565 = QVideoFrame__PixelFormat(12) + QVideoFrame__Format_BGR555 = QVideoFrame__PixelFormat(13) + QVideoFrame__Format_BGRA5658_Premultiplied = QVideoFrame__PixelFormat(14) + QVideoFrame__Format_AYUV444 = QVideoFrame__PixelFormat(15) + QVideoFrame__Format_AYUV444_Premultiplied = QVideoFrame__PixelFormat(16) + QVideoFrame__Format_YUV444 = QVideoFrame__PixelFormat(17) + QVideoFrame__Format_YUV420P = QVideoFrame__PixelFormat(18) + QVideoFrame__Format_YV12 = QVideoFrame__PixelFormat(19) + QVideoFrame__Format_UYVY = QVideoFrame__PixelFormat(20) + QVideoFrame__Format_YUYV = QVideoFrame__PixelFormat(21) + QVideoFrame__Format_NV12 = QVideoFrame__PixelFormat(22) + QVideoFrame__Format_NV21 = QVideoFrame__PixelFormat(23) + QVideoFrame__Format_IMC1 = QVideoFrame__PixelFormat(24) + QVideoFrame__Format_IMC2 = QVideoFrame__PixelFormat(25) + QVideoFrame__Format_IMC3 = QVideoFrame__PixelFormat(26) + QVideoFrame__Format_IMC4 = QVideoFrame__PixelFormat(27) + QVideoFrame__Format_Y8 = QVideoFrame__PixelFormat(28) + QVideoFrame__Format_Y16 = QVideoFrame__PixelFormat(29) + QVideoFrame__Format_Jpeg = QVideoFrame__PixelFormat(30) + QVideoFrame__Format_CameraRaw = QVideoFrame__PixelFormat(31) + QVideoFrame__Format_AdobeDng = QVideoFrame__PixelFormat(32) + QVideoFrame__Format_User = QVideoFrame__PixelFormat(1000) +) + +func NewQVideoFrame() *QVideoFrame { + return QVideoFrameFromPointer(unsafe.Pointer(C.QVideoFrame_NewQVideoFrame())) +} + +func NewQVideoFrame2(buffer QAbstractVideoBufferITF, size core.QSizeITF, format QVideoFrame__PixelFormat) *QVideoFrame { + return QVideoFrameFromPointer(unsafe.Pointer(C.QVideoFrame_NewQVideoFrame2(C.QtObjectPtr(PointerFromQAbstractVideoBuffer(buffer)), C.QtObjectPtr(core.PointerFromQSize(size)), C.int(format)))) +} + +func NewQVideoFrame4(image gui.QImageITF) *QVideoFrame { + return QVideoFrameFromPointer(unsafe.Pointer(C.QVideoFrame_NewQVideoFrame4(C.QtObjectPtr(gui.PointerFromQImage(image))))) +} + +func NewQVideoFrame5(other QVideoFrameITF) *QVideoFrame { + return QVideoFrameFromPointer(unsafe.Pointer(C.QVideoFrame_NewQVideoFrame5(C.QtObjectPtr(PointerFromQVideoFrame(other))))) +} + +func NewQVideoFrame3(bytes int, size core.QSizeITF, bytesPerLine int, format QVideoFrame__PixelFormat) *QVideoFrame { + return QVideoFrameFromPointer(unsafe.Pointer(C.QVideoFrame_NewQVideoFrame3(C.int(bytes), C.QtObjectPtr(core.PointerFromQSize(size)), C.int(bytesPerLine), C.int(format)))) +} + +func (ptr *QVideoFrame) BytesPerLine() int { + if ptr.Pointer() != nil { + return int(C.QVideoFrame_BytesPerLine(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoFrame) BytesPerLine2(plane int) int { + if ptr.Pointer() != nil { + return int(C.QVideoFrame_BytesPerLine2(C.QtObjectPtr(ptr.Pointer()), C.int(plane))) + } + return 0 +} + +func (ptr *QVideoFrame) FieldType() QVideoFrame__FieldType { + if ptr.Pointer() != nil { + return QVideoFrame__FieldType(C.QVideoFrame_FieldType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoFrame) Handle() string { + if ptr.Pointer() != nil { + return C.GoString(C.QVideoFrame_Handle(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QVideoFrame) HandleType() QAbstractVideoBuffer__HandleType { + if ptr.Pointer() != nil { + return QAbstractVideoBuffer__HandleType(C.QVideoFrame_HandleType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoFrame) Height() int { + if ptr.Pointer() != nil { + return int(C.QVideoFrame_Height(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QVideoFrame_ImageFormatFromPixelFormat(format QVideoFrame__PixelFormat) gui.QImage__Format { + return gui.QImage__Format(C.QVideoFrame_QVideoFrame_ImageFormatFromPixelFormat(C.int(format))) +} + +func (ptr *QVideoFrame) IsMapped() bool { + if ptr.Pointer() != nil { + return C.QVideoFrame_IsMapped(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QVideoFrame) IsReadable() bool { + if ptr.Pointer() != nil { + return C.QVideoFrame_IsReadable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QVideoFrame) IsValid() bool { + if ptr.Pointer() != nil { + return C.QVideoFrame_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QVideoFrame) IsWritable() bool { + if ptr.Pointer() != nil { + return C.QVideoFrame_IsWritable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QVideoFrame) Map(mode QAbstractVideoBuffer__MapMode) bool { + if ptr.Pointer() != nil { + return C.QVideoFrame_Map(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) != 0 + } + return false +} + +func (ptr *QVideoFrame) MapMode() QAbstractVideoBuffer__MapMode { + if ptr.Pointer() != nil { + return QAbstractVideoBuffer__MapMode(C.QVideoFrame_MapMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoFrame) MappedBytes() int { + if ptr.Pointer() != nil { + return int(C.QVideoFrame_MappedBytes(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoFrame) MetaData(key string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QVideoFrame_MetaData(C.QtObjectPtr(ptr.Pointer()), C.CString(key))) + } + return "" +} + +func (ptr *QVideoFrame) PixelFormat() QVideoFrame__PixelFormat { + if ptr.Pointer() != nil { + return QVideoFrame__PixelFormat(C.QVideoFrame_PixelFormat(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QVideoFrame_PixelFormatFromImageFormat(format gui.QImage__Format) QVideoFrame__PixelFormat { + return QVideoFrame__PixelFormat(C.QVideoFrame_QVideoFrame_PixelFormatFromImageFormat(C.int(format))) +} + +func (ptr *QVideoFrame) PlaneCount() int { + if ptr.Pointer() != nil { + return int(C.QVideoFrame_PlaneCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoFrame) SetFieldType(field QVideoFrame__FieldType) { + if ptr.Pointer() != nil { + C.QVideoFrame_SetFieldType(C.QtObjectPtr(ptr.Pointer()), C.int(field)) + } +} + +func (ptr *QVideoFrame) SetMetaData(key string, value string) { + if ptr.Pointer() != nil { + C.QVideoFrame_SetMetaData(C.QtObjectPtr(ptr.Pointer()), C.CString(key), C.CString(value)) + } +} + +func (ptr *QVideoFrame) Unmap() { + if ptr.Pointer() != nil { + C.QVideoFrame_Unmap(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QVideoFrame) Width() int { + if ptr.Pointer() != nil { + return int(C.QVideoFrame_Width(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoFrame) DestroyQVideoFrame() { + if ptr.Pointer() != nil { + C.QVideoFrame_DestroyQVideoFrame(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/multimedia/qvideoframe.h b/multimedia/qvideoframe.h new file mode 100755 index 00000000..e0852bb0 --- /dev/null +++ b/multimedia/qvideoframe.h @@ -0,0 +1,37 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QVideoFrame_NewQVideoFrame(); +QtObjectPtr QVideoFrame_NewQVideoFrame2(QtObjectPtr buffer, QtObjectPtr size, int format); +QtObjectPtr QVideoFrame_NewQVideoFrame4(QtObjectPtr image); +QtObjectPtr QVideoFrame_NewQVideoFrame5(QtObjectPtr other); +QtObjectPtr QVideoFrame_NewQVideoFrame3(int bytes, QtObjectPtr size, int bytesPerLine, int format); +int QVideoFrame_BytesPerLine(QtObjectPtr ptr); +int QVideoFrame_BytesPerLine2(QtObjectPtr ptr, int plane); +int QVideoFrame_FieldType(QtObjectPtr ptr); +char* QVideoFrame_Handle(QtObjectPtr ptr); +int QVideoFrame_HandleType(QtObjectPtr ptr); +int QVideoFrame_Height(QtObjectPtr ptr); +int QVideoFrame_QVideoFrame_ImageFormatFromPixelFormat(int format); +int QVideoFrame_IsMapped(QtObjectPtr ptr); +int QVideoFrame_IsReadable(QtObjectPtr ptr); +int QVideoFrame_IsValid(QtObjectPtr ptr); +int QVideoFrame_IsWritable(QtObjectPtr ptr); +int QVideoFrame_Map(QtObjectPtr ptr, int mode); +int QVideoFrame_MapMode(QtObjectPtr ptr); +int QVideoFrame_MappedBytes(QtObjectPtr ptr); +char* QVideoFrame_MetaData(QtObjectPtr ptr, char* key); +int QVideoFrame_PixelFormat(QtObjectPtr ptr); +int QVideoFrame_QVideoFrame_PixelFormatFromImageFormat(int format); +int QVideoFrame_PlaneCount(QtObjectPtr ptr); +void QVideoFrame_SetFieldType(QtObjectPtr ptr, int field); +void QVideoFrame_SetMetaData(QtObjectPtr ptr, char* key, char* value); +void QVideoFrame_Unmap(QtObjectPtr ptr); +int QVideoFrame_Width(QtObjectPtr ptr); +void QVideoFrame_DestroyQVideoFrame(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qvideoprobe.cpp b/multimedia/qvideoprobe.cpp new file mode 100755 index 00000000..d37cd400 --- /dev/null +++ b/multimedia/qvideoprobe.cpp @@ -0,0 +1,44 @@ +#include "qvideoprobe.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQVideoProbe: public QVideoProbe { +public: +void Signal_Flush(){callbackQVideoProbeFlush(this->objectName().toUtf8().data());}; +}; + +QtObjectPtr QVideoProbe_NewQVideoProbe(QtObjectPtr parent){ + return new QVideoProbe(static_cast(parent)); +} + +void QVideoProbe_ConnectFlush(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QVideoProbe::flush), static_cast(ptr), static_cast(&MyQVideoProbe::Signal_Flush));; +} + +void QVideoProbe_DisconnectFlush(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QVideoProbe::flush), static_cast(ptr), static_cast(&MyQVideoProbe::Signal_Flush));; +} + +int QVideoProbe_IsActive(QtObjectPtr ptr){ + return static_cast(ptr)->isActive(); +} + +int QVideoProbe_SetSource(QtObjectPtr ptr, QtObjectPtr source){ + return static_cast(ptr)->setSource(static_cast(source)); +} + +int QVideoProbe_SetSource2(QtObjectPtr ptr, QtObjectPtr mediaRecorder){ + return static_cast(ptr)->setSource(static_cast(mediaRecorder)); +} + +void QVideoProbe_DestroyQVideoProbe(QtObjectPtr ptr){ + static_cast(ptr)->~QVideoProbe(); +} + diff --git a/multimedia/qvideoprobe.go b/multimedia/qvideoprobe.go new file mode 100755 index 00000000..1035846f --- /dev/null +++ b/multimedia/qvideoprobe.go @@ -0,0 +1,89 @@ +package multimedia + +//#include "qvideoprobe.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QVideoProbe struct { + core.QObject +} + +type QVideoProbeITF interface { + core.QObjectITF + QVideoProbePTR() *QVideoProbe +} + +func PointerFromQVideoProbe(ptr QVideoProbeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QVideoProbePTR().Pointer() + } + return nil +} + +func QVideoProbeFromPointer(ptr unsafe.Pointer) *QVideoProbe { + var n = new(QVideoProbe) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QVideoProbe_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QVideoProbe) QVideoProbePTR() *QVideoProbe { + return ptr +} + +func NewQVideoProbe(parent core.QObjectITF) *QVideoProbe { + return QVideoProbeFromPointer(unsafe.Pointer(C.QVideoProbe_NewQVideoProbe(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QVideoProbe) ConnectFlush(f func()) { + if ptr.Pointer() != nil { + C.QVideoProbe_ConnectFlush(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "flush", f) + } +} + +func (ptr *QVideoProbe) DisconnectFlush() { + if ptr.Pointer() != nil { + C.QVideoProbe_DisconnectFlush(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "flush") + } +} + +//export callbackQVideoProbeFlush +func callbackQVideoProbeFlush(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "flush").(func())() +} + +func (ptr *QVideoProbe) IsActive() bool { + if ptr.Pointer() != nil { + return C.QVideoProbe_IsActive(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QVideoProbe) SetSource(source QMediaObjectITF) bool { + if ptr.Pointer() != nil { + return C.QVideoProbe_SetSource(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMediaObject(source))) != 0 + } + return false +} + +func (ptr *QVideoProbe) SetSource2(mediaRecorder QMediaRecorderITF) bool { + if ptr.Pointer() != nil { + return C.QVideoProbe_SetSource2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMediaRecorder(mediaRecorder))) != 0 + } + return false +} + +func (ptr *QVideoProbe) DestroyQVideoProbe() { + if ptr.Pointer() != nil { + C.QVideoProbe_DestroyQVideoProbe(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qvideoprobe.h b/multimedia/qvideoprobe.h new file mode 100755 index 00000000..534b87d1 --- /dev/null +++ b/multimedia/qvideoprobe.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QVideoProbe_NewQVideoProbe(QtObjectPtr parent); +void QVideoProbe_ConnectFlush(QtObjectPtr ptr); +void QVideoProbe_DisconnectFlush(QtObjectPtr ptr); +int QVideoProbe_IsActive(QtObjectPtr ptr); +int QVideoProbe_SetSource(QtObjectPtr ptr, QtObjectPtr source); +int QVideoProbe_SetSource2(QtObjectPtr ptr, QtObjectPtr mediaRecorder); +void QVideoProbe_DestroyQVideoProbe(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qvideorenderercontrol.cpp b/multimedia/qvideorenderercontrol.cpp new file mode 100755 index 00000000..f0bb95ee --- /dev/null +++ b/multimedia/qvideorenderercontrol.cpp @@ -0,0 +1,25 @@ +#include "qvideorenderercontrol.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQVideoRendererControl: public QVideoRendererControl { +public: +}; + +void QVideoRendererControl_SetSurface(QtObjectPtr ptr, QtObjectPtr surface){ + static_cast(ptr)->setSurface(static_cast(surface)); +} + +QtObjectPtr QVideoRendererControl_Surface(QtObjectPtr ptr){ + return static_cast(ptr)->surface(); +} + +void QVideoRendererControl_DestroyQVideoRendererControl(QtObjectPtr ptr){ + static_cast(ptr)->~QVideoRendererControl(); +} + diff --git a/multimedia/qvideorenderercontrol.go b/multimedia/qvideorenderercontrol.go new file mode 100755 index 00000000..1680d664 --- /dev/null +++ b/multimedia/qvideorenderercontrol.go @@ -0,0 +1,57 @@ +package multimedia + +//#include "qvideorenderercontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QVideoRendererControl struct { + QMediaControl +} + +type QVideoRendererControlITF interface { + QMediaControlITF + QVideoRendererControlPTR() *QVideoRendererControl +} + +func PointerFromQVideoRendererControl(ptr QVideoRendererControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QVideoRendererControlPTR().Pointer() + } + return nil +} + +func QVideoRendererControlFromPointer(ptr unsafe.Pointer) *QVideoRendererControl { + var n = new(QVideoRendererControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QVideoRendererControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QVideoRendererControl) QVideoRendererControlPTR() *QVideoRendererControl { + return ptr +} + +func (ptr *QVideoRendererControl) SetSurface(surface QAbstractVideoSurfaceITF) { + if ptr.Pointer() != nil { + C.QVideoRendererControl_SetSurface(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractVideoSurface(surface))) + } +} + +func (ptr *QVideoRendererControl) Surface() *QAbstractVideoSurface { + if ptr.Pointer() != nil { + return QAbstractVideoSurfaceFromPointer(unsafe.Pointer(C.QVideoRendererControl_Surface(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QVideoRendererControl) DestroyQVideoRendererControl() { + if ptr.Pointer() != nil { + C.QVideoRendererControl_DestroyQVideoRendererControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qvideorenderercontrol.h b/multimedia/qvideorenderercontrol.h new file mode 100755 index 00000000..f45a82c2 --- /dev/null +++ b/multimedia/qvideorenderercontrol.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QVideoRendererControl_SetSurface(QtObjectPtr ptr, QtObjectPtr surface); +QtObjectPtr QVideoRendererControl_Surface(QtObjectPtr ptr); +void QVideoRendererControl_DestroyQVideoRendererControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qvideosurfaceformat.cpp b/multimedia/qvideosurfaceformat.cpp new file mode 100755 index 00000000..ed69ae34 --- /dev/null +++ b/multimedia/qvideosurfaceformat.cpp @@ -0,0 +1,96 @@ +#include "qvideosurfaceformat.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQVideoSurfaceFormat: public QVideoSurfaceFormat { +public: +}; + +QtObjectPtr QVideoSurfaceFormat_NewQVideoSurfaceFormat(){ + return new QVideoSurfaceFormat(); +} + +QtObjectPtr QVideoSurfaceFormat_NewQVideoSurfaceFormat2(QtObjectPtr size, int format, int ty){ + return new QVideoSurfaceFormat(*static_cast(size), static_cast(format), static_cast(ty)); +} + +QtObjectPtr QVideoSurfaceFormat_NewQVideoSurfaceFormat3(QtObjectPtr other){ + return new QVideoSurfaceFormat(*static_cast(other)); +} + +int QVideoSurfaceFormat_FrameHeight(QtObjectPtr ptr){ + return static_cast(ptr)->frameHeight(); +} + +int QVideoSurfaceFormat_FrameWidth(QtObjectPtr ptr){ + return static_cast(ptr)->frameWidth(); +} + +int QVideoSurfaceFormat_HandleType(QtObjectPtr ptr){ + return static_cast(ptr)->handleType(); +} + +int QVideoSurfaceFormat_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QVideoSurfaceFormat_PixelFormat(QtObjectPtr ptr){ + return static_cast(ptr)->pixelFormat(); +} + +char* QVideoSurfaceFormat_Property(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->property(const_cast(name)).toString().toUtf8().data(); +} + +int QVideoSurfaceFormat_ScanLineDirection(QtObjectPtr ptr){ + return static_cast(ptr)->scanLineDirection(); +} + +void QVideoSurfaceFormat_SetFrameSize(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->setFrameSize(*static_cast(size)); +} + +void QVideoSurfaceFormat_SetFrameSize2(QtObjectPtr ptr, int width, int height){ + static_cast(ptr)->setFrameSize(width, height); +} + +void QVideoSurfaceFormat_SetPixelAspectRatio(QtObjectPtr ptr, QtObjectPtr ratio){ + static_cast(ptr)->setPixelAspectRatio(*static_cast(ratio)); +} + +void QVideoSurfaceFormat_SetPixelAspectRatio2(QtObjectPtr ptr, int horizontal, int vertical){ + static_cast(ptr)->setPixelAspectRatio(horizontal, vertical); +} + +void QVideoSurfaceFormat_SetProperty(QtObjectPtr ptr, char* name, char* value){ + static_cast(ptr)->setProperty(const_cast(name), QVariant(value)); +} + +void QVideoSurfaceFormat_SetScanLineDirection(QtObjectPtr ptr, int direction){ + static_cast(ptr)->setScanLineDirection(static_cast(direction)); +} + +void QVideoSurfaceFormat_SetViewport(QtObjectPtr ptr, QtObjectPtr viewport){ + static_cast(ptr)->setViewport(*static_cast(viewport)); +} + +void QVideoSurfaceFormat_SetYCbCrColorSpace(QtObjectPtr ptr, int space){ + static_cast(ptr)->setYCbCrColorSpace(static_cast(space)); +} + +int QVideoSurfaceFormat_YCbCrColorSpace(QtObjectPtr ptr){ + return static_cast(ptr)->yCbCrColorSpace(); +} + +void QVideoSurfaceFormat_DestroyQVideoSurfaceFormat(QtObjectPtr ptr){ + static_cast(ptr)->~QVideoSurfaceFormat(); +} + diff --git a/multimedia/qvideosurfaceformat.go b/multimedia/qvideosurfaceformat.go new file mode 100755 index 00000000..523dc616 --- /dev/null +++ b/multimedia/qvideosurfaceformat.go @@ -0,0 +1,183 @@ +package multimedia + +//#include "qvideosurfaceformat.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QVideoSurfaceFormat struct { + ptr unsafe.Pointer +} + +type QVideoSurfaceFormatITF interface { + QVideoSurfaceFormatPTR() *QVideoSurfaceFormat +} + +func (p *QVideoSurfaceFormat) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QVideoSurfaceFormat) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQVideoSurfaceFormat(ptr QVideoSurfaceFormatITF) unsafe.Pointer { + if ptr != nil { + return ptr.QVideoSurfaceFormatPTR().Pointer() + } + return nil +} + +func QVideoSurfaceFormatFromPointer(ptr unsafe.Pointer) *QVideoSurfaceFormat { + var n = new(QVideoSurfaceFormat) + n.SetPointer(ptr) + return n +} + +func (ptr *QVideoSurfaceFormat) QVideoSurfaceFormatPTR() *QVideoSurfaceFormat { + return ptr +} + +//QVideoSurfaceFormat::Direction +type QVideoSurfaceFormat__Direction int + +var ( + QVideoSurfaceFormat__TopToBottom = QVideoSurfaceFormat__Direction(0) + QVideoSurfaceFormat__BottomToTop = QVideoSurfaceFormat__Direction(1) +) + +//QVideoSurfaceFormat::YCbCrColorSpace +type QVideoSurfaceFormat__YCbCrColorSpace int + +var ( + QVideoSurfaceFormat__YCbCr_Undefined = QVideoSurfaceFormat__YCbCrColorSpace(0) + QVideoSurfaceFormat__YCbCr_BT601 = QVideoSurfaceFormat__YCbCrColorSpace(1) + QVideoSurfaceFormat__YCbCr_BT709 = QVideoSurfaceFormat__YCbCrColorSpace(2) + QVideoSurfaceFormat__YCbCr_xvYCC601 = QVideoSurfaceFormat__YCbCrColorSpace(3) + QVideoSurfaceFormat__YCbCr_xvYCC709 = QVideoSurfaceFormat__YCbCrColorSpace(4) + QVideoSurfaceFormat__YCbCr_JPEG = QVideoSurfaceFormat__YCbCrColorSpace(5) +) + +func NewQVideoSurfaceFormat() *QVideoSurfaceFormat { + return QVideoSurfaceFormatFromPointer(unsafe.Pointer(C.QVideoSurfaceFormat_NewQVideoSurfaceFormat())) +} + +func NewQVideoSurfaceFormat2(size core.QSizeITF, format QVideoFrame__PixelFormat, ty QAbstractVideoBuffer__HandleType) *QVideoSurfaceFormat { + return QVideoSurfaceFormatFromPointer(unsafe.Pointer(C.QVideoSurfaceFormat_NewQVideoSurfaceFormat2(C.QtObjectPtr(core.PointerFromQSize(size)), C.int(format), C.int(ty)))) +} + +func NewQVideoSurfaceFormat3(other QVideoSurfaceFormatITF) *QVideoSurfaceFormat { + return QVideoSurfaceFormatFromPointer(unsafe.Pointer(C.QVideoSurfaceFormat_NewQVideoSurfaceFormat3(C.QtObjectPtr(PointerFromQVideoSurfaceFormat(other))))) +} + +func (ptr *QVideoSurfaceFormat) FrameHeight() int { + if ptr.Pointer() != nil { + return int(C.QVideoSurfaceFormat_FrameHeight(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoSurfaceFormat) FrameWidth() int { + if ptr.Pointer() != nil { + return int(C.QVideoSurfaceFormat_FrameWidth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoSurfaceFormat) HandleType() QAbstractVideoBuffer__HandleType { + if ptr.Pointer() != nil { + return QAbstractVideoBuffer__HandleType(C.QVideoSurfaceFormat_HandleType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoSurfaceFormat) IsValid() bool { + if ptr.Pointer() != nil { + return C.QVideoSurfaceFormat_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QVideoSurfaceFormat) PixelFormat() QVideoFrame__PixelFormat { + if ptr.Pointer() != nil { + return QVideoFrame__PixelFormat(C.QVideoSurfaceFormat_PixelFormat(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoSurfaceFormat) Property(name string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QVideoSurfaceFormat_Property(C.QtObjectPtr(ptr.Pointer()), C.CString(name))) + } + return "" +} + +func (ptr *QVideoSurfaceFormat) ScanLineDirection() QVideoSurfaceFormat__Direction { + if ptr.Pointer() != nil { + return QVideoSurfaceFormat__Direction(C.QVideoSurfaceFormat_ScanLineDirection(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoSurfaceFormat) SetFrameSize(size core.QSizeITF) { + if ptr.Pointer() != nil { + C.QVideoSurfaceFormat_SetFrameSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(size))) + } +} + +func (ptr *QVideoSurfaceFormat) SetFrameSize2(width int, height int) { + if ptr.Pointer() != nil { + C.QVideoSurfaceFormat_SetFrameSize2(C.QtObjectPtr(ptr.Pointer()), C.int(width), C.int(height)) + } +} + +func (ptr *QVideoSurfaceFormat) SetPixelAspectRatio(ratio core.QSizeITF) { + if ptr.Pointer() != nil { + C.QVideoSurfaceFormat_SetPixelAspectRatio(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(ratio))) + } +} + +func (ptr *QVideoSurfaceFormat) SetPixelAspectRatio2(horizontal int, vertical int) { + if ptr.Pointer() != nil { + C.QVideoSurfaceFormat_SetPixelAspectRatio2(C.QtObjectPtr(ptr.Pointer()), C.int(horizontal), C.int(vertical)) + } +} + +func (ptr *QVideoSurfaceFormat) SetProperty(name string, value string) { + if ptr.Pointer() != nil { + C.QVideoSurfaceFormat_SetProperty(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.CString(value)) + } +} + +func (ptr *QVideoSurfaceFormat) SetScanLineDirection(direction QVideoSurfaceFormat__Direction) { + if ptr.Pointer() != nil { + C.QVideoSurfaceFormat_SetScanLineDirection(C.QtObjectPtr(ptr.Pointer()), C.int(direction)) + } +} + +func (ptr *QVideoSurfaceFormat) SetViewport(viewport core.QRectITF) { + if ptr.Pointer() != nil { + C.QVideoSurfaceFormat_SetViewport(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(viewport))) + } +} + +func (ptr *QVideoSurfaceFormat) SetYCbCrColorSpace(space QVideoSurfaceFormat__YCbCrColorSpace) { + if ptr.Pointer() != nil { + C.QVideoSurfaceFormat_SetYCbCrColorSpace(C.QtObjectPtr(ptr.Pointer()), C.int(space)) + } +} + +func (ptr *QVideoSurfaceFormat) YCbCrColorSpace() QVideoSurfaceFormat__YCbCrColorSpace { + if ptr.Pointer() != nil { + return QVideoSurfaceFormat__YCbCrColorSpace(C.QVideoSurfaceFormat_YCbCrColorSpace(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoSurfaceFormat) DestroyQVideoSurfaceFormat() { + if ptr.Pointer() != nil { + C.QVideoSurfaceFormat_DestroyQVideoSurfaceFormat(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/multimedia/qvideosurfaceformat.h b/multimedia/qvideosurfaceformat.h new file mode 100755 index 00000000..be961bdd --- /dev/null +++ b/multimedia/qvideosurfaceformat.h @@ -0,0 +1,29 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QVideoSurfaceFormat_NewQVideoSurfaceFormat(); +QtObjectPtr QVideoSurfaceFormat_NewQVideoSurfaceFormat2(QtObjectPtr size, int format, int ty); +QtObjectPtr QVideoSurfaceFormat_NewQVideoSurfaceFormat3(QtObjectPtr other); +int QVideoSurfaceFormat_FrameHeight(QtObjectPtr ptr); +int QVideoSurfaceFormat_FrameWidth(QtObjectPtr ptr); +int QVideoSurfaceFormat_HandleType(QtObjectPtr ptr); +int QVideoSurfaceFormat_IsValid(QtObjectPtr ptr); +int QVideoSurfaceFormat_PixelFormat(QtObjectPtr ptr); +char* QVideoSurfaceFormat_Property(QtObjectPtr ptr, char* name); +int QVideoSurfaceFormat_ScanLineDirection(QtObjectPtr ptr); +void QVideoSurfaceFormat_SetFrameSize(QtObjectPtr ptr, QtObjectPtr size); +void QVideoSurfaceFormat_SetFrameSize2(QtObjectPtr ptr, int width, int height); +void QVideoSurfaceFormat_SetPixelAspectRatio(QtObjectPtr ptr, QtObjectPtr ratio); +void QVideoSurfaceFormat_SetPixelAspectRatio2(QtObjectPtr ptr, int horizontal, int vertical); +void QVideoSurfaceFormat_SetProperty(QtObjectPtr ptr, char* name, char* value); +void QVideoSurfaceFormat_SetScanLineDirection(QtObjectPtr ptr, int direction); +void QVideoSurfaceFormat_SetViewport(QtObjectPtr ptr, QtObjectPtr viewport); +void QVideoSurfaceFormat_SetYCbCrColorSpace(QtObjectPtr ptr, int space); +int QVideoSurfaceFormat_YCbCrColorSpace(QtObjectPtr ptr); +void QVideoSurfaceFormat_DestroyQVideoSurfaceFormat(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimedia/qvideowindowcontrol.cpp b/multimedia/qvideowindowcontrol.cpp new file mode 100755 index 00000000..e0d14cc6 --- /dev/null +++ b/multimedia/qvideowindowcontrol.cpp @@ -0,0 +1,128 @@ +#include "qvideowindowcontrol.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQVideoWindowControl: public QVideoWindowControl { +public: +void Signal_BrightnessChanged(int brightness){callbackQVideoWindowControlBrightnessChanged(this->objectName().toUtf8().data(), brightness);}; +void Signal_ContrastChanged(int contrast){callbackQVideoWindowControlContrastChanged(this->objectName().toUtf8().data(), contrast);}; +void Signal_FullScreenChanged(bool fullScreen){callbackQVideoWindowControlFullScreenChanged(this->objectName().toUtf8().data(), fullScreen);}; +void Signal_HueChanged(int hue){callbackQVideoWindowControlHueChanged(this->objectName().toUtf8().data(), hue);}; +void Signal_NativeSizeChanged(){callbackQVideoWindowControlNativeSizeChanged(this->objectName().toUtf8().data());}; +void Signal_SaturationChanged(int saturation){callbackQVideoWindowControlSaturationChanged(this->objectName().toUtf8().data(), saturation);}; +}; + +int QVideoWindowControl_AspectRatioMode(QtObjectPtr ptr){ + return static_cast(ptr)->aspectRatioMode(); +} + +int QVideoWindowControl_Brightness(QtObjectPtr ptr){ + return static_cast(ptr)->brightness(); +} + +void QVideoWindowControl_ConnectBrightnessChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QVideoWindowControl::brightnessChanged), static_cast(ptr), static_cast(&MyQVideoWindowControl::Signal_BrightnessChanged));; +} + +void QVideoWindowControl_DisconnectBrightnessChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QVideoWindowControl::brightnessChanged), static_cast(ptr), static_cast(&MyQVideoWindowControl::Signal_BrightnessChanged));; +} + +int QVideoWindowControl_Contrast(QtObjectPtr ptr){ + return static_cast(ptr)->contrast(); +} + +void QVideoWindowControl_ConnectContrastChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QVideoWindowControl::contrastChanged), static_cast(ptr), static_cast(&MyQVideoWindowControl::Signal_ContrastChanged));; +} + +void QVideoWindowControl_DisconnectContrastChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QVideoWindowControl::contrastChanged), static_cast(ptr), static_cast(&MyQVideoWindowControl::Signal_ContrastChanged));; +} + +void QVideoWindowControl_ConnectFullScreenChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QVideoWindowControl::fullScreenChanged), static_cast(ptr), static_cast(&MyQVideoWindowControl::Signal_FullScreenChanged));; +} + +void QVideoWindowControl_DisconnectFullScreenChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QVideoWindowControl::fullScreenChanged), static_cast(ptr), static_cast(&MyQVideoWindowControl::Signal_FullScreenChanged));; +} + +int QVideoWindowControl_Hue(QtObjectPtr ptr){ + return static_cast(ptr)->hue(); +} + +void QVideoWindowControl_ConnectHueChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QVideoWindowControl::hueChanged), static_cast(ptr), static_cast(&MyQVideoWindowControl::Signal_HueChanged));; +} + +void QVideoWindowControl_DisconnectHueChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QVideoWindowControl::hueChanged), static_cast(ptr), static_cast(&MyQVideoWindowControl::Signal_HueChanged));; +} + +int QVideoWindowControl_IsFullScreen(QtObjectPtr ptr){ + return static_cast(ptr)->isFullScreen(); +} + +void QVideoWindowControl_ConnectNativeSizeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QVideoWindowControl::nativeSizeChanged), static_cast(ptr), static_cast(&MyQVideoWindowControl::Signal_NativeSizeChanged));; +} + +void QVideoWindowControl_DisconnectNativeSizeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QVideoWindowControl::nativeSizeChanged), static_cast(ptr), static_cast(&MyQVideoWindowControl::Signal_NativeSizeChanged));; +} + +void QVideoWindowControl_Repaint(QtObjectPtr ptr){ + static_cast(ptr)->repaint(); +} + +int QVideoWindowControl_Saturation(QtObjectPtr ptr){ + return static_cast(ptr)->saturation(); +} + +void QVideoWindowControl_ConnectSaturationChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QVideoWindowControl::saturationChanged), static_cast(ptr), static_cast(&MyQVideoWindowControl::Signal_SaturationChanged));; +} + +void QVideoWindowControl_DisconnectSaturationChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QVideoWindowControl::saturationChanged), static_cast(ptr), static_cast(&MyQVideoWindowControl::Signal_SaturationChanged));; +} + +void QVideoWindowControl_SetAspectRatioMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setAspectRatioMode(static_cast(mode)); +} + +void QVideoWindowControl_SetBrightness(QtObjectPtr ptr, int brightness){ + static_cast(ptr)->setBrightness(brightness); +} + +void QVideoWindowControl_SetContrast(QtObjectPtr ptr, int contrast){ + static_cast(ptr)->setContrast(contrast); +} + +void QVideoWindowControl_SetDisplayRect(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->setDisplayRect(*static_cast(rect)); +} + +void QVideoWindowControl_SetFullScreen(QtObjectPtr ptr, int fullScreen){ + static_cast(ptr)->setFullScreen(fullScreen != 0); +} + +void QVideoWindowControl_SetHue(QtObjectPtr ptr, int hue){ + static_cast(ptr)->setHue(hue); +} + +void QVideoWindowControl_SetSaturation(QtObjectPtr ptr, int saturation){ + static_cast(ptr)->setSaturation(saturation); +} + +void QVideoWindowControl_DestroyQVideoWindowControl(QtObjectPtr ptr){ + static_cast(ptr)->~QVideoWindowControl(); +} + diff --git a/multimedia/qvideowindowcontrol.go b/multimedia/qvideowindowcontrol.go new file mode 100755 index 00000000..78c22c45 --- /dev/null +++ b/multimedia/qvideowindowcontrol.go @@ -0,0 +1,249 @@ +package multimedia + +//#include "qvideowindowcontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QVideoWindowControl struct { + QMediaControl +} + +type QVideoWindowControlITF interface { + QMediaControlITF + QVideoWindowControlPTR() *QVideoWindowControl +} + +func PointerFromQVideoWindowControl(ptr QVideoWindowControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QVideoWindowControlPTR().Pointer() + } + return nil +} + +func QVideoWindowControlFromPointer(ptr unsafe.Pointer) *QVideoWindowControl { + var n = new(QVideoWindowControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QVideoWindowControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QVideoWindowControl) QVideoWindowControlPTR() *QVideoWindowControl { + return ptr +} + +func (ptr *QVideoWindowControl) AspectRatioMode() core.Qt__AspectRatioMode { + if ptr.Pointer() != nil { + return core.Qt__AspectRatioMode(C.QVideoWindowControl_AspectRatioMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoWindowControl) Brightness() int { + if ptr.Pointer() != nil { + return int(C.QVideoWindowControl_Brightness(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoWindowControl) ConnectBrightnessChanged(f func(brightness int)) { + if ptr.Pointer() != nil { + C.QVideoWindowControl_ConnectBrightnessChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "brightnessChanged", f) + } +} + +func (ptr *QVideoWindowControl) DisconnectBrightnessChanged() { + if ptr.Pointer() != nil { + C.QVideoWindowControl_DisconnectBrightnessChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "brightnessChanged") + } +} + +//export callbackQVideoWindowControlBrightnessChanged +func callbackQVideoWindowControlBrightnessChanged(ptrName *C.char, brightness C.int) { + qt.GetSignal(C.GoString(ptrName), "brightnessChanged").(func(int))(int(brightness)) +} + +func (ptr *QVideoWindowControl) Contrast() int { + if ptr.Pointer() != nil { + return int(C.QVideoWindowControl_Contrast(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoWindowControl) ConnectContrastChanged(f func(contrast int)) { + if ptr.Pointer() != nil { + C.QVideoWindowControl_ConnectContrastChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "contrastChanged", f) + } +} + +func (ptr *QVideoWindowControl) DisconnectContrastChanged() { + if ptr.Pointer() != nil { + C.QVideoWindowControl_DisconnectContrastChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "contrastChanged") + } +} + +//export callbackQVideoWindowControlContrastChanged +func callbackQVideoWindowControlContrastChanged(ptrName *C.char, contrast C.int) { + qt.GetSignal(C.GoString(ptrName), "contrastChanged").(func(int))(int(contrast)) +} + +func (ptr *QVideoWindowControl) ConnectFullScreenChanged(f func(fullScreen bool)) { + if ptr.Pointer() != nil { + C.QVideoWindowControl_ConnectFullScreenChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "fullScreenChanged", f) + } +} + +func (ptr *QVideoWindowControl) DisconnectFullScreenChanged() { + if ptr.Pointer() != nil { + C.QVideoWindowControl_DisconnectFullScreenChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "fullScreenChanged") + } +} + +//export callbackQVideoWindowControlFullScreenChanged +func callbackQVideoWindowControlFullScreenChanged(ptrName *C.char, fullScreen C.int) { + qt.GetSignal(C.GoString(ptrName), "fullScreenChanged").(func(bool))(int(fullScreen) != 0) +} + +func (ptr *QVideoWindowControl) Hue() int { + if ptr.Pointer() != nil { + return int(C.QVideoWindowControl_Hue(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoWindowControl) ConnectHueChanged(f func(hue int)) { + if ptr.Pointer() != nil { + C.QVideoWindowControl_ConnectHueChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "hueChanged", f) + } +} + +func (ptr *QVideoWindowControl) DisconnectHueChanged() { + if ptr.Pointer() != nil { + C.QVideoWindowControl_DisconnectHueChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "hueChanged") + } +} + +//export callbackQVideoWindowControlHueChanged +func callbackQVideoWindowControlHueChanged(ptrName *C.char, hue C.int) { + qt.GetSignal(C.GoString(ptrName), "hueChanged").(func(int))(int(hue)) +} + +func (ptr *QVideoWindowControl) IsFullScreen() bool { + if ptr.Pointer() != nil { + return C.QVideoWindowControl_IsFullScreen(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QVideoWindowControl) ConnectNativeSizeChanged(f func()) { + if ptr.Pointer() != nil { + C.QVideoWindowControl_ConnectNativeSizeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "nativeSizeChanged", f) + } +} + +func (ptr *QVideoWindowControl) DisconnectNativeSizeChanged() { + if ptr.Pointer() != nil { + C.QVideoWindowControl_DisconnectNativeSizeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "nativeSizeChanged") + } +} + +//export callbackQVideoWindowControlNativeSizeChanged +func callbackQVideoWindowControlNativeSizeChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "nativeSizeChanged").(func())() +} + +func (ptr *QVideoWindowControl) Repaint() { + if ptr.Pointer() != nil { + C.QVideoWindowControl_Repaint(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QVideoWindowControl) Saturation() int { + if ptr.Pointer() != nil { + return int(C.QVideoWindowControl_Saturation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoWindowControl) ConnectSaturationChanged(f func(saturation int)) { + if ptr.Pointer() != nil { + C.QVideoWindowControl_ConnectSaturationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "saturationChanged", f) + } +} + +func (ptr *QVideoWindowControl) DisconnectSaturationChanged() { + if ptr.Pointer() != nil { + C.QVideoWindowControl_DisconnectSaturationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "saturationChanged") + } +} + +//export callbackQVideoWindowControlSaturationChanged +func callbackQVideoWindowControlSaturationChanged(ptrName *C.char, saturation C.int) { + qt.GetSignal(C.GoString(ptrName), "saturationChanged").(func(int))(int(saturation)) +} + +func (ptr *QVideoWindowControl) SetAspectRatioMode(mode core.Qt__AspectRatioMode) { + if ptr.Pointer() != nil { + C.QVideoWindowControl_SetAspectRatioMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QVideoWindowControl) SetBrightness(brightness int) { + if ptr.Pointer() != nil { + C.QVideoWindowControl_SetBrightness(C.QtObjectPtr(ptr.Pointer()), C.int(brightness)) + } +} + +func (ptr *QVideoWindowControl) SetContrast(contrast int) { + if ptr.Pointer() != nil { + C.QVideoWindowControl_SetContrast(C.QtObjectPtr(ptr.Pointer()), C.int(contrast)) + } +} + +func (ptr *QVideoWindowControl) SetDisplayRect(rect core.QRectITF) { + if ptr.Pointer() != nil { + C.QVideoWindowControl_SetDisplayRect(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rect))) + } +} + +func (ptr *QVideoWindowControl) SetFullScreen(fullScreen bool) { + if ptr.Pointer() != nil { + C.QVideoWindowControl_SetFullScreen(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(fullScreen))) + } +} + +func (ptr *QVideoWindowControl) SetHue(hue int) { + if ptr.Pointer() != nil { + C.QVideoWindowControl_SetHue(C.QtObjectPtr(ptr.Pointer()), C.int(hue)) + } +} + +func (ptr *QVideoWindowControl) SetSaturation(saturation int) { + if ptr.Pointer() != nil { + C.QVideoWindowControl_SetSaturation(C.QtObjectPtr(ptr.Pointer()), C.int(saturation)) + } +} + +func (ptr *QVideoWindowControl) DestroyQVideoWindowControl() { + if ptr.Pointer() != nil { + C.QVideoWindowControl_DestroyQVideoWindowControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimedia/qvideowindowcontrol.h b/multimedia/qvideowindowcontrol.h new file mode 100755 index 00000000..69a5ddef --- /dev/null +++ b/multimedia/qvideowindowcontrol.h @@ -0,0 +1,36 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QVideoWindowControl_AspectRatioMode(QtObjectPtr ptr); +int QVideoWindowControl_Brightness(QtObjectPtr ptr); +void QVideoWindowControl_ConnectBrightnessChanged(QtObjectPtr ptr); +void QVideoWindowControl_DisconnectBrightnessChanged(QtObjectPtr ptr); +int QVideoWindowControl_Contrast(QtObjectPtr ptr); +void QVideoWindowControl_ConnectContrastChanged(QtObjectPtr ptr); +void QVideoWindowControl_DisconnectContrastChanged(QtObjectPtr ptr); +void QVideoWindowControl_ConnectFullScreenChanged(QtObjectPtr ptr); +void QVideoWindowControl_DisconnectFullScreenChanged(QtObjectPtr ptr); +int QVideoWindowControl_Hue(QtObjectPtr ptr); +void QVideoWindowControl_ConnectHueChanged(QtObjectPtr ptr); +void QVideoWindowControl_DisconnectHueChanged(QtObjectPtr ptr); +int QVideoWindowControl_IsFullScreen(QtObjectPtr ptr); +void QVideoWindowControl_ConnectNativeSizeChanged(QtObjectPtr ptr); +void QVideoWindowControl_DisconnectNativeSizeChanged(QtObjectPtr ptr); +void QVideoWindowControl_Repaint(QtObjectPtr ptr); +int QVideoWindowControl_Saturation(QtObjectPtr ptr); +void QVideoWindowControl_ConnectSaturationChanged(QtObjectPtr ptr); +void QVideoWindowControl_DisconnectSaturationChanged(QtObjectPtr ptr); +void QVideoWindowControl_SetAspectRatioMode(QtObjectPtr ptr, int mode); +void QVideoWindowControl_SetBrightness(QtObjectPtr ptr, int brightness); +void QVideoWindowControl_SetContrast(QtObjectPtr ptr, int contrast); +void QVideoWindowControl_SetDisplayRect(QtObjectPtr ptr, QtObjectPtr rect); +void QVideoWindowControl_SetFullScreen(QtObjectPtr ptr, int fullScreen); +void QVideoWindowControl_SetHue(QtObjectPtr ptr, int hue); +void QVideoWindowControl_SetSaturation(QtObjectPtr ptr, int saturation); +void QVideoWindowControl_DestroyQVideoWindowControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimediawidgets/cgo_darwin_amd64.go b/multimediawidgets/cgo_darwin_amd64.go new file mode 100755 index 00000000..891c7438 --- /dev/null +++ b/multimediawidgets/cgo_darwin_amd64.go @@ -0,0 +1,13 @@ +package multimediawidgets + +/* +#cgo CPPFLAGS: -pipe -O2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 -Wall -W +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WIDGETS_LIB -DQT_OPENGL_LIB -DQT_MULTIMEDIA_LIB -DQT_MULTIMEDIAWIDGETS_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/mkspecs/macx-clang -F/usr/local/Qt5.5.1/5.5/clang_64/lib +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtCore.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtGui.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtNetwork.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtWidgets.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtOpenGL.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtMultimedia.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtMultimediaWidgets.framework/Headers +#cgo CPPFLAGS: -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.framework/Headers + +#cgo LDFLAGS: -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 +#cgo LDFLAGS: -F/usr/local/Qt5.5.1/5.5/clang_64/lib -framework QtCore -framework QtGui -framework QtNetwork -framework QtWidgets -framework QtOpenGL -framework QtMultimedia -framework QtMultimediaWidgets -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL +*/ +import "C" diff --git a/multimediawidgets/cgo_linux_386.go b/multimediawidgets/cgo_linux_386.go new file mode 100755 index 00000000..357e4c9f --- /dev/null +++ b/multimediawidgets/cgo_linux_386.go @@ -0,0 +1,12 @@ +package multimediawidgets + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WIDGETS_LIB -DQT_OPENGL_LIB -DQT_MULTIMEDIA_LIB -DQT_MULTIMEDIAWIDGETS_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include -I/usr/local/Qt5.5.1/5.5/gcc/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc/include/QtGui -I/usr/local/Qt5.5.1/5.5/gcc/include/QtNetwork -I/usr/local/Qt5.5.1/5.5/gcc/include/QtWidgets -I/usr/local/Qt5.5.1/5.5/gcc/include/QtOpenGL -I/usr/local/Qt5.5.1/5.5/gcc/include/QtMultimedia -I/usr/local/Qt5.5.1/5.5/gcc/include/QtMultimediaWidgets + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc/lib -L/usr/lib -lQt5Core -lQt5Gui -lQt5Network -lQt5Widgets -lQt5OpenGL -lQt5Multimedia -lQt5MultimediaWidgets -lpthread +*/ +import "C" diff --git a/multimediawidgets/cgo_linux_amd64.go b/multimediawidgets/cgo_linux_amd64.go new file mode 100755 index 00000000..49c5094b --- /dev/null +++ b/multimediawidgets/cgo_linux_amd64.go @@ -0,0 +1,12 @@ +package multimediawidgets + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WIDGETS_LIB -DQT_OPENGL_LIB -DQT_MULTIMEDIA_LIB -DQT_MULTIMEDIAWIDGETS_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include -I/usr/local/Qt5.5.1/5.5/gcc_64/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtGui -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtNetwork -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtWidgets -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtOpenGL -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtMultimedia -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtMultimediaWidgets + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc_64/lib -L/usr/lib64 -lQt5Core -lQt5Gui -lQt5Network -lQt5Widgets -lQt5OpenGL -lQt5Multimedia -lQt5MultimediaWidgets -lpthread +*/ +import "C" diff --git a/multimediawidgets/cgo_windows_386.go b/multimediawidgets/cgo_windows_386.go new file mode 100755 index 00000000..178f1ead --- /dev/null +++ b/multimediawidgets/cgo_windows_386.go @@ -0,0 +1,12 @@ +package multimediawidgets + +/* +#cgo CPPFLAGS: -pipe -fno-keep-inline-dllexport -O2 -Wall -Wextra -fexceptions -mthreads +#cgo CPPFLAGS: -DUNICODE -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WIDGETS_LIB -DQT_OPENGL_LIB -DQT_MULTIMEDIA_LIB -DQT_MULTIMEDIAWIDGETS_LIB +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include -IC:/Qt/Qt5.5.1/5.5/mingw492_32/mkspecs/win32-g++ +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtCore -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtGui -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtNetwork -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtWidgets -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtOpenGL -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtMultimedia -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtMultimediaWidgets + +#cgo LDFLAGS: -Wl,-s -Wl,-subsystem,windows -mthreads +#cgo LDFLAGS: -LC:/Qt/Qt5.5.1/5.5/mingw492_32/bin -lQt5Core -lQt5Gui -lQt5Network -lQt5Widgets -lQt5OpenGL -lQt5Multimedia -lQt5MultimediaWidgets +*/ +import "C" diff --git a/multimediawidgets/qcameraviewfinder.cpp b/multimediawidgets/qcameraviewfinder.cpp new file mode 100755 index 00000000..6cab2fde --- /dev/null +++ b/multimediawidgets/qcameraviewfinder.cpp @@ -0,0 +1,26 @@ +#include "qcameraviewfinder.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCameraViewfinder: public QCameraViewfinder { +public: +}; + +QtObjectPtr QCameraViewfinder_NewQCameraViewfinder(QtObjectPtr parent){ + return new QCameraViewfinder(static_cast(parent)); +} + +QtObjectPtr QCameraViewfinder_MediaObject(QtObjectPtr ptr){ + return static_cast(ptr)->mediaObject(); +} + +void QCameraViewfinder_DestroyQCameraViewfinder(QtObjectPtr ptr){ + static_cast(ptr)->~QCameraViewfinder(); +} + diff --git a/multimediawidgets/qcameraviewfinder.go b/multimediawidgets/qcameraviewfinder.go new file mode 100755 index 00000000..3e8c4d33 --- /dev/null +++ b/multimediawidgets/qcameraviewfinder.go @@ -0,0 +1,57 @@ +package multimediawidgets + +//#include "qcameraviewfinder.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/multimedia" + "github.com/therecipe/qt/widgets" + "unsafe" +) + +type QCameraViewfinder struct { + QVideoWidget +} + +type QCameraViewfinderITF interface { + QVideoWidgetITF + QCameraViewfinderPTR() *QCameraViewfinder +} + +func PointerFromQCameraViewfinder(ptr QCameraViewfinderITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCameraViewfinderPTR().Pointer() + } + return nil +} + +func QCameraViewfinderFromPointer(ptr unsafe.Pointer) *QCameraViewfinder { + var n = new(QCameraViewfinder) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCameraViewfinder_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCameraViewfinder) QCameraViewfinderPTR() *QCameraViewfinder { + return ptr +} + +func NewQCameraViewfinder(parent widgets.QWidgetITF) *QCameraViewfinder { + return QCameraViewfinderFromPointer(unsafe.Pointer(C.QCameraViewfinder_NewQCameraViewfinder(C.QtObjectPtr(widgets.PointerFromQWidget(parent))))) +} + +func (ptr *QCameraViewfinder) MediaObject() *multimedia.QMediaObject { + if ptr.Pointer() != nil { + return multimedia.QMediaObjectFromPointer(unsafe.Pointer(C.QCameraViewfinder_MediaObject(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QCameraViewfinder) DestroyQCameraViewfinder() { + if ptr.Pointer() != nil { + C.QCameraViewfinder_DestroyQCameraViewfinder(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimediawidgets/qcameraviewfinder.h b/multimediawidgets/qcameraviewfinder.h new file mode 100755 index 00000000..8d217883 --- /dev/null +++ b/multimediawidgets/qcameraviewfinder.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QCameraViewfinder_NewQCameraViewfinder(QtObjectPtr parent); +QtObjectPtr QCameraViewfinder_MediaObject(QtObjectPtr ptr); +void QCameraViewfinder_DestroyQCameraViewfinder(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimediawidgets/qgraphicsvideoitem.cpp b/multimediawidgets/qgraphicsvideoitem.cpp new file mode 100755 index 00000000..721197f7 --- /dev/null +++ b/multimediawidgets/qgraphicsvideoitem.cpp @@ -0,0 +1,54 @@ +#include "qgraphicsvideoitem.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsVideoItem: public QGraphicsVideoItem { +public: +}; + +QtObjectPtr QGraphicsVideoItem_NewQGraphicsVideoItem(QtObjectPtr parent){ + return new QGraphicsVideoItem(static_cast(parent)); +} + +int QGraphicsVideoItem_AspectRatioMode(QtObjectPtr ptr){ + return static_cast(ptr)->aspectRatioMode(); +} + +QtObjectPtr QGraphicsVideoItem_MediaObject(QtObjectPtr ptr){ + return static_cast(ptr)->mediaObject(); +} + +void QGraphicsVideoItem_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget){ + static_cast(ptr)->paint(static_cast(painter), static_cast(option), static_cast(widget)); +} + +void QGraphicsVideoItem_SetAspectRatioMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setAspectRatioMode(static_cast(mode)); +} + +void QGraphicsVideoItem_SetOffset(QtObjectPtr ptr, QtObjectPtr offset){ + static_cast(ptr)->setOffset(*static_cast(offset)); +} + +void QGraphicsVideoItem_SetSize(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->setSize(*static_cast(size)); +} + +void QGraphicsVideoItem_DestroyQGraphicsVideoItem(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsVideoItem(); +} + diff --git a/multimediawidgets/qgraphicsvideoitem.go b/multimediawidgets/qgraphicsvideoitem.go new file mode 100755 index 00000000..bc9c9214 --- /dev/null +++ b/multimediawidgets/qgraphicsvideoitem.go @@ -0,0 +1,101 @@ +package multimediawidgets + +//#include "qgraphicsvideoitem.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "github.com/therecipe/qt/multimedia" + "github.com/therecipe/qt/widgets" + "unsafe" +) + +type QGraphicsVideoItem struct { + multimedia.QMediaBindableInterface + widgets.QGraphicsObject +} + +type QGraphicsVideoItemITF interface { + multimedia.QMediaBindableInterfaceITF + widgets.QGraphicsObjectITF + QGraphicsVideoItemPTR() *QGraphicsVideoItem +} + +func (p *QGraphicsVideoItem) Pointer() unsafe.Pointer { + return p.QMediaBindableInterfacePTR().Pointer() +} + +func (p *QGraphicsVideoItem) SetPointer(ptr unsafe.Pointer) { + p.QMediaBindableInterfacePTR().SetPointer(ptr) + p.QGraphicsObjectPTR().SetPointer(ptr) +} + +func PointerFromQGraphicsVideoItem(ptr QGraphicsVideoItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsVideoItemPTR().Pointer() + } + return nil +} + +func QGraphicsVideoItemFromPointer(ptr unsafe.Pointer) *QGraphicsVideoItem { + var n = new(QGraphicsVideoItem) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGraphicsVideoItem_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGraphicsVideoItem) QGraphicsVideoItemPTR() *QGraphicsVideoItem { + return ptr +} + +func NewQGraphicsVideoItem(parent widgets.QGraphicsItemITF) *QGraphicsVideoItem { + return QGraphicsVideoItemFromPointer(unsafe.Pointer(C.QGraphicsVideoItem_NewQGraphicsVideoItem(C.QtObjectPtr(widgets.PointerFromQGraphicsItem(parent))))) +} + +func (ptr *QGraphicsVideoItem) AspectRatioMode() core.Qt__AspectRatioMode { + if ptr.Pointer() != nil { + return core.Qt__AspectRatioMode(C.QGraphicsVideoItem_AspectRatioMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsVideoItem) MediaObject() *multimedia.QMediaObject { + if ptr.Pointer() != nil { + return multimedia.QMediaObjectFromPointer(unsafe.Pointer(C.QGraphicsVideoItem_MediaObject(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QGraphicsVideoItem) Paint(painter gui.QPainterITF, option widgets.QStyleOptionGraphicsItemITF, widget widgets.QWidgetITF) { + if ptr.Pointer() != nil { + C.QGraphicsVideoItem_Paint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(widgets.PointerFromQStyleOptionGraphicsItem(option)), C.QtObjectPtr(widgets.PointerFromQWidget(widget))) + } +} + +func (ptr *QGraphicsVideoItem) SetAspectRatioMode(mode core.Qt__AspectRatioMode) { + if ptr.Pointer() != nil { + C.QGraphicsVideoItem_SetAspectRatioMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QGraphicsVideoItem) SetOffset(offset core.QPointFITF) { + if ptr.Pointer() != nil { + C.QGraphicsVideoItem_SetOffset(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(offset))) + } +} + +func (ptr *QGraphicsVideoItem) SetSize(size core.QSizeFITF) { + if ptr.Pointer() != nil { + C.QGraphicsVideoItem_SetSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSizeF(size))) + } +} + +func (ptr *QGraphicsVideoItem) DestroyQGraphicsVideoItem() { + if ptr.Pointer() != nil { + C.QGraphicsVideoItem_DestroyQGraphicsVideoItem(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimediawidgets/qgraphicsvideoitem.h b/multimediawidgets/qgraphicsvideoitem.h new file mode 100755 index 00000000..cf079851 --- /dev/null +++ b/multimediawidgets/qgraphicsvideoitem.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGraphicsVideoItem_NewQGraphicsVideoItem(QtObjectPtr parent); +int QGraphicsVideoItem_AspectRatioMode(QtObjectPtr ptr); +QtObjectPtr QGraphicsVideoItem_MediaObject(QtObjectPtr ptr); +void QGraphicsVideoItem_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget); +void QGraphicsVideoItem_SetAspectRatioMode(QtObjectPtr ptr, int mode); +void QGraphicsVideoItem_SetOffset(QtObjectPtr ptr, QtObjectPtr offset); +void QGraphicsVideoItem_SetSize(QtObjectPtr ptr, QtObjectPtr size); +void QGraphicsVideoItem_DestroyQGraphicsVideoItem(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimediawidgets/qvideowidget.cpp b/multimediawidgets/qvideowidget.cpp new file mode 100755 index 00000000..0fa94828 --- /dev/null +++ b/multimediawidgets/qvideowidget.cpp @@ -0,0 +1,120 @@ +#include "qvideowidget.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQVideoWidget: public QVideoWidget { +public: +void Signal_BrightnessChanged(int brightness){callbackQVideoWidgetBrightnessChanged(this->objectName().toUtf8().data(), brightness);}; +void Signal_ContrastChanged(int contrast){callbackQVideoWidgetContrastChanged(this->objectName().toUtf8().data(), contrast);}; +void Signal_FullScreenChanged(bool fullScreen){callbackQVideoWidgetFullScreenChanged(this->objectName().toUtf8().data(), fullScreen);}; +void Signal_HueChanged(int hue){callbackQVideoWidgetHueChanged(this->objectName().toUtf8().data(), hue);}; +void Signal_SaturationChanged(int saturation){callbackQVideoWidgetSaturationChanged(this->objectName().toUtf8().data(), saturation);}; +}; + +int QVideoWidget_AspectRatioMode(QtObjectPtr ptr){ + return static_cast(ptr)->aspectRatioMode(); +} + +int QVideoWidget_Brightness(QtObjectPtr ptr){ + return static_cast(ptr)->brightness(); +} + +int QVideoWidget_Contrast(QtObjectPtr ptr){ + return static_cast(ptr)->contrast(); +} + +int QVideoWidget_Hue(QtObjectPtr ptr){ + return static_cast(ptr)->hue(); +} + +QtObjectPtr QVideoWidget_MediaObject(QtObjectPtr ptr){ + return static_cast(ptr)->mediaObject(); +} + +int QVideoWidget_Saturation(QtObjectPtr ptr){ + return static_cast(ptr)->saturation(); +} + +void QVideoWidget_SetAspectRatioMode(QtObjectPtr ptr, int mode){ + QMetaObject::invokeMethod(static_cast(ptr), "setAspectRatioMode", Q_ARG(Qt::AspectRatioMode, static_cast(mode))); +} + +void QVideoWidget_SetBrightness(QtObjectPtr ptr, int brightness){ + QMetaObject::invokeMethod(static_cast(ptr), "setBrightness", Q_ARG(int, brightness)); +} + +void QVideoWidget_SetContrast(QtObjectPtr ptr, int contrast){ + QMetaObject::invokeMethod(static_cast(ptr), "setContrast", Q_ARG(int, contrast)); +} + +void QVideoWidget_SetFullScreen(QtObjectPtr ptr, int fullScreen){ + QMetaObject::invokeMethod(static_cast(ptr), "setFullScreen", Q_ARG(bool, fullScreen != 0)); +} + +void QVideoWidget_SetHue(QtObjectPtr ptr, int hue){ + QMetaObject::invokeMethod(static_cast(ptr), "setHue", Q_ARG(int, hue)); +} + +void QVideoWidget_SetSaturation(QtObjectPtr ptr, int saturation){ + QMetaObject::invokeMethod(static_cast(ptr), "setSaturation", Q_ARG(int, saturation)); +} + +QtObjectPtr QVideoWidget_NewQVideoWidget(QtObjectPtr parent){ + return new QVideoWidget(static_cast(parent)); +} + +void QVideoWidget_ConnectBrightnessChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QVideoWidget::brightnessChanged), static_cast(ptr), static_cast(&MyQVideoWidget::Signal_BrightnessChanged));; +} + +void QVideoWidget_DisconnectBrightnessChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QVideoWidget::brightnessChanged), static_cast(ptr), static_cast(&MyQVideoWidget::Signal_BrightnessChanged));; +} + +void QVideoWidget_ConnectContrastChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QVideoWidget::contrastChanged), static_cast(ptr), static_cast(&MyQVideoWidget::Signal_ContrastChanged));; +} + +void QVideoWidget_DisconnectContrastChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QVideoWidget::contrastChanged), static_cast(ptr), static_cast(&MyQVideoWidget::Signal_ContrastChanged));; +} + +void QVideoWidget_ConnectFullScreenChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QVideoWidget::fullScreenChanged), static_cast(ptr), static_cast(&MyQVideoWidget::Signal_FullScreenChanged));; +} + +void QVideoWidget_DisconnectFullScreenChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QVideoWidget::fullScreenChanged), static_cast(ptr), static_cast(&MyQVideoWidget::Signal_FullScreenChanged));; +} + +void QVideoWidget_ConnectHueChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QVideoWidget::hueChanged), static_cast(ptr), static_cast(&MyQVideoWidget::Signal_HueChanged));; +} + +void QVideoWidget_DisconnectHueChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QVideoWidget::hueChanged), static_cast(ptr), static_cast(&MyQVideoWidget::Signal_HueChanged));; +} + +int QVideoWidget_IsFullScreen(QtObjectPtr ptr){ + return static_cast(ptr)->isFullScreen(); +} + +void QVideoWidget_ConnectSaturationChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QVideoWidget::saturationChanged), static_cast(ptr), static_cast(&MyQVideoWidget::Signal_SaturationChanged));; +} + +void QVideoWidget_DisconnectSaturationChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QVideoWidget::saturationChanged), static_cast(ptr), static_cast(&MyQVideoWidget::Signal_SaturationChanged));; +} + +void QVideoWidget_DestroyQVideoWidget(QtObjectPtr ptr){ + static_cast(ptr)->~QVideoWidget(); +} + diff --git a/multimediawidgets/qvideowidget.go b/multimediawidgets/qvideowidget.go new file mode 100755 index 00000000..121075ab --- /dev/null +++ b/multimediawidgets/qvideowidget.go @@ -0,0 +1,242 @@ +package multimediawidgets + +//#include "qvideowidget.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/multimedia" + "github.com/therecipe/qt/widgets" + "unsafe" +) + +type QVideoWidget struct { + multimedia.QMediaBindableInterface + widgets.QWidget +} + +type QVideoWidgetITF interface { + multimedia.QMediaBindableInterfaceITF + widgets.QWidgetITF + QVideoWidgetPTR() *QVideoWidget +} + +func (p *QVideoWidget) Pointer() unsafe.Pointer { + return p.QMediaBindableInterfacePTR().Pointer() +} + +func (p *QVideoWidget) SetPointer(ptr unsafe.Pointer) { + p.QMediaBindableInterfacePTR().SetPointer(ptr) + p.QWidgetPTR().SetPointer(ptr) +} + +func PointerFromQVideoWidget(ptr QVideoWidgetITF) unsafe.Pointer { + if ptr != nil { + return ptr.QVideoWidgetPTR().Pointer() + } + return nil +} + +func QVideoWidgetFromPointer(ptr unsafe.Pointer) *QVideoWidget { + var n = new(QVideoWidget) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QVideoWidget_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QVideoWidget) QVideoWidgetPTR() *QVideoWidget { + return ptr +} + +func (ptr *QVideoWidget) AspectRatioMode() core.Qt__AspectRatioMode { + if ptr.Pointer() != nil { + return core.Qt__AspectRatioMode(C.QVideoWidget_AspectRatioMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoWidget) Brightness() int { + if ptr.Pointer() != nil { + return int(C.QVideoWidget_Brightness(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoWidget) Contrast() int { + if ptr.Pointer() != nil { + return int(C.QVideoWidget_Contrast(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoWidget) Hue() int { + if ptr.Pointer() != nil { + return int(C.QVideoWidget_Hue(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoWidget) MediaObject() *multimedia.QMediaObject { + if ptr.Pointer() != nil { + return multimedia.QMediaObjectFromPointer(unsafe.Pointer(C.QVideoWidget_MediaObject(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QVideoWidget) Saturation() int { + if ptr.Pointer() != nil { + return int(C.QVideoWidget_Saturation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoWidget) SetAspectRatioMode(mode core.Qt__AspectRatioMode) { + if ptr.Pointer() != nil { + C.QVideoWidget_SetAspectRatioMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QVideoWidget) SetBrightness(brightness int) { + if ptr.Pointer() != nil { + C.QVideoWidget_SetBrightness(C.QtObjectPtr(ptr.Pointer()), C.int(brightness)) + } +} + +func (ptr *QVideoWidget) SetContrast(contrast int) { + if ptr.Pointer() != nil { + C.QVideoWidget_SetContrast(C.QtObjectPtr(ptr.Pointer()), C.int(contrast)) + } +} + +func (ptr *QVideoWidget) SetFullScreen(fullScreen bool) { + if ptr.Pointer() != nil { + C.QVideoWidget_SetFullScreen(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(fullScreen))) + } +} + +func (ptr *QVideoWidget) SetHue(hue int) { + if ptr.Pointer() != nil { + C.QVideoWidget_SetHue(C.QtObjectPtr(ptr.Pointer()), C.int(hue)) + } +} + +func (ptr *QVideoWidget) SetSaturation(saturation int) { + if ptr.Pointer() != nil { + C.QVideoWidget_SetSaturation(C.QtObjectPtr(ptr.Pointer()), C.int(saturation)) + } +} + +func NewQVideoWidget(parent widgets.QWidgetITF) *QVideoWidget { + return QVideoWidgetFromPointer(unsafe.Pointer(C.QVideoWidget_NewQVideoWidget(C.QtObjectPtr(widgets.PointerFromQWidget(parent))))) +} + +func (ptr *QVideoWidget) ConnectBrightnessChanged(f func(brightness int)) { + if ptr.Pointer() != nil { + C.QVideoWidget_ConnectBrightnessChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "brightnessChanged", f) + } +} + +func (ptr *QVideoWidget) DisconnectBrightnessChanged() { + if ptr.Pointer() != nil { + C.QVideoWidget_DisconnectBrightnessChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "brightnessChanged") + } +} + +//export callbackQVideoWidgetBrightnessChanged +func callbackQVideoWidgetBrightnessChanged(ptrName *C.char, brightness C.int) { + qt.GetSignal(C.GoString(ptrName), "brightnessChanged").(func(int))(int(brightness)) +} + +func (ptr *QVideoWidget) ConnectContrastChanged(f func(contrast int)) { + if ptr.Pointer() != nil { + C.QVideoWidget_ConnectContrastChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "contrastChanged", f) + } +} + +func (ptr *QVideoWidget) DisconnectContrastChanged() { + if ptr.Pointer() != nil { + C.QVideoWidget_DisconnectContrastChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "contrastChanged") + } +} + +//export callbackQVideoWidgetContrastChanged +func callbackQVideoWidgetContrastChanged(ptrName *C.char, contrast C.int) { + qt.GetSignal(C.GoString(ptrName), "contrastChanged").(func(int))(int(contrast)) +} + +func (ptr *QVideoWidget) ConnectFullScreenChanged(f func(fullScreen bool)) { + if ptr.Pointer() != nil { + C.QVideoWidget_ConnectFullScreenChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "fullScreenChanged", f) + } +} + +func (ptr *QVideoWidget) DisconnectFullScreenChanged() { + if ptr.Pointer() != nil { + C.QVideoWidget_DisconnectFullScreenChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "fullScreenChanged") + } +} + +//export callbackQVideoWidgetFullScreenChanged +func callbackQVideoWidgetFullScreenChanged(ptrName *C.char, fullScreen C.int) { + qt.GetSignal(C.GoString(ptrName), "fullScreenChanged").(func(bool))(int(fullScreen) != 0) +} + +func (ptr *QVideoWidget) ConnectHueChanged(f func(hue int)) { + if ptr.Pointer() != nil { + C.QVideoWidget_ConnectHueChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "hueChanged", f) + } +} + +func (ptr *QVideoWidget) DisconnectHueChanged() { + if ptr.Pointer() != nil { + C.QVideoWidget_DisconnectHueChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "hueChanged") + } +} + +//export callbackQVideoWidgetHueChanged +func callbackQVideoWidgetHueChanged(ptrName *C.char, hue C.int) { + qt.GetSignal(C.GoString(ptrName), "hueChanged").(func(int))(int(hue)) +} + +func (ptr *QVideoWidget) IsFullScreen() bool { + if ptr.Pointer() != nil { + return C.QVideoWidget_IsFullScreen(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QVideoWidget) ConnectSaturationChanged(f func(saturation int)) { + if ptr.Pointer() != nil { + C.QVideoWidget_ConnectSaturationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "saturationChanged", f) + } +} + +func (ptr *QVideoWidget) DisconnectSaturationChanged() { + if ptr.Pointer() != nil { + C.QVideoWidget_DisconnectSaturationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "saturationChanged") + } +} + +//export callbackQVideoWidgetSaturationChanged +func callbackQVideoWidgetSaturationChanged(ptrName *C.char, saturation C.int) { + qt.GetSignal(C.GoString(ptrName), "saturationChanged").(func(int))(int(saturation)) +} + +func (ptr *QVideoWidget) DestroyQVideoWidget() { + if ptr.Pointer() != nil { + C.QVideoWidget_DestroyQVideoWidget(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimediawidgets/qvideowidget.h b/multimediawidgets/qvideowidget.h new file mode 100755 index 00000000..41bdeb12 --- /dev/null +++ b/multimediawidgets/qvideowidget.h @@ -0,0 +1,34 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QVideoWidget_AspectRatioMode(QtObjectPtr ptr); +int QVideoWidget_Brightness(QtObjectPtr ptr); +int QVideoWidget_Contrast(QtObjectPtr ptr); +int QVideoWidget_Hue(QtObjectPtr ptr); +QtObjectPtr QVideoWidget_MediaObject(QtObjectPtr ptr); +int QVideoWidget_Saturation(QtObjectPtr ptr); +void QVideoWidget_SetAspectRatioMode(QtObjectPtr ptr, int mode); +void QVideoWidget_SetBrightness(QtObjectPtr ptr, int brightness); +void QVideoWidget_SetContrast(QtObjectPtr ptr, int contrast); +void QVideoWidget_SetFullScreen(QtObjectPtr ptr, int fullScreen); +void QVideoWidget_SetHue(QtObjectPtr ptr, int hue); +void QVideoWidget_SetSaturation(QtObjectPtr ptr, int saturation); +QtObjectPtr QVideoWidget_NewQVideoWidget(QtObjectPtr parent); +void QVideoWidget_ConnectBrightnessChanged(QtObjectPtr ptr); +void QVideoWidget_DisconnectBrightnessChanged(QtObjectPtr ptr); +void QVideoWidget_ConnectContrastChanged(QtObjectPtr ptr); +void QVideoWidget_DisconnectContrastChanged(QtObjectPtr ptr); +void QVideoWidget_ConnectFullScreenChanged(QtObjectPtr ptr); +void QVideoWidget_DisconnectFullScreenChanged(QtObjectPtr ptr); +void QVideoWidget_ConnectHueChanged(QtObjectPtr ptr); +void QVideoWidget_DisconnectHueChanged(QtObjectPtr ptr); +int QVideoWidget_IsFullScreen(QtObjectPtr ptr); +void QVideoWidget_ConnectSaturationChanged(QtObjectPtr ptr); +void QVideoWidget_DisconnectSaturationChanged(QtObjectPtr ptr); +void QVideoWidget_DestroyQVideoWidget(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/multimediawidgets/qvideowidgetcontrol.cpp b/multimediawidgets/qvideowidgetcontrol.cpp new file mode 100755 index 00000000..4386fe66 --- /dev/null +++ b/multimediawidgets/qvideowidgetcontrol.cpp @@ -0,0 +1,115 @@ +#include "qvideowidgetcontrol.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQVideoWidgetControl: public QVideoWidgetControl { +public: +void Signal_BrightnessChanged(int brightness){callbackQVideoWidgetControlBrightnessChanged(this->objectName().toUtf8().data(), brightness);}; +void Signal_ContrastChanged(int contrast){callbackQVideoWidgetControlContrastChanged(this->objectName().toUtf8().data(), contrast);}; +void Signal_FullScreenChanged(bool fullScreen){callbackQVideoWidgetControlFullScreenChanged(this->objectName().toUtf8().data(), fullScreen);}; +void Signal_HueChanged(int hue){callbackQVideoWidgetControlHueChanged(this->objectName().toUtf8().data(), hue);}; +void Signal_SaturationChanged(int saturation){callbackQVideoWidgetControlSaturationChanged(this->objectName().toUtf8().data(), saturation);}; +}; + +int QVideoWidgetControl_AspectRatioMode(QtObjectPtr ptr){ + return static_cast(ptr)->aspectRatioMode(); +} + +int QVideoWidgetControl_Brightness(QtObjectPtr ptr){ + return static_cast(ptr)->brightness(); +} + +void QVideoWidgetControl_ConnectBrightnessChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QVideoWidgetControl::brightnessChanged), static_cast(ptr), static_cast(&MyQVideoWidgetControl::Signal_BrightnessChanged));; +} + +void QVideoWidgetControl_DisconnectBrightnessChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QVideoWidgetControl::brightnessChanged), static_cast(ptr), static_cast(&MyQVideoWidgetControl::Signal_BrightnessChanged));; +} + +int QVideoWidgetControl_Contrast(QtObjectPtr ptr){ + return static_cast(ptr)->contrast(); +} + +void QVideoWidgetControl_ConnectContrastChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QVideoWidgetControl::contrastChanged), static_cast(ptr), static_cast(&MyQVideoWidgetControl::Signal_ContrastChanged));; +} + +void QVideoWidgetControl_DisconnectContrastChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QVideoWidgetControl::contrastChanged), static_cast(ptr), static_cast(&MyQVideoWidgetControl::Signal_ContrastChanged));; +} + +void QVideoWidgetControl_ConnectFullScreenChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QVideoWidgetControl::fullScreenChanged), static_cast(ptr), static_cast(&MyQVideoWidgetControl::Signal_FullScreenChanged));; +} + +void QVideoWidgetControl_DisconnectFullScreenChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QVideoWidgetControl::fullScreenChanged), static_cast(ptr), static_cast(&MyQVideoWidgetControl::Signal_FullScreenChanged));; +} + +int QVideoWidgetControl_Hue(QtObjectPtr ptr){ + return static_cast(ptr)->hue(); +} + +void QVideoWidgetControl_ConnectHueChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QVideoWidgetControl::hueChanged), static_cast(ptr), static_cast(&MyQVideoWidgetControl::Signal_HueChanged));; +} + +void QVideoWidgetControl_DisconnectHueChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QVideoWidgetControl::hueChanged), static_cast(ptr), static_cast(&MyQVideoWidgetControl::Signal_HueChanged));; +} + +int QVideoWidgetControl_IsFullScreen(QtObjectPtr ptr){ + return static_cast(ptr)->isFullScreen(); +} + +int QVideoWidgetControl_Saturation(QtObjectPtr ptr){ + return static_cast(ptr)->saturation(); +} + +void QVideoWidgetControl_ConnectSaturationChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QVideoWidgetControl::saturationChanged), static_cast(ptr), static_cast(&MyQVideoWidgetControl::Signal_SaturationChanged));; +} + +void QVideoWidgetControl_DisconnectSaturationChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QVideoWidgetControl::saturationChanged), static_cast(ptr), static_cast(&MyQVideoWidgetControl::Signal_SaturationChanged));; +} + +void QVideoWidgetControl_SetAspectRatioMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setAspectRatioMode(static_cast(mode)); +} + +void QVideoWidgetControl_SetBrightness(QtObjectPtr ptr, int brightness){ + static_cast(ptr)->setBrightness(brightness); +} + +void QVideoWidgetControl_SetContrast(QtObjectPtr ptr, int contrast){ + static_cast(ptr)->setContrast(contrast); +} + +void QVideoWidgetControl_SetFullScreen(QtObjectPtr ptr, int fullScreen){ + static_cast(ptr)->setFullScreen(fullScreen != 0); +} + +void QVideoWidgetControl_SetHue(QtObjectPtr ptr, int hue){ + static_cast(ptr)->setHue(hue); +} + +void QVideoWidgetControl_SetSaturation(QtObjectPtr ptr, int saturation){ + static_cast(ptr)->setSaturation(saturation); +} + +QtObjectPtr QVideoWidgetControl_VideoWidget(QtObjectPtr ptr){ + return static_cast(ptr)->videoWidget(); +} + +void QVideoWidgetControl_DestroyQVideoWidgetControl(QtObjectPtr ptr){ + static_cast(ptr)->~QVideoWidgetControl(); +} + diff --git a/multimediawidgets/qvideowidgetcontrol.go b/multimediawidgets/qvideowidgetcontrol.go new file mode 100755 index 00000000..163ab8ab --- /dev/null +++ b/multimediawidgets/qvideowidgetcontrol.go @@ -0,0 +1,227 @@ +package multimediawidgets + +//#include "qvideowidgetcontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/multimedia" + "github.com/therecipe/qt/widgets" + "unsafe" +) + +type QVideoWidgetControl struct { + multimedia.QMediaControl +} + +type QVideoWidgetControlITF interface { + multimedia.QMediaControlITF + QVideoWidgetControlPTR() *QVideoWidgetControl +} + +func PointerFromQVideoWidgetControl(ptr QVideoWidgetControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QVideoWidgetControlPTR().Pointer() + } + return nil +} + +func QVideoWidgetControlFromPointer(ptr unsafe.Pointer) *QVideoWidgetControl { + var n = new(QVideoWidgetControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QVideoWidgetControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QVideoWidgetControl) QVideoWidgetControlPTR() *QVideoWidgetControl { + return ptr +} + +func (ptr *QVideoWidgetControl) AspectRatioMode() core.Qt__AspectRatioMode { + if ptr.Pointer() != nil { + return core.Qt__AspectRatioMode(C.QVideoWidgetControl_AspectRatioMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoWidgetControl) Brightness() int { + if ptr.Pointer() != nil { + return int(C.QVideoWidgetControl_Brightness(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoWidgetControl) ConnectBrightnessChanged(f func(brightness int)) { + if ptr.Pointer() != nil { + C.QVideoWidgetControl_ConnectBrightnessChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "brightnessChanged", f) + } +} + +func (ptr *QVideoWidgetControl) DisconnectBrightnessChanged() { + if ptr.Pointer() != nil { + C.QVideoWidgetControl_DisconnectBrightnessChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "brightnessChanged") + } +} + +//export callbackQVideoWidgetControlBrightnessChanged +func callbackQVideoWidgetControlBrightnessChanged(ptrName *C.char, brightness C.int) { + qt.GetSignal(C.GoString(ptrName), "brightnessChanged").(func(int))(int(brightness)) +} + +func (ptr *QVideoWidgetControl) Contrast() int { + if ptr.Pointer() != nil { + return int(C.QVideoWidgetControl_Contrast(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoWidgetControl) ConnectContrastChanged(f func(contrast int)) { + if ptr.Pointer() != nil { + C.QVideoWidgetControl_ConnectContrastChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "contrastChanged", f) + } +} + +func (ptr *QVideoWidgetControl) DisconnectContrastChanged() { + if ptr.Pointer() != nil { + C.QVideoWidgetControl_DisconnectContrastChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "contrastChanged") + } +} + +//export callbackQVideoWidgetControlContrastChanged +func callbackQVideoWidgetControlContrastChanged(ptrName *C.char, contrast C.int) { + qt.GetSignal(C.GoString(ptrName), "contrastChanged").(func(int))(int(contrast)) +} + +func (ptr *QVideoWidgetControl) ConnectFullScreenChanged(f func(fullScreen bool)) { + if ptr.Pointer() != nil { + C.QVideoWidgetControl_ConnectFullScreenChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "fullScreenChanged", f) + } +} + +func (ptr *QVideoWidgetControl) DisconnectFullScreenChanged() { + if ptr.Pointer() != nil { + C.QVideoWidgetControl_DisconnectFullScreenChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "fullScreenChanged") + } +} + +//export callbackQVideoWidgetControlFullScreenChanged +func callbackQVideoWidgetControlFullScreenChanged(ptrName *C.char, fullScreen C.int) { + qt.GetSignal(C.GoString(ptrName), "fullScreenChanged").(func(bool))(int(fullScreen) != 0) +} + +func (ptr *QVideoWidgetControl) Hue() int { + if ptr.Pointer() != nil { + return int(C.QVideoWidgetControl_Hue(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoWidgetControl) ConnectHueChanged(f func(hue int)) { + if ptr.Pointer() != nil { + C.QVideoWidgetControl_ConnectHueChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "hueChanged", f) + } +} + +func (ptr *QVideoWidgetControl) DisconnectHueChanged() { + if ptr.Pointer() != nil { + C.QVideoWidgetControl_DisconnectHueChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "hueChanged") + } +} + +//export callbackQVideoWidgetControlHueChanged +func callbackQVideoWidgetControlHueChanged(ptrName *C.char, hue C.int) { + qt.GetSignal(C.GoString(ptrName), "hueChanged").(func(int))(int(hue)) +} + +func (ptr *QVideoWidgetControl) IsFullScreen() bool { + if ptr.Pointer() != nil { + return C.QVideoWidgetControl_IsFullScreen(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QVideoWidgetControl) Saturation() int { + if ptr.Pointer() != nil { + return int(C.QVideoWidgetControl_Saturation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QVideoWidgetControl) ConnectSaturationChanged(f func(saturation int)) { + if ptr.Pointer() != nil { + C.QVideoWidgetControl_ConnectSaturationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "saturationChanged", f) + } +} + +func (ptr *QVideoWidgetControl) DisconnectSaturationChanged() { + if ptr.Pointer() != nil { + C.QVideoWidgetControl_DisconnectSaturationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "saturationChanged") + } +} + +//export callbackQVideoWidgetControlSaturationChanged +func callbackQVideoWidgetControlSaturationChanged(ptrName *C.char, saturation C.int) { + qt.GetSignal(C.GoString(ptrName), "saturationChanged").(func(int))(int(saturation)) +} + +func (ptr *QVideoWidgetControl) SetAspectRatioMode(mode core.Qt__AspectRatioMode) { + if ptr.Pointer() != nil { + C.QVideoWidgetControl_SetAspectRatioMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QVideoWidgetControl) SetBrightness(brightness int) { + if ptr.Pointer() != nil { + C.QVideoWidgetControl_SetBrightness(C.QtObjectPtr(ptr.Pointer()), C.int(brightness)) + } +} + +func (ptr *QVideoWidgetControl) SetContrast(contrast int) { + if ptr.Pointer() != nil { + C.QVideoWidgetControl_SetContrast(C.QtObjectPtr(ptr.Pointer()), C.int(contrast)) + } +} + +func (ptr *QVideoWidgetControl) SetFullScreen(fullScreen bool) { + if ptr.Pointer() != nil { + C.QVideoWidgetControl_SetFullScreen(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(fullScreen))) + } +} + +func (ptr *QVideoWidgetControl) SetHue(hue int) { + if ptr.Pointer() != nil { + C.QVideoWidgetControl_SetHue(C.QtObjectPtr(ptr.Pointer()), C.int(hue)) + } +} + +func (ptr *QVideoWidgetControl) SetSaturation(saturation int) { + if ptr.Pointer() != nil { + C.QVideoWidgetControl_SetSaturation(C.QtObjectPtr(ptr.Pointer()), C.int(saturation)) + } +} + +func (ptr *QVideoWidgetControl) VideoWidget() *widgets.QWidget { + if ptr.Pointer() != nil { + return widgets.QWidgetFromPointer(unsafe.Pointer(C.QVideoWidgetControl_VideoWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QVideoWidgetControl) DestroyQVideoWidgetControl() { + if ptr.Pointer() != nil { + C.QVideoWidgetControl_DestroyQVideoWidgetControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/multimediawidgets/qvideowidgetcontrol.h b/multimediawidgets/qvideowidgetcontrol.h new file mode 100755 index 00000000..3e4edfb6 --- /dev/null +++ b/multimediawidgets/qvideowidgetcontrol.h @@ -0,0 +1,33 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QVideoWidgetControl_AspectRatioMode(QtObjectPtr ptr); +int QVideoWidgetControl_Brightness(QtObjectPtr ptr); +void QVideoWidgetControl_ConnectBrightnessChanged(QtObjectPtr ptr); +void QVideoWidgetControl_DisconnectBrightnessChanged(QtObjectPtr ptr); +int QVideoWidgetControl_Contrast(QtObjectPtr ptr); +void QVideoWidgetControl_ConnectContrastChanged(QtObjectPtr ptr); +void QVideoWidgetControl_DisconnectContrastChanged(QtObjectPtr ptr); +void QVideoWidgetControl_ConnectFullScreenChanged(QtObjectPtr ptr); +void QVideoWidgetControl_DisconnectFullScreenChanged(QtObjectPtr ptr); +int QVideoWidgetControl_Hue(QtObjectPtr ptr); +void QVideoWidgetControl_ConnectHueChanged(QtObjectPtr ptr); +void QVideoWidgetControl_DisconnectHueChanged(QtObjectPtr ptr); +int QVideoWidgetControl_IsFullScreen(QtObjectPtr ptr); +int QVideoWidgetControl_Saturation(QtObjectPtr ptr); +void QVideoWidgetControl_ConnectSaturationChanged(QtObjectPtr ptr); +void QVideoWidgetControl_DisconnectSaturationChanged(QtObjectPtr ptr); +void QVideoWidgetControl_SetAspectRatioMode(QtObjectPtr ptr, int mode); +void QVideoWidgetControl_SetBrightness(QtObjectPtr ptr, int brightness); +void QVideoWidgetControl_SetContrast(QtObjectPtr ptr, int contrast); +void QVideoWidgetControl_SetFullScreen(QtObjectPtr ptr, int fullScreen); +void QVideoWidgetControl_SetHue(QtObjectPtr ptr, int hue); +void QVideoWidgetControl_SetSaturation(QtObjectPtr ptr, int saturation); +QtObjectPtr QVideoWidgetControl_VideoWidget(QtObjectPtr ptr); +void QVideoWidgetControl_DestroyQVideoWidgetControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/cgo_darwin_amd64.go b/network/cgo_darwin_amd64.go new file mode 100755 index 00000000..05f85cf5 --- /dev/null +++ b/network/cgo_darwin_amd64.go @@ -0,0 +1,13 @@ +package network + +/* +#cgo CPPFLAGS: -pipe -O2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 -Wall -W +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/mkspecs/macx-clang -F/usr/local/Qt5.5.1/5.5/clang_64/lib +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtCore.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtNetwork.framework/Headers +#cgo CPPFLAGS: -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.framework/Headers + +#cgo LDFLAGS: -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 +#cgo LDFLAGS: -F/usr/local/Qt5.5.1/5.5/clang_64/lib -framework QtCore -framework QtNetwork -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL +*/ +import "C" diff --git a/network/cgo_linux_386.go b/network/cgo_linux_386.go new file mode 100755 index 00000000..3987b9bf --- /dev/null +++ b/network/cgo_linux_386.go @@ -0,0 +1,12 @@ +package network + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include -I/usr/local/Qt5.5.1/5.5/gcc/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc/include/QtNetwork + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc/lib -L/usr/lib -lQt5Core -lQt5Network -lpthread +*/ +import "C" diff --git a/network/cgo_linux_amd64.go b/network/cgo_linux_amd64.go new file mode 100755 index 00000000..b64788cb --- /dev/null +++ b/network/cgo_linux_amd64.go @@ -0,0 +1,12 @@ +package network + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include -I/usr/local/Qt5.5.1/5.5/gcc_64/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtNetwork + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc_64/lib -L/usr/lib64 -lQt5Core -lQt5Network -lpthread +*/ +import "C" diff --git a/network/cgo_windows_386.go b/network/cgo_windows_386.go new file mode 100755 index 00000000..3c7d9476 --- /dev/null +++ b/network/cgo_windows_386.go @@ -0,0 +1,12 @@ +package network + +/* +#cgo CPPFLAGS: -pipe -fno-keep-inline-dllexport -O2 -Wall -Wextra -fexceptions -mthreads +#cgo CPPFLAGS: -DUNICODE -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include -IC:/Qt/Qt5.5.1/5.5/mingw492_32/mkspecs/win32-g++ +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtCore -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtNetwork + +#cgo LDFLAGS: -Wl,-s -Wl,-subsystem,windows -mthreads +#cgo LDFLAGS: -LC:/Qt/Qt5.5.1/5.5/mingw492_32/bin -lQt5Core -lQt5Network +*/ +import "C" diff --git a/network/qabstractnetworkcache.cpp b/network/qabstractnetworkcache.cpp new file mode 100755 index 00000000..99a5a4b3 --- /dev/null +++ b/network/qabstractnetworkcache.cpp @@ -0,0 +1,34 @@ +#include "qabstractnetworkcache.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAbstractNetworkCache: public QAbstractNetworkCache { +public: +}; + +void QAbstractNetworkCache_Clear(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "clear"); +} + +QtObjectPtr QAbstractNetworkCache_Data(QtObjectPtr ptr, char* url){ + return static_cast(ptr)->data(QUrl(QString(url))); +} + +QtObjectPtr QAbstractNetworkCache_Prepare(QtObjectPtr ptr, QtObjectPtr metaData){ + return static_cast(ptr)->prepare(*static_cast(metaData)); +} + +void QAbstractNetworkCache_UpdateMetaData(QtObjectPtr ptr, QtObjectPtr metaData){ + static_cast(ptr)->updateMetaData(*static_cast(metaData)); +} + +void QAbstractNetworkCache_DestroyQAbstractNetworkCache(QtObjectPtr ptr){ + static_cast(ptr)->~QAbstractNetworkCache(); +} + diff --git a/network/qabstractnetworkcache.go b/network/qabstractnetworkcache.go new file mode 100755 index 00000000..11604871 --- /dev/null +++ b/network/qabstractnetworkcache.go @@ -0,0 +1,71 @@ +package network + +//#include "qabstractnetworkcache.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAbstractNetworkCache struct { + core.QObject +} + +type QAbstractNetworkCacheITF interface { + core.QObjectITF + QAbstractNetworkCachePTR() *QAbstractNetworkCache +} + +func PointerFromQAbstractNetworkCache(ptr QAbstractNetworkCacheITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractNetworkCachePTR().Pointer() + } + return nil +} + +func QAbstractNetworkCacheFromPointer(ptr unsafe.Pointer) *QAbstractNetworkCache { + var n = new(QAbstractNetworkCache) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAbstractNetworkCache_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAbstractNetworkCache) QAbstractNetworkCachePTR() *QAbstractNetworkCache { + return ptr +} + +func (ptr *QAbstractNetworkCache) Clear() { + if ptr.Pointer() != nil { + C.QAbstractNetworkCache_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractNetworkCache) Data(url string) *core.QIODevice { + if ptr.Pointer() != nil { + return core.QIODeviceFromPointer(unsafe.Pointer(C.QAbstractNetworkCache_Data(C.QtObjectPtr(ptr.Pointer()), C.CString(url)))) + } + return nil +} + +func (ptr *QAbstractNetworkCache) Prepare(metaData QNetworkCacheMetaDataITF) *core.QIODevice { + if ptr.Pointer() != nil { + return core.QIODeviceFromPointer(unsafe.Pointer(C.QAbstractNetworkCache_Prepare(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkCacheMetaData(metaData))))) + } + return nil +} + +func (ptr *QAbstractNetworkCache) UpdateMetaData(metaData QNetworkCacheMetaDataITF) { + if ptr.Pointer() != nil { + C.QAbstractNetworkCache_UpdateMetaData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkCacheMetaData(metaData))) + } +} + +func (ptr *QAbstractNetworkCache) DestroyQAbstractNetworkCache() { + if ptr.Pointer() != nil { + C.QAbstractNetworkCache_DestroyQAbstractNetworkCache(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/network/qabstractnetworkcache.h b/network/qabstractnetworkcache.h new file mode 100755 index 00000000..1ca27469 --- /dev/null +++ b/network/qabstractnetworkcache.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QAbstractNetworkCache_Clear(QtObjectPtr ptr); +QtObjectPtr QAbstractNetworkCache_Data(QtObjectPtr ptr, char* url); +QtObjectPtr QAbstractNetworkCache_Prepare(QtObjectPtr ptr, QtObjectPtr metaData); +void QAbstractNetworkCache_UpdateMetaData(QtObjectPtr ptr, QtObjectPtr metaData); +void QAbstractNetworkCache_DestroyQAbstractNetworkCache(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qabstractsocket.cpp b/network/qabstractsocket.cpp new file mode 100755 index 00000000..b0e522ec --- /dev/null +++ b/network/qabstractsocket.cpp @@ -0,0 +1,142 @@ +#include "qabstractsocket.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAbstractSocket: public QAbstractSocket { +public: +void Signal_Connected(){callbackQAbstractSocketConnected(this->objectName().toUtf8().data());}; +void Signal_Disconnected(){callbackQAbstractSocketDisconnected(this->objectName().toUtf8().data());}; +void Signal_HostFound(){callbackQAbstractSocketHostFound(this->objectName().toUtf8().data());}; +void Signal_StateChanged(QAbstractSocket::SocketState socketState){callbackQAbstractSocketStateChanged(this->objectName().toUtf8().data(), socketState);}; +}; + +QtObjectPtr QAbstractSocket_NewQAbstractSocket(int socketType, QtObjectPtr parent){ + return new QAbstractSocket(static_cast(socketType), static_cast(parent)); +} + +void QAbstractSocket_Abort(QtObjectPtr ptr){ + static_cast(ptr)->abort(); +} + +int QAbstractSocket_AtEnd(QtObjectPtr ptr){ + return static_cast(ptr)->atEnd(); +} + +int QAbstractSocket_CanReadLine(QtObjectPtr ptr){ + return static_cast(ptr)->canReadLine(); +} + +void QAbstractSocket_Close(QtObjectPtr ptr){ + static_cast(ptr)->close(); +} + +void QAbstractSocket_ConnectConnected(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractSocket::connected), static_cast(ptr), static_cast(&MyQAbstractSocket::Signal_Connected));; +} + +void QAbstractSocket_DisconnectConnected(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractSocket::connected), static_cast(ptr), static_cast(&MyQAbstractSocket::Signal_Connected));; +} + +void QAbstractSocket_DisconnectFromHost(QtObjectPtr ptr){ + static_cast(ptr)->disconnectFromHost(); +} + +void QAbstractSocket_ConnectDisconnected(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractSocket::disconnected), static_cast(ptr), static_cast(&MyQAbstractSocket::Signal_Disconnected));; +} + +void QAbstractSocket_DisconnectDisconnected(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractSocket::disconnected), static_cast(ptr), static_cast(&MyQAbstractSocket::Signal_Disconnected));; +} + +int QAbstractSocket_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +int QAbstractSocket_Flush(QtObjectPtr ptr){ + return static_cast(ptr)->flush(); +} + +void QAbstractSocket_ConnectHostFound(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractSocket::hostFound), static_cast(ptr), static_cast(&MyQAbstractSocket::Signal_HostFound));; +} + +void QAbstractSocket_DisconnectHostFound(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractSocket::hostFound), static_cast(ptr), static_cast(&MyQAbstractSocket::Signal_HostFound));; +} + +int QAbstractSocket_IsSequential(QtObjectPtr ptr){ + return static_cast(ptr)->isSequential(); +} + +int QAbstractSocket_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QAbstractSocket_PauseMode(QtObjectPtr ptr){ + return static_cast(ptr)->pauseMode(); +} + +char* QAbstractSocket_PeerName(QtObjectPtr ptr){ + return static_cast(ptr)->peerName().toUtf8().data(); +} + +void QAbstractSocket_Resume(QtObjectPtr ptr){ + static_cast(ptr)->resume(); +} + +void QAbstractSocket_SetPauseMode(QtObjectPtr ptr, int pauseMode){ + static_cast(ptr)->setPauseMode(static_cast(pauseMode)); +} + +void QAbstractSocket_SetProxy(QtObjectPtr ptr, QtObjectPtr networkProxy){ + static_cast(ptr)->setProxy(*static_cast(networkProxy)); +} + +void QAbstractSocket_SetSocketOption(QtObjectPtr ptr, int option, char* value){ + static_cast(ptr)->setSocketOption(static_cast(option), QVariant(value)); +} + +char* QAbstractSocket_SocketOption(QtObjectPtr ptr, int option){ + return static_cast(ptr)->socketOption(static_cast(option)).toString().toUtf8().data(); +} + +int QAbstractSocket_SocketType(QtObjectPtr ptr){ + return static_cast(ptr)->socketType(); +} + +void QAbstractSocket_ConnectStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractSocket::stateChanged), static_cast(ptr), static_cast(&MyQAbstractSocket::Signal_StateChanged));; +} + +void QAbstractSocket_DisconnectStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractSocket::stateChanged), static_cast(ptr), static_cast(&MyQAbstractSocket::Signal_StateChanged));; +} + +int QAbstractSocket_WaitForBytesWritten(QtObjectPtr ptr, int msecs){ + return static_cast(ptr)->waitForBytesWritten(msecs); +} + +int QAbstractSocket_WaitForConnected(QtObjectPtr ptr, int msecs){ + return static_cast(ptr)->waitForConnected(msecs); +} + +int QAbstractSocket_WaitForDisconnected(QtObjectPtr ptr, int msecs){ + return static_cast(ptr)->waitForDisconnected(msecs); +} + +int QAbstractSocket_WaitForReadyRead(QtObjectPtr ptr, int msecs){ + return static_cast(ptr)->waitForReadyRead(msecs); +} + +void QAbstractSocket_DestroyQAbstractSocket(QtObjectPtr ptr){ + static_cast(ptr)->~QAbstractSocket(); +} + diff --git a/network/qabstractsocket.go b/network/qabstractsocket.go new file mode 100755 index 00000000..fc1aa2e0 --- /dev/null +++ b/network/qabstractsocket.go @@ -0,0 +1,358 @@ +package network + +//#include "qabstractsocket.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAbstractSocket struct { + core.QIODevice +} + +type QAbstractSocketITF interface { + core.QIODeviceITF + QAbstractSocketPTR() *QAbstractSocket +} + +func PointerFromQAbstractSocket(ptr QAbstractSocketITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractSocketPTR().Pointer() + } + return nil +} + +func QAbstractSocketFromPointer(ptr unsafe.Pointer) *QAbstractSocket { + var n = new(QAbstractSocket) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAbstractSocket_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAbstractSocket) QAbstractSocketPTR() *QAbstractSocket { + return ptr +} + +//QAbstractSocket::BindFlag +type QAbstractSocket__BindFlag int + +var ( + QAbstractSocket__DefaultForPlatform = QAbstractSocket__BindFlag(0x0) + QAbstractSocket__ShareAddress = QAbstractSocket__BindFlag(0x1) + QAbstractSocket__DontShareAddress = QAbstractSocket__BindFlag(0x2) + QAbstractSocket__ReuseAddressHint = QAbstractSocket__BindFlag(0x4) +) + +//QAbstractSocket::NetworkLayerProtocol +type QAbstractSocket__NetworkLayerProtocol int + +var ( + QAbstractSocket__IPv4Protocol = QAbstractSocket__NetworkLayerProtocol(0) + QAbstractSocket__IPv6Protocol = QAbstractSocket__NetworkLayerProtocol(1) + QAbstractSocket__AnyIPProtocol = QAbstractSocket__NetworkLayerProtocol(2) + QAbstractSocket__UnknownNetworkLayerProtocol = QAbstractSocket__NetworkLayerProtocol(-1) +) + +//QAbstractSocket::PauseMode +type QAbstractSocket__PauseMode int + +var ( + QAbstractSocket__PauseNever = QAbstractSocket__PauseMode(0x0) + QAbstractSocket__PauseOnSslErrors = QAbstractSocket__PauseMode(0x1) +) + +//QAbstractSocket::SocketError +type QAbstractSocket__SocketError int + +var ( + QAbstractSocket__ConnectionRefusedError = QAbstractSocket__SocketError(0) + QAbstractSocket__RemoteHostClosedError = QAbstractSocket__SocketError(1) + QAbstractSocket__HostNotFoundError = QAbstractSocket__SocketError(2) + QAbstractSocket__SocketAccessError = QAbstractSocket__SocketError(3) + QAbstractSocket__SocketResourceError = QAbstractSocket__SocketError(4) + QAbstractSocket__SocketTimeoutError = QAbstractSocket__SocketError(5) + QAbstractSocket__DatagramTooLargeError = QAbstractSocket__SocketError(6) + QAbstractSocket__NetworkError = QAbstractSocket__SocketError(7) + QAbstractSocket__AddressInUseError = QAbstractSocket__SocketError(8) + QAbstractSocket__SocketAddressNotAvailableError = QAbstractSocket__SocketError(9) + QAbstractSocket__UnsupportedSocketOperationError = QAbstractSocket__SocketError(10) + QAbstractSocket__UnfinishedSocketOperationError = QAbstractSocket__SocketError(11) + QAbstractSocket__ProxyAuthenticationRequiredError = QAbstractSocket__SocketError(12) + QAbstractSocket__SslHandshakeFailedError = QAbstractSocket__SocketError(13) + QAbstractSocket__ProxyConnectionRefusedError = QAbstractSocket__SocketError(14) + QAbstractSocket__ProxyConnectionClosedError = QAbstractSocket__SocketError(15) + QAbstractSocket__ProxyConnectionTimeoutError = QAbstractSocket__SocketError(16) + QAbstractSocket__ProxyNotFoundError = QAbstractSocket__SocketError(17) + QAbstractSocket__ProxyProtocolError = QAbstractSocket__SocketError(18) + QAbstractSocket__OperationError = QAbstractSocket__SocketError(19) + QAbstractSocket__SslInternalError = QAbstractSocket__SocketError(20) + QAbstractSocket__SslInvalidUserDataError = QAbstractSocket__SocketError(21) + QAbstractSocket__TemporaryError = QAbstractSocket__SocketError(22) + QAbstractSocket__UnknownSocketError = QAbstractSocket__SocketError(-1) +) + +//QAbstractSocket::SocketOption +type QAbstractSocket__SocketOption int + +var ( + QAbstractSocket__LowDelayOption = QAbstractSocket__SocketOption(0) + QAbstractSocket__KeepAliveOption = QAbstractSocket__SocketOption(1) + QAbstractSocket__MulticastTtlOption = QAbstractSocket__SocketOption(2) + QAbstractSocket__MulticastLoopbackOption = QAbstractSocket__SocketOption(3) + QAbstractSocket__TypeOfServiceOption = QAbstractSocket__SocketOption(4) + QAbstractSocket__SendBufferSizeSocketOption = QAbstractSocket__SocketOption(5) + QAbstractSocket__ReceiveBufferSizeSocketOption = QAbstractSocket__SocketOption(6) +) + +//QAbstractSocket::SocketState +type QAbstractSocket__SocketState int + +var ( + QAbstractSocket__UnconnectedState = QAbstractSocket__SocketState(0) + QAbstractSocket__HostLookupState = QAbstractSocket__SocketState(1) + QAbstractSocket__ConnectingState = QAbstractSocket__SocketState(2) + QAbstractSocket__ConnectedState = QAbstractSocket__SocketState(3) + QAbstractSocket__BoundState = QAbstractSocket__SocketState(4) + QAbstractSocket__ListeningState = QAbstractSocket__SocketState(5) + QAbstractSocket__ClosingState = QAbstractSocket__SocketState(6) +) + +//QAbstractSocket::SocketType +type QAbstractSocket__SocketType int + +var ( + QAbstractSocket__TcpSocket = QAbstractSocket__SocketType(0) + QAbstractSocket__UdpSocket = QAbstractSocket__SocketType(1) + QAbstractSocket__UnknownSocketType = QAbstractSocket__SocketType(-1) +) + +func NewQAbstractSocket(socketType QAbstractSocket__SocketType, parent core.QObjectITF) *QAbstractSocket { + return QAbstractSocketFromPointer(unsafe.Pointer(C.QAbstractSocket_NewQAbstractSocket(C.int(socketType), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QAbstractSocket) Abort() { + if ptr.Pointer() != nil { + C.QAbstractSocket_Abort(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractSocket) AtEnd() bool { + if ptr.Pointer() != nil { + return C.QAbstractSocket_AtEnd(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractSocket) CanReadLine() bool { + if ptr.Pointer() != nil { + return C.QAbstractSocket_CanReadLine(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractSocket) Close() { + if ptr.Pointer() != nil { + C.QAbstractSocket_Close(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractSocket) ConnectConnected(f func()) { + if ptr.Pointer() != nil { + C.QAbstractSocket_ConnectConnected(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "connected", f) + } +} + +func (ptr *QAbstractSocket) DisconnectConnected() { + if ptr.Pointer() != nil { + C.QAbstractSocket_DisconnectConnected(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "connected") + } +} + +//export callbackQAbstractSocketConnected +func callbackQAbstractSocketConnected(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "connected").(func())() +} + +func (ptr *QAbstractSocket) DisconnectFromHost() { + if ptr.Pointer() != nil { + C.QAbstractSocket_DisconnectFromHost(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractSocket) ConnectDisconnected(f func()) { + if ptr.Pointer() != nil { + C.QAbstractSocket_ConnectDisconnected(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "disconnected", f) + } +} + +func (ptr *QAbstractSocket) DisconnectDisconnected() { + if ptr.Pointer() != nil { + C.QAbstractSocket_DisconnectDisconnected(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "disconnected") + } +} + +//export callbackQAbstractSocketDisconnected +func callbackQAbstractSocketDisconnected(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "disconnected").(func())() +} + +func (ptr *QAbstractSocket) Error() QAbstractSocket__SocketError { + if ptr.Pointer() != nil { + return QAbstractSocket__SocketError(C.QAbstractSocket_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractSocket) Flush() bool { + if ptr.Pointer() != nil { + return C.QAbstractSocket_Flush(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractSocket) ConnectHostFound(f func()) { + if ptr.Pointer() != nil { + C.QAbstractSocket_ConnectHostFound(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "hostFound", f) + } +} + +func (ptr *QAbstractSocket) DisconnectHostFound() { + if ptr.Pointer() != nil { + C.QAbstractSocket_DisconnectHostFound(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "hostFound") + } +} + +//export callbackQAbstractSocketHostFound +func callbackQAbstractSocketHostFound(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "hostFound").(func())() +} + +func (ptr *QAbstractSocket) IsSequential() bool { + if ptr.Pointer() != nil { + return C.QAbstractSocket_IsSequential(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractSocket) IsValid() bool { + if ptr.Pointer() != nil { + return C.QAbstractSocket_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractSocket) PauseMode() QAbstractSocket__PauseMode { + if ptr.Pointer() != nil { + return QAbstractSocket__PauseMode(C.QAbstractSocket_PauseMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractSocket) PeerName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAbstractSocket_PeerName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAbstractSocket) Resume() { + if ptr.Pointer() != nil { + C.QAbstractSocket_Resume(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractSocket) SetPauseMode(pauseMode QAbstractSocket__PauseMode) { + if ptr.Pointer() != nil { + C.QAbstractSocket_SetPauseMode(C.QtObjectPtr(ptr.Pointer()), C.int(pauseMode)) + } +} + +func (ptr *QAbstractSocket) SetProxy(networkProxy QNetworkProxyITF) { + if ptr.Pointer() != nil { + C.QAbstractSocket_SetProxy(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkProxy(networkProxy))) + } +} + +func (ptr *QAbstractSocket) SetSocketOption(option QAbstractSocket__SocketOption, value string) { + if ptr.Pointer() != nil { + C.QAbstractSocket_SetSocketOption(C.QtObjectPtr(ptr.Pointer()), C.int(option), C.CString(value)) + } +} + +func (ptr *QAbstractSocket) SocketOption(option QAbstractSocket__SocketOption) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAbstractSocket_SocketOption(C.QtObjectPtr(ptr.Pointer()), C.int(option))) + } + return "" +} + +func (ptr *QAbstractSocket) SocketType() QAbstractSocket__SocketType { + if ptr.Pointer() != nil { + return QAbstractSocket__SocketType(C.QAbstractSocket_SocketType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractSocket) ConnectStateChanged(f func(socketState QAbstractSocket__SocketState)) { + if ptr.Pointer() != nil { + C.QAbstractSocket_ConnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stateChanged", f) + } +} + +func (ptr *QAbstractSocket) DisconnectStateChanged() { + if ptr.Pointer() != nil { + C.QAbstractSocket_DisconnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stateChanged") + } +} + +//export callbackQAbstractSocketStateChanged +func callbackQAbstractSocketStateChanged(ptrName *C.char, socketState C.int) { + qt.GetSignal(C.GoString(ptrName), "stateChanged").(func(QAbstractSocket__SocketState))(QAbstractSocket__SocketState(socketState)) +} + +func (ptr *QAbstractSocket) WaitForBytesWritten(msecs int) bool { + if ptr.Pointer() != nil { + return C.QAbstractSocket_WaitForBytesWritten(C.QtObjectPtr(ptr.Pointer()), C.int(msecs)) != 0 + } + return false +} + +func (ptr *QAbstractSocket) WaitForConnected(msecs int) bool { + if ptr.Pointer() != nil { + return C.QAbstractSocket_WaitForConnected(C.QtObjectPtr(ptr.Pointer()), C.int(msecs)) != 0 + } + return false +} + +func (ptr *QAbstractSocket) WaitForDisconnected(msecs int) bool { + if ptr.Pointer() != nil { + return C.QAbstractSocket_WaitForDisconnected(C.QtObjectPtr(ptr.Pointer()), C.int(msecs)) != 0 + } + return false +} + +func (ptr *QAbstractSocket) WaitForReadyRead(msecs int) bool { + if ptr.Pointer() != nil { + return C.QAbstractSocket_WaitForReadyRead(C.QtObjectPtr(ptr.Pointer()), C.int(msecs)) != 0 + } + return false +} + +func (ptr *QAbstractSocket) DestroyQAbstractSocket() { + if ptr.Pointer() != nil { + C.QAbstractSocket_DestroyQAbstractSocket(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/network/qabstractsocket.h b/network/qabstractsocket.h new file mode 100755 index 00000000..48d09303 --- /dev/null +++ b/network/qabstractsocket.h @@ -0,0 +1,40 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAbstractSocket_NewQAbstractSocket(int socketType, QtObjectPtr parent); +void QAbstractSocket_Abort(QtObjectPtr ptr); +int QAbstractSocket_AtEnd(QtObjectPtr ptr); +int QAbstractSocket_CanReadLine(QtObjectPtr ptr); +void QAbstractSocket_Close(QtObjectPtr ptr); +void QAbstractSocket_ConnectConnected(QtObjectPtr ptr); +void QAbstractSocket_DisconnectConnected(QtObjectPtr ptr); +void QAbstractSocket_DisconnectFromHost(QtObjectPtr ptr); +void QAbstractSocket_ConnectDisconnected(QtObjectPtr ptr); +void QAbstractSocket_DisconnectDisconnected(QtObjectPtr ptr); +int QAbstractSocket_Error(QtObjectPtr ptr); +int QAbstractSocket_Flush(QtObjectPtr ptr); +void QAbstractSocket_ConnectHostFound(QtObjectPtr ptr); +void QAbstractSocket_DisconnectHostFound(QtObjectPtr ptr); +int QAbstractSocket_IsSequential(QtObjectPtr ptr); +int QAbstractSocket_IsValid(QtObjectPtr ptr); +int QAbstractSocket_PauseMode(QtObjectPtr ptr); +char* QAbstractSocket_PeerName(QtObjectPtr ptr); +void QAbstractSocket_Resume(QtObjectPtr ptr); +void QAbstractSocket_SetPauseMode(QtObjectPtr ptr, int pauseMode); +void QAbstractSocket_SetProxy(QtObjectPtr ptr, QtObjectPtr networkProxy); +void QAbstractSocket_SetSocketOption(QtObjectPtr ptr, int option, char* value); +char* QAbstractSocket_SocketOption(QtObjectPtr ptr, int option); +int QAbstractSocket_SocketType(QtObjectPtr ptr); +void QAbstractSocket_ConnectStateChanged(QtObjectPtr ptr); +void QAbstractSocket_DisconnectStateChanged(QtObjectPtr ptr); +int QAbstractSocket_WaitForBytesWritten(QtObjectPtr ptr, int msecs); +int QAbstractSocket_WaitForConnected(QtObjectPtr ptr, int msecs); +int QAbstractSocket_WaitForDisconnected(QtObjectPtr ptr, int msecs); +int QAbstractSocket_WaitForReadyRead(QtObjectPtr ptr, int msecs); +void QAbstractSocket_DestroyQAbstractSocket(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qauthenticator.cpp b/network/qauthenticator.cpp new file mode 100755 index 00000000..51cb1b21 --- /dev/null +++ b/network/qauthenticator.cpp @@ -0,0 +1,56 @@ +#include "qauthenticator.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAuthenticator: public QAuthenticator { +public: +}; + +QtObjectPtr QAuthenticator_NewQAuthenticator(){ + return new QAuthenticator(); +} + +QtObjectPtr QAuthenticator_NewQAuthenticator2(QtObjectPtr other){ + return new QAuthenticator(*static_cast(other)); +} + +int QAuthenticator_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +char* QAuthenticator_Option(QtObjectPtr ptr, char* opt){ + return static_cast(ptr)->option(QString(opt)).toString().toUtf8().data(); +} + +char* QAuthenticator_Password(QtObjectPtr ptr){ + return static_cast(ptr)->password().toUtf8().data(); +} + +char* QAuthenticator_Realm(QtObjectPtr ptr){ + return static_cast(ptr)->realm().toUtf8().data(); +} + +void QAuthenticator_SetOption(QtObjectPtr ptr, char* opt, char* value){ + static_cast(ptr)->setOption(QString(opt), QVariant(value)); +} + +void QAuthenticator_SetPassword(QtObjectPtr ptr, char* password){ + static_cast(ptr)->setPassword(QString(password)); +} + +void QAuthenticator_SetUser(QtObjectPtr ptr, char* user){ + static_cast(ptr)->setUser(QString(user)); +} + +char* QAuthenticator_User(QtObjectPtr ptr){ + return static_cast(ptr)->user().toUtf8().data(); +} + +void QAuthenticator_DestroyQAuthenticator(QtObjectPtr ptr){ + static_cast(ptr)->~QAuthenticator(); +} + diff --git a/network/qauthenticator.go b/network/qauthenticator.go new file mode 100755 index 00000000..d0eda950 --- /dev/null +++ b/network/qauthenticator.go @@ -0,0 +1,107 @@ +package network + +//#include "qauthenticator.h" +import "C" +import ( + "unsafe" +) + +type QAuthenticator struct { + ptr unsafe.Pointer +} + +type QAuthenticatorITF interface { + QAuthenticatorPTR() *QAuthenticator +} + +func (p *QAuthenticator) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QAuthenticator) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQAuthenticator(ptr QAuthenticatorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAuthenticatorPTR().Pointer() + } + return nil +} + +func QAuthenticatorFromPointer(ptr unsafe.Pointer) *QAuthenticator { + var n = new(QAuthenticator) + n.SetPointer(ptr) + return n +} + +func (ptr *QAuthenticator) QAuthenticatorPTR() *QAuthenticator { + return ptr +} + +func NewQAuthenticator() *QAuthenticator { + return QAuthenticatorFromPointer(unsafe.Pointer(C.QAuthenticator_NewQAuthenticator())) +} + +func NewQAuthenticator2(other QAuthenticatorITF) *QAuthenticator { + return QAuthenticatorFromPointer(unsafe.Pointer(C.QAuthenticator_NewQAuthenticator2(C.QtObjectPtr(PointerFromQAuthenticator(other))))) +} + +func (ptr *QAuthenticator) IsNull() bool { + if ptr.Pointer() != nil { + return C.QAuthenticator_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAuthenticator) Option(opt string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAuthenticator_Option(C.QtObjectPtr(ptr.Pointer()), C.CString(opt))) + } + return "" +} + +func (ptr *QAuthenticator) Password() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAuthenticator_Password(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAuthenticator) Realm() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAuthenticator_Realm(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAuthenticator) SetOption(opt string, value string) { + if ptr.Pointer() != nil { + C.QAuthenticator_SetOption(C.QtObjectPtr(ptr.Pointer()), C.CString(opt), C.CString(value)) + } +} + +func (ptr *QAuthenticator) SetPassword(password string) { + if ptr.Pointer() != nil { + C.QAuthenticator_SetPassword(C.QtObjectPtr(ptr.Pointer()), C.CString(password)) + } +} + +func (ptr *QAuthenticator) SetUser(user string) { + if ptr.Pointer() != nil { + C.QAuthenticator_SetUser(C.QtObjectPtr(ptr.Pointer()), C.CString(user)) + } +} + +func (ptr *QAuthenticator) User() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAuthenticator_User(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAuthenticator) DestroyQAuthenticator() { + if ptr.Pointer() != nil { + C.QAuthenticator_DestroyQAuthenticator(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/network/qauthenticator.h b/network/qauthenticator.h new file mode 100755 index 00000000..392abcce --- /dev/null +++ b/network/qauthenticator.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAuthenticator_NewQAuthenticator(); +QtObjectPtr QAuthenticator_NewQAuthenticator2(QtObjectPtr other); +int QAuthenticator_IsNull(QtObjectPtr ptr); +char* QAuthenticator_Option(QtObjectPtr ptr, char* opt); +char* QAuthenticator_Password(QtObjectPtr ptr); +char* QAuthenticator_Realm(QtObjectPtr ptr); +void QAuthenticator_SetOption(QtObjectPtr ptr, char* opt, char* value); +void QAuthenticator_SetPassword(QtObjectPtr ptr, char* password); +void QAuthenticator_SetUser(QtObjectPtr ptr, char* user); +char* QAuthenticator_User(QtObjectPtr ptr); +void QAuthenticator_DestroyQAuthenticator(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qdnsdomainnamerecord.cpp b/network/qdnsdomainnamerecord.cpp new file mode 100755 index 00000000..a3040337 --- /dev/null +++ b/network/qdnsdomainnamerecord.cpp @@ -0,0 +1,36 @@ +#include "qdnsdomainnamerecord.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDnsDomainNameRecord: public QDnsDomainNameRecord { +public: +}; + +QtObjectPtr QDnsDomainNameRecord_NewQDnsDomainNameRecord(){ + return new QDnsDomainNameRecord(); +} + +QtObjectPtr QDnsDomainNameRecord_NewQDnsDomainNameRecord2(QtObjectPtr other){ + return new QDnsDomainNameRecord(*static_cast(other)); +} + +char* QDnsDomainNameRecord_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +void QDnsDomainNameRecord_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +char* QDnsDomainNameRecord_Value(QtObjectPtr ptr){ + return static_cast(ptr)->value().toUtf8().data(); +} + +void QDnsDomainNameRecord_DestroyQDnsDomainNameRecord(QtObjectPtr ptr){ + static_cast(ptr)->~QDnsDomainNameRecord(); +} + diff --git a/network/qdnsdomainnamerecord.go b/network/qdnsdomainnamerecord.go new file mode 100755 index 00000000..b209f574 --- /dev/null +++ b/network/qdnsdomainnamerecord.go @@ -0,0 +1,74 @@ +package network + +//#include "qdnsdomainnamerecord.h" +import "C" +import ( + "unsafe" +) + +type QDnsDomainNameRecord struct { + ptr unsafe.Pointer +} + +type QDnsDomainNameRecordITF interface { + QDnsDomainNameRecordPTR() *QDnsDomainNameRecord +} + +func (p *QDnsDomainNameRecord) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDnsDomainNameRecord) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDnsDomainNameRecord(ptr QDnsDomainNameRecordITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDnsDomainNameRecordPTR().Pointer() + } + return nil +} + +func QDnsDomainNameRecordFromPointer(ptr unsafe.Pointer) *QDnsDomainNameRecord { + var n = new(QDnsDomainNameRecord) + n.SetPointer(ptr) + return n +} + +func (ptr *QDnsDomainNameRecord) QDnsDomainNameRecordPTR() *QDnsDomainNameRecord { + return ptr +} + +func NewQDnsDomainNameRecord() *QDnsDomainNameRecord { + return QDnsDomainNameRecordFromPointer(unsafe.Pointer(C.QDnsDomainNameRecord_NewQDnsDomainNameRecord())) +} + +func NewQDnsDomainNameRecord2(other QDnsDomainNameRecordITF) *QDnsDomainNameRecord { + return QDnsDomainNameRecordFromPointer(unsafe.Pointer(C.QDnsDomainNameRecord_NewQDnsDomainNameRecord2(C.QtObjectPtr(PointerFromQDnsDomainNameRecord(other))))) +} + +func (ptr *QDnsDomainNameRecord) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDnsDomainNameRecord_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDnsDomainNameRecord) Swap(other QDnsDomainNameRecordITF) { + if ptr.Pointer() != nil { + C.QDnsDomainNameRecord_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDnsDomainNameRecord(other))) + } +} + +func (ptr *QDnsDomainNameRecord) Value() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDnsDomainNameRecord_Value(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDnsDomainNameRecord) DestroyQDnsDomainNameRecord() { + if ptr.Pointer() != nil { + C.QDnsDomainNameRecord_DestroyQDnsDomainNameRecord(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/network/qdnsdomainnamerecord.h b/network/qdnsdomainnamerecord.h new file mode 100755 index 00000000..b76cfb36 --- /dev/null +++ b/network/qdnsdomainnamerecord.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDnsDomainNameRecord_NewQDnsDomainNameRecord(); +QtObjectPtr QDnsDomainNameRecord_NewQDnsDomainNameRecord2(QtObjectPtr other); +char* QDnsDomainNameRecord_Name(QtObjectPtr ptr); +void QDnsDomainNameRecord_Swap(QtObjectPtr ptr, QtObjectPtr other); +char* QDnsDomainNameRecord_Value(QtObjectPtr ptr); +void QDnsDomainNameRecord_DestroyQDnsDomainNameRecord(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qdnshostaddressrecord.cpp b/network/qdnshostaddressrecord.cpp new file mode 100755 index 00000000..e756afab --- /dev/null +++ b/network/qdnshostaddressrecord.cpp @@ -0,0 +1,32 @@ +#include "qdnshostaddressrecord.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDnsHostAddressRecord: public QDnsHostAddressRecord { +public: +}; + +QtObjectPtr QDnsHostAddressRecord_NewQDnsHostAddressRecord(){ + return new QDnsHostAddressRecord(); +} + +QtObjectPtr QDnsHostAddressRecord_NewQDnsHostAddressRecord2(QtObjectPtr other){ + return new QDnsHostAddressRecord(*static_cast(other)); +} + +char* QDnsHostAddressRecord_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +void QDnsHostAddressRecord_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QDnsHostAddressRecord_DestroyQDnsHostAddressRecord(QtObjectPtr ptr){ + static_cast(ptr)->~QDnsHostAddressRecord(); +} + diff --git a/network/qdnshostaddressrecord.go b/network/qdnshostaddressrecord.go new file mode 100755 index 00000000..140ae5ce --- /dev/null +++ b/network/qdnshostaddressrecord.go @@ -0,0 +1,67 @@ +package network + +//#include "qdnshostaddressrecord.h" +import "C" +import ( + "unsafe" +) + +type QDnsHostAddressRecord struct { + ptr unsafe.Pointer +} + +type QDnsHostAddressRecordITF interface { + QDnsHostAddressRecordPTR() *QDnsHostAddressRecord +} + +func (p *QDnsHostAddressRecord) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDnsHostAddressRecord) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDnsHostAddressRecord(ptr QDnsHostAddressRecordITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDnsHostAddressRecordPTR().Pointer() + } + return nil +} + +func QDnsHostAddressRecordFromPointer(ptr unsafe.Pointer) *QDnsHostAddressRecord { + var n = new(QDnsHostAddressRecord) + n.SetPointer(ptr) + return n +} + +func (ptr *QDnsHostAddressRecord) QDnsHostAddressRecordPTR() *QDnsHostAddressRecord { + return ptr +} + +func NewQDnsHostAddressRecord() *QDnsHostAddressRecord { + return QDnsHostAddressRecordFromPointer(unsafe.Pointer(C.QDnsHostAddressRecord_NewQDnsHostAddressRecord())) +} + +func NewQDnsHostAddressRecord2(other QDnsHostAddressRecordITF) *QDnsHostAddressRecord { + return QDnsHostAddressRecordFromPointer(unsafe.Pointer(C.QDnsHostAddressRecord_NewQDnsHostAddressRecord2(C.QtObjectPtr(PointerFromQDnsHostAddressRecord(other))))) +} + +func (ptr *QDnsHostAddressRecord) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDnsHostAddressRecord_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDnsHostAddressRecord) Swap(other QDnsHostAddressRecordITF) { + if ptr.Pointer() != nil { + C.QDnsHostAddressRecord_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDnsHostAddressRecord(other))) + } +} + +func (ptr *QDnsHostAddressRecord) DestroyQDnsHostAddressRecord() { + if ptr.Pointer() != nil { + C.QDnsHostAddressRecord_DestroyQDnsHostAddressRecord(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/network/qdnshostaddressrecord.h b/network/qdnshostaddressrecord.h new file mode 100755 index 00000000..a7d5c2db --- /dev/null +++ b/network/qdnshostaddressrecord.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDnsHostAddressRecord_NewQDnsHostAddressRecord(); +QtObjectPtr QDnsHostAddressRecord_NewQDnsHostAddressRecord2(QtObjectPtr other); +char* QDnsHostAddressRecord_Name(QtObjectPtr ptr); +void QDnsHostAddressRecord_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QDnsHostAddressRecord_DestroyQDnsHostAddressRecord(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qdnslookup.cpp b/network/qdnslookup.cpp new file mode 100755 index 00000000..d7e0d167 --- /dev/null +++ b/network/qdnslookup.cpp @@ -0,0 +1,98 @@ +#include "qdnslookup.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDnsLookup: public QDnsLookup { +public: +void Signal_Finished(){callbackQDnsLookupFinished(this->objectName().toUtf8().data());}; +void Signal_NameChanged(const QString & name){callbackQDnsLookupNameChanged(this->objectName().toUtf8().data(), name.toUtf8().data());}; +void Signal_TypeChanged(QDnsLookup::Type ty){callbackQDnsLookupTypeChanged(this->objectName().toUtf8().data(), ty);}; +}; + +QtObjectPtr QDnsLookup_NewQDnsLookup3(int ty, char* name, QtObjectPtr nameserver, QtObjectPtr parent){ + return new QDnsLookup(static_cast(ty), QString(name), *static_cast(nameserver), static_cast(parent)); +} + +int QDnsLookup_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +char* QDnsLookup_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +char* QDnsLookup_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +void QDnsLookup_SetName(QtObjectPtr ptr, char* name){ + static_cast(ptr)->setName(QString(name)); +} + +void QDnsLookup_SetNameserver(QtObjectPtr ptr, QtObjectPtr nameserver){ + static_cast(ptr)->setNameserver(*static_cast(nameserver)); +} + +void QDnsLookup_SetType(QtObjectPtr ptr, int v){ + static_cast(ptr)->setType(static_cast(v)); +} + +int QDnsLookup_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +QtObjectPtr QDnsLookup_NewQDnsLookup(QtObjectPtr parent){ + return new QDnsLookup(static_cast(parent)); +} + +QtObjectPtr QDnsLookup_NewQDnsLookup2(int ty, char* name, QtObjectPtr parent){ + return new QDnsLookup(static_cast(ty), QString(name), static_cast(parent)); +} + +void QDnsLookup_Abort(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "abort"); +} + +void QDnsLookup_ConnectFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QDnsLookup::finished), static_cast(ptr), static_cast(&MyQDnsLookup::Signal_Finished));; +} + +void QDnsLookup_DisconnectFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QDnsLookup::finished), static_cast(ptr), static_cast(&MyQDnsLookup::Signal_Finished));; +} + +int QDnsLookup_IsFinished(QtObjectPtr ptr){ + return static_cast(ptr)->isFinished(); +} + +void QDnsLookup_Lookup(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "lookup"); +} + +void QDnsLookup_ConnectNameChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QDnsLookup::nameChanged), static_cast(ptr), static_cast(&MyQDnsLookup::Signal_NameChanged));; +} + +void QDnsLookup_DisconnectNameChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QDnsLookup::nameChanged), static_cast(ptr), static_cast(&MyQDnsLookup::Signal_NameChanged));; +} + +void QDnsLookup_ConnectTypeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QDnsLookup::typeChanged), static_cast(ptr), static_cast(&MyQDnsLookup::Signal_TypeChanged));; +} + +void QDnsLookup_DisconnectTypeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QDnsLookup::typeChanged), static_cast(ptr), static_cast(&MyQDnsLookup::Signal_TypeChanged));; +} + +void QDnsLookup_DestroyQDnsLookup(QtObjectPtr ptr){ + static_cast(ptr)->~QDnsLookup(); +} + diff --git a/network/qdnslookup.go b/network/qdnslookup.go new file mode 100755 index 00000000..754460e2 --- /dev/null +++ b/network/qdnslookup.go @@ -0,0 +1,208 @@ +package network + +//#include "qdnslookup.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QDnsLookup struct { + core.QObject +} + +type QDnsLookupITF interface { + core.QObjectITF + QDnsLookupPTR() *QDnsLookup +} + +func PointerFromQDnsLookup(ptr QDnsLookupITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDnsLookupPTR().Pointer() + } + return nil +} + +func QDnsLookupFromPointer(ptr unsafe.Pointer) *QDnsLookup { + var n = new(QDnsLookup) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QDnsLookup_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QDnsLookup) QDnsLookupPTR() *QDnsLookup { + return ptr +} + +//QDnsLookup::Error +type QDnsLookup__Error int + +var ( + QDnsLookup__NoError = QDnsLookup__Error(0) + QDnsLookup__ResolverError = QDnsLookup__Error(1) + QDnsLookup__OperationCancelledError = QDnsLookup__Error(2) + QDnsLookup__InvalidRequestError = QDnsLookup__Error(3) + QDnsLookup__InvalidReplyError = QDnsLookup__Error(4) + QDnsLookup__ServerFailureError = QDnsLookup__Error(5) + QDnsLookup__ServerRefusedError = QDnsLookup__Error(6) + QDnsLookup__NotFoundError = QDnsLookup__Error(7) +) + +//QDnsLookup::Type +type QDnsLookup__Type int + +var ( + QDnsLookup__A = QDnsLookup__Type(1) + QDnsLookup__AAAA = QDnsLookup__Type(28) + QDnsLookup__ANY = QDnsLookup__Type(255) + QDnsLookup__CNAME = QDnsLookup__Type(5) + QDnsLookup__MX = QDnsLookup__Type(15) + QDnsLookup__NS = QDnsLookup__Type(2) + QDnsLookup__PTR = QDnsLookup__Type(12) + QDnsLookup__SRV = QDnsLookup__Type(33) + QDnsLookup__TXT = QDnsLookup__Type(16) +) + +func NewQDnsLookup3(ty QDnsLookup__Type, name string, nameserver QHostAddressITF, parent core.QObjectITF) *QDnsLookup { + return QDnsLookupFromPointer(unsafe.Pointer(C.QDnsLookup_NewQDnsLookup3(C.int(ty), C.CString(name), C.QtObjectPtr(PointerFromQHostAddress(nameserver)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QDnsLookup) Error() QDnsLookup__Error { + if ptr.Pointer() != nil { + return QDnsLookup__Error(C.QDnsLookup_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDnsLookup) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDnsLookup_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDnsLookup) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDnsLookup_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDnsLookup) SetName(name string) { + if ptr.Pointer() != nil { + C.QDnsLookup_SetName(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func (ptr *QDnsLookup) SetNameserver(nameserver QHostAddressITF) { + if ptr.Pointer() != nil { + C.QDnsLookup_SetNameserver(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQHostAddress(nameserver))) + } +} + +func (ptr *QDnsLookup) SetType(v QDnsLookup__Type) { + if ptr.Pointer() != nil { + C.QDnsLookup_SetType(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QDnsLookup) Type() QDnsLookup__Type { + if ptr.Pointer() != nil { + return QDnsLookup__Type(C.QDnsLookup_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQDnsLookup(parent core.QObjectITF) *QDnsLookup { + return QDnsLookupFromPointer(unsafe.Pointer(C.QDnsLookup_NewQDnsLookup(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQDnsLookup2(ty QDnsLookup__Type, name string, parent core.QObjectITF) *QDnsLookup { + return QDnsLookupFromPointer(unsafe.Pointer(C.QDnsLookup_NewQDnsLookup2(C.int(ty), C.CString(name), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QDnsLookup) Abort() { + if ptr.Pointer() != nil { + C.QDnsLookup_Abort(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDnsLookup) ConnectFinished(f func()) { + if ptr.Pointer() != nil { + C.QDnsLookup_ConnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "finished", f) + } +} + +func (ptr *QDnsLookup) DisconnectFinished() { + if ptr.Pointer() != nil { + C.QDnsLookup_DisconnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "finished") + } +} + +//export callbackQDnsLookupFinished +func callbackQDnsLookupFinished(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "finished").(func())() +} + +func (ptr *QDnsLookup) IsFinished() bool { + if ptr.Pointer() != nil { + return C.QDnsLookup_IsFinished(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDnsLookup) Lookup() { + if ptr.Pointer() != nil { + C.QDnsLookup_Lookup(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDnsLookup) ConnectNameChanged(f func(name string)) { + if ptr.Pointer() != nil { + C.QDnsLookup_ConnectNameChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "nameChanged", f) + } +} + +func (ptr *QDnsLookup) DisconnectNameChanged() { + if ptr.Pointer() != nil { + C.QDnsLookup_DisconnectNameChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "nameChanged") + } +} + +//export callbackQDnsLookupNameChanged +func callbackQDnsLookupNameChanged(ptrName *C.char, name *C.char) { + qt.GetSignal(C.GoString(ptrName), "nameChanged").(func(string))(C.GoString(name)) +} + +func (ptr *QDnsLookup) ConnectTypeChanged(f func(ty QDnsLookup__Type)) { + if ptr.Pointer() != nil { + C.QDnsLookup_ConnectTypeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "typeChanged", f) + } +} + +func (ptr *QDnsLookup) DisconnectTypeChanged() { + if ptr.Pointer() != nil { + C.QDnsLookup_DisconnectTypeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "typeChanged") + } +} + +//export callbackQDnsLookupTypeChanged +func callbackQDnsLookupTypeChanged(ptrName *C.char, ty C.int) { + qt.GetSignal(C.GoString(ptrName), "typeChanged").(func(QDnsLookup__Type))(QDnsLookup__Type(ty)) +} + +func (ptr *QDnsLookup) DestroyQDnsLookup() { + if ptr.Pointer() != nil { + C.QDnsLookup_DestroyQDnsLookup(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/network/qdnslookup.h b/network/qdnslookup.h new file mode 100755 index 00000000..05e65a2f --- /dev/null +++ b/network/qdnslookup.h @@ -0,0 +1,29 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDnsLookup_NewQDnsLookup3(int ty, char* name, QtObjectPtr nameserver, QtObjectPtr parent); +int QDnsLookup_Error(QtObjectPtr ptr); +char* QDnsLookup_ErrorString(QtObjectPtr ptr); +char* QDnsLookup_Name(QtObjectPtr ptr); +void QDnsLookup_SetName(QtObjectPtr ptr, char* name); +void QDnsLookup_SetNameserver(QtObjectPtr ptr, QtObjectPtr nameserver); +void QDnsLookup_SetType(QtObjectPtr ptr, int v); +int QDnsLookup_Type(QtObjectPtr ptr); +QtObjectPtr QDnsLookup_NewQDnsLookup(QtObjectPtr parent); +QtObjectPtr QDnsLookup_NewQDnsLookup2(int ty, char* name, QtObjectPtr parent); +void QDnsLookup_Abort(QtObjectPtr ptr); +void QDnsLookup_ConnectFinished(QtObjectPtr ptr); +void QDnsLookup_DisconnectFinished(QtObjectPtr ptr); +int QDnsLookup_IsFinished(QtObjectPtr ptr); +void QDnsLookup_Lookup(QtObjectPtr ptr); +void QDnsLookup_ConnectNameChanged(QtObjectPtr ptr); +void QDnsLookup_DisconnectNameChanged(QtObjectPtr ptr); +void QDnsLookup_ConnectTypeChanged(QtObjectPtr ptr); +void QDnsLookup_DisconnectTypeChanged(QtObjectPtr ptr); +void QDnsLookup_DestroyQDnsLookup(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qdnsmailexchangerecord.cpp b/network/qdnsmailexchangerecord.cpp new file mode 100755 index 00000000..fbffb867 --- /dev/null +++ b/network/qdnsmailexchangerecord.cpp @@ -0,0 +1,36 @@ +#include "qdnsmailexchangerecord.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDnsMailExchangeRecord: public QDnsMailExchangeRecord { +public: +}; + +QtObjectPtr QDnsMailExchangeRecord_NewQDnsMailExchangeRecord(){ + return new QDnsMailExchangeRecord(); +} + +QtObjectPtr QDnsMailExchangeRecord_NewQDnsMailExchangeRecord2(QtObjectPtr other){ + return new QDnsMailExchangeRecord(*static_cast(other)); +} + +char* QDnsMailExchangeRecord_Exchange(QtObjectPtr ptr){ + return static_cast(ptr)->exchange().toUtf8().data(); +} + +char* QDnsMailExchangeRecord_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +void QDnsMailExchangeRecord_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QDnsMailExchangeRecord_DestroyQDnsMailExchangeRecord(QtObjectPtr ptr){ + static_cast(ptr)->~QDnsMailExchangeRecord(); +} + diff --git a/network/qdnsmailexchangerecord.go b/network/qdnsmailexchangerecord.go new file mode 100755 index 00000000..cc451080 --- /dev/null +++ b/network/qdnsmailexchangerecord.go @@ -0,0 +1,74 @@ +package network + +//#include "qdnsmailexchangerecord.h" +import "C" +import ( + "unsafe" +) + +type QDnsMailExchangeRecord struct { + ptr unsafe.Pointer +} + +type QDnsMailExchangeRecordITF interface { + QDnsMailExchangeRecordPTR() *QDnsMailExchangeRecord +} + +func (p *QDnsMailExchangeRecord) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDnsMailExchangeRecord) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDnsMailExchangeRecord(ptr QDnsMailExchangeRecordITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDnsMailExchangeRecordPTR().Pointer() + } + return nil +} + +func QDnsMailExchangeRecordFromPointer(ptr unsafe.Pointer) *QDnsMailExchangeRecord { + var n = new(QDnsMailExchangeRecord) + n.SetPointer(ptr) + return n +} + +func (ptr *QDnsMailExchangeRecord) QDnsMailExchangeRecordPTR() *QDnsMailExchangeRecord { + return ptr +} + +func NewQDnsMailExchangeRecord() *QDnsMailExchangeRecord { + return QDnsMailExchangeRecordFromPointer(unsafe.Pointer(C.QDnsMailExchangeRecord_NewQDnsMailExchangeRecord())) +} + +func NewQDnsMailExchangeRecord2(other QDnsMailExchangeRecordITF) *QDnsMailExchangeRecord { + return QDnsMailExchangeRecordFromPointer(unsafe.Pointer(C.QDnsMailExchangeRecord_NewQDnsMailExchangeRecord2(C.QtObjectPtr(PointerFromQDnsMailExchangeRecord(other))))) +} + +func (ptr *QDnsMailExchangeRecord) Exchange() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDnsMailExchangeRecord_Exchange(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDnsMailExchangeRecord) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDnsMailExchangeRecord_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDnsMailExchangeRecord) Swap(other QDnsMailExchangeRecordITF) { + if ptr.Pointer() != nil { + C.QDnsMailExchangeRecord_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDnsMailExchangeRecord(other))) + } +} + +func (ptr *QDnsMailExchangeRecord) DestroyQDnsMailExchangeRecord() { + if ptr.Pointer() != nil { + C.QDnsMailExchangeRecord_DestroyQDnsMailExchangeRecord(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/network/qdnsmailexchangerecord.h b/network/qdnsmailexchangerecord.h new file mode 100755 index 00000000..f6e37464 --- /dev/null +++ b/network/qdnsmailexchangerecord.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDnsMailExchangeRecord_NewQDnsMailExchangeRecord(); +QtObjectPtr QDnsMailExchangeRecord_NewQDnsMailExchangeRecord2(QtObjectPtr other); +char* QDnsMailExchangeRecord_Exchange(QtObjectPtr ptr); +char* QDnsMailExchangeRecord_Name(QtObjectPtr ptr); +void QDnsMailExchangeRecord_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QDnsMailExchangeRecord_DestroyQDnsMailExchangeRecord(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qdnsservicerecord.cpp b/network/qdnsservicerecord.cpp new file mode 100755 index 00000000..90d23c99 --- /dev/null +++ b/network/qdnsservicerecord.cpp @@ -0,0 +1,36 @@ +#include "qdnsservicerecord.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDnsServiceRecord: public QDnsServiceRecord { +public: +}; + +QtObjectPtr QDnsServiceRecord_NewQDnsServiceRecord(){ + return new QDnsServiceRecord(); +} + +QtObjectPtr QDnsServiceRecord_NewQDnsServiceRecord2(QtObjectPtr other){ + return new QDnsServiceRecord(*static_cast(other)); +} + +char* QDnsServiceRecord_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +void QDnsServiceRecord_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +char* QDnsServiceRecord_Target(QtObjectPtr ptr){ + return static_cast(ptr)->target().toUtf8().data(); +} + +void QDnsServiceRecord_DestroyQDnsServiceRecord(QtObjectPtr ptr){ + static_cast(ptr)->~QDnsServiceRecord(); +} + diff --git a/network/qdnsservicerecord.go b/network/qdnsservicerecord.go new file mode 100755 index 00000000..94181853 --- /dev/null +++ b/network/qdnsservicerecord.go @@ -0,0 +1,74 @@ +package network + +//#include "qdnsservicerecord.h" +import "C" +import ( + "unsafe" +) + +type QDnsServiceRecord struct { + ptr unsafe.Pointer +} + +type QDnsServiceRecordITF interface { + QDnsServiceRecordPTR() *QDnsServiceRecord +} + +func (p *QDnsServiceRecord) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDnsServiceRecord) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDnsServiceRecord(ptr QDnsServiceRecordITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDnsServiceRecordPTR().Pointer() + } + return nil +} + +func QDnsServiceRecordFromPointer(ptr unsafe.Pointer) *QDnsServiceRecord { + var n = new(QDnsServiceRecord) + n.SetPointer(ptr) + return n +} + +func (ptr *QDnsServiceRecord) QDnsServiceRecordPTR() *QDnsServiceRecord { + return ptr +} + +func NewQDnsServiceRecord() *QDnsServiceRecord { + return QDnsServiceRecordFromPointer(unsafe.Pointer(C.QDnsServiceRecord_NewQDnsServiceRecord())) +} + +func NewQDnsServiceRecord2(other QDnsServiceRecordITF) *QDnsServiceRecord { + return QDnsServiceRecordFromPointer(unsafe.Pointer(C.QDnsServiceRecord_NewQDnsServiceRecord2(C.QtObjectPtr(PointerFromQDnsServiceRecord(other))))) +} + +func (ptr *QDnsServiceRecord) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDnsServiceRecord_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDnsServiceRecord) Swap(other QDnsServiceRecordITF) { + if ptr.Pointer() != nil { + C.QDnsServiceRecord_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDnsServiceRecord(other))) + } +} + +func (ptr *QDnsServiceRecord) Target() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDnsServiceRecord_Target(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDnsServiceRecord) DestroyQDnsServiceRecord() { + if ptr.Pointer() != nil { + C.QDnsServiceRecord_DestroyQDnsServiceRecord(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/network/qdnsservicerecord.h b/network/qdnsservicerecord.h new file mode 100755 index 00000000..8f266a42 --- /dev/null +++ b/network/qdnsservicerecord.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDnsServiceRecord_NewQDnsServiceRecord(); +QtObjectPtr QDnsServiceRecord_NewQDnsServiceRecord2(QtObjectPtr other); +char* QDnsServiceRecord_Name(QtObjectPtr ptr); +void QDnsServiceRecord_Swap(QtObjectPtr ptr, QtObjectPtr other); +char* QDnsServiceRecord_Target(QtObjectPtr ptr); +void QDnsServiceRecord_DestroyQDnsServiceRecord(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qdnstextrecord.cpp b/network/qdnstextrecord.cpp new file mode 100755 index 00000000..c864b437 --- /dev/null +++ b/network/qdnstextrecord.cpp @@ -0,0 +1,32 @@ +#include "qdnstextrecord.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDnsTextRecord: public QDnsTextRecord { +public: +}; + +QtObjectPtr QDnsTextRecord_NewQDnsTextRecord(){ + return new QDnsTextRecord(); +} + +QtObjectPtr QDnsTextRecord_NewQDnsTextRecord2(QtObjectPtr other){ + return new QDnsTextRecord(*static_cast(other)); +} + +char* QDnsTextRecord_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +void QDnsTextRecord_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QDnsTextRecord_DestroyQDnsTextRecord(QtObjectPtr ptr){ + static_cast(ptr)->~QDnsTextRecord(); +} + diff --git a/network/qdnstextrecord.go b/network/qdnstextrecord.go new file mode 100755 index 00000000..bbca2963 --- /dev/null +++ b/network/qdnstextrecord.go @@ -0,0 +1,67 @@ +package network + +//#include "qdnstextrecord.h" +import "C" +import ( + "unsafe" +) + +type QDnsTextRecord struct { + ptr unsafe.Pointer +} + +type QDnsTextRecordITF interface { + QDnsTextRecordPTR() *QDnsTextRecord +} + +func (p *QDnsTextRecord) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDnsTextRecord) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDnsTextRecord(ptr QDnsTextRecordITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDnsTextRecordPTR().Pointer() + } + return nil +} + +func QDnsTextRecordFromPointer(ptr unsafe.Pointer) *QDnsTextRecord { + var n = new(QDnsTextRecord) + n.SetPointer(ptr) + return n +} + +func (ptr *QDnsTextRecord) QDnsTextRecordPTR() *QDnsTextRecord { + return ptr +} + +func NewQDnsTextRecord() *QDnsTextRecord { + return QDnsTextRecordFromPointer(unsafe.Pointer(C.QDnsTextRecord_NewQDnsTextRecord())) +} + +func NewQDnsTextRecord2(other QDnsTextRecordITF) *QDnsTextRecord { + return QDnsTextRecordFromPointer(unsafe.Pointer(C.QDnsTextRecord_NewQDnsTextRecord2(C.QtObjectPtr(PointerFromQDnsTextRecord(other))))) +} + +func (ptr *QDnsTextRecord) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDnsTextRecord_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDnsTextRecord) Swap(other QDnsTextRecordITF) { + if ptr.Pointer() != nil { + C.QDnsTextRecord_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDnsTextRecord(other))) + } +} + +func (ptr *QDnsTextRecord) DestroyQDnsTextRecord() { + if ptr.Pointer() != nil { + C.QDnsTextRecord_DestroyQDnsTextRecord(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/network/qdnstextrecord.h b/network/qdnstextrecord.h new file mode 100755 index 00000000..ddc1d702 --- /dev/null +++ b/network/qdnstextrecord.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDnsTextRecord_NewQDnsTextRecord(); +QtObjectPtr QDnsTextRecord_NewQDnsTextRecord2(QtObjectPtr other); +char* QDnsTextRecord_Name(QtObjectPtr ptr); +void QDnsTextRecord_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QDnsTextRecord_DestroyQDnsTextRecord(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qhostaddress.cpp b/network/qhostaddress.cpp new file mode 100755 index 00000000..f9109804 --- /dev/null +++ b/network/qhostaddress.cpp @@ -0,0 +1,68 @@ +#include "qhostaddress.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQHostAddress: public QHostAddress { +public: +}; + +QtObjectPtr QHostAddress_NewQHostAddress(){ + return new QHostAddress(); +} + +QtObjectPtr QHostAddress_NewQHostAddress9(int address){ + return new QHostAddress(static_cast(address)); +} + +QtObjectPtr QHostAddress_NewQHostAddress8(QtObjectPtr address){ + return new QHostAddress(*static_cast(address)); +} + +QtObjectPtr QHostAddress_NewQHostAddress7(char* address){ + return new QHostAddress(QString(address)); +} + +void QHostAddress_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +int QHostAddress_IsInSubnet(QtObjectPtr ptr, QtObjectPtr subnet, int netmask){ + return static_cast(ptr)->isInSubnet(*static_cast(subnet), netmask); +} + +int QHostAddress_IsLoopback(QtObjectPtr ptr){ + return static_cast(ptr)->isLoopback(); +} + +int QHostAddress_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QHostAddress_Protocol(QtObjectPtr ptr){ + return static_cast(ptr)->protocol(); +} + +char* QHostAddress_ScopeId(QtObjectPtr ptr){ + return static_cast(ptr)->scopeId().toUtf8().data(); +} + +int QHostAddress_SetAddress5(QtObjectPtr ptr, char* address){ + return static_cast(ptr)->setAddress(QString(address)); +} + +void QHostAddress_SetScopeId(QtObjectPtr ptr, char* id){ + static_cast(ptr)->setScopeId(QString(id)); +} + +char* QHostAddress_ToString(QtObjectPtr ptr){ + return static_cast(ptr)->toString().toUtf8().data(); +} + +void QHostAddress_DestroyQHostAddress(QtObjectPtr ptr){ + static_cast(ptr)->~QHostAddress(); +} + diff --git a/network/qhostaddress.go b/network/qhostaddress.go new file mode 100755 index 00000000..d28e90b0 --- /dev/null +++ b/network/qhostaddress.go @@ -0,0 +1,136 @@ +package network + +//#include "qhostaddress.h" +import "C" +import ( + "unsafe" +) + +type QHostAddress struct { + ptr unsafe.Pointer +} + +type QHostAddressITF interface { + QHostAddressPTR() *QHostAddress +} + +func (p *QHostAddress) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QHostAddress) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQHostAddress(ptr QHostAddressITF) unsafe.Pointer { + if ptr != nil { + return ptr.QHostAddressPTR().Pointer() + } + return nil +} + +func QHostAddressFromPointer(ptr unsafe.Pointer) *QHostAddress { + var n = new(QHostAddress) + n.SetPointer(ptr) + return n +} + +func (ptr *QHostAddress) QHostAddressPTR() *QHostAddress { + return ptr +} + +//QHostAddress::SpecialAddress +type QHostAddress__SpecialAddress int + +var ( + QHostAddress__Null = QHostAddress__SpecialAddress(0) + QHostAddress__Broadcast = QHostAddress__SpecialAddress(1) + QHostAddress__LocalHost = QHostAddress__SpecialAddress(2) + QHostAddress__LocalHostIPv6 = QHostAddress__SpecialAddress(3) + QHostAddress__Any = QHostAddress__SpecialAddress(4) + QHostAddress__AnyIPv6 = QHostAddress__SpecialAddress(5) + QHostAddress__AnyIPv4 = QHostAddress__SpecialAddress(6) +) + +func NewQHostAddress() *QHostAddress { + return QHostAddressFromPointer(unsafe.Pointer(C.QHostAddress_NewQHostAddress())) +} + +func NewQHostAddress9(address QHostAddress__SpecialAddress) *QHostAddress { + return QHostAddressFromPointer(unsafe.Pointer(C.QHostAddress_NewQHostAddress9(C.int(address)))) +} + +func NewQHostAddress8(address QHostAddressITF) *QHostAddress { + return QHostAddressFromPointer(unsafe.Pointer(C.QHostAddress_NewQHostAddress8(C.QtObjectPtr(PointerFromQHostAddress(address))))) +} + +func NewQHostAddress7(address string) *QHostAddress { + return QHostAddressFromPointer(unsafe.Pointer(C.QHostAddress_NewQHostAddress7(C.CString(address)))) +} + +func (ptr *QHostAddress) Clear() { + if ptr.Pointer() != nil { + C.QHostAddress_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QHostAddress) IsInSubnet(subnet QHostAddressITF, netmask int) bool { + if ptr.Pointer() != nil { + return C.QHostAddress_IsInSubnet(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQHostAddress(subnet)), C.int(netmask)) != 0 + } + return false +} + +func (ptr *QHostAddress) IsLoopback() bool { + if ptr.Pointer() != nil { + return C.QHostAddress_IsLoopback(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QHostAddress) IsNull() bool { + if ptr.Pointer() != nil { + return C.QHostAddress_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QHostAddress) Protocol() QAbstractSocket__NetworkLayerProtocol { + if ptr.Pointer() != nil { + return QAbstractSocket__NetworkLayerProtocol(C.QHostAddress_Protocol(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QHostAddress) ScopeId() string { + if ptr.Pointer() != nil { + return C.GoString(C.QHostAddress_ScopeId(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QHostAddress) SetAddress5(address string) bool { + if ptr.Pointer() != nil { + return C.QHostAddress_SetAddress5(C.QtObjectPtr(ptr.Pointer()), C.CString(address)) != 0 + } + return false +} + +func (ptr *QHostAddress) SetScopeId(id string) { + if ptr.Pointer() != nil { + C.QHostAddress_SetScopeId(C.QtObjectPtr(ptr.Pointer()), C.CString(id)) + } +} + +func (ptr *QHostAddress) ToString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QHostAddress_ToString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QHostAddress) DestroyQHostAddress() { + if ptr.Pointer() != nil { + C.QHostAddress_DestroyQHostAddress(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/network/qhostaddress.h b/network/qhostaddress.h new file mode 100755 index 00000000..fe6eb8dd --- /dev/null +++ b/network/qhostaddress.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QHostAddress_NewQHostAddress(); +QtObjectPtr QHostAddress_NewQHostAddress9(int address); +QtObjectPtr QHostAddress_NewQHostAddress8(QtObjectPtr address); +QtObjectPtr QHostAddress_NewQHostAddress7(char* address); +void QHostAddress_Clear(QtObjectPtr ptr); +int QHostAddress_IsInSubnet(QtObjectPtr ptr, QtObjectPtr subnet, int netmask); +int QHostAddress_IsLoopback(QtObjectPtr ptr); +int QHostAddress_IsNull(QtObjectPtr ptr); +int QHostAddress_Protocol(QtObjectPtr ptr); +char* QHostAddress_ScopeId(QtObjectPtr ptr); +int QHostAddress_SetAddress5(QtObjectPtr ptr, char* address); +void QHostAddress_SetScopeId(QtObjectPtr ptr, char* id); +char* QHostAddress_ToString(QtObjectPtr ptr); +void QHostAddress_DestroyQHostAddress(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qhostinfo.cpp b/network/qhostinfo.cpp new file mode 100755 index 00000000..d0c2832d --- /dev/null +++ b/network/qhostinfo.cpp @@ -0,0 +1,73 @@ +#include "qhostinfo.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQHostInfo: public QHostInfo { +public: +}; + +QtObjectPtr QHostInfo_NewQHostInfo2(QtObjectPtr other){ + return new QHostInfo(*static_cast(other)); +} + +QtObjectPtr QHostInfo_NewQHostInfo(int id){ + return new QHostInfo(id); +} + +void QHostInfo_QHostInfo_AbortHostLookup(int id){ + QHostInfo::abortHostLookup(id); +} + +int QHostInfo_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +char* QHostInfo_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +char* QHostInfo_HostName(QtObjectPtr ptr){ + return static_cast(ptr)->hostName().toUtf8().data(); +} + +int QHostInfo_QHostInfo_LookupHost(char* name, QtObjectPtr receiver, char* member){ + return QHostInfo::lookupHost(QString(name), static_cast(receiver), const_cast(member)); +} + +int QHostInfo_LookupId(QtObjectPtr ptr){ + return static_cast(ptr)->lookupId(); +} + +void QHostInfo_SetError(QtObjectPtr ptr, int error){ + static_cast(ptr)->setError(static_cast(error)); +} + +void QHostInfo_SetErrorString(QtObjectPtr ptr, char* str){ + static_cast(ptr)->setErrorString(QString(str)); +} + +void QHostInfo_SetHostName(QtObjectPtr ptr, char* hostName){ + static_cast(ptr)->setHostName(QString(hostName)); +} + +void QHostInfo_SetLookupId(QtObjectPtr ptr, int id){ + static_cast(ptr)->setLookupId(id); +} + +void QHostInfo_DestroyQHostInfo(QtObjectPtr ptr){ + static_cast(ptr)->~QHostInfo(); +} + +char* QHostInfo_QHostInfo_LocalHostName(){ + return QHostInfo::localHostName().toUtf8().data(); +} + +char* QHostInfo_QHostInfo_LocalDomainName(){ + return QHostInfo::localDomainName().toUtf8().data(); +} + diff --git a/network/qhostinfo.go b/network/qhostinfo.go new file mode 100755 index 00000000..9a6d7161 --- /dev/null +++ b/network/qhostinfo.go @@ -0,0 +1,132 @@ +package network + +//#include "qhostinfo.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QHostInfo struct { + ptr unsafe.Pointer +} + +type QHostInfoITF interface { + QHostInfoPTR() *QHostInfo +} + +func (p *QHostInfo) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QHostInfo) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQHostInfo(ptr QHostInfoITF) unsafe.Pointer { + if ptr != nil { + return ptr.QHostInfoPTR().Pointer() + } + return nil +} + +func QHostInfoFromPointer(ptr unsafe.Pointer) *QHostInfo { + var n = new(QHostInfo) + n.SetPointer(ptr) + return n +} + +func (ptr *QHostInfo) QHostInfoPTR() *QHostInfo { + return ptr +} + +//QHostInfo::HostInfoError +type QHostInfo__HostInfoError int + +var ( + QHostInfo__NoError = QHostInfo__HostInfoError(0) + QHostInfo__HostNotFound = QHostInfo__HostInfoError(1) + QHostInfo__UnknownError = QHostInfo__HostInfoError(2) +) + +func NewQHostInfo2(other QHostInfoITF) *QHostInfo { + return QHostInfoFromPointer(unsafe.Pointer(C.QHostInfo_NewQHostInfo2(C.QtObjectPtr(PointerFromQHostInfo(other))))) +} + +func NewQHostInfo(id int) *QHostInfo { + return QHostInfoFromPointer(unsafe.Pointer(C.QHostInfo_NewQHostInfo(C.int(id)))) +} + +func QHostInfo_AbortHostLookup(id int) { + C.QHostInfo_QHostInfo_AbortHostLookup(C.int(id)) +} + +func (ptr *QHostInfo) Error() QHostInfo__HostInfoError { + if ptr.Pointer() != nil { + return QHostInfo__HostInfoError(C.QHostInfo_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QHostInfo) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QHostInfo_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QHostInfo) HostName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QHostInfo_HostName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func QHostInfo_LookupHost(name string, receiver core.QObjectITF, member string) int { + return int(C.QHostInfo_QHostInfo_LookupHost(C.CString(name), C.QtObjectPtr(core.PointerFromQObject(receiver)), C.CString(member))) +} + +func (ptr *QHostInfo) LookupId() int { + if ptr.Pointer() != nil { + return int(C.QHostInfo_LookupId(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QHostInfo) SetError(error QHostInfo__HostInfoError) { + if ptr.Pointer() != nil { + C.QHostInfo_SetError(C.QtObjectPtr(ptr.Pointer()), C.int(error)) + } +} + +func (ptr *QHostInfo) SetErrorString(str string) { + if ptr.Pointer() != nil { + C.QHostInfo_SetErrorString(C.QtObjectPtr(ptr.Pointer()), C.CString(str)) + } +} + +func (ptr *QHostInfo) SetHostName(hostName string) { + if ptr.Pointer() != nil { + C.QHostInfo_SetHostName(C.QtObjectPtr(ptr.Pointer()), C.CString(hostName)) + } +} + +func (ptr *QHostInfo) SetLookupId(id int) { + if ptr.Pointer() != nil { + C.QHostInfo_SetLookupId(C.QtObjectPtr(ptr.Pointer()), C.int(id)) + } +} + +func (ptr *QHostInfo) DestroyQHostInfo() { + if ptr.Pointer() != nil { + C.QHostInfo_DestroyQHostInfo(C.QtObjectPtr(ptr.Pointer())) + } +} + +func QHostInfo_LocalHostName() string { + return C.GoString(C.QHostInfo_QHostInfo_LocalHostName()) +} + +func QHostInfo_LocalDomainName() string { + return C.GoString(C.QHostInfo_QHostInfo_LocalDomainName()) +} diff --git a/network/qhostinfo.h b/network/qhostinfo.h new file mode 100755 index 00000000..013d30ab --- /dev/null +++ b/network/qhostinfo.h @@ -0,0 +1,24 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QHostInfo_NewQHostInfo2(QtObjectPtr other); +QtObjectPtr QHostInfo_NewQHostInfo(int id); +void QHostInfo_QHostInfo_AbortHostLookup(int id); +int QHostInfo_Error(QtObjectPtr ptr); +char* QHostInfo_ErrorString(QtObjectPtr ptr); +char* QHostInfo_HostName(QtObjectPtr ptr); +int QHostInfo_QHostInfo_LookupHost(char* name, QtObjectPtr receiver, char* member); +int QHostInfo_LookupId(QtObjectPtr ptr); +void QHostInfo_SetError(QtObjectPtr ptr, int error); +void QHostInfo_SetErrorString(QtObjectPtr ptr, char* str); +void QHostInfo_SetHostName(QtObjectPtr ptr, char* hostName); +void QHostInfo_SetLookupId(QtObjectPtr ptr, int id); +void QHostInfo_DestroyQHostInfo(QtObjectPtr ptr); +char* QHostInfo_QHostInfo_LocalHostName(); +char* QHostInfo_QHostInfo_LocalDomainName(); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qhttpmultipart.cpp b/network/qhttpmultipart.cpp new file mode 100755 index 00000000..eb39250c --- /dev/null +++ b/network/qhttpmultipart.cpp @@ -0,0 +1,39 @@ +#include "qhttpmultipart.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQHttpMultiPart: public QHttpMultiPart { +public: +}; + +QtObjectPtr QHttpMultiPart_NewQHttpMultiPart2(int contentType, QtObjectPtr parent){ + return new QHttpMultiPart(static_cast(contentType), static_cast(parent)); +} + +QtObjectPtr QHttpMultiPart_NewQHttpMultiPart(QtObjectPtr parent){ + return new QHttpMultiPart(static_cast(parent)); +} + +void QHttpMultiPart_Append(QtObjectPtr ptr, QtObjectPtr httpPart){ + static_cast(ptr)->append(*static_cast(httpPart)); +} + +void QHttpMultiPart_SetBoundary(QtObjectPtr ptr, QtObjectPtr boundary){ + static_cast(ptr)->setBoundary(*static_cast(boundary)); +} + +void QHttpMultiPart_SetContentType(QtObjectPtr ptr, int contentType){ + static_cast(ptr)->setContentType(static_cast(contentType)); +} + +void QHttpMultiPart_DestroyQHttpMultiPart(QtObjectPtr ptr){ + static_cast(ptr)->~QHttpMultiPart(); +} + diff --git a/network/qhttpmultipart.go b/network/qhttpmultipart.go new file mode 100755 index 00000000..20ebd9f0 --- /dev/null +++ b/network/qhttpmultipart.go @@ -0,0 +1,81 @@ +package network + +//#include "qhttpmultipart.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QHttpMultiPart struct { + core.QObject +} + +type QHttpMultiPartITF interface { + core.QObjectITF + QHttpMultiPartPTR() *QHttpMultiPart +} + +func PointerFromQHttpMultiPart(ptr QHttpMultiPartITF) unsafe.Pointer { + if ptr != nil { + return ptr.QHttpMultiPartPTR().Pointer() + } + return nil +} + +func QHttpMultiPartFromPointer(ptr unsafe.Pointer) *QHttpMultiPart { + var n = new(QHttpMultiPart) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QHttpMultiPart_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QHttpMultiPart) QHttpMultiPartPTR() *QHttpMultiPart { + return ptr +} + +//QHttpMultiPart::ContentType +type QHttpMultiPart__ContentType int + +var ( + QHttpMultiPart__MixedType = QHttpMultiPart__ContentType(0) + QHttpMultiPart__RelatedType = QHttpMultiPart__ContentType(1) + QHttpMultiPart__FormDataType = QHttpMultiPart__ContentType(2) + QHttpMultiPart__AlternativeType = QHttpMultiPart__ContentType(3) +) + +func NewQHttpMultiPart2(contentType QHttpMultiPart__ContentType, parent core.QObjectITF) *QHttpMultiPart { + return QHttpMultiPartFromPointer(unsafe.Pointer(C.QHttpMultiPart_NewQHttpMultiPart2(C.int(contentType), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQHttpMultiPart(parent core.QObjectITF) *QHttpMultiPart { + return QHttpMultiPartFromPointer(unsafe.Pointer(C.QHttpMultiPart_NewQHttpMultiPart(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QHttpMultiPart) Append(httpPart QHttpPartITF) { + if ptr.Pointer() != nil { + C.QHttpMultiPart_Append(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQHttpPart(httpPart))) + } +} + +func (ptr *QHttpMultiPart) SetBoundary(boundary core.QByteArrayITF) { + if ptr.Pointer() != nil { + C.QHttpMultiPart_SetBoundary(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(boundary))) + } +} + +func (ptr *QHttpMultiPart) SetContentType(contentType QHttpMultiPart__ContentType) { + if ptr.Pointer() != nil { + C.QHttpMultiPart_SetContentType(C.QtObjectPtr(ptr.Pointer()), C.int(contentType)) + } +} + +func (ptr *QHttpMultiPart) DestroyQHttpMultiPart() { + if ptr.Pointer() != nil { + C.QHttpMultiPart_DestroyQHttpMultiPart(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/network/qhttpmultipart.h b/network/qhttpmultipart.h new file mode 100755 index 00000000..5472fa4b --- /dev/null +++ b/network/qhttpmultipart.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QHttpMultiPart_NewQHttpMultiPart2(int contentType, QtObjectPtr parent); +QtObjectPtr QHttpMultiPart_NewQHttpMultiPart(QtObjectPtr parent); +void QHttpMultiPart_Append(QtObjectPtr ptr, QtObjectPtr httpPart); +void QHttpMultiPart_SetBoundary(QtObjectPtr ptr, QtObjectPtr boundary); +void QHttpMultiPart_SetContentType(QtObjectPtr ptr, int contentType); +void QHttpMultiPart_DestroyQHttpMultiPart(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qhttppart.cpp b/network/qhttppart.cpp new file mode 100755 index 00000000..d6fe6839 --- /dev/null +++ b/network/qhttppart.cpp @@ -0,0 +1,47 @@ +#include "qhttppart.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQHttpPart: public QHttpPart { +public: +}; + +QtObjectPtr QHttpPart_NewQHttpPart(){ + return new QHttpPart(); +} + +QtObjectPtr QHttpPart_NewQHttpPart2(QtObjectPtr other){ + return new QHttpPart(*static_cast(other)); +} + +void QHttpPart_SetBody(QtObjectPtr ptr, QtObjectPtr body){ + static_cast(ptr)->setBody(*static_cast(body)); +} + +void QHttpPart_SetBodyDevice(QtObjectPtr ptr, QtObjectPtr device){ + static_cast(ptr)->setBodyDevice(static_cast(device)); +} + +void QHttpPart_SetHeader(QtObjectPtr ptr, int header, char* value){ + static_cast(ptr)->setHeader(static_cast(header), QVariant(value)); +} + +void QHttpPart_SetRawHeader(QtObjectPtr ptr, QtObjectPtr headerName, QtObjectPtr headerValue){ + static_cast(ptr)->setRawHeader(*static_cast(headerName), *static_cast(headerValue)); +} + +void QHttpPart_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QHttpPart_DestroyQHttpPart(QtObjectPtr ptr){ + static_cast(ptr)->~QHttpPart(); +} + diff --git a/network/qhttppart.go b/network/qhttppart.go new file mode 100755 index 00000000..93784d64 --- /dev/null +++ b/network/qhttppart.go @@ -0,0 +1,85 @@ +package network + +//#include "qhttppart.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QHttpPart struct { + ptr unsafe.Pointer +} + +type QHttpPartITF interface { + QHttpPartPTR() *QHttpPart +} + +func (p *QHttpPart) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QHttpPart) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQHttpPart(ptr QHttpPartITF) unsafe.Pointer { + if ptr != nil { + return ptr.QHttpPartPTR().Pointer() + } + return nil +} + +func QHttpPartFromPointer(ptr unsafe.Pointer) *QHttpPart { + var n = new(QHttpPart) + n.SetPointer(ptr) + return n +} + +func (ptr *QHttpPart) QHttpPartPTR() *QHttpPart { + return ptr +} + +func NewQHttpPart() *QHttpPart { + return QHttpPartFromPointer(unsafe.Pointer(C.QHttpPart_NewQHttpPart())) +} + +func NewQHttpPart2(other QHttpPartITF) *QHttpPart { + return QHttpPartFromPointer(unsafe.Pointer(C.QHttpPart_NewQHttpPart2(C.QtObjectPtr(PointerFromQHttpPart(other))))) +} + +func (ptr *QHttpPart) SetBody(body core.QByteArrayITF) { + if ptr.Pointer() != nil { + C.QHttpPart_SetBody(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(body))) + } +} + +func (ptr *QHttpPart) SetBodyDevice(device core.QIODeviceITF) { + if ptr.Pointer() != nil { + C.QHttpPart_SetBodyDevice(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQIODevice(device))) + } +} + +func (ptr *QHttpPart) SetHeader(header QNetworkRequest__KnownHeaders, value string) { + if ptr.Pointer() != nil { + C.QHttpPart_SetHeader(C.QtObjectPtr(ptr.Pointer()), C.int(header), C.CString(value)) + } +} + +func (ptr *QHttpPart) SetRawHeader(headerName core.QByteArrayITF, headerValue core.QByteArrayITF) { + if ptr.Pointer() != nil { + C.QHttpPart_SetRawHeader(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(headerName)), C.QtObjectPtr(core.PointerFromQByteArray(headerValue))) + } +} + +func (ptr *QHttpPart) Swap(other QHttpPartITF) { + if ptr.Pointer() != nil { + C.QHttpPart_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQHttpPart(other))) + } +} + +func (ptr *QHttpPart) DestroyQHttpPart() { + if ptr.Pointer() != nil { + C.QHttpPart_DestroyQHttpPart(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/network/qhttppart.h b/network/qhttppart.h new file mode 100755 index 00000000..1864f69b --- /dev/null +++ b/network/qhttppart.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QHttpPart_NewQHttpPart(); +QtObjectPtr QHttpPart_NewQHttpPart2(QtObjectPtr other); +void QHttpPart_SetBody(QtObjectPtr ptr, QtObjectPtr body); +void QHttpPart_SetBodyDevice(QtObjectPtr ptr, QtObjectPtr device); +void QHttpPart_SetHeader(QtObjectPtr ptr, int header, char* value); +void QHttpPart_SetRawHeader(QtObjectPtr ptr, QtObjectPtr headerName, QtObjectPtr headerValue); +void QHttpPart_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QHttpPart_DestroyQHttpPart(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qlocalserver.cpp b/network/qlocalserver.cpp new file mode 100755 index 00000000..6ad7e589 --- /dev/null +++ b/network/qlocalserver.cpp @@ -0,0 +1,90 @@ +#include "qlocalserver.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQLocalServer: public QLocalServer { +public: +void Signal_NewConnection(){callbackQLocalServerNewConnection(this->objectName().toUtf8().data());}; +}; + +void QLocalServer_SetSocketOptions(QtObjectPtr ptr, int options){ + static_cast(ptr)->setSocketOptions(static_cast(options)); +} + +QtObjectPtr QLocalServer_NewQLocalServer(QtObjectPtr parent){ + return new QLocalServer(static_cast(parent)); +} + +void QLocalServer_Close(QtObjectPtr ptr){ + static_cast(ptr)->close(); +} + +char* QLocalServer_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +char* QLocalServer_FullServerName(QtObjectPtr ptr){ + return static_cast(ptr)->fullServerName().toUtf8().data(); +} + +int QLocalServer_HasPendingConnections(QtObjectPtr ptr){ + return static_cast(ptr)->hasPendingConnections(); +} + +int QLocalServer_IsListening(QtObjectPtr ptr){ + return static_cast(ptr)->isListening(); +} + +int QLocalServer_Listen(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->listen(QString(name)); +} + +int QLocalServer_MaxPendingConnections(QtObjectPtr ptr){ + return static_cast(ptr)->maxPendingConnections(); +} + +void QLocalServer_ConnectNewConnection(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QLocalServer::newConnection), static_cast(ptr), static_cast(&MyQLocalServer::Signal_NewConnection));; +} + +void QLocalServer_DisconnectNewConnection(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QLocalServer::newConnection), static_cast(ptr), static_cast(&MyQLocalServer::Signal_NewConnection));; +} + +QtObjectPtr QLocalServer_NextPendingConnection(QtObjectPtr ptr){ + return static_cast(ptr)->nextPendingConnection(); +} + +int QLocalServer_QLocalServer_RemoveServer(char* name){ + return QLocalServer::removeServer(QString(name)); +} + +int QLocalServer_ServerError(QtObjectPtr ptr){ + return static_cast(ptr)->serverError(); +} + +char* QLocalServer_ServerName(QtObjectPtr ptr){ + return static_cast(ptr)->serverName().toUtf8().data(); +} + +void QLocalServer_SetMaxPendingConnections(QtObjectPtr ptr, int numConnections){ + static_cast(ptr)->setMaxPendingConnections(numConnections); +} + +int QLocalServer_SocketOptions(QtObjectPtr ptr){ + return static_cast(ptr)->socketOptions(); +} + +int QLocalServer_WaitForNewConnection(QtObjectPtr ptr, int msec, int timedOut){ + return static_cast(ptr)->waitForNewConnection(msec, NULL); +} + +void QLocalServer_DestroyQLocalServer(QtObjectPtr ptr){ + static_cast(ptr)->~QLocalServer(); +} + diff --git a/network/qlocalserver.go b/network/qlocalserver.go new file mode 100755 index 00000000..6d75194d --- /dev/null +++ b/network/qlocalserver.go @@ -0,0 +1,178 @@ +package network + +//#include "qlocalserver.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QLocalServer struct { + core.QObject +} + +type QLocalServerITF interface { + core.QObjectITF + QLocalServerPTR() *QLocalServer +} + +func PointerFromQLocalServer(ptr QLocalServerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QLocalServerPTR().Pointer() + } + return nil +} + +func QLocalServerFromPointer(ptr unsafe.Pointer) *QLocalServer { + var n = new(QLocalServer) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QLocalServer_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QLocalServer) QLocalServerPTR() *QLocalServer { + return ptr +} + +//QLocalServer::SocketOption +type QLocalServer__SocketOption int + +var ( + QLocalServer__NoOptions = QLocalServer__SocketOption(0x0) + QLocalServer__UserAccessOption = QLocalServer__SocketOption(0x01) + QLocalServer__GroupAccessOption = QLocalServer__SocketOption(0x2) + QLocalServer__OtherAccessOption = QLocalServer__SocketOption(0x4) + QLocalServer__WorldAccessOption = QLocalServer__SocketOption(0x7) +) + +func (ptr *QLocalServer) SetSocketOptions(options QLocalServer__SocketOption) { + if ptr.Pointer() != nil { + C.QLocalServer_SetSocketOptions(C.QtObjectPtr(ptr.Pointer()), C.int(options)) + } +} + +func NewQLocalServer(parent core.QObjectITF) *QLocalServer { + return QLocalServerFromPointer(unsafe.Pointer(C.QLocalServer_NewQLocalServer(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QLocalServer) Close() { + if ptr.Pointer() != nil { + C.QLocalServer_Close(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QLocalServer) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocalServer_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QLocalServer) FullServerName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocalServer_FullServerName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QLocalServer) HasPendingConnections() bool { + if ptr.Pointer() != nil { + return C.QLocalServer_HasPendingConnections(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLocalServer) IsListening() bool { + if ptr.Pointer() != nil { + return C.QLocalServer_IsListening(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLocalServer) Listen(name string) bool { + if ptr.Pointer() != nil { + return C.QLocalServer_Listen(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) != 0 + } + return false +} + +func (ptr *QLocalServer) MaxPendingConnections() int { + if ptr.Pointer() != nil { + return int(C.QLocalServer_MaxPendingConnections(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLocalServer) ConnectNewConnection(f func()) { + if ptr.Pointer() != nil { + C.QLocalServer_ConnectNewConnection(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "newConnection", f) + } +} + +func (ptr *QLocalServer) DisconnectNewConnection() { + if ptr.Pointer() != nil { + C.QLocalServer_DisconnectNewConnection(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "newConnection") + } +} + +//export callbackQLocalServerNewConnection +func callbackQLocalServerNewConnection(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "newConnection").(func())() +} + +func (ptr *QLocalServer) NextPendingConnection() *QLocalSocket { + if ptr.Pointer() != nil { + return QLocalSocketFromPointer(unsafe.Pointer(C.QLocalServer_NextPendingConnection(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func QLocalServer_RemoveServer(name string) bool { + return C.QLocalServer_QLocalServer_RemoveServer(C.CString(name)) != 0 +} + +func (ptr *QLocalServer) ServerError() QAbstractSocket__SocketError { + if ptr.Pointer() != nil { + return QAbstractSocket__SocketError(C.QLocalServer_ServerError(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLocalServer) ServerName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocalServer_ServerName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QLocalServer) SetMaxPendingConnections(numConnections int) { + if ptr.Pointer() != nil { + C.QLocalServer_SetMaxPendingConnections(C.QtObjectPtr(ptr.Pointer()), C.int(numConnections)) + } +} + +func (ptr *QLocalServer) SocketOptions() QLocalServer__SocketOption { + if ptr.Pointer() != nil { + return QLocalServer__SocketOption(C.QLocalServer_SocketOptions(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLocalServer) WaitForNewConnection(msec int, timedOut bool) bool { + if ptr.Pointer() != nil { + return C.QLocalServer_WaitForNewConnection(C.QtObjectPtr(ptr.Pointer()), C.int(msec), C.int(qt.GoBoolToInt(timedOut))) != 0 + } + return false +} + +func (ptr *QLocalServer) DestroyQLocalServer() { + if ptr.Pointer() != nil { + C.QLocalServer_DestroyQLocalServer(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/network/qlocalserver.h b/network/qlocalserver.h new file mode 100755 index 00000000..265ff073 --- /dev/null +++ b/network/qlocalserver.h @@ -0,0 +1,28 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QLocalServer_SetSocketOptions(QtObjectPtr ptr, int options); +QtObjectPtr QLocalServer_NewQLocalServer(QtObjectPtr parent); +void QLocalServer_Close(QtObjectPtr ptr); +char* QLocalServer_ErrorString(QtObjectPtr ptr); +char* QLocalServer_FullServerName(QtObjectPtr ptr); +int QLocalServer_HasPendingConnections(QtObjectPtr ptr); +int QLocalServer_IsListening(QtObjectPtr ptr); +int QLocalServer_Listen(QtObjectPtr ptr, char* name); +int QLocalServer_MaxPendingConnections(QtObjectPtr ptr); +void QLocalServer_ConnectNewConnection(QtObjectPtr ptr); +void QLocalServer_DisconnectNewConnection(QtObjectPtr ptr); +QtObjectPtr QLocalServer_NextPendingConnection(QtObjectPtr ptr); +int QLocalServer_QLocalServer_RemoveServer(char* name); +int QLocalServer_ServerError(QtObjectPtr ptr); +char* QLocalServer_ServerName(QtObjectPtr ptr); +void QLocalServer_SetMaxPendingConnections(QtObjectPtr ptr, int numConnections); +int QLocalServer_SocketOptions(QtObjectPtr ptr); +int QLocalServer_WaitForNewConnection(QtObjectPtr ptr, int msec, int timedOut); +void QLocalServer_DestroyQLocalServer(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qlocalsocket.cpp b/network/qlocalsocket.cpp new file mode 100755 index 00000000..6b557479 --- /dev/null +++ b/network/qlocalsocket.cpp @@ -0,0 +1,121 @@ +#include "qlocalsocket.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQLocalSocket: public QLocalSocket { +public: +void Signal_Connected(){callbackQLocalSocketConnected(this->objectName().toUtf8().data());}; +void Signal_Disconnected(){callbackQLocalSocketDisconnected(this->objectName().toUtf8().data());}; +void Signal_StateChanged(QLocalSocket::LocalSocketState socketState){callbackQLocalSocketStateChanged(this->objectName().toUtf8().data(), socketState);}; +}; + +int QLocalSocket_Open(QtObjectPtr ptr, int openMode){ + return static_cast(ptr)->open(static_cast(openMode)); +} + +QtObjectPtr QLocalSocket_NewQLocalSocket(QtObjectPtr parent){ + return new QLocalSocket(static_cast(parent)); +} + +void QLocalSocket_ConnectToServer2(QtObjectPtr ptr, char* name, int openMode){ + static_cast(ptr)->connectToServer(QString(name), static_cast(openMode)); +} + +void QLocalSocket_ConnectConnected(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QLocalSocket::connected), static_cast(ptr), static_cast(&MyQLocalSocket::Signal_Connected));; +} + +void QLocalSocket_DisconnectConnected(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QLocalSocket::connected), static_cast(ptr), static_cast(&MyQLocalSocket::Signal_Connected));; +} + +void QLocalSocket_ConnectDisconnected(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QLocalSocket::disconnected), static_cast(ptr), static_cast(&MyQLocalSocket::Signal_Disconnected));; +} + +void QLocalSocket_DisconnectDisconnected(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QLocalSocket::disconnected), static_cast(ptr), static_cast(&MyQLocalSocket::Signal_Disconnected));; +} + +char* QLocalSocket_FullServerName(QtObjectPtr ptr){ + return static_cast(ptr)->fullServerName().toUtf8().data(); +} + +int QLocalSocket_IsSequential(QtObjectPtr ptr){ + return static_cast(ptr)->isSequential(); +} + +char* QLocalSocket_ServerName(QtObjectPtr ptr){ + return static_cast(ptr)->serverName().toUtf8().data(); +} + +void QLocalSocket_SetServerName(QtObjectPtr ptr, char* name){ + static_cast(ptr)->setServerName(QString(name)); +} + +void QLocalSocket_ConnectStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QLocalSocket::stateChanged), static_cast(ptr), static_cast(&MyQLocalSocket::Signal_StateChanged));; +} + +void QLocalSocket_DisconnectStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QLocalSocket::stateChanged), static_cast(ptr), static_cast(&MyQLocalSocket::Signal_StateChanged));; +} + +void QLocalSocket_DestroyQLocalSocket(QtObjectPtr ptr){ + static_cast(ptr)->~QLocalSocket(); +} + +void QLocalSocket_Abort(QtObjectPtr ptr){ + static_cast(ptr)->abort(); +} + +int QLocalSocket_CanReadLine(QtObjectPtr ptr){ + return static_cast(ptr)->canReadLine(); +} + +void QLocalSocket_Close(QtObjectPtr ptr){ + static_cast(ptr)->close(); +} + +void QLocalSocket_ConnectToServer(QtObjectPtr ptr, int openMode){ + static_cast(ptr)->connectToServer(static_cast(openMode)); +} + +void QLocalSocket_DisconnectFromServer(QtObjectPtr ptr){ + static_cast(ptr)->disconnectFromServer(); +} + +int QLocalSocket_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +int QLocalSocket_Flush(QtObjectPtr ptr){ + return static_cast(ptr)->flush(); +} + +int QLocalSocket_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QLocalSocket_WaitForBytesWritten(QtObjectPtr ptr, int msecs){ + return static_cast(ptr)->waitForBytesWritten(msecs); +} + +int QLocalSocket_WaitForConnected(QtObjectPtr ptr, int msecs){ + return static_cast(ptr)->waitForConnected(msecs); +} + +int QLocalSocket_WaitForDisconnected(QtObjectPtr ptr, int msecs){ + return static_cast(ptr)->waitForDisconnected(msecs); +} + +int QLocalSocket_WaitForReadyRead(QtObjectPtr ptr, int msecs){ + return static_cast(ptr)->waitForReadyRead(msecs); +} + diff --git a/network/qlocalsocket.go b/network/qlocalsocket.go new file mode 100755 index 00000000..72525986 --- /dev/null +++ b/network/qlocalsocket.go @@ -0,0 +1,253 @@ +package network + +//#include "qlocalsocket.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QLocalSocket struct { + core.QIODevice +} + +type QLocalSocketITF interface { + core.QIODeviceITF + QLocalSocketPTR() *QLocalSocket +} + +func PointerFromQLocalSocket(ptr QLocalSocketITF) unsafe.Pointer { + if ptr != nil { + return ptr.QLocalSocketPTR().Pointer() + } + return nil +} + +func QLocalSocketFromPointer(ptr unsafe.Pointer) *QLocalSocket { + var n = new(QLocalSocket) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QLocalSocket_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QLocalSocket) QLocalSocketPTR() *QLocalSocket { + return ptr +} + +//QLocalSocket::LocalSocketError +type QLocalSocket__LocalSocketError int + +var ( + QLocalSocket__ConnectionRefusedError = QLocalSocket__LocalSocketError(QAbstractSocket__ConnectionRefusedError) + QLocalSocket__PeerClosedError = QLocalSocket__LocalSocketError(QAbstractSocket__RemoteHostClosedError) + QLocalSocket__ServerNotFoundError = QLocalSocket__LocalSocketError(QAbstractSocket__HostNotFoundError) + QLocalSocket__SocketAccessError = QLocalSocket__LocalSocketError(QAbstractSocket__SocketAccessError) + QLocalSocket__SocketResourceError = QLocalSocket__LocalSocketError(QAbstractSocket__SocketResourceError) + QLocalSocket__SocketTimeoutError = QLocalSocket__LocalSocketError(QAbstractSocket__SocketTimeoutError) + QLocalSocket__DatagramTooLargeError = QLocalSocket__LocalSocketError(QAbstractSocket__DatagramTooLargeError) + QLocalSocket__ConnectionError = QLocalSocket__LocalSocketError(QAbstractSocket__NetworkError) + QLocalSocket__UnsupportedSocketOperationError = QLocalSocket__LocalSocketError(QAbstractSocket__UnsupportedSocketOperationError) + QLocalSocket__UnknownSocketError = QLocalSocket__LocalSocketError(QAbstractSocket__UnknownSocketError) + QLocalSocket__OperationError = QLocalSocket__LocalSocketError(QAbstractSocket__OperationError) +) + +//QLocalSocket::LocalSocketState +type QLocalSocket__LocalSocketState int + +var ( + QLocalSocket__UnconnectedState = QLocalSocket__LocalSocketState(QAbstractSocket__UnconnectedState) + QLocalSocket__ConnectingState = QLocalSocket__LocalSocketState(QAbstractSocket__ConnectingState) + QLocalSocket__ConnectedState = QLocalSocket__LocalSocketState(QAbstractSocket__ConnectedState) + QLocalSocket__ClosingState = QLocalSocket__LocalSocketState(QAbstractSocket__ClosingState) +) + +func (ptr *QLocalSocket) Open(openMode core.QIODevice__OpenModeFlag) bool { + if ptr.Pointer() != nil { + return C.QLocalSocket_Open(C.QtObjectPtr(ptr.Pointer()), C.int(openMode)) != 0 + } + return false +} + +func NewQLocalSocket(parent core.QObjectITF) *QLocalSocket { + return QLocalSocketFromPointer(unsafe.Pointer(C.QLocalSocket_NewQLocalSocket(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QLocalSocket) ConnectToServer2(name string, openMode core.QIODevice__OpenModeFlag) { + if ptr.Pointer() != nil { + C.QLocalSocket_ConnectToServer2(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.int(openMode)) + } +} + +func (ptr *QLocalSocket) ConnectConnected(f func()) { + if ptr.Pointer() != nil { + C.QLocalSocket_ConnectConnected(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "connected", f) + } +} + +func (ptr *QLocalSocket) DisconnectConnected() { + if ptr.Pointer() != nil { + C.QLocalSocket_DisconnectConnected(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "connected") + } +} + +//export callbackQLocalSocketConnected +func callbackQLocalSocketConnected(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "connected").(func())() +} + +func (ptr *QLocalSocket) ConnectDisconnected(f func()) { + if ptr.Pointer() != nil { + C.QLocalSocket_ConnectDisconnected(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "disconnected", f) + } +} + +func (ptr *QLocalSocket) DisconnectDisconnected() { + if ptr.Pointer() != nil { + C.QLocalSocket_DisconnectDisconnected(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "disconnected") + } +} + +//export callbackQLocalSocketDisconnected +func callbackQLocalSocketDisconnected(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "disconnected").(func())() +} + +func (ptr *QLocalSocket) FullServerName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocalSocket_FullServerName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QLocalSocket) IsSequential() bool { + if ptr.Pointer() != nil { + return C.QLocalSocket_IsSequential(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLocalSocket) ServerName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QLocalSocket_ServerName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QLocalSocket) SetServerName(name string) { + if ptr.Pointer() != nil { + C.QLocalSocket_SetServerName(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func (ptr *QLocalSocket) ConnectStateChanged(f func(socketState QLocalSocket__LocalSocketState)) { + if ptr.Pointer() != nil { + C.QLocalSocket_ConnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stateChanged", f) + } +} + +func (ptr *QLocalSocket) DisconnectStateChanged() { + if ptr.Pointer() != nil { + C.QLocalSocket_DisconnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stateChanged") + } +} + +//export callbackQLocalSocketStateChanged +func callbackQLocalSocketStateChanged(ptrName *C.char, socketState C.int) { + qt.GetSignal(C.GoString(ptrName), "stateChanged").(func(QLocalSocket__LocalSocketState))(QLocalSocket__LocalSocketState(socketState)) +} + +func (ptr *QLocalSocket) DestroyQLocalSocket() { + if ptr.Pointer() != nil { + C.QLocalSocket_DestroyQLocalSocket(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} + +func (ptr *QLocalSocket) Abort() { + if ptr.Pointer() != nil { + C.QLocalSocket_Abort(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QLocalSocket) CanReadLine() bool { + if ptr.Pointer() != nil { + return C.QLocalSocket_CanReadLine(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLocalSocket) Close() { + if ptr.Pointer() != nil { + C.QLocalSocket_Close(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QLocalSocket) ConnectToServer(openMode core.QIODevice__OpenModeFlag) { + if ptr.Pointer() != nil { + C.QLocalSocket_ConnectToServer(C.QtObjectPtr(ptr.Pointer()), C.int(openMode)) + } +} + +func (ptr *QLocalSocket) DisconnectFromServer() { + if ptr.Pointer() != nil { + C.QLocalSocket_DisconnectFromServer(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QLocalSocket) Error() QLocalSocket__LocalSocketError { + if ptr.Pointer() != nil { + return QLocalSocket__LocalSocketError(C.QLocalSocket_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLocalSocket) Flush() bool { + if ptr.Pointer() != nil { + return C.QLocalSocket_Flush(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLocalSocket) IsValid() bool { + if ptr.Pointer() != nil { + return C.QLocalSocket_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLocalSocket) WaitForBytesWritten(msecs int) bool { + if ptr.Pointer() != nil { + return C.QLocalSocket_WaitForBytesWritten(C.QtObjectPtr(ptr.Pointer()), C.int(msecs)) != 0 + } + return false +} + +func (ptr *QLocalSocket) WaitForConnected(msecs int) bool { + if ptr.Pointer() != nil { + return C.QLocalSocket_WaitForConnected(C.QtObjectPtr(ptr.Pointer()), C.int(msecs)) != 0 + } + return false +} + +func (ptr *QLocalSocket) WaitForDisconnected(msecs int) bool { + if ptr.Pointer() != nil { + return C.QLocalSocket_WaitForDisconnected(C.QtObjectPtr(ptr.Pointer()), C.int(msecs)) != 0 + } + return false +} + +func (ptr *QLocalSocket) WaitForReadyRead(msecs int) bool { + if ptr.Pointer() != nil { + return C.QLocalSocket_WaitForReadyRead(C.QtObjectPtr(ptr.Pointer()), C.int(msecs)) != 0 + } + return false +} diff --git a/network/qlocalsocket.h b/network/qlocalsocket.h new file mode 100755 index 00000000..fb4e9d6c --- /dev/null +++ b/network/qlocalsocket.h @@ -0,0 +1,35 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QLocalSocket_Open(QtObjectPtr ptr, int openMode); +QtObjectPtr QLocalSocket_NewQLocalSocket(QtObjectPtr parent); +void QLocalSocket_ConnectToServer2(QtObjectPtr ptr, char* name, int openMode); +void QLocalSocket_ConnectConnected(QtObjectPtr ptr); +void QLocalSocket_DisconnectConnected(QtObjectPtr ptr); +void QLocalSocket_ConnectDisconnected(QtObjectPtr ptr); +void QLocalSocket_DisconnectDisconnected(QtObjectPtr ptr); +char* QLocalSocket_FullServerName(QtObjectPtr ptr); +int QLocalSocket_IsSequential(QtObjectPtr ptr); +char* QLocalSocket_ServerName(QtObjectPtr ptr); +void QLocalSocket_SetServerName(QtObjectPtr ptr, char* name); +void QLocalSocket_ConnectStateChanged(QtObjectPtr ptr); +void QLocalSocket_DisconnectStateChanged(QtObjectPtr ptr); +void QLocalSocket_DestroyQLocalSocket(QtObjectPtr ptr); +void QLocalSocket_Abort(QtObjectPtr ptr); +int QLocalSocket_CanReadLine(QtObjectPtr ptr); +void QLocalSocket_Close(QtObjectPtr ptr); +void QLocalSocket_ConnectToServer(QtObjectPtr ptr, int openMode); +void QLocalSocket_DisconnectFromServer(QtObjectPtr ptr); +int QLocalSocket_Error(QtObjectPtr ptr); +int QLocalSocket_Flush(QtObjectPtr ptr); +int QLocalSocket_IsValid(QtObjectPtr ptr); +int QLocalSocket_WaitForBytesWritten(QtObjectPtr ptr, int msecs); +int QLocalSocket_WaitForConnected(QtObjectPtr ptr, int msecs); +int QLocalSocket_WaitForDisconnected(QtObjectPtr ptr, int msecs); +int QLocalSocket_WaitForReadyRead(QtObjectPtr ptr, int msecs); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qnetworkaccessmanager.cpp b/network/qnetworkaccessmanager.cpp new file mode 100755 index 00000000..06a0687a --- /dev/null +++ b/network/qnetworkaccessmanager.cpp @@ -0,0 +1,167 @@ +#include "qnetworkaccessmanager.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQNetworkAccessManager: public QNetworkAccessManager { +public: +void Signal_AuthenticationRequired(QNetworkReply * reply, QAuthenticator * authenticator){callbackQNetworkAccessManagerAuthenticationRequired(this->objectName().toUtf8().data(), reply, authenticator);}; +void Signal_Encrypted(QNetworkReply * reply){callbackQNetworkAccessManagerEncrypted(this->objectName().toUtf8().data(), reply);}; +void Signal_Finished(QNetworkReply * reply){callbackQNetworkAccessManagerFinished(this->objectName().toUtf8().data(), reply);}; +void Signal_NetworkAccessibleChanged(QNetworkAccessManager::NetworkAccessibility accessible){callbackQNetworkAccessManagerNetworkAccessibleChanged(this->objectName().toUtf8().data(), accessible);}; +void Signal_PreSharedKeyAuthenticationRequired(QNetworkReply * reply, QSslPreSharedKeyAuthenticator * authenticator){callbackQNetworkAccessManagerPreSharedKeyAuthenticationRequired(this->objectName().toUtf8().data(), reply, authenticator);}; +}; + +QtObjectPtr QNetworkAccessManager_ProxyFactory(QtObjectPtr ptr){ + return static_cast(ptr)->proxyFactory(); +} + +QtObjectPtr QNetworkAccessManager_NewQNetworkAccessManager(QtObjectPtr parent){ + return new QNetworkAccessManager(static_cast(parent)); +} + +void QNetworkAccessManager_ConnectAuthenticationRequired(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QNetworkAccessManager::authenticationRequired), static_cast(ptr), static_cast(&MyQNetworkAccessManager::Signal_AuthenticationRequired));; +} + +void QNetworkAccessManager_DisconnectAuthenticationRequired(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QNetworkAccessManager::authenticationRequired), static_cast(ptr), static_cast(&MyQNetworkAccessManager::Signal_AuthenticationRequired));; +} + +QtObjectPtr QNetworkAccessManager_Cache(QtObjectPtr ptr){ + return static_cast(ptr)->cache(); +} + +void QNetworkAccessManager_ClearAccessCache(QtObjectPtr ptr){ + static_cast(ptr)->clearAccessCache(); +} + +QtObjectPtr QNetworkAccessManager_CookieJar(QtObjectPtr ptr){ + return static_cast(ptr)->cookieJar(); +} + +QtObjectPtr QNetworkAccessManager_DeleteResource(QtObjectPtr ptr, QtObjectPtr request){ + return static_cast(ptr)->deleteResource(*static_cast(request)); +} + +void QNetworkAccessManager_ConnectEncrypted(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QNetworkAccessManager::encrypted), static_cast(ptr), static_cast(&MyQNetworkAccessManager::Signal_Encrypted));; +} + +void QNetworkAccessManager_DisconnectEncrypted(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QNetworkAccessManager::encrypted), static_cast(ptr), static_cast(&MyQNetworkAccessManager::Signal_Encrypted));; +} + +void QNetworkAccessManager_ConnectFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QNetworkAccessManager::finished), static_cast(ptr), static_cast(&MyQNetworkAccessManager::Signal_Finished));; +} + +void QNetworkAccessManager_DisconnectFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QNetworkAccessManager::finished), static_cast(ptr), static_cast(&MyQNetworkAccessManager::Signal_Finished));; +} + +QtObjectPtr QNetworkAccessManager_Get(QtObjectPtr ptr, QtObjectPtr request){ + return static_cast(ptr)->get(*static_cast(request)); +} + +QtObjectPtr QNetworkAccessManager_Head(QtObjectPtr ptr, QtObjectPtr request){ + return static_cast(ptr)->head(*static_cast(request)); +} + +int QNetworkAccessManager_NetworkAccessible(QtObjectPtr ptr){ + return static_cast(ptr)->networkAccessible(); +} + +void QNetworkAccessManager_ConnectNetworkAccessibleChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QNetworkAccessManager::networkAccessibleChanged), static_cast(ptr), static_cast(&MyQNetworkAccessManager::Signal_NetworkAccessibleChanged));; +} + +void QNetworkAccessManager_DisconnectNetworkAccessibleChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QNetworkAccessManager::networkAccessibleChanged), static_cast(ptr), static_cast(&MyQNetworkAccessManager::Signal_NetworkAccessibleChanged));; +} + +QtObjectPtr QNetworkAccessManager_Post3(QtObjectPtr ptr, QtObjectPtr request, QtObjectPtr multiPart){ + return static_cast(ptr)->post(*static_cast(request), static_cast(multiPart)); +} + +QtObjectPtr QNetworkAccessManager_Post(QtObjectPtr ptr, QtObjectPtr request, QtObjectPtr data){ + return static_cast(ptr)->post(*static_cast(request), static_cast(data)); +} + +QtObjectPtr QNetworkAccessManager_Post2(QtObjectPtr ptr, QtObjectPtr request, QtObjectPtr data){ + return static_cast(ptr)->post(*static_cast(request), *static_cast(data)); +} + +void QNetworkAccessManager_ConnectPreSharedKeyAuthenticationRequired(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QNetworkAccessManager::preSharedKeyAuthenticationRequired), static_cast(ptr), static_cast(&MyQNetworkAccessManager::Signal_PreSharedKeyAuthenticationRequired));; +} + +void QNetworkAccessManager_DisconnectPreSharedKeyAuthenticationRequired(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QNetworkAccessManager::preSharedKeyAuthenticationRequired), static_cast(ptr), static_cast(&MyQNetworkAccessManager::Signal_PreSharedKeyAuthenticationRequired));; +} + +QtObjectPtr QNetworkAccessManager_Put2(QtObjectPtr ptr, QtObjectPtr request, QtObjectPtr multiPart){ + return static_cast(ptr)->put(*static_cast(request), static_cast(multiPart)); +} + +QtObjectPtr QNetworkAccessManager_Put(QtObjectPtr ptr, QtObjectPtr request, QtObjectPtr data){ + return static_cast(ptr)->put(*static_cast(request), static_cast(data)); +} + +QtObjectPtr QNetworkAccessManager_Put3(QtObjectPtr ptr, QtObjectPtr request, QtObjectPtr data){ + return static_cast(ptr)->put(*static_cast(request), *static_cast(data)); +} + +QtObjectPtr QNetworkAccessManager_SendCustomRequest(QtObjectPtr ptr, QtObjectPtr request, QtObjectPtr verb, QtObjectPtr data){ + return static_cast(ptr)->sendCustomRequest(*static_cast(request), *static_cast(verb), static_cast(data)); +} + +void QNetworkAccessManager_SetCache(QtObjectPtr ptr, QtObjectPtr cache){ + static_cast(ptr)->setCache(static_cast(cache)); +} + +void QNetworkAccessManager_SetConfiguration(QtObjectPtr ptr, QtObjectPtr config){ + static_cast(ptr)->setConfiguration(*static_cast(config)); +} + +void QNetworkAccessManager_SetCookieJar(QtObjectPtr ptr, QtObjectPtr cookieJar){ + static_cast(ptr)->setCookieJar(static_cast(cookieJar)); +} + +void QNetworkAccessManager_SetNetworkAccessible(QtObjectPtr ptr, int accessible){ + static_cast(ptr)->setNetworkAccessible(static_cast(accessible)); +} + +void QNetworkAccessManager_SetProxy(QtObjectPtr ptr, QtObjectPtr proxy){ + static_cast(ptr)->setProxy(*static_cast(proxy)); +} + +void QNetworkAccessManager_SetProxyFactory(QtObjectPtr ptr, QtObjectPtr factory){ + static_cast(ptr)->setProxyFactory(static_cast(factory)); +} + +char* QNetworkAccessManager_SupportedSchemes(QtObjectPtr ptr){ + return static_cast(ptr)->supportedSchemes().join("|").toUtf8().data(); +} + +void QNetworkAccessManager_DestroyQNetworkAccessManager(QtObjectPtr ptr){ + static_cast(ptr)->~QNetworkAccessManager(); +} + diff --git a/network/qnetworkaccessmanager.go b/network/qnetworkaccessmanager.go new file mode 100755 index 00000000..887d5c38 --- /dev/null +++ b/network/qnetworkaccessmanager.go @@ -0,0 +1,314 @@ +package network + +//#include "qnetworkaccessmanager.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QNetworkAccessManager struct { + core.QObject +} + +type QNetworkAccessManagerITF interface { + core.QObjectITF + QNetworkAccessManagerPTR() *QNetworkAccessManager +} + +func PointerFromQNetworkAccessManager(ptr QNetworkAccessManagerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QNetworkAccessManagerPTR().Pointer() + } + return nil +} + +func QNetworkAccessManagerFromPointer(ptr unsafe.Pointer) *QNetworkAccessManager { + var n = new(QNetworkAccessManager) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QNetworkAccessManager_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QNetworkAccessManager) QNetworkAccessManagerPTR() *QNetworkAccessManager { + return ptr +} + +//QNetworkAccessManager::NetworkAccessibility +type QNetworkAccessManager__NetworkAccessibility int + +var ( + QNetworkAccessManager__UnknownAccessibility = QNetworkAccessManager__NetworkAccessibility(-1) + QNetworkAccessManager__NotAccessible = QNetworkAccessManager__NetworkAccessibility(0) + QNetworkAccessManager__Accessible = QNetworkAccessManager__NetworkAccessibility(1) +) + +//QNetworkAccessManager::Operation +type QNetworkAccessManager__Operation int + +var ( + QNetworkAccessManager__HeadOperation = QNetworkAccessManager__Operation(1) + QNetworkAccessManager__GetOperation = QNetworkAccessManager__Operation(2) + QNetworkAccessManager__PutOperation = QNetworkAccessManager__Operation(3) + QNetworkAccessManager__PostOperation = QNetworkAccessManager__Operation(4) + QNetworkAccessManager__DeleteOperation = QNetworkAccessManager__Operation(5) + QNetworkAccessManager__CustomOperation = QNetworkAccessManager__Operation(6) + QNetworkAccessManager__UnknownOperation = QNetworkAccessManager__Operation(0) +) + +func (ptr *QNetworkAccessManager) ProxyFactory() *QNetworkProxyFactory { + if ptr.Pointer() != nil { + return QNetworkProxyFactoryFromPointer(unsafe.Pointer(C.QNetworkAccessManager_ProxyFactory(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func NewQNetworkAccessManager(parent core.QObjectITF) *QNetworkAccessManager { + return QNetworkAccessManagerFromPointer(unsafe.Pointer(C.QNetworkAccessManager_NewQNetworkAccessManager(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QNetworkAccessManager) ConnectAuthenticationRequired(f func(reply QNetworkReplyITF, authenticator QAuthenticatorITF)) { + if ptr.Pointer() != nil { + C.QNetworkAccessManager_ConnectAuthenticationRequired(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "authenticationRequired", f) + } +} + +func (ptr *QNetworkAccessManager) DisconnectAuthenticationRequired() { + if ptr.Pointer() != nil { + C.QNetworkAccessManager_DisconnectAuthenticationRequired(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "authenticationRequired") + } +} + +//export callbackQNetworkAccessManagerAuthenticationRequired +func callbackQNetworkAccessManagerAuthenticationRequired(ptrName *C.char, reply unsafe.Pointer, authenticator unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "authenticationRequired").(func(*QNetworkReply, *QAuthenticator))(QNetworkReplyFromPointer(reply), QAuthenticatorFromPointer(authenticator)) +} + +func (ptr *QNetworkAccessManager) Cache() *QAbstractNetworkCache { + if ptr.Pointer() != nil { + return QAbstractNetworkCacheFromPointer(unsafe.Pointer(C.QNetworkAccessManager_Cache(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QNetworkAccessManager) ClearAccessCache() { + if ptr.Pointer() != nil { + C.QNetworkAccessManager_ClearAccessCache(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QNetworkAccessManager) CookieJar() *QNetworkCookieJar { + if ptr.Pointer() != nil { + return QNetworkCookieJarFromPointer(unsafe.Pointer(C.QNetworkAccessManager_CookieJar(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QNetworkAccessManager) DeleteResource(request QNetworkRequestITF) *QNetworkReply { + if ptr.Pointer() != nil { + return QNetworkReplyFromPointer(unsafe.Pointer(C.QNetworkAccessManager_DeleteResource(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkRequest(request))))) + } + return nil +} + +func (ptr *QNetworkAccessManager) ConnectEncrypted(f func(reply QNetworkReplyITF)) { + if ptr.Pointer() != nil { + C.QNetworkAccessManager_ConnectEncrypted(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "encrypted", f) + } +} + +func (ptr *QNetworkAccessManager) DisconnectEncrypted() { + if ptr.Pointer() != nil { + C.QNetworkAccessManager_DisconnectEncrypted(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "encrypted") + } +} + +//export callbackQNetworkAccessManagerEncrypted +func callbackQNetworkAccessManagerEncrypted(ptrName *C.char, reply unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "encrypted").(func(*QNetworkReply))(QNetworkReplyFromPointer(reply)) +} + +func (ptr *QNetworkAccessManager) ConnectFinished(f func(reply QNetworkReplyITF)) { + if ptr.Pointer() != nil { + C.QNetworkAccessManager_ConnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "finished", f) + } +} + +func (ptr *QNetworkAccessManager) DisconnectFinished() { + if ptr.Pointer() != nil { + C.QNetworkAccessManager_DisconnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "finished") + } +} + +//export callbackQNetworkAccessManagerFinished +func callbackQNetworkAccessManagerFinished(ptrName *C.char, reply unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "finished").(func(*QNetworkReply))(QNetworkReplyFromPointer(reply)) +} + +func (ptr *QNetworkAccessManager) Get(request QNetworkRequestITF) *QNetworkReply { + if ptr.Pointer() != nil { + return QNetworkReplyFromPointer(unsafe.Pointer(C.QNetworkAccessManager_Get(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkRequest(request))))) + } + return nil +} + +func (ptr *QNetworkAccessManager) Head(request QNetworkRequestITF) *QNetworkReply { + if ptr.Pointer() != nil { + return QNetworkReplyFromPointer(unsafe.Pointer(C.QNetworkAccessManager_Head(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkRequest(request))))) + } + return nil +} + +func (ptr *QNetworkAccessManager) NetworkAccessible() QNetworkAccessManager__NetworkAccessibility { + if ptr.Pointer() != nil { + return QNetworkAccessManager__NetworkAccessibility(C.QNetworkAccessManager_NetworkAccessible(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNetworkAccessManager) ConnectNetworkAccessibleChanged(f func(accessible QNetworkAccessManager__NetworkAccessibility)) { + if ptr.Pointer() != nil { + C.QNetworkAccessManager_ConnectNetworkAccessibleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "networkAccessibleChanged", f) + } +} + +func (ptr *QNetworkAccessManager) DisconnectNetworkAccessibleChanged() { + if ptr.Pointer() != nil { + C.QNetworkAccessManager_DisconnectNetworkAccessibleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "networkAccessibleChanged") + } +} + +//export callbackQNetworkAccessManagerNetworkAccessibleChanged +func callbackQNetworkAccessManagerNetworkAccessibleChanged(ptrName *C.char, accessible C.int) { + qt.GetSignal(C.GoString(ptrName), "networkAccessibleChanged").(func(QNetworkAccessManager__NetworkAccessibility))(QNetworkAccessManager__NetworkAccessibility(accessible)) +} + +func (ptr *QNetworkAccessManager) Post3(request QNetworkRequestITF, multiPart QHttpMultiPartITF) *QNetworkReply { + if ptr.Pointer() != nil { + return QNetworkReplyFromPointer(unsafe.Pointer(C.QNetworkAccessManager_Post3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkRequest(request)), C.QtObjectPtr(PointerFromQHttpMultiPart(multiPart))))) + } + return nil +} + +func (ptr *QNetworkAccessManager) Post(request QNetworkRequestITF, data core.QIODeviceITF) *QNetworkReply { + if ptr.Pointer() != nil { + return QNetworkReplyFromPointer(unsafe.Pointer(C.QNetworkAccessManager_Post(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkRequest(request)), C.QtObjectPtr(core.PointerFromQIODevice(data))))) + } + return nil +} + +func (ptr *QNetworkAccessManager) Post2(request QNetworkRequestITF, data core.QByteArrayITF) *QNetworkReply { + if ptr.Pointer() != nil { + return QNetworkReplyFromPointer(unsafe.Pointer(C.QNetworkAccessManager_Post2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkRequest(request)), C.QtObjectPtr(core.PointerFromQByteArray(data))))) + } + return nil +} + +func (ptr *QNetworkAccessManager) ConnectPreSharedKeyAuthenticationRequired(f func(reply QNetworkReplyITF, authenticator QSslPreSharedKeyAuthenticatorITF)) { + if ptr.Pointer() != nil { + C.QNetworkAccessManager_ConnectPreSharedKeyAuthenticationRequired(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "preSharedKeyAuthenticationRequired", f) + } +} + +func (ptr *QNetworkAccessManager) DisconnectPreSharedKeyAuthenticationRequired() { + if ptr.Pointer() != nil { + C.QNetworkAccessManager_DisconnectPreSharedKeyAuthenticationRequired(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "preSharedKeyAuthenticationRequired") + } +} + +//export callbackQNetworkAccessManagerPreSharedKeyAuthenticationRequired +func callbackQNetworkAccessManagerPreSharedKeyAuthenticationRequired(ptrName *C.char, reply unsafe.Pointer, authenticator unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "preSharedKeyAuthenticationRequired").(func(*QNetworkReply, *QSslPreSharedKeyAuthenticator))(QNetworkReplyFromPointer(reply), QSslPreSharedKeyAuthenticatorFromPointer(authenticator)) +} + +func (ptr *QNetworkAccessManager) Put2(request QNetworkRequestITF, multiPart QHttpMultiPartITF) *QNetworkReply { + if ptr.Pointer() != nil { + return QNetworkReplyFromPointer(unsafe.Pointer(C.QNetworkAccessManager_Put2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkRequest(request)), C.QtObjectPtr(PointerFromQHttpMultiPart(multiPart))))) + } + return nil +} + +func (ptr *QNetworkAccessManager) Put(request QNetworkRequestITF, data core.QIODeviceITF) *QNetworkReply { + if ptr.Pointer() != nil { + return QNetworkReplyFromPointer(unsafe.Pointer(C.QNetworkAccessManager_Put(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkRequest(request)), C.QtObjectPtr(core.PointerFromQIODevice(data))))) + } + return nil +} + +func (ptr *QNetworkAccessManager) Put3(request QNetworkRequestITF, data core.QByteArrayITF) *QNetworkReply { + if ptr.Pointer() != nil { + return QNetworkReplyFromPointer(unsafe.Pointer(C.QNetworkAccessManager_Put3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkRequest(request)), C.QtObjectPtr(core.PointerFromQByteArray(data))))) + } + return nil +} + +func (ptr *QNetworkAccessManager) SendCustomRequest(request QNetworkRequestITF, verb core.QByteArrayITF, data core.QIODeviceITF) *QNetworkReply { + if ptr.Pointer() != nil { + return QNetworkReplyFromPointer(unsafe.Pointer(C.QNetworkAccessManager_SendCustomRequest(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkRequest(request)), C.QtObjectPtr(core.PointerFromQByteArray(verb)), C.QtObjectPtr(core.PointerFromQIODevice(data))))) + } + return nil +} + +func (ptr *QNetworkAccessManager) SetCache(cache QAbstractNetworkCacheITF) { + if ptr.Pointer() != nil { + C.QNetworkAccessManager_SetCache(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractNetworkCache(cache))) + } +} + +func (ptr *QNetworkAccessManager) SetConfiguration(config QNetworkConfigurationITF) { + if ptr.Pointer() != nil { + C.QNetworkAccessManager_SetConfiguration(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkConfiguration(config))) + } +} + +func (ptr *QNetworkAccessManager) SetCookieJar(cookieJar QNetworkCookieJarITF) { + if ptr.Pointer() != nil { + C.QNetworkAccessManager_SetCookieJar(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkCookieJar(cookieJar))) + } +} + +func (ptr *QNetworkAccessManager) SetNetworkAccessible(accessible QNetworkAccessManager__NetworkAccessibility) { + if ptr.Pointer() != nil { + C.QNetworkAccessManager_SetNetworkAccessible(C.QtObjectPtr(ptr.Pointer()), C.int(accessible)) + } +} + +func (ptr *QNetworkAccessManager) SetProxy(proxy QNetworkProxyITF) { + if ptr.Pointer() != nil { + C.QNetworkAccessManager_SetProxy(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkProxy(proxy))) + } +} + +func (ptr *QNetworkAccessManager) SetProxyFactory(factory QNetworkProxyFactoryITF) { + if ptr.Pointer() != nil { + C.QNetworkAccessManager_SetProxyFactory(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkProxyFactory(factory))) + } +} + +func (ptr *QNetworkAccessManager) SupportedSchemes() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QNetworkAccessManager_SupportedSchemes(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QNetworkAccessManager) DestroyQNetworkAccessManager() { + if ptr.Pointer() != nil { + C.QNetworkAccessManager_DestroyQNetworkAccessManager(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/network/qnetworkaccessmanager.h b/network/qnetworkaccessmanager.h new file mode 100755 index 00000000..69757928 --- /dev/null +++ b/network/qnetworkaccessmanager.h @@ -0,0 +1,43 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QNetworkAccessManager_ProxyFactory(QtObjectPtr ptr); +QtObjectPtr QNetworkAccessManager_NewQNetworkAccessManager(QtObjectPtr parent); +void QNetworkAccessManager_ConnectAuthenticationRequired(QtObjectPtr ptr); +void QNetworkAccessManager_DisconnectAuthenticationRequired(QtObjectPtr ptr); +QtObjectPtr QNetworkAccessManager_Cache(QtObjectPtr ptr); +void QNetworkAccessManager_ClearAccessCache(QtObjectPtr ptr); +QtObjectPtr QNetworkAccessManager_CookieJar(QtObjectPtr ptr); +QtObjectPtr QNetworkAccessManager_DeleteResource(QtObjectPtr ptr, QtObjectPtr request); +void QNetworkAccessManager_ConnectEncrypted(QtObjectPtr ptr); +void QNetworkAccessManager_DisconnectEncrypted(QtObjectPtr ptr); +void QNetworkAccessManager_ConnectFinished(QtObjectPtr ptr); +void QNetworkAccessManager_DisconnectFinished(QtObjectPtr ptr); +QtObjectPtr QNetworkAccessManager_Get(QtObjectPtr ptr, QtObjectPtr request); +QtObjectPtr QNetworkAccessManager_Head(QtObjectPtr ptr, QtObjectPtr request); +int QNetworkAccessManager_NetworkAccessible(QtObjectPtr ptr); +void QNetworkAccessManager_ConnectNetworkAccessibleChanged(QtObjectPtr ptr); +void QNetworkAccessManager_DisconnectNetworkAccessibleChanged(QtObjectPtr ptr); +QtObjectPtr QNetworkAccessManager_Post3(QtObjectPtr ptr, QtObjectPtr request, QtObjectPtr multiPart); +QtObjectPtr QNetworkAccessManager_Post(QtObjectPtr ptr, QtObjectPtr request, QtObjectPtr data); +QtObjectPtr QNetworkAccessManager_Post2(QtObjectPtr ptr, QtObjectPtr request, QtObjectPtr data); +void QNetworkAccessManager_ConnectPreSharedKeyAuthenticationRequired(QtObjectPtr ptr); +void QNetworkAccessManager_DisconnectPreSharedKeyAuthenticationRequired(QtObjectPtr ptr); +QtObjectPtr QNetworkAccessManager_Put2(QtObjectPtr ptr, QtObjectPtr request, QtObjectPtr multiPart); +QtObjectPtr QNetworkAccessManager_Put(QtObjectPtr ptr, QtObjectPtr request, QtObjectPtr data); +QtObjectPtr QNetworkAccessManager_Put3(QtObjectPtr ptr, QtObjectPtr request, QtObjectPtr data); +QtObjectPtr QNetworkAccessManager_SendCustomRequest(QtObjectPtr ptr, QtObjectPtr request, QtObjectPtr verb, QtObjectPtr data); +void QNetworkAccessManager_SetCache(QtObjectPtr ptr, QtObjectPtr cache); +void QNetworkAccessManager_SetConfiguration(QtObjectPtr ptr, QtObjectPtr config); +void QNetworkAccessManager_SetCookieJar(QtObjectPtr ptr, QtObjectPtr cookieJar); +void QNetworkAccessManager_SetNetworkAccessible(QtObjectPtr ptr, int accessible); +void QNetworkAccessManager_SetProxy(QtObjectPtr ptr, QtObjectPtr proxy); +void QNetworkAccessManager_SetProxyFactory(QtObjectPtr ptr, QtObjectPtr factory); +char* QNetworkAccessManager_SupportedSchemes(QtObjectPtr ptr); +void QNetworkAccessManager_DestroyQNetworkAccessManager(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qnetworkaddressentry.cpp b/network/qnetworkaddressentry.cpp new file mode 100755 index 00000000..eaac2816 --- /dev/null +++ b/network/qnetworkaddressentry.cpp @@ -0,0 +1,49 @@ +#include "qnetworkaddressentry.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQNetworkAddressEntry: public QNetworkAddressEntry { +public: +}; + +QtObjectPtr QNetworkAddressEntry_NewQNetworkAddressEntry(){ + return new QNetworkAddressEntry(); +} + +QtObjectPtr QNetworkAddressEntry_NewQNetworkAddressEntry2(QtObjectPtr other){ + return new QNetworkAddressEntry(*static_cast(other)); +} + +int QNetworkAddressEntry_PrefixLength(QtObjectPtr ptr){ + return static_cast(ptr)->prefixLength(); +} + +void QNetworkAddressEntry_SetBroadcast(QtObjectPtr ptr, QtObjectPtr newBroadcast){ + static_cast(ptr)->setBroadcast(*static_cast(newBroadcast)); +} + +void QNetworkAddressEntry_SetIp(QtObjectPtr ptr, QtObjectPtr newIp){ + static_cast(ptr)->setIp(*static_cast(newIp)); +} + +void QNetworkAddressEntry_SetNetmask(QtObjectPtr ptr, QtObjectPtr newNetmask){ + static_cast(ptr)->setNetmask(*static_cast(newNetmask)); +} + +void QNetworkAddressEntry_SetPrefixLength(QtObjectPtr ptr, int length){ + static_cast(ptr)->setPrefixLength(length); +} + +void QNetworkAddressEntry_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QNetworkAddressEntry_DestroyQNetworkAddressEntry(QtObjectPtr ptr){ + static_cast(ptr)->~QNetworkAddressEntry(); +} + diff --git a/network/qnetworkaddressentry.go b/network/qnetworkaddressentry.go new file mode 100755 index 00000000..a698a30f --- /dev/null +++ b/network/qnetworkaddressentry.go @@ -0,0 +1,91 @@ +package network + +//#include "qnetworkaddressentry.h" +import "C" +import ( + "unsafe" +) + +type QNetworkAddressEntry struct { + ptr unsafe.Pointer +} + +type QNetworkAddressEntryITF interface { + QNetworkAddressEntryPTR() *QNetworkAddressEntry +} + +func (p *QNetworkAddressEntry) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QNetworkAddressEntry) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQNetworkAddressEntry(ptr QNetworkAddressEntryITF) unsafe.Pointer { + if ptr != nil { + return ptr.QNetworkAddressEntryPTR().Pointer() + } + return nil +} + +func QNetworkAddressEntryFromPointer(ptr unsafe.Pointer) *QNetworkAddressEntry { + var n = new(QNetworkAddressEntry) + n.SetPointer(ptr) + return n +} + +func (ptr *QNetworkAddressEntry) QNetworkAddressEntryPTR() *QNetworkAddressEntry { + return ptr +} + +func NewQNetworkAddressEntry() *QNetworkAddressEntry { + return QNetworkAddressEntryFromPointer(unsafe.Pointer(C.QNetworkAddressEntry_NewQNetworkAddressEntry())) +} + +func NewQNetworkAddressEntry2(other QNetworkAddressEntryITF) *QNetworkAddressEntry { + return QNetworkAddressEntryFromPointer(unsafe.Pointer(C.QNetworkAddressEntry_NewQNetworkAddressEntry2(C.QtObjectPtr(PointerFromQNetworkAddressEntry(other))))) +} + +func (ptr *QNetworkAddressEntry) PrefixLength() int { + if ptr.Pointer() != nil { + return int(C.QNetworkAddressEntry_PrefixLength(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNetworkAddressEntry) SetBroadcast(newBroadcast QHostAddressITF) { + if ptr.Pointer() != nil { + C.QNetworkAddressEntry_SetBroadcast(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQHostAddress(newBroadcast))) + } +} + +func (ptr *QNetworkAddressEntry) SetIp(newIp QHostAddressITF) { + if ptr.Pointer() != nil { + C.QNetworkAddressEntry_SetIp(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQHostAddress(newIp))) + } +} + +func (ptr *QNetworkAddressEntry) SetNetmask(newNetmask QHostAddressITF) { + if ptr.Pointer() != nil { + C.QNetworkAddressEntry_SetNetmask(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQHostAddress(newNetmask))) + } +} + +func (ptr *QNetworkAddressEntry) SetPrefixLength(length int) { + if ptr.Pointer() != nil { + C.QNetworkAddressEntry_SetPrefixLength(C.QtObjectPtr(ptr.Pointer()), C.int(length)) + } +} + +func (ptr *QNetworkAddressEntry) Swap(other QNetworkAddressEntryITF) { + if ptr.Pointer() != nil { + C.QNetworkAddressEntry_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkAddressEntry(other))) + } +} + +func (ptr *QNetworkAddressEntry) DestroyQNetworkAddressEntry() { + if ptr.Pointer() != nil { + C.QNetworkAddressEntry_DestroyQNetworkAddressEntry(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/network/qnetworkaddressentry.h b/network/qnetworkaddressentry.h new file mode 100755 index 00000000..d398d6b5 --- /dev/null +++ b/network/qnetworkaddressentry.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QNetworkAddressEntry_NewQNetworkAddressEntry(); +QtObjectPtr QNetworkAddressEntry_NewQNetworkAddressEntry2(QtObjectPtr other); +int QNetworkAddressEntry_PrefixLength(QtObjectPtr ptr); +void QNetworkAddressEntry_SetBroadcast(QtObjectPtr ptr, QtObjectPtr newBroadcast); +void QNetworkAddressEntry_SetIp(QtObjectPtr ptr, QtObjectPtr newIp); +void QNetworkAddressEntry_SetNetmask(QtObjectPtr ptr, QtObjectPtr newNetmask); +void QNetworkAddressEntry_SetPrefixLength(QtObjectPtr ptr, int length); +void QNetworkAddressEntry_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QNetworkAddressEntry_DestroyQNetworkAddressEntry(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qnetworkcachemetadata.cpp b/network/qnetworkcachemetadata.cpp new file mode 100755 index 00000000..0a86e78a --- /dev/null +++ b/network/qnetworkcachemetadata.cpp @@ -0,0 +1,58 @@ +#include "qnetworkcachemetadata.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQNetworkCacheMetaData: public QNetworkCacheMetaData { +public: +}; + +QtObjectPtr QNetworkCacheMetaData_NewQNetworkCacheMetaData(){ + return new QNetworkCacheMetaData(); +} + +QtObjectPtr QNetworkCacheMetaData_NewQNetworkCacheMetaData2(QtObjectPtr other){ + return new QNetworkCacheMetaData(*static_cast(other)); +} + +int QNetworkCacheMetaData_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QNetworkCacheMetaData_SaveToDisk(QtObjectPtr ptr){ + return static_cast(ptr)->saveToDisk(); +} + +void QNetworkCacheMetaData_SetExpirationDate(QtObjectPtr ptr, QtObjectPtr dateTime){ + static_cast(ptr)->setExpirationDate(*static_cast(dateTime)); +} + +void QNetworkCacheMetaData_SetLastModified(QtObjectPtr ptr, QtObjectPtr dateTime){ + static_cast(ptr)->setLastModified(*static_cast(dateTime)); +} + +void QNetworkCacheMetaData_SetSaveToDisk(QtObjectPtr ptr, int allow){ + static_cast(ptr)->setSaveToDisk(allow != 0); +} + +void QNetworkCacheMetaData_SetUrl(QtObjectPtr ptr, char* url){ + static_cast(ptr)->setUrl(QUrl(QString(url))); +} + +void QNetworkCacheMetaData_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +char* QNetworkCacheMetaData_Url(QtObjectPtr ptr){ + return static_cast(ptr)->url().toString().toUtf8().data(); +} + +void QNetworkCacheMetaData_DestroyQNetworkCacheMetaData(QtObjectPtr ptr){ + static_cast(ptr)->~QNetworkCacheMetaData(); +} + diff --git a/network/qnetworkcachemetadata.go b/network/qnetworkcachemetadata.go new file mode 100755 index 00000000..4f9e9987 --- /dev/null +++ b/network/qnetworkcachemetadata.go @@ -0,0 +1,107 @@ +package network + +//#include "qnetworkcachemetadata.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QNetworkCacheMetaData struct { + ptr unsafe.Pointer +} + +type QNetworkCacheMetaDataITF interface { + QNetworkCacheMetaDataPTR() *QNetworkCacheMetaData +} + +func (p *QNetworkCacheMetaData) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QNetworkCacheMetaData) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQNetworkCacheMetaData(ptr QNetworkCacheMetaDataITF) unsafe.Pointer { + if ptr != nil { + return ptr.QNetworkCacheMetaDataPTR().Pointer() + } + return nil +} + +func QNetworkCacheMetaDataFromPointer(ptr unsafe.Pointer) *QNetworkCacheMetaData { + var n = new(QNetworkCacheMetaData) + n.SetPointer(ptr) + return n +} + +func (ptr *QNetworkCacheMetaData) QNetworkCacheMetaDataPTR() *QNetworkCacheMetaData { + return ptr +} + +func NewQNetworkCacheMetaData() *QNetworkCacheMetaData { + return QNetworkCacheMetaDataFromPointer(unsafe.Pointer(C.QNetworkCacheMetaData_NewQNetworkCacheMetaData())) +} + +func NewQNetworkCacheMetaData2(other QNetworkCacheMetaDataITF) *QNetworkCacheMetaData { + return QNetworkCacheMetaDataFromPointer(unsafe.Pointer(C.QNetworkCacheMetaData_NewQNetworkCacheMetaData2(C.QtObjectPtr(PointerFromQNetworkCacheMetaData(other))))) +} + +func (ptr *QNetworkCacheMetaData) IsValid() bool { + if ptr.Pointer() != nil { + return C.QNetworkCacheMetaData_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QNetworkCacheMetaData) SaveToDisk() bool { + if ptr.Pointer() != nil { + return C.QNetworkCacheMetaData_SaveToDisk(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QNetworkCacheMetaData) SetExpirationDate(dateTime core.QDateTimeITF) { + if ptr.Pointer() != nil { + C.QNetworkCacheMetaData_SetExpirationDate(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDateTime(dateTime))) + } +} + +func (ptr *QNetworkCacheMetaData) SetLastModified(dateTime core.QDateTimeITF) { + if ptr.Pointer() != nil { + C.QNetworkCacheMetaData_SetLastModified(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDateTime(dateTime))) + } +} + +func (ptr *QNetworkCacheMetaData) SetSaveToDisk(allow bool) { + if ptr.Pointer() != nil { + C.QNetworkCacheMetaData_SetSaveToDisk(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(allow))) + } +} + +func (ptr *QNetworkCacheMetaData) SetUrl(url string) { + if ptr.Pointer() != nil { + C.QNetworkCacheMetaData_SetUrl(C.QtObjectPtr(ptr.Pointer()), C.CString(url)) + } +} + +func (ptr *QNetworkCacheMetaData) Swap(other QNetworkCacheMetaDataITF) { + if ptr.Pointer() != nil { + C.QNetworkCacheMetaData_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkCacheMetaData(other))) + } +} + +func (ptr *QNetworkCacheMetaData) Url() string { + if ptr.Pointer() != nil { + return C.GoString(C.QNetworkCacheMetaData_Url(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QNetworkCacheMetaData) DestroyQNetworkCacheMetaData() { + if ptr.Pointer() != nil { + C.QNetworkCacheMetaData_DestroyQNetworkCacheMetaData(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/network/qnetworkcachemetadata.h b/network/qnetworkcachemetadata.h new file mode 100755 index 00000000..e0e2f152 --- /dev/null +++ b/network/qnetworkcachemetadata.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QNetworkCacheMetaData_NewQNetworkCacheMetaData(); +QtObjectPtr QNetworkCacheMetaData_NewQNetworkCacheMetaData2(QtObjectPtr other); +int QNetworkCacheMetaData_IsValid(QtObjectPtr ptr); +int QNetworkCacheMetaData_SaveToDisk(QtObjectPtr ptr); +void QNetworkCacheMetaData_SetExpirationDate(QtObjectPtr ptr, QtObjectPtr dateTime); +void QNetworkCacheMetaData_SetLastModified(QtObjectPtr ptr, QtObjectPtr dateTime); +void QNetworkCacheMetaData_SetSaveToDisk(QtObjectPtr ptr, int allow); +void QNetworkCacheMetaData_SetUrl(QtObjectPtr ptr, char* url); +void QNetworkCacheMetaData_Swap(QtObjectPtr ptr, QtObjectPtr other); +char* QNetworkCacheMetaData_Url(QtObjectPtr ptr); +void QNetworkCacheMetaData_DestroyQNetworkCacheMetaData(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qnetworkconfiguration.cpp b/network/qnetworkconfiguration.cpp new file mode 100755 index 00000000..e5742572 --- /dev/null +++ b/network/qnetworkconfiguration.cpp @@ -0,0 +1,64 @@ +#include "qnetworkconfiguration.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQNetworkConfiguration: public QNetworkConfiguration { +public: +}; + +QtObjectPtr QNetworkConfiguration_NewQNetworkConfiguration(){ + return new QNetworkConfiguration(); +} + +QtObjectPtr QNetworkConfiguration_NewQNetworkConfiguration2(QtObjectPtr other){ + return new QNetworkConfiguration(*static_cast(other)); +} + +int QNetworkConfiguration_BearerType(QtObjectPtr ptr){ + return static_cast(ptr)->bearerType(); +} + +int QNetworkConfiguration_BearerTypeFamily(QtObjectPtr ptr){ + return static_cast(ptr)->bearerTypeFamily(); +} + +char* QNetworkConfiguration_BearerTypeName(QtObjectPtr ptr){ + return static_cast(ptr)->bearerTypeName().toUtf8().data(); +} + +char* QNetworkConfiguration_Identifier(QtObjectPtr ptr){ + return static_cast(ptr)->identifier().toUtf8().data(); +} + +int QNetworkConfiguration_IsRoamingAvailable(QtObjectPtr ptr){ + return static_cast(ptr)->isRoamingAvailable(); +} + +int QNetworkConfiguration_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +char* QNetworkConfiguration_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +int QNetworkConfiguration_Purpose(QtObjectPtr ptr){ + return static_cast(ptr)->purpose(); +} + +void QNetworkConfiguration_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +int QNetworkConfiguration_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QNetworkConfiguration_DestroyQNetworkConfiguration(QtObjectPtr ptr){ + static_cast(ptr)->~QNetworkConfiguration(); +} + diff --git a/network/qnetworkconfiguration.go b/network/qnetworkconfiguration.go new file mode 100755 index 00000000..1908e59b --- /dev/null +++ b/network/qnetworkconfiguration.go @@ -0,0 +1,172 @@ +package network + +//#include "qnetworkconfiguration.h" +import "C" +import ( + "unsafe" +) + +type QNetworkConfiguration struct { + ptr unsafe.Pointer +} + +type QNetworkConfigurationITF interface { + QNetworkConfigurationPTR() *QNetworkConfiguration +} + +func (p *QNetworkConfiguration) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QNetworkConfiguration) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQNetworkConfiguration(ptr QNetworkConfigurationITF) unsafe.Pointer { + if ptr != nil { + return ptr.QNetworkConfigurationPTR().Pointer() + } + return nil +} + +func QNetworkConfigurationFromPointer(ptr unsafe.Pointer) *QNetworkConfiguration { + var n = new(QNetworkConfiguration) + n.SetPointer(ptr) + return n +} + +func (ptr *QNetworkConfiguration) QNetworkConfigurationPTR() *QNetworkConfiguration { + return ptr +} + +//QNetworkConfiguration::BearerType +type QNetworkConfiguration__BearerType int + +var ( + QNetworkConfiguration__BearerUnknown = QNetworkConfiguration__BearerType(0) + QNetworkConfiguration__BearerEthernet = QNetworkConfiguration__BearerType(1) + QNetworkConfiguration__BearerWLAN = QNetworkConfiguration__BearerType(2) + QNetworkConfiguration__Bearer2G = QNetworkConfiguration__BearerType(3) + QNetworkConfiguration__BearerCDMA2000 = QNetworkConfiguration__BearerType(4) + QNetworkConfiguration__BearerWCDMA = QNetworkConfiguration__BearerType(5) + QNetworkConfiguration__BearerHSPA = QNetworkConfiguration__BearerType(6) + QNetworkConfiguration__BearerBluetooth = QNetworkConfiguration__BearerType(7) + QNetworkConfiguration__BearerWiMAX = QNetworkConfiguration__BearerType(8) + QNetworkConfiguration__BearerEVDO = QNetworkConfiguration__BearerType(9) + QNetworkConfiguration__BearerLTE = QNetworkConfiguration__BearerType(10) + QNetworkConfiguration__Bearer3G = QNetworkConfiguration__BearerType(11) + QNetworkConfiguration__Bearer4G = QNetworkConfiguration__BearerType(12) +) + +//QNetworkConfiguration::Purpose +type QNetworkConfiguration__Purpose int + +var ( + QNetworkConfiguration__UnknownPurpose = QNetworkConfiguration__Purpose(0) + QNetworkConfiguration__PublicPurpose = QNetworkConfiguration__Purpose(1) + QNetworkConfiguration__PrivatePurpose = QNetworkConfiguration__Purpose(2) + QNetworkConfiguration__ServiceSpecificPurpose = QNetworkConfiguration__Purpose(3) +) + +//QNetworkConfiguration::StateFlag +type QNetworkConfiguration__StateFlag int + +var ( + QNetworkConfiguration__Undefined = QNetworkConfiguration__StateFlag(0x0000001) + QNetworkConfiguration__Defined = QNetworkConfiguration__StateFlag(0x0000002) + QNetworkConfiguration__Discovered = QNetworkConfiguration__StateFlag(0x0000006) + QNetworkConfiguration__Active = QNetworkConfiguration__StateFlag(0x000000e) +) + +//QNetworkConfiguration::Type +type QNetworkConfiguration__Type int + +var ( + QNetworkConfiguration__InternetAccessPoint = QNetworkConfiguration__Type(0) + QNetworkConfiguration__ServiceNetwork = QNetworkConfiguration__Type(1) + QNetworkConfiguration__UserChoice = QNetworkConfiguration__Type(2) + QNetworkConfiguration__Invalid = QNetworkConfiguration__Type(3) +) + +func NewQNetworkConfiguration() *QNetworkConfiguration { + return QNetworkConfigurationFromPointer(unsafe.Pointer(C.QNetworkConfiguration_NewQNetworkConfiguration())) +} + +func NewQNetworkConfiguration2(other QNetworkConfigurationITF) *QNetworkConfiguration { + return QNetworkConfigurationFromPointer(unsafe.Pointer(C.QNetworkConfiguration_NewQNetworkConfiguration2(C.QtObjectPtr(PointerFromQNetworkConfiguration(other))))) +} + +func (ptr *QNetworkConfiguration) BearerType() QNetworkConfiguration__BearerType { + if ptr.Pointer() != nil { + return QNetworkConfiguration__BearerType(C.QNetworkConfiguration_BearerType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNetworkConfiguration) BearerTypeFamily() QNetworkConfiguration__BearerType { + if ptr.Pointer() != nil { + return QNetworkConfiguration__BearerType(C.QNetworkConfiguration_BearerTypeFamily(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNetworkConfiguration) BearerTypeName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QNetworkConfiguration_BearerTypeName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QNetworkConfiguration) Identifier() string { + if ptr.Pointer() != nil { + return C.GoString(C.QNetworkConfiguration_Identifier(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QNetworkConfiguration) IsRoamingAvailable() bool { + if ptr.Pointer() != nil { + return C.QNetworkConfiguration_IsRoamingAvailable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QNetworkConfiguration) IsValid() bool { + if ptr.Pointer() != nil { + return C.QNetworkConfiguration_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QNetworkConfiguration) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QNetworkConfiguration_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QNetworkConfiguration) Purpose() QNetworkConfiguration__Purpose { + if ptr.Pointer() != nil { + return QNetworkConfiguration__Purpose(C.QNetworkConfiguration_Purpose(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNetworkConfiguration) Swap(other QNetworkConfigurationITF) { + if ptr.Pointer() != nil { + C.QNetworkConfiguration_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkConfiguration(other))) + } +} + +func (ptr *QNetworkConfiguration) Type() QNetworkConfiguration__Type { + if ptr.Pointer() != nil { + return QNetworkConfiguration__Type(C.QNetworkConfiguration_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNetworkConfiguration) DestroyQNetworkConfiguration() { + if ptr.Pointer() != nil { + C.QNetworkConfiguration_DestroyQNetworkConfiguration(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/network/qnetworkconfiguration.h b/network/qnetworkconfiguration.h new file mode 100755 index 00000000..1cba9349 --- /dev/null +++ b/network/qnetworkconfiguration.h @@ -0,0 +1,22 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QNetworkConfiguration_NewQNetworkConfiguration(); +QtObjectPtr QNetworkConfiguration_NewQNetworkConfiguration2(QtObjectPtr other); +int QNetworkConfiguration_BearerType(QtObjectPtr ptr); +int QNetworkConfiguration_BearerTypeFamily(QtObjectPtr ptr); +char* QNetworkConfiguration_BearerTypeName(QtObjectPtr ptr); +char* QNetworkConfiguration_Identifier(QtObjectPtr ptr); +int QNetworkConfiguration_IsRoamingAvailable(QtObjectPtr ptr); +int QNetworkConfiguration_IsValid(QtObjectPtr ptr); +char* QNetworkConfiguration_Name(QtObjectPtr ptr); +int QNetworkConfiguration_Purpose(QtObjectPtr ptr); +void QNetworkConfiguration_Swap(QtObjectPtr ptr, QtObjectPtr other); +int QNetworkConfiguration_Type(QtObjectPtr ptr); +void QNetworkConfiguration_DestroyQNetworkConfiguration(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qnetworkconfigurationmanager.cpp b/network/qnetworkconfigurationmanager.cpp new file mode 100755 index 00000000..d4bab5a6 --- /dev/null +++ b/network/qnetworkconfigurationmanager.cpp @@ -0,0 +1,53 @@ +#include "qnetworkconfigurationmanager.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQNetworkConfigurationManager: public QNetworkConfigurationManager { +public: +void Signal_OnlineStateChanged(bool isOnline){callbackQNetworkConfigurationManagerOnlineStateChanged(this->objectName().toUtf8().data(), isOnline);}; +void Signal_UpdateCompleted(){callbackQNetworkConfigurationManagerUpdateCompleted(this->objectName().toUtf8().data());}; +}; + +QtObjectPtr QNetworkConfigurationManager_NewQNetworkConfigurationManager(QtObjectPtr parent){ + return new QNetworkConfigurationManager(static_cast(parent)); +} + +int QNetworkConfigurationManager_Capabilities(QtObjectPtr ptr){ + return static_cast(ptr)->capabilities(); +} + +int QNetworkConfigurationManager_IsOnline(QtObjectPtr ptr){ + return static_cast(ptr)->isOnline(); +} + +void QNetworkConfigurationManager_ConnectOnlineStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QNetworkConfigurationManager::onlineStateChanged), static_cast(ptr), static_cast(&MyQNetworkConfigurationManager::Signal_OnlineStateChanged));; +} + +void QNetworkConfigurationManager_DisconnectOnlineStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QNetworkConfigurationManager::onlineStateChanged), static_cast(ptr), static_cast(&MyQNetworkConfigurationManager::Signal_OnlineStateChanged));; +} + +void QNetworkConfigurationManager_ConnectUpdateCompleted(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QNetworkConfigurationManager::updateCompleted), static_cast(ptr), static_cast(&MyQNetworkConfigurationManager::Signal_UpdateCompleted));; +} + +void QNetworkConfigurationManager_DisconnectUpdateCompleted(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QNetworkConfigurationManager::updateCompleted), static_cast(ptr), static_cast(&MyQNetworkConfigurationManager::Signal_UpdateCompleted));; +} + +void QNetworkConfigurationManager_UpdateConfigurations(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "updateConfigurations"); +} + +void QNetworkConfigurationManager_DestroyQNetworkConfigurationManager(QtObjectPtr ptr){ + static_cast(ptr)->~QNetworkConfigurationManager(); +} + diff --git a/network/qnetworkconfigurationmanager.go b/network/qnetworkconfigurationmanager.go new file mode 100755 index 00000000..56c94bb8 --- /dev/null +++ b/network/qnetworkconfigurationmanager.go @@ -0,0 +1,120 @@ +package network + +//#include "qnetworkconfigurationmanager.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QNetworkConfigurationManager struct { + core.QObject +} + +type QNetworkConfigurationManagerITF interface { + core.QObjectITF + QNetworkConfigurationManagerPTR() *QNetworkConfigurationManager +} + +func PointerFromQNetworkConfigurationManager(ptr QNetworkConfigurationManagerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QNetworkConfigurationManagerPTR().Pointer() + } + return nil +} + +func QNetworkConfigurationManagerFromPointer(ptr unsafe.Pointer) *QNetworkConfigurationManager { + var n = new(QNetworkConfigurationManager) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QNetworkConfigurationManager_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QNetworkConfigurationManager) QNetworkConfigurationManagerPTR() *QNetworkConfigurationManager { + return ptr +} + +//QNetworkConfigurationManager::Capability +type QNetworkConfigurationManager__Capability int + +var ( + QNetworkConfigurationManager__CanStartAndStopInterfaces = QNetworkConfigurationManager__Capability(0x00000001) + QNetworkConfigurationManager__DirectConnectionRouting = QNetworkConfigurationManager__Capability(0x00000002) + QNetworkConfigurationManager__SystemSessionSupport = QNetworkConfigurationManager__Capability(0x00000004) + QNetworkConfigurationManager__ApplicationLevelRoaming = QNetworkConfigurationManager__Capability(0x00000008) + QNetworkConfigurationManager__ForcedRoaming = QNetworkConfigurationManager__Capability(0x00000010) + QNetworkConfigurationManager__DataStatistics = QNetworkConfigurationManager__Capability(0x00000020) + QNetworkConfigurationManager__NetworkSessionRequired = QNetworkConfigurationManager__Capability(0x00000040) +) + +func NewQNetworkConfigurationManager(parent core.QObjectITF) *QNetworkConfigurationManager { + return QNetworkConfigurationManagerFromPointer(unsafe.Pointer(C.QNetworkConfigurationManager_NewQNetworkConfigurationManager(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QNetworkConfigurationManager) Capabilities() QNetworkConfigurationManager__Capability { + if ptr.Pointer() != nil { + return QNetworkConfigurationManager__Capability(C.QNetworkConfigurationManager_Capabilities(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNetworkConfigurationManager) IsOnline() bool { + if ptr.Pointer() != nil { + return C.QNetworkConfigurationManager_IsOnline(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QNetworkConfigurationManager) ConnectOnlineStateChanged(f func(isOnline bool)) { + if ptr.Pointer() != nil { + C.QNetworkConfigurationManager_ConnectOnlineStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "onlineStateChanged", f) + } +} + +func (ptr *QNetworkConfigurationManager) DisconnectOnlineStateChanged() { + if ptr.Pointer() != nil { + C.QNetworkConfigurationManager_DisconnectOnlineStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "onlineStateChanged") + } +} + +//export callbackQNetworkConfigurationManagerOnlineStateChanged +func callbackQNetworkConfigurationManagerOnlineStateChanged(ptrName *C.char, isOnline C.int) { + qt.GetSignal(C.GoString(ptrName), "onlineStateChanged").(func(bool))(int(isOnline) != 0) +} + +func (ptr *QNetworkConfigurationManager) ConnectUpdateCompleted(f func()) { + if ptr.Pointer() != nil { + C.QNetworkConfigurationManager_ConnectUpdateCompleted(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "updateCompleted", f) + } +} + +func (ptr *QNetworkConfigurationManager) DisconnectUpdateCompleted() { + if ptr.Pointer() != nil { + C.QNetworkConfigurationManager_DisconnectUpdateCompleted(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "updateCompleted") + } +} + +//export callbackQNetworkConfigurationManagerUpdateCompleted +func callbackQNetworkConfigurationManagerUpdateCompleted(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "updateCompleted").(func())() +} + +func (ptr *QNetworkConfigurationManager) UpdateConfigurations() { + if ptr.Pointer() != nil { + C.QNetworkConfigurationManager_UpdateConfigurations(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QNetworkConfigurationManager) DestroyQNetworkConfigurationManager() { + if ptr.Pointer() != nil { + C.QNetworkConfigurationManager_DestroyQNetworkConfigurationManager(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/network/qnetworkconfigurationmanager.h b/network/qnetworkconfigurationmanager.h new file mode 100755 index 00000000..d10411ab --- /dev/null +++ b/network/qnetworkconfigurationmanager.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QNetworkConfigurationManager_NewQNetworkConfigurationManager(QtObjectPtr parent); +int QNetworkConfigurationManager_Capabilities(QtObjectPtr ptr); +int QNetworkConfigurationManager_IsOnline(QtObjectPtr ptr); +void QNetworkConfigurationManager_ConnectOnlineStateChanged(QtObjectPtr ptr); +void QNetworkConfigurationManager_DisconnectOnlineStateChanged(QtObjectPtr ptr); +void QNetworkConfigurationManager_ConnectUpdateCompleted(QtObjectPtr ptr); +void QNetworkConfigurationManager_DisconnectUpdateCompleted(QtObjectPtr ptr); +void QNetworkConfigurationManager_UpdateConfigurations(QtObjectPtr ptr); +void QNetworkConfigurationManager_DestroyQNetworkConfigurationManager(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qnetworkcookie.cpp b/network/qnetworkcookie.cpp new file mode 100755 index 00000000..c8d9d057 --- /dev/null +++ b/network/qnetworkcookie.cpp @@ -0,0 +1,87 @@ +#include "qnetworkcookie.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQNetworkCookie: public QNetworkCookie { +public: +}; + +QtObjectPtr QNetworkCookie_NewQNetworkCookie(QtObjectPtr name, QtObjectPtr value){ + return new QNetworkCookie(*static_cast(name), *static_cast(value)); +} + +QtObjectPtr QNetworkCookie_NewQNetworkCookie2(QtObjectPtr other){ + return new QNetworkCookie(*static_cast(other)); +} + +char* QNetworkCookie_Domain(QtObjectPtr ptr){ + return static_cast(ptr)->domain().toUtf8().data(); +} + +int QNetworkCookie_HasSameIdentifier(QtObjectPtr ptr, QtObjectPtr other){ + return static_cast(ptr)->hasSameIdentifier(*static_cast(other)); +} + +int QNetworkCookie_IsHttpOnly(QtObjectPtr ptr){ + return static_cast(ptr)->isHttpOnly(); +} + +int QNetworkCookie_IsSecure(QtObjectPtr ptr){ + return static_cast(ptr)->isSecure(); +} + +int QNetworkCookie_IsSessionCookie(QtObjectPtr ptr){ + return static_cast(ptr)->isSessionCookie(); +} + +void QNetworkCookie_Normalize(QtObjectPtr ptr, char* url){ + static_cast(ptr)->normalize(QUrl(QString(url))); +} + +char* QNetworkCookie_Path(QtObjectPtr ptr){ + return static_cast(ptr)->path().toUtf8().data(); +} + +void QNetworkCookie_SetDomain(QtObjectPtr ptr, char* domain){ + static_cast(ptr)->setDomain(QString(domain)); +} + +void QNetworkCookie_SetExpirationDate(QtObjectPtr ptr, QtObjectPtr date){ + static_cast(ptr)->setExpirationDate(*static_cast(date)); +} + +void QNetworkCookie_SetHttpOnly(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setHttpOnly(enable != 0); +} + +void QNetworkCookie_SetName(QtObjectPtr ptr, QtObjectPtr cookieName){ + static_cast(ptr)->setName(*static_cast(cookieName)); +} + +void QNetworkCookie_SetPath(QtObjectPtr ptr, char* path){ + static_cast(ptr)->setPath(QString(path)); +} + +void QNetworkCookie_SetSecure(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setSecure(enable != 0); +} + +void QNetworkCookie_SetValue(QtObjectPtr ptr, QtObjectPtr value){ + static_cast(ptr)->setValue(*static_cast(value)); +} + +void QNetworkCookie_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QNetworkCookie_DestroyQNetworkCookie(QtObjectPtr ptr){ + static_cast(ptr)->~QNetworkCookie(); +} + diff --git a/network/qnetworkcookie.go b/network/qnetworkcookie.go new file mode 100755 index 00000000..f224267a --- /dev/null +++ b/network/qnetworkcookie.go @@ -0,0 +1,160 @@ +package network + +//#include "qnetworkcookie.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QNetworkCookie struct { + ptr unsafe.Pointer +} + +type QNetworkCookieITF interface { + QNetworkCookiePTR() *QNetworkCookie +} + +func (p *QNetworkCookie) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QNetworkCookie) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQNetworkCookie(ptr QNetworkCookieITF) unsafe.Pointer { + if ptr != nil { + return ptr.QNetworkCookiePTR().Pointer() + } + return nil +} + +func QNetworkCookieFromPointer(ptr unsafe.Pointer) *QNetworkCookie { + var n = new(QNetworkCookie) + n.SetPointer(ptr) + return n +} + +func (ptr *QNetworkCookie) QNetworkCookiePTR() *QNetworkCookie { + return ptr +} + +//QNetworkCookie::RawForm +type QNetworkCookie__RawForm int + +var ( + QNetworkCookie__NameAndValueOnly = QNetworkCookie__RawForm(0) + QNetworkCookie__Full = QNetworkCookie__RawForm(1) +) + +func NewQNetworkCookie(name core.QByteArrayITF, value core.QByteArrayITF) *QNetworkCookie { + return QNetworkCookieFromPointer(unsafe.Pointer(C.QNetworkCookie_NewQNetworkCookie(C.QtObjectPtr(core.PointerFromQByteArray(name)), C.QtObjectPtr(core.PointerFromQByteArray(value))))) +} + +func NewQNetworkCookie2(other QNetworkCookieITF) *QNetworkCookie { + return QNetworkCookieFromPointer(unsafe.Pointer(C.QNetworkCookie_NewQNetworkCookie2(C.QtObjectPtr(PointerFromQNetworkCookie(other))))) +} + +func (ptr *QNetworkCookie) Domain() string { + if ptr.Pointer() != nil { + return C.GoString(C.QNetworkCookie_Domain(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QNetworkCookie) HasSameIdentifier(other QNetworkCookieITF) bool { + if ptr.Pointer() != nil { + return C.QNetworkCookie_HasSameIdentifier(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkCookie(other))) != 0 + } + return false +} + +func (ptr *QNetworkCookie) IsHttpOnly() bool { + if ptr.Pointer() != nil { + return C.QNetworkCookie_IsHttpOnly(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QNetworkCookie) IsSecure() bool { + if ptr.Pointer() != nil { + return C.QNetworkCookie_IsSecure(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QNetworkCookie) IsSessionCookie() bool { + if ptr.Pointer() != nil { + return C.QNetworkCookie_IsSessionCookie(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QNetworkCookie) Normalize(url string) { + if ptr.Pointer() != nil { + C.QNetworkCookie_Normalize(C.QtObjectPtr(ptr.Pointer()), C.CString(url)) + } +} + +func (ptr *QNetworkCookie) Path() string { + if ptr.Pointer() != nil { + return C.GoString(C.QNetworkCookie_Path(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QNetworkCookie) SetDomain(domain string) { + if ptr.Pointer() != nil { + C.QNetworkCookie_SetDomain(C.QtObjectPtr(ptr.Pointer()), C.CString(domain)) + } +} + +func (ptr *QNetworkCookie) SetExpirationDate(date core.QDateTimeITF) { + if ptr.Pointer() != nil { + C.QNetworkCookie_SetExpirationDate(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDateTime(date))) + } +} + +func (ptr *QNetworkCookie) SetHttpOnly(enable bool) { + if ptr.Pointer() != nil { + C.QNetworkCookie_SetHttpOnly(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QNetworkCookie) SetName(cookieName core.QByteArrayITF) { + if ptr.Pointer() != nil { + C.QNetworkCookie_SetName(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(cookieName))) + } +} + +func (ptr *QNetworkCookie) SetPath(path string) { + if ptr.Pointer() != nil { + C.QNetworkCookie_SetPath(C.QtObjectPtr(ptr.Pointer()), C.CString(path)) + } +} + +func (ptr *QNetworkCookie) SetSecure(enable bool) { + if ptr.Pointer() != nil { + C.QNetworkCookie_SetSecure(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QNetworkCookie) SetValue(value core.QByteArrayITF) { + if ptr.Pointer() != nil { + C.QNetworkCookie_SetValue(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(value))) + } +} + +func (ptr *QNetworkCookie) Swap(other QNetworkCookieITF) { + if ptr.Pointer() != nil { + C.QNetworkCookie_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkCookie(other))) + } +} + +func (ptr *QNetworkCookie) DestroyQNetworkCookie() { + if ptr.Pointer() != nil { + C.QNetworkCookie_DestroyQNetworkCookie(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/network/qnetworkcookie.h b/network/qnetworkcookie.h new file mode 100755 index 00000000..ef7a371e --- /dev/null +++ b/network/qnetworkcookie.h @@ -0,0 +1,27 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QNetworkCookie_NewQNetworkCookie(QtObjectPtr name, QtObjectPtr value); +QtObjectPtr QNetworkCookie_NewQNetworkCookie2(QtObjectPtr other); +char* QNetworkCookie_Domain(QtObjectPtr ptr); +int QNetworkCookie_HasSameIdentifier(QtObjectPtr ptr, QtObjectPtr other); +int QNetworkCookie_IsHttpOnly(QtObjectPtr ptr); +int QNetworkCookie_IsSecure(QtObjectPtr ptr); +int QNetworkCookie_IsSessionCookie(QtObjectPtr ptr); +void QNetworkCookie_Normalize(QtObjectPtr ptr, char* url); +char* QNetworkCookie_Path(QtObjectPtr ptr); +void QNetworkCookie_SetDomain(QtObjectPtr ptr, char* domain); +void QNetworkCookie_SetExpirationDate(QtObjectPtr ptr, QtObjectPtr date); +void QNetworkCookie_SetHttpOnly(QtObjectPtr ptr, int enable); +void QNetworkCookie_SetName(QtObjectPtr ptr, QtObjectPtr cookieName); +void QNetworkCookie_SetPath(QtObjectPtr ptr, char* path); +void QNetworkCookie_SetSecure(QtObjectPtr ptr, int enable); +void QNetworkCookie_SetValue(QtObjectPtr ptr, QtObjectPtr value); +void QNetworkCookie_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QNetworkCookie_DestroyQNetworkCookie(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qnetworkcookiejar.cpp b/network/qnetworkcookiejar.cpp new file mode 100755 index 00000000..095d3212 --- /dev/null +++ b/network/qnetworkcookiejar.cpp @@ -0,0 +1,34 @@ +#include "qnetworkcookiejar.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQNetworkCookieJar: public QNetworkCookieJar { +public: +}; + +QtObjectPtr QNetworkCookieJar_NewQNetworkCookieJar(QtObjectPtr parent){ + return new QNetworkCookieJar(static_cast(parent)); +} + +int QNetworkCookieJar_DeleteCookie(QtObjectPtr ptr, QtObjectPtr cookie){ + return static_cast(ptr)->deleteCookie(*static_cast(cookie)); +} + +int QNetworkCookieJar_InsertCookie(QtObjectPtr ptr, QtObjectPtr cookie){ + return static_cast(ptr)->insertCookie(*static_cast(cookie)); +} + +int QNetworkCookieJar_UpdateCookie(QtObjectPtr ptr, QtObjectPtr cookie){ + return static_cast(ptr)->updateCookie(*static_cast(cookie)); +} + +void QNetworkCookieJar_DestroyQNetworkCookieJar(QtObjectPtr ptr){ + static_cast(ptr)->~QNetworkCookieJar(); +} + diff --git a/network/qnetworkcookiejar.go b/network/qnetworkcookiejar.go new file mode 100755 index 00000000..fb31e443 --- /dev/null +++ b/network/qnetworkcookiejar.go @@ -0,0 +1,70 @@ +package network + +//#include "qnetworkcookiejar.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QNetworkCookieJar struct { + core.QObject +} + +type QNetworkCookieJarITF interface { + core.QObjectITF + QNetworkCookieJarPTR() *QNetworkCookieJar +} + +func PointerFromQNetworkCookieJar(ptr QNetworkCookieJarITF) unsafe.Pointer { + if ptr != nil { + return ptr.QNetworkCookieJarPTR().Pointer() + } + return nil +} + +func QNetworkCookieJarFromPointer(ptr unsafe.Pointer) *QNetworkCookieJar { + var n = new(QNetworkCookieJar) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QNetworkCookieJar_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QNetworkCookieJar) QNetworkCookieJarPTR() *QNetworkCookieJar { + return ptr +} + +func NewQNetworkCookieJar(parent core.QObjectITF) *QNetworkCookieJar { + return QNetworkCookieJarFromPointer(unsafe.Pointer(C.QNetworkCookieJar_NewQNetworkCookieJar(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QNetworkCookieJar) DeleteCookie(cookie QNetworkCookieITF) bool { + if ptr.Pointer() != nil { + return C.QNetworkCookieJar_DeleteCookie(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkCookie(cookie))) != 0 + } + return false +} + +func (ptr *QNetworkCookieJar) InsertCookie(cookie QNetworkCookieITF) bool { + if ptr.Pointer() != nil { + return C.QNetworkCookieJar_InsertCookie(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkCookie(cookie))) != 0 + } + return false +} + +func (ptr *QNetworkCookieJar) UpdateCookie(cookie QNetworkCookieITF) bool { + if ptr.Pointer() != nil { + return C.QNetworkCookieJar_UpdateCookie(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkCookie(cookie))) != 0 + } + return false +} + +func (ptr *QNetworkCookieJar) DestroyQNetworkCookieJar() { + if ptr.Pointer() != nil { + C.QNetworkCookieJar_DestroyQNetworkCookieJar(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/network/qnetworkcookiejar.h b/network/qnetworkcookiejar.h new file mode 100755 index 00000000..e477dbcf --- /dev/null +++ b/network/qnetworkcookiejar.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QNetworkCookieJar_NewQNetworkCookieJar(QtObjectPtr parent); +int QNetworkCookieJar_DeleteCookie(QtObjectPtr ptr, QtObjectPtr cookie); +int QNetworkCookieJar_InsertCookie(QtObjectPtr ptr, QtObjectPtr cookie); +int QNetworkCookieJar_UpdateCookie(QtObjectPtr ptr, QtObjectPtr cookie); +void QNetworkCookieJar_DestroyQNetworkCookieJar(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qnetworkdiskcache.cpp b/network/qnetworkdiskcache.cpp new file mode 100755 index 00000000..8de1b12f --- /dev/null +++ b/network/qnetworkdiskcache.cpp @@ -0,0 +1,47 @@ +#include "qnetworkdiskcache.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQNetworkDiskCache: public QNetworkDiskCache { +public: +}; + +QtObjectPtr QNetworkDiskCache_NewQNetworkDiskCache(QtObjectPtr parent){ + return new QNetworkDiskCache(static_cast(parent)); +} + +char* QNetworkDiskCache_CacheDirectory(QtObjectPtr ptr){ + return static_cast(ptr)->cacheDirectory().toUtf8().data(); +} + +void QNetworkDiskCache_Clear(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "clear"); +} + +QtObjectPtr QNetworkDiskCache_Data(QtObjectPtr ptr, char* url){ + return static_cast(ptr)->data(QUrl(QString(url))); +} + +QtObjectPtr QNetworkDiskCache_Prepare(QtObjectPtr ptr, QtObjectPtr metaData){ + return static_cast(ptr)->prepare(*static_cast(metaData)); +} + +void QNetworkDiskCache_SetCacheDirectory(QtObjectPtr ptr, char* cacheDir){ + static_cast(ptr)->setCacheDirectory(QString(cacheDir)); +} + +void QNetworkDiskCache_UpdateMetaData(QtObjectPtr ptr, QtObjectPtr metaData){ + static_cast(ptr)->updateMetaData(*static_cast(metaData)); +} + +void QNetworkDiskCache_DestroyQNetworkDiskCache(QtObjectPtr ptr){ + static_cast(ptr)->~QNetworkDiskCache(); +} + diff --git a/network/qnetworkdiskcache.go b/network/qnetworkdiskcache.go new file mode 100755 index 00000000..ef5c9421 --- /dev/null +++ b/network/qnetworkdiskcache.go @@ -0,0 +1,88 @@ +package network + +//#include "qnetworkdiskcache.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QNetworkDiskCache struct { + QAbstractNetworkCache +} + +type QNetworkDiskCacheITF interface { + QAbstractNetworkCacheITF + QNetworkDiskCachePTR() *QNetworkDiskCache +} + +func PointerFromQNetworkDiskCache(ptr QNetworkDiskCacheITF) unsafe.Pointer { + if ptr != nil { + return ptr.QNetworkDiskCachePTR().Pointer() + } + return nil +} + +func QNetworkDiskCacheFromPointer(ptr unsafe.Pointer) *QNetworkDiskCache { + var n = new(QNetworkDiskCache) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QNetworkDiskCache_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QNetworkDiskCache) QNetworkDiskCachePTR() *QNetworkDiskCache { + return ptr +} + +func NewQNetworkDiskCache(parent core.QObjectITF) *QNetworkDiskCache { + return QNetworkDiskCacheFromPointer(unsafe.Pointer(C.QNetworkDiskCache_NewQNetworkDiskCache(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QNetworkDiskCache) CacheDirectory() string { + if ptr.Pointer() != nil { + return C.GoString(C.QNetworkDiskCache_CacheDirectory(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QNetworkDiskCache) Clear() { + if ptr.Pointer() != nil { + C.QNetworkDiskCache_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QNetworkDiskCache) Data(url string) *core.QIODevice { + if ptr.Pointer() != nil { + return core.QIODeviceFromPointer(unsafe.Pointer(C.QNetworkDiskCache_Data(C.QtObjectPtr(ptr.Pointer()), C.CString(url)))) + } + return nil +} + +func (ptr *QNetworkDiskCache) Prepare(metaData QNetworkCacheMetaDataITF) *core.QIODevice { + if ptr.Pointer() != nil { + return core.QIODeviceFromPointer(unsafe.Pointer(C.QNetworkDiskCache_Prepare(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkCacheMetaData(metaData))))) + } + return nil +} + +func (ptr *QNetworkDiskCache) SetCacheDirectory(cacheDir string) { + if ptr.Pointer() != nil { + C.QNetworkDiskCache_SetCacheDirectory(C.QtObjectPtr(ptr.Pointer()), C.CString(cacheDir)) + } +} + +func (ptr *QNetworkDiskCache) UpdateMetaData(metaData QNetworkCacheMetaDataITF) { + if ptr.Pointer() != nil { + C.QNetworkDiskCache_UpdateMetaData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkCacheMetaData(metaData))) + } +} + +func (ptr *QNetworkDiskCache) DestroyQNetworkDiskCache() { + if ptr.Pointer() != nil { + C.QNetworkDiskCache_DestroyQNetworkDiskCache(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/network/qnetworkdiskcache.h b/network/qnetworkdiskcache.h new file mode 100755 index 00000000..b99d7b66 --- /dev/null +++ b/network/qnetworkdiskcache.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QNetworkDiskCache_NewQNetworkDiskCache(QtObjectPtr parent); +char* QNetworkDiskCache_CacheDirectory(QtObjectPtr ptr); +void QNetworkDiskCache_Clear(QtObjectPtr ptr); +QtObjectPtr QNetworkDiskCache_Data(QtObjectPtr ptr, char* url); +QtObjectPtr QNetworkDiskCache_Prepare(QtObjectPtr ptr, QtObjectPtr metaData); +void QNetworkDiskCache_SetCacheDirectory(QtObjectPtr ptr, char* cacheDir); +void QNetworkDiskCache_UpdateMetaData(QtObjectPtr ptr, QtObjectPtr metaData); +void QNetworkDiskCache_DestroyQNetworkDiskCache(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qnetworkinterface.cpp b/network/qnetworkinterface.cpp new file mode 100755 index 00000000..517350a4 --- /dev/null +++ b/network/qnetworkinterface.cpp @@ -0,0 +1,52 @@ +#include "qnetworkinterface.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQNetworkInterface: public QNetworkInterface { +public: +}; + +QtObjectPtr QNetworkInterface_NewQNetworkInterface(){ + return new QNetworkInterface(); +} + +QtObjectPtr QNetworkInterface_NewQNetworkInterface2(QtObjectPtr other){ + return new QNetworkInterface(*static_cast(other)); +} + +int QNetworkInterface_Flags(QtObjectPtr ptr){ + return static_cast(ptr)->flags(); +} + +char* QNetworkInterface_HardwareAddress(QtObjectPtr ptr){ + return static_cast(ptr)->hardwareAddress().toUtf8().data(); +} + +char* QNetworkInterface_HumanReadableName(QtObjectPtr ptr){ + return static_cast(ptr)->humanReadableName().toUtf8().data(); +} + +int QNetworkInterface_Index(QtObjectPtr ptr){ + return static_cast(ptr)->index(); +} + +int QNetworkInterface_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +char* QNetworkInterface_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +void QNetworkInterface_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QNetworkInterface_DestroyQNetworkInterface(QtObjectPtr ptr){ + static_cast(ptr)->~QNetworkInterface(); +} + diff --git a/network/qnetworkinterface.go b/network/qnetworkinterface.go new file mode 100755 index 00000000..7031294d --- /dev/null +++ b/network/qnetworkinterface.go @@ -0,0 +1,114 @@ +package network + +//#include "qnetworkinterface.h" +import "C" +import ( + "unsafe" +) + +type QNetworkInterface struct { + ptr unsafe.Pointer +} + +type QNetworkInterfaceITF interface { + QNetworkInterfacePTR() *QNetworkInterface +} + +func (p *QNetworkInterface) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QNetworkInterface) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQNetworkInterface(ptr QNetworkInterfaceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QNetworkInterfacePTR().Pointer() + } + return nil +} + +func QNetworkInterfaceFromPointer(ptr unsafe.Pointer) *QNetworkInterface { + var n = new(QNetworkInterface) + n.SetPointer(ptr) + return n +} + +func (ptr *QNetworkInterface) QNetworkInterfacePTR() *QNetworkInterface { + return ptr +} + +//QNetworkInterface::InterfaceFlag +type QNetworkInterface__InterfaceFlag int + +var ( + QNetworkInterface__IsUp = QNetworkInterface__InterfaceFlag(0x1) + QNetworkInterface__IsRunning = QNetworkInterface__InterfaceFlag(0x2) + QNetworkInterface__CanBroadcast = QNetworkInterface__InterfaceFlag(0x4) + QNetworkInterface__IsLoopBack = QNetworkInterface__InterfaceFlag(0x8) + QNetworkInterface__IsPointToPoint = QNetworkInterface__InterfaceFlag(0x10) + QNetworkInterface__CanMulticast = QNetworkInterface__InterfaceFlag(0x20) +) + +func NewQNetworkInterface() *QNetworkInterface { + return QNetworkInterfaceFromPointer(unsafe.Pointer(C.QNetworkInterface_NewQNetworkInterface())) +} + +func NewQNetworkInterface2(other QNetworkInterfaceITF) *QNetworkInterface { + return QNetworkInterfaceFromPointer(unsafe.Pointer(C.QNetworkInterface_NewQNetworkInterface2(C.QtObjectPtr(PointerFromQNetworkInterface(other))))) +} + +func (ptr *QNetworkInterface) Flags() QNetworkInterface__InterfaceFlag { + if ptr.Pointer() != nil { + return QNetworkInterface__InterfaceFlag(C.QNetworkInterface_Flags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNetworkInterface) HardwareAddress() string { + if ptr.Pointer() != nil { + return C.GoString(C.QNetworkInterface_HardwareAddress(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QNetworkInterface) HumanReadableName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QNetworkInterface_HumanReadableName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QNetworkInterface) Index() int { + if ptr.Pointer() != nil { + return int(C.QNetworkInterface_Index(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNetworkInterface) IsValid() bool { + if ptr.Pointer() != nil { + return C.QNetworkInterface_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QNetworkInterface) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QNetworkInterface_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QNetworkInterface) Swap(other QNetworkInterfaceITF) { + if ptr.Pointer() != nil { + C.QNetworkInterface_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkInterface(other))) + } +} + +func (ptr *QNetworkInterface) DestroyQNetworkInterface() { + if ptr.Pointer() != nil { + C.QNetworkInterface_DestroyQNetworkInterface(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/network/qnetworkinterface.h b/network/qnetworkinterface.h new file mode 100755 index 00000000..7df86dd2 --- /dev/null +++ b/network/qnetworkinterface.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QNetworkInterface_NewQNetworkInterface(); +QtObjectPtr QNetworkInterface_NewQNetworkInterface2(QtObjectPtr other); +int QNetworkInterface_Flags(QtObjectPtr ptr); +char* QNetworkInterface_HardwareAddress(QtObjectPtr ptr); +char* QNetworkInterface_HumanReadableName(QtObjectPtr ptr); +int QNetworkInterface_Index(QtObjectPtr ptr); +int QNetworkInterface_IsValid(QtObjectPtr ptr); +char* QNetworkInterface_Name(QtObjectPtr ptr); +void QNetworkInterface_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QNetworkInterface_DestroyQNetworkInterface(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qnetworkproxy.cpp b/network/qnetworkproxy.cpp new file mode 100755 index 00000000..5f8181b8 --- /dev/null +++ b/network/qnetworkproxy.cpp @@ -0,0 +1,98 @@ +#include "qnetworkproxy.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQNetworkProxy: public QNetworkProxy { +public: +}; + +QtObjectPtr QNetworkProxy_NewQNetworkProxy(){ + return new QNetworkProxy(); +} + +QtObjectPtr QNetworkProxy_NewQNetworkProxy3(QtObjectPtr other){ + return new QNetworkProxy(*static_cast(other)); +} + +int QNetworkProxy_Capabilities(QtObjectPtr ptr){ + return static_cast(ptr)->capabilities(); +} + +int QNetworkProxy_HasRawHeader(QtObjectPtr ptr, QtObjectPtr headerName){ + return static_cast(ptr)->hasRawHeader(*static_cast(headerName)); +} + +char* QNetworkProxy_Header(QtObjectPtr ptr, int header){ + return static_cast(ptr)->header(static_cast(header)).toString().toUtf8().data(); +} + +char* QNetworkProxy_HostName(QtObjectPtr ptr){ + return static_cast(ptr)->hostName().toUtf8().data(); +} + +int QNetworkProxy_IsCachingProxy(QtObjectPtr ptr){ + return static_cast(ptr)->isCachingProxy(); +} + +int QNetworkProxy_IsTransparentProxy(QtObjectPtr ptr){ + return static_cast(ptr)->isTransparentProxy(); +} + +char* QNetworkProxy_Password(QtObjectPtr ptr){ + return static_cast(ptr)->password().toUtf8().data(); +} + +void QNetworkProxy_QNetworkProxy_SetApplicationProxy(QtObjectPtr networkProxy){ + QNetworkProxy::setApplicationProxy(*static_cast(networkProxy)); +} + +void QNetworkProxy_SetCapabilities(QtObjectPtr ptr, int capabilities){ + static_cast(ptr)->setCapabilities(static_cast(capabilities)); +} + +void QNetworkProxy_SetHeader(QtObjectPtr ptr, int header, char* value){ + static_cast(ptr)->setHeader(static_cast(header), QVariant(value)); +} + +void QNetworkProxy_SetHostName(QtObjectPtr ptr, char* hostName){ + static_cast(ptr)->setHostName(QString(hostName)); +} + +void QNetworkProxy_SetPassword(QtObjectPtr ptr, char* password){ + static_cast(ptr)->setPassword(QString(password)); +} + +void QNetworkProxy_SetRawHeader(QtObjectPtr ptr, QtObjectPtr headerName, QtObjectPtr headerValue){ + static_cast(ptr)->setRawHeader(*static_cast(headerName), *static_cast(headerValue)); +} + +void QNetworkProxy_SetType(QtObjectPtr ptr, int ty){ + static_cast(ptr)->setType(static_cast(ty)); +} + +void QNetworkProxy_SetUser(QtObjectPtr ptr, char* user){ + static_cast(ptr)->setUser(QString(user)); +} + +void QNetworkProxy_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +int QNetworkProxy_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +char* QNetworkProxy_User(QtObjectPtr ptr){ + return static_cast(ptr)->user().toUtf8().data(); +} + +void QNetworkProxy_DestroyQNetworkProxy(QtObjectPtr ptr){ + static_cast(ptr)->~QNetworkProxy(); +} + diff --git a/network/qnetworkproxy.go b/network/qnetworkproxy.go new file mode 100755 index 00000000..fce6795c --- /dev/null +++ b/network/qnetworkproxy.go @@ -0,0 +1,193 @@ +package network + +//#include "qnetworkproxy.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QNetworkProxy struct { + ptr unsafe.Pointer +} + +type QNetworkProxyITF interface { + QNetworkProxyPTR() *QNetworkProxy +} + +func (p *QNetworkProxy) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QNetworkProxy) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQNetworkProxy(ptr QNetworkProxyITF) unsafe.Pointer { + if ptr != nil { + return ptr.QNetworkProxyPTR().Pointer() + } + return nil +} + +func QNetworkProxyFromPointer(ptr unsafe.Pointer) *QNetworkProxy { + var n = new(QNetworkProxy) + n.SetPointer(ptr) + return n +} + +func (ptr *QNetworkProxy) QNetworkProxyPTR() *QNetworkProxy { + return ptr +} + +//QNetworkProxy::Capability +type QNetworkProxy__Capability int + +var ( + QNetworkProxy__TunnelingCapability = QNetworkProxy__Capability(0x0001) + QNetworkProxy__ListeningCapability = QNetworkProxy__Capability(0x0002) + QNetworkProxy__UdpTunnelingCapability = QNetworkProxy__Capability(0x0004) + QNetworkProxy__CachingCapability = QNetworkProxy__Capability(0x0008) + QNetworkProxy__HostNameLookupCapability = QNetworkProxy__Capability(0x0010) +) + +//QNetworkProxy::ProxyType +type QNetworkProxy__ProxyType int + +var ( + QNetworkProxy__DefaultProxy = QNetworkProxy__ProxyType(0) + QNetworkProxy__Socks5Proxy = QNetworkProxy__ProxyType(1) + QNetworkProxy__NoProxy = QNetworkProxy__ProxyType(2) + QNetworkProxy__HttpProxy = QNetworkProxy__ProxyType(3) + QNetworkProxy__HttpCachingProxy = QNetworkProxy__ProxyType(4) + QNetworkProxy__FtpCachingProxy = QNetworkProxy__ProxyType(5) +) + +func NewQNetworkProxy() *QNetworkProxy { + return QNetworkProxyFromPointer(unsafe.Pointer(C.QNetworkProxy_NewQNetworkProxy())) +} + +func NewQNetworkProxy3(other QNetworkProxyITF) *QNetworkProxy { + return QNetworkProxyFromPointer(unsafe.Pointer(C.QNetworkProxy_NewQNetworkProxy3(C.QtObjectPtr(PointerFromQNetworkProxy(other))))) +} + +func (ptr *QNetworkProxy) Capabilities() QNetworkProxy__Capability { + if ptr.Pointer() != nil { + return QNetworkProxy__Capability(C.QNetworkProxy_Capabilities(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNetworkProxy) HasRawHeader(headerName core.QByteArrayITF) bool { + if ptr.Pointer() != nil { + return C.QNetworkProxy_HasRawHeader(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(headerName))) != 0 + } + return false +} + +func (ptr *QNetworkProxy) Header(header QNetworkRequest__KnownHeaders) string { + if ptr.Pointer() != nil { + return C.GoString(C.QNetworkProxy_Header(C.QtObjectPtr(ptr.Pointer()), C.int(header))) + } + return "" +} + +func (ptr *QNetworkProxy) HostName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QNetworkProxy_HostName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QNetworkProxy) IsCachingProxy() bool { + if ptr.Pointer() != nil { + return C.QNetworkProxy_IsCachingProxy(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QNetworkProxy) IsTransparentProxy() bool { + if ptr.Pointer() != nil { + return C.QNetworkProxy_IsTransparentProxy(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QNetworkProxy) Password() string { + if ptr.Pointer() != nil { + return C.GoString(C.QNetworkProxy_Password(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func QNetworkProxy_SetApplicationProxy(networkProxy QNetworkProxyITF) { + C.QNetworkProxy_QNetworkProxy_SetApplicationProxy(C.QtObjectPtr(PointerFromQNetworkProxy(networkProxy))) +} + +func (ptr *QNetworkProxy) SetCapabilities(capabilities QNetworkProxy__Capability) { + if ptr.Pointer() != nil { + C.QNetworkProxy_SetCapabilities(C.QtObjectPtr(ptr.Pointer()), C.int(capabilities)) + } +} + +func (ptr *QNetworkProxy) SetHeader(header QNetworkRequest__KnownHeaders, value string) { + if ptr.Pointer() != nil { + C.QNetworkProxy_SetHeader(C.QtObjectPtr(ptr.Pointer()), C.int(header), C.CString(value)) + } +} + +func (ptr *QNetworkProxy) SetHostName(hostName string) { + if ptr.Pointer() != nil { + C.QNetworkProxy_SetHostName(C.QtObjectPtr(ptr.Pointer()), C.CString(hostName)) + } +} + +func (ptr *QNetworkProxy) SetPassword(password string) { + if ptr.Pointer() != nil { + C.QNetworkProxy_SetPassword(C.QtObjectPtr(ptr.Pointer()), C.CString(password)) + } +} + +func (ptr *QNetworkProxy) SetRawHeader(headerName core.QByteArrayITF, headerValue core.QByteArrayITF) { + if ptr.Pointer() != nil { + C.QNetworkProxy_SetRawHeader(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(headerName)), C.QtObjectPtr(core.PointerFromQByteArray(headerValue))) + } +} + +func (ptr *QNetworkProxy) SetType(ty QNetworkProxy__ProxyType) { + if ptr.Pointer() != nil { + C.QNetworkProxy_SetType(C.QtObjectPtr(ptr.Pointer()), C.int(ty)) + } +} + +func (ptr *QNetworkProxy) SetUser(user string) { + if ptr.Pointer() != nil { + C.QNetworkProxy_SetUser(C.QtObjectPtr(ptr.Pointer()), C.CString(user)) + } +} + +func (ptr *QNetworkProxy) Swap(other QNetworkProxyITF) { + if ptr.Pointer() != nil { + C.QNetworkProxy_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkProxy(other))) + } +} + +func (ptr *QNetworkProxy) Type() QNetworkProxy__ProxyType { + if ptr.Pointer() != nil { + return QNetworkProxy__ProxyType(C.QNetworkProxy_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNetworkProxy) User() string { + if ptr.Pointer() != nil { + return C.GoString(C.QNetworkProxy_User(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QNetworkProxy) DestroyQNetworkProxy() { + if ptr.Pointer() != nil { + C.QNetworkProxy_DestroyQNetworkProxy(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/network/qnetworkproxy.h b/network/qnetworkproxy.h new file mode 100755 index 00000000..b41c3f01 --- /dev/null +++ b/network/qnetworkproxy.h @@ -0,0 +1,30 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QNetworkProxy_NewQNetworkProxy(); +QtObjectPtr QNetworkProxy_NewQNetworkProxy3(QtObjectPtr other); +int QNetworkProxy_Capabilities(QtObjectPtr ptr); +int QNetworkProxy_HasRawHeader(QtObjectPtr ptr, QtObjectPtr headerName); +char* QNetworkProxy_Header(QtObjectPtr ptr, int header); +char* QNetworkProxy_HostName(QtObjectPtr ptr); +int QNetworkProxy_IsCachingProxy(QtObjectPtr ptr); +int QNetworkProxy_IsTransparentProxy(QtObjectPtr ptr); +char* QNetworkProxy_Password(QtObjectPtr ptr); +void QNetworkProxy_QNetworkProxy_SetApplicationProxy(QtObjectPtr networkProxy); +void QNetworkProxy_SetCapabilities(QtObjectPtr ptr, int capabilities); +void QNetworkProxy_SetHeader(QtObjectPtr ptr, int header, char* value); +void QNetworkProxy_SetHostName(QtObjectPtr ptr, char* hostName); +void QNetworkProxy_SetPassword(QtObjectPtr ptr, char* password); +void QNetworkProxy_SetRawHeader(QtObjectPtr ptr, QtObjectPtr headerName, QtObjectPtr headerValue); +void QNetworkProxy_SetType(QtObjectPtr ptr, int ty); +void QNetworkProxy_SetUser(QtObjectPtr ptr, char* user); +void QNetworkProxy_Swap(QtObjectPtr ptr, QtObjectPtr other); +int QNetworkProxy_Type(QtObjectPtr ptr); +char* QNetworkProxy_User(QtObjectPtr ptr); +void QNetworkProxy_DestroyQNetworkProxy(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qnetworkproxyfactory.cpp b/network/qnetworkproxyfactory.cpp new file mode 100755 index 00000000..ac8c5541 --- /dev/null +++ b/network/qnetworkproxyfactory.cpp @@ -0,0 +1,25 @@ +#include "qnetworkproxyfactory.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQNetworkProxyFactory: public QNetworkProxyFactory { +public: +}; + +void QNetworkProxyFactory_QNetworkProxyFactory_SetApplicationProxyFactory(QtObjectPtr factory){ + QNetworkProxyFactory::setApplicationProxyFactory(static_cast(factory)); +} + +void QNetworkProxyFactory_QNetworkProxyFactory_SetUseSystemConfiguration(int enable){ + QNetworkProxyFactory::setUseSystemConfiguration(enable != 0); +} + +void QNetworkProxyFactory_DestroyQNetworkProxyFactory(QtObjectPtr ptr){ + static_cast(ptr)->~QNetworkProxyFactory(); +} + diff --git a/network/qnetworkproxyfactory.go b/network/qnetworkproxyfactory.go new file mode 100755 index 00000000..5d1e8660 --- /dev/null +++ b/network/qnetworkproxyfactory.go @@ -0,0 +1,55 @@ +package network + +//#include "qnetworkproxyfactory.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QNetworkProxyFactory struct { + ptr unsafe.Pointer +} + +type QNetworkProxyFactoryITF interface { + QNetworkProxyFactoryPTR() *QNetworkProxyFactory +} + +func (p *QNetworkProxyFactory) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QNetworkProxyFactory) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQNetworkProxyFactory(ptr QNetworkProxyFactoryITF) unsafe.Pointer { + if ptr != nil { + return ptr.QNetworkProxyFactoryPTR().Pointer() + } + return nil +} + +func QNetworkProxyFactoryFromPointer(ptr unsafe.Pointer) *QNetworkProxyFactory { + var n = new(QNetworkProxyFactory) + n.SetPointer(ptr) + return n +} + +func (ptr *QNetworkProxyFactory) QNetworkProxyFactoryPTR() *QNetworkProxyFactory { + return ptr +} + +func QNetworkProxyFactory_SetApplicationProxyFactory(factory QNetworkProxyFactoryITF) { + C.QNetworkProxyFactory_QNetworkProxyFactory_SetApplicationProxyFactory(C.QtObjectPtr(PointerFromQNetworkProxyFactory(factory))) +} + +func QNetworkProxyFactory_SetUseSystemConfiguration(enable bool) { + C.QNetworkProxyFactory_QNetworkProxyFactory_SetUseSystemConfiguration(C.int(qt.GoBoolToInt(enable))) +} + +func (ptr *QNetworkProxyFactory) DestroyQNetworkProxyFactory() { + if ptr.Pointer() != nil { + C.QNetworkProxyFactory_DestroyQNetworkProxyFactory(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/network/qnetworkproxyfactory.h b/network/qnetworkproxyfactory.h new file mode 100755 index 00000000..f2dc9cca --- /dev/null +++ b/network/qnetworkproxyfactory.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QNetworkProxyFactory_QNetworkProxyFactory_SetApplicationProxyFactory(QtObjectPtr factory); +void QNetworkProxyFactory_QNetworkProxyFactory_SetUseSystemConfiguration(int enable); +void QNetworkProxyFactory_DestroyQNetworkProxyFactory(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qnetworkproxyquery.cpp b/network/qnetworkproxyquery.cpp new file mode 100755 index 00000000..020bb7ac --- /dev/null +++ b/network/qnetworkproxyquery.cpp @@ -0,0 +1,98 @@ +#include "qnetworkproxyquery.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQNetworkProxyQuery: public QNetworkProxyQuery { +public: +}; + +QtObjectPtr QNetworkProxyQuery_NewQNetworkProxyQuery(){ + return new QNetworkProxyQuery(); +} + +QtObjectPtr QNetworkProxyQuery_NewQNetworkProxyQuery7(QtObjectPtr networkConfiguration, char* hostname, int port, char* protocolTag, int queryType){ + return new QNetworkProxyQuery(*static_cast(networkConfiguration), QString(hostname), port, QString(protocolTag), static_cast(queryType)); +} + +QtObjectPtr QNetworkProxyQuery_NewQNetworkProxyQuery6(QtObjectPtr networkConfiguration, char* requestUrl, int queryType){ + return new QNetworkProxyQuery(*static_cast(networkConfiguration), QUrl(QString(requestUrl)), static_cast(queryType)); +} + +QtObjectPtr QNetworkProxyQuery_NewQNetworkProxyQuery5(QtObjectPtr other){ + return new QNetworkProxyQuery(*static_cast(other)); +} + +QtObjectPtr QNetworkProxyQuery_NewQNetworkProxyQuery3(char* hostname, int port, char* protocolTag, int queryType){ + return new QNetworkProxyQuery(QString(hostname), port, QString(protocolTag), static_cast(queryType)); +} + +QtObjectPtr QNetworkProxyQuery_NewQNetworkProxyQuery2(char* requestUrl, int queryType){ + return new QNetworkProxyQuery(QUrl(QString(requestUrl)), static_cast(queryType)); +} + +int QNetworkProxyQuery_LocalPort(QtObjectPtr ptr){ + return static_cast(ptr)->localPort(); +} + +char* QNetworkProxyQuery_PeerHostName(QtObjectPtr ptr){ + return static_cast(ptr)->peerHostName().toUtf8().data(); +} + +int QNetworkProxyQuery_PeerPort(QtObjectPtr ptr){ + return static_cast(ptr)->peerPort(); +} + +char* QNetworkProxyQuery_ProtocolTag(QtObjectPtr ptr){ + return static_cast(ptr)->protocolTag().toUtf8().data(); +} + +int QNetworkProxyQuery_QueryType(QtObjectPtr ptr){ + return static_cast(ptr)->queryType(); +} + +void QNetworkProxyQuery_SetLocalPort(QtObjectPtr ptr, int port){ + static_cast(ptr)->setLocalPort(port); +} + +void QNetworkProxyQuery_SetNetworkConfiguration(QtObjectPtr ptr, QtObjectPtr networkConfiguration){ + static_cast(ptr)->setNetworkConfiguration(*static_cast(networkConfiguration)); +} + +void QNetworkProxyQuery_SetPeerHostName(QtObjectPtr ptr, char* hostname){ + static_cast(ptr)->setPeerHostName(QString(hostname)); +} + +void QNetworkProxyQuery_SetPeerPort(QtObjectPtr ptr, int port){ + static_cast(ptr)->setPeerPort(port); +} + +void QNetworkProxyQuery_SetProtocolTag(QtObjectPtr ptr, char* protocolTag){ + static_cast(ptr)->setProtocolTag(QString(protocolTag)); +} + +void QNetworkProxyQuery_SetQueryType(QtObjectPtr ptr, int ty){ + static_cast(ptr)->setQueryType(static_cast(ty)); +} + +void QNetworkProxyQuery_SetUrl(QtObjectPtr ptr, char* url){ + static_cast(ptr)->setUrl(QUrl(QString(url))); +} + +void QNetworkProxyQuery_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +char* QNetworkProxyQuery_Url(QtObjectPtr ptr){ + return static_cast(ptr)->url().toString().toUtf8().data(); +} + +void QNetworkProxyQuery_DestroyQNetworkProxyQuery(QtObjectPtr ptr){ + static_cast(ptr)->~QNetworkProxyQuery(); +} + diff --git a/network/qnetworkproxyquery.go b/network/qnetworkproxyquery.go new file mode 100755 index 00000000..1b96c0a0 --- /dev/null +++ b/network/qnetworkproxyquery.go @@ -0,0 +1,170 @@ +package network + +//#include "qnetworkproxyquery.h" +import "C" +import ( + "unsafe" +) + +type QNetworkProxyQuery struct { + ptr unsafe.Pointer +} + +type QNetworkProxyQueryITF interface { + QNetworkProxyQueryPTR() *QNetworkProxyQuery +} + +func (p *QNetworkProxyQuery) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QNetworkProxyQuery) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQNetworkProxyQuery(ptr QNetworkProxyQueryITF) unsafe.Pointer { + if ptr != nil { + return ptr.QNetworkProxyQueryPTR().Pointer() + } + return nil +} + +func QNetworkProxyQueryFromPointer(ptr unsafe.Pointer) *QNetworkProxyQuery { + var n = new(QNetworkProxyQuery) + n.SetPointer(ptr) + return n +} + +func (ptr *QNetworkProxyQuery) QNetworkProxyQueryPTR() *QNetworkProxyQuery { + return ptr +} + +//QNetworkProxyQuery::QueryType +type QNetworkProxyQuery__QueryType int + +var ( + QNetworkProxyQuery__TcpSocket = QNetworkProxyQuery__QueryType(0) + QNetworkProxyQuery__UdpSocket = QNetworkProxyQuery__QueryType(1) + QNetworkProxyQuery__TcpServer = QNetworkProxyQuery__QueryType(100) + QNetworkProxyQuery__UrlRequest = QNetworkProxyQuery__QueryType(101) +) + +func NewQNetworkProxyQuery() *QNetworkProxyQuery { + return QNetworkProxyQueryFromPointer(unsafe.Pointer(C.QNetworkProxyQuery_NewQNetworkProxyQuery())) +} + +func NewQNetworkProxyQuery7(networkConfiguration QNetworkConfigurationITF, hostname string, port int, protocolTag string, queryType QNetworkProxyQuery__QueryType) *QNetworkProxyQuery { + return QNetworkProxyQueryFromPointer(unsafe.Pointer(C.QNetworkProxyQuery_NewQNetworkProxyQuery7(C.QtObjectPtr(PointerFromQNetworkConfiguration(networkConfiguration)), C.CString(hostname), C.int(port), C.CString(protocolTag), C.int(queryType)))) +} + +func NewQNetworkProxyQuery6(networkConfiguration QNetworkConfigurationITF, requestUrl string, queryType QNetworkProxyQuery__QueryType) *QNetworkProxyQuery { + return QNetworkProxyQueryFromPointer(unsafe.Pointer(C.QNetworkProxyQuery_NewQNetworkProxyQuery6(C.QtObjectPtr(PointerFromQNetworkConfiguration(networkConfiguration)), C.CString(requestUrl), C.int(queryType)))) +} + +func NewQNetworkProxyQuery5(other QNetworkProxyQueryITF) *QNetworkProxyQuery { + return QNetworkProxyQueryFromPointer(unsafe.Pointer(C.QNetworkProxyQuery_NewQNetworkProxyQuery5(C.QtObjectPtr(PointerFromQNetworkProxyQuery(other))))) +} + +func NewQNetworkProxyQuery3(hostname string, port int, protocolTag string, queryType QNetworkProxyQuery__QueryType) *QNetworkProxyQuery { + return QNetworkProxyQueryFromPointer(unsafe.Pointer(C.QNetworkProxyQuery_NewQNetworkProxyQuery3(C.CString(hostname), C.int(port), C.CString(protocolTag), C.int(queryType)))) +} + +func NewQNetworkProxyQuery2(requestUrl string, queryType QNetworkProxyQuery__QueryType) *QNetworkProxyQuery { + return QNetworkProxyQueryFromPointer(unsafe.Pointer(C.QNetworkProxyQuery_NewQNetworkProxyQuery2(C.CString(requestUrl), C.int(queryType)))) +} + +func (ptr *QNetworkProxyQuery) LocalPort() int { + if ptr.Pointer() != nil { + return int(C.QNetworkProxyQuery_LocalPort(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNetworkProxyQuery) PeerHostName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QNetworkProxyQuery_PeerHostName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QNetworkProxyQuery) PeerPort() int { + if ptr.Pointer() != nil { + return int(C.QNetworkProxyQuery_PeerPort(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNetworkProxyQuery) ProtocolTag() string { + if ptr.Pointer() != nil { + return C.GoString(C.QNetworkProxyQuery_ProtocolTag(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QNetworkProxyQuery) QueryType() QNetworkProxyQuery__QueryType { + if ptr.Pointer() != nil { + return QNetworkProxyQuery__QueryType(C.QNetworkProxyQuery_QueryType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNetworkProxyQuery) SetLocalPort(port int) { + if ptr.Pointer() != nil { + C.QNetworkProxyQuery_SetLocalPort(C.QtObjectPtr(ptr.Pointer()), C.int(port)) + } +} + +func (ptr *QNetworkProxyQuery) SetNetworkConfiguration(networkConfiguration QNetworkConfigurationITF) { + if ptr.Pointer() != nil { + C.QNetworkProxyQuery_SetNetworkConfiguration(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkConfiguration(networkConfiguration))) + } +} + +func (ptr *QNetworkProxyQuery) SetPeerHostName(hostname string) { + if ptr.Pointer() != nil { + C.QNetworkProxyQuery_SetPeerHostName(C.QtObjectPtr(ptr.Pointer()), C.CString(hostname)) + } +} + +func (ptr *QNetworkProxyQuery) SetPeerPort(port int) { + if ptr.Pointer() != nil { + C.QNetworkProxyQuery_SetPeerPort(C.QtObjectPtr(ptr.Pointer()), C.int(port)) + } +} + +func (ptr *QNetworkProxyQuery) SetProtocolTag(protocolTag string) { + if ptr.Pointer() != nil { + C.QNetworkProxyQuery_SetProtocolTag(C.QtObjectPtr(ptr.Pointer()), C.CString(protocolTag)) + } +} + +func (ptr *QNetworkProxyQuery) SetQueryType(ty QNetworkProxyQuery__QueryType) { + if ptr.Pointer() != nil { + C.QNetworkProxyQuery_SetQueryType(C.QtObjectPtr(ptr.Pointer()), C.int(ty)) + } +} + +func (ptr *QNetworkProxyQuery) SetUrl(url string) { + if ptr.Pointer() != nil { + C.QNetworkProxyQuery_SetUrl(C.QtObjectPtr(ptr.Pointer()), C.CString(url)) + } +} + +func (ptr *QNetworkProxyQuery) Swap(other QNetworkProxyQueryITF) { + if ptr.Pointer() != nil { + C.QNetworkProxyQuery_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkProxyQuery(other))) + } +} + +func (ptr *QNetworkProxyQuery) Url() string { + if ptr.Pointer() != nil { + return C.GoString(C.QNetworkProxyQuery_Url(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QNetworkProxyQuery) DestroyQNetworkProxyQuery() { + if ptr.Pointer() != nil { + C.QNetworkProxyQuery_DestroyQNetworkProxyQuery(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/network/qnetworkproxyquery.h b/network/qnetworkproxyquery.h new file mode 100755 index 00000000..1e4a73c2 --- /dev/null +++ b/network/qnetworkproxyquery.h @@ -0,0 +1,30 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QNetworkProxyQuery_NewQNetworkProxyQuery(); +QtObjectPtr QNetworkProxyQuery_NewQNetworkProxyQuery7(QtObjectPtr networkConfiguration, char* hostname, int port, char* protocolTag, int queryType); +QtObjectPtr QNetworkProxyQuery_NewQNetworkProxyQuery6(QtObjectPtr networkConfiguration, char* requestUrl, int queryType); +QtObjectPtr QNetworkProxyQuery_NewQNetworkProxyQuery5(QtObjectPtr other); +QtObjectPtr QNetworkProxyQuery_NewQNetworkProxyQuery3(char* hostname, int port, char* protocolTag, int queryType); +QtObjectPtr QNetworkProxyQuery_NewQNetworkProxyQuery2(char* requestUrl, int queryType); +int QNetworkProxyQuery_LocalPort(QtObjectPtr ptr); +char* QNetworkProxyQuery_PeerHostName(QtObjectPtr ptr); +int QNetworkProxyQuery_PeerPort(QtObjectPtr ptr); +char* QNetworkProxyQuery_ProtocolTag(QtObjectPtr ptr); +int QNetworkProxyQuery_QueryType(QtObjectPtr ptr); +void QNetworkProxyQuery_SetLocalPort(QtObjectPtr ptr, int port); +void QNetworkProxyQuery_SetNetworkConfiguration(QtObjectPtr ptr, QtObjectPtr networkConfiguration); +void QNetworkProxyQuery_SetPeerHostName(QtObjectPtr ptr, char* hostname); +void QNetworkProxyQuery_SetPeerPort(QtObjectPtr ptr, int port); +void QNetworkProxyQuery_SetProtocolTag(QtObjectPtr ptr, char* protocolTag); +void QNetworkProxyQuery_SetQueryType(QtObjectPtr ptr, int ty); +void QNetworkProxyQuery_SetUrl(QtObjectPtr ptr, char* url); +void QNetworkProxyQuery_Swap(QtObjectPtr ptr, QtObjectPtr other); +char* QNetworkProxyQuery_Url(QtObjectPtr ptr); +void QNetworkProxyQuery_DestroyQNetworkProxyQuery(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qnetworkreply.cpp b/network/qnetworkreply.cpp new file mode 100755 index 00000000..d5ca5c99 --- /dev/null +++ b/network/qnetworkreply.cpp @@ -0,0 +1,110 @@ +#include "qnetworkreply.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQNetworkReply: public QNetworkReply { +public: +void Signal_Encrypted(){callbackQNetworkReplyEncrypted(this->objectName().toUtf8().data());}; +void Signal_Finished(){callbackQNetworkReplyFinished(this->objectName().toUtf8().data());}; +void Signal_MetaDataChanged(){callbackQNetworkReplyMetaDataChanged(this->objectName().toUtf8().data());}; +void Signal_PreSharedKeyAuthenticationRequired(QSslPreSharedKeyAuthenticator * authenticator){callbackQNetworkReplyPreSharedKeyAuthenticationRequired(this->objectName().toUtf8().data(), authenticator);}; +}; + +void QNetworkReply_Abort(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "abort"); +} + +char* QNetworkReply_Attribute(QtObjectPtr ptr, int code){ + return static_cast(ptr)->attribute(static_cast(code)).toString().toUtf8().data(); +} + +void QNetworkReply_Close(QtObjectPtr ptr){ + static_cast(ptr)->close(); +} + +void QNetworkReply_ConnectEncrypted(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QNetworkReply::encrypted), static_cast(ptr), static_cast(&MyQNetworkReply::Signal_Encrypted));; +} + +void QNetworkReply_DisconnectEncrypted(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QNetworkReply::encrypted), static_cast(ptr), static_cast(&MyQNetworkReply::Signal_Encrypted));; +} + +int QNetworkReply_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +void QNetworkReply_ConnectFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QNetworkReply::finished), static_cast(ptr), static_cast(&MyQNetworkReply::Signal_Finished));; +} + +void QNetworkReply_DisconnectFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QNetworkReply::finished), static_cast(ptr), static_cast(&MyQNetworkReply::Signal_Finished));; +} + +int QNetworkReply_HasRawHeader(QtObjectPtr ptr, QtObjectPtr headerName){ + return static_cast(ptr)->hasRawHeader(*static_cast(headerName)); +} + +char* QNetworkReply_Header(QtObjectPtr ptr, int header){ + return static_cast(ptr)->header(static_cast(header)).toString().toUtf8().data(); +} + +void QNetworkReply_IgnoreSslErrors(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "ignoreSslErrors"); +} + +int QNetworkReply_IsFinished(QtObjectPtr ptr){ + return static_cast(ptr)->isFinished(); +} + +int QNetworkReply_IsRunning(QtObjectPtr ptr){ + return static_cast(ptr)->isRunning(); +} + +QtObjectPtr QNetworkReply_Manager(QtObjectPtr ptr){ + return static_cast(ptr)->manager(); +} + +void QNetworkReply_ConnectMetaDataChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QNetworkReply::metaDataChanged), static_cast(ptr), static_cast(&MyQNetworkReply::Signal_MetaDataChanged));; +} + +void QNetworkReply_DisconnectMetaDataChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QNetworkReply::metaDataChanged), static_cast(ptr), static_cast(&MyQNetworkReply::Signal_MetaDataChanged));; +} + +int QNetworkReply_Operation(QtObjectPtr ptr){ + return static_cast(ptr)->operation(); +} + +void QNetworkReply_ConnectPreSharedKeyAuthenticationRequired(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QNetworkReply::preSharedKeyAuthenticationRequired), static_cast(ptr), static_cast(&MyQNetworkReply::Signal_PreSharedKeyAuthenticationRequired));; +} + +void QNetworkReply_DisconnectPreSharedKeyAuthenticationRequired(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QNetworkReply::preSharedKeyAuthenticationRequired), static_cast(ptr), static_cast(&MyQNetworkReply::Signal_PreSharedKeyAuthenticationRequired));; +} + +void QNetworkReply_SetSslConfiguration(QtObjectPtr ptr, QtObjectPtr config){ + static_cast(ptr)->setSslConfiguration(*static_cast(config)); +} + +char* QNetworkReply_Url(QtObjectPtr ptr){ + return static_cast(ptr)->url().toString().toUtf8().data(); +} + +void QNetworkReply_DestroyQNetworkReply(QtObjectPtr ptr){ + static_cast(ptr)->~QNetworkReply(); +} + diff --git a/network/qnetworkreply.go b/network/qnetworkreply.go new file mode 100755 index 00000000..76d404e3 --- /dev/null +++ b/network/qnetworkreply.go @@ -0,0 +1,246 @@ +package network + +//#include "qnetworkreply.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QNetworkReply struct { + core.QIODevice +} + +type QNetworkReplyITF interface { + core.QIODeviceITF + QNetworkReplyPTR() *QNetworkReply +} + +func PointerFromQNetworkReply(ptr QNetworkReplyITF) unsafe.Pointer { + if ptr != nil { + return ptr.QNetworkReplyPTR().Pointer() + } + return nil +} + +func QNetworkReplyFromPointer(ptr unsafe.Pointer) *QNetworkReply { + var n = new(QNetworkReply) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QNetworkReply_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QNetworkReply) QNetworkReplyPTR() *QNetworkReply { + return ptr +} + +//QNetworkReply::NetworkError +type QNetworkReply__NetworkError int + +var ( + QNetworkReply__NoError = QNetworkReply__NetworkError(0) + QNetworkReply__ConnectionRefusedError = QNetworkReply__NetworkError(1) + QNetworkReply__RemoteHostClosedError = QNetworkReply__NetworkError(2) + QNetworkReply__HostNotFoundError = QNetworkReply__NetworkError(3) + QNetworkReply__TimeoutError = QNetworkReply__NetworkError(4) + QNetworkReply__OperationCanceledError = QNetworkReply__NetworkError(5) + QNetworkReply__SslHandshakeFailedError = QNetworkReply__NetworkError(6) + QNetworkReply__TemporaryNetworkFailureError = QNetworkReply__NetworkError(7) + QNetworkReply__NetworkSessionFailedError = QNetworkReply__NetworkError(8) + QNetworkReply__BackgroundRequestNotAllowedError = QNetworkReply__NetworkError(9) + QNetworkReply__UnknownNetworkError = QNetworkReply__NetworkError(99) + QNetworkReply__ProxyConnectionRefusedError = QNetworkReply__NetworkError(101) + QNetworkReply__ProxyConnectionClosedError = QNetworkReply__NetworkError(102) + QNetworkReply__ProxyNotFoundError = QNetworkReply__NetworkError(103) + QNetworkReply__ProxyTimeoutError = QNetworkReply__NetworkError(104) + QNetworkReply__ProxyAuthenticationRequiredError = QNetworkReply__NetworkError(105) + QNetworkReply__UnknownProxyError = QNetworkReply__NetworkError(199) + QNetworkReply__ContentAccessDenied = QNetworkReply__NetworkError(201) + QNetworkReply__ContentOperationNotPermittedError = QNetworkReply__NetworkError(202) + QNetworkReply__ContentNotFoundError = QNetworkReply__NetworkError(203) + QNetworkReply__AuthenticationRequiredError = QNetworkReply__NetworkError(204) + QNetworkReply__ContentReSendError = QNetworkReply__NetworkError(205) + QNetworkReply__ContentConflictError = QNetworkReply__NetworkError(206) + QNetworkReply__ContentGoneError = QNetworkReply__NetworkError(207) + QNetworkReply__UnknownContentError = QNetworkReply__NetworkError(299) + QNetworkReply__ProtocolUnknownError = QNetworkReply__NetworkError(301) + QNetworkReply__ProtocolInvalidOperationError = QNetworkReply__NetworkError(302) + QNetworkReply__ProtocolFailure = QNetworkReply__NetworkError(399) + QNetworkReply__InternalServerError = QNetworkReply__NetworkError(401) + QNetworkReply__OperationNotImplementedError = QNetworkReply__NetworkError(402) + QNetworkReply__ServiceUnavailableError = QNetworkReply__NetworkError(403) + QNetworkReply__UnknownServerError = QNetworkReply__NetworkError(499) +) + +func (ptr *QNetworkReply) Abort() { + if ptr.Pointer() != nil { + C.QNetworkReply_Abort(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QNetworkReply) Attribute(code QNetworkRequest__Attribute) string { + if ptr.Pointer() != nil { + return C.GoString(C.QNetworkReply_Attribute(C.QtObjectPtr(ptr.Pointer()), C.int(code))) + } + return "" +} + +func (ptr *QNetworkReply) Close() { + if ptr.Pointer() != nil { + C.QNetworkReply_Close(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QNetworkReply) ConnectEncrypted(f func()) { + if ptr.Pointer() != nil { + C.QNetworkReply_ConnectEncrypted(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "encrypted", f) + } +} + +func (ptr *QNetworkReply) DisconnectEncrypted() { + if ptr.Pointer() != nil { + C.QNetworkReply_DisconnectEncrypted(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "encrypted") + } +} + +//export callbackQNetworkReplyEncrypted +func callbackQNetworkReplyEncrypted(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "encrypted").(func())() +} + +func (ptr *QNetworkReply) Error() QNetworkReply__NetworkError { + if ptr.Pointer() != nil { + return QNetworkReply__NetworkError(C.QNetworkReply_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNetworkReply) ConnectFinished(f func()) { + if ptr.Pointer() != nil { + C.QNetworkReply_ConnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "finished", f) + } +} + +func (ptr *QNetworkReply) DisconnectFinished() { + if ptr.Pointer() != nil { + C.QNetworkReply_DisconnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "finished") + } +} + +//export callbackQNetworkReplyFinished +func callbackQNetworkReplyFinished(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "finished").(func())() +} + +func (ptr *QNetworkReply) HasRawHeader(headerName core.QByteArrayITF) bool { + if ptr.Pointer() != nil { + return C.QNetworkReply_HasRawHeader(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(headerName))) != 0 + } + return false +} + +func (ptr *QNetworkReply) Header(header QNetworkRequest__KnownHeaders) string { + if ptr.Pointer() != nil { + return C.GoString(C.QNetworkReply_Header(C.QtObjectPtr(ptr.Pointer()), C.int(header))) + } + return "" +} + +func (ptr *QNetworkReply) IgnoreSslErrors() { + if ptr.Pointer() != nil { + C.QNetworkReply_IgnoreSslErrors(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QNetworkReply) IsFinished() bool { + if ptr.Pointer() != nil { + return C.QNetworkReply_IsFinished(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QNetworkReply) IsRunning() bool { + if ptr.Pointer() != nil { + return C.QNetworkReply_IsRunning(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QNetworkReply) Manager() *QNetworkAccessManager { + if ptr.Pointer() != nil { + return QNetworkAccessManagerFromPointer(unsafe.Pointer(C.QNetworkReply_Manager(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QNetworkReply) ConnectMetaDataChanged(f func()) { + if ptr.Pointer() != nil { + C.QNetworkReply_ConnectMetaDataChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "metaDataChanged", f) + } +} + +func (ptr *QNetworkReply) DisconnectMetaDataChanged() { + if ptr.Pointer() != nil { + C.QNetworkReply_DisconnectMetaDataChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "metaDataChanged") + } +} + +//export callbackQNetworkReplyMetaDataChanged +func callbackQNetworkReplyMetaDataChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "metaDataChanged").(func())() +} + +func (ptr *QNetworkReply) Operation() QNetworkAccessManager__Operation { + if ptr.Pointer() != nil { + return QNetworkAccessManager__Operation(C.QNetworkReply_Operation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNetworkReply) ConnectPreSharedKeyAuthenticationRequired(f func(authenticator QSslPreSharedKeyAuthenticatorITF)) { + if ptr.Pointer() != nil { + C.QNetworkReply_ConnectPreSharedKeyAuthenticationRequired(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "preSharedKeyAuthenticationRequired", f) + } +} + +func (ptr *QNetworkReply) DisconnectPreSharedKeyAuthenticationRequired() { + if ptr.Pointer() != nil { + C.QNetworkReply_DisconnectPreSharedKeyAuthenticationRequired(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "preSharedKeyAuthenticationRequired") + } +} + +//export callbackQNetworkReplyPreSharedKeyAuthenticationRequired +func callbackQNetworkReplyPreSharedKeyAuthenticationRequired(ptrName *C.char, authenticator unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "preSharedKeyAuthenticationRequired").(func(*QSslPreSharedKeyAuthenticator))(QSslPreSharedKeyAuthenticatorFromPointer(authenticator)) +} + +func (ptr *QNetworkReply) SetSslConfiguration(config QSslConfigurationITF) { + if ptr.Pointer() != nil { + C.QNetworkReply_SetSslConfiguration(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSslConfiguration(config))) + } +} + +func (ptr *QNetworkReply) Url() string { + if ptr.Pointer() != nil { + return C.GoString(C.QNetworkReply_Url(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QNetworkReply) DestroyQNetworkReply() { + if ptr.Pointer() != nil { + C.QNetworkReply_DestroyQNetworkReply(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/network/qnetworkreply.h b/network/qnetworkreply.h new file mode 100755 index 00000000..d9387ea1 --- /dev/null +++ b/network/qnetworkreply.h @@ -0,0 +1,31 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QNetworkReply_Abort(QtObjectPtr ptr); +char* QNetworkReply_Attribute(QtObjectPtr ptr, int code); +void QNetworkReply_Close(QtObjectPtr ptr); +void QNetworkReply_ConnectEncrypted(QtObjectPtr ptr); +void QNetworkReply_DisconnectEncrypted(QtObjectPtr ptr); +int QNetworkReply_Error(QtObjectPtr ptr); +void QNetworkReply_ConnectFinished(QtObjectPtr ptr); +void QNetworkReply_DisconnectFinished(QtObjectPtr ptr); +int QNetworkReply_HasRawHeader(QtObjectPtr ptr, QtObjectPtr headerName); +char* QNetworkReply_Header(QtObjectPtr ptr, int header); +void QNetworkReply_IgnoreSslErrors(QtObjectPtr ptr); +int QNetworkReply_IsFinished(QtObjectPtr ptr); +int QNetworkReply_IsRunning(QtObjectPtr ptr); +QtObjectPtr QNetworkReply_Manager(QtObjectPtr ptr); +void QNetworkReply_ConnectMetaDataChanged(QtObjectPtr ptr); +void QNetworkReply_DisconnectMetaDataChanged(QtObjectPtr ptr); +int QNetworkReply_Operation(QtObjectPtr ptr); +void QNetworkReply_ConnectPreSharedKeyAuthenticationRequired(QtObjectPtr ptr); +void QNetworkReply_DisconnectPreSharedKeyAuthenticationRequired(QtObjectPtr ptr); +void QNetworkReply_SetSslConfiguration(QtObjectPtr ptr, QtObjectPtr config); +char* QNetworkReply_Url(QtObjectPtr ptr); +void QNetworkReply_DestroyQNetworkReply(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qnetworkrequest.cpp b/network/qnetworkrequest.cpp new file mode 100755 index 00000000..9288a347 --- /dev/null +++ b/network/qnetworkrequest.cpp @@ -0,0 +1,83 @@ +#include "qnetworkrequest.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQNetworkRequest: public QNetworkRequest { +public: +}; + +QtObjectPtr QNetworkRequest_NewQNetworkRequest2(QtObjectPtr other){ + return new QNetworkRequest(*static_cast(other)); +} + +QtObjectPtr QNetworkRequest_NewQNetworkRequest(char* url){ + return new QNetworkRequest(QUrl(QString(url))); +} + +char* QNetworkRequest_Attribute(QtObjectPtr ptr, int code, char* defaultValue){ + return static_cast(ptr)->attribute(static_cast(code), QVariant(defaultValue)).toString().toUtf8().data(); +} + +int QNetworkRequest_HasRawHeader(QtObjectPtr ptr, QtObjectPtr headerName){ + return static_cast(ptr)->hasRawHeader(*static_cast(headerName)); +} + +char* QNetworkRequest_Header(QtObjectPtr ptr, int header){ + return static_cast(ptr)->header(static_cast(header)).toString().toUtf8().data(); +} + +QtObjectPtr QNetworkRequest_OriginatingObject(QtObjectPtr ptr){ + return static_cast(ptr)->originatingObject(); +} + +int QNetworkRequest_Priority(QtObjectPtr ptr){ + return static_cast(ptr)->priority(); +} + +void QNetworkRequest_SetAttribute(QtObjectPtr ptr, int code, char* value){ + static_cast(ptr)->setAttribute(static_cast(code), QVariant(value)); +} + +void QNetworkRequest_SetHeader(QtObjectPtr ptr, int header, char* value){ + static_cast(ptr)->setHeader(static_cast(header), QVariant(value)); +} + +void QNetworkRequest_SetOriginatingObject(QtObjectPtr ptr, QtObjectPtr object){ + static_cast(ptr)->setOriginatingObject(static_cast(object)); +} + +void QNetworkRequest_SetPriority(QtObjectPtr ptr, int priority){ + static_cast(ptr)->setPriority(static_cast(priority)); +} + +void QNetworkRequest_SetRawHeader(QtObjectPtr ptr, QtObjectPtr headerName, QtObjectPtr headerValue){ + static_cast(ptr)->setRawHeader(*static_cast(headerName), *static_cast(headerValue)); +} + +void QNetworkRequest_SetSslConfiguration(QtObjectPtr ptr, QtObjectPtr config){ + static_cast(ptr)->setSslConfiguration(*static_cast(config)); +} + +void QNetworkRequest_SetUrl(QtObjectPtr ptr, char* url){ + static_cast(ptr)->setUrl(QUrl(QString(url))); +} + +void QNetworkRequest_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +char* QNetworkRequest_Url(QtObjectPtr ptr){ + return static_cast(ptr)->url().toString().toUtf8().data(); +} + +void QNetworkRequest_DestroyQNetworkRequest(QtObjectPtr ptr){ + static_cast(ptr)->~QNetworkRequest(); +} + diff --git a/network/qnetworkrequest.go b/network/qnetworkrequest.go new file mode 100755 index 00000000..c17e91dc --- /dev/null +++ b/network/qnetworkrequest.go @@ -0,0 +1,216 @@ +package network + +//#include "qnetworkrequest.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QNetworkRequest struct { + ptr unsafe.Pointer +} + +type QNetworkRequestITF interface { + QNetworkRequestPTR() *QNetworkRequest +} + +func (p *QNetworkRequest) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QNetworkRequest) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQNetworkRequest(ptr QNetworkRequestITF) unsafe.Pointer { + if ptr != nil { + return ptr.QNetworkRequestPTR().Pointer() + } + return nil +} + +func QNetworkRequestFromPointer(ptr unsafe.Pointer) *QNetworkRequest { + var n = new(QNetworkRequest) + n.SetPointer(ptr) + return n +} + +func (ptr *QNetworkRequest) QNetworkRequestPTR() *QNetworkRequest { + return ptr +} + +//QNetworkRequest::Attribute +type QNetworkRequest__Attribute int + +var ( + QNetworkRequest__HttpStatusCodeAttribute = QNetworkRequest__Attribute(0) + QNetworkRequest__HttpReasonPhraseAttribute = QNetworkRequest__Attribute(1) + QNetworkRequest__RedirectionTargetAttribute = QNetworkRequest__Attribute(2) + QNetworkRequest__ConnectionEncryptedAttribute = QNetworkRequest__Attribute(3) + QNetworkRequest__CacheLoadControlAttribute = QNetworkRequest__Attribute(4) + QNetworkRequest__CacheSaveControlAttribute = QNetworkRequest__Attribute(5) + QNetworkRequest__SourceIsFromCacheAttribute = QNetworkRequest__Attribute(6) + QNetworkRequest__DoNotBufferUploadDataAttribute = QNetworkRequest__Attribute(7) + QNetworkRequest__HttpPipeliningAllowedAttribute = QNetworkRequest__Attribute(8) + QNetworkRequest__HttpPipeliningWasUsedAttribute = QNetworkRequest__Attribute(9) + QNetworkRequest__CustomVerbAttribute = QNetworkRequest__Attribute(10) + QNetworkRequest__CookieLoadControlAttribute = QNetworkRequest__Attribute(11) + QNetworkRequest__AuthenticationReuseAttribute = QNetworkRequest__Attribute(12) + QNetworkRequest__CookieSaveControlAttribute = QNetworkRequest__Attribute(13) + QNetworkRequest__MaximumDownloadBufferSizeAttribute = QNetworkRequest__Attribute(14) + QNetworkRequest__DownloadBufferAttribute = QNetworkRequest__Attribute(15) + QNetworkRequest__SynchronousRequestAttribute = QNetworkRequest__Attribute(16) + QNetworkRequest__BackgroundRequestAttribute = QNetworkRequest__Attribute(17) + QNetworkRequest__SpdyAllowedAttribute = QNetworkRequest__Attribute(18) + QNetworkRequest__SpdyWasUsedAttribute = QNetworkRequest__Attribute(19) + QNetworkRequest__EmitAllUploadProgressSignalsAttribute = QNetworkRequest__Attribute(20) + QNetworkRequest__User = QNetworkRequest__Attribute(1000) + QNetworkRequest__UserMax = QNetworkRequest__Attribute(32767) +) + +//QNetworkRequest::CacheLoadControl +type QNetworkRequest__CacheLoadControl int + +var ( + QNetworkRequest__AlwaysNetwork = QNetworkRequest__CacheLoadControl(0) + QNetworkRequest__PreferNetwork = QNetworkRequest__CacheLoadControl(1) + QNetworkRequest__PreferCache = QNetworkRequest__CacheLoadControl(2) + QNetworkRequest__AlwaysCache = QNetworkRequest__CacheLoadControl(3) +) + +//QNetworkRequest::KnownHeaders +type QNetworkRequest__KnownHeaders int + +var ( + QNetworkRequest__ContentTypeHeader = QNetworkRequest__KnownHeaders(0) + QNetworkRequest__ContentLengthHeader = QNetworkRequest__KnownHeaders(1) + QNetworkRequest__LocationHeader = QNetworkRequest__KnownHeaders(2) + QNetworkRequest__LastModifiedHeader = QNetworkRequest__KnownHeaders(3) + QNetworkRequest__CookieHeader = QNetworkRequest__KnownHeaders(4) + QNetworkRequest__SetCookieHeader = QNetworkRequest__KnownHeaders(5) + QNetworkRequest__ContentDispositionHeader = QNetworkRequest__KnownHeaders(6) + QNetworkRequest__UserAgentHeader = QNetworkRequest__KnownHeaders(7) + QNetworkRequest__ServerHeader = QNetworkRequest__KnownHeaders(8) +) + +//QNetworkRequest::LoadControl +type QNetworkRequest__LoadControl int + +var ( + QNetworkRequest__Automatic = QNetworkRequest__LoadControl(0) + QNetworkRequest__Manual = QNetworkRequest__LoadControl(1) +) + +//QNetworkRequest::Priority +type QNetworkRequest__Priority int + +var ( + QNetworkRequest__HighPriority = QNetworkRequest__Priority(1) + QNetworkRequest__NormalPriority = QNetworkRequest__Priority(3) + QNetworkRequest__LowPriority = QNetworkRequest__Priority(5) +) + +func NewQNetworkRequest2(other QNetworkRequestITF) *QNetworkRequest { + return QNetworkRequestFromPointer(unsafe.Pointer(C.QNetworkRequest_NewQNetworkRequest2(C.QtObjectPtr(PointerFromQNetworkRequest(other))))) +} + +func NewQNetworkRequest(url string) *QNetworkRequest { + return QNetworkRequestFromPointer(unsafe.Pointer(C.QNetworkRequest_NewQNetworkRequest(C.CString(url)))) +} + +func (ptr *QNetworkRequest) Attribute(code QNetworkRequest__Attribute, defaultValue string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QNetworkRequest_Attribute(C.QtObjectPtr(ptr.Pointer()), C.int(code), C.CString(defaultValue))) + } + return "" +} + +func (ptr *QNetworkRequest) HasRawHeader(headerName core.QByteArrayITF) bool { + if ptr.Pointer() != nil { + return C.QNetworkRequest_HasRawHeader(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(headerName))) != 0 + } + return false +} + +func (ptr *QNetworkRequest) Header(header QNetworkRequest__KnownHeaders) string { + if ptr.Pointer() != nil { + return C.GoString(C.QNetworkRequest_Header(C.QtObjectPtr(ptr.Pointer()), C.int(header))) + } + return "" +} + +func (ptr *QNetworkRequest) OriginatingObject() *core.QObject { + if ptr.Pointer() != nil { + return core.QObjectFromPointer(unsafe.Pointer(C.QNetworkRequest_OriginatingObject(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QNetworkRequest) Priority() QNetworkRequest__Priority { + if ptr.Pointer() != nil { + return QNetworkRequest__Priority(C.QNetworkRequest_Priority(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNetworkRequest) SetAttribute(code QNetworkRequest__Attribute, value string) { + if ptr.Pointer() != nil { + C.QNetworkRequest_SetAttribute(C.QtObjectPtr(ptr.Pointer()), C.int(code), C.CString(value)) + } +} + +func (ptr *QNetworkRequest) SetHeader(header QNetworkRequest__KnownHeaders, value string) { + if ptr.Pointer() != nil { + C.QNetworkRequest_SetHeader(C.QtObjectPtr(ptr.Pointer()), C.int(header), C.CString(value)) + } +} + +func (ptr *QNetworkRequest) SetOriginatingObject(object core.QObjectITF) { + if ptr.Pointer() != nil { + C.QNetworkRequest_SetOriginatingObject(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(object))) + } +} + +func (ptr *QNetworkRequest) SetPriority(priority QNetworkRequest__Priority) { + if ptr.Pointer() != nil { + C.QNetworkRequest_SetPriority(C.QtObjectPtr(ptr.Pointer()), C.int(priority)) + } +} + +func (ptr *QNetworkRequest) SetRawHeader(headerName core.QByteArrayITF, headerValue core.QByteArrayITF) { + if ptr.Pointer() != nil { + C.QNetworkRequest_SetRawHeader(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(headerName)), C.QtObjectPtr(core.PointerFromQByteArray(headerValue))) + } +} + +func (ptr *QNetworkRequest) SetSslConfiguration(config QSslConfigurationITF) { + if ptr.Pointer() != nil { + C.QNetworkRequest_SetSslConfiguration(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSslConfiguration(config))) + } +} + +func (ptr *QNetworkRequest) SetUrl(url string) { + if ptr.Pointer() != nil { + C.QNetworkRequest_SetUrl(C.QtObjectPtr(ptr.Pointer()), C.CString(url)) + } +} + +func (ptr *QNetworkRequest) Swap(other QNetworkRequestITF) { + if ptr.Pointer() != nil { + C.QNetworkRequest_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkRequest(other))) + } +} + +func (ptr *QNetworkRequest) Url() string { + if ptr.Pointer() != nil { + return C.GoString(C.QNetworkRequest_Url(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QNetworkRequest) DestroyQNetworkRequest() { + if ptr.Pointer() != nil { + C.QNetworkRequest_DestroyQNetworkRequest(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/network/qnetworkrequest.h b/network/qnetworkrequest.h new file mode 100755 index 00000000..cc416568 --- /dev/null +++ b/network/qnetworkrequest.h @@ -0,0 +1,26 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QNetworkRequest_NewQNetworkRequest2(QtObjectPtr other); +QtObjectPtr QNetworkRequest_NewQNetworkRequest(char* url); +char* QNetworkRequest_Attribute(QtObjectPtr ptr, int code, char* defaultValue); +int QNetworkRequest_HasRawHeader(QtObjectPtr ptr, QtObjectPtr headerName); +char* QNetworkRequest_Header(QtObjectPtr ptr, int header); +QtObjectPtr QNetworkRequest_OriginatingObject(QtObjectPtr ptr); +int QNetworkRequest_Priority(QtObjectPtr ptr); +void QNetworkRequest_SetAttribute(QtObjectPtr ptr, int code, char* value); +void QNetworkRequest_SetHeader(QtObjectPtr ptr, int header, char* value); +void QNetworkRequest_SetOriginatingObject(QtObjectPtr ptr, QtObjectPtr object); +void QNetworkRequest_SetPriority(QtObjectPtr ptr, int priority); +void QNetworkRequest_SetRawHeader(QtObjectPtr ptr, QtObjectPtr headerName, QtObjectPtr headerValue); +void QNetworkRequest_SetSslConfiguration(QtObjectPtr ptr, QtObjectPtr config); +void QNetworkRequest_SetUrl(QtObjectPtr ptr, char* url); +void QNetworkRequest_Swap(QtObjectPtr ptr, QtObjectPtr other); +char* QNetworkRequest_Url(QtObjectPtr ptr); +void QNetworkRequest_DestroyQNetworkRequest(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qnetworksession.cpp b/network/qnetworksession.cpp new file mode 100755 index 00000000..a93cd04b --- /dev/null +++ b/network/qnetworksession.cpp @@ -0,0 +1,124 @@ +#include "qnetworksession.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQNetworkSession: public QNetworkSession { +public: +void Signal_Closed(){callbackQNetworkSessionClosed(this->objectName().toUtf8().data());}; +void Signal_NewConfigurationActivated(){callbackQNetworkSessionNewConfigurationActivated(this->objectName().toUtf8().data());}; +void Signal_Opened(){callbackQNetworkSessionOpened(this->objectName().toUtf8().data());}; +void Signal_StateChanged(QNetworkSession::State state){callbackQNetworkSessionStateChanged(this->objectName().toUtf8().data(), state);}; +void Signal_UsagePoliciesChanged(QNetworkSession::UsagePolicies usagePolicies){callbackQNetworkSessionUsagePoliciesChanged(this->objectName().toUtf8().data(), usagePolicies);}; +}; + +QtObjectPtr QNetworkSession_NewQNetworkSession(QtObjectPtr connectionConfig, QtObjectPtr parent){ + return new QNetworkSession(*static_cast(connectionConfig), static_cast(parent)); +} + +void QNetworkSession_Accept(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "accept"); +} + +void QNetworkSession_Close(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "close"); +} + +void QNetworkSession_ConnectClosed(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QNetworkSession::closed), static_cast(ptr), static_cast(&MyQNetworkSession::Signal_Closed));; +} + +void QNetworkSession_DisconnectClosed(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QNetworkSession::closed), static_cast(ptr), static_cast(&MyQNetworkSession::Signal_Closed));; +} + +int QNetworkSession_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +char* QNetworkSession_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +void QNetworkSession_Ignore(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "ignore"); +} + +int QNetworkSession_IsOpen(QtObjectPtr ptr){ + return static_cast(ptr)->isOpen(); +} + +void QNetworkSession_Migrate(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "migrate"); +} + +void QNetworkSession_ConnectNewConfigurationActivated(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QNetworkSession::newConfigurationActivated), static_cast(ptr), static_cast(&MyQNetworkSession::Signal_NewConfigurationActivated));; +} + +void QNetworkSession_DisconnectNewConfigurationActivated(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QNetworkSession::newConfigurationActivated), static_cast(ptr), static_cast(&MyQNetworkSession::Signal_NewConfigurationActivated));; +} + +void QNetworkSession_Open(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "open"); +} + +void QNetworkSession_ConnectOpened(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QNetworkSession::opened), static_cast(ptr), static_cast(&MyQNetworkSession::Signal_Opened));; +} + +void QNetworkSession_DisconnectOpened(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QNetworkSession::opened), static_cast(ptr), static_cast(&MyQNetworkSession::Signal_Opened));; +} + +void QNetworkSession_Reject(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "reject"); +} + +char* QNetworkSession_SessionProperty(QtObjectPtr ptr, char* key){ + return static_cast(ptr)->sessionProperty(QString(key)).toString().toUtf8().data(); +} + +void QNetworkSession_SetSessionProperty(QtObjectPtr ptr, char* key, char* value){ + static_cast(ptr)->setSessionProperty(QString(key), QVariant(value)); +} + +void QNetworkSession_ConnectStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QNetworkSession::stateChanged), static_cast(ptr), static_cast(&MyQNetworkSession::Signal_StateChanged));; +} + +void QNetworkSession_DisconnectStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QNetworkSession::stateChanged), static_cast(ptr), static_cast(&MyQNetworkSession::Signal_StateChanged));; +} + +void QNetworkSession_Stop(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "stop"); +} + +int QNetworkSession_UsagePolicies(QtObjectPtr ptr){ + return static_cast(ptr)->usagePolicies(); +} + +void QNetworkSession_ConnectUsagePoliciesChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QNetworkSession::usagePoliciesChanged), static_cast(ptr), static_cast(&MyQNetworkSession::Signal_UsagePoliciesChanged));; +} + +void QNetworkSession_DisconnectUsagePoliciesChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QNetworkSession::usagePoliciesChanged), static_cast(ptr), static_cast(&MyQNetworkSession::Signal_UsagePoliciesChanged));; +} + +int QNetworkSession_WaitForOpened(QtObjectPtr ptr, int msecs){ + return static_cast(ptr)->waitForOpened(msecs); +} + +void QNetworkSession_DestroyQNetworkSession(QtObjectPtr ptr){ + static_cast(ptr)->~QNetworkSession(); +} + diff --git a/network/qnetworksession.go b/network/qnetworksession.go new file mode 100755 index 00000000..ff0db80c --- /dev/null +++ b/network/qnetworksession.go @@ -0,0 +1,266 @@ +package network + +//#include "qnetworksession.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QNetworkSession struct { + core.QObject +} + +type QNetworkSessionITF interface { + core.QObjectITF + QNetworkSessionPTR() *QNetworkSession +} + +func PointerFromQNetworkSession(ptr QNetworkSessionITF) unsafe.Pointer { + if ptr != nil { + return ptr.QNetworkSessionPTR().Pointer() + } + return nil +} + +func QNetworkSessionFromPointer(ptr unsafe.Pointer) *QNetworkSession { + var n = new(QNetworkSession) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QNetworkSession_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QNetworkSession) QNetworkSessionPTR() *QNetworkSession { + return ptr +} + +//QNetworkSession::SessionError +type QNetworkSession__SessionError int + +var ( + QNetworkSession__UnknownSessionError = QNetworkSession__SessionError(0) + QNetworkSession__SessionAbortedError = QNetworkSession__SessionError(1) + QNetworkSession__RoamingError = QNetworkSession__SessionError(2) + QNetworkSession__OperationNotSupportedError = QNetworkSession__SessionError(3) + QNetworkSession__InvalidConfigurationError = QNetworkSession__SessionError(4) +) + +//QNetworkSession::State +type QNetworkSession__State int + +var ( + QNetworkSession__Invalid = QNetworkSession__State(0) + QNetworkSession__NotAvailable = QNetworkSession__State(1) + QNetworkSession__Connecting = QNetworkSession__State(2) + QNetworkSession__Connected = QNetworkSession__State(3) + QNetworkSession__Closing = QNetworkSession__State(4) + QNetworkSession__Disconnected = QNetworkSession__State(5) + QNetworkSession__Roaming = QNetworkSession__State(6) +) + +//QNetworkSession::UsagePolicy +type QNetworkSession__UsagePolicy int + +var ( + QNetworkSession__NoPolicy = QNetworkSession__UsagePolicy(0) + QNetworkSession__NoBackgroundTrafficPolicy = QNetworkSession__UsagePolicy(1) +) + +func NewQNetworkSession(connectionConfig QNetworkConfigurationITF, parent core.QObjectITF) *QNetworkSession { + return QNetworkSessionFromPointer(unsafe.Pointer(C.QNetworkSession_NewQNetworkSession(C.QtObjectPtr(PointerFromQNetworkConfiguration(connectionConfig)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QNetworkSession) Accept() { + if ptr.Pointer() != nil { + C.QNetworkSession_Accept(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QNetworkSession) Close() { + if ptr.Pointer() != nil { + C.QNetworkSession_Close(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QNetworkSession) ConnectClosed(f func()) { + if ptr.Pointer() != nil { + C.QNetworkSession_ConnectClosed(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "closed", f) + } +} + +func (ptr *QNetworkSession) DisconnectClosed() { + if ptr.Pointer() != nil { + C.QNetworkSession_DisconnectClosed(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "closed") + } +} + +//export callbackQNetworkSessionClosed +func callbackQNetworkSessionClosed(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "closed").(func())() +} + +func (ptr *QNetworkSession) Error() QNetworkSession__SessionError { + if ptr.Pointer() != nil { + return QNetworkSession__SessionError(C.QNetworkSession_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNetworkSession) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QNetworkSession_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QNetworkSession) Ignore() { + if ptr.Pointer() != nil { + C.QNetworkSession_Ignore(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QNetworkSession) IsOpen() bool { + if ptr.Pointer() != nil { + return C.QNetworkSession_IsOpen(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QNetworkSession) Migrate() { + if ptr.Pointer() != nil { + C.QNetworkSession_Migrate(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QNetworkSession) ConnectNewConfigurationActivated(f func()) { + if ptr.Pointer() != nil { + C.QNetworkSession_ConnectNewConfigurationActivated(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "newConfigurationActivated", f) + } +} + +func (ptr *QNetworkSession) DisconnectNewConfigurationActivated() { + if ptr.Pointer() != nil { + C.QNetworkSession_DisconnectNewConfigurationActivated(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "newConfigurationActivated") + } +} + +//export callbackQNetworkSessionNewConfigurationActivated +func callbackQNetworkSessionNewConfigurationActivated(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "newConfigurationActivated").(func())() +} + +func (ptr *QNetworkSession) Open() { + if ptr.Pointer() != nil { + C.QNetworkSession_Open(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QNetworkSession) ConnectOpened(f func()) { + if ptr.Pointer() != nil { + C.QNetworkSession_ConnectOpened(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "opened", f) + } +} + +func (ptr *QNetworkSession) DisconnectOpened() { + if ptr.Pointer() != nil { + C.QNetworkSession_DisconnectOpened(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "opened") + } +} + +//export callbackQNetworkSessionOpened +func callbackQNetworkSessionOpened(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "opened").(func())() +} + +func (ptr *QNetworkSession) Reject() { + if ptr.Pointer() != nil { + C.QNetworkSession_Reject(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QNetworkSession) SessionProperty(key string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QNetworkSession_SessionProperty(C.QtObjectPtr(ptr.Pointer()), C.CString(key))) + } + return "" +} + +func (ptr *QNetworkSession) SetSessionProperty(key string, value string) { + if ptr.Pointer() != nil { + C.QNetworkSession_SetSessionProperty(C.QtObjectPtr(ptr.Pointer()), C.CString(key), C.CString(value)) + } +} + +func (ptr *QNetworkSession) ConnectStateChanged(f func(state QNetworkSession__State)) { + if ptr.Pointer() != nil { + C.QNetworkSession_ConnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stateChanged", f) + } +} + +func (ptr *QNetworkSession) DisconnectStateChanged() { + if ptr.Pointer() != nil { + C.QNetworkSession_DisconnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stateChanged") + } +} + +//export callbackQNetworkSessionStateChanged +func callbackQNetworkSessionStateChanged(ptrName *C.char, state C.int) { + qt.GetSignal(C.GoString(ptrName), "stateChanged").(func(QNetworkSession__State))(QNetworkSession__State(state)) +} + +func (ptr *QNetworkSession) Stop() { + if ptr.Pointer() != nil { + C.QNetworkSession_Stop(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QNetworkSession) UsagePolicies() QNetworkSession__UsagePolicy { + if ptr.Pointer() != nil { + return QNetworkSession__UsagePolicy(C.QNetworkSession_UsagePolicies(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNetworkSession) ConnectUsagePoliciesChanged(f func(usagePolicies QNetworkSession__UsagePolicy)) { + if ptr.Pointer() != nil { + C.QNetworkSession_ConnectUsagePoliciesChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "usagePoliciesChanged", f) + } +} + +func (ptr *QNetworkSession) DisconnectUsagePoliciesChanged() { + if ptr.Pointer() != nil { + C.QNetworkSession_DisconnectUsagePoliciesChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "usagePoliciesChanged") + } +} + +//export callbackQNetworkSessionUsagePoliciesChanged +func callbackQNetworkSessionUsagePoliciesChanged(ptrName *C.char, usagePolicies C.int) { + qt.GetSignal(C.GoString(ptrName), "usagePoliciesChanged").(func(QNetworkSession__UsagePolicy))(QNetworkSession__UsagePolicy(usagePolicies)) +} + +func (ptr *QNetworkSession) WaitForOpened(msecs int) bool { + if ptr.Pointer() != nil { + return C.QNetworkSession_WaitForOpened(C.QtObjectPtr(ptr.Pointer()), C.int(msecs)) != 0 + } + return false +} + +func (ptr *QNetworkSession) DestroyQNetworkSession() { + if ptr.Pointer() != nil { + C.QNetworkSession_DestroyQNetworkSession(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/network/qnetworksession.h b/network/qnetworksession.h new file mode 100755 index 00000000..4de27723 --- /dev/null +++ b/network/qnetworksession.h @@ -0,0 +1,35 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QNetworkSession_NewQNetworkSession(QtObjectPtr connectionConfig, QtObjectPtr parent); +void QNetworkSession_Accept(QtObjectPtr ptr); +void QNetworkSession_Close(QtObjectPtr ptr); +void QNetworkSession_ConnectClosed(QtObjectPtr ptr); +void QNetworkSession_DisconnectClosed(QtObjectPtr ptr); +int QNetworkSession_Error(QtObjectPtr ptr); +char* QNetworkSession_ErrorString(QtObjectPtr ptr); +void QNetworkSession_Ignore(QtObjectPtr ptr); +int QNetworkSession_IsOpen(QtObjectPtr ptr); +void QNetworkSession_Migrate(QtObjectPtr ptr); +void QNetworkSession_ConnectNewConfigurationActivated(QtObjectPtr ptr); +void QNetworkSession_DisconnectNewConfigurationActivated(QtObjectPtr ptr); +void QNetworkSession_Open(QtObjectPtr ptr); +void QNetworkSession_ConnectOpened(QtObjectPtr ptr); +void QNetworkSession_DisconnectOpened(QtObjectPtr ptr); +void QNetworkSession_Reject(QtObjectPtr ptr); +char* QNetworkSession_SessionProperty(QtObjectPtr ptr, char* key); +void QNetworkSession_SetSessionProperty(QtObjectPtr ptr, char* key, char* value); +void QNetworkSession_ConnectStateChanged(QtObjectPtr ptr); +void QNetworkSession_DisconnectStateChanged(QtObjectPtr ptr); +void QNetworkSession_Stop(QtObjectPtr ptr); +int QNetworkSession_UsagePolicies(QtObjectPtr ptr); +void QNetworkSession_ConnectUsagePoliciesChanged(QtObjectPtr ptr); +void QNetworkSession_DisconnectUsagePoliciesChanged(QtObjectPtr ptr); +int QNetworkSession_WaitForOpened(QtObjectPtr ptr, int msecs); +void QNetworkSession_DestroyQNetworkSession(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qsslcertificate.cpp b/network/qsslcertificate.cpp new file mode 100755 index 00000000..24376dab --- /dev/null +++ b/network/qsslcertificate.cpp @@ -0,0 +1,61 @@ +#include "qsslcertificate.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSslCertificate: public QSslCertificate { +public: +}; + +QtObjectPtr QSslCertificate_NewQSslCertificate3(QtObjectPtr other){ + return new QSslCertificate(*static_cast(other)); +} + +void QSslCertificate_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +int QSslCertificate_IsBlacklisted(QtObjectPtr ptr){ + return static_cast(ptr)->isBlacklisted(); +} + +void QSslCertificate_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QSslCertificate_DestroyQSslCertificate(QtObjectPtr ptr){ + static_cast(ptr)->~QSslCertificate(); +} + +int QSslCertificate_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QSslCertificate_IsSelfSigned(QtObjectPtr ptr){ + return static_cast(ptr)->isSelfSigned(); +} + +char* QSslCertificate_IssuerInfo(QtObjectPtr ptr, int subject){ + return static_cast(ptr)->issuerInfo(static_cast(subject)).join("|").toUtf8().data(); +} + +char* QSslCertificate_IssuerInfo2(QtObjectPtr ptr, QtObjectPtr attribute){ + return static_cast(ptr)->issuerInfo(*static_cast(attribute)).join("|").toUtf8().data(); +} + +char* QSslCertificate_SubjectInfo(QtObjectPtr ptr, int subject){ + return static_cast(ptr)->subjectInfo(static_cast(subject)).join("|").toUtf8().data(); +} + +char* QSslCertificate_SubjectInfo2(QtObjectPtr ptr, QtObjectPtr attribute){ + return static_cast(ptr)->subjectInfo(*static_cast(attribute)).join("|").toUtf8().data(); +} + +char* QSslCertificate_ToText(QtObjectPtr ptr){ + return static_cast(ptr)->toText().toUtf8().data(); +} + diff --git a/network/qsslcertificate.go b/network/qsslcertificate.go new file mode 100755 index 00000000..7c531cec --- /dev/null +++ b/network/qsslcertificate.go @@ -0,0 +1,135 @@ +package network + +//#include "qsslcertificate.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QSslCertificate struct { + ptr unsafe.Pointer +} + +type QSslCertificateITF interface { + QSslCertificatePTR() *QSslCertificate +} + +func (p *QSslCertificate) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSslCertificate) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSslCertificate(ptr QSslCertificateITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSslCertificatePTR().Pointer() + } + return nil +} + +func QSslCertificateFromPointer(ptr unsafe.Pointer) *QSslCertificate { + var n = new(QSslCertificate) + n.SetPointer(ptr) + return n +} + +func (ptr *QSslCertificate) QSslCertificatePTR() *QSslCertificate { + return ptr +} + +//QSslCertificate::SubjectInfo +type QSslCertificate__SubjectInfo int + +var ( + QSslCertificate__Organization = QSslCertificate__SubjectInfo(0) + QSslCertificate__CommonName = QSslCertificate__SubjectInfo(1) + QSslCertificate__LocalityName = QSslCertificate__SubjectInfo(2) + QSslCertificate__OrganizationalUnitName = QSslCertificate__SubjectInfo(3) + QSslCertificate__CountryName = QSslCertificate__SubjectInfo(4) + QSslCertificate__StateOrProvinceName = QSslCertificate__SubjectInfo(5) + QSslCertificate__DistinguishedNameQualifier = QSslCertificate__SubjectInfo(6) + QSslCertificate__SerialNumber = QSslCertificate__SubjectInfo(7) + QSslCertificate__EmailAddress = QSslCertificate__SubjectInfo(8) +) + +func NewQSslCertificate3(other QSslCertificateITF) *QSslCertificate { + return QSslCertificateFromPointer(unsafe.Pointer(C.QSslCertificate_NewQSslCertificate3(C.QtObjectPtr(PointerFromQSslCertificate(other))))) +} + +func (ptr *QSslCertificate) Clear() { + if ptr.Pointer() != nil { + C.QSslCertificate_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSslCertificate) IsBlacklisted() bool { + if ptr.Pointer() != nil { + return C.QSslCertificate_IsBlacklisted(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSslCertificate) Swap(other QSslCertificateITF) { + if ptr.Pointer() != nil { + C.QSslCertificate_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSslCertificate(other))) + } +} + +func (ptr *QSslCertificate) DestroyQSslCertificate() { + if ptr.Pointer() != nil { + C.QSslCertificate_DestroyQSslCertificate(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSslCertificate) IsNull() bool { + if ptr.Pointer() != nil { + return C.QSslCertificate_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSslCertificate) IsSelfSigned() bool { + if ptr.Pointer() != nil { + return C.QSslCertificate_IsSelfSigned(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSslCertificate) IssuerInfo(subject QSslCertificate__SubjectInfo) []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QSslCertificate_IssuerInfo(C.QtObjectPtr(ptr.Pointer()), C.int(subject))), "|") + } + return make([]string, 0) +} + +func (ptr *QSslCertificate) IssuerInfo2(attribute core.QByteArrayITF) []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QSslCertificate_IssuerInfo2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(attribute)))), "|") + } + return make([]string, 0) +} + +func (ptr *QSslCertificate) SubjectInfo(subject QSslCertificate__SubjectInfo) []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QSslCertificate_SubjectInfo(C.QtObjectPtr(ptr.Pointer()), C.int(subject))), "|") + } + return make([]string, 0) +} + +func (ptr *QSslCertificate) SubjectInfo2(attribute core.QByteArrayITF) []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QSslCertificate_SubjectInfo2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(attribute)))), "|") + } + return make([]string, 0) +} + +func (ptr *QSslCertificate) ToText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSslCertificate_ToText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/network/qsslcertificate.h b/network/qsslcertificate.h new file mode 100755 index 00000000..1a738d08 --- /dev/null +++ b/network/qsslcertificate.h @@ -0,0 +1,21 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSslCertificate_NewQSslCertificate3(QtObjectPtr other); +void QSslCertificate_Clear(QtObjectPtr ptr); +int QSslCertificate_IsBlacklisted(QtObjectPtr ptr); +void QSslCertificate_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QSslCertificate_DestroyQSslCertificate(QtObjectPtr ptr); +int QSslCertificate_IsNull(QtObjectPtr ptr); +int QSslCertificate_IsSelfSigned(QtObjectPtr ptr); +char* QSslCertificate_IssuerInfo(QtObjectPtr ptr, int subject); +char* QSslCertificate_IssuerInfo2(QtObjectPtr ptr, QtObjectPtr attribute); +char* QSslCertificate_SubjectInfo(QtObjectPtr ptr, int subject); +char* QSslCertificate_SubjectInfo2(QtObjectPtr ptr, QtObjectPtr attribute); +char* QSslCertificate_ToText(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qsslcertificateextension.cpp b/network/qsslcertificateextension.cpp new file mode 100755 index 00000000..84b5fe33 --- /dev/null +++ b/network/qsslcertificateextension.cpp @@ -0,0 +1,49 @@ +#include "qsslcertificateextension.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSslCertificateExtension: public QSslCertificateExtension { +public: +}; + +QtObjectPtr QSslCertificateExtension_NewQSslCertificateExtension(){ + return new QSslCertificateExtension(); +} + +QtObjectPtr QSslCertificateExtension_NewQSslCertificateExtension2(QtObjectPtr other){ + return new QSslCertificateExtension(*static_cast(other)); +} + +int QSslCertificateExtension_IsCritical(QtObjectPtr ptr){ + return static_cast(ptr)->isCritical(); +} + +int QSslCertificateExtension_IsSupported(QtObjectPtr ptr){ + return static_cast(ptr)->isSupported(); +} + +char* QSslCertificateExtension_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +char* QSslCertificateExtension_Oid(QtObjectPtr ptr){ + return static_cast(ptr)->oid().toUtf8().data(); +} + +void QSslCertificateExtension_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +char* QSslCertificateExtension_Value(QtObjectPtr ptr){ + return static_cast(ptr)->value().toString().toUtf8().data(); +} + +void QSslCertificateExtension_DestroyQSslCertificateExtension(QtObjectPtr ptr){ + static_cast(ptr)->~QSslCertificateExtension(); +} + diff --git a/network/qsslcertificateextension.go b/network/qsslcertificateextension.go new file mode 100755 index 00000000..655761f7 --- /dev/null +++ b/network/qsslcertificateextension.go @@ -0,0 +1,95 @@ +package network + +//#include "qsslcertificateextension.h" +import "C" +import ( + "unsafe" +) + +type QSslCertificateExtension struct { + ptr unsafe.Pointer +} + +type QSslCertificateExtensionITF interface { + QSslCertificateExtensionPTR() *QSslCertificateExtension +} + +func (p *QSslCertificateExtension) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSslCertificateExtension) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSslCertificateExtension(ptr QSslCertificateExtensionITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSslCertificateExtensionPTR().Pointer() + } + return nil +} + +func QSslCertificateExtensionFromPointer(ptr unsafe.Pointer) *QSslCertificateExtension { + var n = new(QSslCertificateExtension) + n.SetPointer(ptr) + return n +} + +func (ptr *QSslCertificateExtension) QSslCertificateExtensionPTR() *QSslCertificateExtension { + return ptr +} + +func NewQSslCertificateExtension() *QSslCertificateExtension { + return QSslCertificateExtensionFromPointer(unsafe.Pointer(C.QSslCertificateExtension_NewQSslCertificateExtension())) +} + +func NewQSslCertificateExtension2(other QSslCertificateExtensionITF) *QSslCertificateExtension { + return QSslCertificateExtensionFromPointer(unsafe.Pointer(C.QSslCertificateExtension_NewQSslCertificateExtension2(C.QtObjectPtr(PointerFromQSslCertificateExtension(other))))) +} + +func (ptr *QSslCertificateExtension) IsCritical() bool { + if ptr.Pointer() != nil { + return C.QSslCertificateExtension_IsCritical(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSslCertificateExtension) IsSupported() bool { + if ptr.Pointer() != nil { + return C.QSslCertificateExtension_IsSupported(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSslCertificateExtension) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSslCertificateExtension_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSslCertificateExtension) Oid() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSslCertificateExtension_Oid(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSslCertificateExtension) Swap(other QSslCertificateExtensionITF) { + if ptr.Pointer() != nil { + C.QSslCertificateExtension_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSslCertificateExtension(other))) + } +} + +func (ptr *QSslCertificateExtension) Value() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSslCertificateExtension_Value(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSslCertificateExtension) DestroyQSslCertificateExtension() { + if ptr.Pointer() != nil { + C.QSslCertificateExtension_DestroyQSslCertificateExtension(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/network/qsslcertificateextension.h b/network/qsslcertificateextension.h new file mode 100755 index 00000000..05be8160 --- /dev/null +++ b/network/qsslcertificateextension.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSslCertificateExtension_NewQSslCertificateExtension(); +QtObjectPtr QSslCertificateExtension_NewQSslCertificateExtension2(QtObjectPtr other); +int QSslCertificateExtension_IsCritical(QtObjectPtr ptr); +int QSslCertificateExtension_IsSupported(QtObjectPtr ptr); +char* QSslCertificateExtension_Name(QtObjectPtr ptr); +char* QSslCertificateExtension_Oid(QtObjectPtr ptr); +void QSslCertificateExtension_Swap(QtObjectPtr ptr, QtObjectPtr other); +char* QSslCertificateExtension_Value(QtObjectPtr ptr); +void QSslCertificateExtension_DestroyQSslCertificateExtension(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qsslcipher.cpp b/network/qsslcipher.cpp new file mode 100755 index 00000000..23251e06 --- /dev/null +++ b/network/qsslcipher.cpp @@ -0,0 +1,64 @@ +#include "qsslcipher.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSslCipher: public QSslCipher { +public: +}; + +QtObjectPtr QSslCipher_NewQSslCipher(){ + return new QSslCipher(); +} + +QtObjectPtr QSslCipher_NewQSslCipher4(QtObjectPtr other){ + return new QSslCipher(*static_cast(other)); +} + +QtObjectPtr QSslCipher_NewQSslCipher2(char* name){ + return new QSslCipher(QString(name)); +} + +char* QSslCipher_AuthenticationMethod(QtObjectPtr ptr){ + return static_cast(ptr)->authenticationMethod().toUtf8().data(); +} + +char* QSslCipher_EncryptionMethod(QtObjectPtr ptr){ + return static_cast(ptr)->encryptionMethod().toUtf8().data(); +} + +int QSslCipher_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +char* QSslCipher_KeyExchangeMethod(QtObjectPtr ptr){ + return static_cast(ptr)->keyExchangeMethod().toUtf8().data(); +} + +char* QSslCipher_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +char* QSslCipher_ProtocolString(QtObjectPtr ptr){ + return static_cast(ptr)->protocolString().toUtf8().data(); +} + +int QSslCipher_SupportedBits(QtObjectPtr ptr){ + return static_cast(ptr)->supportedBits(); +} + +void QSslCipher_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +int QSslCipher_UsedBits(QtObjectPtr ptr){ + return static_cast(ptr)->usedBits(); +} + +void QSslCipher_DestroyQSslCipher(QtObjectPtr ptr){ + static_cast(ptr)->~QSslCipher(); +} + diff --git a/network/qsslcipher.go b/network/qsslcipher.go new file mode 100755 index 00000000..39fac4a1 --- /dev/null +++ b/network/qsslcipher.go @@ -0,0 +1,120 @@ +package network + +//#include "qsslcipher.h" +import "C" +import ( + "unsafe" +) + +type QSslCipher struct { + ptr unsafe.Pointer +} + +type QSslCipherITF interface { + QSslCipherPTR() *QSslCipher +} + +func (p *QSslCipher) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSslCipher) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSslCipher(ptr QSslCipherITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSslCipherPTR().Pointer() + } + return nil +} + +func QSslCipherFromPointer(ptr unsafe.Pointer) *QSslCipher { + var n = new(QSslCipher) + n.SetPointer(ptr) + return n +} + +func (ptr *QSslCipher) QSslCipherPTR() *QSslCipher { + return ptr +} + +func NewQSslCipher() *QSslCipher { + return QSslCipherFromPointer(unsafe.Pointer(C.QSslCipher_NewQSslCipher())) +} + +func NewQSslCipher4(other QSslCipherITF) *QSslCipher { + return QSslCipherFromPointer(unsafe.Pointer(C.QSslCipher_NewQSslCipher4(C.QtObjectPtr(PointerFromQSslCipher(other))))) +} + +func NewQSslCipher2(name string) *QSslCipher { + return QSslCipherFromPointer(unsafe.Pointer(C.QSslCipher_NewQSslCipher2(C.CString(name)))) +} + +func (ptr *QSslCipher) AuthenticationMethod() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSslCipher_AuthenticationMethod(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSslCipher) EncryptionMethod() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSslCipher_EncryptionMethod(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSslCipher) IsNull() bool { + if ptr.Pointer() != nil { + return C.QSslCipher_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSslCipher) KeyExchangeMethod() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSslCipher_KeyExchangeMethod(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSslCipher) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSslCipher_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSslCipher) ProtocolString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSslCipher_ProtocolString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSslCipher) SupportedBits() int { + if ptr.Pointer() != nil { + return int(C.QSslCipher_SupportedBits(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSslCipher) Swap(other QSslCipherITF) { + if ptr.Pointer() != nil { + C.QSslCipher_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSslCipher(other))) + } +} + +func (ptr *QSslCipher) UsedBits() int { + if ptr.Pointer() != nil { + return int(C.QSslCipher_UsedBits(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSslCipher) DestroyQSslCipher() { + if ptr.Pointer() != nil { + C.QSslCipher_DestroyQSslCipher(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/network/qsslcipher.h b/network/qsslcipher.h new file mode 100755 index 00000000..0c7c9a8e --- /dev/null +++ b/network/qsslcipher.h @@ -0,0 +1,22 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSslCipher_NewQSslCipher(); +QtObjectPtr QSslCipher_NewQSslCipher4(QtObjectPtr other); +QtObjectPtr QSslCipher_NewQSslCipher2(char* name); +char* QSslCipher_AuthenticationMethod(QtObjectPtr ptr); +char* QSslCipher_EncryptionMethod(QtObjectPtr ptr); +int QSslCipher_IsNull(QtObjectPtr ptr); +char* QSslCipher_KeyExchangeMethod(QtObjectPtr ptr); +char* QSslCipher_Name(QtObjectPtr ptr); +char* QSslCipher_ProtocolString(QtObjectPtr ptr); +int QSslCipher_SupportedBits(QtObjectPtr ptr); +void QSslCipher_Swap(QtObjectPtr ptr, QtObjectPtr other); +int QSslCipher_UsedBits(QtObjectPtr ptr); +void QSslCipher_DestroyQSslCipher(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qsslconfiguration.cpp b/network/qsslconfiguration.cpp new file mode 100755 index 00000000..6f51242f --- /dev/null +++ b/network/qsslconfiguration.cpp @@ -0,0 +1,76 @@ +#include "qsslconfiguration.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSslConfiguration: public QSslConfiguration { +public: +}; + +QtObjectPtr QSslConfiguration_NewQSslConfiguration(){ + return new QSslConfiguration(); +} + +QtObjectPtr QSslConfiguration_NewQSslConfiguration2(QtObjectPtr other){ + return new QSslConfiguration(*static_cast(other)); +} + +int QSslConfiguration_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QSslConfiguration_NextProtocolNegotiationStatus(QtObjectPtr ptr){ + return static_cast(ptr)->nextProtocolNegotiationStatus(); +} + +int QSslConfiguration_PeerVerifyDepth(QtObjectPtr ptr){ + return static_cast(ptr)->peerVerifyDepth(); +} + +int QSslConfiguration_PeerVerifyMode(QtObjectPtr ptr){ + return static_cast(ptr)->peerVerifyMode(); +} + +int QSslConfiguration_SessionTicketLifeTimeHint(QtObjectPtr ptr){ + return static_cast(ptr)->sessionTicketLifeTimeHint(); +} + +void QSslConfiguration_QSslConfiguration_SetDefaultConfiguration(QtObjectPtr configuration){ + QSslConfiguration::setDefaultConfiguration(*static_cast(configuration)); +} + +void QSslConfiguration_SetLocalCertificate(QtObjectPtr ptr, QtObjectPtr certificate){ + static_cast(ptr)->setLocalCertificate(*static_cast(certificate)); +} + +void QSslConfiguration_SetPeerVerifyDepth(QtObjectPtr ptr, int depth){ + static_cast(ptr)->setPeerVerifyDepth(depth); +} + +void QSslConfiguration_SetPeerVerifyMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setPeerVerifyMode(static_cast(mode)); +} + +void QSslConfiguration_SetPrivateKey(QtObjectPtr ptr, QtObjectPtr key){ + static_cast(ptr)->setPrivateKey(*static_cast(key)); +} + +void QSslConfiguration_SetSessionTicket(QtObjectPtr ptr, QtObjectPtr sessionTicket){ + static_cast(ptr)->setSessionTicket(*static_cast(sessionTicket)); +} + +void QSslConfiguration_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QSslConfiguration_DestroyQSslConfiguration(QtObjectPtr ptr){ + static_cast(ptr)->~QSslConfiguration(); +} + diff --git a/network/qsslconfiguration.go b/network/qsslconfiguration.go new file mode 100755 index 00000000..2b70ba11 --- /dev/null +++ b/network/qsslconfiguration.go @@ -0,0 +1,139 @@ +package network + +//#include "qsslconfiguration.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QSslConfiguration struct { + ptr unsafe.Pointer +} + +type QSslConfigurationITF interface { + QSslConfigurationPTR() *QSslConfiguration +} + +func (p *QSslConfiguration) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSslConfiguration) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSslConfiguration(ptr QSslConfigurationITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSslConfigurationPTR().Pointer() + } + return nil +} + +func QSslConfigurationFromPointer(ptr unsafe.Pointer) *QSslConfiguration { + var n = new(QSslConfiguration) + n.SetPointer(ptr) + return n +} + +func (ptr *QSslConfiguration) QSslConfigurationPTR() *QSslConfiguration { + return ptr +} + +//QSslConfiguration::NextProtocolNegotiationStatus +type QSslConfiguration__NextProtocolNegotiationStatus int + +var ( + QSslConfiguration__NextProtocolNegotiationNone = QSslConfiguration__NextProtocolNegotiationStatus(0) + QSslConfiguration__NextProtocolNegotiationNegotiated = QSslConfiguration__NextProtocolNegotiationStatus(1) + QSslConfiguration__NextProtocolNegotiationUnsupported = QSslConfiguration__NextProtocolNegotiationStatus(2) +) + +func NewQSslConfiguration() *QSslConfiguration { + return QSslConfigurationFromPointer(unsafe.Pointer(C.QSslConfiguration_NewQSslConfiguration())) +} + +func NewQSslConfiguration2(other QSslConfigurationITF) *QSslConfiguration { + return QSslConfigurationFromPointer(unsafe.Pointer(C.QSslConfiguration_NewQSslConfiguration2(C.QtObjectPtr(PointerFromQSslConfiguration(other))))) +} + +func (ptr *QSslConfiguration) IsNull() bool { + if ptr.Pointer() != nil { + return C.QSslConfiguration_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSslConfiguration) NextProtocolNegotiationStatus() QSslConfiguration__NextProtocolNegotiationStatus { + if ptr.Pointer() != nil { + return QSslConfiguration__NextProtocolNegotiationStatus(C.QSslConfiguration_NextProtocolNegotiationStatus(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSslConfiguration) PeerVerifyDepth() int { + if ptr.Pointer() != nil { + return int(C.QSslConfiguration_PeerVerifyDepth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSslConfiguration) PeerVerifyMode() QSslSocket__PeerVerifyMode { + if ptr.Pointer() != nil { + return QSslSocket__PeerVerifyMode(C.QSslConfiguration_PeerVerifyMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSslConfiguration) SessionTicketLifeTimeHint() int { + if ptr.Pointer() != nil { + return int(C.QSslConfiguration_SessionTicketLifeTimeHint(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QSslConfiguration_SetDefaultConfiguration(configuration QSslConfigurationITF) { + C.QSslConfiguration_QSslConfiguration_SetDefaultConfiguration(C.QtObjectPtr(PointerFromQSslConfiguration(configuration))) +} + +func (ptr *QSslConfiguration) SetLocalCertificate(certificate QSslCertificateITF) { + if ptr.Pointer() != nil { + C.QSslConfiguration_SetLocalCertificate(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSslCertificate(certificate))) + } +} + +func (ptr *QSslConfiguration) SetPeerVerifyDepth(depth int) { + if ptr.Pointer() != nil { + C.QSslConfiguration_SetPeerVerifyDepth(C.QtObjectPtr(ptr.Pointer()), C.int(depth)) + } +} + +func (ptr *QSslConfiguration) SetPeerVerifyMode(mode QSslSocket__PeerVerifyMode) { + if ptr.Pointer() != nil { + C.QSslConfiguration_SetPeerVerifyMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QSslConfiguration) SetPrivateKey(key QSslKeyITF) { + if ptr.Pointer() != nil { + C.QSslConfiguration_SetPrivateKey(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSslKey(key))) + } +} + +func (ptr *QSslConfiguration) SetSessionTicket(sessionTicket core.QByteArrayITF) { + if ptr.Pointer() != nil { + C.QSslConfiguration_SetSessionTicket(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(sessionTicket))) + } +} + +func (ptr *QSslConfiguration) Swap(other QSslConfigurationITF) { + if ptr.Pointer() != nil { + C.QSslConfiguration_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSslConfiguration(other))) + } +} + +func (ptr *QSslConfiguration) DestroyQSslConfiguration() { + if ptr.Pointer() != nil { + C.QSslConfiguration_DestroyQSslConfiguration(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/network/qsslconfiguration.h b/network/qsslconfiguration.h new file mode 100755 index 00000000..11306da7 --- /dev/null +++ b/network/qsslconfiguration.h @@ -0,0 +1,24 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSslConfiguration_NewQSslConfiguration(); +QtObjectPtr QSslConfiguration_NewQSslConfiguration2(QtObjectPtr other); +int QSslConfiguration_IsNull(QtObjectPtr ptr); +int QSslConfiguration_NextProtocolNegotiationStatus(QtObjectPtr ptr); +int QSslConfiguration_PeerVerifyDepth(QtObjectPtr ptr); +int QSslConfiguration_PeerVerifyMode(QtObjectPtr ptr); +int QSslConfiguration_SessionTicketLifeTimeHint(QtObjectPtr ptr); +void QSslConfiguration_QSslConfiguration_SetDefaultConfiguration(QtObjectPtr configuration); +void QSslConfiguration_SetLocalCertificate(QtObjectPtr ptr, QtObjectPtr certificate); +void QSslConfiguration_SetPeerVerifyDepth(QtObjectPtr ptr, int depth); +void QSslConfiguration_SetPeerVerifyMode(QtObjectPtr ptr, int mode); +void QSslConfiguration_SetPrivateKey(QtObjectPtr ptr, QtObjectPtr key); +void QSslConfiguration_SetSessionTicket(QtObjectPtr ptr, QtObjectPtr sessionTicket); +void QSslConfiguration_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QSslConfiguration_DestroyQSslConfiguration(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qsslellipticcurve.cpp b/network/qsslellipticcurve.cpp new file mode 100755 index 00000000..902bd533 --- /dev/null +++ b/network/qsslellipticcurve.cpp @@ -0,0 +1,32 @@ +#include "qsslellipticcurve.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSslEllipticCurve: public QSslEllipticCurve { +public: +}; + +QtObjectPtr QSslEllipticCurve_NewQSslEllipticCurve(){ + return new QSslEllipticCurve(); +} + +int QSslEllipticCurve_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QSslEllipticCurve_IsTlsNamedCurve(QtObjectPtr ptr){ + return static_cast(ptr)->isTlsNamedCurve(); +} + +char* QSslEllipticCurve_LongName(QtObjectPtr ptr){ + return static_cast(ptr)->longName().toUtf8().data(); +} + +char* QSslEllipticCurve_ShortName(QtObjectPtr ptr){ + return static_cast(ptr)->shortName().toUtf8().data(); +} + diff --git a/network/qsslellipticcurve.go b/network/qsslellipticcurve.go new file mode 100755 index 00000000..1f87f9a1 --- /dev/null +++ b/network/qsslellipticcurve.go @@ -0,0 +1,72 @@ +package network + +//#include "qsslellipticcurve.h" +import "C" +import ( + "unsafe" +) + +type QSslEllipticCurve struct { + ptr unsafe.Pointer +} + +type QSslEllipticCurveITF interface { + QSslEllipticCurvePTR() *QSslEllipticCurve +} + +func (p *QSslEllipticCurve) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSslEllipticCurve) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSslEllipticCurve(ptr QSslEllipticCurveITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSslEllipticCurvePTR().Pointer() + } + return nil +} + +func QSslEllipticCurveFromPointer(ptr unsafe.Pointer) *QSslEllipticCurve { + var n = new(QSslEllipticCurve) + n.SetPointer(ptr) + return n +} + +func (ptr *QSslEllipticCurve) QSslEllipticCurvePTR() *QSslEllipticCurve { + return ptr +} + +func NewQSslEllipticCurve() *QSslEllipticCurve { + return QSslEllipticCurveFromPointer(unsafe.Pointer(C.QSslEllipticCurve_NewQSslEllipticCurve())) +} + +func (ptr *QSslEllipticCurve) IsValid() bool { + if ptr.Pointer() != nil { + return C.QSslEllipticCurve_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSslEllipticCurve) IsTlsNamedCurve() bool { + if ptr.Pointer() != nil { + return C.QSslEllipticCurve_IsTlsNamedCurve(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSslEllipticCurve) LongName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSslEllipticCurve_LongName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSslEllipticCurve) ShortName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSslEllipticCurve_ShortName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/network/qsslellipticcurve.h b/network/qsslellipticcurve.h new file mode 100755 index 00000000..9039050d --- /dev/null +++ b/network/qsslellipticcurve.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSslEllipticCurve_NewQSslEllipticCurve(); +int QSslEllipticCurve_IsValid(QtObjectPtr ptr); +int QSslEllipticCurve_IsTlsNamedCurve(QtObjectPtr ptr); +char* QSslEllipticCurve_LongName(QtObjectPtr ptr); +char* QSslEllipticCurve_ShortName(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qsslerror.cpp b/network/qsslerror.cpp new file mode 100755 index 00000000..f32fa8e2 --- /dev/null +++ b/network/qsslerror.cpp @@ -0,0 +1,45 @@ +#include "qsslerror.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSslError: public QSslError { +public: +}; + +QtObjectPtr QSslError_NewQSslError(){ + return new QSslError(); +} + +QtObjectPtr QSslError_NewQSslError2(int error){ + return new QSslError(static_cast(error)); +} + +QtObjectPtr QSslError_NewQSslError3(int error, QtObjectPtr certificate){ + return new QSslError(static_cast(error), *static_cast(certificate)); +} + +QtObjectPtr QSslError_NewQSslError4(QtObjectPtr other){ + return new QSslError(*static_cast(other)); +} + +int QSslError_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +char* QSslError_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +void QSslError_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QSslError_DestroyQSslError(QtObjectPtr ptr){ + static_cast(ptr)->~QSslError(); +} + diff --git a/network/qsslerror.go b/network/qsslerror.go new file mode 100755 index 00000000..933a314a --- /dev/null +++ b/network/qsslerror.go @@ -0,0 +1,114 @@ +package network + +//#include "qsslerror.h" +import "C" +import ( + "unsafe" +) + +type QSslError struct { + ptr unsafe.Pointer +} + +type QSslErrorITF interface { + QSslErrorPTR() *QSslError +} + +func (p *QSslError) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSslError) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSslError(ptr QSslErrorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSslErrorPTR().Pointer() + } + return nil +} + +func QSslErrorFromPointer(ptr unsafe.Pointer) *QSslError { + var n = new(QSslError) + n.SetPointer(ptr) + return n +} + +func (ptr *QSslError) QSslErrorPTR() *QSslError { + return ptr +} + +//QSslError::SslError +type QSslError__SslError int + +var ( + QSslError__NoError = QSslError__SslError(0) + QSslError__UnableToGetIssuerCertificate = QSslError__SslError(1) + QSslError__UnableToDecryptCertificateSignature = QSslError__SslError(2) + QSslError__UnableToDecodeIssuerPublicKey = QSslError__SslError(3) + QSslError__CertificateSignatureFailed = QSslError__SslError(4) + QSslError__CertificateNotYetValid = QSslError__SslError(5) + QSslError__CertificateExpired = QSslError__SslError(6) + QSslError__InvalidNotBeforeField = QSslError__SslError(7) + QSslError__InvalidNotAfterField = QSslError__SslError(8) + QSslError__SelfSignedCertificate = QSslError__SslError(9) + QSslError__SelfSignedCertificateInChain = QSslError__SslError(10) + QSslError__UnableToGetLocalIssuerCertificate = QSslError__SslError(11) + QSslError__UnableToVerifyFirstCertificate = QSslError__SslError(12) + QSslError__CertificateRevoked = QSslError__SslError(13) + QSslError__InvalidCaCertificate = QSslError__SslError(14) + QSslError__PathLengthExceeded = QSslError__SslError(15) + QSslError__InvalidPurpose = QSslError__SslError(16) + QSslError__CertificateUntrusted = QSslError__SslError(17) + QSslError__CertificateRejected = QSslError__SslError(18) + QSslError__SubjectIssuerMismatch = QSslError__SslError(19) + QSslError__AuthorityIssuerSerialNumberMismatch = QSslError__SslError(20) + QSslError__NoPeerCertificate = QSslError__SslError(21) + QSslError__HostNameMismatch = QSslError__SslError(22) + QSslError__NoSslSupport = QSslError__SslError(23) + QSslError__CertificateBlacklisted = QSslError__SslError(24) + QSslError__UnspecifiedError = QSslError__SslError(-1) +) + +func NewQSslError() *QSslError { + return QSslErrorFromPointer(unsafe.Pointer(C.QSslError_NewQSslError())) +} + +func NewQSslError2(error QSslError__SslError) *QSslError { + return QSslErrorFromPointer(unsafe.Pointer(C.QSslError_NewQSslError2(C.int(error)))) +} + +func NewQSslError3(error QSslError__SslError, certificate QSslCertificateITF) *QSslError { + return QSslErrorFromPointer(unsafe.Pointer(C.QSslError_NewQSslError3(C.int(error), C.QtObjectPtr(PointerFromQSslCertificate(certificate))))) +} + +func NewQSslError4(other QSslErrorITF) *QSslError { + return QSslErrorFromPointer(unsafe.Pointer(C.QSslError_NewQSslError4(C.QtObjectPtr(PointerFromQSslError(other))))) +} + +func (ptr *QSslError) Error() QSslError__SslError { + if ptr.Pointer() != nil { + return QSslError__SslError(C.QSslError_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSslError) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSslError_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSslError) Swap(other QSslErrorITF) { + if ptr.Pointer() != nil { + C.QSslError_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSslError(other))) + } +} + +func (ptr *QSslError) DestroyQSslError() { + if ptr.Pointer() != nil { + C.QSslError_DestroyQSslError(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/network/qsslerror.h b/network/qsslerror.h new file mode 100755 index 00000000..d10ed0af --- /dev/null +++ b/network/qsslerror.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSslError_NewQSslError(); +QtObjectPtr QSslError_NewQSslError2(int error); +QtObjectPtr QSslError_NewQSslError3(int error, QtObjectPtr certificate); +QtObjectPtr QSslError_NewQSslError4(QtObjectPtr other); +int QSslError_Error(QtObjectPtr ptr); +char* QSslError_ErrorString(QtObjectPtr ptr); +void QSslError_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QSslError_DestroyQSslError(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qsslkey.cpp b/network/qsslkey.cpp new file mode 100755 index 00000000..73ed9eeb --- /dev/null +++ b/network/qsslkey.cpp @@ -0,0 +1,40 @@ +#include "qsslkey.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSslKey: public QSslKey { +public: +}; + +QtObjectPtr QSslKey_NewQSslKey(){ + return new QSslKey(); +} + +QtObjectPtr QSslKey_NewQSslKey5(QtObjectPtr other){ + return new QSslKey(*static_cast(other)); +} + +void QSslKey_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +int QSslKey_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QSslKey_Length(QtObjectPtr ptr){ + return static_cast(ptr)->length(); +} + +void QSslKey_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QSslKey_DestroyQSslKey(QtObjectPtr ptr){ + static_cast(ptr)->~QSslKey(); +} + diff --git a/network/qsslkey.go b/network/qsslkey.go new file mode 100755 index 00000000..ed773747 --- /dev/null +++ b/network/qsslkey.go @@ -0,0 +1,80 @@ +package network + +//#include "qsslkey.h" +import "C" +import ( + "unsafe" +) + +type QSslKey struct { + ptr unsafe.Pointer +} + +type QSslKeyITF interface { + QSslKeyPTR() *QSslKey +} + +func (p *QSslKey) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSslKey) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSslKey(ptr QSslKeyITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSslKeyPTR().Pointer() + } + return nil +} + +func QSslKeyFromPointer(ptr unsafe.Pointer) *QSslKey { + var n = new(QSslKey) + n.SetPointer(ptr) + return n +} + +func (ptr *QSslKey) QSslKeyPTR() *QSslKey { + return ptr +} + +func NewQSslKey() *QSslKey { + return QSslKeyFromPointer(unsafe.Pointer(C.QSslKey_NewQSslKey())) +} + +func NewQSslKey5(other QSslKeyITF) *QSslKey { + return QSslKeyFromPointer(unsafe.Pointer(C.QSslKey_NewQSslKey5(C.QtObjectPtr(PointerFromQSslKey(other))))) +} + +func (ptr *QSslKey) Clear() { + if ptr.Pointer() != nil { + C.QSslKey_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSslKey) IsNull() bool { + if ptr.Pointer() != nil { + return C.QSslKey_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSslKey) Length() int { + if ptr.Pointer() != nil { + return int(C.QSslKey_Length(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSslKey) Swap(other QSslKeyITF) { + if ptr.Pointer() != nil { + C.QSslKey_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSslKey(other))) + } +} + +func (ptr *QSslKey) DestroyQSslKey() { + if ptr.Pointer() != nil { + C.QSslKey_DestroyQSslKey(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/network/qsslkey.h b/network/qsslkey.h new file mode 100755 index 00000000..01984536 --- /dev/null +++ b/network/qsslkey.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSslKey_NewQSslKey(); +QtObjectPtr QSslKey_NewQSslKey5(QtObjectPtr other); +void QSslKey_Clear(QtObjectPtr ptr); +int QSslKey_IsNull(QtObjectPtr ptr); +int QSslKey_Length(QtObjectPtr ptr); +void QSslKey_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QSslKey_DestroyQSslKey(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qsslpresharedkeyauthenticator.cpp b/network/qsslpresharedkeyauthenticator.cpp new file mode 100755 index 00000000..48497e81 --- /dev/null +++ b/network/qsslpresharedkeyauthenticator.cpp @@ -0,0 +1,45 @@ +#include "qsslpresharedkeyauthenticator.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSslPreSharedKeyAuthenticator: public QSslPreSharedKeyAuthenticator { +public: +}; + +QtObjectPtr QSslPreSharedKeyAuthenticator_NewQSslPreSharedKeyAuthenticator(){ + return new QSslPreSharedKeyAuthenticator(); +} + +QtObjectPtr QSslPreSharedKeyAuthenticator_NewQSslPreSharedKeyAuthenticator2(QtObjectPtr authenticator){ + return new QSslPreSharedKeyAuthenticator(*static_cast(authenticator)); +} + +int QSslPreSharedKeyAuthenticator_MaximumIdentityLength(QtObjectPtr ptr){ + return static_cast(ptr)->maximumIdentityLength(); +} + +int QSslPreSharedKeyAuthenticator_MaximumPreSharedKeyLength(QtObjectPtr ptr){ + return static_cast(ptr)->maximumPreSharedKeyLength(); +} + +void QSslPreSharedKeyAuthenticator_SetIdentity(QtObjectPtr ptr, QtObjectPtr identity){ + static_cast(ptr)->setIdentity(*static_cast(identity)); +} + +void QSslPreSharedKeyAuthenticator_SetPreSharedKey(QtObjectPtr ptr, QtObjectPtr preSharedKey){ + static_cast(ptr)->setPreSharedKey(*static_cast(preSharedKey)); +} + +void QSslPreSharedKeyAuthenticator_Swap(QtObjectPtr ptr, QtObjectPtr authenticator){ + static_cast(ptr)->swap(*static_cast(authenticator)); +} + +void QSslPreSharedKeyAuthenticator_DestroyQSslPreSharedKeyAuthenticator(QtObjectPtr ptr){ + static_cast(ptr)->~QSslPreSharedKeyAuthenticator(); +} + diff --git a/network/qsslpresharedkeyauthenticator.go b/network/qsslpresharedkeyauthenticator.go new file mode 100755 index 00000000..1ab78166 --- /dev/null +++ b/network/qsslpresharedkeyauthenticator.go @@ -0,0 +1,87 @@ +package network + +//#include "qsslpresharedkeyauthenticator.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QSslPreSharedKeyAuthenticator struct { + ptr unsafe.Pointer +} + +type QSslPreSharedKeyAuthenticatorITF interface { + QSslPreSharedKeyAuthenticatorPTR() *QSslPreSharedKeyAuthenticator +} + +func (p *QSslPreSharedKeyAuthenticator) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSslPreSharedKeyAuthenticator) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSslPreSharedKeyAuthenticator(ptr QSslPreSharedKeyAuthenticatorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSslPreSharedKeyAuthenticatorPTR().Pointer() + } + return nil +} + +func QSslPreSharedKeyAuthenticatorFromPointer(ptr unsafe.Pointer) *QSslPreSharedKeyAuthenticator { + var n = new(QSslPreSharedKeyAuthenticator) + n.SetPointer(ptr) + return n +} + +func (ptr *QSslPreSharedKeyAuthenticator) QSslPreSharedKeyAuthenticatorPTR() *QSslPreSharedKeyAuthenticator { + return ptr +} + +func NewQSslPreSharedKeyAuthenticator() *QSslPreSharedKeyAuthenticator { + return QSslPreSharedKeyAuthenticatorFromPointer(unsafe.Pointer(C.QSslPreSharedKeyAuthenticator_NewQSslPreSharedKeyAuthenticator())) +} + +func NewQSslPreSharedKeyAuthenticator2(authenticator QSslPreSharedKeyAuthenticatorITF) *QSslPreSharedKeyAuthenticator { + return QSslPreSharedKeyAuthenticatorFromPointer(unsafe.Pointer(C.QSslPreSharedKeyAuthenticator_NewQSslPreSharedKeyAuthenticator2(C.QtObjectPtr(PointerFromQSslPreSharedKeyAuthenticator(authenticator))))) +} + +func (ptr *QSslPreSharedKeyAuthenticator) MaximumIdentityLength() int { + if ptr.Pointer() != nil { + return int(C.QSslPreSharedKeyAuthenticator_MaximumIdentityLength(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSslPreSharedKeyAuthenticator) MaximumPreSharedKeyLength() int { + if ptr.Pointer() != nil { + return int(C.QSslPreSharedKeyAuthenticator_MaximumPreSharedKeyLength(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSslPreSharedKeyAuthenticator) SetIdentity(identity core.QByteArrayITF) { + if ptr.Pointer() != nil { + C.QSslPreSharedKeyAuthenticator_SetIdentity(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(identity))) + } +} + +func (ptr *QSslPreSharedKeyAuthenticator) SetPreSharedKey(preSharedKey core.QByteArrayITF) { + if ptr.Pointer() != nil { + C.QSslPreSharedKeyAuthenticator_SetPreSharedKey(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(preSharedKey))) + } +} + +func (ptr *QSslPreSharedKeyAuthenticator) Swap(authenticator QSslPreSharedKeyAuthenticatorITF) { + if ptr.Pointer() != nil { + C.QSslPreSharedKeyAuthenticator_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSslPreSharedKeyAuthenticator(authenticator))) + } +} + +func (ptr *QSslPreSharedKeyAuthenticator) DestroyQSslPreSharedKeyAuthenticator() { + if ptr.Pointer() != nil { + C.QSslPreSharedKeyAuthenticator_DestroyQSslPreSharedKeyAuthenticator(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/network/qsslpresharedkeyauthenticator.h b/network/qsslpresharedkeyauthenticator.h new file mode 100755 index 00000000..90ef5d0e --- /dev/null +++ b/network/qsslpresharedkeyauthenticator.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSslPreSharedKeyAuthenticator_NewQSslPreSharedKeyAuthenticator(); +QtObjectPtr QSslPreSharedKeyAuthenticator_NewQSslPreSharedKeyAuthenticator2(QtObjectPtr authenticator); +int QSslPreSharedKeyAuthenticator_MaximumIdentityLength(QtObjectPtr ptr); +int QSslPreSharedKeyAuthenticator_MaximumPreSharedKeyLength(QtObjectPtr ptr); +void QSslPreSharedKeyAuthenticator_SetIdentity(QtObjectPtr ptr, QtObjectPtr identity); +void QSslPreSharedKeyAuthenticator_SetPreSharedKey(QtObjectPtr ptr, QtObjectPtr preSharedKey); +void QSslPreSharedKeyAuthenticator_Swap(QtObjectPtr ptr, QtObjectPtr authenticator); +void QSslPreSharedKeyAuthenticator_DestroyQSslPreSharedKeyAuthenticator(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qsslsocket.cpp b/network/qsslsocket.cpp new file mode 100755 index 00000000..406fbdc9 --- /dev/null +++ b/network/qsslsocket.cpp @@ -0,0 +1,182 @@ +#include "qsslsocket.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSslSocket: public QSslSocket { +public: +void Signal_Encrypted(){callbackQSslSocketEncrypted(this->objectName().toUtf8().data());}; +void Signal_ModeChanged(QSslSocket::SslMode mode){callbackQSslSocketModeChanged(this->objectName().toUtf8().data(), mode);}; +void Signal_PreSharedKeyAuthenticationRequired(QSslPreSharedKeyAuthenticator * authenticator){callbackQSslSocketPreSharedKeyAuthenticationRequired(this->objectName().toUtf8().data(), authenticator);}; +}; + +QtObjectPtr QSslSocket_NewQSslSocket(QtObjectPtr parent){ + return new QSslSocket(static_cast(parent)); +} + +void QSslSocket_Abort(QtObjectPtr ptr){ + static_cast(ptr)->abort(); +} + +void QSslSocket_AddCaCertificate(QtObjectPtr ptr, QtObjectPtr certificate){ + static_cast(ptr)->addCaCertificate(*static_cast(certificate)); +} + +void QSslSocket_QSslSocket_AddDefaultCaCertificate(QtObjectPtr certificate){ + QSslSocket::addDefaultCaCertificate(*static_cast(certificate)); +} + +int QSslSocket_AtEnd(QtObjectPtr ptr){ + return static_cast(ptr)->atEnd(); +} + +int QSslSocket_CanReadLine(QtObjectPtr ptr){ + return static_cast(ptr)->canReadLine(); +} + +void QSslSocket_Close(QtObjectPtr ptr){ + static_cast(ptr)->close(); +} + +void QSslSocket_ConnectEncrypted(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSslSocket::encrypted), static_cast(ptr), static_cast(&MyQSslSocket::Signal_Encrypted));; +} + +void QSslSocket_DisconnectEncrypted(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSslSocket::encrypted), static_cast(ptr), static_cast(&MyQSslSocket::Signal_Encrypted));; +} + +int QSslSocket_Flush(QtObjectPtr ptr){ + return static_cast(ptr)->flush(); +} + +void QSslSocket_IgnoreSslErrors(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "ignoreSslErrors"); +} + +int QSslSocket_IsEncrypted(QtObjectPtr ptr){ + return static_cast(ptr)->isEncrypted(); +} + +int QSslSocket_Mode(QtObjectPtr ptr){ + return static_cast(ptr)->mode(); +} + +void QSslSocket_ConnectModeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSslSocket::modeChanged), static_cast(ptr), static_cast(&MyQSslSocket::Signal_ModeChanged));; +} + +void QSslSocket_DisconnectModeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSslSocket::modeChanged), static_cast(ptr), static_cast(&MyQSslSocket::Signal_ModeChanged));; +} + +int QSslSocket_PeerVerifyDepth(QtObjectPtr ptr){ + return static_cast(ptr)->peerVerifyDepth(); +} + +int QSslSocket_PeerVerifyMode(QtObjectPtr ptr){ + return static_cast(ptr)->peerVerifyMode(); +} + +char* QSslSocket_PeerVerifyName(QtObjectPtr ptr){ + return static_cast(ptr)->peerVerifyName().toUtf8().data(); +} + +void QSslSocket_ConnectPreSharedKeyAuthenticationRequired(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSslSocket::preSharedKeyAuthenticationRequired), static_cast(ptr), static_cast(&MyQSslSocket::Signal_PreSharedKeyAuthenticationRequired));; +} + +void QSslSocket_DisconnectPreSharedKeyAuthenticationRequired(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSslSocket::preSharedKeyAuthenticationRequired), static_cast(ptr), static_cast(&MyQSslSocket::Signal_PreSharedKeyAuthenticationRequired));; +} + +void QSslSocket_Resume(QtObjectPtr ptr){ + static_cast(ptr)->resume(); +} + +void QSslSocket_SetLocalCertificate(QtObjectPtr ptr, QtObjectPtr certificate){ + static_cast(ptr)->setLocalCertificate(*static_cast(certificate)); +} + +void QSslSocket_SetPeerVerifyDepth(QtObjectPtr ptr, int depth){ + static_cast(ptr)->setPeerVerifyDepth(depth); +} + +void QSslSocket_SetPeerVerifyMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setPeerVerifyMode(static_cast(mode)); +} + +void QSslSocket_SetPeerVerifyName(QtObjectPtr ptr, char* hostName){ + static_cast(ptr)->setPeerVerifyName(QString(hostName)); +} + +void QSslSocket_SetPrivateKey(QtObjectPtr ptr, QtObjectPtr key){ + static_cast(ptr)->setPrivateKey(*static_cast(key)); +} + +void QSslSocket_SetSocketOption(QtObjectPtr ptr, int option, char* value){ + static_cast(ptr)->setSocketOption(static_cast(option), QVariant(value)); +} + +void QSslSocket_SetSslConfiguration(QtObjectPtr ptr, QtObjectPtr configuration){ + static_cast(ptr)->setSslConfiguration(*static_cast(configuration)); +} + +char* QSslSocket_SocketOption(QtObjectPtr ptr, int option){ + return static_cast(ptr)->socketOption(static_cast(option)).toString().toUtf8().data(); +} + +char* QSslSocket_QSslSocket_SslLibraryBuildVersionString(){ + return QSslSocket::sslLibraryBuildVersionString().toUtf8().data(); +} + +char* QSslSocket_QSslSocket_SslLibraryVersionString(){ + return QSslSocket::sslLibraryVersionString().toUtf8().data(); +} + +void QSslSocket_StartClientEncryption(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "startClientEncryption"); +} + +void QSslSocket_StartServerEncryption(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "startServerEncryption"); +} + +int QSslSocket_QSslSocket_SupportsSsl(){ + return QSslSocket::supportsSsl(); +} + +int QSslSocket_WaitForBytesWritten(QtObjectPtr ptr, int msecs){ + return static_cast(ptr)->waitForBytesWritten(msecs); +} + +int QSslSocket_WaitForConnected(QtObjectPtr ptr, int msecs){ + return static_cast(ptr)->waitForConnected(msecs); +} + +int QSslSocket_WaitForDisconnected(QtObjectPtr ptr, int msecs){ + return static_cast(ptr)->waitForDisconnected(msecs); +} + +int QSslSocket_WaitForEncrypted(QtObjectPtr ptr, int msecs){ + return static_cast(ptr)->waitForEncrypted(msecs); +} + +int QSslSocket_WaitForReadyRead(QtObjectPtr ptr, int msecs){ + return static_cast(ptr)->waitForReadyRead(msecs); +} + +void QSslSocket_DestroyQSslSocket(QtObjectPtr ptr){ + static_cast(ptr)->~QSslSocket(); +} + diff --git a/network/qsslsocket.go b/network/qsslsocket.go new file mode 100755 index 00000000..31f47aea --- /dev/null +++ b/network/qsslsocket.go @@ -0,0 +1,323 @@ +package network + +//#include "qsslsocket.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QSslSocket struct { + QTcpSocket +} + +type QSslSocketITF interface { + QTcpSocketITF + QSslSocketPTR() *QSslSocket +} + +func PointerFromQSslSocket(ptr QSslSocketITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSslSocketPTR().Pointer() + } + return nil +} + +func QSslSocketFromPointer(ptr unsafe.Pointer) *QSslSocket { + var n = new(QSslSocket) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSslSocket_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSslSocket) QSslSocketPTR() *QSslSocket { + return ptr +} + +//QSslSocket::PeerVerifyMode +type QSslSocket__PeerVerifyMode int + +var ( + QSslSocket__VerifyNone = QSslSocket__PeerVerifyMode(0) + QSslSocket__QueryPeer = QSslSocket__PeerVerifyMode(1) + QSslSocket__VerifyPeer = QSslSocket__PeerVerifyMode(2) + QSslSocket__AutoVerifyPeer = QSslSocket__PeerVerifyMode(3) +) + +//QSslSocket::SslMode +type QSslSocket__SslMode int + +var ( + QSslSocket__UnencryptedMode = QSslSocket__SslMode(0) + QSslSocket__SslClientMode = QSslSocket__SslMode(1) + QSslSocket__SslServerMode = QSslSocket__SslMode(2) +) + +func NewQSslSocket(parent core.QObjectITF) *QSslSocket { + return QSslSocketFromPointer(unsafe.Pointer(C.QSslSocket_NewQSslSocket(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QSslSocket) Abort() { + if ptr.Pointer() != nil { + C.QSslSocket_Abort(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSslSocket) AddCaCertificate(certificate QSslCertificateITF) { + if ptr.Pointer() != nil { + C.QSslSocket_AddCaCertificate(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSslCertificate(certificate))) + } +} + +func QSslSocket_AddDefaultCaCertificate(certificate QSslCertificateITF) { + C.QSslSocket_QSslSocket_AddDefaultCaCertificate(C.QtObjectPtr(PointerFromQSslCertificate(certificate))) +} + +func (ptr *QSslSocket) AtEnd() bool { + if ptr.Pointer() != nil { + return C.QSslSocket_AtEnd(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSslSocket) CanReadLine() bool { + if ptr.Pointer() != nil { + return C.QSslSocket_CanReadLine(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSslSocket) Close() { + if ptr.Pointer() != nil { + C.QSslSocket_Close(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSslSocket) ConnectEncrypted(f func()) { + if ptr.Pointer() != nil { + C.QSslSocket_ConnectEncrypted(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "encrypted", f) + } +} + +func (ptr *QSslSocket) DisconnectEncrypted() { + if ptr.Pointer() != nil { + C.QSslSocket_DisconnectEncrypted(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "encrypted") + } +} + +//export callbackQSslSocketEncrypted +func callbackQSslSocketEncrypted(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "encrypted").(func())() +} + +func (ptr *QSslSocket) Flush() bool { + if ptr.Pointer() != nil { + return C.QSslSocket_Flush(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSslSocket) IgnoreSslErrors() { + if ptr.Pointer() != nil { + C.QSslSocket_IgnoreSslErrors(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSslSocket) IsEncrypted() bool { + if ptr.Pointer() != nil { + return C.QSslSocket_IsEncrypted(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSslSocket) Mode() QSslSocket__SslMode { + if ptr.Pointer() != nil { + return QSslSocket__SslMode(C.QSslSocket_Mode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSslSocket) ConnectModeChanged(f func(mode QSslSocket__SslMode)) { + if ptr.Pointer() != nil { + C.QSslSocket_ConnectModeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "modeChanged", f) + } +} + +func (ptr *QSslSocket) DisconnectModeChanged() { + if ptr.Pointer() != nil { + C.QSslSocket_DisconnectModeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "modeChanged") + } +} + +//export callbackQSslSocketModeChanged +func callbackQSslSocketModeChanged(ptrName *C.char, mode C.int) { + qt.GetSignal(C.GoString(ptrName), "modeChanged").(func(QSslSocket__SslMode))(QSslSocket__SslMode(mode)) +} + +func (ptr *QSslSocket) PeerVerifyDepth() int { + if ptr.Pointer() != nil { + return int(C.QSslSocket_PeerVerifyDepth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSslSocket) PeerVerifyMode() QSslSocket__PeerVerifyMode { + if ptr.Pointer() != nil { + return QSslSocket__PeerVerifyMode(C.QSslSocket_PeerVerifyMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSslSocket) PeerVerifyName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSslSocket_PeerVerifyName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSslSocket) ConnectPreSharedKeyAuthenticationRequired(f func(authenticator QSslPreSharedKeyAuthenticatorITF)) { + if ptr.Pointer() != nil { + C.QSslSocket_ConnectPreSharedKeyAuthenticationRequired(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "preSharedKeyAuthenticationRequired", f) + } +} + +func (ptr *QSslSocket) DisconnectPreSharedKeyAuthenticationRequired() { + if ptr.Pointer() != nil { + C.QSslSocket_DisconnectPreSharedKeyAuthenticationRequired(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "preSharedKeyAuthenticationRequired") + } +} + +//export callbackQSslSocketPreSharedKeyAuthenticationRequired +func callbackQSslSocketPreSharedKeyAuthenticationRequired(ptrName *C.char, authenticator unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "preSharedKeyAuthenticationRequired").(func(*QSslPreSharedKeyAuthenticator))(QSslPreSharedKeyAuthenticatorFromPointer(authenticator)) +} + +func (ptr *QSslSocket) Resume() { + if ptr.Pointer() != nil { + C.QSslSocket_Resume(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSslSocket) SetLocalCertificate(certificate QSslCertificateITF) { + if ptr.Pointer() != nil { + C.QSslSocket_SetLocalCertificate(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSslCertificate(certificate))) + } +} + +func (ptr *QSslSocket) SetPeerVerifyDepth(depth int) { + if ptr.Pointer() != nil { + C.QSslSocket_SetPeerVerifyDepth(C.QtObjectPtr(ptr.Pointer()), C.int(depth)) + } +} + +func (ptr *QSslSocket) SetPeerVerifyMode(mode QSslSocket__PeerVerifyMode) { + if ptr.Pointer() != nil { + C.QSslSocket_SetPeerVerifyMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QSslSocket) SetPeerVerifyName(hostName string) { + if ptr.Pointer() != nil { + C.QSslSocket_SetPeerVerifyName(C.QtObjectPtr(ptr.Pointer()), C.CString(hostName)) + } +} + +func (ptr *QSslSocket) SetPrivateKey(key QSslKeyITF) { + if ptr.Pointer() != nil { + C.QSslSocket_SetPrivateKey(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSslKey(key))) + } +} + +func (ptr *QSslSocket) SetSocketOption(option QAbstractSocket__SocketOption, value string) { + if ptr.Pointer() != nil { + C.QSslSocket_SetSocketOption(C.QtObjectPtr(ptr.Pointer()), C.int(option), C.CString(value)) + } +} + +func (ptr *QSslSocket) SetSslConfiguration(configuration QSslConfigurationITF) { + if ptr.Pointer() != nil { + C.QSslSocket_SetSslConfiguration(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSslConfiguration(configuration))) + } +} + +func (ptr *QSslSocket) SocketOption(option QAbstractSocket__SocketOption) string { + if ptr.Pointer() != nil { + return C.GoString(C.QSslSocket_SocketOption(C.QtObjectPtr(ptr.Pointer()), C.int(option))) + } + return "" +} + +func QSslSocket_SslLibraryBuildVersionString() string { + return C.GoString(C.QSslSocket_QSslSocket_SslLibraryBuildVersionString()) +} + +func QSslSocket_SslLibraryVersionString() string { + return C.GoString(C.QSslSocket_QSslSocket_SslLibraryVersionString()) +} + +func (ptr *QSslSocket) StartClientEncryption() { + if ptr.Pointer() != nil { + C.QSslSocket_StartClientEncryption(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSslSocket) StartServerEncryption() { + if ptr.Pointer() != nil { + C.QSslSocket_StartServerEncryption(C.QtObjectPtr(ptr.Pointer())) + } +} + +func QSslSocket_SupportsSsl() bool { + return C.QSslSocket_QSslSocket_SupportsSsl() != 0 +} + +func (ptr *QSslSocket) WaitForBytesWritten(msecs int) bool { + if ptr.Pointer() != nil { + return C.QSslSocket_WaitForBytesWritten(C.QtObjectPtr(ptr.Pointer()), C.int(msecs)) != 0 + } + return false +} + +func (ptr *QSslSocket) WaitForConnected(msecs int) bool { + if ptr.Pointer() != nil { + return C.QSslSocket_WaitForConnected(C.QtObjectPtr(ptr.Pointer()), C.int(msecs)) != 0 + } + return false +} + +func (ptr *QSslSocket) WaitForDisconnected(msecs int) bool { + if ptr.Pointer() != nil { + return C.QSslSocket_WaitForDisconnected(C.QtObjectPtr(ptr.Pointer()), C.int(msecs)) != 0 + } + return false +} + +func (ptr *QSslSocket) WaitForEncrypted(msecs int) bool { + if ptr.Pointer() != nil { + return C.QSslSocket_WaitForEncrypted(C.QtObjectPtr(ptr.Pointer()), C.int(msecs)) != 0 + } + return false +} + +func (ptr *QSslSocket) WaitForReadyRead(msecs int) bool { + if ptr.Pointer() != nil { + return C.QSslSocket_WaitForReadyRead(C.QtObjectPtr(ptr.Pointer()), C.int(msecs)) != 0 + } + return false +} + +func (ptr *QSslSocket) DestroyQSslSocket() { + if ptr.Pointer() != nil { + C.QSslSocket_DestroyQSslSocket(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/network/qsslsocket.h b/network/qsslsocket.h new file mode 100755 index 00000000..92144fe1 --- /dev/null +++ b/network/qsslsocket.h @@ -0,0 +1,49 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSslSocket_NewQSslSocket(QtObjectPtr parent); +void QSslSocket_Abort(QtObjectPtr ptr); +void QSslSocket_AddCaCertificate(QtObjectPtr ptr, QtObjectPtr certificate); +void QSslSocket_QSslSocket_AddDefaultCaCertificate(QtObjectPtr certificate); +int QSslSocket_AtEnd(QtObjectPtr ptr); +int QSslSocket_CanReadLine(QtObjectPtr ptr); +void QSslSocket_Close(QtObjectPtr ptr); +void QSslSocket_ConnectEncrypted(QtObjectPtr ptr); +void QSslSocket_DisconnectEncrypted(QtObjectPtr ptr); +int QSslSocket_Flush(QtObjectPtr ptr); +void QSslSocket_IgnoreSslErrors(QtObjectPtr ptr); +int QSslSocket_IsEncrypted(QtObjectPtr ptr); +int QSslSocket_Mode(QtObjectPtr ptr); +void QSslSocket_ConnectModeChanged(QtObjectPtr ptr); +void QSslSocket_DisconnectModeChanged(QtObjectPtr ptr); +int QSslSocket_PeerVerifyDepth(QtObjectPtr ptr); +int QSslSocket_PeerVerifyMode(QtObjectPtr ptr); +char* QSslSocket_PeerVerifyName(QtObjectPtr ptr); +void QSslSocket_ConnectPreSharedKeyAuthenticationRequired(QtObjectPtr ptr); +void QSslSocket_DisconnectPreSharedKeyAuthenticationRequired(QtObjectPtr ptr); +void QSslSocket_Resume(QtObjectPtr ptr); +void QSslSocket_SetLocalCertificate(QtObjectPtr ptr, QtObjectPtr certificate); +void QSslSocket_SetPeerVerifyDepth(QtObjectPtr ptr, int depth); +void QSslSocket_SetPeerVerifyMode(QtObjectPtr ptr, int mode); +void QSslSocket_SetPeerVerifyName(QtObjectPtr ptr, char* hostName); +void QSslSocket_SetPrivateKey(QtObjectPtr ptr, QtObjectPtr key); +void QSslSocket_SetSocketOption(QtObjectPtr ptr, int option, char* value); +void QSslSocket_SetSslConfiguration(QtObjectPtr ptr, QtObjectPtr configuration); +char* QSslSocket_SocketOption(QtObjectPtr ptr, int option); +char* QSslSocket_QSslSocket_SslLibraryBuildVersionString(); +char* QSslSocket_QSslSocket_SslLibraryVersionString(); +void QSslSocket_StartClientEncryption(QtObjectPtr ptr); +void QSslSocket_StartServerEncryption(QtObjectPtr ptr); +int QSslSocket_QSslSocket_SupportsSsl(); +int QSslSocket_WaitForBytesWritten(QtObjectPtr ptr, int msecs); +int QSslSocket_WaitForConnected(QtObjectPtr ptr, int msecs); +int QSslSocket_WaitForDisconnected(QtObjectPtr ptr, int msecs); +int QSslSocket_WaitForEncrypted(QtObjectPtr ptr, int msecs); +int QSslSocket_WaitForReadyRead(QtObjectPtr ptr, int msecs); +void QSslSocket_DestroyQSslSocket(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qtcpserver.cpp b/network/qtcpserver.cpp new file mode 100755 index 00000000..47f38826 --- /dev/null +++ b/network/qtcpserver.cpp @@ -0,0 +1,89 @@ +#include "qtcpserver.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTcpServer: public QTcpServer { +public: +void Signal_AcceptError(QAbstractSocket::SocketError socketError){callbackQTcpServerAcceptError(this->objectName().toUtf8().data(), socketError);}; +void Signal_NewConnection(){callbackQTcpServerNewConnection(this->objectName().toUtf8().data());}; +}; + +QtObjectPtr QTcpServer_NewQTcpServer(QtObjectPtr parent){ + return new QTcpServer(static_cast(parent)); +} + +void QTcpServer_ConnectAcceptError(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTcpServer::acceptError), static_cast(ptr), static_cast(&MyQTcpServer::Signal_AcceptError));; +} + +void QTcpServer_DisconnectAcceptError(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTcpServer::acceptError), static_cast(ptr), static_cast(&MyQTcpServer::Signal_AcceptError));; +} + +void QTcpServer_Close(QtObjectPtr ptr){ + static_cast(ptr)->close(); +} + +char* QTcpServer_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +int QTcpServer_HasPendingConnections(QtObjectPtr ptr){ + return static_cast(ptr)->hasPendingConnections(); +} + +int QTcpServer_IsListening(QtObjectPtr ptr){ + return static_cast(ptr)->isListening(); +} + +int QTcpServer_MaxPendingConnections(QtObjectPtr ptr){ + return static_cast(ptr)->maxPendingConnections(); +} + +void QTcpServer_ConnectNewConnection(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTcpServer::newConnection), static_cast(ptr), static_cast(&MyQTcpServer::Signal_NewConnection));; +} + +void QTcpServer_DisconnectNewConnection(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTcpServer::newConnection), static_cast(ptr), static_cast(&MyQTcpServer::Signal_NewConnection));; +} + +QtObjectPtr QTcpServer_NextPendingConnection(QtObjectPtr ptr){ + return static_cast(ptr)->nextPendingConnection(); +} + +void QTcpServer_PauseAccepting(QtObjectPtr ptr){ + static_cast(ptr)->pauseAccepting(); +} + +void QTcpServer_ResumeAccepting(QtObjectPtr ptr){ + static_cast(ptr)->resumeAccepting(); +} + +int QTcpServer_ServerError(QtObjectPtr ptr){ + return static_cast(ptr)->serverError(); +} + +void QTcpServer_SetMaxPendingConnections(QtObjectPtr ptr, int numConnections){ + static_cast(ptr)->setMaxPendingConnections(numConnections); +} + +void QTcpServer_SetProxy(QtObjectPtr ptr, QtObjectPtr networkProxy){ + static_cast(ptr)->setProxy(*static_cast(networkProxy)); +} + +int QTcpServer_WaitForNewConnection(QtObjectPtr ptr, int msec, int timedOut){ + return static_cast(ptr)->waitForNewConnection(msec, NULL); +} + +void QTcpServer_DestroyQTcpServer(QtObjectPtr ptr){ + static_cast(ptr)->~QTcpServer(); +} + diff --git a/network/qtcpserver.go b/network/qtcpserver.go new file mode 100755 index 00000000..cc7c99e3 --- /dev/null +++ b/network/qtcpserver.go @@ -0,0 +1,166 @@ +package network + +//#include "qtcpserver.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QTcpServer struct { + core.QObject +} + +type QTcpServerITF interface { + core.QObjectITF + QTcpServerPTR() *QTcpServer +} + +func PointerFromQTcpServer(ptr QTcpServerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTcpServerPTR().Pointer() + } + return nil +} + +func QTcpServerFromPointer(ptr unsafe.Pointer) *QTcpServer { + var n = new(QTcpServer) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QTcpServer_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QTcpServer) QTcpServerPTR() *QTcpServer { + return ptr +} + +func NewQTcpServer(parent core.QObjectITF) *QTcpServer { + return QTcpServerFromPointer(unsafe.Pointer(C.QTcpServer_NewQTcpServer(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QTcpServer) ConnectAcceptError(f func(socketError QAbstractSocket__SocketError)) { + if ptr.Pointer() != nil { + C.QTcpServer_ConnectAcceptError(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "acceptError", f) + } +} + +func (ptr *QTcpServer) DisconnectAcceptError() { + if ptr.Pointer() != nil { + C.QTcpServer_DisconnectAcceptError(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "acceptError") + } +} + +//export callbackQTcpServerAcceptError +func callbackQTcpServerAcceptError(ptrName *C.char, socketError C.int) { + qt.GetSignal(C.GoString(ptrName), "acceptError").(func(QAbstractSocket__SocketError))(QAbstractSocket__SocketError(socketError)) +} + +func (ptr *QTcpServer) Close() { + if ptr.Pointer() != nil { + C.QTcpServer_Close(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTcpServer) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTcpServer_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTcpServer) HasPendingConnections() bool { + if ptr.Pointer() != nil { + return C.QTcpServer_HasPendingConnections(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTcpServer) IsListening() bool { + if ptr.Pointer() != nil { + return C.QTcpServer_IsListening(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTcpServer) MaxPendingConnections() int { + if ptr.Pointer() != nil { + return int(C.QTcpServer_MaxPendingConnections(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTcpServer) ConnectNewConnection(f func()) { + if ptr.Pointer() != nil { + C.QTcpServer_ConnectNewConnection(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "newConnection", f) + } +} + +func (ptr *QTcpServer) DisconnectNewConnection() { + if ptr.Pointer() != nil { + C.QTcpServer_DisconnectNewConnection(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "newConnection") + } +} + +//export callbackQTcpServerNewConnection +func callbackQTcpServerNewConnection(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "newConnection").(func())() +} + +func (ptr *QTcpServer) NextPendingConnection() *QTcpSocket { + if ptr.Pointer() != nil { + return QTcpSocketFromPointer(unsafe.Pointer(C.QTcpServer_NextPendingConnection(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTcpServer) PauseAccepting() { + if ptr.Pointer() != nil { + C.QTcpServer_PauseAccepting(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTcpServer) ResumeAccepting() { + if ptr.Pointer() != nil { + C.QTcpServer_ResumeAccepting(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTcpServer) ServerError() QAbstractSocket__SocketError { + if ptr.Pointer() != nil { + return QAbstractSocket__SocketError(C.QTcpServer_ServerError(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTcpServer) SetMaxPendingConnections(numConnections int) { + if ptr.Pointer() != nil { + C.QTcpServer_SetMaxPendingConnections(C.QtObjectPtr(ptr.Pointer()), C.int(numConnections)) + } +} + +func (ptr *QTcpServer) SetProxy(networkProxy QNetworkProxyITF) { + if ptr.Pointer() != nil { + C.QTcpServer_SetProxy(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkProxy(networkProxy))) + } +} + +func (ptr *QTcpServer) WaitForNewConnection(msec int, timedOut bool) bool { + if ptr.Pointer() != nil { + return C.QTcpServer_WaitForNewConnection(C.QtObjectPtr(ptr.Pointer()), C.int(msec), C.int(qt.GoBoolToInt(timedOut))) != 0 + } + return false +} + +func (ptr *QTcpServer) DestroyQTcpServer() { + if ptr.Pointer() != nil { + C.QTcpServer_DestroyQTcpServer(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/network/qtcpserver.h b/network/qtcpserver.h new file mode 100755 index 00000000..36855462 --- /dev/null +++ b/network/qtcpserver.h @@ -0,0 +1,27 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTcpServer_NewQTcpServer(QtObjectPtr parent); +void QTcpServer_ConnectAcceptError(QtObjectPtr ptr); +void QTcpServer_DisconnectAcceptError(QtObjectPtr ptr); +void QTcpServer_Close(QtObjectPtr ptr); +char* QTcpServer_ErrorString(QtObjectPtr ptr); +int QTcpServer_HasPendingConnections(QtObjectPtr ptr); +int QTcpServer_IsListening(QtObjectPtr ptr); +int QTcpServer_MaxPendingConnections(QtObjectPtr ptr); +void QTcpServer_ConnectNewConnection(QtObjectPtr ptr); +void QTcpServer_DisconnectNewConnection(QtObjectPtr ptr); +QtObjectPtr QTcpServer_NextPendingConnection(QtObjectPtr ptr); +void QTcpServer_PauseAccepting(QtObjectPtr ptr); +void QTcpServer_ResumeAccepting(QtObjectPtr ptr); +int QTcpServer_ServerError(QtObjectPtr ptr); +void QTcpServer_SetMaxPendingConnections(QtObjectPtr ptr, int numConnections); +void QTcpServer_SetProxy(QtObjectPtr ptr, QtObjectPtr networkProxy); +int QTcpServer_WaitForNewConnection(QtObjectPtr ptr, int msec, int timedOut); +void QTcpServer_DestroyQTcpServer(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qtcpsocket.cpp b/network/qtcpsocket.cpp new file mode 100755 index 00000000..ee89dae8 --- /dev/null +++ b/network/qtcpsocket.cpp @@ -0,0 +1,21 @@ +#include "qtcpsocket.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTcpSocket: public QTcpSocket { +public: +}; + +QtObjectPtr QTcpSocket_NewQTcpSocket(QtObjectPtr parent){ + return new QTcpSocket(static_cast(parent)); +} + +void QTcpSocket_DestroyQTcpSocket(QtObjectPtr ptr){ + static_cast(ptr)->~QTcpSocket(); +} + diff --git a/network/qtcpsocket.go b/network/qtcpsocket.go new file mode 100755 index 00000000..7d6c3f27 --- /dev/null +++ b/network/qtcpsocket.go @@ -0,0 +1,49 @@ +package network + +//#include "qtcpsocket.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QTcpSocket struct { + QAbstractSocket +} + +type QTcpSocketITF interface { + QAbstractSocketITF + QTcpSocketPTR() *QTcpSocket +} + +func PointerFromQTcpSocket(ptr QTcpSocketITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTcpSocketPTR().Pointer() + } + return nil +} + +func QTcpSocketFromPointer(ptr unsafe.Pointer) *QTcpSocket { + var n = new(QTcpSocket) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QTcpSocket_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QTcpSocket) QTcpSocketPTR() *QTcpSocket { + return ptr +} + +func NewQTcpSocket(parent core.QObjectITF) *QTcpSocket { + return QTcpSocketFromPointer(unsafe.Pointer(C.QTcpSocket_NewQTcpSocket(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QTcpSocket) DestroyQTcpSocket() { + if ptr.Pointer() != nil { + C.QTcpSocket_DestroyQTcpSocket(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/network/qtcpsocket.h b/network/qtcpsocket.h new file mode 100755 index 00000000..acba5f8e --- /dev/null +++ b/network/qtcpsocket.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTcpSocket_NewQTcpSocket(QtObjectPtr parent); +void QTcpSocket_DestroyQTcpSocket(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/network/qudpsocket.cpp b/network/qudpsocket.cpp new file mode 100755 index 00000000..f934624f --- /dev/null +++ b/network/qudpsocket.cpp @@ -0,0 +1,47 @@ +#include "qudpsocket.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQUdpSocket: public QUdpSocket { +public: +}; + +QtObjectPtr QUdpSocket_NewQUdpSocket(QtObjectPtr parent){ + return new QUdpSocket(static_cast(parent)); +} + +int QUdpSocket_HasPendingDatagrams(QtObjectPtr ptr){ + return static_cast(ptr)->hasPendingDatagrams(); +} + +int QUdpSocket_JoinMulticastGroup(QtObjectPtr ptr, QtObjectPtr groupAddress){ + return static_cast(ptr)->joinMulticastGroup(*static_cast(groupAddress)); +} + +int QUdpSocket_JoinMulticastGroup2(QtObjectPtr ptr, QtObjectPtr groupAddress, QtObjectPtr iface){ + return static_cast(ptr)->joinMulticastGroup(*static_cast(groupAddress), *static_cast(iface)); +} + +int QUdpSocket_LeaveMulticastGroup(QtObjectPtr ptr, QtObjectPtr groupAddress){ + return static_cast(ptr)->leaveMulticastGroup(*static_cast(groupAddress)); +} + +int QUdpSocket_LeaveMulticastGroup2(QtObjectPtr ptr, QtObjectPtr groupAddress, QtObjectPtr iface){ + return static_cast(ptr)->leaveMulticastGroup(*static_cast(groupAddress), *static_cast(iface)); +} + +void QUdpSocket_SetMulticastInterface(QtObjectPtr ptr, QtObjectPtr iface){ + static_cast(ptr)->setMulticastInterface(*static_cast(iface)); +} + +void QUdpSocket_DestroyQUdpSocket(QtObjectPtr ptr){ + static_cast(ptr)->~QUdpSocket(); +} + diff --git a/network/qudpsocket.go b/network/qudpsocket.go new file mode 100755 index 00000000..a8574cf2 --- /dev/null +++ b/network/qudpsocket.go @@ -0,0 +1,90 @@ +package network + +//#include "qudpsocket.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QUdpSocket struct { + QAbstractSocket +} + +type QUdpSocketITF interface { + QAbstractSocketITF + QUdpSocketPTR() *QUdpSocket +} + +func PointerFromQUdpSocket(ptr QUdpSocketITF) unsafe.Pointer { + if ptr != nil { + return ptr.QUdpSocketPTR().Pointer() + } + return nil +} + +func QUdpSocketFromPointer(ptr unsafe.Pointer) *QUdpSocket { + var n = new(QUdpSocket) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QUdpSocket_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QUdpSocket) QUdpSocketPTR() *QUdpSocket { + return ptr +} + +func NewQUdpSocket(parent core.QObjectITF) *QUdpSocket { + return QUdpSocketFromPointer(unsafe.Pointer(C.QUdpSocket_NewQUdpSocket(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QUdpSocket) HasPendingDatagrams() bool { + if ptr.Pointer() != nil { + return C.QUdpSocket_HasPendingDatagrams(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QUdpSocket) JoinMulticastGroup(groupAddress QHostAddressITF) bool { + if ptr.Pointer() != nil { + return C.QUdpSocket_JoinMulticastGroup(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQHostAddress(groupAddress))) != 0 + } + return false +} + +func (ptr *QUdpSocket) JoinMulticastGroup2(groupAddress QHostAddressITF, iface QNetworkInterfaceITF) bool { + if ptr.Pointer() != nil { + return C.QUdpSocket_JoinMulticastGroup2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQHostAddress(groupAddress)), C.QtObjectPtr(PointerFromQNetworkInterface(iface))) != 0 + } + return false +} + +func (ptr *QUdpSocket) LeaveMulticastGroup(groupAddress QHostAddressITF) bool { + if ptr.Pointer() != nil { + return C.QUdpSocket_LeaveMulticastGroup(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQHostAddress(groupAddress))) != 0 + } + return false +} + +func (ptr *QUdpSocket) LeaveMulticastGroup2(groupAddress QHostAddressITF, iface QNetworkInterfaceITF) bool { + if ptr.Pointer() != nil { + return C.QUdpSocket_LeaveMulticastGroup2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQHostAddress(groupAddress)), C.QtObjectPtr(PointerFromQNetworkInterface(iface))) != 0 + } + return false +} + +func (ptr *QUdpSocket) SetMulticastInterface(iface QNetworkInterfaceITF) { + if ptr.Pointer() != nil { + C.QUdpSocket_SetMulticastInterface(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNetworkInterface(iface))) + } +} + +func (ptr *QUdpSocket) DestroyQUdpSocket() { + if ptr.Pointer() != nil { + C.QUdpSocket_DestroyQUdpSocket(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/network/qudpsocket.h b/network/qudpsocket.h new file mode 100755 index 00000000..77bc63e7 --- /dev/null +++ b/network/qudpsocket.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QUdpSocket_NewQUdpSocket(QtObjectPtr parent); +int QUdpSocket_HasPendingDatagrams(QtObjectPtr ptr); +int QUdpSocket_JoinMulticastGroup(QtObjectPtr ptr, QtObjectPtr groupAddress); +int QUdpSocket_JoinMulticastGroup2(QtObjectPtr ptr, QtObjectPtr groupAddress, QtObjectPtr iface); +int QUdpSocket_LeaveMulticastGroup(QtObjectPtr ptr, QtObjectPtr groupAddress); +int QUdpSocket_LeaveMulticastGroup2(QtObjectPtr ptr, QtObjectPtr groupAddress, QtObjectPtr iface); +void QUdpSocket_SetMulticastInterface(QtObjectPtr ptr, QtObjectPtr iface); +void QUdpSocket_DestroyQUdpSocket(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/nfc/cgo_darwin_amd64.go b/nfc/cgo_darwin_amd64.go new file mode 100755 index 00000000..270f3a58 --- /dev/null +++ b/nfc/cgo_darwin_amd64.go @@ -0,0 +1,13 @@ +package nfc + +/* +#cgo CPPFLAGS: -pipe -O2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 -Wall -W +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_NFC_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/mkspecs/macx-clang -F/usr/local/Qt5.5.1/5.5/clang_64/lib +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtCore.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtNfc.framework/Headers +#cgo CPPFLAGS: -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.framework/Headers + +#cgo LDFLAGS: -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 +#cgo LDFLAGS: -F/usr/local/Qt5.5.1/5.5/clang_64/lib -framework QtCore -framework QtNfc -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL +*/ +import "C" diff --git a/nfc/cgo_linux_386.go b/nfc/cgo_linux_386.go new file mode 100755 index 00000000..b9536303 --- /dev/null +++ b/nfc/cgo_linux_386.go @@ -0,0 +1,12 @@ +package nfc + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_NFC_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include -I/usr/local/Qt5.5.1/5.5/gcc/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc/include/QtNfc + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc/lib -L/usr/lib -lQt5Core -lQt5Nfc -lpthread +*/ +import "C" diff --git a/nfc/cgo_linux_amd64.go b/nfc/cgo_linux_amd64.go new file mode 100755 index 00000000..3f1e1b22 --- /dev/null +++ b/nfc/cgo_linux_amd64.go @@ -0,0 +1,12 @@ +package nfc + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_NFC_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include -I/usr/local/Qt5.5.1/5.5/gcc_64/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtNfc + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc_64/lib -L/usr/lib64 -lQt5Core -lQt5Nfc -lpthread +*/ +import "C" diff --git a/nfc/cgo_windows_386.go b/nfc/cgo_windows_386.go new file mode 100755 index 00000000..8cbf5edb --- /dev/null +++ b/nfc/cgo_windows_386.go @@ -0,0 +1,12 @@ +package nfc + +/* +#cgo CPPFLAGS: -pipe -fno-keep-inline-dllexport -O2 -Wall -Wextra -fexceptions -mthreads +#cgo CPPFLAGS: -DUNICODE -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_NFC_LIB +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include -IC:/Qt/Qt5.5.1/5.5/mingw492_32/mkspecs/win32-g++ +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtCore -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtNfc + +#cgo LDFLAGS: -Wl,-s -Wl,-subsystem,windows -mthreads +#cgo LDFLAGS: -LC:/Qt/Qt5.5.1/5.5/mingw492_32/bin -lQt5Core -lQt5Nfc +*/ +import "C" diff --git a/nfc/qndeffilter.cpp b/nfc/qndeffilter.cpp new file mode 100755 index 00000000..9f6b938e --- /dev/null +++ b/nfc/qndeffilter.cpp @@ -0,0 +1,40 @@ +#include "qndeffilter.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQNdefFilter: public QNdefFilter { +public: +}; + +QtObjectPtr QNdefFilter_NewQNdefFilter(){ + return new QNdefFilter(); +} + +QtObjectPtr QNdefFilter_NewQNdefFilter2(QtObjectPtr other){ + return new QNdefFilter(*static_cast(other)); +} + +void QNdefFilter_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +int QNdefFilter_OrderMatch(QtObjectPtr ptr){ + return static_cast(ptr)->orderMatch(); +} + +int QNdefFilter_RecordCount(QtObjectPtr ptr){ + return static_cast(ptr)->recordCount(); +} + +void QNdefFilter_SetOrderMatch(QtObjectPtr ptr, int on){ + static_cast(ptr)->setOrderMatch(on != 0); +} + +void QNdefFilter_DestroyQNdefFilter(QtObjectPtr ptr){ + static_cast(ptr)->~QNdefFilter(); +} + diff --git a/nfc/qndeffilter.go b/nfc/qndeffilter.go new file mode 100755 index 00000000..4d8f9ac2 --- /dev/null +++ b/nfc/qndeffilter.go @@ -0,0 +1,81 @@ +package nfc + +//#include "qndeffilter.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QNdefFilter struct { + ptr unsafe.Pointer +} + +type QNdefFilterITF interface { + QNdefFilterPTR() *QNdefFilter +} + +func (p *QNdefFilter) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QNdefFilter) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQNdefFilter(ptr QNdefFilterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QNdefFilterPTR().Pointer() + } + return nil +} + +func QNdefFilterFromPointer(ptr unsafe.Pointer) *QNdefFilter { + var n = new(QNdefFilter) + n.SetPointer(ptr) + return n +} + +func (ptr *QNdefFilter) QNdefFilterPTR() *QNdefFilter { + return ptr +} + +func NewQNdefFilter() *QNdefFilter { + return QNdefFilterFromPointer(unsafe.Pointer(C.QNdefFilter_NewQNdefFilter())) +} + +func NewQNdefFilter2(other QNdefFilterITF) *QNdefFilter { + return QNdefFilterFromPointer(unsafe.Pointer(C.QNdefFilter_NewQNdefFilter2(C.QtObjectPtr(PointerFromQNdefFilter(other))))) +} + +func (ptr *QNdefFilter) Clear() { + if ptr.Pointer() != nil { + C.QNdefFilter_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QNdefFilter) OrderMatch() bool { + if ptr.Pointer() != nil { + return C.QNdefFilter_OrderMatch(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QNdefFilter) RecordCount() int { + if ptr.Pointer() != nil { + return int(C.QNdefFilter_RecordCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNdefFilter) SetOrderMatch(on bool) { + if ptr.Pointer() != nil { + C.QNdefFilter_SetOrderMatch(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(on))) + } +} + +func (ptr *QNdefFilter) DestroyQNdefFilter() { + if ptr.Pointer() != nil { + C.QNdefFilter_DestroyQNdefFilter(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/nfc/qndeffilter.h b/nfc/qndeffilter.h new file mode 100755 index 00000000..9550da30 --- /dev/null +++ b/nfc/qndeffilter.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QNdefFilter_NewQNdefFilter(); +QtObjectPtr QNdefFilter_NewQNdefFilter2(QtObjectPtr other); +void QNdefFilter_Clear(QtObjectPtr ptr); +int QNdefFilter_OrderMatch(QtObjectPtr ptr); +int QNdefFilter_RecordCount(QtObjectPtr ptr); +void QNdefFilter_SetOrderMatch(QtObjectPtr ptr, int on); +void QNdefFilter_DestroyQNdefFilter(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/nfc/qndefmessage.cpp b/nfc/qndefmessage.cpp new file mode 100755 index 00000000..2b0ca7cf --- /dev/null +++ b/nfc/qndefmessage.cpp @@ -0,0 +1,25 @@ +#include "qndefmessage.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQNdefMessage: public QNdefMessage { +public: +}; + +QtObjectPtr QNdefMessage_NewQNdefMessage(){ + return new QNdefMessage(); +} + +QtObjectPtr QNdefMessage_NewQNdefMessage3(QtObjectPtr message){ + return new QNdefMessage(*static_cast(message)); +} + +QtObjectPtr QNdefMessage_NewQNdefMessage2(QtObjectPtr record){ + return new QNdefMessage(*static_cast(record)); +} + diff --git a/nfc/qndefmessage.go b/nfc/qndefmessage.go new file mode 100755 index 00000000..b08fac35 --- /dev/null +++ b/nfc/qndefmessage.go @@ -0,0 +1,46 @@ +package nfc + +//#include "qndefmessage.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QNdefMessage struct { + core.QList +} + +type QNdefMessageITF interface { + core.QListITF + QNdefMessagePTR() *QNdefMessage +} + +func PointerFromQNdefMessage(ptr QNdefMessageITF) unsafe.Pointer { + if ptr != nil { + return ptr.QNdefMessagePTR().Pointer() + } + return nil +} + +func QNdefMessageFromPointer(ptr unsafe.Pointer) *QNdefMessage { + var n = new(QNdefMessage) + n.SetPointer(ptr) + return n +} + +func (ptr *QNdefMessage) QNdefMessagePTR() *QNdefMessage { + return ptr +} + +func NewQNdefMessage() *QNdefMessage { + return QNdefMessageFromPointer(unsafe.Pointer(C.QNdefMessage_NewQNdefMessage())) +} + +func NewQNdefMessage3(message QNdefMessageITF) *QNdefMessage { + return QNdefMessageFromPointer(unsafe.Pointer(C.QNdefMessage_NewQNdefMessage3(C.QtObjectPtr(PointerFromQNdefMessage(message))))) +} + +func NewQNdefMessage2(record QNdefRecordITF) *QNdefMessage { + return QNdefMessageFromPointer(unsafe.Pointer(C.QNdefMessage_NewQNdefMessage2(C.QtObjectPtr(PointerFromQNdefRecord(record))))) +} diff --git a/nfc/qndefmessage.h b/nfc/qndefmessage.h new file mode 100755 index 00000000..6d72d2f1 --- /dev/null +++ b/nfc/qndefmessage.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QNdefMessage_NewQNdefMessage(); +QtObjectPtr QNdefMessage_NewQNdefMessage3(QtObjectPtr message); +QtObjectPtr QNdefMessage_NewQNdefMessage2(QtObjectPtr record); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/nfc/qndefnfcsmartposterrecord.cpp b/nfc/qndefnfcsmartposterrecord.cpp new file mode 100755 index 00000000..2499df87 --- /dev/null +++ b/nfc/qndefnfcsmartposterrecord.cpp @@ -0,0 +1,112 @@ +#include "qndefnfcsmartposterrecord.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQNdefNfcSmartPosterRecord: public QNdefNfcSmartPosterRecord { +public: +}; + +QtObjectPtr QNdefNfcSmartPosterRecord_NewQNdefNfcSmartPosterRecord(){ + return new QNdefNfcSmartPosterRecord(); +} + +QtObjectPtr QNdefNfcSmartPosterRecord_NewQNdefNfcSmartPosterRecord3(QtObjectPtr other){ + return new QNdefNfcSmartPosterRecord(*static_cast(other)); +} + +QtObjectPtr QNdefNfcSmartPosterRecord_NewQNdefNfcSmartPosterRecord2(QtObjectPtr other){ + return new QNdefNfcSmartPosterRecord(*static_cast(other)); +} + +int QNdefNfcSmartPosterRecord_Action(QtObjectPtr ptr){ + return static_cast(ptr)->action(); +} + +void QNdefNfcSmartPosterRecord_AddIcon2(QtObjectPtr ptr, QtObjectPtr ty, QtObjectPtr data){ + static_cast(ptr)->addIcon(*static_cast(ty), *static_cast(data)); +} + +int QNdefNfcSmartPosterRecord_AddTitle(QtObjectPtr ptr, QtObjectPtr text){ + return static_cast(ptr)->addTitle(*static_cast(text)); +} + +int QNdefNfcSmartPosterRecord_AddTitle2(QtObjectPtr ptr, char* text, char* locale, int encoding){ + return static_cast(ptr)->addTitle(QString(text), QString(locale), static_cast(encoding)); +} + +int QNdefNfcSmartPosterRecord_HasAction(QtObjectPtr ptr){ + return static_cast(ptr)->hasAction(); +} + +int QNdefNfcSmartPosterRecord_HasIcon(QtObjectPtr ptr, QtObjectPtr mimetype){ + return static_cast(ptr)->hasIcon(*static_cast(mimetype)); +} + +int QNdefNfcSmartPosterRecord_HasSize(QtObjectPtr ptr){ + return static_cast(ptr)->hasSize(); +} + +int QNdefNfcSmartPosterRecord_HasTitle(QtObjectPtr ptr, char* locale){ + return static_cast(ptr)->hasTitle(QString(locale)); +} + +int QNdefNfcSmartPosterRecord_HasTypeInfo(QtObjectPtr ptr){ + return static_cast(ptr)->hasTypeInfo(); +} + +int QNdefNfcSmartPosterRecord_IconCount(QtObjectPtr ptr){ + return static_cast(ptr)->iconCount(); +} + +int QNdefNfcSmartPosterRecord_RemoveIcon2(QtObjectPtr ptr, QtObjectPtr ty){ + return static_cast(ptr)->removeIcon(*static_cast(ty)); +} + +int QNdefNfcSmartPosterRecord_RemoveTitle(QtObjectPtr ptr, QtObjectPtr text){ + return static_cast(ptr)->removeTitle(*static_cast(text)); +} + +int QNdefNfcSmartPosterRecord_RemoveTitle2(QtObjectPtr ptr, char* locale){ + return static_cast(ptr)->removeTitle(QString(locale)); +} + +void QNdefNfcSmartPosterRecord_SetAction(QtObjectPtr ptr, int act){ + static_cast(ptr)->setAction(static_cast(act)); +} + +void QNdefNfcSmartPosterRecord_SetTypeInfo(QtObjectPtr ptr, QtObjectPtr ty){ + static_cast(ptr)->setTypeInfo(*static_cast(ty)); +} + +void QNdefNfcSmartPosterRecord_SetUri(QtObjectPtr ptr, QtObjectPtr url){ + static_cast(ptr)->setUri(*static_cast(url)); +} + +void QNdefNfcSmartPosterRecord_SetUri2(QtObjectPtr ptr, char* url){ + static_cast(ptr)->setUri(QUrl(QString(url))); +} + +char* QNdefNfcSmartPosterRecord_Title(QtObjectPtr ptr, char* locale){ + return static_cast(ptr)->title(QString(locale)).toUtf8().data(); +} + +int QNdefNfcSmartPosterRecord_TitleCount(QtObjectPtr ptr){ + return static_cast(ptr)->titleCount(); +} + +char* QNdefNfcSmartPosterRecord_Uri(QtObjectPtr ptr){ + return static_cast(ptr)->uri().toString().toUtf8().data(); +} + +void QNdefNfcSmartPosterRecord_DestroyQNdefNfcSmartPosterRecord(QtObjectPtr ptr){ + static_cast(ptr)->~QNdefNfcSmartPosterRecord(); +} + diff --git a/nfc/qndefnfcsmartposterrecord.go b/nfc/qndefnfcsmartposterrecord.go new file mode 100755 index 00000000..0feb16d7 --- /dev/null +++ b/nfc/qndefnfcsmartposterrecord.go @@ -0,0 +1,197 @@ +package nfc + +//#include "qndefnfcsmartposterrecord.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QNdefNfcSmartPosterRecord struct { + QNdefRecord +} + +type QNdefNfcSmartPosterRecordITF interface { + QNdefRecordITF + QNdefNfcSmartPosterRecordPTR() *QNdefNfcSmartPosterRecord +} + +func PointerFromQNdefNfcSmartPosterRecord(ptr QNdefNfcSmartPosterRecordITF) unsafe.Pointer { + if ptr != nil { + return ptr.QNdefNfcSmartPosterRecordPTR().Pointer() + } + return nil +} + +func QNdefNfcSmartPosterRecordFromPointer(ptr unsafe.Pointer) *QNdefNfcSmartPosterRecord { + var n = new(QNdefNfcSmartPosterRecord) + n.SetPointer(ptr) + return n +} + +func (ptr *QNdefNfcSmartPosterRecord) QNdefNfcSmartPosterRecordPTR() *QNdefNfcSmartPosterRecord { + return ptr +} + +//QNdefNfcSmartPosterRecord::Action +type QNdefNfcSmartPosterRecord__Action int + +var ( + QNdefNfcSmartPosterRecord__UnspecifiedAction = QNdefNfcSmartPosterRecord__Action(-1) + QNdefNfcSmartPosterRecord__DoAction = QNdefNfcSmartPosterRecord__Action(0) + QNdefNfcSmartPosterRecord__SaveAction = QNdefNfcSmartPosterRecord__Action(1) + QNdefNfcSmartPosterRecord__EditAction = QNdefNfcSmartPosterRecord__Action(2) +) + +func NewQNdefNfcSmartPosterRecord() *QNdefNfcSmartPosterRecord { + return QNdefNfcSmartPosterRecordFromPointer(unsafe.Pointer(C.QNdefNfcSmartPosterRecord_NewQNdefNfcSmartPosterRecord())) +} + +func NewQNdefNfcSmartPosterRecord3(other QNdefNfcSmartPosterRecordITF) *QNdefNfcSmartPosterRecord { + return QNdefNfcSmartPosterRecordFromPointer(unsafe.Pointer(C.QNdefNfcSmartPosterRecord_NewQNdefNfcSmartPosterRecord3(C.QtObjectPtr(PointerFromQNdefNfcSmartPosterRecord(other))))) +} + +func NewQNdefNfcSmartPosterRecord2(other QNdefRecordITF) *QNdefNfcSmartPosterRecord { + return QNdefNfcSmartPosterRecordFromPointer(unsafe.Pointer(C.QNdefNfcSmartPosterRecord_NewQNdefNfcSmartPosterRecord2(C.QtObjectPtr(PointerFromQNdefRecord(other))))) +} + +func (ptr *QNdefNfcSmartPosterRecord) Action() QNdefNfcSmartPosterRecord__Action { + if ptr.Pointer() != nil { + return QNdefNfcSmartPosterRecord__Action(C.QNdefNfcSmartPosterRecord_Action(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNdefNfcSmartPosterRecord) AddIcon2(ty core.QByteArrayITF, data core.QByteArrayITF) { + if ptr.Pointer() != nil { + C.QNdefNfcSmartPosterRecord_AddIcon2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(ty)), C.QtObjectPtr(core.PointerFromQByteArray(data))) + } +} + +func (ptr *QNdefNfcSmartPosterRecord) AddTitle(text QNdefNfcTextRecordITF) bool { + if ptr.Pointer() != nil { + return C.QNdefNfcSmartPosterRecord_AddTitle(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNdefNfcTextRecord(text))) != 0 + } + return false +} + +func (ptr *QNdefNfcSmartPosterRecord) AddTitle2(text string, locale string, encoding QNdefNfcTextRecord__Encoding) bool { + if ptr.Pointer() != nil { + return C.QNdefNfcSmartPosterRecord_AddTitle2(C.QtObjectPtr(ptr.Pointer()), C.CString(text), C.CString(locale), C.int(encoding)) != 0 + } + return false +} + +func (ptr *QNdefNfcSmartPosterRecord) HasAction() bool { + if ptr.Pointer() != nil { + return C.QNdefNfcSmartPosterRecord_HasAction(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QNdefNfcSmartPosterRecord) HasIcon(mimetype core.QByteArrayITF) bool { + if ptr.Pointer() != nil { + return C.QNdefNfcSmartPosterRecord_HasIcon(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(mimetype))) != 0 + } + return false +} + +func (ptr *QNdefNfcSmartPosterRecord) HasSize() bool { + if ptr.Pointer() != nil { + return C.QNdefNfcSmartPosterRecord_HasSize(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QNdefNfcSmartPosterRecord) HasTitle(locale string) bool { + if ptr.Pointer() != nil { + return C.QNdefNfcSmartPosterRecord_HasTitle(C.QtObjectPtr(ptr.Pointer()), C.CString(locale)) != 0 + } + return false +} + +func (ptr *QNdefNfcSmartPosterRecord) HasTypeInfo() bool { + if ptr.Pointer() != nil { + return C.QNdefNfcSmartPosterRecord_HasTypeInfo(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QNdefNfcSmartPosterRecord) IconCount() int { + if ptr.Pointer() != nil { + return int(C.QNdefNfcSmartPosterRecord_IconCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNdefNfcSmartPosterRecord) RemoveIcon2(ty core.QByteArrayITF) bool { + if ptr.Pointer() != nil { + return C.QNdefNfcSmartPosterRecord_RemoveIcon2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(ty))) != 0 + } + return false +} + +func (ptr *QNdefNfcSmartPosterRecord) RemoveTitle(text QNdefNfcTextRecordITF) bool { + if ptr.Pointer() != nil { + return C.QNdefNfcSmartPosterRecord_RemoveTitle(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNdefNfcTextRecord(text))) != 0 + } + return false +} + +func (ptr *QNdefNfcSmartPosterRecord) RemoveTitle2(locale string) bool { + if ptr.Pointer() != nil { + return C.QNdefNfcSmartPosterRecord_RemoveTitle2(C.QtObjectPtr(ptr.Pointer()), C.CString(locale)) != 0 + } + return false +} + +func (ptr *QNdefNfcSmartPosterRecord) SetAction(act QNdefNfcSmartPosterRecord__Action) { + if ptr.Pointer() != nil { + C.QNdefNfcSmartPosterRecord_SetAction(C.QtObjectPtr(ptr.Pointer()), C.int(act)) + } +} + +func (ptr *QNdefNfcSmartPosterRecord) SetTypeInfo(ty core.QByteArrayITF) { + if ptr.Pointer() != nil { + C.QNdefNfcSmartPosterRecord_SetTypeInfo(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(ty))) + } +} + +func (ptr *QNdefNfcSmartPosterRecord) SetUri(url QNdefNfcUriRecordITF) { + if ptr.Pointer() != nil { + C.QNdefNfcSmartPosterRecord_SetUri(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNdefNfcUriRecord(url))) + } +} + +func (ptr *QNdefNfcSmartPosterRecord) SetUri2(url string) { + if ptr.Pointer() != nil { + C.QNdefNfcSmartPosterRecord_SetUri2(C.QtObjectPtr(ptr.Pointer()), C.CString(url)) + } +} + +func (ptr *QNdefNfcSmartPosterRecord) Title(locale string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QNdefNfcSmartPosterRecord_Title(C.QtObjectPtr(ptr.Pointer()), C.CString(locale))) + } + return "" +} + +func (ptr *QNdefNfcSmartPosterRecord) TitleCount() int { + if ptr.Pointer() != nil { + return int(C.QNdefNfcSmartPosterRecord_TitleCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNdefNfcSmartPosterRecord) Uri() string { + if ptr.Pointer() != nil { + return C.GoString(C.QNdefNfcSmartPosterRecord_Uri(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QNdefNfcSmartPosterRecord) DestroyQNdefNfcSmartPosterRecord() { + if ptr.Pointer() != nil { + C.QNdefNfcSmartPosterRecord_DestroyQNdefNfcSmartPosterRecord(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/nfc/qndefnfcsmartposterrecord.h b/nfc/qndefnfcsmartposterrecord.h new file mode 100755 index 00000000..538d667f --- /dev/null +++ b/nfc/qndefnfcsmartposterrecord.h @@ -0,0 +1,33 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QNdefNfcSmartPosterRecord_NewQNdefNfcSmartPosterRecord(); +QtObjectPtr QNdefNfcSmartPosterRecord_NewQNdefNfcSmartPosterRecord3(QtObjectPtr other); +QtObjectPtr QNdefNfcSmartPosterRecord_NewQNdefNfcSmartPosterRecord2(QtObjectPtr other); +int QNdefNfcSmartPosterRecord_Action(QtObjectPtr ptr); +void QNdefNfcSmartPosterRecord_AddIcon2(QtObjectPtr ptr, QtObjectPtr ty, QtObjectPtr data); +int QNdefNfcSmartPosterRecord_AddTitle(QtObjectPtr ptr, QtObjectPtr text); +int QNdefNfcSmartPosterRecord_AddTitle2(QtObjectPtr ptr, char* text, char* locale, int encoding); +int QNdefNfcSmartPosterRecord_HasAction(QtObjectPtr ptr); +int QNdefNfcSmartPosterRecord_HasIcon(QtObjectPtr ptr, QtObjectPtr mimetype); +int QNdefNfcSmartPosterRecord_HasSize(QtObjectPtr ptr); +int QNdefNfcSmartPosterRecord_HasTitle(QtObjectPtr ptr, char* locale); +int QNdefNfcSmartPosterRecord_HasTypeInfo(QtObjectPtr ptr); +int QNdefNfcSmartPosterRecord_IconCount(QtObjectPtr ptr); +int QNdefNfcSmartPosterRecord_RemoveIcon2(QtObjectPtr ptr, QtObjectPtr ty); +int QNdefNfcSmartPosterRecord_RemoveTitle(QtObjectPtr ptr, QtObjectPtr text); +int QNdefNfcSmartPosterRecord_RemoveTitle2(QtObjectPtr ptr, char* locale); +void QNdefNfcSmartPosterRecord_SetAction(QtObjectPtr ptr, int act); +void QNdefNfcSmartPosterRecord_SetTypeInfo(QtObjectPtr ptr, QtObjectPtr ty); +void QNdefNfcSmartPosterRecord_SetUri(QtObjectPtr ptr, QtObjectPtr url); +void QNdefNfcSmartPosterRecord_SetUri2(QtObjectPtr ptr, char* url); +char* QNdefNfcSmartPosterRecord_Title(QtObjectPtr ptr, char* locale); +int QNdefNfcSmartPosterRecord_TitleCount(QtObjectPtr ptr); +char* QNdefNfcSmartPosterRecord_Uri(QtObjectPtr ptr); +void QNdefNfcSmartPosterRecord_DestroyQNdefNfcSmartPosterRecord(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/nfc/qndefnfctextrecord.cpp b/nfc/qndefnfctextrecord.cpp new file mode 100755 index 00000000..e5aac710 --- /dev/null +++ b/nfc/qndefnfctextrecord.cpp @@ -0,0 +1,45 @@ +#include "qndefnfctextrecord.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQNdefNfcTextRecord: public QNdefNfcTextRecord { +public: +}; + +QtObjectPtr QNdefNfcTextRecord_NewQNdefNfcTextRecord(){ + return new QNdefNfcTextRecord(); +} + +QtObjectPtr QNdefNfcTextRecord_NewQNdefNfcTextRecord2(QtObjectPtr other){ + return new QNdefNfcTextRecord(*static_cast(other)); +} + +int QNdefNfcTextRecord_Encoding(QtObjectPtr ptr){ + return static_cast(ptr)->encoding(); +} + +char* QNdefNfcTextRecord_Locale(QtObjectPtr ptr){ + return static_cast(ptr)->locale().toUtf8().data(); +} + +void QNdefNfcTextRecord_SetEncoding(QtObjectPtr ptr, int encoding){ + static_cast(ptr)->setEncoding(static_cast(encoding)); +} + +void QNdefNfcTextRecord_SetLocale(QtObjectPtr ptr, char* locale){ + static_cast(ptr)->setLocale(QString(locale)); +} + +void QNdefNfcTextRecord_SetText(QtObjectPtr ptr, char* text){ + static_cast(ptr)->setText(QString(text)); +} + +char* QNdefNfcTextRecord_Text(QtObjectPtr ptr){ + return static_cast(ptr)->text().toUtf8().data(); +} + diff --git a/nfc/qndefnfctextrecord.go b/nfc/qndefnfctextrecord.go new file mode 100755 index 00000000..c614bbae --- /dev/null +++ b/nfc/qndefnfctextrecord.go @@ -0,0 +1,88 @@ +package nfc + +//#include "qndefnfctextrecord.h" +import "C" +import ( + "unsafe" +) + +type QNdefNfcTextRecord struct { + QNdefRecord +} + +type QNdefNfcTextRecordITF interface { + QNdefRecordITF + QNdefNfcTextRecordPTR() *QNdefNfcTextRecord +} + +func PointerFromQNdefNfcTextRecord(ptr QNdefNfcTextRecordITF) unsafe.Pointer { + if ptr != nil { + return ptr.QNdefNfcTextRecordPTR().Pointer() + } + return nil +} + +func QNdefNfcTextRecordFromPointer(ptr unsafe.Pointer) *QNdefNfcTextRecord { + var n = new(QNdefNfcTextRecord) + n.SetPointer(ptr) + return n +} + +func (ptr *QNdefNfcTextRecord) QNdefNfcTextRecordPTR() *QNdefNfcTextRecord { + return ptr +} + +//QNdefNfcTextRecord::Encoding +type QNdefNfcTextRecord__Encoding int + +var ( + QNdefNfcTextRecord__Utf8 = QNdefNfcTextRecord__Encoding(0) + QNdefNfcTextRecord__Utf16 = QNdefNfcTextRecord__Encoding(1) +) + +func NewQNdefNfcTextRecord() *QNdefNfcTextRecord { + return QNdefNfcTextRecordFromPointer(unsafe.Pointer(C.QNdefNfcTextRecord_NewQNdefNfcTextRecord())) +} + +func NewQNdefNfcTextRecord2(other QNdefRecordITF) *QNdefNfcTextRecord { + return QNdefNfcTextRecordFromPointer(unsafe.Pointer(C.QNdefNfcTextRecord_NewQNdefNfcTextRecord2(C.QtObjectPtr(PointerFromQNdefRecord(other))))) +} + +func (ptr *QNdefNfcTextRecord) Encoding() QNdefNfcTextRecord__Encoding { + if ptr.Pointer() != nil { + return QNdefNfcTextRecord__Encoding(C.QNdefNfcTextRecord_Encoding(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNdefNfcTextRecord) Locale() string { + if ptr.Pointer() != nil { + return C.GoString(C.QNdefNfcTextRecord_Locale(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QNdefNfcTextRecord) SetEncoding(encoding QNdefNfcTextRecord__Encoding) { + if ptr.Pointer() != nil { + C.QNdefNfcTextRecord_SetEncoding(C.QtObjectPtr(ptr.Pointer()), C.int(encoding)) + } +} + +func (ptr *QNdefNfcTextRecord) SetLocale(locale string) { + if ptr.Pointer() != nil { + C.QNdefNfcTextRecord_SetLocale(C.QtObjectPtr(ptr.Pointer()), C.CString(locale)) + } +} + +func (ptr *QNdefNfcTextRecord) SetText(text string) { + if ptr.Pointer() != nil { + C.QNdefNfcTextRecord_SetText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QNdefNfcTextRecord) Text() string { + if ptr.Pointer() != nil { + return C.GoString(C.QNdefNfcTextRecord_Text(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/nfc/qndefnfctextrecord.h b/nfc/qndefnfctextrecord.h new file mode 100755 index 00000000..d956539c --- /dev/null +++ b/nfc/qndefnfctextrecord.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QNdefNfcTextRecord_NewQNdefNfcTextRecord(); +QtObjectPtr QNdefNfcTextRecord_NewQNdefNfcTextRecord2(QtObjectPtr other); +int QNdefNfcTextRecord_Encoding(QtObjectPtr ptr); +char* QNdefNfcTextRecord_Locale(QtObjectPtr ptr); +void QNdefNfcTextRecord_SetEncoding(QtObjectPtr ptr, int encoding); +void QNdefNfcTextRecord_SetLocale(QtObjectPtr ptr, char* locale); +void QNdefNfcTextRecord_SetText(QtObjectPtr ptr, char* text); +char* QNdefNfcTextRecord_Text(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/nfc/qndefnfcurirecord.cpp b/nfc/qndefnfcurirecord.cpp new file mode 100755 index 00000000..4463d551 --- /dev/null +++ b/nfc/qndefnfcurirecord.cpp @@ -0,0 +1,29 @@ +#include "qndefnfcurirecord.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQNdefNfcUriRecord: public QNdefNfcUriRecord { +public: +}; + +QtObjectPtr QNdefNfcUriRecord_NewQNdefNfcUriRecord(){ + return new QNdefNfcUriRecord(); +} + +QtObjectPtr QNdefNfcUriRecord_NewQNdefNfcUriRecord2(QtObjectPtr other){ + return new QNdefNfcUriRecord(*static_cast(other)); +} + +void QNdefNfcUriRecord_SetUri(QtObjectPtr ptr, char* uri){ + static_cast(ptr)->setUri(QUrl(QString(uri))); +} + +char* QNdefNfcUriRecord_Uri(QtObjectPtr ptr){ + return static_cast(ptr)->uri().toString().toUtf8().data(); +} + diff --git a/nfc/qndefnfcurirecord.go b/nfc/qndefnfcurirecord.go new file mode 100755 index 00000000..0ae5ea1b --- /dev/null +++ b/nfc/qndefnfcurirecord.go @@ -0,0 +1,54 @@ +package nfc + +//#include "qndefnfcurirecord.h" +import "C" +import ( + "unsafe" +) + +type QNdefNfcUriRecord struct { + QNdefRecord +} + +type QNdefNfcUriRecordITF interface { + QNdefRecordITF + QNdefNfcUriRecordPTR() *QNdefNfcUriRecord +} + +func PointerFromQNdefNfcUriRecord(ptr QNdefNfcUriRecordITF) unsafe.Pointer { + if ptr != nil { + return ptr.QNdefNfcUriRecordPTR().Pointer() + } + return nil +} + +func QNdefNfcUriRecordFromPointer(ptr unsafe.Pointer) *QNdefNfcUriRecord { + var n = new(QNdefNfcUriRecord) + n.SetPointer(ptr) + return n +} + +func (ptr *QNdefNfcUriRecord) QNdefNfcUriRecordPTR() *QNdefNfcUriRecord { + return ptr +} + +func NewQNdefNfcUriRecord() *QNdefNfcUriRecord { + return QNdefNfcUriRecordFromPointer(unsafe.Pointer(C.QNdefNfcUriRecord_NewQNdefNfcUriRecord())) +} + +func NewQNdefNfcUriRecord2(other QNdefRecordITF) *QNdefNfcUriRecord { + return QNdefNfcUriRecordFromPointer(unsafe.Pointer(C.QNdefNfcUriRecord_NewQNdefNfcUriRecord2(C.QtObjectPtr(PointerFromQNdefRecord(other))))) +} + +func (ptr *QNdefNfcUriRecord) SetUri(uri string) { + if ptr.Pointer() != nil { + C.QNdefNfcUriRecord_SetUri(C.QtObjectPtr(ptr.Pointer()), C.CString(uri)) + } +} + +func (ptr *QNdefNfcUriRecord) Uri() string { + if ptr.Pointer() != nil { + return C.GoString(C.QNdefNfcUriRecord_Uri(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/nfc/qndefnfcurirecord.h b/nfc/qndefnfcurirecord.h new file mode 100755 index 00000000..6798ef2b --- /dev/null +++ b/nfc/qndefnfcurirecord.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QNdefNfcUriRecord_NewQNdefNfcUriRecord(); +QtObjectPtr QNdefNfcUriRecord_NewQNdefNfcUriRecord2(QtObjectPtr other); +void QNdefNfcUriRecord_SetUri(QtObjectPtr ptr, char* uri); +char* QNdefNfcUriRecord_Uri(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/nfc/qndefrecord.cpp b/nfc/qndefrecord.cpp new file mode 100755 index 00000000..abdcac1d --- /dev/null +++ b/nfc/qndefrecord.cpp @@ -0,0 +1,49 @@ +#include "qndefrecord.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQNdefRecord: public QNdefRecord { +public: +}; + +QtObjectPtr QNdefRecord_NewQNdefRecord(){ + return new QNdefRecord(); +} + +QtObjectPtr QNdefRecord_NewQNdefRecord2(QtObjectPtr other){ + return new QNdefRecord(*static_cast(other)); +} + +int QNdefRecord_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +void QNdefRecord_SetId(QtObjectPtr ptr, QtObjectPtr id){ + static_cast(ptr)->setId(*static_cast(id)); +} + +void QNdefRecord_SetPayload(QtObjectPtr ptr, QtObjectPtr payload){ + static_cast(ptr)->setPayload(*static_cast(payload)); +} + +void QNdefRecord_SetType(QtObjectPtr ptr, QtObjectPtr ty){ + static_cast(ptr)->setType(*static_cast(ty)); +} + +void QNdefRecord_SetTypeNameFormat(QtObjectPtr ptr, int typeNameFormat){ + static_cast(ptr)->setTypeNameFormat(static_cast(typeNameFormat)); +} + +int QNdefRecord_TypeNameFormat(QtObjectPtr ptr){ + return static_cast(ptr)->typeNameFormat(); +} + +void QNdefRecord_DestroyQNdefRecord(QtObjectPtr ptr){ + static_cast(ptr)->~QNdefRecord(); +} + diff --git a/nfc/qndefrecord.go b/nfc/qndefrecord.go new file mode 100755 index 00000000..3c470a96 --- /dev/null +++ b/nfc/qndefrecord.go @@ -0,0 +1,105 @@ +package nfc + +//#include "qndefrecord.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QNdefRecord struct { + ptr unsafe.Pointer +} + +type QNdefRecordITF interface { + QNdefRecordPTR() *QNdefRecord +} + +func (p *QNdefRecord) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QNdefRecord) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQNdefRecord(ptr QNdefRecordITF) unsafe.Pointer { + if ptr != nil { + return ptr.QNdefRecordPTR().Pointer() + } + return nil +} + +func QNdefRecordFromPointer(ptr unsafe.Pointer) *QNdefRecord { + var n = new(QNdefRecord) + n.SetPointer(ptr) + return n +} + +func (ptr *QNdefRecord) QNdefRecordPTR() *QNdefRecord { + return ptr +} + +//QNdefRecord::TypeNameFormat +type QNdefRecord__TypeNameFormat int + +var ( + QNdefRecord__Empty = QNdefRecord__TypeNameFormat(0x00) + QNdefRecord__NfcRtd = QNdefRecord__TypeNameFormat(0x01) + QNdefRecord__Mime = QNdefRecord__TypeNameFormat(0x02) + QNdefRecord__Uri = QNdefRecord__TypeNameFormat(0x03) + QNdefRecord__ExternalRtd = QNdefRecord__TypeNameFormat(0x04) + QNdefRecord__Unknown = QNdefRecord__TypeNameFormat(0x05) +) + +func NewQNdefRecord() *QNdefRecord { + return QNdefRecordFromPointer(unsafe.Pointer(C.QNdefRecord_NewQNdefRecord())) +} + +func NewQNdefRecord2(other QNdefRecordITF) *QNdefRecord { + return QNdefRecordFromPointer(unsafe.Pointer(C.QNdefRecord_NewQNdefRecord2(C.QtObjectPtr(PointerFromQNdefRecord(other))))) +} + +func (ptr *QNdefRecord) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QNdefRecord_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QNdefRecord) SetId(id core.QByteArrayITF) { + if ptr.Pointer() != nil { + C.QNdefRecord_SetId(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(id))) + } +} + +func (ptr *QNdefRecord) SetPayload(payload core.QByteArrayITF) { + if ptr.Pointer() != nil { + C.QNdefRecord_SetPayload(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(payload))) + } +} + +func (ptr *QNdefRecord) SetType(ty core.QByteArrayITF) { + if ptr.Pointer() != nil { + C.QNdefRecord_SetType(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(ty))) + } +} + +func (ptr *QNdefRecord) SetTypeNameFormat(typeNameFormat QNdefRecord__TypeNameFormat) { + if ptr.Pointer() != nil { + C.QNdefRecord_SetTypeNameFormat(C.QtObjectPtr(ptr.Pointer()), C.int(typeNameFormat)) + } +} + +func (ptr *QNdefRecord) TypeNameFormat() QNdefRecord__TypeNameFormat { + if ptr.Pointer() != nil { + return QNdefRecord__TypeNameFormat(C.QNdefRecord_TypeNameFormat(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNdefRecord) DestroyQNdefRecord() { + if ptr.Pointer() != nil { + C.QNdefRecord_DestroyQNdefRecord(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/nfc/qndefrecord.h b/nfc/qndefrecord.h new file mode 100755 index 00000000..9e23ab1c --- /dev/null +++ b/nfc/qndefrecord.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QNdefRecord_NewQNdefRecord(); +QtObjectPtr QNdefRecord_NewQNdefRecord2(QtObjectPtr other); +int QNdefRecord_IsEmpty(QtObjectPtr ptr); +void QNdefRecord_SetId(QtObjectPtr ptr, QtObjectPtr id); +void QNdefRecord_SetPayload(QtObjectPtr ptr, QtObjectPtr payload); +void QNdefRecord_SetType(QtObjectPtr ptr, QtObjectPtr ty); +void QNdefRecord_SetTypeNameFormat(QtObjectPtr ptr, int typeNameFormat); +int QNdefRecord_TypeNameFormat(QtObjectPtr ptr); +void QNdefRecord_DestroyQNdefRecord(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/nfc/qnearfieldmanager.cpp b/nfc/qnearfieldmanager.cpp new file mode 100755 index 00000000..46914c17 --- /dev/null +++ b/nfc/qnearfieldmanager.cpp @@ -0,0 +1,79 @@ +#include "qnearfieldmanager.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQNearFieldManager: public QNearFieldManager { +public: +void Signal_TargetDetected(QNearFieldTarget * target){callbackQNearFieldManagerTargetDetected(this->objectName().toUtf8().data(), target);}; +void Signal_TargetLost(QNearFieldTarget * target){callbackQNearFieldManagerTargetLost(this->objectName().toUtf8().data(), target);}; +}; + +int QNearFieldManager_RegisterNdefMessageHandler(QtObjectPtr ptr, QtObjectPtr object, char* method){ + return static_cast(ptr)->registerNdefMessageHandler(static_cast(object), const_cast(method)); +} + +int QNearFieldManager_StartTargetDetection(QtObjectPtr ptr){ + return static_cast(ptr)->startTargetDetection(); +} + +QtObjectPtr QNearFieldManager_NewQNearFieldManager(QtObjectPtr parent){ + return new QNearFieldManager(static_cast(parent)); +} + +int QNearFieldManager_IsAvailable(QtObjectPtr ptr){ + return static_cast(ptr)->isAvailable(); +} + +int QNearFieldManager_RegisterNdefMessageHandler2(QtObjectPtr ptr, int typeNameFormat, QtObjectPtr ty, QtObjectPtr object, char* method){ + return static_cast(ptr)->registerNdefMessageHandler(static_cast(typeNameFormat), *static_cast(ty), static_cast(object), const_cast(method)); +} + +int QNearFieldManager_RegisterNdefMessageHandler3(QtObjectPtr ptr, QtObjectPtr filter, QtObjectPtr object, char* method){ + return static_cast(ptr)->registerNdefMessageHandler(*static_cast(filter), static_cast(object), const_cast(method)); +} + +void QNearFieldManager_SetTargetAccessModes(QtObjectPtr ptr, int accessModes){ + static_cast(ptr)->setTargetAccessModes(static_cast(accessModes)); +} + +void QNearFieldManager_StopTargetDetection(QtObjectPtr ptr){ + static_cast(ptr)->stopTargetDetection(); +} + +int QNearFieldManager_TargetAccessModes(QtObjectPtr ptr){ + return static_cast(ptr)->targetAccessModes(); +} + +void QNearFieldManager_ConnectTargetDetected(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QNearFieldManager::targetDetected), static_cast(ptr), static_cast(&MyQNearFieldManager::Signal_TargetDetected));; +} + +void QNearFieldManager_DisconnectTargetDetected(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QNearFieldManager::targetDetected), static_cast(ptr), static_cast(&MyQNearFieldManager::Signal_TargetDetected));; +} + +void QNearFieldManager_ConnectTargetLost(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QNearFieldManager::targetLost), static_cast(ptr), static_cast(&MyQNearFieldManager::Signal_TargetLost));; +} + +void QNearFieldManager_DisconnectTargetLost(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QNearFieldManager::targetLost), static_cast(ptr), static_cast(&MyQNearFieldManager::Signal_TargetLost));; +} + +int QNearFieldManager_UnregisterNdefMessageHandler(QtObjectPtr ptr, int handlerId){ + return static_cast(ptr)->unregisterNdefMessageHandler(handlerId); +} + +void QNearFieldManager_DestroyQNearFieldManager(QtObjectPtr ptr){ + static_cast(ptr)->~QNearFieldManager(); +} + diff --git a/nfc/qnearfieldmanager.go b/nfc/qnearfieldmanager.go new file mode 100755 index 00000000..750c7aad --- /dev/null +++ b/nfc/qnearfieldmanager.go @@ -0,0 +1,158 @@ +package nfc + +//#include "qnearfieldmanager.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QNearFieldManager struct { + core.QObject +} + +type QNearFieldManagerITF interface { + core.QObjectITF + QNearFieldManagerPTR() *QNearFieldManager +} + +func PointerFromQNearFieldManager(ptr QNearFieldManagerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QNearFieldManagerPTR().Pointer() + } + return nil +} + +func QNearFieldManagerFromPointer(ptr unsafe.Pointer) *QNearFieldManager { + var n = new(QNearFieldManager) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QNearFieldManager_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QNearFieldManager) QNearFieldManagerPTR() *QNearFieldManager { + return ptr +} + +//QNearFieldManager::TargetAccessMode +type QNearFieldManager__TargetAccessMode int + +var ( + QNearFieldManager__NoTargetAccess = QNearFieldManager__TargetAccessMode(0x00) + QNearFieldManager__NdefReadTargetAccess = QNearFieldManager__TargetAccessMode(0x01) + QNearFieldManager__NdefWriteTargetAccess = QNearFieldManager__TargetAccessMode(0x02) + QNearFieldManager__TagTypeSpecificTargetAccess = QNearFieldManager__TargetAccessMode(0x04) +) + +func (ptr *QNearFieldManager) RegisterNdefMessageHandler(object core.QObjectITF, method string) int { + if ptr.Pointer() != nil { + return int(C.QNearFieldManager_RegisterNdefMessageHandler(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(object)), C.CString(method))) + } + return 0 +} + +func (ptr *QNearFieldManager) StartTargetDetection() bool { + if ptr.Pointer() != nil { + return C.QNearFieldManager_StartTargetDetection(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func NewQNearFieldManager(parent core.QObjectITF) *QNearFieldManager { + return QNearFieldManagerFromPointer(unsafe.Pointer(C.QNearFieldManager_NewQNearFieldManager(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QNearFieldManager) IsAvailable() bool { + if ptr.Pointer() != nil { + return C.QNearFieldManager_IsAvailable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QNearFieldManager) RegisterNdefMessageHandler2(typeNameFormat QNdefRecord__TypeNameFormat, ty core.QByteArrayITF, object core.QObjectITF, method string) int { + if ptr.Pointer() != nil { + return int(C.QNearFieldManager_RegisterNdefMessageHandler2(C.QtObjectPtr(ptr.Pointer()), C.int(typeNameFormat), C.QtObjectPtr(core.PointerFromQByteArray(ty)), C.QtObjectPtr(core.PointerFromQObject(object)), C.CString(method))) + } + return 0 +} + +func (ptr *QNearFieldManager) RegisterNdefMessageHandler3(filter QNdefFilterITF, object core.QObjectITF, method string) int { + if ptr.Pointer() != nil { + return int(C.QNearFieldManager_RegisterNdefMessageHandler3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNdefFilter(filter)), C.QtObjectPtr(core.PointerFromQObject(object)), C.CString(method))) + } + return 0 +} + +func (ptr *QNearFieldManager) SetTargetAccessModes(accessModes QNearFieldManager__TargetAccessMode) { + if ptr.Pointer() != nil { + C.QNearFieldManager_SetTargetAccessModes(C.QtObjectPtr(ptr.Pointer()), C.int(accessModes)) + } +} + +func (ptr *QNearFieldManager) StopTargetDetection() { + if ptr.Pointer() != nil { + C.QNearFieldManager_StopTargetDetection(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QNearFieldManager) TargetAccessModes() QNearFieldManager__TargetAccessMode { + if ptr.Pointer() != nil { + return QNearFieldManager__TargetAccessMode(C.QNearFieldManager_TargetAccessModes(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNearFieldManager) ConnectTargetDetected(f func(target QNearFieldTargetITF)) { + if ptr.Pointer() != nil { + C.QNearFieldManager_ConnectTargetDetected(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "targetDetected", f) + } +} + +func (ptr *QNearFieldManager) DisconnectTargetDetected() { + if ptr.Pointer() != nil { + C.QNearFieldManager_DisconnectTargetDetected(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "targetDetected") + } +} + +//export callbackQNearFieldManagerTargetDetected +func callbackQNearFieldManagerTargetDetected(ptrName *C.char, target unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "targetDetected").(func(*QNearFieldTarget))(QNearFieldTargetFromPointer(target)) +} + +func (ptr *QNearFieldManager) ConnectTargetLost(f func(target QNearFieldTargetITF)) { + if ptr.Pointer() != nil { + C.QNearFieldManager_ConnectTargetLost(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "targetLost", f) + } +} + +func (ptr *QNearFieldManager) DisconnectTargetLost() { + if ptr.Pointer() != nil { + C.QNearFieldManager_DisconnectTargetLost(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "targetLost") + } +} + +//export callbackQNearFieldManagerTargetLost +func callbackQNearFieldManagerTargetLost(ptrName *C.char, target unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "targetLost").(func(*QNearFieldTarget))(QNearFieldTargetFromPointer(target)) +} + +func (ptr *QNearFieldManager) UnregisterNdefMessageHandler(handlerId int) bool { + if ptr.Pointer() != nil { + return C.QNearFieldManager_UnregisterNdefMessageHandler(C.QtObjectPtr(ptr.Pointer()), C.int(handlerId)) != 0 + } + return false +} + +func (ptr *QNearFieldManager) DestroyQNearFieldManager() { + if ptr.Pointer() != nil { + C.QNearFieldManager_DestroyQNearFieldManager(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/nfc/qnearfieldmanager.h b/nfc/qnearfieldmanager.h new file mode 100755 index 00000000..533abccb --- /dev/null +++ b/nfc/qnearfieldmanager.h @@ -0,0 +1,24 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QNearFieldManager_RegisterNdefMessageHandler(QtObjectPtr ptr, QtObjectPtr object, char* method); +int QNearFieldManager_StartTargetDetection(QtObjectPtr ptr); +QtObjectPtr QNearFieldManager_NewQNearFieldManager(QtObjectPtr parent); +int QNearFieldManager_IsAvailable(QtObjectPtr ptr); +int QNearFieldManager_RegisterNdefMessageHandler2(QtObjectPtr ptr, int typeNameFormat, QtObjectPtr ty, QtObjectPtr object, char* method); +int QNearFieldManager_RegisterNdefMessageHandler3(QtObjectPtr ptr, QtObjectPtr filter, QtObjectPtr object, char* method); +void QNearFieldManager_SetTargetAccessModes(QtObjectPtr ptr, int accessModes); +void QNearFieldManager_StopTargetDetection(QtObjectPtr ptr); +int QNearFieldManager_TargetAccessModes(QtObjectPtr ptr); +void QNearFieldManager_ConnectTargetDetected(QtObjectPtr ptr); +void QNearFieldManager_DisconnectTargetDetected(QtObjectPtr ptr); +void QNearFieldManager_ConnectTargetLost(QtObjectPtr ptr); +void QNearFieldManager_DisconnectTargetLost(QtObjectPtr ptr); +int QNearFieldManager_UnregisterNdefMessageHandler(QtObjectPtr ptr, int handlerId); +void QNearFieldManager_DestroyQNearFieldManager(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/nfc/qnearfieldsharemanager.cpp b/nfc/qnearfieldsharemanager.cpp new file mode 100755 index 00000000..8c8f8e14 --- /dev/null +++ b/nfc/qnearfieldsharemanager.cpp @@ -0,0 +1,65 @@ +#include "qnearfieldsharemanager.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQNearFieldShareManager: public QNearFieldShareManager { +public: +void Signal_Error(QNearFieldShareManager::ShareError error){callbackQNearFieldShareManagerError(this->objectName().toUtf8().data(), error);}; +void Signal_ShareModesChanged(QNearFieldShareManager::ShareModes modes){callbackQNearFieldShareManagerShareModesChanged(this->objectName().toUtf8().data(), modes);}; +void Signal_TargetDetected(QNearFieldShareTarget * shareTarget){callbackQNearFieldShareManagerTargetDetected(this->objectName().toUtf8().data(), shareTarget);}; +}; + +QtObjectPtr QNearFieldShareManager_NewQNearFieldShareManager(QtObjectPtr parent){ + return new QNearFieldShareManager(static_cast(parent)); +} + +void QNearFieldShareManager_ConnectError(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QNearFieldShareManager::error), static_cast(ptr), static_cast(&MyQNearFieldShareManager::Signal_Error));; +} + +void QNearFieldShareManager_DisconnectError(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QNearFieldShareManager::error), static_cast(ptr), static_cast(&MyQNearFieldShareManager::Signal_Error));; +} + +void QNearFieldShareManager_SetShareModes(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setShareModes(static_cast(mode)); +} + +int QNearFieldShareManager_ShareError(QtObjectPtr ptr){ + return static_cast(ptr)->shareError(); +} + +int QNearFieldShareManager_ShareModes(QtObjectPtr ptr){ + return static_cast(ptr)->shareModes(); +} + +void QNearFieldShareManager_ConnectShareModesChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QNearFieldShareManager::shareModesChanged), static_cast(ptr), static_cast(&MyQNearFieldShareManager::Signal_ShareModesChanged));; +} + +void QNearFieldShareManager_DisconnectShareModesChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QNearFieldShareManager::shareModesChanged), static_cast(ptr), static_cast(&MyQNearFieldShareManager::Signal_ShareModesChanged));; +} + +int QNearFieldShareManager_QNearFieldShareManager_SupportedShareModes(){ + return QNearFieldShareManager::supportedShareModes(); +} + +void QNearFieldShareManager_ConnectTargetDetected(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QNearFieldShareManager::targetDetected), static_cast(ptr), static_cast(&MyQNearFieldShareManager::Signal_TargetDetected));; +} + +void QNearFieldShareManager_DisconnectTargetDetected(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QNearFieldShareManager::targetDetected), static_cast(ptr), static_cast(&MyQNearFieldShareManager::Signal_TargetDetected));; +} + +void QNearFieldShareManager_DestroyQNearFieldShareManager(QtObjectPtr ptr){ + static_cast(ptr)->~QNearFieldShareManager(); +} + diff --git a/nfc/qnearfieldsharemanager.go b/nfc/qnearfieldsharemanager.go new file mode 100755 index 00000000..af6fd388 --- /dev/null +++ b/nfc/qnearfieldsharemanager.go @@ -0,0 +1,154 @@ +package nfc + +//#include "qnearfieldsharemanager.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QNearFieldShareManager struct { + core.QObject +} + +type QNearFieldShareManagerITF interface { + core.QObjectITF + QNearFieldShareManagerPTR() *QNearFieldShareManager +} + +func PointerFromQNearFieldShareManager(ptr QNearFieldShareManagerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QNearFieldShareManagerPTR().Pointer() + } + return nil +} + +func QNearFieldShareManagerFromPointer(ptr unsafe.Pointer) *QNearFieldShareManager { + var n = new(QNearFieldShareManager) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QNearFieldShareManager_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QNearFieldShareManager) QNearFieldShareManagerPTR() *QNearFieldShareManager { + return ptr +} + +//QNearFieldShareManager::ShareError +type QNearFieldShareManager__ShareError int + +var ( + QNearFieldShareManager__NoError = QNearFieldShareManager__ShareError(0) + QNearFieldShareManager__UnknownError = QNearFieldShareManager__ShareError(1) + QNearFieldShareManager__InvalidShareContentError = QNearFieldShareManager__ShareError(2) + QNearFieldShareManager__ShareCanceledError = QNearFieldShareManager__ShareError(3) + QNearFieldShareManager__ShareInterruptedError = QNearFieldShareManager__ShareError(4) + QNearFieldShareManager__ShareRejectedError = QNearFieldShareManager__ShareError(5) + QNearFieldShareManager__UnsupportedShareModeError = QNearFieldShareManager__ShareError(6) + QNearFieldShareManager__ShareAlreadyInProgressError = QNearFieldShareManager__ShareError(7) + QNearFieldShareManager__SharePermissionDeniedError = QNearFieldShareManager__ShareError(8) +) + +//QNearFieldShareManager::ShareMode +type QNearFieldShareManager__ShareMode int + +var ( + QNearFieldShareManager__NoShare = QNearFieldShareManager__ShareMode(0x00) + QNearFieldShareManager__NdefShare = QNearFieldShareManager__ShareMode(0x01) + QNearFieldShareManager__FileShare = QNearFieldShareManager__ShareMode(0x02) +) + +func NewQNearFieldShareManager(parent core.QObjectITF) *QNearFieldShareManager { + return QNearFieldShareManagerFromPointer(unsafe.Pointer(C.QNearFieldShareManager_NewQNearFieldShareManager(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QNearFieldShareManager) ConnectError(f func(error QNearFieldShareManager__ShareError)) { + if ptr.Pointer() != nil { + C.QNearFieldShareManager_ConnectError(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "error", f) + } +} + +func (ptr *QNearFieldShareManager) DisconnectError() { + if ptr.Pointer() != nil { + C.QNearFieldShareManager_DisconnectError(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "error") + } +} + +//export callbackQNearFieldShareManagerError +func callbackQNearFieldShareManagerError(ptrName *C.char, error C.int) { + qt.GetSignal(C.GoString(ptrName), "error").(func(QNearFieldShareManager__ShareError))(QNearFieldShareManager__ShareError(error)) +} + +func (ptr *QNearFieldShareManager) SetShareModes(mode QNearFieldShareManager__ShareMode) { + if ptr.Pointer() != nil { + C.QNearFieldShareManager_SetShareModes(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QNearFieldShareManager) ShareError() QNearFieldShareManager__ShareError { + if ptr.Pointer() != nil { + return QNearFieldShareManager__ShareError(C.QNearFieldShareManager_ShareError(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNearFieldShareManager) ShareModes() QNearFieldShareManager__ShareMode { + if ptr.Pointer() != nil { + return QNearFieldShareManager__ShareMode(C.QNearFieldShareManager_ShareModes(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNearFieldShareManager) ConnectShareModesChanged(f func(modes QNearFieldShareManager__ShareMode)) { + if ptr.Pointer() != nil { + C.QNearFieldShareManager_ConnectShareModesChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "shareModesChanged", f) + } +} + +func (ptr *QNearFieldShareManager) DisconnectShareModesChanged() { + if ptr.Pointer() != nil { + C.QNearFieldShareManager_DisconnectShareModesChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "shareModesChanged") + } +} + +//export callbackQNearFieldShareManagerShareModesChanged +func callbackQNearFieldShareManagerShareModesChanged(ptrName *C.char, modes C.int) { + qt.GetSignal(C.GoString(ptrName), "shareModesChanged").(func(QNearFieldShareManager__ShareMode))(QNearFieldShareManager__ShareMode(modes)) +} + +func QNearFieldShareManager_SupportedShareModes() QNearFieldShareManager__ShareMode { + return QNearFieldShareManager__ShareMode(C.QNearFieldShareManager_QNearFieldShareManager_SupportedShareModes()) +} + +func (ptr *QNearFieldShareManager) ConnectTargetDetected(f func(shareTarget QNearFieldShareTargetITF)) { + if ptr.Pointer() != nil { + C.QNearFieldShareManager_ConnectTargetDetected(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "targetDetected", f) + } +} + +func (ptr *QNearFieldShareManager) DisconnectTargetDetected() { + if ptr.Pointer() != nil { + C.QNearFieldShareManager_DisconnectTargetDetected(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "targetDetected") + } +} + +//export callbackQNearFieldShareManagerTargetDetected +func callbackQNearFieldShareManagerTargetDetected(ptrName *C.char, shareTarget unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "targetDetected").(func(*QNearFieldShareTarget))(QNearFieldShareTargetFromPointer(shareTarget)) +} + +func (ptr *QNearFieldShareManager) DestroyQNearFieldShareManager() { + if ptr.Pointer() != nil { + C.QNearFieldShareManager_DestroyQNearFieldShareManager(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/nfc/qnearfieldsharemanager.h b/nfc/qnearfieldsharemanager.h new file mode 100755 index 00000000..d8ecce55 --- /dev/null +++ b/nfc/qnearfieldsharemanager.h @@ -0,0 +1,21 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QNearFieldShareManager_NewQNearFieldShareManager(QtObjectPtr parent); +void QNearFieldShareManager_ConnectError(QtObjectPtr ptr); +void QNearFieldShareManager_DisconnectError(QtObjectPtr ptr); +void QNearFieldShareManager_SetShareModes(QtObjectPtr ptr, int mode); +int QNearFieldShareManager_ShareError(QtObjectPtr ptr); +int QNearFieldShareManager_ShareModes(QtObjectPtr ptr); +void QNearFieldShareManager_ConnectShareModesChanged(QtObjectPtr ptr); +void QNearFieldShareManager_DisconnectShareModesChanged(QtObjectPtr ptr); +int QNearFieldShareManager_QNearFieldShareManager_SupportedShareModes(); +void QNearFieldShareManager_ConnectTargetDetected(QtObjectPtr ptr); +void QNearFieldShareManager_DisconnectTargetDetected(QtObjectPtr ptr); +void QNearFieldShareManager_DestroyQNearFieldShareManager(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/nfc/qnearfieldsharetarget.cpp b/nfc/qnearfieldsharetarget.cpp new file mode 100755 index 00000000..7b1cff48 --- /dev/null +++ b/nfc/qnearfieldsharetarget.cpp @@ -0,0 +1,57 @@ +#include "qnearfieldsharetarget.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQNearFieldShareTarget: public QNearFieldShareTarget { +public: +void Signal_Error(QNearFieldShareManager::ShareError error){callbackQNearFieldShareTargetError(this->objectName().toUtf8().data(), error);}; +void Signal_ShareFinished(){callbackQNearFieldShareTargetShareFinished(this->objectName().toUtf8().data());}; +}; + +void QNearFieldShareTarget_Cancel(QtObjectPtr ptr){ + static_cast(ptr)->cancel(); +} + +void QNearFieldShareTarget_ConnectError(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QNearFieldShareTarget::error), static_cast(ptr), static_cast(&MyQNearFieldShareTarget::Signal_Error));; +} + +void QNearFieldShareTarget_DisconnectError(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QNearFieldShareTarget::error), static_cast(ptr), static_cast(&MyQNearFieldShareTarget::Signal_Error));; +} + +int QNearFieldShareTarget_IsShareInProgress(QtObjectPtr ptr){ + return static_cast(ptr)->isShareInProgress(); +} + +int QNearFieldShareTarget_Share(QtObjectPtr ptr, QtObjectPtr message){ + return static_cast(ptr)->share(*static_cast(message)); +} + +int QNearFieldShareTarget_ShareError(QtObjectPtr ptr){ + return static_cast(ptr)->shareError(); +} + +void QNearFieldShareTarget_ConnectShareFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QNearFieldShareTarget::shareFinished), static_cast(ptr), static_cast(&MyQNearFieldShareTarget::Signal_ShareFinished));; +} + +void QNearFieldShareTarget_DisconnectShareFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QNearFieldShareTarget::shareFinished), static_cast(ptr), static_cast(&MyQNearFieldShareTarget::Signal_ShareFinished));; +} + +int QNearFieldShareTarget_ShareModes(QtObjectPtr ptr){ + return static_cast(ptr)->shareModes(); +} + +void QNearFieldShareTarget_DestroyQNearFieldShareTarget(QtObjectPtr ptr){ + static_cast(ptr)->~QNearFieldShareTarget(); +} + diff --git a/nfc/qnearfieldsharetarget.go b/nfc/qnearfieldsharetarget.go new file mode 100755 index 00000000..acd74a80 --- /dev/null +++ b/nfc/qnearfieldsharetarget.go @@ -0,0 +1,117 @@ +package nfc + +//#include "qnearfieldsharetarget.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QNearFieldShareTarget struct { + core.QObject +} + +type QNearFieldShareTargetITF interface { + core.QObjectITF + QNearFieldShareTargetPTR() *QNearFieldShareTarget +} + +func PointerFromQNearFieldShareTarget(ptr QNearFieldShareTargetITF) unsafe.Pointer { + if ptr != nil { + return ptr.QNearFieldShareTargetPTR().Pointer() + } + return nil +} + +func QNearFieldShareTargetFromPointer(ptr unsafe.Pointer) *QNearFieldShareTarget { + var n = new(QNearFieldShareTarget) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QNearFieldShareTarget_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QNearFieldShareTarget) QNearFieldShareTargetPTR() *QNearFieldShareTarget { + return ptr +} + +func (ptr *QNearFieldShareTarget) Cancel() { + if ptr.Pointer() != nil { + C.QNearFieldShareTarget_Cancel(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QNearFieldShareTarget) ConnectError(f func(error QNearFieldShareManager__ShareError)) { + if ptr.Pointer() != nil { + C.QNearFieldShareTarget_ConnectError(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "error", f) + } +} + +func (ptr *QNearFieldShareTarget) DisconnectError() { + if ptr.Pointer() != nil { + C.QNearFieldShareTarget_DisconnectError(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "error") + } +} + +//export callbackQNearFieldShareTargetError +func callbackQNearFieldShareTargetError(ptrName *C.char, error C.int) { + qt.GetSignal(C.GoString(ptrName), "error").(func(QNearFieldShareManager__ShareError))(QNearFieldShareManager__ShareError(error)) +} + +func (ptr *QNearFieldShareTarget) IsShareInProgress() bool { + if ptr.Pointer() != nil { + return C.QNearFieldShareTarget_IsShareInProgress(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QNearFieldShareTarget) Share(message QNdefMessageITF) bool { + if ptr.Pointer() != nil { + return C.QNearFieldShareTarget_Share(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNdefMessage(message))) != 0 + } + return false +} + +func (ptr *QNearFieldShareTarget) ShareError() QNearFieldShareManager__ShareError { + if ptr.Pointer() != nil { + return QNearFieldShareManager__ShareError(C.QNearFieldShareTarget_ShareError(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNearFieldShareTarget) ConnectShareFinished(f func()) { + if ptr.Pointer() != nil { + C.QNearFieldShareTarget_ConnectShareFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "shareFinished", f) + } +} + +func (ptr *QNearFieldShareTarget) DisconnectShareFinished() { + if ptr.Pointer() != nil { + C.QNearFieldShareTarget_DisconnectShareFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "shareFinished") + } +} + +//export callbackQNearFieldShareTargetShareFinished +func callbackQNearFieldShareTargetShareFinished(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "shareFinished").(func())() +} + +func (ptr *QNearFieldShareTarget) ShareModes() QNearFieldShareManager__ShareMode { + if ptr.Pointer() != nil { + return QNearFieldShareManager__ShareMode(C.QNearFieldShareTarget_ShareModes(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNearFieldShareTarget) DestroyQNearFieldShareTarget() { + if ptr.Pointer() != nil { + C.QNearFieldShareTarget_DestroyQNearFieldShareTarget(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/nfc/qnearfieldsharetarget.h b/nfc/qnearfieldsharetarget.h new file mode 100755 index 00000000..8ed800ad --- /dev/null +++ b/nfc/qnearfieldsharetarget.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QNearFieldShareTarget_Cancel(QtObjectPtr ptr); +void QNearFieldShareTarget_ConnectError(QtObjectPtr ptr); +void QNearFieldShareTarget_DisconnectError(QtObjectPtr ptr); +int QNearFieldShareTarget_IsShareInProgress(QtObjectPtr ptr); +int QNearFieldShareTarget_Share(QtObjectPtr ptr, QtObjectPtr message); +int QNearFieldShareTarget_ShareError(QtObjectPtr ptr); +void QNearFieldShareTarget_ConnectShareFinished(QtObjectPtr ptr); +void QNearFieldShareTarget_DisconnectShareFinished(QtObjectPtr ptr); +int QNearFieldShareTarget_ShareModes(QtObjectPtr ptr); +void QNearFieldShareTarget_DestroyQNearFieldShareTarget(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/nfc/qnearfieldtarget.cpp b/nfc/qnearfieldtarget.cpp new file mode 100755 index 00000000..c6343123 --- /dev/null +++ b/nfc/qnearfieldtarget.cpp @@ -0,0 +1,55 @@ +#include "qnearfieldtarget.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQNearFieldTarget: public QNearFieldTarget { +public: +void Signal_Disconnected(){callbackQNearFieldTargetDisconnected(this->objectName().toUtf8().data());}; +void Signal_NdefMessagesWritten(){callbackQNearFieldTargetNdefMessagesWritten(this->objectName().toUtf8().data());}; +}; + +int QNearFieldTarget_AccessMethods(QtObjectPtr ptr){ + return static_cast(ptr)->accessMethods(); +} + +void QNearFieldTarget_ConnectDisconnected(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QNearFieldTarget::disconnected), static_cast(ptr), static_cast(&MyQNearFieldTarget::Signal_Disconnected));; +} + +void QNearFieldTarget_DisconnectDisconnected(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QNearFieldTarget::disconnected), static_cast(ptr), static_cast(&MyQNearFieldTarget::Signal_Disconnected));; +} + +int QNearFieldTarget_HasNdefMessage(QtObjectPtr ptr){ + return static_cast(ptr)->hasNdefMessage(); +} + +int QNearFieldTarget_IsProcessingCommand(QtObjectPtr ptr){ + return static_cast(ptr)->isProcessingCommand(); +} + +void QNearFieldTarget_ConnectNdefMessagesWritten(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QNearFieldTarget::ndefMessagesWritten), static_cast(ptr), static_cast(&MyQNearFieldTarget::Signal_NdefMessagesWritten));; +} + +void QNearFieldTarget_DisconnectNdefMessagesWritten(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QNearFieldTarget::ndefMessagesWritten), static_cast(ptr), static_cast(&MyQNearFieldTarget::Signal_NdefMessagesWritten));; +} + +int QNearFieldTarget_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +char* QNearFieldTarget_Url(QtObjectPtr ptr){ + return static_cast(ptr)->url().toString().toUtf8().data(); +} + +void QNearFieldTarget_DestroyQNearFieldTarget(QtObjectPtr ptr){ + static_cast(ptr)->~QNearFieldTarget(); +} + diff --git a/nfc/qnearfieldtarget.go b/nfc/qnearfieldtarget.go new file mode 100755 index 00000000..d455deea --- /dev/null +++ b/nfc/qnearfieldtarget.go @@ -0,0 +1,155 @@ +package nfc + +//#include "qnearfieldtarget.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QNearFieldTarget struct { + core.QObject +} + +type QNearFieldTargetITF interface { + core.QObjectITF + QNearFieldTargetPTR() *QNearFieldTarget +} + +func PointerFromQNearFieldTarget(ptr QNearFieldTargetITF) unsafe.Pointer { + if ptr != nil { + return ptr.QNearFieldTargetPTR().Pointer() + } + return nil +} + +func QNearFieldTargetFromPointer(ptr unsafe.Pointer) *QNearFieldTarget { + var n = new(QNearFieldTarget) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QNearFieldTarget_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QNearFieldTarget) QNearFieldTargetPTR() *QNearFieldTarget { + return ptr +} + +//QNearFieldTarget::AccessMethod +type QNearFieldTarget__AccessMethod int + +var ( + QNearFieldTarget__UnknownAccess = QNearFieldTarget__AccessMethod(0x00) + QNearFieldTarget__NdefAccess = QNearFieldTarget__AccessMethod(0x01) + QNearFieldTarget__TagTypeSpecificAccess = QNearFieldTarget__AccessMethod(0x02) + QNearFieldTarget__LlcpAccess = QNearFieldTarget__AccessMethod(0x04) +) + +//QNearFieldTarget::Error +type QNearFieldTarget__Error int + +var ( + QNearFieldTarget__NoError = QNearFieldTarget__Error(0) + QNearFieldTarget__UnknownError = QNearFieldTarget__Error(1) + QNearFieldTarget__UnsupportedError = QNearFieldTarget__Error(2) + QNearFieldTarget__TargetOutOfRangeError = QNearFieldTarget__Error(3) + QNearFieldTarget__NoResponseError = QNearFieldTarget__Error(4) + QNearFieldTarget__ChecksumMismatchError = QNearFieldTarget__Error(5) + QNearFieldTarget__InvalidParametersError = QNearFieldTarget__Error(6) + QNearFieldTarget__NdefReadError = QNearFieldTarget__Error(7) + QNearFieldTarget__NdefWriteError = QNearFieldTarget__Error(8) +) + +//QNearFieldTarget::Type +type QNearFieldTarget__Type int + +var ( + QNearFieldTarget__ProprietaryTag = QNearFieldTarget__Type(0) + QNearFieldTarget__NfcTagType1 = QNearFieldTarget__Type(1) + QNearFieldTarget__NfcTagType2 = QNearFieldTarget__Type(2) + QNearFieldTarget__NfcTagType3 = QNearFieldTarget__Type(3) + QNearFieldTarget__NfcTagType4 = QNearFieldTarget__Type(4) + QNearFieldTarget__MifareTag = QNearFieldTarget__Type(5) +) + +func (ptr *QNearFieldTarget) AccessMethods() QNearFieldTarget__AccessMethod { + if ptr.Pointer() != nil { + return QNearFieldTarget__AccessMethod(C.QNearFieldTarget_AccessMethods(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNearFieldTarget) ConnectDisconnected(f func()) { + if ptr.Pointer() != nil { + C.QNearFieldTarget_ConnectDisconnected(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "disconnected", f) + } +} + +func (ptr *QNearFieldTarget) DisconnectDisconnected() { + if ptr.Pointer() != nil { + C.QNearFieldTarget_DisconnectDisconnected(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "disconnected") + } +} + +//export callbackQNearFieldTargetDisconnected +func callbackQNearFieldTargetDisconnected(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "disconnected").(func())() +} + +func (ptr *QNearFieldTarget) HasNdefMessage() bool { + if ptr.Pointer() != nil { + return C.QNearFieldTarget_HasNdefMessage(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QNearFieldTarget) IsProcessingCommand() bool { + if ptr.Pointer() != nil { + return C.QNearFieldTarget_IsProcessingCommand(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QNearFieldTarget) ConnectNdefMessagesWritten(f func()) { + if ptr.Pointer() != nil { + C.QNearFieldTarget_ConnectNdefMessagesWritten(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "ndefMessagesWritten", f) + } +} + +func (ptr *QNearFieldTarget) DisconnectNdefMessagesWritten() { + if ptr.Pointer() != nil { + C.QNearFieldTarget_DisconnectNdefMessagesWritten(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "ndefMessagesWritten") + } +} + +//export callbackQNearFieldTargetNdefMessagesWritten +func callbackQNearFieldTargetNdefMessagesWritten(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "ndefMessagesWritten").(func())() +} + +func (ptr *QNearFieldTarget) Type() QNearFieldTarget__Type { + if ptr.Pointer() != nil { + return QNearFieldTarget__Type(C.QNearFieldTarget_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNearFieldTarget) Url() string { + if ptr.Pointer() != nil { + return C.GoString(C.QNearFieldTarget_Url(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QNearFieldTarget) DestroyQNearFieldTarget() { + if ptr.Pointer() != nil { + C.QNearFieldTarget_DestroyQNearFieldTarget(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/nfc/qnearfieldtarget.h b/nfc/qnearfieldtarget.h new file mode 100755 index 00000000..49e97b9e --- /dev/null +++ b/nfc/qnearfieldtarget.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QNearFieldTarget_AccessMethods(QtObjectPtr ptr); +void QNearFieldTarget_ConnectDisconnected(QtObjectPtr ptr); +void QNearFieldTarget_DisconnectDisconnected(QtObjectPtr ptr); +int QNearFieldTarget_HasNdefMessage(QtObjectPtr ptr); +int QNearFieldTarget_IsProcessingCommand(QtObjectPtr ptr); +void QNearFieldTarget_ConnectNdefMessagesWritten(QtObjectPtr ptr); +void QNearFieldTarget_DisconnectNdefMessagesWritten(QtObjectPtr ptr); +int QNearFieldTarget_Type(QtObjectPtr ptr); +char* QNearFieldTarget_Url(QtObjectPtr ptr); +void QNearFieldTarget_DestroyQNearFieldTarget(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/nfc/qqmlndefrecord.cpp b/nfc/qqmlndefrecord.cpp new file mode 100755 index 00000000..a6bd251a --- /dev/null +++ b/nfc/qqmlndefrecord.cpp @@ -0,0 +1,69 @@ +#include "qqmlndefrecord.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQmlNdefRecord: public QQmlNdefRecord { +public: +void Signal_RecordChanged(){callbackQQmlNdefRecordRecordChanged(this->objectName().toUtf8().data());}; +void Signal_TypeChanged(){callbackQQmlNdefRecordTypeChanged(this->objectName().toUtf8().data());}; +void Signal_TypeNameFormatChanged(){callbackQQmlNdefRecordTypeNameFormatChanged(this->objectName().toUtf8().data());}; +}; + +int QQmlNdefRecord_TypeNameFormat(QtObjectPtr ptr){ + return static_cast(ptr)->typeNameFormat(); +} + +QtObjectPtr QQmlNdefRecord_NewQQmlNdefRecord(QtObjectPtr parent){ + return new QQmlNdefRecord(static_cast(parent)); +} + +QtObjectPtr QQmlNdefRecord_NewQQmlNdefRecord2(QtObjectPtr record, QtObjectPtr parent){ + return new QQmlNdefRecord(*static_cast(record), static_cast(parent)); +} + +void QQmlNdefRecord_ConnectRecordChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQmlNdefRecord::recordChanged), static_cast(ptr), static_cast(&MyQQmlNdefRecord::Signal_RecordChanged));; +} + +void QQmlNdefRecord_DisconnectRecordChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQmlNdefRecord::recordChanged), static_cast(ptr), static_cast(&MyQQmlNdefRecord::Signal_RecordChanged));; +} + +void QQmlNdefRecord_SetRecord(QtObjectPtr ptr, QtObjectPtr record){ + static_cast(ptr)->setRecord(*static_cast(record)); +} + +void QQmlNdefRecord_SetType(QtObjectPtr ptr, char* newtype){ + static_cast(ptr)->setType(QString(newtype)); +} + +void QQmlNdefRecord_SetTypeNameFormat(QtObjectPtr ptr, int newTypeNameFormat){ + static_cast(ptr)->setTypeNameFormat(static_cast(newTypeNameFormat)); +} + +char* QQmlNdefRecord_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type().toUtf8().data(); +} + +void QQmlNdefRecord_ConnectTypeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQmlNdefRecord::typeChanged), static_cast(ptr), static_cast(&MyQQmlNdefRecord::Signal_TypeChanged));; +} + +void QQmlNdefRecord_DisconnectTypeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQmlNdefRecord::typeChanged), static_cast(ptr), static_cast(&MyQQmlNdefRecord::Signal_TypeChanged));; +} + +void QQmlNdefRecord_ConnectTypeNameFormatChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQmlNdefRecord::typeNameFormatChanged), static_cast(ptr), static_cast(&MyQQmlNdefRecord::Signal_TypeNameFormatChanged));; +} + +void QQmlNdefRecord_DisconnectTypeNameFormatChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQmlNdefRecord::typeNameFormatChanged), static_cast(ptr), static_cast(&MyQQmlNdefRecord::Signal_TypeNameFormatChanged));; +} + diff --git a/nfc/qqmlndefrecord.go b/nfc/qqmlndefrecord.go new file mode 100755 index 00000000..e943240b --- /dev/null +++ b/nfc/qqmlndefrecord.go @@ -0,0 +1,147 @@ +package nfc + +//#include "qqmlndefrecord.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QQmlNdefRecord struct { + core.QObject +} + +type QQmlNdefRecordITF interface { + core.QObjectITF + QQmlNdefRecordPTR() *QQmlNdefRecord +} + +func PointerFromQQmlNdefRecord(ptr QQmlNdefRecordITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQmlNdefRecordPTR().Pointer() + } + return nil +} + +func QQmlNdefRecordFromPointer(ptr unsafe.Pointer) *QQmlNdefRecord { + var n = new(QQmlNdefRecord) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QQmlNdefRecord_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QQmlNdefRecord) QQmlNdefRecordPTR() *QQmlNdefRecord { + return ptr +} + +//QQmlNdefRecord::TypeNameFormat +type QQmlNdefRecord__TypeNameFormat int + +var ( + QQmlNdefRecord__Empty = QQmlNdefRecord__TypeNameFormat(QNdefRecord__Empty) + QQmlNdefRecord__NfcRtd = QQmlNdefRecord__TypeNameFormat(QNdefRecord__NfcRtd) + QQmlNdefRecord__Mime = QQmlNdefRecord__TypeNameFormat(QNdefRecord__Mime) + QQmlNdefRecord__Uri = QQmlNdefRecord__TypeNameFormat(QNdefRecord__Uri) + QQmlNdefRecord__ExternalRtd = QQmlNdefRecord__TypeNameFormat(QNdefRecord__ExternalRtd) + QQmlNdefRecord__Unknown = QQmlNdefRecord__TypeNameFormat(QNdefRecord__Unknown) +) + +func (ptr *QQmlNdefRecord) TypeNameFormat() QQmlNdefRecord__TypeNameFormat { + if ptr.Pointer() != nil { + return QQmlNdefRecord__TypeNameFormat(C.QQmlNdefRecord_TypeNameFormat(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQQmlNdefRecord(parent core.QObjectITF) *QQmlNdefRecord { + return QQmlNdefRecordFromPointer(unsafe.Pointer(C.QQmlNdefRecord_NewQQmlNdefRecord(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQQmlNdefRecord2(record QNdefRecordITF, parent core.QObjectITF) *QQmlNdefRecord { + return QQmlNdefRecordFromPointer(unsafe.Pointer(C.QQmlNdefRecord_NewQQmlNdefRecord2(C.QtObjectPtr(PointerFromQNdefRecord(record)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QQmlNdefRecord) ConnectRecordChanged(f func()) { + if ptr.Pointer() != nil { + C.QQmlNdefRecord_ConnectRecordChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "recordChanged", f) + } +} + +func (ptr *QQmlNdefRecord) DisconnectRecordChanged() { + if ptr.Pointer() != nil { + C.QQmlNdefRecord_DisconnectRecordChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "recordChanged") + } +} + +//export callbackQQmlNdefRecordRecordChanged +func callbackQQmlNdefRecordRecordChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "recordChanged").(func())() +} + +func (ptr *QQmlNdefRecord) SetRecord(record QNdefRecordITF) { + if ptr.Pointer() != nil { + C.QQmlNdefRecord_SetRecord(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQNdefRecord(record))) + } +} + +func (ptr *QQmlNdefRecord) SetType(newtype string) { + if ptr.Pointer() != nil { + C.QQmlNdefRecord_SetType(C.QtObjectPtr(ptr.Pointer()), C.CString(newtype)) + } +} + +func (ptr *QQmlNdefRecord) SetTypeNameFormat(newTypeNameFormat QQmlNdefRecord__TypeNameFormat) { + if ptr.Pointer() != nil { + C.QQmlNdefRecord_SetTypeNameFormat(C.QtObjectPtr(ptr.Pointer()), C.int(newTypeNameFormat)) + } +} + +func (ptr *QQmlNdefRecord) Type() string { + if ptr.Pointer() != nil { + return C.GoString(C.QQmlNdefRecord_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QQmlNdefRecord) ConnectTypeChanged(f func()) { + if ptr.Pointer() != nil { + C.QQmlNdefRecord_ConnectTypeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "typeChanged", f) + } +} + +func (ptr *QQmlNdefRecord) DisconnectTypeChanged() { + if ptr.Pointer() != nil { + C.QQmlNdefRecord_DisconnectTypeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "typeChanged") + } +} + +//export callbackQQmlNdefRecordTypeChanged +func callbackQQmlNdefRecordTypeChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "typeChanged").(func())() +} + +func (ptr *QQmlNdefRecord) ConnectTypeNameFormatChanged(f func()) { + if ptr.Pointer() != nil { + C.QQmlNdefRecord_ConnectTypeNameFormatChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "typeNameFormatChanged", f) + } +} + +func (ptr *QQmlNdefRecord) DisconnectTypeNameFormatChanged() { + if ptr.Pointer() != nil { + C.QQmlNdefRecord_DisconnectTypeNameFormatChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "typeNameFormatChanged") + } +} + +//export callbackQQmlNdefRecordTypeNameFormatChanged +func callbackQQmlNdefRecordTypeNameFormatChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "typeNameFormatChanged").(func())() +} diff --git a/nfc/qqmlndefrecord.h b/nfc/qqmlndefrecord.h new file mode 100755 index 00000000..99a6ee29 --- /dev/null +++ b/nfc/qqmlndefrecord.h @@ -0,0 +1,22 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QQmlNdefRecord_TypeNameFormat(QtObjectPtr ptr); +QtObjectPtr QQmlNdefRecord_NewQQmlNdefRecord(QtObjectPtr parent); +QtObjectPtr QQmlNdefRecord_NewQQmlNdefRecord2(QtObjectPtr record, QtObjectPtr parent); +void QQmlNdefRecord_ConnectRecordChanged(QtObjectPtr ptr); +void QQmlNdefRecord_DisconnectRecordChanged(QtObjectPtr ptr); +void QQmlNdefRecord_SetRecord(QtObjectPtr ptr, QtObjectPtr record); +void QQmlNdefRecord_SetType(QtObjectPtr ptr, char* newtype); +void QQmlNdefRecord_SetTypeNameFormat(QtObjectPtr ptr, int newTypeNameFormat); +char* QQmlNdefRecord_Type(QtObjectPtr ptr); +void QQmlNdefRecord_ConnectTypeChanged(QtObjectPtr ptr); +void QQmlNdefRecord_DisconnectTypeChanged(QtObjectPtr ptr); +void QQmlNdefRecord_ConnectTypeNameFormatChanged(QtObjectPtr ptr); +void QQmlNdefRecord_DisconnectTypeNameFormatChanged(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/positioning/cgo_darwin_amd64.go b/positioning/cgo_darwin_amd64.go new file mode 100755 index 00000000..472aa841 --- /dev/null +++ b/positioning/cgo_darwin_amd64.go @@ -0,0 +1,13 @@ +package positioning + +/* +#cgo CPPFLAGS: -pipe -O2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 -Wall -W +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_POSITIONING_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/mkspecs/macx-clang -F/usr/local/Qt5.5.1/5.5/clang_64/lib +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtCore.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtPositioning.framework/Headers +#cgo CPPFLAGS: -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.framework/Headers + +#cgo LDFLAGS: -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 +#cgo LDFLAGS: -F/usr/local/Qt5.5.1/5.5/clang_64/lib -framework QtCore -framework QtPositioning -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL +*/ +import "C" diff --git a/positioning/cgo_linux_386.go b/positioning/cgo_linux_386.go new file mode 100755 index 00000000..a4a7ea68 --- /dev/null +++ b/positioning/cgo_linux_386.go @@ -0,0 +1,12 @@ +package positioning + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_POSITIONING_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include -I/usr/local/Qt5.5.1/5.5/gcc/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc/include/QtPositioning + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc/lib -L/usr/lib -lQt5Core -lQt5Positioning -lpthread +*/ +import "C" diff --git a/positioning/cgo_linux_amd64.go b/positioning/cgo_linux_amd64.go new file mode 100755 index 00000000..2d679198 --- /dev/null +++ b/positioning/cgo_linux_amd64.go @@ -0,0 +1,12 @@ +package positioning + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_POSITIONING_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include -I/usr/local/Qt5.5.1/5.5/gcc_64/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtPositioning + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc_64/lib -L/usr/lib64 -lQt5Core -lQt5Positioning -lpthread +*/ +import "C" diff --git a/positioning/cgo_windows_386.go b/positioning/cgo_windows_386.go new file mode 100755 index 00000000..1278cc67 --- /dev/null +++ b/positioning/cgo_windows_386.go @@ -0,0 +1,12 @@ +package positioning + +/* +#cgo CPPFLAGS: -pipe -fno-keep-inline-dllexport -O2 -Wall -Wextra -fexceptions -mthreads +#cgo CPPFLAGS: -DUNICODE -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_POSITIONING_LIB +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include -IC:/Qt/Qt5.5.1/5.5/mingw492_32/mkspecs/win32-g++ +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtCore -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtPositioning + +#cgo LDFLAGS: -Wl,-s -Wl,-subsystem,windows -mthreads +#cgo LDFLAGS: -LC:/Qt/Qt5.5.1/5.5/mingw492_32/bin -lQt5Core -lQt5Positioning +*/ +import "C" diff --git a/positioning/qgeoaddress.cpp b/positioning/qgeoaddress.cpp new file mode 100755 index 00000000..9587f8ee --- /dev/null +++ b/positioning/qgeoaddress.cpp @@ -0,0 +1,104 @@ +#include "qgeoaddress.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGeoAddress: public QGeoAddress { +public: +}; + +QtObjectPtr QGeoAddress_NewQGeoAddress(){ + return new QGeoAddress(); +} + +QtObjectPtr QGeoAddress_NewQGeoAddress2(QtObjectPtr other){ + return new QGeoAddress(*static_cast(other)); +} + +char* QGeoAddress_City(QtObjectPtr ptr){ + return static_cast(ptr)->city().toUtf8().data(); +} + +void QGeoAddress_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +char* QGeoAddress_Country(QtObjectPtr ptr){ + return static_cast(ptr)->country().toUtf8().data(); +} + +char* QGeoAddress_CountryCode(QtObjectPtr ptr){ + return static_cast(ptr)->countryCode().toUtf8().data(); +} + +char* QGeoAddress_County(QtObjectPtr ptr){ + return static_cast(ptr)->county().toUtf8().data(); +} + +char* QGeoAddress_District(QtObjectPtr ptr){ + return static_cast(ptr)->district().toUtf8().data(); +} + +int QGeoAddress_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +int QGeoAddress_IsTextGenerated(QtObjectPtr ptr){ + return static_cast(ptr)->isTextGenerated(); +} + +char* QGeoAddress_PostalCode(QtObjectPtr ptr){ + return static_cast(ptr)->postalCode().toUtf8().data(); +} + +void QGeoAddress_SetCity(QtObjectPtr ptr, char* city){ + static_cast(ptr)->setCity(QString(city)); +} + +void QGeoAddress_SetCountry(QtObjectPtr ptr, char* country){ + static_cast(ptr)->setCountry(QString(country)); +} + +void QGeoAddress_SetCountryCode(QtObjectPtr ptr, char* countryCode){ + static_cast(ptr)->setCountryCode(QString(countryCode)); +} + +void QGeoAddress_SetCounty(QtObjectPtr ptr, char* county){ + static_cast(ptr)->setCounty(QString(county)); +} + +void QGeoAddress_SetDistrict(QtObjectPtr ptr, char* district){ + static_cast(ptr)->setDistrict(QString(district)); +} + +void QGeoAddress_SetPostalCode(QtObjectPtr ptr, char* postalCode){ + static_cast(ptr)->setPostalCode(QString(postalCode)); +} + +void QGeoAddress_SetState(QtObjectPtr ptr, char* state){ + static_cast(ptr)->setState(QString(state)); +} + +void QGeoAddress_SetStreet(QtObjectPtr ptr, char* street){ + static_cast(ptr)->setStreet(QString(street)); +} + +void QGeoAddress_SetText(QtObjectPtr ptr, char* text){ + static_cast(ptr)->setText(QString(text)); +} + +char* QGeoAddress_Street(QtObjectPtr ptr){ + return static_cast(ptr)->street().toUtf8().data(); +} + +char* QGeoAddress_Text(QtObjectPtr ptr){ + return static_cast(ptr)->text().toUtf8().data(); +} + +void QGeoAddress_DestroyQGeoAddress(QtObjectPtr ptr){ + static_cast(ptr)->~QGeoAddress(); +} + diff --git a/positioning/qgeoaddress.go b/positioning/qgeoaddress.go new file mode 100755 index 00000000..326eab08 --- /dev/null +++ b/positioning/qgeoaddress.go @@ -0,0 +1,184 @@ +package positioning + +//#include "qgeoaddress.h" +import "C" +import ( + "unsafe" +) + +type QGeoAddress struct { + ptr unsafe.Pointer +} + +type QGeoAddressITF interface { + QGeoAddressPTR() *QGeoAddress +} + +func (p *QGeoAddress) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QGeoAddress) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQGeoAddress(ptr QGeoAddressITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGeoAddressPTR().Pointer() + } + return nil +} + +func QGeoAddressFromPointer(ptr unsafe.Pointer) *QGeoAddress { + var n = new(QGeoAddress) + n.SetPointer(ptr) + return n +} + +func (ptr *QGeoAddress) QGeoAddressPTR() *QGeoAddress { + return ptr +} + +func NewQGeoAddress() *QGeoAddress { + return QGeoAddressFromPointer(unsafe.Pointer(C.QGeoAddress_NewQGeoAddress())) +} + +func NewQGeoAddress2(other QGeoAddressITF) *QGeoAddress { + return QGeoAddressFromPointer(unsafe.Pointer(C.QGeoAddress_NewQGeoAddress2(C.QtObjectPtr(PointerFromQGeoAddress(other))))) +} + +func (ptr *QGeoAddress) City() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGeoAddress_City(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QGeoAddress) Clear() { + if ptr.Pointer() != nil { + C.QGeoAddress_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QGeoAddress) Country() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGeoAddress_Country(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QGeoAddress) CountryCode() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGeoAddress_CountryCode(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QGeoAddress) County() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGeoAddress_County(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QGeoAddress) District() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGeoAddress_District(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QGeoAddress) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QGeoAddress_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGeoAddress) IsTextGenerated() bool { + if ptr.Pointer() != nil { + return C.QGeoAddress_IsTextGenerated(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGeoAddress) PostalCode() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGeoAddress_PostalCode(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QGeoAddress) SetCity(city string) { + if ptr.Pointer() != nil { + C.QGeoAddress_SetCity(C.QtObjectPtr(ptr.Pointer()), C.CString(city)) + } +} + +func (ptr *QGeoAddress) SetCountry(country string) { + if ptr.Pointer() != nil { + C.QGeoAddress_SetCountry(C.QtObjectPtr(ptr.Pointer()), C.CString(country)) + } +} + +func (ptr *QGeoAddress) SetCountryCode(countryCode string) { + if ptr.Pointer() != nil { + C.QGeoAddress_SetCountryCode(C.QtObjectPtr(ptr.Pointer()), C.CString(countryCode)) + } +} + +func (ptr *QGeoAddress) SetCounty(county string) { + if ptr.Pointer() != nil { + C.QGeoAddress_SetCounty(C.QtObjectPtr(ptr.Pointer()), C.CString(county)) + } +} + +func (ptr *QGeoAddress) SetDistrict(district string) { + if ptr.Pointer() != nil { + C.QGeoAddress_SetDistrict(C.QtObjectPtr(ptr.Pointer()), C.CString(district)) + } +} + +func (ptr *QGeoAddress) SetPostalCode(postalCode string) { + if ptr.Pointer() != nil { + C.QGeoAddress_SetPostalCode(C.QtObjectPtr(ptr.Pointer()), C.CString(postalCode)) + } +} + +func (ptr *QGeoAddress) SetState(state string) { + if ptr.Pointer() != nil { + C.QGeoAddress_SetState(C.QtObjectPtr(ptr.Pointer()), C.CString(state)) + } +} + +func (ptr *QGeoAddress) SetStreet(street string) { + if ptr.Pointer() != nil { + C.QGeoAddress_SetStreet(C.QtObjectPtr(ptr.Pointer()), C.CString(street)) + } +} + +func (ptr *QGeoAddress) SetText(text string) { + if ptr.Pointer() != nil { + C.QGeoAddress_SetText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QGeoAddress) Street() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGeoAddress_Street(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QGeoAddress) Text() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGeoAddress_Text(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QGeoAddress) DestroyQGeoAddress() { + if ptr.Pointer() != nil { + C.QGeoAddress_DestroyQGeoAddress(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/positioning/qgeoaddress.h b/positioning/qgeoaddress.h new file mode 100755 index 00000000..9829b776 --- /dev/null +++ b/positioning/qgeoaddress.h @@ -0,0 +1,32 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGeoAddress_NewQGeoAddress(); +QtObjectPtr QGeoAddress_NewQGeoAddress2(QtObjectPtr other); +char* QGeoAddress_City(QtObjectPtr ptr); +void QGeoAddress_Clear(QtObjectPtr ptr); +char* QGeoAddress_Country(QtObjectPtr ptr); +char* QGeoAddress_CountryCode(QtObjectPtr ptr); +char* QGeoAddress_County(QtObjectPtr ptr); +char* QGeoAddress_District(QtObjectPtr ptr); +int QGeoAddress_IsEmpty(QtObjectPtr ptr); +int QGeoAddress_IsTextGenerated(QtObjectPtr ptr); +char* QGeoAddress_PostalCode(QtObjectPtr ptr); +void QGeoAddress_SetCity(QtObjectPtr ptr, char* city); +void QGeoAddress_SetCountry(QtObjectPtr ptr, char* country); +void QGeoAddress_SetCountryCode(QtObjectPtr ptr, char* countryCode); +void QGeoAddress_SetCounty(QtObjectPtr ptr, char* county); +void QGeoAddress_SetDistrict(QtObjectPtr ptr, char* district); +void QGeoAddress_SetPostalCode(QtObjectPtr ptr, char* postalCode); +void QGeoAddress_SetState(QtObjectPtr ptr, char* state); +void QGeoAddress_SetStreet(QtObjectPtr ptr, char* street); +void QGeoAddress_SetText(QtObjectPtr ptr, char* text); +char* QGeoAddress_Street(QtObjectPtr ptr); +char* QGeoAddress_Text(QtObjectPtr ptr); +void QGeoAddress_DestroyQGeoAddress(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/positioning/qgeoareamonitorinfo.cpp b/positioning/qgeoareamonitorinfo.cpp new file mode 100755 index 00000000..fefa593a --- /dev/null +++ b/positioning/qgeoareamonitorinfo.cpp @@ -0,0 +1,59 @@ +#include "qgeoareamonitorinfo.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGeoAreaMonitorInfo: public QGeoAreaMonitorInfo { +public: +}; + +QtObjectPtr QGeoAreaMonitorInfo_NewQGeoAreaMonitorInfo2(QtObjectPtr other){ + return new QGeoAreaMonitorInfo(*static_cast(other)); +} + +QtObjectPtr QGeoAreaMonitorInfo_NewQGeoAreaMonitorInfo(char* name){ + return new QGeoAreaMonitorInfo(QString(name)); +} + +char* QGeoAreaMonitorInfo_Identifier(QtObjectPtr ptr){ + return static_cast(ptr)->identifier().toUtf8().data(); +} + +int QGeoAreaMonitorInfo_IsPersistent(QtObjectPtr ptr){ + return static_cast(ptr)->isPersistent(); +} + +int QGeoAreaMonitorInfo_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +char* QGeoAreaMonitorInfo_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +void QGeoAreaMonitorInfo_SetArea(QtObjectPtr ptr, QtObjectPtr newShape){ + static_cast(ptr)->setArea(*static_cast(newShape)); +} + +void QGeoAreaMonitorInfo_SetExpiration(QtObjectPtr ptr, QtObjectPtr expiry){ + static_cast(ptr)->setExpiration(*static_cast(expiry)); +} + +void QGeoAreaMonitorInfo_SetName(QtObjectPtr ptr, char* name){ + static_cast(ptr)->setName(QString(name)); +} + +void QGeoAreaMonitorInfo_SetPersistent(QtObjectPtr ptr, int isPersistent){ + static_cast(ptr)->setPersistent(isPersistent != 0); +} + +void QGeoAreaMonitorInfo_DestroyQGeoAreaMonitorInfo(QtObjectPtr ptr){ + static_cast(ptr)->~QGeoAreaMonitorInfo(); +} + diff --git a/positioning/qgeoareamonitorinfo.go b/positioning/qgeoareamonitorinfo.go new file mode 100755 index 00000000..e1d4fba0 --- /dev/null +++ b/positioning/qgeoareamonitorinfo.go @@ -0,0 +1,108 @@ +package positioning + +//#include "qgeoareamonitorinfo.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGeoAreaMonitorInfo struct { + ptr unsafe.Pointer +} + +type QGeoAreaMonitorInfoITF interface { + QGeoAreaMonitorInfoPTR() *QGeoAreaMonitorInfo +} + +func (p *QGeoAreaMonitorInfo) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QGeoAreaMonitorInfo) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQGeoAreaMonitorInfo(ptr QGeoAreaMonitorInfoITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGeoAreaMonitorInfoPTR().Pointer() + } + return nil +} + +func QGeoAreaMonitorInfoFromPointer(ptr unsafe.Pointer) *QGeoAreaMonitorInfo { + var n = new(QGeoAreaMonitorInfo) + n.SetPointer(ptr) + return n +} + +func (ptr *QGeoAreaMonitorInfo) QGeoAreaMonitorInfoPTR() *QGeoAreaMonitorInfo { + return ptr +} + +func NewQGeoAreaMonitorInfo2(other QGeoAreaMonitorInfoITF) *QGeoAreaMonitorInfo { + return QGeoAreaMonitorInfoFromPointer(unsafe.Pointer(C.QGeoAreaMonitorInfo_NewQGeoAreaMonitorInfo2(C.QtObjectPtr(PointerFromQGeoAreaMonitorInfo(other))))) +} + +func NewQGeoAreaMonitorInfo(name string) *QGeoAreaMonitorInfo { + return QGeoAreaMonitorInfoFromPointer(unsafe.Pointer(C.QGeoAreaMonitorInfo_NewQGeoAreaMonitorInfo(C.CString(name)))) +} + +func (ptr *QGeoAreaMonitorInfo) Identifier() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGeoAreaMonitorInfo_Identifier(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QGeoAreaMonitorInfo) IsPersistent() bool { + if ptr.Pointer() != nil { + return C.QGeoAreaMonitorInfo_IsPersistent(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGeoAreaMonitorInfo) IsValid() bool { + if ptr.Pointer() != nil { + return C.QGeoAreaMonitorInfo_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGeoAreaMonitorInfo) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGeoAreaMonitorInfo_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QGeoAreaMonitorInfo) SetArea(newShape QGeoShapeITF) { + if ptr.Pointer() != nil { + C.QGeoAreaMonitorInfo_SetArea(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGeoShape(newShape))) + } +} + +func (ptr *QGeoAreaMonitorInfo) SetExpiration(expiry core.QDateTimeITF) { + if ptr.Pointer() != nil { + C.QGeoAreaMonitorInfo_SetExpiration(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDateTime(expiry))) + } +} + +func (ptr *QGeoAreaMonitorInfo) SetName(name string) { + if ptr.Pointer() != nil { + C.QGeoAreaMonitorInfo_SetName(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func (ptr *QGeoAreaMonitorInfo) SetPersistent(isPersistent bool) { + if ptr.Pointer() != nil { + C.QGeoAreaMonitorInfo_SetPersistent(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(isPersistent))) + } +} + +func (ptr *QGeoAreaMonitorInfo) DestroyQGeoAreaMonitorInfo() { + if ptr.Pointer() != nil { + C.QGeoAreaMonitorInfo_DestroyQGeoAreaMonitorInfo(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/positioning/qgeoareamonitorinfo.h b/positioning/qgeoareamonitorinfo.h new file mode 100755 index 00000000..4ef11e11 --- /dev/null +++ b/positioning/qgeoareamonitorinfo.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGeoAreaMonitorInfo_NewQGeoAreaMonitorInfo2(QtObjectPtr other); +QtObjectPtr QGeoAreaMonitorInfo_NewQGeoAreaMonitorInfo(char* name); +char* QGeoAreaMonitorInfo_Identifier(QtObjectPtr ptr); +int QGeoAreaMonitorInfo_IsPersistent(QtObjectPtr ptr); +int QGeoAreaMonitorInfo_IsValid(QtObjectPtr ptr); +char* QGeoAreaMonitorInfo_Name(QtObjectPtr ptr); +void QGeoAreaMonitorInfo_SetArea(QtObjectPtr ptr, QtObjectPtr newShape); +void QGeoAreaMonitorInfo_SetExpiration(QtObjectPtr ptr, QtObjectPtr expiry); +void QGeoAreaMonitorInfo_SetName(QtObjectPtr ptr, char* name); +void QGeoAreaMonitorInfo_SetPersistent(QtObjectPtr ptr, int isPersistent); +void QGeoAreaMonitorInfo_DestroyQGeoAreaMonitorInfo(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/positioning/qgeoareamonitorsource.cpp b/positioning/qgeoareamonitorsource.cpp new file mode 100755 index 00000000..d352963c --- /dev/null +++ b/positioning/qgeoareamonitorsource.cpp @@ -0,0 +1,64 @@ +#include "qgeoareamonitorsource.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGeoAreaMonitorSource: public QGeoAreaMonitorSource { +public: +}; + +char* QGeoAreaMonitorSource_QGeoAreaMonitorSource_AvailableSources(){ + return QGeoAreaMonitorSource::availableSources().join("|").toUtf8().data(); +} + +QtObjectPtr QGeoAreaMonitorSource_QGeoAreaMonitorSource_CreateDefaultSource(QtObjectPtr parent){ + return QGeoAreaMonitorSource::createDefaultSource(static_cast(parent)); +} + +QtObjectPtr QGeoAreaMonitorSource_QGeoAreaMonitorSource_CreateSource(char* sourceName, QtObjectPtr parent){ + return QGeoAreaMonitorSource::createSource(QString(sourceName), static_cast(parent)); +} + +int QGeoAreaMonitorSource_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +QtObjectPtr QGeoAreaMonitorSource_PositionInfoSource(QtObjectPtr ptr){ + return static_cast(ptr)->positionInfoSource(); +} + +int QGeoAreaMonitorSource_RequestUpdate(QtObjectPtr ptr, QtObjectPtr monitor, char* signal){ + return static_cast(ptr)->requestUpdate(*static_cast(monitor), const_cast(signal)); +} + +void QGeoAreaMonitorSource_SetPositionInfoSource(QtObjectPtr ptr, QtObjectPtr newSource){ + static_cast(ptr)->setPositionInfoSource(static_cast(newSource)); +} + +char* QGeoAreaMonitorSource_SourceName(QtObjectPtr ptr){ + return static_cast(ptr)->sourceName().toUtf8().data(); +} + +int QGeoAreaMonitorSource_StartMonitoring(QtObjectPtr ptr, QtObjectPtr monitor){ + return static_cast(ptr)->startMonitoring(*static_cast(monitor)); +} + +int QGeoAreaMonitorSource_StopMonitoring(QtObjectPtr ptr, QtObjectPtr monitor){ + return static_cast(ptr)->stopMonitoring(*static_cast(monitor)); +} + +int QGeoAreaMonitorSource_SupportedAreaMonitorFeatures(QtObjectPtr ptr){ + return static_cast(ptr)->supportedAreaMonitorFeatures(); +} + +void QGeoAreaMonitorSource_DestroyQGeoAreaMonitorSource(QtObjectPtr ptr){ + static_cast(ptr)->~QGeoAreaMonitorSource(); +} + diff --git a/positioning/qgeoareamonitorsource.go b/positioning/qgeoareamonitorsource.go new file mode 100755 index 00000000..030df88d --- /dev/null +++ b/positioning/qgeoareamonitorsource.go @@ -0,0 +1,131 @@ +package positioning + +//#include "qgeoareamonitorsource.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QGeoAreaMonitorSource struct { + core.QObject +} + +type QGeoAreaMonitorSourceITF interface { + core.QObjectITF + QGeoAreaMonitorSourcePTR() *QGeoAreaMonitorSource +} + +func PointerFromQGeoAreaMonitorSource(ptr QGeoAreaMonitorSourceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGeoAreaMonitorSourcePTR().Pointer() + } + return nil +} + +func QGeoAreaMonitorSourceFromPointer(ptr unsafe.Pointer) *QGeoAreaMonitorSource { + var n = new(QGeoAreaMonitorSource) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGeoAreaMonitorSource_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGeoAreaMonitorSource) QGeoAreaMonitorSourcePTR() *QGeoAreaMonitorSource { + return ptr +} + +//QGeoAreaMonitorSource::AreaMonitorFeature +type QGeoAreaMonitorSource__AreaMonitorFeature int + +var ( + QGeoAreaMonitorSource__PersistentAreaMonitorFeature = QGeoAreaMonitorSource__AreaMonitorFeature(0x00000001) + QGeoAreaMonitorSource__AnyAreaMonitorFeature = QGeoAreaMonitorSource__AreaMonitorFeature(0xffffffff) +) + +//QGeoAreaMonitorSource::Error +type QGeoAreaMonitorSource__Error int + +var ( + QGeoAreaMonitorSource__AccessError = QGeoAreaMonitorSource__Error(0) + QGeoAreaMonitorSource__InsufficientPositionInfo = QGeoAreaMonitorSource__Error(1) + QGeoAreaMonitorSource__UnknownSourceError = QGeoAreaMonitorSource__Error(2) + QGeoAreaMonitorSource__NoError = QGeoAreaMonitorSource__Error(3) +) + +func QGeoAreaMonitorSource_AvailableSources() []string { + return strings.Split(C.GoString(C.QGeoAreaMonitorSource_QGeoAreaMonitorSource_AvailableSources()), "|") +} + +func QGeoAreaMonitorSource_CreateDefaultSource(parent core.QObjectITF) *QGeoAreaMonitorSource { + return QGeoAreaMonitorSourceFromPointer(unsafe.Pointer(C.QGeoAreaMonitorSource_QGeoAreaMonitorSource_CreateDefaultSource(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func QGeoAreaMonitorSource_CreateSource(sourceName string, parent core.QObjectITF) *QGeoAreaMonitorSource { + return QGeoAreaMonitorSourceFromPointer(unsafe.Pointer(C.QGeoAreaMonitorSource_QGeoAreaMonitorSource_CreateSource(C.CString(sourceName), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QGeoAreaMonitorSource) Error() QGeoAreaMonitorSource__Error { + if ptr.Pointer() != nil { + return QGeoAreaMonitorSource__Error(C.QGeoAreaMonitorSource_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoAreaMonitorSource) PositionInfoSource() *QGeoPositionInfoSource { + if ptr.Pointer() != nil { + return QGeoPositionInfoSourceFromPointer(unsafe.Pointer(C.QGeoAreaMonitorSource_PositionInfoSource(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QGeoAreaMonitorSource) RequestUpdate(monitor QGeoAreaMonitorInfoITF, signal string) bool { + if ptr.Pointer() != nil { + return C.QGeoAreaMonitorSource_RequestUpdate(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGeoAreaMonitorInfo(monitor)), C.CString(signal)) != 0 + } + return false +} + +func (ptr *QGeoAreaMonitorSource) SetPositionInfoSource(newSource QGeoPositionInfoSourceITF) { + if ptr.Pointer() != nil { + C.QGeoAreaMonitorSource_SetPositionInfoSource(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGeoPositionInfoSource(newSource))) + } +} + +func (ptr *QGeoAreaMonitorSource) SourceName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGeoAreaMonitorSource_SourceName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QGeoAreaMonitorSource) StartMonitoring(monitor QGeoAreaMonitorInfoITF) bool { + if ptr.Pointer() != nil { + return C.QGeoAreaMonitorSource_StartMonitoring(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGeoAreaMonitorInfo(monitor))) != 0 + } + return false +} + +func (ptr *QGeoAreaMonitorSource) StopMonitoring(monitor QGeoAreaMonitorInfoITF) bool { + if ptr.Pointer() != nil { + return C.QGeoAreaMonitorSource_StopMonitoring(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGeoAreaMonitorInfo(monitor))) != 0 + } + return false +} + +func (ptr *QGeoAreaMonitorSource) SupportedAreaMonitorFeatures() QGeoAreaMonitorSource__AreaMonitorFeature { + if ptr.Pointer() != nil { + return QGeoAreaMonitorSource__AreaMonitorFeature(C.QGeoAreaMonitorSource_SupportedAreaMonitorFeatures(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoAreaMonitorSource) DestroyQGeoAreaMonitorSource() { + if ptr.Pointer() != nil { + C.QGeoAreaMonitorSource_DestroyQGeoAreaMonitorSource(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/positioning/qgeoareamonitorsource.h b/positioning/qgeoareamonitorsource.h new file mode 100755 index 00000000..ff3d9c8c --- /dev/null +++ b/positioning/qgeoareamonitorsource.h @@ -0,0 +1,21 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QGeoAreaMonitorSource_QGeoAreaMonitorSource_AvailableSources(); +QtObjectPtr QGeoAreaMonitorSource_QGeoAreaMonitorSource_CreateDefaultSource(QtObjectPtr parent); +QtObjectPtr QGeoAreaMonitorSource_QGeoAreaMonitorSource_CreateSource(char* sourceName, QtObjectPtr parent); +int QGeoAreaMonitorSource_Error(QtObjectPtr ptr); +QtObjectPtr QGeoAreaMonitorSource_PositionInfoSource(QtObjectPtr ptr); +int QGeoAreaMonitorSource_RequestUpdate(QtObjectPtr ptr, QtObjectPtr monitor, char* signal); +void QGeoAreaMonitorSource_SetPositionInfoSource(QtObjectPtr ptr, QtObjectPtr newSource); +char* QGeoAreaMonitorSource_SourceName(QtObjectPtr ptr); +int QGeoAreaMonitorSource_StartMonitoring(QtObjectPtr ptr, QtObjectPtr monitor); +int QGeoAreaMonitorSource_StopMonitoring(QtObjectPtr ptr, QtObjectPtr monitor); +int QGeoAreaMonitorSource_SupportedAreaMonitorFeatures(QtObjectPtr ptr); +void QGeoAreaMonitorSource_DestroyQGeoAreaMonitorSource(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/positioning/qgeocircle.cpp b/positioning/qgeocircle.cpp new file mode 100755 index 00000000..81a1112a --- /dev/null +++ b/positioning/qgeocircle.cpp @@ -0,0 +1,38 @@ +#include "qgeocircle.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGeoCircle: public QGeoCircle { +public: +}; + +QtObjectPtr QGeoCircle_NewQGeoCircle(){ + return new QGeoCircle(); +} + +QtObjectPtr QGeoCircle_NewQGeoCircle3(QtObjectPtr other){ + return new QGeoCircle(*static_cast(other)); +} + +QtObjectPtr QGeoCircle_NewQGeoCircle4(QtObjectPtr other){ + return new QGeoCircle(*static_cast(other)); +} + +void QGeoCircle_SetCenter(QtObjectPtr ptr, QtObjectPtr center){ + static_cast(ptr)->setCenter(*static_cast(center)); +} + +char* QGeoCircle_ToString(QtObjectPtr ptr){ + return static_cast(ptr)->toString().toUtf8().data(); +} + +void QGeoCircle_DestroyQGeoCircle(QtObjectPtr ptr){ + static_cast(ptr)->~QGeoCircle(); +} + diff --git a/positioning/qgeocircle.go b/positioning/qgeocircle.go new file mode 100755 index 00000000..741366f9 --- /dev/null +++ b/positioning/qgeocircle.go @@ -0,0 +1,64 @@ +package positioning + +//#include "qgeocircle.h" +import "C" +import ( + "unsafe" +) + +type QGeoCircle struct { + QGeoShape +} + +type QGeoCircleITF interface { + QGeoShapeITF + QGeoCirclePTR() *QGeoCircle +} + +func PointerFromQGeoCircle(ptr QGeoCircleITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGeoCirclePTR().Pointer() + } + return nil +} + +func QGeoCircleFromPointer(ptr unsafe.Pointer) *QGeoCircle { + var n = new(QGeoCircle) + n.SetPointer(ptr) + return n +} + +func (ptr *QGeoCircle) QGeoCirclePTR() *QGeoCircle { + return ptr +} + +func NewQGeoCircle() *QGeoCircle { + return QGeoCircleFromPointer(unsafe.Pointer(C.QGeoCircle_NewQGeoCircle())) +} + +func NewQGeoCircle3(other QGeoCircleITF) *QGeoCircle { + return QGeoCircleFromPointer(unsafe.Pointer(C.QGeoCircle_NewQGeoCircle3(C.QtObjectPtr(PointerFromQGeoCircle(other))))) +} + +func NewQGeoCircle4(other QGeoShapeITF) *QGeoCircle { + return QGeoCircleFromPointer(unsafe.Pointer(C.QGeoCircle_NewQGeoCircle4(C.QtObjectPtr(PointerFromQGeoShape(other))))) +} + +func (ptr *QGeoCircle) SetCenter(center QGeoCoordinateITF) { + if ptr.Pointer() != nil { + C.QGeoCircle_SetCenter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGeoCoordinate(center))) + } +} + +func (ptr *QGeoCircle) ToString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGeoCircle_ToString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QGeoCircle) DestroyQGeoCircle() { + if ptr.Pointer() != nil { + C.QGeoCircle_DestroyQGeoCircle(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/positioning/qgeocircle.h b/positioning/qgeocircle.h new file mode 100755 index 00000000..90a8a34f --- /dev/null +++ b/positioning/qgeocircle.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGeoCircle_NewQGeoCircle(); +QtObjectPtr QGeoCircle_NewQGeoCircle3(QtObjectPtr other); +QtObjectPtr QGeoCircle_NewQGeoCircle4(QtObjectPtr other); +void QGeoCircle_SetCenter(QtObjectPtr ptr, QtObjectPtr center); +char* QGeoCircle_ToString(QtObjectPtr ptr); +void QGeoCircle_DestroyQGeoCircle(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/positioning/qgeocoordinate.cpp b/positioning/qgeocoordinate.cpp new file mode 100755 index 00000000..7aa03489 --- /dev/null +++ b/positioning/qgeocoordinate.cpp @@ -0,0 +1,36 @@ +#include "qgeocoordinate.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGeoCoordinate: public QGeoCoordinate { +public: +}; + +QtObjectPtr QGeoCoordinate_NewQGeoCoordinate(){ + return new QGeoCoordinate(); +} + +QtObjectPtr QGeoCoordinate_NewQGeoCoordinate4(QtObjectPtr other){ + return new QGeoCoordinate(*static_cast(other)); +} + +int QGeoCoordinate_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +char* QGeoCoordinate_ToString(QtObjectPtr ptr, int format){ + return static_cast(ptr)->toString(static_cast(format)).toUtf8().data(); +} + +int QGeoCoordinate_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QGeoCoordinate_DestroyQGeoCoordinate(QtObjectPtr ptr){ + static_cast(ptr)->~QGeoCoordinate(); +} + diff --git a/positioning/qgeocoordinate.go b/positioning/qgeocoordinate.go new file mode 100755 index 00000000..c79c2883 --- /dev/null +++ b/positioning/qgeocoordinate.go @@ -0,0 +1,96 @@ +package positioning + +//#include "qgeocoordinate.h" +import "C" +import ( + "unsafe" +) + +type QGeoCoordinate struct { + ptr unsafe.Pointer +} + +type QGeoCoordinateITF interface { + QGeoCoordinatePTR() *QGeoCoordinate +} + +func (p *QGeoCoordinate) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QGeoCoordinate) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQGeoCoordinate(ptr QGeoCoordinateITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGeoCoordinatePTR().Pointer() + } + return nil +} + +func QGeoCoordinateFromPointer(ptr unsafe.Pointer) *QGeoCoordinate { + var n = new(QGeoCoordinate) + n.SetPointer(ptr) + return n +} + +func (ptr *QGeoCoordinate) QGeoCoordinatePTR() *QGeoCoordinate { + return ptr +} + +//QGeoCoordinate::CoordinateFormat +type QGeoCoordinate__CoordinateFormat int + +var ( + QGeoCoordinate__Degrees = QGeoCoordinate__CoordinateFormat(0) + QGeoCoordinate__DegreesWithHemisphere = QGeoCoordinate__CoordinateFormat(1) + QGeoCoordinate__DegreesMinutes = QGeoCoordinate__CoordinateFormat(2) + QGeoCoordinate__DegreesMinutesWithHemisphere = QGeoCoordinate__CoordinateFormat(3) + QGeoCoordinate__DegreesMinutesSeconds = QGeoCoordinate__CoordinateFormat(4) + QGeoCoordinate__DegreesMinutesSecondsWithHemisphere = QGeoCoordinate__CoordinateFormat(5) +) + +//QGeoCoordinate::CoordinateType +type QGeoCoordinate__CoordinateType int + +var ( + QGeoCoordinate__InvalidCoordinate = QGeoCoordinate__CoordinateType(0) + QGeoCoordinate__Coordinate2D = QGeoCoordinate__CoordinateType(1) + QGeoCoordinate__Coordinate3D = QGeoCoordinate__CoordinateType(2) +) + +func NewQGeoCoordinate() *QGeoCoordinate { + return QGeoCoordinateFromPointer(unsafe.Pointer(C.QGeoCoordinate_NewQGeoCoordinate())) +} + +func NewQGeoCoordinate4(other QGeoCoordinateITF) *QGeoCoordinate { + return QGeoCoordinateFromPointer(unsafe.Pointer(C.QGeoCoordinate_NewQGeoCoordinate4(C.QtObjectPtr(PointerFromQGeoCoordinate(other))))) +} + +func (ptr *QGeoCoordinate) IsValid() bool { + if ptr.Pointer() != nil { + return C.QGeoCoordinate_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGeoCoordinate) ToString(format QGeoCoordinate__CoordinateFormat) string { + if ptr.Pointer() != nil { + return C.GoString(C.QGeoCoordinate_ToString(C.QtObjectPtr(ptr.Pointer()), C.int(format))) + } + return "" +} + +func (ptr *QGeoCoordinate) Type() QGeoCoordinate__CoordinateType { + if ptr.Pointer() != nil { + return QGeoCoordinate__CoordinateType(C.QGeoCoordinate_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoCoordinate) DestroyQGeoCoordinate() { + if ptr.Pointer() != nil { + C.QGeoCoordinate_DestroyQGeoCoordinate(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/positioning/qgeocoordinate.h b/positioning/qgeocoordinate.h new file mode 100755 index 00000000..dc81609e --- /dev/null +++ b/positioning/qgeocoordinate.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGeoCoordinate_NewQGeoCoordinate(); +QtObjectPtr QGeoCoordinate_NewQGeoCoordinate4(QtObjectPtr other); +int QGeoCoordinate_IsValid(QtObjectPtr ptr); +char* QGeoCoordinate_ToString(QtObjectPtr ptr, int format); +int QGeoCoordinate_Type(QtObjectPtr ptr); +void QGeoCoordinate_DestroyQGeoCoordinate(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/positioning/qgeolocation.cpp b/positioning/qgeolocation.cpp new file mode 100755 index 00000000..2905ca04 --- /dev/null +++ b/positioning/qgeolocation.cpp @@ -0,0 +1,7 @@ +#include "qgeolocation.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/positioning/qgeolocation.go b/positioning/qgeolocation.go new file mode 100755 index 00000000..ac14e66b --- /dev/null +++ b/positioning/qgeolocation.go @@ -0,0 +1,40 @@ +package positioning + +//#include "qgeolocation.h" +import "C" +import ( + "unsafe" +) + +type QGeoLocation struct { + ptr unsafe.Pointer +} + +type QGeoLocationITF interface { + QGeoLocationPTR() *QGeoLocation +} + +func (p *QGeoLocation) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QGeoLocation) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQGeoLocation(ptr QGeoLocationITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGeoLocationPTR().Pointer() + } + return nil +} + +func QGeoLocationFromPointer(ptr unsafe.Pointer) *QGeoLocation { + var n = new(QGeoLocation) + n.SetPointer(ptr) + return n +} + +func (ptr *QGeoLocation) QGeoLocationPTR() *QGeoLocation { + return ptr +} diff --git a/positioning/qgeolocation.h b/positioning/qgeolocation.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/positioning/qgeolocation.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/positioning/qgeopositioninfo.cpp b/positioning/qgeopositioninfo.cpp new file mode 100755 index 00000000..4963f66a --- /dev/null +++ b/positioning/qgeopositioninfo.cpp @@ -0,0 +1,51 @@ +#include "qgeopositioninfo.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGeoPositionInfo: public QGeoPositionInfo { +public: +}; + +QtObjectPtr QGeoPositionInfo_NewQGeoPositionInfo(){ + return new QGeoPositionInfo(); +} + +QtObjectPtr QGeoPositionInfo_NewQGeoPositionInfo2(QtObjectPtr coordinate, QtObjectPtr timestamp){ + return new QGeoPositionInfo(*static_cast(coordinate), *static_cast(timestamp)); +} + +QtObjectPtr QGeoPositionInfo_NewQGeoPositionInfo3(QtObjectPtr other){ + return new QGeoPositionInfo(*static_cast(other)); +} + +int QGeoPositionInfo_HasAttribute(QtObjectPtr ptr, int attribute){ + return static_cast(ptr)->hasAttribute(static_cast(attribute)); +} + +int QGeoPositionInfo_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +void QGeoPositionInfo_RemoveAttribute(QtObjectPtr ptr, int attribute){ + static_cast(ptr)->removeAttribute(static_cast(attribute)); +} + +void QGeoPositionInfo_SetCoordinate(QtObjectPtr ptr, QtObjectPtr coordinate){ + static_cast(ptr)->setCoordinate(*static_cast(coordinate)); +} + +void QGeoPositionInfo_SetTimestamp(QtObjectPtr ptr, QtObjectPtr timestamp){ + static_cast(ptr)->setTimestamp(*static_cast(timestamp)); +} + +void QGeoPositionInfo_DestroyQGeoPositionInfo(QtObjectPtr ptr){ + static_cast(ptr)->~QGeoPositionInfo(); +} + diff --git a/positioning/qgeopositioninfo.go b/positioning/qgeopositioninfo.go new file mode 100755 index 00000000..da72d8e6 --- /dev/null +++ b/positioning/qgeopositioninfo.go @@ -0,0 +1,103 @@ +package positioning + +//#include "qgeopositioninfo.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGeoPositionInfo struct { + ptr unsafe.Pointer +} + +type QGeoPositionInfoITF interface { + QGeoPositionInfoPTR() *QGeoPositionInfo +} + +func (p *QGeoPositionInfo) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QGeoPositionInfo) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQGeoPositionInfo(ptr QGeoPositionInfoITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGeoPositionInfoPTR().Pointer() + } + return nil +} + +func QGeoPositionInfoFromPointer(ptr unsafe.Pointer) *QGeoPositionInfo { + var n = new(QGeoPositionInfo) + n.SetPointer(ptr) + return n +} + +func (ptr *QGeoPositionInfo) QGeoPositionInfoPTR() *QGeoPositionInfo { + return ptr +} + +//QGeoPositionInfo::Attribute +type QGeoPositionInfo__Attribute int + +var ( + QGeoPositionInfo__Direction = QGeoPositionInfo__Attribute(0) + QGeoPositionInfo__GroundSpeed = QGeoPositionInfo__Attribute(1) + QGeoPositionInfo__VerticalSpeed = QGeoPositionInfo__Attribute(2) + QGeoPositionInfo__MagneticVariation = QGeoPositionInfo__Attribute(3) + QGeoPositionInfo__HorizontalAccuracy = QGeoPositionInfo__Attribute(4) + QGeoPositionInfo__VerticalAccuracy = QGeoPositionInfo__Attribute(5) +) + +func NewQGeoPositionInfo() *QGeoPositionInfo { + return QGeoPositionInfoFromPointer(unsafe.Pointer(C.QGeoPositionInfo_NewQGeoPositionInfo())) +} + +func NewQGeoPositionInfo2(coordinate QGeoCoordinateITF, timestamp core.QDateTimeITF) *QGeoPositionInfo { + return QGeoPositionInfoFromPointer(unsafe.Pointer(C.QGeoPositionInfo_NewQGeoPositionInfo2(C.QtObjectPtr(PointerFromQGeoCoordinate(coordinate)), C.QtObjectPtr(core.PointerFromQDateTime(timestamp))))) +} + +func NewQGeoPositionInfo3(other QGeoPositionInfoITF) *QGeoPositionInfo { + return QGeoPositionInfoFromPointer(unsafe.Pointer(C.QGeoPositionInfo_NewQGeoPositionInfo3(C.QtObjectPtr(PointerFromQGeoPositionInfo(other))))) +} + +func (ptr *QGeoPositionInfo) HasAttribute(attribute QGeoPositionInfo__Attribute) bool { + if ptr.Pointer() != nil { + return C.QGeoPositionInfo_HasAttribute(C.QtObjectPtr(ptr.Pointer()), C.int(attribute)) != 0 + } + return false +} + +func (ptr *QGeoPositionInfo) IsValid() bool { + if ptr.Pointer() != nil { + return C.QGeoPositionInfo_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGeoPositionInfo) RemoveAttribute(attribute QGeoPositionInfo__Attribute) { + if ptr.Pointer() != nil { + C.QGeoPositionInfo_RemoveAttribute(C.QtObjectPtr(ptr.Pointer()), C.int(attribute)) + } +} + +func (ptr *QGeoPositionInfo) SetCoordinate(coordinate QGeoCoordinateITF) { + if ptr.Pointer() != nil { + C.QGeoPositionInfo_SetCoordinate(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGeoCoordinate(coordinate))) + } +} + +func (ptr *QGeoPositionInfo) SetTimestamp(timestamp core.QDateTimeITF) { + if ptr.Pointer() != nil { + C.QGeoPositionInfo_SetTimestamp(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDateTime(timestamp))) + } +} + +func (ptr *QGeoPositionInfo) DestroyQGeoPositionInfo() { + if ptr.Pointer() != nil { + C.QGeoPositionInfo_DestroyQGeoPositionInfo(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/positioning/qgeopositioninfo.h b/positioning/qgeopositioninfo.h new file mode 100755 index 00000000..02e7a20b --- /dev/null +++ b/positioning/qgeopositioninfo.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGeoPositionInfo_NewQGeoPositionInfo(); +QtObjectPtr QGeoPositionInfo_NewQGeoPositionInfo2(QtObjectPtr coordinate, QtObjectPtr timestamp); +QtObjectPtr QGeoPositionInfo_NewQGeoPositionInfo3(QtObjectPtr other); +int QGeoPositionInfo_HasAttribute(QtObjectPtr ptr, int attribute); +int QGeoPositionInfo_IsValid(QtObjectPtr ptr); +void QGeoPositionInfo_RemoveAttribute(QtObjectPtr ptr, int attribute); +void QGeoPositionInfo_SetCoordinate(QtObjectPtr ptr, QtObjectPtr coordinate); +void QGeoPositionInfo_SetTimestamp(QtObjectPtr ptr, QtObjectPtr timestamp); +void QGeoPositionInfo_DestroyQGeoPositionInfo(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/positioning/qgeopositioninfosource.cpp b/positioning/qgeopositioninfosource.cpp new file mode 100755 index 00000000..189444b8 --- /dev/null +++ b/positioning/qgeopositioninfosource.cpp @@ -0,0 +1,84 @@ +#include "qgeopositioninfosource.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGeoPositionInfoSource: public QGeoPositionInfoSource { +public: +void Signal_UpdateTimeout(){callbackQGeoPositionInfoSourceUpdateTimeout(this->objectName().toUtf8().data());}; +}; + +void QGeoPositionInfoSource_SetUpdateInterval(QtObjectPtr ptr, int msec){ + static_cast(ptr)->setUpdateInterval(msec); +} + +char* QGeoPositionInfoSource_SourceName(QtObjectPtr ptr){ + return static_cast(ptr)->sourceName().toUtf8().data(); +} + +int QGeoPositionInfoSource_UpdateInterval(QtObjectPtr ptr){ + return static_cast(ptr)->updateInterval(); +} + +char* QGeoPositionInfoSource_QGeoPositionInfoSource_AvailableSources(){ + return QGeoPositionInfoSource::availableSources().join("|").toUtf8().data(); +} + +QtObjectPtr QGeoPositionInfoSource_QGeoPositionInfoSource_CreateDefaultSource(QtObjectPtr parent){ + return QGeoPositionInfoSource::createDefaultSource(static_cast(parent)); +} + +QtObjectPtr QGeoPositionInfoSource_QGeoPositionInfoSource_CreateSource(char* sourceName, QtObjectPtr parent){ + return QGeoPositionInfoSource::createSource(QString(sourceName), static_cast(parent)); +} + +int QGeoPositionInfoSource_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +int QGeoPositionInfoSource_MinimumUpdateInterval(QtObjectPtr ptr){ + return static_cast(ptr)->minimumUpdateInterval(); +} + +int QGeoPositionInfoSource_PreferredPositioningMethods(QtObjectPtr ptr){ + return static_cast(ptr)->preferredPositioningMethods(); +} + +void QGeoPositionInfoSource_RequestUpdate(QtObjectPtr ptr, int timeout){ + QMetaObject::invokeMethod(static_cast(ptr), "requestUpdate", Q_ARG(int, timeout)); +} + +void QGeoPositionInfoSource_SetPreferredPositioningMethods(QtObjectPtr ptr, int methods){ + static_cast(ptr)->setPreferredPositioningMethods(static_cast(methods)); +} + +void QGeoPositionInfoSource_StartUpdates(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "startUpdates"); +} + +void QGeoPositionInfoSource_StopUpdates(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "stopUpdates"); +} + +int QGeoPositionInfoSource_SupportedPositioningMethods(QtObjectPtr ptr){ + return static_cast(ptr)->supportedPositioningMethods(); +} + +void QGeoPositionInfoSource_ConnectUpdateTimeout(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGeoPositionInfoSource::updateTimeout), static_cast(ptr), static_cast(&MyQGeoPositionInfoSource::Signal_UpdateTimeout));; +} + +void QGeoPositionInfoSource_DisconnectUpdateTimeout(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGeoPositionInfoSource::updateTimeout), static_cast(ptr), static_cast(&MyQGeoPositionInfoSource::Signal_UpdateTimeout));; +} + +void QGeoPositionInfoSource_DestroyQGeoPositionInfoSource(QtObjectPtr ptr){ + static_cast(ptr)->~QGeoPositionInfoSource(); +} + diff --git a/positioning/qgeopositioninfosource.go b/positioning/qgeopositioninfosource.go new file mode 100755 index 00000000..b158d171 --- /dev/null +++ b/positioning/qgeopositioninfosource.go @@ -0,0 +1,169 @@ +package positioning + +//#include "qgeopositioninfosource.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QGeoPositionInfoSource struct { + core.QObject +} + +type QGeoPositionInfoSourceITF interface { + core.QObjectITF + QGeoPositionInfoSourcePTR() *QGeoPositionInfoSource +} + +func PointerFromQGeoPositionInfoSource(ptr QGeoPositionInfoSourceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGeoPositionInfoSourcePTR().Pointer() + } + return nil +} + +func QGeoPositionInfoSourceFromPointer(ptr unsafe.Pointer) *QGeoPositionInfoSource { + var n = new(QGeoPositionInfoSource) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGeoPositionInfoSource_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGeoPositionInfoSource) QGeoPositionInfoSourcePTR() *QGeoPositionInfoSource { + return ptr +} + +//QGeoPositionInfoSource::Error +type QGeoPositionInfoSource__Error int + +var ( + QGeoPositionInfoSource__AccessError = QGeoPositionInfoSource__Error(0) + QGeoPositionInfoSource__ClosedError = QGeoPositionInfoSource__Error(1) + QGeoPositionInfoSource__UnknownSourceError = QGeoPositionInfoSource__Error(2) + QGeoPositionInfoSource__NoError = QGeoPositionInfoSource__Error(3) +) + +//QGeoPositionInfoSource::PositioningMethod +type QGeoPositionInfoSource__PositioningMethod int + +var ( + QGeoPositionInfoSource__NoPositioningMethods = QGeoPositionInfoSource__PositioningMethod(0x00000000) + QGeoPositionInfoSource__SatellitePositioningMethods = QGeoPositionInfoSource__PositioningMethod(0x000000ff) + QGeoPositionInfoSource__NonSatellitePositioningMethods = QGeoPositionInfoSource__PositioningMethod(0xffffff00) + QGeoPositionInfoSource__AllPositioningMethods = QGeoPositionInfoSource__PositioningMethod(0xffffffff) +) + +func (ptr *QGeoPositionInfoSource) SetUpdateInterval(msec int) { + if ptr.Pointer() != nil { + C.QGeoPositionInfoSource_SetUpdateInterval(C.QtObjectPtr(ptr.Pointer()), C.int(msec)) + } +} + +func (ptr *QGeoPositionInfoSource) SourceName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGeoPositionInfoSource_SourceName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QGeoPositionInfoSource) UpdateInterval() int { + if ptr.Pointer() != nil { + return int(C.QGeoPositionInfoSource_UpdateInterval(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QGeoPositionInfoSource_AvailableSources() []string { + return strings.Split(C.GoString(C.QGeoPositionInfoSource_QGeoPositionInfoSource_AvailableSources()), "|") +} + +func QGeoPositionInfoSource_CreateDefaultSource(parent core.QObjectITF) *QGeoPositionInfoSource { + return QGeoPositionInfoSourceFromPointer(unsafe.Pointer(C.QGeoPositionInfoSource_QGeoPositionInfoSource_CreateDefaultSource(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func QGeoPositionInfoSource_CreateSource(sourceName string, parent core.QObjectITF) *QGeoPositionInfoSource { + return QGeoPositionInfoSourceFromPointer(unsafe.Pointer(C.QGeoPositionInfoSource_QGeoPositionInfoSource_CreateSource(C.CString(sourceName), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QGeoPositionInfoSource) Error() QGeoPositionInfoSource__Error { + if ptr.Pointer() != nil { + return QGeoPositionInfoSource__Error(C.QGeoPositionInfoSource_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoPositionInfoSource) MinimumUpdateInterval() int { + if ptr.Pointer() != nil { + return int(C.QGeoPositionInfoSource_MinimumUpdateInterval(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoPositionInfoSource) PreferredPositioningMethods() QGeoPositionInfoSource__PositioningMethod { + if ptr.Pointer() != nil { + return QGeoPositionInfoSource__PositioningMethod(C.QGeoPositionInfoSource_PreferredPositioningMethods(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoPositionInfoSource) RequestUpdate(timeout int) { + if ptr.Pointer() != nil { + C.QGeoPositionInfoSource_RequestUpdate(C.QtObjectPtr(ptr.Pointer()), C.int(timeout)) + } +} + +func (ptr *QGeoPositionInfoSource) SetPreferredPositioningMethods(methods QGeoPositionInfoSource__PositioningMethod) { + if ptr.Pointer() != nil { + C.QGeoPositionInfoSource_SetPreferredPositioningMethods(C.QtObjectPtr(ptr.Pointer()), C.int(methods)) + } +} + +func (ptr *QGeoPositionInfoSource) StartUpdates() { + if ptr.Pointer() != nil { + C.QGeoPositionInfoSource_StartUpdates(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QGeoPositionInfoSource) StopUpdates() { + if ptr.Pointer() != nil { + C.QGeoPositionInfoSource_StopUpdates(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QGeoPositionInfoSource) SupportedPositioningMethods() QGeoPositionInfoSource__PositioningMethod { + if ptr.Pointer() != nil { + return QGeoPositionInfoSource__PositioningMethod(C.QGeoPositionInfoSource_SupportedPositioningMethods(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoPositionInfoSource) ConnectUpdateTimeout(f func()) { + if ptr.Pointer() != nil { + C.QGeoPositionInfoSource_ConnectUpdateTimeout(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "updateTimeout", f) + } +} + +func (ptr *QGeoPositionInfoSource) DisconnectUpdateTimeout() { + if ptr.Pointer() != nil { + C.QGeoPositionInfoSource_DisconnectUpdateTimeout(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "updateTimeout") + } +} + +//export callbackQGeoPositionInfoSourceUpdateTimeout +func callbackQGeoPositionInfoSourceUpdateTimeout(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "updateTimeout").(func())() +} + +func (ptr *QGeoPositionInfoSource) DestroyQGeoPositionInfoSource() { + if ptr.Pointer() != nil { + C.QGeoPositionInfoSource_DestroyQGeoPositionInfoSource(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/positioning/qgeopositioninfosource.h b/positioning/qgeopositioninfosource.h new file mode 100755 index 00000000..b0dc90e6 --- /dev/null +++ b/positioning/qgeopositioninfosource.h @@ -0,0 +1,26 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QGeoPositionInfoSource_SetUpdateInterval(QtObjectPtr ptr, int msec); +char* QGeoPositionInfoSource_SourceName(QtObjectPtr ptr); +int QGeoPositionInfoSource_UpdateInterval(QtObjectPtr ptr); +char* QGeoPositionInfoSource_QGeoPositionInfoSource_AvailableSources(); +QtObjectPtr QGeoPositionInfoSource_QGeoPositionInfoSource_CreateDefaultSource(QtObjectPtr parent); +QtObjectPtr QGeoPositionInfoSource_QGeoPositionInfoSource_CreateSource(char* sourceName, QtObjectPtr parent); +int QGeoPositionInfoSource_Error(QtObjectPtr ptr); +int QGeoPositionInfoSource_MinimumUpdateInterval(QtObjectPtr ptr); +int QGeoPositionInfoSource_PreferredPositioningMethods(QtObjectPtr ptr); +void QGeoPositionInfoSource_RequestUpdate(QtObjectPtr ptr, int timeout); +void QGeoPositionInfoSource_SetPreferredPositioningMethods(QtObjectPtr ptr, int methods); +void QGeoPositionInfoSource_StartUpdates(QtObjectPtr ptr); +void QGeoPositionInfoSource_StopUpdates(QtObjectPtr ptr); +int QGeoPositionInfoSource_SupportedPositioningMethods(QtObjectPtr ptr); +void QGeoPositionInfoSource_ConnectUpdateTimeout(QtObjectPtr ptr); +void QGeoPositionInfoSource_DisconnectUpdateTimeout(QtObjectPtr ptr); +void QGeoPositionInfoSource_DestroyQGeoPositionInfoSource(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/positioning/qgeopositioninfosourcefactory.cpp b/positioning/qgeopositioninfosourcefactory.cpp new file mode 100755 index 00000000..fb63bbce --- /dev/null +++ b/positioning/qgeopositioninfosourcefactory.cpp @@ -0,0 +1,31 @@ +#include "qgeopositioninfosourcefactory.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGeoPositionInfoSourceFactory: public QGeoPositionInfoSourceFactory { +public: +}; + +QtObjectPtr QGeoPositionInfoSourceFactory_AreaMonitor(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->areaMonitor(static_cast(parent)); +} + +QtObjectPtr QGeoPositionInfoSourceFactory_PositionInfoSource(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->positionInfoSource(static_cast(parent)); +} + +QtObjectPtr QGeoPositionInfoSourceFactory_SatelliteInfoSource(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->satelliteInfoSource(static_cast(parent)); +} + +void QGeoPositionInfoSourceFactory_DestroyQGeoPositionInfoSourceFactory(QtObjectPtr ptr){ + static_cast(ptr)->~QGeoPositionInfoSourceFactory(); +} + diff --git a/positioning/qgeopositioninfosourcefactory.go b/positioning/qgeopositioninfosourcefactory.go new file mode 100755 index 00000000..f28f6a17 --- /dev/null +++ b/positioning/qgeopositioninfosourcefactory.go @@ -0,0 +1,68 @@ +package positioning + +//#include "qgeopositioninfosourcefactory.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGeoPositionInfoSourceFactory struct { + ptr unsafe.Pointer +} + +type QGeoPositionInfoSourceFactoryITF interface { + QGeoPositionInfoSourceFactoryPTR() *QGeoPositionInfoSourceFactory +} + +func (p *QGeoPositionInfoSourceFactory) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QGeoPositionInfoSourceFactory) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQGeoPositionInfoSourceFactory(ptr QGeoPositionInfoSourceFactoryITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGeoPositionInfoSourceFactoryPTR().Pointer() + } + return nil +} + +func QGeoPositionInfoSourceFactoryFromPointer(ptr unsafe.Pointer) *QGeoPositionInfoSourceFactory { + var n = new(QGeoPositionInfoSourceFactory) + n.SetPointer(ptr) + return n +} + +func (ptr *QGeoPositionInfoSourceFactory) QGeoPositionInfoSourceFactoryPTR() *QGeoPositionInfoSourceFactory { + return ptr +} + +func (ptr *QGeoPositionInfoSourceFactory) AreaMonitor(parent core.QObjectITF) *QGeoAreaMonitorSource { + if ptr.Pointer() != nil { + return QGeoAreaMonitorSourceFromPointer(unsafe.Pointer(C.QGeoPositionInfoSourceFactory_AreaMonitor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(parent))))) + } + return nil +} + +func (ptr *QGeoPositionInfoSourceFactory) PositionInfoSource(parent core.QObjectITF) *QGeoPositionInfoSource { + if ptr.Pointer() != nil { + return QGeoPositionInfoSourceFromPointer(unsafe.Pointer(C.QGeoPositionInfoSourceFactory_PositionInfoSource(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(parent))))) + } + return nil +} + +func (ptr *QGeoPositionInfoSourceFactory) SatelliteInfoSource(parent core.QObjectITF) *QGeoSatelliteInfoSource { + if ptr.Pointer() != nil { + return QGeoSatelliteInfoSourceFromPointer(unsafe.Pointer(C.QGeoPositionInfoSourceFactory_SatelliteInfoSource(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(parent))))) + } + return nil +} + +func (ptr *QGeoPositionInfoSourceFactory) DestroyQGeoPositionInfoSourceFactory() { + if ptr.Pointer() != nil { + C.QGeoPositionInfoSourceFactory_DestroyQGeoPositionInfoSourceFactory(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/positioning/qgeopositioninfosourcefactory.h b/positioning/qgeopositioninfosourcefactory.h new file mode 100755 index 00000000..6399a0ff --- /dev/null +++ b/positioning/qgeopositioninfosourcefactory.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGeoPositionInfoSourceFactory_AreaMonitor(QtObjectPtr ptr, QtObjectPtr parent); +QtObjectPtr QGeoPositionInfoSourceFactory_PositionInfoSource(QtObjectPtr ptr, QtObjectPtr parent); +QtObjectPtr QGeoPositionInfoSourceFactory_SatelliteInfoSource(QtObjectPtr ptr, QtObjectPtr parent); +void QGeoPositionInfoSourceFactory_DestroyQGeoPositionInfoSourceFactory(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/positioning/qgeorectangle.cpp b/positioning/qgeorectangle.cpp new file mode 100755 index 00000000..98d37f8d --- /dev/null +++ b/positioning/qgeorectangle.cpp @@ -0,0 +1,66 @@ +#include "qgeorectangle.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGeoRectangle: public QGeoRectangle { +public: +}; + +QtObjectPtr QGeoRectangle_NewQGeoRectangle(){ + return new QGeoRectangle(); +} + +QtObjectPtr QGeoRectangle_NewQGeoRectangle3(QtObjectPtr topLeft, QtObjectPtr bottomRight){ + return new QGeoRectangle(*static_cast(topLeft), *static_cast(bottomRight)); +} + +QtObjectPtr QGeoRectangle_NewQGeoRectangle5(QtObjectPtr other){ + return new QGeoRectangle(*static_cast(other)); +} + +QtObjectPtr QGeoRectangle_NewQGeoRectangle6(QtObjectPtr other){ + return new QGeoRectangle(*static_cast(other)); +} + +int QGeoRectangle_Contains(QtObjectPtr ptr, QtObjectPtr rectangle){ + return static_cast(ptr)->contains(*static_cast(rectangle)); +} + +int QGeoRectangle_Intersects(QtObjectPtr ptr, QtObjectPtr rectangle){ + return static_cast(ptr)->intersects(*static_cast(rectangle)); +} + +void QGeoRectangle_SetBottomLeft(QtObjectPtr ptr, QtObjectPtr bottomLeft){ + static_cast(ptr)->setBottomLeft(*static_cast(bottomLeft)); +} + +void QGeoRectangle_SetBottomRight(QtObjectPtr ptr, QtObjectPtr bottomRight){ + static_cast(ptr)->setBottomRight(*static_cast(bottomRight)); +} + +void QGeoRectangle_SetCenter(QtObjectPtr ptr, QtObjectPtr center){ + static_cast(ptr)->setCenter(*static_cast(center)); +} + +void QGeoRectangle_SetTopLeft(QtObjectPtr ptr, QtObjectPtr topLeft){ + static_cast(ptr)->setTopLeft(*static_cast(topLeft)); +} + +void QGeoRectangle_SetTopRight(QtObjectPtr ptr, QtObjectPtr topRight){ + static_cast(ptr)->setTopRight(*static_cast(topRight)); +} + +char* QGeoRectangle_ToString(QtObjectPtr ptr){ + return static_cast(ptr)->toString().toUtf8().data(); +} + +void QGeoRectangle_DestroyQGeoRectangle(QtObjectPtr ptr){ + static_cast(ptr)->~QGeoRectangle(); +} + diff --git a/positioning/qgeorectangle.go b/positioning/qgeorectangle.go new file mode 100755 index 00000000..e49b64c4 --- /dev/null +++ b/positioning/qgeorectangle.go @@ -0,0 +1,106 @@ +package positioning + +//#include "qgeorectangle.h" +import "C" +import ( + "unsafe" +) + +type QGeoRectangle struct { + QGeoShape +} + +type QGeoRectangleITF interface { + QGeoShapeITF + QGeoRectanglePTR() *QGeoRectangle +} + +func PointerFromQGeoRectangle(ptr QGeoRectangleITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGeoRectanglePTR().Pointer() + } + return nil +} + +func QGeoRectangleFromPointer(ptr unsafe.Pointer) *QGeoRectangle { + var n = new(QGeoRectangle) + n.SetPointer(ptr) + return n +} + +func (ptr *QGeoRectangle) QGeoRectanglePTR() *QGeoRectangle { + return ptr +} + +func NewQGeoRectangle() *QGeoRectangle { + return QGeoRectangleFromPointer(unsafe.Pointer(C.QGeoRectangle_NewQGeoRectangle())) +} + +func NewQGeoRectangle3(topLeft QGeoCoordinateITF, bottomRight QGeoCoordinateITF) *QGeoRectangle { + return QGeoRectangleFromPointer(unsafe.Pointer(C.QGeoRectangle_NewQGeoRectangle3(C.QtObjectPtr(PointerFromQGeoCoordinate(topLeft)), C.QtObjectPtr(PointerFromQGeoCoordinate(bottomRight))))) +} + +func NewQGeoRectangle5(other QGeoRectangleITF) *QGeoRectangle { + return QGeoRectangleFromPointer(unsafe.Pointer(C.QGeoRectangle_NewQGeoRectangle5(C.QtObjectPtr(PointerFromQGeoRectangle(other))))) +} + +func NewQGeoRectangle6(other QGeoShapeITF) *QGeoRectangle { + return QGeoRectangleFromPointer(unsafe.Pointer(C.QGeoRectangle_NewQGeoRectangle6(C.QtObjectPtr(PointerFromQGeoShape(other))))) +} + +func (ptr *QGeoRectangle) Contains(rectangle QGeoRectangleITF) bool { + if ptr.Pointer() != nil { + return C.QGeoRectangle_Contains(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGeoRectangle(rectangle))) != 0 + } + return false +} + +func (ptr *QGeoRectangle) Intersects(rectangle QGeoRectangleITF) bool { + if ptr.Pointer() != nil { + return C.QGeoRectangle_Intersects(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGeoRectangle(rectangle))) != 0 + } + return false +} + +func (ptr *QGeoRectangle) SetBottomLeft(bottomLeft QGeoCoordinateITF) { + if ptr.Pointer() != nil { + C.QGeoRectangle_SetBottomLeft(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGeoCoordinate(bottomLeft))) + } +} + +func (ptr *QGeoRectangle) SetBottomRight(bottomRight QGeoCoordinateITF) { + if ptr.Pointer() != nil { + C.QGeoRectangle_SetBottomRight(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGeoCoordinate(bottomRight))) + } +} + +func (ptr *QGeoRectangle) SetCenter(center QGeoCoordinateITF) { + if ptr.Pointer() != nil { + C.QGeoRectangle_SetCenter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGeoCoordinate(center))) + } +} + +func (ptr *QGeoRectangle) SetTopLeft(topLeft QGeoCoordinateITF) { + if ptr.Pointer() != nil { + C.QGeoRectangle_SetTopLeft(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGeoCoordinate(topLeft))) + } +} + +func (ptr *QGeoRectangle) SetTopRight(topRight QGeoCoordinateITF) { + if ptr.Pointer() != nil { + C.QGeoRectangle_SetTopRight(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGeoCoordinate(topRight))) + } +} + +func (ptr *QGeoRectangle) ToString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGeoRectangle_ToString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QGeoRectangle) DestroyQGeoRectangle() { + if ptr.Pointer() != nil { + C.QGeoRectangle_DestroyQGeoRectangle(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/positioning/qgeorectangle.h b/positioning/qgeorectangle.h new file mode 100755 index 00000000..367184c5 --- /dev/null +++ b/positioning/qgeorectangle.h @@ -0,0 +1,22 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGeoRectangle_NewQGeoRectangle(); +QtObjectPtr QGeoRectangle_NewQGeoRectangle3(QtObjectPtr topLeft, QtObjectPtr bottomRight); +QtObjectPtr QGeoRectangle_NewQGeoRectangle5(QtObjectPtr other); +QtObjectPtr QGeoRectangle_NewQGeoRectangle6(QtObjectPtr other); +int QGeoRectangle_Contains(QtObjectPtr ptr, QtObjectPtr rectangle); +int QGeoRectangle_Intersects(QtObjectPtr ptr, QtObjectPtr rectangle); +void QGeoRectangle_SetBottomLeft(QtObjectPtr ptr, QtObjectPtr bottomLeft); +void QGeoRectangle_SetBottomRight(QtObjectPtr ptr, QtObjectPtr bottomRight); +void QGeoRectangle_SetCenter(QtObjectPtr ptr, QtObjectPtr center); +void QGeoRectangle_SetTopLeft(QtObjectPtr ptr, QtObjectPtr topLeft); +void QGeoRectangle_SetTopRight(QtObjectPtr ptr, QtObjectPtr topRight); +char* QGeoRectangle_ToString(QtObjectPtr ptr); +void QGeoRectangle_DestroyQGeoRectangle(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/positioning/qgeosatelliteinfo.cpp b/positioning/qgeosatelliteinfo.cpp new file mode 100755 index 00000000..679e066d --- /dev/null +++ b/positioning/qgeosatelliteinfo.cpp @@ -0,0 +1,56 @@ +#include "qgeosatelliteinfo.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGeoSatelliteInfo: public QGeoSatelliteInfo { +public: +}; + +QtObjectPtr QGeoSatelliteInfo_NewQGeoSatelliteInfo(){ + return new QGeoSatelliteInfo(); +} + +QtObjectPtr QGeoSatelliteInfo_NewQGeoSatelliteInfo2(QtObjectPtr other){ + return new QGeoSatelliteInfo(*static_cast(other)); +} + +int QGeoSatelliteInfo_HasAttribute(QtObjectPtr ptr, int attribute){ + return static_cast(ptr)->hasAttribute(static_cast(attribute)); +} + +void QGeoSatelliteInfo_RemoveAttribute(QtObjectPtr ptr, int attribute){ + static_cast(ptr)->removeAttribute(static_cast(attribute)); +} + +int QGeoSatelliteInfo_SatelliteIdentifier(QtObjectPtr ptr){ + return static_cast(ptr)->satelliteIdentifier(); +} + +int QGeoSatelliteInfo_SatelliteSystem(QtObjectPtr ptr){ + return static_cast(ptr)->satelliteSystem(); +} + +void QGeoSatelliteInfo_SetSatelliteIdentifier(QtObjectPtr ptr, int satId){ + static_cast(ptr)->setSatelliteIdentifier(satId); +} + +void QGeoSatelliteInfo_SetSatelliteSystem(QtObjectPtr ptr, int system){ + static_cast(ptr)->setSatelliteSystem(static_cast(system)); +} + +void QGeoSatelliteInfo_SetSignalStrength(QtObjectPtr ptr, int signalStrength){ + static_cast(ptr)->setSignalStrength(signalStrength); +} + +int QGeoSatelliteInfo_SignalStrength(QtObjectPtr ptr){ + return static_cast(ptr)->signalStrength(); +} + +void QGeoSatelliteInfo_DestroyQGeoSatelliteInfo(QtObjectPtr ptr){ + static_cast(ptr)->~QGeoSatelliteInfo(); +} + diff --git a/positioning/qgeosatelliteinfo.go b/positioning/qgeosatelliteinfo.go new file mode 100755 index 00000000..ca8be0e3 --- /dev/null +++ b/positioning/qgeosatelliteinfo.go @@ -0,0 +1,123 @@ +package positioning + +//#include "qgeosatelliteinfo.h" +import "C" +import ( + "unsafe" +) + +type QGeoSatelliteInfo struct { + ptr unsafe.Pointer +} + +type QGeoSatelliteInfoITF interface { + QGeoSatelliteInfoPTR() *QGeoSatelliteInfo +} + +func (p *QGeoSatelliteInfo) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QGeoSatelliteInfo) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQGeoSatelliteInfo(ptr QGeoSatelliteInfoITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGeoSatelliteInfoPTR().Pointer() + } + return nil +} + +func QGeoSatelliteInfoFromPointer(ptr unsafe.Pointer) *QGeoSatelliteInfo { + var n = new(QGeoSatelliteInfo) + n.SetPointer(ptr) + return n +} + +func (ptr *QGeoSatelliteInfo) QGeoSatelliteInfoPTR() *QGeoSatelliteInfo { + return ptr +} + +//QGeoSatelliteInfo::Attribute +type QGeoSatelliteInfo__Attribute int + +var ( + QGeoSatelliteInfo__Elevation = QGeoSatelliteInfo__Attribute(0) + QGeoSatelliteInfo__Azimuth = QGeoSatelliteInfo__Attribute(1) +) + +//QGeoSatelliteInfo::SatelliteSystem +type QGeoSatelliteInfo__SatelliteSystem int + +var ( + QGeoSatelliteInfo__Undefined = QGeoSatelliteInfo__SatelliteSystem(0x00) + QGeoSatelliteInfo__GPS = QGeoSatelliteInfo__SatelliteSystem(0x01) + QGeoSatelliteInfo__GLONASS = QGeoSatelliteInfo__SatelliteSystem(0x02) +) + +func NewQGeoSatelliteInfo() *QGeoSatelliteInfo { + return QGeoSatelliteInfoFromPointer(unsafe.Pointer(C.QGeoSatelliteInfo_NewQGeoSatelliteInfo())) +} + +func NewQGeoSatelliteInfo2(other QGeoSatelliteInfoITF) *QGeoSatelliteInfo { + return QGeoSatelliteInfoFromPointer(unsafe.Pointer(C.QGeoSatelliteInfo_NewQGeoSatelliteInfo2(C.QtObjectPtr(PointerFromQGeoSatelliteInfo(other))))) +} + +func (ptr *QGeoSatelliteInfo) HasAttribute(attribute QGeoSatelliteInfo__Attribute) bool { + if ptr.Pointer() != nil { + return C.QGeoSatelliteInfo_HasAttribute(C.QtObjectPtr(ptr.Pointer()), C.int(attribute)) != 0 + } + return false +} + +func (ptr *QGeoSatelliteInfo) RemoveAttribute(attribute QGeoSatelliteInfo__Attribute) { + if ptr.Pointer() != nil { + C.QGeoSatelliteInfo_RemoveAttribute(C.QtObjectPtr(ptr.Pointer()), C.int(attribute)) + } +} + +func (ptr *QGeoSatelliteInfo) SatelliteIdentifier() int { + if ptr.Pointer() != nil { + return int(C.QGeoSatelliteInfo_SatelliteIdentifier(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoSatelliteInfo) SatelliteSystem() QGeoSatelliteInfo__SatelliteSystem { + if ptr.Pointer() != nil { + return QGeoSatelliteInfo__SatelliteSystem(C.QGeoSatelliteInfo_SatelliteSystem(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoSatelliteInfo) SetSatelliteIdentifier(satId int) { + if ptr.Pointer() != nil { + C.QGeoSatelliteInfo_SetSatelliteIdentifier(C.QtObjectPtr(ptr.Pointer()), C.int(satId)) + } +} + +func (ptr *QGeoSatelliteInfo) SetSatelliteSystem(system QGeoSatelliteInfo__SatelliteSystem) { + if ptr.Pointer() != nil { + C.QGeoSatelliteInfo_SetSatelliteSystem(C.QtObjectPtr(ptr.Pointer()), C.int(system)) + } +} + +func (ptr *QGeoSatelliteInfo) SetSignalStrength(signalStrength int) { + if ptr.Pointer() != nil { + C.QGeoSatelliteInfo_SetSignalStrength(C.QtObjectPtr(ptr.Pointer()), C.int(signalStrength)) + } +} + +func (ptr *QGeoSatelliteInfo) SignalStrength() int { + if ptr.Pointer() != nil { + return int(C.QGeoSatelliteInfo_SignalStrength(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoSatelliteInfo) DestroyQGeoSatelliteInfo() { + if ptr.Pointer() != nil { + C.QGeoSatelliteInfo_DestroyQGeoSatelliteInfo(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/positioning/qgeosatelliteinfo.h b/positioning/qgeosatelliteinfo.h new file mode 100755 index 00000000..7296bba9 --- /dev/null +++ b/positioning/qgeosatelliteinfo.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGeoSatelliteInfo_NewQGeoSatelliteInfo(); +QtObjectPtr QGeoSatelliteInfo_NewQGeoSatelliteInfo2(QtObjectPtr other); +int QGeoSatelliteInfo_HasAttribute(QtObjectPtr ptr, int attribute); +void QGeoSatelliteInfo_RemoveAttribute(QtObjectPtr ptr, int attribute); +int QGeoSatelliteInfo_SatelliteIdentifier(QtObjectPtr ptr); +int QGeoSatelliteInfo_SatelliteSystem(QtObjectPtr ptr); +void QGeoSatelliteInfo_SetSatelliteIdentifier(QtObjectPtr ptr, int satId); +void QGeoSatelliteInfo_SetSatelliteSystem(QtObjectPtr ptr, int system); +void QGeoSatelliteInfo_SetSignalStrength(QtObjectPtr ptr, int signalStrength); +int QGeoSatelliteInfo_SignalStrength(QtObjectPtr ptr); +void QGeoSatelliteInfo_DestroyQGeoSatelliteInfo(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/positioning/qgeosatelliteinfosource.cpp b/positioning/qgeosatelliteinfosource.cpp new file mode 100755 index 00000000..968482dc --- /dev/null +++ b/positioning/qgeosatelliteinfosource.cpp @@ -0,0 +1,72 @@ +#include "qgeosatelliteinfosource.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGeoSatelliteInfoSource: public QGeoSatelliteInfoSource { +public: +void Signal_RequestTimeout(){callbackQGeoSatelliteInfoSourceRequestTimeout(this->objectName().toUtf8().data());}; +}; + +void QGeoSatelliteInfoSource_SetUpdateInterval(QtObjectPtr ptr, int msec){ + static_cast(ptr)->setUpdateInterval(msec); +} + +int QGeoSatelliteInfoSource_UpdateInterval(QtObjectPtr ptr){ + return static_cast(ptr)->updateInterval(); +} + +char* QGeoSatelliteInfoSource_QGeoSatelliteInfoSource_AvailableSources(){ + return QGeoSatelliteInfoSource::availableSources().join("|").toUtf8().data(); +} + +QtObjectPtr QGeoSatelliteInfoSource_QGeoSatelliteInfoSource_CreateDefaultSource(QtObjectPtr parent){ + return QGeoSatelliteInfoSource::createDefaultSource(static_cast(parent)); +} + +QtObjectPtr QGeoSatelliteInfoSource_QGeoSatelliteInfoSource_CreateSource(char* sourceName, QtObjectPtr parent){ + return QGeoSatelliteInfoSource::createSource(QString(sourceName), static_cast(parent)); +} + +int QGeoSatelliteInfoSource_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +int QGeoSatelliteInfoSource_MinimumUpdateInterval(QtObjectPtr ptr){ + return static_cast(ptr)->minimumUpdateInterval(); +} + +void QGeoSatelliteInfoSource_ConnectRequestTimeout(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGeoSatelliteInfoSource::requestTimeout), static_cast(ptr), static_cast(&MyQGeoSatelliteInfoSource::Signal_RequestTimeout));; +} + +void QGeoSatelliteInfoSource_DisconnectRequestTimeout(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGeoSatelliteInfoSource::requestTimeout), static_cast(ptr), static_cast(&MyQGeoSatelliteInfoSource::Signal_RequestTimeout));; +} + +void QGeoSatelliteInfoSource_RequestUpdate(QtObjectPtr ptr, int timeout){ + QMetaObject::invokeMethod(static_cast(ptr), "requestUpdate", Q_ARG(int, timeout)); +} + +char* QGeoSatelliteInfoSource_SourceName(QtObjectPtr ptr){ + return static_cast(ptr)->sourceName().toUtf8().data(); +} + +void QGeoSatelliteInfoSource_StartUpdates(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "startUpdates"); +} + +void QGeoSatelliteInfoSource_StopUpdates(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "stopUpdates"); +} + +void QGeoSatelliteInfoSource_DestroyQGeoSatelliteInfoSource(QtObjectPtr ptr){ + static_cast(ptr)->~QGeoSatelliteInfoSource(); +} + diff --git a/positioning/qgeosatelliteinfosource.go b/positioning/qgeosatelliteinfosource.go new file mode 100755 index 00000000..1980d51c --- /dev/null +++ b/positioning/qgeosatelliteinfosource.go @@ -0,0 +1,139 @@ +package positioning + +//#include "qgeosatelliteinfosource.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QGeoSatelliteInfoSource struct { + core.QObject +} + +type QGeoSatelliteInfoSourceITF interface { + core.QObjectITF + QGeoSatelliteInfoSourcePTR() *QGeoSatelliteInfoSource +} + +func PointerFromQGeoSatelliteInfoSource(ptr QGeoSatelliteInfoSourceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGeoSatelliteInfoSourcePTR().Pointer() + } + return nil +} + +func QGeoSatelliteInfoSourceFromPointer(ptr unsafe.Pointer) *QGeoSatelliteInfoSource { + var n = new(QGeoSatelliteInfoSource) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGeoSatelliteInfoSource_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGeoSatelliteInfoSource) QGeoSatelliteInfoSourcePTR() *QGeoSatelliteInfoSource { + return ptr +} + +//QGeoSatelliteInfoSource::Error +type QGeoSatelliteInfoSource__Error int + +var ( + QGeoSatelliteInfoSource__AccessError = QGeoSatelliteInfoSource__Error(0) + QGeoSatelliteInfoSource__ClosedError = QGeoSatelliteInfoSource__Error(1) + QGeoSatelliteInfoSource__NoError = QGeoSatelliteInfoSource__Error(2) + QGeoSatelliteInfoSource__UnknownSourceError = QGeoSatelliteInfoSource__Error(-1) +) + +func (ptr *QGeoSatelliteInfoSource) SetUpdateInterval(msec int) { + if ptr.Pointer() != nil { + C.QGeoSatelliteInfoSource_SetUpdateInterval(C.QtObjectPtr(ptr.Pointer()), C.int(msec)) + } +} + +func (ptr *QGeoSatelliteInfoSource) UpdateInterval() int { + if ptr.Pointer() != nil { + return int(C.QGeoSatelliteInfoSource_UpdateInterval(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QGeoSatelliteInfoSource_AvailableSources() []string { + return strings.Split(C.GoString(C.QGeoSatelliteInfoSource_QGeoSatelliteInfoSource_AvailableSources()), "|") +} + +func QGeoSatelliteInfoSource_CreateDefaultSource(parent core.QObjectITF) *QGeoSatelliteInfoSource { + return QGeoSatelliteInfoSourceFromPointer(unsafe.Pointer(C.QGeoSatelliteInfoSource_QGeoSatelliteInfoSource_CreateDefaultSource(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func QGeoSatelliteInfoSource_CreateSource(sourceName string, parent core.QObjectITF) *QGeoSatelliteInfoSource { + return QGeoSatelliteInfoSourceFromPointer(unsafe.Pointer(C.QGeoSatelliteInfoSource_QGeoSatelliteInfoSource_CreateSource(C.CString(sourceName), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QGeoSatelliteInfoSource) Error() QGeoSatelliteInfoSource__Error { + if ptr.Pointer() != nil { + return QGeoSatelliteInfoSource__Error(C.QGeoSatelliteInfoSource_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoSatelliteInfoSource) MinimumUpdateInterval() int { + if ptr.Pointer() != nil { + return int(C.QGeoSatelliteInfoSource_MinimumUpdateInterval(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoSatelliteInfoSource) ConnectRequestTimeout(f func()) { + if ptr.Pointer() != nil { + C.QGeoSatelliteInfoSource_ConnectRequestTimeout(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "requestTimeout", f) + } +} + +func (ptr *QGeoSatelliteInfoSource) DisconnectRequestTimeout() { + if ptr.Pointer() != nil { + C.QGeoSatelliteInfoSource_DisconnectRequestTimeout(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "requestTimeout") + } +} + +//export callbackQGeoSatelliteInfoSourceRequestTimeout +func callbackQGeoSatelliteInfoSourceRequestTimeout(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "requestTimeout").(func())() +} + +func (ptr *QGeoSatelliteInfoSource) RequestUpdate(timeout int) { + if ptr.Pointer() != nil { + C.QGeoSatelliteInfoSource_RequestUpdate(C.QtObjectPtr(ptr.Pointer()), C.int(timeout)) + } +} + +func (ptr *QGeoSatelliteInfoSource) SourceName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGeoSatelliteInfoSource_SourceName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QGeoSatelliteInfoSource) StartUpdates() { + if ptr.Pointer() != nil { + C.QGeoSatelliteInfoSource_StartUpdates(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QGeoSatelliteInfoSource) StopUpdates() { + if ptr.Pointer() != nil { + C.QGeoSatelliteInfoSource_StopUpdates(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QGeoSatelliteInfoSource) DestroyQGeoSatelliteInfoSource() { + if ptr.Pointer() != nil { + C.QGeoSatelliteInfoSource_DestroyQGeoSatelliteInfoSource(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/positioning/qgeosatelliteinfosource.h b/positioning/qgeosatelliteinfosource.h new file mode 100755 index 00000000..04725349 --- /dev/null +++ b/positioning/qgeosatelliteinfosource.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QGeoSatelliteInfoSource_SetUpdateInterval(QtObjectPtr ptr, int msec); +int QGeoSatelliteInfoSource_UpdateInterval(QtObjectPtr ptr); +char* QGeoSatelliteInfoSource_QGeoSatelliteInfoSource_AvailableSources(); +QtObjectPtr QGeoSatelliteInfoSource_QGeoSatelliteInfoSource_CreateDefaultSource(QtObjectPtr parent); +QtObjectPtr QGeoSatelliteInfoSource_QGeoSatelliteInfoSource_CreateSource(char* sourceName, QtObjectPtr parent); +int QGeoSatelliteInfoSource_Error(QtObjectPtr ptr); +int QGeoSatelliteInfoSource_MinimumUpdateInterval(QtObjectPtr ptr); +void QGeoSatelliteInfoSource_ConnectRequestTimeout(QtObjectPtr ptr); +void QGeoSatelliteInfoSource_DisconnectRequestTimeout(QtObjectPtr ptr); +void QGeoSatelliteInfoSource_RequestUpdate(QtObjectPtr ptr, int timeout); +char* QGeoSatelliteInfoSource_SourceName(QtObjectPtr ptr); +void QGeoSatelliteInfoSource_StartUpdates(QtObjectPtr ptr); +void QGeoSatelliteInfoSource_StopUpdates(QtObjectPtr ptr); +void QGeoSatelliteInfoSource_DestroyQGeoSatelliteInfoSource(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/positioning/qgeoshape.cpp b/positioning/qgeoshape.cpp new file mode 100755 index 00000000..0c4cf0a4 --- /dev/null +++ b/positioning/qgeoshape.cpp @@ -0,0 +1,49 @@ +#include "qgeoshape.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGeoShape: public QGeoShape { +public: +}; + +QtObjectPtr QGeoShape_NewQGeoShape(){ + return new QGeoShape(); +} + +QtObjectPtr QGeoShape_NewQGeoShape2(QtObjectPtr other){ + return new QGeoShape(*static_cast(other)); +} + +int QGeoShape_Contains(QtObjectPtr ptr, QtObjectPtr coordinate){ + return static_cast(ptr)->contains(*static_cast(coordinate)); +} + +void QGeoShape_ExtendShape(QtObjectPtr ptr, QtObjectPtr coordinate){ + static_cast(ptr)->extendShape(*static_cast(coordinate)); +} + +int QGeoShape_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +int QGeoShape_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +char* QGeoShape_ToString(QtObjectPtr ptr){ + return static_cast(ptr)->toString().toUtf8().data(); +} + +int QGeoShape_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QGeoShape_DestroyQGeoShape(QtObjectPtr ptr){ + static_cast(ptr)->~QGeoShape(); +} + diff --git a/positioning/qgeoshape.go b/positioning/qgeoshape.go new file mode 100755 index 00000000..bf1f1ede --- /dev/null +++ b/positioning/qgeoshape.go @@ -0,0 +1,104 @@ +package positioning + +//#include "qgeoshape.h" +import "C" +import ( + "unsafe" +) + +type QGeoShape struct { + ptr unsafe.Pointer +} + +type QGeoShapeITF interface { + QGeoShapePTR() *QGeoShape +} + +func (p *QGeoShape) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QGeoShape) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQGeoShape(ptr QGeoShapeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGeoShapePTR().Pointer() + } + return nil +} + +func QGeoShapeFromPointer(ptr unsafe.Pointer) *QGeoShape { + var n = new(QGeoShape) + n.SetPointer(ptr) + return n +} + +func (ptr *QGeoShape) QGeoShapePTR() *QGeoShape { + return ptr +} + +//QGeoShape::ShapeType +type QGeoShape__ShapeType int + +var ( + QGeoShape__UnknownType = QGeoShape__ShapeType(0) + QGeoShape__RectangleType = QGeoShape__ShapeType(1) + QGeoShape__CircleType = QGeoShape__ShapeType(2) +) + +func NewQGeoShape() *QGeoShape { + return QGeoShapeFromPointer(unsafe.Pointer(C.QGeoShape_NewQGeoShape())) +} + +func NewQGeoShape2(other QGeoShapeITF) *QGeoShape { + return QGeoShapeFromPointer(unsafe.Pointer(C.QGeoShape_NewQGeoShape2(C.QtObjectPtr(PointerFromQGeoShape(other))))) +} + +func (ptr *QGeoShape) Contains(coordinate QGeoCoordinateITF) bool { + if ptr.Pointer() != nil { + return C.QGeoShape_Contains(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGeoCoordinate(coordinate))) != 0 + } + return false +} + +func (ptr *QGeoShape) ExtendShape(coordinate QGeoCoordinateITF) { + if ptr.Pointer() != nil { + C.QGeoShape_ExtendShape(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGeoCoordinate(coordinate))) + } +} + +func (ptr *QGeoShape) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QGeoShape_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGeoShape) IsValid() bool { + if ptr.Pointer() != nil { + return C.QGeoShape_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGeoShape) ToString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGeoShape_ToString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QGeoShape) Type() QGeoShape__ShapeType { + if ptr.Pointer() != nil { + return QGeoShape__ShapeType(C.QGeoShape_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGeoShape) DestroyQGeoShape() { + if ptr.Pointer() != nil { + C.QGeoShape_DestroyQGeoShape(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/positioning/qgeoshape.h b/positioning/qgeoshape.h new file mode 100755 index 00000000..da2689d3 --- /dev/null +++ b/positioning/qgeoshape.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGeoShape_NewQGeoShape(); +QtObjectPtr QGeoShape_NewQGeoShape2(QtObjectPtr other); +int QGeoShape_Contains(QtObjectPtr ptr, QtObjectPtr coordinate); +void QGeoShape_ExtendShape(QtObjectPtr ptr, QtObjectPtr coordinate); +int QGeoShape_IsEmpty(QtObjectPtr ptr); +int QGeoShape_IsValid(QtObjectPtr ptr); +char* QGeoShape_ToString(QtObjectPtr ptr); +int QGeoShape_Type(QtObjectPtr ptr); +void QGeoShape_DestroyQGeoShape(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/positioning/qnmeapositioninfosource.cpp b/positioning/qnmeapositioninfosource.cpp new file mode 100755 index 00000000..97fefb19 --- /dev/null +++ b/positioning/qnmeapositioninfosource.cpp @@ -0,0 +1,63 @@ +#include "qnmeapositioninfosource.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQNmeaPositionInfoSource: public QNmeaPositionInfoSource { +public: +}; + +QtObjectPtr QNmeaPositionInfoSource_NewQNmeaPositionInfoSource(int updateMode, QtObjectPtr parent){ + return new QNmeaPositionInfoSource(static_cast(updateMode), static_cast(parent)); +} + +QtObjectPtr QNmeaPositionInfoSource_Device(QtObjectPtr ptr){ + return static_cast(ptr)->device(); +} + +int QNmeaPositionInfoSource_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +int QNmeaPositionInfoSource_MinimumUpdateInterval(QtObjectPtr ptr){ + return static_cast(ptr)->minimumUpdateInterval(); +} + +void QNmeaPositionInfoSource_RequestUpdate(QtObjectPtr ptr, int msec){ + QMetaObject::invokeMethod(static_cast(ptr), "requestUpdate", Q_ARG(int, msec)); +} + +void QNmeaPositionInfoSource_SetDevice(QtObjectPtr ptr, QtObjectPtr device){ + static_cast(ptr)->setDevice(static_cast(device)); +} + +void QNmeaPositionInfoSource_SetUpdateInterval(QtObjectPtr ptr, int msec){ + static_cast(ptr)->setUpdateInterval(msec); +} + +void QNmeaPositionInfoSource_StartUpdates(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "startUpdates"); +} + +void QNmeaPositionInfoSource_StopUpdates(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "stopUpdates"); +} + +int QNmeaPositionInfoSource_SupportedPositioningMethods(QtObjectPtr ptr){ + return static_cast(ptr)->supportedPositioningMethods(); +} + +int QNmeaPositionInfoSource_UpdateMode(QtObjectPtr ptr){ + return static_cast(ptr)->updateMode(); +} + +void QNmeaPositionInfoSource_DestroyQNmeaPositionInfoSource(QtObjectPtr ptr){ + static_cast(ptr)->~QNmeaPositionInfoSource(); +} + diff --git a/positioning/qnmeapositioninfosource.go b/positioning/qnmeapositioninfosource.go new file mode 100755 index 00000000..f4648e7c --- /dev/null +++ b/positioning/qnmeapositioninfosource.go @@ -0,0 +1,122 @@ +package positioning + +//#include "qnmeapositioninfosource.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QNmeaPositionInfoSource struct { + QGeoPositionInfoSource +} + +type QNmeaPositionInfoSourceITF interface { + QGeoPositionInfoSourceITF + QNmeaPositionInfoSourcePTR() *QNmeaPositionInfoSource +} + +func PointerFromQNmeaPositionInfoSource(ptr QNmeaPositionInfoSourceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QNmeaPositionInfoSourcePTR().Pointer() + } + return nil +} + +func QNmeaPositionInfoSourceFromPointer(ptr unsafe.Pointer) *QNmeaPositionInfoSource { + var n = new(QNmeaPositionInfoSource) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QNmeaPositionInfoSource_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QNmeaPositionInfoSource) QNmeaPositionInfoSourcePTR() *QNmeaPositionInfoSource { + return ptr +} + +//QNmeaPositionInfoSource::UpdateMode +type QNmeaPositionInfoSource__UpdateMode int + +var ( + QNmeaPositionInfoSource__RealTimeMode = QNmeaPositionInfoSource__UpdateMode(1) + QNmeaPositionInfoSource__SimulationMode = QNmeaPositionInfoSource__UpdateMode(2) +) + +func NewQNmeaPositionInfoSource(updateMode QNmeaPositionInfoSource__UpdateMode, parent core.QObjectITF) *QNmeaPositionInfoSource { + return QNmeaPositionInfoSourceFromPointer(unsafe.Pointer(C.QNmeaPositionInfoSource_NewQNmeaPositionInfoSource(C.int(updateMode), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QNmeaPositionInfoSource) Device() *core.QIODevice { + if ptr.Pointer() != nil { + return core.QIODeviceFromPointer(unsafe.Pointer(C.QNmeaPositionInfoSource_Device(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QNmeaPositionInfoSource) Error() QGeoPositionInfoSource__Error { + if ptr.Pointer() != nil { + return QGeoPositionInfoSource__Error(C.QNmeaPositionInfoSource_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNmeaPositionInfoSource) MinimumUpdateInterval() int { + if ptr.Pointer() != nil { + return int(C.QNmeaPositionInfoSource_MinimumUpdateInterval(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNmeaPositionInfoSource) RequestUpdate(msec int) { + if ptr.Pointer() != nil { + C.QNmeaPositionInfoSource_RequestUpdate(C.QtObjectPtr(ptr.Pointer()), C.int(msec)) + } +} + +func (ptr *QNmeaPositionInfoSource) SetDevice(device core.QIODeviceITF) { + if ptr.Pointer() != nil { + C.QNmeaPositionInfoSource_SetDevice(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQIODevice(device))) + } +} + +func (ptr *QNmeaPositionInfoSource) SetUpdateInterval(msec int) { + if ptr.Pointer() != nil { + C.QNmeaPositionInfoSource_SetUpdateInterval(C.QtObjectPtr(ptr.Pointer()), C.int(msec)) + } +} + +func (ptr *QNmeaPositionInfoSource) StartUpdates() { + if ptr.Pointer() != nil { + C.QNmeaPositionInfoSource_StartUpdates(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QNmeaPositionInfoSource) StopUpdates() { + if ptr.Pointer() != nil { + C.QNmeaPositionInfoSource_StopUpdates(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QNmeaPositionInfoSource) SupportedPositioningMethods() QGeoPositionInfoSource__PositioningMethod { + if ptr.Pointer() != nil { + return QGeoPositionInfoSource__PositioningMethod(C.QNmeaPositionInfoSource_SupportedPositioningMethods(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNmeaPositionInfoSource) UpdateMode() QNmeaPositionInfoSource__UpdateMode { + if ptr.Pointer() != nil { + return QNmeaPositionInfoSource__UpdateMode(C.QNmeaPositionInfoSource_UpdateMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QNmeaPositionInfoSource) DestroyQNmeaPositionInfoSource() { + if ptr.Pointer() != nil { + C.QNmeaPositionInfoSource_DestroyQNmeaPositionInfoSource(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/positioning/qnmeapositioninfosource.h b/positioning/qnmeapositioninfosource.h new file mode 100755 index 00000000..215b9329 --- /dev/null +++ b/positioning/qnmeapositioninfosource.h @@ -0,0 +1,21 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QNmeaPositionInfoSource_NewQNmeaPositionInfoSource(int updateMode, QtObjectPtr parent); +QtObjectPtr QNmeaPositionInfoSource_Device(QtObjectPtr ptr); +int QNmeaPositionInfoSource_Error(QtObjectPtr ptr); +int QNmeaPositionInfoSource_MinimumUpdateInterval(QtObjectPtr ptr); +void QNmeaPositionInfoSource_RequestUpdate(QtObjectPtr ptr, int msec); +void QNmeaPositionInfoSource_SetDevice(QtObjectPtr ptr, QtObjectPtr device); +void QNmeaPositionInfoSource_SetUpdateInterval(QtObjectPtr ptr, int msec); +void QNmeaPositionInfoSource_StartUpdates(QtObjectPtr ptr); +void QNmeaPositionInfoSource_StopUpdates(QtObjectPtr ptr); +int QNmeaPositionInfoSource_SupportedPositioningMethods(QtObjectPtr ptr); +int QNmeaPositionInfoSource_UpdateMode(QtObjectPtr ptr); +void QNmeaPositionInfoSource_DestroyQNmeaPositionInfoSource(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/qabstractbutton.cpp b/qabstractbutton.cpp deleted file mode 100644 index 9208ad25..00000000 --- a/qabstractbutton.cpp +++ /dev/null @@ -1,206 +0,0 @@ -#include "qabstractbutton.h" -#include -#include "cgoexport.h" - -//MyQAbstractButton -class MyQAbstractButton: public QAbstractButton { -Q_OBJECT -public: -void Signal_Clicked() { callbackQAbstractButton(this, QString("clicked").toUtf8().data()); }; -void Signal_Pressed() { callbackQAbstractButton(this, QString("pressed").toUtf8().data()); }; -void Signal_Released() { callbackQAbstractButton(this, QString("released").toUtf8().data()); }; -void Signal_Toggled() { callbackQAbstractButton(this, QString("toggled").toUtf8().data()); }; - -signals: -void Slot_AnimateClick(int msec); -void Slot_Click(); -void Slot_SetChecked(bool checked); -void Slot_Toggle(); - -}; -#include "qabstractbutton.moc" - - -//Public Functions -void QAbstractButton_Destroy(QtObjectPtr ptr) -{ - ((QAbstractButton*)(ptr))->~QAbstractButton(); -} - -int QAbstractButton_AutoExclusive(QtObjectPtr ptr) -{ - return ((QAbstractButton*)(ptr))->autoExclusive(); -} - -int QAbstractButton_AutoRepeat(QtObjectPtr ptr) -{ - return ((QAbstractButton*)(ptr))->autoRepeat(); -} - -int QAbstractButton_AutoRepeatDelay(QtObjectPtr ptr) -{ - return ((QAbstractButton*)(ptr))->autoRepeatDelay(); -} - -int QAbstractButton_AutoRepeatInterval(QtObjectPtr ptr) -{ - return ((QAbstractButton*)(ptr))->autoRepeatInterval(); -} - -int QAbstractButton_IsCheckable(QtObjectPtr ptr) -{ - return ((QAbstractButton*)(ptr))->isCheckable(); -} - -int QAbstractButton_IsChecked(QtObjectPtr ptr) -{ - return ((QAbstractButton*)(ptr))->isChecked(); -} - -int QAbstractButton_IsDown(QtObjectPtr ptr) -{ - return ((QAbstractButton*)(ptr))->isDown(); -} - -void QAbstractButton_SetAutoExclusive_Bool(QtObjectPtr ptr, int autoExclusive) -{ - ((QAbstractButton*)(ptr))->setAutoExclusive(autoExclusive != 0); -} - -void QAbstractButton_SetAutoRepeat_Bool(QtObjectPtr ptr, int autoRepeat) -{ - ((QAbstractButton*)(ptr))->setAutoRepeat(autoRepeat != 0); -} - -void QAbstractButton_SetAutoRepeatDelay_Int(QtObjectPtr ptr, int autoRepeatDelay) -{ - ((QAbstractButton*)(ptr))->setAutoRepeatDelay(autoRepeatDelay); -} - -void QAbstractButton_SetAutoRepeatInterval_Int(QtObjectPtr ptr, int autoRepeatInterval) -{ - ((QAbstractButton*)(ptr))->setAutoRepeatInterval(autoRepeatInterval); -} - -void QAbstractButton_SetCheckable_Bool(QtObjectPtr ptr, int checkable) -{ - ((QAbstractButton*)(ptr))->setCheckable(checkable != 0); -} - -void QAbstractButton_SetDown_Bool(QtObjectPtr ptr, int down) -{ - ((QAbstractButton*)(ptr))->setDown(down != 0); -} - -void QAbstractButton_SetText_String(QtObjectPtr ptr, char* text) -{ - ((QAbstractButton*)(ptr))->setText(QString(text)); -} - -char* QAbstractButton_Text(QtObjectPtr ptr) -{ - return ((QAbstractButton*)(ptr))->text().toUtf8().data(); -} - -//Public Slots -void QAbstractButton_ConnectSlotAnimateClick(QtObjectPtr ptr) -{ - QObject::connect(((MyQAbstractButton*)(ptr)), &MyQAbstractButton::Slot_AnimateClick, ((QAbstractButton*)(ptr)), &QAbstractButton::animateClick, Qt::QueuedConnection); -} - -void QAbstractButton_DisconnectSlotAnimateClick(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQAbstractButton*)(ptr)), &MyQAbstractButton::Slot_AnimateClick, ((QAbstractButton*)(ptr)), &QAbstractButton::animateClick); -} - -void QAbstractButton_AnimateClick_Int(QtObjectPtr ptr, int msec) -{ - ((MyQAbstractButton*)(ptr))->Slot_AnimateClick(msec); -} - -void QAbstractButton_ConnectSlotClick(QtObjectPtr ptr) -{ - QObject::connect(((MyQAbstractButton*)(ptr)), &MyQAbstractButton::Slot_Click, ((QAbstractButton*)(ptr)), &QAbstractButton::click, Qt::QueuedConnection); -} - -void QAbstractButton_DisconnectSlotClick(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQAbstractButton*)(ptr)), &MyQAbstractButton::Slot_Click, ((QAbstractButton*)(ptr)), &QAbstractButton::click); -} - -void QAbstractButton_Click(QtObjectPtr ptr) -{ - ((MyQAbstractButton*)(ptr))->Slot_Click(); -} - -void QAbstractButton_ConnectSlotSetChecked(QtObjectPtr ptr) -{ - QObject::connect(((MyQAbstractButton*)(ptr)), &MyQAbstractButton::Slot_SetChecked, ((QAbstractButton*)(ptr)), &QAbstractButton::setChecked, Qt::QueuedConnection); -} - -void QAbstractButton_DisconnectSlotSetChecked(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQAbstractButton*)(ptr)), &MyQAbstractButton::Slot_SetChecked, ((QAbstractButton*)(ptr)), &QAbstractButton::setChecked); -} - -void QAbstractButton_SetChecked_Bool(QtObjectPtr ptr, int checked) -{ - ((MyQAbstractButton*)(ptr))->Slot_SetChecked(checked != 0); -} - -void QAbstractButton_ConnectSlotToggle(QtObjectPtr ptr) -{ - QObject::connect(((MyQAbstractButton*)(ptr)), &MyQAbstractButton::Slot_Toggle, ((QAbstractButton*)(ptr)), &QAbstractButton::toggle, Qt::QueuedConnection); -} - -void QAbstractButton_DisconnectSlotToggle(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQAbstractButton*)(ptr)), &MyQAbstractButton::Slot_Toggle, ((QAbstractButton*)(ptr)), &QAbstractButton::toggle); -} - -void QAbstractButton_Toggle(QtObjectPtr ptr) -{ - ((MyQAbstractButton*)(ptr))->Slot_Toggle(); -} - -//Signals -void QAbstractButton_ConnectSignalClicked(QtObjectPtr ptr) -{ - QObject::connect(((QAbstractButton*)(ptr)), &QAbstractButton::clicked, ((MyQAbstractButton*)(ptr)), &MyQAbstractButton::Signal_Clicked, Qt::QueuedConnection); -} - -void QAbstractButton_DisconnectSignalClicked(QtObjectPtr ptr) -{ - QObject::disconnect(((QAbstractButton*)(ptr)), &QAbstractButton::clicked, ((MyQAbstractButton*)(ptr)), &MyQAbstractButton::Signal_Clicked); -} - -void QAbstractButton_ConnectSignalPressed(QtObjectPtr ptr) -{ - QObject::connect(((QAbstractButton*)(ptr)), &QAbstractButton::pressed, ((MyQAbstractButton*)(ptr)), &MyQAbstractButton::Signal_Pressed, Qt::QueuedConnection); -} - -void QAbstractButton_DisconnectSignalPressed(QtObjectPtr ptr) -{ - QObject::disconnect(((QAbstractButton*)(ptr)), &QAbstractButton::pressed, ((MyQAbstractButton*)(ptr)), &MyQAbstractButton::Signal_Pressed); -} - -void QAbstractButton_ConnectSignalReleased(QtObjectPtr ptr) -{ - QObject::connect(((QAbstractButton*)(ptr)), &QAbstractButton::released, ((MyQAbstractButton*)(ptr)), &MyQAbstractButton::Signal_Released, Qt::QueuedConnection); -} - -void QAbstractButton_DisconnectSignalReleased(QtObjectPtr ptr) -{ - QObject::disconnect(((QAbstractButton*)(ptr)), &QAbstractButton::released, ((MyQAbstractButton*)(ptr)), &MyQAbstractButton::Signal_Released); -} - -void QAbstractButton_ConnectSignalToggled(QtObjectPtr ptr) -{ - QObject::connect(((QAbstractButton*)(ptr)), &QAbstractButton::toggled, ((MyQAbstractButton*)(ptr)), &MyQAbstractButton::Signal_Toggled, Qt::QueuedConnection); -} - -void QAbstractButton_DisconnectSignalToggled(QtObjectPtr ptr) -{ - QObject::disconnect(((QAbstractButton*)(ptr)), &QAbstractButton::toggled, ((MyQAbstractButton*)(ptr)), &MyQAbstractButton::Signal_Toggled); -} - diff --git a/qabstractbutton.go b/qabstractbutton.go deleted file mode 100644 index 1abed307..00000000 --- a/qabstractbutton.go +++ /dev/null @@ -1,284 +0,0 @@ -package qt - -//#include "qabstractbutton.h" -import "C" - -type qabstractbutton struct { - qwidget -} - -type QAbstractButton interface { - QWidget - AutoExclusive() bool - AutoRepeat() bool - AutoRepeatDelay() int - AutoRepeatInterval() int - IsCheckable() bool - IsChecked() bool - IsDown() bool - SetAutoExclusive(autoExclusive bool) - SetAutoRepeat(autoRepeat bool) - SetAutoRepeatDelay(autoRepeatDelay int) - SetAutoRepeatInterval(autoRepeatInterval int) - SetCheckable(checkable bool) - SetDown(down bool) - SetText(text string) - Text() string - ConnectSlotAnimateClick() - DisconnectSlotAnimateClick() - SlotAnimateClick(msec int) - ConnectSlotClick() - DisconnectSlotClick() - SlotClick() - ConnectSlotSetChecked() - DisconnectSlotSetChecked() - SlotSetChecked(checked bool) - ConnectSlotToggle() - DisconnectSlotToggle() - SlotToggle() - ConnectSignalClicked(f func()) - DisconnectSignalClicked() - SignalClicked() func() - ConnectSignalPressed(f func()) - DisconnectSignalPressed() - SignalPressed() func() - ConnectSignalReleased(f func()) - DisconnectSignalReleased() - SignalReleased() func() - ConnectSignalToggled(f func()) - DisconnectSignalToggled() - SignalToggled() func() -} - -func (p *qabstractbutton) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qabstractbutton) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func (p *qabstractbutton) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QAbstractButton_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qabstractbutton) AutoExclusive() bool { - if p.Pointer() == nil { - return false - } - return C.QAbstractButton_AutoExclusive(p.Pointer()) != 0 -} - -func (p *qabstractbutton) AutoRepeat() bool { - if p.Pointer() == nil { - return false - } - return C.QAbstractButton_AutoRepeat(p.Pointer()) != 0 -} - -func (p *qabstractbutton) AutoRepeatDelay() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QAbstractButton_AutoRepeatDelay(p.Pointer())) -} - -func (p *qabstractbutton) AutoRepeatInterval() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QAbstractButton_AutoRepeatInterval(p.Pointer())) -} - -func (p *qabstractbutton) IsCheckable() bool { - if p.Pointer() == nil { - return false - } - return C.QAbstractButton_IsCheckable(p.Pointer()) != 0 -} - -func (p *qabstractbutton) IsChecked() bool { - if p.Pointer() == nil { - return false - } - return C.QAbstractButton_IsChecked(p.Pointer()) != 0 -} - -func (p *qabstractbutton) IsDown() bool { - if p.Pointer() == nil { - return false - } - return C.QAbstractButton_IsDown(p.Pointer()) != 0 -} - -func (p *qabstractbutton) SetAutoExclusive(autoExclusive bool) { - if p.Pointer() != nil { - C.QAbstractButton_SetAutoExclusive_Bool(p.Pointer(), goBoolToCInt(autoExclusive)) - } -} - -func (p *qabstractbutton) SetAutoRepeat(autoRepeat bool) { - if p.Pointer() != nil { - C.QAbstractButton_SetAutoRepeat_Bool(p.Pointer(), goBoolToCInt(autoRepeat)) - } -} - -func (p *qabstractbutton) SetAutoRepeatDelay(autoRepeatDelay int) { - if p.Pointer() != nil { - C.QAbstractButton_SetAutoRepeatDelay_Int(p.Pointer(), C.int(autoRepeatDelay)) - } -} - -func (p *qabstractbutton) SetAutoRepeatInterval(autoRepeatInterval int) { - if p.Pointer() != nil { - C.QAbstractButton_SetAutoRepeatInterval_Int(p.Pointer(), C.int(autoRepeatInterval)) - } -} - -func (p *qabstractbutton) SetCheckable(checkable bool) { - if p.Pointer() != nil { - C.QAbstractButton_SetCheckable_Bool(p.Pointer(), goBoolToCInt(checkable)) - } -} - -func (p *qabstractbutton) SetDown(down bool) { - if p.Pointer() != nil { - C.QAbstractButton_SetDown_Bool(p.Pointer(), goBoolToCInt(down)) - } -} - -func (p *qabstractbutton) SetText(text string) { - if p.Pointer() != nil { - C.QAbstractButton_SetText_String(p.Pointer(), C.CString(text)) - } -} - -func (p *qabstractbutton) Text() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QAbstractButton_Text(p.Pointer())) -} - -func (p *qabstractbutton) ConnectSlotAnimateClick() { - C.QAbstractButton_ConnectSlotAnimateClick(p.Pointer()) -} - -func (p *qabstractbutton) DisconnectSlotAnimateClick() { - C.QAbstractButton_DisconnectSlotAnimateClick(p.Pointer()) -} - -func (p *qabstractbutton) SlotAnimateClick(msec int) { - if p.Pointer() != nil { - C.QAbstractButton_AnimateClick_Int(p.Pointer(), C.int(msec)) - } -} - -func (p *qabstractbutton) ConnectSlotClick() { - C.QAbstractButton_ConnectSlotClick(p.Pointer()) -} - -func (p *qabstractbutton) DisconnectSlotClick() { - C.QAbstractButton_DisconnectSlotClick(p.Pointer()) -} - -func (p *qabstractbutton) SlotClick() { - if p.Pointer() != nil { - C.QAbstractButton_Click(p.Pointer()) - } -} - -func (p *qabstractbutton) ConnectSlotSetChecked() { - C.QAbstractButton_ConnectSlotSetChecked(p.Pointer()) -} - -func (p *qabstractbutton) DisconnectSlotSetChecked() { - C.QAbstractButton_DisconnectSlotSetChecked(p.Pointer()) -} - -func (p *qabstractbutton) SlotSetChecked(checked bool) { - if p.Pointer() != nil { - C.QAbstractButton_SetChecked_Bool(p.Pointer(), goBoolToCInt(checked)) - } -} - -func (p *qabstractbutton) ConnectSlotToggle() { - C.QAbstractButton_ConnectSlotToggle(p.Pointer()) -} - -func (p *qabstractbutton) DisconnectSlotToggle() { - C.QAbstractButton_DisconnectSlotToggle(p.Pointer()) -} - -func (p *qabstractbutton) SlotToggle() { - if p.Pointer() != nil { - C.QAbstractButton_Toggle(p.Pointer()) - } -} - -func (p *qabstractbutton) ConnectSignalClicked(f func()) { - C.QAbstractButton_ConnectSignalClicked(p.Pointer()) - connectSignal(p.ObjectName(), "clicked", f) -} - -func (p *qabstractbutton) DisconnectSignalClicked() { - C.QAbstractButton_DisconnectSignalClicked(p.Pointer()) - disconnectSignal(p.ObjectName(), "clicked") -} - -func (p *qabstractbutton) SignalClicked() func() { - return getSignal(p.ObjectName(), "clicked") -} - -func (p *qabstractbutton) ConnectSignalPressed(f func()) { - C.QAbstractButton_ConnectSignalPressed(p.Pointer()) - connectSignal(p.ObjectName(), "pressed", f) -} - -func (p *qabstractbutton) DisconnectSignalPressed() { - C.QAbstractButton_DisconnectSignalPressed(p.Pointer()) - disconnectSignal(p.ObjectName(), "pressed") -} - -func (p *qabstractbutton) SignalPressed() func() { - return getSignal(p.ObjectName(), "pressed") -} - -func (p *qabstractbutton) ConnectSignalReleased(f func()) { - C.QAbstractButton_ConnectSignalReleased(p.Pointer()) - connectSignal(p.ObjectName(), "released", f) -} - -func (p *qabstractbutton) DisconnectSignalReleased() { - C.QAbstractButton_DisconnectSignalReleased(p.Pointer()) - disconnectSignal(p.ObjectName(), "released") -} - -func (p *qabstractbutton) SignalReleased() func() { - return getSignal(p.ObjectName(), "released") -} - -func (p *qabstractbutton) ConnectSignalToggled(f func()) { - C.QAbstractButton_ConnectSignalToggled(p.Pointer()) - connectSignal(p.ObjectName(), "toggled", f) -} - -func (p *qabstractbutton) DisconnectSignalToggled() { - C.QAbstractButton_DisconnectSignalToggled(p.Pointer()) - disconnectSignal(p.ObjectName(), "toggled") -} - -func (p *qabstractbutton) SignalToggled() func() { - return getSignal(p.ObjectName(), "toggled") -} - -//export callbackQAbstractButton -func callbackQAbstractButton(ptr C.QtObjectPtr, msg *C.char) { - var qabstractbutton = new(qabstractbutton) - qabstractbutton.SetPointer(ptr) - getSignal(qabstractbutton.ObjectName(), C.GoString(msg))() -} diff --git a/qabstractbutton.h b/qabstractbutton.h deleted file mode 100644 index 270c544c..00000000 --- a/qabstractbutton.h +++ /dev/null @@ -1,49 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -void QAbstractButton_Destroy(QtObjectPtr ptr); -int QAbstractButton_AutoExclusive(QtObjectPtr ptr); -int QAbstractButton_AutoRepeat(QtObjectPtr ptr); -int QAbstractButton_AutoRepeatDelay(QtObjectPtr ptr); -int QAbstractButton_AutoRepeatInterval(QtObjectPtr ptr); -int QAbstractButton_IsCheckable(QtObjectPtr ptr); -int QAbstractButton_IsChecked(QtObjectPtr ptr); -int QAbstractButton_IsDown(QtObjectPtr ptr); -void QAbstractButton_SetAutoExclusive_Bool(QtObjectPtr ptr, int autoExclusive); -void QAbstractButton_SetAutoRepeat_Bool(QtObjectPtr ptr, int autoRepeat); -void QAbstractButton_SetAutoRepeatDelay_Int(QtObjectPtr ptr, int autoRepeatDelay); -void QAbstractButton_SetAutoRepeatInterval_Int(QtObjectPtr ptr, int autoRepeatInterval); -void QAbstractButton_SetCheckable_Bool(QtObjectPtr ptr, int checkable); -void QAbstractButton_SetDown_Bool(QtObjectPtr ptr, int down); -void QAbstractButton_SetText_String(QtObjectPtr ptr, char* text); -char* QAbstractButton_Text(QtObjectPtr ptr); -//Public Slots -void QAbstractButton_ConnectSlotAnimateClick(QtObjectPtr ptr); -void QAbstractButton_DisconnectSlotAnimateClick(QtObjectPtr ptr); -void QAbstractButton_AnimateClick_Int(QtObjectPtr ptr, int msec); -void QAbstractButton_ConnectSlotClick(QtObjectPtr ptr); -void QAbstractButton_DisconnectSlotClick(QtObjectPtr ptr); -void QAbstractButton_Click(QtObjectPtr ptr); -void QAbstractButton_ConnectSlotSetChecked(QtObjectPtr ptr); -void QAbstractButton_DisconnectSlotSetChecked(QtObjectPtr ptr); -void QAbstractButton_SetChecked_Bool(QtObjectPtr ptr, int checked); -void QAbstractButton_ConnectSlotToggle(QtObjectPtr ptr); -void QAbstractButton_DisconnectSlotToggle(QtObjectPtr ptr); -void QAbstractButton_Toggle(QtObjectPtr ptr); -//Signals -void QAbstractButton_ConnectSignalClicked(QtObjectPtr ptr); -void QAbstractButton_DisconnectSignalClicked(QtObjectPtr ptr); -void QAbstractButton_ConnectSignalPressed(QtObjectPtr ptr); -void QAbstractButton_DisconnectSignalPressed(QtObjectPtr ptr); -void QAbstractButton_ConnectSignalReleased(QtObjectPtr ptr); -void QAbstractButton_DisconnectSignalReleased(QtObjectPtr ptr); -void QAbstractButton_ConnectSignalToggled(QtObjectPtr ptr); -void QAbstractButton_DisconnectSignalToggled(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qabstractbutton.moc b/qabstractbutton.moc deleted file mode 100644 index 0a37b6f4..00000000 --- a/qabstractbutton.moc +++ /dev/null @@ -1,177 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qabstractbutton.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qabstractbutton.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQAbstractButton_t { - QByteArrayData data[8]; - char stringdata[89]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQAbstractButton_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQAbstractButton_t qt_meta_stringdata_MyQAbstractButton = { - { -QT_MOC_LITERAL(0, 0, 17), // "MyQAbstractButton" -QT_MOC_LITERAL(1, 18, 17), // "Slot_AnimateClick" -QT_MOC_LITERAL(2, 36, 0), // "" -QT_MOC_LITERAL(3, 37, 4), // "msec" -QT_MOC_LITERAL(4, 42, 10), // "Slot_Click" -QT_MOC_LITERAL(5, 53, 15), // "Slot_SetChecked" -QT_MOC_LITERAL(6, 69, 7), // "checked" -QT_MOC_LITERAL(7, 77, 11) // "Slot_Toggle" - - }, - "MyQAbstractButton\0Slot_AnimateClick\0" - "\0msec\0Slot_Click\0Slot_SetChecked\0" - "checked\0Slot_Toggle" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQAbstractButton[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 4, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 4, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 34, 2, 0x06 /* Public */, - 4, 0, 37, 2, 0x06 /* Public */, - 5, 1, 38, 2, 0x06 /* Public */, - 7, 0, 41, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, QMetaType::Int, 3, - QMetaType::Void, - QMetaType::Void, QMetaType::Bool, 6, - QMetaType::Void, - - 0 // eod -}; - -void MyQAbstractButton::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQAbstractButton *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_AnimateClick((*reinterpret_cast< int(*)>(_a[1]))); break; - case 1: _t->Slot_Click(); break; - case 2: _t->Slot_SetChecked((*reinterpret_cast< bool(*)>(_a[1]))); break; - case 3: _t->Slot_Toggle(); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQAbstractButton::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQAbstractButton::Slot_AnimateClick)) { - *result = 0; - } - } - { - typedef void (MyQAbstractButton::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQAbstractButton::Slot_Click)) { - *result = 1; - } - } - { - typedef void (MyQAbstractButton::*_t)(bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQAbstractButton::Slot_SetChecked)) { - *result = 2; - } - } - { - typedef void (MyQAbstractButton::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQAbstractButton::Slot_Toggle)) { - *result = 3; - } - } - } -} - -const QMetaObject MyQAbstractButton::staticMetaObject = { - { &QAbstractButton::staticMetaObject, qt_meta_stringdata_MyQAbstractButton.data, - qt_meta_data_MyQAbstractButton, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQAbstractButton::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQAbstractButton::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQAbstractButton.stringdata)) - return static_cast(const_cast< MyQAbstractButton*>(this)); - return QAbstractButton::qt_metacast(_clname); -} - -int MyQAbstractButton::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QAbstractButton::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 4) - qt_static_metacall(this, _c, _id, _a); - _id -= 4; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 4) - *reinterpret_cast(_a[0]) = -1; - _id -= 4; - } - return _id; -} - -// SIGNAL 0 -void MyQAbstractButton::Slot_AnimateClick(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void MyQAbstractButton::Slot_Click() -{ - QMetaObject::activate(this, &staticMetaObject, 1, 0); -} - -// SIGNAL 2 -void MyQAbstractButton::Slot_SetChecked(bool _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 2, _a); -} - -// SIGNAL 3 -void MyQAbstractButton::Slot_Toggle() -{ - QMetaObject::activate(this, &staticMetaObject, 3, 0); -} -QT_END_MOC_NAMESPACE diff --git a/qabstractitemview.cpp b/qabstractitemview.cpp deleted file mode 100644 index 7de5b813..00000000 --- a/qabstractitemview.cpp +++ /dev/null @@ -1,311 +0,0 @@ -#include "qabstractitemview.h" -#include -#include "cgoexport.h" - -//MyQAbstractItemView -class MyQAbstractItemView: public QAbstractItemView { -Q_OBJECT -public: -void Signal_Activated() { callbackQAbstractItemView(this, QString("activated").toUtf8().data()); }; -void Signal_Clicked() { callbackQAbstractItemView(this, QString("clicked").toUtf8().data()); }; -void Signal_DoubleClicked() { callbackQAbstractItemView(this, QString("doubleClicked").toUtf8().data()); }; -void Signal_Entered() { callbackQAbstractItemView(this, QString("entered").toUtf8().data()); }; -void Signal_Pressed() { callbackQAbstractItemView(this, QString("pressed").toUtf8().data()); }; -void Signal_ViewportEntered() { callbackQAbstractItemView(this, QString("viewportEntered").toUtf8().data()); }; - -signals: -void Slot_ClearSelection(); -void Slot_Reset(); -void Slot_ScrollToBottom(); -void Slot_ScrollToTop(); -void Slot_SelectAll(); - -}; -#include "qabstractitemview.moc" - -//Public Types -int QAbstractItemView_NoDragDrop() { return QAbstractItemView::NoDragDrop; } -int QAbstractItemView_DragOnly() { return QAbstractItemView::DragOnly; } -int QAbstractItemView_DropOnly() { return QAbstractItemView::DropOnly; } -int QAbstractItemView_DragDrop() { return QAbstractItemView::DragDrop; } -int QAbstractItemView_InternalMove() { return QAbstractItemView::InternalMove; } -int QAbstractItemView_NoEditTriggers() { return QAbstractItemView::NoEditTriggers; } -int QAbstractItemView_CurrentChanged() { return QAbstractItemView::CurrentChanged; } -int QAbstractItemView_DoubleClicked() { return QAbstractItemView::DoubleClicked; } -int QAbstractItemView_SelectedClicked() { return QAbstractItemView::SelectedClicked; } -int QAbstractItemView_EditKeyPressed() { return QAbstractItemView::EditKeyPressed; } -int QAbstractItemView_AnyKeyPressed() { return QAbstractItemView::AnyKeyPressed; } -int QAbstractItemView_AllEditTriggers() { return QAbstractItemView::AllEditTriggers; } -int QAbstractItemView_EnsureVisible() { return QAbstractItemView::EnsureVisible; } -int QAbstractItemView_PositionAtTop() { return QAbstractItemView::PositionAtTop; } -int QAbstractItemView_PositionAtBottom() { return QAbstractItemView::PositionAtBottom; } -int QAbstractItemView_PositionAtCenter() { return QAbstractItemView::PositionAtCenter; } -int QAbstractItemView_ScrollPerItem() { return QAbstractItemView::ScrollPerItem; } -int QAbstractItemView_ScrollPerPixel() { return QAbstractItemView::ScrollPerPixel; } -int QAbstractItemView_SelectItems() { return QAbstractItemView::SelectItems; } -int QAbstractItemView_SelectRows() { return QAbstractItemView::SelectRows; } -int QAbstractItemView_SelectColumns() { return QAbstractItemView::SelectColumns; } -int QAbstractItemView_SingleSelection() { return QAbstractItemView::SingleSelection; } -int QAbstractItemView_ContiguousSelection() { return QAbstractItemView::ContiguousSelection; } -int QAbstractItemView_ExtendedSelection() { return QAbstractItemView::ExtendedSelection; } -int QAbstractItemView_MultiSelection() { return QAbstractItemView::MultiSelection; } -int QAbstractItemView_NoSelection() { return QAbstractItemView::NoSelection; } - -//Public Functions -void QAbstractItemView_Destroy(QtObjectPtr ptr) -{ - ((QAbstractItemView*)(ptr))->~QAbstractItemView(); -} - -int QAbstractItemView_AlternatingRowColors(QtObjectPtr ptr) -{ - return ((QAbstractItemView*)(ptr))->alternatingRowColors(); -} - -int QAbstractItemView_AutoScrollMargin(QtObjectPtr ptr) -{ - return ((QAbstractItemView*)(ptr))->autoScrollMargin(); -} - -int QAbstractItemView_DefaultDropAction(QtObjectPtr ptr) -{ - return ((QAbstractItemView*)(ptr))->defaultDropAction(); -} - -int QAbstractItemView_DragDropOverwriteMode(QtObjectPtr ptr) -{ - return ((QAbstractItemView*)(ptr))->dragDropOverwriteMode(); -} - -int QAbstractItemView_DragEnabled(QtObjectPtr ptr) -{ - return ((QAbstractItemView*)(ptr))->dragEnabled(); -} - -int QAbstractItemView_HasAutoScroll(QtObjectPtr ptr) -{ - return ((QAbstractItemView*)(ptr))->hasAutoScroll(); -} - -void QAbstractItemView_KeyboardSearch_String(QtObjectPtr ptr, char* search) -{ - ((QAbstractItemView*)(ptr))->keyboardSearch(QString(search)); -} - -int QAbstractItemView_SelectionMode(QtObjectPtr ptr) -{ - return ((QAbstractItemView*)(ptr))->selectionMode(); -} - -void QAbstractItemView_SetAlternatingRowColors_Bool(QtObjectPtr ptr, int enable) -{ - ((QAbstractItemView*)(ptr))->setAlternatingRowColors(enable != 0); -} - -void QAbstractItemView_SetAutoScroll_Bool(QtObjectPtr ptr, int enable) -{ - ((QAbstractItemView*)(ptr))->setAutoScroll(enable != 0); -} - -void QAbstractItemView_SetAutoScrollMargin_Int(QtObjectPtr ptr, int margin) -{ - ((QAbstractItemView*)(ptr))->setAutoScrollMargin(margin); -} - -void QAbstractItemView_SetDefaultDropAction_DropAction(QtObjectPtr ptr, int dropAction) -{ - ((QAbstractItemView*)(ptr))->setDefaultDropAction(((Qt::DropAction)(dropAction))); -} - -void QAbstractItemView_SetDragDropOverwriteMode_Bool(QtObjectPtr ptr, int overwrite) -{ - ((QAbstractItemView*)(ptr))->setDragDropOverwriteMode(overwrite != 0); -} - -void QAbstractItemView_SetDragEnabled_Bool(QtObjectPtr ptr, int enable) -{ - ((QAbstractItemView*)(ptr))->setDragEnabled(enable != 0); -} - -void QAbstractItemView_SetDropIndicatorShown_Bool(QtObjectPtr ptr, int enable) -{ - ((QAbstractItemView*)(ptr))->setDropIndicatorShown(enable != 0); -} - -void QAbstractItemView_SetSelectionMode_SelectionMode(QtObjectPtr ptr, int mode) -{ - ((QAbstractItemView*)(ptr))->setSelectionMode(((QAbstractItemView::SelectionMode)(mode))); -} - -void QAbstractItemView_SetTabKeyNavigation_Bool(QtObjectPtr ptr, int enable) -{ - ((QAbstractItemView*)(ptr))->setTabKeyNavigation(enable != 0); -} - -void QAbstractItemView_SetTextElideMode_TextElideMode(QtObjectPtr ptr, int mode) -{ - ((QAbstractItemView*)(ptr))->setTextElideMode(((Qt::TextElideMode)(mode))); -} - -int QAbstractItemView_ShowDropIndicator(QtObjectPtr ptr) -{ - return ((QAbstractItemView*)(ptr))->showDropIndicator(); -} - -int QAbstractItemView_SizeHintForColumn_Int(QtObjectPtr ptr, int column) -{ - return ((QAbstractItemView*)(ptr))->sizeHintForColumn(column); -} - -int QAbstractItemView_SizeHintForRow_Int(QtObjectPtr ptr, int row) -{ - return ((QAbstractItemView*)(ptr))->sizeHintForRow(row); -} - -int QAbstractItemView_TabKeyNavigation(QtObjectPtr ptr) -{ - return ((QAbstractItemView*)(ptr))->tabKeyNavigation(); -} - -int QAbstractItemView_TextElideMode(QtObjectPtr ptr) -{ - return ((QAbstractItemView*)(ptr))->textElideMode(); -} - -//Public Slots -void QAbstractItemView_ConnectSlotClearSelection(QtObjectPtr ptr) -{ - QObject::connect(((MyQAbstractItemView*)(ptr)), &MyQAbstractItemView::Slot_ClearSelection, ((QAbstractItemView*)(ptr)), &QAbstractItemView::clearSelection, Qt::QueuedConnection); -} - -void QAbstractItemView_DisconnectSlotClearSelection(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQAbstractItemView*)(ptr)), &MyQAbstractItemView::Slot_ClearSelection, ((QAbstractItemView*)(ptr)), &QAbstractItemView::clearSelection); -} - -void QAbstractItemView_ClearSelection(QtObjectPtr ptr) -{ - ((MyQAbstractItemView*)(ptr))->Slot_ClearSelection(); -} - -void QAbstractItemView_ConnectSlotReset(QtObjectPtr ptr) -{ - QObject::connect(((MyQAbstractItemView*)(ptr)), &MyQAbstractItemView::Slot_Reset, ((QAbstractItemView*)(ptr)), &QAbstractItemView::reset, Qt::QueuedConnection); -} - -void QAbstractItemView_DisconnectSlotReset(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQAbstractItemView*)(ptr)), &MyQAbstractItemView::Slot_Reset, ((QAbstractItemView*)(ptr)), &QAbstractItemView::reset); -} - -void QAbstractItemView_Reset(QtObjectPtr ptr) -{ - ((MyQAbstractItemView*)(ptr))->Slot_Reset(); -} - -void QAbstractItemView_ConnectSlotScrollToBottom(QtObjectPtr ptr) -{ - QObject::connect(((MyQAbstractItemView*)(ptr)), &MyQAbstractItemView::Slot_ScrollToBottom, ((QAbstractItemView*)(ptr)), &QAbstractItemView::scrollToBottom, Qt::QueuedConnection); -} - -void QAbstractItemView_DisconnectSlotScrollToBottom(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQAbstractItemView*)(ptr)), &MyQAbstractItemView::Slot_ScrollToBottom, ((QAbstractItemView*)(ptr)), &QAbstractItemView::scrollToBottom); -} - -void QAbstractItemView_ScrollToBottom(QtObjectPtr ptr) -{ - ((MyQAbstractItemView*)(ptr))->Slot_ScrollToBottom(); -} - -void QAbstractItemView_ConnectSlotScrollToTop(QtObjectPtr ptr) -{ - QObject::connect(((MyQAbstractItemView*)(ptr)), &MyQAbstractItemView::Slot_ScrollToTop, ((QAbstractItemView*)(ptr)), &QAbstractItemView::scrollToTop, Qt::QueuedConnection); -} - -void QAbstractItemView_DisconnectSlotScrollToTop(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQAbstractItemView*)(ptr)), &MyQAbstractItemView::Slot_ScrollToTop, ((QAbstractItemView*)(ptr)), &QAbstractItemView::scrollToTop); -} - -void QAbstractItemView_ScrollToTop(QtObjectPtr ptr) -{ - ((MyQAbstractItemView*)(ptr))->Slot_ScrollToTop(); -} - -void QAbstractItemView_ConnectSlotSelectAll(QtObjectPtr ptr) -{ - QObject::connect(((MyQAbstractItemView*)(ptr)), &MyQAbstractItemView::Slot_SelectAll, ((QAbstractItemView*)(ptr)), &QAbstractItemView::selectAll, Qt::QueuedConnection); -} - -void QAbstractItemView_DisconnectSlotSelectAll(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQAbstractItemView*)(ptr)), &MyQAbstractItemView::Slot_SelectAll, ((QAbstractItemView*)(ptr)), &QAbstractItemView::selectAll); -} - -void QAbstractItemView_SelectAll(QtObjectPtr ptr) -{ - ((MyQAbstractItemView*)(ptr))->Slot_SelectAll(); -} - -//Signals -void QAbstractItemView_ConnectSignalActivated(QtObjectPtr ptr) -{ - QObject::connect(((QAbstractItemView*)(ptr)), &QAbstractItemView::activated, ((MyQAbstractItemView*)(ptr)), &MyQAbstractItemView::Signal_Activated, Qt::QueuedConnection); -} - -void QAbstractItemView_DisconnectSignalActivated(QtObjectPtr ptr) -{ - QObject::disconnect(((QAbstractItemView*)(ptr)), &QAbstractItemView::activated, ((MyQAbstractItemView*)(ptr)), &MyQAbstractItemView::Signal_Activated); -} - -void QAbstractItemView_ConnectSignalClicked(QtObjectPtr ptr) -{ - QObject::connect(((QAbstractItemView*)(ptr)), &QAbstractItemView::clicked, ((MyQAbstractItemView*)(ptr)), &MyQAbstractItemView::Signal_Clicked, Qt::QueuedConnection); -} - -void QAbstractItemView_DisconnectSignalClicked(QtObjectPtr ptr) -{ - QObject::disconnect(((QAbstractItemView*)(ptr)), &QAbstractItemView::clicked, ((MyQAbstractItemView*)(ptr)), &MyQAbstractItemView::Signal_Clicked); -} - -void QAbstractItemView_ConnectSignalDoubleClicked(QtObjectPtr ptr) -{ - QObject::connect(((QAbstractItemView*)(ptr)), &QAbstractItemView::doubleClicked, ((MyQAbstractItemView*)(ptr)), &MyQAbstractItemView::Signal_DoubleClicked, Qt::QueuedConnection); -} - -void QAbstractItemView_DisconnectSignalDoubleClicked(QtObjectPtr ptr) -{ - QObject::disconnect(((QAbstractItemView*)(ptr)), &QAbstractItemView::doubleClicked, ((MyQAbstractItemView*)(ptr)), &MyQAbstractItemView::Signal_DoubleClicked); -} - -void QAbstractItemView_ConnectSignalEntered(QtObjectPtr ptr) -{ - QObject::connect(((QAbstractItemView*)(ptr)), &QAbstractItemView::entered, ((MyQAbstractItemView*)(ptr)), &MyQAbstractItemView::Signal_Entered, Qt::QueuedConnection); -} - -void QAbstractItemView_DisconnectSignalEntered(QtObjectPtr ptr) -{ - QObject::disconnect(((QAbstractItemView*)(ptr)), &QAbstractItemView::entered, ((MyQAbstractItemView*)(ptr)), &MyQAbstractItemView::Signal_Entered); -} - -void QAbstractItemView_ConnectSignalPressed(QtObjectPtr ptr) -{ - QObject::connect(((QAbstractItemView*)(ptr)), &QAbstractItemView::pressed, ((MyQAbstractItemView*)(ptr)), &MyQAbstractItemView::Signal_Pressed, Qt::QueuedConnection); -} - -void QAbstractItemView_DisconnectSignalPressed(QtObjectPtr ptr) -{ - QObject::disconnect(((QAbstractItemView*)(ptr)), &QAbstractItemView::pressed, ((MyQAbstractItemView*)(ptr)), &MyQAbstractItemView::Signal_Pressed); -} - -void QAbstractItemView_ConnectSignalViewportEntered(QtObjectPtr ptr) -{ - QObject::connect(((QAbstractItemView*)(ptr)), &QAbstractItemView::viewportEntered, ((MyQAbstractItemView*)(ptr)), &MyQAbstractItemView::Signal_ViewportEntered, Qt::QueuedConnection); -} - -void QAbstractItemView_DisconnectSignalViewportEntered(QtObjectPtr ptr) -{ - QObject::disconnect(((QAbstractItemView*)(ptr)), &QAbstractItemView::viewportEntered, ((MyQAbstractItemView*)(ptr)), &MyQAbstractItemView::Signal_ViewportEntered); -} - diff --git a/qabstractitemview.go b/qabstractitemview.go deleted file mode 100644 index 39e28b09..00000000 --- a/qabstractitemview.go +++ /dev/null @@ -1,457 +0,0 @@ -package qt - -//#include "qabstractitemview.h" -import "C" - -type qabstractitemview struct { - qabstractscrollarea -} - -type QAbstractItemView interface { - QAbstractScrollArea - AlternatingRowColors() bool - AutoScrollMargin() int - DefaultDropAction() DropAction - DragDropOverwriteMode() bool - DragEnabled() bool - HasAutoScroll() bool - KeyboardSearch(search string) - SelectionMode() SelectionMode - SetAlternatingRowColors(enable bool) - SetAutoScroll(enable bool) - SetAutoScrollMargin(margin int) - SetDefaultDropAction(dropAction DropAction) - SetDragDropOverwriteMode(overwrite bool) - SetDragEnabled(enable bool) - SetDropIndicatorShown(enable bool) - SetSelectionMode(mode SelectionMode) - SetTabKeyNavigation(enable bool) - SetTextElideMode(mode TextElideMode) - ShowDropIndicator() bool - SizeHintForColumn(column int) int - SizeHintForRow(row int) int - TabKeyNavigation() bool - TextElideMode() TextElideMode - ConnectSlotClearSelection() - DisconnectSlotClearSelection() - SlotClearSelection() - ConnectSlotReset() - DisconnectSlotReset() - SlotReset() - ConnectSlotScrollToBottom() - DisconnectSlotScrollToBottom() - SlotScrollToBottom() - ConnectSlotScrollToTop() - DisconnectSlotScrollToTop() - SlotScrollToTop() - ConnectSlotSelectAll() - DisconnectSlotSelectAll() - SlotSelectAll() - ConnectSignalActivated(f func()) - DisconnectSignalActivated() - SignalActivated() func() - ConnectSignalClicked(f func()) - DisconnectSignalClicked() - SignalClicked() func() - ConnectSignalDoubleClicked(f func()) - DisconnectSignalDoubleClicked() - SignalDoubleClicked() func() - ConnectSignalEntered(f func()) - DisconnectSignalEntered() - SignalEntered() func() - ConnectSignalPressed(f func()) - DisconnectSignalPressed() - SignalPressed() func() - ConnectSignalViewportEntered(f func()) - DisconnectSignalViewportEntered() - SignalViewportEntered() func() -} - -func (p *qabstractitemview) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qabstractitemview) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -//DragDropMode -type DragDropMode int - -var ( - NODRAGDROP = DragDropMode(C.QAbstractItemView_NoDragDrop()) - DRAGONLY = DragDropMode(C.QAbstractItemView_DragOnly()) - DROPONLY = DragDropMode(C.QAbstractItemView_DropOnly()) - DRAGDROP = DragDropMode(C.QAbstractItemView_DragDrop()) - INTERNALMOVE = DragDropMode(C.QAbstractItemView_InternalMove()) -) - -//EditTrigger -type EditTrigger int - -var ( - NOEDITTRIGGERS = EditTrigger(C.QAbstractItemView_NoEditTriggers()) - CURRENTCHANGED = EditTrigger(C.QAbstractItemView_CurrentChanged()) - DOUBLECLICKED = EditTrigger(C.QAbstractItemView_DoubleClicked()) - SELECTEDCLICKED = EditTrigger(C.QAbstractItemView_SelectedClicked()) - EDITKEYPRESSED = EditTrigger(C.QAbstractItemView_EditKeyPressed()) - ANYKEYPRESSED = EditTrigger(C.QAbstractItemView_AnyKeyPressed()) - ALLEDITTRIGGERS = EditTrigger(C.QAbstractItemView_AllEditTriggers()) -) - -//ScrollHint -type ScrollHint int - -var ( - ENSUREVISIBLE = ScrollHint(C.QAbstractItemView_EnsureVisible()) - POSITIONATTOP = ScrollHint(C.QAbstractItemView_PositionAtTop()) - POSITIONATBOTTOM = ScrollHint(C.QAbstractItemView_PositionAtBottom()) - POSITIONATCENTER = ScrollHint(C.QAbstractItemView_PositionAtCenter()) -) - -//ScrollMode -type ScrollMode int - -var ( - SCROLLPERITEM = ScrollMode(C.QAbstractItemView_ScrollPerItem()) - SCROLLPERPIXEL = ScrollMode(C.QAbstractItemView_ScrollPerPixel()) -) - -//SelectionBehavior -type SelectionBehavior int - -var ( - SELECTITEMS = SelectionBehavior(C.QAbstractItemView_SelectItems()) - SELECTROWS = SelectionBehavior(C.QAbstractItemView_SelectRows()) - SELECTCOLUMNS = SelectionBehavior(C.QAbstractItemView_SelectColumns()) -) - -//SelectionMode -type SelectionMode int - -var ( - SINGLESELECTION = SelectionMode(C.QAbstractItemView_SingleSelection()) - CONTIGUOUSSELECTION = SelectionMode(C.QAbstractItemView_ContiguousSelection()) - EXTENDEDSELECTION = SelectionMode(C.QAbstractItemView_ExtendedSelection()) - MULTISELECTION = SelectionMode(C.QAbstractItemView_MultiSelection()) - NOSELECTION = SelectionMode(C.QAbstractItemView_NoSelection()) -) - -func (p *qabstractitemview) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QAbstractItemView_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qabstractitemview) AlternatingRowColors() bool { - if p.Pointer() == nil { - return false - } - return C.QAbstractItemView_AlternatingRowColors(p.Pointer()) != 0 -} - -func (p *qabstractitemview) AutoScrollMargin() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QAbstractItemView_AutoScrollMargin(p.Pointer())) -} - -func (p *qabstractitemview) DefaultDropAction() DropAction { - if p.Pointer() == nil { - return 0 - } - return DropAction(C.QAbstractItemView_DefaultDropAction(p.Pointer())) -} - -func (p *qabstractitemview) DragDropOverwriteMode() bool { - if p.Pointer() == nil { - return false - } - return C.QAbstractItemView_DragDropOverwriteMode(p.Pointer()) != 0 -} - -func (p *qabstractitemview) DragEnabled() bool { - if p.Pointer() == nil { - return false - } - return C.QAbstractItemView_DragEnabled(p.Pointer()) != 0 -} - -func (p *qabstractitemview) HasAutoScroll() bool { - if p.Pointer() == nil { - return false - } - return C.QAbstractItemView_HasAutoScroll(p.Pointer()) != 0 -} - -func (p *qabstractitemview) KeyboardSearch(search string) { - if p.Pointer() != nil { - C.QAbstractItemView_KeyboardSearch_String(p.Pointer(), C.CString(search)) - } -} - -func (p *qabstractitemview) SelectionMode() SelectionMode { - if p.Pointer() == nil { - return 0 - } - return SelectionMode(C.QAbstractItemView_SelectionMode(p.Pointer())) -} - -func (p *qabstractitemview) SetAlternatingRowColors(enable bool) { - if p.Pointer() != nil { - C.QAbstractItemView_SetAlternatingRowColors_Bool(p.Pointer(), goBoolToCInt(enable)) - } -} - -func (p *qabstractitemview) SetAutoScroll(enable bool) { - if p.Pointer() != nil { - C.QAbstractItemView_SetAutoScroll_Bool(p.Pointer(), goBoolToCInt(enable)) - } -} - -func (p *qabstractitemview) SetAutoScrollMargin(margin int) { - if p.Pointer() != nil { - C.QAbstractItemView_SetAutoScrollMargin_Int(p.Pointer(), C.int(margin)) - } -} - -func (p *qabstractitemview) SetDefaultDropAction(dropAction DropAction) { - if p.Pointer() != nil { - C.QAbstractItemView_SetDefaultDropAction_DropAction(p.Pointer(), C.int(dropAction)) - } -} - -func (p *qabstractitemview) SetDragDropOverwriteMode(overwrite bool) { - if p.Pointer() != nil { - C.QAbstractItemView_SetDragDropOverwriteMode_Bool(p.Pointer(), goBoolToCInt(overwrite)) - } -} - -func (p *qabstractitemview) SetDragEnabled(enable bool) { - if p.Pointer() != nil { - C.QAbstractItemView_SetDragEnabled_Bool(p.Pointer(), goBoolToCInt(enable)) - } -} - -func (p *qabstractitemview) SetDropIndicatorShown(enable bool) { - if p.Pointer() != nil { - C.QAbstractItemView_SetDropIndicatorShown_Bool(p.Pointer(), goBoolToCInt(enable)) - } -} - -func (p *qabstractitemview) SetSelectionMode(mode SelectionMode) { - if p.Pointer() != nil { - C.QAbstractItemView_SetSelectionMode_SelectionMode(p.Pointer(), C.int(mode)) - } -} - -func (p *qabstractitemview) SetTabKeyNavigation(enable bool) { - if p.Pointer() != nil { - C.QAbstractItemView_SetTabKeyNavigation_Bool(p.Pointer(), goBoolToCInt(enable)) - } -} - -func (p *qabstractitemview) SetTextElideMode(mode TextElideMode) { - if p.Pointer() != nil { - C.QAbstractItemView_SetTextElideMode_TextElideMode(p.Pointer(), C.int(mode)) - } -} - -func (p *qabstractitemview) ShowDropIndicator() bool { - if p.Pointer() == nil { - return false - } - return C.QAbstractItemView_ShowDropIndicator(p.Pointer()) != 0 -} - -func (p *qabstractitemview) SizeHintForColumn(column int) int { - if p.Pointer() == nil { - return 0 - } - return int(C.QAbstractItemView_SizeHintForColumn_Int(p.Pointer(), C.int(column))) -} - -func (p *qabstractitemview) SizeHintForRow(row int) int { - if p.Pointer() == nil { - return 0 - } - return int(C.QAbstractItemView_SizeHintForRow_Int(p.Pointer(), C.int(row))) -} - -func (p *qabstractitemview) TabKeyNavigation() bool { - if p.Pointer() == nil { - return false - } - return C.QAbstractItemView_TabKeyNavigation(p.Pointer()) != 0 -} - -func (p *qabstractitemview) TextElideMode() TextElideMode { - if p.Pointer() == nil { - return 0 - } - return TextElideMode(C.QAbstractItemView_TextElideMode(p.Pointer())) -} - -func (p *qabstractitemview) ConnectSlotClearSelection() { - C.QAbstractItemView_ConnectSlotClearSelection(p.Pointer()) -} - -func (p *qabstractitemview) DisconnectSlotClearSelection() { - C.QAbstractItemView_DisconnectSlotClearSelection(p.Pointer()) -} - -func (p *qabstractitemview) SlotClearSelection() { - if p.Pointer() != nil { - C.QAbstractItemView_ClearSelection(p.Pointer()) - } -} - -func (p *qabstractitemview) ConnectSlotReset() { - C.QAbstractItemView_ConnectSlotReset(p.Pointer()) -} - -func (p *qabstractitemview) DisconnectSlotReset() { - C.QAbstractItemView_DisconnectSlotReset(p.Pointer()) -} - -func (p *qabstractitemview) SlotReset() { - if p.Pointer() != nil { - C.QAbstractItemView_Reset(p.Pointer()) - } -} - -func (p *qabstractitemview) ConnectSlotScrollToBottom() { - C.QAbstractItemView_ConnectSlotScrollToBottom(p.Pointer()) -} - -func (p *qabstractitemview) DisconnectSlotScrollToBottom() { - C.QAbstractItemView_DisconnectSlotScrollToBottom(p.Pointer()) -} - -func (p *qabstractitemview) SlotScrollToBottom() { - if p.Pointer() != nil { - C.QAbstractItemView_ScrollToBottom(p.Pointer()) - } -} - -func (p *qabstractitemview) ConnectSlotScrollToTop() { - C.QAbstractItemView_ConnectSlotScrollToTop(p.Pointer()) -} - -func (p *qabstractitemview) DisconnectSlotScrollToTop() { - C.QAbstractItemView_DisconnectSlotScrollToTop(p.Pointer()) -} - -func (p *qabstractitemview) SlotScrollToTop() { - if p.Pointer() != nil { - C.QAbstractItemView_ScrollToTop(p.Pointer()) - } -} - -func (p *qabstractitemview) ConnectSlotSelectAll() { - C.QAbstractItemView_ConnectSlotSelectAll(p.Pointer()) -} - -func (p *qabstractitemview) DisconnectSlotSelectAll() { - C.QAbstractItemView_DisconnectSlotSelectAll(p.Pointer()) -} - -func (p *qabstractitemview) SlotSelectAll() { - if p.Pointer() != nil { - C.QAbstractItemView_SelectAll(p.Pointer()) - } -} - -func (p *qabstractitemview) ConnectSignalActivated(f func()) { - C.QAbstractItemView_ConnectSignalActivated(p.Pointer()) - connectSignal(p.ObjectName(), "activated", f) -} - -func (p *qabstractitemview) DisconnectSignalActivated() { - C.QAbstractItemView_DisconnectSignalActivated(p.Pointer()) - disconnectSignal(p.ObjectName(), "activated") -} - -func (p *qabstractitemview) SignalActivated() func() { - return getSignal(p.ObjectName(), "activated") -} - -func (p *qabstractitemview) ConnectSignalClicked(f func()) { - C.QAbstractItemView_ConnectSignalClicked(p.Pointer()) - connectSignal(p.ObjectName(), "clicked", f) -} - -func (p *qabstractitemview) DisconnectSignalClicked() { - C.QAbstractItemView_DisconnectSignalClicked(p.Pointer()) - disconnectSignal(p.ObjectName(), "clicked") -} - -func (p *qabstractitemview) SignalClicked() func() { - return getSignal(p.ObjectName(), "clicked") -} - -func (p *qabstractitemview) ConnectSignalDoubleClicked(f func()) { - C.QAbstractItemView_ConnectSignalDoubleClicked(p.Pointer()) - connectSignal(p.ObjectName(), "doubleClicked", f) -} - -func (p *qabstractitemview) DisconnectSignalDoubleClicked() { - C.QAbstractItemView_DisconnectSignalDoubleClicked(p.Pointer()) - disconnectSignal(p.ObjectName(), "doubleClicked") -} - -func (p *qabstractitemview) SignalDoubleClicked() func() { - return getSignal(p.ObjectName(), "doubleClicked") -} - -func (p *qabstractitemview) ConnectSignalEntered(f func()) { - C.QAbstractItemView_ConnectSignalEntered(p.Pointer()) - connectSignal(p.ObjectName(), "entered", f) -} - -func (p *qabstractitemview) DisconnectSignalEntered() { - C.QAbstractItemView_DisconnectSignalEntered(p.Pointer()) - disconnectSignal(p.ObjectName(), "entered") -} - -func (p *qabstractitemview) SignalEntered() func() { - return getSignal(p.ObjectName(), "entered") -} - -func (p *qabstractitemview) ConnectSignalPressed(f func()) { - C.QAbstractItemView_ConnectSignalPressed(p.Pointer()) - connectSignal(p.ObjectName(), "pressed", f) -} - -func (p *qabstractitemview) DisconnectSignalPressed() { - C.QAbstractItemView_DisconnectSignalPressed(p.Pointer()) - disconnectSignal(p.ObjectName(), "pressed") -} - -func (p *qabstractitemview) SignalPressed() func() { - return getSignal(p.ObjectName(), "pressed") -} - -func (p *qabstractitemview) ConnectSignalViewportEntered(f func()) { - C.QAbstractItemView_ConnectSignalViewportEntered(p.Pointer()) - connectSignal(p.ObjectName(), "viewportEntered", f) -} - -func (p *qabstractitemview) DisconnectSignalViewportEntered() { - C.QAbstractItemView_DisconnectSignalViewportEntered(p.Pointer()) - disconnectSignal(p.ObjectName(), "viewportEntered") -} - -func (p *qabstractitemview) SignalViewportEntered() func() { - return getSignal(p.ObjectName(), "viewportEntered") -} - -//export callbackQAbstractItemView -func callbackQAbstractItemView(ptr C.QtObjectPtr, msg *C.char) { - var qabstractitemview = new(qabstractitemview) - qabstractitemview.SetPointer(ptr) - getSignal(qabstractitemview.ObjectName(), C.GoString(msg))() -} diff --git a/qabstractitemview.h b/qabstractitemview.h deleted file mode 100644 index 8194d8e1..00000000 --- a/qabstractitemview.h +++ /dev/null @@ -1,91 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Types -int QAbstractItemView_NoDragDrop(); -int QAbstractItemView_DragOnly(); -int QAbstractItemView_DropOnly(); -int QAbstractItemView_DragDrop(); -int QAbstractItemView_InternalMove(); -int QAbstractItemView_NoEditTriggers(); -int QAbstractItemView_CurrentChanged(); -int QAbstractItemView_DoubleClicked(); -int QAbstractItemView_SelectedClicked(); -int QAbstractItemView_EditKeyPressed(); -int QAbstractItemView_AnyKeyPressed(); -int QAbstractItemView_AllEditTriggers(); -int QAbstractItemView_EnsureVisible(); -int QAbstractItemView_PositionAtTop(); -int QAbstractItemView_PositionAtBottom(); -int QAbstractItemView_PositionAtCenter(); -int QAbstractItemView_ScrollPerItem(); -int QAbstractItemView_ScrollPerPixel(); -int QAbstractItemView_SelectItems(); -int QAbstractItemView_SelectRows(); -int QAbstractItemView_SelectColumns(); -int QAbstractItemView_SingleSelection(); -int QAbstractItemView_ContiguousSelection(); -int QAbstractItemView_ExtendedSelection(); -int QAbstractItemView_MultiSelection(); -int QAbstractItemView_NoSelection(); -//Public Functions -void QAbstractItemView_Destroy(QtObjectPtr ptr); -int QAbstractItemView_AlternatingRowColors(QtObjectPtr ptr); -int QAbstractItemView_AutoScrollMargin(QtObjectPtr ptr); -int QAbstractItemView_DefaultDropAction(QtObjectPtr ptr); -int QAbstractItemView_DragDropOverwriteMode(QtObjectPtr ptr); -int QAbstractItemView_DragEnabled(QtObjectPtr ptr); -int QAbstractItemView_HasAutoScroll(QtObjectPtr ptr); -void QAbstractItemView_KeyboardSearch_String(QtObjectPtr ptr, char* search); -int QAbstractItemView_SelectionMode(QtObjectPtr ptr); -void QAbstractItemView_SetAlternatingRowColors_Bool(QtObjectPtr ptr, int enable); -void QAbstractItemView_SetAutoScroll_Bool(QtObjectPtr ptr, int enable); -void QAbstractItemView_SetAutoScrollMargin_Int(QtObjectPtr ptr, int margin); -void QAbstractItemView_SetDefaultDropAction_DropAction(QtObjectPtr ptr, int dropAction); -void QAbstractItemView_SetDragDropOverwriteMode_Bool(QtObjectPtr ptr, int overwrite); -void QAbstractItemView_SetDragEnabled_Bool(QtObjectPtr ptr, int enable); -void QAbstractItemView_SetDropIndicatorShown_Bool(QtObjectPtr ptr, int enable); -void QAbstractItemView_SetSelectionMode_SelectionMode(QtObjectPtr ptr, int mode); -void QAbstractItemView_SetTabKeyNavigation_Bool(QtObjectPtr ptr, int enable); -void QAbstractItemView_SetTextElideMode_TextElideMode(QtObjectPtr ptr, int mode); -int QAbstractItemView_ShowDropIndicator(QtObjectPtr ptr); -int QAbstractItemView_SizeHintForColumn_Int(QtObjectPtr ptr, int column); -int QAbstractItemView_SizeHintForRow_Int(QtObjectPtr ptr, int row); -int QAbstractItemView_TabKeyNavigation(QtObjectPtr ptr); -int QAbstractItemView_TextElideMode(QtObjectPtr ptr); -//Public Slots -void QAbstractItemView_ConnectSlotClearSelection(QtObjectPtr ptr); -void QAbstractItemView_DisconnectSlotClearSelection(QtObjectPtr ptr); -void QAbstractItemView_ClearSelection(QtObjectPtr ptr); -void QAbstractItemView_ConnectSlotReset(QtObjectPtr ptr); -void QAbstractItemView_DisconnectSlotReset(QtObjectPtr ptr); -void QAbstractItemView_Reset(QtObjectPtr ptr); -void QAbstractItemView_ConnectSlotScrollToBottom(QtObjectPtr ptr); -void QAbstractItemView_DisconnectSlotScrollToBottom(QtObjectPtr ptr); -void QAbstractItemView_ScrollToBottom(QtObjectPtr ptr); -void QAbstractItemView_ConnectSlotScrollToTop(QtObjectPtr ptr); -void QAbstractItemView_DisconnectSlotScrollToTop(QtObjectPtr ptr); -void QAbstractItemView_ScrollToTop(QtObjectPtr ptr); -void QAbstractItemView_ConnectSlotSelectAll(QtObjectPtr ptr); -void QAbstractItemView_DisconnectSlotSelectAll(QtObjectPtr ptr); -void QAbstractItemView_SelectAll(QtObjectPtr ptr); -//Signals -void QAbstractItemView_ConnectSignalActivated(QtObjectPtr ptr); -void QAbstractItemView_DisconnectSignalActivated(QtObjectPtr ptr); -void QAbstractItemView_ConnectSignalClicked(QtObjectPtr ptr); -void QAbstractItemView_DisconnectSignalClicked(QtObjectPtr ptr); -void QAbstractItemView_ConnectSignalDoubleClicked(QtObjectPtr ptr); -void QAbstractItemView_DisconnectSignalDoubleClicked(QtObjectPtr ptr); -void QAbstractItemView_ConnectSignalEntered(QtObjectPtr ptr); -void QAbstractItemView_DisconnectSignalEntered(QtObjectPtr ptr); -void QAbstractItemView_ConnectSignalPressed(QtObjectPtr ptr); -void QAbstractItemView_DisconnectSignalPressed(QtObjectPtr ptr); -void QAbstractItemView_ConnectSignalViewportEntered(QtObjectPtr ptr); -void QAbstractItemView_DisconnectSignalViewportEntered(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qabstractitemview.moc b/qabstractitemview.moc deleted file mode 100644 index 97dd2b71..00000000 --- a/qabstractitemview.moc +++ /dev/null @@ -1,190 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qabstractitemview.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qabstractitemview.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQAbstractItemView_t { - QByteArrayData data[7]; - char stringdata[104]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQAbstractItemView_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQAbstractItemView_t qt_meta_stringdata_MyQAbstractItemView = { - { -QT_MOC_LITERAL(0, 0, 19), // "MyQAbstractItemView" -QT_MOC_LITERAL(1, 20, 19), // "Slot_ClearSelection" -QT_MOC_LITERAL(2, 40, 0), // "" -QT_MOC_LITERAL(3, 41, 10), // "Slot_Reset" -QT_MOC_LITERAL(4, 52, 19), // "Slot_ScrollToBottom" -QT_MOC_LITERAL(5, 72, 16), // "Slot_ScrollToTop" -QT_MOC_LITERAL(6, 89, 14) // "Slot_SelectAll" - - }, - "MyQAbstractItemView\0Slot_ClearSelection\0" - "\0Slot_Reset\0Slot_ScrollToBottom\0" - "Slot_ScrollToTop\0Slot_SelectAll" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQAbstractItemView[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 5, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 5, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 0, 39, 2, 0x06 /* Public */, - 3, 0, 40, 2, 0x06 /* Public */, - 4, 0, 41, 2, 0x06 /* Public */, - 5, 0, 42, 2, 0x06 /* Public */, - 6, 0, 43, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - - 0 // eod -}; - -void MyQAbstractItemView::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQAbstractItemView *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_ClearSelection(); break; - case 1: _t->Slot_Reset(); break; - case 2: _t->Slot_ScrollToBottom(); break; - case 3: _t->Slot_ScrollToTop(); break; - case 4: _t->Slot_SelectAll(); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQAbstractItemView::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQAbstractItemView::Slot_ClearSelection)) { - *result = 0; - } - } - { - typedef void (MyQAbstractItemView::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQAbstractItemView::Slot_Reset)) { - *result = 1; - } - } - { - typedef void (MyQAbstractItemView::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQAbstractItemView::Slot_ScrollToBottom)) { - *result = 2; - } - } - { - typedef void (MyQAbstractItemView::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQAbstractItemView::Slot_ScrollToTop)) { - *result = 3; - } - } - { - typedef void (MyQAbstractItemView::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQAbstractItemView::Slot_SelectAll)) { - *result = 4; - } - } - } - Q_UNUSED(_a); -} - -const QMetaObject MyQAbstractItemView::staticMetaObject = { - { &QAbstractItemView::staticMetaObject, qt_meta_stringdata_MyQAbstractItemView.data, - qt_meta_data_MyQAbstractItemView, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQAbstractItemView::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQAbstractItemView::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQAbstractItemView.stringdata)) - return static_cast(const_cast< MyQAbstractItemView*>(this)); - return QAbstractItemView::qt_metacast(_clname); -} - -int MyQAbstractItemView::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QAbstractItemView::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 5) - qt_static_metacall(this, _c, _id, _a); - _id -= 5; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 5) - *reinterpret_cast(_a[0]) = -1; - _id -= 5; - } - return _id; -} - -// SIGNAL 0 -void MyQAbstractItemView::Slot_ClearSelection() -{ - QMetaObject::activate(this, &staticMetaObject, 0, 0); -} - -// SIGNAL 1 -void MyQAbstractItemView::Slot_Reset() -{ - QMetaObject::activate(this, &staticMetaObject, 1, 0); -} - -// SIGNAL 2 -void MyQAbstractItemView::Slot_ScrollToBottom() -{ - QMetaObject::activate(this, &staticMetaObject, 2, 0); -} - -// SIGNAL 3 -void MyQAbstractItemView::Slot_ScrollToTop() -{ - QMetaObject::activate(this, &staticMetaObject, 3, 0); -} - -// SIGNAL 4 -void MyQAbstractItemView::Slot_SelectAll() -{ - QMetaObject::activate(this, &staticMetaObject, 4, 0); -} -QT_END_MOC_NAMESPACE diff --git a/qabstractscrollarea.cpp b/qabstractscrollarea.cpp deleted file mode 100644 index 34c48610..00000000 --- a/qabstractscrollarea.cpp +++ /dev/null @@ -1,67 +0,0 @@ -#include "qabstractscrollarea.h" -#include -#include "cgoexport.h" - - - -//Public Functions -QtObjectPtr QAbstractScrollArea_New_QWidget(QtObjectPtr parent) -{ - return new QAbstractScrollArea(((QWidget*)(parent))); -} - -void QAbstractScrollArea_Destroy(QtObjectPtr ptr) -{ - ((QAbstractScrollArea*)(ptr))->~QAbstractScrollArea(); -} - -void QAbstractScrollArea_AddScrollBarWidget_QWidget_AlignmentFlag(QtObjectPtr ptr, QtObjectPtr widget, int alignment) -{ - ((QAbstractScrollArea*)(ptr))->addScrollBarWidget(((QWidget*)(widget)), ((Qt::AlignmentFlag)(alignment))); -} - -QtObjectPtr QAbstractScrollArea_CornerWidget(QtObjectPtr ptr) -{ - return ((QAbstractScrollArea*)(ptr))->cornerWidget(); -} - -int QAbstractScrollArea_HorizontalScrollBarPolicy(QtObjectPtr ptr) -{ - return ((QAbstractScrollArea*)(ptr))->horizontalScrollBarPolicy(); -} - -void QAbstractScrollArea_SetCornerWidget_QWidget(QtObjectPtr ptr, QtObjectPtr widget) -{ - ((QAbstractScrollArea*)(ptr))->setCornerWidget(((QWidget*)(widget))); -} - -void QAbstractScrollArea_SetHorizontalScrollBarPolicy_ScrollBarPolicy(QtObjectPtr ptr, int ScrollBarPolicy) -{ - ((QAbstractScrollArea*)(ptr))->setHorizontalScrollBarPolicy(((Qt::ScrollBarPolicy)(ScrollBarPolicy))); -} - -void QAbstractScrollArea_SetVerticalScrollBarPolicy_ScrollBarPolicy(QtObjectPtr ptr, int ScrollBarPolicy) -{ - ((QAbstractScrollArea*)(ptr))->setVerticalScrollBarPolicy(((Qt::ScrollBarPolicy)(ScrollBarPolicy))); -} - -void QAbstractScrollArea_SetViewport_QWidget(QtObjectPtr ptr, QtObjectPtr widget) -{ - ((QAbstractScrollArea*)(ptr))->setViewport(((QWidget*)(widget))); -} - -void QAbstractScrollArea_SetupViewport_QWidget(QtObjectPtr ptr, QtObjectPtr viewport) -{ - ((QAbstractScrollArea*)(ptr))->setupViewport(((QWidget*)(viewport))); -} - -int QAbstractScrollArea_VerticalScrollBarPolicy(QtObjectPtr ptr) -{ - return ((QAbstractScrollArea*)(ptr))->verticalScrollBarPolicy(); -} - -QtObjectPtr QAbstractScrollArea_Viewport(QtObjectPtr ptr) -{ - return ((QAbstractScrollArea*)(ptr))->viewport(); -} - diff --git a/qabstractscrollarea.go b/qabstractscrollarea.go deleted file mode 100644 index 81b8001a..00000000 --- a/qabstractscrollarea.go +++ /dev/null @@ -1,141 +0,0 @@ -package qt - -//#include "qabstractscrollarea.h" -import "C" - -type qabstractscrollarea struct { - qframe -} - -type QAbstractScrollArea interface { - QFrame - AddScrollBarWidget(widget QWidget, alignment AlignmentFlag) - CornerWidget() QWidget - HorizontalScrollBarPolicy() ScrollBarPolicy - SetCornerWidget(widget QWidget) - SetHorizontalScrollBarPolicy(ScrollBarPolicy ScrollBarPolicy) - SetVerticalScrollBarPolicy(ScrollBarPolicy ScrollBarPolicy) - SetViewport(widget QWidget) - SetupViewport(viewport QWidget) - VerticalScrollBarPolicy() ScrollBarPolicy - Viewport() QWidget -} - -func (p *qabstractscrollarea) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qabstractscrollarea) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQAbstractScrollArea(parent QWidget) QAbstractScrollArea { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qabstractscrollarea = new(qabstractscrollarea) - qabstractscrollarea.SetPointer(C.QAbstractScrollArea_New_QWidget(parentPtr)) - qabstractscrollarea.SetObjectName("QAbstractScrollArea_" + randomIdentifier()) - return qabstractscrollarea -} - -func (p *qabstractscrollarea) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QAbstractScrollArea_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qabstractscrollarea) AddScrollBarWidget(widget QWidget, alignment AlignmentFlag) { - if p.Pointer() != nil { - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - C.QAbstractScrollArea_AddScrollBarWidget_QWidget_AlignmentFlag(p.Pointer(), widgetPtr, C.int(alignment)) - } -} - -func (p *qabstractscrollarea) CornerWidget() QWidget { - if p.Pointer() == nil { - return nil - } else { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QAbstractScrollArea_CornerWidget(p.Pointer())) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qabstractscrollarea) HorizontalScrollBarPolicy() ScrollBarPolicy { - if p.Pointer() == nil { - return 0 - } - return ScrollBarPolicy(C.QAbstractScrollArea_HorizontalScrollBarPolicy(p.Pointer())) -} - -func (p *qabstractscrollarea) SetCornerWidget(widget QWidget) { - if p.Pointer() != nil { - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - C.QAbstractScrollArea_SetCornerWidget_QWidget(p.Pointer(), widgetPtr) - } -} - -func (p *qabstractscrollarea) SetHorizontalScrollBarPolicy(ScrollBarPolicy ScrollBarPolicy) { - if p.Pointer() != nil { - C.QAbstractScrollArea_SetHorizontalScrollBarPolicy_ScrollBarPolicy(p.Pointer(), C.int(ScrollBarPolicy)) - } -} - -func (p *qabstractscrollarea) SetVerticalScrollBarPolicy(ScrollBarPolicy ScrollBarPolicy) { - if p.Pointer() != nil { - C.QAbstractScrollArea_SetVerticalScrollBarPolicy_ScrollBarPolicy(p.Pointer(), C.int(ScrollBarPolicy)) - } -} - -func (p *qabstractscrollarea) SetViewport(widget QWidget) { - if p.Pointer() != nil { - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - C.QAbstractScrollArea_SetViewport_QWidget(p.Pointer(), widgetPtr) - } -} - -func (p *qabstractscrollarea) SetupViewport(viewport QWidget) { - if p.Pointer() != nil { - var viewportPtr C.QtObjectPtr - if viewport != nil { - viewportPtr = viewport.Pointer() - } - C.QAbstractScrollArea_SetupViewport_QWidget(p.Pointer(), viewportPtr) - } -} - -func (p *qabstractscrollarea) VerticalScrollBarPolicy() ScrollBarPolicy { - if p.Pointer() == nil { - return 0 - } - return ScrollBarPolicy(C.QAbstractScrollArea_VerticalScrollBarPolicy(p.Pointer())) -} - -func (p *qabstractscrollarea) Viewport() QWidget { - if p.Pointer() == nil { - return nil - } else { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QAbstractScrollArea_Viewport(p.Pointer())) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} diff --git a/qabstractscrollarea.h b/qabstractscrollarea.h deleted file mode 100644 index 80a364c8..00000000 --- a/qabstractscrollarea.h +++ /dev/null @@ -1,23 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QAbstractScrollArea_New_QWidget(QtObjectPtr parent); -void QAbstractScrollArea_Destroy(QtObjectPtr ptr); -void QAbstractScrollArea_AddScrollBarWidget_QWidget_AlignmentFlag(QtObjectPtr ptr, QtObjectPtr widget, int alignment); -QtObjectPtr QAbstractScrollArea_CornerWidget(QtObjectPtr ptr); -int QAbstractScrollArea_HorizontalScrollBarPolicy(QtObjectPtr ptr); -void QAbstractScrollArea_SetCornerWidget_QWidget(QtObjectPtr ptr, QtObjectPtr widget); -void QAbstractScrollArea_SetHorizontalScrollBarPolicy_ScrollBarPolicy(QtObjectPtr ptr, int ScrollBarPolicy); -void QAbstractScrollArea_SetVerticalScrollBarPolicy_ScrollBarPolicy(QtObjectPtr ptr, int ScrollBarPolicy); -void QAbstractScrollArea_SetViewport_QWidget(QtObjectPtr ptr, QtObjectPtr widget); -void QAbstractScrollArea_SetupViewport_QWidget(QtObjectPtr ptr, QtObjectPtr viewport); -int QAbstractScrollArea_VerticalScrollBarPolicy(QtObjectPtr ptr); -QtObjectPtr QAbstractScrollArea_Viewport(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qabstractscrollarea.moc b/qabstractscrollarea.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/qabstractslider.cpp b/qabstractslider.cpp deleted file mode 100644 index 654b10ba..00000000 --- a/qabstractslider.cpp +++ /dev/null @@ -1,242 +0,0 @@ -#include "qabstractslider.h" -#include -#include "cgoexport.h" - -//MyQAbstractSlider -class MyQAbstractSlider: public QAbstractSlider { -Q_OBJECT -public: -void Signal_ActionTriggered() { callbackQAbstractSlider(this, QString("actionTriggered").toUtf8().data()); }; -void Signal_RangeChanged() { callbackQAbstractSlider(this, QString("rangeChanged").toUtf8().data()); }; -void Signal_SliderMoved() { callbackQAbstractSlider(this, QString("sliderMoved").toUtf8().data()); }; -void Signal_SliderPressed() { callbackQAbstractSlider(this, QString("sliderPressed").toUtf8().data()); }; -void Signal_SliderReleased() { callbackQAbstractSlider(this, QString("sliderReleased").toUtf8().data()); }; -void Signal_ValueChanged() { callbackQAbstractSlider(this, QString("valueChanged").toUtf8().data()); }; - -signals: -void Slot_SetOrientation(Qt::Orientation orientation); -void Slot_SetRange(int min, int max); -void Slot_SetValue(int value); - -}; -#include "qabstractslider.moc" - - -//Public Functions -QtObjectPtr QAbstractSlider_New_QWidget(QtObjectPtr parent) -{ - return new QAbstractSlider(((QWidget*)(parent))); -} - -void QAbstractSlider_Destroy(QtObjectPtr ptr) -{ - ((QAbstractSlider*)(ptr))->~QAbstractSlider(); -} - -int QAbstractSlider_HasTracking(QtObjectPtr ptr) -{ - return ((QAbstractSlider*)(ptr))->hasTracking(); -} - -int QAbstractSlider_InvertedAppearance(QtObjectPtr ptr) -{ - return ((QAbstractSlider*)(ptr))->invertedAppearance(); -} - -int QAbstractSlider_InvertedControls(QtObjectPtr ptr) -{ - return ((QAbstractSlider*)(ptr))->invertedControls(); -} - -int QAbstractSlider_IsSliderDown(QtObjectPtr ptr) -{ - return ((QAbstractSlider*)(ptr))->isSliderDown(); -} - -int QAbstractSlider_Maximum(QtObjectPtr ptr) -{ - return ((QAbstractSlider*)(ptr))->maximum(); -} - -int QAbstractSlider_Minimum(QtObjectPtr ptr) -{ - return ((QAbstractSlider*)(ptr))->minimum(); -} - -int QAbstractSlider_Orientation(QtObjectPtr ptr) -{ - return ((QAbstractSlider*)(ptr))->orientation(); -} - -int QAbstractSlider_PageStep(QtObjectPtr ptr) -{ - return ((QAbstractSlider*)(ptr))->pageStep(); -} - -void QAbstractSlider_SetInvertedAppearance_Bool(QtObjectPtr ptr, int invertedAppearance) -{ - ((QAbstractSlider*)(ptr))->setInvertedAppearance(invertedAppearance != 0); -} - -void QAbstractSlider_SetInvertedControls_Bool(QtObjectPtr ptr, int invertedControls) -{ - ((QAbstractSlider*)(ptr))->setInvertedControls(invertedControls != 0); -} - -void QAbstractSlider_SetMaximum_Int(QtObjectPtr ptr, int maximum) -{ - ((QAbstractSlider*)(ptr))->setMaximum(maximum); -} - -void QAbstractSlider_SetMinimum_Int(QtObjectPtr ptr, int minimum) -{ - ((QAbstractSlider*)(ptr))->setMinimum(minimum); -} - -void QAbstractSlider_SetPageStep_Int(QtObjectPtr ptr, int pageStep) -{ - ((QAbstractSlider*)(ptr))->setPageStep(pageStep); -} - -void QAbstractSlider_SetSingleStep_Int(QtObjectPtr ptr, int singleStep) -{ - ((QAbstractSlider*)(ptr))->setSingleStep(singleStep); -} - -void QAbstractSlider_SetSliderDown_Bool(QtObjectPtr ptr, int sliderDown) -{ - ((QAbstractSlider*)(ptr))->setSliderDown(sliderDown != 0); -} - -void QAbstractSlider_SetSliderPosition_Int(QtObjectPtr ptr, int sliderPosition) -{ - ((QAbstractSlider*)(ptr))->setSliderPosition(sliderPosition); -} - -void QAbstractSlider_SetTracking_Bool(QtObjectPtr ptr, int enable) -{ - ((QAbstractSlider*)(ptr))->setTracking(enable != 0); -} - -int QAbstractSlider_SingleStep(QtObjectPtr ptr) -{ - return ((QAbstractSlider*)(ptr))->singleStep(); -} - -int QAbstractSlider_SliderPosition(QtObjectPtr ptr) -{ - return ((QAbstractSlider*)(ptr))->sliderPosition(); -} - -int QAbstractSlider_Value(QtObjectPtr ptr) -{ - return ((QAbstractSlider*)(ptr))->value(); -} - -//Public Slots -void QAbstractSlider_ConnectSlotSetOrientation(QtObjectPtr ptr) -{ - QObject::connect(((MyQAbstractSlider*)(ptr)), &MyQAbstractSlider::Slot_SetOrientation, ((QAbstractSlider*)(ptr)), &QAbstractSlider::setOrientation, Qt::QueuedConnection); -} - -void QAbstractSlider_DisconnectSlotSetOrientation(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQAbstractSlider*)(ptr)), &MyQAbstractSlider::Slot_SetOrientation, ((QAbstractSlider*)(ptr)), &QAbstractSlider::setOrientation); -} - -void QAbstractSlider_SetOrientation_Orientation(QtObjectPtr ptr, int orientation) -{ - ((MyQAbstractSlider*)(ptr))->Slot_SetOrientation(((Qt::Orientation)(orientation))); -} - -void QAbstractSlider_ConnectSlotSetRange(QtObjectPtr ptr) -{ - QObject::connect(((MyQAbstractSlider*)(ptr)), &MyQAbstractSlider::Slot_SetRange, ((QAbstractSlider*)(ptr)), &QAbstractSlider::setRange, Qt::QueuedConnection); -} - -void QAbstractSlider_DisconnectSlotSetRange(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQAbstractSlider*)(ptr)), &MyQAbstractSlider::Slot_SetRange, ((QAbstractSlider*)(ptr)), &QAbstractSlider::setRange); -} - -void QAbstractSlider_SetRange_Int_Int(QtObjectPtr ptr, int min, int max) -{ - ((MyQAbstractSlider*)(ptr))->Slot_SetRange(min, max); -} - -void QAbstractSlider_ConnectSlotSetValue(QtObjectPtr ptr) -{ - QObject::connect(((MyQAbstractSlider*)(ptr)), &MyQAbstractSlider::Slot_SetValue, ((QAbstractSlider*)(ptr)), &QAbstractSlider::setValue, Qt::QueuedConnection); -} - -void QAbstractSlider_DisconnectSlotSetValue(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQAbstractSlider*)(ptr)), &MyQAbstractSlider::Slot_SetValue, ((QAbstractSlider*)(ptr)), &QAbstractSlider::setValue); -} - -void QAbstractSlider_SetValue_Int(QtObjectPtr ptr, int value) -{ - ((MyQAbstractSlider*)(ptr))->Slot_SetValue(value); -} - -//Signals -void QAbstractSlider_ConnectSignalActionTriggered(QtObjectPtr ptr) -{ - QObject::connect(((QAbstractSlider*)(ptr)), &QAbstractSlider::actionTriggered, ((MyQAbstractSlider*)(ptr)), &MyQAbstractSlider::Signal_ActionTriggered, Qt::QueuedConnection); -} - -void QAbstractSlider_DisconnectSignalActionTriggered(QtObjectPtr ptr) -{ - QObject::disconnect(((QAbstractSlider*)(ptr)), &QAbstractSlider::actionTriggered, ((MyQAbstractSlider*)(ptr)), &MyQAbstractSlider::Signal_ActionTriggered); -} - -void QAbstractSlider_ConnectSignalRangeChanged(QtObjectPtr ptr) -{ - QObject::connect(((QAbstractSlider*)(ptr)), &QAbstractSlider::rangeChanged, ((MyQAbstractSlider*)(ptr)), &MyQAbstractSlider::Signal_RangeChanged, Qt::QueuedConnection); -} - -void QAbstractSlider_DisconnectSignalRangeChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QAbstractSlider*)(ptr)), &QAbstractSlider::rangeChanged, ((MyQAbstractSlider*)(ptr)), &MyQAbstractSlider::Signal_RangeChanged); -} - -void QAbstractSlider_ConnectSignalSliderMoved(QtObjectPtr ptr) -{ - QObject::connect(((QAbstractSlider*)(ptr)), &QAbstractSlider::sliderMoved, ((MyQAbstractSlider*)(ptr)), &MyQAbstractSlider::Signal_SliderMoved, Qt::QueuedConnection); -} - -void QAbstractSlider_DisconnectSignalSliderMoved(QtObjectPtr ptr) -{ - QObject::disconnect(((QAbstractSlider*)(ptr)), &QAbstractSlider::sliderMoved, ((MyQAbstractSlider*)(ptr)), &MyQAbstractSlider::Signal_SliderMoved); -} - -void QAbstractSlider_ConnectSignalSliderPressed(QtObjectPtr ptr) -{ - QObject::connect(((QAbstractSlider*)(ptr)), &QAbstractSlider::sliderPressed, ((MyQAbstractSlider*)(ptr)), &MyQAbstractSlider::Signal_SliderPressed, Qt::QueuedConnection); -} - -void QAbstractSlider_DisconnectSignalSliderPressed(QtObjectPtr ptr) -{ - QObject::disconnect(((QAbstractSlider*)(ptr)), &QAbstractSlider::sliderPressed, ((MyQAbstractSlider*)(ptr)), &MyQAbstractSlider::Signal_SliderPressed); -} - -void QAbstractSlider_ConnectSignalSliderReleased(QtObjectPtr ptr) -{ - QObject::connect(((QAbstractSlider*)(ptr)), &QAbstractSlider::sliderReleased, ((MyQAbstractSlider*)(ptr)), &MyQAbstractSlider::Signal_SliderReleased, Qt::QueuedConnection); -} - -void QAbstractSlider_DisconnectSignalSliderReleased(QtObjectPtr ptr) -{ - QObject::disconnect(((QAbstractSlider*)(ptr)), &QAbstractSlider::sliderReleased, ((MyQAbstractSlider*)(ptr)), &MyQAbstractSlider::Signal_SliderReleased); -} - -void QAbstractSlider_ConnectSignalValueChanged(QtObjectPtr ptr) -{ - QObject::connect(((QAbstractSlider*)(ptr)), &QAbstractSlider::valueChanged, ((MyQAbstractSlider*)(ptr)), &MyQAbstractSlider::Signal_ValueChanged, Qt::QueuedConnection); -} - -void QAbstractSlider_DisconnectSignalValueChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QAbstractSlider*)(ptr)), &QAbstractSlider::valueChanged, ((MyQAbstractSlider*)(ptr)), &MyQAbstractSlider::Signal_ValueChanged); -} - diff --git a/qabstractslider.go b/qabstractslider.go deleted file mode 100644 index 85cb03e9..00000000 --- a/qabstractslider.go +++ /dev/null @@ -1,350 +0,0 @@ -package qt - -//#include "qabstractslider.h" -import "C" - -type qabstractslider struct { - qwidget -} - -type QAbstractSlider interface { - QWidget - HasTracking() bool - InvertedAppearance() bool - InvertedControls() bool - IsSliderDown() bool - Maximum() int - Minimum() int - Orientation() Orientation - PageStep() int - SetInvertedAppearance(invertedAppearance bool) - SetInvertedControls(invertedControls bool) - SetMaximum(maximum int) - SetMinimum(minimum int) - SetPageStep(pageStep int) - SetSingleStep(singleStep int) - SetSliderDown(sliderDown bool) - SetSliderPosition(sliderPosition int) - SetTracking(enable bool) - SingleStep() int - SliderPosition() int - Value() int - ConnectSlotSetOrientation() - DisconnectSlotSetOrientation() - SlotSetOrientation(orientation Orientation) - ConnectSlotSetRange() - DisconnectSlotSetRange() - SlotSetRange(min int, max int) - ConnectSlotSetValue() - DisconnectSlotSetValue() - SlotSetValue(value int) - ConnectSignalActionTriggered(f func()) - DisconnectSignalActionTriggered() - SignalActionTriggered() func() - ConnectSignalRangeChanged(f func()) - DisconnectSignalRangeChanged() - SignalRangeChanged() func() - ConnectSignalSliderMoved(f func()) - DisconnectSignalSliderMoved() - SignalSliderMoved() func() - ConnectSignalSliderPressed(f func()) - DisconnectSignalSliderPressed() - SignalSliderPressed() func() - ConnectSignalSliderReleased(f func()) - DisconnectSignalSliderReleased() - SignalSliderReleased() func() - ConnectSignalValueChanged(f func()) - DisconnectSignalValueChanged() - SignalValueChanged() func() -} - -func (p *qabstractslider) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qabstractslider) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQAbstractSlider(parent QWidget) QAbstractSlider { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qabstractslider = new(qabstractslider) - qabstractslider.SetPointer(C.QAbstractSlider_New_QWidget(parentPtr)) - qabstractslider.SetObjectName("QAbstractSlider_" + randomIdentifier()) - return qabstractslider -} - -func (p *qabstractslider) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QAbstractSlider_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qabstractslider) HasTracking() bool { - if p.Pointer() == nil { - return false - } - return C.QAbstractSlider_HasTracking(p.Pointer()) != 0 -} - -func (p *qabstractslider) InvertedAppearance() bool { - if p.Pointer() == nil { - return false - } - return C.QAbstractSlider_InvertedAppearance(p.Pointer()) != 0 -} - -func (p *qabstractslider) InvertedControls() bool { - if p.Pointer() == nil { - return false - } - return C.QAbstractSlider_InvertedControls(p.Pointer()) != 0 -} - -func (p *qabstractslider) IsSliderDown() bool { - if p.Pointer() == nil { - return false - } - return C.QAbstractSlider_IsSliderDown(p.Pointer()) != 0 -} - -func (p *qabstractslider) Maximum() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QAbstractSlider_Maximum(p.Pointer())) -} - -func (p *qabstractslider) Minimum() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QAbstractSlider_Minimum(p.Pointer())) -} - -func (p *qabstractslider) Orientation() Orientation { - if p.Pointer() == nil { - return 0 - } - return Orientation(C.QAbstractSlider_Orientation(p.Pointer())) -} - -func (p *qabstractslider) PageStep() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QAbstractSlider_PageStep(p.Pointer())) -} - -func (p *qabstractslider) SetInvertedAppearance(invertedAppearance bool) { - if p.Pointer() != nil { - C.QAbstractSlider_SetInvertedAppearance_Bool(p.Pointer(), goBoolToCInt(invertedAppearance)) - } -} - -func (p *qabstractslider) SetInvertedControls(invertedControls bool) { - if p.Pointer() != nil { - C.QAbstractSlider_SetInvertedControls_Bool(p.Pointer(), goBoolToCInt(invertedControls)) - } -} - -func (p *qabstractslider) SetMaximum(maximum int) { - if p.Pointer() != nil { - C.QAbstractSlider_SetMaximum_Int(p.Pointer(), C.int(maximum)) - } -} - -func (p *qabstractslider) SetMinimum(minimum int) { - if p.Pointer() != nil { - C.QAbstractSlider_SetMinimum_Int(p.Pointer(), C.int(minimum)) - } -} - -func (p *qabstractslider) SetPageStep(pageStep int) { - if p.Pointer() != nil { - C.QAbstractSlider_SetPageStep_Int(p.Pointer(), C.int(pageStep)) - } -} - -func (p *qabstractslider) SetSingleStep(singleStep int) { - if p.Pointer() != nil { - C.QAbstractSlider_SetSingleStep_Int(p.Pointer(), C.int(singleStep)) - } -} - -func (p *qabstractslider) SetSliderDown(sliderDown bool) { - if p.Pointer() != nil { - C.QAbstractSlider_SetSliderDown_Bool(p.Pointer(), goBoolToCInt(sliderDown)) - } -} - -func (p *qabstractslider) SetSliderPosition(sliderPosition int) { - if p.Pointer() != nil { - C.QAbstractSlider_SetSliderPosition_Int(p.Pointer(), C.int(sliderPosition)) - } -} - -func (p *qabstractslider) SetTracking(enable bool) { - if p.Pointer() != nil { - C.QAbstractSlider_SetTracking_Bool(p.Pointer(), goBoolToCInt(enable)) - } -} - -func (p *qabstractslider) SingleStep() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QAbstractSlider_SingleStep(p.Pointer())) -} - -func (p *qabstractslider) SliderPosition() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QAbstractSlider_SliderPosition(p.Pointer())) -} - -func (p *qabstractslider) Value() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QAbstractSlider_Value(p.Pointer())) -} - -func (p *qabstractslider) ConnectSlotSetOrientation() { - C.QAbstractSlider_ConnectSlotSetOrientation(p.Pointer()) -} - -func (p *qabstractslider) DisconnectSlotSetOrientation() { - C.QAbstractSlider_DisconnectSlotSetOrientation(p.Pointer()) -} - -func (p *qabstractslider) SlotSetOrientation(orientation Orientation) { - if p.Pointer() != nil { - C.QAbstractSlider_SetOrientation_Orientation(p.Pointer(), C.int(orientation)) - } -} - -func (p *qabstractslider) ConnectSlotSetRange() { - C.QAbstractSlider_ConnectSlotSetRange(p.Pointer()) -} - -func (p *qabstractslider) DisconnectSlotSetRange() { - C.QAbstractSlider_DisconnectSlotSetRange(p.Pointer()) -} - -func (p *qabstractslider) SlotSetRange(min int, max int) { - if p.Pointer() != nil { - C.QAbstractSlider_SetRange_Int_Int(p.Pointer(), C.int(min), C.int(max)) - } -} - -func (p *qabstractslider) ConnectSlotSetValue() { - C.QAbstractSlider_ConnectSlotSetValue(p.Pointer()) -} - -func (p *qabstractslider) DisconnectSlotSetValue() { - C.QAbstractSlider_DisconnectSlotSetValue(p.Pointer()) -} - -func (p *qabstractslider) SlotSetValue(value int) { - if p.Pointer() != nil { - C.QAbstractSlider_SetValue_Int(p.Pointer(), C.int(value)) - } -} - -func (p *qabstractslider) ConnectSignalActionTriggered(f func()) { - C.QAbstractSlider_ConnectSignalActionTriggered(p.Pointer()) - connectSignal(p.ObjectName(), "actionTriggered", f) -} - -func (p *qabstractslider) DisconnectSignalActionTriggered() { - C.QAbstractSlider_DisconnectSignalActionTriggered(p.Pointer()) - disconnectSignal(p.ObjectName(), "actionTriggered") -} - -func (p *qabstractslider) SignalActionTriggered() func() { - return getSignal(p.ObjectName(), "actionTriggered") -} - -func (p *qabstractslider) ConnectSignalRangeChanged(f func()) { - C.QAbstractSlider_ConnectSignalRangeChanged(p.Pointer()) - connectSignal(p.ObjectName(), "rangeChanged", f) -} - -func (p *qabstractslider) DisconnectSignalRangeChanged() { - C.QAbstractSlider_DisconnectSignalRangeChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "rangeChanged") -} - -func (p *qabstractslider) SignalRangeChanged() func() { - return getSignal(p.ObjectName(), "rangeChanged") -} - -func (p *qabstractslider) ConnectSignalSliderMoved(f func()) { - C.QAbstractSlider_ConnectSignalSliderMoved(p.Pointer()) - connectSignal(p.ObjectName(), "sliderMoved", f) -} - -func (p *qabstractslider) DisconnectSignalSliderMoved() { - C.QAbstractSlider_DisconnectSignalSliderMoved(p.Pointer()) - disconnectSignal(p.ObjectName(), "sliderMoved") -} - -func (p *qabstractslider) SignalSliderMoved() func() { - return getSignal(p.ObjectName(), "sliderMoved") -} - -func (p *qabstractslider) ConnectSignalSliderPressed(f func()) { - C.QAbstractSlider_ConnectSignalSliderPressed(p.Pointer()) - connectSignal(p.ObjectName(), "sliderPressed", f) -} - -func (p *qabstractslider) DisconnectSignalSliderPressed() { - C.QAbstractSlider_DisconnectSignalSliderPressed(p.Pointer()) - disconnectSignal(p.ObjectName(), "sliderPressed") -} - -func (p *qabstractslider) SignalSliderPressed() func() { - return getSignal(p.ObjectName(), "sliderPressed") -} - -func (p *qabstractslider) ConnectSignalSliderReleased(f func()) { - C.QAbstractSlider_ConnectSignalSliderReleased(p.Pointer()) - connectSignal(p.ObjectName(), "sliderReleased", f) -} - -func (p *qabstractslider) DisconnectSignalSliderReleased() { - C.QAbstractSlider_DisconnectSignalSliderReleased(p.Pointer()) - disconnectSignal(p.ObjectName(), "sliderReleased") -} - -func (p *qabstractslider) SignalSliderReleased() func() { - return getSignal(p.ObjectName(), "sliderReleased") -} - -func (p *qabstractslider) ConnectSignalValueChanged(f func()) { - C.QAbstractSlider_ConnectSignalValueChanged(p.Pointer()) - connectSignal(p.ObjectName(), "valueChanged", f) -} - -func (p *qabstractslider) DisconnectSignalValueChanged() { - C.QAbstractSlider_DisconnectSignalValueChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "valueChanged") -} - -func (p *qabstractslider) SignalValueChanged() func() { - return getSignal(p.ObjectName(), "valueChanged") -} - -//export callbackQAbstractSlider -func callbackQAbstractSlider(ptr C.QtObjectPtr, msg *C.char) { - var qabstractslider = new(qabstractslider) - qabstractslider.SetPointer(ptr) - getSignal(qabstractslider.ObjectName(), C.GoString(msg))() -} diff --git a/qabstractslider.h b/qabstractslider.h deleted file mode 100644 index 8df2723d..00000000 --- a/qabstractslider.h +++ /dev/null @@ -1,56 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QAbstractSlider_New_QWidget(QtObjectPtr parent); -void QAbstractSlider_Destroy(QtObjectPtr ptr); -int QAbstractSlider_HasTracking(QtObjectPtr ptr); -int QAbstractSlider_InvertedAppearance(QtObjectPtr ptr); -int QAbstractSlider_InvertedControls(QtObjectPtr ptr); -int QAbstractSlider_IsSliderDown(QtObjectPtr ptr); -int QAbstractSlider_Maximum(QtObjectPtr ptr); -int QAbstractSlider_Minimum(QtObjectPtr ptr); -int QAbstractSlider_Orientation(QtObjectPtr ptr); -int QAbstractSlider_PageStep(QtObjectPtr ptr); -void QAbstractSlider_SetInvertedAppearance_Bool(QtObjectPtr ptr, int invertedAppearance); -void QAbstractSlider_SetInvertedControls_Bool(QtObjectPtr ptr, int invertedControls); -void QAbstractSlider_SetMaximum_Int(QtObjectPtr ptr, int maximum); -void QAbstractSlider_SetMinimum_Int(QtObjectPtr ptr, int minimum); -void QAbstractSlider_SetPageStep_Int(QtObjectPtr ptr, int pageStep); -void QAbstractSlider_SetSingleStep_Int(QtObjectPtr ptr, int singleStep); -void QAbstractSlider_SetSliderDown_Bool(QtObjectPtr ptr, int sliderDown); -void QAbstractSlider_SetSliderPosition_Int(QtObjectPtr ptr, int sliderPosition); -void QAbstractSlider_SetTracking_Bool(QtObjectPtr ptr, int enable); -int QAbstractSlider_SingleStep(QtObjectPtr ptr); -int QAbstractSlider_SliderPosition(QtObjectPtr ptr); -int QAbstractSlider_Value(QtObjectPtr ptr); -//Public Slots -void QAbstractSlider_ConnectSlotSetOrientation(QtObjectPtr ptr); -void QAbstractSlider_DisconnectSlotSetOrientation(QtObjectPtr ptr); -void QAbstractSlider_SetOrientation_Orientation(QtObjectPtr ptr, int orientation); -void QAbstractSlider_ConnectSlotSetRange(QtObjectPtr ptr); -void QAbstractSlider_DisconnectSlotSetRange(QtObjectPtr ptr); -void QAbstractSlider_SetRange_Int_Int(QtObjectPtr ptr, int min, int max); -void QAbstractSlider_ConnectSlotSetValue(QtObjectPtr ptr); -void QAbstractSlider_DisconnectSlotSetValue(QtObjectPtr ptr); -void QAbstractSlider_SetValue_Int(QtObjectPtr ptr, int value); -//Signals -void QAbstractSlider_ConnectSignalActionTriggered(QtObjectPtr ptr); -void QAbstractSlider_DisconnectSignalActionTriggered(QtObjectPtr ptr); -void QAbstractSlider_ConnectSignalRangeChanged(QtObjectPtr ptr); -void QAbstractSlider_DisconnectSignalRangeChanged(QtObjectPtr ptr); -void QAbstractSlider_ConnectSignalSliderMoved(QtObjectPtr ptr); -void QAbstractSlider_DisconnectSignalSliderMoved(QtObjectPtr ptr); -void QAbstractSlider_ConnectSignalSliderPressed(QtObjectPtr ptr); -void QAbstractSlider_DisconnectSignalSliderPressed(QtObjectPtr ptr); -void QAbstractSlider_ConnectSignalSliderReleased(QtObjectPtr ptr); -void QAbstractSlider_DisconnectSignalSliderReleased(QtObjectPtr ptr); -void QAbstractSlider_ConnectSignalValueChanged(QtObjectPtr ptr); -void QAbstractSlider_DisconnectSignalValueChanged(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qabstractslider.moc b/qabstractslider.moc deleted file mode 100644 index b4b4b806..00000000 --- a/qabstractslider.moc +++ /dev/null @@ -1,165 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qabstractslider.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qabstractslider.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQAbstractSlider_t { - QByteArrayData data[10]; - char stringdata[109]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQAbstractSlider_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQAbstractSlider_t qt_meta_stringdata_MyQAbstractSlider = { - { -QT_MOC_LITERAL(0, 0, 17), // "MyQAbstractSlider" -QT_MOC_LITERAL(1, 18, 19), // "Slot_SetOrientation" -QT_MOC_LITERAL(2, 38, 0), // "" -QT_MOC_LITERAL(3, 39, 15), // "Qt::Orientation" -QT_MOC_LITERAL(4, 55, 11), // "orientation" -QT_MOC_LITERAL(5, 67, 13), // "Slot_SetRange" -QT_MOC_LITERAL(6, 81, 3), // "min" -QT_MOC_LITERAL(7, 85, 3), // "max" -QT_MOC_LITERAL(8, 89, 13), // "Slot_SetValue" -QT_MOC_LITERAL(9, 103, 5) // "value" - - }, - "MyQAbstractSlider\0Slot_SetOrientation\0" - "\0Qt::Orientation\0orientation\0Slot_SetRange\0" - "min\0max\0Slot_SetValue\0value" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQAbstractSlider[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 3, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 3, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 29, 2, 0x06 /* Public */, - 5, 2, 32, 2, 0x06 /* Public */, - 8, 1, 37, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, 4, - QMetaType::Void, QMetaType::Int, QMetaType::Int, 6, 7, - QMetaType::Void, QMetaType::Int, 9, - - 0 // eod -}; - -void MyQAbstractSlider::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQAbstractSlider *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_SetOrientation((*reinterpret_cast< Qt::Orientation(*)>(_a[1]))); break; - case 1: _t->Slot_SetRange((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 2: _t->Slot_SetValue((*reinterpret_cast< int(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQAbstractSlider::*_t)(Qt::Orientation ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQAbstractSlider::Slot_SetOrientation)) { - *result = 0; - } - } - { - typedef void (MyQAbstractSlider::*_t)(int , int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQAbstractSlider::Slot_SetRange)) { - *result = 1; - } - } - { - typedef void (MyQAbstractSlider::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQAbstractSlider::Slot_SetValue)) { - *result = 2; - } - } - } -} - -const QMetaObject MyQAbstractSlider::staticMetaObject = { - { &QAbstractSlider::staticMetaObject, qt_meta_stringdata_MyQAbstractSlider.data, - qt_meta_data_MyQAbstractSlider, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQAbstractSlider::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQAbstractSlider::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQAbstractSlider.stringdata)) - return static_cast(const_cast< MyQAbstractSlider*>(this)); - return QAbstractSlider::qt_metacast(_clname); -} - -int MyQAbstractSlider::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QAbstractSlider::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 3) - qt_static_metacall(this, _c, _id, _a); - _id -= 3; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 3) - *reinterpret_cast(_a[0]) = -1; - _id -= 3; - } - return _id; -} - -// SIGNAL 0 -void MyQAbstractSlider::Slot_SetOrientation(Qt::Orientation _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void MyQAbstractSlider::Slot_SetRange(int _t1, int _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} - -// SIGNAL 2 -void MyQAbstractSlider::Slot_SetValue(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 2, _a); -} -QT_END_MOC_NAMESPACE diff --git a/qabstractspinbox.cpp b/qabstractspinbox.cpp deleted file mode 100644 index d0deae92..00000000 --- a/qabstractspinbox.cpp +++ /dev/null @@ -1,222 +0,0 @@ -#include "qabstractspinbox.h" -#include -#include "cgoexport.h" - -//MyQAbstractSpinBox -class MyQAbstractSpinBox: public QAbstractSpinBox { -Q_OBJECT -public: -void Signal_EditingFinished() { callbackQAbstractSpinBox(this, QString("editingFinished").toUtf8().data()); }; - -signals: -void Slot_Clear(); -void Slot_SelectAll(); -void Slot_StepDown(); -void Slot_StepUp(); - -}; -#include "qabstractspinbox.moc" - -//Public Types -int QAbstractSpinBox_UpDownArrows() { return QAbstractSpinBox::UpDownArrows; } -int QAbstractSpinBox_PlusMinus() { return QAbstractSpinBox::PlusMinus; } -int QAbstractSpinBox_NoButtons() { return QAbstractSpinBox::NoButtons; } -int QAbstractSpinBox_CorrectToPreviousValue() { return QAbstractSpinBox::CorrectToPreviousValue; } -int QAbstractSpinBox_CorrectToNearestValue() { return QAbstractSpinBox::CorrectToNearestValue; } -int QAbstractSpinBox_StepNone() { return QAbstractSpinBox::StepNone; } -int QAbstractSpinBox_StepUpEnabled() { return QAbstractSpinBox::StepUpEnabled; } -int QAbstractSpinBox_StepDownEnabled() { return QAbstractSpinBox::StepDownEnabled; } - -//Public Functions -QtObjectPtr QAbstractSpinBox_New_QWidget(QtObjectPtr parent) -{ - return new QAbstractSpinBox(((QWidget*)(parent))); -} - -void QAbstractSpinBox_Destroy(QtObjectPtr ptr) -{ - ((QAbstractSpinBox*)(ptr))->~QAbstractSpinBox(); -} - -int QAbstractSpinBox_Alignment(QtObjectPtr ptr) -{ - return ((QAbstractSpinBox*)(ptr))->alignment(); -} - -int QAbstractSpinBox_ButtonSymbols(QtObjectPtr ptr) -{ - return ((QAbstractSpinBox*)(ptr))->buttonSymbols(); -} - -int QAbstractSpinBox_HasAcceptableInput(QtObjectPtr ptr) -{ - return ((QAbstractSpinBox*)(ptr))->hasAcceptableInput(); -} - -int QAbstractSpinBox_HasFrame(QtObjectPtr ptr) -{ - return ((QAbstractSpinBox*)(ptr))->hasFrame(); -} - -void QAbstractSpinBox_InterpretText(QtObjectPtr ptr) -{ - ((QAbstractSpinBox*)(ptr))->interpretText(); -} - -int QAbstractSpinBox_IsAccelerated(QtObjectPtr ptr) -{ - return ((QAbstractSpinBox*)(ptr))->isAccelerated(); -} - -int QAbstractSpinBox_IsGroupSeparatorShown(QtObjectPtr ptr) -{ - return ((QAbstractSpinBox*)(ptr))->isGroupSeparatorShown(); -} - -int QAbstractSpinBox_IsReadOnly(QtObjectPtr ptr) -{ - return ((QAbstractSpinBox*)(ptr))->isReadOnly(); -} - -int QAbstractSpinBox_KeyboardTracking(QtObjectPtr ptr) -{ - return ((QAbstractSpinBox*)(ptr))->keyboardTracking(); -} - -void QAbstractSpinBox_SetAccelerated_Bool(QtObjectPtr ptr, int on) -{ - ((QAbstractSpinBox*)(ptr))->setAccelerated(on != 0); -} - -void QAbstractSpinBox_SetAlignment_AlignmentFlag(QtObjectPtr ptr, int flag) -{ - ((QAbstractSpinBox*)(ptr))->setAlignment(((Qt::AlignmentFlag)(flag))); -} - -void QAbstractSpinBox_SetButtonSymbols_ButtonSymbols(QtObjectPtr ptr, int bs) -{ - ((QAbstractSpinBox*)(ptr))->setButtonSymbols(((QAbstractSpinBox::ButtonSymbols)(bs))); -} - -void QAbstractSpinBox_SetFrame_Bool(QtObjectPtr ptr, int frame) -{ - ((QAbstractSpinBox*)(ptr))->setFrame(frame != 0); -} - -void QAbstractSpinBox_SetGroupSeparatorShown_Bool(QtObjectPtr ptr, int shown) -{ - ((QAbstractSpinBox*)(ptr))->setGroupSeparatorShown(shown != 0); -} - -void QAbstractSpinBox_SetKeyboardTracking_Bool(QtObjectPtr ptr, int kt) -{ - ((QAbstractSpinBox*)(ptr))->setKeyboardTracking(kt != 0); -} - -void QAbstractSpinBox_SetReadOnly_Bool(QtObjectPtr ptr, int r) -{ - ((QAbstractSpinBox*)(ptr))->setReadOnly(r != 0); -} - -void QAbstractSpinBox_SetSpecialValueText_String(QtObjectPtr ptr, char* txt) -{ - ((QAbstractSpinBox*)(ptr))->setSpecialValueText(QString(txt)); -} - -void QAbstractSpinBox_SetWrapping_Bool(QtObjectPtr ptr, int w) -{ - ((QAbstractSpinBox*)(ptr))->setWrapping(w != 0); -} - -char* QAbstractSpinBox_SpecialValueText(QtObjectPtr ptr) -{ - return ((QAbstractSpinBox*)(ptr))->specialValueText().toUtf8().data(); -} - -void QAbstractSpinBox_StepBy_Int(QtObjectPtr ptr, int steps) -{ - ((QAbstractSpinBox*)(ptr))->stepBy(steps); -} - -char* QAbstractSpinBox_Text(QtObjectPtr ptr) -{ - return ((QAbstractSpinBox*)(ptr))->text().toUtf8().data(); -} - -int QAbstractSpinBox_Wrapping(QtObjectPtr ptr) -{ - return ((QAbstractSpinBox*)(ptr))->wrapping(); -} - -//Public Slots -void QAbstractSpinBox_ConnectSlotClear(QtObjectPtr ptr) -{ - QObject::connect(((MyQAbstractSpinBox*)(ptr)), &MyQAbstractSpinBox::Slot_Clear, ((QAbstractSpinBox*)(ptr)), &QAbstractSpinBox::clear, Qt::QueuedConnection); -} - -void QAbstractSpinBox_DisconnectSlotClear(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQAbstractSpinBox*)(ptr)), &MyQAbstractSpinBox::Slot_Clear, ((QAbstractSpinBox*)(ptr)), &QAbstractSpinBox::clear); -} - -void QAbstractSpinBox_Clear(QtObjectPtr ptr) -{ - ((MyQAbstractSpinBox*)(ptr))->Slot_Clear(); -} - -void QAbstractSpinBox_ConnectSlotSelectAll(QtObjectPtr ptr) -{ - QObject::connect(((MyQAbstractSpinBox*)(ptr)), &MyQAbstractSpinBox::Slot_SelectAll, ((QAbstractSpinBox*)(ptr)), &QAbstractSpinBox::selectAll, Qt::QueuedConnection); -} - -void QAbstractSpinBox_DisconnectSlotSelectAll(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQAbstractSpinBox*)(ptr)), &MyQAbstractSpinBox::Slot_SelectAll, ((QAbstractSpinBox*)(ptr)), &QAbstractSpinBox::selectAll); -} - -void QAbstractSpinBox_SelectAll(QtObjectPtr ptr) -{ - ((MyQAbstractSpinBox*)(ptr))->Slot_SelectAll(); -} - -void QAbstractSpinBox_ConnectSlotStepDown(QtObjectPtr ptr) -{ - QObject::connect(((MyQAbstractSpinBox*)(ptr)), &MyQAbstractSpinBox::Slot_StepDown, ((QAbstractSpinBox*)(ptr)), &QAbstractSpinBox::stepDown, Qt::QueuedConnection); -} - -void QAbstractSpinBox_DisconnectSlotStepDown(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQAbstractSpinBox*)(ptr)), &MyQAbstractSpinBox::Slot_StepDown, ((QAbstractSpinBox*)(ptr)), &QAbstractSpinBox::stepDown); -} - -void QAbstractSpinBox_StepDown(QtObjectPtr ptr) -{ - ((MyQAbstractSpinBox*)(ptr))->Slot_StepDown(); -} - -void QAbstractSpinBox_ConnectSlotStepUp(QtObjectPtr ptr) -{ - QObject::connect(((MyQAbstractSpinBox*)(ptr)), &MyQAbstractSpinBox::Slot_StepUp, ((QAbstractSpinBox*)(ptr)), &QAbstractSpinBox::stepUp, Qt::QueuedConnection); -} - -void QAbstractSpinBox_DisconnectSlotStepUp(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQAbstractSpinBox*)(ptr)), &MyQAbstractSpinBox::Slot_StepUp, ((QAbstractSpinBox*)(ptr)), &QAbstractSpinBox::stepUp); -} - -void QAbstractSpinBox_StepUp(QtObjectPtr ptr) -{ - ((MyQAbstractSpinBox*)(ptr))->Slot_StepUp(); -} - -//Signals -void QAbstractSpinBox_ConnectSignalEditingFinished(QtObjectPtr ptr) -{ - QObject::connect(((QAbstractSpinBox*)(ptr)), &QAbstractSpinBox::editingFinished, ((MyQAbstractSpinBox*)(ptr)), &MyQAbstractSpinBox::Signal_EditingFinished, Qt::QueuedConnection); -} - -void QAbstractSpinBox_DisconnectSignalEditingFinished(QtObjectPtr ptr) -{ - QObject::disconnect(((QAbstractSpinBox*)(ptr)), &QAbstractSpinBox::editingFinished, ((MyQAbstractSpinBox*)(ptr)), &MyQAbstractSpinBox::Signal_EditingFinished); -} - diff --git a/qabstractspinbox.go b/qabstractspinbox.go deleted file mode 100644 index 670138f3..00000000 --- a/qabstractspinbox.go +++ /dev/null @@ -1,322 +0,0 @@ -package qt - -//#include "qabstractspinbox.h" -import "C" - -type qabstractspinbox struct { - qwidget -} - -type QAbstractSpinBox interface { - QWidget - Alignment() AlignmentFlag - ButtonSymbols() ButtonSymbols - HasAcceptableInput() bool - HasFrame() bool - InterpretText() - IsAccelerated() bool - IsGroupSeparatorShown() bool - IsReadOnly() bool - KeyboardTracking() bool - SetAccelerated(on bool) - SetAlignment(flag AlignmentFlag) - SetButtonSymbols(bs ButtonSymbols) - SetFrame(frame bool) - SetGroupSeparatorShown(shown bool) - SetKeyboardTracking(kt bool) - SetReadOnly(r bool) - SetSpecialValueText(txt string) - SetWrapping(w bool) - SpecialValueText() string - StepBy(steps int) - Text() string - Wrapping() bool - ConnectSlotClear() - DisconnectSlotClear() - SlotClear() - ConnectSlotSelectAll() - DisconnectSlotSelectAll() - SlotSelectAll() - ConnectSlotStepDown() - DisconnectSlotStepDown() - SlotStepDown() - ConnectSlotStepUp() - DisconnectSlotStepUp() - SlotStepUp() - ConnectSignalEditingFinished(f func()) - DisconnectSignalEditingFinished() - SignalEditingFinished() func() -} - -func (p *qabstractspinbox) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qabstractspinbox) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -//ButtonSymbols -type ButtonSymbols int - -var ( - UPDOWNARROWS = ButtonSymbols(C.QAbstractSpinBox_UpDownArrows()) - PLUSMINUS = ButtonSymbols(C.QAbstractSpinBox_PlusMinus()) - NOBUTTONS = ButtonSymbols(C.QAbstractSpinBox_NoButtons()) -) - -//CorrectionMode -type CorrectionMode int - -var ( - CORRECTTOPREVIOUSVALUE = CorrectionMode(C.QAbstractSpinBox_CorrectToPreviousValue()) - CORRECTTONEARESTVALUE = CorrectionMode(C.QAbstractSpinBox_CorrectToNearestValue()) -) - -//StepEnabledFlag -type StepEnabledFlag int - -var ( - STEPNONE = StepEnabledFlag(C.QAbstractSpinBox_StepNone()) - STEPUPENABLED = StepEnabledFlag(C.QAbstractSpinBox_StepUpEnabled()) - STEPDOWNENABLED = StepEnabledFlag(C.QAbstractSpinBox_StepDownEnabled()) -) - -func NewQAbstractSpinBox(parent QWidget) QAbstractSpinBox { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qabstractspinbox = new(qabstractspinbox) - qabstractspinbox.SetPointer(C.QAbstractSpinBox_New_QWidget(parentPtr)) - qabstractspinbox.SetObjectName("QAbstractSpinBox_" + randomIdentifier()) - return qabstractspinbox -} - -func (p *qabstractspinbox) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QAbstractSpinBox_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qabstractspinbox) Alignment() AlignmentFlag { - if p.Pointer() == nil { - return 0 - } - return AlignmentFlag(C.QAbstractSpinBox_Alignment(p.Pointer())) -} - -func (p *qabstractspinbox) ButtonSymbols() ButtonSymbols { - if p.Pointer() == nil { - return 0 - } - return ButtonSymbols(C.QAbstractSpinBox_ButtonSymbols(p.Pointer())) -} - -func (p *qabstractspinbox) HasAcceptableInput() bool { - if p.Pointer() == nil { - return false - } - return C.QAbstractSpinBox_HasAcceptableInput(p.Pointer()) != 0 -} - -func (p *qabstractspinbox) HasFrame() bool { - if p.Pointer() == nil { - return false - } - return C.QAbstractSpinBox_HasFrame(p.Pointer()) != 0 -} - -func (p *qabstractspinbox) InterpretText() { - if p.Pointer() != nil { - C.QAbstractSpinBox_InterpretText(p.Pointer()) - } -} - -func (p *qabstractspinbox) IsAccelerated() bool { - if p.Pointer() == nil { - return false - } - return C.QAbstractSpinBox_IsAccelerated(p.Pointer()) != 0 -} - -func (p *qabstractspinbox) IsGroupSeparatorShown() bool { - if p.Pointer() == nil { - return false - } - return C.QAbstractSpinBox_IsGroupSeparatorShown(p.Pointer()) != 0 -} - -func (p *qabstractspinbox) IsReadOnly() bool { - if p.Pointer() == nil { - return false - } - return C.QAbstractSpinBox_IsReadOnly(p.Pointer()) != 0 -} - -func (p *qabstractspinbox) KeyboardTracking() bool { - if p.Pointer() == nil { - return false - } - return C.QAbstractSpinBox_KeyboardTracking(p.Pointer()) != 0 -} - -func (p *qabstractspinbox) SetAccelerated(on bool) { - if p.Pointer() != nil { - C.QAbstractSpinBox_SetAccelerated_Bool(p.Pointer(), goBoolToCInt(on)) - } -} - -func (p *qabstractspinbox) SetAlignment(flag AlignmentFlag) { - if p.Pointer() != nil { - C.QAbstractSpinBox_SetAlignment_AlignmentFlag(p.Pointer(), C.int(flag)) - } -} - -func (p *qabstractspinbox) SetButtonSymbols(bs ButtonSymbols) { - if p.Pointer() != nil { - C.QAbstractSpinBox_SetButtonSymbols_ButtonSymbols(p.Pointer(), C.int(bs)) - } -} - -func (p *qabstractspinbox) SetFrame(frame bool) { - if p.Pointer() != nil { - C.QAbstractSpinBox_SetFrame_Bool(p.Pointer(), goBoolToCInt(frame)) - } -} - -func (p *qabstractspinbox) SetGroupSeparatorShown(shown bool) { - if p.Pointer() != nil { - C.QAbstractSpinBox_SetGroupSeparatorShown_Bool(p.Pointer(), goBoolToCInt(shown)) - } -} - -func (p *qabstractspinbox) SetKeyboardTracking(kt bool) { - if p.Pointer() != nil { - C.QAbstractSpinBox_SetKeyboardTracking_Bool(p.Pointer(), goBoolToCInt(kt)) - } -} - -func (p *qabstractspinbox) SetReadOnly(r bool) { - if p.Pointer() != nil { - C.QAbstractSpinBox_SetReadOnly_Bool(p.Pointer(), goBoolToCInt(r)) - } -} - -func (p *qabstractspinbox) SetSpecialValueText(txt string) { - if p.Pointer() != nil { - C.QAbstractSpinBox_SetSpecialValueText_String(p.Pointer(), C.CString(txt)) - } -} - -func (p *qabstractspinbox) SetWrapping(w bool) { - if p.Pointer() != nil { - C.QAbstractSpinBox_SetWrapping_Bool(p.Pointer(), goBoolToCInt(w)) - } -} - -func (p *qabstractspinbox) SpecialValueText() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QAbstractSpinBox_SpecialValueText(p.Pointer())) -} - -func (p *qabstractspinbox) StepBy(steps int) { - if p.Pointer() != nil { - C.QAbstractSpinBox_StepBy_Int(p.Pointer(), C.int(steps)) - } -} - -func (p *qabstractspinbox) Text() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QAbstractSpinBox_Text(p.Pointer())) -} - -func (p *qabstractspinbox) Wrapping() bool { - if p.Pointer() == nil { - return false - } - return C.QAbstractSpinBox_Wrapping(p.Pointer()) != 0 -} - -func (p *qabstractspinbox) ConnectSlotClear() { - C.QAbstractSpinBox_ConnectSlotClear(p.Pointer()) -} - -func (p *qabstractspinbox) DisconnectSlotClear() { - C.QAbstractSpinBox_DisconnectSlotClear(p.Pointer()) -} - -func (p *qabstractspinbox) SlotClear() { - if p.Pointer() != nil { - C.QAbstractSpinBox_Clear(p.Pointer()) - } -} - -func (p *qabstractspinbox) ConnectSlotSelectAll() { - C.QAbstractSpinBox_ConnectSlotSelectAll(p.Pointer()) -} - -func (p *qabstractspinbox) DisconnectSlotSelectAll() { - C.QAbstractSpinBox_DisconnectSlotSelectAll(p.Pointer()) -} - -func (p *qabstractspinbox) SlotSelectAll() { - if p.Pointer() != nil { - C.QAbstractSpinBox_SelectAll(p.Pointer()) - } -} - -func (p *qabstractspinbox) ConnectSlotStepDown() { - C.QAbstractSpinBox_ConnectSlotStepDown(p.Pointer()) -} - -func (p *qabstractspinbox) DisconnectSlotStepDown() { - C.QAbstractSpinBox_DisconnectSlotStepDown(p.Pointer()) -} - -func (p *qabstractspinbox) SlotStepDown() { - if p.Pointer() != nil { - C.QAbstractSpinBox_StepDown(p.Pointer()) - } -} - -func (p *qabstractspinbox) ConnectSlotStepUp() { - C.QAbstractSpinBox_ConnectSlotStepUp(p.Pointer()) -} - -func (p *qabstractspinbox) DisconnectSlotStepUp() { - C.QAbstractSpinBox_DisconnectSlotStepUp(p.Pointer()) -} - -func (p *qabstractspinbox) SlotStepUp() { - if p.Pointer() != nil { - C.QAbstractSpinBox_StepUp(p.Pointer()) - } -} - -func (p *qabstractspinbox) ConnectSignalEditingFinished(f func()) { - C.QAbstractSpinBox_ConnectSignalEditingFinished(p.Pointer()) - connectSignal(p.ObjectName(), "editingFinished", f) -} - -func (p *qabstractspinbox) DisconnectSignalEditingFinished() { - C.QAbstractSpinBox_DisconnectSignalEditingFinished(p.Pointer()) - disconnectSignal(p.ObjectName(), "editingFinished") -} - -func (p *qabstractspinbox) SignalEditingFinished() func() { - return getSignal(p.ObjectName(), "editingFinished") -} - -//export callbackQAbstractSpinBox -func callbackQAbstractSpinBox(ptr C.QtObjectPtr, msg *C.char) { - var qabstractspinbox = new(qabstractspinbox) - qabstractspinbox.SetPointer(ptr) - getSignal(qabstractspinbox.ObjectName(), C.GoString(msg))() -} diff --git a/qabstractspinbox.h b/qabstractspinbox.h deleted file mode 100644 index 762c6a4b..00000000 --- a/qabstractspinbox.h +++ /dev/null @@ -1,60 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Types -int QAbstractSpinBox_UpDownArrows(); -int QAbstractSpinBox_PlusMinus(); -int QAbstractSpinBox_NoButtons(); -int QAbstractSpinBox_CorrectToPreviousValue(); -int QAbstractSpinBox_CorrectToNearestValue(); -int QAbstractSpinBox_StepNone(); -int QAbstractSpinBox_StepUpEnabled(); -int QAbstractSpinBox_StepDownEnabled(); -//Public Functions -QtObjectPtr QAbstractSpinBox_New_QWidget(QtObjectPtr parent); -void QAbstractSpinBox_Destroy(QtObjectPtr ptr); -int QAbstractSpinBox_Alignment(QtObjectPtr ptr); -int QAbstractSpinBox_ButtonSymbols(QtObjectPtr ptr); -int QAbstractSpinBox_HasAcceptableInput(QtObjectPtr ptr); -int QAbstractSpinBox_HasFrame(QtObjectPtr ptr); -void QAbstractSpinBox_InterpretText(QtObjectPtr ptr); -int QAbstractSpinBox_IsAccelerated(QtObjectPtr ptr); -int QAbstractSpinBox_IsGroupSeparatorShown(QtObjectPtr ptr); -int QAbstractSpinBox_IsReadOnly(QtObjectPtr ptr); -int QAbstractSpinBox_KeyboardTracking(QtObjectPtr ptr); -void QAbstractSpinBox_SetAccelerated_Bool(QtObjectPtr ptr, int on); -void QAbstractSpinBox_SetAlignment_AlignmentFlag(QtObjectPtr ptr, int flag); -void QAbstractSpinBox_SetButtonSymbols_ButtonSymbols(QtObjectPtr ptr, int bs); -void QAbstractSpinBox_SetFrame_Bool(QtObjectPtr ptr, int frame); -void QAbstractSpinBox_SetGroupSeparatorShown_Bool(QtObjectPtr ptr, int shown); -void QAbstractSpinBox_SetKeyboardTracking_Bool(QtObjectPtr ptr, int kt); -void QAbstractSpinBox_SetReadOnly_Bool(QtObjectPtr ptr, int r); -void QAbstractSpinBox_SetSpecialValueText_String(QtObjectPtr ptr, char* txt); -void QAbstractSpinBox_SetWrapping_Bool(QtObjectPtr ptr, int w); -char* QAbstractSpinBox_SpecialValueText(QtObjectPtr ptr); -void QAbstractSpinBox_StepBy_Int(QtObjectPtr ptr, int steps); -char* QAbstractSpinBox_Text(QtObjectPtr ptr); -int QAbstractSpinBox_Wrapping(QtObjectPtr ptr); -//Public Slots -void QAbstractSpinBox_ConnectSlotClear(QtObjectPtr ptr); -void QAbstractSpinBox_DisconnectSlotClear(QtObjectPtr ptr); -void QAbstractSpinBox_Clear(QtObjectPtr ptr); -void QAbstractSpinBox_ConnectSlotSelectAll(QtObjectPtr ptr); -void QAbstractSpinBox_DisconnectSlotSelectAll(QtObjectPtr ptr); -void QAbstractSpinBox_SelectAll(QtObjectPtr ptr); -void QAbstractSpinBox_ConnectSlotStepDown(QtObjectPtr ptr); -void QAbstractSpinBox_DisconnectSlotStepDown(QtObjectPtr ptr); -void QAbstractSpinBox_StepDown(QtObjectPtr ptr); -void QAbstractSpinBox_ConnectSlotStepUp(QtObjectPtr ptr); -void QAbstractSpinBox_DisconnectSlotStepUp(QtObjectPtr ptr); -void QAbstractSpinBox_StepUp(QtObjectPtr ptr); -//Signals -void QAbstractSpinBox_ConnectSignalEditingFinished(QtObjectPtr ptr); -void QAbstractSpinBox_DisconnectSignalEditingFinished(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qabstractspinbox.moc b/qabstractspinbox.moc deleted file mode 100644 index 0febcda8..00000000 --- a/qabstractspinbox.moc +++ /dev/null @@ -1,173 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qabstractspinbox.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qabstractspinbox.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQAbstractSpinBox_t { - QByteArrayData data[6]; - char stringdata[72]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQAbstractSpinBox_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQAbstractSpinBox_t qt_meta_stringdata_MyQAbstractSpinBox = { - { -QT_MOC_LITERAL(0, 0, 18), // "MyQAbstractSpinBox" -QT_MOC_LITERAL(1, 19, 10), // "Slot_Clear" -QT_MOC_LITERAL(2, 30, 0), // "" -QT_MOC_LITERAL(3, 31, 14), // "Slot_SelectAll" -QT_MOC_LITERAL(4, 46, 13), // "Slot_StepDown" -QT_MOC_LITERAL(5, 60, 11) // "Slot_StepUp" - - }, - "MyQAbstractSpinBox\0Slot_Clear\0\0" - "Slot_SelectAll\0Slot_StepDown\0Slot_StepUp" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQAbstractSpinBox[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 4, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 4, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 0, 34, 2, 0x06 /* Public */, - 3, 0, 35, 2, 0x06 /* Public */, - 4, 0, 36, 2, 0x06 /* Public */, - 5, 0, 37, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - - 0 // eod -}; - -void MyQAbstractSpinBox::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQAbstractSpinBox *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_Clear(); break; - case 1: _t->Slot_SelectAll(); break; - case 2: _t->Slot_StepDown(); break; - case 3: _t->Slot_StepUp(); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQAbstractSpinBox::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQAbstractSpinBox::Slot_Clear)) { - *result = 0; - } - } - { - typedef void (MyQAbstractSpinBox::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQAbstractSpinBox::Slot_SelectAll)) { - *result = 1; - } - } - { - typedef void (MyQAbstractSpinBox::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQAbstractSpinBox::Slot_StepDown)) { - *result = 2; - } - } - { - typedef void (MyQAbstractSpinBox::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQAbstractSpinBox::Slot_StepUp)) { - *result = 3; - } - } - } - Q_UNUSED(_a); -} - -const QMetaObject MyQAbstractSpinBox::staticMetaObject = { - { &QAbstractSpinBox::staticMetaObject, qt_meta_stringdata_MyQAbstractSpinBox.data, - qt_meta_data_MyQAbstractSpinBox, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQAbstractSpinBox::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQAbstractSpinBox::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQAbstractSpinBox.stringdata)) - return static_cast(const_cast< MyQAbstractSpinBox*>(this)); - return QAbstractSpinBox::qt_metacast(_clname); -} - -int MyQAbstractSpinBox::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QAbstractSpinBox::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 4) - qt_static_metacall(this, _c, _id, _a); - _id -= 4; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 4) - *reinterpret_cast(_a[0]) = -1; - _id -= 4; - } - return _id; -} - -// SIGNAL 0 -void MyQAbstractSpinBox::Slot_Clear() -{ - QMetaObject::activate(this, &staticMetaObject, 0, 0); -} - -// SIGNAL 1 -void MyQAbstractSpinBox::Slot_SelectAll() -{ - QMetaObject::activate(this, &staticMetaObject, 1, 0); -} - -// SIGNAL 2 -void MyQAbstractSpinBox::Slot_StepDown() -{ - QMetaObject::activate(this, &staticMetaObject, 2, 0); -} - -// SIGNAL 3 -void MyQAbstractSpinBox::Slot_StepUp() -{ - QMetaObject::activate(this, &staticMetaObject, 3, 0); -} -QT_END_MOC_NAMESPACE diff --git a/qaction.cpp b/qaction.cpp deleted file mode 100644 index 9cb9d2d3..00000000 --- a/qaction.cpp +++ /dev/null @@ -1,324 +0,0 @@ -#include "qaction.h" -#include -#include "cgoexport.h" - -//MyQAction -class MyQAction: public QAction { -Q_OBJECT -public: -void Signal_Changed() { callbackQAction(this, QString("changed").toUtf8().data()); }; -void Signal_Hovered() { callbackQAction(this, QString("hovered").toUtf8().data()); }; -void Signal_Toggled() { callbackQAction(this, QString("toggled").toUtf8().data()); }; -void Signal_Triggered() { callbackQAction(this, QString("triggered").toUtf8().data()); }; - -signals: -void Slot_Hover(); -void Slot_SetChecked(bool bo); -void Slot_SetDisabled(bool bo); -void Slot_SetEnabled(bool bo); -void Slot_SetVisible(bool bo); -void Slot_Toggle(); -void Slot_Trigger(); - -}; -#include "qaction.moc" - - -//Public Functions -QtObjectPtr QAction_New_QObject(QtObjectPtr parent) -{ - return new QAction(((QObject*)(parent))); -} - -QtObjectPtr QAction_New_String_QObject(char* text, QtObjectPtr parent) -{ - return new QAction(QString(text), ((QObject*)(parent))); -} - -void QAction_Destroy(QtObjectPtr ptr) -{ - ((QAction*)(ptr))->~QAction(); -} - -int QAction_AutoRepeat(QtObjectPtr ptr) -{ - return ((QAction*)(ptr))->autoRepeat(); -} - -char* QAction_IconText(QtObjectPtr ptr) -{ - return ((QAction*)(ptr))->iconText().toUtf8().data(); -} - -int QAction_IsCheckable(QtObjectPtr ptr) -{ - return ((QAction*)(ptr))->isCheckable(); -} - -int QAction_IsChecked(QtObjectPtr ptr) -{ - return ((QAction*)(ptr))->isChecked(); -} - -int QAction_IsEnabled(QtObjectPtr ptr) -{ - return ((QAction*)(ptr))->isEnabled(); -} - -int QAction_IsIconVisibleInMenu(QtObjectPtr ptr) -{ - return ((QAction*)(ptr))->isIconVisibleInMenu(); -} - -int QAction_IsSeparator(QtObjectPtr ptr) -{ - return ((QAction*)(ptr))->isSeparator(); -} - -int QAction_IsVisible(QtObjectPtr ptr) -{ - return ((QAction*)(ptr))->isVisible(); -} - -QtObjectPtr QAction_Menu(QtObjectPtr ptr) -{ - return ((QAction*)(ptr))->menu(); -} - -QtObjectPtr QAction_ParentWidget(QtObjectPtr ptr) -{ - return ((QAction*)(ptr))->parentWidget(); -} - -void QAction_SetAutoRepeat_Bool(QtObjectPtr ptr, int autoRepeat) -{ - ((QAction*)(ptr))->setAutoRepeat(autoRepeat != 0); -} - -void QAction_SetCheckable_Bool(QtObjectPtr ptr, int checkable) -{ - ((QAction*)(ptr))->setCheckable(checkable != 0); -} - -void QAction_SetIconText_String(QtObjectPtr ptr, char* text) -{ - ((QAction*)(ptr))->setIconText(QString(text)); -} - -void QAction_SetIconVisibleInMenu_Bool(QtObjectPtr ptr, int visible) -{ - ((QAction*)(ptr))->setIconVisibleInMenu(visible != 0); -} - -void QAction_SetMenu_QMenu(QtObjectPtr ptr, QtObjectPtr menu) -{ - ((QAction*)(ptr))->setMenu(((QMenu*)(menu))); -} - -void QAction_SetSeparator_Bool(QtObjectPtr ptr, int bo) -{ - ((QAction*)(ptr))->setSeparator(bo != 0); -} - -void QAction_SetShortcutContext_ShortcutContext(QtObjectPtr ptr, int context) -{ - ((QAction*)(ptr))->setShortcutContext(((Qt::ShortcutContext)(context))); -} - -void QAction_SetStatusTip_String(QtObjectPtr ptr, char* statusTip) -{ - ((QAction*)(ptr))->setStatusTip(QString(statusTip)); -} - -void QAction_SetText_String(QtObjectPtr ptr, char* text) -{ - ((QAction*)(ptr))->setText(QString(text)); -} - -void QAction_SetToolTip_String(QtObjectPtr ptr, char* tip) -{ - ((QAction*)(ptr))->setToolTip(QString(tip)); -} - -void QAction_SetWhatsThis_String(QtObjectPtr ptr, char* what) -{ - ((QAction*)(ptr))->setWhatsThis(QString(what)); -} - -int QAction_ShortcutContext(QtObjectPtr ptr) -{ - return ((QAction*)(ptr))->shortcutContext(); -} - -int QAction_ShowStatusText_QWidget(QtObjectPtr ptr, QtObjectPtr widget) -{ - return ((QAction*)(ptr))->showStatusText(((QWidget*)(widget))); -} - -char* QAction_StatusTip(QtObjectPtr ptr) -{ - return ((QAction*)(ptr))->statusTip().toUtf8().data(); -} - -char* QAction_Text(QtObjectPtr ptr) -{ - return ((QAction*)(ptr))->text().toUtf8().data(); -} - -char* QAction_ToolTip(QtObjectPtr ptr) -{ - return ((QAction*)(ptr))->toolTip().toUtf8().data(); -} - -char* QAction_WhatsThis(QtObjectPtr ptr) -{ - return ((QAction*)(ptr))->whatsThis().toUtf8().data(); -} - -//Public Slots -void QAction_ConnectSlotHover(QtObjectPtr ptr) -{ - QObject::connect(((MyQAction*)(ptr)), &MyQAction::Slot_Hover, ((QAction*)(ptr)), &QAction::hover, Qt::QueuedConnection); -} - -void QAction_DisconnectSlotHover(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQAction*)(ptr)), &MyQAction::Slot_Hover, ((QAction*)(ptr)), &QAction::hover); -} - -void QAction_Hover(QtObjectPtr ptr) -{ - ((MyQAction*)(ptr))->Slot_Hover(); -} - -void QAction_ConnectSlotSetChecked(QtObjectPtr ptr) -{ - QObject::connect(((MyQAction*)(ptr)), &MyQAction::Slot_SetChecked, ((QAction*)(ptr)), &QAction::setChecked, Qt::QueuedConnection); -} - -void QAction_DisconnectSlotSetChecked(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQAction*)(ptr)), &MyQAction::Slot_SetChecked, ((QAction*)(ptr)), &QAction::setChecked); -} - -void QAction_SetChecked_Bool(QtObjectPtr ptr, int bo) -{ - ((MyQAction*)(ptr))->Slot_SetChecked(bo != 0); -} - -void QAction_ConnectSlotSetDisabled(QtObjectPtr ptr) -{ - QObject::connect(((MyQAction*)(ptr)), &MyQAction::Slot_SetDisabled, ((QAction*)(ptr)), &QAction::setDisabled, Qt::QueuedConnection); -} - -void QAction_DisconnectSlotSetDisabled(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQAction*)(ptr)), &MyQAction::Slot_SetDisabled, ((QAction*)(ptr)), &QAction::setDisabled); -} - -void QAction_SetDisabled_Bool(QtObjectPtr ptr, int bo) -{ - ((MyQAction*)(ptr))->Slot_SetDisabled(bo != 0); -} - -void QAction_ConnectSlotSetEnabled(QtObjectPtr ptr) -{ - QObject::connect(((MyQAction*)(ptr)), &MyQAction::Slot_SetEnabled, ((QAction*)(ptr)), &QAction::setEnabled, Qt::QueuedConnection); -} - -void QAction_DisconnectSlotSetEnabled(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQAction*)(ptr)), &MyQAction::Slot_SetEnabled, ((QAction*)(ptr)), &QAction::setEnabled); -} - -void QAction_SetEnabled_Bool(QtObjectPtr ptr, int bo) -{ - ((MyQAction*)(ptr))->Slot_SetEnabled(bo != 0); -} - -void QAction_ConnectSlotSetVisible(QtObjectPtr ptr) -{ - QObject::connect(((MyQAction*)(ptr)), &MyQAction::Slot_SetVisible, ((QAction*)(ptr)), &QAction::setVisible, Qt::QueuedConnection); -} - -void QAction_DisconnectSlotSetVisible(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQAction*)(ptr)), &MyQAction::Slot_SetVisible, ((QAction*)(ptr)), &QAction::setVisible); -} - -void QAction_SetVisible_Bool(QtObjectPtr ptr, int bo) -{ - ((MyQAction*)(ptr))->Slot_SetVisible(bo != 0); -} - -void QAction_ConnectSlotToggle(QtObjectPtr ptr) -{ - QObject::connect(((MyQAction*)(ptr)), &MyQAction::Slot_Toggle, ((QAction*)(ptr)), &QAction::toggle, Qt::QueuedConnection); -} - -void QAction_DisconnectSlotToggle(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQAction*)(ptr)), &MyQAction::Slot_Toggle, ((QAction*)(ptr)), &QAction::toggle); -} - -void QAction_Toggle(QtObjectPtr ptr) -{ - ((MyQAction*)(ptr))->Slot_Toggle(); -} - -void QAction_ConnectSlotTrigger(QtObjectPtr ptr) -{ - QObject::connect(((MyQAction*)(ptr)), &MyQAction::Slot_Trigger, ((QAction*)(ptr)), &QAction::trigger, Qt::QueuedConnection); -} - -void QAction_DisconnectSlotTrigger(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQAction*)(ptr)), &MyQAction::Slot_Trigger, ((QAction*)(ptr)), &QAction::trigger); -} - -void QAction_Trigger(QtObjectPtr ptr) -{ - ((MyQAction*)(ptr))->Slot_Trigger(); -} - -//Signals -void QAction_ConnectSignalChanged(QtObjectPtr ptr) -{ - QObject::connect(((QAction*)(ptr)), &QAction::changed, ((MyQAction*)(ptr)), &MyQAction::Signal_Changed, Qt::QueuedConnection); -} - -void QAction_DisconnectSignalChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QAction*)(ptr)), &QAction::changed, ((MyQAction*)(ptr)), &MyQAction::Signal_Changed); -} - -void QAction_ConnectSignalHovered(QtObjectPtr ptr) -{ - QObject::connect(((QAction*)(ptr)), &QAction::hovered, ((MyQAction*)(ptr)), &MyQAction::Signal_Hovered, Qt::QueuedConnection); -} - -void QAction_DisconnectSignalHovered(QtObjectPtr ptr) -{ - QObject::disconnect(((QAction*)(ptr)), &QAction::hovered, ((MyQAction*)(ptr)), &MyQAction::Signal_Hovered); -} - -void QAction_ConnectSignalToggled(QtObjectPtr ptr) -{ - QObject::connect(((QAction*)(ptr)), &QAction::toggled, ((MyQAction*)(ptr)), &MyQAction::Signal_Toggled, Qt::QueuedConnection); -} - -void QAction_DisconnectSignalToggled(QtObjectPtr ptr) -{ - QObject::disconnect(((QAction*)(ptr)), &QAction::toggled, ((MyQAction*)(ptr)), &MyQAction::Signal_Toggled); -} - -void QAction_ConnectSignalTriggered(QtObjectPtr ptr) -{ - QObject::connect(((QAction*)(ptr)), &QAction::triggered, ((MyQAction*)(ptr)), &MyQAction::Signal_Triggered, Qt::QueuedConnection); -} - -void QAction_DisconnectSignalTriggered(QtObjectPtr ptr) -{ - QObject::disconnect(((QAction*)(ptr)), &QAction::triggered, ((MyQAction*)(ptr)), &MyQAction::Signal_Triggered); -} - diff --git a/qaction.go b/qaction.go deleted file mode 100644 index 23b28bd3..00000000 --- a/qaction.go +++ /dev/null @@ -1,470 +0,0 @@ -package qt - -//#include "qaction.h" -import "C" - -type qaction struct { - qobject -} - -type QAction interface { - QObject - AutoRepeat() bool - IconText() string - IsCheckable() bool - IsChecked() bool - IsEnabled() bool - IsIconVisibleInMenu() bool - IsSeparator() bool - IsVisible() bool - Menu() QMenu - ParentWidget() QWidget - SetAutoRepeat(autoRepeat bool) - SetCheckable(checkable bool) - SetIconText(text string) - SetIconVisibleInMenu(visible bool) - SetMenu(menu QMenu) - SetSeparator(bo bool) - SetShortcutContext(context ShortcutContext) - SetStatusTip(statusTip string) - SetText(text string) - SetToolTip(tip string) - SetWhatsThis(what string) - ShortcutContext() ShortcutContext - ShowStatusText(widget QWidget) bool - StatusTip() string - Text() string - ToolTip() string - WhatsThis() string - ConnectSlotHover() - DisconnectSlotHover() - SlotHover() - ConnectSlotSetChecked() - DisconnectSlotSetChecked() - SlotSetChecked(bo bool) - ConnectSlotSetDisabled() - DisconnectSlotSetDisabled() - SlotSetDisabled(bo bool) - ConnectSlotSetEnabled() - DisconnectSlotSetEnabled() - SlotSetEnabled(bo bool) - ConnectSlotSetVisible() - DisconnectSlotSetVisible() - SlotSetVisible(bo bool) - ConnectSlotToggle() - DisconnectSlotToggle() - SlotToggle() - ConnectSlotTrigger() - DisconnectSlotTrigger() - SlotTrigger() - ConnectSignalChanged(f func()) - DisconnectSignalChanged() - SignalChanged() func() - ConnectSignalHovered(f func()) - DisconnectSignalHovered() - SignalHovered() func() - ConnectSignalToggled(f func()) - DisconnectSignalToggled() - SignalToggled() func() - ConnectSignalTriggered(f func()) - DisconnectSignalTriggered() - SignalTriggered() func() -} - -func (p *qaction) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qaction) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQAction1(parent QObject) QAction { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qaction = new(qaction) - qaction.SetPointer(C.QAction_New_QObject(parentPtr)) - qaction.SetObjectName("QAction_" + randomIdentifier()) - return qaction -} - -func NewQAction2(text string, parent QObject) QAction { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qaction = new(qaction) - qaction.SetPointer(C.QAction_New_String_QObject(C.CString(text), parentPtr)) - qaction.SetObjectName("QAction_" + randomIdentifier()) - return qaction -} - -func (p *qaction) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QAction_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qaction) AutoRepeat() bool { - if p.Pointer() == nil { - return false - } - return C.QAction_AutoRepeat(p.Pointer()) != 0 -} - -func (p *qaction) IconText() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QAction_IconText(p.Pointer())) -} - -func (p *qaction) IsCheckable() bool { - if p.Pointer() == nil { - return false - } - return C.QAction_IsCheckable(p.Pointer()) != 0 -} - -func (p *qaction) IsChecked() bool { - if p.Pointer() == nil { - return false - } - return C.QAction_IsChecked(p.Pointer()) != 0 -} - -func (p *qaction) IsEnabled() bool { - if p.Pointer() == nil { - return false - } - return C.QAction_IsEnabled(p.Pointer()) != 0 -} - -func (p *qaction) IsIconVisibleInMenu() bool { - if p.Pointer() == nil { - return false - } - return C.QAction_IsIconVisibleInMenu(p.Pointer()) != 0 -} - -func (p *qaction) IsSeparator() bool { - if p.Pointer() == nil { - return false - } - return C.QAction_IsSeparator(p.Pointer()) != 0 -} - -func (p *qaction) IsVisible() bool { - if p.Pointer() == nil { - return false - } - return C.QAction_IsVisible(p.Pointer()) != 0 -} - -func (p *qaction) Menu() QMenu { - if p.Pointer() == nil { - return nil - } else { - var qmenu = new(qmenu) - qmenu.SetPointer(C.QAction_Menu(p.Pointer())) - if qmenu.ObjectName() == "" { - qmenu.SetObjectName("QMenu_" + randomIdentifier()) - } - return qmenu - } -} - -func (p *qaction) ParentWidget() QWidget { - if p.Pointer() == nil { - return nil - } else { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QAction_ParentWidget(p.Pointer())) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qaction) SetAutoRepeat(autoRepeat bool) { - if p.Pointer() != nil { - C.QAction_SetAutoRepeat_Bool(p.Pointer(), goBoolToCInt(autoRepeat)) - } -} - -func (p *qaction) SetCheckable(checkable bool) { - if p.Pointer() != nil { - C.QAction_SetCheckable_Bool(p.Pointer(), goBoolToCInt(checkable)) - } -} - -func (p *qaction) SetIconText(text string) { - if p.Pointer() != nil { - C.QAction_SetIconText_String(p.Pointer(), C.CString(text)) - } -} - -func (p *qaction) SetIconVisibleInMenu(visible bool) { - if p.Pointer() != nil { - C.QAction_SetIconVisibleInMenu_Bool(p.Pointer(), goBoolToCInt(visible)) - } -} - -func (p *qaction) SetMenu(menu QMenu) { - if p.Pointer() != nil { - var menuPtr C.QtObjectPtr - if menu != nil { - menuPtr = menu.Pointer() - } - C.QAction_SetMenu_QMenu(p.Pointer(), menuPtr) - } -} - -func (p *qaction) SetSeparator(bo bool) { - if p.Pointer() != nil { - C.QAction_SetSeparator_Bool(p.Pointer(), goBoolToCInt(bo)) - } -} - -func (p *qaction) SetShortcutContext(context ShortcutContext) { - if p.Pointer() != nil { - C.QAction_SetShortcutContext_ShortcutContext(p.Pointer(), C.int(context)) - } -} - -func (p *qaction) SetStatusTip(statusTip string) { - if p.Pointer() != nil { - C.QAction_SetStatusTip_String(p.Pointer(), C.CString(statusTip)) - } -} - -func (p *qaction) SetText(text string) { - if p.Pointer() != nil { - C.QAction_SetText_String(p.Pointer(), C.CString(text)) - } -} - -func (p *qaction) SetToolTip(tip string) { - if p.Pointer() != nil { - C.QAction_SetToolTip_String(p.Pointer(), C.CString(tip)) - } -} - -func (p *qaction) SetWhatsThis(what string) { - if p.Pointer() != nil { - C.QAction_SetWhatsThis_String(p.Pointer(), C.CString(what)) - } -} - -func (p *qaction) ShortcutContext() ShortcutContext { - if p.Pointer() == nil { - return 0 - } - return ShortcutContext(C.QAction_ShortcutContext(p.Pointer())) -} - -func (p *qaction) ShowStatusText(widget QWidget) bool { - if p.Pointer() == nil { - return false - } else { - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - return C.QAction_ShowStatusText_QWidget(p.Pointer(), widgetPtr) != 0 - } -} - -func (p *qaction) StatusTip() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QAction_StatusTip(p.Pointer())) -} - -func (p *qaction) Text() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QAction_Text(p.Pointer())) -} - -func (p *qaction) ToolTip() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QAction_ToolTip(p.Pointer())) -} - -func (p *qaction) WhatsThis() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QAction_WhatsThis(p.Pointer())) -} - -func (p *qaction) ConnectSlotHover() { - C.QAction_ConnectSlotHover(p.Pointer()) -} - -func (p *qaction) DisconnectSlotHover() { - C.QAction_DisconnectSlotHover(p.Pointer()) -} - -func (p *qaction) SlotHover() { - if p.Pointer() != nil { - C.QAction_Hover(p.Pointer()) - } -} - -func (p *qaction) ConnectSlotSetChecked() { - C.QAction_ConnectSlotSetChecked(p.Pointer()) -} - -func (p *qaction) DisconnectSlotSetChecked() { - C.QAction_DisconnectSlotSetChecked(p.Pointer()) -} - -func (p *qaction) SlotSetChecked(bo bool) { - if p.Pointer() != nil { - C.QAction_SetChecked_Bool(p.Pointer(), goBoolToCInt(bo)) - } -} - -func (p *qaction) ConnectSlotSetDisabled() { - C.QAction_ConnectSlotSetDisabled(p.Pointer()) -} - -func (p *qaction) DisconnectSlotSetDisabled() { - C.QAction_DisconnectSlotSetDisabled(p.Pointer()) -} - -func (p *qaction) SlotSetDisabled(bo bool) { - if p.Pointer() != nil { - C.QAction_SetDisabled_Bool(p.Pointer(), goBoolToCInt(bo)) - } -} - -func (p *qaction) ConnectSlotSetEnabled() { - C.QAction_ConnectSlotSetEnabled(p.Pointer()) -} - -func (p *qaction) DisconnectSlotSetEnabled() { - C.QAction_DisconnectSlotSetEnabled(p.Pointer()) -} - -func (p *qaction) SlotSetEnabled(bo bool) { - if p.Pointer() != nil { - C.QAction_SetEnabled_Bool(p.Pointer(), goBoolToCInt(bo)) - } -} - -func (p *qaction) ConnectSlotSetVisible() { - C.QAction_ConnectSlotSetVisible(p.Pointer()) -} - -func (p *qaction) DisconnectSlotSetVisible() { - C.QAction_DisconnectSlotSetVisible(p.Pointer()) -} - -func (p *qaction) SlotSetVisible(bo bool) { - if p.Pointer() != nil { - C.QAction_SetVisible_Bool(p.Pointer(), goBoolToCInt(bo)) - } -} - -func (p *qaction) ConnectSlotToggle() { - C.QAction_ConnectSlotToggle(p.Pointer()) -} - -func (p *qaction) DisconnectSlotToggle() { - C.QAction_DisconnectSlotToggle(p.Pointer()) -} - -func (p *qaction) SlotToggle() { - if p.Pointer() != nil { - C.QAction_Toggle(p.Pointer()) - } -} - -func (p *qaction) ConnectSlotTrigger() { - C.QAction_ConnectSlotTrigger(p.Pointer()) -} - -func (p *qaction) DisconnectSlotTrigger() { - C.QAction_DisconnectSlotTrigger(p.Pointer()) -} - -func (p *qaction) SlotTrigger() { - if p.Pointer() != nil { - C.QAction_Trigger(p.Pointer()) - } -} - -func (p *qaction) ConnectSignalChanged(f func()) { - C.QAction_ConnectSignalChanged(p.Pointer()) - connectSignal(p.ObjectName(), "changed", f) -} - -func (p *qaction) DisconnectSignalChanged() { - C.QAction_DisconnectSignalChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "changed") -} - -func (p *qaction) SignalChanged() func() { - return getSignal(p.ObjectName(), "changed") -} - -func (p *qaction) ConnectSignalHovered(f func()) { - C.QAction_ConnectSignalHovered(p.Pointer()) - connectSignal(p.ObjectName(), "hovered", f) -} - -func (p *qaction) DisconnectSignalHovered() { - C.QAction_DisconnectSignalHovered(p.Pointer()) - disconnectSignal(p.ObjectName(), "hovered") -} - -func (p *qaction) SignalHovered() func() { - return getSignal(p.ObjectName(), "hovered") -} - -func (p *qaction) ConnectSignalToggled(f func()) { - C.QAction_ConnectSignalToggled(p.Pointer()) - connectSignal(p.ObjectName(), "toggled", f) -} - -func (p *qaction) DisconnectSignalToggled() { - C.QAction_DisconnectSignalToggled(p.Pointer()) - disconnectSignal(p.ObjectName(), "toggled") -} - -func (p *qaction) SignalToggled() func() { - return getSignal(p.ObjectName(), "toggled") -} - -func (p *qaction) ConnectSignalTriggered(f func()) { - C.QAction_ConnectSignalTriggered(p.Pointer()) - connectSignal(p.ObjectName(), "triggered", f) -} - -func (p *qaction) DisconnectSignalTriggered() { - C.QAction_DisconnectSignalTriggered(p.Pointer()) - disconnectSignal(p.ObjectName(), "triggered") -} - -func (p *qaction) SignalTriggered() func() { - return getSignal(p.ObjectName(), "triggered") -} - -//export callbackQAction -func callbackQAction(ptr C.QtObjectPtr, msg *C.char) { - var qaction = new(qaction) - qaction.SetPointer(ptr) - getSignal(qaction.ObjectName(), C.GoString(msg))() -} diff --git a/qaction.h b/qaction.h deleted file mode 100644 index 10dbb341..00000000 --- a/qaction.h +++ /dev/null @@ -1,72 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QAction_New_QObject(QtObjectPtr parent); -QtObjectPtr QAction_New_String_QObject(char* text, QtObjectPtr parent); -void QAction_Destroy(QtObjectPtr ptr); -int QAction_AutoRepeat(QtObjectPtr ptr); -char* QAction_IconText(QtObjectPtr ptr); -int QAction_IsCheckable(QtObjectPtr ptr); -int QAction_IsChecked(QtObjectPtr ptr); -int QAction_IsEnabled(QtObjectPtr ptr); -int QAction_IsIconVisibleInMenu(QtObjectPtr ptr); -int QAction_IsSeparator(QtObjectPtr ptr); -int QAction_IsVisible(QtObjectPtr ptr); -QtObjectPtr QAction_Menu(QtObjectPtr ptr); -QtObjectPtr QAction_ParentWidget(QtObjectPtr ptr); -void QAction_SetAutoRepeat_Bool(QtObjectPtr ptr, int autoRepeat); -void QAction_SetCheckable_Bool(QtObjectPtr ptr, int checkable); -void QAction_SetIconText_String(QtObjectPtr ptr, char* text); -void QAction_SetIconVisibleInMenu_Bool(QtObjectPtr ptr, int visible); -void QAction_SetMenu_QMenu(QtObjectPtr ptr, QtObjectPtr menu); -void QAction_SetSeparator_Bool(QtObjectPtr ptr, int bo); -void QAction_SetShortcutContext_ShortcutContext(QtObjectPtr ptr, int context); -void QAction_SetStatusTip_String(QtObjectPtr ptr, char* statusTip); -void QAction_SetText_String(QtObjectPtr ptr, char* text); -void QAction_SetToolTip_String(QtObjectPtr ptr, char* tip); -void QAction_SetWhatsThis_String(QtObjectPtr ptr, char* what); -int QAction_ShortcutContext(QtObjectPtr ptr); -int QAction_ShowStatusText_QWidget(QtObjectPtr ptr, QtObjectPtr widget); -char* QAction_StatusTip(QtObjectPtr ptr); -char* QAction_Text(QtObjectPtr ptr); -char* QAction_ToolTip(QtObjectPtr ptr); -char* QAction_WhatsThis(QtObjectPtr ptr); -//Public Slots -void QAction_ConnectSlotHover(QtObjectPtr ptr); -void QAction_DisconnectSlotHover(QtObjectPtr ptr); -void QAction_Hover(QtObjectPtr ptr); -void QAction_ConnectSlotSetChecked(QtObjectPtr ptr); -void QAction_DisconnectSlotSetChecked(QtObjectPtr ptr); -void QAction_SetChecked_Bool(QtObjectPtr ptr, int bo); -void QAction_ConnectSlotSetDisabled(QtObjectPtr ptr); -void QAction_DisconnectSlotSetDisabled(QtObjectPtr ptr); -void QAction_SetDisabled_Bool(QtObjectPtr ptr, int bo); -void QAction_ConnectSlotSetEnabled(QtObjectPtr ptr); -void QAction_DisconnectSlotSetEnabled(QtObjectPtr ptr); -void QAction_SetEnabled_Bool(QtObjectPtr ptr, int bo); -void QAction_ConnectSlotSetVisible(QtObjectPtr ptr); -void QAction_DisconnectSlotSetVisible(QtObjectPtr ptr); -void QAction_SetVisible_Bool(QtObjectPtr ptr, int bo); -void QAction_ConnectSlotToggle(QtObjectPtr ptr); -void QAction_DisconnectSlotToggle(QtObjectPtr ptr); -void QAction_Toggle(QtObjectPtr ptr); -void QAction_ConnectSlotTrigger(QtObjectPtr ptr); -void QAction_DisconnectSlotTrigger(QtObjectPtr ptr); -void QAction_Trigger(QtObjectPtr ptr); -//Signals -void QAction_ConnectSignalChanged(QtObjectPtr ptr); -void QAction_DisconnectSignalChanged(QtObjectPtr ptr); -void QAction_ConnectSignalHovered(QtObjectPtr ptr); -void QAction_DisconnectSignalHovered(QtObjectPtr ptr); -void QAction_ConnectSignalToggled(QtObjectPtr ptr); -void QAction_DisconnectSignalToggled(QtObjectPtr ptr); -void QAction_ConnectSignalTriggered(QtObjectPtr ptr); -void QAction_DisconnectSignalTriggered(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qaction.moc b/qaction.moc deleted file mode 100644 index e0596927..00000000 --- a/qaction.moc +++ /dev/null @@ -1,226 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qaction.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qaction.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQAction_t { - QByteArrayData data[10]; - char stringdata[115]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQAction_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQAction_t qt_meta_stringdata_MyQAction = { - { -QT_MOC_LITERAL(0, 0, 9), // "MyQAction" -QT_MOC_LITERAL(1, 10, 10), // "Slot_Hover" -QT_MOC_LITERAL(2, 21, 0), // "" -QT_MOC_LITERAL(3, 22, 15), // "Slot_SetChecked" -QT_MOC_LITERAL(4, 38, 2), // "bo" -QT_MOC_LITERAL(5, 41, 16), // "Slot_SetDisabled" -QT_MOC_LITERAL(6, 58, 15), // "Slot_SetEnabled" -QT_MOC_LITERAL(7, 74, 15), // "Slot_SetVisible" -QT_MOC_LITERAL(8, 90, 11), // "Slot_Toggle" -QT_MOC_LITERAL(9, 102, 12) // "Slot_Trigger" - - }, - "MyQAction\0Slot_Hover\0\0Slot_SetChecked\0" - "bo\0Slot_SetDisabled\0Slot_SetEnabled\0" - "Slot_SetVisible\0Slot_Toggle\0Slot_Trigger" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQAction[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 7, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 7, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 0, 49, 2, 0x06 /* Public */, - 3, 1, 50, 2, 0x06 /* Public */, - 5, 1, 53, 2, 0x06 /* Public */, - 6, 1, 56, 2, 0x06 /* Public */, - 7, 1, 59, 2, 0x06 /* Public */, - 8, 0, 62, 2, 0x06 /* Public */, - 9, 0, 63, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, - QMetaType::Void, QMetaType::Bool, 4, - QMetaType::Void, QMetaType::Bool, 4, - QMetaType::Void, QMetaType::Bool, 4, - QMetaType::Void, QMetaType::Bool, 4, - QMetaType::Void, - QMetaType::Void, - - 0 // eod -}; - -void MyQAction::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQAction *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_Hover(); break; - case 1: _t->Slot_SetChecked((*reinterpret_cast< bool(*)>(_a[1]))); break; - case 2: _t->Slot_SetDisabled((*reinterpret_cast< bool(*)>(_a[1]))); break; - case 3: _t->Slot_SetEnabled((*reinterpret_cast< bool(*)>(_a[1]))); break; - case 4: _t->Slot_SetVisible((*reinterpret_cast< bool(*)>(_a[1]))); break; - case 5: _t->Slot_Toggle(); break; - case 6: _t->Slot_Trigger(); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQAction::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQAction::Slot_Hover)) { - *result = 0; - } - } - { - typedef void (MyQAction::*_t)(bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQAction::Slot_SetChecked)) { - *result = 1; - } - } - { - typedef void (MyQAction::*_t)(bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQAction::Slot_SetDisabled)) { - *result = 2; - } - } - { - typedef void (MyQAction::*_t)(bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQAction::Slot_SetEnabled)) { - *result = 3; - } - } - { - typedef void (MyQAction::*_t)(bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQAction::Slot_SetVisible)) { - *result = 4; - } - } - { - typedef void (MyQAction::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQAction::Slot_Toggle)) { - *result = 5; - } - } - { - typedef void (MyQAction::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQAction::Slot_Trigger)) { - *result = 6; - } - } - } -} - -const QMetaObject MyQAction::staticMetaObject = { - { &QAction::staticMetaObject, qt_meta_stringdata_MyQAction.data, - qt_meta_data_MyQAction, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQAction::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQAction::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQAction.stringdata)) - return static_cast(const_cast< MyQAction*>(this)); - return QAction::qt_metacast(_clname); -} - -int MyQAction::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QAction::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 7) - qt_static_metacall(this, _c, _id, _a); - _id -= 7; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 7) - *reinterpret_cast(_a[0]) = -1; - _id -= 7; - } - return _id; -} - -// SIGNAL 0 -void MyQAction::Slot_Hover() -{ - QMetaObject::activate(this, &staticMetaObject, 0, 0); -} - -// SIGNAL 1 -void MyQAction::Slot_SetChecked(bool _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} - -// SIGNAL 2 -void MyQAction::Slot_SetDisabled(bool _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 2, _a); -} - -// SIGNAL 3 -void MyQAction::Slot_SetEnabled(bool _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 3, _a); -} - -// SIGNAL 4 -void MyQAction::Slot_SetVisible(bool _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 4, _a); -} - -// SIGNAL 5 -void MyQAction::Slot_Toggle() -{ - QMetaObject::activate(this, &staticMetaObject, 5, 0); -} - -// SIGNAL 6 -void MyQAction::Slot_Trigger() -{ - QMetaObject::activate(this, &staticMetaObject, 6, 0); -} -QT_END_MOC_NAMESPACE diff --git a/qapplication.cpp b/qapplication.cpp deleted file mode 100644 index 8d5f01fb..00000000 --- a/qapplication.cpp +++ /dev/null @@ -1,174 +0,0 @@ -#include "qapplication.h" -#include -#include "cgoexport.h" - -//MyQApplication -class MyQApplication: public QApplication { -Q_OBJECT -public: - -signals: -void Slot_AutoSipEnabled(); - -}; -#include "qapplication.moc" - - -//Public Functions -QtObjectPtr QApplication_New_Int_String(int argc, char* argv) -{ - return new QApplication(argc, ((char**)(argv))); -} - -void QApplication_Destroy(QtObjectPtr ptr) -{ - ((QApplication*)(ptr))->~QApplication(); -} - -char* QApplication_StyleSheet(QtObjectPtr ptr) -{ - return ((QApplication*)(ptr))->styleSheet().toUtf8().data(); -} - -//Public Slots -void QApplication_ConnectSlotAutoSipEnabled(QtObjectPtr ptr) -{ - QObject::connect(((MyQApplication*)(ptr)), &MyQApplication::Slot_AutoSipEnabled, ((QApplication*)(ptr)), &QApplication::autoSipEnabled, Qt::QueuedConnection); -} - -void QApplication_DisconnectSlotAutoSipEnabled(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQApplication*)(ptr)), &MyQApplication::Slot_AutoSipEnabled, ((QApplication*)(ptr)), &QApplication::autoSipEnabled); -} - -void QApplication_AutoSipEnabled(QtObjectPtr ptr) -{ - ((MyQApplication*)(ptr))->Slot_AutoSipEnabled(); -} - -//Static Public Members -QtObjectPtr QApplication_ActiveModalWidget() -{ - return QApplication::activeModalWidget(); -} - -QtObjectPtr QApplication_ActivePopupWidget() -{ - return QApplication::activePopupWidget(); -} - -QtObjectPtr QApplication_ActiveWindow() -{ - return QApplication::activeWindow(); -} - -void QApplication_Alert_QWidget_Int(QtObjectPtr widget, int msec) -{ - QApplication::alert(((QWidget*)(widget)), msec); -} - -int QApplication_ColorSpec() -{ - return QApplication::colorSpec(); -} - -int QApplication_CursorFlashTime() -{ - return QApplication::cursorFlashTime(); -} - -int QApplication_DoubleClickInterval() -{ - return QApplication::doubleClickInterval(); -} - -int QApplication_Exec() -{ - return QApplication::exec(); -} - -QtObjectPtr QApplication_FocusWidget() -{ - return QApplication::focusWidget(); -} - -int QApplication_IsEffectEnabled_UIEffect(int effect) -{ - return QApplication::isEffectEnabled(((Qt::UIEffect)(effect))); -} - -int QApplication_KeyboardInputInterval() -{ - return QApplication::keyboardInputInterval(); -} - -void QApplication_SetActiveWindow_QWidget(QtObjectPtr active) -{ - QApplication::setActiveWindow(((QWidget*)(active))); -} - -void QApplication_SetColorSpec_Int(int spec) -{ - QApplication::setColorSpec(spec); -} - -void QApplication_SetCursorFlashTime_Int(int flashTime) -{ - QApplication::setCursorFlashTime(flashTime); -} - -void QApplication_SetDoubleClickInterval_Int(int doubleClickInterval) -{ - QApplication::setDoubleClickInterval(doubleClickInterval); -} - -void QApplication_SetEffectEnabled_UIEffect_Bool(int effect, int enable) -{ - QApplication::setEffectEnabled(((Qt::UIEffect)(effect)), enable != 0); -} - -void QApplication_SetKeyboardInputInterval_Int(int keyboardInputInterval) -{ - QApplication::setKeyboardInputInterval(keyboardInputInterval); -} - -void QApplication_SetStartDragDistance_Int(int l) -{ - QApplication::setStartDragDistance(l); -} - -void QApplication_SetStartDragTime_Int(int ms) -{ - QApplication::setStartDragTime(ms); -} - -void QApplication_SetWheelScrollLines_Int(int wheelScrollLines) -{ - QApplication::setWheelScrollLines(wheelScrollLines); -} - -int QApplication_StartDragDistance() -{ - return QApplication::startDragDistance(); -} - -int QApplication_StartDragTime() -{ - return QApplication::startDragTime(); -} - -QtObjectPtr QApplication_TopLevelAt_Int_Int(int x, int y) -{ - return QApplication::topLevelAt(x, y); -} - -int QApplication_WheelScrollLines() -{ - return QApplication::wheelScrollLines(); -} - -QtObjectPtr QApplication_WidgetAt_Int_Int(int x, int y) -{ - return QApplication::widgetAt(x, y); -} - diff --git a/qapplication.go b/qapplication.go deleted file mode 100644 index 5a1b116e..00000000 --- a/qapplication.go +++ /dev/null @@ -1,198 +0,0 @@ -package qt - -//#include "qapplication.h" -import "C" - -type qapplication struct { - qguiapplication -} - -type QApplication interface { - QGuiApplication - StyleSheet() string - ConnectSlotAutoSipEnabled() - DisconnectSlotAutoSipEnabled() - SlotAutoSipEnabled() -} - -func (p *qapplication) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qapplication) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQApplication(argc int, argv string) QApplication { - var qapplication = new(qapplication) - qapplication.SetPointer(C.QApplication_New_Int_String(C.int(argc), C.CString(argv))) - qapplication.SetObjectName("QApplication_" + randomIdentifier()) - return qapplication -} - -func (p *qapplication) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QApplication_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qapplication) StyleSheet() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QApplication_StyleSheet(p.Pointer())) -} - -func (p *qapplication) ConnectSlotAutoSipEnabled() { - C.QApplication_ConnectSlotAutoSipEnabled(p.Pointer()) -} - -func (p *qapplication) DisconnectSlotAutoSipEnabled() { - C.QApplication_DisconnectSlotAutoSipEnabled(p.Pointer()) -} - -func (p *qapplication) SlotAutoSipEnabled() { - if p.Pointer() != nil { - C.QApplication_AutoSipEnabled(p.Pointer()) - } -} - -func QApplication_ActiveModalWidget() QWidget { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QApplication_ActiveModalWidget()) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget -} - -func QApplication_ActivePopupWidget() QWidget { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QApplication_ActivePopupWidget()) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget -} - -func QApplication_ActiveWindow() QWidget { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QApplication_ActiveWindow()) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget -} - -func QApplication_Alert(widget QWidget, msec int) { - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - C.QApplication_Alert_QWidget_Int(widgetPtr, C.int(msec)) -} - -func QApplication_ColorSpec() int { - return int(C.QApplication_ColorSpec()) -} - -func QApplication_CursorFlashTime() int { - return int(C.QApplication_CursorFlashTime()) -} - -func QApplication_DoubleClickInterval() int { - return int(C.QApplication_DoubleClickInterval()) -} - -func QApplication_Exec() int { - return int(C.QApplication_Exec()) -} - -func QApplication_FocusWidget() QWidget { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QApplication_FocusWidget()) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget -} - -func QApplication_IsEffectEnabled(effect UIEffect) bool { - return C.QApplication_IsEffectEnabled_UIEffect(C.int(effect)) != 0 -} - -func QApplication_KeyboardInputInterval() int { - return int(C.QApplication_KeyboardInputInterval()) -} - -func QApplication_SetActiveWindow(active QWidget) { - var activePtr C.QtObjectPtr - if active != nil { - activePtr = active.Pointer() - } - C.QApplication_SetActiveWindow_QWidget(activePtr) -} - -func QApplication_SetColorSpec(spec int) { - C.QApplication_SetColorSpec_Int(C.int(spec)) -} - -func QApplication_SetCursorFlashTime(flashTime int) { - C.QApplication_SetCursorFlashTime_Int(C.int(flashTime)) -} - -func QApplication_SetDoubleClickInterval(doubleClickInterval int) { - C.QApplication_SetDoubleClickInterval_Int(C.int(doubleClickInterval)) -} - -func QApplication_SetEffectEnabled(effect UIEffect, enable bool) { - C.QApplication_SetEffectEnabled_UIEffect_Bool(C.int(effect), goBoolToCInt(enable)) -} - -func QApplication_SetKeyboardInputInterval(keyboardInputInterval int) { - C.QApplication_SetKeyboardInputInterval_Int(C.int(keyboardInputInterval)) -} - -func QApplication_SetStartDragDistance(l int) { - C.QApplication_SetStartDragDistance_Int(C.int(l)) -} - -func QApplication_SetStartDragTime(ms int) { - C.QApplication_SetStartDragTime_Int(C.int(ms)) -} - -func QApplication_SetWheelScrollLines(wheelScrollLines int) { - C.QApplication_SetWheelScrollLines_Int(C.int(wheelScrollLines)) -} - -func QApplication_StartDragDistance() int { - return int(C.QApplication_StartDragDistance()) -} - -func QApplication_StartDragTime() int { - return int(C.QApplication_StartDragTime()) -} - -func QApplication_TopLevelAt(x int, y int) QWidget { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QApplication_TopLevelAt_Int_Int(C.int(x), C.int(y))) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget -} - -func QApplication_WheelScrollLines() int { - return int(C.QApplication_WheelScrollLines()) -} - -func QApplication_WidgetAt(x int, y int) QWidget { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QApplication_WidgetAt_Int_Int(C.int(x), C.int(y))) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget -} diff --git a/qapplication.h b/qapplication.h deleted file mode 100644 index c7eb4e36..00000000 --- a/qapplication.h +++ /dev/null @@ -1,44 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QApplication_New_Int_String(int argc, char* argv); -void QApplication_Destroy(QtObjectPtr ptr); -char* QApplication_StyleSheet(QtObjectPtr ptr); -//Public Slots -void QApplication_ConnectSlotAutoSipEnabled(QtObjectPtr ptr); -void QApplication_DisconnectSlotAutoSipEnabled(QtObjectPtr ptr); -void QApplication_AutoSipEnabled(QtObjectPtr ptr); -//Static Public Members -QtObjectPtr QApplication_ActiveModalWidget(); -QtObjectPtr QApplication_ActivePopupWidget(); -QtObjectPtr QApplication_ActiveWindow(); -void QApplication_Alert_QWidget_Int(QtObjectPtr widget, int msec); -int QApplication_ColorSpec(); -int QApplication_CursorFlashTime(); -int QApplication_DoubleClickInterval(); -int QApplication_Exec(); -QtObjectPtr QApplication_FocusWidget(); -int QApplication_IsEffectEnabled_UIEffect(int effect); -int QApplication_KeyboardInputInterval(); -void QApplication_SetActiveWindow_QWidget(QtObjectPtr active); -void QApplication_SetColorSpec_Int(int spec); -void QApplication_SetCursorFlashTime_Int(int flashTime); -void QApplication_SetDoubleClickInterval_Int(int doubleClickInterval); -void QApplication_SetEffectEnabled_UIEffect_Bool(int effect, int enable); -void QApplication_SetKeyboardInputInterval_Int(int keyboardInputInterval); -void QApplication_SetStartDragDistance_Int(int l); -void QApplication_SetStartDragTime_Int(int ms); -void QApplication_SetWheelScrollLines_Int(int wheelScrollLines); -int QApplication_StartDragDistance(); -int QApplication_StartDragTime(); -QtObjectPtr QApplication_TopLevelAt_Int_Int(int x, int y); -int QApplication_WheelScrollLines(); -QtObjectPtr QApplication_WidgetAt_Int_Int(int x, int y); - -#ifdef __cplusplus -} -#endif diff --git a/qapplication.moc b/qapplication.moc deleted file mode 100644 index aaea08a4..00000000 --- a/qapplication.moc +++ /dev/null @@ -1,124 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qapplication.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qapplication.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQApplication_t { - QByteArrayData data[3]; - char stringdata[36]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQApplication_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQApplication_t qt_meta_stringdata_MyQApplication = { - { -QT_MOC_LITERAL(0, 0, 14), // "MyQApplication" -QT_MOC_LITERAL(1, 15, 19), // "Slot_AutoSipEnabled" -QT_MOC_LITERAL(2, 35, 0) // "" - - }, - "MyQApplication\0Slot_AutoSipEnabled\0" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQApplication[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 1, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 0, 19, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, - - 0 // eod -}; - -void MyQApplication::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQApplication *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_AutoSipEnabled(); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQApplication::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQApplication::Slot_AutoSipEnabled)) { - *result = 0; - } - } - } - Q_UNUSED(_a); -} - -const QMetaObject MyQApplication::staticMetaObject = { - { &QApplication::staticMetaObject, qt_meta_stringdata_MyQApplication.data, - qt_meta_data_MyQApplication, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQApplication::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQApplication::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQApplication.stringdata)) - return static_cast(const_cast< MyQApplication*>(this)); - return QApplication::qt_metacast(_clname); -} - -int MyQApplication::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QApplication::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 1) - qt_static_metacall(this, _c, _id, _a); - _id -= 1; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 1) - *reinterpret_cast(_a[0]) = -1; - _id -= 1; - } - return _id; -} - -// SIGNAL 0 -void MyQApplication::Slot_AutoSipEnabled() -{ - QMetaObject::activate(this, &staticMetaObject, 0, 0); -} -QT_END_MOC_NAMESPACE diff --git a/qboxlayout.cpp b/qboxlayout.cpp deleted file mode 100644 index e15da2af..00000000 --- a/qboxlayout.cpp +++ /dev/null @@ -1,67 +0,0 @@ -#include "qboxlayout.h" -#include -#include "cgoexport.h" - - - -//Public Functions -void QBoxLayout_Destroy(QtObjectPtr ptr) -{ - ((QBoxLayout*)(ptr))->~QBoxLayout(); -} - -void QBoxLayout_AddLayout_QLayout_Int(QtObjectPtr ptr, QtObjectPtr layout, int stretch) -{ - ((QBoxLayout*)(ptr))->addLayout(((QLayout*)(layout)), stretch); -} - -void QBoxLayout_AddSpacing_Int(QtObjectPtr ptr, int size) -{ - ((QBoxLayout*)(ptr))->addSpacing(size); -} - -void QBoxLayout_AddStretch_Int(QtObjectPtr ptr, int stretch) -{ - ((QBoxLayout*)(ptr))->addStretch(stretch); -} - -void QBoxLayout_AddStrut_Int(QtObjectPtr ptr, int size) -{ - ((QBoxLayout*)(ptr))->addStrut(size); -} - -void QBoxLayout_InsertLayout_Int_QLayout_Int(QtObjectPtr ptr, int index, QtObjectPtr layout, int stretch) -{ - ((QBoxLayout*)(ptr))->insertLayout(index, ((QLayout*)(layout)), stretch); -} - -void QBoxLayout_InsertSpacing_Int_Int(QtObjectPtr ptr, int index, int size) -{ - ((QBoxLayout*)(ptr))->insertSpacing(index, size); -} - -void QBoxLayout_InsertStretch_Int_Int(QtObjectPtr ptr, int index, int stretch) -{ - ((QBoxLayout*)(ptr))->insertStretch(index, stretch); -} - -void QBoxLayout_InsertWidget_Int_QWidget_Int_AlignmentFlag(QtObjectPtr ptr, int index, QtObjectPtr widget, int stretch, int alignment) -{ - ((QBoxLayout*)(ptr))->insertWidget(index, ((QWidget*)(widget)), stretch, ((Qt::AlignmentFlag)(alignment))); -} - -void QBoxLayout_SetStretch_Int_Int(QtObjectPtr ptr, int index, int stretch) -{ - ((QBoxLayout*)(ptr))->setStretch(index, stretch); -} - -int QBoxLayout_SetStretchFactor_QWidget_Int(QtObjectPtr ptr, QtObjectPtr widget, int stretch) -{ - return ((QBoxLayout*)(ptr))->setStretchFactor(((QWidget*)(widget)), stretch); -} - -int QBoxLayout_Stretch_Int(QtObjectPtr ptr, int index) -{ - return ((QBoxLayout*)(ptr))->stretch(index); -} - diff --git a/qboxlayout.go b/qboxlayout.go deleted file mode 100644 index ab4dc85f..00000000 --- a/qboxlayout.go +++ /dev/null @@ -1,124 +0,0 @@ -package qt - -//#include "qboxlayout.h" -import "C" - -type qboxlayout struct { - qlayout -} - -type QBoxLayout interface { - QLayout - AddLayout(layout QLayout, stretch int) - AddSpacing(size int) - AddStretch(stretch int) - AddStrut(size int) - InsertLayout(index int, layout QLayout, stretch int) - InsertSpacing(index int, size int) - InsertStretch(index int, stretch int) - InsertWidget(index int, widget QWidget, stretch int, alignment AlignmentFlag) - SetStretch(index int, stretch int) - SetStretchFactor(widget QWidget, stretch int) bool - Stretch(index int) int -} - -func (p *qboxlayout) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qboxlayout) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func (p *qboxlayout) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QBoxLayout_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qboxlayout) AddLayout(layout QLayout, stretch int) { - if p.Pointer() != nil { - var layoutPtr C.QtObjectPtr - if layout != nil { - layoutPtr = layout.Pointer() - } - C.QBoxLayout_AddLayout_QLayout_Int(p.Pointer(), layoutPtr, C.int(stretch)) - } -} - -func (p *qboxlayout) AddSpacing(size int) { - if p.Pointer() != nil { - C.QBoxLayout_AddSpacing_Int(p.Pointer(), C.int(size)) - } -} - -func (p *qboxlayout) AddStretch(stretch int) { - if p.Pointer() != nil { - C.QBoxLayout_AddStretch_Int(p.Pointer(), C.int(stretch)) - } -} - -func (p *qboxlayout) AddStrut(size int) { - if p.Pointer() != nil { - C.QBoxLayout_AddStrut_Int(p.Pointer(), C.int(size)) - } -} - -func (p *qboxlayout) InsertLayout(index int, layout QLayout, stretch int) { - if p.Pointer() != nil { - var layoutPtr C.QtObjectPtr - if layout != nil { - layoutPtr = layout.Pointer() - } - C.QBoxLayout_InsertLayout_Int_QLayout_Int(p.Pointer(), C.int(index), layoutPtr, C.int(stretch)) - } -} - -func (p *qboxlayout) InsertSpacing(index int, size int) { - if p.Pointer() != nil { - C.QBoxLayout_InsertSpacing_Int_Int(p.Pointer(), C.int(index), C.int(size)) - } -} - -func (p *qboxlayout) InsertStretch(index int, stretch int) { - if p.Pointer() != nil { - C.QBoxLayout_InsertStretch_Int_Int(p.Pointer(), C.int(index), C.int(stretch)) - } -} - -func (p *qboxlayout) InsertWidget(index int, widget QWidget, stretch int, alignment AlignmentFlag) { - if p.Pointer() != nil { - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - C.QBoxLayout_InsertWidget_Int_QWidget_Int_AlignmentFlag(p.Pointer(), C.int(index), widgetPtr, C.int(stretch), C.int(alignment)) - } -} - -func (p *qboxlayout) SetStretch(index int, stretch int) { - if p.Pointer() != nil { - C.QBoxLayout_SetStretch_Int_Int(p.Pointer(), C.int(index), C.int(stretch)) - } -} - -func (p *qboxlayout) SetStretchFactor(widget QWidget, stretch int) bool { - if p.Pointer() == nil { - return false - } else { - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - return C.QBoxLayout_SetStretchFactor_QWidget_Int(p.Pointer(), widgetPtr, C.int(stretch)) != 0 - } -} - -func (p *qboxlayout) Stretch(index int) int { - if p.Pointer() == nil { - return 0 - } - return int(C.QBoxLayout_Stretch_Int(p.Pointer(), C.int(index))) -} diff --git a/qboxlayout.h b/qboxlayout.h deleted file mode 100644 index 3e2b8d4d..00000000 --- a/qboxlayout.h +++ /dev/null @@ -1,23 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -void QBoxLayout_Destroy(QtObjectPtr ptr); -void QBoxLayout_AddLayout_QLayout_Int(QtObjectPtr ptr, QtObjectPtr layout, int stretch); -void QBoxLayout_AddSpacing_Int(QtObjectPtr ptr, int size); -void QBoxLayout_AddStretch_Int(QtObjectPtr ptr, int stretch); -void QBoxLayout_AddStrut_Int(QtObjectPtr ptr, int size); -void QBoxLayout_InsertLayout_Int_QLayout_Int(QtObjectPtr ptr, int index, QtObjectPtr layout, int stretch); -void QBoxLayout_InsertSpacing_Int_Int(QtObjectPtr ptr, int index, int size); -void QBoxLayout_InsertStretch_Int_Int(QtObjectPtr ptr, int index, int stretch); -void QBoxLayout_InsertWidget_Int_QWidget_Int_AlignmentFlag(QtObjectPtr ptr, int index, QtObjectPtr widget, int stretch, int alignment); -void QBoxLayout_SetStretch_Int_Int(QtObjectPtr ptr, int index, int stretch); -int QBoxLayout_SetStretchFactor_QWidget_Int(QtObjectPtr ptr, QtObjectPtr widget, int stretch); -int QBoxLayout_Stretch_Int(QtObjectPtr ptr, int index); - -#ifdef __cplusplus -} -#endif diff --git a/qboxlayout.moc b/qboxlayout.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/qbrush.cpp b/qbrush.cpp deleted file mode 100644 index 15994a4b..00000000 --- a/qbrush.cpp +++ /dev/null @@ -1,47 +0,0 @@ -#include "qbrush.h" -#include -#include "cgoexport.h" - - - -//Public Functions -QtObjectPtr QBrush_New() -{ - return new QBrush(); -} - -QtObjectPtr QBrush_New_BrushStyle(int style) -{ - return new QBrush(((Qt::BrushStyle)(style))); -} - -QtObjectPtr QBrush_New_GlobalColor_BrushStyle(int color, int style) -{ - return new QBrush(((Qt::GlobalColor)(color)), ((Qt::BrushStyle)(style))); -} - -void QBrush_Destroy(QtObjectPtr ptr) -{ - ((QBrush*)(ptr))->~QBrush(); -} - -int QBrush_IsOpaque(QtObjectPtr ptr) -{ - return ((QBrush*)(ptr))->isOpaque(); -} - -void QBrush_SetColor_GlobalColor(QtObjectPtr ptr, int color) -{ - ((QBrush*)(ptr))->setColor(((Qt::GlobalColor)(color))); -} - -void QBrush_SetStyle_BrushStyle(QtObjectPtr ptr, int style) -{ - ((QBrush*)(ptr))->setStyle(((Qt::BrushStyle)(style))); -} - -int QBrush_Style(QtObjectPtr ptr) -{ - return ((QBrush*)(ptr))->style(); -} - diff --git a/qbrush.go b/qbrush.go deleted file mode 100644 index 7d6a0b29..00000000 --- a/qbrush.go +++ /dev/null @@ -1,77 +0,0 @@ -package qt - -//#include "qbrush.h" -import "C" - -type qbrush struct { - ptr C.QtObjectPtr -} - -type QBrush interface { - Pointer() (ptr C.QtObjectPtr) - SetPointer(ptr C.QtObjectPtr) - Destroy() - IsOpaque() bool - SetColor(color GlobalColor) - SetStyle(style BrushStyle) - Style() BrushStyle -} - -func (p *qbrush) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qbrush) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQBrush1() QBrush { - var qbrush = new(qbrush) - qbrush.SetPointer(C.QBrush_New()) - return qbrush -} - -func NewQBrush2(style BrushStyle) QBrush { - var qbrush = new(qbrush) - qbrush.SetPointer(C.QBrush_New_BrushStyle(C.int(style))) - return qbrush -} - -func NewQBrush3(color GlobalColor, style BrushStyle) QBrush { - var qbrush = new(qbrush) - qbrush.SetPointer(C.QBrush_New_GlobalColor_BrushStyle(C.int(color), C.int(style))) - return qbrush -} - -func (p *qbrush) Destroy() { - if p.Pointer() != nil { - C.QBrush_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qbrush) IsOpaque() bool { - if p.Pointer() == nil { - return false - } - return C.QBrush_IsOpaque(p.Pointer()) != 0 -} - -func (p *qbrush) SetColor(color GlobalColor) { - if p.Pointer() != nil { - C.QBrush_SetColor_GlobalColor(p.Pointer(), C.int(color)) - } -} - -func (p *qbrush) SetStyle(style BrushStyle) { - if p.Pointer() != nil { - C.QBrush_SetStyle_BrushStyle(p.Pointer(), C.int(style)) - } -} - -func (p *qbrush) Style() BrushStyle { - if p.Pointer() == nil { - return 0 - } - return BrushStyle(C.QBrush_Style(p.Pointer())) -} diff --git a/qbrush.h b/qbrush.h deleted file mode 100644 index 9560d802..00000000 --- a/qbrush.h +++ /dev/null @@ -1,19 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QBrush_New(); -QtObjectPtr QBrush_New_BrushStyle(int style); -QtObjectPtr QBrush_New_GlobalColor_BrushStyle(int color, int style); -void QBrush_Destroy(QtObjectPtr ptr); -int QBrush_IsOpaque(QtObjectPtr ptr); -void QBrush_SetColor_GlobalColor(QtObjectPtr ptr, int color); -void QBrush_SetStyle_BrushStyle(QtObjectPtr ptr, int style); -int QBrush_Style(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qbrush.moc b/qbrush.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/qbuttongroup.cpp b/qbuttongroup.cpp deleted file mode 100644 index 007f1000..00000000 --- a/qbuttongroup.cpp +++ /dev/null @@ -1,62 +0,0 @@ -#include "qbuttongroup.h" -#include -#include "cgoexport.h" - - - -//Public Functions -QtObjectPtr QButtonGroup_New_QObject(QtObjectPtr parent) -{ - return new QButtonGroup(((QObject*)(parent))); -} - -void QButtonGroup_Destroy(QtObjectPtr ptr) -{ - ((QButtonGroup*)(ptr))->~QButtonGroup(); -} - -void QButtonGroup_AddButton_QAbstractButton_Int(QtObjectPtr ptr, QtObjectPtr button, int id) -{ - ((QButtonGroup*)(ptr))->addButton(((QAbstractButton*)(button)), id); -} - -QtObjectPtr QButtonGroup_Button_Int(QtObjectPtr ptr, int id) -{ - return ((QButtonGroup*)(ptr))->button(id); -} - -QtObjectPtr QButtonGroup_CheckedButton(QtObjectPtr ptr) -{ - return ((QButtonGroup*)(ptr))->checkedButton(); -} - -int QButtonGroup_CheckedId(QtObjectPtr ptr) -{ - return ((QButtonGroup*)(ptr))->checkedId(); -} - -int QButtonGroup_Exclusive(QtObjectPtr ptr) -{ - return ((QButtonGroup*)(ptr))->exclusive(); -} - -int QButtonGroup_Id_QAbstractButton(QtObjectPtr ptr, QtObjectPtr button) -{ - return ((QButtonGroup*)(ptr))->id(((QAbstractButton*)(button))); -} - -void QButtonGroup_RemoveButton_QAbstractButton(QtObjectPtr ptr, QtObjectPtr button) -{ - ((QButtonGroup*)(ptr))->removeButton(((QAbstractButton*)(button))); -} - -void QButtonGroup_SetExclusive_Bool(QtObjectPtr ptr, int exclusive) -{ - ((QButtonGroup*)(ptr))->setExclusive(exclusive != 0); -} - -void QButtonGroup_SetId_QAbstractButton_Int(QtObjectPtr ptr, QtObjectPtr button, int id) -{ - ((QButtonGroup*)(ptr))->setId(((QAbstractButton*)(button)), id); -} - diff --git a/qbuttongroup.go b/qbuttongroup.go deleted file mode 100644 index 46595830..00000000 --- a/qbuttongroup.go +++ /dev/null @@ -1,136 +0,0 @@ -package qt - -//#include "qbuttongroup.h" -import "C" - -type qbuttongroup struct { - qobject -} - -type QButtonGroup interface { - QObject - AddButton(button QAbstractButton, id int) - Button(id int) QAbstractButton - CheckedButton() QAbstractButton - CheckedId() int - Exclusive() bool - Id(button QAbstractButton) int - RemoveButton(button QAbstractButton) - SetExclusive(exclusive bool) - SetId(button QAbstractButton, id int) -} - -func (p *qbuttongroup) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qbuttongroup) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQButtonGroup(parent QObject) QButtonGroup { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qbuttongroup = new(qbuttongroup) - qbuttongroup.SetPointer(C.QButtonGroup_New_QObject(parentPtr)) - qbuttongroup.SetObjectName("QButtonGroup_" + randomIdentifier()) - return qbuttongroup -} - -func (p *qbuttongroup) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QButtonGroup_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qbuttongroup) AddButton(button QAbstractButton, id int) { - if p.Pointer() != nil { - var buttonPtr C.QtObjectPtr - if button != nil { - buttonPtr = button.Pointer() - } - C.QButtonGroup_AddButton_QAbstractButton_Int(p.Pointer(), buttonPtr, C.int(id)) - } -} - -func (p *qbuttongroup) Button(id int) QAbstractButton { - if p.Pointer() == nil { - return nil - } else { - var qabstractbutton = new(qabstractbutton) - qabstractbutton.SetPointer(C.QButtonGroup_Button_Int(p.Pointer(), C.int(id))) - if qabstractbutton.ObjectName() == "" { - qabstractbutton.SetObjectName("QAbstractButton_" + randomIdentifier()) - } - return qabstractbutton - } -} - -func (p *qbuttongroup) CheckedButton() QAbstractButton { - if p.Pointer() == nil { - return nil - } else { - var qabstractbutton = new(qabstractbutton) - qabstractbutton.SetPointer(C.QButtonGroup_CheckedButton(p.Pointer())) - if qabstractbutton.ObjectName() == "" { - qabstractbutton.SetObjectName("QAbstractButton_" + randomIdentifier()) - } - return qabstractbutton - } -} - -func (p *qbuttongroup) CheckedId() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QButtonGroup_CheckedId(p.Pointer())) -} - -func (p *qbuttongroup) Exclusive() bool { - if p.Pointer() == nil { - return false - } - return C.QButtonGroup_Exclusive(p.Pointer()) != 0 -} - -func (p *qbuttongroup) Id(button QAbstractButton) int { - if p.Pointer() == nil { - return 0 - } else { - var buttonPtr C.QtObjectPtr - if button != nil { - buttonPtr = button.Pointer() - } - return int(C.QButtonGroup_Id_QAbstractButton(p.Pointer(), buttonPtr)) - } -} - -func (p *qbuttongroup) RemoveButton(button QAbstractButton) { - if p.Pointer() != nil { - var buttonPtr C.QtObjectPtr - if button != nil { - buttonPtr = button.Pointer() - } - C.QButtonGroup_RemoveButton_QAbstractButton(p.Pointer(), buttonPtr) - } -} - -func (p *qbuttongroup) SetExclusive(exclusive bool) { - if p.Pointer() != nil { - C.QButtonGroup_SetExclusive_Bool(p.Pointer(), goBoolToCInt(exclusive)) - } -} - -func (p *qbuttongroup) SetId(button QAbstractButton, id int) { - if p.Pointer() != nil { - var buttonPtr C.QtObjectPtr - if button != nil { - buttonPtr = button.Pointer() - } - C.QButtonGroup_SetId_QAbstractButton_Int(p.Pointer(), buttonPtr, C.int(id)) - } -} diff --git a/qbuttongroup.h b/qbuttongroup.h deleted file mode 100644 index 401cf417..00000000 --- a/qbuttongroup.h +++ /dev/null @@ -1,22 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QButtonGroup_New_QObject(QtObjectPtr parent); -void QButtonGroup_Destroy(QtObjectPtr ptr); -void QButtonGroup_AddButton_QAbstractButton_Int(QtObjectPtr ptr, QtObjectPtr button, int id); -QtObjectPtr QButtonGroup_Button_Int(QtObjectPtr ptr, int id); -QtObjectPtr QButtonGroup_CheckedButton(QtObjectPtr ptr); -int QButtonGroup_CheckedId(QtObjectPtr ptr); -int QButtonGroup_Exclusive(QtObjectPtr ptr); -int QButtonGroup_Id_QAbstractButton(QtObjectPtr ptr, QtObjectPtr button); -void QButtonGroup_RemoveButton_QAbstractButton(QtObjectPtr ptr, QtObjectPtr button); -void QButtonGroup_SetExclusive_Bool(QtObjectPtr ptr, int exclusive); -void QButtonGroup_SetId_QAbstractButton_Int(QtObjectPtr ptr, QtObjectPtr button, int id); - -#ifdef __cplusplus -} -#endif diff --git a/qbuttongroup.moc b/qbuttongroup.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/qcheckbox.cpp b/qcheckbox.cpp deleted file mode 100644 index 792426d4..00000000 --- a/qcheckbox.cpp +++ /dev/null @@ -1,63 +0,0 @@ -#include "qcheckbox.h" -#include -#include "cgoexport.h" - -//MyQCheckBox -class MyQCheckBox: public QCheckBox { -Q_OBJECT -public: -void Signal_StateChanged() { callbackQCheckBox(this, QString("stateChanged").toUtf8().data()); }; - -signals: - -}; -#include "qcheckbox.moc" - - -//Public Functions -QtObjectPtr QCheckBox_New_QWidget(QtObjectPtr parent) -{ - return new QCheckBox(((QWidget*)(parent))); -} - -QtObjectPtr QCheckBox_New_String_QWidget(char* text, QtObjectPtr parent) -{ - return new QCheckBox(QString(text), ((QWidget*)(parent))); -} - -void QCheckBox_Destroy(QtObjectPtr ptr) -{ - ((QCheckBox*)(ptr))->~QCheckBox(); -} - -int QCheckBox_CheckState(QtObjectPtr ptr) -{ - return ((QCheckBox*)(ptr))->checkState(); -} - -int QCheckBox_IsTristate(QtObjectPtr ptr) -{ - return ((QCheckBox*)(ptr))->isTristate(); -} - -void QCheckBox_SetCheckState_CheckState(QtObjectPtr ptr, int state) -{ - ((QCheckBox*)(ptr))->setCheckState(((Qt::CheckState)(state))); -} - -void QCheckBox_SetTristate_Bool(QtObjectPtr ptr, int y) -{ - ((QCheckBox*)(ptr))->setTristate(y != 0); -} - -//Signals -void QCheckBox_ConnectSignalStateChanged(QtObjectPtr ptr) -{ - QObject::connect(((QCheckBox*)(ptr)), &QCheckBox::stateChanged, ((MyQCheckBox*)(ptr)), &MyQCheckBox::Signal_StateChanged, Qt::QueuedConnection); -} - -void QCheckBox_DisconnectSignalStateChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QCheckBox*)(ptr)), &QCheckBox::stateChanged, ((MyQCheckBox*)(ptr)), &MyQCheckBox::Signal_StateChanged); -} - diff --git a/qcheckbox.go b/qcheckbox.go deleted file mode 100644 index c2d8dc3b..00000000 --- a/qcheckbox.go +++ /dev/null @@ -1,104 +0,0 @@ -package qt - -//#include "qcheckbox.h" -import "C" - -type qcheckbox struct { - qabstractbutton -} - -type QCheckBox interface { - QAbstractButton - CheckState() CheckState - IsTristate() bool - SetCheckState(state CheckState) - SetTristate(y bool) - ConnectSignalStateChanged(f func()) - DisconnectSignalStateChanged() - SignalStateChanged() func() -} - -func (p *qcheckbox) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qcheckbox) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQCheckBox1(parent QWidget) QCheckBox { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qcheckbox = new(qcheckbox) - qcheckbox.SetPointer(C.QCheckBox_New_QWidget(parentPtr)) - qcheckbox.SetObjectName("QCheckBox_" + randomIdentifier()) - return qcheckbox -} - -func NewQCheckBox2(text string, parent QWidget) QCheckBox { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qcheckbox = new(qcheckbox) - qcheckbox.SetPointer(C.QCheckBox_New_String_QWidget(C.CString(text), parentPtr)) - qcheckbox.SetObjectName("QCheckBox_" + randomIdentifier()) - return qcheckbox -} - -func (p *qcheckbox) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QCheckBox_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qcheckbox) CheckState() CheckState { - if p.Pointer() == nil { - return 0 - } - return CheckState(C.QCheckBox_CheckState(p.Pointer())) -} - -func (p *qcheckbox) IsTristate() bool { - if p.Pointer() == nil { - return false - } - return C.QCheckBox_IsTristate(p.Pointer()) != 0 -} - -func (p *qcheckbox) SetCheckState(state CheckState) { - if p.Pointer() != nil { - C.QCheckBox_SetCheckState_CheckState(p.Pointer(), C.int(state)) - } -} - -func (p *qcheckbox) SetTristate(y bool) { - if p.Pointer() != nil { - C.QCheckBox_SetTristate_Bool(p.Pointer(), goBoolToCInt(y)) - } -} - -func (p *qcheckbox) ConnectSignalStateChanged(f func()) { - C.QCheckBox_ConnectSignalStateChanged(p.Pointer()) - connectSignal(p.ObjectName(), "stateChanged", f) -} - -func (p *qcheckbox) DisconnectSignalStateChanged() { - C.QCheckBox_DisconnectSignalStateChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "stateChanged") -} - -func (p *qcheckbox) SignalStateChanged() func() { - return getSignal(p.ObjectName(), "stateChanged") -} - -//export callbackQCheckBox -func callbackQCheckBox(ptr C.QtObjectPtr, msg *C.char) { - var qcheckbox = new(qcheckbox) - qcheckbox.SetPointer(ptr) - getSignal(qcheckbox.ObjectName(), C.GoString(msg))() -} diff --git a/qcheckbox.h b/qcheckbox.h deleted file mode 100644 index 4c36ca6f..00000000 --- a/qcheckbox.h +++ /dev/null @@ -1,21 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QCheckBox_New_QWidget(QtObjectPtr parent); -QtObjectPtr QCheckBox_New_String_QWidget(char* text, QtObjectPtr parent); -void QCheckBox_Destroy(QtObjectPtr ptr); -int QCheckBox_CheckState(QtObjectPtr ptr); -int QCheckBox_IsTristate(QtObjectPtr ptr); -void QCheckBox_SetCheckState_CheckState(QtObjectPtr ptr, int state); -void QCheckBox_SetTristate_Bool(QtObjectPtr ptr, int y); -//Signals -void QCheckBox_ConnectSignalStateChanged(QtObjectPtr ptr); -void QCheckBox_DisconnectSignalStateChanged(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qcheckbox.moc b/qcheckbox.moc deleted file mode 100644 index 7e51a2c2..00000000 --- a/qcheckbox.moc +++ /dev/null @@ -1,88 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qcheckbox.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qcheckbox.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQCheckBox_t { - QByteArrayData data[1]; - char stringdata[12]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQCheckBox_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQCheckBox_t qt_meta_stringdata_MyQCheckBox = { - { -QT_MOC_LITERAL(0, 0, 11) // "MyQCheckBox" - - }, - "MyQCheckBox" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQCheckBox[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 0, 0, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 0, // signalCount - - 0 // eod -}; - -void MyQCheckBox::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - Q_UNUSED(_o); - Q_UNUSED(_id); - Q_UNUSED(_c); - Q_UNUSED(_a); -} - -const QMetaObject MyQCheckBox::staticMetaObject = { - { &QCheckBox::staticMetaObject, qt_meta_stringdata_MyQCheckBox.data, - qt_meta_data_MyQCheckBox, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQCheckBox::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQCheckBox::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQCheckBox.stringdata)) - return static_cast(const_cast< MyQCheckBox*>(this)); - return QCheckBox::qt_metacast(_clname); -} - -int MyQCheckBox::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QCheckBox::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - return _id; -} -QT_END_MOC_NAMESPACE diff --git a/qcombobox.cpp b/qcombobox.cpp deleted file mode 100644 index 28d85d33..00000000 --- a/qcombobox.cpp +++ /dev/null @@ -1,228 +0,0 @@ -#include "qcombobox.h" -#include -#include "cgoexport.h" - -//MyQComboBox -class MyQComboBox: public QComboBox { -Q_OBJECT -public: -void Signal_CurrentTextChanged() { callbackQComboBox(this, QString("currentTextChanged").toUtf8().data()); }; -void Signal_EditTextChanged() { callbackQComboBox(this, QString("editTextChanged").toUtf8().data()); }; - -signals: -void Slot_Clear(); -void Slot_ClearEditText(); -void Slot_SetCurrentIndex(int index); - -}; -#include "qcombobox.moc" - - -//Public Functions -QtObjectPtr QComboBox_New_QWidget(QtObjectPtr parent) -{ - return new QComboBox(((QWidget*)(parent))); -} - -void QComboBox_Destroy(QtObjectPtr ptr) -{ - ((QComboBox*)(ptr))->~QComboBox(); -} - -void QComboBox_AddItems_QStringList(QtObjectPtr ptr, char* texts) -{ - ((QComboBox*)(ptr))->addItems(QString(texts).split("|", QString::SkipEmptyParts)); -} - -int QComboBox_Count(QtObjectPtr ptr) -{ - return ((QComboBox*)(ptr))->count(); -} - -int QComboBox_CurrentIndex(QtObjectPtr ptr) -{ - return ((QComboBox*)(ptr))->currentIndex(); -} - -char* QComboBox_CurrentText(QtObjectPtr ptr) -{ - return ((QComboBox*)(ptr))->currentText().toUtf8().data(); -} - -int QComboBox_DuplicatesEnabled(QtObjectPtr ptr) -{ - return ((QComboBox*)(ptr))->duplicatesEnabled(); -} - -int QComboBox_HasFrame(QtObjectPtr ptr) -{ - return ((QComboBox*)(ptr))->hasFrame(); -} - -void QComboBox_HidePopup(QtObjectPtr ptr) -{ - ((QComboBox*)(ptr))->hidePopup(); -} - -void QComboBox_InsertSeparator_Int(QtObjectPtr ptr, int index) -{ - ((QComboBox*)(ptr))->insertSeparator(index); -} - -int QComboBox_IsEditable(QtObjectPtr ptr) -{ - return ((QComboBox*)(ptr))->isEditable(); -} - -char* QComboBox_ItemText_Int(QtObjectPtr ptr, int index) -{ - return ((QComboBox*)(ptr))->itemText(index).toUtf8().data(); -} - -QtObjectPtr QComboBox_LineEdit(QtObjectPtr ptr) -{ - return ((QComboBox*)(ptr))->lineEdit(); -} - -int QComboBox_MaxCount(QtObjectPtr ptr) -{ - return ((QComboBox*)(ptr))->maxCount(); -} - -int QComboBox_MaxVisibleItems(QtObjectPtr ptr) -{ - return ((QComboBox*)(ptr))->maxVisibleItems(); -} - -int QComboBox_MinimumContentsLength(QtObjectPtr ptr) -{ - return ((QComboBox*)(ptr))->minimumContentsLength(); -} - -int QComboBox_ModelColumn(QtObjectPtr ptr) -{ - return ((QComboBox*)(ptr))->modelColumn(); -} - -void QComboBox_RemoveItem_Int(QtObjectPtr ptr, int index) -{ - ((QComboBox*)(ptr))->removeItem(index); -} - -void QComboBox_SetDuplicatesEnabled_Bool(QtObjectPtr ptr, int enable) -{ - ((QComboBox*)(ptr))->setDuplicatesEnabled(enable != 0); -} - -void QComboBox_SetEditable_Bool(QtObjectPtr ptr, int editable) -{ - ((QComboBox*)(ptr))->setEditable(editable != 0); -} - -void QComboBox_SetFrame_Bool(QtObjectPtr ptr, int frame) -{ - ((QComboBox*)(ptr))->setFrame(frame != 0); -} - -void QComboBox_SetItemText_Int_String(QtObjectPtr ptr, int index, char* text) -{ - ((QComboBox*)(ptr))->setItemText(index, QString(text)); -} - -void QComboBox_SetLineEdit_QLineEdit(QtObjectPtr ptr, QtObjectPtr edit) -{ - ((QComboBox*)(ptr))->setLineEdit(((QLineEdit*)(edit))); -} - -void QComboBox_SetMaxCount_Int(QtObjectPtr ptr, int max) -{ - ((QComboBox*)(ptr))->setMaxCount(max); -} - -void QComboBox_SetMaxVisibleItems_Int(QtObjectPtr ptr, int maxItems) -{ - ((QComboBox*)(ptr))->setMaxVisibleItems(maxItems); -} - -void QComboBox_SetMinimumContentsLength_Int(QtObjectPtr ptr, int characters) -{ - ((QComboBox*)(ptr))->setMinimumContentsLength(characters); -} - -void QComboBox_SetModelColumn_Int(QtObjectPtr ptr, int visibleColumn) -{ - ((QComboBox*)(ptr))->setModelColumn(visibleColumn); -} - -void QComboBox_ShowPopup(QtObjectPtr ptr) -{ - ((QComboBox*)(ptr))->showPopup(); -} - -//Public Slots -void QComboBox_ConnectSlotClear(QtObjectPtr ptr) -{ - QObject::connect(((MyQComboBox*)(ptr)), &MyQComboBox::Slot_Clear, ((QComboBox*)(ptr)), &QComboBox::clear, Qt::QueuedConnection); -} - -void QComboBox_DisconnectSlotClear(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQComboBox*)(ptr)), &MyQComboBox::Slot_Clear, ((QComboBox*)(ptr)), &QComboBox::clear); -} - -void QComboBox_Clear(QtObjectPtr ptr) -{ - ((MyQComboBox*)(ptr))->Slot_Clear(); -} - -void QComboBox_ConnectSlotClearEditText(QtObjectPtr ptr) -{ - QObject::connect(((MyQComboBox*)(ptr)), &MyQComboBox::Slot_ClearEditText, ((QComboBox*)(ptr)), &QComboBox::clearEditText, Qt::QueuedConnection); -} - -void QComboBox_DisconnectSlotClearEditText(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQComboBox*)(ptr)), &MyQComboBox::Slot_ClearEditText, ((QComboBox*)(ptr)), &QComboBox::clearEditText); -} - -void QComboBox_ClearEditText(QtObjectPtr ptr) -{ - ((MyQComboBox*)(ptr))->Slot_ClearEditText(); -} - -void QComboBox_ConnectSlotSetCurrentIndex(QtObjectPtr ptr) -{ - QObject::connect(((MyQComboBox*)(ptr)), &MyQComboBox::Slot_SetCurrentIndex, ((QComboBox*)(ptr)), &QComboBox::setCurrentIndex, Qt::QueuedConnection); -} - -void QComboBox_DisconnectSlotSetCurrentIndex(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQComboBox*)(ptr)), &MyQComboBox::Slot_SetCurrentIndex, ((QComboBox*)(ptr)), &QComboBox::setCurrentIndex); -} - -void QComboBox_SetCurrentIndex_Int(QtObjectPtr ptr, int index) -{ - ((MyQComboBox*)(ptr))->Slot_SetCurrentIndex(index); -} - -//Signals -void QComboBox_ConnectSignalCurrentTextChanged(QtObjectPtr ptr) -{ - QObject::connect(((QComboBox*)(ptr)), &QComboBox::currentTextChanged, ((MyQComboBox*)(ptr)), &MyQComboBox::Signal_CurrentTextChanged, Qt::QueuedConnection); -} - -void QComboBox_DisconnectSignalCurrentTextChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QComboBox*)(ptr)), &QComboBox::currentTextChanged, ((MyQComboBox*)(ptr)), &MyQComboBox::Signal_CurrentTextChanged); -} - -void QComboBox_ConnectSignalEditTextChanged(QtObjectPtr ptr) -{ - QObject::connect(((QComboBox*)(ptr)), &QComboBox::editTextChanged, ((MyQComboBox*)(ptr)), &MyQComboBox::Signal_EditTextChanged, Qt::QueuedConnection); -} - -void QComboBox_DisconnectSignalEditTextChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QComboBox*)(ptr)), &QComboBox::editTextChanged, ((MyQComboBox*)(ptr)), &MyQComboBox::Signal_EditTextChanged); -} - diff --git a/qcombobox.go b/qcombobox.go deleted file mode 100644 index f9cdd5d5..00000000 --- a/qcombobox.go +++ /dev/null @@ -1,337 +0,0 @@ -package qt - -//#include "qcombobox.h" -import "C" - -import "strings" - -type qcombobox struct { - qwidget -} - -type QComboBox interface { - QWidget - AddItems(texts []string) - Count() int - CurrentIndex() int - CurrentText() string - DuplicatesEnabled() bool - HasFrame() bool - HidePopup() - InsertSeparator(index int) - IsEditable() bool - ItemText(index int) string - LineEdit() QLineEdit - MaxCount() int - MaxVisibleItems() int - MinimumContentsLength() int - ModelColumn() int - RemoveItem(index int) - SetDuplicatesEnabled(enable bool) - SetEditable(editable bool) - SetFrame(frame bool) - SetItemText(index int, text string) - SetLineEdit(edit QLineEdit) - SetMaxCount(max int) - SetMaxVisibleItems(maxItems int) - SetMinimumContentsLength(characters int) - SetModelColumn(visibleColumn int) - ShowPopup() - ConnectSlotClear() - DisconnectSlotClear() - SlotClear() - ConnectSlotClearEditText() - DisconnectSlotClearEditText() - SlotClearEditText() - ConnectSlotSetCurrentIndex() - DisconnectSlotSetCurrentIndex() - SlotSetCurrentIndex(index int) - ConnectSignalCurrentTextChanged(f func()) - DisconnectSignalCurrentTextChanged() - SignalCurrentTextChanged() func() - ConnectSignalEditTextChanged(f func()) - DisconnectSignalEditTextChanged() - SignalEditTextChanged() func() -} - -func (p *qcombobox) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qcombobox) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQComboBox(parent QWidget) QComboBox { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qcombobox = new(qcombobox) - qcombobox.SetPointer(C.QComboBox_New_QWidget(parentPtr)) - qcombobox.SetObjectName("QComboBox_" + randomIdentifier()) - return qcombobox -} - -func (p *qcombobox) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QComboBox_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qcombobox) AddItems(texts []string) { - if p.Pointer() != nil { - C.QComboBox_AddItems_QStringList(p.Pointer(), C.CString(strings.Join(texts, "|"))) - } -} - -func (p *qcombobox) Count() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QComboBox_Count(p.Pointer())) -} - -func (p *qcombobox) CurrentIndex() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QComboBox_CurrentIndex(p.Pointer())) -} - -func (p *qcombobox) CurrentText() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QComboBox_CurrentText(p.Pointer())) -} - -func (p *qcombobox) DuplicatesEnabled() bool { - if p.Pointer() == nil { - return false - } - return C.QComboBox_DuplicatesEnabled(p.Pointer()) != 0 -} - -func (p *qcombobox) HasFrame() bool { - if p.Pointer() == nil { - return false - } - return C.QComboBox_HasFrame(p.Pointer()) != 0 -} - -func (p *qcombobox) HidePopup() { - if p.Pointer() != nil { - C.QComboBox_HidePopup(p.Pointer()) - } -} - -func (p *qcombobox) InsertSeparator(index int) { - if p.Pointer() != nil { - C.QComboBox_InsertSeparator_Int(p.Pointer(), C.int(index)) - } -} - -func (p *qcombobox) IsEditable() bool { - if p.Pointer() == nil { - return false - } - return C.QComboBox_IsEditable(p.Pointer()) != 0 -} - -func (p *qcombobox) ItemText(index int) string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QComboBox_ItemText_Int(p.Pointer(), C.int(index))) -} - -func (p *qcombobox) LineEdit() QLineEdit { - if p.Pointer() == nil { - return nil - } else { - var qlineedit = new(qlineedit) - qlineedit.SetPointer(C.QComboBox_LineEdit(p.Pointer())) - if qlineedit.ObjectName() == "" { - qlineedit.SetObjectName("QLineEdit_" + randomIdentifier()) - } - return qlineedit - } -} - -func (p *qcombobox) MaxCount() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QComboBox_MaxCount(p.Pointer())) -} - -func (p *qcombobox) MaxVisibleItems() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QComboBox_MaxVisibleItems(p.Pointer())) -} - -func (p *qcombobox) MinimumContentsLength() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QComboBox_MinimumContentsLength(p.Pointer())) -} - -func (p *qcombobox) ModelColumn() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QComboBox_ModelColumn(p.Pointer())) -} - -func (p *qcombobox) RemoveItem(index int) { - if p.Pointer() != nil { - C.QComboBox_RemoveItem_Int(p.Pointer(), C.int(index)) - } -} - -func (p *qcombobox) SetDuplicatesEnabled(enable bool) { - if p.Pointer() != nil { - C.QComboBox_SetDuplicatesEnabled_Bool(p.Pointer(), goBoolToCInt(enable)) - } -} - -func (p *qcombobox) SetEditable(editable bool) { - if p.Pointer() != nil { - C.QComboBox_SetEditable_Bool(p.Pointer(), goBoolToCInt(editable)) - } -} - -func (p *qcombobox) SetFrame(frame bool) { - if p.Pointer() != nil { - C.QComboBox_SetFrame_Bool(p.Pointer(), goBoolToCInt(frame)) - } -} - -func (p *qcombobox) SetItemText(index int, text string) { - if p.Pointer() != nil { - C.QComboBox_SetItemText_Int_String(p.Pointer(), C.int(index), C.CString(text)) - } -} - -func (p *qcombobox) SetLineEdit(edit QLineEdit) { - if p.Pointer() != nil { - var editPtr C.QtObjectPtr - if edit != nil { - editPtr = edit.Pointer() - } - C.QComboBox_SetLineEdit_QLineEdit(p.Pointer(), editPtr) - } -} - -func (p *qcombobox) SetMaxCount(max int) { - if p.Pointer() != nil { - C.QComboBox_SetMaxCount_Int(p.Pointer(), C.int(max)) - } -} - -func (p *qcombobox) SetMaxVisibleItems(maxItems int) { - if p.Pointer() != nil { - C.QComboBox_SetMaxVisibleItems_Int(p.Pointer(), C.int(maxItems)) - } -} - -func (p *qcombobox) SetMinimumContentsLength(characters int) { - if p.Pointer() != nil { - C.QComboBox_SetMinimumContentsLength_Int(p.Pointer(), C.int(characters)) - } -} - -func (p *qcombobox) SetModelColumn(visibleColumn int) { - if p.Pointer() != nil { - C.QComboBox_SetModelColumn_Int(p.Pointer(), C.int(visibleColumn)) - } -} - -func (p *qcombobox) ShowPopup() { - if p.Pointer() != nil { - C.QComboBox_ShowPopup(p.Pointer()) - } -} - -func (p *qcombobox) ConnectSlotClear() { - C.QComboBox_ConnectSlotClear(p.Pointer()) -} - -func (p *qcombobox) DisconnectSlotClear() { - C.QComboBox_DisconnectSlotClear(p.Pointer()) -} - -func (p *qcombobox) SlotClear() { - if p.Pointer() != nil { - C.QComboBox_Clear(p.Pointer()) - } -} - -func (p *qcombobox) ConnectSlotClearEditText() { - C.QComboBox_ConnectSlotClearEditText(p.Pointer()) -} - -func (p *qcombobox) DisconnectSlotClearEditText() { - C.QComboBox_DisconnectSlotClearEditText(p.Pointer()) -} - -func (p *qcombobox) SlotClearEditText() { - if p.Pointer() != nil { - C.QComboBox_ClearEditText(p.Pointer()) - } -} - -func (p *qcombobox) ConnectSlotSetCurrentIndex() { - C.QComboBox_ConnectSlotSetCurrentIndex(p.Pointer()) -} - -func (p *qcombobox) DisconnectSlotSetCurrentIndex() { - C.QComboBox_DisconnectSlotSetCurrentIndex(p.Pointer()) -} - -func (p *qcombobox) SlotSetCurrentIndex(index int) { - if p.Pointer() != nil { - C.QComboBox_SetCurrentIndex_Int(p.Pointer(), C.int(index)) - } -} - -func (p *qcombobox) ConnectSignalCurrentTextChanged(f func()) { - C.QComboBox_ConnectSignalCurrentTextChanged(p.Pointer()) - connectSignal(p.ObjectName(), "currentTextChanged", f) -} - -func (p *qcombobox) DisconnectSignalCurrentTextChanged() { - C.QComboBox_DisconnectSignalCurrentTextChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "currentTextChanged") -} - -func (p *qcombobox) SignalCurrentTextChanged() func() { - return getSignal(p.ObjectName(), "currentTextChanged") -} - -func (p *qcombobox) ConnectSignalEditTextChanged(f func()) { - C.QComboBox_ConnectSignalEditTextChanged(p.Pointer()) - connectSignal(p.ObjectName(), "editTextChanged", f) -} - -func (p *qcombobox) DisconnectSignalEditTextChanged() { - C.QComboBox_DisconnectSignalEditTextChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "editTextChanged") -} - -func (p *qcombobox) SignalEditTextChanged() func() { - return getSignal(p.ObjectName(), "editTextChanged") -} - -//export callbackQComboBox -func callbackQComboBox(ptr C.QtObjectPtr, msg *C.char) { - var qcombobox = new(qcombobox) - qcombobox.SetPointer(ptr) - getSignal(qcombobox.ObjectName(), C.GoString(msg))() -} diff --git a/qcombobox.h b/qcombobox.h deleted file mode 100644 index d72afc94..00000000 --- a/qcombobox.h +++ /dev/null @@ -1,54 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QComboBox_New_QWidget(QtObjectPtr parent); -void QComboBox_Destroy(QtObjectPtr ptr); -void QComboBox_AddItems_QStringList(QtObjectPtr ptr, char* texts); -int QComboBox_Count(QtObjectPtr ptr); -int QComboBox_CurrentIndex(QtObjectPtr ptr); -char* QComboBox_CurrentText(QtObjectPtr ptr); -int QComboBox_DuplicatesEnabled(QtObjectPtr ptr); -int QComboBox_HasFrame(QtObjectPtr ptr); -void QComboBox_HidePopup(QtObjectPtr ptr); -void QComboBox_InsertSeparator_Int(QtObjectPtr ptr, int index); -int QComboBox_IsEditable(QtObjectPtr ptr); -char* QComboBox_ItemText_Int(QtObjectPtr ptr, int index); -QtObjectPtr QComboBox_LineEdit(QtObjectPtr ptr); -int QComboBox_MaxCount(QtObjectPtr ptr); -int QComboBox_MaxVisibleItems(QtObjectPtr ptr); -int QComboBox_MinimumContentsLength(QtObjectPtr ptr); -int QComboBox_ModelColumn(QtObjectPtr ptr); -void QComboBox_RemoveItem_Int(QtObjectPtr ptr, int index); -void QComboBox_SetDuplicatesEnabled_Bool(QtObjectPtr ptr, int enable); -void QComboBox_SetEditable_Bool(QtObjectPtr ptr, int editable); -void QComboBox_SetFrame_Bool(QtObjectPtr ptr, int frame); -void QComboBox_SetItemText_Int_String(QtObjectPtr ptr, int index, char* text); -void QComboBox_SetLineEdit_QLineEdit(QtObjectPtr ptr, QtObjectPtr edit); -void QComboBox_SetMaxCount_Int(QtObjectPtr ptr, int max); -void QComboBox_SetMaxVisibleItems_Int(QtObjectPtr ptr, int maxItems); -void QComboBox_SetMinimumContentsLength_Int(QtObjectPtr ptr, int characters); -void QComboBox_SetModelColumn_Int(QtObjectPtr ptr, int visibleColumn); -void QComboBox_ShowPopup(QtObjectPtr ptr); -//Public Slots -void QComboBox_ConnectSlotClear(QtObjectPtr ptr); -void QComboBox_DisconnectSlotClear(QtObjectPtr ptr); -void QComboBox_Clear(QtObjectPtr ptr); -void QComboBox_ConnectSlotClearEditText(QtObjectPtr ptr); -void QComboBox_DisconnectSlotClearEditText(QtObjectPtr ptr); -void QComboBox_ClearEditText(QtObjectPtr ptr); -void QComboBox_ConnectSlotSetCurrentIndex(QtObjectPtr ptr); -void QComboBox_DisconnectSlotSetCurrentIndex(QtObjectPtr ptr); -void QComboBox_SetCurrentIndex_Int(QtObjectPtr ptr, int index); -//Signals -void QComboBox_ConnectSignalCurrentTextChanged(QtObjectPtr ptr); -void QComboBox_DisconnectSignalCurrentTextChanged(QtObjectPtr ptr); -void QComboBox_ConnectSignalEditTextChanged(QtObjectPtr ptr); -void QComboBox_DisconnectSignalEditTextChanged(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qcombobox.moc b/qcombobox.moc deleted file mode 100644 index fc30ec29..00000000 --- a/qcombobox.moc +++ /dev/null @@ -1,158 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qcombobox.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qcombobox.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQComboBox_t { - QByteArrayData data[6]; - char stringdata[70]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQComboBox_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQComboBox_t qt_meta_stringdata_MyQComboBox = { - { -QT_MOC_LITERAL(0, 0, 11), // "MyQComboBox" -QT_MOC_LITERAL(1, 12, 10), // "Slot_Clear" -QT_MOC_LITERAL(2, 23, 0), // "" -QT_MOC_LITERAL(3, 24, 18), // "Slot_ClearEditText" -QT_MOC_LITERAL(4, 43, 20), // "Slot_SetCurrentIndex" -QT_MOC_LITERAL(5, 64, 5) // "index" - - }, - "MyQComboBox\0Slot_Clear\0\0Slot_ClearEditText\0" - "Slot_SetCurrentIndex\0index" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQComboBox[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 3, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 3, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 0, 29, 2, 0x06 /* Public */, - 3, 0, 30, 2, 0x06 /* Public */, - 4, 1, 31, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, QMetaType::Int, 5, - - 0 // eod -}; - -void MyQComboBox::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQComboBox *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_Clear(); break; - case 1: _t->Slot_ClearEditText(); break; - case 2: _t->Slot_SetCurrentIndex((*reinterpret_cast< int(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQComboBox::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQComboBox::Slot_Clear)) { - *result = 0; - } - } - { - typedef void (MyQComboBox::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQComboBox::Slot_ClearEditText)) { - *result = 1; - } - } - { - typedef void (MyQComboBox::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQComboBox::Slot_SetCurrentIndex)) { - *result = 2; - } - } - } -} - -const QMetaObject MyQComboBox::staticMetaObject = { - { &QComboBox::staticMetaObject, qt_meta_stringdata_MyQComboBox.data, - qt_meta_data_MyQComboBox, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQComboBox::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQComboBox::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQComboBox.stringdata)) - return static_cast(const_cast< MyQComboBox*>(this)); - return QComboBox::qt_metacast(_clname); -} - -int MyQComboBox::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QComboBox::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 3) - qt_static_metacall(this, _c, _id, _a); - _id -= 3; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 3) - *reinterpret_cast(_a[0]) = -1; - _id -= 3; - } - return _id; -} - -// SIGNAL 0 -void MyQComboBox::Slot_Clear() -{ - QMetaObject::activate(this, &staticMetaObject, 0, 0); -} - -// SIGNAL 1 -void MyQComboBox::Slot_ClearEditText() -{ - QMetaObject::activate(this, &staticMetaObject, 1, 0); -} - -// SIGNAL 2 -void MyQComboBox::Slot_SetCurrentIndex(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 2, _a); -} -QT_END_MOC_NAMESPACE diff --git a/qcoreapplication.cpp b/qcoreapplication.cpp deleted file mode 100644 index fd7bb3ab..00000000 --- a/qcoreapplication.cpp +++ /dev/null @@ -1,148 +0,0 @@ -#include "qcoreapplication.h" -#include -#include "cgoexport.h" - - - -//Public Functions -QtObjectPtr QCoreApplication_New_Int_String(int argc, char* argv) -{ - return new QCoreApplication(argc, ((char**)(argv))); -} - -void QCoreApplication_Destroy(QtObjectPtr ptr) -{ - ((QCoreApplication*)(ptr))->~QCoreApplication(); -} - -//Static Public Members -void QCoreApplication_AddLibraryPath_String(char* path) -{ - QCoreApplication::addLibraryPath(QString(path)); -} - -char* QCoreApplication_ApplicationDirPath() -{ - return QCoreApplication::applicationDirPath().toUtf8().data(); -} - -char* QCoreApplication_ApplicationFilePath() -{ - return QCoreApplication::applicationFilePath().toUtf8().data(); -} - -char* QCoreApplication_ApplicationName() -{ - return QCoreApplication::applicationName().toUtf8().data(); -} - -char* QCoreApplication_ApplicationVersion() -{ - return QCoreApplication::applicationVersion().toUtf8().data(); -} - -int QCoreApplication_ClosingDown() -{ - return QCoreApplication::closingDown(); -} - -int QCoreApplication_Exec() -{ - return QCoreApplication::exec(); -} - -void QCoreApplication_Exit_Int(int returnCode) -{ - QCoreApplication::exit(returnCode); -} - -QtObjectPtr QCoreApplication_Instance() -{ - return QCoreApplication::instance(); -} - -int QCoreApplication_IsQuitLockEnabled() -{ - return QCoreApplication::isQuitLockEnabled(); -} - -int QCoreApplication_IsSetuidAllowed() -{ - return QCoreApplication::isSetuidAllowed(); -} - -char* QCoreApplication_OrganizationDomain() -{ - return QCoreApplication::organizationDomain().toUtf8().data(); -} - -char* QCoreApplication_OrganizationName() -{ - return QCoreApplication::organizationName().toUtf8().data(); -} - -void QCoreApplication_RemoveLibraryPath_String(char* path) -{ - QCoreApplication::removeLibraryPath(QString(path)); -} - -void QCoreApplication_RemovePostedEvents_QObject_Int(QtObjectPtr receiver, int eventType) -{ - QCoreApplication::removePostedEvents(((QObject*)(receiver)), eventType); -} - -void QCoreApplication_SendPostedEvents_QObject_Int(QtObjectPtr receiver, int event_type) -{ - QCoreApplication::sendPostedEvents(((QObject*)(receiver)), event_type); -} - -void QCoreApplication_SetApplicationName_String(char* application) -{ - QCoreApplication::setApplicationName(QString(application)); -} - -void QCoreApplication_SetApplicationVersion_String(char* version) -{ - QCoreApplication::setApplicationVersion(QString(version)); -} - -void QCoreApplication_SetAttribute_ApplicationAttribute_Bool(int attribute, int on) -{ - QCoreApplication::setAttribute(((Qt::ApplicationAttribute)(attribute)), on != 0); -} - -void QCoreApplication_SetOrganizationDomain_String(char* orgDomain) -{ - QCoreApplication::setOrganizationDomain(QString(orgDomain)); -} - -void QCoreApplication_SetOrganizationName_String(char* orgName) -{ - QCoreApplication::setOrganizationName(QString(orgName)); -} - -void QCoreApplication_SetQuitLockEnabled_Bool(int enabled) -{ - QCoreApplication::setQuitLockEnabled(enabled != 0); -} - -void QCoreApplication_SetSetuidAllowed_Bool(int allow) -{ - QCoreApplication::setSetuidAllowed(allow != 0); -} - -int QCoreApplication_StartingUp() -{ - return QCoreApplication::startingUp(); -} - -int QCoreApplication_TestAttribute_ApplicationAttribute(int attribute) -{ - return QCoreApplication::testAttribute(((Qt::ApplicationAttribute)(attribute))); -} - -char* QCoreApplication_Translate_String_String_String_Int(char* context, char* sourceText, char* disambiguation, int n) -{ - return QCoreApplication::translate(context, sourceText, disambiguation, n).toUtf8().data(); -} - diff --git a/qcoreapplication.go b/qcoreapplication.go deleted file mode 100644 index abf6df8f..00000000 --- a/qcoreapplication.go +++ /dev/null @@ -1,152 +0,0 @@ -package qt - -//#include "qcoreapplication.h" -import "C" - -type qcoreapplication struct { - qobject -} - -type QCoreApplication interface { - QObject -} - -func (p *qcoreapplication) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qcoreapplication) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQCoreApplication(argc int, argv string) QCoreApplication { - var qcoreapplication = new(qcoreapplication) - qcoreapplication.SetPointer(C.QCoreApplication_New_Int_String(C.int(argc), C.CString(argv))) - qcoreapplication.SetObjectName("QCoreApplication_" + randomIdentifier()) - return qcoreapplication -} - -func (p *qcoreapplication) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QCoreApplication_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func QCoreApplication_AddLibraryPath(path string) { - C.QCoreApplication_AddLibraryPath_String(C.CString(path)) -} - -func QCoreApplication_ApplicationDirPath() string { - return C.GoString(C.QCoreApplication_ApplicationDirPath()) -} - -func QCoreApplication_ApplicationFilePath() string { - return C.GoString(C.QCoreApplication_ApplicationFilePath()) -} - -func QCoreApplication_ApplicationName() string { - return C.GoString(C.QCoreApplication_ApplicationName()) -} - -func QCoreApplication_ApplicationVersion() string { - return C.GoString(C.QCoreApplication_ApplicationVersion()) -} - -func QCoreApplication_ClosingDown() bool { - return C.QCoreApplication_ClosingDown() != 0 -} - -func QCoreApplication_Exec() int { - return int(C.QCoreApplication_Exec()) -} - -func QCoreApplication_Exit(returnCode int) { - C.QCoreApplication_Exit_Int(C.int(returnCode)) -} - -func QCoreApplication_Instance() QCoreApplication { - var qcoreapplication = new(qcoreapplication) - qcoreapplication.SetPointer(C.QCoreApplication_Instance()) - if qcoreapplication.ObjectName() == "" { - qcoreapplication.SetObjectName("QCoreApplication_" + randomIdentifier()) - } - return qcoreapplication -} - -func QCoreApplication_IsQuitLockEnabled() bool { - return C.QCoreApplication_IsQuitLockEnabled() != 0 -} - -func QCoreApplication_IsSetuidAllowed() bool { - return C.QCoreApplication_IsSetuidAllowed() != 0 -} - -func QCoreApplication_OrganizationDomain() string { - return C.GoString(C.QCoreApplication_OrganizationDomain()) -} - -func QCoreApplication_OrganizationName() string { - return C.GoString(C.QCoreApplication_OrganizationName()) -} - -func QCoreApplication_RemoveLibraryPath(path string) { - C.QCoreApplication_RemoveLibraryPath_String(C.CString(path)) -} - -func QCoreApplication_RemovePostedEvents(receiver QObject, eventType int) { - var receiverPtr C.QtObjectPtr - if receiver != nil { - receiverPtr = receiver.Pointer() - } - C.QCoreApplication_RemovePostedEvents_QObject_Int(receiverPtr, C.int(eventType)) -} - -func QCoreApplication_SendPostedEvents(receiver QObject, event_type int) { - var receiverPtr C.QtObjectPtr - if receiver != nil { - receiverPtr = receiver.Pointer() - } - C.QCoreApplication_SendPostedEvents_QObject_Int(receiverPtr, C.int(event_type)) -} - -func QCoreApplication_SetApplicationName(application string) { - C.QCoreApplication_SetApplicationName_String(C.CString(application)) -} - -func QCoreApplication_SetApplicationVersion(version string) { - C.QCoreApplication_SetApplicationVersion_String(C.CString(version)) -} - -func QCoreApplication_SetAttribute(attribute ApplicationAttribute, on bool) { - C.QCoreApplication_SetAttribute_ApplicationAttribute_Bool(C.int(attribute), goBoolToCInt(on)) -} - -func QCoreApplication_SetOrganizationDomain(orgDomain string) { - C.QCoreApplication_SetOrganizationDomain_String(C.CString(orgDomain)) -} - -func QCoreApplication_SetOrganizationName(orgName string) { - C.QCoreApplication_SetOrganizationName_String(C.CString(orgName)) -} - -func QCoreApplication_SetQuitLockEnabled(enabled bool) { - C.QCoreApplication_SetQuitLockEnabled_Bool(goBoolToCInt(enabled)) -} - -func QCoreApplication_SetSetuidAllowed(allow bool) { - C.QCoreApplication_SetSetuidAllowed_Bool(goBoolToCInt(allow)) -} - -func QCoreApplication_StartingUp() bool { - return C.QCoreApplication_StartingUp() != 0 -} - -func QCoreApplication_TestAttribute(attribute ApplicationAttribute) bool { - return C.QCoreApplication_TestAttribute_ApplicationAttribute(C.int(attribute)) != 0 -} - -func QCoreApplication_Translate(context string, sourceText string, disambiguation string, n int) string { - return C.GoString(C.QCoreApplication_Translate_String_String_String_Int(C.CString(context), C.CString(sourceText), C.CString(disambiguation), C.int(n))) -} diff --git a/qcoreapplication.h b/qcoreapplication.h deleted file mode 100644 index 8aa88efc..00000000 --- a/qcoreapplication.h +++ /dev/null @@ -1,40 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QCoreApplication_New_Int_String(int argc, char* argv); -void QCoreApplication_Destroy(QtObjectPtr ptr); -//Static Public Members -void QCoreApplication_AddLibraryPath_String(char* path); -char* QCoreApplication_ApplicationDirPath(); -char* QCoreApplication_ApplicationFilePath(); -char* QCoreApplication_ApplicationName(); -char* QCoreApplication_ApplicationVersion(); -int QCoreApplication_ClosingDown(); -int QCoreApplication_Exec(); -void QCoreApplication_Exit_Int(int returnCode); -QtObjectPtr QCoreApplication_Instance(); -int QCoreApplication_IsQuitLockEnabled(); -int QCoreApplication_IsSetuidAllowed(); -char* QCoreApplication_OrganizationDomain(); -char* QCoreApplication_OrganizationName(); -void QCoreApplication_RemoveLibraryPath_String(char* path); -void QCoreApplication_RemovePostedEvents_QObject_Int(QtObjectPtr receiver, int eventType); -void QCoreApplication_SendPostedEvents_QObject_Int(QtObjectPtr receiver, int event_type); -void QCoreApplication_SetApplicationName_String(char* application); -void QCoreApplication_SetApplicationVersion_String(char* version); -void QCoreApplication_SetAttribute_ApplicationAttribute_Bool(int attribute, int on); -void QCoreApplication_SetOrganizationDomain_String(char* orgDomain); -void QCoreApplication_SetOrganizationName_String(char* orgName); -void QCoreApplication_SetQuitLockEnabled_Bool(int enabled); -void QCoreApplication_SetSetuidAllowed_Bool(int allow); -int QCoreApplication_StartingUp(); -int QCoreApplication_TestAttribute_ApplicationAttribute(int attribute); -char* QCoreApplication_Translate_String_String_String_Int(char* context, char* sourceText, char* disambiguation, int n); - -#ifdef __cplusplus -} -#endif diff --git a/qcoreapplication.moc b/qcoreapplication.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/qdesktopservices.cpp b/qdesktopservices.cpp deleted file mode 100644 index 83c09727..00000000 --- a/qdesktopservices.cpp +++ /dev/null @@ -1,22 +0,0 @@ -#include "qdesktopservices.h" -#include -#include "cgoexport.h" - - -#include -//Static Public Members -int QDesktopServices_OpenUrl_String(char* url) -{ - return QDesktopServices::openUrl(QUrl(QString(url))); -} - -void QDesktopServices_SetUrlHandler_String_QObject_String(char* scheme, QtObjectPtr receiver, char* method) -{ - QDesktopServices::setUrlHandler(QString(scheme), ((QObject*)(receiver)), method); -} - -void QDesktopServices_UnsetUrlHandler_String(char* scheme) -{ - QDesktopServices::unsetUrlHandler(QString(scheme)); -} - diff --git a/qdesktopservices.go b/qdesktopservices.go deleted file mode 100644 index b05ce980..00000000 --- a/qdesktopservices.go +++ /dev/null @@ -1,20 +0,0 @@ -package qt - -//#include "qdesktopservices.h" -import "C" - -func QDesktopServices_OpenUrl(url string) bool { - return C.QDesktopServices_OpenUrl_String(C.CString(url)) != 0 -} - -func QDesktopServices_SetUrlHandler(scheme string, receiver QObject, method string) { - var receiverPtr C.QtObjectPtr - if receiver != nil { - receiverPtr = receiver.Pointer() - } - C.QDesktopServices_SetUrlHandler_String_QObject_String(C.CString(scheme), receiverPtr, C.CString(method)) -} - -func QDesktopServices_UnsetUrlHandler(scheme string) { - C.QDesktopServices_UnsetUrlHandler_String(C.CString(scheme)) -} diff --git a/qdesktopservices.h b/qdesktopservices.h deleted file mode 100644 index d5be291f..00000000 --- a/qdesktopservices.h +++ /dev/null @@ -1,14 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Static Public Members -int QDesktopServices_OpenUrl_String(char* url); -void QDesktopServices_SetUrlHandler_String_QObject_String(char* scheme, QtObjectPtr receiver, char* method); -void QDesktopServices_UnsetUrlHandler_String(char* scheme); - -#ifdef __cplusplus -} -#endif diff --git a/qdesktopservices.moc b/qdesktopservices.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/qdialog.cpp b/qdialog.cpp deleted file mode 100644 index 1009fd81..00000000 --- a/qdialog.cpp +++ /dev/null @@ -1,166 +0,0 @@ -#include "qdialog.h" -#include -#include "cgoexport.h" - -//MyQDialog -class MyQDialog: public QDialog { -Q_OBJECT -public: -void Signal_Accepted() { callbackQDialog(this, QString("accepted").toUtf8().data()); }; -void Signal_Finished() { callbackQDialog(this, QString("finished").toUtf8().data()); }; -void Signal_Rejected() { callbackQDialog(this, QString("rejected").toUtf8().data()); }; - -signals: -void Slot_Accept(); -void Slot_Done(int r); -void Slot_Exec(); -void Slot_Open(); -void Slot_Reject(); - -}; -#include "qdialog.moc" - - -//Public Functions -QtObjectPtr QDialog_New_QWidget_WindowType(QtObjectPtr parent, int f) -{ - return new QDialog(((QWidget*)(parent)), ((Qt::WindowType)(f))); -} - -void QDialog_Destroy(QtObjectPtr ptr) -{ - ((QDialog*)(ptr))->~QDialog(); -} - -int QDialog_IsSizeGripEnabled(QtObjectPtr ptr) -{ - return ((QDialog*)(ptr))->isSizeGripEnabled(); -} - -int QDialog_Result(QtObjectPtr ptr) -{ - return ((QDialog*)(ptr))->result(); -} - -void QDialog_SetModal_Bool(QtObjectPtr ptr, int modal) -{ - ((QDialog*)(ptr))->setModal(modal != 0); -} - -void QDialog_SetResult_Int(QtObjectPtr ptr, int i) -{ - ((QDialog*)(ptr))->setResult(i); -} - -void QDialog_SetSizeGripEnabled_Bool(QtObjectPtr ptr, int sizeGripEnabled) -{ - ((QDialog*)(ptr))->setSizeGripEnabled(sizeGripEnabled != 0); -} - -//Public Slots -void QDialog_ConnectSlotAccept(QtObjectPtr ptr) -{ - QObject::connect(((MyQDialog*)(ptr)), &MyQDialog::Slot_Accept, ((QDialog*)(ptr)), &QDialog::accept, Qt::QueuedConnection); -} - -void QDialog_DisconnectSlotAccept(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQDialog*)(ptr)), &MyQDialog::Slot_Accept, ((QDialog*)(ptr)), &QDialog::accept); -} - -void QDialog_Accept(QtObjectPtr ptr) -{ - ((MyQDialog*)(ptr))->Slot_Accept(); -} - -void QDialog_ConnectSlotDone(QtObjectPtr ptr) -{ - QObject::connect(((MyQDialog*)(ptr)), &MyQDialog::Slot_Done, ((QDialog*)(ptr)), &QDialog::done, Qt::QueuedConnection); -} - -void QDialog_DisconnectSlotDone(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQDialog*)(ptr)), &MyQDialog::Slot_Done, ((QDialog*)(ptr)), &QDialog::done); -} - -void QDialog_Done_Int(QtObjectPtr ptr, int r) -{ - ((MyQDialog*)(ptr))->Slot_Done(r); -} - -void QDialog_ConnectSlotExec(QtObjectPtr ptr) -{ - QObject::connect(((MyQDialog*)(ptr)), &MyQDialog::Slot_Exec, ((QDialog*)(ptr)), &QDialog::exec, Qt::QueuedConnection); -} - -void QDialog_DisconnectSlotExec(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQDialog*)(ptr)), &MyQDialog::Slot_Exec, ((QDialog*)(ptr)), &QDialog::exec); -} - -void QDialog_Exec(QtObjectPtr ptr) -{ - return ((MyQDialog*)(ptr))->Slot_Exec(); -} - -void QDialog_ConnectSlotOpen(QtObjectPtr ptr) -{ - QObject::connect(((MyQDialog*)(ptr)), &MyQDialog::Slot_Open, ((QDialog*)(ptr)), &QDialog::open, Qt::QueuedConnection); -} - -void QDialog_DisconnectSlotOpen(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQDialog*)(ptr)), &MyQDialog::Slot_Open, ((QDialog*)(ptr)), &QDialog::open); -} - -void QDialog_Open(QtObjectPtr ptr) -{ - ((MyQDialog*)(ptr))->Slot_Open(); -} - -void QDialog_ConnectSlotReject(QtObjectPtr ptr) -{ - QObject::connect(((MyQDialog*)(ptr)), &MyQDialog::Slot_Reject, ((QDialog*)(ptr)), &QDialog::reject, Qt::QueuedConnection); -} - -void QDialog_DisconnectSlotReject(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQDialog*)(ptr)), &MyQDialog::Slot_Reject, ((QDialog*)(ptr)), &QDialog::reject); -} - -void QDialog_Reject(QtObjectPtr ptr) -{ - ((MyQDialog*)(ptr))->Slot_Reject(); -} - -//Signals -void QDialog_ConnectSignalAccepted(QtObjectPtr ptr) -{ - QObject::connect(((QDialog*)(ptr)), &QDialog::accepted, ((MyQDialog*)(ptr)), &MyQDialog::Signal_Accepted, Qt::QueuedConnection); -} - -void QDialog_DisconnectSignalAccepted(QtObjectPtr ptr) -{ - QObject::disconnect(((QDialog*)(ptr)), &QDialog::accepted, ((MyQDialog*)(ptr)), &MyQDialog::Signal_Accepted); -} - -void QDialog_ConnectSignalFinished(QtObjectPtr ptr) -{ - QObject::connect(((QDialog*)(ptr)), &QDialog::finished, ((MyQDialog*)(ptr)), &MyQDialog::Signal_Finished, Qt::QueuedConnection); -} - -void QDialog_DisconnectSignalFinished(QtObjectPtr ptr) -{ - QObject::disconnect(((QDialog*)(ptr)), &QDialog::finished, ((MyQDialog*)(ptr)), &MyQDialog::Signal_Finished); -} - -void QDialog_ConnectSignalRejected(QtObjectPtr ptr) -{ - QObject::connect(((QDialog*)(ptr)), &QDialog::rejected, ((MyQDialog*)(ptr)), &MyQDialog::Signal_Rejected, Qt::QueuedConnection); -} - -void QDialog_DisconnectSignalRejected(QtObjectPtr ptr) -{ - QObject::disconnect(((QDialog*)(ptr)), &QDialog::rejected, ((MyQDialog*)(ptr)), &MyQDialog::Signal_Rejected); -} - diff --git a/qdialog.go b/qdialog.go deleted file mode 100644 index 339ead7c..00000000 --- a/qdialog.go +++ /dev/null @@ -1,219 +0,0 @@ -package qt - -//#include "qdialog.h" -import "C" - -type qdialog struct { - qwidget -} - -type QDialog interface { - QWidget - IsSizeGripEnabled() bool - Result() int - SetModal(modal bool) - SetResult(i int) - SetSizeGripEnabled(sizeGripEnabled bool) - ConnectSlotAccept() - DisconnectSlotAccept() - SlotAccept() - ConnectSlotDone() - DisconnectSlotDone() - SlotDone(r int) - ConnectSlotExec() - DisconnectSlotExec() - SlotExec() - ConnectSlotOpen() - DisconnectSlotOpen() - SlotOpen() - ConnectSlotReject() - DisconnectSlotReject() - SlotReject() - ConnectSignalAccepted(f func()) - DisconnectSignalAccepted() - SignalAccepted() func() - ConnectSignalFinished(f func()) - DisconnectSignalFinished() - SignalFinished() func() - ConnectSignalRejected(f func()) - DisconnectSignalRejected() - SignalRejected() func() -} - -func (p *qdialog) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qdialog) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQDialog(parent QWidget, f WindowType) QDialog { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qdialog = new(qdialog) - qdialog.SetPointer(C.QDialog_New_QWidget_WindowType(parentPtr, C.int(f))) - qdialog.SetObjectName("QDialog_" + randomIdentifier()) - return qdialog -} - -func (p *qdialog) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QDialog_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qdialog) IsSizeGripEnabled() bool { - if p.Pointer() == nil { - return false - } - return C.QDialog_IsSizeGripEnabled(p.Pointer()) != 0 -} - -func (p *qdialog) Result() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QDialog_Result(p.Pointer())) -} - -func (p *qdialog) SetModal(modal bool) { - if p.Pointer() != nil { - C.QDialog_SetModal_Bool(p.Pointer(), goBoolToCInt(modal)) - } -} - -func (p *qdialog) SetResult(i int) { - if p.Pointer() != nil { - C.QDialog_SetResult_Int(p.Pointer(), C.int(i)) - } -} - -func (p *qdialog) SetSizeGripEnabled(sizeGripEnabled bool) { - if p.Pointer() != nil { - C.QDialog_SetSizeGripEnabled_Bool(p.Pointer(), goBoolToCInt(sizeGripEnabled)) - } -} - -func (p *qdialog) ConnectSlotAccept() { - C.QDialog_ConnectSlotAccept(p.Pointer()) -} - -func (p *qdialog) DisconnectSlotAccept() { - C.QDialog_DisconnectSlotAccept(p.Pointer()) -} - -func (p *qdialog) SlotAccept() { - if p.Pointer() != nil { - C.QDialog_Accept(p.Pointer()) - } -} - -func (p *qdialog) ConnectSlotDone() { - C.QDialog_ConnectSlotDone(p.Pointer()) -} - -func (p *qdialog) DisconnectSlotDone() { - C.QDialog_DisconnectSlotDone(p.Pointer()) -} - -func (p *qdialog) SlotDone(r int) { - if p.Pointer() != nil { - C.QDialog_Done_Int(p.Pointer(), C.int(r)) - } -} - -func (p *qdialog) ConnectSlotExec() { - C.QDialog_ConnectSlotExec(p.Pointer()) -} - -func (p *qdialog) DisconnectSlotExec() { - C.QDialog_DisconnectSlotExec(p.Pointer()) -} - -func (p *qdialog) SlotExec() { - if p.Pointer() != nil { - C.QDialog_Exec(p.Pointer()) - } -} - -func (p *qdialog) ConnectSlotOpen() { - C.QDialog_ConnectSlotOpen(p.Pointer()) -} - -func (p *qdialog) DisconnectSlotOpen() { - C.QDialog_DisconnectSlotOpen(p.Pointer()) -} - -func (p *qdialog) SlotOpen() { - if p.Pointer() != nil { - C.QDialog_Open(p.Pointer()) - } -} - -func (p *qdialog) ConnectSlotReject() { - C.QDialog_ConnectSlotReject(p.Pointer()) -} - -func (p *qdialog) DisconnectSlotReject() { - C.QDialog_DisconnectSlotReject(p.Pointer()) -} - -func (p *qdialog) SlotReject() { - if p.Pointer() != nil { - C.QDialog_Reject(p.Pointer()) - } -} - -func (p *qdialog) ConnectSignalAccepted(f func()) { - C.QDialog_ConnectSignalAccepted(p.Pointer()) - connectSignal(p.ObjectName(), "accepted", f) -} - -func (p *qdialog) DisconnectSignalAccepted() { - C.QDialog_DisconnectSignalAccepted(p.Pointer()) - disconnectSignal(p.ObjectName(), "accepted") -} - -func (p *qdialog) SignalAccepted() func() { - return getSignal(p.ObjectName(), "accepted") -} - -func (p *qdialog) ConnectSignalFinished(f func()) { - C.QDialog_ConnectSignalFinished(p.Pointer()) - connectSignal(p.ObjectName(), "finished", f) -} - -func (p *qdialog) DisconnectSignalFinished() { - C.QDialog_DisconnectSignalFinished(p.Pointer()) - disconnectSignal(p.ObjectName(), "finished") -} - -func (p *qdialog) SignalFinished() func() { - return getSignal(p.ObjectName(), "finished") -} - -func (p *qdialog) ConnectSignalRejected(f func()) { - C.QDialog_ConnectSignalRejected(p.Pointer()) - connectSignal(p.ObjectName(), "rejected", f) -} - -func (p *qdialog) DisconnectSignalRejected() { - C.QDialog_DisconnectSignalRejected(p.Pointer()) - disconnectSignal(p.ObjectName(), "rejected") -} - -func (p *qdialog) SignalRejected() func() { - return getSignal(p.ObjectName(), "rejected") -} - -//export callbackQDialog -func callbackQDialog(ptr C.QtObjectPtr, msg *C.char) { - var qdialog = new(qdialog) - qdialog.SetPointer(ptr) - getSignal(qdialog.ObjectName(), C.GoString(msg))() -} diff --git a/qdialog.h b/qdialog.h deleted file mode 100644 index b93f7039..00000000 --- a/qdialog.h +++ /dev/null @@ -1,41 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QDialog_New_QWidget_WindowType(QtObjectPtr parent, int f); -void QDialog_Destroy(QtObjectPtr ptr); -int QDialog_IsSizeGripEnabled(QtObjectPtr ptr); -int QDialog_Result(QtObjectPtr ptr); -void QDialog_SetModal_Bool(QtObjectPtr ptr, int modal); -void QDialog_SetResult_Int(QtObjectPtr ptr, int i); -void QDialog_SetSizeGripEnabled_Bool(QtObjectPtr ptr, int sizeGripEnabled); -//Public Slots -void QDialog_ConnectSlotAccept(QtObjectPtr ptr); -void QDialog_DisconnectSlotAccept(QtObjectPtr ptr); -void QDialog_Accept(QtObjectPtr ptr); -void QDialog_ConnectSlotDone(QtObjectPtr ptr); -void QDialog_DisconnectSlotDone(QtObjectPtr ptr); -void QDialog_Done_Int(QtObjectPtr ptr, int r); -void QDialog_ConnectSlotExec(QtObjectPtr ptr); -void QDialog_DisconnectSlotExec(QtObjectPtr ptr); -void QDialog_Exec(QtObjectPtr ptr); -void QDialog_ConnectSlotOpen(QtObjectPtr ptr); -void QDialog_DisconnectSlotOpen(QtObjectPtr ptr); -void QDialog_Open(QtObjectPtr ptr); -void QDialog_ConnectSlotReject(QtObjectPtr ptr); -void QDialog_DisconnectSlotReject(QtObjectPtr ptr); -void QDialog_Reject(QtObjectPtr ptr); -//Signals -void QDialog_ConnectSignalAccepted(QtObjectPtr ptr); -void QDialog_DisconnectSignalAccepted(QtObjectPtr ptr); -void QDialog_ConnectSignalFinished(QtObjectPtr ptr); -void QDialog_DisconnectSignalFinished(QtObjectPtr ptr); -void QDialog_ConnectSignalRejected(QtObjectPtr ptr); -void QDialog_DisconnectSignalRejected(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qdialog.moc b/qdialog.moc deleted file mode 100644 index 6130b4a0..00000000 --- a/qdialog.moc +++ /dev/null @@ -1,190 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qdialog.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qdialog.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQDialog_t { - QByteArrayData data[8]; - char stringdata[67]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQDialog_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQDialog_t qt_meta_stringdata_MyQDialog = { - { -QT_MOC_LITERAL(0, 0, 9), // "MyQDialog" -QT_MOC_LITERAL(1, 10, 11), // "Slot_Accept" -QT_MOC_LITERAL(2, 22, 0), // "" -QT_MOC_LITERAL(3, 23, 9), // "Slot_Done" -QT_MOC_LITERAL(4, 33, 1), // "r" -QT_MOC_LITERAL(5, 35, 9), // "Slot_Exec" -QT_MOC_LITERAL(6, 45, 9), // "Slot_Open" -QT_MOC_LITERAL(7, 55, 11) // "Slot_Reject" - - }, - "MyQDialog\0Slot_Accept\0\0Slot_Done\0r\0" - "Slot_Exec\0Slot_Open\0Slot_Reject" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQDialog[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 5, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 5, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 0, 39, 2, 0x06 /* Public */, - 3, 1, 40, 2, 0x06 /* Public */, - 5, 0, 43, 2, 0x06 /* Public */, - 6, 0, 44, 2, 0x06 /* Public */, - 7, 0, 45, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, - QMetaType::Void, QMetaType::Int, 4, - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - - 0 // eod -}; - -void MyQDialog::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQDialog *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_Accept(); break; - case 1: _t->Slot_Done((*reinterpret_cast< int(*)>(_a[1]))); break; - case 2: _t->Slot_Exec(); break; - case 3: _t->Slot_Open(); break; - case 4: _t->Slot_Reject(); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQDialog::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQDialog::Slot_Accept)) { - *result = 0; - } - } - { - typedef void (MyQDialog::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQDialog::Slot_Done)) { - *result = 1; - } - } - { - typedef void (MyQDialog::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQDialog::Slot_Exec)) { - *result = 2; - } - } - { - typedef void (MyQDialog::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQDialog::Slot_Open)) { - *result = 3; - } - } - { - typedef void (MyQDialog::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQDialog::Slot_Reject)) { - *result = 4; - } - } - } -} - -const QMetaObject MyQDialog::staticMetaObject = { - { &QDialog::staticMetaObject, qt_meta_stringdata_MyQDialog.data, - qt_meta_data_MyQDialog, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQDialog::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQDialog::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQDialog.stringdata)) - return static_cast(const_cast< MyQDialog*>(this)); - return QDialog::qt_metacast(_clname); -} - -int MyQDialog::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QDialog::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 5) - qt_static_metacall(this, _c, _id, _a); - _id -= 5; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 5) - *reinterpret_cast(_a[0]) = -1; - _id -= 5; - } - return _id; -} - -// SIGNAL 0 -void MyQDialog::Slot_Accept() -{ - QMetaObject::activate(this, &staticMetaObject, 0, 0); -} - -// SIGNAL 1 -void MyQDialog::Slot_Done(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} - -// SIGNAL 2 -void MyQDialog::Slot_Exec() -{ - QMetaObject::activate(this, &staticMetaObject, 2, 0); -} - -// SIGNAL 3 -void MyQDialog::Slot_Open() -{ - QMetaObject::activate(this, &staticMetaObject, 3, 0); -} - -// SIGNAL 4 -void MyQDialog::Slot_Reject() -{ - QMetaObject::activate(this, &staticMetaObject, 4, 0); -} -QT_END_MOC_NAMESPACE diff --git a/qdialogbuttonbox.cpp b/qdialogbuttonbox.cpp deleted file mode 100644 index f7f789ce..00000000 --- a/qdialogbuttonbox.cpp +++ /dev/null @@ -1,178 +0,0 @@ -#include "qdialogbuttonbox.h" -#include -#include "cgoexport.h" - -//MyQDialogButtonBox -class MyQDialogButtonBox: public QDialogButtonBox { -Q_OBJECT -public: -void Signal_Accepted() { callbackQDialogButtonBox(this, QString("accepted").toUtf8().data()); }; -void Signal_HelpRequested() { callbackQDialogButtonBox(this, QString("helpRequested").toUtf8().data()); }; -void Signal_Rejected() { callbackQDialogButtonBox(this, QString("rejected").toUtf8().data()); }; - -signals: - -}; -#include "qdialogbuttonbox.moc" - -//Public Types -int QDialogButtonBox_WinLayout() { return QDialogButtonBox::WinLayout; } -int QDialogButtonBox_MacLayout() { return QDialogButtonBox::MacLayout; } -int QDialogButtonBox_KdeLayout() { return QDialogButtonBox::KdeLayout; } -int QDialogButtonBox_GnomeLayout() { return QDialogButtonBox::GnomeLayout; } -int QDialogButtonBox_InvalidRole() { return QDialogButtonBox::InvalidRole; } -int QDialogButtonBox_AcceptRole() { return QDialogButtonBox::AcceptRole; } -int QDialogButtonBox_RejectRole() { return QDialogButtonBox::RejectRole; } -int QDialogButtonBox_DestructiveRole() { return QDialogButtonBox::DestructiveRole; } -int QDialogButtonBox_ActionRole() { return QDialogButtonBox::ActionRole; } -int QDialogButtonBox_HelpRole() { return QDialogButtonBox::HelpRole; } -int QDialogButtonBox_YesRole() { return QDialogButtonBox::YesRole; } -int QDialogButtonBox_NoRole() { return QDialogButtonBox::NoRole; } -int QDialogButtonBox_ApplyRole() { return QDialogButtonBox::ApplyRole; } -int QDialogButtonBox_ResetRole() { return QDialogButtonBox::ResetRole; } -int QDialogButtonBox_Ok() { return QDialogButtonBox::Ok; } -int QDialogButtonBox_Open() { return QDialogButtonBox::Open; } -int QDialogButtonBox_Save() { return QDialogButtonBox::Save; } -int QDialogButtonBox_Cancel() { return QDialogButtonBox::Cancel; } -int QDialogButtonBox_Close() { return QDialogButtonBox::Close; } -int QDialogButtonBox_Discard() { return QDialogButtonBox::Discard; } -int QDialogButtonBox_Apply() { return QDialogButtonBox::Apply; } -int QDialogButtonBox_Reset() { return QDialogButtonBox::Reset; } -int QDialogButtonBox_RestoreDefaults() { return QDialogButtonBox::RestoreDefaults; } -int QDialogButtonBox_Help() { return QDialogButtonBox::Help; } -int QDialogButtonBox_SaveAll() { return QDialogButtonBox::SaveAll; } -int QDialogButtonBox_Yes() { return QDialogButtonBox::Yes; } -int QDialogButtonBox_YesToAll() { return QDialogButtonBox::YesToAll; } -int QDialogButtonBox_No() { return QDialogButtonBox::No; } -int QDialogButtonBox_NoToAll() { return QDialogButtonBox::NoToAll; } -int QDialogButtonBox_Abort() { return QDialogButtonBox::Abort; } -int QDialogButtonBox_Retry() { return QDialogButtonBox::Retry; } -int QDialogButtonBox_Ignore() { return QDialogButtonBox::Ignore; } - -//Public Functions -QtObjectPtr QDialogButtonBox_New_QWidget(QtObjectPtr parent) -{ - return new QDialogButtonBox(((QWidget*)(parent))); -} - -QtObjectPtr QDialogButtonBox_New_Orientation_QWidget(int orientation, QtObjectPtr parent) -{ - return new QDialogButtonBox(((Qt::Orientation)(orientation)), ((QWidget*)(parent))); -} - -QtObjectPtr QDialogButtonBox_New_StandardButton_QWidget(int buttons, QtObjectPtr parent) -{ - return new QDialogButtonBox(((QDialogButtonBox::StandardButton)(buttons)), ((QWidget*)(parent))); -} - -QtObjectPtr QDialogButtonBox_New_StandardButton_Orientation_QWidget(int buttons, int orientation, QtObjectPtr parent) -{ - return new QDialogButtonBox(((QDialogButtonBox::StandardButton)(buttons)), ((Qt::Orientation)(orientation)), ((QWidget*)(parent))); -} - -void QDialogButtonBox_Destroy(QtObjectPtr ptr) -{ - ((QDialogButtonBox*)(ptr))->~QDialogButtonBox(); -} - -void QDialogButtonBox_AddButton_QAbstractButton_ButtonRole(QtObjectPtr ptr, QtObjectPtr button, int role) -{ - ((QDialogButtonBox*)(ptr))->addButton(((QAbstractButton*)(button)), ((QDialogButtonBox::ButtonRole)(role))); -} - -QtObjectPtr QDialogButtonBox_AddButton_String_ButtonRole(QtObjectPtr ptr, char* text, int role) -{ - return ((QDialogButtonBox*)(ptr))->addButton(QString(text), ((QDialogButtonBox::ButtonRole)(role))); -} - -QtObjectPtr QDialogButtonBox_AddButton_StandardButton(QtObjectPtr ptr, int button) -{ - return ((QDialogButtonBox*)(ptr))->addButton(((QDialogButtonBox::StandardButton)(button))); -} - -QtObjectPtr QDialogButtonBox_Button_StandardButton(QtObjectPtr ptr, int which) -{ - return ((QDialogButtonBox*)(ptr))->button(((QDialogButtonBox::StandardButton)(which))); -} - -int QDialogButtonBox_ButtonRole_QAbstractButton(QtObjectPtr ptr, QtObjectPtr button) -{ - return ((QDialogButtonBox*)(ptr))->buttonRole(((QAbstractButton*)(button))); -} - -int QDialogButtonBox_CenterButtons(QtObjectPtr ptr) -{ - return ((QDialogButtonBox*)(ptr))->centerButtons(); -} - -void QDialogButtonBox_Clear(QtObjectPtr ptr) -{ - ((QDialogButtonBox*)(ptr))->clear(); -} - -int QDialogButtonBox_Orientation(QtObjectPtr ptr) -{ - return ((QDialogButtonBox*)(ptr))->orientation(); -} - -void QDialogButtonBox_RemoveButton_QAbstractButton(QtObjectPtr ptr, QtObjectPtr button) -{ - ((QDialogButtonBox*)(ptr))->removeButton(((QAbstractButton*)(button))); -} - -void QDialogButtonBox_SetCenterButtons_Bool(QtObjectPtr ptr, int center) -{ - ((QDialogButtonBox*)(ptr))->setCenterButtons(center != 0); -} - -void QDialogButtonBox_SetOrientation_Orientation(QtObjectPtr ptr, int orientation) -{ - ((QDialogButtonBox*)(ptr))->setOrientation(((Qt::Orientation)(orientation))); -} - -void QDialogButtonBox_SetStandardButtons_StandardButton(QtObjectPtr ptr, int buttons) -{ - ((QDialogButtonBox*)(ptr))->setStandardButtons(((QDialogButtonBox::StandardButton)(buttons))); -} - -int QDialogButtonBox_StandardButton_QAbstractButton(QtObjectPtr ptr, QtObjectPtr button) -{ - return ((QDialogButtonBox*)(ptr))->standardButton(((QAbstractButton*)(button))); -} - -int QDialogButtonBox_StandardButtons(QtObjectPtr ptr) -{ - return ((QDialogButtonBox*)(ptr))->standardButtons(); -} - -//Signals -void QDialogButtonBox_ConnectSignalAccepted(QtObjectPtr ptr) -{ - QObject::connect(((QDialogButtonBox*)(ptr)), &QDialogButtonBox::accepted, ((MyQDialogButtonBox*)(ptr)), &MyQDialogButtonBox::Signal_Accepted, Qt::QueuedConnection); -} - -void QDialogButtonBox_DisconnectSignalAccepted(QtObjectPtr ptr) -{ - QObject::disconnect(((QDialogButtonBox*)(ptr)), &QDialogButtonBox::accepted, ((MyQDialogButtonBox*)(ptr)), &MyQDialogButtonBox::Signal_Accepted); -} - -void QDialogButtonBox_ConnectSignalHelpRequested(QtObjectPtr ptr) -{ - QObject::connect(((QDialogButtonBox*)(ptr)), &QDialogButtonBox::helpRequested, ((MyQDialogButtonBox*)(ptr)), &MyQDialogButtonBox::Signal_HelpRequested, Qt::QueuedConnection); -} - -void QDialogButtonBox_DisconnectSignalHelpRequested(QtObjectPtr ptr) -{ - QObject::disconnect(((QDialogButtonBox*)(ptr)), &QDialogButtonBox::helpRequested, ((MyQDialogButtonBox*)(ptr)), &MyQDialogButtonBox::Signal_HelpRequested); -} - -void QDialogButtonBox_ConnectSignalRejected(QtObjectPtr ptr) -{ - QObject::connect(((QDialogButtonBox*)(ptr)), &QDialogButtonBox::rejected, ((MyQDialogButtonBox*)(ptr)), &MyQDialogButtonBox::Signal_Rejected, Qt::QueuedConnection); -} - -void QDialogButtonBox_DisconnectSignalRejected(QtObjectPtr ptr) -{ - QObject::disconnect(((QDialogButtonBox*)(ptr)), &QDialogButtonBox::rejected, ((MyQDialogButtonBox*)(ptr)), &MyQDialogButtonBox::Signal_Rejected); -} - diff --git a/qdialogbuttonbox.go b/qdialogbuttonbox.go deleted file mode 100644 index 394079e2..00000000 --- a/qdialogbuttonbox.go +++ /dev/null @@ -1,322 +0,0 @@ -package qt - -//#include "qdialogbuttonbox.h" -import "C" - -type qdialogbuttonbox struct { - qwidget -} - -type QDialogButtonBox interface { - QWidget - AddButton1(button QAbstractButton, role ButtonRole) - AddButton2(text string, role ButtonRole) QPushButton - AddButton3(button StandardButton) QPushButton - Button(which StandardButton) QPushButton - ButtonRole(button QAbstractButton) ButtonRole - CenterButtons() bool - Clear() - Orientation() Orientation - RemoveButton(button QAbstractButton) - SetCenterButtons(center bool) - SetOrientation(orientation Orientation) - SetStandardButtons(buttons StandardButton) - StandardButton(button QAbstractButton) StandardButton - StandardButtons() StandardButton - ConnectSignalAccepted(f func()) - DisconnectSignalAccepted() - SignalAccepted() func() - ConnectSignalHelpRequested(f func()) - DisconnectSignalHelpRequested() - SignalHelpRequested() func() - ConnectSignalRejected(f func()) - DisconnectSignalRejected() - SignalRejected() func() -} - -func (p *qdialogbuttonbox) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qdialogbuttonbox) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -//ButtonLayout -type ButtonLayout int - -var ( - WINLAYOUT = ButtonLayout(C.QDialogButtonBox_WinLayout()) - MACLAYOUT = ButtonLayout(C.QDialogButtonBox_MacLayout()) - KDELAYOUT = ButtonLayout(C.QDialogButtonBox_KdeLayout()) - GNOMELAYOUT = ButtonLayout(C.QDialogButtonBox_GnomeLayout()) -) - -//ButtonRole -type ButtonRole int - -var ( - INVALIDROLE = ButtonRole(C.QDialogButtonBox_InvalidRole()) - ACCEPTROLE = ButtonRole(C.QDialogButtonBox_AcceptRole()) - REJECTROLE = ButtonRole(C.QDialogButtonBox_RejectRole()) - DESTRUCTIVEROLE = ButtonRole(C.QDialogButtonBox_DestructiveRole()) - ACTIONROLE = ButtonRole(C.QDialogButtonBox_ActionRole()) - HELPROLE = ButtonRole(C.QDialogButtonBox_HelpRole()) - YESROLE = ButtonRole(C.QDialogButtonBox_YesRole()) - NOROLE = ButtonRole(C.QDialogButtonBox_NoRole()) - APPLYROLE = ButtonRole(C.QDialogButtonBox_ApplyRole()) - RESETROLE = ButtonRole(C.QDialogButtonBox_ResetRole()) -) - -//StandardButton -type StandardButton int - -var ( - OK = StandardButton(C.QDialogButtonBox_Ok()) - OPEN = StandardButton(C.QDialogButtonBox_Open()) - SAVE = StandardButton(C.QDialogButtonBox_Save()) - CANCEL = StandardButton(C.QDialogButtonBox_Cancel()) - CLOSE = StandardButton(C.QDialogButtonBox_Close()) - DISCARD = StandardButton(C.QDialogButtonBox_Discard()) - APPLY = StandardButton(C.QDialogButtonBox_Apply()) - RESET = StandardButton(C.QDialogButtonBox_Reset()) - RESTOREDEFAULTS = StandardButton(C.QDialogButtonBox_RestoreDefaults()) - HELP = StandardButton(C.QDialogButtonBox_Help()) - SAVEALL = StandardButton(C.QDialogButtonBox_SaveAll()) - YES = StandardButton(C.QDialogButtonBox_Yes()) - YESTOALL = StandardButton(C.QDialogButtonBox_YesToAll()) - NO = StandardButton(C.QDialogButtonBox_No()) - NOTOALL = StandardButton(C.QDialogButtonBox_NoToAll()) - ABORT = StandardButton(C.QDialogButtonBox_Abort()) - RETRY = StandardButton(C.QDialogButtonBox_Retry()) - IGNORE = StandardButton(C.QDialogButtonBox_Ignore()) -) - -func NewQDialogButtonBox1(parent QWidget) QDialogButtonBox { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qdialogbuttonbox = new(qdialogbuttonbox) - qdialogbuttonbox.SetPointer(C.QDialogButtonBox_New_QWidget(parentPtr)) - qdialogbuttonbox.SetObjectName("QDialogButtonBox_" + randomIdentifier()) - return qdialogbuttonbox -} - -func NewQDialogButtonBox2(orientation Orientation, parent QWidget) QDialogButtonBox { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qdialogbuttonbox = new(qdialogbuttonbox) - qdialogbuttonbox.SetPointer(C.QDialogButtonBox_New_Orientation_QWidget(C.int(orientation), parentPtr)) - qdialogbuttonbox.SetObjectName("QDialogButtonBox_" + randomIdentifier()) - return qdialogbuttonbox -} - -func NewQDialogButtonBox3(buttons StandardButton, parent QWidget) QDialogButtonBox { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qdialogbuttonbox = new(qdialogbuttonbox) - qdialogbuttonbox.SetPointer(C.QDialogButtonBox_New_StandardButton_QWidget(C.int(buttons), parentPtr)) - qdialogbuttonbox.SetObjectName("QDialogButtonBox_" + randomIdentifier()) - return qdialogbuttonbox -} - -func NewQDialogButtonBox4(buttons StandardButton, orientation Orientation, parent QWidget) QDialogButtonBox { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qdialogbuttonbox = new(qdialogbuttonbox) - qdialogbuttonbox.SetPointer(C.QDialogButtonBox_New_StandardButton_Orientation_QWidget(C.int(buttons), C.int(orientation), parentPtr)) - qdialogbuttonbox.SetObjectName("QDialogButtonBox_" + randomIdentifier()) - return qdialogbuttonbox -} - -func (p *qdialogbuttonbox) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QDialogButtonBox_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qdialogbuttonbox) AddButton1(button QAbstractButton, role ButtonRole) { - if p.Pointer() != nil { - var buttonPtr C.QtObjectPtr - if button != nil { - buttonPtr = button.Pointer() - } - C.QDialogButtonBox_AddButton_QAbstractButton_ButtonRole(p.Pointer(), buttonPtr, C.int(role)) - } -} - -func (p *qdialogbuttonbox) AddButton2(text string, role ButtonRole) QPushButton { - if p.Pointer() == nil { - return nil - } else { - var qpushbutton = new(qpushbutton) - qpushbutton.SetPointer(C.QDialogButtonBox_AddButton_String_ButtonRole(p.Pointer(), C.CString(text), C.int(role))) - if qpushbutton.ObjectName() == "" { - qpushbutton.SetObjectName("QPushButton_" + randomIdentifier()) - } - return qpushbutton - } -} - -func (p *qdialogbuttonbox) AddButton3(button StandardButton) QPushButton { - if p.Pointer() == nil { - return nil - } else { - var qpushbutton = new(qpushbutton) - qpushbutton.SetPointer(C.QDialogButtonBox_AddButton_StandardButton(p.Pointer(), C.int(button))) - if qpushbutton.ObjectName() == "" { - qpushbutton.SetObjectName("QPushButton_" + randomIdentifier()) - } - return qpushbutton - } -} - -func (p *qdialogbuttonbox) Button(which StandardButton) QPushButton { - if p.Pointer() == nil { - return nil - } else { - var qpushbutton = new(qpushbutton) - qpushbutton.SetPointer(C.QDialogButtonBox_Button_StandardButton(p.Pointer(), C.int(which))) - if qpushbutton.ObjectName() == "" { - qpushbutton.SetObjectName("QPushButton_" + randomIdentifier()) - } - return qpushbutton - } -} - -func (p *qdialogbuttonbox) ButtonRole(button QAbstractButton) ButtonRole { - if p.Pointer() == nil { - return 0 - } else { - var buttonPtr C.QtObjectPtr - if button != nil { - buttonPtr = button.Pointer() - } - return ButtonRole(C.QDialogButtonBox_ButtonRole_QAbstractButton(p.Pointer(), buttonPtr)) - } -} - -func (p *qdialogbuttonbox) CenterButtons() bool { - if p.Pointer() == nil { - return false - } - return C.QDialogButtonBox_CenterButtons(p.Pointer()) != 0 -} - -func (p *qdialogbuttonbox) Clear() { - if p.Pointer() != nil { - C.QDialogButtonBox_Clear(p.Pointer()) - } -} - -func (p *qdialogbuttonbox) Orientation() Orientation { - if p.Pointer() == nil { - return 0 - } - return Orientation(C.QDialogButtonBox_Orientation(p.Pointer())) -} - -func (p *qdialogbuttonbox) RemoveButton(button QAbstractButton) { - if p.Pointer() != nil { - var buttonPtr C.QtObjectPtr - if button != nil { - buttonPtr = button.Pointer() - } - C.QDialogButtonBox_RemoveButton_QAbstractButton(p.Pointer(), buttonPtr) - } -} - -func (p *qdialogbuttonbox) SetCenterButtons(center bool) { - if p.Pointer() != nil { - C.QDialogButtonBox_SetCenterButtons_Bool(p.Pointer(), goBoolToCInt(center)) - } -} - -func (p *qdialogbuttonbox) SetOrientation(orientation Orientation) { - if p.Pointer() != nil { - C.QDialogButtonBox_SetOrientation_Orientation(p.Pointer(), C.int(orientation)) - } -} - -func (p *qdialogbuttonbox) SetStandardButtons(buttons StandardButton) { - if p.Pointer() != nil { - C.QDialogButtonBox_SetStandardButtons_StandardButton(p.Pointer(), C.int(buttons)) - } -} - -func (p *qdialogbuttonbox) StandardButton(button QAbstractButton) StandardButton { - if p.Pointer() == nil { - return 0 - } else { - var buttonPtr C.QtObjectPtr - if button != nil { - buttonPtr = button.Pointer() - } - return StandardButton(C.QDialogButtonBox_StandardButton_QAbstractButton(p.Pointer(), buttonPtr)) - } -} - -func (p *qdialogbuttonbox) StandardButtons() StandardButton { - if p.Pointer() == nil { - return 0 - } - return StandardButton(C.QDialogButtonBox_StandardButtons(p.Pointer())) -} - -func (p *qdialogbuttonbox) ConnectSignalAccepted(f func()) { - C.QDialogButtonBox_ConnectSignalAccepted(p.Pointer()) - connectSignal(p.ObjectName(), "accepted", f) -} - -func (p *qdialogbuttonbox) DisconnectSignalAccepted() { - C.QDialogButtonBox_DisconnectSignalAccepted(p.Pointer()) - disconnectSignal(p.ObjectName(), "accepted") -} - -func (p *qdialogbuttonbox) SignalAccepted() func() { - return getSignal(p.ObjectName(), "accepted") -} - -func (p *qdialogbuttonbox) ConnectSignalHelpRequested(f func()) { - C.QDialogButtonBox_ConnectSignalHelpRequested(p.Pointer()) - connectSignal(p.ObjectName(), "helpRequested", f) -} - -func (p *qdialogbuttonbox) DisconnectSignalHelpRequested() { - C.QDialogButtonBox_DisconnectSignalHelpRequested(p.Pointer()) - disconnectSignal(p.ObjectName(), "helpRequested") -} - -func (p *qdialogbuttonbox) SignalHelpRequested() func() { - return getSignal(p.ObjectName(), "helpRequested") -} - -func (p *qdialogbuttonbox) ConnectSignalRejected(f func()) { - C.QDialogButtonBox_ConnectSignalRejected(p.Pointer()) - connectSignal(p.ObjectName(), "rejected", f) -} - -func (p *qdialogbuttonbox) DisconnectSignalRejected() { - C.QDialogButtonBox_DisconnectSignalRejected(p.Pointer()) - disconnectSignal(p.ObjectName(), "rejected") -} - -func (p *qdialogbuttonbox) SignalRejected() func() { - return getSignal(p.ObjectName(), "rejected") -} - -//export callbackQDialogButtonBox -func callbackQDialogButtonBox(ptr C.QtObjectPtr, msg *C.char) { - var qdialogbuttonbox = new(qdialogbuttonbox) - qdialogbuttonbox.SetPointer(ptr) - getSignal(qdialogbuttonbox.ObjectName(), C.GoString(msg))() -} diff --git a/qdialogbuttonbox.h b/qdialogbuttonbox.h deleted file mode 100644 index fc12105f..00000000 --- a/qdialogbuttonbox.h +++ /dev/null @@ -1,70 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Types -int QDialogButtonBox_WinLayout(); -int QDialogButtonBox_MacLayout(); -int QDialogButtonBox_KdeLayout(); -int QDialogButtonBox_GnomeLayout(); -int QDialogButtonBox_InvalidRole(); -int QDialogButtonBox_AcceptRole(); -int QDialogButtonBox_RejectRole(); -int QDialogButtonBox_DestructiveRole(); -int QDialogButtonBox_ActionRole(); -int QDialogButtonBox_HelpRole(); -int QDialogButtonBox_YesRole(); -int QDialogButtonBox_NoRole(); -int QDialogButtonBox_ApplyRole(); -int QDialogButtonBox_ResetRole(); -int QDialogButtonBox_Ok(); -int QDialogButtonBox_Open(); -int QDialogButtonBox_Save(); -int QDialogButtonBox_Cancel(); -int QDialogButtonBox_Close(); -int QDialogButtonBox_Discard(); -int QDialogButtonBox_Apply(); -int QDialogButtonBox_Reset(); -int QDialogButtonBox_RestoreDefaults(); -int QDialogButtonBox_Help(); -int QDialogButtonBox_SaveAll(); -int QDialogButtonBox_Yes(); -int QDialogButtonBox_YesToAll(); -int QDialogButtonBox_No(); -int QDialogButtonBox_NoToAll(); -int QDialogButtonBox_Abort(); -int QDialogButtonBox_Retry(); -int QDialogButtonBox_Ignore(); -//Public Functions -QtObjectPtr QDialogButtonBox_New_QWidget(QtObjectPtr parent); -QtObjectPtr QDialogButtonBox_New_Orientation_QWidget(int orientation, QtObjectPtr parent); -QtObjectPtr QDialogButtonBox_New_StandardButton_QWidget(int buttons, QtObjectPtr parent); -QtObjectPtr QDialogButtonBox_New_StandardButton_Orientation_QWidget(int buttons, int orientation, QtObjectPtr parent); -void QDialogButtonBox_Destroy(QtObjectPtr ptr); -void QDialogButtonBox_AddButton_QAbstractButton_ButtonRole(QtObjectPtr ptr, QtObjectPtr button, int role); -QtObjectPtr QDialogButtonBox_AddButton_String_ButtonRole(QtObjectPtr ptr, char* text, int role); -QtObjectPtr QDialogButtonBox_AddButton_StandardButton(QtObjectPtr ptr, int button); -QtObjectPtr QDialogButtonBox_Button_StandardButton(QtObjectPtr ptr, int which); -int QDialogButtonBox_ButtonRole_QAbstractButton(QtObjectPtr ptr, QtObjectPtr button); -int QDialogButtonBox_CenterButtons(QtObjectPtr ptr); -void QDialogButtonBox_Clear(QtObjectPtr ptr); -int QDialogButtonBox_Orientation(QtObjectPtr ptr); -void QDialogButtonBox_RemoveButton_QAbstractButton(QtObjectPtr ptr, QtObjectPtr button); -void QDialogButtonBox_SetCenterButtons_Bool(QtObjectPtr ptr, int center); -void QDialogButtonBox_SetOrientation_Orientation(QtObjectPtr ptr, int orientation); -void QDialogButtonBox_SetStandardButtons_StandardButton(QtObjectPtr ptr, int buttons); -int QDialogButtonBox_StandardButton_QAbstractButton(QtObjectPtr ptr, QtObjectPtr button); -int QDialogButtonBox_StandardButtons(QtObjectPtr ptr); -//Signals -void QDialogButtonBox_ConnectSignalAccepted(QtObjectPtr ptr); -void QDialogButtonBox_DisconnectSignalAccepted(QtObjectPtr ptr); -void QDialogButtonBox_ConnectSignalHelpRequested(QtObjectPtr ptr); -void QDialogButtonBox_DisconnectSignalHelpRequested(QtObjectPtr ptr); -void QDialogButtonBox_ConnectSignalRejected(QtObjectPtr ptr); -void QDialogButtonBox_DisconnectSignalRejected(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qdialogbuttonbox.moc b/qdialogbuttonbox.moc deleted file mode 100644 index 2c548b8e..00000000 --- a/qdialogbuttonbox.moc +++ /dev/null @@ -1,88 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qdialogbuttonbox.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qdialogbuttonbox.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQDialogButtonBox_t { - QByteArrayData data[1]; - char stringdata[19]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQDialogButtonBox_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQDialogButtonBox_t qt_meta_stringdata_MyQDialogButtonBox = { - { -QT_MOC_LITERAL(0, 0, 18) // "MyQDialogButtonBox" - - }, - "MyQDialogButtonBox" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQDialogButtonBox[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 0, 0, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 0, // signalCount - - 0 // eod -}; - -void MyQDialogButtonBox::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - Q_UNUSED(_o); - Q_UNUSED(_id); - Q_UNUSED(_c); - Q_UNUSED(_a); -} - -const QMetaObject MyQDialogButtonBox::staticMetaObject = { - { &QDialogButtonBox::staticMetaObject, qt_meta_stringdata_MyQDialogButtonBox.data, - qt_meta_data_MyQDialogButtonBox, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQDialogButtonBox::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQDialogButtonBox::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQDialogButtonBox.stringdata)) - return static_cast(const_cast< MyQDialogButtonBox*>(this)); - return QDialogButtonBox::qt_metacast(_clname); -} - -int MyQDialogButtonBox::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QDialogButtonBox::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - return _id; -} -QT_END_MOC_NAMESPACE diff --git a/qdir.cpp b/qdir.cpp deleted file mode 100644 index df8a3646..00000000 --- a/qdir.cpp +++ /dev/null @@ -1,108 +0,0 @@ -#include "qdir.h" -#include -#include "cgoexport.h" - - -//Public Types -int QDir_Dirs() { return QDir::Dirs; } -int QDir_AllDirs() { return QDir::AllDirs; } -int QDir_Files() { return QDir::Files; } -int QDir_Drives() { return QDir::Drives; } -int QDir_NoSymLinks() { return QDir::NoSymLinks; } -int QDir_NoDotAndDotDot() { return QDir::NoDotAndDotDot; } -int QDir_NoDot() { return QDir::NoDot; } -int QDir_NoDotDot() { return QDir::NoDotDot; } -int QDir_AllEntries() { return QDir::AllEntries; } -int QDir_Readable() { return QDir::Readable; } -int QDir_Writable() { return QDir::Writable; } -int QDir_Executable() { return QDir::Executable; } -int QDir_Modified() { return QDir::Modified; } -int QDir_Hidden() { return QDir::Hidden; } -int QDir_System() { return QDir::System; } -int QDir_Name() { return QDir::Name; } -int QDir_Time() { return QDir::Time; } -int QDir_Size() { return QDir::Size; } -int QDir_Type() { return QDir::Type; } -int QDir_Unsorted() { return QDir::Unsorted; } -int QDir_NoSort() { return QDir::NoSort; } -int QDir_DirsFirst() { return QDir::DirsFirst; } -int QDir_DirsLast() { return QDir::DirsLast; } -int QDir_Reversed() { return QDir::Reversed; } -int QDir_IgnoreCase() { return QDir::IgnoreCase; } -int QDir_LocaleAware() { return QDir::LocaleAware; } -//Static Public Members -void QDir_AddSearchPath_String_String(char* prefix, char* path) -{ - QDir::addSearchPath(QString(prefix), QString(path)); -} - -char* QDir_CleanPath_String(char* path) -{ - return QDir::cleanPath(QString(path)).toUtf8().data(); -} - -char* QDir_CurrentPath() -{ - return QDir::currentPath().toUtf8().data(); -} - -char* QDir_FromNativeSeparators_String(char* pathName) -{ - return QDir::fromNativeSeparators(QString(pathName)).toUtf8().data(); -} - -char* QDir_HomePath() -{ - return QDir::homePath().toUtf8().data(); -} - -int QDir_IsAbsolutePath_String(char* path) -{ - return QDir::isAbsolutePath(QString(path)); -} - -int QDir_IsRelativePath_String(char* path) -{ - return QDir::isRelativePath(QString(path)); -} - -int QDir_Match_String_String(char* filter, char* fileName) -{ - return QDir::match(QString(filter), QString(fileName)); -} - -int QDir_Match_QStringList_String(char* filters, char* fileName) -{ - return QDir::match(QString(filters).split("|", QString::SkipEmptyParts), QString(fileName)); -} - -char* QDir_RootPath() -{ - return QDir::rootPath().toUtf8().data(); -} - -char* QDir_SearchPaths_String(char* prefix) -{ - return QDir::searchPaths(QString(prefix)).join("|").toUtf8().data(); -} - -int QDir_SetCurrent_String(char* path) -{ - return QDir::setCurrent(QString(path)); -} - -void QDir_SetSearchPaths_String_QStringList(char* prefix, char* searchPaths) -{ - QDir::setSearchPaths(QString(prefix), QString(searchPaths).split("|", QString::SkipEmptyParts)); -} - -char* QDir_TempPath() -{ - return QDir::tempPath().toUtf8().data(); -} - -char* QDir_ToNativeSeparators_String(char* pathName) -{ - return QDir::toNativeSeparators(QString(pathName)).toUtf8().data(); -} - diff --git a/qdir.go b/qdir.go deleted file mode 100644 index 35d226e6..00000000 --- a/qdir.go +++ /dev/null @@ -1,122 +0,0 @@ -package qt - -//#include "qdir.h" -import "C" - -import "strings" - -type qdir struct { - ptr C.QtObjectPtr -} - -type QDir interface { - Pointer() (ptr C.QtObjectPtr) - SetPointer(ptr C.QtObjectPtr) -} - -func (p *qdir) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qdir) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -//Filter -type Filter int - -var ( - DIRS = Filter(C.QDir_Dirs()) - ALLDIRS = Filter(C.QDir_AllDirs()) - FILES = Filter(C.QDir_Files()) - DRIVES = Filter(C.QDir_Drives()) - NOSYMLINKS = Filter(C.QDir_NoSymLinks()) - NODOTANDDOTDOT = Filter(C.QDir_NoDotAndDotDot()) - NODOT = Filter(C.QDir_NoDot()) - NODOTDOT = Filter(C.QDir_NoDotDot()) - ALLENTRIES = Filter(C.QDir_AllEntries()) - READABLE = Filter(C.QDir_Readable()) - WRITABLE = Filter(C.QDir_Writable()) - EXECUTABLE = Filter(C.QDir_Executable()) - MODIFIED = Filter(C.QDir_Modified()) - HIDDEN = Filter(C.QDir_Hidden()) - SYSTEM = Filter(C.QDir_System()) -) - -//SortFlag -type SortFlag int - -var ( - NAME = SortFlag(C.QDir_Name()) - TIME = SortFlag(C.QDir_Time()) - SIZE = SortFlag(C.QDir_Size()) - TYPE = SortFlag(C.QDir_Type()) - UNSORTED = SortFlag(C.QDir_Unsorted()) - NOSORT = SortFlag(C.QDir_NoSort()) - DIRSFIRST = SortFlag(C.QDir_DirsFirst()) - DIRSLAST = SortFlag(C.QDir_DirsLast()) - REVERSED = SortFlag(C.QDir_Reversed()) - IGNORECASE = SortFlag(C.QDir_IgnoreCase()) - LOCALEAWARE = SortFlag(C.QDir_LocaleAware()) -) - -func QDir_AddSearchPath(prefix string, path string) { - C.QDir_AddSearchPath_String_String(C.CString(prefix), C.CString(path)) -} - -func QDir_CleanPath(path string) string { - return C.GoString(C.QDir_CleanPath_String(C.CString(path))) -} - -func QDir_CurrentPath() string { - return C.GoString(C.QDir_CurrentPath()) -} - -func QDir_FromNativeSeparators(pathName string) string { - return C.GoString(C.QDir_FromNativeSeparators_String(C.CString(pathName))) -} - -func QDir_HomePath() string { - return C.GoString(C.QDir_HomePath()) -} - -func QDir_IsAbsolutePath(path string) bool { - return C.QDir_IsAbsolutePath_String(C.CString(path)) != 0 -} - -func QDir_IsRelativePath(path string) bool { - return C.QDir_IsRelativePath_String(C.CString(path)) != 0 -} - -func QDir_Match1(filter string, fileName string) bool { - return C.QDir_Match_String_String(C.CString(filter), C.CString(fileName)) != 0 -} - -func QDir_Match2(filters []string, fileName string) bool { - return C.QDir_Match_QStringList_String(C.CString(strings.Join(filters, "|")), - C.CString(fileName)) != 0 -} - -func QDir_RootPath() string { - return C.GoString(C.QDir_RootPath()) -} - -func QDir_SearchPaths(prefix string) []string { - return strings.Split(C.GoString(C.QDir_SearchPaths_String(C.CString(prefix))), "|") -} - -func QDir_SetCurrent(path string) bool { - return C.QDir_SetCurrent_String(C.CString(path)) != 0 -} - -func QDir_SetSearchPaths(prefix string, searchPaths []string) { - C.QDir_SetSearchPaths_String_QStringList(C.CString(prefix), C.CString(strings.Join(searchPaths, "|"))) -} - -func QDir_TempPath() string { - return C.GoString(C.QDir_TempPath()) -} - -func QDir_ToNativeSeparators(pathName string) string { - return C.GoString(C.QDir_ToNativeSeparators_String(C.CString(pathName))) -} diff --git a/qdir.h b/qdir.h deleted file mode 100644 index ffdd979a..00000000 --- a/qdir.h +++ /dev/null @@ -1,53 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Types -int QDir_Dirs(); -int QDir_AllDirs(); -int QDir_Files(); -int QDir_Drives(); -int QDir_NoSymLinks(); -int QDir_NoDotAndDotDot(); -int QDir_NoDot(); -int QDir_NoDotDot(); -int QDir_AllEntries(); -int QDir_Readable(); -int QDir_Writable(); -int QDir_Executable(); -int QDir_Modified(); -int QDir_Hidden(); -int QDir_System(); -int QDir_Name(); -int QDir_Time(); -int QDir_Size(); -int QDir_Type(); -int QDir_Unsorted(); -int QDir_NoSort(); -int QDir_DirsFirst(); -int QDir_DirsLast(); -int QDir_Reversed(); -int QDir_IgnoreCase(); -int QDir_LocaleAware(); -//Static Public Members -void QDir_AddSearchPath_String_String(char* prefix, char* path); -char* QDir_CleanPath_String(char* path); -char* QDir_CurrentPath(); -char* QDir_FromNativeSeparators_String(char* pathName); -char* QDir_HomePath(); -int QDir_IsAbsolutePath_String(char* path); -int QDir_IsRelativePath_String(char* path); -int QDir_Match_String_String(char* filter, char* fileName); -int QDir_Match_QStringList_String(char* filters, char* fileName); -char* QDir_RootPath(); -char* QDir_SearchPaths_String(char* prefix); -int QDir_SetCurrent_String(char* path); -void QDir_SetSearchPaths_String_QStringList(char* prefix, char* searchPaths); -char* QDir_TempPath(); -char* QDir_ToNativeSeparators_String(char* pathName); - -#ifdef __cplusplus -} -#endif diff --git a/qdir.moc b/qdir.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/qdoublevalidator.cpp b/qdoublevalidator.cpp deleted file mode 100644 index e1628c36..00000000 --- a/qdoublevalidator.cpp +++ /dev/null @@ -1,40 +0,0 @@ -#include "qdoublevalidator.h" -#include -#include "cgoexport.h" - - -//Public Types -int QDoubleValidator_StandardNotation() { return QDoubleValidator::StandardNotation; } -int QDoubleValidator_ScientificNotation() { return QDoubleValidator::ScientificNotation; } - -//Public Functions -QtObjectPtr QDoubleValidator_New_QObject(QtObjectPtr parent) -{ - return new QDoubleValidator(((QObject*)(parent))); -} - -void QDoubleValidator_Destroy(QtObjectPtr ptr) -{ - ((QDoubleValidator*)(ptr))->~QDoubleValidator(); -} - -int QDoubleValidator_Decimals(QtObjectPtr ptr) -{ - return ((QDoubleValidator*)(ptr))->decimals(); -} - -int QDoubleValidator_Notation(QtObjectPtr ptr) -{ - return ((QDoubleValidator*)(ptr))->notation(); -} - -void QDoubleValidator_SetDecimals_Int(QtObjectPtr ptr, int in) -{ - ((QDoubleValidator*)(ptr))->setDecimals(in); -} - -void QDoubleValidator_SetNotation_Notation(QtObjectPtr ptr, int No) -{ - ((QDoubleValidator*)(ptr))->setNotation(((QDoubleValidator::Notation)(No))); -} - diff --git a/qdoublevalidator.go b/qdoublevalidator.go deleted file mode 100644 index 190a124f..00000000 --- a/qdoublevalidator.go +++ /dev/null @@ -1,77 +0,0 @@ -package qt - -//#include "qdoublevalidator.h" -import "C" - -type qdoublevalidator struct { - qvalidator -} - -type QDoubleValidator interface { - QValidator - Decimals() int - Notation() Notation - SetDecimals(in int) - SetNotation(No Notation) -} - -func (p *qdoublevalidator) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qdoublevalidator) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -//Notation -type Notation int - -var ( - STANDARDNOTATION = Notation(C.QDoubleValidator_StandardNotation()) - SCIENTIFICNOTATION = Notation(C.QDoubleValidator_ScientificNotation()) -) - -func NewQDoubleValidator(parent QObject) QDoubleValidator { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qdoublevalidator = new(qdoublevalidator) - qdoublevalidator.SetPointer(C.QDoubleValidator_New_QObject(parentPtr)) - qdoublevalidator.SetObjectName("QDoubleValidator_" + randomIdentifier()) - return qdoublevalidator -} - -func (p *qdoublevalidator) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QDoubleValidator_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qdoublevalidator) Decimals() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QDoubleValidator_Decimals(p.Pointer())) -} - -func (p *qdoublevalidator) Notation() Notation { - if p.Pointer() == nil { - return 0 - } - return Notation(C.QDoubleValidator_Notation(p.Pointer())) -} - -func (p *qdoublevalidator) SetDecimals(in int) { - if p.Pointer() != nil { - C.QDoubleValidator_SetDecimals_Int(p.Pointer(), C.int(in)) - } -} - -func (p *qdoublevalidator) SetNotation(No Notation) { - if p.Pointer() != nil { - C.QDoubleValidator_SetNotation_Notation(p.Pointer(), C.int(No)) - } -} diff --git a/qdoublevalidator.h b/qdoublevalidator.h deleted file mode 100644 index ba8dc6b6..00000000 --- a/qdoublevalidator.h +++ /dev/null @@ -1,20 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Types -int QDoubleValidator_StandardNotation(); -int QDoubleValidator_ScientificNotation(); -//Public Functions -QtObjectPtr QDoubleValidator_New_QObject(QtObjectPtr parent); -void QDoubleValidator_Destroy(QtObjectPtr ptr); -int QDoubleValidator_Decimals(QtObjectPtr ptr); -int QDoubleValidator_Notation(QtObjectPtr ptr); -void QDoubleValidator_SetDecimals_Int(QtObjectPtr ptr, int in); -void QDoubleValidator_SetNotation_Notation(QtObjectPtr ptr, int No); - -#ifdef __cplusplus -} -#endif diff --git a/qdoublevalidator.moc b/qdoublevalidator.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/qfiledialog.cpp b/qfiledialog.cpp deleted file mode 100644 index d7128a45..00000000 --- a/qfiledialog.cpp +++ /dev/null @@ -1,266 +0,0 @@ -#include "qfiledialog.h" -#include -#include "cgoexport.h" - -//MyQFileDialog -class MyQFileDialog: public QFileDialog { -Q_OBJECT -public: -void Signal_CurrentChanged() { callbackQFileDialog(this, QString("currentChanged").toUtf8().data()); }; -void Signal_DirectoryEntered() { callbackQFileDialog(this, QString("directoryEntered").toUtf8().data()); }; -void Signal_FileSelected() { callbackQFileDialog(this, QString("fileSelected").toUtf8().data()); }; -void Signal_FilesSelected() { callbackQFileDialog(this, QString("filesSelected").toUtf8().data()); }; -void Signal_FilterSelected() { callbackQFileDialog(this, QString("filterSelected").toUtf8().data()); }; - -signals: - -}; -#include "qfiledialog.moc" - -//Public Types -int QFileDialog_AcceptOpen() { return QFileDialog::AcceptOpen; } -int QFileDialog_AcceptSave() { return QFileDialog::AcceptSave; } -int QFileDialog_LookIn() { return QFileDialog::LookIn; } -int QFileDialog_FileName() { return QFileDialog::FileName; } -int QFileDialog_FileType() { return QFileDialog::FileType; } -int QFileDialog_Accept() { return QFileDialog::Accept; } -int QFileDialog_Reject() { return QFileDialog::Reject; } -int QFileDialog_AnyFile() { return QFileDialog::AnyFile; } -int QFileDialog_ExistingFile() { return QFileDialog::ExistingFile; } -int QFileDialog_Directory() { return QFileDialog::Directory; } -int QFileDialog_ExistingFiles() { return QFileDialog::ExistingFiles; } -int QFileDialog_DirectoryOnly() { return QFileDialog::DirectoryOnly; } -int QFileDialog_ShowDirsOnly() { return QFileDialog::ShowDirsOnly; } -int QFileDialog_DontResolveSymlinks() { return QFileDialog::DontResolveSymlinks; } -int QFileDialog_DontConfirmOverwrite() { return QFileDialog::DontConfirmOverwrite; } -int QFileDialog_DontUseNativeDialog() { return QFileDialog::DontUseNativeDialog; } -int QFileDialog_ReadOnly() { return QFileDialog::ReadOnly; } -int QFileDialog_HideNameFilterDetails() { return QFileDialog::HideNameFilterDetails; } -int QFileDialog_DontUseSheet() { return QFileDialog::DontUseSheet; } -int QFileDialog_DontUseCustomDirectoryIcons() { return QFileDialog::DontUseCustomDirectoryIcons; } -int QFileDialog_Detail() { return QFileDialog::Detail; } -int QFileDialog_List() { return QFileDialog::List; } - -//Public Functions -QtObjectPtr QFileDialog_New_QWidget_String_String_String(QtObjectPtr parent, char* caption, char* directory, char* filter) -{ - return new QFileDialog(((QWidget*)(parent)), QString(caption), QString(directory), QString(filter)); -} - -void QFileDialog_Destroy(QtObjectPtr ptr) -{ - ((QFileDialog*)(ptr))->~QFileDialog(); -} - -int QFileDialog_AcceptMode(QtObjectPtr ptr) -{ - return ((QFileDialog*)(ptr))->acceptMode(); -} - -char* QFileDialog_DefaultSuffix(QtObjectPtr ptr) -{ - return ((QFileDialog*)(ptr))->defaultSuffix().toUtf8().data(); -} - -int QFileDialog_FileMode(QtObjectPtr ptr) -{ - return ((QFileDialog*)(ptr))->fileMode(); -} - -char* QFileDialog_History(QtObjectPtr ptr) -{ - return ((QFileDialog*)(ptr))->history().join("|").toUtf8().data(); -} - -char* QFileDialog_LabelText_DialogLabel(QtObjectPtr ptr, int label) -{ - return ((QFileDialog*)(ptr))->labelText(((QFileDialog::DialogLabel)(label))).toUtf8().data(); -} - -char* QFileDialog_MimeTypeFilters(QtObjectPtr ptr) -{ - return ((QFileDialog*)(ptr))->mimeTypeFilters().join("|").toUtf8().data(); -} - -char* QFileDialog_NameFilters(QtObjectPtr ptr) -{ - return ((QFileDialog*)(ptr))->nameFilters().join("|").toUtf8().data(); -} - -void QFileDialog_Open_QObject_String(QtObjectPtr ptr, QtObjectPtr receiver, char* member) -{ - ((QFileDialog*)(ptr))->open(((QObject*)(receiver)), member); -} - -int QFileDialog_Options(QtObjectPtr ptr) -{ - return ((QFileDialog*)(ptr))->options(); -} - -void QFileDialog_SelectFile_String(QtObjectPtr ptr, char* filename) -{ - ((QFileDialog*)(ptr))->selectFile(QString(filename)); -} - -void QFileDialog_SelectMimeTypeFilter_String(QtObjectPtr ptr, char* filter) -{ - ((QFileDialog*)(ptr))->selectMimeTypeFilter(QString(filter)); -} - -void QFileDialog_SelectNameFilter_String(QtObjectPtr ptr, char* filter) -{ - ((QFileDialog*)(ptr))->selectNameFilter(QString(filter)); -} - -char* QFileDialog_SelectedFiles(QtObjectPtr ptr) -{ - return ((QFileDialog*)(ptr))->selectedFiles().join("|").toUtf8().data(); -} - -char* QFileDialog_SelectedNameFilter(QtObjectPtr ptr) -{ - return ((QFileDialog*)(ptr))->selectedNameFilter().toUtf8().data(); -} - -void QFileDialog_SetAcceptMode_AcceptMode(QtObjectPtr ptr, int mode) -{ - ((QFileDialog*)(ptr))->setAcceptMode(((QFileDialog::AcceptMode)(mode))); -} - -void QFileDialog_SetDefaultSuffix_String(QtObjectPtr ptr, char* suffix) -{ - ((QFileDialog*)(ptr))->setDefaultSuffix(QString(suffix)); -} - -void QFileDialog_SetDirectory_String(QtObjectPtr ptr, char* directory) -{ - ((QFileDialog*)(ptr))->setDirectory(QString(directory)); -} - -void QFileDialog_SetFileMode_FileMode(QtObjectPtr ptr, int mode) -{ - ((QFileDialog*)(ptr))->setFileMode(((QFileDialog::FileMode)(mode))); -} - -void QFileDialog_SetHistory_QStringList(QtObjectPtr ptr, char* paths) -{ - ((QFileDialog*)(ptr))->setHistory(QString(paths).split("|", QString::SkipEmptyParts)); -} - -void QFileDialog_SetLabelText_DialogLabel_String(QtObjectPtr ptr, int label, char* text) -{ - ((QFileDialog*)(ptr))->setLabelText(((QFileDialog::DialogLabel)(label)), QString(text)); -} - -void QFileDialog_SetMimeTypeFilters_QStringList(QtObjectPtr ptr, char* filters) -{ - ((QFileDialog*)(ptr))->setMimeTypeFilters(QString(filters).split("|", QString::SkipEmptyParts)); -} - -void QFileDialog_SetNameFilter_String(QtObjectPtr ptr, char* filter) -{ - ((QFileDialog*)(ptr))->setNameFilter(QString(filter)); -} - -void QFileDialog_SetNameFilters_QStringList(QtObjectPtr ptr, char* filters) -{ - ((QFileDialog*)(ptr))->setNameFilters(QString(filters).split("|", QString::SkipEmptyParts)); -} - -void QFileDialog_SetOption_Option_Bool(QtObjectPtr ptr, int option, int on) -{ - ((QFileDialog*)(ptr))->setOption(((QFileDialog::Option)(option)), on != 0); -} - -void QFileDialog_SetOptions_Option(QtObjectPtr ptr, int options) -{ - ((QFileDialog*)(ptr))->setOptions(((QFileDialog::Option)(options))); -} - -void QFileDialog_SetViewMode_ViewMode(QtObjectPtr ptr, int mode) -{ - ((QFileDialog*)(ptr))->setViewMode(((QFileDialog::ViewMode)(mode))); -} - -int QFileDialog_TestOption_Option(QtObjectPtr ptr, int option) -{ - return ((QFileDialog*)(ptr))->testOption(((QFileDialog::Option)(option))); -} - -int QFileDialog_ViewMode(QtObjectPtr ptr) -{ - return ((QFileDialog*)(ptr))->viewMode(); -} - -//Signals -void QFileDialog_ConnectSignalCurrentChanged(QtObjectPtr ptr) -{ - QObject::connect(((QFileDialog*)(ptr)), &QFileDialog::currentChanged, ((MyQFileDialog*)(ptr)), &MyQFileDialog::Signal_CurrentChanged, Qt::QueuedConnection); -} - -void QFileDialog_DisconnectSignalCurrentChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QFileDialog*)(ptr)), &QFileDialog::currentChanged, ((MyQFileDialog*)(ptr)), &MyQFileDialog::Signal_CurrentChanged); -} - -void QFileDialog_ConnectSignalDirectoryEntered(QtObjectPtr ptr) -{ - QObject::connect(((QFileDialog*)(ptr)), &QFileDialog::directoryEntered, ((MyQFileDialog*)(ptr)), &MyQFileDialog::Signal_DirectoryEntered, Qt::QueuedConnection); -} - -void QFileDialog_DisconnectSignalDirectoryEntered(QtObjectPtr ptr) -{ - QObject::disconnect(((QFileDialog*)(ptr)), &QFileDialog::directoryEntered, ((MyQFileDialog*)(ptr)), &MyQFileDialog::Signal_DirectoryEntered); -} - -void QFileDialog_ConnectSignalFileSelected(QtObjectPtr ptr) -{ - QObject::connect(((QFileDialog*)(ptr)), &QFileDialog::fileSelected, ((MyQFileDialog*)(ptr)), &MyQFileDialog::Signal_FileSelected, Qt::QueuedConnection); -} - -void QFileDialog_DisconnectSignalFileSelected(QtObjectPtr ptr) -{ - QObject::disconnect(((QFileDialog*)(ptr)), &QFileDialog::fileSelected, ((MyQFileDialog*)(ptr)), &MyQFileDialog::Signal_FileSelected); -} - -void QFileDialog_ConnectSignalFilesSelected(QtObjectPtr ptr) -{ - QObject::connect(((QFileDialog*)(ptr)), &QFileDialog::filesSelected, ((MyQFileDialog*)(ptr)), &MyQFileDialog::Signal_FilesSelected, Qt::QueuedConnection); -} - -void QFileDialog_DisconnectSignalFilesSelected(QtObjectPtr ptr) -{ - QObject::disconnect(((QFileDialog*)(ptr)), &QFileDialog::filesSelected, ((MyQFileDialog*)(ptr)), &MyQFileDialog::Signal_FilesSelected); -} - -void QFileDialog_ConnectSignalFilterSelected(QtObjectPtr ptr) -{ - QObject::connect(((QFileDialog*)(ptr)), &QFileDialog::filterSelected, ((MyQFileDialog*)(ptr)), &MyQFileDialog::Signal_FilterSelected, Qt::QueuedConnection); -} - -void QFileDialog_DisconnectSignalFilterSelected(QtObjectPtr ptr) -{ - QObject::disconnect(((QFileDialog*)(ptr)), &QFileDialog::filterSelected, ((MyQFileDialog*)(ptr)), &MyQFileDialog::Signal_FilterSelected); -} - -//Static Public Members -char* QFileDialog_GetExistingDirectory_QWidget_String_String_Option(QtObjectPtr parent, char* caption, char* dir, int options) -{ - return QFileDialog::getExistingDirectory(((QWidget*)(parent)), QString(caption), QString(dir), ((QFileDialog::Option)(options))).toUtf8().data(); -} - -char* QFileDialog_GetOpenFileName_QWidget_String_String_String_String_Option(QtObjectPtr parent, char* caption, char* dir, char* filter, char* selectedFilter, int options) -{ - return QFileDialog::getOpenFileName(((QWidget*)(parent)), QString(caption), QString(dir), QString(filter), new QString(selectedFilter), ((QFileDialog::Option)(options))).toUtf8().data(); -} - -char* QFileDialog_GetOpenFileNames_QWidget_String_String_String_String_Option(QtObjectPtr parent, char* caption, char* dir, char* filter, char* selectedFilter, int options) -{ - return QFileDialog::getOpenFileNames(((QWidget*)(parent)), QString(caption), QString(dir), QString(filter), new QString(selectedFilter), ((QFileDialog::Option)(options))).join("|").toUtf8().data(); -} - -char* QFileDialog_GetSaveFileName_QWidget_String_String_String_String_Option(QtObjectPtr parent, char* caption, char* dir, char* filter, char* selectedFilter, int options) -{ - return QFileDialog::getSaveFileName(((QWidget*)(parent)), QString(caption), QString(dir), QString(filter), new QString(selectedFilter), ((QFileDialog::Option)(options))).toUtf8().data(); -} - diff --git a/qfiledialog.go b/qfiledialog.go deleted file mode 100644 index 66efadab..00000000 --- a/qfiledialog.go +++ /dev/null @@ -1,429 +0,0 @@ -package qt - -//#include "qfiledialog.h" -import "C" - -import "strings" - -type qfiledialog struct { - qdialog -} - -type QFileDialog interface { - QDialog - AcceptMode() AcceptMode - DefaultSuffix() string - FileMode() FileMode - History() []string - LabelText(label DialogLabel) string - MimeTypeFilters() []string - NameFilters() []string - Open(receiver QObject, member string) - Options() Option - SelectFile(filename string) - SelectMimeTypeFilter(filter string) - SelectNameFilter(filter string) - SelectedFiles() []string - SelectedNameFilter() string - SetAcceptMode(mode AcceptMode) - SetDefaultSuffix(suffix string) - SetDirectory(directory string) - SetFileMode(mode FileMode) - SetHistory(paths []string) - SetLabelText(label DialogLabel, text string) - SetMimeTypeFilters(filters []string) - SetNameFilter(filter string) - SetNameFilters(filters []string) - SetOption(option Option, on bool) - SetOptions(options Option) - SetViewMode(mode ViewMode) - TestOption(option Option) bool - ViewMode() ViewMode - ConnectSignalCurrentChanged(f func()) - DisconnectSignalCurrentChanged() - SignalCurrentChanged() func() - ConnectSignalDirectoryEntered(f func()) - DisconnectSignalDirectoryEntered() - SignalDirectoryEntered() func() - ConnectSignalFileSelected(f func()) - DisconnectSignalFileSelected() - SignalFileSelected() func() - ConnectSignalFilesSelected(f func()) - DisconnectSignalFilesSelected() - SignalFilesSelected() func() - ConnectSignalFilterSelected(f func()) - DisconnectSignalFilterSelected() - SignalFilterSelected() func() -} - -func (p *qfiledialog) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qfiledialog) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -//AcceptMode -type AcceptMode int - -var ( - ACCEPTOPEN = AcceptMode(C.QFileDialog_AcceptOpen()) - ACCEPTSAVE = AcceptMode(C.QFileDialog_AcceptSave()) -) - -//DialogLabel -type DialogLabel int - -var ( - LOOKIN = DialogLabel(C.QFileDialog_LookIn()) - FILENAME = DialogLabel(C.QFileDialog_FileName()) - FILETYPE = DialogLabel(C.QFileDialog_FileType()) - ACCEPT = DialogLabel(C.QFileDialog_Accept()) - REJECT = DialogLabel(C.QFileDialog_Reject()) -) - -//FileMode -type FileMode int - -var ( - ANYFILE = FileMode(C.QFileDialog_AnyFile()) - EXISTINGFILE = FileMode(C.QFileDialog_ExistingFile()) - DIRECTORY = FileMode(C.QFileDialog_Directory()) - EXISTINGFILES = FileMode(C.QFileDialog_ExistingFiles()) - DIRECTORYONLY = FileMode(C.QFileDialog_DirectoryOnly()) -) - -//Option -type Option int - -var ( - SHOWDIRSONLY = Option(C.QFileDialog_ShowDirsOnly()) - DONTRESOLVESYMLINKS = Option(C.QFileDialog_DontResolveSymlinks()) - DONTCONFIRMOVERWRITE = Option(C.QFileDialog_DontConfirmOverwrite()) - DONTUSENATIVEDIALOG = Option(C.QFileDialog_DontUseNativeDialog()) - READONLY = Option(C.QFileDialog_ReadOnly()) - HIDENAMEFILTERDETAILS = Option(C.QFileDialog_HideNameFilterDetails()) - DONTUSESHEET = Option(C.QFileDialog_DontUseSheet()) - DONTUSECUSTOMDIRECTORYICONS = Option(C.QFileDialog_DontUseCustomDirectoryIcons()) -) - -//ViewMode -type ViewMode int - -var ( - DETAIL = ViewMode(C.QFileDialog_Detail()) - LIST = ViewMode(C.QFileDialog_List()) -) - -func NewQFileDialog(parent QWidget, caption string, directory string, filter string) QFileDialog { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qfiledialog = new(qfiledialog) - qfiledialog.SetPointer(C.QFileDialog_New_QWidget_String_String_String(parentPtr, C.CString(caption), C.CString(directory), C.CString(filter))) - qfiledialog.SetObjectName("QFileDialog_" + randomIdentifier()) - return qfiledialog -} - -func (p *qfiledialog) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QFileDialog_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qfiledialog) AcceptMode() AcceptMode { - if p.Pointer() == nil { - return 0 - } - return AcceptMode(C.QFileDialog_AcceptMode(p.Pointer())) -} - -func (p *qfiledialog) DefaultSuffix() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QFileDialog_DefaultSuffix(p.Pointer())) -} - -func (p *qfiledialog) FileMode() FileMode { - if p.Pointer() == nil { - return 0 - } - return FileMode(C.QFileDialog_FileMode(p.Pointer())) -} - -func (p *qfiledialog) History() []string { - if p.Pointer() == nil { - return []string{""} - } - return strings.Split(C.GoString(C.QFileDialog_History(p.Pointer())), "|") -} - -func (p *qfiledialog) LabelText(label DialogLabel) string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QFileDialog_LabelText_DialogLabel(p.Pointer(), C.int(label))) -} - -func (p *qfiledialog) MimeTypeFilters() []string { - if p.Pointer() == nil { - return []string{""} - } - return strings.Split(C.GoString(C.QFileDialog_MimeTypeFilters(p.Pointer())), "|") -} - -func (p *qfiledialog) NameFilters() []string { - if p.Pointer() == nil { - return []string{""} - } - return strings.Split(C.GoString(C.QFileDialog_NameFilters(p.Pointer())), "|") -} - -func (p *qfiledialog) Open(receiver QObject, member string) { - if p.Pointer() != nil { - var receiverPtr C.QtObjectPtr - if receiver != nil { - receiverPtr = receiver.Pointer() - } - C.QFileDialog_Open_QObject_String(p.Pointer(), receiverPtr, C.CString(member)) - } -} - -func (p *qfiledialog) Options() Option { - if p.Pointer() == nil { - return 0 - } - return Option(C.QFileDialog_Options(p.Pointer())) -} - -func (p *qfiledialog) SelectFile(filename string) { - if p.Pointer() != nil { - C.QFileDialog_SelectFile_String(p.Pointer(), C.CString(filename)) - } -} - -func (p *qfiledialog) SelectMimeTypeFilter(filter string) { - if p.Pointer() != nil { - C.QFileDialog_SelectMimeTypeFilter_String(p.Pointer(), C.CString(filter)) - } -} - -func (p *qfiledialog) SelectNameFilter(filter string) { - if p.Pointer() != nil { - C.QFileDialog_SelectNameFilter_String(p.Pointer(), C.CString(filter)) - } -} - -func (p *qfiledialog) SelectedFiles() []string { - if p.Pointer() == nil { - return []string{""} - } - return strings.Split(C.GoString(C.QFileDialog_SelectedFiles(p.Pointer())), "|") -} - -func (p *qfiledialog) SelectedNameFilter() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QFileDialog_SelectedNameFilter(p.Pointer())) -} - -func (p *qfiledialog) SetAcceptMode(mode AcceptMode) { - if p.Pointer() != nil { - C.QFileDialog_SetAcceptMode_AcceptMode(p.Pointer(), C.int(mode)) - } -} - -func (p *qfiledialog) SetDefaultSuffix(suffix string) { - if p.Pointer() != nil { - C.QFileDialog_SetDefaultSuffix_String(p.Pointer(), C.CString(suffix)) - } -} - -func (p *qfiledialog) SetDirectory(directory string) { - if p.Pointer() != nil { - C.QFileDialog_SetDirectory_String(p.Pointer(), C.CString(directory)) - } -} - -func (p *qfiledialog) SetFileMode(mode FileMode) { - if p.Pointer() != nil { - C.QFileDialog_SetFileMode_FileMode(p.Pointer(), C.int(mode)) - } -} - -func (p *qfiledialog) SetHistory(paths []string) { - if p.Pointer() != nil { - C.QFileDialog_SetHistory_QStringList(p.Pointer(), C.CString(strings.Join(paths, "|"))) - } -} - -func (p *qfiledialog) SetLabelText(label DialogLabel, text string) { - if p.Pointer() != nil { - C.QFileDialog_SetLabelText_DialogLabel_String(p.Pointer(), C.int(label), C.CString(text)) - } -} - -func (p *qfiledialog) SetMimeTypeFilters(filters []string) { - if p.Pointer() != nil { - C.QFileDialog_SetMimeTypeFilters_QStringList(p.Pointer(), C.CString(strings.Join(filters, "|"))) - } -} - -func (p *qfiledialog) SetNameFilter(filter string) { - if p.Pointer() != nil { - C.QFileDialog_SetNameFilter_String(p.Pointer(), C.CString(filter)) - } -} - -func (p *qfiledialog) SetNameFilters(filters []string) { - if p.Pointer() != nil { - C.QFileDialog_SetNameFilters_QStringList(p.Pointer(), C.CString(strings.Join(filters, "|"))) - } -} - -func (p *qfiledialog) SetOption(option Option, on bool) { - if p.Pointer() != nil { - C.QFileDialog_SetOption_Option_Bool(p.Pointer(), C.int(option), goBoolToCInt(on)) - } -} - -func (p *qfiledialog) SetOptions(options Option) { - if p.Pointer() != nil { - C.QFileDialog_SetOptions_Option(p.Pointer(), C.int(options)) - } -} - -func (p *qfiledialog) SetViewMode(mode ViewMode) { - if p.Pointer() != nil { - C.QFileDialog_SetViewMode_ViewMode(p.Pointer(), C.int(mode)) - } -} - -func (p *qfiledialog) TestOption(option Option) bool { - if p.Pointer() == nil { - return false - } - return C.QFileDialog_TestOption_Option(p.Pointer(), C.int(option)) != 0 -} - -func (p *qfiledialog) ViewMode() ViewMode { - if p.Pointer() == nil { - return 0 - } - return ViewMode(C.QFileDialog_ViewMode(p.Pointer())) -} - -func (p *qfiledialog) ConnectSignalCurrentChanged(f func()) { - C.QFileDialog_ConnectSignalCurrentChanged(p.Pointer()) - connectSignal(p.ObjectName(), "currentChanged", f) -} - -func (p *qfiledialog) DisconnectSignalCurrentChanged() { - C.QFileDialog_DisconnectSignalCurrentChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "currentChanged") -} - -func (p *qfiledialog) SignalCurrentChanged() func() { - return getSignal(p.ObjectName(), "currentChanged") -} - -func (p *qfiledialog) ConnectSignalDirectoryEntered(f func()) { - C.QFileDialog_ConnectSignalDirectoryEntered(p.Pointer()) - connectSignal(p.ObjectName(), "directoryEntered", f) -} - -func (p *qfiledialog) DisconnectSignalDirectoryEntered() { - C.QFileDialog_DisconnectSignalDirectoryEntered(p.Pointer()) - disconnectSignal(p.ObjectName(), "directoryEntered") -} - -func (p *qfiledialog) SignalDirectoryEntered() func() { - return getSignal(p.ObjectName(), "directoryEntered") -} - -func (p *qfiledialog) ConnectSignalFileSelected(f func()) { - C.QFileDialog_ConnectSignalFileSelected(p.Pointer()) - connectSignal(p.ObjectName(), "fileSelected", f) -} - -func (p *qfiledialog) DisconnectSignalFileSelected() { - C.QFileDialog_DisconnectSignalFileSelected(p.Pointer()) - disconnectSignal(p.ObjectName(), "fileSelected") -} - -func (p *qfiledialog) SignalFileSelected() func() { - return getSignal(p.ObjectName(), "fileSelected") -} - -func (p *qfiledialog) ConnectSignalFilesSelected(f func()) { - C.QFileDialog_ConnectSignalFilesSelected(p.Pointer()) - connectSignal(p.ObjectName(), "filesSelected", f) -} - -func (p *qfiledialog) DisconnectSignalFilesSelected() { - C.QFileDialog_DisconnectSignalFilesSelected(p.Pointer()) - disconnectSignal(p.ObjectName(), "filesSelected") -} - -func (p *qfiledialog) SignalFilesSelected() func() { - return getSignal(p.ObjectName(), "filesSelected") -} - -func (p *qfiledialog) ConnectSignalFilterSelected(f func()) { - C.QFileDialog_ConnectSignalFilterSelected(p.Pointer()) - connectSignal(p.ObjectName(), "filterSelected", f) -} - -func (p *qfiledialog) DisconnectSignalFilterSelected() { - C.QFileDialog_DisconnectSignalFilterSelected(p.Pointer()) - disconnectSignal(p.ObjectName(), "filterSelected") -} - -func (p *qfiledialog) SignalFilterSelected() func() { - return getSignal(p.ObjectName(), "filterSelected") -} - -func QFileDialog_GetExistingDirectory(parent QWidget, caption string, dir string, options Option) string { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - return C.GoString(C.QFileDialog_GetExistingDirectory_QWidget_String_String_Option(parentPtr, C.CString(caption), C.CString(dir), C.int(options))) -} - -func QFileDialog_GetOpenFileName(parent QWidget, caption string, dir string, filter string, selectedFilter string, options Option) string { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - return C.GoString(C.QFileDialog_GetOpenFileName_QWidget_String_String_String_String_Option(parentPtr, C.CString(caption), C.CString(dir), C.CString(filter), C.CString(selectedFilter), C.int(options))) -} - -func QFileDialog_GetOpenFileNames(parent QWidget, caption string, dir string, filter string, selectedFilter string, options Option) []string { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - return strings.Split(C.GoString(C.QFileDialog_GetOpenFileNames_QWidget_String_String_String_String_Option(parentPtr, C.CString(caption), C.CString(dir), C.CString(filter), C.CString(selectedFilter), C.int(options))), "|") -} - -func QFileDialog_GetSaveFileName(parent QWidget, caption string, dir string, filter string, selectedFilter string, options Option) string { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - return C.GoString(C.QFileDialog_GetSaveFileName_QWidget_String_String_String_String_Option(parentPtr, C.CString(caption), C.CString(dir), C.CString(filter), C.CString(selectedFilter), C.int(options))) -} - -//export callbackQFileDialog -func callbackQFileDialog(ptr C.QtObjectPtr, msg *C.char) { - var qfiledialog = new(qfiledialog) - qfiledialog.SetPointer(ptr) - getSignal(qfiledialog.ObjectName(), C.GoString(msg))() -} diff --git a/qfiledialog.h b/qfiledialog.h deleted file mode 100644 index 65544020..00000000 --- a/qfiledialog.h +++ /dev/null @@ -1,80 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Types -int QFileDialog_AcceptOpen(); -int QFileDialog_AcceptSave(); -int QFileDialog_LookIn(); -int QFileDialog_FileName(); -int QFileDialog_FileType(); -int QFileDialog_Accept(); -int QFileDialog_Reject(); -int QFileDialog_AnyFile(); -int QFileDialog_ExistingFile(); -int QFileDialog_Directory(); -int QFileDialog_ExistingFiles(); -int QFileDialog_DirectoryOnly(); -int QFileDialog_ShowDirsOnly(); -int QFileDialog_DontResolveSymlinks(); -int QFileDialog_DontConfirmOverwrite(); -int QFileDialog_DontUseNativeDialog(); -int QFileDialog_ReadOnly(); -int QFileDialog_HideNameFilterDetails(); -int QFileDialog_DontUseSheet(); -int QFileDialog_DontUseCustomDirectoryIcons(); -int QFileDialog_Detail(); -int QFileDialog_List(); -//Public Functions -QtObjectPtr QFileDialog_New_QWidget_String_String_String(QtObjectPtr parent, char* caption, char* directory, char* filter); -void QFileDialog_Destroy(QtObjectPtr ptr); -int QFileDialog_AcceptMode(QtObjectPtr ptr); -char* QFileDialog_DefaultSuffix(QtObjectPtr ptr); -int QFileDialog_FileMode(QtObjectPtr ptr); -char* QFileDialog_History(QtObjectPtr ptr); -char* QFileDialog_LabelText_DialogLabel(QtObjectPtr ptr, int label); -char* QFileDialog_MimeTypeFilters(QtObjectPtr ptr); -char* QFileDialog_NameFilters(QtObjectPtr ptr); -void QFileDialog_Open_QObject_String(QtObjectPtr ptr, QtObjectPtr receiver, char* member); -int QFileDialog_Options(QtObjectPtr ptr); -void QFileDialog_SelectFile_String(QtObjectPtr ptr, char* filename); -void QFileDialog_SelectMimeTypeFilter_String(QtObjectPtr ptr, char* filter); -void QFileDialog_SelectNameFilter_String(QtObjectPtr ptr, char* filter); -char* QFileDialog_SelectedFiles(QtObjectPtr ptr); -char* QFileDialog_SelectedNameFilter(QtObjectPtr ptr); -void QFileDialog_SetAcceptMode_AcceptMode(QtObjectPtr ptr, int mode); -void QFileDialog_SetDefaultSuffix_String(QtObjectPtr ptr, char* suffix); -void QFileDialog_SetDirectory_String(QtObjectPtr ptr, char* directory); -void QFileDialog_SetFileMode_FileMode(QtObjectPtr ptr, int mode); -void QFileDialog_SetHistory_QStringList(QtObjectPtr ptr, char* paths); -void QFileDialog_SetLabelText_DialogLabel_String(QtObjectPtr ptr, int label, char* text); -void QFileDialog_SetMimeTypeFilters_QStringList(QtObjectPtr ptr, char* filters); -void QFileDialog_SetNameFilter_String(QtObjectPtr ptr, char* filter); -void QFileDialog_SetNameFilters_QStringList(QtObjectPtr ptr, char* filters); -void QFileDialog_SetOption_Option_Bool(QtObjectPtr ptr, int option, int on); -void QFileDialog_SetOptions_Option(QtObjectPtr ptr, int options); -void QFileDialog_SetViewMode_ViewMode(QtObjectPtr ptr, int mode); -int QFileDialog_TestOption_Option(QtObjectPtr ptr, int option); -int QFileDialog_ViewMode(QtObjectPtr ptr); -//Signals -void QFileDialog_ConnectSignalCurrentChanged(QtObjectPtr ptr); -void QFileDialog_DisconnectSignalCurrentChanged(QtObjectPtr ptr); -void QFileDialog_ConnectSignalDirectoryEntered(QtObjectPtr ptr); -void QFileDialog_DisconnectSignalDirectoryEntered(QtObjectPtr ptr); -void QFileDialog_ConnectSignalFileSelected(QtObjectPtr ptr); -void QFileDialog_DisconnectSignalFileSelected(QtObjectPtr ptr); -void QFileDialog_ConnectSignalFilesSelected(QtObjectPtr ptr); -void QFileDialog_DisconnectSignalFilesSelected(QtObjectPtr ptr); -void QFileDialog_ConnectSignalFilterSelected(QtObjectPtr ptr); -void QFileDialog_DisconnectSignalFilterSelected(QtObjectPtr ptr); -//Static Public Members -char* QFileDialog_GetExistingDirectory_QWidget_String_String_Option(QtObjectPtr parent, char* caption, char* dir, int options); -char* QFileDialog_GetOpenFileName_QWidget_String_String_String_String_Option(QtObjectPtr parent, char* caption, char* dir, char* filter, char* selectedFilter, int options); -char* QFileDialog_GetOpenFileNames_QWidget_String_String_String_String_Option(QtObjectPtr parent, char* caption, char* dir, char* filter, char* selectedFilter, int options); -char* QFileDialog_GetSaveFileName_QWidget_String_String_String_String_Option(QtObjectPtr parent, char* caption, char* dir, char* filter, char* selectedFilter, int options); - -#ifdef __cplusplus -} -#endif diff --git a/qfiledialog.moc b/qfiledialog.moc deleted file mode 100644 index ccb626db..00000000 --- a/qfiledialog.moc +++ /dev/null @@ -1,88 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qfiledialog.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qfiledialog.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQFileDialog_t { - QByteArrayData data[1]; - char stringdata[14]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQFileDialog_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQFileDialog_t qt_meta_stringdata_MyQFileDialog = { - { -QT_MOC_LITERAL(0, 0, 13) // "MyQFileDialog" - - }, - "MyQFileDialog" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQFileDialog[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 0, 0, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 0, // signalCount - - 0 // eod -}; - -void MyQFileDialog::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - Q_UNUSED(_o); - Q_UNUSED(_id); - Q_UNUSED(_c); - Q_UNUSED(_a); -} - -const QMetaObject MyQFileDialog::staticMetaObject = { - { &QFileDialog::staticMetaObject, qt_meta_stringdata_MyQFileDialog.data, - qt_meta_data_MyQFileDialog, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQFileDialog::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQFileDialog::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQFileDialog.stringdata)) - return static_cast(const_cast< MyQFileDialog*>(this)); - return QFileDialog::qt_metacast(_clname); -} - -int MyQFileDialog::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QFileDialog::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - return _id; -} -QT_END_MOC_NAMESPACE diff --git a/qformlayout.cpp b/qformlayout.cpp deleted file mode 100644 index aa06464f..00000000 --- a/qformlayout.cpp +++ /dev/null @@ -1,127 +0,0 @@ -#include "qformlayout.h" -#include -#include "cgoexport.h" - - - -//Public Functions -QtObjectPtr QFormLayout_New_QWidget(QtObjectPtr parent) -{ - return new QFormLayout(((QWidget*)(parent))); -} - -void QFormLayout_Destroy(QtObjectPtr ptr) -{ - ((QFormLayout*)(ptr))->~QFormLayout(); -} - -void QFormLayout_AddRow_QWidget_QWidget(QtObjectPtr ptr, QtObjectPtr label, QtObjectPtr field) -{ - ((QFormLayout*)(ptr))->addRow(((QWidget*)(label)), ((QWidget*)(field))); -} - -void QFormLayout_AddRow_QWidget_QLayout(QtObjectPtr ptr, QtObjectPtr label, QtObjectPtr field) -{ - ((QFormLayout*)(ptr))->addRow(((QWidget*)(label)), ((QLayout*)(field))); -} - -void QFormLayout_AddRow_String_QWidget(QtObjectPtr ptr, char* labelText, QtObjectPtr field) -{ - ((QFormLayout*)(ptr))->addRow(QString(labelText), ((QWidget*)(field))); -} - -void QFormLayout_AddRow_String_QLayout(QtObjectPtr ptr, char* labelText, QtObjectPtr field) -{ - ((QFormLayout*)(ptr))->addRow(QString(labelText), ((QLayout*)(field))); -} - -void QFormLayout_AddRow_QWidget(QtObjectPtr ptr, QtObjectPtr widget) -{ - ((QFormLayout*)(ptr))->addRow(((QWidget*)(widget))); -} - -void QFormLayout_AddRow_QLayout(QtObjectPtr ptr, QtObjectPtr layout) -{ - ((QFormLayout*)(ptr))->addRow(((QLayout*)(layout))); -} - -int QFormLayout_FormAlignment(QtObjectPtr ptr) -{ - return ((QFormLayout*)(ptr))->formAlignment(); -} - -int QFormLayout_HorizontalSpacing(QtObjectPtr ptr) -{ - return ((QFormLayout*)(ptr))->horizontalSpacing(); -} - -void QFormLayout_InsertRow_Int_QWidget_QWidget(QtObjectPtr ptr, int row, QtObjectPtr label, QtObjectPtr field) -{ - ((QFormLayout*)(ptr))->insertRow(row, ((QWidget*)(label)), ((QWidget*)(field))); -} - -void QFormLayout_InsertRow_Int_QWidget_QLayout(QtObjectPtr ptr, int row, QtObjectPtr label, QtObjectPtr field) -{ - ((QFormLayout*)(ptr))->insertRow(row, ((QWidget*)(label)), ((QLayout*)(field))); -} - -void QFormLayout_InsertRow_Int_String_QWidget(QtObjectPtr ptr, int row, char* labelText, QtObjectPtr field) -{ - ((QFormLayout*)(ptr))->insertRow(row, QString(labelText), ((QWidget*)(field))); -} - -void QFormLayout_InsertRow_Int_String_QLayout(QtObjectPtr ptr, int row, char* labelText, QtObjectPtr field) -{ - ((QFormLayout*)(ptr))->insertRow(row, QString(labelText), ((QLayout*)(field))); -} - -void QFormLayout_InsertRow_Int_QWidget(QtObjectPtr ptr, int row, QtObjectPtr widget) -{ - ((QFormLayout*)(ptr))->insertRow(row, ((QWidget*)(widget))); -} - -void QFormLayout_InsertRow_Int_QLayout(QtObjectPtr ptr, int row, QtObjectPtr layout) -{ - ((QFormLayout*)(ptr))->insertRow(row, ((QLayout*)(layout))); -} - -int QFormLayout_LabelAlignment(QtObjectPtr ptr) -{ - return ((QFormLayout*)(ptr))->labelAlignment(); -} - -QtObjectPtr QFormLayout_LabelForField_QWidget(QtObjectPtr ptr, QtObjectPtr field) -{ - return ((QFormLayout*)(ptr))->labelForField(((QWidget*)(field))); -} - -int QFormLayout_RowCount(QtObjectPtr ptr) -{ - return ((QFormLayout*)(ptr))->rowCount(); -} - -void QFormLayout_SetFormAlignment_AlignmentFlag(QtObjectPtr ptr, int alignment) -{ - ((QFormLayout*)(ptr))->setFormAlignment(((Qt::AlignmentFlag)(alignment))); -} - -void QFormLayout_SetHorizontalSpacing_Int(QtObjectPtr ptr, int spacing) -{ - ((QFormLayout*)(ptr))->setHorizontalSpacing(spacing); -} - -void QFormLayout_SetLabelAlignment_AlignmentFlag(QtObjectPtr ptr, int alignment) -{ - ((QFormLayout*)(ptr))->setLabelAlignment(((Qt::AlignmentFlag)(alignment))); -} - -void QFormLayout_SetVerticalSpacing_Int(QtObjectPtr ptr, int spacing) -{ - ((QFormLayout*)(ptr))->setVerticalSpacing(spacing); -} - -int QFormLayout_VerticalSpacing(QtObjectPtr ptr) -{ - return ((QFormLayout*)(ptr))->verticalSpacing(); -} - diff --git a/qformlayout.go b/qformlayout.go deleted file mode 100644 index 02ad2e86..00000000 --- a/qformlayout.go +++ /dev/null @@ -1,273 +0,0 @@ -package qt - -//#include "qformlayout.h" -import "C" - -type qformlayout struct { - qlayout -} - -type QFormLayout interface { - QLayout - AddRow1(label QWidget, field QWidget) - AddRow2(label QWidget, field QLayout) - AddRow3(labelText string, field QWidget) - AddRow4(labelText string, field QLayout) - AddRow5(widget QWidget) - AddRow6(layout QLayout) - FormAlignment() AlignmentFlag - HorizontalSpacing() int - InsertRow1(row int, label QWidget, field QWidget) - InsertRow2(row int, label QWidget, field QLayout) - InsertRow3(row int, labelText string, field QWidget) - InsertRow4(row int, labelText string, field QLayout) - InsertRow5(row int, widget QWidget) - InsertRow6(row int, layout QLayout) - LabelAlignment() AlignmentFlag - LabelForField(field QWidget) QWidget - RowCount() int - SetFormAlignment(alignment AlignmentFlag) - SetHorizontalSpacing(spacing int) - SetLabelAlignment(alignment AlignmentFlag) - SetVerticalSpacing(spacing int) - VerticalSpacing() int -} - -func (p *qformlayout) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qformlayout) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQFormLayout(parent QWidget) QFormLayout { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qformlayout = new(qformlayout) - qformlayout.SetPointer(C.QFormLayout_New_QWidget(parentPtr)) - qformlayout.SetObjectName("QFormLayout_" + randomIdentifier()) - return qformlayout -} - -func (p *qformlayout) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QFormLayout_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qformlayout) AddRow1(label QWidget, field QWidget) { - if p.Pointer() != nil { - var labelPtr C.QtObjectPtr - if label != nil { - labelPtr = label.Pointer() - } - var fieldPtr C.QtObjectPtr - if field != nil { - fieldPtr = field.Pointer() - } - C.QFormLayout_AddRow_QWidget_QWidget(p.Pointer(), labelPtr, fieldPtr) - } -} - -func (p *qformlayout) AddRow2(label QWidget, field QLayout) { - if p.Pointer() != nil { - var labelPtr C.QtObjectPtr - if label != nil { - labelPtr = label.Pointer() - } - var fieldPtr C.QtObjectPtr - if field != nil { - fieldPtr = field.Pointer() - } - C.QFormLayout_AddRow_QWidget_QLayout(p.Pointer(), labelPtr, fieldPtr) - } -} - -func (p *qformlayout) AddRow3(labelText string, field QWidget) { - if p.Pointer() != nil { - var fieldPtr C.QtObjectPtr - if field != nil { - fieldPtr = field.Pointer() - } - C.QFormLayout_AddRow_String_QWidget(p.Pointer(), C.CString(labelText), fieldPtr) - } -} - -func (p *qformlayout) AddRow4(labelText string, field QLayout) { - if p.Pointer() != nil { - var fieldPtr C.QtObjectPtr - if field != nil { - fieldPtr = field.Pointer() - } - C.QFormLayout_AddRow_String_QLayout(p.Pointer(), C.CString(labelText), fieldPtr) - } -} - -func (p *qformlayout) AddRow5(widget QWidget) { - if p.Pointer() != nil { - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - C.QFormLayout_AddRow_QWidget(p.Pointer(), widgetPtr) - } -} - -func (p *qformlayout) AddRow6(layout QLayout) { - if p.Pointer() != nil { - var layoutPtr C.QtObjectPtr - if layout != nil { - layoutPtr = layout.Pointer() - } - C.QFormLayout_AddRow_QLayout(p.Pointer(), layoutPtr) - } -} - -func (p *qformlayout) FormAlignment() AlignmentFlag { - if p.Pointer() == nil { - return 0 - } - return AlignmentFlag(C.QFormLayout_FormAlignment(p.Pointer())) -} - -func (p *qformlayout) HorizontalSpacing() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QFormLayout_HorizontalSpacing(p.Pointer())) -} - -func (p *qformlayout) InsertRow1(row int, label QWidget, field QWidget) { - if p.Pointer() != nil { - var labelPtr C.QtObjectPtr - if label != nil { - labelPtr = label.Pointer() - } - var fieldPtr C.QtObjectPtr - if field != nil { - fieldPtr = field.Pointer() - } - C.QFormLayout_InsertRow_Int_QWidget_QWidget(p.Pointer(), C.int(row), labelPtr, fieldPtr) - } -} - -func (p *qformlayout) InsertRow2(row int, label QWidget, field QLayout) { - if p.Pointer() != nil { - var labelPtr C.QtObjectPtr - if label != nil { - labelPtr = label.Pointer() - } - var fieldPtr C.QtObjectPtr - if field != nil { - fieldPtr = field.Pointer() - } - C.QFormLayout_InsertRow_Int_QWidget_QLayout(p.Pointer(), C.int(row), labelPtr, fieldPtr) - } -} - -func (p *qformlayout) InsertRow3(row int, labelText string, field QWidget) { - if p.Pointer() != nil { - var fieldPtr C.QtObjectPtr - if field != nil { - fieldPtr = field.Pointer() - } - C.QFormLayout_InsertRow_Int_String_QWidget(p.Pointer(), C.int(row), C.CString(labelText), fieldPtr) - } -} - -func (p *qformlayout) InsertRow4(row int, labelText string, field QLayout) { - if p.Pointer() != nil { - var fieldPtr C.QtObjectPtr - if field != nil { - fieldPtr = field.Pointer() - } - C.QFormLayout_InsertRow_Int_String_QLayout(p.Pointer(), C.int(row), C.CString(labelText), fieldPtr) - } -} - -func (p *qformlayout) InsertRow5(row int, widget QWidget) { - if p.Pointer() != nil { - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - C.QFormLayout_InsertRow_Int_QWidget(p.Pointer(), C.int(row), widgetPtr) - } -} - -func (p *qformlayout) InsertRow6(row int, layout QLayout) { - if p.Pointer() != nil { - var layoutPtr C.QtObjectPtr - if layout != nil { - layoutPtr = layout.Pointer() - } - C.QFormLayout_InsertRow_Int_QLayout(p.Pointer(), C.int(row), layoutPtr) - } -} - -func (p *qformlayout) LabelAlignment() AlignmentFlag { - if p.Pointer() == nil { - return 0 - } - return AlignmentFlag(C.QFormLayout_LabelAlignment(p.Pointer())) -} - -func (p *qformlayout) LabelForField(field QWidget) QWidget { - if p.Pointer() == nil { - return nil - } else { - var fieldPtr C.QtObjectPtr - if field != nil { - fieldPtr = field.Pointer() - } - var qwidget = new(qwidget) - qwidget.SetPointer(C.QFormLayout_LabelForField_QWidget(p.Pointer(), fieldPtr)) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qformlayout) RowCount() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QFormLayout_RowCount(p.Pointer())) -} - -func (p *qformlayout) SetFormAlignment(alignment AlignmentFlag) { - if p.Pointer() != nil { - C.QFormLayout_SetFormAlignment_AlignmentFlag(p.Pointer(), C.int(alignment)) - } -} - -func (p *qformlayout) SetHorizontalSpacing(spacing int) { - if p.Pointer() != nil { - C.QFormLayout_SetHorizontalSpacing_Int(p.Pointer(), C.int(spacing)) - } -} - -func (p *qformlayout) SetLabelAlignment(alignment AlignmentFlag) { - if p.Pointer() != nil { - C.QFormLayout_SetLabelAlignment_AlignmentFlag(p.Pointer(), C.int(alignment)) - } -} - -func (p *qformlayout) SetVerticalSpacing(spacing int) { - if p.Pointer() != nil { - C.QFormLayout_SetVerticalSpacing_Int(p.Pointer(), C.int(spacing)) - } -} - -func (p *qformlayout) VerticalSpacing() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QFormLayout_VerticalSpacing(p.Pointer())) -} diff --git a/qformlayout.h b/qformlayout.h deleted file mode 100644 index 02946f8b..00000000 --- a/qformlayout.h +++ /dev/null @@ -1,35 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QFormLayout_New_QWidget(QtObjectPtr parent); -void QFormLayout_Destroy(QtObjectPtr ptr); -void QFormLayout_AddRow_QWidget_QWidget(QtObjectPtr ptr, QtObjectPtr label, QtObjectPtr field); -void QFormLayout_AddRow_QWidget_QLayout(QtObjectPtr ptr, QtObjectPtr label, QtObjectPtr field); -void QFormLayout_AddRow_String_QWidget(QtObjectPtr ptr, char* labelText, QtObjectPtr field); -void QFormLayout_AddRow_String_QLayout(QtObjectPtr ptr, char* labelText, QtObjectPtr field); -void QFormLayout_AddRow_QWidget(QtObjectPtr ptr, QtObjectPtr widget); -void QFormLayout_AddRow_QLayout(QtObjectPtr ptr, QtObjectPtr layout); -int QFormLayout_FormAlignment(QtObjectPtr ptr); -int QFormLayout_HorizontalSpacing(QtObjectPtr ptr); -void QFormLayout_InsertRow_Int_QWidget_QWidget(QtObjectPtr ptr, int row, QtObjectPtr label, QtObjectPtr field); -void QFormLayout_InsertRow_Int_QWidget_QLayout(QtObjectPtr ptr, int row, QtObjectPtr label, QtObjectPtr field); -void QFormLayout_InsertRow_Int_String_QWidget(QtObjectPtr ptr, int row, char* labelText, QtObjectPtr field); -void QFormLayout_InsertRow_Int_String_QLayout(QtObjectPtr ptr, int row, char* labelText, QtObjectPtr field); -void QFormLayout_InsertRow_Int_QWidget(QtObjectPtr ptr, int row, QtObjectPtr widget); -void QFormLayout_InsertRow_Int_QLayout(QtObjectPtr ptr, int row, QtObjectPtr layout); -int QFormLayout_LabelAlignment(QtObjectPtr ptr); -QtObjectPtr QFormLayout_LabelForField_QWidget(QtObjectPtr ptr, QtObjectPtr field); -int QFormLayout_RowCount(QtObjectPtr ptr); -void QFormLayout_SetFormAlignment_AlignmentFlag(QtObjectPtr ptr, int alignment); -void QFormLayout_SetHorizontalSpacing_Int(QtObjectPtr ptr, int spacing); -void QFormLayout_SetLabelAlignment_AlignmentFlag(QtObjectPtr ptr, int alignment); -void QFormLayout_SetVerticalSpacing_Int(QtObjectPtr ptr, int spacing); -int QFormLayout_VerticalSpacing(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qformlayout.moc b/qformlayout.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/qframe.cpp b/qframe.cpp deleted file mode 100644 index 7df3ca79..00000000 --- a/qframe.cpp +++ /dev/null @@ -1,52 +0,0 @@ -#include "qframe.h" -#include -#include "cgoexport.h" - - - -//Public Functions -QtObjectPtr QFrame_New_QWidget_WindowType(QtObjectPtr parent, int f) -{ - return new QFrame(((QWidget*)(parent)), ((Qt::WindowType)(f))); -} - -void QFrame_Destroy(QtObjectPtr ptr) -{ - ((QFrame*)(ptr))->~QFrame(); -} - -int QFrame_FrameStyle(QtObjectPtr ptr) -{ - return ((QFrame*)(ptr))->frameStyle(); -} - -int QFrame_FrameWidth(QtObjectPtr ptr) -{ - return ((QFrame*)(ptr))->frameWidth(); -} - -int QFrame_LineWidth(QtObjectPtr ptr) -{ - return ((QFrame*)(ptr))->lineWidth(); -} - -int QFrame_MidLineWidth(QtObjectPtr ptr) -{ - return ((QFrame*)(ptr))->midLineWidth(); -} - -void QFrame_SetFrameStyle_Int(QtObjectPtr ptr, int style) -{ - ((QFrame*)(ptr))->setFrameStyle(style); -} - -void QFrame_SetLineWidth_Int(QtObjectPtr ptr, int width) -{ - ((QFrame*)(ptr))->setLineWidth(width); -} - -void QFrame_SetMidLineWidth_Int(QtObjectPtr ptr, int width) -{ - ((QFrame*)(ptr))->setMidLineWidth(width); -} - diff --git a/qframe.go b/qframe.go deleted file mode 100644 index 601ecc9e..00000000 --- a/qframe.go +++ /dev/null @@ -1,92 +0,0 @@ -package qt - -//#include "qframe.h" -import "C" - -type qframe struct { - qwidget -} - -type QFrame interface { - QWidget - FrameStyle() int - FrameWidth() int - LineWidth() int - MidLineWidth() int - SetFrameStyle(style int) - SetLineWidth(width int) - SetMidLineWidth(width int) -} - -func (p *qframe) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qframe) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQFrame(parent QWidget, f WindowType) QFrame { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qframe = new(qframe) - qframe.SetPointer(C.QFrame_New_QWidget_WindowType(parentPtr, C.int(f))) - qframe.SetObjectName("QFrame_" + randomIdentifier()) - return qframe -} - -func (p *qframe) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QFrame_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qframe) FrameStyle() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QFrame_FrameStyle(p.Pointer())) -} - -func (p *qframe) FrameWidth() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QFrame_FrameWidth(p.Pointer())) -} - -func (p *qframe) LineWidth() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QFrame_LineWidth(p.Pointer())) -} - -func (p *qframe) MidLineWidth() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QFrame_MidLineWidth(p.Pointer())) -} - -func (p *qframe) SetFrameStyle(style int) { - if p.Pointer() != nil { - C.QFrame_SetFrameStyle_Int(p.Pointer(), C.int(style)) - } -} - -func (p *qframe) SetLineWidth(width int) { - if p.Pointer() != nil { - C.QFrame_SetLineWidth_Int(p.Pointer(), C.int(width)) - } -} - -func (p *qframe) SetMidLineWidth(width int) { - if p.Pointer() != nil { - C.QFrame_SetMidLineWidth_Int(p.Pointer(), C.int(width)) - } -} diff --git a/qframe.h b/qframe.h deleted file mode 100644 index 267690e5..00000000 --- a/qframe.h +++ /dev/null @@ -1,20 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QFrame_New_QWidget_WindowType(QtObjectPtr parent, int f); -void QFrame_Destroy(QtObjectPtr ptr); -int QFrame_FrameStyle(QtObjectPtr ptr); -int QFrame_FrameWidth(QtObjectPtr ptr); -int QFrame_LineWidth(QtObjectPtr ptr); -int QFrame_MidLineWidth(QtObjectPtr ptr); -void QFrame_SetFrameStyle_Int(QtObjectPtr ptr, int style); -void QFrame_SetLineWidth_Int(QtObjectPtr ptr, int width); -void QFrame_SetMidLineWidth_Int(QtObjectPtr ptr, int width); - -#ifdef __cplusplus -} -#endif diff --git a/qframe.moc b/qframe.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/qgridlayout.cpp b/qgridlayout.cpp deleted file mode 100644 index 4651aede..00000000 --- a/qgridlayout.cpp +++ /dev/null @@ -1,127 +0,0 @@ -#include "qgridlayout.h" -#include -#include "cgoexport.h" - - - -//Public Functions -QtObjectPtr QGridLayout_New_QWidget(QtObjectPtr parent) -{ - return new QGridLayout(((QWidget*)(parent))); -} - -QtObjectPtr QGridLayout_New() -{ - return new QGridLayout(); -} - -void QGridLayout_Destroy(QtObjectPtr ptr) -{ - ((QGridLayout*)(ptr))->~QGridLayout(); -} - -void QGridLayout_AddItem_QLayoutItem_Int_Int_Int_Int_AlignmentFlag(QtObjectPtr ptr, QtObjectPtr item, int row, int column, int rowSpan, int columnSpan, int alignment) -{ - ((QGridLayout*)(ptr))->addItem(((QLayoutItem*)(item)), row, column, rowSpan, columnSpan, ((Qt::AlignmentFlag)(alignment))); -} - -void QGridLayout_AddLayout_QLayout_Int_Int_AlignmentFlag(QtObjectPtr ptr, QtObjectPtr layout, int row, int column, int alignment) -{ - ((QGridLayout*)(ptr))->addLayout(((QLayout*)(layout)), row, column, ((Qt::AlignmentFlag)(alignment))); -} - -void QGridLayout_AddLayout_QLayout_Int_Int_Int_Int_AlignmentFlag(QtObjectPtr ptr, QtObjectPtr layout, int row, int column, int rowSpan, int columnSpan, int alignment) -{ - ((QGridLayout*)(ptr))->addLayout(((QLayout*)(layout)), row, column, rowSpan, columnSpan, ((Qt::AlignmentFlag)(alignment))); -} - -void QGridLayout_AddWidget_QWidget_Int_Int_AlignmentFlag(QtObjectPtr ptr, QtObjectPtr widget, int row, int column, int alignment) -{ - ((QGridLayout*)(ptr))->addWidget(((QWidget*)(widget)), row, column, ((Qt::AlignmentFlag)(alignment))); -} - -void QGridLayout_AddWidget_QWidget_Int_Int_Int_Int_AlignmentFlag(QtObjectPtr ptr, QtObjectPtr widget, int fromRow, int fromColumn, int rowSpan, int columnSpan, int alignment) -{ - ((QGridLayout*)(ptr))->addWidget(((QWidget*)(widget)), fromRow, fromColumn, rowSpan, columnSpan, ((Qt::AlignmentFlag)(alignment))); -} - -int QGridLayout_ColumnCount(QtObjectPtr ptr) -{ - return ((QGridLayout*)(ptr))->columnCount(); -} - -int QGridLayout_ColumnMinimumWidth_Int(QtObjectPtr ptr, int column) -{ - return ((QGridLayout*)(ptr))->columnMinimumWidth(column); -} - -int QGridLayout_ColumnStretch_Int(QtObjectPtr ptr, int column) -{ - return ((QGridLayout*)(ptr))->columnStretch(column); -} - -int QGridLayout_HorizontalSpacing(QtObjectPtr ptr) -{ - return ((QGridLayout*)(ptr))->horizontalSpacing(); -} - -int QGridLayout_OriginCorner(QtObjectPtr ptr) -{ - return ((QGridLayout*)(ptr))->originCorner(); -} - -int QGridLayout_RowCount(QtObjectPtr ptr) -{ - return ((QGridLayout*)(ptr))->rowCount(); -} - -int QGridLayout_RowMinimumHeight_Int(QtObjectPtr ptr, int row) -{ - return ((QGridLayout*)(ptr))->rowMinimumHeight(row); -} - -int QGridLayout_RowStretch_Int(QtObjectPtr ptr, int row) -{ - return ((QGridLayout*)(ptr))->rowStretch(row); -} - -void QGridLayout_SetColumnMinimumWidth_Int_Int(QtObjectPtr ptr, int column, int minSize) -{ - ((QGridLayout*)(ptr))->setColumnMinimumWidth(column, minSize); -} - -void QGridLayout_SetColumnStretch_Int_Int(QtObjectPtr ptr, int column, int stretch) -{ - ((QGridLayout*)(ptr))->setColumnStretch(column, stretch); -} - -void QGridLayout_SetHorizontalSpacing_Int(QtObjectPtr ptr, int spacing) -{ - ((QGridLayout*)(ptr))->setHorizontalSpacing(spacing); -} - -void QGridLayout_SetOriginCorner_Corner(QtObjectPtr ptr, int corner) -{ - ((QGridLayout*)(ptr))->setOriginCorner(((Qt::Corner)(corner))); -} - -void QGridLayout_SetRowMinimumHeight_Int_Int(QtObjectPtr ptr, int row, int minSize) -{ - ((QGridLayout*)(ptr))->setRowMinimumHeight(row, minSize); -} - -void QGridLayout_SetRowStretch_Int_Int(QtObjectPtr ptr, int row, int stretch) -{ - ((QGridLayout*)(ptr))->setRowStretch(row, stretch); -} - -void QGridLayout_SetVerticalSpacing_Int(QtObjectPtr ptr, int spacing) -{ - ((QGridLayout*)(ptr))->setVerticalSpacing(spacing); -} - -int QGridLayout_VerticalSpacing(QtObjectPtr ptr) -{ - return ((QGridLayout*)(ptr))->verticalSpacing(); -} - diff --git a/qgridlayout.go b/qgridlayout.go deleted file mode 100644 index a539b9e3..00000000 --- a/qgridlayout.go +++ /dev/null @@ -1,222 +0,0 @@ -package qt - -//#include "qgridlayout.h" -import "C" - -type qgridlayout struct { - qlayout -} - -type QGridLayout interface { - QLayout - AddItem(item QLayoutItem, row int, column int, rowSpan int, columnSpan int, alignment AlignmentFlag) - AddLayout1(layout QLayout, row int, column int, alignment AlignmentFlag) - AddLayout2(layout QLayout, row int, column int, rowSpan int, columnSpan int, alignment AlignmentFlag) - AddWidget1(widget QWidget, row int, column int, alignment AlignmentFlag) - AddWidget2(widget QWidget, fromRow int, fromColumn int, rowSpan int, columnSpan int, alignment AlignmentFlag) - ColumnCount() int - ColumnMinimumWidth(column int) int - ColumnStretch(column int) int - HorizontalSpacing() int - OriginCorner() Corner - RowCount() int - RowMinimumHeight(row int) int - RowStretch(row int) int - SetColumnMinimumWidth(column int, minSize int) - SetColumnStretch(column int, stretch int) - SetHorizontalSpacing(spacing int) - SetOriginCorner(corner Corner) - SetRowMinimumHeight(row int, minSize int) - SetRowStretch(row int, stretch int) - SetVerticalSpacing(spacing int) - VerticalSpacing() int -} - -func (p *qgridlayout) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qgridlayout) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQGridLayout1(parent QWidget) QGridLayout { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qgridlayout = new(qgridlayout) - qgridlayout.SetPointer(C.QGridLayout_New_QWidget(parentPtr)) - qgridlayout.SetObjectName("QGridLayout_" + randomIdentifier()) - return qgridlayout -} - -func NewQGridLayout2() QGridLayout { - var qgridlayout = new(qgridlayout) - qgridlayout.SetPointer(C.QGridLayout_New()) - qgridlayout.SetObjectName("QGridLayout_" + randomIdentifier()) - return qgridlayout -} - -func (p *qgridlayout) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QGridLayout_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qgridlayout) AddItem(item QLayoutItem, row int, column int, rowSpan int, columnSpan int, alignment AlignmentFlag) { - if p.Pointer() != nil { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - C.QGridLayout_AddItem_QLayoutItem_Int_Int_Int_Int_AlignmentFlag(p.Pointer(), itemPtr, C.int(row), C.int(column), C.int(rowSpan), C.int(columnSpan), C.int(alignment)) - } -} - -func (p *qgridlayout) AddLayout1(layout QLayout, row int, column int, alignment AlignmentFlag) { - if p.Pointer() != nil { - var layoutPtr C.QtObjectPtr - if layout != nil { - layoutPtr = layout.Pointer() - } - C.QGridLayout_AddLayout_QLayout_Int_Int_AlignmentFlag(p.Pointer(), layoutPtr, C.int(row), C.int(column), C.int(alignment)) - } -} - -func (p *qgridlayout) AddLayout2(layout QLayout, row int, column int, rowSpan int, columnSpan int, alignment AlignmentFlag) { - if p.Pointer() != nil { - var layoutPtr C.QtObjectPtr - if layout != nil { - layoutPtr = layout.Pointer() - } - C.QGridLayout_AddLayout_QLayout_Int_Int_Int_Int_AlignmentFlag(p.Pointer(), layoutPtr, C.int(row), C.int(column), C.int(rowSpan), C.int(columnSpan), C.int(alignment)) - } -} - -func (p *qgridlayout) AddWidget1(widget QWidget, row int, column int, alignment AlignmentFlag) { - if p.Pointer() != nil { - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - C.QGridLayout_AddWidget_QWidget_Int_Int_AlignmentFlag(p.Pointer(), widgetPtr, C.int(row), C.int(column), C.int(alignment)) - } -} - -func (p *qgridlayout) AddWidget2(widget QWidget, fromRow int, fromColumn int, rowSpan int, columnSpan int, alignment AlignmentFlag) { - if p.Pointer() != nil { - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - C.QGridLayout_AddWidget_QWidget_Int_Int_Int_Int_AlignmentFlag(p.Pointer(), widgetPtr, C.int(fromRow), C.int(fromColumn), C.int(rowSpan), C.int(columnSpan), C.int(alignment)) - } -} - -func (p *qgridlayout) ColumnCount() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QGridLayout_ColumnCount(p.Pointer())) -} - -func (p *qgridlayout) ColumnMinimumWidth(column int) int { - if p.Pointer() == nil { - return 0 - } - return int(C.QGridLayout_ColumnMinimumWidth_Int(p.Pointer(), C.int(column))) -} - -func (p *qgridlayout) ColumnStretch(column int) int { - if p.Pointer() == nil { - return 0 - } - return int(C.QGridLayout_ColumnStretch_Int(p.Pointer(), C.int(column))) -} - -func (p *qgridlayout) HorizontalSpacing() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QGridLayout_HorizontalSpacing(p.Pointer())) -} - -func (p *qgridlayout) OriginCorner() Corner { - if p.Pointer() == nil { - return 0 - } - return Corner(C.QGridLayout_OriginCorner(p.Pointer())) -} - -func (p *qgridlayout) RowCount() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QGridLayout_RowCount(p.Pointer())) -} - -func (p *qgridlayout) RowMinimumHeight(row int) int { - if p.Pointer() == nil { - return 0 - } - return int(C.QGridLayout_RowMinimumHeight_Int(p.Pointer(), C.int(row))) -} - -func (p *qgridlayout) RowStretch(row int) int { - if p.Pointer() == nil { - return 0 - } - return int(C.QGridLayout_RowStretch_Int(p.Pointer(), C.int(row))) -} - -func (p *qgridlayout) SetColumnMinimumWidth(column int, minSize int) { - if p.Pointer() != nil { - C.QGridLayout_SetColumnMinimumWidth_Int_Int(p.Pointer(), C.int(column), C.int(minSize)) - } -} - -func (p *qgridlayout) SetColumnStretch(column int, stretch int) { - if p.Pointer() != nil { - C.QGridLayout_SetColumnStretch_Int_Int(p.Pointer(), C.int(column), C.int(stretch)) - } -} - -func (p *qgridlayout) SetHorizontalSpacing(spacing int) { - if p.Pointer() != nil { - C.QGridLayout_SetHorizontalSpacing_Int(p.Pointer(), C.int(spacing)) - } -} - -func (p *qgridlayout) SetOriginCorner(corner Corner) { - if p.Pointer() != nil { - C.QGridLayout_SetOriginCorner_Corner(p.Pointer(), C.int(corner)) - } -} - -func (p *qgridlayout) SetRowMinimumHeight(row int, minSize int) { - if p.Pointer() != nil { - C.QGridLayout_SetRowMinimumHeight_Int_Int(p.Pointer(), C.int(row), C.int(minSize)) - } -} - -func (p *qgridlayout) SetRowStretch(row int, stretch int) { - if p.Pointer() != nil { - C.QGridLayout_SetRowStretch_Int_Int(p.Pointer(), C.int(row), C.int(stretch)) - } -} - -func (p *qgridlayout) SetVerticalSpacing(spacing int) { - if p.Pointer() != nil { - C.QGridLayout_SetVerticalSpacing_Int(p.Pointer(), C.int(spacing)) - } -} - -func (p *qgridlayout) VerticalSpacing() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QGridLayout_VerticalSpacing(p.Pointer())) -} diff --git a/qgridlayout.h b/qgridlayout.h deleted file mode 100644 index 0f34b576..00000000 --- a/qgridlayout.h +++ /dev/null @@ -1,35 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QGridLayout_New_QWidget(QtObjectPtr parent); -QtObjectPtr QGridLayout_New(); -void QGridLayout_Destroy(QtObjectPtr ptr); -void QGridLayout_AddItem_QLayoutItem_Int_Int_Int_Int_AlignmentFlag(QtObjectPtr ptr, QtObjectPtr item, int row, int column, int rowSpan, int columnSpan, int alignment); -void QGridLayout_AddLayout_QLayout_Int_Int_AlignmentFlag(QtObjectPtr ptr, QtObjectPtr layout, int row, int column, int alignment); -void QGridLayout_AddLayout_QLayout_Int_Int_Int_Int_AlignmentFlag(QtObjectPtr ptr, QtObjectPtr layout, int row, int column, int rowSpan, int columnSpan, int alignment); -void QGridLayout_AddWidget_QWidget_Int_Int_AlignmentFlag(QtObjectPtr ptr, QtObjectPtr widget, int row, int column, int alignment); -void QGridLayout_AddWidget_QWidget_Int_Int_Int_Int_AlignmentFlag(QtObjectPtr ptr, QtObjectPtr widget, int fromRow, int fromColumn, int rowSpan, int columnSpan, int alignment); -int QGridLayout_ColumnCount(QtObjectPtr ptr); -int QGridLayout_ColumnMinimumWidth_Int(QtObjectPtr ptr, int column); -int QGridLayout_ColumnStretch_Int(QtObjectPtr ptr, int column); -int QGridLayout_HorizontalSpacing(QtObjectPtr ptr); -int QGridLayout_OriginCorner(QtObjectPtr ptr); -int QGridLayout_RowCount(QtObjectPtr ptr); -int QGridLayout_RowMinimumHeight_Int(QtObjectPtr ptr, int row); -int QGridLayout_RowStretch_Int(QtObjectPtr ptr, int row); -void QGridLayout_SetColumnMinimumWidth_Int_Int(QtObjectPtr ptr, int column, int minSize); -void QGridLayout_SetColumnStretch_Int_Int(QtObjectPtr ptr, int column, int stretch); -void QGridLayout_SetHorizontalSpacing_Int(QtObjectPtr ptr, int spacing); -void QGridLayout_SetOriginCorner_Corner(QtObjectPtr ptr, int corner); -void QGridLayout_SetRowMinimumHeight_Int_Int(QtObjectPtr ptr, int row, int minSize); -void QGridLayout_SetRowStretch_Int_Int(QtObjectPtr ptr, int row, int stretch); -void QGridLayout_SetVerticalSpacing_Int(QtObjectPtr ptr, int spacing); -int QGridLayout_VerticalSpacing(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qgridlayout.moc b/qgridlayout.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/qgroupbox.cpp b/qgroupbox.cpp deleted file mode 100644 index 4639acbb..00000000 --- a/qgroupbox.cpp +++ /dev/null @@ -1,116 +0,0 @@ -#include "qgroupbox.h" -#include -#include "cgoexport.h" - -//MyQGroupBox -class MyQGroupBox: public QGroupBox { -Q_OBJECT -public: -void Signal_Clicked() { callbackQGroupBox(this, QString("clicked").toUtf8().data()); }; -void Signal_Toggled() { callbackQGroupBox(this, QString("toggled").toUtf8().data()); }; - -signals: -void Slot_SetChecked(bool checked); - -}; -#include "qgroupbox.moc" - - -//Public Functions -QtObjectPtr QGroupBox_New_QWidget(QtObjectPtr parent) -{ - return new QGroupBox(((QWidget*)(parent))); -} - -QtObjectPtr QGroupBox_New_String_QWidget(char* title, QtObjectPtr parent) -{ - return new QGroupBox(QString(title), ((QWidget*)(parent))); -} - -void QGroupBox_Destroy(QtObjectPtr ptr) -{ - ((QGroupBox*)(ptr))->~QGroupBox(); -} - -int QGroupBox_Alignment(QtObjectPtr ptr) -{ - return ((QGroupBox*)(ptr))->alignment(); -} - -int QGroupBox_IsCheckable(QtObjectPtr ptr) -{ - return ((QGroupBox*)(ptr))->isCheckable(); -} - -int QGroupBox_IsChecked(QtObjectPtr ptr) -{ - return ((QGroupBox*)(ptr))->isChecked(); -} - -int QGroupBox_IsFlat(QtObjectPtr ptr) -{ - return ((QGroupBox*)(ptr))->isFlat(); -} - -void QGroupBox_SetAlignment_Int(QtObjectPtr ptr, int alignment) -{ - ((QGroupBox*)(ptr))->setAlignment(alignment); -} - -void QGroupBox_SetCheckable_Bool(QtObjectPtr ptr, int checkable) -{ - ((QGroupBox*)(ptr))->setCheckable(checkable != 0); -} - -void QGroupBox_SetFlat_Bool(QtObjectPtr ptr, int flat) -{ - ((QGroupBox*)(ptr))->setFlat(flat != 0); -} - -void QGroupBox_SetTitle_String(QtObjectPtr ptr, char* title) -{ - ((QGroupBox*)(ptr))->setTitle(QString(title)); -} - -char* QGroupBox_Title(QtObjectPtr ptr) -{ - return ((QGroupBox*)(ptr))->title().toUtf8().data(); -} - -//Public Slots -void QGroupBox_ConnectSlotSetChecked(QtObjectPtr ptr) -{ - QObject::connect(((MyQGroupBox*)(ptr)), &MyQGroupBox::Slot_SetChecked, ((QGroupBox*)(ptr)), &QGroupBox::setChecked, Qt::QueuedConnection); -} - -void QGroupBox_DisconnectSlotSetChecked(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQGroupBox*)(ptr)), &MyQGroupBox::Slot_SetChecked, ((QGroupBox*)(ptr)), &QGroupBox::setChecked); -} - -void QGroupBox_SetChecked_Bool(QtObjectPtr ptr, int checked) -{ - ((MyQGroupBox*)(ptr))->Slot_SetChecked(checked != 0); -} - -//Signals -void QGroupBox_ConnectSignalClicked(QtObjectPtr ptr) -{ - QObject::connect(((QGroupBox*)(ptr)), &QGroupBox::clicked, ((MyQGroupBox*)(ptr)), &MyQGroupBox::Signal_Clicked, Qt::QueuedConnection); -} - -void QGroupBox_DisconnectSignalClicked(QtObjectPtr ptr) -{ - QObject::disconnect(((QGroupBox*)(ptr)), &QGroupBox::clicked, ((MyQGroupBox*)(ptr)), &MyQGroupBox::Signal_Clicked); -} - -void QGroupBox_ConnectSignalToggled(QtObjectPtr ptr) -{ - QObject::connect(((QGroupBox*)(ptr)), &QGroupBox::toggled, ((MyQGroupBox*)(ptr)), &MyQGroupBox::Signal_Toggled, Qt::QueuedConnection); -} - -void QGroupBox_DisconnectSignalToggled(QtObjectPtr ptr) -{ - QObject::disconnect(((QGroupBox*)(ptr)), &QGroupBox::toggled, ((MyQGroupBox*)(ptr)), &MyQGroupBox::Signal_Toggled); -} - diff --git a/qgroupbox.go b/qgroupbox.go deleted file mode 100644 index 046750ef..00000000 --- a/qgroupbox.go +++ /dev/null @@ -1,176 +0,0 @@ -package qt - -//#include "qgroupbox.h" -import "C" - -type qgroupbox struct { - qwidget -} - -type QGroupBox interface { - QWidget - Alignment() AlignmentFlag - IsCheckable() bool - IsChecked() bool - IsFlat() bool - SetAlignment(alignment int) - SetCheckable(checkable bool) - SetFlat(flat bool) - SetTitle(title string) - Title() string - ConnectSlotSetChecked() - DisconnectSlotSetChecked() - SlotSetChecked(checked bool) - ConnectSignalClicked(f func()) - DisconnectSignalClicked() - SignalClicked() func() - ConnectSignalToggled(f func()) - DisconnectSignalToggled() - SignalToggled() func() -} - -func (p *qgroupbox) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qgroupbox) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQGroupBox1(parent QWidget) QGroupBox { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qgroupbox = new(qgroupbox) - qgroupbox.SetPointer(C.QGroupBox_New_QWidget(parentPtr)) - qgroupbox.SetObjectName("QGroupBox_" + randomIdentifier()) - return qgroupbox -} - -func NewQGroupBox2(title string, parent QWidget) QGroupBox { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qgroupbox = new(qgroupbox) - qgroupbox.SetPointer(C.QGroupBox_New_String_QWidget(C.CString(title), parentPtr)) - qgroupbox.SetObjectName("QGroupBox_" + randomIdentifier()) - return qgroupbox -} - -func (p *qgroupbox) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QGroupBox_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qgroupbox) Alignment() AlignmentFlag { - if p.Pointer() == nil { - return 0 - } - return AlignmentFlag(C.QGroupBox_Alignment(p.Pointer())) -} - -func (p *qgroupbox) IsCheckable() bool { - if p.Pointer() == nil { - return false - } - return C.QGroupBox_IsCheckable(p.Pointer()) != 0 -} - -func (p *qgroupbox) IsChecked() bool { - if p.Pointer() == nil { - return false - } - return C.QGroupBox_IsChecked(p.Pointer()) != 0 -} - -func (p *qgroupbox) IsFlat() bool { - if p.Pointer() == nil { - return false - } - return C.QGroupBox_IsFlat(p.Pointer()) != 0 -} - -func (p *qgroupbox) SetAlignment(alignment int) { - if p.Pointer() != nil { - C.QGroupBox_SetAlignment_Int(p.Pointer(), C.int(alignment)) - } -} - -func (p *qgroupbox) SetCheckable(checkable bool) { - if p.Pointer() != nil { - C.QGroupBox_SetCheckable_Bool(p.Pointer(), goBoolToCInt(checkable)) - } -} - -func (p *qgroupbox) SetFlat(flat bool) { - if p.Pointer() != nil { - C.QGroupBox_SetFlat_Bool(p.Pointer(), goBoolToCInt(flat)) - } -} - -func (p *qgroupbox) SetTitle(title string) { - if p.Pointer() != nil { - C.QGroupBox_SetTitle_String(p.Pointer(), C.CString(title)) - } -} - -func (p *qgroupbox) Title() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QGroupBox_Title(p.Pointer())) -} - -func (p *qgroupbox) ConnectSlotSetChecked() { - C.QGroupBox_ConnectSlotSetChecked(p.Pointer()) -} - -func (p *qgroupbox) DisconnectSlotSetChecked() { - C.QGroupBox_DisconnectSlotSetChecked(p.Pointer()) -} - -func (p *qgroupbox) SlotSetChecked(checked bool) { - if p.Pointer() != nil { - C.QGroupBox_SetChecked_Bool(p.Pointer(), goBoolToCInt(checked)) - } -} - -func (p *qgroupbox) ConnectSignalClicked(f func()) { - C.QGroupBox_ConnectSignalClicked(p.Pointer()) - connectSignal(p.ObjectName(), "clicked", f) -} - -func (p *qgroupbox) DisconnectSignalClicked() { - C.QGroupBox_DisconnectSignalClicked(p.Pointer()) - disconnectSignal(p.ObjectName(), "clicked") -} - -func (p *qgroupbox) SignalClicked() func() { - return getSignal(p.ObjectName(), "clicked") -} - -func (p *qgroupbox) ConnectSignalToggled(f func()) { - C.QGroupBox_ConnectSignalToggled(p.Pointer()) - connectSignal(p.ObjectName(), "toggled", f) -} - -func (p *qgroupbox) DisconnectSignalToggled() { - C.QGroupBox_DisconnectSignalToggled(p.Pointer()) - disconnectSignal(p.ObjectName(), "toggled") -} - -func (p *qgroupbox) SignalToggled() func() { - return getSignal(p.ObjectName(), "toggled") -} - -//export callbackQGroupBox -func callbackQGroupBox(ptr C.QtObjectPtr, msg *C.char) { - var qgroupbox = new(qgroupbox) - qgroupbox.SetPointer(ptr) - getSignal(qgroupbox.ObjectName(), C.GoString(msg))() -} diff --git a/qgroupbox.h b/qgroupbox.h deleted file mode 100644 index e06d9d70..00000000 --- a/qgroupbox.h +++ /dev/null @@ -1,32 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QGroupBox_New_QWidget(QtObjectPtr parent); -QtObjectPtr QGroupBox_New_String_QWidget(char* title, QtObjectPtr parent); -void QGroupBox_Destroy(QtObjectPtr ptr); -int QGroupBox_Alignment(QtObjectPtr ptr); -int QGroupBox_IsCheckable(QtObjectPtr ptr); -int QGroupBox_IsChecked(QtObjectPtr ptr); -int QGroupBox_IsFlat(QtObjectPtr ptr); -void QGroupBox_SetAlignment_Int(QtObjectPtr ptr, int alignment); -void QGroupBox_SetCheckable_Bool(QtObjectPtr ptr, int checkable); -void QGroupBox_SetFlat_Bool(QtObjectPtr ptr, int flat); -void QGroupBox_SetTitle_String(QtObjectPtr ptr, char* title); -char* QGroupBox_Title(QtObjectPtr ptr); -//Public Slots -void QGroupBox_ConnectSlotSetChecked(QtObjectPtr ptr); -void QGroupBox_DisconnectSlotSetChecked(QtObjectPtr ptr); -void QGroupBox_SetChecked_Bool(QtObjectPtr ptr, int checked); -//Signals -void QGroupBox_ConnectSignalClicked(QtObjectPtr ptr); -void QGroupBox_DisconnectSignalClicked(QtObjectPtr ptr); -void QGroupBox_ConnectSignalToggled(QtObjectPtr ptr); -void QGroupBox_DisconnectSignalToggled(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qgroupbox.moc b/qgroupbox.moc deleted file mode 100644 index 4d71dca4..00000000 --- a/qgroupbox.moc +++ /dev/null @@ -1,125 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qgroupbox.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qgroupbox.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQGroupBox_t { - QByteArrayData data[4]; - char stringdata[37]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQGroupBox_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQGroupBox_t qt_meta_stringdata_MyQGroupBox = { - { -QT_MOC_LITERAL(0, 0, 11), // "MyQGroupBox" -QT_MOC_LITERAL(1, 12, 15), // "Slot_SetChecked" -QT_MOC_LITERAL(2, 28, 0), // "" -QT_MOC_LITERAL(3, 29, 7) // "checked" - - }, - "MyQGroupBox\0Slot_SetChecked\0\0checked" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQGroupBox[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 1, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 19, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, QMetaType::Bool, 3, - - 0 // eod -}; - -void MyQGroupBox::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQGroupBox *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_SetChecked((*reinterpret_cast< bool(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQGroupBox::*_t)(bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQGroupBox::Slot_SetChecked)) { - *result = 0; - } - } - } -} - -const QMetaObject MyQGroupBox::staticMetaObject = { - { &QGroupBox::staticMetaObject, qt_meta_stringdata_MyQGroupBox.data, - qt_meta_data_MyQGroupBox, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQGroupBox::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQGroupBox::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQGroupBox.stringdata)) - return static_cast(const_cast< MyQGroupBox*>(this)); - return QGroupBox::qt_metacast(_clname); -} - -int MyQGroupBox::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QGroupBox::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 1) - qt_static_metacall(this, _c, _id, _a); - _id -= 1; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 1) - *reinterpret_cast(_a[0]) = -1; - _id -= 1; - } - return _id; -} - -// SIGNAL 0 -void MyQGroupBox::Slot_SetChecked(bool _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -QT_END_MOC_NAMESPACE diff --git a/qguiapplication.cpp b/qguiapplication.cpp deleted file mode 100644 index e81f6334..00000000 --- a/qguiapplication.cpp +++ /dev/null @@ -1,172 +0,0 @@ -#include "qguiapplication.h" -#include -#include "cgoexport.h" - -//MyQGuiApplication -class MyQGuiApplication: public QGuiApplication { -Q_OBJECT -public: -void Signal_ApplicationStateChanged() { callbackQGuiApplication(this, QString("applicationStateChanged").toUtf8().data()); }; -void Signal_FocusObjectChanged() { callbackQGuiApplication(this, QString("focusObjectChanged").toUtf8().data()); }; -void Signal_FontDatabaseChanged() { callbackQGuiApplication(this, QString("fontDatabaseChanged").toUtf8().data()); }; -void Signal_LastWindowClosed() { callbackQGuiApplication(this, QString("lastWindowClosed").toUtf8().data()); }; - -signals: - -}; -#include "qguiapplication.moc" - - -//Public Functions -QtObjectPtr QGuiApplication_New_Int_String(int argc, char* argv) -{ - return new QGuiApplication(argc, ((char**)(argv))); -} - -void QGuiApplication_Destroy(QtObjectPtr ptr) -{ - ((QGuiApplication*)(ptr))->~QGuiApplication(); -} - -int QGuiApplication_IsSavingSession(QtObjectPtr ptr) -{ - return ((QGuiApplication*)(ptr))->isSavingSession(); -} - -int QGuiApplication_IsSessionRestored(QtObjectPtr ptr) -{ - return ((QGuiApplication*)(ptr))->isSessionRestored(); -} - -char* QGuiApplication_SessionId(QtObjectPtr ptr) -{ - return ((QGuiApplication*)(ptr))->sessionId().toUtf8().data(); -} - -char* QGuiApplication_SessionKey(QtObjectPtr ptr) -{ - return ((QGuiApplication*)(ptr))->sessionKey().toUtf8().data(); -} - -//Signals -void QGuiApplication_ConnectSignalApplicationStateChanged(QtObjectPtr ptr) -{ - QObject::connect(((QGuiApplication*)(ptr)), &QGuiApplication::applicationStateChanged, ((MyQGuiApplication*)(ptr)), &MyQGuiApplication::Signal_ApplicationStateChanged, Qt::QueuedConnection); -} - -void QGuiApplication_DisconnectSignalApplicationStateChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QGuiApplication*)(ptr)), &QGuiApplication::applicationStateChanged, ((MyQGuiApplication*)(ptr)), &MyQGuiApplication::Signal_ApplicationStateChanged); -} - -void QGuiApplication_ConnectSignalFocusObjectChanged(QtObjectPtr ptr) -{ - QObject::connect(((QGuiApplication*)(ptr)), &QGuiApplication::focusObjectChanged, ((MyQGuiApplication*)(ptr)), &MyQGuiApplication::Signal_FocusObjectChanged, Qt::QueuedConnection); -} - -void QGuiApplication_DisconnectSignalFocusObjectChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QGuiApplication*)(ptr)), &QGuiApplication::focusObjectChanged, ((MyQGuiApplication*)(ptr)), &MyQGuiApplication::Signal_FocusObjectChanged); -} - -void QGuiApplication_ConnectSignalFontDatabaseChanged(QtObjectPtr ptr) -{ - QObject::connect(((QGuiApplication*)(ptr)), &QGuiApplication::fontDatabaseChanged, ((MyQGuiApplication*)(ptr)), &MyQGuiApplication::Signal_FontDatabaseChanged, Qt::QueuedConnection); -} - -void QGuiApplication_DisconnectSignalFontDatabaseChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QGuiApplication*)(ptr)), &QGuiApplication::fontDatabaseChanged, ((MyQGuiApplication*)(ptr)), &MyQGuiApplication::Signal_FontDatabaseChanged); -} - -void QGuiApplication_ConnectSignalLastWindowClosed(QtObjectPtr ptr) -{ - QObject::connect(((QGuiApplication*)(ptr)), &QGuiApplication::lastWindowClosed, ((MyQGuiApplication*)(ptr)), &MyQGuiApplication::Signal_LastWindowClosed, Qt::QueuedConnection); -} - -void QGuiApplication_DisconnectSignalLastWindowClosed(QtObjectPtr ptr) -{ - QObject::disconnect(((QGuiApplication*)(ptr)), &QGuiApplication::lastWindowClosed, ((MyQGuiApplication*)(ptr)), &MyQGuiApplication::Signal_LastWindowClosed); -} - -//Static Public Members -char* QGuiApplication_ApplicationDisplayName() -{ - return QGuiApplication::applicationDisplayName().toUtf8().data(); -} - -int QGuiApplication_ApplicationState() -{ - return QGuiApplication::applicationState(); -} - -int QGuiApplication_DesktopSettingsAware() -{ - return QGuiApplication::desktopSettingsAware(); -} - -QtObjectPtr QGuiApplication_FocusObject() -{ - return QGuiApplication::focusObject(); -} - -int QGuiApplication_IsLeftToRight() -{ - return QGuiApplication::isLeftToRight(); -} - -int QGuiApplication_IsRightToLeft() -{ - return QGuiApplication::isRightToLeft(); -} - -int QGuiApplication_KeyboardModifiers() -{ - return QGuiApplication::keyboardModifiers(); -} - -int QGuiApplication_LayoutDirection() -{ - return QGuiApplication::layoutDirection(); -} - -int QGuiApplication_MouseButtons() -{ - return QGuiApplication::mouseButtons(); -} - -char* QGuiApplication_PlatformName() -{ - return QGuiApplication::platformName().toUtf8().data(); -} - -int QGuiApplication_QueryKeyboardModifiers() -{ - return QGuiApplication::queryKeyboardModifiers(); -} - -int QGuiApplication_QuitOnLastWindowClosed() -{ - return QGuiApplication::quitOnLastWindowClosed(); -} - -void QGuiApplication_SetApplicationDisplayName_String(char* name) -{ - QGuiApplication::setApplicationDisplayName(QString(name)); -} - -void QGuiApplication_SetDesktopSettingsAware_Bool(int on) -{ - QGuiApplication::setDesktopSettingsAware(on != 0); -} - -void QGuiApplication_SetLayoutDirection_LayoutDirection(int direction) -{ - QGuiApplication::setLayoutDirection(((Qt::LayoutDirection)(direction))); -} - -void QGuiApplication_SetQuitOnLastWindowClosed_Bool(int quit) -{ - QGuiApplication::setQuitOnLastWindowClosed(quit != 0); -} - diff --git a/qguiapplication.go b/qguiapplication.go deleted file mode 100644 index b8916a65..00000000 --- a/qguiapplication.go +++ /dev/null @@ -1,211 +0,0 @@ -package qt - -//#include "qguiapplication.h" -import "C" - -type qguiapplication struct { - qcoreapplication -} - -type QGuiApplication interface { - QCoreApplication - IsSavingSession() bool - IsSessionRestored() bool - SessionId() string - SessionKey() string - ConnectSignalApplicationStateChanged(f func()) - DisconnectSignalApplicationStateChanged() - SignalApplicationStateChanged() func() - ConnectSignalFocusObjectChanged(f func()) - DisconnectSignalFocusObjectChanged() - SignalFocusObjectChanged() func() - ConnectSignalFontDatabaseChanged(f func()) - DisconnectSignalFontDatabaseChanged() - SignalFontDatabaseChanged() func() - ConnectSignalLastWindowClosed(f func()) - DisconnectSignalLastWindowClosed() - SignalLastWindowClosed() func() -} - -func (p *qguiapplication) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qguiapplication) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQGuiApplication(argc int, argv string) QGuiApplication { - var qguiapplication = new(qguiapplication) - qguiapplication.SetPointer(C.QGuiApplication_New_Int_String(C.int(argc), C.CString(argv))) - qguiapplication.SetObjectName("QGuiApplication_" + randomIdentifier()) - return qguiapplication -} - -func (p *qguiapplication) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QGuiApplication_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qguiapplication) IsSavingSession() bool { - if p.Pointer() == nil { - return false - } - return C.QGuiApplication_IsSavingSession(p.Pointer()) != 0 -} - -func (p *qguiapplication) IsSessionRestored() bool { - if p.Pointer() == nil { - return false - } - return C.QGuiApplication_IsSessionRestored(p.Pointer()) != 0 -} - -func (p *qguiapplication) SessionId() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QGuiApplication_SessionId(p.Pointer())) -} - -func (p *qguiapplication) SessionKey() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QGuiApplication_SessionKey(p.Pointer())) -} - -func (p *qguiapplication) ConnectSignalApplicationStateChanged(f func()) { - C.QGuiApplication_ConnectSignalApplicationStateChanged(p.Pointer()) - connectSignal(p.ObjectName(), "applicationStateChanged", f) -} - -func (p *qguiapplication) DisconnectSignalApplicationStateChanged() { - C.QGuiApplication_DisconnectSignalApplicationStateChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "applicationStateChanged") -} - -func (p *qguiapplication) SignalApplicationStateChanged() func() { - return getSignal(p.ObjectName(), "applicationStateChanged") -} - -func (p *qguiapplication) ConnectSignalFocusObjectChanged(f func()) { - C.QGuiApplication_ConnectSignalFocusObjectChanged(p.Pointer()) - connectSignal(p.ObjectName(), "focusObjectChanged", f) -} - -func (p *qguiapplication) DisconnectSignalFocusObjectChanged() { - C.QGuiApplication_DisconnectSignalFocusObjectChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "focusObjectChanged") -} - -func (p *qguiapplication) SignalFocusObjectChanged() func() { - return getSignal(p.ObjectName(), "focusObjectChanged") -} - -func (p *qguiapplication) ConnectSignalFontDatabaseChanged(f func()) { - C.QGuiApplication_ConnectSignalFontDatabaseChanged(p.Pointer()) - connectSignal(p.ObjectName(), "fontDatabaseChanged", f) -} - -func (p *qguiapplication) DisconnectSignalFontDatabaseChanged() { - C.QGuiApplication_DisconnectSignalFontDatabaseChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "fontDatabaseChanged") -} - -func (p *qguiapplication) SignalFontDatabaseChanged() func() { - return getSignal(p.ObjectName(), "fontDatabaseChanged") -} - -func (p *qguiapplication) ConnectSignalLastWindowClosed(f func()) { - C.QGuiApplication_ConnectSignalLastWindowClosed(p.Pointer()) - connectSignal(p.ObjectName(), "lastWindowClosed", f) -} - -func (p *qguiapplication) DisconnectSignalLastWindowClosed() { - C.QGuiApplication_DisconnectSignalLastWindowClosed(p.Pointer()) - disconnectSignal(p.ObjectName(), "lastWindowClosed") -} - -func (p *qguiapplication) SignalLastWindowClosed() func() { - return getSignal(p.ObjectName(), "lastWindowClosed") -} - -func QGuiApplication_ApplicationDisplayName() string { - return C.GoString(C.QGuiApplication_ApplicationDisplayName()) -} - -func QGuiApplication_ApplicationState() ApplicationState { - return ApplicationState(C.QGuiApplication_ApplicationState()) -} - -func QGuiApplication_DesktopSettingsAware() bool { - return C.QGuiApplication_DesktopSettingsAware() != 0 -} - -func QGuiApplication_FocusObject() QObject { - var qobject = new(qobject) - qobject.SetPointer(C.QGuiApplication_FocusObject()) - if qobject.ObjectName() == "" { - qobject.SetObjectName("QObject_" + randomIdentifier()) - } - return qobject -} - -func QGuiApplication_IsLeftToRight() bool { - return C.QGuiApplication_IsLeftToRight() != 0 -} - -func QGuiApplication_IsRightToLeft() bool { - return C.QGuiApplication_IsRightToLeft() != 0 -} - -func QGuiApplication_KeyboardModifiers() KeyboardModifier { - return KeyboardModifier(C.QGuiApplication_KeyboardModifiers()) -} - -func QGuiApplication_LayoutDirection() LayoutDirection { - return LayoutDirection(C.QGuiApplication_LayoutDirection()) -} - -func QGuiApplication_MouseButtons() MouseButton { - return MouseButton(C.QGuiApplication_MouseButtons()) -} - -func QGuiApplication_PlatformName() string { - return C.GoString(C.QGuiApplication_PlatformName()) -} - -func QGuiApplication_QueryKeyboardModifiers() KeyboardModifier { - return KeyboardModifier(C.QGuiApplication_QueryKeyboardModifiers()) -} - -func QGuiApplication_QuitOnLastWindowClosed() bool { - return C.QGuiApplication_QuitOnLastWindowClosed() != 0 -} - -func QGuiApplication_SetApplicationDisplayName(name string) { - C.QGuiApplication_SetApplicationDisplayName_String(C.CString(name)) -} - -func QGuiApplication_SetDesktopSettingsAware(on bool) { - C.QGuiApplication_SetDesktopSettingsAware_Bool(goBoolToCInt(on)) -} - -func QGuiApplication_SetLayoutDirection(direction LayoutDirection) { - C.QGuiApplication_SetLayoutDirection_LayoutDirection(C.int(direction)) -} - -func QGuiApplication_SetQuitOnLastWindowClosed(quit bool) { - C.QGuiApplication_SetQuitOnLastWindowClosed_Bool(goBoolToCInt(quit)) -} - -//export callbackQGuiApplication -func callbackQGuiApplication(ptr C.QtObjectPtr, msg *C.char) { - var qguiapplication = new(qguiapplication) - qguiapplication.SetPointer(ptr) - getSignal(qguiapplication.ObjectName(), C.GoString(msg))() -} diff --git a/qguiapplication.h b/qguiapplication.h deleted file mode 100644 index 2b5b549a..00000000 --- a/qguiapplication.h +++ /dev/null @@ -1,43 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QGuiApplication_New_Int_String(int argc, char* argv); -void QGuiApplication_Destroy(QtObjectPtr ptr); -int QGuiApplication_IsSavingSession(QtObjectPtr ptr); -int QGuiApplication_IsSessionRestored(QtObjectPtr ptr); -char* QGuiApplication_SessionId(QtObjectPtr ptr); -char* QGuiApplication_SessionKey(QtObjectPtr ptr); -//Signals -void QGuiApplication_ConnectSignalApplicationStateChanged(QtObjectPtr ptr); -void QGuiApplication_DisconnectSignalApplicationStateChanged(QtObjectPtr ptr); -void QGuiApplication_ConnectSignalFocusObjectChanged(QtObjectPtr ptr); -void QGuiApplication_DisconnectSignalFocusObjectChanged(QtObjectPtr ptr); -void QGuiApplication_ConnectSignalFontDatabaseChanged(QtObjectPtr ptr); -void QGuiApplication_DisconnectSignalFontDatabaseChanged(QtObjectPtr ptr); -void QGuiApplication_ConnectSignalLastWindowClosed(QtObjectPtr ptr); -void QGuiApplication_DisconnectSignalLastWindowClosed(QtObjectPtr ptr); -//Static Public Members -char* QGuiApplication_ApplicationDisplayName(); -int QGuiApplication_ApplicationState(); -int QGuiApplication_DesktopSettingsAware(); -QtObjectPtr QGuiApplication_FocusObject(); -int QGuiApplication_IsLeftToRight(); -int QGuiApplication_IsRightToLeft(); -int QGuiApplication_KeyboardModifiers(); -int QGuiApplication_LayoutDirection(); -int QGuiApplication_MouseButtons(); -char* QGuiApplication_PlatformName(); -int QGuiApplication_QueryKeyboardModifiers(); -int QGuiApplication_QuitOnLastWindowClosed(); -void QGuiApplication_SetApplicationDisplayName_String(char* name); -void QGuiApplication_SetDesktopSettingsAware_Bool(int on); -void QGuiApplication_SetLayoutDirection_LayoutDirection(int direction); -void QGuiApplication_SetQuitOnLastWindowClosed_Bool(int quit); - -#ifdef __cplusplus -} -#endif diff --git a/qguiapplication.moc b/qguiapplication.moc deleted file mode 100644 index 7cad7724..00000000 --- a/qguiapplication.moc +++ /dev/null @@ -1,88 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qguiapplication.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qguiapplication.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQGuiApplication_t { - QByteArrayData data[1]; - char stringdata[18]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQGuiApplication_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQGuiApplication_t qt_meta_stringdata_MyQGuiApplication = { - { -QT_MOC_LITERAL(0, 0, 17) // "MyQGuiApplication" - - }, - "MyQGuiApplication" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQGuiApplication[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 0, 0, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 0, // signalCount - - 0 // eod -}; - -void MyQGuiApplication::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - Q_UNUSED(_o); - Q_UNUSED(_id); - Q_UNUSED(_c); - Q_UNUSED(_a); -} - -const QMetaObject MyQGuiApplication::staticMetaObject = { - { &QGuiApplication::staticMetaObject, qt_meta_stringdata_MyQGuiApplication.data, - qt_meta_data_MyQGuiApplication, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQGuiApplication::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQGuiApplication::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQGuiApplication.stringdata)) - return static_cast(const_cast< MyQGuiApplication*>(this)); - return QGuiApplication::qt_metacast(_clname); -} - -int MyQGuiApplication::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QGuiApplication::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - return _id; -} -QT_END_MOC_NAMESPACE diff --git a/qhboxlayout.cpp b/qhboxlayout.cpp deleted file mode 100644 index d2809eed..00000000 --- a/qhboxlayout.cpp +++ /dev/null @@ -1,22 +0,0 @@ -#include "qhboxlayout.h" -#include -#include "cgoexport.h" - - - -//Public Functions -QtObjectPtr QHBoxLayout_New() -{ - return new QHBoxLayout(); -} - -QtObjectPtr QHBoxLayout_New_QWidget(QtObjectPtr parent) -{ - return new QHBoxLayout(((QWidget*)(parent))); -} - -void QHBoxLayout_Destroy(QtObjectPtr ptr) -{ - ((QHBoxLayout*)(ptr))->~QHBoxLayout(); -} - diff --git a/qhboxlayout.go b/qhboxlayout.go deleted file mode 100644 index f94b5b33..00000000 --- a/qhboxlayout.go +++ /dev/null @@ -1,46 +0,0 @@ -package qt - -//#include "qhboxlayout.h" -import "C" - -type qhboxlayout struct { - qboxlayout -} - -type QHBoxLayout interface { - QBoxLayout -} - -func (p *qhboxlayout) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qhboxlayout) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQHBoxLayout1() QHBoxLayout { - var qhboxlayout = new(qhboxlayout) - qhboxlayout.SetPointer(C.QHBoxLayout_New()) - qhboxlayout.SetObjectName("QHBoxLayout_" + randomIdentifier()) - return qhboxlayout -} - -func NewQHBoxLayout2(parent QWidget) QHBoxLayout { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qhboxlayout = new(qhboxlayout) - qhboxlayout.SetPointer(C.QHBoxLayout_New_QWidget(parentPtr)) - qhboxlayout.SetObjectName("QHBoxLayout_" + randomIdentifier()) - return qhboxlayout -} - -func (p *qhboxlayout) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QHBoxLayout_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} diff --git a/qhboxlayout.h b/qhboxlayout.h deleted file mode 100644 index 558ec12e..00000000 --- a/qhboxlayout.h +++ /dev/null @@ -1,14 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QHBoxLayout_New(); -QtObjectPtr QHBoxLayout_New_QWidget(QtObjectPtr parent); -void QHBoxLayout_Destroy(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qhboxlayout.moc b/qhboxlayout.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/qintvalidator.cpp b/qintvalidator.cpp deleted file mode 100644 index 7a389b2d..00000000 --- a/qintvalidator.cpp +++ /dev/null @@ -1,47 +0,0 @@ -#include "qintvalidator.h" -#include -#include "cgoexport.h" - - - -//Public Functions -QtObjectPtr QIntValidator_New_QObject(QtObjectPtr parent) -{ - return new QIntValidator(((QObject*)(parent))); -} - -QtObjectPtr QIntValidator_New_Int_Int_QObject(int minimum, int maximum, QtObjectPtr parent) -{ - return new QIntValidator(minimum, maximum, ((QObject*)(parent))); -} - -void QIntValidator_Destroy(QtObjectPtr ptr) -{ - ((QIntValidator*)(ptr))->~QIntValidator(); -} - -int QIntValidator_Bottom(QtObjectPtr ptr) -{ - return ((QIntValidator*)(ptr))->bottom(); -} - -void QIntValidator_SetBottom_Int(QtObjectPtr ptr, int in) -{ - ((QIntValidator*)(ptr))->setBottom(in); -} - -void QIntValidator_SetRange_Int_Int(QtObjectPtr ptr, int bottom, int top) -{ - ((QIntValidator*)(ptr))->setRange(bottom, top); -} - -void QIntValidator_SetTop_Int(QtObjectPtr ptr, int in) -{ - ((QIntValidator*)(ptr))->setTop(in); -} - -int QIntValidator_Top(QtObjectPtr ptr) -{ - return ((QIntValidator*)(ptr))->top(); -} - diff --git a/qintvalidator.go b/qintvalidator.go deleted file mode 100644 index 52ba8d6a..00000000 --- a/qintvalidator.go +++ /dev/null @@ -1,87 +0,0 @@ -package qt - -//#include "qintvalidator.h" -import "C" - -type qintvalidator struct { - qvalidator -} - -type QIntValidator interface { - QValidator - Bottom() int - SetBottom(in int) - SetRange(bottom int, top int) - SetTop(in int) - Top() int -} - -func (p *qintvalidator) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qintvalidator) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQIntValidator1(parent QObject) QIntValidator { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qintvalidator = new(qintvalidator) - qintvalidator.SetPointer(C.QIntValidator_New_QObject(parentPtr)) - qintvalidator.SetObjectName("QIntValidator_" + randomIdentifier()) - return qintvalidator -} - -func NewQIntValidator2(minimum int, maximum int, parent QObject) QIntValidator { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qintvalidator = new(qintvalidator) - qintvalidator.SetPointer(C.QIntValidator_New_Int_Int_QObject(C.int(minimum), C.int(maximum), parentPtr)) - qintvalidator.SetObjectName("QIntValidator_" + randomIdentifier()) - return qintvalidator -} - -func (p *qintvalidator) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QIntValidator_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qintvalidator) Bottom() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QIntValidator_Bottom(p.Pointer())) -} - -func (p *qintvalidator) SetBottom(in int) { - if p.Pointer() != nil { - C.QIntValidator_SetBottom_Int(p.Pointer(), C.int(in)) - } -} - -func (p *qintvalidator) SetRange(bottom int, top int) { - if p.Pointer() != nil { - C.QIntValidator_SetRange_Int_Int(p.Pointer(), C.int(bottom), C.int(top)) - } -} - -func (p *qintvalidator) SetTop(in int) { - if p.Pointer() != nil { - C.QIntValidator_SetTop_Int(p.Pointer(), C.int(in)) - } -} - -func (p *qintvalidator) Top() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QIntValidator_Top(p.Pointer())) -} diff --git a/qintvalidator.h b/qintvalidator.h deleted file mode 100644 index 5da4583b..00000000 --- a/qintvalidator.h +++ /dev/null @@ -1,19 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QIntValidator_New_QObject(QtObjectPtr parent); -QtObjectPtr QIntValidator_New_Int_Int_QObject(int minimum, int maximum, QtObjectPtr parent); -void QIntValidator_Destroy(QtObjectPtr ptr); -int QIntValidator_Bottom(QtObjectPtr ptr); -void QIntValidator_SetBottom_Int(QtObjectPtr ptr, int in); -void QIntValidator_SetRange_Int_Int(QtObjectPtr ptr, int bottom, int top); -void QIntValidator_SetTop_Int(QtObjectPtr ptr, int in); -int QIntValidator_Top(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qintvalidator.moc b/qintvalidator.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/qlabel.cpp b/qlabel.cpp deleted file mode 100644 index 5d70f03a..00000000 --- a/qlabel.cpp +++ /dev/null @@ -1,202 +0,0 @@ -#include "qlabel.h" -#include -#include "cgoexport.h" - -//MyQLabel -class MyQLabel: public QLabel { -Q_OBJECT -public: -void Signal_LinkActivated() { callbackQLabel(this, QString("linkActivated").toUtf8().data()); }; -void Signal_LinkHovered() { callbackQLabel(this, QString("linkHovered").toUtf8().data()); }; - -signals: -void Slot_Clear(); -void Slot_SetText(QString text); - -}; -#include "qlabel.moc" - - -//Public Functions -QtObjectPtr QLabel_New_QWidget_WindowType(QtObjectPtr parent, int f) -{ - return new QLabel(((QWidget*)(parent)), ((Qt::WindowType)(f))); -} - -QtObjectPtr QLabel_New_String_QWidget_WindowType(char* text, QtObjectPtr parent, int f) -{ - return new QLabel(QString(text), ((QWidget*)(parent)), ((Qt::WindowType)(f))); -} - -void QLabel_Destroy(QtObjectPtr ptr) -{ - ((QLabel*)(ptr))->~QLabel(); -} - -int QLabel_Alignment(QtObjectPtr ptr) -{ - return ((QLabel*)(ptr))->alignment(); -} - -QtObjectPtr QLabel_Buddy(QtObjectPtr ptr) -{ - return ((QLabel*)(ptr))->buddy(); -} - -int QLabel_HasScaledContents(QtObjectPtr ptr) -{ - return ((QLabel*)(ptr))->hasScaledContents(); -} - -int QLabel_HasSelectedText(QtObjectPtr ptr) -{ - return ((QLabel*)(ptr))->hasSelectedText(); -} - -int QLabel_Indent(QtObjectPtr ptr) -{ - return ((QLabel*)(ptr))->indent(); -} - -int QLabel_Margin(QtObjectPtr ptr) -{ - return ((QLabel*)(ptr))->margin(); -} - -int QLabel_OpenExternalLinks(QtObjectPtr ptr) -{ - return ((QLabel*)(ptr))->openExternalLinks(); -} - -char* QLabel_SelectedText(QtObjectPtr ptr) -{ - return ((QLabel*)(ptr))->selectedText().toUtf8().data(); -} - -int QLabel_SelectionStart(QtObjectPtr ptr) -{ - return ((QLabel*)(ptr))->selectionStart(); -} - -void QLabel_SetAlignment_AlignmentFlag(QtObjectPtr ptr, int alignment) -{ - ((QLabel*)(ptr))->setAlignment(((Qt::AlignmentFlag)(alignment))); -} - -void QLabel_SetBuddy_QWidget(QtObjectPtr ptr, QtObjectPtr buddy) -{ - ((QLabel*)(ptr))->setBuddy(((QWidget*)(buddy))); -} - -void QLabel_SetIndent_Int(QtObjectPtr ptr, int indent) -{ - ((QLabel*)(ptr))->setIndent(indent); -} - -void QLabel_SetMargin_Int(QtObjectPtr ptr, int margin) -{ - ((QLabel*)(ptr))->setMargin(margin); -} - -void QLabel_SetOpenExternalLinks_Bool(QtObjectPtr ptr, int open) -{ - ((QLabel*)(ptr))->setOpenExternalLinks(open != 0); -} - -void QLabel_SetScaledContents_Bool(QtObjectPtr ptr, int scaledContents) -{ - ((QLabel*)(ptr))->setScaledContents(scaledContents != 0); -} - -void QLabel_SetSelection_Int_Int(QtObjectPtr ptr, int start, int length) -{ - ((QLabel*)(ptr))->setSelection(start, length); -} - -void QLabel_SetTextFormat_TextFormat(QtObjectPtr ptr, int textFormat) -{ - ((QLabel*)(ptr))->setTextFormat(((Qt::TextFormat)(textFormat))); -} - -void QLabel_SetTextInteractionFlags_TextInteractionFlag(QtObjectPtr ptr, int flags) -{ - ((QLabel*)(ptr))->setTextInteractionFlags(((Qt::TextInteractionFlag)(flags))); -} - -void QLabel_SetWordWrap_Bool(QtObjectPtr ptr, int on) -{ - ((QLabel*)(ptr))->setWordWrap(on != 0); -} - -char* QLabel_Text(QtObjectPtr ptr) -{ - return ((QLabel*)(ptr))->text().toUtf8().data(); -} - -int QLabel_TextFormat(QtObjectPtr ptr) -{ - return ((QLabel*)(ptr))->textFormat(); -} - -int QLabel_TextInteractionFlags(QtObjectPtr ptr) -{ - return ((QLabel*)(ptr))->textInteractionFlags(); -} - -int QLabel_WordWrap(QtObjectPtr ptr) -{ - return ((QLabel*)(ptr))->wordWrap(); -} - -//Public Slots -void QLabel_ConnectSlotClear(QtObjectPtr ptr) -{ - QObject::connect(((MyQLabel*)(ptr)), &MyQLabel::Slot_Clear, ((QLabel*)(ptr)), &QLabel::clear, Qt::QueuedConnection); -} - -void QLabel_DisconnectSlotClear(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQLabel*)(ptr)), &MyQLabel::Slot_Clear, ((QLabel*)(ptr)), &QLabel::clear); -} - -void QLabel_Clear(QtObjectPtr ptr) -{ - ((MyQLabel*)(ptr))->Slot_Clear(); -} - -void QLabel_ConnectSlotSetText(QtObjectPtr ptr) -{ - QObject::connect(((MyQLabel*)(ptr)), &MyQLabel::Slot_SetText, ((QLabel*)(ptr)), &QLabel::setText, Qt::QueuedConnection); -} - -void QLabel_DisconnectSlotSetText(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQLabel*)(ptr)), &MyQLabel::Slot_SetText, ((QLabel*)(ptr)), &QLabel::setText); -} - -void QLabel_SetText_String(QtObjectPtr ptr, char* text) -{ - ((MyQLabel*)(ptr))->Slot_SetText(QString(text)); -} - -//Signals -void QLabel_ConnectSignalLinkActivated(QtObjectPtr ptr) -{ - QObject::connect(((QLabel*)(ptr)), &QLabel::linkActivated, ((MyQLabel*)(ptr)), &MyQLabel::Signal_LinkActivated, Qt::QueuedConnection); -} - -void QLabel_DisconnectSignalLinkActivated(QtObjectPtr ptr) -{ - QObject::disconnect(((QLabel*)(ptr)), &QLabel::linkActivated, ((MyQLabel*)(ptr)), &MyQLabel::Signal_LinkActivated); -} - -void QLabel_ConnectSignalLinkHovered(QtObjectPtr ptr) -{ - QObject::connect(((QLabel*)(ptr)), &QLabel::linkHovered, ((MyQLabel*)(ptr)), &MyQLabel::Signal_LinkHovered, Qt::QueuedConnection); -} - -void QLabel_DisconnectSignalLinkHovered(QtObjectPtr ptr) -{ - QObject::disconnect(((QLabel*)(ptr)), &QLabel::linkHovered, ((MyQLabel*)(ptr)), &MyQLabel::Signal_LinkHovered); -} - diff --git a/qlabel.go b/qlabel.go deleted file mode 100644 index 7be35ba5..00000000 --- a/qlabel.go +++ /dev/null @@ -1,309 +0,0 @@ -package qt - -//#include "qlabel.h" -import "C" - -type qlabel struct { - qframe -} - -type QLabel interface { - QFrame - Alignment() AlignmentFlag - Buddy() QWidget - HasScaledContents() bool - HasSelectedText() bool - Indent() int - Margin() int - OpenExternalLinks() bool - SelectedText() string - SelectionStart() int - SetAlignment(alignment AlignmentFlag) - SetBuddy(buddy QWidget) - SetIndent(indent int) - SetMargin(margin int) - SetOpenExternalLinks(open bool) - SetScaledContents(scaledContents bool) - SetSelection(start int, length int) - SetTextFormat(textFormat TextFormat) - SetTextInteractionFlags(flags TextInteractionFlag) - SetWordWrap(on bool) - Text() string - TextFormat() TextFormat - TextInteractionFlags() TextInteractionFlag - WordWrap() bool - ConnectSlotClear() - DisconnectSlotClear() - SlotClear() - ConnectSlotSetText() - DisconnectSlotSetText() - SlotSetText(text string) - ConnectSignalLinkActivated(f func()) - DisconnectSignalLinkActivated() - SignalLinkActivated() func() - ConnectSignalLinkHovered(f func()) - DisconnectSignalLinkHovered() - SignalLinkHovered() func() -} - -func (p *qlabel) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qlabel) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQLabel1(parent QWidget, f WindowType) QLabel { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qlabel = new(qlabel) - qlabel.SetPointer(C.QLabel_New_QWidget_WindowType(parentPtr, C.int(f))) - qlabel.SetObjectName("QLabel_" + randomIdentifier()) - return qlabel -} - -func NewQLabel2(text string, parent QWidget, f WindowType) QLabel { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qlabel = new(qlabel) - qlabel.SetPointer(C.QLabel_New_String_QWidget_WindowType(C.CString(text), parentPtr, C.int(f))) - qlabel.SetObjectName("QLabel_" + randomIdentifier()) - return qlabel -} - -func (p *qlabel) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QLabel_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qlabel) Alignment() AlignmentFlag { - if p.Pointer() == nil { - return 0 - } - return AlignmentFlag(C.QLabel_Alignment(p.Pointer())) -} - -func (p *qlabel) Buddy() QWidget { - if p.Pointer() == nil { - return nil - } else { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QLabel_Buddy(p.Pointer())) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qlabel) HasScaledContents() bool { - if p.Pointer() == nil { - return false - } - return C.QLabel_HasScaledContents(p.Pointer()) != 0 -} - -func (p *qlabel) HasSelectedText() bool { - if p.Pointer() == nil { - return false - } - return C.QLabel_HasSelectedText(p.Pointer()) != 0 -} - -func (p *qlabel) Indent() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QLabel_Indent(p.Pointer())) -} - -func (p *qlabel) Margin() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QLabel_Margin(p.Pointer())) -} - -func (p *qlabel) OpenExternalLinks() bool { - if p.Pointer() == nil { - return false - } - return C.QLabel_OpenExternalLinks(p.Pointer()) != 0 -} - -func (p *qlabel) SelectedText() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QLabel_SelectedText(p.Pointer())) -} - -func (p *qlabel) SelectionStart() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QLabel_SelectionStart(p.Pointer())) -} - -func (p *qlabel) SetAlignment(alignment AlignmentFlag) { - if p.Pointer() != nil { - C.QLabel_SetAlignment_AlignmentFlag(p.Pointer(), C.int(alignment)) - } -} - -func (p *qlabel) SetBuddy(buddy QWidget) { - if p.Pointer() != nil { - var buddyPtr C.QtObjectPtr - if buddy != nil { - buddyPtr = buddy.Pointer() - } - C.QLabel_SetBuddy_QWidget(p.Pointer(), buddyPtr) - } -} - -func (p *qlabel) SetIndent(indent int) { - if p.Pointer() != nil { - C.QLabel_SetIndent_Int(p.Pointer(), C.int(indent)) - } -} - -func (p *qlabel) SetMargin(margin int) { - if p.Pointer() != nil { - C.QLabel_SetMargin_Int(p.Pointer(), C.int(margin)) - } -} - -func (p *qlabel) SetOpenExternalLinks(open bool) { - if p.Pointer() != nil { - C.QLabel_SetOpenExternalLinks_Bool(p.Pointer(), goBoolToCInt(open)) - } -} - -func (p *qlabel) SetScaledContents(scaledContents bool) { - if p.Pointer() != nil { - C.QLabel_SetScaledContents_Bool(p.Pointer(), goBoolToCInt(scaledContents)) - } -} - -func (p *qlabel) SetSelection(start int, length int) { - if p.Pointer() != nil { - C.QLabel_SetSelection_Int_Int(p.Pointer(), C.int(start), C.int(length)) - } -} - -func (p *qlabel) SetTextFormat(textFormat TextFormat) { - if p.Pointer() != nil { - C.QLabel_SetTextFormat_TextFormat(p.Pointer(), C.int(textFormat)) - } -} - -func (p *qlabel) SetTextInteractionFlags(flags TextInteractionFlag) { - if p.Pointer() != nil { - C.QLabel_SetTextInteractionFlags_TextInteractionFlag(p.Pointer(), C.int(flags)) - } -} - -func (p *qlabel) SetWordWrap(on bool) { - if p.Pointer() != nil { - C.QLabel_SetWordWrap_Bool(p.Pointer(), goBoolToCInt(on)) - } -} - -func (p *qlabel) Text() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QLabel_Text(p.Pointer())) -} - -func (p *qlabel) TextFormat() TextFormat { - if p.Pointer() == nil { - return 0 - } - return TextFormat(C.QLabel_TextFormat(p.Pointer())) -} - -func (p *qlabel) TextInteractionFlags() TextInteractionFlag { - if p.Pointer() == nil { - return 0 - } - return TextInteractionFlag(C.QLabel_TextInteractionFlags(p.Pointer())) -} - -func (p *qlabel) WordWrap() bool { - if p.Pointer() == nil { - return false - } - return C.QLabel_WordWrap(p.Pointer()) != 0 -} - -func (p *qlabel) ConnectSlotClear() { - C.QLabel_ConnectSlotClear(p.Pointer()) -} - -func (p *qlabel) DisconnectSlotClear() { - C.QLabel_DisconnectSlotClear(p.Pointer()) -} - -func (p *qlabel) SlotClear() { - if p.Pointer() != nil { - C.QLabel_Clear(p.Pointer()) - } -} - -func (p *qlabel) ConnectSlotSetText() { - C.QLabel_ConnectSlotSetText(p.Pointer()) -} - -func (p *qlabel) DisconnectSlotSetText() { - C.QLabel_DisconnectSlotSetText(p.Pointer()) -} - -func (p *qlabel) SlotSetText(text string) { - if p.Pointer() != nil { - C.QLabel_SetText_String(p.Pointer(), C.CString(text)) - } -} - -func (p *qlabel) ConnectSignalLinkActivated(f func()) { - C.QLabel_ConnectSignalLinkActivated(p.Pointer()) - connectSignal(p.ObjectName(), "linkActivated", f) -} - -func (p *qlabel) DisconnectSignalLinkActivated() { - C.QLabel_DisconnectSignalLinkActivated(p.Pointer()) - disconnectSignal(p.ObjectName(), "linkActivated") -} - -func (p *qlabel) SignalLinkActivated() func() { - return getSignal(p.ObjectName(), "linkActivated") -} - -func (p *qlabel) ConnectSignalLinkHovered(f func()) { - C.QLabel_ConnectSignalLinkHovered(p.Pointer()) - connectSignal(p.ObjectName(), "linkHovered", f) -} - -func (p *qlabel) DisconnectSignalLinkHovered() { - C.QLabel_DisconnectSignalLinkHovered(p.Pointer()) - disconnectSignal(p.ObjectName(), "linkHovered") -} - -func (p *qlabel) SignalLinkHovered() func() { - return getSignal(p.ObjectName(), "linkHovered") -} - -//export callbackQLabel -func callbackQLabel(ptr C.QtObjectPtr, msg *C.char) { - var qlabel = new(qlabel) - qlabel.SetPointer(ptr) - getSignal(qlabel.ObjectName(), C.GoString(msg))() -} diff --git a/qlabel.h b/qlabel.h deleted file mode 100644 index c19fc72d..00000000 --- a/qlabel.h +++ /dev/null @@ -1,49 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QLabel_New_QWidget_WindowType(QtObjectPtr parent, int f); -QtObjectPtr QLabel_New_String_QWidget_WindowType(char* text, QtObjectPtr parent, int f); -void QLabel_Destroy(QtObjectPtr ptr); -int QLabel_Alignment(QtObjectPtr ptr); -QtObjectPtr QLabel_Buddy(QtObjectPtr ptr); -int QLabel_HasScaledContents(QtObjectPtr ptr); -int QLabel_HasSelectedText(QtObjectPtr ptr); -int QLabel_Indent(QtObjectPtr ptr); -int QLabel_Margin(QtObjectPtr ptr); -int QLabel_OpenExternalLinks(QtObjectPtr ptr); -char* QLabel_SelectedText(QtObjectPtr ptr); -int QLabel_SelectionStart(QtObjectPtr ptr); -void QLabel_SetAlignment_AlignmentFlag(QtObjectPtr ptr, int alignment); -void QLabel_SetBuddy_QWidget(QtObjectPtr ptr, QtObjectPtr buddy); -void QLabel_SetIndent_Int(QtObjectPtr ptr, int indent); -void QLabel_SetMargin_Int(QtObjectPtr ptr, int margin); -void QLabel_SetOpenExternalLinks_Bool(QtObjectPtr ptr, int open); -void QLabel_SetScaledContents_Bool(QtObjectPtr ptr, int scaledContents); -void QLabel_SetSelection_Int_Int(QtObjectPtr ptr, int start, int length); -void QLabel_SetTextFormat_TextFormat(QtObjectPtr ptr, int textFormat); -void QLabel_SetTextInteractionFlags_TextInteractionFlag(QtObjectPtr ptr, int flags); -void QLabel_SetWordWrap_Bool(QtObjectPtr ptr, int on); -char* QLabel_Text(QtObjectPtr ptr); -int QLabel_TextFormat(QtObjectPtr ptr); -int QLabel_TextInteractionFlags(QtObjectPtr ptr); -int QLabel_WordWrap(QtObjectPtr ptr); -//Public Slots -void QLabel_ConnectSlotClear(QtObjectPtr ptr); -void QLabel_DisconnectSlotClear(QtObjectPtr ptr); -void QLabel_Clear(QtObjectPtr ptr); -void QLabel_ConnectSlotSetText(QtObjectPtr ptr); -void QLabel_DisconnectSlotSetText(QtObjectPtr ptr); -void QLabel_SetText_String(QtObjectPtr ptr, char* text); -//Signals -void QLabel_ConnectSignalLinkActivated(QtObjectPtr ptr); -void QLabel_DisconnectSignalLinkActivated(QtObjectPtr ptr); -void QLabel_ConnectSignalLinkHovered(QtObjectPtr ptr); -void QLabel_DisconnectSignalLinkHovered(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qlabel.moc b/qlabel.moc deleted file mode 100644 index 86f15fc4..00000000 --- a/qlabel.moc +++ /dev/null @@ -1,142 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qlabel.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qlabel.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQLabel_t { - QByteArrayData data[5]; - char stringdata[39]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQLabel_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQLabel_t qt_meta_stringdata_MyQLabel = { - { -QT_MOC_LITERAL(0, 0, 8), // "MyQLabel" -QT_MOC_LITERAL(1, 9, 10), // "Slot_Clear" -QT_MOC_LITERAL(2, 20, 0), // "" -QT_MOC_LITERAL(3, 21, 12), // "Slot_SetText" -QT_MOC_LITERAL(4, 34, 4) // "text" - - }, - "MyQLabel\0Slot_Clear\0\0Slot_SetText\0" - "text" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQLabel[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 2, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 2, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 0, 24, 2, 0x06 /* Public */, - 3, 1, 25, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, - QMetaType::Void, QMetaType::QString, 4, - - 0 // eod -}; - -void MyQLabel::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQLabel *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_Clear(); break; - case 1: _t->Slot_SetText((*reinterpret_cast< QString(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQLabel::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQLabel::Slot_Clear)) { - *result = 0; - } - } - { - typedef void (MyQLabel::*_t)(QString ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQLabel::Slot_SetText)) { - *result = 1; - } - } - } -} - -const QMetaObject MyQLabel::staticMetaObject = { - { &QLabel::staticMetaObject, qt_meta_stringdata_MyQLabel.data, - qt_meta_data_MyQLabel, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQLabel::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQLabel::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQLabel.stringdata)) - return static_cast(const_cast< MyQLabel*>(this)); - return QLabel::qt_metacast(_clname); -} - -int MyQLabel::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QLabel::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 2) - qt_static_metacall(this, _c, _id, _a); - _id -= 2; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 2) - *reinterpret_cast(_a[0]) = -1; - _id -= 2; - } - return _id; -} - -// SIGNAL 0 -void MyQLabel::Slot_Clear() -{ - QMetaObject::activate(this, &staticMetaObject, 0, 0); -} - -// SIGNAL 1 -void MyQLabel::Slot_SetText(QString _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} -QT_END_MOC_NAMESPACE diff --git a/qlayout.cpp b/qlayout.cpp deleted file mode 100644 index 766da8b0..00000000 --- a/qlayout.cpp +++ /dev/null @@ -1,114 +0,0 @@ -#include "qlayout.h" -#include -#include "cgoexport.h" - - -//Public Types -int QLayout_SetDefaultConstraint() { return QLayout::SetDefaultConstraint; } -int QLayout_SetFixedSize() { return QLayout::SetFixedSize; } -int QLayout_SetMinimumSize() { return QLayout::SetMinimumSize; } -int QLayout_SetMaximumSize() { return QLayout::SetMaximumSize; } -int QLayout_SetMinAndMaxSize() { return QLayout::SetMinAndMaxSize; } -int QLayout_SetNoConstraint() { return QLayout::SetNoConstraint; } - -//Public Functions -int QLayout_Activate(QtObjectPtr ptr) -{ - return ((QLayout*)(ptr))->activate(); -} - -void QLayout_AddWidget_QWidget(QtObjectPtr ptr, QtObjectPtr w) -{ - ((QLayout*)(ptr))->addWidget(((QWidget*)(w))); -} - -int QLayout_Count(QtObjectPtr ptr) -{ - return ((QLayout*)(ptr))->count(); -} - -int QLayout_IndexOf_QWidget(QtObjectPtr ptr, QtObjectPtr widget) -{ - return ((QLayout*)(ptr))->indexOf(((QWidget*)(widget))); -} - -int QLayout_IsEnabled(QtObjectPtr ptr) -{ - return ((QLayout*)(ptr))->isEnabled(); -} - -QtObjectPtr QLayout_MenuBar(QtObjectPtr ptr) -{ - return ((QLayout*)(ptr))->menuBar(); -} - -QtObjectPtr QLayout_ParentWidget(QtObjectPtr ptr) -{ - return ((QLayout*)(ptr))->parentWidget(); -} - -void QLayout_RemoveItem_QLayoutItem(QtObjectPtr ptr, QtObjectPtr item) -{ - ((QLayout*)(ptr))->removeItem(((QLayoutItem*)(item))); -} - -void QLayout_RemoveWidget_QWidget(QtObjectPtr ptr, QtObjectPtr widget) -{ - ((QLayout*)(ptr))->removeWidget(((QWidget*)(widget))); -} - -int QLayout_SetAlignment_QWidget_AlignmentFlag(QtObjectPtr ptr, QtObjectPtr w, int alignment) -{ - return ((QLayout*)(ptr))->setAlignment(((QWidget*)(w)), ((Qt::AlignmentFlag)(alignment))); -} - -void QLayout_SetAlignment_AlignmentFlag(QtObjectPtr ptr, int alignment) -{ - ((QLayout*)(ptr))->setAlignment(((Qt::AlignmentFlag)(alignment))); -} - -int QLayout_SetAlignment_QLayout_AlignmentFlag(QtObjectPtr ptr, QtObjectPtr l, int alignment) -{ - return ((QLayout*)(ptr))->setAlignment(((QLayout*)(l)), ((Qt::AlignmentFlag)(alignment))); -} - -void QLayout_SetContentsMargins_Int_Int_Int_Int(QtObjectPtr ptr, int left, int top, int right, int bottom) -{ - ((QLayout*)(ptr))->setContentsMargins(left, top, right, bottom); -} - -void QLayout_SetEnabled_Bool(QtObjectPtr ptr, int enable) -{ - ((QLayout*)(ptr))->setEnabled(enable != 0); -} - -void QLayout_SetMenuBar_QWidget(QtObjectPtr ptr, QtObjectPtr widget) -{ - ((QLayout*)(ptr))->setMenuBar(((QWidget*)(widget))); -} - -void QLayout_SetSizeConstraint_SizeConstraint(QtObjectPtr ptr, int Si) -{ - ((QLayout*)(ptr))->setSizeConstraint(((QLayout::SizeConstraint)(Si))); -} - -void QLayout_SetSpacing_Int(QtObjectPtr ptr, int spacing) -{ - ((QLayout*)(ptr))->setSpacing(spacing); -} - -int QLayout_SizeConstraint(QtObjectPtr ptr) -{ - return ((QLayout*)(ptr))->sizeConstraint(); -} - -int QLayout_Spacing(QtObjectPtr ptr) -{ - return ((QLayout*)(ptr))->spacing(); -} - -void QLayout_Update(QtObjectPtr ptr) -{ - ((QLayout*)(ptr))->update(); -} - diff --git a/qlayout.go b/qlayout.go deleted file mode 100644 index bfa5f54d..00000000 --- a/qlayout.go +++ /dev/null @@ -1,225 +0,0 @@ -package qt - -//#include "qlayout.h" -import "C" - -type qlayout struct { - qobject -} - -type QLayout interface { - QObject - Activate() bool - AddWidget(w QWidget) - Count() int - IndexOf(widget QWidget) int - IsEnabled() bool - MenuBar() QWidget - ParentWidget() QWidget - RemoveItem(item QLayoutItem) - RemoveWidget(widget QWidget) - SetAlignment1(w QWidget, alignment AlignmentFlag) bool - SetAlignment2(alignment AlignmentFlag) - SetAlignment3(l QLayout, alignment AlignmentFlag) bool - SetContentsMargins(left int, top int, right int, bottom int) - SetEnabled(enable bool) - SetMenuBar(widget QWidget) - SetSizeConstraint(Si SizeConstraint) - SetSpacing(spacing int) - SizeConstraint() SizeConstraint - Spacing() int - Update() -} - -func (p *qlayout) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qlayout) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -//SizeConstraint -type SizeConstraint int - -var ( - SETDEFAULTCONSTRAINT = SizeConstraint(C.QLayout_SetDefaultConstraint()) - SETFIXEDSIZE = SizeConstraint(C.QLayout_SetFixedSize()) - SETMINIMUMSIZE = SizeConstraint(C.QLayout_SetMinimumSize()) - SETMAXIMUMSIZE = SizeConstraint(C.QLayout_SetMaximumSize()) - SETMINANDMAXSIZE = SizeConstraint(C.QLayout_SetMinAndMaxSize()) - SETNOCONSTRAINT = SizeConstraint(C.QLayout_SetNoConstraint()) -) - -func (p *qlayout) Activate() bool { - if p.Pointer() == nil { - return false - } - return C.QLayout_Activate(p.Pointer()) != 0 -} - -func (p *qlayout) AddWidget(w QWidget) { - if p.Pointer() != nil { - var wPtr C.QtObjectPtr - if w != nil { - wPtr = w.Pointer() - } - C.QLayout_AddWidget_QWidget(p.Pointer(), wPtr) - } -} - -func (p *qlayout) Count() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QLayout_Count(p.Pointer())) -} - -func (p *qlayout) IndexOf(widget QWidget) int { - if p.Pointer() == nil { - return 0 - } else { - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - return int(C.QLayout_IndexOf_QWidget(p.Pointer(), widgetPtr)) - } -} - -func (p *qlayout) IsEnabled() bool { - if p.Pointer() == nil { - return false - } - return C.QLayout_IsEnabled(p.Pointer()) != 0 -} - -func (p *qlayout) MenuBar() QWidget { - if p.Pointer() == nil { - return nil - } else { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QLayout_MenuBar(p.Pointer())) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qlayout) ParentWidget() QWidget { - if p.Pointer() == nil { - return nil - } else { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QLayout_ParentWidget(p.Pointer())) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qlayout) RemoveItem(item QLayoutItem) { - if p.Pointer() != nil { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - C.QLayout_RemoveItem_QLayoutItem(p.Pointer(), itemPtr) - } -} - -func (p *qlayout) RemoveWidget(widget QWidget) { - if p.Pointer() != nil { - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - C.QLayout_RemoveWidget_QWidget(p.Pointer(), widgetPtr) - } -} - -func (p *qlayout) SetAlignment1(w QWidget, alignment AlignmentFlag) bool { - if p.Pointer() == nil { - return false - } else { - var wPtr C.QtObjectPtr - if w != nil { - wPtr = w.Pointer() - } - return C.QLayout_SetAlignment_QWidget_AlignmentFlag(p.Pointer(), wPtr, C.int(alignment)) != 0 - } -} - -func (p *qlayout) SetAlignment2(alignment AlignmentFlag) { - if p.Pointer() != nil { - C.QLayout_SetAlignment_AlignmentFlag(p.Pointer(), C.int(alignment)) - } -} - -func (p *qlayout) SetAlignment3(l QLayout, alignment AlignmentFlag) bool { - if p.Pointer() == nil { - return false - } else { - var lPtr C.QtObjectPtr - if l != nil { - lPtr = l.Pointer() - } - return C.QLayout_SetAlignment_QLayout_AlignmentFlag(p.Pointer(), lPtr, C.int(alignment)) != 0 - } -} - -func (p *qlayout) SetContentsMargins(left int, top int, right int, bottom int) { - if p.Pointer() != nil { - C.QLayout_SetContentsMargins_Int_Int_Int_Int(p.Pointer(), C.int(left), C.int(top), C.int(right), C.int(bottom)) - } -} - -func (p *qlayout) SetEnabled(enable bool) { - if p.Pointer() != nil { - C.QLayout_SetEnabled_Bool(p.Pointer(), goBoolToCInt(enable)) - } -} - -func (p *qlayout) SetMenuBar(widget QWidget) { - if p.Pointer() != nil { - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - C.QLayout_SetMenuBar_QWidget(p.Pointer(), widgetPtr) - } -} - -func (p *qlayout) SetSizeConstraint(Si SizeConstraint) { - if p.Pointer() != nil { - C.QLayout_SetSizeConstraint_SizeConstraint(p.Pointer(), C.int(Si)) - } -} - -func (p *qlayout) SetSpacing(spacing int) { - if p.Pointer() != nil { - C.QLayout_SetSpacing_Int(p.Pointer(), C.int(spacing)) - } -} - -func (p *qlayout) SizeConstraint() SizeConstraint { - if p.Pointer() == nil { - return 0 - } - return SizeConstraint(C.QLayout_SizeConstraint(p.Pointer())) -} - -func (p *qlayout) Spacing() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QLayout_Spacing(p.Pointer())) -} - -func (p *qlayout) Update() { - if p.Pointer() != nil { - C.QLayout_Update(p.Pointer()) - } -} diff --git a/qlayout.h b/qlayout.h deleted file mode 100644 index 3ddd99e5..00000000 --- a/qlayout.h +++ /dev/null @@ -1,38 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Types -int QLayout_SetDefaultConstraint(); -int QLayout_SetFixedSize(); -int QLayout_SetMinimumSize(); -int QLayout_SetMaximumSize(); -int QLayout_SetMinAndMaxSize(); -int QLayout_SetNoConstraint(); -//Public Functions -int QLayout_Activate(QtObjectPtr ptr); -void QLayout_AddWidget_QWidget(QtObjectPtr ptr, QtObjectPtr w); -int QLayout_Count(QtObjectPtr ptr); -int QLayout_IndexOf_QWidget(QtObjectPtr ptr, QtObjectPtr widget); -int QLayout_IsEnabled(QtObjectPtr ptr); -QtObjectPtr QLayout_MenuBar(QtObjectPtr ptr); -QtObjectPtr QLayout_ParentWidget(QtObjectPtr ptr); -void QLayout_RemoveItem_QLayoutItem(QtObjectPtr ptr, QtObjectPtr item); -void QLayout_RemoveWidget_QWidget(QtObjectPtr ptr, QtObjectPtr widget); -int QLayout_SetAlignment_QWidget_AlignmentFlag(QtObjectPtr ptr, QtObjectPtr w, int alignment); -void QLayout_SetAlignment_AlignmentFlag(QtObjectPtr ptr, int alignment); -int QLayout_SetAlignment_QLayout_AlignmentFlag(QtObjectPtr ptr, QtObjectPtr l, int alignment); -void QLayout_SetContentsMargins_Int_Int_Int_Int(QtObjectPtr ptr, int left, int top, int right, int bottom); -void QLayout_SetEnabled_Bool(QtObjectPtr ptr, int enable); -void QLayout_SetMenuBar_QWidget(QtObjectPtr ptr, QtObjectPtr widget); -void QLayout_SetSizeConstraint_SizeConstraint(QtObjectPtr ptr, int Si); -void QLayout_SetSpacing_Int(QtObjectPtr ptr, int spacing); -int QLayout_SizeConstraint(QtObjectPtr ptr); -int QLayout_Spacing(QtObjectPtr ptr); -void QLayout_Update(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qlayout.moc b/qlayout.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/qlayoutitem.cpp b/qlayoutitem.cpp deleted file mode 100644 index e08b891e..00000000 --- a/qlayoutitem.cpp +++ /dev/null @@ -1,62 +0,0 @@ -#include "qlayoutitem.h" -#include -#include "cgoexport.h" - - - -//Public Functions -void QLayoutItem_Destroy(QtObjectPtr ptr) -{ - ((QLayoutItem*)(ptr))->~QLayoutItem(); -} - -int QLayoutItem_Alignment(QtObjectPtr ptr) -{ - return ((QLayoutItem*)(ptr))->alignment(); -} - -int QLayoutItem_ExpandingDirections(QtObjectPtr ptr) -{ - return ((QLayoutItem*)(ptr))->expandingDirections(); -} - -int QLayoutItem_HasHeightForWidth(QtObjectPtr ptr) -{ - return ((QLayoutItem*)(ptr))->hasHeightForWidth(); -} - -int QLayoutItem_HeightForWidth_Int(QtObjectPtr ptr, int w) -{ - return ((QLayoutItem*)(ptr))->heightForWidth(w); -} - -void QLayoutItem_Invalidate(QtObjectPtr ptr) -{ - ((QLayoutItem*)(ptr))->invalidate(); -} - -int QLayoutItem_IsEmpty(QtObjectPtr ptr) -{ - return ((QLayoutItem*)(ptr))->isEmpty(); -} - -QtObjectPtr QLayoutItem_Layout(QtObjectPtr ptr) -{ - return ((QLayoutItem*)(ptr))->layout(); -} - -int QLayoutItem_MinimumHeightForWidth_Int(QtObjectPtr ptr, int w) -{ - return ((QLayoutItem*)(ptr))->minimumHeightForWidth(w); -} - -void QLayoutItem_SetAlignment_AlignmentFlag(QtObjectPtr ptr, int alignment) -{ - ((QLayoutItem*)(ptr))->setAlignment(((Qt::AlignmentFlag)(alignment))); -} - -QtObjectPtr QLayoutItem_Widget(QtObjectPtr ptr) -{ - return ((QLayoutItem*)(ptr))->widget(); -} - diff --git a/qlayoutitem.go b/qlayoutitem.go deleted file mode 100644 index 9cb8a0d1..00000000 --- a/qlayoutitem.go +++ /dev/null @@ -1,119 +0,0 @@ -package qt - -//#include "qlayoutitem.h" -import "C" - -type qlayoutitem struct { - ptr C.QtObjectPtr -} - -type QLayoutItem interface { - Pointer() (ptr C.QtObjectPtr) - SetPointer(ptr C.QtObjectPtr) - Destroy() - Alignment() AlignmentFlag - ExpandingDirections() Orientation - HasHeightForWidth() bool - HeightForWidth(w int) int - Invalidate() - IsEmpty() bool - Layout() QLayout - MinimumHeightForWidth(w int) int - SetAlignment(alignment AlignmentFlag) - Widget() QWidget -} - -func (p *qlayoutitem) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qlayoutitem) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func (p *qlayoutitem) Destroy() { - if p.Pointer() != nil { - C.QLayoutItem_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qlayoutitem) Alignment() AlignmentFlag { - if p.Pointer() == nil { - return 0 - } - return AlignmentFlag(C.QLayoutItem_Alignment(p.Pointer())) -} - -func (p *qlayoutitem) ExpandingDirections() Orientation { - if p.Pointer() == nil { - return 0 - } - return Orientation(C.QLayoutItem_ExpandingDirections(p.Pointer())) -} - -func (p *qlayoutitem) HasHeightForWidth() bool { - if p.Pointer() == nil { - return false - } - return C.QLayoutItem_HasHeightForWidth(p.Pointer()) != 0 -} - -func (p *qlayoutitem) HeightForWidth(w int) int { - if p.Pointer() == nil { - return 0 - } - return int(C.QLayoutItem_HeightForWidth_Int(p.Pointer(), C.int(w))) -} - -func (p *qlayoutitem) Invalidate() { - if p.Pointer() != nil { - C.QLayoutItem_Invalidate(p.Pointer()) - } -} - -func (p *qlayoutitem) IsEmpty() bool { - if p.Pointer() == nil { - return false - } - return C.QLayoutItem_IsEmpty(p.Pointer()) != 0 -} - -func (p *qlayoutitem) Layout() QLayout { - if p.Pointer() == nil { - return nil - } else { - var qlayout = new(qlayout) - qlayout.SetPointer(C.QLayoutItem_Layout(p.Pointer())) - if qlayout.ObjectName() == "" { - qlayout.SetObjectName("QLayout_" + randomIdentifier()) - } - return qlayout - } -} - -func (p *qlayoutitem) MinimumHeightForWidth(w int) int { - if p.Pointer() == nil { - return 0 - } - return int(C.QLayoutItem_MinimumHeightForWidth_Int(p.Pointer(), C.int(w))) -} - -func (p *qlayoutitem) SetAlignment(alignment AlignmentFlag) { - if p.Pointer() != nil { - C.QLayoutItem_SetAlignment_AlignmentFlag(p.Pointer(), C.int(alignment)) - } -} - -func (p *qlayoutitem) Widget() QWidget { - if p.Pointer() == nil { - return nil - } else { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QLayoutItem_Widget(p.Pointer())) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} diff --git a/qlayoutitem.h b/qlayoutitem.h deleted file mode 100644 index 8b4be5de..00000000 --- a/qlayoutitem.h +++ /dev/null @@ -1,22 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -void QLayoutItem_Destroy(QtObjectPtr ptr); -int QLayoutItem_Alignment(QtObjectPtr ptr); -int QLayoutItem_ExpandingDirections(QtObjectPtr ptr); -int QLayoutItem_HasHeightForWidth(QtObjectPtr ptr); -int QLayoutItem_HeightForWidth_Int(QtObjectPtr ptr, int w); -void QLayoutItem_Invalidate(QtObjectPtr ptr); -int QLayoutItem_IsEmpty(QtObjectPtr ptr); -QtObjectPtr QLayoutItem_Layout(QtObjectPtr ptr); -int QLayoutItem_MinimumHeightForWidth_Int(QtObjectPtr ptr, int w); -void QLayoutItem_SetAlignment_AlignmentFlag(QtObjectPtr ptr, int alignment); -QtObjectPtr QLayoutItem_Widget(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qlayoutitem.moc b/qlayoutitem.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/qlineedit.cpp b/qlineedit.cpp deleted file mode 100644 index 79e56b1b..00000000 --- a/qlineedit.cpp +++ /dev/null @@ -1,464 +0,0 @@ -#include "qlineedit.h" -#include -#include "cgoexport.h" - -//MyQLineEdit -class MyQLineEdit: public QLineEdit { -Q_OBJECT -public: -void Signal_CursorPositionChanged() { callbackQLineEdit(this, QString("cursorPositionChanged").toUtf8().data()); }; -void Signal_EditingFinished() { callbackQLineEdit(this, QString("editingFinished").toUtf8().data()); }; -void Signal_ReturnPressed() { callbackQLineEdit(this, QString("returnPressed").toUtf8().data()); }; -void Signal_SelectionChanged() { callbackQLineEdit(this, QString("selectionChanged").toUtf8().data()); }; -void Signal_TextChanged() { callbackQLineEdit(this, QString("textChanged").toUtf8().data()); }; -void Signal_TextEdited() { callbackQLineEdit(this, QString("textEdited").toUtf8().data()); }; - -signals: -void Slot_Clear(); -void Slot_Copy(); -void Slot_Cut(); -void Slot_Paste(); -void Slot_Redo(); -void Slot_SelectAll(); -void Slot_SetText(QString text); -void Slot_Undo(); - -}; -#include "qlineedit.moc" - -//Public Types -int QLineEdit_LeadingPosition() { return QLineEdit::LeadingPosition; } -int QLineEdit_TrailingPosition() { return QLineEdit::TrailingPosition; } -int QLineEdit_Normal() { return QLineEdit::Normal; } -int QLineEdit_NoEcho() { return QLineEdit::NoEcho; } -int QLineEdit_Password() { return QLineEdit::Password; } -int QLineEdit_PasswordEchoOnEdit() { return QLineEdit::PasswordEchoOnEdit; } - -//Public Functions -QtObjectPtr QLineEdit_New_QWidget(QtObjectPtr parent) -{ - return new QLineEdit(((QWidget*)(parent))); -} - -QtObjectPtr QLineEdit_New_String_QWidget(char* contents, QtObjectPtr parent) -{ - return new QLineEdit(QString(contents), ((QWidget*)(parent))); -} - -void QLineEdit_Destroy(QtObjectPtr ptr) -{ - ((QLineEdit*)(ptr))->~QLineEdit(); -} - -int QLineEdit_Alignment(QtObjectPtr ptr) -{ - return ((QLineEdit*)(ptr))->alignment(); -} - -void QLineEdit_Backspace(QtObjectPtr ptr) -{ - ((QLineEdit*)(ptr))->backspace(); -} - -QtObjectPtr QLineEdit_CreateStandardContextMenu(QtObjectPtr ptr) -{ - return ((QLineEdit*)(ptr))->createStandardContextMenu(); -} - -void QLineEdit_CursorBackward_Bool_Int(QtObjectPtr ptr, int mark, int steps) -{ - ((QLineEdit*)(ptr))->cursorBackward(mark != 0, steps); -} - -void QLineEdit_CursorForward_Bool_Int(QtObjectPtr ptr, int mark, int steps) -{ - ((QLineEdit*)(ptr))->cursorForward(mark != 0, steps); -} - -int QLineEdit_CursorMoveStyle(QtObjectPtr ptr) -{ - return ((QLineEdit*)(ptr))->cursorMoveStyle(); -} - -int QLineEdit_CursorPosition(QtObjectPtr ptr) -{ - return ((QLineEdit*)(ptr))->cursorPosition(); -} - -void QLineEdit_CursorWordBackward_Bool(QtObjectPtr ptr, int mark) -{ - ((QLineEdit*)(ptr))->cursorWordBackward(mark != 0); -} - -void QLineEdit_CursorWordForward_Bool(QtObjectPtr ptr, int mark) -{ - ((QLineEdit*)(ptr))->cursorWordForward(mark != 0); -} - -void QLineEdit_Del(QtObjectPtr ptr) -{ - ((QLineEdit*)(ptr))->del(); -} - -void QLineEdit_Deselect(QtObjectPtr ptr) -{ - ((QLineEdit*)(ptr))->deselect(); -} - -char* QLineEdit_DisplayText(QtObjectPtr ptr) -{ - return ((QLineEdit*)(ptr))->displayText().toUtf8().data(); -} - -int QLineEdit_DragEnabled(QtObjectPtr ptr) -{ - return ((QLineEdit*)(ptr))->dragEnabled(); -} - -int QLineEdit_EchoMode(QtObjectPtr ptr) -{ - return ((QLineEdit*)(ptr))->echoMode(); -} - -void QLineEdit_End_Bool(QtObjectPtr ptr, int mark) -{ - ((QLineEdit*)(ptr))->end(mark != 0); -} - -int QLineEdit_HasAcceptableInput(QtObjectPtr ptr) -{ - return ((QLineEdit*)(ptr))->hasAcceptableInput(); -} - -int QLineEdit_HasFrame(QtObjectPtr ptr) -{ - return ((QLineEdit*)(ptr))->hasFrame(); -} - -int QLineEdit_HasSelectedText(QtObjectPtr ptr) -{ - return ((QLineEdit*)(ptr))->hasSelectedText(); -} - -void QLineEdit_Home_Bool(QtObjectPtr ptr, int mark) -{ - ((QLineEdit*)(ptr))->home(mark != 0); -} - -char* QLineEdit_InputMask(QtObjectPtr ptr) -{ - return ((QLineEdit*)(ptr))->inputMask().toUtf8().data(); -} - -void QLineEdit_Insert_String(QtObjectPtr ptr, char* newText) -{ - ((QLineEdit*)(ptr))->insert(QString(newText)); -} - -int QLineEdit_IsClearButtonEnabled(QtObjectPtr ptr) -{ - return ((QLineEdit*)(ptr))->isClearButtonEnabled(); -} - -int QLineEdit_IsModified(QtObjectPtr ptr) -{ - return ((QLineEdit*)(ptr))->isModified(); -} - -int QLineEdit_IsReadOnly(QtObjectPtr ptr) -{ - return ((QLineEdit*)(ptr))->isReadOnly(); -} - -int QLineEdit_IsRedoAvailable(QtObjectPtr ptr) -{ - return ((QLineEdit*)(ptr))->isRedoAvailable(); -} - -int QLineEdit_IsUndoAvailable(QtObjectPtr ptr) -{ - return ((QLineEdit*)(ptr))->isUndoAvailable(); -} - -int QLineEdit_MaxLength(QtObjectPtr ptr) -{ - return ((QLineEdit*)(ptr))->maxLength(); -} - -char* QLineEdit_PlaceholderText(QtObjectPtr ptr) -{ - return ((QLineEdit*)(ptr))->placeholderText().toUtf8().data(); -} - -char* QLineEdit_SelectedText(QtObjectPtr ptr) -{ - return ((QLineEdit*)(ptr))->selectedText().toUtf8().data(); -} - -int QLineEdit_SelectionStart(QtObjectPtr ptr) -{ - return ((QLineEdit*)(ptr))->selectionStart(); -} - -void QLineEdit_SetAlignment_AlignmentFlag(QtObjectPtr ptr, int flag) -{ - ((QLineEdit*)(ptr))->setAlignment(((Qt::AlignmentFlag)(flag))); -} - -void QLineEdit_SetClearButtonEnabled_Bool(QtObjectPtr ptr, int enable) -{ - ((QLineEdit*)(ptr))->setClearButtonEnabled(enable != 0); -} - -void QLineEdit_SetCursorMoveStyle_CursorMoveStyle(QtObjectPtr ptr, int style) -{ - ((QLineEdit*)(ptr))->setCursorMoveStyle(((Qt::CursorMoveStyle)(style))); -} - -void QLineEdit_SetCursorPosition_Int(QtObjectPtr ptr, int cursorPosition) -{ - ((QLineEdit*)(ptr))->setCursorPosition(cursorPosition); -} - -void QLineEdit_SetDragEnabled_Bool(QtObjectPtr ptr, int dragEnabled) -{ - ((QLineEdit*)(ptr))->setDragEnabled(dragEnabled != 0); -} - -void QLineEdit_SetEchoMode_EchoMode(QtObjectPtr ptr, int Ec) -{ - ((QLineEdit*)(ptr))->setEchoMode(((QLineEdit::EchoMode)(Ec))); -} - -void QLineEdit_SetFrame_Bool(QtObjectPtr ptr, int frame) -{ - ((QLineEdit*)(ptr))->setFrame(frame != 0); -} - -void QLineEdit_SetInputMask_String(QtObjectPtr ptr, char* inputMask) -{ - ((QLineEdit*)(ptr))->setInputMask(QString(inputMask)); -} - -void QLineEdit_SetMaxLength_Int(QtObjectPtr ptr, int maxLength) -{ - ((QLineEdit*)(ptr))->setMaxLength(maxLength); -} - -void QLineEdit_SetModified_Bool(QtObjectPtr ptr, int modified) -{ - ((QLineEdit*)(ptr))->setModified(modified != 0); -} - -void QLineEdit_SetPlaceholderText_String(QtObjectPtr ptr, char* placeholderText) -{ - ((QLineEdit*)(ptr))->setPlaceholderText(QString(placeholderText)); -} - -void QLineEdit_SetReadOnly_Bool(QtObjectPtr ptr, int readOnly) -{ - ((QLineEdit*)(ptr))->setReadOnly(readOnly != 0); -} - -void QLineEdit_SetSelection_Int_Int(QtObjectPtr ptr, int start, int length) -{ - ((QLineEdit*)(ptr))->setSelection(start, length); -} - -void QLineEdit_SetTextMargins_Int_Int_Int_Int(QtObjectPtr ptr, int left, int top, int right, int bottom) -{ - ((QLineEdit*)(ptr))->setTextMargins(left, top, right, bottom); -} - -void QLineEdit_SetValidator_QValidator(QtObjectPtr ptr, QtObjectPtr v) -{ - ((QLineEdit*)(ptr))->setValidator(((QValidator*)(v))); -} - -char* QLineEdit_Text(QtObjectPtr ptr) -{ - return ((QLineEdit*)(ptr))->text().toUtf8().data(); -} - -//Public Slots -void QLineEdit_ConnectSlotClear(QtObjectPtr ptr) -{ - QObject::connect(((MyQLineEdit*)(ptr)), &MyQLineEdit::Slot_Clear, ((QLineEdit*)(ptr)), &QLineEdit::clear, Qt::QueuedConnection); -} - -void QLineEdit_DisconnectSlotClear(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQLineEdit*)(ptr)), &MyQLineEdit::Slot_Clear, ((QLineEdit*)(ptr)), &QLineEdit::clear); -} - -void QLineEdit_Clear(QtObjectPtr ptr) -{ - ((MyQLineEdit*)(ptr))->Slot_Clear(); -} - -void QLineEdit_ConnectSlotCopy(QtObjectPtr ptr) -{ - QObject::connect(((MyQLineEdit*)(ptr)), &MyQLineEdit::Slot_Copy, ((QLineEdit*)(ptr)), &QLineEdit::copy, Qt::QueuedConnection); -} - -void QLineEdit_DisconnectSlotCopy(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQLineEdit*)(ptr)), &MyQLineEdit::Slot_Copy, ((QLineEdit*)(ptr)), &QLineEdit::copy); -} - -void QLineEdit_Copy(QtObjectPtr ptr) -{ - ((MyQLineEdit*)(ptr))->Slot_Copy(); -} - -void QLineEdit_ConnectSlotCut(QtObjectPtr ptr) -{ - QObject::connect(((MyQLineEdit*)(ptr)), &MyQLineEdit::Slot_Cut, ((QLineEdit*)(ptr)), &QLineEdit::cut, Qt::QueuedConnection); -} - -void QLineEdit_DisconnectSlotCut(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQLineEdit*)(ptr)), &MyQLineEdit::Slot_Cut, ((QLineEdit*)(ptr)), &QLineEdit::cut); -} - -void QLineEdit_Cut(QtObjectPtr ptr) -{ - ((MyQLineEdit*)(ptr))->Slot_Cut(); -} - -void QLineEdit_ConnectSlotPaste(QtObjectPtr ptr) -{ - QObject::connect(((MyQLineEdit*)(ptr)), &MyQLineEdit::Slot_Paste, ((QLineEdit*)(ptr)), &QLineEdit::paste, Qt::QueuedConnection); -} - -void QLineEdit_DisconnectSlotPaste(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQLineEdit*)(ptr)), &MyQLineEdit::Slot_Paste, ((QLineEdit*)(ptr)), &QLineEdit::paste); -} - -void QLineEdit_Paste(QtObjectPtr ptr) -{ - ((MyQLineEdit*)(ptr))->Slot_Paste(); -} - -void QLineEdit_ConnectSlotRedo(QtObjectPtr ptr) -{ - QObject::connect(((MyQLineEdit*)(ptr)), &MyQLineEdit::Slot_Redo, ((QLineEdit*)(ptr)), &QLineEdit::redo, Qt::QueuedConnection); -} - -void QLineEdit_DisconnectSlotRedo(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQLineEdit*)(ptr)), &MyQLineEdit::Slot_Redo, ((QLineEdit*)(ptr)), &QLineEdit::redo); -} - -void QLineEdit_Redo(QtObjectPtr ptr) -{ - ((MyQLineEdit*)(ptr))->Slot_Redo(); -} - -void QLineEdit_ConnectSlotSelectAll(QtObjectPtr ptr) -{ - QObject::connect(((MyQLineEdit*)(ptr)), &MyQLineEdit::Slot_SelectAll, ((QLineEdit*)(ptr)), &QLineEdit::selectAll, Qt::QueuedConnection); -} - -void QLineEdit_DisconnectSlotSelectAll(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQLineEdit*)(ptr)), &MyQLineEdit::Slot_SelectAll, ((QLineEdit*)(ptr)), &QLineEdit::selectAll); -} - -void QLineEdit_SelectAll(QtObjectPtr ptr) -{ - ((MyQLineEdit*)(ptr))->Slot_SelectAll(); -} - -void QLineEdit_ConnectSlotSetText(QtObjectPtr ptr) -{ - QObject::connect(((MyQLineEdit*)(ptr)), &MyQLineEdit::Slot_SetText, ((QLineEdit*)(ptr)), &QLineEdit::setText, Qt::QueuedConnection); -} - -void QLineEdit_DisconnectSlotSetText(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQLineEdit*)(ptr)), &MyQLineEdit::Slot_SetText, ((QLineEdit*)(ptr)), &QLineEdit::setText); -} - -void QLineEdit_SetText_String(QtObjectPtr ptr, char* text) -{ - ((MyQLineEdit*)(ptr))->Slot_SetText(QString(text)); -} - -void QLineEdit_ConnectSlotUndo(QtObjectPtr ptr) -{ - QObject::connect(((MyQLineEdit*)(ptr)), &MyQLineEdit::Slot_Undo, ((QLineEdit*)(ptr)), &QLineEdit::undo, Qt::QueuedConnection); -} - -void QLineEdit_DisconnectSlotUndo(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQLineEdit*)(ptr)), &MyQLineEdit::Slot_Undo, ((QLineEdit*)(ptr)), &QLineEdit::undo); -} - -void QLineEdit_Undo(QtObjectPtr ptr) -{ - ((MyQLineEdit*)(ptr))->Slot_Undo(); -} - -//Signals -void QLineEdit_ConnectSignalCursorPositionChanged(QtObjectPtr ptr) -{ - QObject::connect(((QLineEdit*)(ptr)), &QLineEdit::cursorPositionChanged, ((MyQLineEdit*)(ptr)), &MyQLineEdit::Signal_CursorPositionChanged, Qt::QueuedConnection); -} - -void QLineEdit_DisconnectSignalCursorPositionChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QLineEdit*)(ptr)), &QLineEdit::cursorPositionChanged, ((MyQLineEdit*)(ptr)), &MyQLineEdit::Signal_CursorPositionChanged); -} - -void QLineEdit_ConnectSignalEditingFinished(QtObjectPtr ptr) -{ - QObject::connect(((QLineEdit*)(ptr)), &QLineEdit::editingFinished, ((MyQLineEdit*)(ptr)), &MyQLineEdit::Signal_EditingFinished, Qt::QueuedConnection); -} - -void QLineEdit_DisconnectSignalEditingFinished(QtObjectPtr ptr) -{ - QObject::disconnect(((QLineEdit*)(ptr)), &QLineEdit::editingFinished, ((MyQLineEdit*)(ptr)), &MyQLineEdit::Signal_EditingFinished); -} - -void QLineEdit_ConnectSignalReturnPressed(QtObjectPtr ptr) -{ - QObject::connect(((QLineEdit*)(ptr)), &QLineEdit::returnPressed, ((MyQLineEdit*)(ptr)), &MyQLineEdit::Signal_ReturnPressed, Qt::QueuedConnection); -} - -void QLineEdit_DisconnectSignalReturnPressed(QtObjectPtr ptr) -{ - QObject::disconnect(((QLineEdit*)(ptr)), &QLineEdit::returnPressed, ((MyQLineEdit*)(ptr)), &MyQLineEdit::Signal_ReturnPressed); -} - -void QLineEdit_ConnectSignalSelectionChanged(QtObjectPtr ptr) -{ - QObject::connect(((QLineEdit*)(ptr)), &QLineEdit::selectionChanged, ((MyQLineEdit*)(ptr)), &MyQLineEdit::Signal_SelectionChanged, Qt::QueuedConnection); -} - -void QLineEdit_DisconnectSignalSelectionChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QLineEdit*)(ptr)), &QLineEdit::selectionChanged, ((MyQLineEdit*)(ptr)), &MyQLineEdit::Signal_SelectionChanged); -} - -void QLineEdit_ConnectSignalTextChanged(QtObjectPtr ptr) -{ - QObject::connect(((QLineEdit*)(ptr)), &QLineEdit::textChanged, ((MyQLineEdit*)(ptr)), &MyQLineEdit::Signal_TextChanged, Qt::QueuedConnection); -} - -void QLineEdit_DisconnectSignalTextChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QLineEdit*)(ptr)), &QLineEdit::textChanged, ((MyQLineEdit*)(ptr)), &MyQLineEdit::Signal_TextChanged); -} - -void QLineEdit_ConnectSignalTextEdited(QtObjectPtr ptr) -{ - QObject::connect(((QLineEdit*)(ptr)), &QLineEdit::textEdited, ((MyQLineEdit*)(ptr)), &MyQLineEdit::Signal_TextEdited, Qt::QueuedConnection); -} - -void QLineEdit_DisconnectSignalTextEdited(QtObjectPtr ptr) -{ - QObject::disconnect(((QLineEdit*)(ptr)), &QLineEdit::textEdited, ((MyQLineEdit*)(ptr)), &MyQLineEdit::Signal_TextEdited); -} - diff --git a/qlineedit.go b/qlineedit.go deleted file mode 100644 index 78be722d..00000000 --- a/qlineedit.go +++ /dev/null @@ -1,666 +0,0 @@ -package qt - -//#include "qlineedit.h" -import "C" - -type qlineedit struct { - qwidget -} - -type QLineEdit interface { - QWidget - Alignment() AlignmentFlag - Backspace() - CreateStandardContextMenu() QMenu - CursorBackward(mark bool, steps int) - CursorForward(mark bool, steps int) - CursorMoveStyle() CursorMoveStyle - CursorPosition() int - CursorWordBackward(mark bool) - CursorWordForward(mark bool) - Del() - Deselect() - DisplayText() string - DragEnabled() bool - EchoMode() EchoMode - End(mark bool) - HasAcceptableInput() bool - HasFrame() bool - HasSelectedText() bool - Home(mark bool) - InputMask() string - Insert(newText string) - IsClearButtonEnabled() bool - IsModified() bool - IsReadOnly() bool - IsRedoAvailable() bool - IsUndoAvailable() bool - MaxLength() int - PlaceholderText() string - SelectedText() string - SelectionStart() int - SetAlignment(flag AlignmentFlag) - SetClearButtonEnabled(enable bool) - SetCursorMoveStyle(style CursorMoveStyle) - SetCursorPosition(cursorPosition int) - SetDragEnabled(dragEnabled bool) - SetEchoMode(Ec EchoMode) - SetFrame(frame bool) - SetInputMask(inputMask string) - SetMaxLength(maxLength int) - SetModified(modified bool) - SetPlaceholderText(placeholderText string) - SetReadOnly(readOnly bool) - SetSelection(start int, length int) - SetTextMargins(left int, top int, right int, bottom int) - SetValidator(v QValidator) - Text() string - ConnectSlotClear() - DisconnectSlotClear() - SlotClear() - ConnectSlotCopy() - DisconnectSlotCopy() - SlotCopy() - ConnectSlotCut() - DisconnectSlotCut() - SlotCut() - ConnectSlotPaste() - DisconnectSlotPaste() - SlotPaste() - ConnectSlotRedo() - DisconnectSlotRedo() - SlotRedo() - ConnectSlotSelectAll() - DisconnectSlotSelectAll() - SlotSelectAll() - ConnectSlotSetText() - DisconnectSlotSetText() - SlotSetText(text string) - ConnectSlotUndo() - DisconnectSlotUndo() - SlotUndo() - ConnectSignalCursorPositionChanged(f func()) - DisconnectSignalCursorPositionChanged() - SignalCursorPositionChanged() func() - ConnectSignalEditingFinished(f func()) - DisconnectSignalEditingFinished() - SignalEditingFinished() func() - ConnectSignalReturnPressed(f func()) - DisconnectSignalReturnPressed() - SignalReturnPressed() func() - ConnectSignalSelectionChanged(f func()) - DisconnectSignalSelectionChanged() - SignalSelectionChanged() func() - ConnectSignalTextChanged(f func()) - DisconnectSignalTextChanged() - SignalTextChanged() func() - ConnectSignalTextEdited(f func()) - DisconnectSignalTextEdited() - SignalTextEdited() func() -} - -func (p *qlineedit) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qlineedit) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -//ActionPosition -type ActionPosition int - -var ( - LEADINGPOSITION = ActionPosition(C.QLineEdit_LeadingPosition()) - TRAILINGPOSITION = ActionPosition(C.QLineEdit_TrailingPosition()) -) - -//EchoMode -type EchoMode int - -var ( - NORMAL = EchoMode(C.QLineEdit_Normal()) - NOECHO = EchoMode(C.QLineEdit_NoEcho()) - PASSWORD = EchoMode(C.QLineEdit_Password()) - PASSWORDECHOONEDIT = EchoMode(C.QLineEdit_PasswordEchoOnEdit()) -) - -func NewQLineEdit1(parent QWidget) QLineEdit { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qlineedit = new(qlineedit) - qlineedit.SetPointer(C.QLineEdit_New_QWidget(parentPtr)) - qlineedit.SetObjectName("QLineEdit_" + randomIdentifier()) - return qlineedit -} - -func NewQLineEdit2(contents string, parent QWidget) QLineEdit { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qlineedit = new(qlineedit) - qlineedit.SetPointer(C.QLineEdit_New_String_QWidget(C.CString(contents), parentPtr)) - qlineedit.SetObjectName("QLineEdit_" + randomIdentifier()) - return qlineedit -} - -func (p *qlineedit) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QLineEdit_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qlineedit) Alignment() AlignmentFlag { - if p.Pointer() == nil { - return 0 - } - return AlignmentFlag(C.QLineEdit_Alignment(p.Pointer())) -} - -func (p *qlineedit) Backspace() { - if p.Pointer() != nil { - C.QLineEdit_Backspace(p.Pointer()) - } -} - -func (p *qlineedit) CreateStandardContextMenu() QMenu { - if p.Pointer() == nil { - return nil - } else { - var qmenu = new(qmenu) - qmenu.SetPointer(C.QLineEdit_CreateStandardContextMenu(p.Pointer())) - if qmenu.ObjectName() == "" { - qmenu.SetObjectName("QMenu_" + randomIdentifier()) - } - return qmenu - } -} - -func (p *qlineedit) CursorBackward(mark bool, steps int) { - if p.Pointer() != nil { - C.QLineEdit_CursorBackward_Bool_Int(p.Pointer(), goBoolToCInt(mark), C.int(steps)) - } -} - -func (p *qlineedit) CursorForward(mark bool, steps int) { - if p.Pointer() != nil { - C.QLineEdit_CursorForward_Bool_Int(p.Pointer(), goBoolToCInt(mark), C.int(steps)) - } -} - -func (p *qlineedit) CursorMoveStyle() CursorMoveStyle { - if p.Pointer() == nil { - return 0 - } - return CursorMoveStyle(C.QLineEdit_CursorMoveStyle(p.Pointer())) -} - -func (p *qlineedit) CursorPosition() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QLineEdit_CursorPosition(p.Pointer())) -} - -func (p *qlineedit) CursorWordBackward(mark bool) { - if p.Pointer() != nil { - C.QLineEdit_CursorWordBackward_Bool(p.Pointer(), goBoolToCInt(mark)) - } -} - -func (p *qlineedit) CursorWordForward(mark bool) { - if p.Pointer() != nil { - C.QLineEdit_CursorWordForward_Bool(p.Pointer(), goBoolToCInt(mark)) - } -} - -func (p *qlineedit) Del() { - if p.Pointer() != nil { - C.QLineEdit_Del(p.Pointer()) - } -} - -func (p *qlineedit) Deselect() { - if p.Pointer() != nil { - C.QLineEdit_Deselect(p.Pointer()) - } -} - -func (p *qlineedit) DisplayText() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QLineEdit_DisplayText(p.Pointer())) -} - -func (p *qlineedit) DragEnabled() bool { - if p.Pointer() == nil { - return false - } - return C.QLineEdit_DragEnabled(p.Pointer()) != 0 -} - -func (p *qlineedit) EchoMode() EchoMode { - if p.Pointer() == nil { - return 0 - } - return EchoMode(C.QLineEdit_EchoMode(p.Pointer())) -} - -func (p *qlineedit) End(mark bool) { - if p.Pointer() != nil { - C.QLineEdit_End_Bool(p.Pointer(), goBoolToCInt(mark)) - } -} - -func (p *qlineedit) HasAcceptableInput() bool { - if p.Pointer() == nil { - return false - } - return C.QLineEdit_HasAcceptableInput(p.Pointer()) != 0 -} - -func (p *qlineedit) HasFrame() bool { - if p.Pointer() == nil { - return false - } - return C.QLineEdit_HasFrame(p.Pointer()) != 0 -} - -func (p *qlineedit) HasSelectedText() bool { - if p.Pointer() == nil { - return false - } - return C.QLineEdit_HasSelectedText(p.Pointer()) != 0 -} - -func (p *qlineedit) Home(mark bool) { - if p.Pointer() != nil { - C.QLineEdit_Home_Bool(p.Pointer(), goBoolToCInt(mark)) - } -} - -func (p *qlineedit) InputMask() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QLineEdit_InputMask(p.Pointer())) -} - -func (p *qlineedit) Insert(newText string) { - if p.Pointer() != nil { - C.QLineEdit_Insert_String(p.Pointer(), C.CString(newText)) - } -} - -func (p *qlineedit) IsClearButtonEnabled() bool { - if p.Pointer() == nil { - return false - } - return C.QLineEdit_IsClearButtonEnabled(p.Pointer()) != 0 -} - -func (p *qlineedit) IsModified() bool { - if p.Pointer() == nil { - return false - } - return C.QLineEdit_IsModified(p.Pointer()) != 0 -} - -func (p *qlineedit) IsReadOnly() bool { - if p.Pointer() == nil { - return false - } - return C.QLineEdit_IsReadOnly(p.Pointer()) != 0 -} - -func (p *qlineedit) IsRedoAvailable() bool { - if p.Pointer() == nil { - return false - } - return C.QLineEdit_IsRedoAvailable(p.Pointer()) != 0 -} - -func (p *qlineedit) IsUndoAvailable() bool { - if p.Pointer() == nil { - return false - } - return C.QLineEdit_IsUndoAvailable(p.Pointer()) != 0 -} - -func (p *qlineedit) MaxLength() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QLineEdit_MaxLength(p.Pointer())) -} - -func (p *qlineedit) PlaceholderText() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QLineEdit_PlaceholderText(p.Pointer())) -} - -func (p *qlineedit) SelectedText() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QLineEdit_SelectedText(p.Pointer())) -} - -func (p *qlineedit) SelectionStart() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QLineEdit_SelectionStart(p.Pointer())) -} - -func (p *qlineedit) SetAlignment(flag AlignmentFlag) { - if p.Pointer() != nil { - C.QLineEdit_SetAlignment_AlignmentFlag(p.Pointer(), C.int(flag)) - } -} - -func (p *qlineedit) SetClearButtonEnabled(enable bool) { - if p.Pointer() != nil { - C.QLineEdit_SetClearButtonEnabled_Bool(p.Pointer(), goBoolToCInt(enable)) - } -} - -func (p *qlineedit) SetCursorMoveStyle(style CursorMoveStyle) { - if p.Pointer() != nil { - C.QLineEdit_SetCursorMoveStyle_CursorMoveStyle(p.Pointer(), C.int(style)) - } -} - -func (p *qlineedit) SetCursorPosition(cursorPosition int) { - if p.Pointer() != nil { - C.QLineEdit_SetCursorPosition_Int(p.Pointer(), C.int(cursorPosition)) - } -} - -func (p *qlineedit) SetDragEnabled(dragEnabled bool) { - if p.Pointer() != nil { - C.QLineEdit_SetDragEnabled_Bool(p.Pointer(), goBoolToCInt(dragEnabled)) - } -} - -func (p *qlineedit) SetEchoMode(Ec EchoMode) { - if p.Pointer() != nil { - C.QLineEdit_SetEchoMode_EchoMode(p.Pointer(), C.int(Ec)) - } -} - -func (p *qlineedit) SetFrame(frame bool) { - if p.Pointer() != nil { - C.QLineEdit_SetFrame_Bool(p.Pointer(), goBoolToCInt(frame)) - } -} - -func (p *qlineedit) SetInputMask(inputMask string) { - if p.Pointer() != nil { - C.QLineEdit_SetInputMask_String(p.Pointer(), C.CString(inputMask)) - } -} - -func (p *qlineedit) SetMaxLength(maxLength int) { - if p.Pointer() != nil { - C.QLineEdit_SetMaxLength_Int(p.Pointer(), C.int(maxLength)) - } -} - -func (p *qlineedit) SetModified(modified bool) { - if p.Pointer() != nil { - C.QLineEdit_SetModified_Bool(p.Pointer(), goBoolToCInt(modified)) - } -} - -func (p *qlineedit) SetPlaceholderText(placeholderText string) { - if p.Pointer() != nil { - C.QLineEdit_SetPlaceholderText_String(p.Pointer(), C.CString(placeholderText)) - } -} - -func (p *qlineedit) SetReadOnly(readOnly bool) { - if p.Pointer() != nil { - C.QLineEdit_SetReadOnly_Bool(p.Pointer(), goBoolToCInt(readOnly)) - } -} - -func (p *qlineedit) SetSelection(start int, length int) { - if p.Pointer() != nil { - C.QLineEdit_SetSelection_Int_Int(p.Pointer(), C.int(start), C.int(length)) - } -} - -func (p *qlineedit) SetTextMargins(left int, top int, right int, bottom int) { - if p.Pointer() != nil { - C.QLineEdit_SetTextMargins_Int_Int_Int_Int(p.Pointer(), C.int(left), C.int(top), C.int(right), C.int(bottom)) - } -} - -func (p *qlineedit) SetValidator(v QValidator) { - if p.Pointer() != nil { - var vPtr C.QtObjectPtr - if v != nil { - vPtr = v.Pointer() - } - C.QLineEdit_SetValidator_QValidator(p.Pointer(), vPtr) - } -} - -func (p *qlineedit) Text() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QLineEdit_Text(p.Pointer())) -} - -func (p *qlineedit) ConnectSlotClear() { - C.QLineEdit_ConnectSlotClear(p.Pointer()) -} - -func (p *qlineedit) DisconnectSlotClear() { - C.QLineEdit_DisconnectSlotClear(p.Pointer()) -} - -func (p *qlineedit) SlotClear() { - if p.Pointer() != nil { - C.QLineEdit_Clear(p.Pointer()) - } -} - -func (p *qlineedit) ConnectSlotCopy() { - C.QLineEdit_ConnectSlotCopy(p.Pointer()) -} - -func (p *qlineedit) DisconnectSlotCopy() { - C.QLineEdit_DisconnectSlotCopy(p.Pointer()) -} - -func (p *qlineedit) SlotCopy() { - if p.Pointer() != nil { - C.QLineEdit_Copy(p.Pointer()) - } -} - -func (p *qlineedit) ConnectSlotCut() { - C.QLineEdit_ConnectSlotCut(p.Pointer()) -} - -func (p *qlineedit) DisconnectSlotCut() { - C.QLineEdit_DisconnectSlotCut(p.Pointer()) -} - -func (p *qlineedit) SlotCut() { - if p.Pointer() != nil { - C.QLineEdit_Cut(p.Pointer()) - } -} - -func (p *qlineedit) ConnectSlotPaste() { - C.QLineEdit_ConnectSlotPaste(p.Pointer()) -} - -func (p *qlineedit) DisconnectSlotPaste() { - C.QLineEdit_DisconnectSlotPaste(p.Pointer()) -} - -func (p *qlineedit) SlotPaste() { - if p.Pointer() != nil { - C.QLineEdit_Paste(p.Pointer()) - } -} - -func (p *qlineedit) ConnectSlotRedo() { - C.QLineEdit_ConnectSlotRedo(p.Pointer()) -} - -func (p *qlineedit) DisconnectSlotRedo() { - C.QLineEdit_DisconnectSlotRedo(p.Pointer()) -} - -func (p *qlineedit) SlotRedo() { - if p.Pointer() != nil { - C.QLineEdit_Redo(p.Pointer()) - } -} - -func (p *qlineedit) ConnectSlotSelectAll() { - C.QLineEdit_ConnectSlotSelectAll(p.Pointer()) -} - -func (p *qlineedit) DisconnectSlotSelectAll() { - C.QLineEdit_DisconnectSlotSelectAll(p.Pointer()) -} - -func (p *qlineedit) SlotSelectAll() { - if p.Pointer() != nil { - C.QLineEdit_SelectAll(p.Pointer()) - } -} - -func (p *qlineedit) ConnectSlotSetText() { - C.QLineEdit_ConnectSlotSetText(p.Pointer()) -} - -func (p *qlineedit) DisconnectSlotSetText() { - C.QLineEdit_DisconnectSlotSetText(p.Pointer()) -} - -func (p *qlineedit) SlotSetText(text string) { - if p.Pointer() != nil { - C.QLineEdit_SetText_String(p.Pointer(), C.CString(text)) - } -} - -func (p *qlineedit) ConnectSlotUndo() { - C.QLineEdit_ConnectSlotUndo(p.Pointer()) -} - -func (p *qlineedit) DisconnectSlotUndo() { - C.QLineEdit_DisconnectSlotUndo(p.Pointer()) -} - -func (p *qlineedit) SlotUndo() { - if p.Pointer() != nil { - C.QLineEdit_Undo(p.Pointer()) - } -} - -func (p *qlineedit) ConnectSignalCursorPositionChanged(f func()) { - C.QLineEdit_ConnectSignalCursorPositionChanged(p.Pointer()) - connectSignal(p.ObjectName(), "cursorPositionChanged", f) -} - -func (p *qlineedit) DisconnectSignalCursorPositionChanged() { - C.QLineEdit_DisconnectSignalCursorPositionChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "cursorPositionChanged") -} - -func (p *qlineedit) SignalCursorPositionChanged() func() { - return getSignal(p.ObjectName(), "cursorPositionChanged") -} - -func (p *qlineedit) ConnectSignalEditingFinished(f func()) { - C.QLineEdit_ConnectSignalEditingFinished(p.Pointer()) - connectSignal(p.ObjectName(), "editingFinished", f) -} - -func (p *qlineedit) DisconnectSignalEditingFinished() { - C.QLineEdit_DisconnectSignalEditingFinished(p.Pointer()) - disconnectSignal(p.ObjectName(), "editingFinished") -} - -func (p *qlineedit) SignalEditingFinished() func() { - return getSignal(p.ObjectName(), "editingFinished") -} - -func (p *qlineedit) ConnectSignalReturnPressed(f func()) { - C.QLineEdit_ConnectSignalReturnPressed(p.Pointer()) - connectSignal(p.ObjectName(), "returnPressed", f) -} - -func (p *qlineedit) DisconnectSignalReturnPressed() { - C.QLineEdit_DisconnectSignalReturnPressed(p.Pointer()) - disconnectSignal(p.ObjectName(), "returnPressed") -} - -func (p *qlineedit) SignalReturnPressed() func() { - return getSignal(p.ObjectName(), "returnPressed") -} - -func (p *qlineedit) ConnectSignalSelectionChanged(f func()) { - C.QLineEdit_ConnectSignalSelectionChanged(p.Pointer()) - connectSignal(p.ObjectName(), "selectionChanged", f) -} - -func (p *qlineedit) DisconnectSignalSelectionChanged() { - C.QLineEdit_DisconnectSignalSelectionChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "selectionChanged") -} - -func (p *qlineedit) SignalSelectionChanged() func() { - return getSignal(p.ObjectName(), "selectionChanged") -} - -func (p *qlineedit) ConnectSignalTextChanged(f func()) { - C.QLineEdit_ConnectSignalTextChanged(p.Pointer()) - connectSignal(p.ObjectName(), "textChanged", f) -} - -func (p *qlineedit) DisconnectSignalTextChanged() { - C.QLineEdit_DisconnectSignalTextChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "textChanged") -} - -func (p *qlineedit) SignalTextChanged() func() { - return getSignal(p.ObjectName(), "textChanged") -} - -func (p *qlineedit) ConnectSignalTextEdited(f func()) { - C.QLineEdit_ConnectSignalTextEdited(p.Pointer()) - connectSignal(p.ObjectName(), "textEdited", f) -} - -func (p *qlineedit) DisconnectSignalTextEdited() { - C.QLineEdit_DisconnectSignalTextEdited(p.Pointer()) - disconnectSignal(p.ObjectName(), "textEdited") -} - -func (p *qlineedit) SignalTextEdited() func() { - return getSignal(p.ObjectName(), "textEdited") -} - -//export callbackQLineEdit -func callbackQLineEdit(ptr C.QtObjectPtr, msg *C.char) { - var qlineedit = new(qlineedit) - qlineedit.SetPointer(ptr) - getSignal(qlineedit.ObjectName(), C.GoString(msg))() -} diff --git a/qlineedit.h b/qlineedit.h deleted file mode 100644 index 0c798727..00000000 --- a/qlineedit.h +++ /dev/null @@ -1,105 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Types -int QLineEdit_LeadingPosition(); -int QLineEdit_TrailingPosition(); -int QLineEdit_Normal(); -int QLineEdit_NoEcho(); -int QLineEdit_Password(); -int QLineEdit_PasswordEchoOnEdit(); -//Public Functions -QtObjectPtr QLineEdit_New_QWidget(QtObjectPtr parent); -QtObjectPtr QLineEdit_New_String_QWidget(char* contents, QtObjectPtr parent); -void QLineEdit_Destroy(QtObjectPtr ptr); -int QLineEdit_Alignment(QtObjectPtr ptr); -void QLineEdit_Backspace(QtObjectPtr ptr); -QtObjectPtr QLineEdit_CreateStandardContextMenu(QtObjectPtr ptr); -void QLineEdit_CursorBackward_Bool_Int(QtObjectPtr ptr, int mark, int steps); -void QLineEdit_CursorForward_Bool_Int(QtObjectPtr ptr, int mark, int steps); -int QLineEdit_CursorMoveStyle(QtObjectPtr ptr); -int QLineEdit_CursorPosition(QtObjectPtr ptr); -void QLineEdit_CursorWordBackward_Bool(QtObjectPtr ptr, int mark); -void QLineEdit_CursorWordForward_Bool(QtObjectPtr ptr, int mark); -void QLineEdit_Del(QtObjectPtr ptr); -void QLineEdit_Deselect(QtObjectPtr ptr); -char* QLineEdit_DisplayText(QtObjectPtr ptr); -int QLineEdit_DragEnabled(QtObjectPtr ptr); -int QLineEdit_EchoMode(QtObjectPtr ptr); -void QLineEdit_End_Bool(QtObjectPtr ptr, int mark); -int QLineEdit_HasAcceptableInput(QtObjectPtr ptr); -int QLineEdit_HasFrame(QtObjectPtr ptr); -int QLineEdit_HasSelectedText(QtObjectPtr ptr); -void QLineEdit_Home_Bool(QtObjectPtr ptr, int mark); -char* QLineEdit_InputMask(QtObjectPtr ptr); -void QLineEdit_Insert_String(QtObjectPtr ptr, char* newText); -int QLineEdit_IsClearButtonEnabled(QtObjectPtr ptr); -int QLineEdit_IsModified(QtObjectPtr ptr); -int QLineEdit_IsReadOnly(QtObjectPtr ptr); -int QLineEdit_IsRedoAvailable(QtObjectPtr ptr); -int QLineEdit_IsUndoAvailable(QtObjectPtr ptr); -int QLineEdit_MaxLength(QtObjectPtr ptr); -char* QLineEdit_PlaceholderText(QtObjectPtr ptr); -char* QLineEdit_SelectedText(QtObjectPtr ptr); -int QLineEdit_SelectionStart(QtObjectPtr ptr); -void QLineEdit_SetAlignment_AlignmentFlag(QtObjectPtr ptr, int flag); -void QLineEdit_SetClearButtonEnabled_Bool(QtObjectPtr ptr, int enable); -void QLineEdit_SetCursorMoveStyle_CursorMoveStyle(QtObjectPtr ptr, int style); -void QLineEdit_SetCursorPosition_Int(QtObjectPtr ptr, int cursorPosition); -void QLineEdit_SetDragEnabled_Bool(QtObjectPtr ptr, int dragEnabled); -void QLineEdit_SetEchoMode_EchoMode(QtObjectPtr ptr, int Ec); -void QLineEdit_SetFrame_Bool(QtObjectPtr ptr, int frame); -void QLineEdit_SetInputMask_String(QtObjectPtr ptr, char* inputMask); -void QLineEdit_SetMaxLength_Int(QtObjectPtr ptr, int maxLength); -void QLineEdit_SetModified_Bool(QtObjectPtr ptr, int modified); -void QLineEdit_SetPlaceholderText_String(QtObjectPtr ptr, char* placeholderText); -void QLineEdit_SetReadOnly_Bool(QtObjectPtr ptr, int readOnly); -void QLineEdit_SetSelection_Int_Int(QtObjectPtr ptr, int start, int length); -void QLineEdit_SetTextMargins_Int_Int_Int_Int(QtObjectPtr ptr, int left, int top, int right, int bottom); -void QLineEdit_SetValidator_QValidator(QtObjectPtr ptr, QtObjectPtr v); -char* QLineEdit_Text(QtObjectPtr ptr); -//Public Slots -void QLineEdit_ConnectSlotClear(QtObjectPtr ptr); -void QLineEdit_DisconnectSlotClear(QtObjectPtr ptr); -void QLineEdit_Clear(QtObjectPtr ptr); -void QLineEdit_ConnectSlotCopy(QtObjectPtr ptr); -void QLineEdit_DisconnectSlotCopy(QtObjectPtr ptr); -void QLineEdit_Copy(QtObjectPtr ptr); -void QLineEdit_ConnectSlotCut(QtObjectPtr ptr); -void QLineEdit_DisconnectSlotCut(QtObjectPtr ptr); -void QLineEdit_Cut(QtObjectPtr ptr); -void QLineEdit_ConnectSlotPaste(QtObjectPtr ptr); -void QLineEdit_DisconnectSlotPaste(QtObjectPtr ptr); -void QLineEdit_Paste(QtObjectPtr ptr); -void QLineEdit_ConnectSlotRedo(QtObjectPtr ptr); -void QLineEdit_DisconnectSlotRedo(QtObjectPtr ptr); -void QLineEdit_Redo(QtObjectPtr ptr); -void QLineEdit_ConnectSlotSelectAll(QtObjectPtr ptr); -void QLineEdit_DisconnectSlotSelectAll(QtObjectPtr ptr); -void QLineEdit_SelectAll(QtObjectPtr ptr); -void QLineEdit_ConnectSlotSetText(QtObjectPtr ptr); -void QLineEdit_DisconnectSlotSetText(QtObjectPtr ptr); -void QLineEdit_SetText_String(QtObjectPtr ptr, char* text); -void QLineEdit_ConnectSlotUndo(QtObjectPtr ptr); -void QLineEdit_DisconnectSlotUndo(QtObjectPtr ptr); -void QLineEdit_Undo(QtObjectPtr ptr); -//Signals -void QLineEdit_ConnectSignalCursorPositionChanged(QtObjectPtr ptr); -void QLineEdit_DisconnectSignalCursorPositionChanged(QtObjectPtr ptr); -void QLineEdit_ConnectSignalEditingFinished(QtObjectPtr ptr); -void QLineEdit_DisconnectSignalEditingFinished(QtObjectPtr ptr); -void QLineEdit_ConnectSignalReturnPressed(QtObjectPtr ptr); -void QLineEdit_DisconnectSignalReturnPressed(QtObjectPtr ptr); -void QLineEdit_ConnectSignalSelectionChanged(QtObjectPtr ptr); -void QLineEdit_DisconnectSignalSelectionChanged(QtObjectPtr ptr); -void QLineEdit_ConnectSignalTextChanged(QtObjectPtr ptr); -void QLineEdit_DisconnectSignalTextChanged(QtObjectPtr ptr); -void QLineEdit_ConnectSignalTextEdited(QtObjectPtr ptr); -void QLineEdit_DisconnectSignalTextEdited(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qlineedit.moc b/qlineedit.moc deleted file mode 100644 index 8eebb22a..00000000 --- a/qlineedit.moc +++ /dev/null @@ -1,240 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qlineedit.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qlineedit.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQLineEdit_t { - QByteArrayData data[11]; - char stringdata[107]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQLineEdit_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQLineEdit_t qt_meta_stringdata_MyQLineEdit = { - { -QT_MOC_LITERAL(0, 0, 11), // "MyQLineEdit" -QT_MOC_LITERAL(1, 12, 10), // "Slot_Clear" -QT_MOC_LITERAL(2, 23, 0), // "" -QT_MOC_LITERAL(3, 24, 9), // "Slot_Copy" -QT_MOC_LITERAL(4, 34, 8), // "Slot_Cut" -QT_MOC_LITERAL(5, 43, 10), // "Slot_Paste" -QT_MOC_LITERAL(6, 54, 9), // "Slot_Redo" -QT_MOC_LITERAL(7, 64, 14), // "Slot_SelectAll" -QT_MOC_LITERAL(8, 79, 12), // "Slot_SetText" -QT_MOC_LITERAL(9, 92, 4), // "text" -QT_MOC_LITERAL(10, 97, 9) // "Slot_Undo" - - }, - "MyQLineEdit\0Slot_Clear\0\0Slot_Copy\0" - "Slot_Cut\0Slot_Paste\0Slot_Redo\0" - "Slot_SelectAll\0Slot_SetText\0text\0" - "Slot_Undo" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQLineEdit[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 8, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 8, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 0, 54, 2, 0x06 /* Public */, - 3, 0, 55, 2, 0x06 /* Public */, - 4, 0, 56, 2, 0x06 /* Public */, - 5, 0, 57, 2, 0x06 /* Public */, - 6, 0, 58, 2, 0x06 /* Public */, - 7, 0, 59, 2, 0x06 /* Public */, - 8, 1, 60, 2, 0x06 /* Public */, - 10, 0, 63, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, QMetaType::QString, 9, - QMetaType::Void, - - 0 // eod -}; - -void MyQLineEdit::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQLineEdit *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_Clear(); break; - case 1: _t->Slot_Copy(); break; - case 2: _t->Slot_Cut(); break; - case 3: _t->Slot_Paste(); break; - case 4: _t->Slot_Redo(); break; - case 5: _t->Slot_SelectAll(); break; - case 6: _t->Slot_SetText((*reinterpret_cast< QString(*)>(_a[1]))); break; - case 7: _t->Slot_Undo(); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQLineEdit::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQLineEdit::Slot_Clear)) { - *result = 0; - } - } - { - typedef void (MyQLineEdit::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQLineEdit::Slot_Copy)) { - *result = 1; - } - } - { - typedef void (MyQLineEdit::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQLineEdit::Slot_Cut)) { - *result = 2; - } - } - { - typedef void (MyQLineEdit::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQLineEdit::Slot_Paste)) { - *result = 3; - } - } - { - typedef void (MyQLineEdit::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQLineEdit::Slot_Redo)) { - *result = 4; - } - } - { - typedef void (MyQLineEdit::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQLineEdit::Slot_SelectAll)) { - *result = 5; - } - } - { - typedef void (MyQLineEdit::*_t)(QString ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQLineEdit::Slot_SetText)) { - *result = 6; - } - } - { - typedef void (MyQLineEdit::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQLineEdit::Slot_Undo)) { - *result = 7; - } - } - } -} - -const QMetaObject MyQLineEdit::staticMetaObject = { - { &QLineEdit::staticMetaObject, qt_meta_stringdata_MyQLineEdit.data, - qt_meta_data_MyQLineEdit, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQLineEdit::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQLineEdit::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQLineEdit.stringdata)) - return static_cast(const_cast< MyQLineEdit*>(this)); - return QLineEdit::qt_metacast(_clname); -} - -int MyQLineEdit::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QLineEdit::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 8) - qt_static_metacall(this, _c, _id, _a); - _id -= 8; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 8) - *reinterpret_cast(_a[0]) = -1; - _id -= 8; - } - return _id; -} - -// SIGNAL 0 -void MyQLineEdit::Slot_Clear() -{ - QMetaObject::activate(this, &staticMetaObject, 0, 0); -} - -// SIGNAL 1 -void MyQLineEdit::Slot_Copy() -{ - QMetaObject::activate(this, &staticMetaObject, 1, 0); -} - -// SIGNAL 2 -void MyQLineEdit::Slot_Cut() -{ - QMetaObject::activate(this, &staticMetaObject, 2, 0); -} - -// SIGNAL 3 -void MyQLineEdit::Slot_Paste() -{ - QMetaObject::activate(this, &staticMetaObject, 3, 0); -} - -// SIGNAL 4 -void MyQLineEdit::Slot_Redo() -{ - QMetaObject::activate(this, &staticMetaObject, 4, 0); -} - -// SIGNAL 5 -void MyQLineEdit::Slot_SelectAll() -{ - QMetaObject::activate(this, &staticMetaObject, 5, 0); -} - -// SIGNAL 6 -void MyQLineEdit::Slot_SetText(QString _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 6, _a); -} - -// SIGNAL 7 -void MyQLineEdit::Slot_Undo() -{ - QMetaObject::activate(this, &staticMetaObject, 7, 0); -} -QT_END_MOC_NAMESPACE diff --git a/qlistview.cpp b/qlistview.cpp deleted file mode 100644 index c2c7a0c9..00000000 --- a/qlistview.cpp +++ /dev/null @@ -1,102 +0,0 @@ -#include "qlistview.h" -#include -#include "cgoexport.h" - - - -//Public Functions -QtObjectPtr QListView_New_QWidget(QtObjectPtr parent) -{ - return new QListView(((QWidget*)(parent))); -} - -void QListView_Destroy(QtObjectPtr ptr) -{ - ((QListView*)(ptr))->~QListView(); -} - -int QListView_BatchSize(QtObjectPtr ptr) -{ - return ((QListView*)(ptr))->batchSize(); -} - -void QListView_ClearPropertyFlags(QtObjectPtr ptr) -{ - ((QListView*)(ptr))->clearPropertyFlags(); -} - -int QListView_IsRowHidden_Int(QtObjectPtr ptr, int row) -{ - return ((QListView*)(ptr))->isRowHidden(row); -} - -int QListView_IsSelectionRectVisible(QtObjectPtr ptr) -{ - return ((QListView*)(ptr))->isSelectionRectVisible(); -} - -int QListView_IsWrapping(QtObjectPtr ptr) -{ - return ((QListView*)(ptr))->isWrapping(); -} - -int QListView_ModelColumn(QtObjectPtr ptr) -{ - return ((QListView*)(ptr))->modelColumn(); -} - -void QListView_SetBatchSize_Int(QtObjectPtr ptr, int batchSize) -{ - ((QListView*)(ptr))->setBatchSize(batchSize); -} - -void QListView_SetModelColumn_Int(QtObjectPtr ptr, int column) -{ - ((QListView*)(ptr))->setModelColumn(column); -} - -void QListView_SetRowHidden_Int_Bool(QtObjectPtr ptr, int row, int hide) -{ - ((QListView*)(ptr))->setRowHidden(row, hide != 0); -} - -void QListView_SetSelectionRectVisible_Bool(QtObjectPtr ptr, int show) -{ - ((QListView*)(ptr))->setSelectionRectVisible(show != 0); -} - -void QListView_SetSpacing_Int(QtObjectPtr ptr, int space) -{ - ((QListView*)(ptr))->setSpacing(space); -} - -void QListView_SetUniformItemSizes_Bool(QtObjectPtr ptr, int enable) -{ - ((QListView*)(ptr))->setUniformItemSizes(enable != 0); -} - -void QListView_SetWordWrap_Bool(QtObjectPtr ptr, int on) -{ - ((QListView*)(ptr))->setWordWrap(on != 0); -} - -void QListView_SetWrapping_Bool(QtObjectPtr ptr, int enable) -{ - ((QListView*)(ptr))->setWrapping(enable != 0); -} - -int QListView_Spacing(QtObjectPtr ptr) -{ - return ((QListView*)(ptr))->spacing(); -} - -int QListView_UniformItemSizes(QtObjectPtr ptr) -{ - return ((QListView*)(ptr))->uniformItemSizes(); -} - -int QListView_WordWrap(QtObjectPtr ptr) -{ - return ((QListView*)(ptr))->wordWrap(); -} - diff --git a/qlistview.go b/qlistview.go deleted file mode 100644 index 4c69ee34..00000000 --- a/qlistview.go +++ /dev/null @@ -1,166 +0,0 @@ -package qt - -//#include "qlistview.h" -import "C" - -type qlistview struct { - qabstractitemview -} - -type QListView interface { - QAbstractItemView - BatchSize() int - ClearPropertyFlags() - IsRowHidden(row int) bool - IsSelectionRectVisible() bool - IsWrapping() bool - ModelColumn() int - SetBatchSize(batchSize int) - SetModelColumn(column int) - SetRowHidden(row int, hide bool) - SetSelectionRectVisible(show bool) - SetSpacing(space int) - SetUniformItemSizes(enable bool) - SetWordWrap(on bool) - SetWrapping(enable bool) - Spacing() int - UniformItemSizes() bool - WordWrap() bool -} - -func (p *qlistview) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qlistview) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQListView(parent QWidget) QListView { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qlistview = new(qlistview) - qlistview.SetPointer(C.QListView_New_QWidget(parentPtr)) - qlistview.SetObjectName("QListView_" + randomIdentifier()) - return qlistview -} - -func (p *qlistview) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QListView_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qlistview) BatchSize() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QListView_BatchSize(p.Pointer())) -} - -func (p *qlistview) ClearPropertyFlags() { - if p.Pointer() != nil { - C.QListView_ClearPropertyFlags(p.Pointer()) - } -} - -func (p *qlistview) IsRowHidden(row int) bool { - if p.Pointer() == nil { - return false - } - return C.QListView_IsRowHidden_Int(p.Pointer(), C.int(row)) != 0 -} - -func (p *qlistview) IsSelectionRectVisible() bool { - if p.Pointer() == nil { - return false - } - return C.QListView_IsSelectionRectVisible(p.Pointer()) != 0 -} - -func (p *qlistview) IsWrapping() bool { - if p.Pointer() == nil { - return false - } - return C.QListView_IsWrapping(p.Pointer()) != 0 -} - -func (p *qlistview) ModelColumn() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QListView_ModelColumn(p.Pointer())) -} - -func (p *qlistview) SetBatchSize(batchSize int) { - if p.Pointer() != nil { - C.QListView_SetBatchSize_Int(p.Pointer(), C.int(batchSize)) - } -} - -func (p *qlistview) SetModelColumn(column int) { - if p.Pointer() != nil { - C.QListView_SetModelColumn_Int(p.Pointer(), C.int(column)) - } -} - -func (p *qlistview) SetRowHidden(row int, hide bool) { - if p.Pointer() != nil { - C.QListView_SetRowHidden_Int_Bool(p.Pointer(), C.int(row), goBoolToCInt(hide)) - } -} - -func (p *qlistview) SetSelectionRectVisible(show bool) { - if p.Pointer() != nil { - C.QListView_SetSelectionRectVisible_Bool(p.Pointer(), goBoolToCInt(show)) - } -} - -func (p *qlistview) SetSpacing(space int) { - if p.Pointer() != nil { - C.QListView_SetSpacing_Int(p.Pointer(), C.int(space)) - } -} - -func (p *qlistview) SetUniformItemSizes(enable bool) { - if p.Pointer() != nil { - C.QListView_SetUniformItemSizes_Bool(p.Pointer(), goBoolToCInt(enable)) - } -} - -func (p *qlistview) SetWordWrap(on bool) { - if p.Pointer() != nil { - C.QListView_SetWordWrap_Bool(p.Pointer(), goBoolToCInt(on)) - } -} - -func (p *qlistview) SetWrapping(enable bool) { - if p.Pointer() != nil { - C.QListView_SetWrapping_Bool(p.Pointer(), goBoolToCInt(enable)) - } -} - -func (p *qlistview) Spacing() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QListView_Spacing(p.Pointer())) -} - -func (p *qlistview) UniformItemSizes() bool { - if p.Pointer() == nil { - return false - } - return C.QListView_UniformItemSizes(p.Pointer()) != 0 -} - -func (p *qlistview) WordWrap() bool { - if p.Pointer() == nil { - return false - } - return C.QListView_WordWrap(p.Pointer()) != 0 -} diff --git a/qlistview.h b/qlistview.h deleted file mode 100644 index 965f5cb4..00000000 --- a/qlistview.h +++ /dev/null @@ -1,30 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QListView_New_QWidget(QtObjectPtr parent); -void QListView_Destroy(QtObjectPtr ptr); -int QListView_BatchSize(QtObjectPtr ptr); -void QListView_ClearPropertyFlags(QtObjectPtr ptr); -int QListView_IsRowHidden_Int(QtObjectPtr ptr, int row); -int QListView_IsSelectionRectVisible(QtObjectPtr ptr); -int QListView_IsWrapping(QtObjectPtr ptr); -int QListView_ModelColumn(QtObjectPtr ptr); -void QListView_SetBatchSize_Int(QtObjectPtr ptr, int batchSize); -void QListView_SetModelColumn_Int(QtObjectPtr ptr, int column); -void QListView_SetRowHidden_Int_Bool(QtObjectPtr ptr, int row, int hide); -void QListView_SetSelectionRectVisible_Bool(QtObjectPtr ptr, int show); -void QListView_SetSpacing_Int(QtObjectPtr ptr, int space); -void QListView_SetUniformItemSizes_Bool(QtObjectPtr ptr, int enable); -void QListView_SetWordWrap_Bool(QtObjectPtr ptr, int on); -void QListView_SetWrapping_Bool(QtObjectPtr ptr, int enable); -int QListView_Spacing(QtObjectPtr ptr); -int QListView_UniformItemSizes(QtObjectPtr ptr); -int QListView_WordWrap(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qlistview.moc b/qlistview.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/qlistwidget.cpp b/qlistwidget.cpp deleted file mode 100644 index 71f97875..00000000 --- a/qlistwidget.cpp +++ /dev/null @@ -1,264 +0,0 @@ -#include "qlistwidget.h" -#include -#include "cgoexport.h" - -//MyQListWidget -class MyQListWidget: public QListWidget { -Q_OBJECT -public: -void Signal_CurrentItemChanged() { callbackQListWidget(this, QString("currentItemChanged").toUtf8().data()); }; -void Signal_CurrentRowChanged() { callbackQListWidget(this, QString("currentRowChanged").toUtf8().data()); }; -void Signal_CurrentTextChanged() { callbackQListWidget(this, QString("currentTextChanged").toUtf8().data()); }; -void Signal_ItemActivated() { callbackQListWidget(this, QString("itemActivated").toUtf8().data()); }; -void Signal_ItemChanged() { callbackQListWidget(this, QString("itemChanged").toUtf8().data()); }; -void Signal_ItemClicked() { callbackQListWidget(this, QString("itemClicked").toUtf8().data()); }; -void Signal_ItemDoubleClicked() { callbackQListWidget(this, QString("itemDoubleClicked").toUtf8().data()); }; -void Signal_ItemEntered() { callbackQListWidget(this, QString("itemEntered").toUtf8().data()); }; -void Signal_ItemPressed() { callbackQListWidget(this, QString("itemPressed").toUtf8().data()); }; -void Signal_ItemSelectionChanged() { callbackQListWidget(this, QString("itemSelectionChanged").toUtf8().data()); }; - -signals: -void Slot_Clear(); - -}; -#include "qlistwidget.moc" - - -//Public Functions -QtObjectPtr QListWidget_New_QWidget(QtObjectPtr parent) -{ - return new QListWidget(((QWidget*)(parent))); -} - -void QListWidget_Destroy(QtObjectPtr ptr) -{ - ((QListWidget*)(ptr))->~QListWidget(); -} - -void QListWidget_AddItem_String(QtObjectPtr ptr, char* label) -{ - ((QListWidget*)(ptr))->addItem(QString(label)); -} - -void QListWidget_AddItem_QListWidgetItem(QtObjectPtr ptr, QtObjectPtr item) -{ - ((QListWidget*)(ptr))->addItem(((QListWidgetItem*)(item))); -} - -void QListWidget_ClosePersistentEditor_QListWidgetItem(QtObjectPtr ptr, QtObjectPtr item) -{ - ((QListWidget*)(ptr))->closePersistentEditor(((QListWidgetItem*)(item))); -} - -int QListWidget_Count(QtObjectPtr ptr) -{ - return ((QListWidget*)(ptr))->count(); -} - -QtObjectPtr QListWidget_CurrentItem(QtObjectPtr ptr) -{ - return ((QListWidget*)(ptr))->currentItem(); -} - -int QListWidget_CurrentRow(QtObjectPtr ptr) -{ - return ((QListWidget*)(ptr))->currentRow(); -} - -void QListWidget_EditItem_QListWidgetItem(QtObjectPtr ptr, QtObjectPtr item) -{ - ((QListWidget*)(ptr))->editItem(((QListWidgetItem*)(item))); -} - -void QListWidget_InsertItem_Int_QListWidgetItem(QtObjectPtr ptr, int row, QtObjectPtr item) -{ - ((QListWidget*)(ptr))->insertItem(row, ((QListWidgetItem*)(item))); -} - -void QListWidget_InsertItem_Int_String(QtObjectPtr ptr, int row, char* label) -{ - ((QListWidget*)(ptr))->insertItem(row, QString(label)); -} - -int QListWidget_IsSortingEnabled(QtObjectPtr ptr) -{ - return ((QListWidget*)(ptr))->isSortingEnabled(); -} - -QtObjectPtr QListWidget_Item_Int(QtObjectPtr ptr, int row) -{ - return ((QListWidget*)(ptr))->item(row); -} - -QtObjectPtr QListWidget_ItemAt_Int_Int(QtObjectPtr ptr, int x, int y) -{ - return ((QListWidget*)(ptr))->itemAt(x, y); -} - -QtObjectPtr QListWidget_ItemWidget_QListWidgetItem(QtObjectPtr ptr, QtObjectPtr item) -{ - return ((QListWidget*)(ptr))->itemWidget(((QListWidgetItem*)(item))); -} - -void QListWidget_OpenPersistentEditor_QListWidgetItem(QtObjectPtr ptr, QtObjectPtr item) -{ - ((QListWidget*)(ptr))->openPersistentEditor(((QListWidgetItem*)(item))); -} - -void QListWidget_RemoveItemWidget_QListWidgetItem(QtObjectPtr ptr, QtObjectPtr item) -{ - ((QListWidget*)(ptr))->removeItemWidget(((QListWidgetItem*)(item))); -} - -int QListWidget_Row_QListWidgetItem(QtObjectPtr ptr, QtObjectPtr item) -{ - return ((QListWidget*)(ptr))->row(((QListWidgetItem*)(item))); -} - -void QListWidget_SetCurrentItem_QListWidgetItem(QtObjectPtr ptr, QtObjectPtr item) -{ - ((QListWidget*)(ptr))->setCurrentItem(((QListWidgetItem*)(item))); -} - -void QListWidget_SetCurrentRow_Int(QtObjectPtr ptr, int row) -{ - ((QListWidget*)(ptr))->setCurrentRow(row); -} - -void QListWidget_SetItemWidget_QListWidgetItem_QWidget(QtObjectPtr ptr, QtObjectPtr item, QtObjectPtr widget) -{ - ((QListWidget*)(ptr))->setItemWidget(((QListWidgetItem*)(item)), ((QWidget*)(widget))); -} - -void QListWidget_SetSortingEnabled_Bool(QtObjectPtr ptr, int enable) -{ - ((QListWidget*)(ptr))->setSortingEnabled(enable != 0); -} - -void QListWidget_SortItems_SortOrder(QtObjectPtr ptr, int order) -{ - ((QListWidget*)(ptr))->sortItems(((Qt::SortOrder)(order))); -} - -QtObjectPtr QListWidget_TakeItem_Int(QtObjectPtr ptr, int row) -{ - return ((QListWidget*)(ptr))->takeItem(row); -} - -//Public Slots -void QListWidget_ConnectSlotClear(QtObjectPtr ptr) -{ - QObject::connect(((MyQListWidget*)(ptr)), &MyQListWidget::Slot_Clear, ((QListWidget*)(ptr)), &QListWidget::clear, Qt::QueuedConnection); -} - -void QListWidget_DisconnectSlotClear(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQListWidget*)(ptr)), &MyQListWidget::Slot_Clear, ((QListWidget*)(ptr)), &QListWidget::clear); -} - -void QListWidget_Clear(QtObjectPtr ptr) -{ - ((MyQListWidget*)(ptr))->Slot_Clear(); -} - -//Signals -void QListWidget_ConnectSignalCurrentItemChanged(QtObjectPtr ptr) -{ - QObject::connect(((QListWidget*)(ptr)), &QListWidget::currentItemChanged, ((MyQListWidget*)(ptr)), &MyQListWidget::Signal_CurrentItemChanged, Qt::QueuedConnection); -} - -void QListWidget_DisconnectSignalCurrentItemChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QListWidget*)(ptr)), &QListWidget::currentItemChanged, ((MyQListWidget*)(ptr)), &MyQListWidget::Signal_CurrentItemChanged); -} - -void QListWidget_ConnectSignalCurrentRowChanged(QtObjectPtr ptr) -{ - QObject::connect(((QListWidget*)(ptr)), &QListWidget::currentRowChanged, ((MyQListWidget*)(ptr)), &MyQListWidget::Signal_CurrentRowChanged, Qt::QueuedConnection); -} - -void QListWidget_DisconnectSignalCurrentRowChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QListWidget*)(ptr)), &QListWidget::currentRowChanged, ((MyQListWidget*)(ptr)), &MyQListWidget::Signal_CurrentRowChanged); -} - -void QListWidget_ConnectSignalCurrentTextChanged(QtObjectPtr ptr) -{ - QObject::connect(((QListWidget*)(ptr)), &QListWidget::currentTextChanged, ((MyQListWidget*)(ptr)), &MyQListWidget::Signal_CurrentTextChanged, Qt::QueuedConnection); -} - -void QListWidget_DisconnectSignalCurrentTextChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QListWidget*)(ptr)), &QListWidget::currentTextChanged, ((MyQListWidget*)(ptr)), &MyQListWidget::Signal_CurrentTextChanged); -} - -void QListWidget_ConnectSignalItemActivated(QtObjectPtr ptr) -{ - QObject::connect(((QListWidget*)(ptr)), &QListWidget::itemActivated, ((MyQListWidget*)(ptr)), &MyQListWidget::Signal_ItemActivated, Qt::QueuedConnection); -} - -void QListWidget_DisconnectSignalItemActivated(QtObjectPtr ptr) -{ - QObject::disconnect(((QListWidget*)(ptr)), &QListWidget::itemActivated, ((MyQListWidget*)(ptr)), &MyQListWidget::Signal_ItemActivated); -} - -void QListWidget_ConnectSignalItemChanged(QtObjectPtr ptr) -{ - QObject::connect(((QListWidget*)(ptr)), &QListWidget::itemChanged, ((MyQListWidget*)(ptr)), &MyQListWidget::Signal_ItemChanged, Qt::QueuedConnection); -} - -void QListWidget_DisconnectSignalItemChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QListWidget*)(ptr)), &QListWidget::itemChanged, ((MyQListWidget*)(ptr)), &MyQListWidget::Signal_ItemChanged); -} - -void QListWidget_ConnectSignalItemClicked(QtObjectPtr ptr) -{ - QObject::connect(((QListWidget*)(ptr)), &QListWidget::itemClicked, ((MyQListWidget*)(ptr)), &MyQListWidget::Signal_ItemClicked, Qt::QueuedConnection); -} - -void QListWidget_DisconnectSignalItemClicked(QtObjectPtr ptr) -{ - QObject::disconnect(((QListWidget*)(ptr)), &QListWidget::itemClicked, ((MyQListWidget*)(ptr)), &MyQListWidget::Signal_ItemClicked); -} - -void QListWidget_ConnectSignalItemDoubleClicked(QtObjectPtr ptr) -{ - QObject::connect(((QListWidget*)(ptr)), &QListWidget::itemDoubleClicked, ((MyQListWidget*)(ptr)), &MyQListWidget::Signal_ItemDoubleClicked, Qt::QueuedConnection); -} - -void QListWidget_DisconnectSignalItemDoubleClicked(QtObjectPtr ptr) -{ - QObject::disconnect(((QListWidget*)(ptr)), &QListWidget::itemDoubleClicked, ((MyQListWidget*)(ptr)), &MyQListWidget::Signal_ItemDoubleClicked); -} - -void QListWidget_ConnectSignalItemEntered(QtObjectPtr ptr) -{ - QObject::connect(((QListWidget*)(ptr)), &QListWidget::itemEntered, ((MyQListWidget*)(ptr)), &MyQListWidget::Signal_ItemEntered, Qt::QueuedConnection); -} - -void QListWidget_DisconnectSignalItemEntered(QtObjectPtr ptr) -{ - QObject::disconnect(((QListWidget*)(ptr)), &QListWidget::itemEntered, ((MyQListWidget*)(ptr)), &MyQListWidget::Signal_ItemEntered); -} - -void QListWidget_ConnectSignalItemPressed(QtObjectPtr ptr) -{ - QObject::connect(((QListWidget*)(ptr)), &QListWidget::itemPressed, ((MyQListWidget*)(ptr)), &MyQListWidget::Signal_ItemPressed, Qt::QueuedConnection); -} - -void QListWidget_DisconnectSignalItemPressed(QtObjectPtr ptr) -{ - QObject::disconnect(((QListWidget*)(ptr)), &QListWidget::itemPressed, ((MyQListWidget*)(ptr)), &MyQListWidget::Signal_ItemPressed); -} - -void QListWidget_ConnectSignalItemSelectionChanged(QtObjectPtr ptr) -{ - QObject::connect(((QListWidget*)(ptr)), &QListWidget::itemSelectionChanged, ((MyQListWidget*)(ptr)), &MyQListWidget::Signal_ItemSelectionChanged, Qt::QueuedConnection); -} - -void QListWidget_DisconnectSignalItemSelectionChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QListWidget*)(ptr)), &QListWidget::itemSelectionChanged, ((MyQListWidget*)(ptr)), &MyQListWidget::Signal_ItemSelectionChanged); -} - diff --git a/qlistwidget.go b/qlistwidget.go deleted file mode 100644 index fb08ebdc..00000000 --- a/qlistwidget.go +++ /dev/null @@ -1,459 +0,0 @@ -package qt - -//#include "qlistwidget.h" -import "C" - -type qlistwidget struct { - qlistview -} - -type QListWidget interface { - QListView - AddItem1(label string) - AddItem2(item QListWidgetItem) - ClosePersistentEditor(item QListWidgetItem) - Count() int - CurrentItem() QListWidgetItem - CurrentRow() int - EditItem(item QListWidgetItem) - InsertItem1(row int, item QListWidgetItem) - InsertItem2(row int, label string) - IsSortingEnabled() bool - Item(row int) QListWidgetItem - ItemAt(x int, y int) QListWidgetItem - ItemWidget(item QListWidgetItem) QWidget - OpenPersistentEditor(item QListWidgetItem) - RemoveItemWidget(item QListWidgetItem) - Row(item QListWidgetItem) int - SetCurrentItem(item QListWidgetItem) - SetCurrentRow(row int) - SetItemWidget(item QListWidgetItem, widget QWidget) - SetSortingEnabled(enable bool) - SortItems(order SortOrder) - TakeItem(row int) QListWidgetItem - ConnectSlotClear() - DisconnectSlotClear() - SlotClear() - ConnectSignalCurrentItemChanged(f func()) - DisconnectSignalCurrentItemChanged() - SignalCurrentItemChanged() func() - ConnectSignalCurrentRowChanged(f func()) - DisconnectSignalCurrentRowChanged() - SignalCurrentRowChanged() func() - ConnectSignalCurrentTextChanged(f func()) - DisconnectSignalCurrentTextChanged() - SignalCurrentTextChanged() func() - ConnectSignalItemActivated(f func()) - DisconnectSignalItemActivated() - SignalItemActivated() func() - ConnectSignalItemChanged(f func()) - DisconnectSignalItemChanged() - SignalItemChanged() func() - ConnectSignalItemClicked(f func()) - DisconnectSignalItemClicked() - SignalItemClicked() func() - ConnectSignalItemDoubleClicked(f func()) - DisconnectSignalItemDoubleClicked() - SignalItemDoubleClicked() func() - ConnectSignalItemEntered(f func()) - DisconnectSignalItemEntered() - SignalItemEntered() func() - ConnectSignalItemPressed(f func()) - DisconnectSignalItemPressed() - SignalItemPressed() func() - ConnectSignalItemSelectionChanged(f func()) - DisconnectSignalItemSelectionChanged() - SignalItemSelectionChanged() func() -} - -func (p *qlistwidget) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qlistwidget) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQListWidget(parent QWidget) QListWidget { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qlistwidget = new(qlistwidget) - qlistwidget.SetPointer(C.QListWidget_New_QWidget(parentPtr)) - qlistwidget.SetObjectName("QListWidget_" + randomIdentifier()) - return qlistwidget -} - -func (p *qlistwidget) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QListWidget_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qlistwidget) AddItem1(label string) { - if p.Pointer() != nil { - C.QListWidget_AddItem_String(p.Pointer(), C.CString(label)) - } -} - -func (p *qlistwidget) AddItem2(item QListWidgetItem) { - if p.Pointer() != nil { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - C.QListWidget_AddItem_QListWidgetItem(p.Pointer(), itemPtr) - } -} - -func (p *qlistwidget) ClosePersistentEditor(item QListWidgetItem) { - if p.Pointer() != nil { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - C.QListWidget_ClosePersistentEditor_QListWidgetItem(p.Pointer(), itemPtr) - } -} - -func (p *qlistwidget) Count() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QListWidget_Count(p.Pointer())) -} - -func (p *qlistwidget) CurrentItem() QListWidgetItem { - if p.Pointer() == nil { - return nil - } else { - var qlistwidgetitem = new(qlistwidgetitem) - qlistwidgetitem.SetPointer(C.QListWidget_CurrentItem(p.Pointer())) - return qlistwidgetitem - } -} - -func (p *qlistwidget) CurrentRow() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QListWidget_CurrentRow(p.Pointer())) -} - -func (p *qlistwidget) EditItem(item QListWidgetItem) { - if p.Pointer() != nil { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - C.QListWidget_EditItem_QListWidgetItem(p.Pointer(), itemPtr) - } -} - -func (p *qlistwidget) InsertItem1(row int, item QListWidgetItem) { - if p.Pointer() != nil { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - C.QListWidget_InsertItem_Int_QListWidgetItem(p.Pointer(), C.int(row), itemPtr) - } -} - -func (p *qlistwidget) InsertItem2(row int, label string) { - if p.Pointer() != nil { - C.QListWidget_InsertItem_Int_String(p.Pointer(), C.int(row), C.CString(label)) - } -} - -func (p *qlistwidget) IsSortingEnabled() bool { - if p.Pointer() == nil { - return false - } - return C.QListWidget_IsSortingEnabled(p.Pointer()) != 0 -} - -func (p *qlistwidget) Item(row int) QListWidgetItem { - if p.Pointer() == nil { - return nil - } else { - var qlistwidgetitem = new(qlistwidgetitem) - qlistwidgetitem.SetPointer(C.QListWidget_Item_Int(p.Pointer(), C.int(row))) - return qlistwidgetitem - } -} - -func (p *qlistwidget) ItemAt(x int, y int) QListWidgetItem { - if p.Pointer() == nil { - return nil - } else { - var qlistwidgetitem = new(qlistwidgetitem) - qlistwidgetitem.SetPointer(C.QListWidget_ItemAt_Int_Int(p.Pointer(), C.int(x), C.int(y))) - return qlistwidgetitem - } -} - -func (p *qlistwidget) ItemWidget(item QListWidgetItem) QWidget { - if p.Pointer() == nil { - return nil - } else { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - var qwidget = new(qwidget) - qwidget.SetPointer(C.QListWidget_ItemWidget_QListWidgetItem(p.Pointer(), itemPtr)) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qlistwidget) OpenPersistentEditor(item QListWidgetItem) { - if p.Pointer() != nil { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - C.QListWidget_OpenPersistentEditor_QListWidgetItem(p.Pointer(), itemPtr) - } -} - -func (p *qlistwidget) RemoveItemWidget(item QListWidgetItem) { - if p.Pointer() != nil { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - C.QListWidget_RemoveItemWidget_QListWidgetItem(p.Pointer(), itemPtr) - } -} - -func (p *qlistwidget) Row(item QListWidgetItem) int { - if p.Pointer() == nil { - return 0 - } else { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - return int(C.QListWidget_Row_QListWidgetItem(p.Pointer(), itemPtr)) - } -} - -func (p *qlistwidget) SetCurrentItem(item QListWidgetItem) { - if p.Pointer() != nil { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - C.QListWidget_SetCurrentItem_QListWidgetItem(p.Pointer(), itemPtr) - } -} - -func (p *qlistwidget) SetCurrentRow(row int) { - if p.Pointer() != nil { - C.QListWidget_SetCurrentRow_Int(p.Pointer(), C.int(row)) - } -} - -func (p *qlistwidget) SetItemWidget(item QListWidgetItem, widget QWidget) { - if p.Pointer() != nil { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - C.QListWidget_SetItemWidget_QListWidgetItem_QWidget(p.Pointer(), itemPtr, widgetPtr) - } -} - -func (p *qlistwidget) SetSortingEnabled(enable bool) { - if p.Pointer() != nil { - C.QListWidget_SetSortingEnabled_Bool(p.Pointer(), goBoolToCInt(enable)) - } -} - -func (p *qlistwidget) SortItems(order SortOrder) { - if p.Pointer() != nil { - C.QListWidget_SortItems_SortOrder(p.Pointer(), C.int(order)) - } -} - -func (p *qlistwidget) TakeItem(row int) QListWidgetItem { - if p.Pointer() == nil { - return nil - } else { - var qlistwidgetitem = new(qlistwidgetitem) - qlistwidgetitem.SetPointer(C.QListWidget_TakeItem_Int(p.Pointer(), C.int(row))) - return qlistwidgetitem - } -} - -func (p *qlistwidget) ConnectSlotClear() { - C.QListWidget_ConnectSlotClear(p.Pointer()) -} - -func (p *qlistwidget) DisconnectSlotClear() { - C.QListWidget_DisconnectSlotClear(p.Pointer()) -} - -func (p *qlistwidget) SlotClear() { - if p.Pointer() != nil { - C.QListWidget_Clear(p.Pointer()) - } -} - -func (p *qlistwidget) ConnectSignalCurrentItemChanged(f func()) { - C.QListWidget_ConnectSignalCurrentItemChanged(p.Pointer()) - connectSignal(p.ObjectName(), "currentItemChanged", f) -} - -func (p *qlistwidget) DisconnectSignalCurrentItemChanged() { - C.QListWidget_DisconnectSignalCurrentItemChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "currentItemChanged") -} - -func (p *qlistwidget) SignalCurrentItemChanged() func() { - return getSignal(p.ObjectName(), "currentItemChanged") -} - -func (p *qlistwidget) ConnectSignalCurrentRowChanged(f func()) { - C.QListWidget_ConnectSignalCurrentRowChanged(p.Pointer()) - connectSignal(p.ObjectName(), "currentRowChanged", f) -} - -func (p *qlistwidget) DisconnectSignalCurrentRowChanged() { - C.QListWidget_DisconnectSignalCurrentRowChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "currentRowChanged") -} - -func (p *qlistwidget) SignalCurrentRowChanged() func() { - return getSignal(p.ObjectName(), "currentRowChanged") -} - -func (p *qlistwidget) ConnectSignalCurrentTextChanged(f func()) { - C.QListWidget_ConnectSignalCurrentTextChanged(p.Pointer()) - connectSignal(p.ObjectName(), "currentTextChanged", f) -} - -func (p *qlistwidget) DisconnectSignalCurrentTextChanged() { - C.QListWidget_DisconnectSignalCurrentTextChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "currentTextChanged") -} - -func (p *qlistwidget) SignalCurrentTextChanged() func() { - return getSignal(p.ObjectName(), "currentTextChanged") -} - -func (p *qlistwidget) ConnectSignalItemActivated(f func()) { - C.QListWidget_ConnectSignalItemActivated(p.Pointer()) - connectSignal(p.ObjectName(), "itemActivated", f) -} - -func (p *qlistwidget) DisconnectSignalItemActivated() { - C.QListWidget_DisconnectSignalItemActivated(p.Pointer()) - disconnectSignal(p.ObjectName(), "itemActivated") -} - -func (p *qlistwidget) SignalItemActivated() func() { - return getSignal(p.ObjectName(), "itemActivated") -} - -func (p *qlistwidget) ConnectSignalItemChanged(f func()) { - C.QListWidget_ConnectSignalItemChanged(p.Pointer()) - connectSignal(p.ObjectName(), "itemChanged", f) -} - -func (p *qlistwidget) DisconnectSignalItemChanged() { - C.QListWidget_DisconnectSignalItemChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "itemChanged") -} - -func (p *qlistwidget) SignalItemChanged() func() { - return getSignal(p.ObjectName(), "itemChanged") -} - -func (p *qlistwidget) ConnectSignalItemClicked(f func()) { - C.QListWidget_ConnectSignalItemClicked(p.Pointer()) - connectSignal(p.ObjectName(), "itemClicked", f) -} - -func (p *qlistwidget) DisconnectSignalItemClicked() { - C.QListWidget_DisconnectSignalItemClicked(p.Pointer()) - disconnectSignal(p.ObjectName(), "itemClicked") -} - -func (p *qlistwidget) SignalItemClicked() func() { - return getSignal(p.ObjectName(), "itemClicked") -} - -func (p *qlistwidget) ConnectSignalItemDoubleClicked(f func()) { - C.QListWidget_ConnectSignalItemDoubleClicked(p.Pointer()) - connectSignal(p.ObjectName(), "itemDoubleClicked", f) -} - -func (p *qlistwidget) DisconnectSignalItemDoubleClicked() { - C.QListWidget_DisconnectSignalItemDoubleClicked(p.Pointer()) - disconnectSignal(p.ObjectName(), "itemDoubleClicked") -} - -func (p *qlistwidget) SignalItemDoubleClicked() func() { - return getSignal(p.ObjectName(), "itemDoubleClicked") -} - -func (p *qlistwidget) ConnectSignalItemEntered(f func()) { - C.QListWidget_ConnectSignalItemEntered(p.Pointer()) - connectSignal(p.ObjectName(), "itemEntered", f) -} - -func (p *qlistwidget) DisconnectSignalItemEntered() { - C.QListWidget_DisconnectSignalItemEntered(p.Pointer()) - disconnectSignal(p.ObjectName(), "itemEntered") -} - -func (p *qlistwidget) SignalItemEntered() func() { - return getSignal(p.ObjectName(), "itemEntered") -} - -func (p *qlistwidget) ConnectSignalItemPressed(f func()) { - C.QListWidget_ConnectSignalItemPressed(p.Pointer()) - connectSignal(p.ObjectName(), "itemPressed", f) -} - -func (p *qlistwidget) DisconnectSignalItemPressed() { - C.QListWidget_DisconnectSignalItemPressed(p.Pointer()) - disconnectSignal(p.ObjectName(), "itemPressed") -} - -func (p *qlistwidget) SignalItemPressed() func() { - return getSignal(p.ObjectName(), "itemPressed") -} - -func (p *qlistwidget) ConnectSignalItemSelectionChanged(f func()) { - C.QListWidget_ConnectSignalItemSelectionChanged(p.Pointer()) - connectSignal(p.ObjectName(), "itemSelectionChanged", f) -} - -func (p *qlistwidget) DisconnectSignalItemSelectionChanged() { - C.QListWidget_DisconnectSignalItemSelectionChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "itemSelectionChanged") -} - -func (p *qlistwidget) SignalItemSelectionChanged() func() { - return getSignal(p.ObjectName(), "itemSelectionChanged") -} - -//export callbackQListWidget -func callbackQListWidget(ptr C.QtObjectPtr, msg *C.char) { - var qlistwidget = new(qlistwidget) - qlistwidget.SetPointer(ptr) - getSignal(qlistwidget.ObjectName(), C.GoString(msg))() -} diff --git a/qlistwidget.h b/qlistwidget.h deleted file mode 100644 index 7016b636..00000000 --- a/qlistwidget.h +++ /dev/null @@ -1,60 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QListWidget_New_QWidget(QtObjectPtr parent); -void QListWidget_Destroy(QtObjectPtr ptr); -void QListWidget_AddItem_String(QtObjectPtr ptr, char* label); -void QListWidget_AddItem_QListWidgetItem(QtObjectPtr ptr, QtObjectPtr item); -void QListWidget_ClosePersistentEditor_QListWidgetItem(QtObjectPtr ptr, QtObjectPtr item); -int QListWidget_Count(QtObjectPtr ptr); -QtObjectPtr QListWidget_CurrentItem(QtObjectPtr ptr); -int QListWidget_CurrentRow(QtObjectPtr ptr); -void QListWidget_EditItem_QListWidgetItem(QtObjectPtr ptr, QtObjectPtr item); -void QListWidget_InsertItem_Int_QListWidgetItem(QtObjectPtr ptr, int row, QtObjectPtr item); -void QListWidget_InsertItem_Int_String(QtObjectPtr ptr, int row, char* label); -int QListWidget_IsSortingEnabled(QtObjectPtr ptr); -QtObjectPtr QListWidget_Item_Int(QtObjectPtr ptr, int row); -QtObjectPtr QListWidget_ItemAt_Int_Int(QtObjectPtr ptr, int x, int y); -QtObjectPtr QListWidget_ItemWidget_QListWidgetItem(QtObjectPtr ptr, QtObjectPtr item); -void QListWidget_OpenPersistentEditor_QListWidgetItem(QtObjectPtr ptr, QtObjectPtr item); -void QListWidget_RemoveItemWidget_QListWidgetItem(QtObjectPtr ptr, QtObjectPtr item); -int QListWidget_Row_QListWidgetItem(QtObjectPtr ptr, QtObjectPtr item); -void QListWidget_SetCurrentItem_QListWidgetItem(QtObjectPtr ptr, QtObjectPtr item); -void QListWidget_SetCurrentRow_Int(QtObjectPtr ptr, int row); -void QListWidget_SetItemWidget_QListWidgetItem_QWidget(QtObjectPtr ptr, QtObjectPtr item, QtObjectPtr widget); -void QListWidget_SetSortingEnabled_Bool(QtObjectPtr ptr, int enable); -void QListWidget_SortItems_SortOrder(QtObjectPtr ptr, int order); -QtObjectPtr QListWidget_TakeItem_Int(QtObjectPtr ptr, int row); -//Public Slots -void QListWidget_ConnectSlotClear(QtObjectPtr ptr); -void QListWidget_DisconnectSlotClear(QtObjectPtr ptr); -void QListWidget_Clear(QtObjectPtr ptr); -//Signals -void QListWidget_ConnectSignalCurrentItemChanged(QtObjectPtr ptr); -void QListWidget_DisconnectSignalCurrentItemChanged(QtObjectPtr ptr); -void QListWidget_ConnectSignalCurrentRowChanged(QtObjectPtr ptr); -void QListWidget_DisconnectSignalCurrentRowChanged(QtObjectPtr ptr); -void QListWidget_ConnectSignalCurrentTextChanged(QtObjectPtr ptr); -void QListWidget_DisconnectSignalCurrentTextChanged(QtObjectPtr ptr); -void QListWidget_ConnectSignalItemActivated(QtObjectPtr ptr); -void QListWidget_DisconnectSignalItemActivated(QtObjectPtr ptr); -void QListWidget_ConnectSignalItemChanged(QtObjectPtr ptr); -void QListWidget_DisconnectSignalItemChanged(QtObjectPtr ptr); -void QListWidget_ConnectSignalItemClicked(QtObjectPtr ptr); -void QListWidget_DisconnectSignalItemClicked(QtObjectPtr ptr); -void QListWidget_ConnectSignalItemDoubleClicked(QtObjectPtr ptr); -void QListWidget_DisconnectSignalItemDoubleClicked(QtObjectPtr ptr); -void QListWidget_ConnectSignalItemEntered(QtObjectPtr ptr); -void QListWidget_DisconnectSignalItemEntered(QtObjectPtr ptr); -void QListWidget_ConnectSignalItemPressed(QtObjectPtr ptr); -void QListWidget_DisconnectSignalItemPressed(QtObjectPtr ptr); -void QListWidget_ConnectSignalItemSelectionChanged(QtObjectPtr ptr); -void QListWidget_DisconnectSignalItemSelectionChanged(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qlistwidget.moc b/qlistwidget.moc deleted file mode 100644 index 199e965e..00000000 --- a/qlistwidget.moc +++ /dev/null @@ -1,124 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qlistwidget.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qlistwidget.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQListWidget_t { - QByteArrayData data[3]; - char stringdata[26]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQListWidget_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQListWidget_t qt_meta_stringdata_MyQListWidget = { - { -QT_MOC_LITERAL(0, 0, 13), // "MyQListWidget" -QT_MOC_LITERAL(1, 14, 10), // "Slot_Clear" -QT_MOC_LITERAL(2, 25, 0) // "" - - }, - "MyQListWidget\0Slot_Clear\0" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQListWidget[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 1, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 0, 19, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, - - 0 // eod -}; - -void MyQListWidget::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQListWidget *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_Clear(); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQListWidget::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQListWidget::Slot_Clear)) { - *result = 0; - } - } - } - Q_UNUSED(_a); -} - -const QMetaObject MyQListWidget::staticMetaObject = { - { &QListWidget::staticMetaObject, qt_meta_stringdata_MyQListWidget.data, - qt_meta_data_MyQListWidget, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQListWidget::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQListWidget::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQListWidget.stringdata)) - return static_cast(const_cast< MyQListWidget*>(this)); - return QListWidget::qt_metacast(_clname); -} - -int MyQListWidget::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QListWidget::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 1) - qt_static_metacall(this, _c, _id, _a); - _id -= 1; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 1) - *reinterpret_cast(_a[0]) = -1; - _id -= 1; - } - return _id; -} - -// SIGNAL 0 -void MyQListWidget::Slot_Clear() -{ - QMetaObject::activate(this, &staticMetaObject, 0, 0); -} -QT_END_MOC_NAMESPACE diff --git a/qlistwidgetitem.cpp b/qlistwidgetitem.cpp deleted file mode 100644 index 186f6a20..00000000 --- a/qlistwidgetitem.cpp +++ /dev/null @@ -1,127 +0,0 @@ -#include "qlistwidgetitem.h" -#include -#include "cgoexport.h" - - - -//Public Functions -QtObjectPtr QListWidgetItem_New_QListWidget_Int(QtObjectPtr parent, int typ) -{ - return new QListWidgetItem(((QListWidget*)(parent)), typ); -} - -QtObjectPtr QListWidgetItem_New_String_QListWidget_Int(char* text, QtObjectPtr parent, int typ) -{ - return new QListWidgetItem(QString(text), ((QListWidget*)(parent)), typ); -} - -void QListWidgetItem_Destroy(QtObjectPtr ptr) -{ - ((QListWidgetItem*)(ptr))->~QListWidgetItem(); -} - -int QListWidgetItem_CheckState(QtObjectPtr ptr) -{ - return ((QListWidgetItem*)(ptr))->checkState(); -} - -QtObjectPtr QListWidgetItem_Clone(QtObjectPtr ptr) -{ - return ((QListWidgetItem*)(ptr))->clone(); -} - -int QListWidgetItem_Flags(QtObjectPtr ptr) -{ - return ((QListWidgetItem*)(ptr))->flags(); -} - -int QListWidgetItem_IsHidden(QtObjectPtr ptr) -{ - return ((QListWidgetItem*)(ptr))->isHidden(); -} - -int QListWidgetItem_IsSelected(QtObjectPtr ptr) -{ - return ((QListWidgetItem*)(ptr))->isSelected(); -} - -QtObjectPtr QListWidgetItem_ListWidget(QtObjectPtr ptr) -{ - return ((QListWidgetItem*)(ptr))->listWidget(); -} - -void QListWidgetItem_SetCheckState_CheckState(QtObjectPtr ptr, int state) -{ - ((QListWidgetItem*)(ptr))->setCheckState(((Qt::CheckState)(state))); -} - -void QListWidgetItem_SetFlags_ItemFlag(QtObjectPtr ptr, int flags) -{ - ((QListWidgetItem*)(ptr))->setFlags(((Qt::ItemFlag)(flags))); -} - -void QListWidgetItem_SetHidden_Bool(QtObjectPtr ptr, int hide) -{ - ((QListWidgetItem*)(ptr))->setHidden(hide != 0); -} - -void QListWidgetItem_SetSelected_Bool(QtObjectPtr ptr, int selected) -{ - ((QListWidgetItem*)(ptr))->setSelected(selected != 0); -} - -void QListWidgetItem_SetStatusTip_String(QtObjectPtr ptr, char* statusTip) -{ - ((QListWidgetItem*)(ptr))->setStatusTip(QString(statusTip)); -} - -void QListWidgetItem_SetText_String(QtObjectPtr ptr, char* text) -{ - ((QListWidgetItem*)(ptr))->setText(QString(text)); -} - -void QListWidgetItem_SetTextAlignment_Int(QtObjectPtr ptr, int alignment) -{ - ((QListWidgetItem*)(ptr))->setTextAlignment(alignment); -} - -void QListWidgetItem_SetToolTip_String(QtObjectPtr ptr, char* toolTip) -{ - ((QListWidgetItem*)(ptr))->setToolTip(QString(toolTip)); -} - -void QListWidgetItem_SetWhatsThis_String(QtObjectPtr ptr, char* whatsThis) -{ - ((QListWidgetItem*)(ptr))->setWhatsThis(QString(whatsThis)); -} - -char* QListWidgetItem_StatusTip(QtObjectPtr ptr) -{ - return ((QListWidgetItem*)(ptr))->statusTip().toUtf8().data(); -} - -char* QListWidgetItem_Text(QtObjectPtr ptr) -{ - return ((QListWidgetItem*)(ptr))->text().toUtf8().data(); -} - -int QListWidgetItem_TextAlignment(QtObjectPtr ptr) -{ - return ((QListWidgetItem*)(ptr))->textAlignment(); -} - -char* QListWidgetItem_ToolTip(QtObjectPtr ptr) -{ - return ((QListWidgetItem*)(ptr))->toolTip().toUtf8().data(); -} - -int QListWidgetItem_Type(QtObjectPtr ptr) -{ - return ((QListWidgetItem*)(ptr))->type(); -} - -char* QListWidgetItem_WhatsThis(QtObjectPtr ptr) -{ - return ((QListWidgetItem*)(ptr))->whatsThis().toUtf8().data(); -} - diff --git a/qlistwidgetitem.go b/qlistwidgetitem.go deleted file mode 100644 index 23134d23..00000000 --- a/qlistwidgetitem.go +++ /dev/null @@ -1,217 +0,0 @@ -package qt - -//#include "qlistwidgetitem.h" -import "C" - -type qlistwidgetitem struct { - ptr C.QtObjectPtr -} - -type QListWidgetItem interface { - Pointer() (ptr C.QtObjectPtr) - SetPointer(ptr C.QtObjectPtr) - Destroy() - CheckState() CheckState - Clone() QListWidgetItem - Flags() ItemFlag - IsHidden() bool - IsSelected() bool - ListWidget() QListWidget - SetCheckState(state CheckState) - SetFlags(flags ItemFlag) - SetHidden(hide bool) - SetSelected(selected bool) - SetStatusTip(statusTip string) - SetText(text string) - SetTextAlignment(alignment int) - SetToolTip(toolTip string) - SetWhatsThis(whatsThis string) - StatusTip() string - Text() string - TextAlignment() int - ToolTip() string - Type() int - WhatsThis() string -} - -func (p *qlistwidgetitem) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qlistwidgetitem) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQListWidgetItem1(parent QListWidget, typ int) QListWidgetItem { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qlistwidgetitem = new(qlistwidgetitem) - qlistwidgetitem.SetPointer(C.QListWidgetItem_New_QListWidget_Int(parentPtr, C.int(typ))) - return qlistwidgetitem -} - -func NewQListWidgetItem2(text string, parent QListWidget, typ int) QListWidgetItem { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qlistwidgetitem = new(qlistwidgetitem) - qlistwidgetitem.SetPointer(C.QListWidgetItem_New_String_QListWidget_Int(C.CString(text), parentPtr, C.int(typ))) - return qlistwidgetitem -} - -func (p *qlistwidgetitem) Destroy() { - if p.Pointer() != nil { - C.QListWidgetItem_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qlistwidgetitem) CheckState() CheckState { - if p.Pointer() == nil { - return 0 - } - return CheckState(C.QListWidgetItem_CheckState(p.Pointer())) -} - -func (p *qlistwidgetitem) Clone() QListWidgetItem { - if p.Pointer() == nil { - return nil - } else { - var qlistwidgetitem = new(qlistwidgetitem) - qlistwidgetitem.SetPointer(C.QListWidgetItem_Clone(p.Pointer())) - return qlistwidgetitem - } -} - -func (p *qlistwidgetitem) Flags() ItemFlag { - if p.Pointer() == nil { - return 0 - } - return ItemFlag(C.QListWidgetItem_Flags(p.Pointer())) -} - -func (p *qlistwidgetitem) IsHidden() bool { - if p.Pointer() == nil { - return false - } - return C.QListWidgetItem_IsHidden(p.Pointer()) != 0 -} - -func (p *qlistwidgetitem) IsSelected() bool { - if p.Pointer() == nil { - return false - } - return C.QListWidgetItem_IsSelected(p.Pointer()) != 0 -} - -func (p *qlistwidgetitem) ListWidget() QListWidget { - if p.Pointer() == nil { - return nil - } else { - var qlistwidget = new(qlistwidget) - qlistwidget.SetPointer(C.QListWidgetItem_ListWidget(p.Pointer())) - if qlistwidget.ObjectName() == "" { - qlistwidget.SetObjectName("QListWidget_" + randomIdentifier()) - } - return qlistwidget - } -} - -func (p *qlistwidgetitem) SetCheckState(state CheckState) { - if p.Pointer() != nil { - C.QListWidgetItem_SetCheckState_CheckState(p.Pointer(), C.int(state)) - } -} - -func (p *qlistwidgetitem) SetFlags(flags ItemFlag) { - if p.Pointer() != nil { - C.QListWidgetItem_SetFlags_ItemFlag(p.Pointer(), C.int(flags)) - } -} - -func (p *qlistwidgetitem) SetHidden(hide bool) { - if p.Pointer() != nil { - C.QListWidgetItem_SetHidden_Bool(p.Pointer(), goBoolToCInt(hide)) - } -} - -func (p *qlistwidgetitem) SetSelected(selected bool) { - if p.Pointer() != nil { - C.QListWidgetItem_SetSelected_Bool(p.Pointer(), goBoolToCInt(selected)) - } -} - -func (p *qlistwidgetitem) SetStatusTip(statusTip string) { - if p.Pointer() != nil { - C.QListWidgetItem_SetStatusTip_String(p.Pointer(), C.CString(statusTip)) - } -} - -func (p *qlistwidgetitem) SetText(text string) { - if p.Pointer() != nil { - C.QListWidgetItem_SetText_String(p.Pointer(), C.CString(text)) - } -} - -func (p *qlistwidgetitem) SetTextAlignment(alignment int) { - if p.Pointer() != nil { - C.QListWidgetItem_SetTextAlignment_Int(p.Pointer(), C.int(alignment)) - } -} - -func (p *qlistwidgetitem) SetToolTip(toolTip string) { - if p.Pointer() != nil { - C.QListWidgetItem_SetToolTip_String(p.Pointer(), C.CString(toolTip)) - } -} - -func (p *qlistwidgetitem) SetWhatsThis(whatsThis string) { - if p.Pointer() != nil { - C.QListWidgetItem_SetWhatsThis_String(p.Pointer(), C.CString(whatsThis)) - } -} - -func (p *qlistwidgetitem) StatusTip() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QListWidgetItem_StatusTip(p.Pointer())) -} - -func (p *qlistwidgetitem) Text() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QListWidgetItem_Text(p.Pointer())) -} - -func (p *qlistwidgetitem) TextAlignment() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QListWidgetItem_TextAlignment(p.Pointer())) -} - -func (p *qlistwidgetitem) ToolTip() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QListWidgetItem_ToolTip(p.Pointer())) -} - -func (p *qlistwidgetitem) Type() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QListWidgetItem_Type(p.Pointer())) -} - -func (p *qlistwidgetitem) WhatsThis() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QListWidgetItem_WhatsThis(p.Pointer())) -} diff --git a/qlistwidgetitem.h b/qlistwidgetitem.h deleted file mode 100644 index 71fb63eb..00000000 --- a/qlistwidgetitem.h +++ /dev/null @@ -1,35 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QListWidgetItem_New_QListWidget_Int(QtObjectPtr parent, int typ); -QtObjectPtr QListWidgetItem_New_String_QListWidget_Int(char* text, QtObjectPtr parent, int typ); -void QListWidgetItem_Destroy(QtObjectPtr ptr); -int QListWidgetItem_CheckState(QtObjectPtr ptr); -QtObjectPtr QListWidgetItem_Clone(QtObjectPtr ptr); -int QListWidgetItem_Flags(QtObjectPtr ptr); -int QListWidgetItem_IsHidden(QtObjectPtr ptr); -int QListWidgetItem_IsSelected(QtObjectPtr ptr); -QtObjectPtr QListWidgetItem_ListWidget(QtObjectPtr ptr); -void QListWidgetItem_SetCheckState_CheckState(QtObjectPtr ptr, int state); -void QListWidgetItem_SetFlags_ItemFlag(QtObjectPtr ptr, int flags); -void QListWidgetItem_SetHidden_Bool(QtObjectPtr ptr, int hide); -void QListWidgetItem_SetSelected_Bool(QtObjectPtr ptr, int selected); -void QListWidgetItem_SetStatusTip_String(QtObjectPtr ptr, char* statusTip); -void QListWidgetItem_SetText_String(QtObjectPtr ptr, char* text); -void QListWidgetItem_SetTextAlignment_Int(QtObjectPtr ptr, int alignment); -void QListWidgetItem_SetToolTip_String(QtObjectPtr ptr, char* toolTip); -void QListWidgetItem_SetWhatsThis_String(QtObjectPtr ptr, char* whatsThis); -char* QListWidgetItem_StatusTip(QtObjectPtr ptr); -char* QListWidgetItem_Text(QtObjectPtr ptr); -int QListWidgetItem_TextAlignment(QtObjectPtr ptr); -char* QListWidgetItem_ToolTip(QtObjectPtr ptr); -int QListWidgetItem_Type(QtObjectPtr ptr); -char* QListWidgetItem_WhatsThis(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qlistwidgetitem.moc b/qlistwidgetitem.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/qmainwindow.cpp b/qmainwindow.cpp deleted file mode 100644 index 54b6f1e2..00000000 --- a/qmainwindow.cpp +++ /dev/null @@ -1,221 +0,0 @@ -#include "qmainwindow.h" -#include -#include "cgoexport.h" - -//MyQMainWindow -class MyQMainWindow: public QMainWindow { -Q_OBJECT -public: -void Signal_ToolButtonStyleChanged() { callbackQMainWindow(this, QString("toolButtonStyleChanged").toUtf8().data()); }; - -signals: -void Slot_SetAnimated(bool enabled); -void Slot_SetDockNestingEnabled(bool enabled); - -}; -#include "qmainwindow.moc" - - -//Public Functions -QtObjectPtr QMainWindow_New_QWidget_WindowType(QtObjectPtr parent, int flags) -{ - return new QMainWindow(((QWidget*)(parent)), ((Qt::WindowType)(flags))); -} - -void QMainWindow_Destroy(QtObjectPtr ptr) -{ - ((QMainWindow*)(ptr))->~QMainWindow(); -} - -void QMainWindow_AddToolBar_ToolBarArea_QToolBar(QtObjectPtr ptr, int area, QtObjectPtr toolbar) -{ - ((QMainWindow*)(ptr))->addToolBar(((Qt::ToolBarArea)(area)), ((QToolBar*)(toolbar))); -} - -void QMainWindow_AddToolBar_QToolBar(QtObjectPtr ptr, QtObjectPtr toolbar) -{ - ((QMainWindow*)(ptr))->addToolBar(((QToolBar*)(toolbar))); -} - -QtObjectPtr QMainWindow_AddToolBar_String(QtObjectPtr ptr, char* title) -{ - return ((QMainWindow*)(ptr))->addToolBar(QString(title)); -} - -void QMainWindow_AddToolBarBreak_ToolBarArea(QtObjectPtr ptr, int area) -{ - ((QMainWindow*)(ptr))->addToolBarBreak(((Qt::ToolBarArea)(area))); -} - -QtObjectPtr QMainWindow_CentralWidget(QtObjectPtr ptr) -{ - return ((QMainWindow*)(ptr))->centralWidget(); -} - -int QMainWindow_Corner_Corner(QtObjectPtr ptr, int corner) -{ - return ((QMainWindow*)(ptr))->corner(((Qt::Corner)(corner))); -} - -QtObjectPtr QMainWindow_CreatePopupMenu(QtObjectPtr ptr) -{ - return ((QMainWindow*)(ptr))->createPopupMenu(); -} - -int QMainWindow_DocumentMode(QtObjectPtr ptr) -{ - return ((QMainWindow*)(ptr))->documentMode(); -} - -void QMainWindow_InsertToolBar_QToolBar_QToolBar(QtObjectPtr ptr, QtObjectPtr before, QtObjectPtr toolbar) -{ - ((QMainWindow*)(ptr))->insertToolBar(((QToolBar*)(before)), ((QToolBar*)(toolbar))); -} - -void QMainWindow_InsertToolBarBreak_QToolBar(QtObjectPtr ptr, QtObjectPtr before) -{ - ((QMainWindow*)(ptr))->insertToolBarBreak(((QToolBar*)(before))); -} - -int QMainWindow_IsAnimated(QtObjectPtr ptr) -{ - return ((QMainWindow*)(ptr))->isAnimated(); -} - -int QMainWindow_IsDockNestingEnabled(QtObjectPtr ptr) -{ - return ((QMainWindow*)(ptr))->isDockNestingEnabled(); -} - -QtObjectPtr QMainWindow_MenuBar(QtObjectPtr ptr) -{ - return ((QMainWindow*)(ptr))->menuBar(); -} - -QtObjectPtr QMainWindow_MenuWidget(QtObjectPtr ptr) -{ - return ((QMainWindow*)(ptr))->menuWidget(); -} - -void QMainWindow_RemoveToolBar_QToolBar(QtObjectPtr ptr, QtObjectPtr toolbar) -{ - ((QMainWindow*)(ptr))->removeToolBar(((QToolBar*)(toolbar))); -} - -void QMainWindow_RemoveToolBarBreak_QToolBar(QtObjectPtr ptr, QtObjectPtr before) -{ - ((QMainWindow*)(ptr))->removeToolBarBreak(((QToolBar*)(before))); -} - -void QMainWindow_SetCentralWidget_QWidget(QtObjectPtr ptr, QtObjectPtr widget) -{ - ((QMainWindow*)(ptr))->setCentralWidget(((QWidget*)(widget))); -} - -void QMainWindow_SetCorner_Corner_DockWidgetArea(QtObjectPtr ptr, int corner, int area) -{ - ((QMainWindow*)(ptr))->setCorner(((Qt::Corner)(corner)), ((Qt::DockWidgetArea)(area))); -} - -void QMainWindow_SetDocumentMode_Bool(QtObjectPtr ptr, int enabled) -{ - ((QMainWindow*)(ptr))->setDocumentMode(enabled != 0); -} - -void QMainWindow_SetMenuBar_QMenuBar(QtObjectPtr ptr, QtObjectPtr menuBar) -{ - ((QMainWindow*)(ptr))->setMenuBar(((QMenuBar*)(menuBar))); -} - -void QMainWindow_SetMenuWidget_QWidget(QtObjectPtr ptr, QtObjectPtr menuBar) -{ - ((QMainWindow*)(ptr))->setMenuWidget(((QWidget*)(menuBar))); -} - -void QMainWindow_SetStatusBar_QStatusBar(QtObjectPtr ptr, QtObjectPtr statusbar) -{ - ((QMainWindow*)(ptr))->setStatusBar(((QStatusBar*)(statusbar))); -} - -void QMainWindow_SetToolButtonStyle_ToolButtonStyle(QtObjectPtr ptr, int toolButtonStyle) -{ - ((QMainWindow*)(ptr))->setToolButtonStyle(((Qt::ToolButtonStyle)(toolButtonStyle))); -} - -void QMainWindow_SetUnifiedTitleAndToolBarOnMac_Bool(QtObjectPtr ptr, int set) -{ - ((QMainWindow*)(ptr))->setUnifiedTitleAndToolBarOnMac(set != 0); -} - -QtObjectPtr QMainWindow_StatusBar(QtObjectPtr ptr) -{ - return ((QMainWindow*)(ptr))->statusBar(); -} - -QtObjectPtr QMainWindow_TakeCentralWidget(QtObjectPtr ptr) -{ - return ((QMainWindow*)(ptr))->takeCentralWidget(); -} - -int QMainWindow_ToolBarArea_QToolBar(QtObjectPtr ptr, QtObjectPtr toolbar) -{ - return ((QMainWindow*)(ptr))->toolBarArea(((QToolBar*)(toolbar))); -} - -int QMainWindow_ToolBarBreak_QToolBar(QtObjectPtr ptr, QtObjectPtr toolbar) -{ - return ((QMainWindow*)(ptr))->toolBarBreak(((QToolBar*)(toolbar))); -} - -int QMainWindow_ToolButtonStyle(QtObjectPtr ptr) -{ - return ((QMainWindow*)(ptr))->toolButtonStyle(); -} - -int QMainWindow_UnifiedTitleAndToolBarOnMac(QtObjectPtr ptr) -{ - return ((QMainWindow*)(ptr))->unifiedTitleAndToolBarOnMac(); -} - -//Public Slots -void QMainWindow_ConnectSlotSetAnimated(QtObjectPtr ptr) -{ - QObject::connect(((MyQMainWindow*)(ptr)), &MyQMainWindow::Slot_SetAnimated, ((QMainWindow*)(ptr)), &QMainWindow::setAnimated, Qt::QueuedConnection); -} - -void QMainWindow_DisconnectSlotSetAnimated(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQMainWindow*)(ptr)), &MyQMainWindow::Slot_SetAnimated, ((QMainWindow*)(ptr)), &QMainWindow::setAnimated); -} - -void QMainWindow_SetAnimated_Bool(QtObjectPtr ptr, int enabled) -{ - ((MyQMainWindow*)(ptr))->Slot_SetAnimated(enabled != 0); -} - -void QMainWindow_ConnectSlotSetDockNestingEnabled(QtObjectPtr ptr) -{ - QObject::connect(((MyQMainWindow*)(ptr)), &MyQMainWindow::Slot_SetDockNestingEnabled, ((QMainWindow*)(ptr)), &QMainWindow::setDockNestingEnabled, Qt::QueuedConnection); -} - -void QMainWindow_DisconnectSlotSetDockNestingEnabled(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQMainWindow*)(ptr)), &MyQMainWindow::Slot_SetDockNestingEnabled, ((QMainWindow*)(ptr)), &QMainWindow::setDockNestingEnabled); -} - -void QMainWindow_SetDockNestingEnabled_Bool(QtObjectPtr ptr, int enabled) -{ - ((MyQMainWindow*)(ptr))->Slot_SetDockNestingEnabled(enabled != 0); -} - -//Signals -void QMainWindow_ConnectSignalToolButtonStyleChanged(QtObjectPtr ptr) -{ - QObject::connect(((QMainWindow*)(ptr)), &QMainWindow::toolButtonStyleChanged, ((MyQMainWindow*)(ptr)), &MyQMainWindow::Signal_ToolButtonStyleChanged, Qt::QueuedConnection); -} - -void QMainWindow_DisconnectSignalToolButtonStyleChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QMainWindow*)(ptr)), &QMainWindow::toolButtonStyleChanged, ((MyQMainWindow*)(ptr)), &MyQMainWindow::Signal_ToolButtonStyleChanged); -} - diff --git a/qmainwindow.go b/qmainwindow.go deleted file mode 100644 index 992fb5ee..00000000 --- a/qmainwindow.go +++ /dev/null @@ -1,418 +0,0 @@ -package qt - -//#include "qmainwindow.h" -import "C" - -type qmainwindow struct { - qwidget -} - -type QMainWindow interface { - QWidget - AddToolBar1(area ToolBarArea, toolbar QToolBar) - AddToolBar2(toolbar QToolBar) - AddToolBar3(title string) QToolBar - AddToolBarBreak(area ToolBarArea) - CentralWidget() QWidget - Corner(corner Corner) DockWidgetArea - CreatePopupMenu() QMenu - DocumentMode() bool - InsertToolBar(before QToolBar, toolbar QToolBar) - InsertToolBarBreak(before QToolBar) - IsAnimated() bool - IsDockNestingEnabled() bool - MenuBar() QMenuBar - MenuWidget() QWidget - RemoveToolBar(toolbar QToolBar) - RemoveToolBarBreak(before QToolBar) - SetCentralWidget(widget QWidget) - SetCorner(corner Corner, area DockWidgetArea) - SetDocumentMode(enabled bool) - SetMenuBar(menuBar QMenuBar) - SetMenuWidget(menuBar QWidget) - SetStatusBar(statusbar QStatusBar) - SetToolButtonStyle(toolButtonStyle ToolButtonStyle) - SetUnifiedTitleAndToolBarOnMac(set bool) - StatusBar() QStatusBar - TakeCentralWidget() QWidget - ToolBarArea(toolbar QToolBar) ToolBarArea - ToolBarBreak(toolbar QToolBar) bool - ToolButtonStyle() ToolButtonStyle - UnifiedTitleAndToolBarOnMac() bool - ConnectSlotSetAnimated() - DisconnectSlotSetAnimated() - SlotSetAnimated(enabled bool) - ConnectSlotSetDockNestingEnabled() - DisconnectSlotSetDockNestingEnabled() - SlotSetDockNestingEnabled(enabled bool) - ConnectSignalToolButtonStyleChanged(f func()) - DisconnectSignalToolButtonStyleChanged() - SignalToolButtonStyleChanged() func() -} - -func (p *qmainwindow) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qmainwindow) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQMainWindow(parent QWidget, flags WindowType) QMainWindow { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qmainwindow = new(qmainwindow) - qmainwindow.SetPointer(C.QMainWindow_New_QWidget_WindowType(parentPtr, C.int(flags))) - qmainwindow.SetObjectName("QMainWindow_" + randomIdentifier()) - return qmainwindow -} - -func (p *qmainwindow) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QMainWindow_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qmainwindow) AddToolBar1(area ToolBarArea, toolbar QToolBar) { - if p.Pointer() != nil { - var toolbarPtr C.QtObjectPtr - if toolbar != nil { - toolbarPtr = toolbar.Pointer() - } - C.QMainWindow_AddToolBar_ToolBarArea_QToolBar(p.Pointer(), C.int(area), toolbarPtr) - } -} - -func (p *qmainwindow) AddToolBar2(toolbar QToolBar) { - if p.Pointer() != nil { - var toolbarPtr C.QtObjectPtr - if toolbar != nil { - toolbarPtr = toolbar.Pointer() - } - C.QMainWindow_AddToolBar_QToolBar(p.Pointer(), toolbarPtr) - } -} - -func (p *qmainwindow) AddToolBar3(title string) QToolBar { - if p.Pointer() == nil { - return nil - } else { - var qtoolbar = new(qtoolbar) - qtoolbar.SetPointer(C.QMainWindow_AddToolBar_String(p.Pointer(), C.CString(title))) - if qtoolbar.ObjectName() == "" { - qtoolbar.SetObjectName("QToolBar_" + randomIdentifier()) - } - return qtoolbar - } -} - -func (p *qmainwindow) AddToolBarBreak(area ToolBarArea) { - if p.Pointer() != nil { - C.QMainWindow_AddToolBarBreak_ToolBarArea(p.Pointer(), C.int(area)) - } -} - -func (p *qmainwindow) CentralWidget() QWidget { - if p.Pointer() == nil { - return nil - } else { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QMainWindow_CentralWidget(p.Pointer())) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qmainwindow) Corner(corner Corner) DockWidgetArea { - if p.Pointer() == nil { - return 0 - } - return DockWidgetArea(C.QMainWindow_Corner_Corner(p.Pointer(), C.int(corner))) -} - -func (p *qmainwindow) CreatePopupMenu() QMenu { - if p.Pointer() == nil { - return nil - } else { - var qmenu = new(qmenu) - qmenu.SetPointer(C.QMainWindow_CreatePopupMenu(p.Pointer())) - if qmenu.ObjectName() == "" { - qmenu.SetObjectName("QMenu_" + randomIdentifier()) - } - return qmenu - } -} - -func (p *qmainwindow) DocumentMode() bool { - if p.Pointer() == nil { - return false - } - return C.QMainWindow_DocumentMode(p.Pointer()) != 0 -} - -func (p *qmainwindow) InsertToolBar(before QToolBar, toolbar QToolBar) { - if p.Pointer() != nil { - var beforePtr C.QtObjectPtr - if before != nil { - beforePtr = before.Pointer() - } - var toolbarPtr C.QtObjectPtr - if toolbar != nil { - toolbarPtr = toolbar.Pointer() - } - C.QMainWindow_InsertToolBar_QToolBar_QToolBar(p.Pointer(), beforePtr, toolbarPtr) - } -} - -func (p *qmainwindow) InsertToolBarBreak(before QToolBar) { - if p.Pointer() != nil { - var beforePtr C.QtObjectPtr - if before != nil { - beforePtr = before.Pointer() - } - C.QMainWindow_InsertToolBarBreak_QToolBar(p.Pointer(), beforePtr) - } -} - -func (p *qmainwindow) IsAnimated() bool { - if p.Pointer() == nil { - return false - } - return C.QMainWindow_IsAnimated(p.Pointer()) != 0 -} - -func (p *qmainwindow) IsDockNestingEnabled() bool { - if p.Pointer() == nil { - return false - } - return C.QMainWindow_IsDockNestingEnabled(p.Pointer()) != 0 -} - -func (p *qmainwindow) MenuBar() QMenuBar { - if p.Pointer() == nil { - return nil - } else { - var qmenubar = new(qmenubar) - qmenubar.SetPointer(C.QMainWindow_MenuBar(p.Pointer())) - if qmenubar.ObjectName() == "" { - qmenubar.SetObjectName("QMenuBar_" + randomIdentifier()) - } - return qmenubar - } -} - -func (p *qmainwindow) MenuWidget() QWidget { - if p.Pointer() == nil { - return nil - } else { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QMainWindow_MenuWidget(p.Pointer())) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qmainwindow) RemoveToolBar(toolbar QToolBar) { - if p.Pointer() != nil { - var toolbarPtr C.QtObjectPtr - if toolbar != nil { - toolbarPtr = toolbar.Pointer() - } - C.QMainWindow_RemoveToolBar_QToolBar(p.Pointer(), toolbarPtr) - } -} - -func (p *qmainwindow) RemoveToolBarBreak(before QToolBar) { - if p.Pointer() != nil { - var beforePtr C.QtObjectPtr - if before != nil { - beforePtr = before.Pointer() - } - C.QMainWindow_RemoveToolBarBreak_QToolBar(p.Pointer(), beforePtr) - } -} - -func (p *qmainwindow) SetCentralWidget(widget QWidget) { - if p.Pointer() != nil { - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - C.QMainWindow_SetCentralWidget_QWidget(p.Pointer(), widgetPtr) - } -} - -func (p *qmainwindow) SetCorner(corner Corner, area DockWidgetArea) { - if p.Pointer() != nil { - C.QMainWindow_SetCorner_Corner_DockWidgetArea(p.Pointer(), C.int(corner), C.int(area)) - } -} - -func (p *qmainwindow) SetDocumentMode(enabled bool) { - if p.Pointer() != nil { - C.QMainWindow_SetDocumentMode_Bool(p.Pointer(), goBoolToCInt(enabled)) - } -} - -func (p *qmainwindow) SetMenuBar(menuBar QMenuBar) { - if p.Pointer() != nil { - var menuBarPtr C.QtObjectPtr - if menuBar != nil { - menuBarPtr = menuBar.Pointer() - } - C.QMainWindow_SetMenuBar_QMenuBar(p.Pointer(), menuBarPtr) - } -} - -func (p *qmainwindow) SetMenuWidget(menuBar QWidget) { - if p.Pointer() != nil { - var menuBarPtr C.QtObjectPtr - if menuBar != nil { - menuBarPtr = menuBar.Pointer() - } - C.QMainWindow_SetMenuWidget_QWidget(p.Pointer(), menuBarPtr) - } -} - -func (p *qmainwindow) SetStatusBar(statusbar QStatusBar) { - if p.Pointer() != nil { - var statusbarPtr C.QtObjectPtr - if statusbar != nil { - statusbarPtr = statusbar.Pointer() - } - C.QMainWindow_SetStatusBar_QStatusBar(p.Pointer(), statusbarPtr) - } -} - -func (p *qmainwindow) SetToolButtonStyle(toolButtonStyle ToolButtonStyle) { - if p.Pointer() != nil { - C.QMainWindow_SetToolButtonStyle_ToolButtonStyle(p.Pointer(), C.int(toolButtonStyle)) - } -} - -func (p *qmainwindow) SetUnifiedTitleAndToolBarOnMac(set bool) { - if p.Pointer() != nil { - C.QMainWindow_SetUnifiedTitleAndToolBarOnMac_Bool(p.Pointer(), goBoolToCInt(set)) - } -} - -func (p *qmainwindow) StatusBar() QStatusBar { - if p.Pointer() == nil { - return nil - } else { - var qstatusbar = new(qstatusbar) - qstatusbar.SetPointer(C.QMainWindow_StatusBar(p.Pointer())) - if qstatusbar.ObjectName() == "" { - qstatusbar.SetObjectName("QStatusBar_" + randomIdentifier()) - } - return qstatusbar - } -} - -func (p *qmainwindow) TakeCentralWidget() QWidget { - if p.Pointer() == nil { - return nil - } else { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QMainWindow_TakeCentralWidget(p.Pointer())) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qmainwindow) ToolBarArea(toolbar QToolBar) ToolBarArea { - if p.Pointer() == nil { - return 0 - } else { - var toolbarPtr C.QtObjectPtr - if toolbar != nil { - toolbarPtr = toolbar.Pointer() - } - return ToolBarArea(C.QMainWindow_ToolBarArea_QToolBar(p.Pointer(), toolbarPtr)) - } -} - -func (p *qmainwindow) ToolBarBreak(toolbar QToolBar) bool { - if p.Pointer() == nil { - return false - } else { - var toolbarPtr C.QtObjectPtr - if toolbar != nil { - toolbarPtr = toolbar.Pointer() - } - return C.QMainWindow_ToolBarBreak_QToolBar(p.Pointer(), toolbarPtr) != 0 - } -} - -func (p *qmainwindow) ToolButtonStyle() ToolButtonStyle { - if p.Pointer() == nil { - return 0 - } - return ToolButtonStyle(C.QMainWindow_ToolButtonStyle(p.Pointer())) -} - -func (p *qmainwindow) UnifiedTitleAndToolBarOnMac() bool { - if p.Pointer() == nil { - return false - } - return C.QMainWindow_UnifiedTitleAndToolBarOnMac(p.Pointer()) != 0 -} - -func (p *qmainwindow) ConnectSlotSetAnimated() { - C.QMainWindow_ConnectSlotSetAnimated(p.Pointer()) -} - -func (p *qmainwindow) DisconnectSlotSetAnimated() { - C.QMainWindow_DisconnectSlotSetAnimated(p.Pointer()) -} - -func (p *qmainwindow) SlotSetAnimated(enabled bool) { - if p.Pointer() != nil { - C.QMainWindow_SetAnimated_Bool(p.Pointer(), goBoolToCInt(enabled)) - } -} - -func (p *qmainwindow) ConnectSlotSetDockNestingEnabled() { - C.QMainWindow_ConnectSlotSetDockNestingEnabled(p.Pointer()) -} - -func (p *qmainwindow) DisconnectSlotSetDockNestingEnabled() { - C.QMainWindow_DisconnectSlotSetDockNestingEnabled(p.Pointer()) -} - -func (p *qmainwindow) SlotSetDockNestingEnabled(enabled bool) { - if p.Pointer() != nil { - C.QMainWindow_SetDockNestingEnabled_Bool(p.Pointer(), goBoolToCInt(enabled)) - } -} - -func (p *qmainwindow) ConnectSignalToolButtonStyleChanged(f func()) { - C.QMainWindow_ConnectSignalToolButtonStyleChanged(p.Pointer()) - connectSignal(p.ObjectName(), "toolButtonStyleChanged", f) -} - -func (p *qmainwindow) DisconnectSignalToolButtonStyleChanged() { - C.QMainWindow_DisconnectSignalToolButtonStyleChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "toolButtonStyleChanged") -} - -func (p *qmainwindow) SignalToolButtonStyleChanged() func() { - return getSignal(p.ObjectName(), "toolButtonStyleChanged") -} - -//export callbackQMainWindow -func callbackQMainWindow(ptr C.QtObjectPtr, msg *C.char) { - var qmainwindow = new(qmainwindow) - qmainwindow.SetPointer(ptr) - getSignal(qmainwindow.ObjectName(), C.GoString(msg))() -} diff --git a/qmainwindow.h b/qmainwindow.h deleted file mode 100644 index b82e5e02..00000000 --- a/qmainwindow.h +++ /dev/null @@ -1,53 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QMainWindow_New_QWidget_WindowType(QtObjectPtr parent, int flags); -void QMainWindow_Destroy(QtObjectPtr ptr); -void QMainWindow_AddToolBar_ToolBarArea_QToolBar(QtObjectPtr ptr, int area, QtObjectPtr toolbar); -void QMainWindow_AddToolBar_QToolBar(QtObjectPtr ptr, QtObjectPtr toolbar); -QtObjectPtr QMainWindow_AddToolBar_String(QtObjectPtr ptr, char* title); -void QMainWindow_AddToolBarBreak_ToolBarArea(QtObjectPtr ptr, int area); -QtObjectPtr QMainWindow_CentralWidget(QtObjectPtr ptr); -int QMainWindow_Corner_Corner(QtObjectPtr ptr, int corner); -QtObjectPtr QMainWindow_CreatePopupMenu(QtObjectPtr ptr); -int QMainWindow_DocumentMode(QtObjectPtr ptr); -void QMainWindow_InsertToolBar_QToolBar_QToolBar(QtObjectPtr ptr, QtObjectPtr before, QtObjectPtr toolbar); -void QMainWindow_InsertToolBarBreak_QToolBar(QtObjectPtr ptr, QtObjectPtr before); -int QMainWindow_IsAnimated(QtObjectPtr ptr); -int QMainWindow_IsDockNestingEnabled(QtObjectPtr ptr); -QtObjectPtr QMainWindow_MenuBar(QtObjectPtr ptr); -QtObjectPtr QMainWindow_MenuWidget(QtObjectPtr ptr); -void QMainWindow_RemoveToolBar_QToolBar(QtObjectPtr ptr, QtObjectPtr toolbar); -void QMainWindow_RemoveToolBarBreak_QToolBar(QtObjectPtr ptr, QtObjectPtr before); -void QMainWindow_SetCentralWidget_QWidget(QtObjectPtr ptr, QtObjectPtr widget); -void QMainWindow_SetCorner_Corner_DockWidgetArea(QtObjectPtr ptr, int corner, int area); -void QMainWindow_SetDocumentMode_Bool(QtObjectPtr ptr, int enabled); -void QMainWindow_SetMenuBar_QMenuBar(QtObjectPtr ptr, QtObjectPtr menuBar); -void QMainWindow_SetMenuWidget_QWidget(QtObjectPtr ptr, QtObjectPtr menuBar); -void QMainWindow_SetStatusBar_QStatusBar(QtObjectPtr ptr, QtObjectPtr statusbar); -void QMainWindow_SetToolButtonStyle_ToolButtonStyle(QtObjectPtr ptr, int toolButtonStyle); -void QMainWindow_SetUnifiedTitleAndToolBarOnMac_Bool(QtObjectPtr ptr, int set); -QtObjectPtr QMainWindow_StatusBar(QtObjectPtr ptr); -QtObjectPtr QMainWindow_TakeCentralWidget(QtObjectPtr ptr); -int QMainWindow_ToolBarArea_QToolBar(QtObjectPtr ptr, QtObjectPtr toolbar); -int QMainWindow_ToolBarBreak_QToolBar(QtObjectPtr ptr, QtObjectPtr toolbar); -int QMainWindow_ToolButtonStyle(QtObjectPtr ptr); -int QMainWindow_UnifiedTitleAndToolBarOnMac(QtObjectPtr ptr); -//Public Slots -void QMainWindow_ConnectSlotSetAnimated(QtObjectPtr ptr); -void QMainWindow_DisconnectSlotSetAnimated(QtObjectPtr ptr); -void QMainWindow_SetAnimated_Bool(QtObjectPtr ptr, int enabled); -void QMainWindow_ConnectSlotSetDockNestingEnabled(QtObjectPtr ptr); -void QMainWindow_DisconnectSlotSetDockNestingEnabled(QtObjectPtr ptr); -void QMainWindow_SetDockNestingEnabled_Bool(QtObjectPtr ptr, int enabled); -//Signals -void QMainWindow_ConnectSignalToolButtonStyleChanged(QtObjectPtr ptr); -void QMainWindow_DisconnectSignalToolButtonStyleChanged(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qmainwindow.moc b/qmainwindow.moc deleted file mode 100644 index b6c25fa4..00000000 --- a/qmainwindow.moc +++ /dev/null @@ -1,143 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qmainwindow.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qmainwindow.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQMainWindow_t { - QByteArrayData data[5]; - char stringdata[67]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQMainWindow_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQMainWindow_t qt_meta_stringdata_MyQMainWindow = { - { -QT_MOC_LITERAL(0, 0, 13), // "MyQMainWindow" -QT_MOC_LITERAL(1, 14, 16), // "Slot_SetAnimated" -QT_MOC_LITERAL(2, 31, 0), // "" -QT_MOC_LITERAL(3, 32, 7), // "enabled" -QT_MOC_LITERAL(4, 40, 26) // "Slot_SetDockNestingEnabled" - - }, - "MyQMainWindow\0Slot_SetAnimated\0\0enabled\0" - "Slot_SetDockNestingEnabled" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQMainWindow[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 2, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 2, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 24, 2, 0x06 /* Public */, - 4, 1, 27, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, QMetaType::Bool, 3, - QMetaType::Void, QMetaType::Bool, 3, - - 0 // eod -}; - -void MyQMainWindow::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQMainWindow *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_SetAnimated((*reinterpret_cast< bool(*)>(_a[1]))); break; - case 1: _t->Slot_SetDockNestingEnabled((*reinterpret_cast< bool(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQMainWindow::*_t)(bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQMainWindow::Slot_SetAnimated)) { - *result = 0; - } - } - { - typedef void (MyQMainWindow::*_t)(bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQMainWindow::Slot_SetDockNestingEnabled)) { - *result = 1; - } - } - } -} - -const QMetaObject MyQMainWindow::staticMetaObject = { - { &QMainWindow::staticMetaObject, qt_meta_stringdata_MyQMainWindow.data, - qt_meta_data_MyQMainWindow, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQMainWindow::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQMainWindow::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQMainWindow.stringdata)) - return static_cast(const_cast< MyQMainWindow*>(this)); - return QMainWindow::qt_metacast(_clname); -} - -int MyQMainWindow::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QMainWindow::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 2) - qt_static_metacall(this, _c, _id, _a); - _id -= 2; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 2) - *reinterpret_cast(_a[0]) = -1; - _id -= 2; - } - return _id; -} - -// SIGNAL 0 -void MyQMainWindow::Slot_SetAnimated(bool _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void MyQMainWindow::Slot_SetDockNestingEnabled(bool _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} -QT_END_MOC_NAMESPACE diff --git a/qmenu.cpp b/qmenu.cpp deleted file mode 100644 index 89851c60..00000000 --- a/qmenu.cpp +++ /dev/null @@ -1,211 +0,0 @@ -#include "qmenu.h" -#include -#include "cgoexport.h" - -//MyQMenu -class MyQMenu: public QMenu { -Q_OBJECT -public: -void Signal_AboutToHide() { callbackQMenu(this, QString("aboutToHide").toUtf8().data()); }; -void Signal_AboutToShow() { callbackQMenu(this, QString("aboutToShow").toUtf8().data()); }; -void Signal_Hovered() { callbackQMenu(this, QString("hovered").toUtf8().data()); }; -void Signal_Triggered() { callbackQMenu(this, QString("triggered").toUtf8().data()); }; - -signals: - -}; -#include "qmenu.moc" - - -//Public Functions -QtObjectPtr QMenu_New_QWidget(QtObjectPtr parent) -{ - return new QMenu(((QWidget*)(parent))); -} - -QtObjectPtr QMenu_New_String_QWidget(char* title, QtObjectPtr parent) -{ - return new QMenu(QString(title), ((QWidget*)(parent))); -} - -void QMenu_Destroy(QtObjectPtr ptr) -{ - ((QMenu*)(ptr))->~QMenu(); -} - -QtObjectPtr QMenu_ActiveAction(QtObjectPtr ptr) -{ - return ((QMenu*)(ptr))->activeAction(); -} - -QtObjectPtr QMenu_AddAction_String(QtObjectPtr ptr, char* text) -{ - return ((QMenu*)(ptr))->addAction(QString(text)); -} - -void QMenu_AddAction_QAction(QtObjectPtr ptr, QtObjectPtr action) -{ - ((QMenu*)(ptr))->addAction(((QAction*)(action))); -} - -QtObjectPtr QMenu_AddMenu_QMenu(QtObjectPtr ptr, QtObjectPtr menu) -{ - return ((QMenu*)(ptr))->addMenu(((QMenu*)(menu))); -} - -QtObjectPtr QMenu_AddMenu_String(QtObjectPtr ptr, char* title) -{ - return ((QMenu*)(ptr))->addMenu(QString(title)); -} - -QtObjectPtr QMenu_AddSection_String(QtObjectPtr ptr, char* text) -{ - return ((QMenu*)(ptr))->addSection(QString(text)); -} - -QtObjectPtr QMenu_AddSeparator(QtObjectPtr ptr) -{ - return ((QMenu*)(ptr))->addSeparator(); -} - -void QMenu_Clear(QtObjectPtr ptr) -{ - ((QMenu*)(ptr))->clear(); -} - -QtObjectPtr QMenu_DefaultAction(QtObjectPtr ptr) -{ - return ((QMenu*)(ptr))->defaultAction(); -} - -QtObjectPtr QMenu_Exec(QtObjectPtr ptr) -{ - return ((QMenu*)(ptr))->exec(); -} - -void QMenu_HideTearOffMenu(QtObjectPtr ptr) -{ - ((QMenu*)(ptr))->hideTearOffMenu(); -} - -QtObjectPtr QMenu_InsertMenu_QAction_QMenu(QtObjectPtr ptr, QtObjectPtr before, QtObjectPtr menu) -{ - return ((QMenu*)(ptr))->insertMenu(((QAction*)(before)), ((QMenu*)(menu))); -} - -QtObjectPtr QMenu_InsertSection_QAction_String(QtObjectPtr ptr, QtObjectPtr before, char* text) -{ - return ((QMenu*)(ptr))->insertSection(((QAction*)(before)), QString(text)); -} - -QtObjectPtr QMenu_InsertSeparator_QAction(QtObjectPtr ptr, QtObjectPtr before) -{ - return ((QMenu*)(ptr))->insertSeparator(((QAction*)(before))); -} - -int QMenu_IsEmpty(QtObjectPtr ptr) -{ - return ((QMenu*)(ptr))->isEmpty(); -} - -int QMenu_IsTearOffEnabled(QtObjectPtr ptr) -{ - return ((QMenu*)(ptr))->isTearOffEnabled(); -} - -int QMenu_IsTearOffMenuVisible(QtObjectPtr ptr) -{ - return ((QMenu*)(ptr))->isTearOffMenuVisible(); -} - -QtObjectPtr QMenu_MenuAction(QtObjectPtr ptr) -{ - return ((QMenu*)(ptr))->menuAction(); -} - -int QMenu_SeparatorsCollapsible(QtObjectPtr ptr) -{ - return ((QMenu*)(ptr))->separatorsCollapsible(); -} - -void QMenu_SetActiveAction_QAction(QtObjectPtr ptr, QtObjectPtr act) -{ - ((QMenu*)(ptr))->setActiveAction(((QAction*)(act))); -} - -void QMenu_SetDefaultAction_QAction(QtObjectPtr ptr, QtObjectPtr act) -{ - ((QMenu*)(ptr))->setDefaultAction(((QAction*)(act))); -} - -void QMenu_SetSeparatorsCollapsible_Bool(QtObjectPtr ptr, int collapse) -{ - ((QMenu*)(ptr))->setSeparatorsCollapsible(collapse != 0); -} - -void QMenu_SetTearOffEnabled_Bool(QtObjectPtr ptr, int tearOffEnabled) -{ - ((QMenu*)(ptr))->setTearOffEnabled(tearOffEnabled != 0); -} - -void QMenu_SetTitle_String(QtObjectPtr ptr, char* title) -{ - ((QMenu*)(ptr))->setTitle(QString(title)); -} - -void QMenu_SetToolTipsVisible_Bool(QtObjectPtr ptr, int visible) -{ - ((QMenu*)(ptr))->setToolTipsVisible(visible != 0); -} - -char* QMenu_Title(QtObjectPtr ptr) -{ - return ((QMenu*)(ptr))->title().toUtf8().data(); -} - -int QMenu_ToolTipsVisible(QtObjectPtr ptr) -{ - return ((QMenu*)(ptr))->toolTipsVisible(); -} - -//Signals -void QMenu_ConnectSignalAboutToHide(QtObjectPtr ptr) -{ - QObject::connect(((QMenu*)(ptr)), &QMenu::aboutToHide, ((MyQMenu*)(ptr)), &MyQMenu::Signal_AboutToHide, Qt::QueuedConnection); -} - -void QMenu_DisconnectSignalAboutToHide(QtObjectPtr ptr) -{ - QObject::disconnect(((QMenu*)(ptr)), &QMenu::aboutToHide, ((MyQMenu*)(ptr)), &MyQMenu::Signal_AboutToHide); -} - -void QMenu_ConnectSignalAboutToShow(QtObjectPtr ptr) -{ - QObject::connect(((QMenu*)(ptr)), &QMenu::aboutToShow, ((MyQMenu*)(ptr)), &MyQMenu::Signal_AboutToShow, Qt::QueuedConnection); -} - -void QMenu_DisconnectSignalAboutToShow(QtObjectPtr ptr) -{ - QObject::disconnect(((QMenu*)(ptr)), &QMenu::aboutToShow, ((MyQMenu*)(ptr)), &MyQMenu::Signal_AboutToShow); -} - -void QMenu_ConnectSignalHovered(QtObjectPtr ptr) -{ - QObject::connect(((QMenu*)(ptr)), &QMenu::hovered, ((MyQMenu*)(ptr)), &MyQMenu::Signal_Hovered, Qt::QueuedConnection); -} - -void QMenu_DisconnectSignalHovered(QtObjectPtr ptr) -{ - QObject::disconnect(((QMenu*)(ptr)), &QMenu::hovered, ((MyQMenu*)(ptr)), &MyQMenu::Signal_Hovered); -} - -void QMenu_ConnectSignalTriggered(QtObjectPtr ptr) -{ - QObject::connect(((QMenu*)(ptr)), &QMenu::triggered, ((MyQMenu*)(ptr)), &MyQMenu::Signal_Triggered, Qt::QueuedConnection); -} - -void QMenu_DisconnectSignalTriggered(QtObjectPtr ptr) -{ - QObject::disconnect(((QMenu*)(ptr)), &QMenu::triggered, ((MyQMenu*)(ptr)), &MyQMenu::Signal_Triggered); -} - diff --git a/qmenu.go b/qmenu.go deleted file mode 100644 index 1fedc264..00000000 --- a/qmenu.go +++ /dev/null @@ -1,436 +0,0 @@ -package qt - -//#include "qmenu.h" -import "C" - -type qmenu struct { - qwidget -} - -type QMenu interface { - QWidget - ActiveAction() QAction - AddAction1(text string) QAction - AddAction2(action QAction) - AddMenu1(menu QMenu) QAction - AddMenu2(title string) QMenu - AddSection(text string) QAction - AddSeparator() QAction - Clear() - DefaultAction() QAction - Exec() QAction - HideTearOffMenu() - InsertMenu(before QAction, menu QMenu) QAction - InsertSection(before QAction, text string) QAction - InsertSeparator(before QAction) QAction - IsEmpty() bool - IsTearOffEnabled() bool - IsTearOffMenuVisible() bool - MenuAction() QAction - SeparatorsCollapsible() bool - SetActiveAction(act QAction) - SetDefaultAction(act QAction) - SetSeparatorsCollapsible(collapse bool) - SetTearOffEnabled(tearOffEnabled bool) - SetTitle(title string) - SetToolTipsVisible(visible bool) - Title() string - ToolTipsVisible() bool - ConnectSignalAboutToHide(f func()) - DisconnectSignalAboutToHide() - SignalAboutToHide() func() - ConnectSignalAboutToShow(f func()) - DisconnectSignalAboutToShow() - SignalAboutToShow() func() - ConnectSignalHovered(f func()) - DisconnectSignalHovered() - SignalHovered() func() - ConnectSignalTriggered(f func()) - DisconnectSignalTriggered() - SignalTriggered() func() -} - -func (p *qmenu) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qmenu) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQMenu1(parent QWidget) QMenu { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qmenu = new(qmenu) - qmenu.SetPointer(C.QMenu_New_QWidget(parentPtr)) - qmenu.SetObjectName("QMenu_" + randomIdentifier()) - return qmenu -} - -func NewQMenu2(title string, parent QWidget) QMenu { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qmenu = new(qmenu) - qmenu.SetPointer(C.QMenu_New_String_QWidget(C.CString(title), parentPtr)) - qmenu.SetObjectName("QMenu_" + randomIdentifier()) - return qmenu -} - -func (p *qmenu) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QMenu_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qmenu) ActiveAction() QAction { - if p.Pointer() == nil { - return nil - } else { - var qaction = new(qaction) - qaction.SetPointer(C.QMenu_ActiveAction(p.Pointer())) - if qaction.ObjectName() == "" { - qaction.SetObjectName("QAction_" + randomIdentifier()) - } - return qaction - } -} - -func (p *qmenu) AddAction1(text string) QAction { - if p.Pointer() == nil { - return nil - } else { - var qaction = new(qaction) - qaction.SetPointer(C.QMenu_AddAction_String(p.Pointer(), C.CString(text))) - if qaction.ObjectName() == "" { - qaction.SetObjectName("QAction_" + randomIdentifier()) - } - return qaction - } -} - -func (p *qmenu) AddAction2(action QAction) { - if p.Pointer() != nil { - var actionPtr C.QtObjectPtr - if action != nil { - actionPtr = action.Pointer() - } - C.QMenu_AddAction_QAction(p.Pointer(), actionPtr) - } -} - -func (p *qmenu) AddMenu1(menu QMenu) QAction { - if p.Pointer() == nil { - return nil - } else { - var menuPtr C.QtObjectPtr - if menu != nil { - menuPtr = menu.Pointer() - } - var qaction = new(qaction) - qaction.SetPointer(C.QMenu_AddMenu_QMenu(p.Pointer(), menuPtr)) - if qaction.ObjectName() == "" { - qaction.SetObjectName("QAction_" + randomIdentifier()) - } - return qaction - } -} - -func (p *qmenu) AddMenu2(title string) QMenu { - if p.Pointer() == nil { - return nil - } else { - var qmenu = new(qmenu) - qmenu.SetPointer(C.QMenu_AddMenu_String(p.Pointer(), C.CString(title))) - if qmenu.ObjectName() == "" { - qmenu.SetObjectName("QMenu_" + randomIdentifier()) - } - return qmenu - } -} - -func (p *qmenu) AddSection(text string) QAction { - if p.Pointer() == nil { - return nil - } else { - var qaction = new(qaction) - qaction.SetPointer(C.QMenu_AddSection_String(p.Pointer(), C.CString(text))) - if qaction.ObjectName() == "" { - qaction.SetObjectName("QAction_" + randomIdentifier()) - } - return qaction - } -} - -func (p *qmenu) AddSeparator() QAction { - if p.Pointer() == nil { - return nil - } else { - var qaction = new(qaction) - qaction.SetPointer(C.QMenu_AddSeparator(p.Pointer())) - if qaction.ObjectName() == "" { - qaction.SetObjectName("QAction_" + randomIdentifier()) - } - return qaction - } -} - -func (p *qmenu) Clear() { - if p.Pointer() != nil { - C.QMenu_Clear(p.Pointer()) - } -} - -func (p *qmenu) DefaultAction() QAction { - if p.Pointer() == nil { - return nil - } else { - var qaction = new(qaction) - qaction.SetPointer(C.QMenu_DefaultAction(p.Pointer())) - if qaction.ObjectName() == "" { - qaction.SetObjectName("QAction_" + randomIdentifier()) - } - return qaction - } -} - -func (p *qmenu) Exec() QAction { - if p.Pointer() == nil { - return nil - } else { - var qaction = new(qaction) - qaction.SetPointer(C.QMenu_Exec(p.Pointer())) - if qaction.ObjectName() == "" { - qaction.SetObjectName("QAction_" + randomIdentifier()) - } - return qaction - } -} - -func (p *qmenu) HideTearOffMenu() { - if p.Pointer() != nil { - C.QMenu_HideTearOffMenu(p.Pointer()) - } -} - -func (p *qmenu) InsertMenu(before QAction, menu QMenu) QAction { - if p.Pointer() == nil { - return nil - } else { - var beforePtr C.QtObjectPtr - if before != nil { - beforePtr = before.Pointer() - } - var menuPtr C.QtObjectPtr - if menu != nil { - menuPtr = menu.Pointer() - } - var qaction = new(qaction) - qaction.SetPointer(C.QMenu_InsertMenu_QAction_QMenu(p.Pointer(), beforePtr, menuPtr)) - if qaction.ObjectName() == "" { - qaction.SetObjectName("QAction_" + randomIdentifier()) - } - return qaction - } -} - -func (p *qmenu) InsertSection(before QAction, text string) QAction { - if p.Pointer() == nil { - return nil - } else { - var beforePtr C.QtObjectPtr - if before != nil { - beforePtr = before.Pointer() - } - var qaction = new(qaction) - qaction.SetPointer(C.QMenu_InsertSection_QAction_String(p.Pointer(), beforePtr, C.CString(text))) - if qaction.ObjectName() == "" { - qaction.SetObjectName("QAction_" + randomIdentifier()) - } - return qaction - } -} - -func (p *qmenu) InsertSeparator(before QAction) QAction { - if p.Pointer() == nil { - return nil - } else { - var beforePtr C.QtObjectPtr - if before != nil { - beforePtr = before.Pointer() - } - var qaction = new(qaction) - qaction.SetPointer(C.QMenu_InsertSeparator_QAction(p.Pointer(), beforePtr)) - if qaction.ObjectName() == "" { - qaction.SetObjectName("QAction_" + randomIdentifier()) - } - return qaction - } -} - -func (p *qmenu) IsEmpty() bool { - if p.Pointer() == nil { - return false - } - return C.QMenu_IsEmpty(p.Pointer()) != 0 -} - -func (p *qmenu) IsTearOffEnabled() bool { - if p.Pointer() == nil { - return false - } - return C.QMenu_IsTearOffEnabled(p.Pointer()) != 0 -} - -func (p *qmenu) IsTearOffMenuVisible() bool { - if p.Pointer() == nil { - return false - } - return C.QMenu_IsTearOffMenuVisible(p.Pointer()) != 0 -} - -func (p *qmenu) MenuAction() QAction { - if p.Pointer() == nil { - return nil - } else { - var qaction = new(qaction) - qaction.SetPointer(C.QMenu_MenuAction(p.Pointer())) - if qaction.ObjectName() == "" { - qaction.SetObjectName("QAction_" + randomIdentifier()) - } - return qaction - } -} - -func (p *qmenu) SeparatorsCollapsible() bool { - if p.Pointer() == nil { - return false - } - return C.QMenu_SeparatorsCollapsible(p.Pointer()) != 0 -} - -func (p *qmenu) SetActiveAction(act QAction) { - if p.Pointer() != nil { - var actPtr C.QtObjectPtr - if act != nil { - actPtr = act.Pointer() - } - C.QMenu_SetActiveAction_QAction(p.Pointer(), actPtr) - } -} - -func (p *qmenu) SetDefaultAction(act QAction) { - if p.Pointer() != nil { - var actPtr C.QtObjectPtr - if act != nil { - actPtr = act.Pointer() - } - C.QMenu_SetDefaultAction_QAction(p.Pointer(), actPtr) - } -} - -func (p *qmenu) SetSeparatorsCollapsible(collapse bool) { - if p.Pointer() != nil { - C.QMenu_SetSeparatorsCollapsible_Bool(p.Pointer(), goBoolToCInt(collapse)) - } -} - -func (p *qmenu) SetTearOffEnabled(tearOffEnabled bool) { - if p.Pointer() != nil { - C.QMenu_SetTearOffEnabled_Bool(p.Pointer(), goBoolToCInt(tearOffEnabled)) - } -} - -func (p *qmenu) SetTitle(title string) { - if p.Pointer() != nil { - C.QMenu_SetTitle_String(p.Pointer(), C.CString(title)) - } -} - -func (p *qmenu) SetToolTipsVisible(visible bool) { - if p.Pointer() != nil { - C.QMenu_SetToolTipsVisible_Bool(p.Pointer(), goBoolToCInt(visible)) - } -} - -func (p *qmenu) Title() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QMenu_Title(p.Pointer())) -} - -func (p *qmenu) ToolTipsVisible() bool { - if p.Pointer() == nil { - return false - } - return C.QMenu_ToolTipsVisible(p.Pointer()) != 0 -} - -func (p *qmenu) ConnectSignalAboutToHide(f func()) { - C.QMenu_ConnectSignalAboutToHide(p.Pointer()) - connectSignal(p.ObjectName(), "aboutToHide", f) -} - -func (p *qmenu) DisconnectSignalAboutToHide() { - C.QMenu_DisconnectSignalAboutToHide(p.Pointer()) - disconnectSignal(p.ObjectName(), "aboutToHide") -} - -func (p *qmenu) SignalAboutToHide() func() { - return getSignal(p.ObjectName(), "aboutToHide") -} - -func (p *qmenu) ConnectSignalAboutToShow(f func()) { - C.QMenu_ConnectSignalAboutToShow(p.Pointer()) - connectSignal(p.ObjectName(), "aboutToShow", f) -} - -func (p *qmenu) DisconnectSignalAboutToShow() { - C.QMenu_DisconnectSignalAboutToShow(p.Pointer()) - disconnectSignal(p.ObjectName(), "aboutToShow") -} - -func (p *qmenu) SignalAboutToShow() func() { - return getSignal(p.ObjectName(), "aboutToShow") -} - -func (p *qmenu) ConnectSignalHovered(f func()) { - C.QMenu_ConnectSignalHovered(p.Pointer()) - connectSignal(p.ObjectName(), "hovered", f) -} - -func (p *qmenu) DisconnectSignalHovered() { - C.QMenu_DisconnectSignalHovered(p.Pointer()) - disconnectSignal(p.ObjectName(), "hovered") -} - -func (p *qmenu) SignalHovered() func() { - return getSignal(p.ObjectName(), "hovered") -} - -func (p *qmenu) ConnectSignalTriggered(f func()) { - C.QMenu_ConnectSignalTriggered(p.Pointer()) - connectSignal(p.ObjectName(), "triggered", f) -} - -func (p *qmenu) DisconnectSignalTriggered() { - C.QMenu_DisconnectSignalTriggered(p.Pointer()) - disconnectSignal(p.ObjectName(), "triggered") -} - -func (p *qmenu) SignalTriggered() func() { - return getSignal(p.ObjectName(), "triggered") -} - -//export callbackQMenu -func callbackQMenu(ptr C.QtObjectPtr, msg *C.char) { - var qmenu = new(qmenu) - qmenu.SetPointer(ptr) - getSignal(qmenu.ObjectName(), C.GoString(msg))() -} diff --git a/qmenu.h b/qmenu.h deleted file mode 100644 index 17a14e3a..00000000 --- a/qmenu.h +++ /dev/null @@ -1,50 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QMenu_New_QWidget(QtObjectPtr parent); -QtObjectPtr QMenu_New_String_QWidget(char* title, QtObjectPtr parent); -void QMenu_Destroy(QtObjectPtr ptr); -QtObjectPtr QMenu_ActiveAction(QtObjectPtr ptr); -QtObjectPtr QMenu_AddAction_String(QtObjectPtr ptr, char* text); -void QMenu_AddAction_QAction(QtObjectPtr ptr, QtObjectPtr action); -QtObjectPtr QMenu_AddMenu_QMenu(QtObjectPtr ptr, QtObjectPtr menu); -QtObjectPtr QMenu_AddMenu_String(QtObjectPtr ptr, char* title); -QtObjectPtr QMenu_AddSection_String(QtObjectPtr ptr, char* text); -QtObjectPtr QMenu_AddSeparator(QtObjectPtr ptr); -void QMenu_Clear(QtObjectPtr ptr); -QtObjectPtr QMenu_DefaultAction(QtObjectPtr ptr); -QtObjectPtr QMenu_Exec(QtObjectPtr ptr); -void QMenu_HideTearOffMenu(QtObjectPtr ptr); -QtObjectPtr QMenu_InsertMenu_QAction_QMenu(QtObjectPtr ptr, QtObjectPtr before, QtObjectPtr menu); -QtObjectPtr QMenu_InsertSection_QAction_String(QtObjectPtr ptr, QtObjectPtr before, char* text); -QtObjectPtr QMenu_InsertSeparator_QAction(QtObjectPtr ptr, QtObjectPtr before); -int QMenu_IsEmpty(QtObjectPtr ptr); -int QMenu_IsTearOffEnabled(QtObjectPtr ptr); -int QMenu_IsTearOffMenuVisible(QtObjectPtr ptr); -QtObjectPtr QMenu_MenuAction(QtObjectPtr ptr); -int QMenu_SeparatorsCollapsible(QtObjectPtr ptr); -void QMenu_SetActiveAction_QAction(QtObjectPtr ptr, QtObjectPtr act); -void QMenu_SetDefaultAction_QAction(QtObjectPtr ptr, QtObjectPtr act); -void QMenu_SetSeparatorsCollapsible_Bool(QtObjectPtr ptr, int collapse); -void QMenu_SetTearOffEnabled_Bool(QtObjectPtr ptr, int tearOffEnabled); -void QMenu_SetTitle_String(QtObjectPtr ptr, char* title); -void QMenu_SetToolTipsVisible_Bool(QtObjectPtr ptr, int visible); -char* QMenu_Title(QtObjectPtr ptr); -int QMenu_ToolTipsVisible(QtObjectPtr ptr); -//Signals -void QMenu_ConnectSignalAboutToHide(QtObjectPtr ptr); -void QMenu_DisconnectSignalAboutToHide(QtObjectPtr ptr); -void QMenu_ConnectSignalAboutToShow(QtObjectPtr ptr); -void QMenu_DisconnectSignalAboutToShow(QtObjectPtr ptr); -void QMenu_ConnectSignalHovered(QtObjectPtr ptr); -void QMenu_DisconnectSignalHovered(QtObjectPtr ptr); -void QMenu_ConnectSignalTriggered(QtObjectPtr ptr); -void QMenu_DisconnectSignalTriggered(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qmenu.moc b/qmenu.moc deleted file mode 100644 index 148f91e0..00000000 --- a/qmenu.moc +++ /dev/null @@ -1,88 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qmenu.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qmenu.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQMenu_t { - QByteArrayData data[1]; - char stringdata[8]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQMenu_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQMenu_t qt_meta_stringdata_MyQMenu = { - { -QT_MOC_LITERAL(0, 0, 7) // "MyQMenu" - - }, - "MyQMenu" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQMenu[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 0, 0, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 0, // signalCount - - 0 // eod -}; - -void MyQMenu::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - Q_UNUSED(_o); - Q_UNUSED(_id); - Q_UNUSED(_c); - Q_UNUSED(_a); -} - -const QMetaObject MyQMenu::staticMetaObject = { - { &QMenu::staticMetaObject, qt_meta_stringdata_MyQMenu.data, - qt_meta_data_MyQMenu, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQMenu::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQMenu::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQMenu.stringdata)) - return static_cast(const_cast< MyQMenu*>(this)); - return QMenu::qt_metacast(_clname); -} - -int MyQMenu::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QMenu::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - return _id; -} -QT_END_MOC_NAMESPACE diff --git a/qmenubar.cpp b/qmenubar.cpp deleted file mode 100644 index 56edb76a..00000000 --- a/qmenubar.cpp +++ /dev/null @@ -1,151 +0,0 @@ -#include "qmenubar.h" -#include -#include "cgoexport.h" - -//MyQMenuBar -class MyQMenuBar: public QMenuBar { -Q_OBJECT -public: -void Signal_Hovered() { callbackQMenuBar(this, QString("hovered").toUtf8().data()); }; -void Signal_Triggered() { callbackQMenuBar(this, QString("triggered").toUtf8().data()); }; - -signals: -void Slot_SetVisible(bool visible); - -}; -#include "qmenubar.moc" - - -//Public Functions -QtObjectPtr QMenuBar_New_QWidget(QtObjectPtr parent) -{ - return new QMenuBar(((QWidget*)(parent))); -} - -void QMenuBar_Destroy(QtObjectPtr ptr) -{ - ((QMenuBar*)(ptr))->~QMenuBar(); -} - -QtObjectPtr QMenuBar_ActiveAction(QtObjectPtr ptr) -{ - return ((QMenuBar*)(ptr))->activeAction(); -} - -QtObjectPtr QMenuBar_AddAction_String(QtObjectPtr ptr, char* text) -{ - return ((QMenuBar*)(ptr))->addAction(QString(text)); -} - -QtObjectPtr QMenuBar_AddAction_String_QObject_String(QtObjectPtr ptr, char* text, QtObjectPtr receiver, char* member) -{ - return ((QMenuBar*)(ptr))->addAction(QString(text), ((QObject*)(receiver)), member); -} - -void QMenuBar_AddAction_QAction(QtObjectPtr ptr, QtObjectPtr action) -{ - ((QMenuBar*)(ptr))->addAction(((QAction*)(action))); -} - -QtObjectPtr QMenuBar_AddMenu_QMenu(QtObjectPtr ptr, QtObjectPtr menu) -{ - return ((QMenuBar*)(ptr))->addMenu(((QMenu*)(menu))); -} - -QtObjectPtr QMenuBar_AddMenu_String(QtObjectPtr ptr, char* title) -{ - return ((QMenuBar*)(ptr))->addMenu(QString(title)); -} - -QtObjectPtr QMenuBar_AddSeparator(QtObjectPtr ptr) -{ - return ((QMenuBar*)(ptr))->addSeparator(); -} - -void QMenuBar_Clear(QtObjectPtr ptr) -{ - ((QMenuBar*)(ptr))->clear(); -} - -QtObjectPtr QMenuBar_CornerWidget_Corner(QtObjectPtr ptr, int corner) -{ - return ((QMenuBar*)(ptr))->cornerWidget(((Qt::Corner)(corner))); -} - -QtObjectPtr QMenuBar_InsertMenu_QAction_QMenu(QtObjectPtr ptr, QtObjectPtr before, QtObjectPtr menu) -{ - return ((QMenuBar*)(ptr))->insertMenu(((QAction*)(before)), ((QMenu*)(menu))); -} - -QtObjectPtr QMenuBar_InsertSeparator_QAction(QtObjectPtr ptr, QtObjectPtr before) -{ - return ((QMenuBar*)(ptr))->insertSeparator(((QAction*)(before))); -} - -int QMenuBar_IsDefaultUp(QtObjectPtr ptr) -{ - return ((QMenuBar*)(ptr))->isDefaultUp(); -} - -int QMenuBar_IsNativeMenuBar(QtObjectPtr ptr) -{ - return ((QMenuBar*)(ptr))->isNativeMenuBar(); -} - -void QMenuBar_SetActiveAction_QAction(QtObjectPtr ptr, QtObjectPtr act) -{ - ((QMenuBar*)(ptr))->setActiveAction(((QAction*)(act))); -} - -void QMenuBar_SetCornerWidget_QWidget_Corner(QtObjectPtr ptr, QtObjectPtr widget, int corner) -{ - ((QMenuBar*)(ptr))->setCornerWidget(((QWidget*)(widget)), ((Qt::Corner)(corner))); -} - -void QMenuBar_SetDefaultUp_Bool(QtObjectPtr ptr, int defaultAction) -{ - ((QMenuBar*)(ptr))->setDefaultUp(defaultAction != 0); -} - -void QMenuBar_SetNativeMenuBar_Bool(QtObjectPtr ptr, int nativeMenuBar) -{ - ((QMenuBar*)(ptr))->setNativeMenuBar(nativeMenuBar != 0); -} - -//Public Slots -void QMenuBar_ConnectSlotSetVisible(QtObjectPtr ptr) -{ - QObject::connect(((MyQMenuBar*)(ptr)), &MyQMenuBar::Slot_SetVisible, ((QMenuBar*)(ptr)), &QMenuBar::setVisible, Qt::QueuedConnection); -} - -void QMenuBar_DisconnectSlotSetVisible(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQMenuBar*)(ptr)), &MyQMenuBar::Slot_SetVisible, ((QMenuBar*)(ptr)), &QMenuBar::setVisible); -} - -void QMenuBar_SetVisible_Bool(QtObjectPtr ptr, int visible) -{ - ((MyQMenuBar*)(ptr))->Slot_SetVisible(visible != 0); -} - -//Signals -void QMenuBar_ConnectSignalHovered(QtObjectPtr ptr) -{ - QObject::connect(((QMenuBar*)(ptr)), &QMenuBar::hovered, ((MyQMenuBar*)(ptr)), &MyQMenuBar::Signal_Hovered, Qt::QueuedConnection); -} - -void QMenuBar_DisconnectSignalHovered(QtObjectPtr ptr) -{ - QObject::disconnect(((QMenuBar*)(ptr)), &QMenuBar::hovered, ((MyQMenuBar*)(ptr)), &MyQMenuBar::Signal_Hovered); -} - -void QMenuBar_ConnectSignalTriggered(QtObjectPtr ptr) -{ - QObject::connect(((QMenuBar*)(ptr)), &QMenuBar::triggered, ((MyQMenuBar*)(ptr)), &MyQMenuBar::Signal_Triggered, Qt::QueuedConnection); -} - -void QMenuBar_DisconnectSignalTriggered(QtObjectPtr ptr) -{ - QObject::disconnect(((QMenuBar*)(ptr)), &QMenuBar::triggered, ((MyQMenuBar*)(ptr)), &MyQMenuBar::Signal_Triggered); -} - diff --git a/qmenubar.go b/qmenubar.go deleted file mode 100644 index 2bb50ee2..00000000 --- a/qmenubar.go +++ /dev/null @@ -1,313 +0,0 @@ -package qt - -//#include "qmenubar.h" -import "C" - -type qmenubar struct { - qwidget -} - -type QMenuBar interface { - QWidget - ActiveAction() QAction - AddAction1(text string) QAction - AddAction2(text string, receiver QObject, member string) QAction - AddAction3(action QAction) - AddMenu1(menu QMenu) QAction - AddMenu2(title string) QMenu - AddSeparator() QAction - Clear() - CornerWidget(corner Corner) QWidget - InsertMenu(before QAction, menu QMenu) QAction - InsertSeparator(before QAction) QAction - IsDefaultUp() bool - IsNativeMenuBar() bool - SetActiveAction(act QAction) - SetCornerWidget(widget QWidget, corner Corner) - SetDefaultUp(defaultAction bool) - SetNativeMenuBar(nativeMenuBar bool) - ConnectSlotSetVisible() - DisconnectSlotSetVisible() - SlotSetVisible(visible bool) - ConnectSignalHovered(f func()) - DisconnectSignalHovered() - SignalHovered() func() - ConnectSignalTriggered(f func()) - DisconnectSignalTriggered() - SignalTriggered() func() -} - -func (p *qmenubar) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qmenubar) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQMenuBar(parent QWidget) QMenuBar { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qmenubar = new(qmenubar) - qmenubar.SetPointer(C.QMenuBar_New_QWidget(parentPtr)) - qmenubar.SetObjectName("QMenuBar_" + randomIdentifier()) - return qmenubar -} - -func (p *qmenubar) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QMenuBar_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qmenubar) ActiveAction() QAction { - if p.Pointer() == nil { - return nil - } else { - var qaction = new(qaction) - qaction.SetPointer(C.QMenuBar_ActiveAction(p.Pointer())) - if qaction.ObjectName() == "" { - qaction.SetObjectName("QAction_" + randomIdentifier()) - } - return qaction - } -} - -func (p *qmenubar) AddAction1(text string) QAction { - if p.Pointer() == nil { - return nil - } else { - var qaction = new(qaction) - qaction.SetPointer(C.QMenuBar_AddAction_String(p.Pointer(), C.CString(text))) - if qaction.ObjectName() == "" { - qaction.SetObjectName("QAction_" + randomIdentifier()) - } - return qaction - } -} - -func (p *qmenubar) AddAction2(text string, receiver QObject, member string) QAction { - if p.Pointer() == nil { - return nil - } else { - var receiverPtr C.QtObjectPtr - if receiver != nil { - receiverPtr = receiver.Pointer() - } - var qaction = new(qaction) - qaction.SetPointer(C.QMenuBar_AddAction_String_QObject_String(p.Pointer(), C.CString(text), receiverPtr, C.CString(member))) - if qaction.ObjectName() == "" { - qaction.SetObjectName("QAction_" + randomIdentifier()) - } - return qaction - } -} - -func (p *qmenubar) AddAction3(action QAction) { - if p.Pointer() != nil { - var actionPtr C.QtObjectPtr - if action != nil { - actionPtr = action.Pointer() - } - C.QMenuBar_AddAction_QAction(p.Pointer(), actionPtr) - } -} - -func (p *qmenubar) AddMenu1(menu QMenu) QAction { - if p.Pointer() == nil { - return nil - } else { - var menuPtr C.QtObjectPtr - if menu != nil { - menuPtr = menu.Pointer() - } - var qaction = new(qaction) - qaction.SetPointer(C.QMenuBar_AddMenu_QMenu(p.Pointer(), menuPtr)) - if qaction.ObjectName() == "" { - qaction.SetObjectName("QAction_" + randomIdentifier()) - } - return qaction - } -} - -func (p *qmenubar) AddMenu2(title string) QMenu { - if p.Pointer() == nil { - return nil - } else { - var qmenu = new(qmenu) - qmenu.SetPointer(C.QMenuBar_AddMenu_String(p.Pointer(), C.CString(title))) - if qmenu.ObjectName() == "" { - qmenu.SetObjectName("QMenu_" + randomIdentifier()) - } - return qmenu - } -} - -func (p *qmenubar) AddSeparator() QAction { - if p.Pointer() == nil { - return nil - } else { - var qaction = new(qaction) - qaction.SetPointer(C.QMenuBar_AddSeparator(p.Pointer())) - if qaction.ObjectName() == "" { - qaction.SetObjectName("QAction_" + randomIdentifier()) - } - return qaction - } -} - -func (p *qmenubar) Clear() { - if p.Pointer() != nil { - C.QMenuBar_Clear(p.Pointer()) - } -} - -func (p *qmenubar) CornerWidget(corner Corner) QWidget { - if p.Pointer() == nil { - return nil - } else { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QMenuBar_CornerWidget_Corner(p.Pointer(), C.int(corner))) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qmenubar) InsertMenu(before QAction, menu QMenu) QAction { - if p.Pointer() == nil { - return nil - } else { - var beforePtr C.QtObjectPtr - if before != nil { - beforePtr = before.Pointer() - } - var menuPtr C.QtObjectPtr - if menu != nil { - menuPtr = menu.Pointer() - } - var qaction = new(qaction) - qaction.SetPointer(C.QMenuBar_InsertMenu_QAction_QMenu(p.Pointer(), beforePtr, menuPtr)) - if qaction.ObjectName() == "" { - qaction.SetObjectName("QAction_" + randomIdentifier()) - } - return qaction - } -} - -func (p *qmenubar) InsertSeparator(before QAction) QAction { - if p.Pointer() == nil { - return nil - } else { - var beforePtr C.QtObjectPtr - if before != nil { - beforePtr = before.Pointer() - } - var qaction = new(qaction) - qaction.SetPointer(C.QMenuBar_InsertSeparator_QAction(p.Pointer(), beforePtr)) - if qaction.ObjectName() == "" { - qaction.SetObjectName("QAction_" + randomIdentifier()) - } - return qaction - } -} - -func (p *qmenubar) IsDefaultUp() bool { - if p.Pointer() == nil { - return false - } - return C.QMenuBar_IsDefaultUp(p.Pointer()) != 0 -} - -func (p *qmenubar) IsNativeMenuBar() bool { - if p.Pointer() == nil { - return false - } - return C.QMenuBar_IsNativeMenuBar(p.Pointer()) != 0 -} - -func (p *qmenubar) SetActiveAction(act QAction) { - if p.Pointer() != nil { - var actPtr C.QtObjectPtr - if act != nil { - actPtr = act.Pointer() - } - C.QMenuBar_SetActiveAction_QAction(p.Pointer(), actPtr) - } -} - -func (p *qmenubar) SetCornerWidget(widget QWidget, corner Corner) { - if p.Pointer() != nil { - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - C.QMenuBar_SetCornerWidget_QWidget_Corner(p.Pointer(), widgetPtr, C.int(corner)) - } -} - -func (p *qmenubar) SetDefaultUp(defaultAction bool) { - if p.Pointer() != nil { - C.QMenuBar_SetDefaultUp_Bool(p.Pointer(), goBoolToCInt(defaultAction)) - } -} - -func (p *qmenubar) SetNativeMenuBar(nativeMenuBar bool) { - if p.Pointer() != nil { - C.QMenuBar_SetNativeMenuBar_Bool(p.Pointer(), goBoolToCInt(nativeMenuBar)) - } -} - -func (p *qmenubar) ConnectSlotSetVisible() { - C.QMenuBar_ConnectSlotSetVisible(p.Pointer()) -} - -func (p *qmenubar) DisconnectSlotSetVisible() { - C.QMenuBar_DisconnectSlotSetVisible(p.Pointer()) -} - -func (p *qmenubar) SlotSetVisible(visible bool) { - if p.Pointer() != nil { - C.QMenuBar_SetVisible_Bool(p.Pointer(), goBoolToCInt(visible)) - } -} - -func (p *qmenubar) ConnectSignalHovered(f func()) { - C.QMenuBar_ConnectSignalHovered(p.Pointer()) - connectSignal(p.ObjectName(), "hovered", f) -} - -func (p *qmenubar) DisconnectSignalHovered() { - C.QMenuBar_DisconnectSignalHovered(p.Pointer()) - disconnectSignal(p.ObjectName(), "hovered") -} - -func (p *qmenubar) SignalHovered() func() { - return getSignal(p.ObjectName(), "hovered") -} - -func (p *qmenubar) ConnectSignalTriggered(f func()) { - C.QMenuBar_ConnectSignalTriggered(p.Pointer()) - connectSignal(p.ObjectName(), "triggered", f) -} - -func (p *qmenubar) DisconnectSignalTriggered() { - C.QMenuBar_DisconnectSignalTriggered(p.Pointer()) - disconnectSignal(p.ObjectName(), "triggered") -} - -func (p *qmenubar) SignalTriggered() func() { - return getSignal(p.ObjectName(), "triggered") -} - -//export callbackQMenuBar -func callbackQMenuBar(ptr C.QtObjectPtr, msg *C.char) { - var qmenubar = new(qmenubar) - qmenubar.SetPointer(ptr) - getSignal(qmenubar.ObjectName(), C.GoString(msg))() -} diff --git a/qmenubar.h b/qmenubar.h deleted file mode 100644 index 03585ab4..00000000 --- a/qmenubar.h +++ /dev/null @@ -1,39 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QMenuBar_New_QWidget(QtObjectPtr parent); -void QMenuBar_Destroy(QtObjectPtr ptr); -QtObjectPtr QMenuBar_ActiveAction(QtObjectPtr ptr); -QtObjectPtr QMenuBar_AddAction_String(QtObjectPtr ptr, char* text); -QtObjectPtr QMenuBar_AddAction_String_QObject_String(QtObjectPtr ptr, char* text, QtObjectPtr receiver, char* member); -void QMenuBar_AddAction_QAction(QtObjectPtr ptr, QtObjectPtr action); -QtObjectPtr QMenuBar_AddMenu_QMenu(QtObjectPtr ptr, QtObjectPtr menu); -QtObjectPtr QMenuBar_AddMenu_String(QtObjectPtr ptr, char* title); -QtObjectPtr QMenuBar_AddSeparator(QtObjectPtr ptr); -void QMenuBar_Clear(QtObjectPtr ptr); -QtObjectPtr QMenuBar_CornerWidget_Corner(QtObjectPtr ptr, int corner); -QtObjectPtr QMenuBar_InsertMenu_QAction_QMenu(QtObjectPtr ptr, QtObjectPtr before, QtObjectPtr menu); -QtObjectPtr QMenuBar_InsertSeparator_QAction(QtObjectPtr ptr, QtObjectPtr before); -int QMenuBar_IsDefaultUp(QtObjectPtr ptr); -int QMenuBar_IsNativeMenuBar(QtObjectPtr ptr); -void QMenuBar_SetActiveAction_QAction(QtObjectPtr ptr, QtObjectPtr act); -void QMenuBar_SetCornerWidget_QWidget_Corner(QtObjectPtr ptr, QtObjectPtr widget, int corner); -void QMenuBar_SetDefaultUp_Bool(QtObjectPtr ptr, int defaultAction); -void QMenuBar_SetNativeMenuBar_Bool(QtObjectPtr ptr, int nativeMenuBar); -//Public Slots -void QMenuBar_ConnectSlotSetVisible(QtObjectPtr ptr); -void QMenuBar_DisconnectSlotSetVisible(QtObjectPtr ptr); -void QMenuBar_SetVisible_Bool(QtObjectPtr ptr, int visible); -//Signals -void QMenuBar_ConnectSignalHovered(QtObjectPtr ptr); -void QMenuBar_DisconnectSignalHovered(QtObjectPtr ptr); -void QMenuBar_ConnectSignalTriggered(QtObjectPtr ptr); -void QMenuBar_DisconnectSignalTriggered(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qmenubar.moc b/qmenubar.moc deleted file mode 100644 index ed16cbbc..00000000 --- a/qmenubar.moc +++ /dev/null @@ -1,125 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qmenubar.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qmenubar.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQMenuBar_t { - QByteArrayData data[4]; - char stringdata[36]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQMenuBar_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQMenuBar_t qt_meta_stringdata_MyQMenuBar = { - { -QT_MOC_LITERAL(0, 0, 10), // "MyQMenuBar" -QT_MOC_LITERAL(1, 11, 15), // "Slot_SetVisible" -QT_MOC_LITERAL(2, 27, 0), // "" -QT_MOC_LITERAL(3, 28, 7) // "visible" - - }, - "MyQMenuBar\0Slot_SetVisible\0\0visible" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQMenuBar[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 1, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 19, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, QMetaType::Bool, 3, - - 0 // eod -}; - -void MyQMenuBar::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQMenuBar *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_SetVisible((*reinterpret_cast< bool(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQMenuBar::*_t)(bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQMenuBar::Slot_SetVisible)) { - *result = 0; - } - } - } -} - -const QMetaObject MyQMenuBar::staticMetaObject = { - { &QMenuBar::staticMetaObject, qt_meta_stringdata_MyQMenuBar.data, - qt_meta_data_MyQMenuBar, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQMenuBar::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQMenuBar::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQMenuBar.stringdata)) - return static_cast(const_cast< MyQMenuBar*>(this)); - return QMenuBar::qt_metacast(_clname); -} - -int MyQMenuBar::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QMenuBar::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 1) - qt_static_metacall(this, _c, _id, _a); - _id -= 1; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 1) - *reinterpret_cast(_a[0]) = -1; - _id -= 1; - } - return _id; -} - -// SIGNAL 0 -void MyQMenuBar::Slot_SetVisible(bool _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -QT_END_MOC_NAMESPACE diff --git a/qml/cgo_darwin_amd64.go b/qml/cgo_darwin_amd64.go new file mode 100755 index 00000000..10ab3d58 --- /dev/null +++ b/qml/cgo_darwin_amd64.go @@ -0,0 +1,13 @@ +package qml + +/* +#cgo CPPFLAGS: -pipe -O2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 -Wall -W +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QML_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/mkspecs/macx-clang -F/usr/local/Qt5.5.1/5.5/clang_64/lib +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtCore.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtNetwork.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtQml.framework/Headers +#cgo CPPFLAGS: -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.framework/Headers + +#cgo LDFLAGS: -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 +#cgo LDFLAGS: -F/usr/local/Qt5.5.1/5.5/clang_64/lib -framework QtCore -framework QtNetwork -framework QtQml -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL +*/ +import "C" diff --git a/qml/cgo_linux_386.go b/qml/cgo_linux_386.go new file mode 100755 index 00000000..3aa2b6a3 --- /dev/null +++ b/qml/cgo_linux_386.go @@ -0,0 +1,12 @@ +package qml + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QML_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include -I/usr/local/Qt5.5.1/5.5/gcc/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc/include/QtNetwork -I/usr/local/Qt5.5.1/5.5/gcc/include/QtQml + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc/lib -L/usr/lib -lQt5Core -lQt5Network -lQt5Qml -lpthread +*/ +import "C" diff --git a/qml/cgo_linux_amd64.go b/qml/cgo_linux_amd64.go new file mode 100755 index 00000000..a17121e4 --- /dev/null +++ b/qml/cgo_linux_amd64.go @@ -0,0 +1,12 @@ +package qml + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QML_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include -I/usr/local/Qt5.5.1/5.5/gcc_64/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtNetwork -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtQml + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc_64/lib -L/usr/lib64 -lQt5Core -lQt5Network -lQt5Qml -lpthread +*/ +import "C" diff --git a/qml/cgo_windows_386.go b/qml/cgo_windows_386.go new file mode 100755 index 00000000..e85c7c17 --- /dev/null +++ b/qml/cgo_windows_386.go @@ -0,0 +1,12 @@ +package qml + +/* +#cgo CPPFLAGS: -pipe -fno-keep-inline-dllexport -O2 -Wall -Wextra -fexceptions -mthreads +#cgo CPPFLAGS: -DUNICODE -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QML_LIB +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include -IC:/Qt/Qt5.5.1/5.5/mingw492_32/mkspecs/win32-g++ +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtCore -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtNetwork -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtQml + +#cgo LDFLAGS: -Wl,-s -Wl,-subsystem,windows -mthreads +#cgo LDFLAGS: -LC:/Qt/Qt5.5.1/5.5/mingw492_32/bin -lQt5Core -lQt5Network -lQt5Qml +*/ +import "C" diff --git a/qml/qjsengine.cpp b/qml/qjsengine.cpp new file mode 100755 index 00000000..b5372cf6 --- /dev/null +++ b/qml/qjsengine.cpp @@ -0,0 +1,34 @@ +#include "qjsengine.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQJSEngine: public QJSEngine { +public: +}; + +QtObjectPtr QJSEngine_NewQJSEngine(){ + return new QJSEngine(); +} + +QtObjectPtr QJSEngine_NewQJSEngine2(QtObjectPtr parent){ + return new QJSEngine(static_cast(parent)); +} + +void QJSEngine_CollectGarbage(QtObjectPtr ptr){ + static_cast(ptr)->collectGarbage(); +} + +void QJSEngine_InstallTranslatorFunctions(QtObjectPtr ptr, QtObjectPtr object){ + static_cast(ptr)->installTranslatorFunctions(*static_cast(object)); +} + +void QJSEngine_DestroyQJSEngine(QtObjectPtr ptr){ + static_cast(ptr)->~QJSEngine(); +} + diff --git a/qml/qjsengine.go b/qml/qjsengine.go new file mode 100755 index 00000000..b9d8c6fa --- /dev/null +++ b/qml/qjsengine.go @@ -0,0 +1,65 @@ +package qml + +//#include "qjsengine.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QJSEngine struct { + core.QObject +} + +type QJSEngineITF interface { + core.QObjectITF + QJSEnginePTR() *QJSEngine +} + +func PointerFromQJSEngine(ptr QJSEngineITF) unsafe.Pointer { + if ptr != nil { + return ptr.QJSEnginePTR().Pointer() + } + return nil +} + +func QJSEngineFromPointer(ptr unsafe.Pointer) *QJSEngine { + var n = new(QJSEngine) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QJSEngine_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QJSEngine) QJSEnginePTR() *QJSEngine { + return ptr +} + +func NewQJSEngine() *QJSEngine { + return QJSEngineFromPointer(unsafe.Pointer(C.QJSEngine_NewQJSEngine())) +} + +func NewQJSEngine2(parent core.QObjectITF) *QJSEngine { + return QJSEngineFromPointer(unsafe.Pointer(C.QJSEngine_NewQJSEngine2(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QJSEngine) CollectGarbage() { + if ptr.Pointer() != nil { + C.QJSEngine_CollectGarbage(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QJSEngine) InstallTranslatorFunctions(object QJSValueITF) { + if ptr.Pointer() != nil { + C.QJSEngine_InstallTranslatorFunctions(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQJSValue(object))) + } +} + +func (ptr *QJSEngine) DestroyQJSEngine() { + if ptr.Pointer() != nil { + C.QJSEngine_DestroyQJSEngine(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/qml/qjsengine.h b/qml/qjsengine.h new file mode 100755 index 00000000..8ae920a2 --- /dev/null +++ b/qml/qjsengine.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QJSEngine_NewQJSEngine(); +QtObjectPtr QJSEngine_NewQJSEngine2(QtObjectPtr parent); +void QJSEngine_CollectGarbage(QtObjectPtr ptr); +void QJSEngine_InstallTranslatorFunctions(QtObjectPtr ptr, QtObjectPtr object); +void QJSEngine_DestroyQJSEngine(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/qml/qjsvalue.cpp b/qml/qjsvalue.cpp new file mode 100755 index 00000000..f29479c6 --- /dev/null +++ b/qml/qjsvalue.cpp @@ -0,0 +1,146 @@ +#include "qjsvalue.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQJSValue: public QJSValue { +public: +}; + +QtObjectPtr QJSValue_NewQJSValue3(QtObjectPtr other){ + return new QJSValue(*static_cast(other)); +} + +QtObjectPtr QJSValue_NewQJSValue(int value){ + return new QJSValue(static_cast(value)); +} + +QtObjectPtr QJSValue_NewQJSValue4(int value){ + return new QJSValue(value != 0); +} + +QtObjectPtr QJSValue_NewQJSValue2(QtObjectPtr other){ + return new QJSValue(*static_cast(other)); +} + +QtObjectPtr QJSValue_NewQJSValue9(QtObjectPtr value){ + return new QJSValue(*static_cast(value)); +} + +QtObjectPtr QJSValue_NewQJSValue8(char* value){ + return new QJSValue(QString(value)); +} + +QtObjectPtr QJSValue_NewQJSValue10(char* value){ + return new QJSValue(const_cast(value)); +} + +QtObjectPtr QJSValue_NewQJSValue5(int value){ + return new QJSValue(value); +} + +int QJSValue_DeleteProperty(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->deleteProperty(QString(name)); +} + +int QJSValue_Equals(QtObjectPtr ptr, QtObjectPtr other){ + return static_cast(ptr)->equals(*static_cast(other)); +} + +int QJSValue_HasOwnProperty(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->hasOwnProperty(QString(name)); +} + +int QJSValue_HasProperty(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->hasProperty(QString(name)); +} + +int QJSValue_IsArray(QtObjectPtr ptr){ + return static_cast(ptr)->isArray(); +} + +int QJSValue_IsBool(QtObjectPtr ptr){ + return static_cast(ptr)->isBool(); +} + +int QJSValue_IsCallable(QtObjectPtr ptr){ + return static_cast(ptr)->isCallable(); +} + +int QJSValue_IsDate(QtObjectPtr ptr){ + return static_cast(ptr)->isDate(); +} + +int QJSValue_IsError(QtObjectPtr ptr){ + return static_cast(ptr)->isError(); +} + +int QJSValue_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QJSValue_IsNumber(QtObjectPtr ptr){ + return static_cast(ptr)->isNumber(); +} + +int QJSValue_IsObject(QtObjectPtr ptr){ + return static_cast(ptr)->isObject(); +} + +int QJSValue_IsQObject(QtObjectPtr ptr){ + return static_cast(ptr)->isQObject(); +} + +int QJSValue_IsRegExp(QtObjectPtr ptr){ + return static_cast(ptr)->isRegExp(); +} + +int QJSValue_IsString(QtObjectPtr ptr){ + return static_cast(ptr)->isString(); +} + +int QJSValue_IsUndefined(QtObjectPtr ptr){ + return static_cast(ptr)->isUndefined(); +} + +int QJSValue_IsVariant(QtObjectPtr ptr){ + return static_cast(ptr)->isVariant(); +} + +void QJSValue_SetProperty(QtObjectPtr ptr, char* name, QtObjectPtr value){ + static_cast(ptr)->setProperty(QString(name), *static_cast(value)); +} + +void QJSValue_SetPrototype(QtObjectPtr ptr, QtObjectPtr prototype){ + static_cast(ptr)->setPrototype(*static_cast(prototype)); +} + +int QJSValue_StrictlyEquals(QtObjectPtr ptr, QtObjectPtr other){ + return static_cast(ptr)->strictlyEquals(*static_cast(other)); +} + +int QJSValue_ToBool(QtObjectPtr ptr){ + return static_cast(ptr)->toBool(); +} + +QtObjectPtr QJSValue_ToQObject(QtObjectPtr ptr){ + return static_cast(ptr)->toQObject(); +} + +char* QJSValue_ToString(QtObjectPtr ptr){ + return static_cast(ptr)->toString().toUtf8().data(); +} + +char* QJSValue_ToVariant(QtObjectPtr ptr){ + return static_cast(ptr)->toVariant().toString().toUtf8().data(); +} + +void QJSValue_DestroyQJSValue(QtObjectPtr ptr){ + static_cast(ptr)->~QJSValue(); +} + diff --git a/qml/qjsvalue.go b/qml/qjsvalue.go new file mode 100755 index 00000000..bacd1489 --- /dev/null +++ b/qml/qjsvalue.go @@ -0,0 +1,254 @@ +package qml + +//#include "qjsvalue.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QJSValue struct { + ptr unsafe.Pointer +} + +type QJSValueITF interface { + QJSValuePTR() *QJSValue +} + +func (p *QJSValue) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QJSValue) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQJSValue(ptr QJSValueITF) unsafe.Pointer { + if ptr != nil { + return ptr.QJSValuePTR().Pointer() + } + return nil +} + +func QJSValueFromPointer(ptr unsafe.Pointer) *QJSValue { + var n = new(QJSValue) + n.SetPointer(ptr) + return n +} + +func (ptr *QJSValue) QJSValuePTR() *QJSValue { + return ptr +} + +//QJSValue::SpecialValue +type QJSValue__SpecialValue int + +var ( + QJSValue__NullValue = QJSValue__SpecialValue(0) + QJSValue__UndefinedValue = QJSValue__SpecialValue(1) +) + +func NewQJSValue3(other QJSValueITF) *QJSValue { + return QJSValueFromPointer(unsafe.Pointer(C.QJSValue_NewQJSValue3(C.QtObjectPtr(PointerFromQJSValue(other))))) +} + +func NewQJSValue(value QJSValue__SpecialValue) *QJSValue { + return QJSValueFromPointer(unsafe.Pointer(C.QJSValue_NewQJSValue(C.int(value)))) +} + +func NewQJSValue4(value bool) *QJSValue { + return QJSValueFromPointer(unsafe.Pointer(C.QJSValue_NewQJSValue4(C.int(qt.GoBoolToInt(value))))) +} + +func NewQJSValue2(other QJSValueITF) *QJSValue { + return QJSValueFromPointer(unsafe.Pointer(C.QJSValue_NewQJSValue2(C.QtObjectPtr(PointerFromQJSValue(other))))) +} + +func NewQJSValue9(value core.QLatin1StringITF) *QJSValue { + return QJSValueFromPointer(unsafe.Pointer(C.QJSValue_NewQJSValue9(C.QtObjectPtr(core.PointerFromQLatin1String(value))))) +} + +func NewQJSValue8(value string) *QJSValue { + return QJSValueFromPointer(unsafe.Pointer(C.QJSValue_NewQJSValue8(C.CString(value)))) +} + +func NewQJSValue10(value string) *QJSValue { + return QJSValueFromPointer(unsafe.Pointer(C.QJSValue_NewQJSValue10(C.CString(value)))) +} + +func NewQJSValue5(value int) *QJSValue { + return QJSValueFromPointer(unsafe.Pointer(C.QJSValue_NewQJSValue5(C.int(value)))) +} + +func (ptr *QJSValue) DeleteProperty(name string) bool { + if ptr.Pointer() != nil { + return C.QJSValue_DeleteProperty(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) != 0 + } + return false +} + +func (ptr *QJSValue) Equals(other QJSValueITF) bool { + if ptr.Pointer() != nil { + return C.QJSValue_Equals(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQJSValue(other))) != 0 + } + return false +} + +func (ptr *QJSValue) HasOwnProperty(name string) bool { + if ptr.Pointer() != nil { + return C.QJSValue_HasOwnProperty(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) != 0 + } + return false +} + +func (ptr *QJSValue) HasProperty(name string) bool { + if ptr.Pointer() != nil { + return C.QJSValue_HasProperty(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) != 0 + } + return false +} + +func (ptr *QJSValue) IsArray() bool { + if ptr.Pointer() != nil { + return C.QJSValue_IsArray(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJSValue) IsBool() bool { + if ptr.Pointer() != nil { + return C.QJSValue_IsBool(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJSValue) IsCallable() bool { + if ptr.Pointer() != nil { + return C.QJSValue_IsCallable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJSValue) IsDate() bool { + if ptr.Pointer() != nil { + return C.QJSValue_IsDate(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJSValue) IsError() bool { + if ptr.Pointer() != nil { + return C.QJSValue_IsError(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJSValue) IsNull() bool { + if ptr.Pointer() != nil { + return C.QJSValue_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJSValue) IsNumber() bool { + if ptr.Pointer() != nil { + return C.QJSValue_IsNumber(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJSValue) IsObject() bool { + if ptr.Pointer() != nil { + return C.QJSValue_IsObject(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJSValue) IsQObject() bool { + if ptr.Pointer() != nil { + return C.QJSValue_IsQObject(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJSValue) IsRegExp() bool { + if ptr.Pointer() != nil { + return C.QJSValue_IsRegExp(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJSValue) IsString() bool { + if ptr.Pointer() != nil { + return C.QJSValue_IsString(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJSValue) IsUndefined() bool { + if ptr.Pointer() != nil { + return C.QJSValue_IsUndefined(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJSValue) IsVariant() bool { + if ptr.Pointer() != nil { + return C.QJSValue_IsVariant(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJSValue) SetProperty(name string, value QJSValueITF) { + if ptr.Pointer() != nil { + C.QJSValue_SetProperty(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.QtObjectPtr(PointerFromQJSValue(value))) + } +} + +func (ptr *QJSValue) SetPrototype(prototype QJSValueITF) { + if ptr.Pointer() != nil { + C.QJSValue_SetPrototype(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQJSValue(prototype))) + } +} + +func (ptr *QJSValue) StrictlyEquals(other QJSValueITF) bool { + if ptr.Pointer() != nil { + return C.QJSValue_StrictlyEquals(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQJSValue(other))) != 0 + } + return false +} + +func (ptr *QJSValue) ToBool() bool { + if ptr.Pointer() != nil { + return C.QJSValue_ToBool(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QJSValue) ToQObject() *core.QObject { + if ptr.Pointer() != nil { + return core.QObjectFromPointer(unsafe.Pointer(C.QJSValue_ToQObject(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QJSValue) ToString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QJSValue_ToString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QJSValue) ToVariant() string { + if ptr.Pointer() != nil { + return C.GoString(C.QJSValue_ToVariant(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QJSValue) DestroyQJSValue() { + if ptr.Pointer() != nil { + C.QJSValue_DestroyQJSValue(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/qml/qjsvalue.h b/qml/qjsvalue.h new file mode 100755 index 00000000..2367c934 --- /dev/null +++ b/qml/qjsvalue.h @@ -0,0 +1,42 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QJSValue_NewQJSValue3(QtObjectPtr other); +QtObjectPtr QJSValue_NewQJSValue(int value); +QtObjectPtr QJSValue_NewQJSValue4(int value); +QtObjectPtr QJSValue_NewQJSValue2(QtObjectPtr other); +QtObjectPtr QJSValue_NewQJSValue9(QtObjectPtr value); +QtObjectPtr QJSValue_NewQJSValue8(char* value); +QtObjectPtr QJSValue_NewQJSValue10(char* value); +QtObjectPtr QJSValue_NewQJSValue5(int value); +int QJSValue_DeleteProperty(QtObjectPtr ptr, char* name); +int QJSValue_Equals(QtObjectPtr ptr, QtObjectPtr other); +int QJSValue_HasOwnProperty(QtObjectPtr ptr, char* name); +int QJSValue_HasProperty(QtObjectPtr ptr, char* name); +int QJSValue_IsArray(QtObjectPtr ptr); +int QJSValue_IsBool(QtObjectPtr ptr); +int QJSValue_IsCallable(QtObjectPtr ptr); +int QJSValue_IsDate(QtObjectPtr ptr); +int QJSValue_IsError(QtObjectPtr ptr); +int QJSValue_IsNull(QtObjectPtr ptr); +int QJSValue_IsNumber(QtObjectPtr ptr); +int QJSValue_IsObject(QtObjectPtr ptr); +int QJSValue_IsQObject(QtObjectPtr ptr); +int QJSValue_IsRegExp(QtObjectPtr ptr); +int QJSValue_IsString(QtObjectPtr ptr); +int QJSValue_IsUndefined(QtObjectPtr ptr); +int QJSValue_IsVariant(QtObjectPtr ptr); +void QJSValue_SetProperty(QtObjectPtr ptr, char* name, QtObjectPtr value); +void QJSValue_SetPrototype(QtObjectPtr ptr, QtObjectPtr prototype); +int QJSValue_StrictlyEquals(QtObjectPtr ptr, QtObjectPtr other); +int QJSValue_ToBool(QtObjectPtr ptr); +QtObjectPtr QJSValue_ToQObject(QtObjectPtr ptr); +char* QJSValue_ToString(QtObjectPtr ptr); +char* QJSValue_ToVariant(QtObjectPtr ptr); +void QJSValue_DestroyQJSValue(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/qml/qjsvalueiterator.cpp b/qml/qjsvalueiterator.cpp new file mode 100755 index 00000000..e9903608 --- /dev/null +++ b/qml/qjsvalueiterator.cpp @@ -0,0 +1,9 @@ +#include "qjsvalueiterator.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/qml/qjsvalueiterator.go b/qml/qjsvalueiterator.go new file mode 100755 index 00000000..c07d6532 --- /dev/null +++ b/qml/qjsvalueiterator.go @@ -0,0 +1,40 @@ +package qml + +//#include "qjsvalueiterator.h" +import "C" +import ( + "unsafe" +) + +type QJSValueIterator struct { + ptr unsafe.Pointer +} + +type QJSValueIteratorITF interface { + QJSValueIteratorPTR() *QJSValueIterator +} + +func (p *QJSValueIterator) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QJSValueIterator) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQJSValueIterator(ptr QJSValueIteratorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QJSValueIteratorPTR().Pointer() + } + return nil +} + +func QJSValueIteratorFromPointer(ptr unsafe.Pointer) *QJSValueIterator { + var n = new(QJSValueIterator) + n.SetPointer(ptr) + return n +} + +func (ptr *QJSValueIterator) QJSValueIteratorPTR() *QJSValueIterator { + return ptr +} diff --git a/qml/qjsvalueiterator.h b/qml/qjsvalueiterator.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/qml/qjsvalueiterator.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/qml/qqmlabstracturlinterceptor.cpp b/qml/qqmlabstracturlinterceptor.cpp new file mode 100755 index 00000000..9597ac74 --- /dev/null +++ b/qml/qqmlabstracturlinterceptor.cpp @@ -0,0 +1,20 @@ +#include "qqmlabstracturlinterceptor.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQmlAbstractUrlInterceptor: public QQmlAbstractUrlInterceptor { +public: +}; + +char* QQmlAbstractUrlInterceptor_Intercept(QtObjectPtr ptr, char* url, int ty){ + return static_cast(ptr)->intercept(QUrl(QString(url)), static_cast(ty)).toString().toUtf8().data(); +} + +void QQmlAbstractUrlInterceptor_DestroyQQmlAbstractUrlInterceptor(QtObjectPtr ptr){ + static_cast(ptr)->~QQmlAbstractUrlInterceptor(); +} + diff --git a/qml/qqmlabstracturlinterceptor.go b/qml/qqmlabstracturlinterceptor.go new file mode 100755 index 00000000..4e9c104a --- /dev/null +++ b/qml/qqmlabstracturlinterceptor.go @@ -0,0 +1,63 @@ +package qml + +//#include "qqmlabstracturlinterceptor.h" +import "C" +import ( + "unsafe" +) + +type QQmlAbstractUrlInterceptor struct { + ptr unsafe.Pointer +} + +type QQmlAbstractUrlInterceptorITF interface { + QQmlAbstractUrlInterceptorPTR() *QQmlAbstractUrlInterceptor +} + +func (p *QQmlAbstractUrlInterceptor) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QQmlAbstractUrlInterceptor) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQQmlAbstractUrlInterceptor(ptr QQmlAbstractUrlInterceptorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQmlAbstractUrlInterceptorPTR().Pointer() + } + return nil +} + +func QQmlAbstractUrlInterceptorFromPointer(ptr unsafe.Pointer) *QQmlAbstractUrlInterceptor { + var n = new(QQmlAbstractUrlInterceptor) + n.SetPointer(ptr) + return n +} + +func (ptr *QQmlAbstractUrlInterceptor) QQmlAbstractUrlInterceptorPTR() *QQmlAbstractUrlInterceptor { + return ptr +} + +//QQmlAbstractUrlInterceptor::DataType +type QQmlAbstractUrlInterceptor__DataType int + +var ( + QQmlAbstractUrlInterceptor__QmlFile = QQmlAbstractUrlInterceptor__DataType(0) + QQmlAbstractUrlInterceptor__JavaScriptFile = QQmlAbstractUrlInterceptor__DataType(1) + QQmlAbstractUrlInterceptor__QmldirFile = QQmlAbstractUrlInterceptor__DataType(2) + QQmlAbstractUrlInterceptor__UrlString = QQmlAbstractUrlInterceptor__DataType(0x1000) +) + +func (ptr *QQmlAbstractUrlInterceptor) Intercept(url string, ty QQmlAbstractUrlInterceptor__DataType) string { + if ptr.Pointer() != nil { + return C.GoString(C.QQmlAbstractUrlInterceptor_Intercept(C.QtObjectPtr(ptr.Pointer()), C.CString(url), C.int(ty))) + } + return "" +} + +func (ptr *QQmlAbstractUrlInterceptor) DestroyQQmlAbstractUrlInterceptor() { + if ptr.Pointer() != nil { + C.QQmlAbstractUrlInterceptor_DestroyQQmlAbstractUrlInterceptor(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/qml/qqmlabstracturlinterceptor.h b/qml/qqmlabstracturlinterceptor.h new file mode 100755 index 00000000..a41afae8 --- /dev/null +++ b/qml/qqmlabstracturlinterceptor.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QQmlAbstractUrlInterceptor_Intercept(QtObjectPtr ptr, char* url, int ty); +void QQmlAbstractUrlInterceptor_DestroyQQmlAbstractUrlInterceptor(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/qml/qqmlapplicationengine.cpp b/qml/qqmlapplicationengine.cpp new file mode 100755 index 00000000..a7a0d5c6 --- /dev/null +++ b/qml/qqmlapplicationengine.cpp @@ -0,0 +1,52 @@ +#include "qqmlapplicationengine.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQmlApplicationEngine: public QQmlApplicationEngine { +public: +void Signal_ObjectCreated(QObject * object, const QUrl & url){callbackQQmlApplicationEngineObjectCreated(this->objectName().toUtf8().data(), object, url.toString().toUtf8().data());}; +}; + +QtObjectPtr QQmlApplicationEngine_NewQQmlApplicationEngine(QtObjectPtr parent){ + return new QQmlApplicationEngine(static_cast(parent)); +} + +QtObjectPtr QQmlApplicationEngine_NewQQmlApplicationEngine3(char* filePath, QtObjectPtr parent){ + return new QQmlApplicationEngine(QString(filePath), static_cast(parent)); +} + +QtObjectPtr QQmlApplicationEngine_NewQQmlApplicationEngine2(char* url, QtObjectPtr parent){ + return new QQmlApplicationEngine(QUrl(QString(url)), static_cast(parent)); +} + +void QQmlApplicationEngine_Load2(QtObjectPtr ptr, char* filePath){ + QMetaObject::invokeMethod(static_cast(ptr), "load", Q_ARG(QString, QString(filePath))); +} + +void QQmlApplicationEngine_Load(QtObjectPtr ptr, char* url){ + QMetaObject::invokeMethod(static_cast(ptr), "load", Q_ARG(QUrl, QUrl(QString(url)))); +} + +void QQmlApplicationEngine_LoadData(QtObjectPtr ptr, QtObjectPtr data, char* url){ + QMetaObject::invokeMethod(static_cast(ptr), "loadData", Q_ARG(QByteArray, *static_cast(data)), Q_ARG(QUrl, QUrl(QString(url)))); +} + +void QQmlApplicationEngine_ConnectObjectCreated(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQmlApplicationEngine::objectCreated), static_cast(ptr), static_cast(&MyQQmlApplicationEngine::Signal_ObjectCreated));; +} + +void QQmlApplicationEngine_DisconnectObjectCreated(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQmlApplicationEngine::objectCreated), static_cast(ptr), static_cast(&MyQQmlApplicationEngine::Signal_ObjectCreated));; +} + +void QQmlApplicationEngine_DestroyQQmlApplicationEngine(QtObjectPtr ptr){ + static_cast(ptr)->~QQmlApplicationEngine(); +} + diff --git a/qml/qqmlapplicationengine.go b/qml/qqmlapplicationengine.go new file mode 100755 index 00000000..75286611 --- /dev/null +++ b/qml/qqmlapplicationengine.go @@ -0,0 +1,94 @@ +package qml + +//#include "qqmlapplicationengine.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QQmlApplicationEngine struct { + QQmlEngine +} + +type QQmlApplicationEngineITF interface { + QQmlEngineITF + QQmlApplicationEnginePTR() *QQmlApplicationEngine +} + +func PointerFromQQmlApplicationEngine(ptr QQmlApplicationEngineITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQmlApplicationEnginePTR().Pointer() + } + return nil +} + +func QQmlApplicationEngineFromPointer(ptr unsafe.Pointer) *QQmlApplicationEngine { + var n = new(QQmlApplicationEngine) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QQmlApplicationEngine_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QQmlApplicationEngine) QQmlApplicationEnginePTR() *QQmlApplicationEngine { + return ptr +} + +func NewQQmlApplicationEngine(parent core.QObjectITF) *QQmlApplicationEngine { + return QQmlApplicationEngineFromPointer(unsafe.Pointer(C.QQmlApplicationEngine_NewQQmlApplicationEngine(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQQmlApplicationEngine3(filePath string, parent core.QObjectITF) *QQmlApplicationEngine { + return QQmlApplicationEngineFromPointer(unsafe.Pointer(C.QQmlApplicationEngine_NewQQmlApplicationEngine3(C.CString(filePath), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQQmlApplicationEngine2(url string, parent core.QObjectITF) *QQmlApplicationEngine { + return QQmlApplicationEngineFromPointer(unsafe.Pointer(C.QQmlApplicationEngine_NewQQmlApplicationEngine2(C.CString(url), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QQmlApplicationEngine) Load2(filePath string) { + if ptr.Pointer() != nil { + C.QQmlApplicationEngine_Load2(C.QtObjectPtr(ptr.Pointer()), C.CString(filePath)) + } +} + +func (ptr *QQmlApplicationEngine) Load(url string) { + if ptr.Pointer() != nil { + C.QQmlApplicationEngine_Load(C.QtObjectPtr(ptr.Pointer()), C.CString(url)) + } +} + +func (ptr *QQmlApplicationEngine) LoadData(data core.QByteArrayITF, url string) { + if ptr.Pointer() != nil { + C.QQmlApplicationEngine_LoadData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(data)), C.CString(url)) + } +} + +func (ptr *QQmlApplicationEngine) ConnectObjectCreated(f func(object core.QObjectITF, url string)) { + if ptr.Pointer() != nil { + C.QQmlApplicationEngine_ConnectObjectCreated(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "objectCreated", f) + } +} + +func (ptr *QQmlApplicationEngine) DisconnectObjectCreated() { + if ptr.Pointer() != nil { + C.QQmlApplicationEngine_DisconnectObjectCreated(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "objectCreated") + } +} + +//export callbackQQmlApplicationEngineObjectCreated +func callbackQQmlApplicationEngineObjectCreated(ptrName *C.char, object unsafe.Pointer, url *C.char) { + qt.GetSignal(C.GoString(ptrName), "objectCreated").(func(*core.QObject, string))(core.QObjectFromPointer(object), C.GoString(url)) +} + +func (ptr *QQmlApplicationEngine) DestroyQQmlApplicationEngine() { + if ptr.Pointer() != nil { + C.QQmlApplicationEngine_DestroyQQmlApplicationEngine(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/qml/qqmlapplicationengine.h b/qml/qqmlapplicationengine.h new file mode 100755 index 00000000..735f8a04 --- /dev/null +++ b/qml/qqmlapplicationengine.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QQmlApplicationEngine_NewQQmlApplicationEngine(QtObjectPtr parent); +QtObjectPtr QQmlApplicationEngine_NewQQmlApplicationEngine3(char* filePath, QtObjectPtr parent); +QtObjectPtr QQmlApplicationEngine_NewQQmlApplicationEngine2(char* url, QtObjectPtr parent); +void QQmlApplicationEngine_Load2(QtObjectPtr ptr, char* filePath); +void QQmlApplicationEngine_Load(QtObjectPtr ptr, char* url); +void QQmlApplicationEngine_LoadData(QtObjectPtr ptr, QtObjectPtr data, char* url); +void QQmlApplicationEngine_ConnectObjectCreated(QtObjectPtr ptr); +void QQmlApplicationEngine_DisconnectObjectCreated(QtObjectPtr ptr); +void QQmlApplicationEngine_DestroyQQmlApplicationEngine(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/qml/qqmlcomponent.cpp b/qml/qqmlcomponent.cpp new file mode 100755 index 00000000..f728f20d --- /dev/null +++ b/qml/qqmlcomponent.cpp @@ -0,0 +1,107 @@ +#include "qqmlcomponent.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQmlComponent: public QQmlComponent { +public: +void Signal_StatusChanged(QQmlComponent::Status status){callbackQQmlComponentStatusChanged(this->objectName().toUtf8().data(), status);}; +}; + +int QQmlComponent_Status(QtObjectPtr ptr){ + return static_cast(ptr)->status(); +} + +char* QQmlComponent_Url(QtObjectPtr ptr){ + return static_cast(ptr)->url().toString().toUtf8().data(); +} + +QtObjectPtr QQmlComponent_NewQQmlComponent(QtObjectPtr engine, QtObjectPtr parent){ + return new QQmlComponent(static_cast(engine), static_cast(parent)); +} + +QtObjectPtr QQmlComponent_NewQQmlComponent4(QtObjectPtr engine, char* fileName, int mode, QtObjectPtr parent){ + return new QQmlComponent(static_cast(engine), QString(fileName), static_cast(mode), static_cast(parent)); +} + +QtObjectPtr QQmlComponent_NewQQmlComponent3(QtObjectPtr engine, char* fileName, QtObjectPtr parent){ + return new QQmlComponent(static_cast(engine), QString(fileName), static_cast(parent)); +} + +QtObjectPtr QQmlComponent_NewQQmlComponent6(QtObjectPtr engine, char* url, int mode, QtObjectPtr parent){ + return new QQmlComponent(static_cast(engine), QUrl(QString(url)), static_cast(mode), static_cast(parent)); +} + +QtObjectPtr QQmlComponent_NewQQmlComponent5(QtObjectPtr engine, char* url, QtObjectPtr parent){ + return new QQmlComponent(static_cast(engine), QUrl(QString(url)), static_cast(parent)); +} + +QtObjectPtr QQmlComponent_BeginCreate(QtObjectPtr ptr, QtObjectPtr publicContext){ + return static_cast(ptr)->beginCreate(static_cast(publicContext)); +} + +void QQmlComponent_CompleteCreate(QtObjectPtr ptr){ + static_cast(ptr)->completeCreate(); +} + +QtObjectPtr QQmlComponent_Create(QtObjectPtr ptr, QtObjectPtr context){ + return static_cast(ptr)->create(static_cast(context)); +} + +void QQmlComponent_Create2(QtObjectPtr ptr, QtObjectPtr incubator, QtObjectPtr context, QtObjectPtr forContext){ + static_cast(ptr)->create(*static_cast(incubator), static_cast(context), static_cast(forContext)); +} + +QtObjectPtr QQmlComponent_CreationContext(QtObjectPtr ptr){ + return static_cast(ptr)->creationContext(); +} + +int QQmlComponent_IsError(QtObjectPtr ptr){ + return static_cast(ptr)->isError(); +} + +int QQmlComponent_IsLoading(QtObjectPtr ptr){ + return static_cast(ptr)->isLoading(); +} + +int QQmlComponent_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QQmlComponent_IsReady(QtObjectPtr ptr){ + return static_cast(ptr)->isReady(); +} + +void QQmlComponent_LoadUrl(QtObjectPtr ptr, char* url){ + QMetaObject::invokeMethod(static_cast(ptr), "loadUrl", Q_ARG(QUrl, QUrl(QString(url)))); +} + +void QQmlComponent_LoadUrl2(QtObjectPtr ptr, char* url, int mode){ + QMetaObject::invokeMethod(static_cast(ptr), "loadUrl", Q_ARG(QUrl, QUrl(QString(url))), Q_ARG(QQmlComponent::CompilationMode, static_cast(mode))); +} + +void QQmlComponent_SetData(QtObjectPtr ptr, QtObjectPtr data, char* url){ + QMetaObject::invokeMethod(static_cast(ptr), "setData", Q_ARG(QByteArray, *static_cast(data)), Q_ARG(QUrl, QUrl(QString(url)))); +} + +void QQmlComponent_ConnectStatusChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQmlComponent::statusChanged), static_cast(ptr), static_cast(&MyQQmlComponent::Signal_StatusChanged));; +} + +void QQmlComponent_DisconnectStatusChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQmlComponent::statusChanged), static_cast(ptr), static_cast(&MyQQmlComponent::Signal_StatusChanged));; +} + +void QQmlComponent_DestroyQQmlComponent(QtObjectPtr ptr){ + static_cast(ptr)->~QQmlComponent(); +} + diff --git a/qml/qqmlcomponent.go b/qml/qqmlcomponent.go new file mode 100755 index 00000000..17eaf2c2 --- /dev/null +++ b/qml/qqmlcomponent.go @@ -0,0 +1,195 @@ +package qml + +//#include "qqmlcomponent.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QQmlComponent struct { + core.QObject +} + +type QQmlComponentITF interface { + core.QObjectITF + QQmlComponentPTR() *QQmlComponent +} + +func PointerFromQQmlComponent(ptr QQmlComponentITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQmlComponentPTR().Pointer() + } + return nil +} + +func QQmlComponentFromPointer(ptr unsafe.Pointer) *QQmlComponent { + var n = new(QQmlComponent) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QQmlComponent_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QQmlComponent) QQmlComponentPTR() *QQmlComponent { + return ptr +} + +//QQmlComponent::CompilationMode +type QQmlComponent__CompilationMode int + +var ( + QQmlComponent__PreferSynchronous = QQmlComponent__CompilationMode(0) + QQmlComponent__Asynchronous = QQmlComponent__CompilationMode(1) +) + +//QQmlComponent::Status +type QQmlComponent__Status int + +var ( + QQmlComponent__Null = QQmlComponent__Status(0) + QQmlComponent__Ready = QQmlComponent__Status(1) + QQmlComponent__Loading = QQmlComponent__Status(2) + QQmlComponent__Error = QQmlComponent__Status(3) +) + +func (ptr *QQmlComponent) Status() QQmlComponent__Status { + if ptr.Pointer() != nil { + return QQmlComponent__Status(C.QQmlComponent_Status(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QQmlComponent) Url() string { + if ptr.Pointer() != nil { + return C.GoString(C.QQmlComponent_Url(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func NewQQmlComponent(engine QQmlEngineITF, parent core.QObjectITF) *QQmlComponent { + return QQmlComponentFromPointer(unsafe.Pointer(C.QQmlComponent_NewQQmlComponent(C.QtObjectPtr(PointerFromQQmlEngine(engine)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQQmlComponent4(engine QQmlEngineITF, fileName string, mode QQmlComponent__CompilationMode, parent core.QObjectITF) *QQmlComponent { + return QQmlComponentFromPointer(unsafe.Pointer(C.QQmlComponent_NewQQmlComponent4(C.QtObjectPtr(PointerFromQQmlEngine(engine)), C.CString(fileName), C.int(mode), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQQmlComponent3(engine QQmlEngineITF, fileName string, parent core.QObjectITF) *QQmlComponent { + return QQmlComponentFromPointer(unsafe.Pointer(C.QQmlComponent_NewQQmlComponent3(C.QtObjectPtr(PointerFromQQmlEngine(engine)), C.CString(fileName), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQQmlComponent6(engine QQmlEngineITF, url string, mode QQmlComponent__CompilationMode, parent core.QObjectITF) *QQmlComponent { + return QQmlComponentFromPointer(unsafe.Pointer(C.QQmlComponent_NewQQmlComponent6(C.QtObjectPtr(PointerFromQQmlEngine(engine)), C.CString(url), C.int(mode), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQQmlComponent5(engine QQmlEngineITF, url string, parent core.QObjectITF) *QQmlComponent { + return QQmlComponentFromPointer(unsafe.Pointer(C.QQmlComponent_NewQQmlComponent5(C.QtObjectPtr(PointerFromQQmlEngine(engine)), C.CString(url), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QQmlComponent) BeginCreate(publicContext QQmlContextITF) *core.QObject { + if ptr.Pointer() != nil { + return core.QObjectFromPointer(unsafe.Pointer(C.QQmlComponent_BeginCreate(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQQmlContext(publicContext))))) + } + return nil +} + +func (ptr *QQmlComponent) CompleteCreate() { + if ptr.Pointer() != nil { + C.QQmlComponent_CompleteCreate(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QQmlComponent) Create(context QQmlContextITF) *core.QObject { + if ptr.Pointer() != nil { + return core.QObjectFromPointer(unsafe.Pointer(C.QQmlComponent_Create(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQQmlContext(context))))) + } + return nil +} + +func (ptr *QQmlComponent) Create2(incubator QQmlIncubatorITF, context QQmlContextITF, forContext QQmlContextITF) { + if ptr.Pointer() != nil { + C.QQmlComponent_Create2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQQmlIncubator(incubator)), C.QtObjectPtr(PointerFromQQmlContext(context)), C.QtObjectPtr(PointerFromQQmlContext(forContext))) + } +} + +func (ptr *QQmlComponent) CreationContext() *QQmlContext { + if ptr.Pointer() != nil { + return QQmlContextFromPointer(unsafe.Pointer(C.QQmlComponent_CreationContext(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQmlComponent) IsError() bool { + if ptr.Pointer() != nil { + return C.QQmlComponent_IsError(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlComponent) IsLoading() bool { + if ptr.Pointer() != nil { + return C.QQmlComponent_IsLoading(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlComponent) IsNull() bool { + if ptr.Pointer() != nil { + return C.QQmlComponent_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlComponent) IsReady() bool { + if ptr.Pointer() != nil { + return C.QQmlComponent_IsReady(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlComponent) LoadUrl(url string) { + if ptr.Pointer() != nil { + C.QQmlComponent_LoadUrl(C.QtObjectPtr(ptr.Pointer()), C.CString(url)) + } +} + +func (ptr *QQmlComponent) LoadUrl2(url string, mode QQmlComponent__CompilationMode) { + if ptr.Pointer() != nil { + C.QQmlComponent_LoadUrl2(C.QtObjectPtr(ptr.Pointer()), C.CString(url), C.int(mode)) + } +} + +func (ptr *QQmlComponent) SetData(data core.QByteArrayITF, url string) { + if ptr.Pointer() != nil { + C.QQmlComponent_SetData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(data)), C.CString(url)) + } +} + +func (ptr *QQmlComponent) ConnectStatusChanged(f func(status QQmlComponent__Status)) { + if ptr.Pointer() != nil { + C.QQmlComponent_ConnectStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "statusChanged", f) + } +} + +func (ptr *QQmlComponent) DisconnectStatusChanged() { + if ptr.Pointer() != nil { + C.QQmlComponent_DisconnectStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "statusChanged") + } +} + +//export callbackQQmlComponentStatusChanged +func callbackQQmlComponentStatusChanged(ptrName *C.char, status C.int) { + qt.GetSignal(C.GoString(ptrName), "statusChanged").(func(QQmlComponent__Status))(QQmlComponent__Status(status)) +} + +func (ptr *QQmlComponent) DestroyQQmlComponent() { + if ptr.Pointer() != nil { + C.QQmlComponent_DestroyQQmlComponent(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/qml/qqmlcomponent.h b/qml/qqmlcomponent.h new file mode 100755 index 00000000..2d322f62 --- /dev/null +++ b/qml/qqmlcomponent.h @@ -0,0 +1,31 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QQmlComponent_Status(QtObjectPtr ptr); +char* QQmlComponent_Url(QtObjectPtr ptr); +QtObjectPtr QQmlComponent_NewQQmlComponent(QtObjectPtr engine, QtObjectPtr parent); +QtObjectPtr QQmlComponent_NewQQmlComponent4(QtObjectPtr engine, char* fileName, int mode, QtObjectPtr parent); +QtObjectPtr QQmlComponent_NewQQmlComponent3(QtObjectPtr engine, char* fileName, QtObjectPtr parent); +QtObjectPtr QQmlComponent_NewQQmlComponent6(QtObjectPtr engine, char* url, int mode, QtObjectPtr parent); +QtObjectPtr QQmlComponent_NewQQmlComponent5(QtObjectPtr engine, char* url, QtObjectPtr parent); +QtObjectPtr QQmlComponent_BeginCreate(QtObjectPtr ptr, QtObjectPtr publicContext); +void QQmlComponent_CompleteCreate(QtObjectPtr ptr); +QtObjectPtr QQmlComponent_Create(QtObjectPtr ptr, QtObjectPtr context); +void QQmlComponent_Create2(QtObjectPtr ptr, QtObjectPtr incubator, QtObjectPtr context, QtObjectPtr forContext); +QtObjectPtr QQmlComponent_CreationContext(QtObjectPtr ptr); +int QQmlComponent_IsError(QtObjectPtr ptr); +int QQmlComponent_IsLoading(QtObjectPtr ptr); +int QQmlComponent_IsNull(QtObjectPtr ptr); +int QQmlComponent_IsReady(QtObjectPtr ptr); +void QQmlComponent_LoadUrl(QtObjectPtr ptr, char* url); +void QQmlComponent_LoadUrl2(QtObjectPtr ptr, char* url, int mode); +void QQmlComponent_SetData(QtObjectPtr ptr, QtObjectPtr data, char* url); +void QQmlComponent_ConnectStatusChanged(QtObjectPtr ptr); +void QQmlComponent_DisconnectStatusChanged(QtObjectPtr ptr); +void QQmlComponent_DestroyQQmlComponent(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/qml/qqmlcontext.cpp b/qml/qqmlcontext.cpp new file mode 100755 index 00000000..f4d62c86 --- /dev/null +++ b/qml/qqmlcontext.cpp @@ -0,0 +1,74 @@ +#include "qqmlcontext.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQmlContext: public QQmlContext { +public: +}; + +QtObjectPtr QQmlContext_NewQQmlContext2(QtObjectPtr parentContext, QtObjectPtr parent){ + return new QQmlContext(static_cast(parentContext), static_cast(parent)); +} + +QtObjectPtr QQmlContext_NewQQmlContext(QtObjectPtr engine, QtObjectPtr parent){ + return new QQmlContext(static_cast(engine), static_cast(parent)); +} + +char* QQmlContext_BaseUrl(QtObjectPtr ptr){ + return static_cast(ptr)->baseUrl().toString().toUtf8().data(); +} + +QtObjectPtr QQmlContext_ContextObject(QtObjectPtr ptr){ + return static_cast(ptr)->contextObject(); +} + +char* QQmlContext_ContextProperty(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->contextProperty(QString(name)).toString().toUtf8().data(); +} + +QtObjectPtr QQmlContext_Engine(QtObjectPtr ptr){ + return static_cast(ptr)->engine(); +} + +int QQmlContext_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +char* QQmlContext_NameForObject(QtObjectPtr ptr, QtObjectPtr object){ + return static_cast(ptr)->nameForObject(static_cast(object)).toUtf8().data(); +} + +QtObjectPtr QQmlContext_ParentContext(QtObjectPtr ptr){ + return static_cast(ptr)->parentContext(); +} + +char* QQmlContext_ResolvedUrl(QtObjectPtr ptr, char* src){ + return static_cast(ptr)->resolvedUrl(QUrl(QString(src))).toString().toUtf8().data(); +} + +void QQmlContext_SetBaseUrl(QtObjectPtr ptr, char* baseUrl){ + static_cast(ptr)->setBaseUrl(QUrl(QString(baseUrl))); +} + +void QQmlContext_SetContextObject(QtObjectPtr ptr, QtObjectPtr object){ + static_cast(ptr)->setContextObject(static_cast(object)); +} + +void QQmlContext_SetContextProperty(QtObjectPtr ptr, char* name, QtObjectPtr value){ + static_cast(ptr)->setContextProperty(QString(name), static_cast(value)); +} + +void QQmlContext_SetContextProperty2(QtObjectPtr ptr, char* name, char* value){ + static_cast(ptr)->setContextProperty(QString(name), QVariant(value)); +} + +void QQmlContext_DestroyQQmlContext(QtObjectPtr ptr){ + static_cast(ptr)->~QQmlContext(); +} + diff --git a/qml/qqmlcontext.go b/qml/qqmlcontext.go new file mode 100755 index 00000000..1811df5e --- /dev/null +++ b/qml/qqmlcontext.go @@ -0,0 +1,133 @@ +package qml + +//#include "qqmlcontext.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QQmlContext struct { + core.QObject +} + +type QQmlContextITF interface { + core.QObjectITF + QQmlContextPTR() *QQmlContext +} + +func PointerFromQQmlContext(ptr QQmlContextITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQmlContextPTR().Pointer() + } + return nil +} + +func QQmlContextFromPointer(ptr unsafe.Pointer) *QQmlContext { + var n = new(QQmlContext) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QQmlContext_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QQmlContext) QQmlContextPTR() *QQmlContext { + return ptr +} + +func NewQQmlContext2(parentContext QQmlContextITF, parent core.QObjectITF) *QQmlContext { + return QQmlContextFromPointer(unsafe.Pointer(C.QQmlContext_NewQQmlContext2(C.QtObjectPtr(PointerFromQQmlContext(parentContext)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQQmlContext(engine QQmlEngineITF, parent core.QObjectITF) *QQmlContext { + return QQmlContextFromPointer(unsafe.Pointer(C.QQmlContext_NewQQmlContext(C.QtObjectPtr(PointerFromQQmlEngine(engine)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QQmlContext) BaseUrl() string { + if ptr.Pointer() != nil { + return C.GoString(C.QQmlContext_BaseUrl(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QQmlContext) ContextObject() *core.QObject { + if ptr.Pointer() != nil { + return core.QObjectFromPointer(unsafe.Pointer(C.QQmlContext_ContextObject(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQmlContext) ContextProperty(name string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QQmlContext_ContextProperty(C.QtObjectPtr(ptr.Pointer()), C.CString(name))) + } + return "" +} + +func (ptr *QQmlContext) Engine() *QQmlEngine { + if ptr.Pointer() != nil { + return QQmlEngineFromPointer(unsafe.Pointer(C.QQmlContext_Engine(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQmlContext) IsValid() bool { + if ptr.Pointer() != nil { + return C.QQmlContext_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlContext) NameForObject(object core.QObjectITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QQmlContext_NameForObject(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(object)))) + } + return "" +} + +func (ptr *QQmlContext) ParentContext() *QQmlContext { + if ptr.Pointer() != nil { + return QQmlContextFromPointer(unsafe.Pointer(C.QQmlContext_ParentContext(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQmlContext) ResolvedUrl(src string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QQmlContext_ResolvedUrl(C.QtObjectPtr(ptr.Pointer()), C.CString(src))) + } + return "" +} + +func (ptr *QQmlContext) SetBaseUrl(baseUrl string) { + if ptr.Pointer() != nil { + C.QQmlContext_SetBaseUrl(C.QtObjectPtr(ptr.Pointer()), C.CString(baseUrl)) + } +} + +func (ptr *QQmlContext) SetContextObject(object core.QObjectITF) { + if ptr.Pointer() != nil { + C.QQmlContext_SetContextObject(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(object))) + } +} + +func (ptr *QQmlContext) SetContextProperty(name string, value core.QObjectITF) { + if ptr.Pointer() != nil { + C.QQmlContext_SetContextProperty(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.QtObjectPtr(core.PointerFromQObject(value))) + } +} + +func (ptr *QQmlContext) SetContextProperty2(name string, value string) { + if ptr.Pointer() != nil { + C.QQmlContext_SetContextProperty2(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.CString(value)) + } +} + +func (ptr *QQmlContext) DestroyQQmlContext() { + if ptr.Pointer() != nil { + C.QQmlContext_DestroyQQmlContext(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/qml/qqmlcontext.h b/qml/qqmlcontext.h new file mode 100755 index 00000000..4845e7c6 --- /dev/null +++ b/qml/qqmlcontext.h @@ -0,0 +1,24 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QQmlContext_NewQQmlContext2(QtObjectPtr parentContext, QtObjectPtr parent); +QtObjectPtr QQmlContext_NewQQmlContext(QtObjectPtr engine, QtObjectPtr parent); +char* QQmlContext_BaseUrl(QtObjectPtr ptr); +QtObjectPtr QQmlContext_ContextObject(QtObjectPtr ptr); +char* QQmlContext_ContextProperty(QtObjectPtr ptr, char* name); +QtObjectPtr QQmlContext_Engine(QtObjectPtr ptr); +int QQmlContext_IsValid(QtObjectPtr ptr); +char* QQmlContext_NameForObject(QtObjectPtr ptr, QtObjectPtr object); +QtObjectPtr QQmlContext_ParentContext(QtObjectPtr ptr); +char* QQmlContext_ResolvedUrl(QtObjectPtr ptr, char* src); +void QQmlContext_SetBaseUrl(QtObjectPtr ptr, char* baseUrl); +void QQmlContext_SetContextObject(QtObjectPtr ptr, QtObjectPtr object); +void QQmlContext_SetContextProperty(QtObjectPtr ptr, char* name, QtObjectPtr value); +void QQmlContext_SetContextProperty2(QtObjectPtr ptr, char* name, char* value); +void QQmlContext_DestroyQQmlContext(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/qml/qqmlengine.cpp b/qml/qqmlengine.cpp new file mode 100755 index 00000000..8b6d5b0d --- /dev/null +++ b/qml/qqmlengine.cpp @@ -0,0 +1,142 @@ +#include "qqmlengine.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQmlEngine: public QQmlEngine { +public: +void Signal_Quit(){callbackQQmlEngineQuit(this->objectName().toUtf8().data());}; +}; + +char* QQmlEngine_OfflineStoragePath(QtObjectPtr ptr){ + return static_cast(ptr)->offlineStoragePath().toUtf8().data(); +} + +void QQmlEngine_SetOfflineStoragePath(QtObjectPtr ptr, char* dir){ + static_cast(ptr)->setOfflineStoragePath(QString(dir)); +} + +QtObjectPtr QQmlEngine_NewQQmlEngine(QtObjectPtr parent){ + return new QQmlEngine(static_cast(parent)); +} + +void QQmlEngine_AddImageProvider(QtObjectPtr ptr, char* providerId, QtObjectPtr provider){ + static_cast(ptr)->addImageProvider(QString(providerId), static_cast(provider)); +} + +void QQmlEngine_AddImportPath(QtObjectPtr ptr, char* path){ + static_cast(ptr)->addImportPath(QString(path)); +} + +void QQmlEngine_AddPluginPath(QtObjectPtr ptr, char* path){ + static_cast(ptr)->addPluginPath(QString(path)); +} + +char* QQmlEngine_BaseUrl(QtObjectPtr ptr){ + return static_cast(ptr)->baseUrl().toString().toUtf8().data(); +} + +void QQmlEngine_ClearComponentCache(QtObjectPtr ptr){ + static_cast(ptr)->clearComponentCache(); +} + +QtObjectPtr QQmlEngine_QQmlEngine_ContextForObject(QtObjectPtr object){ + return QQmlEngine::contextForObject(static_cast(object)); +} + +QtObjectPtr QQmlEngine_ImageProvider(QtObjectPtr ptr, char* providerId){ + return static_cast(ptr)->imageProvider(QString(providerId)); +} + +char* QQmlEngine_ImportPathList(QtObjectPtr ptr){ + return static_cast(ptr)->importPathList().join("|").toUtf8().data(); +} + +QtObjectPtr QQmlEngine_IncubationController(QtObjectPtr ptr){ + return static_cast(ptr)->incubationController(); +} + +QtObjectPtr QQmlEngine_NetworkAccessManager(QtObjectPtr ptr){ + return static_cast(ptr)->networkAccessManager(); +} + +QtObjectPtr QQmlEngine_NetworkAccessManagerFactory(QtObjectPtr ptr){ + return static_cast(ptr)->networkAccessManagerFactory(); +} + +int QQmlEngine_QQmlEngine_ObjectOwnership(QtObjectPtr object){ + return QQmlEngine::objectOwnership(static_cast(object)); +} + +int QQmlEngine_OutputWarningsToStandardError(QtObjectPtr ptr){ + return static_cast(ptr)->outputWarningsToStandardError(); +} + +char* QQmlEngine_PluginPathList(QtObjectPtr ptr){ + return static_cast(ptr)->pluginPathList().join("|").toUtf8().data(); +} + +void QQmlEngine_ConnectQuit(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQmlEngine::quit), static_cast(ptr), static_cast(&MyQQmlEngine::Signal_Quit));; +} + +void QQmlEngine_DisconnectQuit(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQmlEngine::quit), static_cast(ptr), static_cast(&MyQQmlEngine::Signal_Quit));; +} + +void QQmlEngine_RemoveImageProvider(QtObjectPtr ptr, char* providerId){ + static_cast(ptr)->removeImageProvider(QString(providerId)); +} + +QtObjectPtr QQmlEngine_RootContext(QtObjectPtr ptr){ + return static_cast(ptr)->rootContext(); +} + +void QQmlEngine_SetBaseUrl(QtObjectPtr ptr, char* url){ + static_cast(ptr)->setBaseUrl(QUrl(QString(url))); +} + +void QQmlEngine_QQmlEngine_SetContextForObject(QtObjectPtr object, QtObjectPtr context){ + QQmlEngine::setContextForObject(static_cast(object), static_cast(context)); +} + +void QQmlEngine_SetImportPathList(QtObjectPtr ptr, char* paths){ + static_cast(ptr)->setImportPathList(QString(paths).split("|", QString::SkipEmptyParts)); +} + +void QQmlEngine_SetIncubationController(QtObjectPtr ptr, QtObjectPtr controller){ + static_cast(ptr)->setIncubationController(static_cast(controller)); +} + +void QQmlEngine_SetNetworkAccessManagerFactory(QtObjectPtr ptr, QtObjectPtr factory){ + static_cast(ptr)->setNetworkAccessManagerFactory(static_cast(factory)); +} + +void QQmlEngine_QQmlEngine_SetObjectOwnership(QtObjectPtr object, int ownership){ + QQmlEngine::setObjectOwnership(static_cast(object), static_cast(ownership)); +} + +void QQmlEngine_SetOutputWarningsToStandardError(QtObjectPtr ptr, int enabled){ + static_cast(ptr)->setOutputWarningsToStandardError(enabled != 0); +} + +void QQmlEngine_SetPluginPathList(QtObjectPtr ptr, char* paths){ + static_cast(ptr)->setPluginPathList(QString(paths).split("|", QString::SkipEmptyParts)); +} + +void QQmlEngine_TrimComponentCache(QtObjectPtr ptr){ + static_cast(ptr)->trimComponentCache(); +} + +void QQmlEngine_DestroyQQmlEngine(QtObjectPtr ptr){ + static_cast(ptr)->~QQmlEngine(); +} + diff --git a/qml/qqmlengine.go b/qml/qqmlengine.go new file mode 100755 index 00000000..4ce3262f --- /dev/null +++ b/qml/qqmlengine.go @@ -0,0 +1,242 @@ +package qml + +//#include "qqmlengine.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/network" + "strings" + "unsafe" +) + +type QQmlEngine struct { + QJSEngine +} + +type QQmlEngineITF interface { + QJSEngineITF + QQmlEnginePTR() *QQmlEngine +} + +func PointerFromQQmlEngine(ptr QQmlEngineITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQmlEnginePTR().Pointer() + } + return nil +} + +func QQmlEngineFromPointer(ptr unsafe.Pointer) *QQmlEngine { + var n = new(QQmlEngine) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QQmlEngine_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QQmlEngine) QQmlEnginePTR() *QQmlEngine { + return ptr +} + +//QQmlEngine::ObjectOwnership +type QQmlEngine__ObjectOwnership int + +var ( + QQmlEngine__CppOwnership = QQmlEngine__ObjectOwnership(0) + QQmlEngine__JavaScriptOwnership = QQmlEngine__ObjectOwnership(1) +) + +func (ptr *QQmlEngine) OfflineStoragePath() string { + if ptr.Pointer() != nil { + return C.GoString(C.QQmlEngine_OfflineStoragePath(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QQmlEngine) SetOfflineStoragePath(dir string) { + if ptr.Pointer() != nil { + C.QQmlEngine_SetOfflineStoragePath(C.QtObjectPtr(ptr.Pointer()), C.CString(dir)) + } +} + +func NewQQmlEngine(parent core.QObjectITF) *QQmlEngine { + return QQmlEngineFromPointer(unsafe.Pointer(C.QQmlEngine_NewQQmlEngine(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QQmlEngine) AddImageProvider(providerId string, provider QQmlImageProviderBaseITF) { + if ptr.Pointer() != nil { + C.QQmlEngine_AddImageProvider(C.QtObjectPtr(ptr.Pointer()), C.CString(providerId), C.QtObjectPtr(PointerFromQQmlImageProviderBase(provider))) + } +} + +func (ptr *QQmlEngine) AddImportPath(path string) { + if ptr.Pointer() != nil { + C.QQmlEngine_AddImportPath(C.QtObjectPtr(ptr.Pointer()), C.CString(path)) + } +} + +func (ptr *QQmlEngine) AddPluginPath(path string) { + if ptr.Pointer() != nil { + C.QQmlEngine_AddPluginPath(C.QtObjectPtr(ptr.Pointer()), C.CString(path)) + } +} + +func (ptr *QQmlEngine) BaseUrl() string { + if ptr.Pointer() != nil { + return C.GoString(C.QQmlEngine_BaseUrl(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QQmlEngine) ClearComponentCache() { + if ptr.Pointer() != nil { + C.QQmlEngine_ClearComponentCache(C.QtObjectPtr(ptr.Pointer())) + } +} + +func QQmlEngine_ContextForObject(object core.QObjectITF) *QQmlContext { + return QQmlContextFromPointer(unsafe.Pointer(C.QQmlEngine_QQmlEngine_ContextForObject(C.QtObjectPtr(core.PointerFromQObject(object))))) +} + +func (ptr *QQmlEngine) ImageProvider(providerId string) *QQmlImageProviderBase { + if ptr.Pointer() != nil { + return QQmlImageProviderBaseFromPointer(unsafe.Pointer(C.QQmlEngine_ImageProvider(C.QtObjectPtr(ptr.Pointer()), C.CString(providerId)))) + } + return nil +} + +func (ptr *QQmlEngine) ImportPathList() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QQmlEngine_ImportPathList(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QQmlEngine) IncubationController() *QQmlIncubationController { + if ptr.Pointer() != nil { + return QQmlIncubationControllerFromPointer(unsafe.Pointer(C.QQmlEngine_IncubationController(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQmlEngine) NetworkAccessManager() *network.QNetworkAccessManager { + if ptr.Pointer() != nil { + return network.QNetworkAccessManagerFromPointer(unsafe.Pointer(C.QQmlEngine_NetworkAccessManager(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQmlEngine) NetworkAccessManagerFactory() *QQmlNetworkAccessManagerFactory { + if ptr.Pointer() != nil { + return QQmlNetworkAccessManagerFactoryFromPointer(unsafe.Pointer(C.QQmlEngine_NetworkAccessManagerFactory(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func QQmlEngine_ObjectOwnership(object core.QObjectITF) QQmlEngine__ObjectOwnership { + return QQmlEngine__ObjectOwnership(C.QQmlEngine_QQmlEngine_ObjectOwnership(C.QtObjectPtr(core.PointerFromQObject(object)))) +} + +func (ptr *QQmlEngine) OutputWarningsToStandardError() bool { + if ptr.Pointer() != nil { + return C.QQmlEngine_OutputWarningsToStandardError(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlEngine) PluginPathList() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QQmlEngine_PluginPathList(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QQmlEngine) ConnectQuit(f func()) { + if ptr.Pointer() != nil { + C.QQmlEngine_ConnectQuit(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "quit", f) + } +} + +func (ptr *QQmlEngine) DisconnectQuit() { + if ptr.Pointer() != nil { + C.QQmlEngine_DisconnectQuit(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "quit") + } +} + +//export callbackQQmlEngineQuit +func callbackQQmlEngineQuit(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "quit").(func())() +} + +func (ptr *QQmlEngine) RemoveImageProvider(providerId string) { + if ptr.Pointer() != nil { + C.QQmlEngine_RemoveImageProvider(C.QtObjectPtr(ptr.Pointer()), C.CString(providerId)) + } +} + +func (ptr *QQmlEngine) RootContext() *QQmlContext { + if ptr.Pointer() != nil { + return QQmlContextFromPointer(unsafe.Pointer(C.QQmlEngine_RootContext(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQmlEngine) SetBaseUrl(url string) { + if ptr.Pointer() != nil { + C.QQmlEngine_SetBaseUrl(C.QtObjectPtr(ptr.Pointer()), C.CString(url)) + } +} + +func QQmlEngine_SetContextForObject(object core.QObjectITF, context QQmlContextITF) { + C.QQmlEngine_QQmlEngine_SetContextForObject(C.QtObjectPtr(core.PointerFromQObject(object)), C.QtObjectPtr(PointerFromQQmlContext(context))) +} + +func (ptr *QQmlEngine) SetImportPathList(paths []string) { + if ptr.Pointer() != nil { + C.QQmlEngine_SetImportPathList(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(paths, "|"))) + } +} + +func (ptr *QQmlEngine) SetIncubationController(controller QQmlIncubationControllerITF) { + if ptr.Pointer() != nil { + C.QQmlEngine_SetIncubationController(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQQmlIncubationController(controller))) + } +} + +func (ptr *QQmlEngine) SetNetworkAccessManagerFactory(factory QQmlNetworkAccessManagerFactoryITF) { + if ptr.Pointer() != nil { + C.QQmlEngine_SetNetworkAccessManagerFactory(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQQmlNetworkAccessManagerFactory(factory))) + } +} + +func QQmlEngine_SetObjectOwnership(object core.QObjectITF, ownership QQmlEngine__ObjectOwnership) { + C.QQmlEngine_QQmlEngine_SetObjectOwnership(C.QtObjectPtr(core.PointerFromQObject(object)), C.int(ownership)) +} + +func (ptr *QQmlEngine) SetOutputWarningsToStandardError(enabled bool) { + if ptr.Pointer() != nil { + C.QQmlEngine_SetOutputWarningsToStandardError(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QQmlEngine) SetPluginPathList(paths []string) { + if ptr.Pointer() != nil { + C.QQmlEngine_SetPluginPathList(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(paths, "|"))) + } +} + +func (ptr *QQmlEngine) TrimComponentCache() { + if ptr.Pointer() != nil { + C.QQmlEngine_TrimComponentCache(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QQmlEngine) DestroyQQmlEngine() { + if ptr.Pointer() != nil { + C.QQmlEngine_DestroyQQmlEngine(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/qml/qqmlengine.h b/qml/qqmlengine.h new file mode 100755 index 00000000..b22386c1 --- /dev/null +++ b/qml/qqmlengine.h @@ -0,0 +1,40 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QQmlEngine_OfflineStoragePath(QtObjectPtr ptr); +void QQmlEngine_SetOfflineStoragePath(QtObjectPtr ptr, char* dir); +QtObjectPtr QQmlEngine_NewQQmlEngine(QtObjectPtr parent); +void QQmlEngine_AddImageProvider(QtObjectPtr ptr, char* providerId, QtObjectPtr provider); +void QQmlEngine_AddImportPath(QtObjectPtr ptr, char* path); +void QQmlEngine_AddPluginPath(QtObjectPtr ptr, char* path); +char* QQmlEngine_BaseUrl(QtObjectPtr ptr); +void QQmlEngine_ClearComponentCache(QtObjectPtr ptr); +QtObjectPtr QQmlEngine_QQmlEngine_ContextForObject(QtObjectPtr object); +QtObjectPtr QQmlEngine_ImageProvider(QtObjectPtr ptr, char* providerId); +char* QQmlEngine_ImportPathList(QtObjectPtr ptr); +QtObjectPtr QQmlEngine_IncubationController(QtObjectPtr ptr); +QtObjectPtr QQmlEngine_NetworkAccessManager(QtObjectPtr ptr); +QtObjectPtr QQmlEngine_NetworkAccessManagerFactory(QtObjectPtr ptr); +int QQmlEngine_QQmlEngine_ObjectOwnership(QtObjectPtr object); +int QQmlEngine_OutputWarningsToStandardError(QtObjectPtr ptr); +char* QQmlEngine_PluginPathList(QtObjectPtr ptr); +void QQmlEngine_ConnectQuit(QtObjectPtr ptr); +void QQmlEngine_DisconnectQuit(QtObjectPtr ptr); +void QQmlEngine_RemoveImageProvider(QtObjectPtr ptr, char* providerId); +QtObjectPtr QQmlEngine_RootContext(QtObjectPtr ptr); +void QQmlEngine_SetBaseUrl(QtObjectPtr ptr, char* url); +void QQmlEngine_QQmlEngine_SetContextForObject(QtObjectPtr object, QtObjectPtr context); +void QQmlEngine_SetImportPathList(QtObjectPtr ptr, char* paths); +void QQmlEngine_SetIncubationController(QtObjectPtr ptr, QtObjectPtr controller); +void QQmlEngine_SetNetworkAccessManagerFactory(QtObjectPtr ptr, QtObjectPtr factory); +void QQmlEngine_QQmlEngine_SetObjectOwnership(QtObjectPtr object, int ownership); +void QQmlEngine_SetOutputWarningsToStandardError(QtObjectPtr ptr, int enabled); +void QQmlEngine_SetPluginPathList(QtObjectPtr ptr, char* paths); +void QQmlEngine_TrimComponentCache(QtObjectPtr ptr); +void QQmlEngine_DestroyQQmlEngine(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/qml/qqmlerror.cpp b/qml/qqmlerror.cpp new file mode 100755 index 00000000..8c6f093c --- /dev/null +++ b/qml/qqmlerror.cpp @@ -0,0 +1,69 @@ +#include "qqmlerror.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQmlError: public QQmlError { +public: +}; + +QtObjectPtr QQmlError_NewQQmlError(){ + return new QQmlError(); +} + +QtObjectPtr QQmlError_NewQQmlError2(QtObjectPtr other){ + return new QQmlError(*static_cast(other)); +} + +int QQmlError_Column(QtObjectPtr ptr){ + return static_cast(ptr)->column(); +} + +char* QQmlError_Description(QtObjectPtr ptr){ + return static_cast(ptr)->description().toUtf8().data(); +} + +int QQmlError_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QQmlError_Line(QtObjectPtr ptr){ + return static_cast(ptr)->line(); +} + +QtObjectPtr QQmlError_Object(QtObjectPtr ptr){ + return static_cast(ptr)->object(); +} + +void QQmlError_SetColumn(QtObjectPtr ptr, int column){ + static_cast(ptr)->setColumn(column); +} + +void QQmlError_SetDescription(QtObjectPtr ptr, char* description){ + static_cast(ptr)->setDescription(QString(description)); +} + +void QQmlError_SetLine(QtObjectPtr ptr, int line){ + static_cast(ptr)->setLine(line); +} + +void QQmlError_SetObject(QtObjectPtr ptr, QtObjectPtr object){ + static_cast(ptr)->setObject(static_cast(object)); +} + +void QQmlError_SetUrl(QtObjectPtr ptr, char* url){ + static_cast(ptr)->setUrl(QUrl(QString(url))); +} + +char* QQmlError_ToString(QtObjectPtr ptr){ + return static_cast(ptr)->toString().toUtf8().data(); +} + +char* QQmlError_Url(QtObjectPtr ptr){ + return static_cast(ptr)->url().toString().toUtf8().data(); +} + diff --git a/qml/qqmlerror.go b/qml/qqmlerror.go new file mode 100755 index 00000000..6c81a3cd --- /dev/null +++ b/qml/qqmlerror.go @@ -0,0 +1,128 @@ +package qml + +//#include "qqmlerror.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QQmlError struct { + ptr unsafe.Pointer +} + +type QQmlErrorITF interface { + QQmlErrorPTR() *QQmlError +} + +func (p *QQmlError) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QQmlError) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQQmlError(ptr QQmlErrorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQmlErrorPTR().Pointer() + } + return nil +} + +func QQmlErrorFromPointer(ptr unsafe.Pointer) *QQmlError { + var n = new(QQmlError) + n.SetPointer(ptr) + return n +} + +func (ptr *QQmlError) QQmlErrorPTR() *QQmlError { + return ptr +} + +func NewQQmlError() *QQmlError { + return QQmlErrorFromPointer(unsafe.Pointer(C.QQmlError_NewQQmlError())) +} + +func NewQQmlError2(other QQmlErrorITF) *QQmlError { + return QQmlErrorFromPointer(unsafe.Pointer(C.QQmlError_NewQQmlError2(C.QtObjectPtr(PointerFromQQmlError(other))))) +} + +func (ptr *QQmlError) Column() int { + if ptr.Pointer() != nil { + return int(C.QQmlError_Column(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QQmlError) Description() string { + if ptr.Pointer() != nil { + return C.GoString(C.QQmlError_Description(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QQmlError) IsValid() bool { + if ptr.Pointer() != nil { + return C.QQmlError_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlError) Line() int { + if ptr.Pointer() != nil { + return int(C.QQmlError_Line(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QQmlError) Object() *core.QObject { + if ptr.Pointer() != nil { + return core.QObjectFromPointer(unsafe.Pointer(C.QQmlError_Object(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQmlError) SetColumn(column int) { + if ptr.Pointer() != nil { + C.QQmlError_SetColumn(C.QtObjectPtr(ptr.Pointer()), C.int(column)) + } +} + +func (ptr *QQmlError) SetDescription(description string) { + if ptr.Pointer() != nil { + C.QQmlError_SetDescription(C.QtObjectPtr(ptr.Pointer()), C.CString(description)) + } +} + +func (ptr *QQmlError) SetLine(line int) { + if ptr.Pointer() != nil { + C.QQmlError_SetLine(C.QtObjectPtr(ptr.Pointer()), C.int(line)) + } +} + +func (ptr *QQmlError) SetObject(object core.QObjectITF) { + if ptr.Pointer() != nil { + C.QQmlError_SetObject(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(object))) + } +} + +func (ptr *QQmlError) SetUrl(url string) { + if ptr.Pointer() != nil { + C.QQmlError_SetUrl(C.QtObjectPtr(ptr.Pointer()), C.CString(url)) + } +} + +func (ptr *QQmlError) ToString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QQmlError_ToString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QQmlError) Url() string { + if ptr.Pointer() != nil { + return C.GoString(C.QQmlError_Url(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/qml/qqmlerror.h b/qml/qqmlerror.h new file mode 100755 index 00000000..32e1d580 --- /dev/null +++ b/qml/qqmlerror.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QQmlError_NewQQmlError(); +QtObjectPtr QQmlError_NewQQmlError2(QtObjectPtr other); +int QQmlError_Column(QtObjectPtr ptr); +char* QQmlError_Description(QtObjectPtr ptr); +int QQmlError_IsValid(QtObjectPtr ptr); +int QQmlError_Line(QtObjectPtr ptr); +QtObjectPtr QQmlError_Object(QtObjectPtr ptr); +void QQmlError_SetColumn(QtObjectPtr ptr, int column); +void QQmlError_SetDescription(QtObjectPtr ptr, char* description); +void QQmlError_SetLine(QtObjectPtr ptr, int line); +void QQmlError_SetObject(QtObjectPtr ptr, QtObjectPtr object); +void QQmlError_SetUrl(QtObjectPtr ptr, char* url); +char* QQmlError_ToString(QtObjectPtr ptr); +char* QQmlError_Url(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/qml/qqmlexpression.cpp b/qml/qqmlexpression.cpp new file mode 100755 index 00000000..2693268f --- /dev/null +++ b/qml/qqmlexpression.cpp @@ -0,0 +1,96 @@ +#include "qqmlexpression.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQmlExpression: public QQmlExpression { +public: +void Signal_ValueChanged(){callbackQQmlExpressionValueChanged(this->objectName().toUtf8().data());}; +}; + +QtObjectPtr QQmlExpression_NewQQmlExpression(){ + return new QQmlExpression(); +} + +QtObjectPtr QQmlExpression_NewQQmlExpression2(QtObjectPtr ctxt, QtObjectPtr scope, char* expression, QtObjectPtr parent){ + return new QQmlExpression(static_cast(ctxt), static_cast(scope), QString(expression), static_cast(parent)); +} + +QtObjectPtr QQmlExpression_NewQQmlExpression3(QtObjectPtr script, QtObjectPtr ctxt, QtObjectPtr scope, QtObjectPtr parent){ + return new QQmlExpression(*static_cast(script), static_cast(ctxt), static_cast(scope), static_cast(parent)); +} + +void QQmlExpression_ClearError(QtObjectPtr ptr){ + static_cast(ptr)->clearError(); +} + +int QQmlExpression_ColumnNumber(QtObjectPtr ptr){ + return static_cast(ptr)->columnNumber(); +} + +QtObjectPtr QQmlExpression_Context(QtObjectPtr ptr){ + return static_cast(ptr)->context(); +} + +QtObjectPtr QQmlExpression_Engine(QtObjectPtr ptr){ + return static_cast(ptr)->engine(); +} + +char* QQmlExpression_Evaluate(QtObjectPtr ptr, int valueIsUndefined){ + return static_cast(ptr)->evaluate(NULL).toString().toUtf8().data(); +} + +char* QQmlExpression_Expression(QtObjectPtr ptr){ + return static_cast(ptr)->expression().toUtf8().data(); +} + +int QQmlExpression_HasError(QtObjectPtr ptr){ + return static_cast(ptr)->hasError(); +} + +int QQmlExpression_LineNumber(QtObjectPtr ptr){ + return static_cast(ptr)->lineNumber(); +} + +int QQmlExpression_NotifyOnValueChanged(QtObjectPtr ptr){ + return static_cast(ptr)->notifyOnValueChanged(); +} + +QtObjectPtr QQmlExpression_ScopeObject(QtObjectPtr ptr){ + return static_cast(ptr)->scopeObject(); +} + +void QQmlExpression_SetExpression(QtObjectPtr ptr, char* expression){ + static_cast(ptr)->setExpression(QString(expression)); +} + +void QQmlExpression_SetNotifyOnValueChanged(QtObjectPtr ptr, int notifyOnChange){ + static_cast(ptr)->setNotifyOnValueChanged(notifyOnChange != 0); +} + +void QQmlExpression_SetSourceLocation(QtObjectPtr ptr, char* url, int line, int column){ + static_cast(ptr)->setSourceLocation(QString(url), line, column); +} + +char* QQmlExpression_SourceFile(QtObjectPtr ptr){ + return static_cast(ptr)->sourceFile().toUtf8().data(); +} + +void QQmlExpression_ConnectValueChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQmlExpression::valueChanged), static_cast(ptr), static_cast(&MyQQmlExpression::Signal_ValueChanged));; +} + +void QQmlExpression_DisconnectValueChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQmlExpression::valueChanged), static_cast(ptr), static_cast(&MyQQmlExpression::Signal_ValueChanged));; +} + +void QQmlExpression_DestroyQQmlExpression(QtObjectPtr ptr){ + static_cast(ptr)->~QQmlExpression(); +} + diff --git a/qml/qqmlexpression.go b/qml/qqmlexpression.go new file mode 100755 index 00000000..fcf492d2 --- /dev/null +++ b/qml/qqmlexpression.go @@ -0,0 +1,170 @@ +package qml + +//#include "qqmlexpression.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QQmlExpression struct { + core.QObject +} + +type QQmlExpressionITF interface { + core.QObjectITF + QQmlExpressionPTR() *QQmlExpression +} + +func PointerFromQQmlExpression(ptr QQmlExpressionITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQmlExpressionPTR().Pointer() + } + return nil +} + +func QQmlExpressionFromPointer(ptr unsafe.Pointer) *QQmlExpression { + var n = new(QQmlExpression) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QQmlExpression_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QQmlExpression) QQmlExpressionPTR() *QQmlExpression { + return ptr +} + +func NewQQmlExpression() *QQmlExpression { + return QQmlExpressionFromPointer(unsafe.Pointer(C.QQmlExpression_NewQQmlExpression())) +} + +func NewQQmlExpression2(ctxt QQmlContextITF, scope core.QObjectITF, expression string, parent core.QObjectITF) *QQmlExpression { + return QQmlExpressionFromPointer(unsafe.Pointer(C.QQmlExpression_NewQQmlExpression2(C.QtObjectPtr(PointerFromQQmlContext(ctxt)), C.QtObjectPtr(core.PointerFromQObject(scope)), C.CString(expression), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQQmlExpression3(script QQmlScriptStringITF, ctxt QQmlContextITF, scope core.QObjectITF, parent core.QObjectITF) *QQmlExpression { + return QQmlExpressionFromPointer(unsafe.Pointer(C.QQmlExpression_NewQQmlExpression3(C.QtObjectPtr(PointerFromQQmlScriptString(script)), C.QtObjectPtr(PointerFromQQmlContext(ctxt)), C.QtObjectPtr(core.PointerFromQObject(scope)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QQmlExpression) ClearError() { + if ptr.Pointer() != nil { + C.QQmlExpression_ClearError(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QQmlExpression) ColumnNumber() int { + if ptr.Pointer() != nil { + return int(C.QQmlExpression_ColumnNumber(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QQmlExpression) Context() *QQmlContext { + if ptr.Pointer() != nil { + return QQmlContextFromPointer(unsafe.Pointer(C.QQmlExpression_Context(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQmlExpression) Engine() *QQmlEngine { + if ptr.Pointer() != nil { + return QQmlEngineFromPointer(unsafe.Pointer(C.QQmlExpression_Engine(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQmlExpression) Evaluate(valueIsUndefined bool) string { + if ptr.Pointer() != nil { + return C.GoString(C.QQmlExpression_Evaluate(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(valueIsUndefined)))) + } + return "" +} + +func (ptr *QQmlExpression) Expression() string { + if ptr.Pointer() != nil { + return C.GoString(C.QQmlExpression_Expression(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QQmlExpression) HasError() bool { + if ptr.Pointer() != nil { + return C.QQmlExpression_HasError(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlExpression) LineNumber() int { + if ptr.Pointer() != nil { + return int(C.QQmlExpression_LineNumber(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QQmlExpression) NotifyOnValueChanged() bool { + if ptr.Pointer() != nil { + return C.QQmlExpression_NotifyOnValueChanged(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlExpression) ScopeObject() *core.QObject { + if ptr.Pointer() != nil { + return core.QObjectFromPointer(unsafe.Pointer(C.QQmlExpression_ScopeObject(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQmlExpression) SetExpression(expression string) { + if ptr.Pointer() != nil { + C.QQmlExpression_SetExpression(C.QtObjectPtr(ptr.Pointer()), C.CString(expression)) + } +} + +func (ptr *QQmlExpression) SetNotifyOnValueChanged(notifyOnChange bool) { + if ptr.Pointer() != nil { + C.QQmlExpression_SetNotifyOnValueChanged(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(notifyOnChange))) + } +} + +func (ptr *QQmlExpression) SetSourceLocation(url string, line int, column int) { + if ptr.Pointer() != nil { + C.QQmlExpression_SetSourceLocation(C.QtObjectPtr(ptr.Pointer()), C.CString(url), C.int(line), C.int(column)) + } +} + +func (ptr *QQmlExpression) SourceFile() string { + if ptr.Pointer() != nil { + return C.GoString(C.QQmlExpression_SourceFile(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QQmlExpression) ConnectValueChanged(f func()) { + if ptr.Pointer() != nil { + C.QQmlExpression_ConnectValueChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "valueChanged", f) + } +} + +func (ptr *QQmlExpression) DisconnectValueChanged() { + if ptr.Pointer() != nil { + C.QQmlExpression_DisconnectValueChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "valueChanged") + } +} + +//export callbackQQmlExpressionValueChanged +func callbackQQmlExpressionValueChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "valueChanged").(func())() +} + +func (ptr *QQmlExpression) DestroyQQmlExpression() { + if ptr.Pointer() != nil { + C.QQmlExpression_DestroyQQmlExpression(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/qml/qqmlexpression.h b/qml/qqmlexpression.h new file mode 100755 index 00000000..141b96ba --- /dev/null +++ b/qml/qqmlexpression.h @@ -0,0 +1,29 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QQmlExpression_NewQQmlExpression(); +QtObjectPtr QQmlExpression_NewQQmlExpression2(QtObjectPtr ctxt, QtObjectPtr scope, char* expression, QtObjectPtr parent); +QtObjectPtr QQmlExpression_NewQQmlExpression3(QtObjectPtr script, QtObjectPtr ctxt, QtObjectPtr scope, QtObjectPtr parent); +void QQmlExpression_ClearError(QtObjectPtr ptr); +int QQmlExpression_ColumnNumber(QtObjectPtr ptr); +QtObjectPtr QQmlExpression_Context(QtObjectPtr ptr); +QtObjectPtr QQmlExpression_Engine(QtObjectPtr ptr); +char* QQmlExpression_Evaluate(QtObjectPtr ptr, int valueIsUndefined); +char* QQmlExpression_Expression(QtObjectPtr ptr); +int QQmlExpression_HasError(QtObjectPtr ptr); +int QQmlExpression_LineNumber(QtObjectPtr ptr); +int QQmlExpression_NotifyOnValueChanged(QtObjectPtr ptr); +QtObjectPtr QQmlExpression_ScopeObject(QtObjectPtr ptr); +void QQmlExpression_SetExpression(QtObjectPtr ptr, char* expression); +void QQmlExpression_SetNotifyOnValueChanged(QtObjectPtr ptr, int notifyOnChange); +void QQmlExpression_SetSourceLocation(QtObjectPtr ptr, char* url, int line, int column); +char* QQmlExpression_SourceFile(QtObjectPtr ptr); +void QQmlExpression_ConnectValueChanged(QtObjectPtr ptr); +void QQmlExpression_DisconnectValueChanged(QtObjectPtr ptr); +void QQmlExpression_DestroyQQmlExpression(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/qml/qqmlextensionplugin.cpp b/qml/qqmlextensionplugin.cpp new file mode 100755 index 00000000..db38212b --- /dev/null +++ b/qml/qqmlextensionplugin.cpp @@ -0,0 +1,25 @@ +#include "qqmlextensionplugin.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQmlExtensionPlugin: public QQmlExtensionPlugin { +public: +}; + +void QQmlExtensionPlugin_InitializeEngine(QtObjectPtr ptr, QtObjectPtr engine, char* uri){ + static_cast(ptr)->initializeEngine(static_cast(engine), const_cast(uri)); +} + +char* QQmlExtensionPlugin_BaseUrl(QtObjectPtr ptr){ + return static_cast(ptr)->baseUrl().toString().toUtf8().data(); +} + +void QQmlExtensionPlugin_RegisterTypes(QtObjectPtr ptr, char* uri){ + static_cast(ptr)->registerTypes(const_cast(uri)); +} + diff --git a/qml/qqmlextensionplugin.go b/qml/qqmlextensionplugin.go new file mode 100755 index 00000000..c36546ee --- /dev/null +++ b/qml/qqmlextensionplugin.go @@ -0,0 +1,57 @@ +package qml + +//#include "qqmlextensionplugin.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QQmlExtensionPlugin struct { + core.QObject +} + +type QQmlExtensionPluginITF interface { + core.QObjectITF + QQmlExtensionPluginPTR() *QQmlExtensionPlugin +} + +func PointerFromQQmlExtensionPlugin(ptr QQmlExtensionPluginITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQmlExtensionPluginPTR().Pointer() + } + return nil +} + +func QQmlExtensionPluginFromPointer(ptr unsafe.Pointer) *QQmlExtensionPlugin { + var n = new(QQmlExtensionPlugin) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QQmlExtensionPlugin_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QQmlExtensionPlugin) QQmlExtensionPluginPTR() *QQmlExtensionPlugin { + return ptr +} + +func (ptr *QQmlExtensionPlugin) InitializeEngine(engine QQmlEngineITF, uri string) { + if ptr.Pointer() != nil { + C.QQmlExtensionPlugin_InitializeEngine(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQQmlEngine(engine)), C.CString(uri)) + } +} + +func (ptr *QQmlExtensionPlugin) BaseUrl() string { + if ptr.Pointer() != nil { + return C.GoString(C.QQmlExtensionPlugin_BaseUrl(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QQmlExtensionPlugin) RegisterTypes(uri string) { + if ptr.Pointer() != nil { + C.QQmlExtensionPlugin_RegisterTypes(C.QtObjectPtr(ptr.Pointer()), C.CString(uri)) + } +} diff --git a/qml/qqmlextensionplugin.h b/qml/qqmlextensionplugin.h new file mode 100755 index 00000000..ecebd439 --- /dev/null +++ b/qml/qqmlextensionplugin.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QQmlExtensionPlugin_InitializeEngine(QtObjectPtr ptr, QtObjectPtr engine, char* uri); +char* QQmlExtensionPlugin_BaseUrl(QtObjectPtr ptr); +void QQmlExtensionPlugin_RegisterTypes(QtObjectPtr ptr, char* uri); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/qml/qqmlfileselector.cpp b/qml/qqmlfileselector.cpp new file mode 100755 index 00000000..6e7aeade --- /dev/null +++ b/qml/qqmlfileselector.cpp @@ -0,0 +1,40 @@ +#include "qqmlfileselector.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQmlFileSelector: public QQmlFileSelector { +public: +}; + +QtObjectPtr QQmlFileSelector_NewQQmlFileSelector(QtObjectPtr engine, QtObjectPtr parent){ + return new QQmlFileSelector(static_cast(engine), static_cast(parent)); +} + +QtObjectPtr QQmlFileSelector_QQmlFileSelector_Get(QtObjectPtr engine){ + return QQmlFileSelector::get(static_cast(engine)); +} + +void QQmlFileSelector_SetExtraSelectors(QtObjectPtr ptr, char* strin){ + static_cast(ptr)->setExtraSelectors(QString(strin).split("|", QString::SkipEmptyParts)); +} + +void QQmlFileSelector_SetExtraSelectors2(QtObjectPtr ptr, char* strin){ + static_cast(ptr)->setExtraSelectors(QString(strin).split("|", QString::SkipEmptyParts)); +} + +void QQmlFileSelector_SetSelector(QtObjectPtr ptr, QtObjectPtr selector){ + static_cast(ptr)->setSelector(static_cast(selector)); +} + +void QQmlFileSelector_DestroyQQmlFileSelector(QtObjectPtr ptr){ + static_cast(ptr)->~QQmlFileSelector(); +} + diff --git a/qml/qqmlfileselector.go b/qml/qqmlfileselector.go new file mode 100755 index 00000000..c84dfd27 --- /dev/null +++ b/qml/qqmlfileselector.go @@ -0,0 +1,72 @@ +package qml + +//#include "qqmlfileselector.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QQmlFileSelector struct { + core.QObject +} + +type QQmlFileSelectorITF interface { + core.QObjectITF + QQmlFileSelectorPTR() *QQmlFileSelector +} + +func PointerFromQQmlFileSelector(ptr QQmlFileSelectorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQmlFileSelectorPTR().Pointer() + } + return nil +} + +func QQmlFileSelectorFromPointer(ptr unsafe.Pointer) *QQmlFileSelector { + var n = new(QQmlFileSelector) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QQmlFileSelector_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QQmlFileSelector) QQmlFileSelectorPTR() *QQmlFileSelector { + return ptr +} + +func NewQQmlFileSelector(engine QQmlEngineITF, parent core.QObjectITF) *QQmlFileSelector { + return QQmlFileSelectorFromPointer(unsafe.Pointer(C.QQmlFileSelector_NewQQmlFileSelector(C.QtObjectPtr(PointerFromQQmlEngine(engine)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func QQmlFileSelector_Get(engine QQmlEngineITF) *QQmlFileSelector { + return QQmlFileSelectorFromPointer(unsafe.Pointer(C.QQmlFileSelector_QQmlFileSelector_Get(C.QtObjectPtr(PointerFromQQmlEngine(engine))))) +} + +func (ptr *QQmlFileSelector) SetExtraSelectors(strin []string) { + if ptr.Pointer() != nil { + C.QQmlFileSelector_SetExtraSelectors(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(strin, "|"))) + } +} + +func (ptr *QQmlFileSelector) SetExtraSelectors2(strin []string) { + if ptr.Pointer() != nil { + C.QQmlFileSelector_SetExtraSelectors2(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(strin, "|"))) + } +} + +func (ptr *QQmlFileSelector) SetSelector(selector core.QFileSelectorITF) { + if ptr.Pointer() != nil { + C.QQmlFileSelector_SetSelector(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQFileSelector(selector))) + } +} + +func (ptr *QQmlFileSelector) DestroyQQmlFileSelector() { + if ptr.Pointer() != nil { + C.QQmlFileSelector_DestroyQQmlFileSelector(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/qml/qqmlfileselector.h b/qml/qqmlfileselector.h new file mode 100755 index 00000000..c321ef87 --- /dev/null +++ b/qml/qqmlfileselector.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QQmlFileSelector_NewQQmlFileSelector(QtObjectPtr engine, QtObjectPtr parent); +QtObjectPtr QQmlFileSelector_QQmlFileSelector_Get(QtObjectPtr engine); +void QQmlFileSelector_SetExtraSelectors(QtObjectPtr ptr, char* strin); +void QQmlFileSelector_SetExtraSelectors2(QtObjectPtr ptr, char* strin); +void QQmlFileSelector_SetSelector(QtObjectPtr ptr, QtObjectPtr selector); +void QQmlFileSelector_DestroyQQmlFileSelector(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/qml/qqmlimageproviderbase.cpp b/qml/qqmlimageproviderbase.cpp new file mode 100755 index 00000000..e3035d70 --- /dev/null +++ b/qml/qqmlimageproviderbase.cpp @@ -0,0 +1,20 @@ +#include "qqmlimageproviderbase.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQmlImageProviderBase: public QQmlImageProviderBase { +public: +}; + +int QQmlImageProviderBase_Flags(QtObjectPtr ptr){ + return static_cast(ptr)->flags(); +} + +int QQmlImageProviderBase_ImageType(QtObjectPtr ptr){ + return static_cast(ptr)->imageType(); +} + diff --git a/qml/qqmlimageproviderbase.go b/qml/qqmlimageproviderbase.go new file mode 100755 index 00000000..b1fdf8a2 --- /dev/null +++ b/qml/qqmlimageproviderbase.go @@ -0,0 +1,71 @@ +package qml + +//#include "qqmlimageproviderbase.h" +import "C" +import ( + "unsafe" +) + +type QQmlImageProviderBase struct { + ptr unsafe.Pointer +} + +type QQmlImageProviderBaseITF interface { + QQmlImageProviderBasePTR() *QQmlImageProviderBase +} + +func (p *QQmlImageProviderBase) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QQmlImageProviderBase) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQQmlImageProviderBase(ptr QQmlImageProviderBaseITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQmlImageProviderBasePTR().Pointer() + } + return nil +} + +func QQmlImageProviderBaseFromPointer(ptr unsafe.Pointer) *QQmlImageProviderBase { + var n = new(QQmlImageProviderBase) + n.SetPointer(ptr) + return n +} + +func (ptr *QQmlImageProviderBase) QQmlImageProviderBasePTR() *QQmlImageProviderBase { + return ptr +} + +//QQmlImageProviderBase::Flag +type QQmlImageProviderBase__Flag int + +var ( + QQmlImageProviderBase__ForceAsynchronousImageLoading = QQmlImageProviderBase__Flag(0x01) +) + +//QQmlImageProviderBase::ImageType +type QQmlImageProviderBase__ImageType int + +var ( + QQmlImageProviderBase__Image = QQmlImageProviderBase__ImageType(0) + QQmlImageProviderBase__Pixmap = QQmlImageProviderBase__ImageType(1) + QQmlImageProviderBase__Texture = QQmlImageProviderBase__ImageType(2) + QQmlImageProviderBase__Invalid = QQmlImageProviderBase__ImageType(3) +) + +func (ptr *QQmlImageProviderBase) Flags() QQmlImageProviderBase__Flag { + if ptr.Pointer() != nil { + return QQmlImageProviderBase__Flag(C.QQmlImageProviderBase_Flags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QQmlImageProviderBase) ImageType() QQmlImageProviderBase__ImageType { + if ptr.Pointer() != nil { + return QQmlImageProviderBase__ImageType(C.QQmlImageProviderBase_ImageType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/qml/qqmlimageproviderbase.h b/qml/qqmlimageproviderbase.h new file mode 100755 index 00000000..4526a03d --- /dev/null +++ b/qml/qqmlimageproviderbase.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QQmlImageProviderBase_Flags(QtObjectPtr ptr); +int QQmlImageProviderBase_ImageType(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/qml/qqmlincubationcontroller.cpp b/qml/qqmlincubationcontroller.cpp new file mode 100755 index 00000000..cf02dd8f --- /dev/null +++ b/qml/qqmlincubationcontroller.cpp @@ -0,0 +1,28 @@ +#include "qqmlincubationcontroller.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQmlIncubationController: public QQmlIncubationController { +public: +}; + +QtObjectPtr QQmlIncubationController_NewQQmlIncubationController(){ + return new QQmlIncubationController(); +} + +QtObjectPtr QQmlIncubationController_Engine(QtObjectPtr ptr){ + return static_cast(ptr)->engine(); +} + +void QQmlIncubationController_IncubateFor(QtObjectPtr ptr, int msecs){ + static_cast(ptr)->incubateFor(msecs); +} + +int QQmlIncubationController_IncubatingObjectCount(QtObjectPtr ptr){ + return static_cast(ptr)->incubatingObjectCount(); +} + diff --git a/qml/qqmlincubationcontroller.go b/qml/qqmlincubationcontroller.go new file mode 100755 index 00000000..c228ade3 --- /dev/null +++ b/qml/qqmlincubationcontroller.go @@ -0,0 +1,64 @@ +package qml + +//#include "qqmlincubationcontroller.h" +import "C" +import ( + "unsafe" +) + +type QQmlIncubationController struct { + ptr unsafe.Pointer +} + +type QQmlIncubationControllerITF interface { + QQmlIncubationControllerPTR() *QQmlIncubationController +} + +func (p *QQmlIncubationController) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QQmlIncubationController) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQQmlIncubationController(ptr QQmlIncubationControllerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQmlIncubationControllerPTR().Pointer() + } + return nil +} + +func QQmlIncubationControllerFromPointer(ptr unsafe.Pointer) *QQmlIncubationController { + var n = new(QQmlIncubationController) + n.SetPointer(ptr) + return n +} + +func (ptr *QQmlIncubationController) QQmlIncubationControllerPTR() *QQmlIncubationController { + return ptr +} + +func NewQQmlIncubationController() *QQmlIncubationController { + return QQmlIncubationControllerFromPointer(unsafe.Pointer(C.QQmlIncubationController_NewQQmlIncubationController())) +} + +func (ptr *QQmlIncubationController) Engine() *QQmlEngine { + if ptr.Pointer() != nil { + return QQmlEngineFromPointer(unsafe.Pointer(C.QQmlIncubationController_Engine(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQmlIncubationController) IncubateFor(msecs int) { + if ptr.Pointer() != nil { + C.QQmlIncubationController_IncubateFor(C.QtObjectPtr(ptr.Pointer()), C.int(msecs)) + } +} + +func (ptr *QQmlIncubationController) IncubatingObjectCount() int { + if ptr.Pointer() != nil { + return int(C.QQmlIncubationController_IncubatingObjectCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/qml/qqmlincubationcontroller.h b/qml/qqmlincubationcontroller.h new file mode 100755 index 00000000..b8a7c723 --- /dev/null +++ b/qml/qqmlincubationcontroller.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QQmlIncubationController_NewQQmlIncubationController(); +QtObjectPtr QQmlIncubationController_Engine(QtObjectPtr ptr); +void QQmlIncubationController_IncubateFor(QtObjectPtr ptr, int msecs); +int QQmlIncubationController_IncubatingObjectCount(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/qml/qqmlincubator.cpp b/qml/qqmlincubator.cpp new file mode 100755 index 00000000..7f027217 --- /dev/null +++ b/qml/qqmlincubator.cpp @@ -0,0 +1,52 @@ +#include "qqmlincubator.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQmlIncubator: public QQmlIncubator { +public: +}; + +QtObjectPtr QQmlIncubator_NewQQmlIncubator(int mode){ + return new QQmlIncubator(static_cast(mode)); +} + +void QQmlIncubator_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +void QQmlIncubator_ForceCompletion(QtObjectPtr ptr){ + static_cast(ptr)->forceCompletion(); +} + +int QQmlIncubator_IncubationMode(QtObjectPtr ptr){ + return static_cast(ptr)->incubationMode(); +} + +int QQmlIncubator_IsError(QtObjectPtr ptr){ + return static_cast(ptr)->isError(); +} + +int QQmlIncubator_IsLoading(QtObjectPtr ptr){ + return static_cast(ptr)->isLoading(); +} + +int QQmlIncubator_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QQmlIncubator_IsReady(QtObjectPtr ptr){ + return static_cast(ptr)->isReady(); +} + +QtObjectPtr QQmlIncubator_Object(QtObjectPtr ptr){ + return static_cast(ptr)->object(); +} + +int QQmlIncubator_Status(QtObjectPtr ptr){ + return static_cast(ptr)->status(); +} + diff --git a/qml/qqmlincubator.go b/qml/qqmlincubator.go new file mode 100755 index 00000000..042d5e2b --- /dev/null +++ b/qml/qqmlincubator.go @@ -0,0 +1,125 @@ +package qml + +//#include "qqmlincubator.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QQmlIncubator struct { + ptr unsafe.Pointer +} + +type QQmlIncubatorITF interface { + QQmlIncubatorPTR() *QQmlIncubator +} + +func (p *QQmlIncubator) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QQmlIncubator) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQQmlIncubator(ptr QQmlIncubatorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQmlIncubatorPTR().Pointer() + } + return nil +} + +func QQmlIncubatorFromPointer(ptr unsafe.Pointer) *QQmlIncubator { + var n = new(QQmlIncubator) + n.SetPointer(ptr) + return n +} + +func (ptr *QQmlIncubator) QQmlIncubatorPTR() *QQmlIncubator { + return ptr +} + +//QQmlIncubator::IncubationMode +type QQmlIncubator__IncubationMode int + +var ( + QQmlIncubator__Asynchronous = QQmlIncubator__IncubationMode(0) + QQmlIncubator__AsynchronousIfNested = QQmlIncubator__IncubationMode(1) + QQmlIncubator__Synchronous = QQmlIncubator__IncubationMode(2) +) + +//QQmlIncubator::Status +type QQmlIncubator__Status int + +var ( + QQmlIncubator__Null = QQmlIncubator__Status(0) + QQmlIncubator__Ready = QQmlIncubator__Status(1) + QQmlIncubator__Loading = QQmlIncubator__Status(2) + QQmlIncubator__Error = QQmlIncubator__Status(3) +) + +func NewQQmlIncubator(mode QQmlIncubator__IncubationMode) *QQmlIncubator { + return QQmlIncubatorFromPointer(unsafe.Pointer(C.QQmlIncubator_NewQQmlIncubator(C.int(mode)))) +} + +func (ptr *QQmlIncubator) Clear() { + if ptr.Pointer() != nil { + C.QQmlIncubator_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QQmlIncubator) ForceCompletion() { + if ptr.Pointer() != nil { + C.QQmlIncubator_ForceCompletion(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QQmlIncubator) IncubationMode() QQmlIncubator__IncubationMode { + if ptr.Pointer() != nil { + return QQmlIncubator__IncubationMode(C.QQmlIncubator_IncubationMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QQmlIncubator) IsError() bool { + if ptr.Pointer() != nil { + return C.QQmlIncubator_IsError(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlIncubator) IsLoading() bool { + if ptr.Pointer() != nil { + return C.QQmlIncubator_IsLoading(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlIncubator) IsNull() bool { + if ptr.Pointer() != nil { + return C.QQmlIncubator_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlIncubator) IsReady() bool { + if ptr.Pointer() != nil { + return C.QQmlIncubator_IsReady(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlIncubator) Object() *core.QObject { + if ptr.Pointer() != nil { + return core.QObjectFromPointer(unsafe.Pointer(C.QQmlIncubator_Object(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQmlIncubator) Status() QQmlIncubator__Status { + if ptr.Pointer() != nil { + return QQmlIncubator__Status(C.QQmlIncubator_Status(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/qml/qqmlincubator.h b/qml/qqmlincubator.h new file mode 100755 index 00000000..c1f01fb4 --- /dev/null +++ b/qml/qqmlincubator.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QQmlIncubator_NewQQmlIncubator(int mode); +void QQmlIncubator_Clear(QtObjectPtr ptr); +void QQmlIncubator_ForceCompletion(QtObjectPtr ptr); +int QQmlIncubator_IncubationMode(QtObjectPtr ptr); +int QQmlIncubator_IsError(QtObjectPtr ptr); +int QQmlIncubator_IsLoading(QtObjectPtr ptr); +int QQmlIncubator_IsNull(QtObjectPtr ptr); +int QQmlIncubator_IsReady(QtObjectPtr ptr); +QtObjectPtr QQmlIncubator_Object(QtObjectPtr ptr); +int QQmlIncubator_Status(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/qml/qqmllistproperty.cpp b/qml/qqmllistproperty.cpp new file mode 100755 index 00000000..904451ee --- /dev/null +++ b/qml/qqmllistproperty.cpp @@ -0,0 +1,9 @@ +#include "qqmllistproperty.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/qml/qqmllistproperty.go b/qml/qqmllistproperty.go new file mode 100755 index 00000000..865a2535 --- /dev/null +++ b/qml/qqmllistproperty.go @@ -0,0 +1,40 @@ +package qml + +//#include "qqmllistproperty.h" +import "C" +import ( + "unsafe" +) + +type QQmlListProperty struct { + ptr unsafe.Pointer +} + +type QQmlListPropertyITF interface { + QQmlListPropertyPTR() *QQmlListProperty +} + +func (p *QQmlListProperty) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QQmlListProperty) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQQmlListProperty(ptr QQmlListPropertyITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQmlListPropertyPTR().Pointer() + } + return nil +} + +func QQmlListPropertyFromPointer(ptr unsafe.Pointer) *QQmlListProperty { + var n = new(QQmlListProperty) + n.SetPointer(ptr) + return n +} + +func (ptr *QQmlListProperty) QQmlListPropertyPTR() *QQmlListProperty { + return ptr +} diff --git a/qml/qqmllistproperty.h b/qml/qqmllistproperty.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/qml/qqmllistproperty.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/qml/qqmllistreference.cpp b/qml/qqmllistreference.cpp new file mode 100755 index 00000000..3b1f7cac --- /dev/null +++ b/qml/qqmllistreference.cpp @@ -0,0 +1,77 @@ +#include "qqmllistreference.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQmlListReference: public QQmlListReference { +public: +}; + +QtObjectPtr QQmlListReference_NewQQmlListReference(){ + return new QQmlListReference(); +} + +QtObjectPtr QQmlListReference_NewQQmlListReference2(QtObjectPtr object, char* property, QtObjectPtr engine){ + return new QQmlListReference(static_cast(object), const_cast(property), static_cast(engine)); +} + +int QQmlListReference_Append(QtObjectPtr ptr, QtObjectPtr object){ + return static_cast(ptr)->append(static_cast(object)); +} + +QtObjectPtr QQmlListReference_At(QtObjectPtr ptr, int index){ + return static_cast(ptr)->at(index); +} + +int QQmlListReference_CanAppend(QtObjectPtr ptr){ + return static_cast(ptr)->canAppend(); +} + +int QQmlListReference_CanAt(QtObjectPtr ptr){ + return static_cast(ptr)->canAt(); +} + +int QQmlListReference_CanClear(QtObjectPtr ptr){ + return static_cast(ptr)->canClear(); +} + +int QQmlListReference_CanCount(QtObjectPtr ptr){ + return static_cast(ptr)->canCount(); +} + +int QQmlListReference_Clear(QtObjectPtr ptr){ + return static_cast(ptr)->clear(); +} + +int QQmlListReference_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +int QQmlListReference_IsManipulable(QtObjectPtr ptr){ + return static_cast(ptr)->isManipulable(); +} + +int QQmlListReference_IsReadable(QtObjectPtr ptr){ + return static_cast(ptr)->isReadable(); +} + +int QQmlListReference_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +QtObjectPtr QQmlListReference_ListElementType(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->listElementType()); +} + +QtObjectPtr QQmlListReference_Object(QtObjectPtr ptr){ + return static_cast(ptr)->object(); +} + diff --git a/qml/qqmllistreference.go b/qml/qqmllistreference.go new file mode 100755 index 00000000..139aa1e4 --- /dev/null +++ b/qml/qqmllistreference.go @@ -0,0 +1,140 @@ +package qml + +//#include "qqmllistreference.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QQmlListReference struct { + ptr unsafe.Pointer +} + +type QQmlListReferenceITF interface { + QQmlListReferencePTR() *QQmlListReference +} + +func (p *QQmlListReference) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QQmlListReference) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQQmlListReference(ptr QQmlListReferenceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQmlListReferencePTR().Pointer() + } + return nil +} + +func QQmlListReferenceFromPointer(ptr unsafe.Pointer) *QQmlListReference { + var n = new(QQmlListReference) + n.SetPointer(ptr) + return n +} + +func (ptr *QQmlListReference) QQmlListReferencePTR() *QQmlListReference { + return ptr +} + +func NewQQmlListReference() *QQmlListReference { + return QQmlListReferenceFromPointer(unsafe.Pointer(C.QQmlListReference_NewQQmlListReference())) +} + +func NewQQmlListReference2(object core.QObjectITF, property string, engine QQmlEngineITF) *QQmlListReference { + return QQmlListReferenceFromPointer(unsafe.Pointer(C.QQmlListReference_NewQQmlListReference2(C.QtObjectPtr(core.PointerFromQObject(object)), C.CString(property), C.QtObjectPtr(PointerFromQQmlEngine(engine))))) +} + +func (ptr *QQmlListReference) Append(object core.QObjectITF) bool { + if ptr.Pointer() != nil { + return C.QQmlListReference_Append(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(object))) != 0 + } + return false +} + +func (ptr *QQmlListReference) At(index int) *core.QObject { + if ptr.Pointer() != nil { + return core.QObjectFromPointer(unsafe.Pointer(C.QQmlListReference_At(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QQmlListReference) CanAppend() bool { + if ptr.Pointer() != nil { + return C.QQmlListReference_CanAppend(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlListReference) CanAt() bool { + if ptr.Pointer() != nil { + return C.QQmlListReference_CanAt(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlListReference) CanClear() bool { + if ptr.Pointer() != nil { + return C.QQmlListReference_CanClear(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlListReference) CanCount() bool { + if ptr.Pointer() != nil { + return C.QQmlListReference_CanCount(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlListReference) Clear() bool { + if ptr.Pointer() != nil { + return C.QQmlListReference_Clear(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlListReference) Count() int { + if ptr.Pointer() != nil { + return int(C.QQmlListReference_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QQmlListReference) IsManipulable() bool { + if ptr.Pointer() != nil { + return C.QQmlListReference_IsManipulable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlListReference) IsReadable() bool { + if ptr.Pointer() != nil { + return C.QQmlListReference_IsReadable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlListReference) IsValid() bool { + if ptr.Pointer() != nil { + return C.QQmlListReference_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlListReference) ListElementType() *core.QMetaObject { + if ptr.Pointer() != nil { + return core.QMetaObjectFromPointer(unsafe.Pointer(C.QQmlListReference_ListElementType(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQmlListReference) Object() *core.QObject { + if ptr.Pointer() != nil { + return core.QObjectFromPointer(unsafe.Pointer(C.QQmlListReference_Object(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} diff --git a/qml/qqmllistreference.h b/qml/qqmllistreference.h new file mode 100755 index 00000000..6a2ccb72 --- /dev/null +++ b/qml/qqmllistreference.h @@ -0,0 +1,24 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QQmlListReference_NewQQmlListReference(); +QtObjectPtr QQmlListReference_NewQQmlListReference2(QtObjectPtr object, char* property, QtObjectPtr engine); +int QQmlListReference_Append(QtObjectPtr ptr, QtObjectPtr object); +QtObjectPtr QQmlListReference_At(QtObjectPtr ptr, int index); +int QQmlListReference_CanAppend(QtObjectPtr ptr); +int QQmlListReference_CanAt(QtObjectPtr ptr); +int QQmlListReference_CanClear(QtObjectPtr ptr); +int QQmlListReference_CanCount(QtObjectPtr ptr); +int QQmlListReference_Clear(QtObjectPtr ptr); +int QQmlListReference_Count(QtObjectPtr ptr); +int QQmlListReference_IsManipulable(QtObjectPtr ptr); +int QQmlListReference_IsReadable(QtObjectPtr ptr); +int QQmlListReference_IsValid(QtObjectPtr ptr); +QtObjectPtr QQmlListReference_ListElementType(QtObjectPtr ptr); +QtObjectPtr QQmlListReference_Object(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/qml/qqmlnetworkaccessmanagerfactory.cpp b/qml/qqmlnetworkaccessmanagerfactory.cpp new file mode 100755 index 00000000..61fc2626 --- /dev/null +++ b/qml/qqmlnetworkaccessmanagerfactory.cpp @@ -0,0 +1,21 @@ +#include "qqmlnetworkaccessmanagerfactory.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQmlNetworkAccessManagerFactory: public QQmlNetworkAccessManagerFactory { +public: +}; + +QtObjectPtr QQmlNetworkAccessManagerFactory_Create(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->create(static_cast(parent)); +} + +void QQmlNetworkAccessManagerFactory_DestroyQQmlNetworkAccessManagerFactory(QtObjectPtr ptr){ + static_cast(ptr)->~QQmlNetworkAccessManagerFactory(); +} + diff --git a/qml/qqmlnetworkaccessmanagerfactory.go b/qml/qqmlnetworkaccessmanagerfactory.go new file mode 100755 index 00000000..c393bad2 --- /dev/null +++ b/qml/qqmlnetworkaccessmanagerfactory.go @@ -0,0 +1,55 @@ +package qml + +//#include "qqmlnetworkaccessmanagerfactory.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/network" + "unsafe" +) + +type QQmlNetworkAccessManagerFactory struct { + ptr unsafe.Pointer +} + +type QQmlNetworkAccessManagerFactoryITF interface { + QQmlNetworkAccessManagerFactoryPTR() *QQmlNetworkAccessManagerFactory +} + +func (p *QQmlNetworkAccessManagerFactory) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QQmlNetworkAccessManagerFactory) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQQmlNetworkAccessManagerFactory(ptr QQmlNetworkAccessManagerFactoryITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQmlNetworkAccessManagerFactoryPTR().Pointer() + } + return nil +} + +func QQmlNetworkAccessManagerFactoryFromPointer(ptr unsafe.Pointer) *QQmlNetworkAccessManagerFactory { + var n = new(QQmlNetworkAccessManagerFactory) + n.SetPointer(ptr) + return n +} + +func (ptr *QQmlNetworkAccessManagerFactory) QQmlNetworkAccessManagerFactoryPTR() *QQmlNetworkAccessManagerFactory { + return ptr +} + +func (ptr *QQmlNetworkAccessManagerFactory) Create(parent core.QObjectITF) *network.QNetworkAccessManager { + if ptr.Pointer() != nil { + return network.QNetworkAccessManagerFromPointer(unsafe.Pointer(C.QQmlNetworkAccessManagerFactory_Create(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(parent))))) + } + return nil +} + +func (ptr *QQmlNetworkAccessManagerFactory) DestroyQQmlNetworkAccessManagerFactory() { + if ptr.Pointer() != nil { + C.QQmlNetworkAccessManagerFactory_DestroyQQmlNetworkAccessManagerFactory(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/qml/qqmlnetworkaccessmanagerfactory.h b/qml/qqmlnetworkaccessmanagerfactory.h new file mode 100755 index 00000000..3d3ddc1c --- /dev/null +++ b/qml/qqmlnetworkaccessmanagerfactory.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QQmlNetworkAccessManagerFactory_Create(QtObjectPtr ptr, QtObjectPtr parent); +void QQmlNetworkAccessManagerFactory_DestroyQQmlNetworkAccessManagerFactory(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/qml/qqmlparserstatus.cpp b/qml/qqmlparserstatus.cpp new file mode 100755 index 00000000..25630d92 --- /dev/null +++ b/qml/qqmlparserstatus.cpp @@ -0,0 +1,20 @@ +#include "qqmlparserstatus.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQmlParserStatus: public QQmlParserStatus { +public: +}; + +void QQmlParserStatus_ClassBegin(QtObjectPtr ptr){ + static_cast(ptr)->classBegin(); +} + +void QQmlParserStatus_ComponentComplete(QtObjectPtr ptr){ + static_cast(ptr)->componentComplete(); +} + diff --git a/qml/qqmlparserstatus.go b/qml/qqmlparserstatus.go new file mode 100755 index 00000000..6bbe6f00 --- /dev/null +++ b/qml/qqmlparserstatus.go @@ -0,0 +1,52 @@ +package qml + +//#include "qqmlparserstatus.h" +import "C" +import ( + "unsafe" +) + +type QQmlParserStatus struct { + ptr unsafe.Pointer +} + +type QQmlParserStatusITF interface { + QQmlParserStatusPTR() *QQmlParserStatus +} + +func (p *QQmlParserStatus) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QQmlParserStatus) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQQmlParserStatus(ptr QQmlParserStatusITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQmlParserStatusPTR().Pointer() + } + return nil +} + +func QQmlParserStatusFromPointer(ptr unsafe.Pointer) *QQmlParserStatus { + var n = new(QQmlParserStatus) + n.SetPointer(ptr) + return n +} + +func (ptr *QQmlParserStatus) QQmlParserStatusPTR() *QQmlParserStatus { + return ptr +} + +func (ptr *QQmlParserStatus) ClassBegin() { + if ptr.Pointer() != nil { + C.QQmlParserStatus_ClassBegin(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QQmlParserStatus) ComponentComplete() { + if ptr.Pointer() != nil { + C.QQmlParserStatus_ComponentComplete(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/qml/qqmlparserstatus.h b/qml/qqmlparserstatus.h new file mode 100755 index 00000000..f1d244c1 --- /dev/null +++ b/qml/qqmlparserstatus.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QQmlParserStatus_ClassBegin(QtObjectPtr ptr); +void QQmlParserStatus_ComponentComplete(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/qml/qqmlproperty.cpp b/qml/qqmlproperty.cpp new file mode 100755 index 00000000..d2684bc0 --- /dev/null +++ b/qml/qqmlproperty.cpp @@ -0,0 +1,147 @@ +#include "qqmlproperty.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQmlProperty: public QQmlProperty { +public: +}; + +QtObjectPtr QQmlProperty_NewQQmlProperty(){ + return new QQmlProperty(); +} + +QtObjectPtr QQmlProperty_NewQQmlProperty2(QtObjectPtr obj){ + return new QQmlProperty(static_cast(obj)); +} + +QtObjectPtr QQmlProperty_NewQQmlProperty3(QtObjectPtr obj, QtObjectPtr ctxt){ + return new QQmlProperty(static_cast(obj), static_cast(ctxt)); +} + +QtObjectPtr QQmlProperty_NewQQmlProperty4(QtObjectPtr obj, QtObjectPtr engine){ + return new QQmlProperty(static_cast(obj), static_cast(engine)); +} + +QtObjectPtr QQmlProperty_NewQQmlProperty5(QtObjectPtr obj, char* name){ + return new QQmlProperty(static_cast(obj), QString(name)); +} + +QtObjectPtr QQmlProperty_NewQQmlProperty6(QtObjectPtr obj, char* name, QtObjectPtr ctxt){ + return new QQmlProperty(static_cast(obj), QString(name), static_cast(ctxt)); +} + +QtObjectPtr QQmlProperty_NewQQmlProperty7(QtObjectPtr obj, char* name, QtObjectPtr engine){ + return new QQmlProperty(static_cast(obj), QString(name), static_cast(engine)); +} + +QtObjectPtr QQmlProperty_NewQQmlProperty8(QtObjectPtr other){ + return new QQmlProperty(*static_cast(other)); +} + +int QQmlProperty_ConnectNotifySignal(QtObjectPtr ptr, QtObjectPtr dest, char* slot){ + return static_cast(ptr)->connectNotifySignal(static_cast(dest), const_cast(slot)); +} + +int QQmlProperty_ConnectNotifySignal2(QtObjectPtr ptr, QtObjectPtr dest, int method){ + return static_cast(ptr)->connectNotifySignal(static_cast(dest), method); +} + +int QQmlProperty_HasNotifySignal(QtObjectPtr ptr){ + return static_cast(ptr)->hasNotifySignal(); +} + +int QQmlProperty_Index(QtObjectPtr ptr){ + return static_cast(ptr)->index(); +} + +int QQmlProperty_IsDesignable(QtObjectPtr ptr){ + return static_cast(ptr)->isDesignable(); +} + +int QQmlProperty_IsProperty(QtObjectPtr ptr){ + return static_cast(ptr)->isProperty(); +} + +int QQmlProperty_IsResettable(QtObjectPtr ptr){ + return static_cast(ptr)->isResettable(); +} + +int QQmlProperty_IsSignalProperty(QtObjectPtr ptr){ + return static_cast(ptr)->isSignalProperty(); +} + +int QQmlProperty_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QQmlProperty_IsWritable(QtObjectPtr ptr){ + return static_cast(ptr)->isWritable(); +} + +char* QQmlProperty_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +int QQmlProperty_NeedsNotifySignal(QtObjectPtr ptr){ + return static_cast(ptr)->needsNotifySignal(); +} + +QtObjectPtr QQmlProperty_Object(QtObjectPtr ptr){ + return static_cast(ptr)->object(); +} + +int QQmlProperty_PropertyType(QtObjectPtr ptr){ + return static_cast(ptr)->propertyType(); +} + +int QQmlProperty_PropertyTypeCategory(QtObjectPtr ptr){ + return static_cast(ptr)->propertyTypeCategory(); +} + +char* QQmlProperty_QQmlProperty_Read2(QtObjectPtr object, char* name){ + return QQmlProperty::read(static_cast(object), QString(name)).toString().toUtf8().data(); +} + +char* QQmlProperty_QQmlProperty_Read3(QtObjectPtr object, char* name, QtObjectPtr ctxt){ + return QQmlProperty::read(static_cast(object), QString(name), static_cast(ctxt)).toString().toUtf8().data(); +} + +char* QQmlProperty_QQmlProperty_Read4(QtObjectPtr object, char* name, QtObjectPtr engine){ + return QQmlProperty::read(static_cast(object), QString(name), static_cast(engine)).toString().toUtf8().data(); +} + +char* QQmlProperty_Read(QtObjectPtr ptr){ + return static_cast(ptr)->read().toString().toUtf8().data(); +} + +int QQmlProperty_Reset(QtObjectPtr ptr){ + return static_cast(ptr)->reset(); +} + +int QQmlProperty_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +int QQmlProperty_QQmlProperty_Write2(QtObjectPtr object, char* name, char* value){ + return QQmlProperty::write(static_cast(object), QString(name), QVariant(value)); +} + +int QQmlProperty_QQmlProperty_Write3(QtObjectPtr object, char* name, char* value, QtObjectPtr ctxt){ + return QQmlProperty::write(static_cast(object), QString(name), QVariant(value), static_cast(ctxt)); +} + +int QQmlProperty_QQmlProperty_Write4(QtObjectPtr object, char* name, char* value, QtObjectPtr engine){ + return QQmlProperty::write(static_cast(object), QString(name), QVariant(value), static_cast(engine)); +} + +int QQmlProperty_Write(QtObjectPtr ptr, char* value){ + return static_cast(ptr)->write(QVariant(value)); +} + diff --git a/qml/qqmlproperty.go b/qml/qqmlproperty.go new file mode 100755 index 00000000..5086f323 --- /dev/null +++ b/qml/qqmlproperty.go @@ -0,0 +1,249 @@ +package qml + +//#include "qqmlproperty.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QQmlProperty struct { + ptr unsafe.Pointer +} + +type QQmlPropertyITF interface { + QQmlPropertyPTR() *QQmlProperty +} + +func (p *QQmlProperty) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QQmlProperty) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQQmlProperty(ptr QQmlPropertyITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQmlPropertyPTR().Pointer() + } + return nil +} + +func QQmlPropertyFromPointer(ptr unsafe.Pointer) *QQmlProperty { + var n = new(QQmlProperty) + n.SetPointer(ptr) + return n +} + +func (ptr *QQmlProperty) QQmlPropertyPTR() *QQmlProperty { + return ptr +} + +//QQmlProperty::PropertyTypeCategory +type QQmlProperty__PropertyTypeCategory int + +var ( + QQmlProperty__InvalidCategory = QQmlProperty__PropertyTypeCategory(0) + QQmlProperty__List = QQmlProperty__PropertyTypeCategory(1) + QQmlProperty__Object = QQmlProperty__PropertyTypeCategory(2) + QQmlProperty__Normal = QQmlProperty__PropertyTypeCategory(3) +) + +//QQmlProperty::Type +type QQmlProperty__Type int + +var ( + QQmlProperty__Invalid = QQmlProperty__Type(0) + QQmlProperty__Property = QQmlProperty__Type(1) + QQmlProperty__SignalProperty = QQmlProperty__Type(2) +) + +func NewQQmlProperty() *QQmlProperty { + return QQmlPropertyFromPointer(unsafe.Pointer(C.QQmlProperty_NewQQmlProperty())) +} + +func NewQQmlProperty2(obj core.QObjectITF) *QQmlProperty { + return QQmlPropertyFromPointer(unsafe.Pointer(C.QQmlProperty_NewQQmlProperty2(C.QtObjectPtr(core.PointerFromQObject(obj))))) +} + +func NewQQmlProperty3(obj core.QObjectITF, ctxt QQmlContextITF) *QQmlProperty { + return QQmlPropertyFromPointer(unsafe.Pointer(C.QQmlProperty_NewQQmlProperty3(C.QtObjectPtr(core.PointerFromQObject(obj)), C.QtObjectPtr(PointerFromQQmlContext(ctxt))))) +} + +func NewQQmlProperty4(obj core.QObjectITF, engine QQmlEngineITF) *QQmlProperty { + return QQmlPropertyFromPointer(unsafe.Pointer(C.QQmlProperty_NewQQmlProperty4(C.QtObjectPtr(core.PointerFromQObject(obj)), C.QtObjectPtr(PointerFromQQmlEngine(engine))))) +} + +func NewQQmlProperty5(obj core.QObjectITF, name string) *QQmlProperty { + return QQmlPropertyFromPointer(unsafe.Pointer(C.QQmlProperty_NewQQmlProperty5(C.QtObjectPtr(core.PointerFromQObject(obj)), C.CString(name)))) +} + +func NewQQmlProperty6(obj core.QObjectITF, name string, ctxt QQmlContextITF) *QQmlProperty { + return QQmlPropertyFromPointer(unsafe.Pointer(C.QQmlProperty_NewQQmlProperty6(C.QtObjectPtr(core.PointerFromQObject(obj)), C.CString(name), C.QtObjectPtr(PointerFromQQmlContext(ctxt))))) +} + +func NewQQmlProperty7(obj core.QObjectITF, name string, engine QQmlEngineITF) *QQmlProperty { + return QQmlPropertyFromPointer(unsafe.Pointer(C.QQmlProperty_NewQQmlProperty7(C.QtObjectPtr(core.PointerFromQObject(obj)), C.CString(name), C.QtObjectPtr(PointerFromQQmlEngine(engine))))) +} + +func NewQQmlProperty8(other QQmlPropertyITF) *QQmlProperty { + return QQmlPropertyFromPointer(unsafe.Pointer(C.QQmlProperty_NewQQmlProperty8(C.QtObjectPtr(PointerFromQQmlProperty(other))))) +} + +func (ptr *QQmlProperty) ConnectNotifySignal(dest core.QObjectITF, slot string) bool { + if ptr.Pointer() != nil { + return C.QQmlProperty_ConnectNotifySignal(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(dest)), C.CString(slot)) != 0 + } + return false +} + +func (ptr *QQmlProperty) ConnectNotifySignal2(dest core.QObjectITF, method int) bool { + if ptr.Pointer() != nil { + return C.QQmlProperty_ConnectNotifySignal2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(dest)), C.int(method)) != 0 + } + return false +} + +func (ptr *QQmlProperty) HasNotifySignal() bool { + if ptr.Pointer() != nil { + return C.QQmlProperty_HasNotifySignal(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlProperty) Index() int { + if ptr.Pointer() != nil { + return int(C.QQmlProperty_Index(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QQmlProperty) IsDesignable() bool { + if ptr.Pointer() != nil { + return C.QQmlProperty_IsDesignable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlProperty) IsProperty() bool { + if ptr.Pointer() != nil { + return C.QQmlProperty_IsProperty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlProperty) IsResettable() bool { + if ptr.Pointer() != nil { + return C.QQmlProperty_IsResettable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlProperty) IsSignalProperty() bool { + if ptr.Pointer() != nil { + return C.QQmlProperty_IsSignalProperty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlProperty) IsValid() bool { + if ptr.Pointer() != nil { + return C.QQmlProperty_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlProperty) IsWritable() bool { + if ptr.Pointer() != nil { + return C.QQmlProperty_IsWritable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlProperty) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QQmlProperty_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QQmlProperty) NeedsNotifySignal() bool { + if ptr.Pointer() != nil { + return C.QQmlProperty_NeedsNotifySignal(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlProperty) Object() *core.QObject { + if ptr.Pointer() != nil { + return core.QObjectFromPointer(unsafe.Pointer(C.QQmlProperty_Object(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQmlProperty) PropertyType() int { + if ptr.Pointer() != nil { + return int(C.QQmlProperty_PropertyType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QQmlProperty) PropertyTypeCategory() QQmlProperty__PropertyTypeCategory { + if ptr.Pointer() != nil { + return QQmlProperty__PropertyTypeCategory(C.QQmlProperty_PropertyTypeCategory(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QQmlProperty_Read2(object core.QObjectITF, name string) string { + return C.GoString(C.QQmlProperty_QQmlProperty_Read2(C.QtObjectPtr(core.PointerFromQObject(object)), C.CString(name))) +} + +func QQmlProperty_Read3(object core.QObjectITF, name string, ctxt QQmlContextITF) string { + return C.GoString(C.QQmlProperty_QQmlProperty_Read3(C.QtObjectPtr(core.PointerFromQObject(object)), C.CString(name), C.QtObjectPtr(PointerFromQQmlContext(ctxt)))) +} + +func QQmlProperty_Read4(object core.QObjectITF, name string, engine QQmlEngineITF) string { + return C.GoString(C.QQmlProperty_QQmlProperty_Read4(C.QtObjectPtr(core.PointerFromQObject(object)), C.CString(name), C.QtObjectPtr(PointerFromQQmlEngine(engine)))) +} + +func (ptr *QQmlProperty) Read() string { + if ptr.Pointer() != nil { + return C.GoString(C.QQmlProperty_Read(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QQmlProperty) Reset() bool { + if ptr.Pointer() != nil { + return C.QQmlProperty_Reset(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlProperty) Type() QQmlProperty__Type { + if ptr.Pointer() != nil { + return QQmlProperty__Type(C.QQmlProperty_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QQmlProperty_Write2(object core.QObjectITF, name string, value string) bool { + return C.QQmlProperty_QQmlProperty_Write2(C.QtObjectPtr(core.PointerFromQObject(object)), C.CString(name), C.CString(value)) != 0 +} + +func QQmlProperty_Write3(object core.QObjectITF, name string, value string, ctxt QQmlContextITF) bool { + return C.QQmlProperty_QQmlProperty_Write3(C.QtObjectPtr(core.PointerFromQObject(object)), C.CString(name), C.CString(value), C.QtObjectPtr(PointerFromQQmlContext(ctxt))) != 0 +} + +func QQmlProperty_Write4(object core.QObjectITF, name string, value string, engine QQmlEngineITF) bool { + return C.QQmlProperty_QQmlProperty_Write4(C.QtObjectPtr(core.PointerFromQObject(object)), C.CString(name), C.CString(value), C.QtObjectPtr(PointerFromQQmlEngine(engine))) != 0 +} + +func (ptr *QQmlProperty) Write(value string) bool { + if ptr.Pointer() != nil { + return C.QQmlProperty_Write(C.QtObjectPtr(ptr.Pointer()), C.CString(value)) != 0 + } + return false +} diff --git a/qml/qqmlproperty.h b/qml/qqmlproperty.h new file mode 100755 index 00000000..d30ae190 --- /dev/null +++ b/qml/qqmlproperty.h @@ -0,0 +1,42 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QQmlProperty_NewQQmlProperty(); +QtObjectPtr QQmlProperty_NewQQmlProperty2(QtObjectPtr obj); +QtObjectPtr QQmlProperty_NewQQmlProperty3(QtObjectPtr obj, QtObjectPtr ctxt); +QtObjectPtr QQmlProperty_NewQQmlProperty4(QtObjectPtr obj, QtObjectPtr engine); +QtObjectPtr QQmlProperty_NewQQmlProperty5(QtObjectPtr obj, char* name); +QtObjectPtr QQmlProperty_NewQQmlProperty6(QtObjectPtr obj, char* name, QtObjectPtr ctxt); +QtObjectPtr QQmlProperty_NewQQmlProperty7(QtObjectPtr obj, char* name, QtObjectPtr engine); +QtObjectPtr QQmlProperty_NewQQmlProperty8(QtObjectPtr other); +int QQmlProperty_ConnectNotifySignal(QtObjectPtr ptr, QtObjectPtr dest, char* slot); +int QQmlProperty_ConnectNotifySignal2(QtObjectPtr ptr, QtObjectPtr dest, int method); +int QQmlProperty_HasNotifySignal(QtObjectPtr ptr); +int QQmlProperty_Index(QtObjectPtr ptr); +int QQmlProperty_IsDesignable(QtObjectPtr ptr); +int QQmlProperty_IsProperty(QtObjectPtr ptr); +int QQmlProperty_IsResettable(QtObjectPtr ptr); +int QQmlProperty_IsSignalProperty(QtObjectPtr ptr); +int QQmlProperty_IsValid(QtObjectPtr ptr); +int QQmlProperty_IsWritable(QtObjectPtr ptr); +char* QQmlProperty_Name(QtObjectPtr ptr); +int QQmlProperty_NeedsNotifySignal(QtObjectPtr ptr); +QtObjectPtr QQmlProperty_Object(QtObjectPtr ptr); +int QQmlProperty_PropertyType(QtObjectPtr ptr); +int QQmlProperty_PropertyTypeCategory(QtObjectPtr ptr); +char* QQmlProperty_QQmlProperty_Read2(QtObjectPtr object, char* name); +char* QQmlProperty_QQmlProperty_Read3(QtObjectPtr object, char* name, QtObjectPtr ctxt); +char* QQmlProperty_QQmlProperty_Read4(QtObjectPtr object, char* name, QtObjectPtr engine); +char* QQmlProperty_Read(QtObjectPtr ptr); +int QQmlProperty_Reset(QtObjectPtr ptr); +int QQmlProperty_Type(QtObjectPtr ptr); +int QQmlProperty_QQmlProperty_Write2(QtObjectPtr object, char* name, char* value); +int QQmlProperty_QQmlProperty_Write3(QtObjectPtr object, char* name, char* value, QtObjectPtr ctxt); +int QQmlProperty_QQmlProperty_Write4(QtObjectPtr object, char* name, char* value, QtObjectPtr engine); +int QQmlProperty_Write(QtObjectPtr ptr, char* value); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/qml/qqmlpropertymap.cpp b/qml/qqmlpropertymap.cpp new file mode 100755 index 00000000..63ce42dc --- /dev/null +++ b/qml/qqmlpropertymap.cpp @@ -0,0 +1,59 @@ +#include "qqmlpropertymap.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQmlPropertyMap: public QQmlPropertyMap { +public: +void Signal_ValueChanged(const QString & key, const QVariant & value){callbackQQmlPropertyMapValueChanged(this->objectName().toUtf8().data(), key.toUtf8().data(), value.toString().toUtf8().data());}; +}; + +QtObjectPtr QQmlPropertyMap_NewQQmlPropertyMap(QtObjectPtr parent){ + return new QQmlPropertyMap(static_cast(parent)); +} + +void QQmlPropertyMap_Clear(QtObjectPtr ptr, char* key){ + static_cast(ptr)->clear(QString(key)); +} + +int QQmlPropertyMap_Contains(QtObjectPtr ptr, char* key){ + return static_cast(ptr)->contains(QString(key)); +} + +int QQmlPropertyMap_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +int QQmlPropertyMap_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +char* QQmlPropertyMap_Keys(QtObjectPtr ptr){ + return static_cast(ptr)->keys().join("|").toUtf8().data(); +} + +int QQmlPropertyMap_Size(QtObjectPtr ptr){ + return static_cast(ptr)->size(); +} + +char* QQmlPropertyMap_Value(QtObjectPtr ptr, char* key){ + return static_cast(ptr)->value(QString(key)).toString().toUtf8().data(); +} + +void QQmlPropertyMap_ConnectValueChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQmlPropertyMap::valueChanged), static_cast(ptr), static_cast(&MyQQmlPropertyMap::Signal_ValueChanged));; +} + +void QQmlPropertyMap_DisconnectValueChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQmlPropertyMap::valueChanged), static_cast(ptr), static_cast(&MyQQmlPropertyMap::Signal_ValueChanged));; +} + +void QQmlPropertyMap_DestroyQQmlPropertyMap(QtObjectPtr ptr){ + static_cast(ptr)->~QQmlPropertyMap(); +} + diff --git a/qml/qqmlpropertymap.go b/qml/qqmlpropertymap.go new file mode 100755 index 00000000..7c97ae47 --- /dev/null +++ b/qml/qqmlpropertymap.go @@ -0,0 +1,117 @@ +package qml + +//#include "qqmlpropertymap.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QQmlPropertyMap struct { + core.QObject +} + +type QQmlPropertyMapITF interface { + core.QObjectITF + QQmlPropertyMapPTR() *QQmlPropertyMap +} + +func PointerFromQQmlPropertyMap(ptr QQmlPropertyMapITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQmlPropertyMapPTR().Pointer() + } + return nil +} + +func QQmlPropertyMapFromPointer(ptr unsafe.Pointer) *QQmlPropertyMap { + var n = new(QQmlPropertyMap) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QQmlPropertyMap_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QQmlPropertyMap) QQmlPropertyMapPTR() *QQmlPropertyMap { + return ptr +} + +func NewQQmlPropertyMap(parent core.QObjectITF) *QQmlPropertyMap { + return QQmlPropertyMapFromPointer(unsafe.Pointer(C.QQmlPropertyMap_NewQQmlPropertyMap(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QQmlPropertyMap) Clear(key string) { + if ptr.Pointer() != nil { + C.QQmlPropertyMap_Clear(C.QtObjectPtr(ptr.Pointer()), C.CString(key)) + } +} + +func (ptr *QQmlPropertyMap) Contains(key string) bool { + if ptr.Pointer() != nil { + return C.QQmlPropertyMap_Contains(C.QtObjectPtr(ptr.Pointer()), C.CString(key)) != 0 + } + return false +} + +func (ptr *QQmlPropertyMap) Count() int { + if ptr.Pointer() != nil { + return int(C.QQmlPropertyMap_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QQmlPropertyMap) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QQmlPropertyMap_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlPropertyMap) Keys() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QQmlPropertyMap_Keys(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QQmlPropertyMap) Size() int { + if ptr.Pointer() != nil { + return int(C.QQmlPropertyMap_Size(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QQmlPropertyMap) Value(key string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QQmlPropertyMap_Value(C.QtObjectPtr(ptr.Pointer()), C.CString(key))) + } + return "" +} + +func (ptr *QQmlPropertyMap) ConnectValueChanged(f func(key string, value string)) { + if ptr.Pointer() != nil { + C.QQmlPropertyMap_ConnectValueChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "valueChanged", f) + } +} + +func (ptr *QQmlPropertyMap) DisconnectValueChanged() { + if ptr.Pointer() != nil { + C.QQmlPropertyMap_DisconnectValueChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "valueChanged") + } +} + +//export callbackQQmlPropertyMapValueChanged +func callbackQQmlPropertyMapValueChanged(ptrName *C.char, key *C.char, value *C.char) { + qt.GetSignal(C.GoString(ptrName), "valueChanged").(func(string, string))(C.GoString(key), C.GoString(value)) +} + +func (ptr *QQmlPropertyMap) DestroyQQmlPropertyMap() { + if ptr.Pointer() != nil { + C.QQmlPropertyMap_DestroyQQmlPropertyMap(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/qml/qqmlpropertymap.h b/qml/qqmlpropertymap.h new file mode 100755 index 00000000..db27ea72 --- /dev/null +++ b/qml/qqmlpropertymap.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QQmlPropertyMap_NewQQmlPropertyMap(QtObjectPtr parent); +void QQmlPropertyMap_Clear(QtObjectPtr ptr, char* key); +int QQmlPropertyMap_Contains(QtObjectPtr ptr, char* key); +int QQmlPropertyMap_Count(QtObjectPtr ptr); +int QQmlPropertyMap_IsEmpty(QtObjectPtr ptr); +char* QQmlPropertyMap_Keys(QtObjectPtr ptr); +int QQmlPropertyMap_Size(QtObjectPtr ptr); +char* QQmlPropertyMap_Value(QtObjectPtr ptr, char* key); +void QQmlPropertyMap_ConnectValueChanged(QtObjectPtr ptr); +void QQmlPropertyMap_DisconnectValueChanged(QtObjectPtr ptr); +void QQmlPropertyMap_DestroyQQmlPropertyMap(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/qml/qqmlpropertyvaluesource.cpp b/qml/qqmlpropertyvaluesource.cpp new file mode 100755 index 00000000..59f540b7 --- /dev/null +++ b/qml/qqmlpropertyvaluesource.cpp @@ -0,0 +1,21 @@ +#include "qqmlpropertyvaluesource.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQmlPropertyValueSource: public QQmlPropertyValueSource { +public: +}; + +void QQmlPropertyValueSource_SetTarget(QtObjectPtr ptr, QtObjectPtr property){ + static_cast(ptr)->setTarget(*static_cast(property)); +} + +void QQmlPropertyValueSource_DestroyQQmlPropertyValueSource(QtObjectPtr ptr){ + static_cast(ptr)->~QQmlPropertyValueSource(); +} + diff --git a/qml/qqmlpropertyvaluesource.go b/qml/qqmlpropertyvaluesource.go new file mode 100755 index 00000000..e9412c2a --- /dev/null +++ b/qml/qqmlpropertyvaluesource.go @@ -0,0 +1,52 @@ +package qml + +//#include "qqmlpropertyvaluesource.h" +import "C" +import ( + "unsafe" +) + +type QQmlPropertyValueSource struct { + ptr unsafe.Pointer +} + +type QQmlPropertyValueSourceITF interface { + QQmlPropertyValueSourcePTR() *QQmlPropertyValueSource +} + +func (p *QQmlPropertyValueSource) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QQmlPropertyValueSource) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQQmlPropertyValueSource(ptr QQmlPropertyValueSourceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQmlPropertyValueSourcePTR().Pointer() + } + return nil +} + +func QQmlPropertyValueSourceFromPointer(ptr unsafe.Pointer) *QQmlPropertyValueSource { + var n = new(QQmlPropertyValueSource) + n.SetPointer(ptr) + return n +} + +func (ptr *QQmlPropertyValueSource) QQmlPropertyValueSourcePTR() *QQmlPropertyValueSource { + return ptr +} + +func (ptr *QQmlPropertyValueSource) SetTarget(property QQmlPropertyITF) { + if ptr.Pointer() != nil { + C.QQmlPropertyValueSource_SetTarget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQQmlProperty(property))) + } +} + +func (ptr *QQmlPropertyValueSource) DestroyQQmlPropertyValueSource() { + if ptr.Pointer() != nil { + C.QQmlPropertyValueSource_DestroyQQmlPropertyValueSource(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/qml/qqmlpropertyvaluesource.h b/qml/qqmlpropertyvaluesource.h new file mode 100755 index 00000000..be423052 --- /dev/null +++ b/qml/qqmlpropertyvaluesource.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QQmlPropertyValueSource_SetTarget(QtObjectPtr ptr, QtObjectPtr property); +void QQmlPropertyValueSource_DestroyQQmlPropertyValueSource(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/qml/qqmlscriptstring.cpp b/qml/qqmlscriptstring.cpp new file mode 100755 index 00000000..d4000770 --- /dev/null +++ b/qml/qqmlscriptstring.cpp @@ -0,0 +1,40 @@ +#include "qqmlscriptstring.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQmlScriptString: public QQmlScriptString { +public: +}; + +QtObjectPtr QQmlScriptString_NewQQmlScriptString(){ + return new QQmlScriptString(); +} + +QtObjectPtr QQmlScriptString_NewQQmlScriptString2(QtObjectPtr other){ + return new QQmlScriptString(*static_cast(other)); +} + +int QQmlScriptString_BooleanLiteral(QtObjectPtr ptr, int ok){ + return static_cast(ptr)->booleanLiteral(NULL); +} + +int QQmlScriptString_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +int QQmlScriptString_IsNullLiteral(QtObjectPtr ptr){ + return static_cast(ptr)->isNullLiteral(); +} + +int QQmlScriptString_IsUndefinedLiteral(QtObjectPtr ptr){ + return static_cast(ptr)->isUndefinedLiteral(); +} + +char* QQmlScriptString_StringLiteral(QtObjectPtr ptr){ + return static_cast(ptr)->stringLiteral().toUtf8().data(); +} + diff --git a/qml/qqmlscriptstring.go b/qml/qqmlscriptstring.go new file mode 100755 index 00000000..0b780192 --- /dev/null +++ b/qml/qqmlscriptstring.go @@ -0,0 +1,84 @@ +package qml + +//#include "qqmlscriptstring.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QQmlScriptString struct { + ptr unsafe.Pointer +} + +type QQmlScriptStringITF interface { + QQmlScriptStringPTR() *QQmlScriptString +} + +func (p *QQmlScriptString) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QQmlScriptString) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQQmlScriptString(ptr QQmlScriptStringITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQmlScriptStringPTR().Pointer() + } + return nil +} + +func QQmlScriptStringFromPointer(ptr unsafe.Pointer) *QQmlScriptString { + var n = new(QQmlScriptString) + n.SetPointer(ptr) + return n +} + +func (ptr *QQmlScriptString) QQmlScriptStringPTR() *QQmlScriptString { + return ptr +} + +func NewQQmlScriptString() *QQmlScriptString { + return QQmlScriptStringFromPointer(unsafe.Pointer(C.QQmlScriptString_NewQQmlScriptString())) +} + +func NewQQmlScriptString2(other QQmlScriptStringITF) *QQmlScriptString { + return QQmlScriptStringFromPointer(unsafe.Pointer(C.QQmlScriptString_NewQQmlScriptString2(C.QtObjectPtr(PointerFromQQmlScriptString(other))))) +} + +func (ptr *QQmlScriptString) BooleanLiteral(ok bool) bool { + if ptr.Pointer() != nil { + return C.QQmlScriptString_BooleanLiteral(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(ok))) != 0 + } + return false +} + +func (ptr *QQmlScriptString) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QQmlScriptString_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlScriptString) IsNullLiteral() bool { + if ptr.Pointer() != nil { + return C.QQmlScriptString_IsNullLiteral(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlScriptString) IsUndefinedLiteral() bool { + if ptr.Pointer() != nil { + return C.QQmlScriptString_IsUndefinedLiteral(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQmlScriptString) StringLiteral() string { + if ptr.Pointer() != nil { + return C.GoString(C.QQmlScriptString_StringLiteral(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/qml/qqmlscriptstring.h b/qml/qqmlscriptstring.h new file mode 100755 index 00000000..96a327cb --- /dev/null +++ b/qml/qqmlscriptstring.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QQmlScriptString_NewQQmlScriptString(); +QtObjectPtr QQmlScriptString_NewQQmlScriptString2(QtObjectPtr other); +int QQmlScriptString_BooleanLiteral(QtObjectPtr ptr, int ok); +int QQmlScriptString_IsEmpty(QtObjectPtr ptr); +int QQmlScriptString_IsNullLiteral(QtObjectPtr ptr); +int QQmlScriptString_IsUndefinedLiteral(QtObjectPtr ptr); +char* QQmlScriptString_StringLiteral(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/qmodelindex.cpp b/qmodelindex.cpp deleted file mode 100644 index 8db215cd..00000000 --- a/qmodelindex.cpp +++ /dev/null @@ -1,32 +0,0 @@ -#include "qmodelindex.h" -#include -#include "cgoexport.h" - - - -//Public Functions -int QModelIndex_Column(QtObjectPtr ptr) -{ - return ((QModelIndex*)(ptr))->column(); -} - -char* QModelIndex_Data_Int(QtObjectPtr ptr, int role) -{ - return ((QModelIndex*)(ptr))->data(role).toString().toUtf8().data(); -} - -int QModelIndex_Flags(QtObjectPtr ptr) -{ - return ((QModelIndex*)(ptr))->flags(); -} - -int QModelIndex_IsValid(QtObjectPtr ptr) -{ - return ((QModelIndex*)(ptr))->isValid(); -} - -int QModelIndex_Row(QtObjectPtr ptr) -{ - return ((QModelIndex*)(ptr))->row(); -} - diff --git a/qmodelindex.go b/qmodelindex.go deleted file mode 100644 index 68873d67..00000000 --- a/qmodelindex.go +++ /dev/null @@ -1,61 +0,0 @@ -package qt - -//#include "qmodelindex.h" -import "C" - -type qmodelindex struct { - ptr C.QtObjectPtr -} - -type QModelIndex interface { - Pointer() (ptr C.QtObjectPtr) - SetPointer(ptr C.QtObjectPtr) - Column() int - Data(role int) string - Flags() ItemFlag - IsValid() bool - Row() int -} - -func (p *qmodelindex) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qmodelindex) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func (p *qmodelindex) Column() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QModelIndex_Column(p.Pointer())) -} - -func (p *qmodelindex) Data(role int) string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QModelIndex_Data_Int(p.Pointer(), C.int(role))) -} - -func (p *qmodelindex) Flags() ItemFlag { - if p.Pointer() == nil { - return 0 - } - return ItemFlag(C.QModelIndex_Flags(p.Pointer())) -} - -func (p *qmodelindex) IsValid() bool { - if p.Pointer() == nil { - return false - } - return C.QModelIndex_IsValid(p.Pointer()) != 0 -} - -func (p *qmodelindex) Row() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QModelIndex_Row(p.Pointer())) -} diff --git a/qmodelindex.h b/qmodelindex.h deleted file mode 100644 index c48e8411..00000000 --- a/qmodelindex.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -int QModelIndex_Column(QtObjectPtr ptr); -char* QModelIndex_Data_Int(QtObjectPtr ptr, int role); -int QModelIndex_Flags(QtObjectPtr ptr); -int QModelIndex_IsValid(QtObjectPtr ptr); -int QModelIndex_Row(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qmodelindex.moc b/qmodelindex.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/qobject.cpp b/qobject.cpp deleted file mode 100644 index 952026a8..00000000 --- a/qobject.cpp +++ /dev/null @@ -1,172 +0,0 @@ -#include "qobject.h" -#include -#include "cgoexport.h" - -//MyQObject -class MyQObject: public QObject { -Q_OBJECT -public: -void Signal_Destroyed() { callbackQObject(this, QString("destroyed").toUtf8().data()); }; -void Signal_ObjectNameChanged() { callbackQObject(this, QString("objectNameChanged").toUtf8().data()); }; - -signals: -void Slot_DeleteLater(); - -}; -#include "qobject.moc" - - -//Public Functions -QtObjectPtr QObject_New_QObject(QtObjectPtr parent) -{ - return new QObject(((QObject*)(parent))); -} - -void QObject_Destroy(QtObjectPtr ptr) -{ - ((QObject*)(ptr))->~QObject(); -} - -int QObject_BlockSignals_Bool(QtObjectPtr ptr, int block) -{ - return ((QObject*)(ptr))->blockSignals(block != 0); -} - -int QObject_Disconnect_String_QObject_String(QtObjectPtr ptr, char* signal, QtObjectPtr receiver, char* method) -{ - return ((QObject*)(ptr))->disconnect(signal, ((QObject*)(receiver)), method); -} - -int QObject_Disconnect_QObject_String(QtObjectPtr ptr, QtObjectPtr receiver, char* method) -{ - return ((QObject*)(ptr))->disconnect(((QObject*)(receiver)), method); -} - -void QObject_DumpObjectInfo(QtObjectPtr ptr) -{ - ((QObject*)(ptr))->dumpObjectInfo(); -} - -void QObject_DumpObjectTree(QtObjectPtr ptr) -{ - ((QObject*)(ptr))->dumpObjectTree(); -} - -int QObject_Inherits_String(QtObjectPtr ptr, char* className) -{ - return ((QObject*)(ptr))->inherits(className); -} - -void QObject_InstallEventFilter_QObject(QtObjectPtr ptr, QtObjectPtr filterObj) -{ - ((QObject*)(ptr))->installEventFilter(((QObject*)(filterObj))); -} - -int QObject_IsWidgetType(QtObjectPtr ptr) -{ - return ((QObject*)(ptr))->isWidgetType(); -} - -int QObject_IsWindowType(QtObjectPtr ptr) -{ - return ((QObject*)(ptr))->isWindowType(); -} - -void QObject_KillTimer_Int(QtObjectPtr ptr, int id) -{ - ((QObject*)(ptr))->killTimer(id); -} - -void QObject_MoveToThread_QThread(QtObjectPtr ptr, QtObjectPtr targetThread) -{ - ((QObject*)(ptr))->moveToThread(((QThread*)(targetThread))); -} - -char* QObject_ObjectName(QtObjectPtr ptr) -{ - return ((QObject*)(ptr))->objectName().toUtf8().data(); -} - -QtObjectPtr QObject_Parent(QtObjectPtr ptr) -{ - return ((QObject*)(ptr))->parent(); -} - -void QObject_RemoveEventFilter_QObject(QtObjectPtr ptr, QtObjectPtr obj) -{ - ((QObject*)(ptr))->removeEventFilter(((QObject*)(obj))); -} - -void QObject_SetObjectName_String(QtObjectPtr ptr, char* name) -{ - ((QObject*)(ptr))->setObjectName(QString(name)); -} - -void QObject_SetParent_QObject(QtObjectPtr ptr, QtObjectPtr parent) -{ - ((QObject*)(ptr))->setParent(((QObject*)(parent))); -} - -int QObject_SignalsBlocked(QtObjectPtr ptr) -{ - return ((QObject*)(ptr))->signalsBlocked(); -} - -int QObject_StartTimer_Int_TimerType(QtObjectPtr ptr, int interval, int timerType) -{ - return ((QObject*)(ptr))->startTimer(interval, ((Qt::TimerType)(timerType))); -} - -QtObjectPtr QObject_Thread(QtObjectPtr ptr) -{ - return ((QObject*)(ptr))->thread(); -} - -//Public Slots -void QObject_ConnectSlotDeleteLater(QtObjectPtr ptr) -{ - QObject::connect(((MyQObject*)(ptr)), &MyQObject::Slot_DeleteLater, ((QObject*)(ptr)), &QObject::deleteLater, Qt::QueuedConnection); -} - -void QObject_DisconnectSlotDeleteLater(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQObject*)(ptr)), &MyQObject::Slot_DeleteLater, ((QObject*)(ptr)), &QObject::deleteLater); -} - -void QObject_DeleteLater(QtObjectPtr ptr) -{ - ((MyQObject*)(ptr))->Slot_DeleteLater(); -} - -//Signals -void QObject_ConnectSignalDestroyed(QtObjectPtr ptr) -{ - QObject::connect(((QObject*)(ptr)), &QObject::destroyed, ((MyQObject*)(ptr)), &MyQObject::Signal_Destroyed, Qt::QueuedConnection); -} - -void QObject_DisconnectSignalDestroyed(QtObjectPtr ptr) -{ - QObject::disconnect(((QObject*)(ptr)), &QObject::destroyed, ((MyQObject*)(ptr)), &MyQObject::Signal_Destroyed); -} - -void QObject_ConnectSignalObjectNameChanged(QtObjectPtr ptr) -{ - QObject::connect(((QObject*)(ptr)), &QObject::objectNameChanged, ((MyQObject*)(ptr)), &MyQObject::Signal_ObjectNameChanged, Qt::QueuedConnection); -} - -void QObject_DisconnectSignalObjectNameChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QObject*)(ptr)), &QObject::objectNameChanged, ((MyQObject*)(ptr)), &MyQObject::Signal_ObjectNameChanged); -} - -//Static Public Members -int QObject_Disconnect_QObject_String_QObject_String(QtObjectPtr sender, char* signal, QtObjectPtr receiver, char* method) -{ - return QObject::disconnect(((QObject*)(sender)), signal, ((QObject*)(receiver)), method); -} - -char* QObject_Tr_String_String_Int(char* sourceText, char* disambiguation, int n) -{ - return QObject::tr(sourceText, disambiguation, n).toUtf8().data(); -} - diff --git a/qobject.go b/qobject.go deleted file mode 100644 index f7ca45ae..00000000 --- a/qobject.go +++ /dev/null @@ -1,298 +0,0 @@ -package qt - -//#include "qobject.h" -import "C" - -type qobject struct { - ptr C.QtObjectPtr -} - -type QObject interface { - Pointer() (ptr C.QtObjectPtr) - SetPointer(ptr C.QtObjectPtr) - Destroy() - BlockSignals(block bool) bool - Disconnect1(signal string, receiver QObject, method string) bool - Disconnect2(receiver QObject, method string) bool - DumpObjectInfo() - DumpObjectTree() - Inherits(className string) bool - InstallEventFilter(filterObj QObject) - IsWidgetType() bool - IsWindowType() bool - KillTimer(id int) - MoveToThread(targetThread QThread) - ObjectName() string - Parent() QObject - RemoveEventFilter(obj QObject) - SetObjectName(name string) - SetParent(parent QObject) - SignalsBlocked() bool - StartTimer(interval int, timerType TimerType) int - Thread() QThread - ConnectSlotDeleteLater() - DisconnectSlotDeleteLater() - SlotDeleteLater() - ConnectSignalDestroyed(f func()) - DisconnectSignalDestroyed() - SignalDestroyed() func() - ConnectSignalObjectNameChanged(f func()) - DisconnectSignalObjectNameChanged() - SignalObjectNameChanged() func() -} - -func (p *qobject) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qobject) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQObject(parent QObject) QObject { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qobject = new(qobject) - qobject.SetPointer(C.QObject_New_QObject(parentPtr)) - qobject.SetObjectName("QObject_" + randomIdentifier()) - return qobject -} - -func (p *qobject) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QObject_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qobject) BlockSignals(block bool) bool { - if p.Pointer() == nil { - return false - } - return C.QObject_BlockSignals_Bool(p.Pointer(), goBoolToCInt(block)) != 0 -} - -func (p *qobject) Disconnect1(signal string, receiver QObject, method string) bool { - if p.Pointer() == nil { - return false - } else { - var receiverPtr C.QtObjectPtr - if receiver != nil { - receiverPtr = receiver.Pointer() - } - return C.QObject_Disconnect_String_QObject_String(p.Pointer(), C.CString(signal), receiverPtr, C.CString(method)) != 0 - } -} - -func (p *qobject) Disconnect2(receiver QObject, method string) bool { - if p.Pointer() == nil { - return false - } else { - var receiverPtr C.QtObjectPtr - if receiver != nil { - receiverPtr = receiver.Pointer() - } - return C.QObject_Disconnect_QObject_String(p.Pointer(), receiverPtr, C.CString(method)) != 0 - } -} - -func (p *qobject) DumpObjectInfo() { - if p.Pointer() != nil { - C.QObject_DumpObjectInfo(p.Pointer()) - } -} - -func (p *qobject) DumpObjectTree() { - if p.Pointer() != nil { - C.QObject_DumpObjectTree(p.Pointer()) - } -} - -func (p *qobject) Inherits(className string) bool { - if p.Pointer() == nil { - return false - } - return C.QObject_Inherits_String(p.Pointer(), C.CString(className)) != 0 -} - -func (p *qobject) InstallEventFilter(filterObj QObject) { - if p.Pointer() != nil { - var filterObjPtr C.QtObjectPtr - if filterObj != nil { - filterObjPtr = filterObj.Pointer() - } - C.QObject_InstallEventFilter_QObject(p.Pointer(), filterObjPtr) - } -} - -func (p *qobject) IsWidgetType() bool { - if p.Pointer() == nil { - return false - } - return C.QObject_IsWidgetType(p.Pointer()) != 0 -} - -func (p *qobject) IsWindowType() bool { - if p.Pointer() == nil { - return false - } - return C.QObject_IsWindowType(p.Pointer()) != 0 -} - -func (p *qobject) KillTimer(id int) { - if p.Pointer() != nil { - C.QObject_KillTimer_Int(p.Pointer(), C.int(id)) - } -} - -func (p *qobject) MoveToThread(targetThread QThread) { - if p.Pointer() != nil { - var targetThreadPtr C.QtObjectPtr - if targetThread != nil { - targetThreadPtr = targetThread.Pointer() - } - C.QObject_MoveToThread_QThread(p.Pointer(), targetThreadPtr) - } -} - -func (p *qobject) ObjectName() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QObject_ObjectName(p.Pointer())) -} - -func (p *qobject) Parent() QObject { - if p.Pointer() == nil { - return nil - } else { - var qobject = new(qobject) - qobject.SetPointer(C.QObject_Parent(p.Pointer())) - if qobject.ObjectName() == "" { - qobject.SetObjectName("QObject_" + randomIdentifier()) - } - return qobject - } -} - -func (p *qobject) RemoveEventFilter(obj QObject) { - if p.Pointer() != nil { - var objPtr C.QtObjectPtr - if obj != nil { - objPtr = obj.Pointer() - } - C.QObject_RemoveEventFilter_QObject(p.Pointer(), objPtr) - } -} - -func (p *qobject) SetObjectName(name string) { - if p.Pointer() != nil { - C.QObject_SetObjectName_String(p.Pointer(), C.CString(name)) - } -} - -func (p *qobject) SetParent(parent QObject) { - if p.Pointer() != nil { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - C.QObject_SetParent_QObject(p.Pointer(), parentPtr) - } -} - -func (p *qobject) SignalsBlocked() bool { - if p.Pointer() == nil { - return false - } - return C.QObject_SignalsBlocked(p.Pointer()) != 0 -} - -func (p *qobject) StartTimer(interval int, timerType TimerType) int { - if p.Pointer() == nil { - return 0 - } - return int(C.QObject_StartTimer_Int_TimerType(p.Pointer(), C.int(interval), C.int(timerType))) -} - -func (p *qobject) Thread() QThread { - if p.Pointer() == nil { - return nil - } else { - var qthread = new(qthread) - qthread.SetPointer(C.QObject_Thread(p.Pointer())) - if qthread.ObjectName() == "" { - qthread.SetObjectName("QThread_" + randomIdentifier()) - } - return qthread - } -} - -func (p *qobject) ConnectSlotDeleteLater() { - C.QObject_ConnectSlotDeleteLater(p.Pointer()) -} - -func (p *qobject) DisconnectSlotDeleteLater() { - C.QObject_DisconnectSlotDeleteLater(p.Pointer()) -} - -func (p *qobject) SlotDeleteLater() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QObject_DeleteLater(p.Pointer()) - } -} - -func (p *qobject) ConnectSignalDestroyed(f func()) { - C.QObject_ConnectSignalDestroyed(p.Pointer()) - connectSignal(p.ObjectName(), "destroyed", f) -} - -func (p *qobject) DisconnectSignalDestroyed() { - C.QObject_DisconnectSignalDestroyed(p.Pointer()) - disconnectSignal(p.ObjectName(), "destroyed") -} - -func (p *qobject) SignalDestroyed() func() { - return getSignal(p.ObjectName(), "destroyed") -} - -func (p *qobject) ConnectSignalObjectNameChanged(f func()) { - C.QObject_ConnectSignalObjectNameChanged(p.Pointer()) - connectSignal(p.ObjectName(), "objectNameChanged", f) -} - -func (p *qobject) DisconnectSignalObjectNameChanged() { - C.QObject_DisconnectSignalObjectNameChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "objectNameChanged") -} - -func (p *qobject) SignalObjectNameChanged() func() { - return getSignal(p.ObjectName(), "objectNameChanged") -} - -func QObject_Disconnect3(sender QObject, signal string, receiver QObject, method string) bool { - var senderPtr C.QtObjectPtr - if sender != nil { - senderPtr = sender.Pointer() - } - var receiverPtr C.QtObjectPtr - if receiver != nil { - receiverPtr = receiver.Pointer() - } - return C.QObject_Disconnect_QObject_String_QObject_String(senderPtr, C.CString(signal), receiverPtr, C.CString(method)) != 0 -} - -func QObject_Tr(sourceText string, disambiguation string, n int) string { - return C.GoString(C.QObject_Tr_String_String_Int(C.CString(sourceText), C.CString(disambiguation), C.int(n))) -} - -//export callbackQObject -func callbackQObject(ptr C.QtObjectPtr, msg *C.char) { - var qobject = new(qobject) - qobject.SetPointer(ptr) - getSignal(qobject.ObjectName(), C.GoString(msg))() -} diff --git a/qobject.h b/qobject.h deleted file mode 100644 index 8075278e..00000000 --- a/qobject.h +++ /dev/null @@ -1,44 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QObject_New_QObject(QtObjectPtr parent); -void QObject_Destroy(QtObjectPtr ptr); -int QObject_BlockSignals_Bool(QtObjectPtr ptr, int block); -int QObject_Disconnect_String_QObject_String(QtObjectPtr ptr, char* signal, QtObjectPtr receiver, char* method); -int QObject_Disconnect_QObject_String(QtObjectPtr ptr, QtObjectPtr receiver, char* method); -void QObject_DumpObjectInfo(QtObjectPtr ptr); -void QObject_DumpObjectTree(QtObjectPtr ptr); -int QObject_Inherits_String(QtObjectPtr ptr, char* className); -void QObject_InstallEventFilter_QObject(QtObjectPtr ptr, QtObjectPtr filterObj); -int QObject_IsWidgetType(QtObjectPtr ptr); -int QObject_IsWindowType(QtObjectPtr ptr); -void QObject_KillTimer_Int(QtObjectPtr ptr, int id); -void QObject_MoveToThread_QThread(QtObjectPtr ptr, QtObjectPtr targetThread); -char* QObject_ObjectName(QtObjectPtr ptr); -QtObjectPtr QObject_Parent(QtObjectPtr ptr); -void QObject_RemoveEventFilter_QObject(QtObjectPtr ptr, QtObjectPtr obj); -void QObject_SetObjectName_String(QtObjectPtr ptr, char* name); -void QObject_SetParent_QObject(QtObjectPtr ptr, QtObjectPtr parent); -int QObject_SignalsBlocked(QtObjectPtr ptr); -int QObject_StartTimer_Int_TimerType(QtObjectPtr ptr, int interval, int timerType); -QtObjectPtr QObject_Thread(QtObjectPtr ptr); -//Public Slots -void QObject_ConnectSlotDeleteLater(QtObjectPtr ptr); -void QObject_DisconnectSlotDeleteLater(QtObjectPtr ptr); -void QObject_DeleteLater(QtObjectPtr ptr); -//Signals -void QObject_ConnectSignalDestroyed(QtObjectPtr ptr); -void QObject_DisconnectSignalDestroyed(QtObjectPtr ptr); -void QObject_ConnectSignalObjectNameChanged(QtObjectPtr ptr); -void QObject_DisconnectSignalObjectNameChanged(QtObjectPtr ptr); -//Static Public Members -int QObject_Disconnect_QObject_String_QObject_String(QtObjectPtr sender, char* signal, QtObjectPtr receiver, char* method); -char* QObject_Tr_String_String_Int(char* sourceText, char* disambiguation, int n); - -#ifdef __cplusplus -} -#endif diff --git a/qobject.moc b/qobject.moc deleted file mode 100644 index 82639d4b..00000000 --- a/qobject.moc +++ /dev/null @@ -1,124 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qobject.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qobject.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQObject_t { - QByteArrayData data[3]; - char stringdata[28]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQObject_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQObject_t qt_meta_stringdata_MyQObject = { - { -QT_MOC_LITERAL(0, 0, 9), // "MyQObject" -QT_MOC_LITERAL(1, 10, 16), // "Slot_DeleteLater" -QT_MOC_LITERAL(2, 27, 0) // "" - - }, - "MyQObject\0Slot_DeleteLater\0" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQObject[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 1, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 0, 19, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, - - 0 // eod -}; - -void MyQObject::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQObject *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_DeleteLater(); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQObject::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQObject::Slot_DeleteLater)) { - *result = 0; - } - } - } - Q_UNUSED(_a); -} - -const QMetaObject MyQObject::staticMetaObject = { - { &QObject::staticMetaObject, qt_meta_stringdata_MyQObject.data, - qt_meta_data_MyQObject, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQObject::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQObject::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQObject.stringdata)) - return static_cast(const_cast< MyQObject*>(this)); - return QObject::qt_metacast(_clname); -} - -int MyQObject::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QObject::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 1) - qt_static_metacall(this, _c, _id, _a); - _id -= 1; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 1) - *reinterpret_cast(_a[0]) = -1; - _id -= 1; - } - return _id; -} - -// SIGNAL 0 -void MyQObject::Slot_DeleteLater() -{ - QMetaObject::activate(this, &staticMetaObject, 0, 0); -} -QT_END_MOC_NAMESPACE diff --git a/qprogressbar.cpp b/qprogressbar.cpp deleted file mode 100644 index 891f0232..00000000 --- a/qprogressbar.cpp +++ /dev/null @@ -1,205 +0,0 @@ -#include "qprogressbar.h" -#include -#include "cgoexport.h" - -//MyQProgressBar -class MyQProgressBar: public QProgressBar { -Q_OBJECT -public: -void Signal_ValueChanged() { callbackQProgressBar(this, QString("valueChanged").toUtf8().data()); }; - -signals: -void Slot_Reset(); -void Slot_SetMaximum(int maximum); -void Slot_SetMinimum(int minimum); -void Slot_SetOrientation(Qt::Orientation orientation); -void Slot_SetRange(int minimum, int maximum); -void Slot_SetValue(int value); - -}; -#include "qprogressbar.moc" - - -//Public Functions -QtObjectPtr QProgressBar_New_QWidget(QtObjectPtr parent) -{ - return new QProgressBar(((QWidget*)(parent))); -} - -void QProgressBar_Destroy(QtObjectPtr ptr) -{ - ((QProgressBar*)(ptr))->~QProgressBar(); -} - -int QProgressBar_Alignment(QtObjectPtr ptr) -{ - return ((QProgressBar*)(ptr))->alignment(); -} - -char* QProgressBar_Format(QtObjectPtr ptr) -{ - return ((QProgressBar*)(ptr))->format().toUtf8().data(); -} - -int QProgressBar_InvertedAppearance(QtObjectPtr ptr) -{ - return ((QProgressBar*)(ptr))->invertedAppearance(); -} - -int QProgressBar_IsTextVisible(QtObjectPtr ptr) -{ - return ((QProgressBar*)(ptr))->isTextVisible(); -} - -int QProgressBar_Maximum(QtObjectPtr ptr) -{ - return ((QProgressBar*)(ptr))->maximum(); -} - -int QProgressBar_Minimum(QtObjectPtr ptr) -{ - return ((QProgressBar*)(ptr))->minimum(); -} - -int QProgressBar_Orientation(QtObjectPtr ptr) -{ - return ((QProgressBar*)(ptr))->orientation(); -} - -void QProgressBar_ResetFormat(QtObjectPtr ptr) -{ - ((QProgressBar*)(ptr))->resetFormat(); -} - -void QProgressBar_SetAlignment_AlignmentFlag(QtObjectPtr ptr, int alignment) -{ - ((QProgressBar*)(ptr))->setAlignment(((Qt::AlignmentFlag)(alignment))); -} - -void QProgressBar_SetFormat_String(QtObjectPtr ptr, char* format) -{ - ((QProgressBar*)(ptr))->setFormat(QString(format)); -} - -void QProgressBar_SetInvertedAppearance_Bool(QtObjectPtr ptr, int invert) -{ - ((QProgressBar*)(ptr))->setInvertedAppearance(invert != 0); -} - -void QProgressBar_SetTextVisible_Bool(QtObjectPtr ptr, int visible) -{ - ((QProgressBar*)(ptr))->setTextVisible(visible != 0); -} - -char* QProgressBar_Text(QtObjectPtr ptr) -{ - return ((QProgressBar*)(ptr))->text().toUtf8().data(); -} - -int QProgressBar_Value(QtObjectPtr ptr) -{ - return ((QProgressBar*)(ptr))->value(); -} - -//Public Slots -void QProgressBar_ConnectSlotReset(QtObjectPtr ptr) -{ - QObject::connect(((MyQProgressBar*)(ptr)), &MyQProgressBar::Slot_Reset, ((QProgressBar*)(ptr)), &QProgressBar::reset, Qt::QueuedConnection); -} - -void QProgressBar_DisconnectSlotReset(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQProgressBar*)(ptr)), &MyQProgressBar::Slot_Reset, ((QProgressBar*)(ptr)), &QProgressBar::reset); -} - -void QProgressBar_Reset(QtObjectPtr ptr) -{ - ((MyQProgressBar*)(ptr))->Slot_Reset(); -} - -void QProgressBar_ConnectSlotSetMaximum(QtObjectPtr ptr) -{ - QObject::connect(((MyQProgressBar*)(ptr)), &MyQProgressBar::Slot_SetMaximum, ((QProgressBar*)(ptr)), &QProgressBar::setMaximum, Qt::QueuedConnection); -} - -void QProgressBar_DisconnectSlotSetMaximum(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQProgressBar*)(ptr)), &MyQProgressBar::Slot_SetMaximum, ((QProgressBar*)(ptr)), &QProgressBar::setMaximum); -} - -void QProgressBar_SetMaximum_Int(QtObjectPtr ptr, int maximum) -{ - ((MyQProgressBar*)(ptr))->Slot_SetMaximum(maximum); -} - -void QProgressBar_ConnectSlotSetMinimum(QtObjectPtr ptr) -{ - QObject::connect(((MyQProgressBar*)(ptr)), &MyQProgressBar::Slot_SetMinimum, ((QProgressBar*)(ptr)), &QProgressBar::setMinimum, Qt::QueuedConnection); -} - -void QProgressBar_DisconnectSlotSetMinimum(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQProgressBar*)(ptr)), &MyQProgressBar::Slot_SetMinimum, ((QProgressBar*)(ptr)), &QProgressBar::setMinimum); -} - -void QProgressBar_SetMinimum_Int(QtObjectPtr ptr, int minimum) -{ - ((MyQProgressBar*)(ptr))->Slot_SetMinimum(minimum); -} - -void QProgressBar_ConnectSlotSetOrientation(QtObjectPtr ptr) -{ - QObject::connect(((MyQProgressBar*)(ptr)), &MyQProgressBar::Slot_SetOrientation, ((QProgressBar*)(ptr)), &QProgressBar::setOrientation, Qt::QueuedConnection); -} - -void QProgressBar_DisconnectSlotSetOrientation(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQProgressBar*)(ptr)), &MyQProgressBar::Slot_SetOrientation, ((QProgressBar*)(ptr)), &QProgressBar::setOrientation); -} - -void QProgressBar_SetOrientation_Orientation(QtObjectPtr ptr, int orientation) -{ - ((MyQProgressBar*)(ptr))->Slot_SetOrientation(((Qt::Orientation)(orientation))); -} - -void QProgressBar_ConnectSlotSetRange(QtObjectPtr ptr) -{ - QObject::connect(((MyQProgressBar*)(ptr)), &MyQProgressBar::Slot_SetRange, ((QProgressBar*)(ptr)), &QProgressBar::setRange, Qt::QueuedConnection); -} - -void QProgressBar_DisconnectSlotSetRange(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQProgressBar*)(ptr)), &MyQProgressBar::Slot_SetRange, ((QProgressBar*)(ptr)), &QProgressBar::setRange); -} - -void QProgressBar_SetRange_Int_Int(QtObjectPtr ptr, int minimum, int maximum) -{ - ((MyQProgressBar*)(ptr))->Slot_SetRange(minimum, maximum); -} - -void QProgressBar_ConnectSlotSetValue(QtObjectPtr ptr) -{ - QObject::connect(((MyQProgressBar*)(ptr)), &MyQProgressBar::Slot_SetValue, ((QProgressBar*)(ptr)), &QProgressBar::setValue, Qt::QueuedConnection); -} - -void QProgressBar_DisconnectSlotSetValue(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQProgressBar*)(ptr)), &MyQProgressBar::Slot_SetValue, ((QProgressBar*)(ptr)), &QProgressBar::setValue); -} - -void QProgressBar_SetValue_Int(QtObjectPtr ptr, int value) -{ - ((MyQProgressBar*)(ptr))->Slot_SetValue(value); -} - -//Signals -void QProgressBar_ConnectSignalValueChanged(QtObjectPtr ptr) -{ - QObject::connect(((QProgressBar*)(ptr)), &QProgressBar::valueChanged, ((MyQProgressBar*)(ptr)), &MyQProgressBar::Signal_ValueChanged, Qt::QueuedConnection); -} - -void QProgressBar_DisconnectSignalValueChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QProgressBar*)(ptr)), &QProgressBar::valueChanged, ((MyQProgressBar*)(ptr)), &MyQProgressBar::Signal_ValueChanged); -} - diff --git a/qprogressbar.go b/qprogressbar.go deleted file mode 100644 index 87861e39..00000000 --- a/qprogressbar.go +++ /dev/null @@ -1,272 +0,0 @@ -package qt - -//#include "qprogressbar.h" -import "C" - -type qprogressbar struct { - qwidget -} - -type QProgressBar interface { - QWidget - Alignment() AlignmentFlag - Format() string - InvertedAppearance() bool - IsTextVisible() bool - Maximum() int - Minimum() int - Orientation() Orientation - ResetFormat() - SetAlignment(alignment AlignmentFlag) - SetFormat(format string) - SetInvertedAppearance(invert bool) - SetTextVisible(visible bool) - Text() string - Value() int - ConnectSlotReset() - DisconnectSlotReset() - SlotReset() - ConnectSlotSetMaximum() - DisconnectSlotSetMaximum() - SlotSetMaximum(maximum int) - ConnectSlotSetMinimum() - DisconnectSlotSetMinimum() - SlotSetMinimum(minimum int) - ConnectSlotSetOrientation() - DisconnectSlotSetOrientation() - SlotSetOrientation(orientation Orientation) - ConnectSlotSetRange() - DisconnectSlotSetRange() - SlotSetRange(minimum int, maximum int) - ConnectSlotSetValue() - DisconnectSlotSetValue() - SlotSetValue(value int) - ConnectSignalValueChanged(f func()) - DisconnectSignalValueChanged() - SignalValueChanged() func() -} - -func (p *qprogressbar) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qprogressbar) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQProgressBar(parent QWidget) QProgressBar { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qprogressbar = new(qprogressbar) - qprogressbar.SetPointer(C.QProgressBar_New_QWidget(parentPtr)) - qprogressbar.SetObjectName("QProgressBar_" + randomIdentifier()) - return qprogressbar -} - -func (p *qprogressbar) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QProgressBar_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qprogressbar) Alignment() AlignmentFlag { - if p.Pointer() == nil { - return 0 - } - return AlignmentFlag(C.QProgressBar_Alignment(p.Pointer())) -} - -func (p *qprogressbar) Format() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QProgressBar_Format(p.Pointer())) -} - -func (p *qprogressbar) InvertedAppearance() bool { - if p.Pointer() == nil { - return false - } - return C.QProgressBar_InvertedAppearance(p.Pointer()) != 0 -} - -func (p *qprogressbar) IsTextVisible() bool { - if p.Pointer() == nil { - return false - } - return C.QProgressBar_IsTextVisible(p.Pointer()) != 0 -} - -func (p *qprogressbar) Maximum() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QProgressBar_Maximum(p.Pointer())) -} - -func (p *qprogressbar) Minimum() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QProgressBar_Minimum(p.Pointer())) -} - -func (p *qprogressbar) Orientation() Orientation { - if p.Pointer() == nil { - return 0 - } - return Orientation(C.QProgressBar_Orientation(p.Pointer())) -} - -func (p *qprogressbar) ResetFormat() { - if p.Pointer() != nil { - C.QProgressBar_ResetFormat(p.Pointer()) - } -} - -func (p *qprogressbar) SetAlignment(alignment AlignmentFlag) { - if p.Pointer() != nil { - C.QProgressBar_SetAlignment_AlignmentFlag(p.Pointer(), C.int(alignment)) - } -} - -func (p *qprogressbar) SetFormat(format string) { - if p.Pointer() != nil { - C.QProgressBar_SetFormat_String(p.Pointer(), C.CString(format)) - } -} - -func (p *qprogressbar) SetInvertedAppearance(invert bool) { - if p.Pointer() != nil { - C.QProgressBar_SetInvertedAppearance_Bool(p.Pointer(), goBoolToCInt(invert)) - } -} - -func (p *qprogressbar) SetTextVisible(visible bool) { - if p.Pointer() != nil { - C.QProgressBar_SetTextVisible_Bool(p.Pointer(), goBoolToCInt(visible)) - } -} - -func (p *qprogressbar) Text() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QProgressBar_Text(p.Pointer())) -} - -func (p *qprogressbar) Value() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QProgressBar_Value(p.Pointer())) -} - -func (p *qprogressbar) ConnectSlotReset() { - C.QProgressBar_ConnectSlotReset(p.Pointer()) -} - -func (p *qprogressbar) DisconnectSlotReset() { - C.QProgressBar_DisconnectSlotReset(p.Pointer()) -} - -func (p *qprogressbar) SlotReset() { - if p.Pointer() != nil { - C.QProgressBar_Reset(p.Pointer()) - } -} - -func (p *qprogressbar) ConnectSlotSetMaximum() { - C.QProgressBar_ConnectSlotSetMaximum(p.Pointer()) -} - -func (p *qprogressbar) DisconnectSlotSetMaximum() { - C.QProgressBar_DisconnectSlotSetMaximum(p.Pointer()) -} - -func (p *qprogressbar) SlotSetMaximum(maximum int) { - if p.Pointer() != nil { - C.QProgressBar_SetMaximum_Int(p.Pointer(), C.int(maximum)) - } -} - -func (p *qprogressbar) ConnectSlotSetMinimum() { - C.QProgressBar_ConnectSlotSetMinimum(p.Pointer()) -} - -func (p *qprogressbar) DisconnectSlotSetMinimum() { - C.QProgressBar_DisconnectSlotSetMinimum(p.Pointer()) -} - -func (p *qprogressbar) SlotSetMinimum(minimum int) { - if p.Pointer() != nil { - C.QProgressBar_SetMinimum_Int(p.Pointer(), C.int(minimum)) - } -} - -func (p *qprogressbar) ConnectSlotSetOrientation() { - C.QProgressBar_ConnectSlotSetOrientation(p.Pointer()) -} - -func (p *qprogressbar) DisconnectSlotSetOrientation() { - C.QProgressBar_DisconnectSlotSetOrientation(p.Pointer()) -} - -func (p *qprogressbar) SlotSetOrientation(orientation Orientation) { - if p.Pointer() != nil { - C.QProgressBar_SetOrientation_Orientation(p.Pointer(), C.int(orientation)) - } -} - -func (p *qprogressbar) ConnectSlotSetRange() { - C.QProgressBar_ConnectSlotSetRange(p.Pointer()) -} - -func (p *qprogressbar) DisconnectSlotSetRange() { - C.QProgressBar_DisconnectSlotSetRange(p.Pointer()) -} - -func (p *qprogressbar) SlotSetRange(minimum int, maximum int) { - if p.Pointer() != nil { - C.QProgressBar_SetRange_Int_Int(p.Pointer(), C.int(minimum), C.int(maximum)) - } -} - -func (p *qprogressbar) ConnectSlotSetValue() { - C.QProgressBar_ConnectSlotSetValue(p.Pointer()) -} - -func (p *qprogressbar) DisconnectSlotSetValue() { - C.QProgressBar_DisconnectSlotSetValue(p.Pointer()) -} - -func (p *qprogressbar) SlotSetValue(value int) { - if p.Pointer() != nil { - C.QProgressBar_SetValue_Int(p.Pointer(), C.int(value)) - } -} - -func (p *qprogressbar) ConnectSignalValueChanged(f func()) { - C.QProgressBar_ConnectSignalValueChanged(p.Pointer()) - connectSignal(p.ObjectName(), "valueChanged", f) -} - -func (p *qprogressbar) DisconnectSignalValueChanged() { - C.QProgressBar_DisconnectSignalValueChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "valueChanged") -} - -func (p *qprogressbar) SignalValueChanged() func() { - return getSignal(p.ObjectName(), "valueChanged") -} - -//export callbackQProgressBar -func callbackQProgressBar(ptr C.QtObjectPtr, msg *C.char) { - var qprogressbar = new(qprogressbar) - qprogressbar.SetPointer(ptr) - getSignal(qprogressbar.ObjectName(), C.GoString(msg))() -} diff --git a/qprogressbar.h b/qprogressbar.h deleted file mode 100644 index 7d30e711..00000000 --- a/qprogressbar.h +++ /dev/null @@ -1,49 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QProgressBar_New_QWidget(QtObjectPtr parent); -void QProgressBar_Destroy(QtObjectPtr ptr); -int QProgressBar_Alignment(QtObjectPtr ptr); -char* QProgressBar_Format(QtObjectPtr ptr); -int QProgressBar_InvertedAppearance(QtObjectPtr ptr); -int QProgressBar_IsTextVisible(QtObjectPtr ptr); -int QProgressBar_Maximum(QtObjectPtr ptr); -int QProgressBar_Minimum(QtObjectPtr ptr); -int QProgressBar_Orientation(QtObjectPtr ptr); -void QProgressBar_ResetFormat(QtObjectPtr ptr); -void QProgressBar_SetAlignment_AlignmentFlag(QtObjectPtr ptr, int alignment); -void QProgressBar_SetFormat_String(QtObjectPtr ptr, char* format); -void QProgressBar_SetInvertedAppearance_Bool(QtObjectPtr ptr, int invert); -void QProgressBar_SetTextVisible_Bool(QtObjectPtr ptr, int visible); -char* QProgressBar_Text(QtObjectPtr ptr); -int QProgressBar_Value(QtObjectPtr ptr); -//Public Slots -void QProgressBar_ConnectSlotReset(QtObjectPtr ptr); -void QProgressBar_DisconnectSlotReset(QtObjectPtr ptr); -void QProgressBar_Reset(QtObjectPtr ptr); -void QProgressBar_ConnectSlotSetMaximum(QtObjectPtr ptr); -void QProgressBar_DisconnectSlotSetMaximum(QtObjectPtr ptr); -void QProgressBar_SetMaximum_Int(QtObjectPtr ptr, int maximum); -void QProgressBar_ConnectSlotSetMinimum(QtObjectPtr ptr); -void QProgressBar_DisconnectSlotSetMinimum(QtObjectPtr ptr); -void QProgressBar_SetMinimum_Int(QtObjectPtr ptr, int minimum); -void QProgressBar_ConnectSlotSetOrientation(QtObjectPtr ptr); -void QProgressBar_DisconnectSlotSetOrientation(QtObjectPtr ptr); -void QProgressBar_SetOrientation_Orientation(QtObjectPtr ptr, int orientation); -void QProgressBar_ConnectSlotSetRange(QtObjectPtr ptr); -void QProgressBar_DisconnectSlotSetRange(QtObjectPtr ptr); -void QProgressBar_SetRange_Int_Int(QtObjectPtr ptr, int minimum, int maximum); -void QProgressBar_ConnectSlotSetValue(QtObjectPtr ptr); -void QProgressBar_DisconnectSlotSetValue(QtObjectPtr ptr); -void QProgressBar_SetValue_Int(QtObjectPtr ptr, int value); -//Signals -void QProgressBar_ConnectSignalValueChanged(QtObjectPtr ptr); -void QProgressBar_DisconnectSignalValueChanged(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qprogressbar.moc b/qprogressbar.moc deleted file mode 100644 index 56b09a89..00000000 --- a/qprogressbar.moc +++ /dev/null @@ -1,217 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qprogressbar.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qprogressbar.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQProgressBar_t { - QByteArrayData data[13]; - char stringdata[157]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQProgressBar_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQProgressBar_t qt_meta_stringdata_MyQProgressBar = { - { -QT_MOC_LITERAL(0, 0, 14), // "MyQProgressBar" -QT_MOC_LITERAL(1, 15, 10), // "Slot_Reset" -QT_MOC_LITERAL(2, 26, 0), // "" -QT_MOC_LITERAL(3, 27, 15), // "Slot_SetMaximum" -QT_MOC_LITERAL(4, 43, 7), // "maximum" -QT_MOC_LITERAL(5, 51, 15), // "Slot_SetMinimum" -QT_MOC_LITERAL(6, 67, 7), // "minimum" -QT_MOC_LITERAL(7, 75, 19), // "Slot_SetOrientation" -QT_MOC_LITERAL(8, 95, 15), // "Qt::Orientation" -QT_MOC_LITERAL(9, 111, 11), // "orientation" -QT_MOC_LITERAL(10, 123, 13), // "Slot_SetRange" -QT_MOC_LITERAL(11, 137, 13), // "Slot_SetValue" -QT_MOC_LITERAL(12, 151, 5) // "value" - - }, - "MyQProgressBar\0Slot_Reset\0\0Slot_SetMaximum\0" - "maximum\0Slot_SetMinimum\0minimum\0" - "Slot_SetOrientation\0Qt::Orientation\0" - "orientation\0Slot_SetRange\0Slot_SetValue\0" - "value" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQProgressBar[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 6, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 6, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 0, 44, 2, 0x06 /* Public */, - 3, 1, 45, 2, 0x06 /* Public */, - 5, 1, 48, 2, 0x06 /* Public */, - 7, 1, 51, 2, 0x06 /* Public */, - 10, 2, 54, 2, 0x06 /* Public */, - 11, 1, 59, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, - QMetaType::Void, QMetaType::Int, 4, - QMetaType::Void, QMetaType::Int, 6, - QMetaType::Void, 0x80000000 | 8, 9, - QMetaType::Void, QMetaType::Int, QMetaType::Int, 6, 4, - QMetaType::Void, QMetaType::Int, 12, - - 0 // eod -}; - -void MyQProgressBar::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQProgressBar *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_Reset(); break; - case 1: _t->Slot_SetMaximum((*reinterpret_cast< int(*)>(_a[1]))); break; - case 2: _t->Slot_SetMinimum((*reinterpret_cast< int(*)>(_a[1]))); break; - case 3: _t->Slot_SetOrientation((*reinterpret_cast< Qt::Orientation(*)>(_a[1]))); break; - case 4: _t->Slot_SetRange((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 5: _t->Slot_SetValue((*reinterpret_cast< int(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQProgressBar::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQProgressBar::Slot_Reset)) { - *result = 0; - } - } - { - typedef void (MyQProgressBar::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQProgressBar::Slot_SetMaximum)) { - *result = 1; - } - } - { - typedef void (MyQProgressBar::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQProgressBar::Slot_SetMinimum)) { - *result = 2; - } - } - { - typedef void (MyQProgressBar::*_t)(Qt::Orientation ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQProgressBar::Slot_SetOrientation)) { - *result = 3; - } - } - { - typedef void (MyQProgressBar::*_t)(int , int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQProgressBar::Slot_SetRange)) { - *result = 4; - } - } - { - typedef void (MyQProgressBar::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQProgressBar::Slot_SetValue)) { - *result = 5; - } - } - } -} - -const QMetaObject MyQProgressBar::staticMetaObject = { - { &QProgressBar::staticMetaObject, qt_meta_stringdata_MyQProgressBar.data, - qt_meta_data_MyQProgressBar, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQProgressBar::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQProgressBar::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQProgressBar.stringdata)) - return static_cast(const_cast< MyQProgressBar*>(this)); - return QProgressBar::qt_metacast(_clname); -} - -int MyQProgressBar::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QProgressBar::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 6) - qt_static_metacall(this, _c, _id, _a); - _id -= 6; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 6) - *reinterpret_cast(_a[0]) = -1; - _id -= 6; - } - return _id; -} - -// SIGNAL 0 -void MyQProgressBar::Slot_Reset() -{ - QMetaObject::activate(this, &staticMetaObject, 0, 0); -} - -// SIGNAL 1 -void MyQProgressBar::Slot_SetMaximum(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} - -// SIGNAL 2 -void MyQProgressBar::Slot_SetMinimum(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 2, _a); -} - -// SIGNAL 3 -void MyQProgressBar::Slot_SetOrientation(Qt::Orientation _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 3, _a); -} - -// SIGNAL 4 -void MyQProgressBar::Slot_SetRange(int _t1, int _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 4, _a); -} - -// SIGNAL 5 -void MyQProgressBar::Slot_SetValue(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 5, _a); -} -QT_END_MOC_NAMESPACE diff --git a/qprogressdialog.cpp b/qprogressdialog.cpp deleted file mode 100644 index 312be26a..00000000 --- a/qprogressdialog.cpp +++ /dev/null @@ -1,221 +0,0 @@ -#include "qprogressdialog.h" -#include -#include "cgoexport.h" - -//MyQProgressDialog -class MyQProgressDialog: public QProgressDialog { -Q_OBJECT -public: -void Signal_Canceled() { callbackQProgressDialog(this, QString("canceled").toUtf8().data()); }; - -signals: -void Slot_Cancel(); -void Slot_Reset(); -void Slot_SetMaximum(int maximum); -void Slot_SetMinimum(int minimum); -void Slot_SetMinimumDuration(int ms); -void Slot_SetRange(int minimum, int maximum); -void Slot_SetValue(int progress); - -}; -#include "qprogressdialog.moc" - - -//Public Functions -QtObjectPtr QProgressDialog_New_QWidget_WindowType(QtObjectPtr parent, int f) -{ - return new QProgressDialog(((QWidget*)(parent)), ((Qt::WindowType)(f))); -} - -QtObjectPtr QProgressDialog_New_String_String_Int_Int_QWidget_WindowType(char* labelText, char* cancelButtonText, int minimum, int maximum, QtObjectPtr parent, int f) -{ - return new QProgressDialog(QString(labelText), QString(cancelButtonText), minimum, maximum, ((QWidget*)(parent)), ((Qt::WindowType)(f))); -} - -void QProgressDialog_Destroy(QtObjectPtr ptr) -{ - ((QProgressDialog*)(ptr))->~QProgressDialog(); -} - -int QProgressDialog_AutoClose(QtObjectPtr ptr) -{ - return ((QProgressDialog*)(ptr))->autoClose(); -} - -int QProgressDialog_AutoReset(QtObjectPtr ptr) -{ - return ((QProgressDialog*)(ptr))->autoReset(); -} - -char* QProgressDialog_LabelText(QtObjectPtr ptr) -{ - return ((QProgressDialog*)(ptr))->labelText().toUtf8().data(); -} - -int QProgressDialog_Maximum(QtObjectPtr ptr) -{ - return ((QProgressDialog*)(ptr))->maximum(); -} - -int QProgressDialog_Minimum(QtObjectPtr ptr) -{ - return ((QProgressDialog*)(ptr))->minimum(); -} - -int QProgressDialog_MinimumDuration(QtObjectPtr ptr) -{ - return ((QProgressDialog*)(ptr))->minimumDuration(); -} - -void QProgressDialog_SetAutoClose_Bool(QtObjectPtr ptr, int close) -{ - ((QProgressDialog*)(ptr))->setAutoClose(close != 0); -} - -void QProgressDialog_SetAutoReset_Bool(QtObjectPtr ptr, int reset) -{ - ((QProgressDialog*)(ptr))->setAutoReset(reset != 0); -} - -void QProgressDialog_SetBar_QProgressBar(QtObjectPtr ptr, QtObjectPtr bar) -{ - ((QProgressDialog*)(ptr))->setBar(((QProgressBar*)(bar))); -} - -void QProgressDialog_SetCancelButton_QPushButton(QtObjectPtr ptr, QtObjectPtr cancelButton) -{ - ((QProgressDialog*)(ptr))->setCancelButton(((QPushButton*)(cancelButton))); -} - -void QProgressDialog_SetLabel_QLabel(QtObjectPtr ptr, QtObjectPtr label) -{ - ((QProgressDialog*)(ptr))->setLabel(((QLabel*)(label))); -} - -int QProgressDialog_Value(QtObjectPtr ptr) -{ - return ((QProgressDialog*)(ptr))->value(); -} - -int QProgressDialog_WasCanceled(QtObjectPtr ptr) -{ - return ((QProgressDialog*)(ptr))->wasCanceled(); -} - -//Public Slots -void QProgressDialog_ConnectSlotCancel(QtObjectPtr ptr) -{ - QObject::connect(((MyQProgressDialog*)(ptr)), &MyQProgressDialog::Slot_Cancel, ((QProgressDialog*)(ptr)), &QProgressDialog::cancel, Qt::QueuedConnection); -} - -void QProgressDialog_DisconnectSlotCancel(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQProgressDialog*)(ptr)), &MyQProgressDialog::Slot_Cancel, ((QProgressDialog*)(ptr)), &QProgressDialog::cancel); -} - -void QProgressDialog_Cancel(QtObjectPtr ptr) -{ - ((MyQProgressDialog*)(ptr))->Slot_Cancel(); -} - -void QProgressDialog_ConnectSlotReset(QtObjectPtr ptr) -{ - QObject::connect(((MyQProgressDialog*)(ptr)), &MyQProgressDialog::Slot_Reset, ((QProgressDialog*)(ptr)), &QProgressDialog::reset, Qt::QueuedConnection); -} - -void QProgressDialog_DisconnectSlotReset(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQProgressDialog*)(ptr)), &MyQProgressDialog::Slot_Reset, ((QProgressDialog*)(ptr)), &QProgressDialog::reset); -} - -void QProgressDialog_Reset(QtObjectPtr ptr) -{ - ((MyQProgressDialog*)(ptr))->Slot_Reset(); -} - -void QProgressDialog_ConnectSlotSetMaximum(QtObjectPtr ptr) -{ - QObject::connect(((MyQProgressDialog*)(ptr)), &MyQProgressDialog::Slot_SetMaximum, ((QProgressDialog*)(ptr)), &QProgressDialog::setMaximum, Qt::QueuedConnection); -} - -void QProgressDialog_DisconnectSlotSetMaximum(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQProgressDialog*)(ptr)), &MyQProgressDialog::Slot_SetMaximum, ((QProgressDialog*)(ptr)), &QProgressDialog::setMaximum); -} - -void QProgressDialog_SetMaximum_Int(QtObjectPtr ptr, int maximum) -{ - ((MyQProgressDialog*)(ptr))->Slot_SetMaximum(maximum); -} - -void QProgressDialog_ConnectSlotSetMinimum(QtObjectPtr ptr) -{ - QObject::connect(((MyQProgressDialog*)(ptr)), &MyQProgressDialog::Slot_SetMinimum, ((QProgressDialog*)(ptr)), &QProgressDialog::setMinimum, Qt::QueuedConnection); -} - -void QProgressDialog_DisconnectSlotSetMinimum(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQProgressDialog*)(ptr)), &MyQProgressDialog::Slot_SetMinimum, ((QProgressDialog*)(ptr)), &QProgressDialog::setMinimum); -} - -void QProgressDialog_SetMinimum_Int(QtObjectPtr ptr, int minimum) -{ - ((MyQProgressDialog*)(ptr))->Slot_SetMinimum(minimum); -} - -void QProgressDialog_ConnectSlotSetMinimumDuration(QtObjectPtr ptr) -{ - QObject::connect(((MyQProgressDialog*)(ptr)), &MyQProgressDialog::Slot_SetMinimumDuration, ((QProgressDialog*)(ptr)), &QProgressDialog::setMinimumDuration, Qt::QueuedConnection); -} - -void QProgressDialog_DisconnectSlotSetMinimumDuration(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQProgressDialog*)(ptr)), &MyQProgressDialog::Slot_SetMinimumDuration, ((QProgressDialog*)(ptr)), &QProgressDialog::setMinimumDuration); -} - -void QProgressDialog_SetMinimumDuration_Int(QtObjectPtr ptr, int ms) -{ - ((MyQProgressDialog*)(ptr))->Slot_SetMinimumDuration(ms); -} - -void QProgressDialog_ConnectSlotSetRange(QtObjectPtr ptr) -{ - QObject::connect(((MyQProgressDialog*)(ptr)), &MyQProgressDialog::Slot_SetRange, ((QProgressDialog*)(ptr)), &QProgressDialog::setRange, Qt::QueuedConnection); -} - -void QProgressDialog_DisconnectSlotSetRange(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQProgressDialog*)(ptr)), &MyQProgressDialog::Slot_SetRange, ((QProgressDialog*)(ptr)), &QProgressDialog::setRange); -} - -void QProgressDialog_SetRange_Int_Int(QtObjectPtr ptr, int minimum, int maximum) -{ - ((MyQProgressDialog*)(ptr))->Slot_SetRange(minimum, maximum); -} - -void QProgressDialog_ConnectSlotSetValue(QtObjectPtr ptr) -{ - QObject::connect(((MyQProgressDialog*)(ptr)), &MyQProgressDialog::Slot_SetValue, ((QProgressDialog*)(ptr)), &QProgressDialog::setValue, Qt::QueuedConnection); -} - -void QProgressDialog_DisconnectSlotSetValue(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQProgressDialog*)(ptr)), &MyQProgressDialog::Slot_SetValue, ((QProgressDialog*)(ptr)), &QProgressDialog::setValue); -} - -void QProgressDialog_SetValue_Int(QtObjectPtr ptr, int progress) -{ - ((MyQProgressDialog*)(ptr))->Slot_SetValue(progress); -} - -//Signals -void QProgressDialog_ConnectSignalCanceled(QtObjectPtr ptr) -{ - QObject::connect(((QProgressDialog*)(ptr)), &QProgressDialog::canceled, ((MyQProgressDialog*)(ptr)), &MyQProgressDialog::Signal_Canceled, Qt::QueuedConnection); -} - -void QProgressDialog_DisconnectSignalCanceled(QtObjectPtr ptr) -{ - QObject::disconnect(((QProgressDialog*)(ptr)), &QProgressDialog::canceled, ((MyQProgressDialog*)(ptr)), &MyQProgressDialog::Signal_Canceled); -} - diff --git a/qprogressdialog.go b/qprogressdialog.go deleted file mode 100644 index 62e8a26e..00000000 --- a/qprogressdialog.go +++ /dev/null @@ -1,304 +0,0 @@ -package qt - -//#include "qprogressdialog.h" -import "C" - -type qprogressdialog struct { - qdialog -} - -type QProgressDialog interface { - QDialog - AutoClose() bool - AutoReset() bool - LabelText() string - Maximum() int - Minimum() int - MinimumDuration() int - SetAutoClose(close bool) - SetAutoReset(reset bool) - SetBar(bar QProgressBar) - SetCancelButton(cancelButton QPushButton) - SetLabel(label QLabel) - Value() int - WasCanceled() bool - ConnectSlotCancel() - DisconnectSlotCancel() - SlotCancel() - ConnectSlotReset() - DisconnectSlotReset() - SlotReset() - ConnectSlotSetMaximum() - DisconnectSlotSetMaximum() - SlotSetMaximum(maximum int) - ConnectSlotSetMinimum() - DisconnectSlotSetMinimum() - SlotSetMinimum(minimum int) - ConnectSlotSetMinimumDuration() - DisconnectSlotSetMinimumDuration() - SlotSetMinimumDuration(ms int) - ConnectSlotSetRange() - DisconnectSlotSetRange() - SlotSetRange(minimum int, maximum int) - ConnectSlotSetValue() - DisconnectSlotSetValue() - SlotSetValue(progress int) - ConnectSignalCanceled(f func()) - DisconnectSignalCanceled() - SignalCanceled() func() -} - -func (p *qprogressdialog) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qprogressdialog) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQProgressDialog1(parent QWidget, f WindowType) QProgressDialog { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qprogressdialog = new(qprogressdialog) - qprogressdialog.SetPointer(C.QProgressDialog_New_QWidget_WindowType(parentPtr, C.int(f))) - qprogressdialog.SetObjectName("QProgressDialog_" + randomIdentifier()) - return qprogressdialog -} - -func NewQProgressDialog2(labelText string, cancelButtonText string, minimum int, maximum int, parent QWidget, f WindowType) QProgressDialog { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qprogressdialog = new(qprogressdialog) - qprogressdialog.SetPointer(C.QProgressDialog_New_String_String_Int_Int_QWidget_WindowType(C.CString(labelText), C.CString(cancelButtonText), C.int(minimum), C.int(maximum), parentPtr, C.int(f))) - qprogressdialog.SetObjectName("QProgressDialog_" + randomIdentifier()) - return qprogressdialog -} - -func (p *qprogressdialog) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QProgressDialog_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qprogressdialog) AutoClose() bool { - if p.Pointer() == nil { - return false - } - return C.QProgressDialog_AutoClose(p.Pointer()) != 0 -} - -func (p *qprogressdialog) AutoReset() bool { - if p.Pointer() == nil { - return false - } - return C.QProgressDialog_AutoReset(p.Pointer()) != 0 -} - -func (p *qprogressdialog) LabelText() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QProgressDialog_LabelText(p.Pointer())) -} - -func (p *qprogressdialog) Maximum() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QProgressDialog_Maximum(p.Pointer())) -} - -func (p *qprogressdialog) Minimum() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QProgressDialog_Minimum(p.Pointer())) -} - -func (p *qprogressdialog) MinimumDuration() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QProgressDialog_MinimumDuration(p.Pointer())) -} - -func (p *qprogressdialog) SetAutoClose(close bool) { - if p.Pointer() != nil { - C.QProgressDialog_SetAutoClose_Bool(p.Pointer(), goBoolToCInt(close)) - } -} - -func (p *qprogressdialog) SetAutoReset(reset bool) { - if p.Pointer() != nil { - C.QProgressDialog_SetAutoReset_Bool(p.Pointer(), goBoolToCInt(reset)) - } -} - -func (p *qprogressdialog) SetBar(bar QProgressBar) { - if p.Pointer() != nil { - var barPtr C.QtObjectPtr - if bar != nil { - barPtr = bar.Pointer() - } - C.QProgressDialog_SetBar_QProgressBar(p.Pointer(), barPtr) - } -} - -func (p *qprogressdialog) SetCancelButton(cancelButton QPushButton) { - if p.Pointer() != nil { - var cancelButtonPtr C.QtObjectPtr - if cancelButton != nil { - cancelButtonPtr = cancelButton.Pointer() - } - C.QProgressDialog_SetCancelButton_QPushButton(p.Pointer(), cancelButtonPtr) - } -} - -func (p *qprogressdialog) SetLabel(label QLabel) { - if p.Pointer() != nil { - var labelPtr C.QtObjectPtr - if label != nil { - labelPtr = label.Pointer() - } - C.QProgressDialog_SetLabel_QLabel(p.Pointer(), labelPtr) - } -} - -func (p *qprogressdialog) Value() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QProgressDialog_Value(p.Pointer())) -} - -func (p *qprogressdialog) WasCanceled() bool { - if p.Pointer() == nil { - return false - } - return C.QProgressDialog_WasCanceled(p.Pointer()) != 0 -} - -func (p *qprogressdialog) ConnectSlotCancel() { - C.QProgressDialog_ConnectSlotCancel(p.Pointer()) -} - -func (p *qprogressdialog) DisconnectSlotCancel() { - C.QProgressDialog_DisconnectSlotCancel(p.Pointer()) -} - -func (p *qprogressdialog) SlotCancel() { - if p.Pointer() != nil { - C.QProgressDialog_Cancel(p.Pointer()) - } -} - -func (p *qprogressdialog) ConnectSlotReset() { - C.QProgressDialog_ConnectSlotReset(p.Pointer()) -} - -func (p *qprogressdialog) DisconnectSlotReset() { - C.QProgressDialog_DisconnectSlotReset(p.Pointer()) -} - -func (p *qprogressdialog) SlotReset() { - if p.Pointer() != nil { - C.QProgressDialog_Reset(p.Pointer()) - } -} - -func (p *qprogressdialog) ConnectSlotSetMaximum() { - C.QProgressDialog_ConnectSlotSetMaximum(p.Pointer()) -} - -func (p *qprogressdialog) DisconnectSlotSetMaximum() { - C.QProgressDialog_DisconnectSlotSetMaximum(p.Pointer()) -} - -func (p *qprogressdialog) SlotSetMaximum(maximum int) { - if p.Pointer() != nil { - C.QProgressDialog_SetMaximum_Int(p.Pointer(), C.int(maximum)) - } -} - -func (p *qprogressdialog) ConnectSlotSetMinimum() { - C.QProgressDialog_ConnectSlotSetMinimum(p.Pointer()) -} - -func (p *qprogressdialog) DisconnectSlotSetMinimum() { - C.QProgressDialog_DisconnectSlotSetMinimum(p.Pointer()) -} - -func (p *qprogressdialog) SlotSetMinimum(minimum int) { - if p.Pointer() != nil { - C.QProgressDialog_SetMinimum_Int(p.Pointer(), C.int(minimum)) - } -} - -func (p *qprogressdialog) ConnectSlotSetMinimumDuration() { - C.QProgressDialog_ConnectSlotSetMinimumDuration(p.Pointer()) -} - -func (p *qprogressdialog) DisconnectSlotSetMinimumDuration() { - C.QProgressDialog_DisconnectSlotSetMinimumDuration(p.Pointer()) -} - -func (p *qprogressdialog) SlotSetMinimumDuration(ms int) { - if p.Pointer() != nil { - C.QProgressDialog_SetMinimumDuration_Int(p.Pointer(), C.int(ms)) - } -} - -func (p *qprogressdialog) ConnectSlotSetRange() { - C.QProgressDialog_ConnectSlotSetRange(p.Pointer()) -} - -func (p *qprogressdialog) DisconnectSlotSetRange() { - C.QProgressDialog_DisconnectSlotSetRange(p.Pointer()) -} - -func (p *qprogressdialog) SlotSetRange(minimum int, maximum int) { - if p.Pointer() != nil { - C.QProgressDialog_SetRange_Int_Int(p.Pointer(), C.int(minimum), C.int(maximum)) - } -} - -func (p *qprogressdialog) ConnectSlotSetValue() { - C.QProgressDialog_ConnectSlotSetValue(p.Pointer()) -} - -func (p *qprogressdialog) DisconnectSlotSetValue() { - C.QProgressDialog_DisconnectSlotSetValue(p.Pointer()) -} - -func (p *qprogressdialog) SlotSetValue(progress int) { - if p.Pointer() != nil { - C.QProgressDialog_SetValue_Int(p.Pointer(), C.int(progress)) - } -} - -func (p *qprogressdialog) ConnectSignalCanceled(f func()) { - C.QProgressDialog_ConnectSignalCanceled(p.Pointer()) - connectSignal(p.ObjectName(), "canceled", f) -} - -func (p *qprogressdialog) DisconnectSignalCanceled() { - C.QProgressDialog_DisconnectSignalCanceled(p.Pointer()) - disconnectSignal(p.ObjectName(), "canceled") -} - -func (p *qprogressdialog) SignalCanceled() func() { - return getSignal(p.ObjectName(), "canceled") -} - -//export callbackQProgressDialog -func callbackQProgressDialog(ptr C.QtObjectPtr, msg *C.char) { - var qprogressdialog = new(qprogressdialog) - qprogressdialog.SetPointer(ptr) - getSignal(qprogressdialog.ObjectName(), C.GoString(msg))() -} diff --git a/qprogressdialog.h b/qprogressdialog.h deleted file mode 100644 index 87573c12..00000000 --- a/qprogressdialog.h +++ /dev/null @@ -1,52 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QProgressDialog_New_QWidget_WindowType(QtObjectPtr parent, int f); -QtObjectPtr QProgressDialog_New_String_String_Int_Int_QWidget_WindowType(char* labelText, char* cancelButtonText, int minimum, int maximum, QtObjectPtr parent, int f); -void QProgressDialog_Destroy(QtObjectPtr ptr); -int QProgressDialog_AutoClose(QtObjectPtr ptr); -int QProgressDialog_AutoReset(QtObjectPtr ptr); -char* QProgressDialog_LabelText(QtObjectPtr ptr); -int QProgressDialog_Maximum(QtObjectPtr ptr); -int QProgressDialog_Minimum(QtObjectPtr ptr); -int QProgressDialog_MinimumDuration(QtObjectPtr ptr); -void QProgressDialog_SetAutoClose_Bool(QtObjectPtr ptr, int close); -void QProgressDialog_SetAutoReset_Bool(QtObjectPtr ptr, int reset); -void QProgressDialog_SetBar_QProgressBar(QtObjectPtr ptr, QtObjectPtr bar); -void QProgressDialog_SetCancelButton_QPushButton(QtObjectPtr ptr, QtObjectPtr cancelButton); -void QProgressDialog_SetLabel_QLabel(QtObjectPtr ptr, QtObjectPtr label); -int QProgressDialog_Value(QtObjectPtr ptr); -int QProgressDialog_WasCanceled(QtObjectPtr ptr); -//Public Slots -void QProgressDialog_ConnectSlotCancel(QtObjectPtr ptr); -void QProgressDialog_DisconnectSlotCancel(QtObjectPtr ptr); -void QProgressDialog_Cancel(QtObjectPtr ptr); -void QProgressDialog_ConnectSlotReset(QtObjectPtr ptr); -void QProgressDialog_DisconnectSlotReset(QtObjectPtr ptr); -void QProgressDialog_Reset(QtObjectPtr ptr); -void QProgressDialog_ConnectSlotSetMaximum(QtObjectPtr ptr); -void QProgressDialog_DisconnectSlotSetMaximum(QtObjectPtr ptr); -void QProgressDialog_SetMaximum_Int(QtObjectPtr ptr, int maximum); -void QProgressDialog_ConnectSlotSetMinimum(QtObjectPtr ptr); -void QProgressDialog_DisconnectSlotSetMinimum(QtObjectPtr ptr); -void QProgressDialog_SetMinimum_Int(QtObjectPtr ptr, int minimum); -void QProgressDialog_ConnectSlotSetMinimumDuration(QtObjectPtr ptr); -void QProgressDialog_DisconnectSlotSetMinimumDuration(QtObjectPtr ptr); -void QProgressDialog_SetMinimumDuration_Int(QtObjectPtr ptr, int ms); -void QProgressDialog_ConnectSlotSetRange(QtObjectPtr ptr); -void QProgressDialog_DisconnectSlotSetRange(QtObjectPtr ptr); -void QProgressDialog_SetRange_Int_Int(QtObjectPtr ptr, int minimum, int maximum); -void QProgressDialog_ConnectSlotSetValue(QtObjectPtr ptr); -void QProgressDialog_DisconnectSlotSetValue(QtObjectPtr ptr); -void QProgressDialog_SetValue_Int(QtObjectPtr ptr, int progress); -//Signals -void QProgressDialog_ConnectSignalCanceled(QtObjectPtr ptr); -void QProgressDialog_DisconnectSignalCanceled(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qprogressdialog.moc b/qprogressdialog.moc deleted file mode 100644 index 8e5610ef..00000000 --- a/qprogressdialog.moc +++ /dev/null @@ -1,231 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qprogressdialog.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qprogressdialog.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQProgressDialog_t { - QByteArrayData data[13]; - char stringdata[154]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQProgressDialog_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQProgressDialog_t qt_meta_stringdata_MyQProgressDialog = { - { -QT_MOC_LITERAL(0, 0, 17), // "MyQProgressDialog" -QT_MOC_LITERAL(1, 18, 11), // "Slot_Cancel" -QT_MOC_LITERAL(2, 30, 0), // "" -QT_MOC_LITERAL(3, 31, 10), // "Slot_Reset" -QT_MOC_LITERAL(4, 42, 15), // "Slot_SetMaximum" -QT_MOC_LITERAL(5, 58, 7), // "maximum" -QT_MOC_LITERAL(6, 66, 15), // "Slot_SetMinimum" -QT_MOC_LITERAL(7, 82, 7), // "minimum" -QT_MOC_LITERAL(8, 90, 23), // "Slot_SetMinimumDuration" -QT_MOC_LITERAL(9, 114, 2), // "ms" -QT_MOC_LITERAL(10, 117, 13), // "Slot_SetRange" -QT_MOC_LITERAL(11, 131, 13), // "Slot_SetValue" -QT_MOC_LITERAL(12, 145, 8) // "progress" - - }, - "MyQProgressDialog\0Slot_Cancel\0\0" - "Slot_Reset\0Slot_SetMaximum\0maximum\0" - "Slot_SetMinimum\0minimum\0Slot_SetMinimumDuration\0" - "ms\0Slot_SetRange\0Slot_SetValue\0progress" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQProgressDialog[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 7, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 7, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 0, 49, 2, 0x06 /* Public */, - 3, 0, 50, 2, 0x06 /* Public */, - 4, 1, 51, 2, 0x06 /* Public */, - 6, 1, 54, 2, 0x06 /* Public */, - 8, 1, 57, 2, 0x06 /* Public */, - 10, 2, 60, 2, 0x06 /* Public */, - 11, 1, 65, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, QMetaType::Int, 5, - QMetaType::Void, QMetaType::Int, 7, - QMetaType::Void, QMetaType::Int, 9, - QMetaType::Void, QMetaType::Int, QMetaType::Int, 7, 5, - QMetaType::Void, QMetaType::Int, 12, - - 0 // eod -}; - -void MyQProgressDialog::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQProgressDialog *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_Cancel(); break; - case 1: _t->Slot_Reset(); break; - case 2: _t->Slot_SetMaximum((*reinterpret_cast< int(*)>(_a[1]))); break; - case 3: _t->Slot_SetMinimum((*reinterpret_cast< int(*)>(_a[1]))); break; - case 4: _t->Slot_SetMinimumDuration((*reinterpret_cast< int(*)>(_a[1]))); break; - case 5: _t->Slot_SetRange((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 6: _t->Slot_SetValue((*reinterpret_cast< int(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQProgressDialog::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQProgressDialog::Slot_Cancel)) { - *result = 0; - } - } - { - typedef void (MyQProgressDialog::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQProgressDialog::Slot_Reset)) { - *result = 1; - } - } - { - typedef void (MyQProgressDialog::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQProgressDialog::Slot_SetMaximum)) { - *result = 2; - } - } - { - typedef void (MyQProgressDialog::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQProgressDialog::Slot_SetMinimum)) { - *result = 3; - } - } - { - typedef void (MyQProgressDialog::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQProgressDialog::Slot_SetMinimumDuration)) { - *result = 4; - } - } - { - typedef void (MyQProgressDialog::*_t)(int , int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQProgressDialog::Slot_SetRange)) { - *result = 5; - } - } - { - typedef void (MyQProgressDialog::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQProgressDialog::Slot_SetValue)) { - *result = 6; - } - } - } -} - -const QMetaObject MyQProgressDialog::staticMetaObject = { - { &QProgressDialog::staticMetaObject, qt_meta_stringdata_MyQProgressDialog.data, - qt_meta_data_MyQProgressDialog, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQProgressDialog::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQProgressDialog::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQProgressDialog.stringdata)) - return static_cast(const_cast< MyQProgressDialog*>(this)); - return QProgressDialog::qt_metacast(_clname); -} - -int MyQProgressDialog::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QProgressDialog::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 7) - qt_static_metacall(this, _c, _id, _a); - _id -= 7; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 7) - *reinterpret_cast(_a[0]) = -1; - _id -= 7; - } - return _id; -} - -// SIGNAL 0 -void MyQProgressDialog::Slot_Cancel() -{ - QMetaObject::activate(this, &staticMetaObject, 0, 0); -} - -// SIGNAL 1 -void MyQProgressDialog::Slot_Reset() -{ - QMetaObject::activate(this, &staticMetaObject, 1, 0); -} - -// SIGNAL 2 -void MyQProgressDialog::Slot_SetMaximum(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 2, _a); -} - -// SIGNAL 3 -void MyQProgressDialog::Slot_SetMinimum(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 3, _a); -} - -// SIGNAL 4 -void MyQProgressDialog::Slot_SetMinimumDuration(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 4, _a); -} - -// SIGNAL 5 -void MyQProgressDialog::Slot_SetRange(int _t1, int _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 5, _a); -} - -// SIGNAL 6 -void MyQProgressDialog::Slot_SetValue(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 6, _a); -} -QT_END_MOC_NAMESPACE diff --git a/qpushbutton.cpp b/qpushbutton.cpp deleted file mode 100644 index 4503d325..00000000 --- a/qpushbutton.cpp +++ /dev/null @@ -1,88 +0,0 @@ -#include "qpushbutton.h" -#include -#include "cgoexport.h" - -//MyQPushButton -class MyQPushButton: public QPushButton { -Q_OBJECT -public: - -signals: -void Slot_ShowMenu(); - -}; -#include "qpushbutton.moc" - - -//Public Functions -QtObjectPtr QPushButton_New_QWidget(QtObjectPtr parent) -{ - return new QPushButton(((QWidget*)(parent))); -} - -QtObjectPtr QPushButton_New_String_QWidget(char* text, QtObjectPtr parent) -{ - return new QPushButton(QString(text), ((QWidget*)(parent))); -} - -void QPushButton_Destroy(QtObjectPtr ptr) -{ - ((QPushButton*)(ptr))->~QPushButton(); -} - -int QPushButton_AutoDefault(QtObjectPtr ptr) -{ - return ((QPushButton*)(ptr))->autoDefault(); -} - -int QPushButton_IsDefault(QtObjectPtr ptr) -{ - return ((QPushButton*)(ptr))->isDefault(); -} - -int QPushButton_IsFlat(QtObjectPtr ptr) -{ - return ((QPushButton*)(ptr))->isFlat(); -} - -QtObjectPtr QPushButton_Menu(QtObjectPtr ptr) -{ - return ((QPushButton*)(ptr))->menu(); -} - -void QPushButton_SetAutoDefault_Bool(QtObjectPtr ptr, int autoDefault) -{ - ((QPushButton*)(ptr))->setAutoDefault(autoDefault != 0); -} - -void QPushButton_SetDefault_Bool(QtObjectPtr ptr, int defaul) -{ - ((QPushButton*)(ptr))->setDefault(defaul != 0); -} - -void QPushButton_SetFlat_Bool(QtObjectPtr ptr, int flat) -{ - ((QPushButton*)(ptr))->setFlat(flat != 0); -} - -void QPushButton_SetMenu_QMenu(QtObjectPtr ptr, QtObjectPtr menu) -{ - ((QPushButton*)(ptr))->setMenu(((QMenu*)(menu))); -} - -//Public Slots -void QPushButton_ConnectSlotShowMenu(QtObjectPtr ptr) -{ - QObject::connect(((MyQPushButton*)(ptr)), &MyQPushButton::Slot_ShowMenu, ((QPushButton*)(ptr)), &QPushButton::showMenu, Qt::QueuedConnection); -} - -void QPushButton_DisconnectSlotShowMenu(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQPushButton*)(ptr)), &MyQPushButton::Slot_ShowMenu, ((QPushButton*)(ptr)), &QPushButton::showMenu); -} - -void QPushButton_ShowMenu(QtObjectPtr ptr) -{ - ((MyQPushButton*)(ptr))->Slot_ShowMenu(); -} - diff --git a/qpushbutton.go b/qpushbutton.go deleted file mode 100644 index a6b693a4..00000000 --- a/qpushbutton.go +++ /dev/null @@ -1,137 +0,0 @@ -package qt - -//#include "qpushbutton.h" -import "C" - -type qpushbutton struct { - qabstractbutton -} - -type QPushButton interface { - QAbstractButton - AutoDefault() bool - IsDefault() bool - IsFlat() bool - Menu() QMenu - SetAutoDefault(autoDefault bool) - SetDefault(defaul bool) - SetFlat(flat bool) - SetMenu(menu QMenu) - ConnectSlotShowMenu() - DisconnectSlotShowMenu() - SlotShowMenu() -} - -func (p *qpushbutton) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qpushbutton) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQPushButton1(parent QWidget) QPushButton { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qpushbutton = new(qpushbutton) - qpushbutton.SetPointer(C.QPushButton_New_QWidget(parentPtr)) - qpushbutton.SetObjectName("QPushButton_" + randomIdentifier()) - return qpushbutton -} - -func NewQPushButton2(text string, parent QWidget) QPushButton { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qpushbutton = new(qpushbutton) - qpushbutton.SetPointer(C.QPushButton_New_String_QWidget(C.CString(text), parentPtr)) - qpushbutton.SetObjectName("QPushButton_" + randomIdentifier()) - return qpushbutton -} - -func (p *qpushbutton) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QPushButton_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qpushbutton) AutoDefault() bool { - if p.Pointer() == nil { - return false - } - return C.QPushButton_AutoDefault(p.Pointer()) != 0 -} - -func (p *qpushbutton) IsDefault() bool { - if p.Pointer() == nil { - return false - } - return C.QPushButton_IsDefault(p.Pointer()) != 0 -} - -func (p *qpushbutton) IsFlat() bool { - if p.Pointer() == nil { - return false - } - return C.QPushButton_IsFlat(p.Pointer()) != 0 -} - -func (p *qpushbutton) Menu() QMenu { - if p.Pointer() == nil { - return nil - } else { - var qmenu = new(qmenu) - qmenu.SetPointer(C.QPushButton_Menu(p.Pointer())) - if qmenu.ObjectName() == "" { - qmenu.SetObjectName("QMenu_" + randomIdentifier()) - } - return qmenu - } -} - -func (p *qpushbutton) SetAutoDefault(autoDefault bool) { - if p.Pointer() != nil { - C.QPushButton_SetAutoDefault_Bool(p.Pointer(), goBoolToCInt(autoDefault)) - } -} - -func (p *qpushbutton) SetDefault(defaul bool) { - if p.Pointer() != nil { - C.QPushButton_SetDefault_Bool(p.Pointer(), goBoolToCInt(defaul)) - } -} - -func (p *qpushbutton) SetFlat(flat bool) { - if p.Pointer() != nil { - C.QPushButton_SetFlat_Bool(p.Pointer(), goBoolToCInt(flat)) - } -} - -func (p *qpushbutton) SetMenu(menu QMenu) { - if p.Pointer() != nil { - var menuPtr C.QtObjectPtr - if menu != nil { - menuPtr = menu.Pointer() - } - C.QPushButton_SetMenu_QMenu(p.Pointer(), menuPtr) - } -} - -func (p *qpushbutton) ConnectSlotShowMenu() { - C.QPushButton_ConnectSlotShowMenu(p.Pointer()) -} - -func (p *qpushbutton) DisconnectSlotShowMenu() { - C.QPushButton_DisconnectSlotShowMenu(p.Pointer()) -} - -func (p *qpushbutton) SlotShowMenu() { - if p.Pointer() != nil { - C.QPushButton_ShowMenu(p.Pointer()) - } -} diff --git a/qpushbutton.h b/qpushbutton.h deleted file mode 100644 index a92cf559..00000000 --- a/qpushbutton.h +++ /dev/null @@ -1,26 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QPushButton_New_QWidget(QtObjectPtr parent); -QtObjectPtr QPushButton_New_String_QWidget(char* text, QtObjectPtr parent); -void QPushButton_Destroy(QtObjectPtr ptr); -int QPushButton_AutoDefault(QtObjectPtr ptr); -int QPushButton_IsDefault(QtObjectPtr ptr); -int QPushButton_IsFlat(QtObjectPtr ptr); -QtObjectPtr QPushButton_Menu(QtObjectPtr ptr); -void QPushButton_SetAutoDefault_Bool(QtObjectPtr ptr, int autoDefault); -void QPushButton_SetDefault_Bool(QtObjectPtr ptr, int defaul); -void QPushButton_SetFlat_Bool(QtObjectPtr ptr, int flat); -void QPushButton_SetMenu_QMenu(QtObjectPtr ptr, QtObjectPtr menu); -//Public Slots -void QPushButton_ConnectSlotShowMenu(QtObjectPtr ptr); -void QPushButton_DisconnectSlotShowMenu(QtObjectPtr ptr); -void QPushButton_ShowMenu(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qpushbutton.moc b/qpushbutton.moc deleted file mode 100644 index f1b3c4b6..00000000 --- a/qpushbutton.moc +++ /dev/null @@ -1,124 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qpushbutton.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qpushbutton.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQPushButton_t { - QByteArrayData data[3]; - char stringdata[29]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQPushButton_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQPushButton_t qt_meta_stringdata_MyQPushButton = { - { -QT_MOC_LITERAL(0, 0, 13), // "MyQPushButton" -QT_MOC_LITERAL(1, 14, 13), // "Slot_ShowMenu" -QT_MOC_LITERAL(2, 28, 0) // "" - - }, - "MyQPushButton\0Slot_ShowMenu\0" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQPushButton[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 1, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 0, 19, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, - - 0 // eod -}; - -void MyQPushButton::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQPushButton *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_ShowMenu(); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQPushButton::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQPushButton::Slot_ShowMenu)) { - *result = 0; - } - } - } - Q_UNUSED(_a); -} - -const QMetaObject MyQPushButton::staticMetaObject = { - { &QPushButton::staticMetaObject, qt_meta_stringdata_MyQPushButton.data, - qt_meta_data_MyQPushButton, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQPushButton::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQPushButton::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQPushButton.stringdata)) - return static_cast(const_cast< MyQPushButton*>(this)); - return QPushButton::qt_metacast(_clname); -} - -int MyQPushButton::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QPushButton::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 1) - qt_static_metacall(this, _c, _id, _a); - _id -= 1; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 1) - *reinterpret_cast(_a[0]) = -1; - _id -= 1; - } - return _id; -} - -// SIGNAL 0 -void MyQPushButton::Slot_ShowMenu() -{ - QMetaObject::activate(this, &staticMetaObject, 0, 0); -} -QT_END_MOC_NAMESPACE diff --git a/qradiobutton.cpp b/qradiobutton.cpp deleted file mode 100644 index e5ac81ab..00000000 --- a/qradiobutton.cpp +++ /dev/null @@ -1,22 +0,0 @@ -#include "qradiobutton.h" -#include -#include "cgoexport.h" - - - -//Public Functions -QtObjectPtr QRadioButton_New_QWidget(QtObjectPtr parent) -{ - return new QRadioButton(((QWidget*)(parent))); -} - -QtObjectPtr QRadioButton_New_String_QWidget(char* text, QtObjectPtr parent) -{ - return new QRadioButton(QString(text), ((QWidget*)(parent))); -} - -void QRadioButton_Destroy(QtObjectPtr ptr) -{ - ((QRadioButton*)(ptr))->~QRadioButton(); -} - diff --git a/qradiobutton.go b/qradiobutton.go deleted file mode 100644 index 0635409c..00000000 --- a/qradiobutton.go +++ /dev/null @@ -1,50 +0,0 @@ -package qt - -//#include "qradiobutton.h" -import "C" - -type qradiobutton struct { - qabstractbutton -} - -type QRadioButton interface { - QAbstractButton -} - -func (p *qradiobutton) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qradiobutton) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQRadioButton1(parent QWidget) QRadioButton { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qradiobutton = new(qradiobutton) - qradiobutton.SetPointer(C.QRadioButton_New_QWidget(parentPtr)) - qradiobutton.SetObjectName("QRadioButton_" + randomIdentifier()) - return qradiobutton -} - -func NewQRadioButton2(text string, parent QWidget) QRadioButton { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qradiobutton = new(qradiobutton) - qradiobutton.SetPointer(C.QRadioButton_New_String_QWidget(C.CString(text), parentPtr)) - qradiobutton.SetObjectName("QRadioButton_" + randomIdentifier()) - return qradiobutton -} - -func (p *qradiobutton) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QRadioButton_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} diff --git a/qradiobutton.h b/qradiobutton.h deleted file mode 100644 index 75935fe5..00000000 --- a/qradiobutton.h +++ /dev/null @@ -1,14 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QRadioButton_New_QWidget(QtObjectPtr parent); -QtObjectPtr QRadioButton_New_String_QWidget(char* text, QtObjectPtr parent); -void QRadioButton_Destroy(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qradiobutton.moc b/qradiobutton.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/qrect.cpp b/qrect.cpp deleted file mode 100644 index 7132d33b..00000000 --- a/qrect.cpp +++ /dev/null @@ -1,157 +0,0 @@ -#include "qrect.h" -#include -#include "cgoexport.h" - - - -//Public Functions -void QRect_Adjust_Int_Int_Int_Int(QtObjectPtr ptr, int dx1, int dy1, int dx2, int dy2) -{ - ((QRect*)(ptr))->adjust(dx1, dy1, dx2, dy2); -} - -int QRect_Bottom(QtObjectPtr ptr) -{ - return ((QRect*)(ptr))->bottom(); -} - -int QRect_Contains_Int_Int_Bool(QtObjectPtr ptr, int x, int y, int proper) -{ - return ((QRect*)(ptr))->contains(x, y, proper != 0); -} - -int QRect_Contains_Int_Int(QtObjectPtr ptr, int x, int y) -{ - return ((QRect*)(ptr))->contains(x, y); -} - -int QRect_Height(QtObjectPtr ptr) -{ - return ((QRect*)(ptr))->height(); -} - -int QRect_IsEmpty(QtObjectPtr ptr) -{ - return ((QRect*)(ptr))->isEmpty(); -} - -int QRect_IsNull(QtObjectPtr ptr) -{ - return ((QRect*)(ptr))->isNull(); -} - -int QRect_IsValid(QtObjectPtr ptr) -{ - return ((QRect*)(ptr))->isValid(); -} - -int QRect_Left(QtObjectPtr ptr) -{ - return ((QRect*)(ptr))->left(); -} - -void QRect_MoveBottom_Int(QtObjectPtr ptr, int y) -{ - ((QRect*)(ptr))->moveBottom(y); -} - -void QRect_MoveLeft_Int(QtObjectPtr ptr, int x) -{ - ((QRect*)(ptr))->moveLeft(x); -} - -void QRect_MoveRight_Int(QtObjectPtr ptr, int x) -{ - ((QRect*)(ptr))->moveRight(x); -} - -void QRect_MoveTo_Int_Int(QtObjectPtr ptr, int x, int y) -{ - ((QRect*)(ptr))->moveTo(x, y); -} - -void QRect_MoveTop_Int(QtObjectPtr ptr, int y) -{ - ((QRect*)(ptr))->moveTop(y); -} - -int QRect_Right(QtObjectPtr ptr) -{ - return ((QRect*)(ptr))->right(); -} - -void QRect_SetBottom_Int(QtObjectPtr ptr, int y) -{ - ((QRect*)(ptr))->setBottom(y); -} - -void QRect_SetCoords_Int_Int_Int_Int(QtObjectPtr ptr, int x1, int y1, int x2, int y2) -{ - ((QRect*)(ptr))->setCoords(x1, y1, x2, y2); -} - -void QRect_SetHeight_Int(QtObjectPtr ptr, int height) -{ - ((QRect*)(ptr))->setHeight(height); -} - -void QRect_SetLeft_Int(QtObjectPtr ptr, int x) -{ - ((QRect*)(ptr))->setLeft(x); -} - -void QRect_SetRect_Int_Int_Int_Int(QtObjectPtr ptr, int x, int y, int width, int height) -{ - ((QRect*)(ptr))->setRect(x, y, width, height); -} - -void QRect_SetRight_Int(QtObjectPtr ptr, int x) -{ - ((QRect*)(ptr))->setRight(x); -} - -void QRect_SetTop_Int(QtObjectPtr ptr, int y) -{ - ((QRect*)(ptr))->setTop(y); -} - -void QRect_SetWidth_Int(QtObjectPtr ptr, int width) -{ - ((QRect*)(ptr))->setWidth(width); -} - -void QRect_SetX_Int(QtObjectPtr ptr, int x) -{ - ((QRect*)(ptr))->setX(x); -} - -void QRect_SetY_Int(QtObjectPtr ptr, int y) -{ - ((QRect*)(ptr))->setY(y); -} - -int QRect_Top(QtObjectPtr ptr) -{ - return ((QRect*)(ptr))->top(); -} - -void QRect_Translate_Int_Int(QtObjectPtr ptr, int dx, int dy) -{ - ((QRect*)(ptr))->translate(dx, dy); -} - -int QRect_Width(QtObjectPtr ptr) -{ - return ((QRect*)(ptr))->width(); -} - -int QRect_X(QtObjectPtr ptr) -{ - return ((QRect*)(ptr))->x(); -} - -int QRect_Y(QtObjectPtr ptr) -{ - return ((QRect*)(ptr))->y(); -} - diff --git a/qrect.go b/qrect.go deleted file mode 100644 index e76ac5fa..00000000 --- a/qrect.go +++ /dev/null @@ -1,244 +0,0 @@ -package qt - -//#include "qrect.h" -import "C" - -type qrect struct { - ptr C.QtObjectPtr -} - -type QRect interface { - Pointer() (ptr C.QtObjectPtr) - SetPointer(ptr C.QtObjectPtr) - Adjust(dx1 int, dy1 int, dx2 int, dy2 int) - Bottom() int - Contains1(x int, y int, proper bool) bool - Contains2(x int, y int) bool - Height() int - IsEmpty() bool - IsNull() bool - IsValid() bool - Left() int - MoveBottom(y int) - MoveLeft(x int) - MoveRight(x int) - MoveTo(x int, y int) - MoveTop(y int) - Right() int - SetBottom(y int) - SetCoords(x1 int, y1 int, x2 int, y2 int) - SetHeight(height int) - SetLeft(x int) - SetRect(x int, y int, width int, height int) - SetRight(x int) - SetTop(y int) - SetWidth(width int) - SetX(x int) - SetY(y int) - Top() int - Translate(dx int, dy int) - Width() int - X() int - Y() int -} - -func (p *qrect) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qrect) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func (p *qrect) Adjust(dx1 int, dy1 int, dx2 int, dy2 int) { - if p.Pointer() != nil { - C.QRect_Adjust_Int_Int_Int_Int(p.Pointer(), C.int(dx1), C.int(dy1), C.int(dx2), C.int(dy2)) - } -} - -func (p *qrect) Bottom() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QRect_Bottom(p.Pointer())) -} - -func (p *qrect) Contains1(x int, y int, proper bool) bool { - if p.Pointer() == nil { - return false - } - return C.QRect_Contains_Int_Int_Bool(p.Pointer(), C.int(x), C.int(y), goBoolToCInt(proper)) != 0 -} - -func (p *qrect) Contains2(x int, y int) bool { - if p.Pointer() == nil { - return false - } - return C.QRect_Contains_Int_Int(p.Pointer(), C.int(x), C.int(y)) != 0 -} - -func (p *qrect) Height() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QRect_Height(p.Pointer())) -} - -func (p *qrect) IsEmpty() bool { - if p.Pointer() == nil { - return false - } - return C.QRect_IsEmpty(p.Pointer()) != 0 -} - -func (p *qrect) IsNull() bool { - if p.Pointer() == nil { - return false - } - return C.QRect_IsNull(p.Pointer()) != 0 -} - -func (p *qrect) IsValid() bool { - if p.Pointer() == nil { - return false - } - return C.QRect_IsValid(p.Pointer()) != 0 -} - -func (p *qrect) Left() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QRect_Left(p.Pointer())) -} - -func (p *qrect) MoveBottom(y int) { - if p.Pointer() != nil { - C.QRect_MoveBottom_Int(p.Pointer(), C.int(y)) - } -} - -func (p *qrect) MoveLeft(x int) { - if p.Pointer() != nil { - C.QRect_MoveLeft_Int(p.Pointer(), C.int(x)) - } -} - -func (p *qrect) MoveRight(x int) { - if p.Pointer() != nil { - C.QRect_MoveRight_Int(p.Pointer(), C.int(x)) - } -} - -func (p *qrect) MoveTo(x int, y int) { - if p.Pointer() != nil { - C.QRect_MoveTo_Int_Int(p.Pointer(), C.int(x), C.int(y)) - } -} - -func (p *qrect) MoveTop(y int) { - if p.Pointer() != nil { - C.QRect_MoveTop_Int(p.Pointer(), C.int(y)) - } -} - -func (p *qrect) Right() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QRect_Right(p.Pointer())) -} - -func (p *qrect) SetBottom(y int) { - if p.Pointer() != nil { - C.QRect_SetBottom_Int(p.Pointer(), C.int(y)) - } -} - -func (p *qrect) SetCoords(x1 int, y1 int, x2 int, y2 int) { - if p.Pointer() != nil { - C.QRect_SetCoords_Int_Int_Int_Int(p.Pointer(), C.int(x1), C.int(y1), C.int(x2), C.int(y2)) - } -} - -func (p *qrect) SetHeight(height int) { - if p.Pointer() != nil { - C.QRect_SetHeight_Int(p.Pointer(), C.int(height)) - } -} - -func (p *qrect) SetLeft(x int) { - if p.Pointer() != nil { - C.QRect_SetLeft_Int(p.Pointer(), C.int(x)) - } -} - -func (p *qrect) SetRect(x int, y int, width int, height int) { - if p.Pointer() != nil { - C.QRect_SetRect_Int_Int_Int_Int(p.Pointer(), C.int(x), C.int(y), C.int(width), C.int(height)) - } -} - -func (p *qrect) SetRight(x int) { - if p.Pointer() != nil { - C.QRect_SetRight_Int(p.Pointer(), C.int(x)) - } -} - -func (p *qrect) SetTop(y int) { - if p.Pointer() != nil { - C.QRect_SetTop_Int(p.Pointer(), C.int(y)) - } -} - -func (p *qrect) SetWidth(width int) { - if p.Pointer() != nil { - C.QRect_SetWidth_Int(p.Pointer(), C.int(width)) - } -} - -func (p *qrect) SetX(x int) { - if p.Pointer() != nil { - C.QRect_SetX_Int(p.Pointer(), C.int(x)) - } -} - -func (p *qrect) SetY(y int) { - if p.Pointer() != nil { - C.QRect_SetY_Int(p.Pointer(), C.int(y)) - } -} - -func (p *qrect) Top() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QRect_Top(p.Pointer())) -} - -func (p *qrect) Translate(dx int, dy int) { - if p.Pointer() != nil { - C.QRect_Translate_Int_Int(p.Pointer(), C.int(dx), C.int(dy)) - } -} - -func (p *qrect) Width() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QRect_Width(p.Pointer())) -} - -func (p *qrect) X() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QRect_X(p.Pointer())) -} - -func (p *qrect) Y() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QRect_Y(p.Pointer())) -} diff --git a/qrect.h b/qrect.h deleted file mode 100644 index 57c93223..00000000 --- a/qrect.h +++ /dev/null @@ -1,41 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -void QRect_Adjust_Int_Int_Int_Int(QtObjectPtr ptr, int dx1, int dy1, int dx2, int dy2); -int QRect_Bottom(QtObjectPtr ptr); -int QRect_Contains_Int_Int_Bool(QtObjectPtr ptr, int x, int y, int proper); -int QRect_Contains_Int_Int(QtObjectPtr ptr, int x, int y); -int QRect_Height(QtObjectPtr ptr); -int QRect_IsEmpty(QtObjectPtr ptr); -int QRect_IsNull(QtObjectPtr ptr); -int QRect_IsValid(QtObjectPtr ptr); -int QRect_Left(QtObjectPtr ptr); -void QRect_MoveBottom_Int(QtObjectPtr ptr, int y); -void QRect_MoveLeft_Int(QtObjectPtr ptr, int x); -void QRect_MoveRight_Int(QtObjectPtr ptr, int x); -void QRect_MoveTo_Int_Int(QtObjectPtr ptr, int x, int y); -void QRect_MoveTop_Int(QtObjectPtr ptr, int y); -int QRect_Right(QtObjectPtr ptr); -void QRect_SetBottom_Int(QtObjectPtr ptr, int y); -void QRect_SetCoords_Int_Int_Int_Int(QtObjectPtr ptr, int x1, int y1, int x2, int y2); -void QRect_SetHeight_Int(QtObjectPtr ptr, int height); -void QRect_SetLeft_Int(QtObjectPtr ptr, int x); -void QRect_SetRect_Int_Int_Int_Int(QtObjectPtr ptr, int x, int y, int width, int height); -void QRect_SetRight_Int(QtObjectPtr ptr, int x); -void QRect_SetTop_Int(QtObjectPtr ptr, int y); -void QRect_SetWidth_Int(QtObjectPtr ptr, int width); -void QRect_SetX_Int(QtObjectPtr ptr, int x); -void QRect_SetY_Int(QtObjectPtr ptr, int y); -int QRect_Top(QtObjectPtr ptr); -void QRect_Translate_Int_Int(QtObjectPtr ptr, int dx, int dy); -int QRect_Width(QtObjectPtr ptr); -int QRect_X(QtObjectPtr ptr); -int QRect_Y(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qrect.moc b/qrect.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/qsize.cpp b/qsize.cpp deleted file mode 100644 index 5e707338..00000000 --- a/qsize.cpp +++ /dev/null @@ -1,62 +0,0 @@ -#include "qsize.h" -#include -#include "cgoexport.h" - - - -//Public Functions -int QSize_Height(QtObjectPtr ptr) -{ - return ((QSize*)(ptr))->height(); -} - -int QSize_IsEmpty(QtObjectPtr ptr) -{ - return ((QSize*)(ptr))->isEmpty(); -} - -int QSize_IsNull(QtObjectPtr ptr) -{ - return ((QSize*)(ptr))->isNull(); -} - -int QSize_IsValid(QtObjectPtr ptr) -{ - return ((QSize*)(ptr))->isValid(); -} - -int QSize_Rheight(QtObjectPtr ptr) -{ - return ((QSize*)(ptr))->rheight(); -} - -int QSize_Rwidth(QtObjectPtr ptr) -{ - return ((QSize*)(ptr))->rwidth(); -} - -void QSize_Scale_Int_Int_AspectRatioMode(QtObjectPtr ptr, int width, int height, int mode) -{ - ((QSize*)(ptr))->scale(width, height, ((Qt::AspectRatioMode)(mode))); -} - -void QSize_SetHeight_Int(QtObjectPtr ptr, int height) -{ - ((QSize*)(ptr))->setHeight(height); -} - -void QSize_SetWidth_Int(QtObjectPtr ptr, int width) -{ - ((QSize*)(ptr))->setWidth(width); -} - -void QSize_Transpose(QtObjectPtr ptr) -{ - ((QSize*)(ptr))->transpose(); -} - -int QSize_Width(QtObjectPtr ptr) -{ - return ((QSize*)(ptr))->width(); -} - diff --git a/qsize.go b/qsize.go deleted file mode 100644 index b67a5790..00000000 --- a/qsize.go +++ /dev/null @@ -1,105 +0,0 @@ -package qt - -//#include "qsize.h" -import "C" - -type qsize struct { - ptr C.QtObjectPtr -} - -type QSize interface { - Pointer() (ptr C.QtObjectPtr) - SetPointer(ptr C.QtObjectPtr) - Height() int - IsEmpty() bool - IsNull() bool - IsValid() bool - Rheight() int - Rwidth() int - Scale(width int, height int, mode AspectRatioMode) - SetHeight(height int) - SetWidth(width int) - Transpose() - Width() int -} - -func (p *qsize) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qsize) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func (p *qsize) Height() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QSize_Height(p.Pointer())) -} - -func (p *qsize) IsEmpty() bool { - if p.Pointer() == nil { - return false - } - return C.QSize_IsEmpty(p.Pointer()) != 0 -} - -func (p *qsize) IsNull() bool { - if p.Pointer() == nil { - return false - } - return C.QSize_IsNull(p.Pointer()) != 0 -} - -func (p *qsize) IsValid() bool { - if p.Pointer() == nil { - return false - } - return C.QSize_IsValid(p.Pointer()) != 0 -} - -func (p *qsize) Rheight() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QSize_Rheight(p.Pointer())) -} - -func (p *qsize) Rwidth() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QSize_Rwidth(p.Pointer())) -} - -func (p *qsize) Scale(width int, height int, mode AspectRatioMode) { - if p.Pointer() != nil { - C.QSize_Scale_Int_Int_AspectRatioMode(p.Pointer(), C.int(width), C.int(height), C.int(mode)) - } -} - -func (p *qsize) SetHeight(height int) { - if p.Pointer() != nil { - C.QSize_SetHeight_Int(p.Pointer(), C.int(height)) - } -} - -func (p *qsize) SetWidth(width int) { - if p.Pointer() != nil { - C.QSize_SetWidth_Int(p.Pointer(), C.int(width)) - } -} - -func (p *qsize) Transpose() { - if p.Pointer() != nil { - C.QSize_Transpose(p.Pointer()) - } -} - -func (p *qsize) Width() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QSize_Width(p.Pointer())) -} diff --git a/qsize.h b/qsize.h deleted file mode 100644 index 749c98ef..00000000 --- a/qsize.h +++ /dev/null @@ -1,22 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -int QSize_Height(QtObjectPtr ptr); -int QSize_IsEmpty(QtObjectPtr ptr); -int QSize_IsNull(QtObjectPtr ptr); -int QSize_IsValid(QtObjectPtr ptr); -int QSize_Rheight(QtObjectPtr ptr); -int QSize_Rwidth(QtObjectPtr ptr); -void QSize_Scale_Int_Int_AspectRatioMode(QtObjectPtr ptr, int width, int height, int mode); -void QSize_SetHeight_Int(QtObjectPtr ptr, int height); -void QSize_SetWidth_Int(QtObjectPtr ptr, int width); -void QSize_Transpose(QtObjectPtr ptr); -int QSize_Width(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qsize.moc b/qsize.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/qsizegrip.cpp b/qsizegrip.cpp deleted file mode 100644 index 6ad60c48..00000000 --- a/qsizegrip.cpp +++ /dev/null @@ -1,17 +0,0 @@ -#include "qsizegrip.h" -#include -#include "cgoexport.h" - - - -//Public Functions -QtObjectPtr QSizeGrip_New_QWidget(QtObjectPtr parent) -{ - return new QSizeGrip(((QWidget*)(parent))); -} - -void QSizeGrip_Destroy(QtObjectPtr ptr) -{ - ((QSizeGrip*)(ptr))->~QSizeGrip(); -} - diff --git a/qsizegrip.go b/qsizegrip.go deleted file mode 100644 index e13d1733..00000000 --- a/qsizegrip.go +++ /dev/null @@ -1,39 +0,0 @@ -package qt - -//#include "qsizegrip.h" -import "C" - -type qsizegrip struct { - qwidget -} - -type QSizeGrip interface { - QWidget -} - -func (p *qsizegrip) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qsizegrip) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQSizeGrip(parent QWidget) QSizeGrip { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qsizegrip = new(qsizegrip) - qsizegrip.SetPointer(C.QSizeGrip_New_QWidget(parentPtr)) - qsizegrip.SetObjectName("QSizeGrip_" + randomIdentifier()) - return qsizegrip -} - -func (p *qsizegrip) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QSizeGrip_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} diff --git a/qsizegrip.h b/qsizegrip.h deleted file mode 100644 index 0ca9b1c9..00000000 --- a/qsizegrip.h +++ /dev/null @@ -1,13 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QSizeGrip_New_QWidget(QtObjectPtr parent); -void QSizeGrip_Destroy(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qsizegrip.moc b/qsizegrip.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/qsizepolicy.cpp b/qsizepolicy.cpp deleted file mode 100644 index 49be3859..00000000 --- a/qsizepolicy.cpp +++ /dev/null @@ -1,72 +0,0 @@ -#include "qsizepolicy.h" -#include -#include "cgoexport.h" - - - -//Public Functions -QtObjectPtr QSizePolicy_New() -{ - return new QSizePolicy(); -} - -int QSizePolicy_ExpandingDirections(QtObjectPtr ptr) -{ - return ((QSizePolicy*)(ptr))->expandingDirections(); -} - -int QSizePolicy_HasHeightForWidth(QtObjectPtr ptr) -{ - return ((QSizePolicy*)(ptr))->hasHeightForWidth(); -} - -int QSizePolicy_HasWidthForHeight(QtObjectPtr ptr) -{ - return ((QSizePolicy*)(ptr))->hasWidthForHeight(); -} - -int QSizePolicy_HorizontalStretch(QtObjectPtr ptr) -{ - return ((QSizePolicy*)(ptr))->horizontalStretch(); -} - -int QSizePolicy_RetainSizeWhenHidden(QtObjectPtr ptr) -{ - return ((QSizePolicy*)(ptr))->retainSizeWhenHidden(); -} - -void QSizePolicy_SetHeightForWidth_Bool(QtObjectPtr ptr, int dependent) -{ - ((QSizePolicy*)(ptr))->setHeightForWidth(dependent != 0); -} - -void QSizePolicy_SetHorizontalStretch_Int(QtObjectPtr ptr, int stretchFactor) -{ - ((QSizePolicy*)(ptr))->setHorizontalStretch(stretchFactor); -} - -void QSizePolicy_SetRetainSizeWhenHidden_Bool(QtObjectPtr ptr, int retainSize) -{ - ((QSizePolicy*)(ptr))->setRetainSizeWhenHidden(retainSize != 0); -} - -void QSizePolicy_SetVerticalStretch_Int(QtObjectPtr ptr, int stretchFactor) -{ - ((QSizePolicy*)(ptr))->setVerticalStretch(stretchFactor); -} - -void QSizePolicy_SetWidthForHeight_Bool(QtObjectPtr ptr, int dependent) -{ - ((QSizePolicy*)(ptr))->setWidthForHeight(dependent != 0); -} - -void QSizePolicy_Transpose(QtObjectPtr ptr) -{ - ((QSizePolicy*)(ptr))->transpose(); -} - -int QSizePolicy_VerticalStretch(QtObjectPtr ptr) -{ - return ((QSizePolicy*)(ptr))->verticalStretch(); -} - diff --git a/qsizepolicy.go b/qsizepolicy.go deleted file mode 100644 index 3c0b65f2..00000000 --- a/qsizepolicy.go +++ /dev/null @@ -1,117 +0,0 @@ -package qt - -//#include "qsizepolicy.h" -import "C" - -type qsizepolicy struct { - ptr C.QtObjectPtr -} - -type QSizePolicy interface { - Pointer() (ptr C.QtObjectPtr) - SetPointer(ptr C.QtObjectPtr) - ExpandingDirections() Orientation - HasHeightForWidth() bool - HasWidthForHeight() bool - HorizontalStretch() int - RetainSizeWhenHidden() bool - SetHeightForWidth(dependent bool) - SetHorizontalStretch(stretchFactor int) - SetRetainSizeWhenHidden(retainSize bool) - SetVerticalStretch(stretchFactor int) - SetWidthForHeight(dependent bool) - Transpose() - VerticalStretch() int -} - -func (p *qsizepolicy) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qsizepolicy) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQSizePolicy() QSizePolicy { - var qsizepolicy = new(qsizepolicy) - qsizepolicy.SetPointer(C.QSizePolicy_New()) - return qsizepolicy -} - -func (p *qsizepolicy) ExpandingDirections() Orientation { - if p.Pointer() == nil { - return 0 - } - return Orientation(C.QSizePolicy_ExpandingDirections(p.Pointer())) -} - -func (p *qsizepolicy) HasHeightForWidth() bool { - if p.Pointer() == nil { - return false - } - return C.QSizePolicy_HasHeightForWidth(p.Pointer()) != 0 -} - -func (p *qsizepolicy) HasWidthForHeight() bool { - if p.Pointer() == nil { - return false - } - return C.QSizePolicy_HasWidthForHeight(p.Pointer()) != 0 -} - -func (p *qsizepolicy) HorizontalStretch() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QSizePolicy_HorizontalStretch(p.Pointer())) -} - -func (p *qsizepolicy) RetainSizeWhenHidden() bool { - if p.Pointer() == nil { - return false - } - return C.QSizePolicy_RetainSizeWhenHidden(p.Pointer()) != 0 -} - -func (p *qsizepolicy) SetHeightForWidth(dependent bool) { - if p.Pointer() != nil { - C.QSizePolicy_SetHeightForWidth_Bool(p.Pointer(), goBoolToCInt(dependent)) - } -} - -func (p *qsizepolicy) SetHorizontalStretch(stretchFactor int) { - if p.Pointer() != nil { - C.QSizePolicy_SetHorizontalStretch_Int(p.Pointer(), C.int(stretchFactor)) - } -} - -func (p *qsizepolicy) SetRetainSizeWhenHidden(retainSize bool) { - if p.Pointer() != nil { - C.QSizePolicy_SetRetainSizeWhenHidden_Bool(p.Pointer(), goBoolToCInt(retainSize)) - } -} - -func (p *qsizepolicy) SetVerticalStretch(stretchFactor int) { - if p.Pointer() != nil { - C.QSizePolicy_SetVerticalStretch_Int(p.Pointer(), C.int(stretchFactor)) - } -} - -func (p *qsizepolicy) SetWidthForHeight(dependent bool) { - if p.Pointer() != nil { - C.QSizePolicy_SetWidthForHeight_Bool(p.Pointer(), goBoolToCInt(dependent)) - } -} - -func (p *qsizepolicy) Transpose() { - if p.Pointer() != nil { - C.QSizePolicy_Transpose(p.Pointer()) - } -} - -func (p *qsizepolicy) VerticalStretch() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QSizePolicy_VerticalStretch(p.Pointer())) -} diff --git a/qsizepolicy.h b/qsizepolicy.h deleted file mode 100644 index 03c953ba..00000000 --- a/qsizepolicy.h +++ /dev/null @@ -1,24 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QSizePolicy_New(); -int QSizePolicy_ExpandingDirections(QtObjectPtr ptr); -int QSizePolicy_HasHeightForWidth(QtObjectPtr ptr); -int QSizePolicy_HasWidthForHeight(QtObjectPtr ptr); -int QSizePolicy_HorizontalStretch(QtObjectPtr ptr); -int QSizePolicy_RetainSizeWhenHidden(QtObjectPtr ptr); -void QSizePolicy_SetHeightForWidth_Bool(QtObjectPtr ptr, int dependent); -void QSizePolicy_SetHorizontalStretch_Int(QtObjectPtr ptr, int stretchFactor); -void QSizePolicy_SetRetainSizeWhenHidden_Bool(QtObjectPtr ptr, int retainSize); -void QSizePolicy_SetVerticalStretch_Int(QtObjectPtr ptr, int stretchFactor); -void QSizePolicy_SetWidthForHeight_Bool(QtObjectPtr ptr, int dependent); -void QSizePolicy_Transpose(QtObjectPtr ptr); -int QSizePolicy_VerticalStretch(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qsizepolicy.moc b/qsizepolicy.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/qslider.cpp b/qslider.cpp deleted file mode 100644 index b591e673..00000000 --- a/qslider.cpp +++ /dev/null @@ -1,32 +0,0 @@ -#include "qslider.h" -#include -#include "cgoexport.h" - - - -//Public Functions -QtObjectPtr QSlider_New_QWidget(QtObjectPtr parent) -{ - return new QSlider(((QWidget*)(parent))); -} - -QtObjectPtr QSlider_New_Orientation_QWidget(int orientation, QtObjectPtr parent) -{ - return new QSlider(((Qt::Orientation)(orientation)), ((QWidget*)(parent))); -} - -void QSlider_Destroy(QtObjectPtr ptr) -{ - ((QSlider*)(ptr))->~QSlider(); -} - -void QSlider_SetTickInterval_Int(QtObjectPtr ptr, int ti) -{ - ((QSlider*)(ptr))->setTickInterval(ti); -} - -int QSlider_TickInterval(QtObjectPtr ptr) -{ - return ((QSlider*)(ptr))->tickInterval(); -} - diff --git a/qslider.go b/qslider.go deleted file mode 100644 index e3700fdb..00000000 --- a/qslider.go +++ /dev/null @@ -1,65 +0,0 @@ -package qt - -//#include "qslider.h" -import "C" - -type qslider struct { - qabstractslider -} - -type QSlider interface { - QAbstractSlider - SetTickInterval(ti int) - TickInterval() int -} - -func (p *qslider) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qslider) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQSlider1(parent QWidget) QSlider { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qslider = new(qslider) - qslider.SetPointer(C.QSlider_New_QWidget(parentPtr)) - qslider.SetObjectName("QSlider_" + randomIdentifier()) - return qslider -} - -func NewQSlider2(orientation Orientation, parent QWidget) QSlider { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qslider = new(qslider) - qslider.SetPointer(C.QSlider_New_Orientation_QWidget(C.int(orientation), parentPtr)) - qslider.SetObjectName("QSlider_" + randomIdentifier()) - return qslider -} - -func (p *qslider) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QSlider_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qslider) SetTickInterval(ti int) { - if p.Pointer() != nil { - C.QSlider_SetTickInterval_Int(p.Pointer(), C.int(ti)) - } -} - -func (p *qslider) TickInterval() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QSlider_TickInterval(p.Pointer())) -} diff --git a/qslider.h b/qslider.h deleted file mode 100644 index cd86b85e..00000000 --- a/qslider.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QSlider_New_QWidget(QtObjectPtr parent); -QtObjectPtr QSlider_New_Orientation_QWidget(int orientation, QtObjectPtr parent); -void QSlider_Destroy(QtObjectPtr ptr); -void QSlider_SetTickInterval_Int(QtObjectPtr ptr, int ti); -int QSlider_TickInterval(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qslider.moc b/qslider.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/qspaceritem.cpp b/qspaceritem.cpp deleted file mode 100644 index 01f530b6..00000000 --- a/qspaceritem.cpp +++ /dev/null @@ -1,12 +0,0 @@ -#include "qspaceritem.h" -#include -#include "cgoexport.h" - - - -//Public Functions -void QSpacerItem_Destroy(QtObjectPtr ptr) -{ - ((QSpacerItem*)(ptr))->~QSpacerItem(); -} - diff --git a/qspaceritem.go b/qspaceritem.go deleted file mode 100644 index c9399519..00000000 --- a/qspaceritem.go +++ /dev/null @@ -1,27 +0,0 @@ -package qt - -//#include "qspaceritem.h" -import "C" - -type qspaceritem struct { - qlayoutitem -} - -type QSpacerItem interface { - QLayoutItem -} - -func (p *qspaceritem) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qspaceritem) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func (p *qspaceritem) Destroy() { - if p.Pointer() != nil { - C.QSpacerItem_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} diff --git a/qspaceritem.h b/qspaceritem.h deleted file mode 100644 index 34e5e6e8..00000000 --- a/qspaceritem.h +++ /dev/null @@ -1,12 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -void QSpacerItem_Destroy(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qspaceritem.moc b/qspaceritem.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/qspinbox.cpp b/qspinbox.cpp deleted file mode 100644 index eaf607dd..00000000 --- a/qspinbox.cpp +++ /dev/null @@ -1,118 +0,0 @@ -#include "qspinbox.h" -#include -#include "cgoexport.h" - -//MyQSpinBox -class MyQSpinBox: public QSpinBox { -Q_OBJECT -public: - -signals: -void Slot_SetValue(int val); - -}; -#include "qspinbox.moc" - - -//Public Functions -QtObjectPtr QSpinBox_New_QWidget(QtObjectPtr parent) -{ - return new QSpinBox(((QWidget*)(parent))); -} - -void QSpinBox_Destroy(QtObjectPtr ptr) -{ - ((QSpinBox*)(ptr))->~QSpinBox(); -} - -char* QSpinBox_CleanText(QtObjectPtr ptr) -{ - return ((QSpinBox*)(ptr))->cleanText().toUtf8().data(); -} - -int QSpinBox_DisplayIntegerBase(QtObjectPtr ptr) -{ - return ((QSpinBox*)(ptr))->displayIntegerBase(); -} - -int QSpinBox_Maximum(QtObjectPtr ptr) -{ - return ((QSpinBox*)(ptr))->maximum(); -} - -int QSpinBox_Minimum(QtObjectPtr ptr) -{ - return ((QSpinBox*)(ptr))->minimum(); -} - -char* QSpinBox_Prefix(QtObjectPtr ptr) -{ - return ((QSpinBox*)(ptr))->prefix().toUtf8().data(); -} - -void QSpinBox_SetDisplayIntegerBase_Int(QtObjectPtr ptr, int base) -{ - ((QSpinBox*)(ptr))->setDisplayIntegerBase(base); -} - -void QSpinBox_SetMaximum_Int(QtObjectPtr ptr, int max) -{ - ((QSpinBox*)(ptr))->setMaximum(max); -} - -void QSpinBox_SetMinimum_Int(QtObjectPtr ptr, int min) -{ - ((QSpinBox*)(ptr))->setMinimum(min); -} - -void QSpinBox_SetPrefix_String(QtObjectPtr ptr, char* prefix) -{ - ((QSpinBox*)(ptr))->setPrefix(QString(prefix)); -} - -void QSpinBox_SetRange_Int_Int(QtObjectPtr ptr, int minimum, int maximum) -{ - ((QSpinBox*)(ptr))->setRange(minimum, maximum); -} - -void QSpinBox_SetSingleStep_Int(QtObjectPtr ptr, int val) -{ - ((QSpinBox*)(ptr))->setSingleStep(val); -} - -void QSpinBox_SetSuffix_String(QtObjectPtr ptr, char* suffix) -{ - ((QSpinBox*)(ptr))->setSuffix(QString(suffix)); -} - -int QSpinBox_SingleStep(QtObjectPtr ptr) -{ - return ((QSpinBox*)(ptr))->singleStep(); -} - -char* QSpinBox_Suffix(QtObjectPtr ptr) -{ - return ((QSpinBox*)(ptr))->suffix().toUtf8().data(); -} - -int QSpinBox_Value(QtObjectPtr ptr) -{ - return ((QSpinBox*)(ptr))->value(); -} - -//Public Slots -void QSpinBox_ConnectSlotSetValue(QtObjectPtr ptr) -{ - QObject::connect(((MyQSpinBox*)(ptr)), &MyQSpinBox::Slot_SetValue, ((QSpinBox*)(ptr)), &QSpinBox::setValue, Qt::QueuedConnection); -} - -void QSpinBox_DisconnectSlotSetValue(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQSpinBox*)(ptr)), &MyQSpinBox::Slot_SetValue, ((QSpinBox*)(ptr)), &QSpinBox::setValue); -} - -void QSpinBox_SetValue_Int(QtObjectPtr ptr, int val) -{ - ((MyQSpinBox*)(ptr))->Slot_SetValue(val); -} - diff --git a/qspinbox.go b/qspinbox.go deleted file mode 100644 index 28ffdc38..00000000 --- a/qspinbox.go +++ /dev/null @@ -1,169 +0,0 @@ -package qt - -//#include "qspinbox.h" -import "C" - -type qspinbox struct { - qabstractspinbox -} - -type QSpinBox interface { - QAbstractSpinBox - CleanText() string - DisplayIntegerBase() int - Maximum() int - Minimum() int - Prefix() string - SetDisplayIntegerBase(base int) - SetMaximum(max int) - SetMinimum(min int) - SetPrefix(prefix string) - SetRange(minimum int, maximum int) - SetSingleStep(val int) - SetSuffix(suffix string) - SingleStep() int - Suffix() string - Value() int - ConnectSlotSetValue() - DisconnectSlotSetValue() - SlotSetValue(val int) -} - -func (p *qspinbox) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qspinbox) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQSpinBox(parent QWidget) QSpinBox { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qspinbox = new(qspinbox) - qspinbox.SetPointer(C.QSpinBox_New_QWidget(parentPtr)) - qspinbox.SetObjectName("QSpinBox_" + randomIdentifier()) - return qspinbox -} - -func (p *qspinbox) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QSpinBox_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qspinbox) CleanText() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QSpinBox_CleanText(p.Pointer())) -} - -func (p *qspinbox) DisplayIntegerBase() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QSpinBox_DisplayIntegerBase(p.Pointer())) -} - -func (p *qspinbox) Maximum() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QSpinBox_Maximum(p.Pointer())) -} - -func (p *qspinbox) Minimum() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QSpinBox_Minimum(p.Pointer())) -} - -func (p *qspinbox) Prefix() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QSpinBox_Prefix(p.Pointer())) -} - -func (p *qspinbox) SetDisplayIntegerBase(base int) { - if p.Pointer() != nil { - C.QSpinBox_SetDisplayIntegerBase_Int(p.Pointer(), C.int(base)) - } -} - -func (p *qspinbox) SetMaximum(max int) { - if p.Pointer() != nil { - C.QSpinBox_SetMaximum_Int(p.Pointer(), C.int(max)) - } -} - -func (p *qspinbox) SetMinimum(min int) { - if p.Pointer() != nil { - C.QSpinBox_SetMinimum_Int(p.Pointer(), C.int(min)) - } -} - -func (p *qspinbox) SetPrefix(prefix string) { - if p.Pointer() != nil { - C.QSpinBox_SetPrefix_String(p.Pointer(), C.CString(prefix)) - } -} - -func (p *qspinbox) SetRange(minimum int, maximum int) { - if p.Pointer() != nil { - C.QSpinBox_SetRange_Int_Int(p.Pointer(), C.int(minimum), C.int(maximum)) - } -} - -func (p *qspinbox) SetSingleStep(val int) { - if p.Pointer() != nil { - C.QSpinBox_SetSingleStep_Int(p.Pointer(), C.int(val)) - } -} - -func (p *qspinbox) SetSuffix(suffix string) { - if p.Pointer() != nil { - C.QSpinBox_SetSuffix_String(p.Pointer(), C.CString(suffix)) - } -} - -func (p *qspinbox) SingleStep() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QSpinBox_SingleStep(p.Pointer())) -} - -func (p *qspinbox) Suffix() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QSpinBox_Suffix(p.Pointer())) -} - -func (p *qspinbox) Value() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QSpinBox_Value(p.Pointer())) -} - -func (p *qspinbox) ConnectSlotSetValue() { - C.QSpinBox_ConnectSlotSetValue(p.Pointer()) -} - -func (p *qspinbox) DisconnectSlotSetValue() { - C.QSpinBox_DisconnectSlotSetValue(p.Pointer()) -} - -func (p *qspinbox) SlotSetValue(val int) { - if p.Pointer() != nil { - C.QSpinBox_SetValue_Int(p.Pointer(), C.int(val)) - } -} diff --git a/qspinbox.h b/qspinbox.h deleted file mode 100644 index ae2ab245..00000000 --- a/qspinbox.h +++ /dev/null @@ -1,32 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QSpinBox_New_QWidget(QtObjectPtr parent); -void QSpinBox_Destroy(QtObjectPtr ptr); -char* QSpinBox_CleanText(QtObjectPtr ptr); -int QSpinBox_DisplayIntegerBase(QtObjectPtr ptr); -int QSpinBox_Maximum(QtObjectPtr ptr); -int QSpinBox_Minimum(QtObjectPtr ptr); -char* QSpinBox_Prefix(QtObjectPtr ptr); -void QSpinBox_SetDisplayIntegerBase_Int(QtObjectPtr ptr, int base); -void QSpinBox_SetMaximum_Int(QtObjectPtr ptr, int max); -void QSpinBox_SetMinimum_Int(QtObjectPtr ptr, int min); -void QSpinBox_SetPrefix_String(QtObjectPtr ptr, char* prefix); -void QSpinBox_SetRange_Int_Int(QtObjectPtr ptr, int minimum, int maximum); -void QSpinBox_SetSingleStep_Int(QtObjectPtr ptr, int val); -void QSpinBox_SetSuffix_String(QtObjectPtr ptr, char* suffix); -int QSpinBox_SingleStep(QtObjectPtr ptr); -char* QSpinBox_Suffix(QtObjectPtr ptr); -int QSpinBox_Value(QtObjectPtr ptr); -//Public Slots -void QSpinBox_ConnectSlotSetValue(QtObjectPtr ptr); -void QSpinBox_DisconnectSlotSetValue(QtObjectPtr ptr); -void QSpinBox_SetValue_Int(QtObjectPtr ptr, int val); - -#ifdef __cplusplus -} -#endif diff --git a/qspinbox.moc b/qspinbox.moc deleted file mode 100644 index bc93a079..00000000 --- a/qspinbox.moc +++ /dev/null @@ -1,125 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qspinbox.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qspinbox.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQSpinBox_t { - QByteArrayData data[4]; - char stringdata[30]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQSpinBox_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQSpinBox_t qt_meta_stringdata_MyQSpinBox = { - { -QT_MOC_LITERAL(0, 0, 10), // "MyQSpinBox" -QT_MOC_LITERAL(1, 11, 13), // "Slot_SetValue" -QT_MOC_LITERAL(2, 25, 0), // "" -QT_MOC_LITERAL(3, 26, 3) // "val" - - }, - "MyQSpinBox\0Slot_SetValue\0\0val" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQSpinBox[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 1, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 19, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, QMetaType::Int, 3, - - 0 // eod -}; - -void MyQSpinBox::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQSpinBox *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_SetValue((*reinterpret_cast< int(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQSpinBox::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQSpinBox::Slot_SetValue)) { - *result = 0; - } - } - } -} - -const QMetaObject MyQSpinBox::staticMetaObject = { - { &QSpinBox::staticMetaObject, qt_meta_stringdata_MyQSpinBox.data, - qt_meta_data_MyQSpinBox, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQSpinBox::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQSpinBox::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQSpinBox.stringdata)) - return static_cast(const_cast< MyQSpinBox*>(this)); - return QSpinBox::qt_metacast(_clname); -} - -int MyQSpinBox::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QSpinBox::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 1) - qt_static_metacall(this, _c, _id, _a); - _id -= 1; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 1) - *reinterpret_cast(_a[0]) = -1; - _id -= 1; - } - return _id; -} - -// SIGNAL 0 -void MyQSpinBox::Slot_SetValue(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -QT_END_MOC_NAMESPACE diff --git a/qstackedlayout.cpp b/qstackedlayout.cpp deleted file mode 100644 index 9fb6e6db..00000000 --- a/qstackedlayout.cpp +++ /dev/null @@ -1,96 +0,0 @@ -#include "qstackedlayout.h" -#include -#include "cgoexport.h" - -//MyQStackedLayout -class MyQStackedLayout: public QStackedLayout { -Q_OBJECT -public: -void Signal_CurrentChanged() { callbackQStackedLayout(this, QString("currentChanged").toUtf8().data()); }; -void Signal_WidgetRemoved() { callbackQStackedLayout(this, QString("widgetRemoved").toUtf8().data()); }; - -signals: -void Slot_SetCurrentIndex(int index); - -}; -#include "qstackedlayout.moc" - - -//Public Functions -QtObjectPtr QStackedLayout_New() -{ - return new QStackedLayout(); -} - -QtObjectPtr QStackedLayout_New_QWidget(QtObjectPtr parent) -{ - return new QStackedLayout(((QWidget*)(parent))); -} - -QtObjectPtr QStackedLayout_New_QLayout(QtObjectPtr parentLayout) -{ - return new QStackedLayout(((QLayout*)(parentLayout))); -} - -void QStackedLayout_Destroy(QtObjectPtr ptr) -{ - ((QStackedLayout*)(ptr))->~QStackedLayout(); -} - -int QStackedLayout_CurrentIndex(QtObjectPtr ptr) -{ - return ((QStackedLayout*)(ptr))->currentIndex(); -} - -QtObjectPtr QStackedLayout_CurrentWidget(QtObjectPtr ptr) -{ - return ((QStackedLayout*)(ptr))->currentWidget(); -} - -int QStackedLayout_InsertWidget_Int_QWidget(QtObjectPtr ptr, int index, QtObjectPtr widget) -{ - return ((QStackedLayout*)(ptr))->insertWidget(index, ((QWidget*)(widget))); -} - -QtObjectPtr QStackedLayout_Widget_Int(QtObjectPtr ptr, int index) -{ - return ((QStackedLayout*)(ptr))->widget(index); -} - -//Public Slots -void QStackedLayout_ConnectSlotSetCurrentIndex(QtObjectPtr ptr) -{ - QObject::connect(((MyQStackedLayout*)(ptr)), &MyQStackedLayout::Slot_SetCurrentIndex, ((QStackedLayout*)(ptr)), &QStackedLayout::setCurrentIndex, Qt::QueuedConnection); -} - -void QStackedLayout_DisconnectSlotSetCurrentIndex(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQStackedLayout*)(ptr)), &MyQStackedLayout::Slot_SetCurrentIndex, ((QStackedLayout*)(ptr)), &QStackedLayout::setCurrentIndex); -} - -void QStackedLayout_SetCurrentIndex_Int(QtObjectPtr ptr, int index) -{ - ((MyQStackedLayout*)(ptr))->Slot_SetCurrentIndex(index); -} - -//Signals -void QStackedLayout_ConnectSignalCurrentChanged(QtObjectPtr ptr) -{ - QObject::connect(((QStackedLayout*)(ptr)), &QStackedLayout::currentChanged, ((MyQStackedLayout*)(ptr)), &MyQStackedLayout::Signal_CurrentChanged, Qt::QueuedConnection); -} - -void QStackedLayout_DisconnectSignalCurrentChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QStackedLayout*)(ptr)), &QStackedLayout::currentChanged, ((MyQStackedLayout*)(ptr)), &MyQStackedLayout::Signal_CurrentChanged); -} - -void QStackedLayout_ConnectSignalWidgetRemoved(QtObjectPtr ptr) -{ - QObject::connect(((QStackedLayout*)(ptr)), &QStackedLayout::widgetRemoved, ((MyQStackedLayout*)(ptr)), &MyQStackedLayout::Signal_WidgetRemoved, Qt::QueuedConnection); -} - -void QStackedLayout_DisconnectSignalWidgetRemoved(QtObjectPtr ptr) -{ - QObject::disconnect(((QStackedLayout*)(ptr)), &QStackedLayout::widgetRemoved, ((MyQStackedLayout*)(ptr)), &MyQStackedLayout::Signal_WidgetRemoved); -} - diff --git a/qstackedlayout.go b/qstackedlayout.go deleted file mode 100644 index 92e1da02..00000000 --- a/qstackedlayout.go +++ /dev/null @@ -1,164 +0,0 @@ -package qt - -//#include "qstackedlayout.h" -import "C" - -type qstackedlayout struct { - qlayout -} - -type QStackedLayout interface { - QLayout - CurrentIndex() int - CurrentWidget() QWidget - InsertWidget(index int, widget QWidget) int - Widget(index int) QWidget - ConnectSlotSetCurrentIndex() - DisconnectSlotSetCurrentIndex() - SlotSetCurrentIndex(index int) - ConnectSignalCurrentChanged(f func()) - DisconnectSignalCurrentChanged() - SignalCurrentChanged() func() - ConnectSignalWidgetRemoved(f func()) - DisconnectSignalWidgetRemoved() - SignalWidgetRemoved() func() -} - -func (p *qstackedlayout) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qstackedlayout) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQStackedLayout1() QStackedLayout { - var qstackedlayout = new(qstackedlayout) - qstackedlayout.SetPointer(C.QStackedLayout_New()) - qstackedlayout.SetObjectName("QStackedLayout_" + randomIdentifier()) - return qstackedlayout -} - -func NewQStackedLayout2(parent QWidget) QStackedLayout { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qstackedlayout = new(qstackedlayout) - qstackedlayout.SetPointer(C.QStackedLayout_New_QWidget(parentPtr)) - qstackedlayout.SetObjectName("QStackedLayout_" + randomIdentifier()) - return qstackedlayout -} - -func NewQStackedLayout3(parentLayout QLayout) QStackedLayout { - var parentLayoutPtr C.QtObjectPtr - if parentLayout != nil { - parentLayoutPtr = parentLayout.Pointer() - } - var qstackedlayout = new(qstackedlayout) - qstackedlayout.SetPointer(C.QStackedLayout_New_QLayout(parentLayoutPtr)) - qstackedlayout.SetObjectName("QStackedLayout_" + randomIdentifier()) - return qstackedlayout -} - -func (p *qstackedlayout) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QStackedLayout_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qstackedlayout) CurrentIndex() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QStackedLayout_CurrentIndex(p.Pointer())) -} - -func (p *qstackedlayout) CurrentWidget() QWidget { - if p.Pointer() == nil { - return nil - } else { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QStackedLayout_CurrentWidget(p.Pointer())) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qstackedlayout) InsertWidget(index int, widget QWidget) int { - if p.Pointer() == nil { - return 0 - } else { - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - return int(C.QStackedLayout_InsertWidget_Int_QWidget(p.Pointer(), C.int(index), widgetPtr)) - } -} - -func (p *qstackedlayout) Widget(index int) QWidget { - if p.Pointer() == nil { - return nil - } else { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QStackedLayout_Widget_Int(p.Pointer(), C.int(index))) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qstackedlayout) ConnectSlotSetCurrentIndex() { - C.QStackedLayout_ConnectSlotSetCurrentIndex(p.Pointer()) -} - -func (p *qstackedlayout) DisconnectSlotSetCurrentIndex() { - C.QStackedLayout_DisconnectSlotSetCurrentIndex(p.Pointer()) -} - -func (p *qstackedlayout) SlotSetCurrentIndex(index int) { - if p.Pointer() != nil { - C.QStackedLayout_SetCurrentIndex_Int(p.Pointer(), C.int(index)) - } -} - -func (p *qstackedlayout) ConnectSignalCurrentChanged(f func()) { - C.QStackedLayout_ConnectSignalCurrentChanged(p.Pointer()) - connectSignal(p.ObjectName(), "currentChanged", f) -} - -func (p *qstackedlayout) DisconnectSignalCurrentChanged() { - C.QStackedLayout_DisconnectSignalCurrentChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "currentChanged") -} - -func (p *qstackedlayout) SignalCurrentChanged() func() { - return getSignal(p.ObjectName(), "currentChanged") -} - -func (p *qstackedlayout) ConnectSignalWidgetRemoved(f func()) { - C.QStackedLayout_ConnectSignalWidgetRemoved(p.Pointer()) - connectSignal(p.ObjectName(), "widgetRemoved", f) -} - -func (p *qstackedlayout) DisconnectSignalWidgetRemoved() { - C.QStackedLayout_DisconnectSignalWidgetRemoved(p.Pointer()) - disconnectSignal(p.ObjectName(), "widgetRemoved") -} - -func (p *qstackedlayout) SignalWidgetRemoved() func() { - return getSignal(p.ObjectName(), "widgetRemoved") -} - -//export callbackQStackedLayout -func callbackQStackedLayout(ptr C.QtObjectPtr, msg *C.char) { - var qstackedlayout = new(qstackedlayout) - qstackedlayout.SetPointer(ptr) - getSignal(qstackedlayout.ObjectName(), C.GoString(msg))() -} diff --git a/qstackedlayout.h b/qstackedlayout.h deleted file mode 100644 index 6c79a152..00000000 --- a/qstackedlayout.h +++ /dev/null @@ -1,28 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QStackedLayout_New(); -QtObjectPtr QStackedLayout_New_QWidget(QtObjectPtr parent); -QtObjectPtr QStackedLayout_New_QLayout(QtObjectPtr parentLayout); -void QStackedLayout_Destroy(QtObjectPtr ptr); -int QStackedLayout_CurrentIndex(QtObjectPtr ptr); -QtObjectPtr QStackedLayout_CurrentWidget(QtObjectPtr ptr); -int QStackedLayout_InsertWidget_Int_QWidget(QtObjectPtr ptr, int index, QtObjectPtr widget); -QtObjectPtr QStackedLayout_Widget_Int(QtObjectPtr ptr, int index); -//Public Slots -void QStackedLayout_ConnectSlotSetCurrentIndex(QtObjectPtr ptr); -void QStackedLayout_DisconnectSlotSetCurrentIndex(QtObjectPtr ptr); -void QStackedLayout_SetCurrentIndex_Int(QtObjectPtr ptr, int index); -//Signals -void QStackedLayout_ConnectSignalCurrentChanged(QtObjectPtr ptr); -void QStackedLayout_DisconnectSignalCurrentChanged(QtObjectPtr ptr); -void QStackedLayout_ConnectSignalWidgetRemoved(QtObjectPtr ptr); -void QStackedLayout_DisconnectSignalWidgetRemoved(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qstackedlayout.moc b/qstackedlayout.moc deleted file mode 100644 index 196ed023..00000000 --- a/qstackedlayout.moc +++ /dev/null @@ -1,126 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qstackedlayout.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qstackedlayout.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQStackedLayout_t { - QByteArrayData data[4]; - char stringdata[45]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQStackedLayout_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQStackedLayout_t qt_meta_stringdata_MyQStackedLayout = { - { -QT_MOC_LITERAL(0, 0, 16), // "MyQStackedLayout" -QT_MOC_LITERAL(1, 17, 20), // "Slot_SetCurrentIndex" -QT_MOC_LITERAL(2, 38, 0), // "" -QT_MOC_LITERAL(3, 39, 5) // "index" - - }, - "MyQStackedLayout\0Slot_SetCurrentIndex\0" - "\0index" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQStackedLayout[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 1, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 19, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, QMetaType::Int, 3, - - 0 // eod -}; - -void MyQStackedLayout::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQStackedLayout *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_SetCurrentIndex((*reinterpret_cast< int(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQStackedLayout::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQStackedLayout::Slot_SetCurrentIndex)) { - *result = 0; - } - } - } -} - -const QMetaObject MyQStackedLayout::staticMetaObject = { - { &QStackedLayout::staticMetaObject, qt_meta_stringdata_MyQStackedLayout.data, - qt_meta_data_MyQStackedLayout, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQStackedLayout::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQStackedLayout::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQStackedLayout.stringdata)) - return static_cast(const_cast< MyQStackedLayout*>(this)); - return QStackedLayout::qt_metacast(_clname); -} - -int MyQStackedLayout::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QStackedLayout::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 1) - qt_static_metacall(this, _c, _id, _a); - _id -= 1; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 1) - *reinterpret_cast(_a[0]) = -1; - _id -= 1; - } - return _id; -} - -// SIGNAL 0 -void MyQStackedLayout::Slot_SetCurrentIndex(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -QT_END_MOC_NAMESPACE diff --git a/qstatusbar.cpp b/qstatusbar.cpp deleted file mode 100644 index a2b9a084..00000000 --- a/qstatusbar.cpp +++ /dev/null @@ -1,95 +0,0 @@ -#include "qstatusbar.h" -#include -#include "cgoexport.h" - -//MyQStatusBar -class MyQStatusBar: public QStatusBar { -Q_OBJECT -public: -void Signal_MessageChanged() { callbackQStatusBar(this, QString("messageChanged").toUtf8().data()); }; - -signals: -void Slot_ClearMessage(); - -}; -#include "qstatusbar.moc" - - -//Public Functions -QtObjectPtr QStatusBar_New_QWidget(QtObjectPtr parent) -{ - return new QStatusBar(((QWidget*)(parent))); -} - -void QStatusBar_Destroy(QtObjectPtr ptr) -{ - ((QStatusBar*)(ptr))->~QStatusBar(); -} - -void QStatusBar_AddPermanentWidget_QWidget_Int(QtObjectPtr ptr, QtObjectPtr widget, int stretch) -{ - ((QStatusBar*)(ptr))->addPermanentWidget(((QWidget*)(widget)), stretch); -} - -void QStatusBar_AddWidget_QWidget_Int(QtObjectPtr ptr, QtObjectPtr widget, int stretch) -{ - ((QStatusBar*)(ptr))->addWidget(((QWidget*)(widget)), stretch); -} - -char* QStatusBar_CurrentMessage(QtObjectPtr ptr) -{ - return ((QStatusBar*)(ptr))->currentMessage().toUtf8().data(); -} - -int QStatusBar_InsertPermanentWidget_Int_QWidget_Int(QtObjectPtr ptr, int index, QtObjectPtr widget, int stretch) -{ - return ((QStatusBar*)(ptr))->insertPermanentWidget(index, ((QWidget*)(widget)), stretch); -} - -int QStatusBar_InsertWidget_Int_QWidget_Int(QtObjectPtr ptr, int index, QtObjectPtr widget, int stretch) -{ - return ((QStatusBar*)(ptr))->insertWidget(index, ((QWidget*)(widget)), stretch); -} - -int QStatusBar_IsSizeGripEnabled(QtObjectPtr ptr) -{ - return ((QStatusBar*)(ptr))->isSizeGripEnabled(); -} - -void QStatusBar_RemoveWidget_QWidget(QtObjectPtr ptr, QtObjectPtr widget) -{ - ((QStatusBar*)(ptr))->removeWidget(((QWidget*)(widget))); -} - -void QStatusBar_SetSizeGripEnabled_Bool(QtObjectPtr ptr, int enabled) -{ - ((QStatusBar*)(ptr))->setSizeGripEnabled(enabled != 0); -} - -//Public Slots -void QStatusBar_ConnectSlotClearMessage(QtObjectPtr ptr) -{ - QObject::connect(((MyQStatusBar*)(ptr)), &MyQStatusBar::Slot_ClearMessage, ((QStatusBar*)(ptr)), &QStatusBar::clearMessage, Qt::QueuedConnection); -} - -void QStatusBar_DisconnectSlotClearMessage(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQStatusBar*)(ptr)), &MyQStatusBar::Slot_ClearMessage, ((QStatusBar*)(ptr)), &QStatusBar::clearMessage); -} - -void QStatusBar_ClearMessage(QtObjectPtr ptr) -{ - ((MyQStatusBar*)(ptr))->Slot_ClearMessage(); -} - -//Signals -void QStatusBar_ConnectSignalMessageChanged(QtObjectPtr ptr) -{ - QObject::connect(((QStatusBar*)(ptr)), &QStatusBar::messageChanged, ((MyQStatusBar*)(ptr)), &MyQStatusBar::Signal_MessageChanged, Qt::QueuedConnection); -} - -void QStatusBar_DisconnectSignalMessageChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QStatusBar*)(ptr)), &QStatusBar::messageChanged, ((MyQStatusBar*)(ptr)), &MyQStatusBar::Signal_MessageChanged); -} - diff --git a/qstatusbar.go b/qstatusbar.go deleted file mode 100644 index 49d336ea..00000000 --- a/qstatusbar.go +++ /dev/null @@ -1,162 +0,0 @@ -package qt - -//#include "qstatusbar.h" -import "C" - -type qstatusbar struct { - qwidget -} - -type QStatusBar interface { - QWidget - AddPermanentWidget(widget QWidget, stretch int) - AddWidget(widget QWidget, stretch int) - CurrentMessage() string - InsertPermanentWidget(index int, widget QWidget, stretch int) int - InsertWidget(index int, widget QWidget, stretch int) int - IsSizeGripEnabled() bool - RemoveWidget(widget QWidget) - SetSizeGripEnabled(enabled bool) - ConnectSlotClearMessage() - DisconnectSlotClearMessage() - SlotClearMessage() - ConnectSignalMessageChanged(f func()) - DisconnectSignalMessageChanged() - SignalMessageChanged() func() -} - -func (p *qstatusbar) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qstatusbar) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQStatusBar(parent QWidget) QStatusBar { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qstatusbar = new(qstatusbar) - qstatusbar.SetPointer(C.QStatusBar_New_QWidget(parentPtr)) - qstatusbar.SetObjectName("QStatusBar_" + randomIdentifier()) - return qstatusbar -} - -func (p *qstatusbar) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QStatusBar_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qstatusbar) AddPermanentWidget(widget QWidget, stretch int) { - if p.Pointer() != nil { - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - C.QStatusBar_AddPermanentWidget_QWidget_Int(p.Pointer(), widgetPtr, C.int(stretch)) - } -} - -func (p *qstatusbar) AddWidget(widget QWidget, stretch int) { - if p.Pointer() != nil { - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - C.QStatusBar_AddWidget_QWidget_Int(p.Pointer(), widgetPtr, C.int(stretch)) - } -} - -func (p *qstatusbar) CurrentMessage() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QStatusBar_CurrentMessage(p.Pointer())) -} - -func (p *qstatusbar) InsertPermanentWidget(index int, widget QWidget, stretch int) int { - if p.Pointer() == nil { - return 0 - } else { - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - return int(C.QStatusBar_InsertPermanentWidget_Int_QWidget_Int(p.Pointer(), C.int(index), widgetPtr, C.int(stretch))) - } -} - -func (p *qstatusbar) InsertWidget(index int, widget QWidget, stretch int) int { - if p.Pointer() == nil { - return 0 - } else { - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - return int(C.QStatusBar_InsertWidget_Int_QWidget_Int(p.Pointer(), C.int(index), widgetPtr, C.int(stretch))) - } -} - -func (p *qstatusbar) IsSizeGripEnabled() bool { - if p.Pointer() == nil { - return false - } - return C.QStatusBar_IsSizeGripEnabled(p.Pointer()) != 0 -} - -func (p *qstatusbar) RemoveWidget(widget QWidget) { - if p.Pointer() != nil { - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - C.QStatusBar_RemoveWidget_QWidget(p.Pointer(), widgetPtr) - } -} - -func (p *qstatusbar) SetSizeGripEnabled(enabled bool) { - if p.Pointer() != nil { - C.QStatusBar_SetSizeGripEnabled_Bool(p.Pointer(), goBoolToCInt(enabled)) - } -} - -func (p *qstatusbar) ConnectSlotClearMessage() { - C.QStatusBar_ConnectSlotClearMessage(p.Pointer()) -} - -func (p *qstatusbar) DisconnectSlotClearMessage() { - C.QStatusBar_DisconnectSlotClearMessage(p.Pointer()) -} - -func (p *qstatusbar) SlotClearMessage() { - if p.Pointer() != nil { - C.QStatusBar_ClearMessage(p.Pointer()) - } -} - -func (p *qstatusbar) ConnectSignalMessageChanged(f func()) { - C.QStatusBar_ConnectSignalMessageChanged(p.Pointer()) - connectSignal(p.ObjectName(), "messageChanged", f) -} - -func (p *qstatusbar) DisconnectSignalMessageChanged() { - C.QStatusBar_DisconnectSignalMessageChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "messageChanged") -} - -func (p *qstatusbar) SignalMessageChanged() func() { - return getSignal(p.ObjectName(), "messageChanged") -} - -//export callbackQStatusBar -func callbackQStatusBar(ptr C.QtObjectPtr, msg *C.char) { - var qstatusbar = new(qstatusbar) - qstatusbar.SetPointer(ptr) - getSignal(qstatusbar.ObjectName(), C.GoString(msg))() -} diff --git a/qstatusbar.h b/qstatusbar.h deleted file mode 100644 index 28057213..00000000 --- a/qstatusbar.h +++ /dev/null @@ -1,28 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QStatusBar_New_QWidget(QtObjectPtr parent); -void QStatusBar_Destroy(QtObjectPtr ptr); -void QStatusBar_AddPermanentWidget_QWidget_Int(QtObjectPtr ptr, QtObjectPtr widget, int stretch); -void QStatusBar_AddWidget_QWidget_Int(QtObjectPtr ptr, QtObjectPtr widget, int stretch); -char* QStatusBar_CurrentMessage(QtObjectPtr ptr); -int QStatusBar_InsertPermanentWidget_Int_QWidget_Int(QtObjectPtr ptr, int index, QtObjectPtr widget, int stretch); -int QStatusBar_InsertWidget_Int_QWidget_Int(QtObjectPtr ptr, int index, QtObjectPtr widget, int stretch); -int QStatusBar_IsSizeGripEnabled(QtObjectPtr ptr); -void QStatusBar_RemoveWidget_QWidget(QtObjectPtr ptr, QtObjectPtr widget); -void QStatusBar_SetSizeGripEnabled_Bool(QtObjectPtr ptr, int enabled); -//Public Slots -void QStatusBar_ConnectSlotClearMessage(QtObjectPtr ptr); -void QStatusBar_DisconnectSlotClearMessage(QtObjectPtr ptr); -void QStatusBar_ClearMessage(QtObjectPtr ptr); -//Signals -void QStatusBar_ConnectSignalMessageChanged(QtObjectPtr ptr); -void QStatusBar_DisconnectSignalMessageChanged(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qstatusbar.moc b/qstatusbar.moc deleted file mode 100644 index 717dadf1..00000000 --- a/qstatusbar.moc +++ /dev/null @@ -1,124 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qstatusbar.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qstatusbar.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQStatusBar_t { - QByteArrayData data[3]; - char stringdata[32]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQStatusBar_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQStatusBar_t qt_meta_stringdata_MyQStatusBar = { - { -QT_MOC_LITERAL(0, 0, 12), // "MyQStatusBar" -QT_MOC_LITERAL(1, 13, 17), // "Slot_ClearMessage" -QT_MOC_LITERAL(2, 31, 0) // "" - - }, - "MyQStatusBar\0Slot_ClearMessage\0" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQStatusBar[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 1, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 0, 19, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, - - 0 // eod -}; - -void MyQStatusBar::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQStatusBar *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_ClearMessage(); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQStatusBar::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQStatusBar::Slot_ClearMessage)) { - *result = 0; - } - } - } - Q_UNUSED(_a); -} - -const QMetaObject MyQStatusBar::staticMetaObject = { - { &QStatusBar::staticMetaObject, qt_meta_stringdata_MyQStatusBar.data, - qt_meta_data_MyQStatusBar, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQStatusBar::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQStatusBar::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQStatusBar.stringdata)) - return static_cast(const_cast< MyQStatusBar*>(this)); - return QStatusBar::qt_metacast(_clname); -} - -int MyQStatusBar::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QStatusBar::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 1) - qt_static_metacall(this, _c, _id, _a); - _id -= 1; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 1) - *reinterpret_cast(_a[0]) = -1; - _id -= 1; - } - return _id; -} - -// SIGNAL 0 -void MyQStatusBar::Slot_ClearMessage() -{ - QMetaObject::activate(this, &staticMetaObject, 0, 0); -} -QT_END_MOC_NAMESPACE diff --git a/qt.cpp b/qt.cpp deleted file mode 100644 index 00cf63bd..00000000 --- a/qt.cpp +++ /dev/null @@ -1,1187 +0,0 @@ -#include "qt.h" -#include - -// AlignmentFlag -int Qt_AlignLeft() { return Qt::AlignLeft; } -int Qt_AlignRight() { return Qt::AlignRight; } -int Qt_AlignHCenter() { return Qt::AlignHCenter; } -int Qt_AlignJustify() { return Qt::AlignJustify; } -int Qt_AlignTop() { return Qt::AlignTop; } -int Qt_AlignBottom() { return Qt::AlignBottom; } -int Qt_AlignVCenter() { return Qt::AlignVCenter; } -int Qt_AlignBaseline() { return Qt::AlignBaseline; } -int Qt_AlignCenter() { return Qt::AlignCenter; } -int Qt_AlignAbsolute() { return Qt::AlignAbsolute; } -int Qt_AlignLeading() { return Qt::AlignLeading; } -int Qt_AlignTrailing() { return Qt::AlignTrailing; } -int Qt_AlignHorizontal_Mask() { return Qt::AlignHorizontal_Mask; } -int Qt_AlignVertical_Mask() { return Qt::AlignVertical_Mask; } - -// AnchorPoint -int Qt_AnchorLeft() { return Qt::AnchorLeft; } -int Qt_AnchorHorizontalCenter() { return Qt::AnchorHorizontalCenter; } -int Qt_AnchorRight() { return Qt::AnchorRight; } -int Qt_AnchorTop() { return Qt::AnchorTop; } -int Qt_AnchorVerticalCenter() { return Qt::AnchorVerticalCenter; } -int Qt_AnchorBottom() { return Qt::AnchorBottom; } - -// ApplicationAttribute -int Qt_AA_DontShowIconsInMenus() { return Qt::AA_DontShowIconsInMenus; } -int Qt_AA_NativeWindows() { return Qt::AA_NativeWindows; } -int Qt_AA_DontCreateNativeWidgetSiblings() { return Qt::AA_DontCreateNativeWidgetSiblings; } -int Qt_AA_MacPluginApplication() { return Qt::AA_MacPluginApplication; } -int Qt_AA_DontUseNativeMenuBar() { return Qt::AA_DontUseNativeMenuBar; } -int Qt_AA_MacDontSwapCtrlAndMeta() { return Qt::AA_MacDontSwapCtrlAndMeta; } -int Qt_AA_Use96Dpi() { return Qt::AA_Use96Dpi; } -int Qt_AA_X11InitThreads() { return Qt::AA_X11InitThreads; } -int Qt_AA_SynthesizeTouchForUnhandledMouseEvents() { return Qt::AA_SynthesizeTouchForUnhandledMouseEvents; } -int Qt_AA_SynthesizeMouseForUnhandledTouchEvents() { return Qt::AA_SynthesizeMouseForUnhandledTouchEvents; } -int Qt_AA_UseHighDpiPixmaps() { return Qt::AA_UseHighDpiPixmaps; } -int Qt_AA_ForceRasterWidgets() { return Qt::AA_ForceRasterWidgets; } -int Qt_AA_UseDesktopOpenGL() { return Qt::AA_UseDesktopOpenGL; } -int Qt_AA_UseOpenGLES() { return Qt::AA_UseOpenGLES; } -int Qt_AA_ImmediateWidgetCreation() { return Qt::AA_ImmediateWidgetCreation; } -int Qt_AA_MSWindowsUseDirect3DByDefault() { return Qt::AA_MSWindowsUseDirect3DByDefault; } - -// ApplicationState -int Qt_ApplicationSuspended() { return Qt::ApplicationSuspended; } -int Qt_ApplicationHidden() { return Qt::ApplicationHidden; } -int Qt_ApplicationInactive() { return Qt::ApplicationInactive; } -int Qt_ApplicationActive() { return Qt::ApplicationActive; } - -// ArrowType -int Qt_NoArrow() { return Qt::NoArrow; } -int Qt_UpArrow() { return Qt::UpArrow; } -int Qt_DownArrow() { return Qt::DownArrow; } -int Qt_LeftArrow() { return Qt::LeftArrow; } -int Qt_RightArrow() { return Qt::RightArrow; } - -// AspectRatioMode -int Qt_IgnoreAspectRatio() { return Qt::IgnoreAspectRatio; } -int Qt_KeepAspectRatio() { return Qt::KeepAspectRatio; } -int Qt_KeepAspectRatioByExpanding() { return Qt::KeepAspectRatioByExpanding; } - -// Axis -int Qt_XAxis() { return Qt::XAxis; } -int Qt_YAxis() { return Qt::YAxis; } -int Qt_ZAxis() { return Qt::ZAxis; } - -// BGMode -int Qt_TransparentMode() { return Qt::TransparentMode; } -int Qt_OpaqueMode() { return Qt::OpaqueMode; } - -// BrushStyle -int Qt_NoBrush() { return Qt::NoBrush; } -int Qt_SolidPattern() { return Qt::SolidPattern; } -int Qt_Dense1Pattern() { return Qt::Dense1Pattern; } -int Qt_Dense2Pattern() { return Qt::Dense2Pattern; } -int Qt_Dense3Pattern() { return Qt::Dense3Pattern; } -int Qt_Dense4Pattern() { return Qt::Dense4Pattern; } -int Qt_Dense5Pattern() { return Qt::Dense5Pattern; } -int Qt_Dense6Pattern() { return Qt::Dense6Pattern; } -int Qt_Dense7Pattern() { return Qt::Dense7Pattern; } -int Qt_HorPattern() { return Qt::HorPattern; } -int Qt_VerPattern() { return Qt::VerPattern; } -int Qt_CrossPattern() { return Qt::CrossPattern; } -int Qt_BDiagPattern() { return Qt::BDiagPattern; } -int Qt_FDiagPattern() { return Qt::FDiagPattern; } -int Qt_DiagCrossPattern() { return Qt::DiagCrossPattern; } -int Qt_LinearGradientPattern() { return Qt::LinearGradientPattern; } -int Qt_ConicalGradientPattern() { return Qt::ConicalGradientPattern; } -int Qt_RadialGradientPattern() { return Qt::RadialGradientPattern; } -int Qt_TexturePattern() { return Qt::TexturePattern; } - -// CaseSensitivity -int Qt_CaseInsensitive() { return Qt::CaseInsensitive; } -int Qt_CaseSensitive() { return Qt::CaseSensitive; } - -// CheckState -int Qt_Unchecked() { return Qt::Unchecked; } -int Qt_PartiallyChecked() { return Qt::PartiallyChecked; } -int Qt_Checked() { return Qt::Checked; } - -// ClipOperation -int Qt_NoClip() { return Qt::NoClip; } -int Qt_ReplaceClip() { return Qt::ReplaceClip; } -int Qt_IntersectClip() { return Qt::IntersectClip; } - -// ConnectionType -int Qt_AutoConnection() { return Qt::AutoConnection; } -int Qt_DirectConnection() { return Qt::DirectConnection; } -int Qt_QueuedConnection() { return Qt::QueuedConnection; } -int Qt_BlockingQueuedConnection() { return Qt::BlockingQueuedConnection; } -int Qt_UniqueConnection() { return Qt::UniqueConnection; } - -// ContextMenuPolicy -int Qt_NoContextMenu() { return Qt::NoContextMenu; } -int Qt_PreventContextMenu() { return Qt::PreventContextMenu; } -int Qt_DefaultContextMenu() { return Qt::DefaultContextMenu; } -int Qt_ActionsContextMenu() { return Qt::ActionsContextMenu; } -int Qt_CustomContextMenu() { return Qt::CustomContextMenu; } - -// CoordinateSystem -int Qt_DeviceCoordinates() { return Qt::DeviceCoordinates; } -int Qt_LogicalCoordinates() { return Qt::LogicalCoordinates; } - -// Corner -int Qt_TopLeftCorner() { return Qt::TopLeftCorner; } -int Qt_TopRightCorner() { return Qt::TopRightCorner; } -int Qt_BottomLeftCorner() { return Qt::BottomLeftCorner; } -int Qt_BottomRightCorner() { return Qt::BottomRightCorner; } - -// CursorMoveStyle -int Qt_LogicalMoveStyle() { return Qt::LogicalMoveStyle; } -int Qt_VisualMoveStyle() { return Qt::VisualMoveStyle; } - -// CursorShape -int Qt_ArrowCursor() { return Qt::ArrowCursor; } -int Qt_UpArrowCursor() { return Qt::UpArrowCursor; } -int Qt_CrossCursor() { return Qt::CrossCursor; } -int Qt_WaitCursor() { return Qt::WaitCursor; } -int Qt_IBeamCursor() { return Qt::IBeamCursor; } -int Qt_SizeVerCursor() { return Qt::SizeVerCursor; } -int Qt_SizeHorCursor() { return Qt::SizeHorCursor; } -int Qt_SizeBDiagCursor() { return Qt::SizeBDiagCursor; } -int Qt_SizeFDiagCursor() { return Qt::SizeFDiagCursor; } -int Qt_SizeAllCursor() { return Qt::SizeAllCursor; } -int Qt_BlankCursor() { return Qt::BlankCursor; } -int Qt_SplitVCursor() { return Qt::SplitVCursor; } -int Qt_SplitHCursor() { return Qt::SplitHCursor; } -int Qt_PointingHandCursor() { return Qt::PointingHandCursor; } -int Qt_ForbiddenCursor() { return Qt::ForbiddenCursor; } -int Qt_OpenHandCursor() { return Qt::OpenHandCursor; } -int Qt_ClosedHandCursor() { return Qt::ClosedHandCursor; } -int Qt_WhatsThisCursor() { return Qt::WhatsThisCursor; } -int Qt_BusyCursor() { return Qt::BusyCursor; } -int Qt_DragMoveCursor() { return Qt::DragMoveCursor; } -int Qt_DragCopyCursor() { return Qt::DragCopyCursor; } -int Qt_DragLinkCursor() { return Qt::DragLinkCursor; } -int Qt_BitmapCursor() { return Qt::BitmapCursor; } - -// DateFormat -int Qt_TextDate() { return Qt::TextDate; } -int Qt_ISODate() { return Qt::ISODate; } -int Qt_SystemLocaleShortDate() { return Qt::SystemLocaleShortDate; } -int Qt_SystemLocaleLongDate() { return Qt::SystemLocaleLongDate; } -int Qt_DefaultLocaleShortDate() { return Qt::DefaultLocaleShortDate; } -int Qt_DefaultLocaleLongDate() { return Qt::DefaultLocaleLongDate; } -int Qt_SystemLocaleDate() { return Qt::SystemLocaleDate; } -int Qt_LocaleDate() { return Qt::LocaleDate; } -int Qt_LocalDate() { return Qt::LocalDate; } -int Qt_RFC2822Date() { return Qt::RFC2822Date; } - -// DayOfWeek -int Qt_Monday() { return Qt::Monday; } -int Qt_Tuesday() { return Qt::Tuesday; } -int Qt_Wednesday() { return Qt::Wednesday; } -int Qt_Thursday() { return Qt::Thursday; } -int Qt_Friday() { return Qt::Friday; } -int Qt_Saturday() { return Qt::Saturday; } -int Qt_Sunday() { return Qt::Sunday; } - -// DockWidgetArea -int Qt_LeftDockWidgetArea() { return Qt::LeftDockWidgetArea; } -int Qt_RightDockWidgetArea() { return Qt::RightDockWidgetArea; } -int Qt_TopDockWidgetArea() { return Qt::TopDockWidgetArea; } -int Qt_BottomDockWidgetArea() { return Qt::BottomDockWidgetArea; } -int Qt_AllDockWidgetAreas() { return Qt::AllDockWidgetAreas; } -int Qt_NoDockWidgetArea() { return Qt::NoDockWidgetArea; } - -// DropAction -int Qt_CopyAction() { return Qt::CopyAction; } -int Qt_MoveAction() { return Qt::MoveAction; } -int Qt_LinkAction() { return Qt::LinkAction; } -int Qt_ActionMask() { return Qt::ActionMask; } -int Qt_IgnoreAction() { return Qt::IgnoreAction; } -int Qt_TargetMoveAction() { return Qt::TargetMoveAction; } - -// Edge -int Qt_TopEdge() { return Qt::TopEdge; } -int Qt_LeftEdge() { return Qt::LeftEdge; } -int Qt_RightEdge() { return Qt::RightEdge; } -int Qt_BottomEdge() { return Qt::BottomEdge; } - -// EventPriority -int Qt_HighEventPriority() { return Qt::HighEventPriority; } -int Qt_NormalEventPriority() { return Qt::NormalEventPriority; } -int Qt_LowEventPriority() { return Qt::LowEventPriority; } - -// FillRule -int Qt_OddEvenFill() { return Qt::OddEvenFill; } -int Qt_WindingFill() { return Qt::WindingFill; } - -// FindChildOption -int Qt_FindDirectChildrenOnly() { return Qt::FindDirectChildrenOnly; } -int Qt_FindChildrenRecursively() { return Qt::FindChildrenRecursively; } - -// FocusPolicy -int Qt_TabFocus() { return Qt::TabFocus; } -int Qt_ClickFocus() { return Qt::ClickFocus; } -int Qt_StrongFocus() { return Qt::StrongFocus; } -int Qt_WheelFocus() { return Qt::WheelFocus; } -int Qt_NoFocus() { return Qt::NoFocus; } - -// FocusReason -int Qt_MouseFocusReason() { return Qt::MouseFocusReason; } -int Qt_TabFocusReason() { return Qt::TabFocusReason; } -int Qt_BacktabFocusReason() { return Qt::BacktabFocusReason; } -int Qt_ActiveWindowFocusReason() { return Qt::ActiveWindowFocusReason; } -int Qt_PopupFocusReason() { return Qt::PopupFocusReason; } -int Qt_ShortcutFocusReason() { return Qt::ShortcutFocusReason; } -int Qt_MenuBarFocusReason() { return Qt::MenuBarFocusReason; } -int Qt_OtherFocusReason() { return Qt::OtherFocusReason; } - -// GestureFlag -int Qt_DontStartGestureOnChildren() { return Qt::DontStartGestureOnChildren; } -int Qt_ReceivePartialGestures() { return Qt::ReceivePartialGestures; } -int Qt_IgnoredGesturesPropagateToParent() { return Qt::IgnoredGesturesPropagateToParent; } - -// GestureState -int Qt_GestureStarted() { return Qt::GestureStarted; } -int Qt_GestureUpdated() { return Qt::GestureUpdated; } -int Qt_GestureFinished() { return Qt::GestureFinished; } -int Qt_GestureCanceled() { return Qt::GestureCanceled; } - -// GestureType -int Qt_TapGesture() { return Qt::TapGesture; } -int Qt_TapAndHoldGesture() { return Qt::TapAndHoldGesture; } -int Qt_PanGesture() { return Qt::PanGesture; } -int Qt_PinchGesture() { return Qt::PinchGesture; } -int Qt_SwipeGesture() { return Qt::SwipeGesture; } -int Qt_CustomGesture() { return Qt::CustomGesture; } - -// GlobalColor -int Qt_white() { return Qt::white; } -int Qt_black() { return Qt::black; } -int Qt_red() { return Qt::red; } -int Qt_darkRed() { return Qt::darkRed; } -int Qt_green() { return Qt::green; } -int Qt_darkGreen() { return Qt::darkGreen; } -int Qt_blue() { return Qt::blue; } -int Qt_darkBlue() { return Qt::darkBlue; } -int Qt_cyan() { return Qt::cyan; } -int Qt_darkCyan() { return Qt::darkCyan; } -int Qt_magenta() { return Qt::magenta; } -int Qt_darkMagenta() { return Qt::darkMagenta; } -int Qt_yellow() { return Qt::yellow; } -int Qt_darkYellow() { return Qt::darkYellow; } -int Qt_gray() { return Qt::gray; } -int Qt_darkGray() { return Qt::darkGray; } -int Qt_lightGray() { return Qt::lightGray; } -int Qt_transparent() { return Qt::transparent; } -int Qt_color0() { return Qt::color0; } -int Qt_color1() { return Qt::color1; } - -// HitTestAccuracy -int Qt_ExactHit() { return Qt::ExactHit; } -int Qt_FuzzyHit() { return Qt::FuzzyHit; } - -// ImageConversionFlag -int Qt_AutoColor() { return Qt::AutoColor; } -int Qt_ColorOnly() { return Qt::ColorOnly; } -int Qt_MonoOnly() { return Qt::MonoOnly; } -int Qt_DiffuseDither() { return Qt::DiffuseDither; } -int Qt_OrderedDither() { return Qt::OrderedDither; } -int Qt_ThresholdDither() { return Qt::ThresholdDither; } -int Qt_ThresholdAlphaDither() { return Qt::ThresholdAlphaDither; } -int Qt_OrderedAlphaDither() { return Qt::OrderedAlphaDither; } -int Qt_DiffuseAlphaDither() { return Qt::DiffuseAlphaDither; } -int Qt_PreferDither() { return Qt::PreferDither; } -int Qt_AvoidDither() { return Qt::AvoidDither; } -int Qt_NoOpaqueDetection() { return Qt::NoOpaqueDetection; } -int Qt_NoFormatConversion() { return Qt::NoFormatConversion; } - -// InputMethodHint -int Qt_ImhNone() { return Qt::ImhNone; } -int Qt_ImhHiddenText() { return Qt::ImhHiddenText; } -int Qt_ImhSensitiveData() { return Qt::ImhSensitiveData; } -int Qt_ImhNoAutoUppercase() { return Qt::ImhNoAutoUppercase; } -int Qt_ImhPreferNumbers() { return Qt::ImhPreferNumbers; } -int Qt_ImhPreferUppercase() { return Qt::ImhPreferUppercase; } -int Qt_ImhPreferLowercase() { return Qt::ImhPreferLowercase; } -int Qt_ImhNoPredictiveText() { return Qt::ImhNoPredictiveText; } -int Qt_ImhDate() { return Qt::ImhDate; } -int Qt_ImhTime() { return Qt::ImhTime; } -int Qt_ImhPreferLatin() { return Qt::ImhPreferLatin; } -int Qt_ImhMultiLine() { return Qt::ImhMultiLine; } -int Qt_ImhDigitsOnly() { return Qt::ImhDigitsOnly; } -int Qt_ImhFormattedNumbersOnly() { return Qt::ImhFormattedNumbersOnly; } -int Qt_ImhUppercaseOnly() { return Qt::ImhUppercaseOnly; } -int Qt_ImhLowercaseOnly() { return Qt::ImhLowercaseOnly; } -int Qt_ImhDialableCharactersOnly() { return Qt::ImhDialableCharactersOnly; } -int Qt_ImhEmailCharactersOnly() { return Qt::ImhEmailCharactersOnly; } -int Qt_ImhUrlCharactersOnly() { return Qt::ImhUrlCharactersOnly; } -int Qt_ImhLatinOnly() { return Qt::ImhLatinOnly; } -int Qt_ImhExclusiveInputMask() { return Qt::ImhExclusiveInputMask; } - -// InputMethodQuery -int Qt_ImEnabled() { return Qt::ImEnabled; } -int Qt_ImMicroFocus() { return Qt::ImMicroFocus; } -int Qt_ImCursorRectangle() { return Qt::ImCursorRectangle; } -int Qt_ImFont() { return Qt::ImFont; } -int Qt_ImCursorPosition() { return Qt::ImCursorPosition; } -int Qt_ImSurroundingText() { return Qt::ImSurroundingText; } -int Qt_ImCurrentSelection() { return Qt::ImCurrentSelection; } -int Qt_ImMaximumTextLength() { return Qt::ImMaximumTextLength; } -int Qt_ImAnchorPosition() { return Qt::ImAnchorPosition; } -int Qt_ImHints() { return Qt::ImHints; } -int Qt_ImPreferredLanguage() { return Qt::ImPreferredLanguage; } -int Qt_ImPlatformData() { return Qt::ImPlatformData; } -int Qt_ImAbsolutePosition() { return Qt::ImAbsolutePosition; } -int Qt_ImTextBeforeCursor() { return Qt::ImTextBeforeCursor; } -int Qt_ImTextAfterCursor() { return Qt::ImTextAfterCursor; } -int Qt_ImQueryInput() { return Qt::ImQueryInput; } -int Qt_ImQueryAll() { return Qt::ImQueryAll; } - -// ItemDataRole -int Qt_DisplayRole() { return Qt::DisplayRole; } -int Qt_DecorationRole() { return Qt::DecorationRole; } -int Qt_EditRole() { return Qt::EditRole; } -int Qt_ToolTipRole() { return Qt::ToolTipRole; } -int Qt_StatusTipRole() { return Qt::StatusTipRole; } -int Qt_WhatsThisRole() { return Qt::WhatsThisRole; } -int Qt_SizeHintRole() { return Qt::SizeHintRole; } -int Qt_FontRole() { return Qt::FontRole; } -int Qt_TextAlignmentRole() { return Qt::TextAlignmentRole; } -int Qt_BackgroundRole() { return Qt::BackgroundRole; } -int Qt_BackgroundColorRole() { return Qt::BackgroundColorRole; } -int Qt_ForegroundRole() { return Qt::ForegroundRole; } -int Qt_TextColorRole() { return Qt::TextColorRole; } -int Qt_CheckStateRole() { return Qt::CheckStateRole; } -int Qt_InitialSortOrderRole() { return Qt::InitialSortOrderRole; } -int Qt_AccessibleTextRole() { return Qt::AccessibleTextRole; } -int Qt_AccessibleDescriptionRole() { return Qt::AccessibleDescriptionRole; } -int Qt_UserRole() { return Qt::UserRole; } - -// ItemFlag -int Qt_NoItemFlags() { return Qt::NoItemFlags; } -int Qt_ItemIsSelectable() { return Qt::ItemIsSelectable; } -int Qt_ItemIsEditable() { return Qt::ItemIsEditable; } -int Qt_ItemIsDragEnabled() { return Qt::ItemIsDragEnabled; } -int Qt_ItemIsDropEnabled() { return Qt::ItemIsDropEnabled; } -int Qt_ItemIsUserCheckable() { return Qt::ItemIsUserCheckable; } -int Qt_ItemIsEnabled() { return Qt::ItemIsEnabled; } -int Qt_ItemIsTristate() { return Qt::ItemIsTristate; } -int Qt_ItemNeverHasChildren() { return Qt::ItemNeverHasChildren; } - -// ItemSelectionMode -int Qt_ContainsItemShape() { return Qt::ContainsItemShape; } -int Qt_IntersectsItemShape() { return Qt::IntersectsItemShape; } -int Qt_ContainsItemBoundingRect() { return Qt::ContainsItemBoundingRect; } -int Qt_IntersectsItemBoundingRect() { return Qt::IntersectsItemBoundingRect; } - -// Key -int Qt_Key_Escape() { return Qt::Key_Escape; } -int Qt_Key_Tab() { return Qt::Key_Tab; } -int Qt_Key_Backtab() { return Qt::Key_Backtab; } -int Qt_Key_Backspace() { return Qt::Key_Backspace; } -int Qt_Key_Return() { return Qt::Key_Return; } -int Qt_Key_Enter() { return Qt::Key_Enter; } -int Qt_Key_Insert() { return Qt::Key_Insert; } -int Qt_Key_Delete() { return Qt::Key_Delete; } -int Qt_Key_Pause() { return Qt::Key_Pause; } -int Qt_Key_Print() { return Qt::Key_Print; } -int Qt_Key_SysReq() { return Qt::Key_SysReq; } -int Qt_Key_Clear() { return Qt::Key_Clear; } -int Qt_Key_Home() { return Qt::Key_Home; } -int Qt_Key_End() { return Qt::Key_End; } -int Qt_Key_Left() { return Qt::Key_Left; } -int Qt_Key_Up() { return Qt::Key_Up; } -int Qt_Key_Right() { return Qt::Key_Right; } -int Qt_Key_Down() { return Qt::Key_Down; } -int Qt_Key_PageUp() { return Qt::Key_PageUp; } -int Qt_Key_PageDown() { return Qt::Key_PageDown; } -int Qt_Key_Shift() { return Qt::Key_Shift; } -int Qt_Key_Control() { return Qt::Key_Control; } -int Qt_Key_Meta() { return Qt::Key_Meta; } -int Qt_Key_Alt() { return Qt::Key_Alt; } -int Qt_Key_AltGr() { return Qt::Key_AltGr; } -int Qt_Key_CapsLock() { return Qt::Key_CapsLock; } -int Qt_Key_NumLock() { return Qt::Key_NumLock; } -int Qt_Key_ScrollLock() { return Qt::Key_ScrollLock; } -int Qt_Key_F1() { return Qt::Key_F1; } -int Qt_Key_F2() { return Qt::Key_F2; } -int Qt_Key_F3() { return Qt::Key_F3; } -int Qt_Key_F4() { return Qt::Key_F4; } -int Qt_Key_F5() { return Qt::Key_F5; } -int Qt_Key_F6() { return Qt::Key_F6; } -int Qt_Key_F7() { return Qt::Key_F7; } -int Qt_Key_F8() { return Qt::Key_F8; } -int Qt_Key_F9() { return Qt::Key_F9; } -int Qt_Key_F10() { return Qt::Key_F10; } -int Qt_Key_F11() { return Qt::Key_F11; } -int Qt_Key_F12() { return Qt::Key_F12; } -int Qt_Key_F13() { return Qt::Key_F13; } -int Qt_Key_F14() { return Qt::Key_F14; } -int Qt_Key_F15() { return Qt::Key_F15; } -int Qt_Key_F16() { return Qt::Key_F16; } -int Qt_Key_F17() { return Qt::Key_F17; } -int Qt_Key_F18() { return Qt::Key_F18; } -int Qt_Key_F19() { return Qt::Key_F19; } -int Qt_Key_F20() { return Qt::Key_F20; } -int Qt_Key_F21() { return Qt::Key_F21; } -int Qt_Key_F22() { return Qt::Key_F22; } -int Qt_Key_F23() { return Qt::Key_F23; } -int Qt_Key_F24() { return Qt::Key_F24; } -int Qt_Key_F25() { return Qt::Key_F25; } -int Qt_Key_F26() { return Qt::Key_F26; } -int Qt_Key_F27() { return Qt::Key_F27; } -int Qt_Key_F28() { return Qt::Key_F28; } -int Qt_Key_F29() { return Qt::Key_F29; } -int Qt_Key_F30() { return Qt::Key_F30; } -int Qt_Key_F31() { return Qt::Key_F31; } -int Qt_Key_F32() { return Qt::Key_F32; } -int Qt_Key_F33() { return Qt::Key_F33; } -int Qt_Key_F34() { return Qt::Key_F34; } -int Qt_Key_F35() { return Qt::Key_F35; } -int Qt_Key_Super_L() { return Qt::Key_Super_L; } -int Qt_Key_Super_R() { return Qt::Key_Super_R; } -int Qt_Key_Menu() { return Qt::Key_Menu; } -int Qt_Key_Hyper_L() { return Qt::Key_Hyper_L; } -int Qt_Key_Hyper_R() { return Qt::Key_Hyper_R; } -int Qt_Key_Help() { return Qt::Key_Help; } -int Qt_Key_Direction_L() { return Qt::Key_Direction_L; } -int Qt_Key_Direction_R() { return Qt::Key_Direction_R; } -int Qt_Key_Space() { return Qt::Key_Space; } -int Qt_Key_Any() { return Qt::Key_Any; } -int Qt_Key_Exclam() { return Qt::Key_Exclam; } -int Qt_Key_QuoteDbl() { return Qt::Key_QuoteDbl; } -int Qt_Key_NumberSign() { return Qt::Key_NumberSign; } -int Qt_Key_Dollar() { return Qt::Key_Dollar; } -int Qt_Key_Percent() { return Qt::Key_Percent; } -int Qt_Key_Ampersand() { return Qt::Key_Ampersand; } -int Qt_Key_Apostrophe() { return Qt::Key_Apostrophe; } -int Qt_Key_ParenLeft() { return Qt::Key_ParenLeft; } -int Qt_Key_ParenRight() { return Qt::Key_ParenRight; } -int Qt_Key_Asterisk() { return Qt::Key_Asterisk; } -int Qt_Key_Plus() { return Qt::Key_Plus; } -int Qt_Key_Comma() { return Qt::Key_Comma; } -int Qt_Key_Minus() { return Qt::Key_Minus; } -int Qt_Key_Period() { return Qt::Key_Period; } -int Qt_Key_Slash() { return Qt::Key_Slash; } -int Qt_Key_0() { return Qt::Key_0; } -int Qt_Key_1() { return Qt::Key_1; } -int Qt_Key_2() { return Qt::Key_2; } -int Qt_Key_3() { return Qt::Key_3; } -int Qt_Key_4() { return Qt::Key_4; } -int Qt_Key_5() { return Qt::Key_5; } -int Qt_Key_6() { return Qt::Key_6; } -int Qt_Key_7() { return Qt::Key_7; } -int Qt_Key_8() { return Qt::Key_8; } -int Qt_Key_9() { return Qt::Key_9; } -int Qt_Key_Colon() { return Qt::Key_Colon; } -int Qt_Key_Semicolon() { return Qt::Key_Semicolon; } -int Qt_Key_Less() { return Qt::Key_Less; } -int Qt_Key_Equal() { return Qt::Key_Equal; } -int Qt_Key_Greater() { return Qt::Key_Greater; } -int Qt_Key_Question() { return Qt::Key_Question; } -int Qt_Key_At() { return Qt::Key_At; } -int Qt_Key_A() { return Qt::Key_A; } -int Qt_Key_B() { return Qt::Key_B; } -int Qt_Key_C() { return Qt::Key_C; } -int Qt_Key_D() { return Qt::Key_D; } -int Qt_Key_E() { return Qt::Key_E; } -int Qt_Key_F() { return Qt::Key_F; } -int Qt_Key_G() { return Qt::Key_G; } -int Qt_Key_H() { return Qt::Key_H; } -int Qt_Key_I() { return Qt::Key_I; } -int Qt_Key_J() { return Qt::Key_J; } -int Qt_Key_K() { return Qt::Key_K; } -int Qt_Key_L() { return Qt::Key_L; } -int Qt_Key_M() { return Qt::Key_M; } -int Qt_Key_N() { return Qt::Key_N; } -int Qt_Key_O() { return Qt::Key_O; } -int Qt_Key_P() { return Qt::Key_P; } -int Qt_Key_Q() { return Qt::Key_Q; } -int Qt_Key_R() { return Qt::Key_R; } -int Qt_Key_S() { return Qt::Key_S; } -int Qt_Key_T() { return Qt::Key_T; } -int Qt_Key_U() { return Qt::Key_U; } -int Qt_Key_V() { return Qt::Key_V; } -int Qt_Key_W() { return Qt::Key_W; } -int Qt_Key_X() { return Qt::Key_X; } -int Qt_Key_Y() { return Qt::Key_Y; } -int Qt_Key_Z() { return Qt::Key_Z; } -int Qt_Key_BracketLeft() { return Qt::Key_BracketLeft; } -int Qt_Key_Backslash() { return Qt::Key_Backslash; } -int Qt_Key_BracketRight() { return Qt::Key_BracketRight; } -int Qt_Key_AsciiCircum() { return Qt::Key_AsciiCircum; } -int Qt_Key_Underscore() { return Qt::Key_Underscore; } -int Qt_Key_QuoteLeft() { return Qt::Key_QuoteLeft; } -int Qt_Key_BraceLeft() { return Qt::Key_BraceLeft; } -int Qt_Key_Bar() { return Qt::Key_Bar; } -int Qt_Key_BraceRight() { return Qt::Key_BraceRight; } -int Qt_Key_AsciiTilde() { return Qt::Key_AsciiTilde; } -int Qt_Key_nobreakspace() { return Qt::Key_nobreakspace; } -int Qt_Key_exclamdown() { return Qt::Key_exclamdown; } -int Qt_Key_cent() { return Qt::Key_cent; } -int Qt_Key_sterling() { return Qt::Key_sterling; } -int Qt_Key_currency() { return Qt::Key_currency; } -int Qt_Key_yen() { return Qt::Key_yen; } -int Qt_Key_brokenbar() { return Qt::Key_brokenbar; } -int Qt_Key_section() { return Qt::Key_section; } -int Qt_Key_diaeresis() { return Qt::Key_diaeresis; } -int Qt_Key_copyright() { return Qt::Key_copyright; } -int Qt_Key_ordfeminine() { return Qt::Key_ordfeminine; } -int Qt_Key_guillemotleft() { return Qt::Key_guillemotleft; } -int Qt_Key_notsign() { return Qt::Key_notsign; } -int Qt_Key_hyphen() { return Qt::Key_hyphen; } -int Qt_Key_registered() { return Qt::Key_registered; } -int Qt_Key_macron() { return Qt::Key_macron; } -int Qt_Key_degree() { return Qt::Key_degree; } -int Qt_Key_plusminus() { return Qt::Key_plusminus; } -int Qt_Key_twosuperior() { return Qt::Key_twosuperior; } -int Qt_Key_threesuperior() { return Qt::Key_threesuperior; } -int Qt_Key_acute() { return Qt::Key_acute; } -int Qt_Key_mu() { return Qt::Key_mu; } -int Qt_Key_paragraph() { return Qt::Key_paragraph; } -int Qt_Key_periodcentered() { return Qt::Key_periodcentered; } -int Qt_Key_cedilla() { return Qt::Key_cedilla; } -int Qt_Key_onesuperior() { return Qt::Key_onesuperior; } -int Qt_Key_masculine() { return Qt::Key_masculine; } -int Qt_Key_guillemotright() { return Qt::Key_guillemotright; } -int Qt_Key_onequarter() { return Qt::Key_onequarter; } -int Qt_Key_onehalf() { return Qt::Key_onehalf; } -int Qt_Key_threequarters() { return Qt::Key_threequarters; } -int Qt_Key_questiondown() { return Qt::Key_questiondown; } -int Qt_Key_Agrave() { return Qt::Key_Agrave; } -int Qt_Key_Aacute() { return Qt::Key_Aacute; } -int Qt_Key_Acircumflex() { return Qt::Key_Acircumflex; } -int Qt_Key_Atilde() { return Qt::Key_Atilde; } -int Qt_Key_Adiaeresis() { return Qt::Key_Adiaeresis; } -int Qt_Key_Aring() { return Qt::Key_Aring; } -int Qt_Key_AE() { return Qt::Key_AE; } -int Qt_Key_Ccedilla() { return Qt::Key_Ccedilla; } -int Qt_Key_Egrave() { return Qt::Key_Egrave; } -int Qt_Key_Eacute() { return Qt::Key_Eacute; } -int Qt_Key_Ecircumflex() { return Qt::Key_Ecircumflex; } -int Qt_Key_Ediaeresis() { return Qt::Key_Ediaeresis; } -int Qt_Key_Igrave() { return Qt::Key_Igrave; } -int Qt_Key_Iacute() { return Qt::Key_Iacute; } -int Qt_Key_Icircumflex() { return Qt::Key_Icircumflex; } -int Qt_Key_Idiaeresis() { return Qt::Key_Idiaeresis; } -int Qt_Key_ETH() { return Qt::Key_ETH; } -int Qt_Key_Ntilde() { return Qt::Key_Ntilde; } -int Qt_Key_Ograve() { return Qt::Key_Ograve; } -int Qt_Key_Oacute() { return Qt::Key_Oacute; } -int Qt_Key_Ocircumflex() { return Qt::Key_Ocircumflex; } -int Qt_Key_Otilde() { return Qt::Key_Otilde; } -int Qt_Key_Odiaeresis() { return Qt::Key_Odiaeresis; } -int Qt_Key_multiply() { return Qt::Key_multiply; } -int Qt_Key_Ooblique() { return Qt::Key_Ooblique; } -int Qt_Key_Ugrave() { return Qt::Key_Ugrave; } -int Qt_Key_Uacute() { return Qt::Key_Uacute; } -int Qt_Key_Ucircumflex() { return Qt::Key_Ucircumflex; } -int Qt_Key_Udiaeresis() { return Qt::Key_Udiaeresis; } -int Qt_Key_Yacute() { return Qt::Key_Yacute; } -int Qt_Key_THORN() { return Qt::Key_THORN; } -int Qt_Key_ssharp() { return Qt::Key_ssharp; } -int Qt_Key_division() { return Qt::Key_division; } -int Qt_Key_ydiaeresis() { return Qt::Key_ydiaeresis; } -int Qt_Key_Multi_key() { return Qt::Key_Multi_key; } -int Qt_Key_Codeinput() { return Qt::Key_Codeinput; } -int Qt_Key_SingleCandidate() { return Qt::Key_SingleCandidate; } -int Qt_Key_MultipleCandidate() { return Qt::Key_MultipleCandidate; } -int Qt_Key_PreviousCandidate() { return Qt::Key_PreviousCandidate; } -int Qt_Key_Mode_switch() { return Qt::Key_Mode_switch; } -int Qt_Key_Kanji() { return Qt::Key_Kanji; } -int Qt_Key_Muhenkan() { return Qt::Key_Muhenkan; } -int Qt_Key_Henkan() { return Qt::Key_Henkan; } -int Qt_Key_Romaji() { return Qt::Key_Romaji; } -int Qt_Key_Hiragana() { return Qt::Key_Hiragana; } -int Qt_Key_Katakana() { return Qt::Key_Katakana; } -int Qt_Key_Hiragana_Katakana() { return Qt::Key_Hiragana_Katakana; } -int Qt_Key_Zenkaku() { return Qt::Key_Zenkaku; } -int Qt_Key_Hankaku() { return Qt::Key_Hankaku; } -int Qt_Key_Zenkaku_Hankaku() { return Qt::Key_Zenkaku_Hankaku; } -int Qt_Key_Touroku() { return Qt::Key_Touroku; } -int Qt_Key_Massyo() { return Qt::Key_Massyo; } -int Qt_Key_Kana_Lock() { return Qt::Key_Kana_Lock; } -int Qt_Key_Kana_Shift() { return Qt::Key_Kana_Shift; } -int Qt_Key_Eisu_Shift() { return Qt::Key_Eisu_Shift; } -int Qt_Key_Eisu_toggle() { return Qt::Key_Eisu_toggle; } -int Qt_Key_Hangul() { return Qt::Key_Hangul; } -int Qt_Key_Hangul_Start() { return Qt::Key_Hangul_Start; } -int Qt_Key_Hangul_End() { return Qt::Key_Hangul_End; } -int Qt_Key_Hangul_Hanja() { return Qt::Key_Hangul_Hanja; } -int Qt_Key_Hangul_Jamo() { return Qt::Key_Hangul_Jamo; } -int Qt_Key_Hangul_Romaja() { return Qt::Key_Hangul_Romaja; } -int Qt_Key_Hangul_Jeonja() { return Qt::Key_Hangul_Jeonja; } -int Qt_Key_Hangul_Banja() { return Qt::Key_Hangul_Banja; } -int Qt_Key_Hangul_PreHanja() { return Qt::Key_Hangul_PreHanja; } -int Qt_Key_Hangul_PostHanja() { return Qt::Key_Hangul_PostHanja; } -int Qt_Key_Hangul_Special() { return Qt::Key_Hangul_Special; } -int Qt_Key_Dead_Grave() { return Qt::Key_Dead_Grave; } -int Qt_Key_Dead_Acute() { return Qt::Key_Dead_Acute; } -int Qt_Key_Dead_Circumflex() { return Qt::Key_Dead_Circumflex; } -int Qt_Key_Dead_Tilde() { return Qt::Key_Dead_Tilde; } -int Qt_Key_Dead_Macron() { return Qt::Key_Dead_Macron; } -int Qt_Key_Dead_Breve() { return Qt::Key_Dead_Breve; } -int Qt_Key_Dead_Abovedot() { return Qt::Key_Dead_Abovedot; } -int Qt_Key_Dead_Diaeresis() { return Qt::Key_Dead_Diaeresis; } -int Qt_Key_Dead_Abovering() { return Qt::Key_Dead_Abovering; } -int Qt_Key_Dead_Doubleacute() { return Qt::Key_Dead_Doubleacute; } -int Qt_Key_Dead_Caron() { return Qt::Key_Dead_Caron; } -int Qt_Key_Dead_Cedilla() { return Qt::Key_Dead_Cedilla; } -int Qt_Key_Dead_Ogonek() { return Qt::Key_Dead_Ogonek; } -int Qt_Key_Dead_Iota() { return Qt::Key_Dead_Iota; } -int Qt_Key_Dead_Voiced_Sound() { return Qt::Key_Dead_Voiced_Sound; } -int Qt_Key_Dead_Semivoiced_Sound() { return Qt::Key_Dead_Semivoiced_Sound; } -int Qt_Key_Dead_Belowdot() { return Qt::Key_Dead_Belowdot; } -int Qt_Key_Dead_Hook() { return Qt::Key_Dead_Hook; } -int Qt_Key_Dead_Horn() { return Qt::Key_Dead_Horn; } -int Qt_Key_Back() { return Qt::Key_Back; } -int Qt_Key_Forward() { return Qt::Key_Forward; } -int Qt_Key_Stop() { return Qt::Key_Stop; } -int Qt_Key_Refresh() { return Qt::Key_Refresh; } -int Qt_Key_VolumeDown() { return Qt::Key_VolumeDown; } -int Qt_Key_VolumeMute() { return Qt::Key_VolumeMute; } -int Qt_Key_VolumeUp() { return Qt::Key_VolumeUp; } -int Qt_Key_BassBoost() { return Qt::Key_BassBoost; } -int Qt_Key_BassUp() { return Qt::Key_BassUp; } -int Qt_Key_BassDown() { return Qt::Key_BassDown; } -int Qt_Key_TrebleUp() { return Qt::Key_TrebleUp; } -int Qt_Key_TrebleDown() { return Qt::Key_TrebleDown; } -int Qt_Key_MediaPlay() { return Qt::Key_MediaPlay; } -int Qt_Key_MediaStop() { return Qt::Key_MediaStop; } -int Qt_Key_MediaPrevious() { return Qt::Key_MediaPrevious; } -int Qt_Key_MediaNext() { return Qt::Key_MediaNext; } -int Qt_Key_MediaRecord() { return Qt::Key_MediaRecord; } -int Qt_Key_MediaPause() { return Qt::Key_MediaPause; } -int Qt_Key_MediaTogglePlayPause() { return Qt::Key_MediaTogglePlayPause; } -int Qt_Key_HomePage() { return Qt::Key_HomePage; } -int Qt_Key_Favorites() { return Qt::Key_Favorites; } -int Qt_Key_Search() { return Qt::Key_Search; } -int Qt_Key_Standby() { return Qt::Key_Standby; } -int Qt_Key_OpenUrl() { return Qt::Key_OpenUrl; } -int Qt_Key_LaunchMail() { return Qt::Key_LaunchMail; } -int Qt_Key_LaunchMedia() { return Qt::Key_LaunchMedia; } -int Qt_Key_Launch0() { return Qt::Key_Launch0; } -int Qt_Key_Launch1() { return Qt::Key_Launch1; } -int Qt_Key_Launch2() { return Qt::Key_Launch2; } -int Qt_Key_Launch3() { return Qt::Key_Launch3; } -int Qt_Key_Launch4() { return Qt::Key_Launch4; } -int Qt_Key_Launch5() { return Qt::Key_Launch5; } -int Qt_Key_Launch6() { return Qt::Key_Launch6; } -int Qt_Key_Launch7() { return Qt::Key_Launch7; } -int Qt_Key_Launch8() { return Qt::Key_Launch8; } -int Qt_Key_Launch9() { return Qt::Key_Launch9; } -int Qt_Key_LaunchA() { return Qt::Key_LaunchA; } -int Qt_Key_LaunchB() { return Qt::Key_LaunchB; } -int Qt_Key_LaunchC() { return Qt::Key_LaunchC; } -int Qt_Key_LaunchD() { return Qt::Key_LaunchD; } -int Qt_Key_LaunchE() { return Qt::Key_LaunchE; } -int Qt_Key_LaunchF() { return Qt::Key_LaunchF; } -int Qt_Key_LaunchG() { return Qt::Key_LaunchG; } -int Qt_Key_LaunchH() { return Qt::Key_LaunchH; } -int Qt_Key_MonBrightnessUp() { return Qt::Key_MonBrightnessUp; } -int Qt_Key_MonBrightnessDown() { return Qt::Key_MonBrightnessDown; } -int Qt_Key_KeyboardLightOnOff() { return Qt::Key_KeyboardLightOnOff; } -int Qt_Key_KeyboardBrightnessUp() { return Qt::Key_KeyboardBrightnessUp; } -int Qt_Key_KeyboardBrightnessDown() { return Qt::Key_KeyboardBrightnessDown; } -int Qt_Key_PowerOff() { return Qt::Key_PowerOff; } -int Qt_Key_WakeUp() { return Qt::Key_WakeUp; } -int Qt_Key_Eject() { return Qt::Key_Eject; } -int Qt_Key_ScreenSaver() { return Qt::Key_ScreenSaver; } -int Qt_Key_WWW() { return Qt::Key_WWW; } -int Qt_Key_Memo() { return Qt::Key_Memo; } -int Qt_Key_LightBulb() { return Qt::Key_LightBulb; } -int Qt_Key_Shop() { return Qt::Key_Shop; } -int Qt_Key_History() { return Qt::Key_History; } -int Qt_Key_AddFavorite() { return Qt::Key_AddFavorite; } -int Qt_Key_HotLinks() { return Qt::Key_HotLinks; } -int Qt_Key_BrightnessAdjust() { return Qt::Key_BrightnessAdjust; } -int Qt_Key_Finance() { return Qt::Key_Finance; } -int Qt_Key_Community() { return Qt::Key_Community; } -int Qt_Key_AudioRewind() { return Qt::Key_AudioRewind; } -int Qt_Key_BackForward() { return Qt::Key_BackForward; } -int Qt_Key_ApplicationLeft() { return Qt::Key_ApplicationLeft; } -int Qt_Key_ApplicationRight() { return Qt::Key_ApplicationRight; } -int Qt_Key_Book() { return Qt::Key_Book; } -int Qt_Key_CD() { return Qt::Key_CD; } -int Qt_Key_Calculator() { return Qt::Key_Calculator; } -int Qt_Key_ToDoList() { return Qt::Key_ToDoList; } -int Qt_Key_ClearGrab() { return Qt::Key_ClearGrab; } -int Qt_Key_Close() { return Qt::Key_Close; } -int Qt_Key_Copy() { return Qt::Key_Copy; } -int Qt_Key_Cut() { return Qt::Key_Cut; } -int Qt_Key_Display() { return Qt::Key_Display; } -int Qt_Key_DOS() { return Qt::Key_DOS; } -int Qt_Key_Documents() { return Qt::Key_Documents; } -int Qt_Key_Excel() { return Qt::Key_Excel; } -int Qt_Key_Explorer() { return Qt::Key_Explorer; } -int Qt_Key_Game() { return Qt::Key_Game; } -int Qt_Key_Go() { return Qt::Key_Go; } -int Qt_Key_iTouch() { return Qt::Key_iTouch; } -int Qt_Key_LogOff() { return Qt::Key_LogOff; } -int Qt_Key_Market() { return Qt::Key_Market; } -int Qt_Key_Meeting() { return Qt::Key_Meeting; } -int Qt_Key_MenuKB() { return Qt::Key_MenuKB; } -int Qt_Key_MenuPB() { return Qt::Key_MenuPB; } -int Qt_Key_MySites() { return Qt::Key_MySites; } -int Qt_Key_News() { return Qt::Key_News; } -int Qt_Key_OfficeHome() { return Qt::Key_OfficeHome; } -int Qt_Key_Option() { return Qt::Key_Option; } -int Qt_Key_Paste() { return Qt::Key_Paste; } -int Qt_Key_Phone() { return Qt::Key_Phone; } -int Qt_Key_Calendar() { return Qt::Key_Calendar; } -int Qt_Key_Reply() { return Qt::Key_Reply; } -int Qt_Key_Reload() { return Qt::Key_Reload; } -int Qt_Key_RotateWindows() { return Qt::Key_RotateWindows; } -int Qt_Key_RotationPB() { return Qt::Key_RotationPB; } -int Qt_Key_RotationKB() { return Qt::Key_RotationKB; } -int Qt_Key_Save() { return Qt::Key_Save; } -int Qt_Key_Send() { return Qt::Key_Send; } -int Qt_Key_Spell() { return Qt::Key_Spell; } -int Qt_Key_SplitScreen() { return Qt::Key_SplitScreen; } -int Qt_Key_Support() { return Qt::Key_Support; } -int Qt_Key_TaskPane() { return Qt::Key_TaskPane; } -int Qt_Key_Terminal() { return Qt::Key_Terminal; } -int Qt_Key_Tools() { return Qt::Key_Tools; } -int Qt_Key_Travel() { return Qt::Key_Travel; } -int Qt_Key_Video() { return Qt::Key_Video; } -int Qt_Key_Word() { return Qt::Key_Word; } -int Qt_Key_Xfer() { return Qt::Key_Xfer; } -int Qt_Key_ZoomIn() { return Qt::Key_ZoomIn; } -int Qt_Key_ZoomOut() { return Qt::Key_ZoomOut; } -int Qt_Key_Away() { return Qt::Key_Away; } -int Qt_Key_Messenger() { return Qt::Key_Messenger; } -int Qt_Key_WebCam() { return Qt::Key_WebCam; } -int Qt_Key_MailForward() { return Qt::Key_MailForward; } -int Qt_Key_Pictures() { return Qt::Key_Pictures; } -int Qt_Key_Music() { return Qt::Key_Music; } -int Qt_Key_Battery() { return Qt::Key_Battery; } -int Qt_Key_Bluetooth() { return Qt::Key_Bluetooth; } -int Qt_Key_WLAN() { return Qt::Key_WLAN; } -int Qt_Key_UWB() { return Qt::Key_UWB; } -int Qt_Key_AudioForward() { return Qt::Key_AudioForward; } -int Qt_Key_AudioRepeat() { return Qt::Key_AudioRepeat; } -int Qt_Key_AudioRandomPlay() { return Qt::Key_AudioRandomPlay; } -int Qt_Key_Subtitle() { return Qt::Key_Subtitle; } -int Qt_Key_AudioCycleTrack() { return Qt::Key_AudioCycleTrack; } -int Qt_Key_Time() { return Qt::Key_Time; } -int Qt_Key_Hibernate() { return Qt::Key_Hibernate; } -int Qt_Key_View() { return Qt::Key_View; } -int Qt_Key_TopMenu() { return Qt::Key_TopMenu; } -int Qt_Key_PowerDown() { return Qt::Key_PowerDown; } -int Qt_Key_Suspend() { return Qt::Key_Suspend; } -int Qt_Key_ContrastAdjust() { return Qt::Key_ContrastAdjust; } -int Qt_Key_TouchpadToggle() { return Qt::Key_TouchpadToggle; } -int Qt_Key_TouchpadOn() { return Qt::Key_TouchpadOn; } -int Qt_Key_TouchpadOff() { return Qt::Key_TouchpadOff; } -int Qt_Key_MicMute() { return Qt::Key_MicMute; } -int Qt_Key_Red() { return Qt::Key_Red; } -int Qt_Key_Green() { return Qt::Key_Green; } -int Qt_Key_Yellow() { return Qt::Key_Yellow; } -int Qt_Key_Blue() { return Qt::Key_Blue; } -int Qt_Key_ChannelUp() { return Qt::Key_ChannelUp; } -int Qt_Key_ChannelDown() { return Qt::Key_ChannelDown; } -int Qt_Key_MediaLast() { return Qt::Key_MediaLast; } -int Qt_Key_unknown() { return Qt::Key_unknown; } -int Qt_Key_Call() { return Qt::Key_Call; } -int Qt_Key_Camera() { return Qt::Key_Camera; } -int Qt_Key_CameraFocus() { return Qt::Key_CameraFocus; } -int Qt_Key_Context1() { return Qt::Key_Context1; } -int Qt_Key_Context2() { return Qt::Key_Context2; } -int Qt_Key_Context3() { return Qt::Key_Context3; } -int Qt_Key_Context4() { return Qt::Key_Context4; } -int Qt_Key_Flip() { return Qt::Key_Flip; } -int Qt_Key_Hangup() { return Qt::Key_Hangup; } -int Qt_Key_No() { return Qt::Key_No; } -int Qt_Key_Select() { return Qt::Key_Select; } -int Qt_Key_Yes() { return Qt::Key_Yes; } -int Qt_Key_ToggleCallHangup() { return Qt::Key_ToggleCallHangup; } -int Qt_Key_VoiceDial() { return Qt::Key_VoiceDial; } -int Qt_Key_LastNumberRedial() { return Qt::Key_LastNumberRedial; } -int Qt_Key_Execute() { return Qt::Key_Execute; } -int Qt_Key_Printer() { return Qt::Key_Printer; } -int Qt_Key_Play() { return Qt::Key_Play; } -int Qt_Key_Sleep() { return Qt::Key_Sleep; } -int Qt_Key_Zoom() { return Qt::Key_Zoom; } -int Qt_Key_Cancel() { return Qt::Key_Cancel; } - -// KeyboardModifier -int Qt_NoModifier() { return Qt::NoModifier; } -int Qt_ShiftModifier() { return Qt::ShiftModifier; } -int Qt_ControlModifier() { return Qt::ControlModifier; } -int Qt_AltModifier() { return Qt::AltModifier; } -int Qt_MetaModifier() { return Qt::MetaModifier; } -int Qt_KeypadModifier() { return Qt::KeypadModifier; } -int Qt_GroupSwitchModifier() { return Qt::GroupSwitchModifier; } - -// LayoutDirection -int Qt_LeftToRight() { return Qt::LeftToRight; } -int Qt_RightToLeft() { return Qt::RightToLeft; } -int Qt_LayoutDirectionAuto() { return Qt::LayoutDirectionAuto; } - -// MaskMode -int Qt_MaskInColor() { return Qt::MaskInColor; } -int Qt_MaskOutColor() { return Qt::MaskOutColor; } - -// MatchFlag -int Qt_MatchExactly() { return Qt::MatchExactly; } -int Qt_MatchFixedString() { return Qt::MatchFixedString; } -int Qt_MatchContains() { return Qt::MatchContains; } -int Qt_MatchStartsWith() { return Qt::MatchStartsWith; } -int Qt_MatchEndsWith() { return Qt::MatchEndsWith; } -int Qt_MatchCaseSensitive() { return Qt::MatchCaseSensitive; } -int Qt_MatchRegExp() { return Qt::MatchRegExp; } -int Qt_MatchWildcard() { return Qt::MatchWildcard; } -int Qt_MatchWrap() { return Qt::MatchWrap; } -int Qt_MatchRecursive() { return Qt::MatchRecursive; } - -// Modifier -int Qt_SHIFT() { return Qt::SHIFT; } -int Qt_META() { return Qt::META; } -int Qt_CTRL() { return Qt::CTRL; } -int Qt_ALT() { return Qt::ALT; } -int Qt_UNICODE_ACCEL() { return Qt::UNICODE_ACCEL; } - -// MouseButton -int Qt_NoButton() { return Qt::NoButton; } -int Qt_AllButtons() { return Qt::AllButtons; } -int Qt_LeftButton() { return Qt::LeftButton; } -int Qt_RightButton() { return Qt::RightButton; } -int Qt_MidButton() { return Qt::MidButton; } -int Qt_MiddleButton() { return Qt::MiddleButton; } -int Qt_BackButton() { return Qt::BackButton; } -int Qt_XButton1() { return Qt::XButton1; } -int Qt_ExtraButton1() { return Qt::ExtraButton1; } -int Qt_ForwardButton() { return Qt::ForwardButton; } -int Qt_XButton2() { return Qt::XButton2; } -int Qt_ExtraButton2() { return Qt::ExtraButton2; } -int Qt_TaskButton() { return Qt::TaskButton; } -int Qt_ExtraButton3() { return Qt::ExtraButton3; } -int Qt_ExtraButton4() { return Qt::ExtraButton4; } -int Qt_ExtraButton5() { return Qt::ExtraButton5; } -int Qt_ExtraButton6() { return Qt::ExtraButton6; } -int Qt_ExtraButton7() { return Qt::ExtraButton7; } -int Qt_ExtraButton8() { return Qt::ExtraButton8; } -int Qt_ExtraButton9() { return Qt::ExtraButton9; } -int Qt_ExtraButton10() { return Qt::ExtraButton10; } -int Qt_ExtraButton11() { return Qt::ExtraButton11; } -int Qt_ExtraButton12() { return Qt::ExtraButton12; } -int Qt_ExtraButton13() { return Qt::ExtraButton13; } -int Qt_ExtraButton14() { return Qt::ExtraButton14; } -int Qt_ExtraButton15() { return Qt::ExtraButton15; } -int Qt_ExtraButton16() { return Qt::ExtraButton16; } -int Qt_ExtraButton17() { return Qt::ExtraButton17; } -int Qt_ExtraButton18() { return Qt::ExtraButton18; } -int Qt_ExtraButton19() { return Qt::ExtraButton19; } -int Qt_ExtraButton20() { return Qt::ExtraButton20; } -int Qt_ExtraButton21() { return Qt::ExtraButton21; } -int Qt_ExtraButton22() { return Qt::ExtraButton22; } -int Qt_ExtraButton23() { return Qt::ExtraButton23; } -int Qt_ExtraButton24() { return Qt::ExtraButton24; } - -// MouseEventFlag -int Qt_MouseEventCreatedDoubleClick() { return Qt::MouseEventCreatedDoubleClick; } - -// MouseEventSource -int Qt_MouseEventNotSynthesized() { return Qt::MouseEventNotSynthesized; } -int Qt_MouseEventSynthesizedBySystem() { return Qt::MouseEventSynthesizedBySystem; } -int Qt_MouseEventSynthesizedByQt() { return Qt::MouseEventSynthesizedByQt; } - -// NativeGestureType - -// NavigationMode -int Qt_NavigationModeNone() { return Qt::NavigationModeNone; } -int Qt_NavigationModeKeypadTabOrder() { return Qt::NavigationModeKeypadTabOrder; } -int Qt_NavigationModeKeypadDirectional() { return Qt::NavigationModeKeypadDirectional; } -int Qt_NavigationModeCursorAuto() { return Qt::NavigationModeCursorAuto; } -int Qt_NavigationModeCursorForceVisible() { return Qt::NavigationModeCursorForceVisible; } - -// Orientation -int Qt_Horizontal() { return Qt::Horizontal; } -int Qt_Vertical() { return Qt::Vertical; } - -// PenCapStyle -int Qt_SquareCap() { return Qt::SquareCap; } -int Qt_FlatCap() { return Qt::FlatCap; } -int Qt_RoundCap() { return Qt::RoundCap; } - -// PenJoinStyle -int Qt_BevelJoin() { return Qt::BevelJoin; } -int Qt_MiterJoin() { return Qt::MiterJoin; } -int Qt_RoundJoin() { return Qt::RoundJoin; } -int Qt_SvgMiterJoin() { return Qt::SvgMiterJoin; } - -// PenStyle -int Qt_SolidLine() { return Qt::SolidLine; } -int Qt_DashDotLine() { return Qt::DashDotLine; } -int Qt_NoPen() { return Qt::NoPen; } -int Qt_DashLine() { return Qt::DashLine; } -int Qt_DotLine() { return Qt::DotLine; } -int Qt_DashDotDotLine() { return Qt::DashDotDotLine; } -int Qt_CustomDashLine() { return Qt::CustomDashLine; } - -// ScreenOrientation -int Qt_PrimaryOrientation() { return Qt::PrimaryOrientation; } -int Qt_LandscapeOrientation() { return Qt::LandscapeOrientation; } -int Qt_PortraitOrientation() { return Qt::PortraitOrientation; } -int Qt_InvertedLandscapeOrientation() { return Qt::InvertedLandscapeOrientation; } -int Qt_InvertedPortraitOrientation() { return Qt::InvertedPortraitOrientation; } - -// ScrollBarPolicy -int Qt_ScrollBarAsNeeded() { return Qt::ScrollBarAsNeeded; } -int Qt_ScrollBarAlwaysOff() { return Qt::ScrollBarAlwaysOff; } -int Qt_ScrollBarAlwaysOn() { return Qt::ScrollBarAlwaysOn; } - -// ScrollPhase -int Qt_ScrollBegin() { return Qt::ScrollBegin; } -int Qt_ScrollUpdate() { return Qt::ScrollUpdate; } -int Qt_ScrollEnd() { return Qt::ScrollEnd; } - -// ShortcutContext -int Qt_WidgetShortcut() { return Qt::WidgetShortcut; } -int Qt_WidgetWithChildrenShortcut() { return Qt::WidgetWithChildrenShortcut; } -int Qt_WindowShortcut() { return Qt::WindowShortcut; } -int Qt_ApplicationShortcut() { return Qt::ApplicationShortcut; } - -// SizeHint -int Qt_MinimumSize() { return Qt::MinimumSize; } -int Qt_PreferredSize() { return Qt::PreferredSize; } -int Qt_MaximumSize() { return Qt::MaximumSize; } -int Qt_MinimumDescent() { return Qt::MinimumDescent; } - -// SizeMode -int Qt_AbsoluteSize() { return Qt::AbsoluteSize; } -int Qt_RelativeSize() { return Qt::RelativeSize; } - -// SortOrder -int Qt_AscendingOrder() { return Qt::AscendingOrder; } -int Qt_DescendingOrder() { return Qt::DescendingOrder; } - -// TextElideMode -int Qt_ElideLeft() { return Qt::ElideLeft; } -int Qt_ElideRight() { return Qt::ElideRight; } -int Qt_ElideMiddle() { return Qt::ElideMiddle; } -int Qt_ElideNone() { return Qt::ElideNone; } - -// TextFlag -int Qt_TextSingleLine() { return Qt::TextSingleLine; } -int Qt_TextDontClip() { return Qt::TextDontClip; } -int Qt_TextExpandTabs() { return Qt::TextExpandTabs; } -int Qt_TextShowMnemonic() { return Qt::TextShowMnemonic; } -int Qt_TextWordWrap() { return Qt::TextWordWrap; } -int Qt_TextWrapAnywhere() { return Qt::TextWrapAnywhere; } -int Qt_TextHideMnemonic() { return Qt::TextHideMnemonic; } -int Qt_TextDontPrint() { return Qt::TextDontPrint; } -int Qt_TextIncludeTrailingSpaces() { return Qt::TextIncludeTrailingSpaces; } -int Qt_TextJustificationForced() { return Qt::TextJustificationForced; } - -// TextFormat -int Qt_PlainText() { return Qt::PlainText; } -int Qt_RichText() { return Qt::RichText; } -int Qt_AutoText() { return Qt::AutoText; } - -// TextInteractionFlag -int Qt_NoTextInteraction() { return Qt::NoTextInteraction; } -int Qt_TextSelectableByMouse() { return Qt::TextSelectableByMouse; } -int Qt_TextSelectableByKeyboard() { return Qt::TextSelectableByKeyboard; } -int Qt_LinksAccessibleByMouse() { return Qt::LinksAccessibleByMouse; } -int Qt_LinksAccessibleByKeyboard() { return Qt::LinksAccessibleByKeyboard; } -int Qt_TextEditable() { return Qt::TextEditable; } -int Qt_TextEditorInteraction() { return Qt::TextEditorInteraction; } -int Qt_TextBrowserInteraction() { return Qt::TextBrowserInteraction; } - -// TileRule -int Qt_StretchTile() { return Qt::StretchTile; } -int Qt_RepeatTile() { return Qt::RepeatTile; } -int Qt_RoundTile() { return Qt::RoundTile; } - -// TimeSpec -int Qt_LocalTime() { return Qt::LocalTime; } -int Qt_UTC() { return Qt::UTC; } -int Qt_OffsetFromUTC() { return Qt::OffsetFromUTC; } -int Qt_TimeZone() { return Qt::TimeZone; } - -// TimerType -int Qt_PreciseTimer() { return Qt::PreciseTimer; } -int Qt_CoarseTimer() { return Qt::CoarseTimer; } -int Qt_VeryCoarseTimer() { return Qt::VeryCoarseTimer; } - -// ToolBarArea -int Qt_LeftToolBarArea() { return Qt::LeftToolBarArea; } -int Qt_RightToolBarArea() { return Qt::RightToolBarArea; } -int Qt_TopToolBarArea() { return Qt::TopToolBarArea; } -int Qt_BottomToolBarArea() { return Qt::BottomToolBarArea; } -int Qt_AllToolBarAreas() { return Qt::AllToolBarAreas; } -int Qt_NoToolBarArea() { return Qt::NoToolBarArea; } - -// ToolButtonStyle -int Qt_ToolButtonIconOnly() { return Qt::ToolButtonIconOnly; } -int Qt_ToolButtonTextOnly() { return Qt::ToolButtonTextOnly; } -int Qt_ToolButtonTextBesideIcon() { return Qt::ToolButtonTextBesideIcon; } -int Qt_ToolButtonTextUnderIcon() { return Qt::ToolButtonTextUnderIcon; } -int Qt_ToolButtonFollowStyle() { return Qt::ToolButtonFollowStyle; } - -// TouchPointState -int Qt_TouchPointPressed() { return Qt::TouchPointPressed; } -int Qt_TouchPointMoved() { return Qt::TouchPointMoved; } -int Qt_TouchPointStationary() { return Qt::TouchPointStationary; } -int Qt_TouchPointReleased() { return Qt::TouchPointReleased; } - -// TransformationMode -int Qt_FastTransformation() { return Qt::FastTransformation; } -int Qt_SmoothTransformation() { return Qt::SmoothTransformation; } - -// UIEffect -int Qt_UI_AnimateMenu() { return Qt::UI_AnimateMenu; } -int Qt_UI_FadeMenu() { return Qt::UI_FadeMenu; } -int Qt_UI_AnimateCombo() { return Qt::UI_AnimateCombo; } -int Qt_UI_AnimateTooltip() { return Qt::UI_AnimateTooltip; } -int Qt_UI_FadeTooltip() { return Qt::UI_FadeTooltip; } -int Qt_UI_AnimateToolBox() { return Qt::UI_AnimateToolBox; } - -// WhiteSpaceMode -int Qt_WhiteSpaceNormal() { return Qt::WhiteSpaceNormal; } -int Qt_WhiteSpacePre() { return Qt::WhiteSpacePre; } -int Qt_WhiteSpaceNoWrap() { return Qt::WhiteSpaceNoWrap; } - -// WidgetAttribute -int Qt_WA_AcceptDrops() { return Qt::WA_AcceptDrops; } -int Qt_WA_AlwaysShowToolTips() { return Qt::WA_AlwaysShowToolTips; } -int Qt_WA_ContentsPropagated() { return Qt::WA_ContentsPropagated; } -int Qt_WA_CustomWhatsThis() { return Qt::WA_CustomWhatsThis; } -int Qt_WA_DeleteOnClose() { return Qt::WA_DeleteOnClose; } -int Qt_WA_Disabled() { return Qt::WA_Disabled; } -int Qt_WA_DontShowOnScreen() { return Qt::WA_DontShowOnScreen; } -int Qt_WA_ForceDisabled() { return Qt::WA_ForceDisabled; } -int Qt_WA_ForceUpdatesDisabled() { return Qt::WA_ForceUpdatesDisabled; } -int Qt_WA_GroupLeader() { return Qt::WA_GroupLeader; } -int Qt_WA_Hover() { return Qt::WA_Hover; } -int Qt_WA_InputMethodEnabled() { return Qt::WA_InputMethodEnabled; } -int Qt_WA_KeyboardFocusChange() { return Qt::WA_KeyboardFocusChange; } -int Qt_WA_KeyCompression() { return Qt::WA_KeyCompression; } -int Qt_WA_LayoutOnEntireRect() { return Qt::WA_LayoutOnEntireRect; } -int Qt_WA_LayoutUsesWidgetRect() { return Qt::WA_LayoutUsesWidgetRect; } -int Qt_WA_MacNoClickThrough() { return Qt::WA_MacNoClickThrough; } -int Qt_WA_MacOpaqueSizeGrip() { return Qt::WA_MacOpaqueSizeGrip; } -int Qt_WA_MacShowFocusRect() { return Qt::WA_MacShowFocusRect; } -int Qt_WA_MacNormalSize() { return Qt::WA_MacNormalSize; } -int Qt_WA_MacSmallSize() { return Qt::WA_MacSmallSize; } -int Qt_WA_MacMiniSize() { return Qt::WA_MacMiniSize; } -int Qt_WA_MacVariableSize() { return Qt::WA_MacVariableSize; } -int Qt_WA_MacBrushedMetal() { return Qt::WA_MacBrushedMetal; } -int Qt_WA_Mapped() { return Qt::WA_Mapped; } -int Qt_WA_MouseNoMask() { return Qt::WA_MouseNoMask; } -int Qt_WA_MouseTracking() { return Qt::WA_MouseTracking; } -int Qt_WA_Moved() { return Qt::WA_Moved; } -int Qt_WA_MSWindowsUseDirect3D() { return Qt::WA_MSWindowsUseDirect3D; } -int Qt_WA_NoBackground() { return Qt::WA_NoBackground; } -int Qt_WA_NoChildEventsForParent() { return Qt::WA_NoChildEventsForParent; } -int Qt_WA_NoChildEventsFromChildren() { return Qt::WA_NoChildEventsFromChildren; } -int Qt_WA_NoMouseReplay() { return Qt::WA_NoMouseReplay; } -int Qt_WA_NoMousePropagation() { return Qt::WA_NoMousePropagation; } -int Qt_WA_TransparentForMouseEvents() { return Qt::WA_TransparentForMouseEvents; } -int Qt_WA_NoSystemBackground() { return Qt::WA_NoSystemBackground; } -int Qt_WA_OpaquePaintEvent() { return Qt::WA_OpaquePaintEvent; } -int Qt_WA_OutsideWSRange() { return Qt::WA_OutsideWSRange; } -int Qt_WA_PaintOnScreen() { return Qt::WA_PaintOnScreen; } -int Qt_WA_PaintUnclipped() { return Qt::WA_PaintUnclipped; } -int Qt_WA_PendingMoveEvent() { return Qt::WA_PendingMoveEvent; } -int Qt_WA_PendingResizeEvent() { return Qt::WA_PendingResizeEvent; } -int Qt_WA_QuitOnClose() { return Qt::WA_QuitOnClose; } -int Qt_WA_Resized() { return Qt::WA_Resized; } -int Qt_WA_RightToLeft() { return Qt::WA_RightToLeft; } -int Qt_WA_SetCursor() { return Qt::WA_SetCursor; } -int Qt_WA_SetFont() { return Qt::WA_SetFont; } -int Qt_WA_SetPalette() { return Qt::WA_SetPalette; } -int Qt_WA_SetStyle() { return Qt::WA_SetStyle; } -int Qt_WA_ShowModal() { return Qt::WA_ShowModal; } -int Qt_WA_StaticContents() { return Qt::WA_StaticContents; } -int Qt_WA_StyleSheet() { return Qt::WA_StyleSheet; } -int Qt_WA_TranslucentBackground() { return Qt::WA_TranslucentBackground; } -int Qt_WA_UnderMouse() { return Qt::WA_UnderMouse; } -int Qt_WA_UpdatesDisabled() { return Qt::WA_UpdatesDisabled; } -int Qt_WA_WindowModified() { return Qt::WA_WindowModified; } -int Qt_WA_WindowPropagation() { return Qt::WA_WindowPropagation; } -int Qt_WA_MacAlwaysShowToolWindow() { return Qt::WA_MacAlwaysShowToolWindow; } -int Qt_WA_SetLocale() { return Qt::WA_SetLocale; } -int Qt_WA_StyledBackground() { return Qt::WA_StyledBackground; } -int Qt_WA_ShowWithoutActivating() { return Qt::WA_ShowWithoutActivating; } -int Qt_WA_NativeWindow() { return Qt::WA_NativeWindow; } -int Qt_WA_DontCreateNativeAncestors() { return Qt::WA_DontCreateNativeAncestors; } -int Qt_WA_X11NetWmWindowTypeDesktop() { return Qt::WA_X11NetWmWindowTypeDesktop; } -int Qt_WA_X11NetWmWindowTypeDock() { return Qt::WA_X11NetWmWindowTypeDock; } -int Qt_WA_X11NetWmWindowTypeToolBar() { return Qt::WA_X11NetWmWindowTypeToolBar; } -int Qt_WA_X11NetWmWindowTypeMenu() { return Qt::WA_X11NetWmWindowTypeMenu; } -int Qt_WA_X11NetWmWindowTypeUtility() { return Qt::WA_X11NetWmWindowTypeUtility; } -int Qt_WA_X11NetWmWindowTypeSplash() { return Qt::WA_X11NetWmWindowTypeSplash; } -int Qt_WA_X11NetWmWindowTypeDialog() { return Qt::WA_X11NetWmWindowTypeDialog; } -int Qt_WA_X11NetWmWindowTypeDropDownMenu() { return Qt::WA_X11NetWmWindowTypeDropDownMenu; } -int Qt_WA_X11NetWmWindowTypePopupMenu() { return Qt::WA_X11NetWmWindowTypePopupMenu; } -int Qt_WA_X11NetWmWindowTypeToolTip() { return Qt::WA_X11NetWmWindowTypeToolTip; } -int Qt_WA_X11NetWmWindowTypeNotification() { return Qt::WA_X11NetWmWindowTypeNotification; } -int Qt_WA_X11NetWmWindowTypeCombo() { return Qt::WA_X11NetWmWindowTypeCombo; } -int Qt_WA_X11NetWmWindowTypeDND() { return Qt::WA_X11NetWmWindowTypeDND; } -int Qt_WA_MacFrameworkScaled() { return Qt::WA_MacFrameworkScaled; } -int Qt_WA_AcceptTouchEvents() { return Qt::WA_AcceptTouchEvents; } -int Qt_WA_TouchPadAcceptSingleTouchEvents() { return Qt::WA_TouchPadAcceptSingleTouchEvents; } -int Qt_WA_X11DoNotAcceptFocus() { return Qt::WA_X11DoNotAcceptFocus; } - -// WindowFrameSection -int Qt_NoSection() { return Qt::NoSection; } -int Qt_LeftSection() { return Qt::LeftSection; } -int Qt_TopLeftSection() { return Qt::TopLeftSection; } -int Qt_TopSection() { return Qt::TopSection; } -int Qt_TopRightSection() { return Qt::TopRightSection; } -int Qt_RightSection() { return Qt::RightSection; } -int Qt_BottomRightSection() { return Qt::BottomRightSection; } -int Qt_BottomSection() { return Qt::BottomSection; } -int Qt_BottomLeftSection() { return Qt::BottomLeftSection; } -int Qt_TitleBarArea() { return Qt::TitleBarArea; } - -// WindowModality -int Qt_NonModal() { return Qt::NonModal; } -int Qt_WindowModal() { return Qt::WindowModal; } -int Qt_ApplicationModal() { return Qt::ApplicationModal; } - -// WindowState -int Qt_WindowNoState() { return Qt::WindowNoState; } -int Qt_WindowMinimized() { return Qt::WindowMinimized; } -int Qt_WindowMaximized() { return Qt::WindowMaximized; } -int Qt_WindowFullScreen() { return Qt::WindowFullScreen; } -int Qt_WindowActive() { return Qt::WindowActive; } - -// WindowType -int Qt_Widget() { return Qt::Widget; } -int Qt_Window() { return Qt::Window; } -int Qt_Dialog() { return Qt::Dialog; } -int Qt_Sheet() { return Qt::Sheet; } -int Qt_Drawer() { return Qt::Drawer; } -int Qt_Popup() { return Qt::Popup; } -int Qt_Tool() { return Qt::Tool; } -int Qt_ToolTip() { return Qt::ToolTip; } -int Qt_SplashScreen() { return Qt::SplashScreen; } -int Qt_Desktop() { return Qt::Desktop; } -int Qt_SubWindow() { return Qt::SubWindow; } -int Qt_ForeignWindow() { return Qt::ForeignWindow; } -int Qt_CoverWindow() { return Qt::CoverWindow; } -int Qt_MSWindowsFixedSizeDialogHint() { return Qt::MSWindowsFixedSizeDialogHint; } -int Qt_MSWindowsOwnDC() { return Qt::MSWindowsOwnDC; } -int Qt_BypassWindowManagerHint() { return Qt::BypassWindowManagerHint; } -int Qt_X11BypassWindowManagerHint() { return Qt::X11BypassWindowManagerHint; } -int Qt_FramelessWindowHint() { return Qt::FramelessWindowHint; } -int Qt_NoDropShadowWindowHint() { return Qt::NoDropShadowWindowHint; } -int Qt_CustomizeWindowHint() { return Qt::CustomizeWindowHint; } -int Qt_WindowTitleHint() { return Qt::WindowTitleHint; } -int Qt_WindowSystemMenuHint() { return Qt::WindowSystemMenuHint; } -int Qt_WindowMinimizeButtonHint() { return Qt::WindowMinimizeButtonHint; } -int Qt_WindowMaximizeButtonHint() { return Qt::WindowMaximizeButtonHint; } -int Qt_WindowMinMaxButtonsHint() { return Qt::WindowMinMaxButtonsHint; } -int Qt_WindowCloseButtonHint() { return Qt::WindowCloseButtonHint; } -int Qt_WindowContextHelpButtonHint() { return Qt::WindowContextHelpButtonHint; } -int Qt_MacWindowToolBarButtonHint() { return Qt::MacWindowToolBarButtonHint; } -int Qt_WindowFullscreenButtonHint() { return Qt::WindowFullscreenButtonHint; } -int Qt_BypassGraphicsProxyWidget() { return Qt::BypassGraphicsProxyWidget; } -int Qt_WindowShadeButtonHint() { return Qt::WindowShadeButtonHint; } -int Qt_WindowStaysOnTopHint() { return Qt::WindowStaysOnTopHint; } -int Qt_WindowStaysOnBottomHint() { return Qt::WindowStaysOnBottomHint; } -int Qt_WindowOkButtonHint() { return Qt::WindowOkButtonHint; } -int Qt_WindowCancelButtonHint() { return Qt::WindowCancelButtonHint; } -int Qt_WindowTransparentForInput() { return Qt::WindowTransparentForInput; } -int Qt_WindowOverridesSystemGestures() { return Qt::WindowOverridesSystemGestures; } -int Qt_WindowDoesNotAcceptFocus() { return Qt::WindowDoesNotAcceptFocus; } -int Qt_WindowType_Mask() { return Qt::WindowType_Mask; } diff --git a/qt.go b/qt.go deleted file mode 100644 index 8878a0db..00000000 --- a/qt.go +++ /dev/null @@ -1,1425 +0,0 @@ -package qt - -//#include "qt.h" -import "C" - -type AlignmentFlag int - -var ( - ALIGNLEFT = AlignmentFlag(C.Qt_AlignLeft()) - ALIGNRIGHT = AlignmentFlag(C.Qt_AlignRight()) - ALIGNHCENTER = AlignmentFlag(C.Qt_AlignHCenter()) - ALIGNJUSTIFY = AlignmentFlag(C.Qt_AlignJustify()) - ALIGNTOP = AlignmentFlag(C.Qt_AlignTop()) - ALIGNBOTTOM = AlignmentFlag(C.Qt_AlignBottom()) - ALIGNVCENTER = AlignmentFlag(C.Qt_AlignVCenter()) - ALIGNBASELINE = AlignmentFlag(C.Qt_AlignBaseline()) - ALIGNCENTER = AlignmentFlag(C.Qt_AlignCenter()) - ALIGNABSOLUTE = AlignmentFlag(C.Qt_AlignAbsolute()) - ALIGNLEADING = AlignmentFlag(C.Qt_AlignLeading()) - ALIGNTRAILING = AlignmentFlag(C.Qt_AlignTrailing()) - ALIGNHORIZONTAL_MASK = AlignmentFlag(C.Qt_AlignHorizontal_Mask()) - ALIGNVERTICAL_MASK = AlignmentFlag(C.Qt_AlignVertical_Mask()) -) - -type AnchorPoint int - -var ( - ANCHORLEFT = AnchorPoint(C.Qt_AnchorLeft()) - ANCHORHORIZONTALCENTER = AnchorPoint(C.Qt_AnchorHorizontalCenter()) - ANCHORRIGHT = AnchorPoint(C.Qt_AnchorRight()) - ANCHORTOP = AnchorPoint(C.Qt_AnchorTop()) - ANCHORVERTICALCENTER = AnchorPoint(C.Qt_AnchorVerticalCenter()) - ANCHORBOTTOM = AnchorPoint(C.Qt_AnchorBottom()) -) - -type ApplicationAttribute int - -var ( - AA_DONTSHOWICONSINMENUS = ApplicationAttribute(C.Qt_AA_DontShowIconsInMenus()) - AA_NATIVEWINDOWS = ApplicationAttribute(C.Qt_AA_NativeWindows()) - AA_DONTCREATENATIVEWIDGETSIBLINGS = ApplicationAttribute(C.Qt_AA_DontCreateNativeWidgetSiblings()) - AA_MACPLUGINAPPLICATION = ApplicationAttribute(C.Qt_AA_MacPluginApplication()) - AA_DONTUSENATIVEMENUBAR = ApplicationAttribute(C.Qt_AA_DontUseNativeMenuBar()) - AA_MACDONTSWAPCTRLANDMETA = ApplicationAttribute(C.Qt_AA_MacDontSwapCtrlAndMeta()) - AA_USE96DPI = ApplicationAttribute(C.Qt_AA_Use96Dpi()) - AA_X11INITTHREADS = ApplicationAttribute(C.Qt_AA_X11InitThreads()) - AA_SYNTHESIZETOUCHFORUNHANDLEDMOUSEEVENTS = ApplicationAttribute(C.Qt_AA_SynthesizeTouchForUnhandledMouseEvents()) - AA_SYNTHESIZEMOUSEFORUNHANDLEDTOUCHEVENTS = ApplicationAttribute(C.Qt_AA_SynthesizeMouseForUnhandledTouchEvents()) - AA_USEHIGHDPIPIXMAPS = ApplicationAttribute(C.Qt_AA_UseHighDpiPixmaps()) - AA_FORCERASTERWIDGETS = ApplicationAttribute(C.Qt_AA_ForceRasterWidgets()) - AA_USEDESKTOPOPENGL = ApplicationAttribute(C.Qt_AA_UseDesktopOpenGL()) - AA_USEOPENGLES = ApplicationAttribute(C.Qt_AA_UseOpenGLES()) - AA_IMMEDIATEWIDGETCREATION = ApplicationAttribute(C.Qt_AA_ImmediateWidgetCreation()) - AA_MSWINDOWSUSEDIRECT3DBYDEFAULT = ApplicationAttribute(C.Qt_AA_MSWindowsUseDirect3DByDefault()) -) - -type ApplicationState int - -var ( - APPLICATIONSUSPENDED = ApplicationState(C.Qt_ApplicationSuspended()) - APPLICATIONHIDDEN = ApplicationState(C.Qt_ApplicationHidden()) - APPLICATIONINACTIVE = ApplicationState(C.Qt_ApplicationInactive()) - APPLICATIONACTIVE = ApplicationState(C.Qt_ApplicationActive()) -) - -type ArrowType int - -var ( - NOARROW = ArrowType(C.Qt_NoArrow()) - UPARROW = ArrowType(C.Qt_UpArrow()) - DOWNARROW = ArrowType(C.Qt_DownArrow()) - LEFTARROW = ArrowType(C.Qt_LeftArrow()) - RIGHTARROW = ArrowType(C.Qt_RightArrow()) -) - -type AspectRatioMode int - -var ( - IGNOREASPECTRATIO = AspectRatioMode(C.Qt_IgnoreAspectRatio()) - KEEPASPECTRATIO = AspectRatioMode(C.Qt_KeepAspectRatio()) - KEEPASPECTRATIOBYEXPANDING = AspectRatioMode(C.Qt_KeepAspectRatioByExpanding()) -) - -type Axis int - -var ( - XAXIS = Axis(C.Qt_XAxis()) - YAXIS = Axis(C.Qt_YAxis()) - ZAXIS = Axis(C.Qt_ZAxis()) -) - -type BGMode int - -var ( - TRANSPARENTMODE = BGMode(C.Qt_TransparentMode()) - OPAQUEMODE = BGMode(C.Qt_OpaqueMode()) -) - -type BrushStyle int - -var ( - NOBRUSH = BrushStyle(C.Qt_NoBrush()) - SOLIDPATTERN = BrushStyle(C.Qt_SolidPattern()) - DENSE1PATTERN = BrushStyle(C.Qt_Dense1Pattern()) - DENSE2PATTERN = BrushStyle(C.Qt_Dense2Pattern()) - DENSE3PATTERN = BrushStyle(C.Qt_Dense3Pattern()) - DENSE4PATTERN = BrushStyle(C.Qt_Dense4Pattern()) - DENSE5PATTERN = BrushStyle(C.Qt_Dense5Pattern()) - DENSE6PATTERN = BrushStyle(C.Qt_Dense6Pattern()) - DENSE7PATTERN = BrushStyle(C.Qt_Dense7Pattern()) - HORPATTERN = BrushStyle(C.Qt_HorPattern()) - VERPATTERN = BrushStyle(C.Qt_VerPattern()) - CROSSPATTERN = BrushStyle(C.Qt_CrossPattern()) - BDIAGPATTERN = BrushStyle(C.Qt_BDiagPattern()) - FDIAGPATTERN = BrushStyle(C.Qt_FDiagPattern()) - DIAGCROSSPATTERN = BrushStyle(C.Qt_DiagCrossPattern()) - LINEARGRADIENTPATTERN = BrushStyle(C.Qt_LinearGradientPattern()) - CONICALGRADIENTPATTERN = BrushStyle(C.Qt_ConicalGradientPattern()) - RADIALGRADIENTPATTERN = BrushStyle(C.Qt_RadialGradientPattern()) - TEXTUREPATTERN = BrushStyle(C.Qt_TexturePattern()) -) - -type CaseSensitivity int - -var ( - CASEINSENSITIVE = CaseSensitivity(C.Qt_CaseInsensitive()) - CASESENSITIVE = CaseSensitivity(C.Qt_CaseSensitive()) -) - -type CheckState int - -var ( - UNCHECKED = CheckState(C.Qt_Unchecked()) - PARTIALLYCHECKED = CheckState(C.Qt_PartiallyChecked()) - CHECKED = CheckState(C.Qt_Checked()) -) - -type ClipOperation int - -var ( - NOCLIP = ClipOperation(C.Qt_NoClip()) - REPLACECLIP = ClipOperation(C.Qt_ReplaceClip()) - INTERSECTCLIP = ClipOperation(C.Qt_IntersectClip()) -) - -type ConnectionType int - -var ( - AUTOCONNECTION = ConnectionType(C.Qt_AutoConnection()) - DIRECTCONNECTION = ConnectionType(C.Qt_DirectConnection()) - QUEUEDCONNECTION = ConnectionType(C.Qt_QueuedConnection()) - BLOCKINGQUEUEDCONNECTION = ConnectionType(C.Qt_BlockingQueuedConnection()) - UNIQUECONNECTION = ConnectionType(C.Qt_UniqueConnection()) -) - -type ContextMenuPolicy int - -var ( - NOCONTEXTMENU = ContextMenuPolicy(C.Qt_NoContextMenu()) - PREVENTCONTEXTMENU = ContextMenuPolicy(C.Qt_PreventContextMenu()) - DEFAULTCONTEXTMENU = ContextMenuPolicy(C.Qt_DefaultContextMenu()) - ACTIONSCONTEXTMENU = ContextMenuPolicy(C.Qt_ActionsContextMenu()) - CUSTOMCONTEXTMENU = ContextMenuPolicy(C.Qt_CustomContextMenu()) -) - -type CoordinateSystem int - -var ( - DEVICECOORDINATES = CoordinateSystem(C.Qt_DeviceCoordinates()) - LOGICALCOORDINATES = CoordinateSystem(C.Qt_LogicalCoordinates()) -) - -type Corner int - -var ( - TOPLEFTCORNER = Corner(C.Qt_TopLeftCorner()) - TOPRIGHTCORNER = Corner(C.Qt_TopRightCorner()) - BOTTOMLEFTCORNER = Corner(C.Qt_BottomLeftCorner()) - BOTTOMRIGHTCORNER = Corner(C.Qt_BottomRightCorner()) -) - -type CursorMoveStyle int - -var ( - LOGICALMOVESTYLE = CursorMoveStyle(C.Qt_LogicalMoveStyle()) - VISUALMOVESTYLE = CursorMoveStyle(C.Qt_VisualMoveStyle()) -) - -type CursorShape int - -var ( - ARROWCURSOR = CursorShape(C.Qt_ArrowCursor()) - UPARROWCURSOR = CursorShape(C.Qt_UpArrowCursor()) - CROSSCURSOR = CursorShape(C.Qt_CrossCursor()) - WAITCURSOR = CursorShape(C.Qt_WaitCursor()) - IBEAMCURSOR = CursorShape(C.Qt_IBeamCursor()) - SIZEVERCURSOR = CursorShape(C.Qt_SizeVerCursor()) - SIZEHORCURSOR = CursorShape(C.Qt_SizeHorCursor()) - SIZEBDIAGCURSOR = CursorShape(C.Qt_SizeBDiagCursor()) - SIZEFDIAGCURSOR = CursorShape(C.Qt_SizeFDiagCursor()) - SIZEALLCURSOR = CursorShape(C.Qt_SizeAllCursor()) - BLANKCURSOR = CursorShape(C.Qt_BlankCursor()) - SPLITVCURSOR = CursorShape(C.Qt_SplitVCursor()) - SPLITHCURSOR = CursorShape(C.Qt_SplitHCursor()) - POINTINGHANDCURSOR = CursorShape(C.Qt_PointingHandCursor()) - FORBIDDENCURSOR = CursorShape(C.Qt_ForbiddenCursor()) - OPENHANDCURSOR = CursorShape(C.Qt_OpenHandCursor()) - CLOSEDHANDCURSOR = CursorShape(C.Qt_ClosedHandCursor()) - WHATSTHISCURSOR = CursorShape(C.Qt_WhatsThisCursor()) - BUSYCURSOR = CursorShape(C.Qt_BusyCursor()) - DRAGMOVECURSOR = CursorShape(C.Qt_DragMoveCursor()) - DRAGCOPYCURSOR = CursorShape(C.Qt_DragCopyCursor()) - DRAGLINKCURSOR = CursorShape(C.Qt_DragLinkCursor()) - BITMAPCURSOR = CursorShape(C.Qt_BitmapCursor()) -) - -type DateFormat int - -var ( - TEXTDATE = DateFormat(C.Qt_TextDate()) - ISODATE = DateFormat(C.Qt_ISODate()) - SYSTEMLOCALESHORTDATE = DateFormat(C.Qt_SystemLocaleShortDate()) - SYSTEMLOCALELONGDATE = DateFormat(C.Qt_SystemLocaleLongDate()) - DEFAULTLOCALESHORTDATE = DateFormat(C.Qt_DefaultLocaleShortDate()) - DEFAULTLOCALELONGDATE = DateFormat(C.Qt_DefaultLocaleLongDate()) - SYSTEMLOCALEDATE = DateFormat(C.Qt_SystemLocaleDate()) - LOCALEDATE = DateFormat(C.Qt_LocaleDate()) - LOCALDATE = DateFormat(C.Qt_LocalDate()) - RFC2822DATE = DateFormat(C.Qt_RFC2822Date()) -) - -type DayOfWeek int - -var ( - MONDAY = DayOfWeek(C.Qt_Monday()) - TUESDAY = DayOfWeek(C.Qt_Tuesday()) - WEDNESDAY = DayOfWeek(C.Qt_Wednesday()) - THURSDAY = DayOfWeek(C.Qt_Thursday()) - FRIDAY = DayOfWeek(C.Qt_Friday()) - SATURDAY = DayOfWeek(C.Qt_Saturday()) - SUNDAY = DayOfWeek(C.Qt_Sunday()) -) - -type DockWidgetArea int - -var ( - LEFTDOCKWIDGETAREA = DockWidgetArea(C.Qt_LeftDockWidgetArea()) - RIGHTDOCKWIDGETAREA = DockWidgetArea(C.Qt_RightDockWidgetArea()) - TOPDOCKWIDGETAREA = DockWidgetArea(C.Qt_TopDockWidgetArea()) - BOTTOMDOCKWIDGETAREA = DockWidgetArea(C.Qt_BottomDockWidgetArea()) - ALLDOCKWIDGETAREAS = DockWidgetArea(C.Qt_AllDockWidgetAreas()) - NODOCKWIDGETAREA = DockWidgetArea(C.Qt_NoDockWidgetArea()) -) - -type DropAction int - -var ( - COPYACTION = DropAction(C.Qt_CopyAction()) - MOVEACTION = DropAction(C.Qt_MoveAction()) - LINKACTION = DropAction(C.Qt_LinkAction()) - ACTIONMASK = DropAction(C.Qt_ActionMask()) - IGNOREACTION = DropAction(C.Qt_IgnoreAction()) - TARGETMOVEACTION = DropAction(C.Qt_TargetMoveAction()) -) - -type Edge int - -var ( - TOPEDGE = Edge(C.Qt_TopEdge()) - LEFTEDGE = Edge(C.Qt_LeftEdge()) - RIGHTEDGE = Edge(C.Qt_RightEdge()) - BOTTOMEDGE = Edge(C.Qt_BottomEdge()) -) - -type EventPriority int - -var ( - HIGHEVENTPRIORITY = EventPriority(C.Qt_HighEventPriority()) - NORMALEVENTPRIORITY = EventPriority(C.Qt_NormalEventPriority()) - LOWEVENTPRIORITY = EventPriority(C.Qt_LowEventPriority()) -) - -type FillRule int - -var ( - ODDEVENFILL = FillRule(C.Qt_OddEvenFill()) - WINDINGFILL = FillRule(C.Qt_WindingFill()) -) - -type FindChildOption int - -var ( - FINDDIRECTCHILDRENONLY = FindChildOption(C.Qt_FindDirectChildrenOnly()) - FINDCHILDRENRECURSIVELY = FindChildOption(C.Qt_FindChildrenRecursively()) -) - -type FocusPolicy int - -var ( - TABFOCUS = FocusPolicy(C.Qt_TabFocus()) - CLICKFOCUS = FocusPolicy(C.Qt_ClickFocus()) - STRONGFOCUS = FocusPolicy(C.Qt_StrongFocus()) - WHEELFOCUS = FocusPolicy(C.Qt_WheelFocus()) - NOFOCUS = FocusPolicy(C.Qt_NoFocus()) -) - -type FocusReason int - -var ( - MOUSEFOCUSREASON = FocusReason(C.Qt_MouseFocusReason()) - TABFOCUSREASON = FocusReason(C.Qt_TabFocusReason()) - BACKTABFOCUSREASON = FocusReason(C.Qt_BacktabFocusReason()) - ACTIVEWINDOWFOCUSREASON = FocusReason(C.Qt_ActiveWindowFocusReason()) - POPUPFOCUSREASON = FocusReason(C.Qt_PopupFocusReason()) - SHORTCUTFOCUSREASON = FocusReason(C.Qt_ShortcutFocusReason()) - MENUBARFOCUSREASON = FocusReason(C.Qt_MenuBarFocusReason()) - OTHERFOCUSREASON = FocusReason(C.Qt_OtherFocusReason()) -) - -type GestureFlag int - -var ( - DONTSTARTGESTUREONCHILDREN = GestureFlag(C.Qt_DontStartGestureOnChildren()) - RECEIVEPARTIALGESTURES = GestureFlag(C.Qt_ReceivePartialGestures()) - IGNOREDGESTURESPROPAGATETOPARENT = GestureFlag(C.Qt_IgnoredGesturesPropagateToParent()) -) - -type GestureState int - -var ( - GESTURESTARTED = GestureState(C.Qt_GestureStarted()) - GESTUREUPDATED = GestureState(C.Qt_GestureUpdated()) - GESTUREFINISHED = GestureState(C.Qt_GestureFinished()) - GESTURECANCELED = GestureState(C.Qt_GestureCanceled()) -) - -type GestureType int - -var ( - TAPGESTURE = GestureType(C.Qt_TapGesture()) - TAPANDHOLDGESTURE = GestureType(C.Qt_TapAndHoldGesture()) - PANGESTURE = GestureType(C.Qt_PanGesture()) - PINCHGESTURE = GestureType(C.Qt_PinchGesture()) - SWIPEGESTURE = GestureType(C.Qt_SwipeGesture()) - CUSTOMGESTURE = GestureType(C.Qt_CustomGesture()) -) - -type GlobalColor int - -var ( - WHITE = GlobalColor(C.Qt_white()) - BLACK = GlobalColor(C.Qt_black()) - RED = GlobalColor(C.Qt_red()) - DARKRED = GlobalColor(C.Qt_darkRed()) - GREEN = GlobalColor(C.Qt_green()) - DARKGREEN = GlobalColor(C.Qt_darkGreen()) - BLUE = GlobalColor(C.Qt_blue()) - DARKBLUE = GlobalColor(C.Qt_darkBlue()) - CYAN = GlobalColor(C.Qt_cyan()) - DARKCYAN = GlobalColor(C.Qt_darkCyan()) - MAGENTA = GlobalColor(C.Qt_magenta()) - DARKMAGENTA = GlobalColor(C.Qt_darkMagenta()) - YELLOW = GlobalColor(C.Qt_yellow()) - DARKYELLOW = GlobalColor(C.Qt_darkYellow()) - GRAY = GlobalColor(C.Qt_gray()) - DARKGRAY = GlobalColor(C.Qt_darkGray()) - LIGHTGRAY = GlobalColor(C.Qt_lightGray()) - TRANSPARENT = GlobalColor(C.Qt_transparent()) - COLOR0 = GlobalColor(C.Qt_color0()) - COLOR1 = GlobalColor(C.Qt_color1()) -) - -type HitTestAccuracy int - -var ( - EXACTHIT = HitTestAccuracy(C.Qt_ExactHit()) - FUZZYHIT = HitTestAccuracy(C.Qt_FuzzyHit()) -) - -type ImageConversionFlag int - -var ( - AUTOCOLOR = ImageConversionFlag(C.Qt_AutoColor()) - COLORONLY = ImageConversionFlag(C.Qt_ColorOnly()) - MONOONLY = ImageConversionFlag(C.Qt_MonoOnly()) - DIFFUSEDITHER = ImageConversionFlag(C.Qt_DiffuseDither()) - ORDEREDDITHER = ImageConversionFlag(C.Qt_OrderedDither()) - THRESHOLDDITHER = ImageConversionFlag(C.Qt_ThresholdDither()) - THRESHOLDALPHADITHER = ImageConversionFlag(C.Qt_ThresholdAlphaDither()) - ORDEREDALPHADITHER = ImageConversionFlag(C.Qt_OrderedAlphaDither()) - DIFFUSEALPHADITHER = ImageConversionFlag(C.Qt_DiffuseAlphaDither()) - PREFERDITHER = ImageConversionFlag(C.Qt_PreferDither()) - AVOIDDITHER = ImageConversionFlag(C.Qt_AvoidDither()) - NOOPAQUEDETECTION = ImageConversionFlag(C.Qt_NoOpaqueDetection()) - NOFORMATCONVERSION = ImageConversionFlag(C.Qt_NoFormatConversion()) -) - -type InputMethodHint int - -var ( - IMHNONE = InputMethodHint(C.Qt_ImhNone()) - IMHHIDDENTEXT = InputMethodHint(C.Qt_ImhHiddenText()) - IMHSENSITIVEDATA = InputMethodHint(C.Qt_ImhSensitiveData()) - IMHNOAUTOUPPERCASE = InputMethodHint(C.Qt_ImhNoAutoUppercase()) - IMHPREFERNUMBERS = InputMethodHint(C.Qt_ImhPreferNumbers()) - IMHPREFERUPPERCASE = InputMethodHint(C.Qt_ImhPreferUppercase()) - IMHPREFERLOWERCASE = InputMethodHint(C.Qt_ImhPreferLowercase()) - IMHNOPREDICTIVETEXT = InputMethodHint(C.Qt_ImhNoPredictiveText()) - IMHDATE = InputMethodHint(C.Qt_ImhDate()) - IMHTIME = InputMethodHint(C.Qt_ImhTime()) - IMHPREFERLATIN = InputMethodHint(C.Qt_ImhPreferLatin()) - IMHMULTILINE = InputMethodHint(C.Qt_ImhMultiLine()) - IMHDIGITSONLY = InputMethodHint(C.Qt_ImhDigitsOnly()) - IMHFORMATTEDNUMBERSONLY = InputMethodHint(C.Qt_ImhFormattedNumbersOnly()) - IMHUPPERCASEONLY = InputMethodHint(C.Qt_ImhUppercaseOnly()) - IMHLOWERCASEONLY = InputMethodHint(C.Qt_ImhLowercaseOnly()) - IMHDIALABLECHARACTERSONLY = InputMethodHint(C.Qt_ImhDialableCharactersOnly()) - IMHEMAILCHARACTERSONLY = InputMethodHint(C.Qt_ImhEmailCharactersOnly()) - IMHURLCHARACTERSONLY = InputMethodHint(C.Qt_ImhUrlCharactersOnly()) - IMHLATINONLY = InputMethodHint(C.Qt_ImhLatinOnly()) - IMHEXCLUSIVEINPUTMASK = InputMethodHint(C.Qt_ImhExclusiveInputMask()) -) - -type InputMethodQuery int - -var ( - IMENABLED = InputMethodQuery(C.Qt_ImEnabled()) - IMMICROFOCUS = InputMethodQuery(C.Qt_ImMicroFocus()) - IMCURSORRECTANGLE = InputMethodQuery(C.Qt_ImCursorRectangle()) - IMFONT = InputMethodQuery(C.Qt_ImFont()) - IMCURSORPOSITION = InputMethodQuery(C.Qt_ImCursorPosition()) - IMSURROUNDINGTEXT = InputMethodQuery(C.Qt_ImSurroundingText()) - IMCURRENTSELECTION = InputMethodQuery(C.Qt_ImCurrentSelection()) - IMMAXIMUMTEXTLENGTH = InputMethodQuery(C.Qt_ImMaximumTextLength()) - IMANCHORPOSITION = InputMethodQuery(C.Qt_ImAnchorPosition()) - IMHINTS = InputMethodQuery(C.Qt_ImHints()) - IMPREFERREDLANGUAGE = InputMethodQuery(C.Qt_ImPreferredLanguage()) - IMPLATFORMDATA = InputMethodQuery(C.Qt_ImPlatformData()) - IMABSOLUTEPOSITION = InputMethodQuery(C.Qt_ImAbsolutePosition()) - IMTEXTBEFORECURSOR = InputMethodQuery(C.Qt_ImTextBeforeCursor()) - IMTEXTAFTERCURSOR = InputMethodQuery(C.Qt_ImTextAfterCursor()) - IMQUERYINPUT = InputMethodQuery(C.Qt_ImQueryInput()) - IMQUERYALL = InputMethodQuery(C.Qt_ImQueryAll()) -) - -type ItemDataRole int - -var ( - DISPLAYROLE = ItemDataRole(C.Qt_DisplayRole()) - DECORATIONROLE = ItemDataRole(C.Qt_DecorationRole()) - EDITROLE = ItemDataRole(C.Qt_EditRole()) - TOOLTIPROLE = ItemDataRole(C.Qt_ToolTipRole()) - STATUSTIPROLE = ItemDataRole(C.Qt_StatusTipRole()) - WHATSTHISROLE = ItemDataRole(C.Qt_WhatsThisRole()) - SIZEHINTROLE = ItemDataRole(C.Qt_SizeHintRole()) - FONTROLE = ItemDataRole(C.Qt_FontRole()) - TEXTALIGNMENTROLE = ItemDataRole(C.Qt_TextAlignmentRole()) - BACKGROUNDROLE = ItemDataRole(C.Qt_BackgroundRole()) - BACKGROUNDCOLORROLE = ItemDataRole(C.Qt_BackgroundColorRole()) - FOREGROUNDROLE = ItemDataRole(C.Qt_ForegroundRole()) - TEXTCOLORROLE = ItemDataRole(C.Qt_TextColorRole()) - CHECKSTATEROLE = ItemDataRole(C.Qt_CheckStateRole()) - INITIALSORTORDERROLE = ItemDataRole(C.Qt_InitialSortOrderRole()) - ACCESSIBLETEXTROLE = ItemDataRole(C.Qt_AccessibleTextRole()) - ACCESSIBLEDESCRIPTIONROLE = ItemDataRole(C.Qt_AccessibleDescriptionRole()) - USERROLE = ItemDataRole(C.Qt_UserRole()) -) - -type ItemFlag int - -var ( - NOITEMFLAGS = ItemFlag(C.Qt_NoItemFlags()) - ITEMISSELECTABLE = ItemFlag(C.Qt_ItemIsSelectable()) - ITEMISEDITABLE = ItemFlag(C.Qt_ItemIsEditable()) - ITEMISDRAGENABLED = ItemFlag(C.Qt_ItemIsDragEnabled()) - ITEMISDROPENABLED = ItemFlag(C.Qt_ItemIsDropEnabled()) - ITEMISUSERCHECKABLE = ItemFlag(C.Qt_ItemIsUserCheckable()) - ITEMISENABLED = ItemFlag(C.Qt_ItemIsEnabled()) - ITEMISTRISTATE = ItemFlag(C.Qt_ItemIsTristate()) - ITEMNEVERHASCHILDREN = ItemFlag(C.Qt_ItemNeverHasChildren()) -) - -type ItemSelectionMode int - -var ( - CONTAINSITEMSHAPE = ItemSelectionMode(C.Qt_ContainsItemShape()) - INTERSECTSITEMSHAPE = ItemSelectionMode(C.Qt_IntersectsItemShape()) - CONTAINSITEMBOUNDINGRECT = ItemSelectionMode(C.Qt_ContainsItemBoundingRect()) - INTERSECTSITEMBOUNDINGRECT = ItemSelectionMode(C.Qt_IntersectsItemBoundingRect()) -) - -type Key int - -var ( - KEY_ESCAPE = Key(C.Qt_Key_Escape()) - KEY_TAB = Key(C.Qt_Key_Tab()) - KEY_BACKTAB = Key(C.Qt_Key_Backtab()) - KEY_BACKSPACE = Key(C.Qt_Key_Backspace()) - KEY_RETURN = Key(C.Qt_Key_Return()) - KEY_ENTER = Key(C.Qt_Key_Enter()) - KEY_INSERT = Key(C.Qt_Key_Insert()) - KEY_DELETE = Key(C.Qt_Key_Delete()) - KEY_PAUSE = Key(C.Qt_Key_Pause()) - KEY_PRINT = Key(C.Qt_Key_Print()) - KEY_SYSREQ = Key(C.Qt_Key_SysReq()) - KEY_CLEAR = Key(C.Qt_Key_Clear()) - KEY_HOME = Key(C.Qt_Key_Home()) - KEY_END = Key(C.Qt_Key_End()) - KEY_LEFT = Key(C.Qt_Key_Left()) - KEY_UP = Key(C.Qt_Key_Up()) - KEY_RIGHT = Key(C.Qt_Key_Right()) - KEY_DOWN = Key(C.Qt_Key_Down()) - KEY_PAGEUP = Key(C.Qt_Key_PageUp()) - KEY_PAGEDOWN = Key(C.Qt_Key_PageDown()) - KEY_SHIFT = Key(C.Qt_Key_Shift()) - KEY_CONTROL = Key(C.Qt_Key_Control()) - KEY_META = Key(C.Qt_Key_Meta()) - KEY_ALT = Key(C.Qt_Key_Alt()) - KEY_ALTGR = Key(C.Qt_Key_AltGr()) - KEY_CAPSLOCK = Key(C.Qt_Key_CapsLock()) - KEY_NUMLOCK = Key(C.Qt_Key_NumLock()) - KEY_SCROLLLOCK = Key(C.Qt_Key_ScrollLock()) - KEY_F1 = Key(C.Qt_Key_F1()) - KEY_F2 = Key(C.Qt_Key_F2()) - KEY_F3 = Key(C.Qt_Key_F3()) - KEY_F4 = Key(C.Qt_Key_F4()) - KEY_F5 = Key(C.Qt_Key_F5()) - KEY_F6 = Key(C.Qt_Key_F6()) - KEY_F7 = Key(C.Qt_Key_F7()) - KEY_F8 = Key(C.Qt_Key_F8()) - KEY_F9 = Key(C.Qt_Key_F9()) - KEY_F10 = Key(C.Qt_Key_F10()) - KEY_F11 = Key(C.Qt_Key_F11()) - KEY_F12 = Key(C.Qt_Key_F12()) - KEY_F13 = Key(C.Qt_Key_F13()) - KEY_F14 = Key(C.Qt_Key_F14()) - KEY_F15 = Key(C.Qt_Key_F15()) - KEY_F16 = Key(C.Qt_Key_F16()) - KEY_F17 = Key(C.Qt_Key_F17()) - KEY_F18 = Key(C.Qt_Key_F18()) - KEY_F19 = Key(C.Qt_Key_F19()) - KEY_F20 = Key(C.Qt_Key_F20()) - KEY_F21 = Key(C.Qt_Key_F21()) - KEY_F22 = Key(C.Qt_Key_F22()) - KEY_F23 = Key(C.Qt_Key_F23()) - KEY_F24 = Key(C.Qt_Key_F24()) - KEY_F25 = Key(C.Qt_Key_F25()) - KEY_F26 = Key(C.Qt_Key_F26()) - KEY_F27 = Key(C.Qt_Key_F27()) - KEY_F28 = Key(C.Qt_Key_F28()) - KEY_F29 = Key(C.Qt_Key_F29()) - KEY_F30 = Key(C.Qt_Key_F30()) - KEY_F31 = Key(C.Qt_Key_F31()) - KEY_F32 = Key(C.Qt_Key_F32()) - KEY_F33 = Key(C.Qt_Key_F33()) - KEY_F34 = Key(C.Qt_Key_F34()) - KEY_F35 = Key(C.Qt_Key_F35()) - KEY_SUPER_L = Key(C.Qt_Key_Super_L()) - KEY_SUPER_R = Key(C.Qt_Key_Super_R()) - KEY_MENU = Key(C.Qt_Key_Menu()) - KEY_HYPER_L = Key(C.Qt_Key_Hyper_L()) - KEY_HYPER_R = Key(C.Qt_Key_Hyper_R()) - KEY_HELP = Key(C.Qt_Key_Help()) - KEY_DIRECTION_L = Key(C.Qt_Key_Direction_L()) - KEY_DIRECTION_R = Key(C.Qt_Key_Direction_R()) - KEY_SPACE = Key(C.Qt_Key_Space()) - KEY_ANY = Key(C.Qt_Key_Any()) - KEY_EXCLAM = Key(C.Qt_Key_Exclam()) - KEY_QUOTEDBL = Key(C.Qt_Key_QuoteDbl()) - KEY_NUMBERSIGN = Key(C.Qt_Key_NumberSign()) - KEY_DOLLAR = Key(C.Qt_Key_Dollar()) - KEY_PERCENT = Key(C.Qt_Key_Percent()) - KEY_AMPERSAND = Key(C.Qt_Key_Ampersand()) - KEY_APOSTROPHE = Key(C.Qt_Key_Apostrophe()) - KEY_PARENLEFT = Key(C.Qt_Key_ParenLeft()) - KEY_PARENRIGHT = Key(C.Qt_Key_ParenRight()) - KEY_ASTERISK = Key(C.Qt_Key_Asterisk()) - KEY_PLUS = Key(C.Qt_Key_Plus()) - KEY_COMMA = Key(C.Qt_Key_Comma()) - KEY_MINUS = Key(C.Qt_Key_Minus()) - KEY_PERIOD = Key(C.Qt_Key_Period()) - KEY_SLASH = Key(C.Qt_Key_Slash()) - KEY_0 = Key(C.Qt_Key_0()) - KEY_1 = Key(C.Qt_Key_1()) - KEY_2 = Key(C.Qt_Key_2()) - KEY_3 = Key(C.Qt_Key_3()) - KEY_4 = Key(C.Qt_Key_4()) - KEY_5 = Key(C.Qt_Key_5()) - KEY_6 = Key(C.Qt_Key_6()) - KEY_7 = Key(C.Qt_Key_7()) - KEY_8 = Key(C.Qt_Key_8()) - KEY_9 = Key(C.Qt_Key_9()) - KEY_COLON = Key(C.Qt_Key_Colon()) - KEY_SEMICOLON = Key(C.Qt_Key_Semicolon()) - KEY_LESS = Key(C.Qt_Key_Less()) - KEY_EQUAL = Key(C.Qt_Key_Equal()) - KEY_GREATER = Key(C.Qt_Key_Greater()) - KEY_QUESTION = Key(C.Qt_Key_Question()) - KEY_AT = Key(C.Qt_Key_At()) - KEY_A = Key(C.Qt_Key_A()) - KEY_B = Key(C.Qt_Key_B()) - KEY_C = Key(C.Qt_Key_C()) - KEY_D = Key(C.Qt_Key_D()) - KEY_E = Key(C.Qt_Key_E()) - KEY_F = Key(C.Qt_Key_F()) - KEY_G = Key(C.Qt_Key_G()) - KEY_H = Key(C.Qt_Key_H()) - KEY_I = Key(C.Qt_Key_I()) - KEY_J = Key(C.Qt_Key_J()) - KEY_K = Key(C.Qt_Key_K()) - KEY_L = Key(C.Qt_Key_L()) - KEY_M = Key(C.Qt_Key_M()) - KEY_N = Key(C.Qt_Key_N()) - KEY_O = Key(C.Qt_Key_O()) - KEY_P = Key(C.Qt_Key_P()) - KEY_Q = Key(C.Qt_Key_Q()) - KEY_R = Key(C.Qt_Key_R()) - KEY_S = Key(C.Qt_Key_S()) - KEY_T = Key(C.Qt_Key_T()) - KEY_U = Key(C.Qt_Key_U()) - KEY_V = Key(C.Qt_Key_V()) - KEY_W = Key(C.Qt_Key_W()) - KEY_X = Key(C.Qt_Key_X()) - KEY_Y = Key(C.Qt_Key_Y()) - KEY_Z = Key(C.Qt_Key_Z()) - KEY_BRACKETLEFT = Key(C.Qt_Key_BracketLeft()) - KEY_BACKSLASH = Key(C.Qt_Key_Backslash()) - KEY_BRACKETRIGHT = Key(C.Qt_Key_BracketRight()) - KEY_ASCIICIRCUM = Key(C.Qt_Key_AsciiCircum()) - KEY_UNDERSCORE = Key(C.Qt_Key_Underscore()) - KEY_QUOTELEFT = Key(C.Qt_Key_QuoteLeft()) - KEY_BRACELEFT = Key(C.Qt_Key_BraceLeft()) - KEY_BAR = Key(C.Qt_Key_Bar()) - KEY_BRACERIGHT = Key(C.Qt_Key_BraceRight()) - KEY_ASCIITILDE = Key(C.Qt_Key_AsciiTilde()) - KEY_NOBREAKSPACE = Key(C.Qt_Key_nobreakspace()) - KEY_EXCLAMDOWN = Key(C.Qt_Key_exclamdown()) - KEY_CENT = Key(C.Qt_Key_cent()) - KEY_STERLING = Key(C.Qt_Key_sterling()) - KEY_CURRENCY = Key(C.Qt_Key_currency()) - KEY_YEN = Key(C.Qt_Key_yen()) - KEY_BROKENBAR = Key(C.Qt_Key_brokenbar()) - KEY_SECTION = Key(C.Qt_Key_section()) - KEY_DIAERESIS = Key(C.Qt_Key_diaeresis()) - KEY_COPYRIGHT = Key(C.Qt_Key_copyright()) - KEY_ORDFEMININE = Key(C.Qt_Key_ordfeminine()) - KEY_GUILLEMOTLEFT = Key(C.Qt_Key_guillemotleft()) - KEY_NOTSIGN = Key(C.Qt_Key_notsign()) - KEY_HYPHEN = Key(C.Qt_Key_hyphen()) - KEY_REGISTERED = Key(C.Qt_Key_registered()) - KEY_MACRON = Key(C.Qt_Key_macron()) - KEY_DEGREE = Key(C.Qt_Key_degree()) - KEY_PLUSMINUS = Key(C.Qt_Key_plusminus()) - KEY_TWOSUPERIOR = Key(C.Qt_Key_twosuperior()) - KEY_THREESUPERIOR = Key(C.Qt_Key_threesuperior()) - KEY_ACUTE = Key(C.Qt_Key_acute()) - KEY_MU = Key(C.Qt_Key_mu()) - KEY_PARAGRAPH = Key(C.Qt_Key_paragraph()) - KEY_PERIODCENTERED = Key(C.Qt_Key_periodcentered()) - KEY_CEDILLA = Key(C.Qt_Key_cedilla()) - KEY_ONESUPERIOR = Key(C.Qt_Key_onesuperior()) - KEY_MASCULINE = Key(C.Qt_Key_masculine()) - KEY_GUILLEMOTRIGHT = Key(C.Qt_Key_guillemotright()) - KEY_ONEQUARTER = Key(C.Qt_Key_onequarter()) - KEY_ONEHALF = Key(C.Qt_Key_onehalf()) - KEY_THREEQUARTERS = Key(C.Qt_Key_threequarters()) - KEY_QUESTIONDOWN = Key(C.Qt_Key_questiondown()) - KEY_AGRAVE = Key(C.Qt_Key_Agrave()) - KEY_AACUTE = Key(C.Qt_Key_Aacute()) - KEY_ACIRCUMFLEX = Key(C.Qt_Key_Acircumflex()) - KEY_ATILDE = Key(C.Qt_Key_Atilde()) - KEY_ADIAERESIS = Key(C.Qt_Key_Adiaeresis()) - KEY_ARING = Key(C.Qt_Key_Aring()) - KEY_AE = Key(C.Qt_Key_AE()) - KEY_CCEDILLA = Key(C.Qt_Key_Ccedilla()) - KEY_EGRAVE = Key(C.Qt_Key_Egrave()) - KEY_EACUTE = Key(C.Qt_Key_Eacute()) - KEY_ECIRCUMFLEX = Key(C.Qt_Key_Ecircumflex()) - KEY_EDIAERESIS = Key(C.Qt_Key_Ediaeresis()) - KEY_IGRAVE = Key(C.Qt_Key_Igrave()) - KEY_IACUTE = Key(C.Qt_Key_Iacute()) - KEY_ICIRCUMFLEX = Key(C.Qt_Key_Icircumflex()) - KEY_IDIAERESIS = Key(C.Qt_Key_Idiaeresis()) - KEY_ETH = Key(C.Qt_Key_ETH()) - KEY_NTILDE = Key(C.Qt_Key_Ntilde()) - KEY_OGRAVE = Key(C.Qt_Key_Ograve()) - KEY_OACUTE = Key(C.Qt_Key_Oacute()) - KEY_OCIRCUMFLEX = Key(C.Qt_Key_Ocircumflex()) - KEY_OTILDE = Key(C.Qt_Key_Otilde()) - KEY_ODIAERESIS = Key(C.Qt_Key_Odiaeresis()) - KEY_MULTIPLY = Key(C.Qt_Key_multiply()) - KEY_OOBLIQUE = Key(C.Qt_Key_Ooblique()) - KEY_UGRAVE = Key(C.Qt_Key_Ugrave()) - KEY_UACUTE = Key(C.Qt_Key_Uacute()) - KEY_UCIRCUMFLEX = Key(C.Qt_Key_Ucircumflex()) - KEY_UDIAERESIS = Key(C.Qt_Key_Udiaeresis()) - KEY_YACUTE = Key(C.Qt_Key_Yacute()) - KEY_THORN = Key(C.Qt_Key_THORN()) - KEY_SSHARP = Key(C.Qt_Key_ssharp()) - KEY_DIVISION = Key(C.Qt_Key_division()) - KEY_YDIAERESIS = Key(C.Qt_Key_ydiaeresis()) - KEY_MULTI_KEY = Key(C.Qt_Key_Multi_key()) - KEY_CODEINPUT = Key(C.Qt_Key_Codeinput()) - KEY_SINGLECANDIDATE = Key(C.Qt_Key_SingleCandidate()) - KEY_MULTIPLECANDIDATE = Key(C.Qt_Key_MultipleCandidate()) - KEY_PREVIOUSCANDIDATE = Key(C.Qt_Key_PreviousCandidate()) - KEY_MODE_SWITCH = Key(C.Qt_Key_Mode_switch()) - KEY_KANJI = Key(C.Qt_Key_Kanji()) - KEY_MUHENKAN = Key(C.Qt_Key_Muhenkan()) - KEY_HENKAN = Key(C.Qt_Key_Henkan()) - KEY_ROMAJI = Key(C.Qt_Key_Romaji()) - KEY_HIRAGANA = Key(C.Qt_Key_Hiragana()) - KEY_KATAKANA = Key(C.Qt_Key_Katakana()) - KEY_HIRAGANA_KATAKANA = Key(C.Qt_Key_Hiragana_Katakana()) - KEY_ZENKAKU = Key(C.Qt_Key_Zenkaku()) - KEY_HANKAKU = Key(C.Qt_Key_Hankaku()) - KEY_ZENKAKU_HANKAKU = Key(C.Qt_Key_Zenkaku_Hankaku()) - KEY_TOUROKU = Key(C.Qt_Key_Touroku()) - KEY_MASSYO = Key(C.Qt_Key_Massyo()) - KEY_KANA_LOCK = Key(C.Qt_Key_Kana_Lock()) - KEY_KANA_SHIFT = Key(C.Qt_Key_Kana_Shift()) - KEY_EISU_SHIFT = Key(C.Qt_Key_Eisu_Shift()) - KEY_EISU_TOGGLE = Key(C.Qt_Key_Eisu_toggle()) - KEY_HANGUL = Key(C.Qt_Key_Hangul()) - KEY_HANGUL_START = Key(C.Qt_Key_Hangul_Start()) - KEY_HANGUL_END = Key(C.Qt_Key_Hangul_End()) - KEY_HANGUL_HANJA = Key(C.Qt_Key_Hangul_Hanja()) - KEY_HANGUL_JAMO = Key(C.Qt_Key_Hangul_Jamo()) - KEY_HANGUL_ROMAJA = Key(C.Qt_Key_Hangul_Romaja()) - KEY_HANGUL_JEONJA = Key(C.Qt_Key_Hangul_Jeonja()) - KEY_HANGUL_BANJA = Key(C.Qt_Key_Hangul_Banja()) - KEY_HANGUL_PREHANJA = Key(C.Qt_Key_Hangul_PreHanja()) - KEY_HANGUL_POSTHANJA = Key(C.Qt_Key_Hangul_PostHanja()) - KEY_HANGUL_SPECIAL = Key(C.Qt_Key_Hangul_Special()) - KEY_DEAD_GRAVE = Key(C.Qt_Key_Dead_Grave()) - KEY_DEAD_ACUTE = Key(C.Qt_Key_Dead_Acute()) - KEY_DEAD_CIRCUMFLEX = Key(C.Qt_Key_Dead_Circumflex()) - KEY_DEAD_TILDE = Key(C.Qt_Key_Dead_Tilde()) - KEY_DEAD_MACRON = Key(C.Qt_Key_Dead_Macron()) - KEY_DEAD_BREVE = Key(C.Qt_Key_Dead_Breve()) - KEY_DEAD_ABOVEDOT = Key(C.Qt_Key_Dead_Abovedot()) - KEY_DEAD_DIAERESIS = Key(C.Qt_Key_Dead_Diaeresis()) - KEY_DEAD_ABOVERING = Key(C.Qt_Key_Dead_Abovering()) - KEY_DEAD_DOUBLEACUTE = Key(C.Qt_Key_Dead_Doubleacute()) - KEY_DEAD_CARON = Key(C.Qt_Key_Dead_Caron()) - KEY_DEAD_CEDILLA = Key(C.Qt_Key_Dead_Cedilla()) - KEY_DEAD_OGONEK = Key(C.Qt_Key_Dead_Ogonek()) - KEY_DEAD_IOTA = Key(C.Qt_Key_Dead_Iota()) - KEY_DEAD_VOICED_SOUND = Key(C.Qt_Key_Dead_Voiced_Sound()) - KEY_DEAD_SEMIVOICED_SOUND = Key(C.Qt_Key_Dead_Semivoiced_Sound()) - KEY_DEAD_BELOWDOT = Key(C.Qt_Key_Dead_Belowdot()) - KEY_DEAD_HOOK = Key(C.Qt_Key_Dead_Hook()) - KEY_DEAD_HORN = Key(C.Qt_Key_Dead_Horn()) - KEY_BACK = Key(C.Qt_Key_Back()) - KEY_FORWARD = Key(C.Qt_Key_Forward()) - KEY_STOP = Key(C.Qt_Key_Stop()) - KEY_REFRESH = Key(C.Qt_Key_Refresh()) - KEY_VOLUMEDOWN = Key(C.Qt_Key_VolumeDown()) - KEY_VOLUMEMUTE = Key(C.Qt_Key_VolumeMute()) - KEY_VOLUMEUP = Key(C.Qt_Key_VolumeUp()) - KEY_BASSBOOST = Key(C.Qt_Key_BassBoost()) - KEY_BASSUP = Key(C.Qt_Key_BassUp()) - KEY_BASSDOWN = Key(C.Qt_Key_BassDown()) - KEY_TREBLEUP = Key(C.Qt_Key_TrebleUp()) - KEY_TREBLEDOWN = Key(C.Qt_Key_TrebleDown()) - KEY_MEDIAPLAY = Key(C.Qt_Key_MediaPlay()) - KEY_MEDIASTOP = Key(C.Qt_Key_MediaStop()) - KEY_MEDIAPREVIOUS = Key(C.Qt_Key_MediaPrevious()) - KEY_MEDIANEXT = Key(C.Qt_Key_MediaNext()) - KEY_MEDIARECORD = Key(C.Qt_Key_MediaRecord()) - KEY_MEDIAPAUSE = Key(C.Qt_Key_MediaPause()) - KEY_MEDIATOGGLEPLAYPAUSE = Key(C.Qt_Key_MediaTogglePlayPause()) - KEY_HOMEPAGE = Key(C.Qt_Key_HomePage()) - KEY_FAVORITES = Key(C.Qt_Key_Favorites()) - KEY_SEARCH = Key(C.Qt_Key_Search()) - KEY_STANDBY = Key(C.Qt_Key_Standby()) - KEY_OPENURL = Key(C.Qt_Key_OpenUrl()) - KEY_LAUNCHMAIL = Key(C.Qt_Key_LaunchMail()) - KEY_LAUNCHMEDIA = Key(C.Qt_Key_LaunchMedia()) - KEY_LAUNCH0 = Key(C.Qt_Key_Launch0()) - KEY_LAUNCH1 = Key(C.Qt_Key_Launch1()) - KEY_LAUNCH2 = Key(C.Qt_Key_Launch2()) - KEY_LAUNCH3 = Key(C.Qt_Key_Launch3()) - KEY_LAUNCH4 = Key(C.Qt_Key_Launch4()) - KEY_LAUNCH5 = Key(C.Qt_Key_Launch5()) - KEY_LAUNCH6 = Key(C.Qt_Key_Launch6()) - KEY_LAUNCH7 = Key(C.Qt_Key_Launch7()) - KEY_LAUNCH8 = Key(C.Qt_Key_Launch8()) - KEY_LAUNCH9 = Key(C.Qt_Key_Launch9()) - KEY_LAUNCHA = Key(C.Qt_Key_LaunchA()) - KEY_LAUNCHB = Key(C.Qt_Key_LaunchB()) - KEY_LAUNCHC = Key(C.Qt_Key_LaunchC()) - KEY_LAUNCHD = Key(C.Qt_Key_LaunchD()) - KEY_LAUNCHE = Key(C.Qt_Key_LaunchE()) - KEY_LAUNCHF = Key(C.Qt_Key_LaunchF()) - KEY_LAUNCHG = Key(C.Qt_Key_LaunchG()) - KEY_LAUNCHH = Key(C.Qt_Key_LaunchH()) - KEY_MONBRIGHTNESSUP = Key(C.Qt_Key_MonBrightnessUp()) - KEY_MONBRIGHTNESSDOWN = Key(C.Qt_Key_MonBrightnessDown()) - KEY_KEYBOARDLIGHTONOFF = Key(C.Qt_Key_KeyboardLightOnOff()) - KEY_KEYBOARDBRIGHTNESSUP = Key(C.Qt_Key_KeyboardBrightnessUp()) - KEY_KEYBOARDBRIGHTNESSDOWN = Key(C.Qt_Key_KeyboardBrightnessDown()) - KEY_POWEROFF = Key(C.Qt_Key_PowerOff()) - KEY_WAKEUP = Key(C.Qt_Key_WakeUp()) - KEY_EJECT = Key(C.Qt_Key_Eject()) - KEY_SCREENSAVER = Key(C.Qt_Key_ScreenSaver()) - KEY_WWW = Key(C.Qt_Key_WWW()) - KEY_MEMO = Key(C.Qt_Key_Memo()) - KEY_LIGHTBULB = Key(C.Qt_Key_LightBulb()) - KEY_SHOP = Key(C.Qt_Key_Shop()) - KEY_HISTORY = Key(C.Qt_Key_History()) - KEY_ADDFAVORITE = Key(C.Qt_Key_AddFavorite()) - KEY_HOTLINKS = Key(C.Qt_Key_HotLinks()) - KEY_BRIGHTNESSADJUST = Key(C.Qt_Key_BrightnessAdjust()) - KEY_FINANCE = Key(C.Qt_Key_Finance()) - KEY_COMMUNITY = Key(C.Qt_Key_Community()) - KEY_AUDIOREWIND = Key(C.Qt_Key_AudioRewind()) - KEY_BACKFORWARD = Key(C.Qt_Key_BackForward()) - KEY_APPLICATIONLEFT = Key(C.Qt_Key_ApplicationLeft()) - KEY_APPLICATIONRIGHT = Key(C.Qt_Key_ApplicationRight()) - KEY_BOOK = Key(C.Qt_Key_Book()) - KEY_CD = Key(C.Qt_Key_CD()) - KEY_CALCULATOR = Key(C.Qt_Key_Calculator()) - KEY_TODOLIST = Key(C.Qt_Key_ToDoList()) - KEY_CLEARGRAB = Key(C.Qt_Key_ClearGrab()) - KEY_CLOSE = Key(C.Qt_Key_Close()) - KEY_COPY = Key(C.Qt_Key_Copy()) - KEY_CUT = Key(C.Qt_Key_Cut()) - KEY_DISPLAY = Key(C.Qt_Key_Display()) - KEY_DOS = Key(C.Qt_Key_DOS()) - KEY_DOCUMENTS = Key(C.Qt_Key_Documents()) - KEY_EXCEL = Key(C.Qt_Key_Excel()) - KEY_EXPLORER = Key(C.Qt_Key_Explorer()) - KEY_GAME = Key(C.Qt_Key_Game()) - KEY_GO = Key(C.Qt_Key_Go()) - KEY_ITOUCH = Key(C.Qt_Key_iTouch()) - KEY_LOGOFF = Key(C.Qt_Key_LogOff()) - KEY_MARKET = Key(C.Qt_Key_Market()) - KEY_MEETING = Key(C.Qt_Key_Meeting()) - KEY_MENUKB = Key(C.Qt_Key_MenuKB()) - KEY_MENUPB = Key(C.Qt_Key_MenuPB()) - KEY_MYSITES = Key(C.Qt_Key_MySites()) - KEY_NEWS = Key(C.Qt_Key_News()) - KEY_OFFICEHOME = Key(C.Qt_Key_OfficeHome()) - KEY_OPTION = Key(C.Qt_Key_Option()) - KEY_PASTE = Key(C.Qt_Key_Paste()) - KEY_PHONE = Key(C.Qt_Key_Phone()) - KEY_CALENDAR = Key(C.Qt_Key_Calendar()) - KEY_REPLY = Key(C.Qt_Key_Reply()) - KEY_RELOAD = Key(C.Qt_Key_Reload()) - KEY_ROTATEWINDOWS = Key(C.Qt_Key_RotateWindows()) - KEY_ROTATIONPB = Key(C.Qt_Key_RotationPB()) - KEY_ROTATIONKB = Key(C.Qt_Key_RotationKB()) - KEY_SAVE = Key(C.Qt_Key_Save()) - KEY_SEND = Key(C.Qt_Key_Send()) - KEY_SPELL = Key(C.Qt_Key_Spell()) - KEY_SPLITSCREEN = Key(C.Qt_Key_SplitScreen()) - KEY_SUPPORT = Key(C.Qt_Key_Support()) - KEY_TASKPANE = Key(C.Qt_Key_TaskPane()) - KEY_TERMINAL = Key(C.Qt_Key_Terminal()) - KEY_TOOLS = Key(C.Qt_Key_Tools()) - KEY_TRAVEL = Key(C.Qt_Key_Travel()) - KEY_VIDEO = Key(C.Qt_Key_Video()) - KEY_WORD = Key(C.Qt_Key_Word()) - KEY_XFER = Key(C.Qt_Key_Xfer()) - KEY_ZOOMIN = Key(C.Qt_Key_ZoomIn()) - KEY_ZOOMOUT = Key(C.Qt_Key_ZoomOut()) - KEY_AWAY = Key(C.Qt_Key_Away()) - KEY_MESSENGER = Key(C.Qt_Key_Messenger()) - KEY_WEBCAM = Key(C.Qt_Key_WebCam()) - KEY_MAILFORWARD = Key(C.Qt_Key_MailForward()) - KEY_PICTURES = Key(C.Qt_Key_Pictures()) - KEY_MUSIC = Key(C.Qt_Key_Music()) - KEY_BATTERY = Key(C.Qt_Key_Battery()) - KEY_BLUETOOTH = Key(C.Qt_Key_Bluetooth()) - KEY_WLAN = Key(C.Qt_Key_WLAN()) - KEY_UWB = Key(C.Qt_Key_UWB()) - KEY_AUDIOFORWARD = Key(C.Qt_Key_AudioForward()) - KEY_AUDIOREPEAT = Key(C.Qt_Key_AudioRepeat()) - KEY_AUDIORANDOMPLAY = Key(C.Qt_Key_AudioRandomPlay()) - KEY_SUBTITLE = Key(C.Qt_Key_Subtitle()) - KEY_AUDIOCYCLETRACK = Key(C.Qt_Key_AudioCycleTrack()) - KEY_TIME = Key(C.Qt_Key_Time()) - KEY_HIBERNATE = Key(C.Qt_Key_Hibernate()) - KEY_VIEW = Key(C.Qt_Key_View()) - KEY_TOPMENU = Key(C.Qt_Key_TopMenu()) - KEY_POWERDOWN = Key(C.Qt_Key_PowerDown()) - KEY_SUSPEND = Key(C.Qt_Key_Suspend()) - KEY_CONTRASTADJUST = Key(C.Qt_Key_ContrastAdjust()) - KEY_TOUCHPADTOGGLE = Key(C.Qt_Key_TouchpadToggle()) - KEY_TOUCHPADON = Key(C.Qt_Key_TouchpadOn()) - KEY_TOUCHPADOFF = Key(C.Qt_Key_TouchpadOff()) - KEY_MICMUTE = Key(C.Qt_Key_MicMute()) - KEY_RED = Key(C.Qt_Key_Red()) - KEY_GREEN = Key(C.Qt_Key_Green()) - KEY_YELLOW = Key(C.Qt_Key_Yellow()) - KEY_BLUE = Key(C.Qt_Key_Blue()) - KEY_CHANNELUP = Key(C.Qt_Key_ChannelUp()) - KEY_CHANNELDOWN = Key(C.Qt_Key_ChannelDown()) - KEY_MEDIALAST = Key(C.Qt_Key_MediaLast()) - KEY_UNKNOWN = Key(C.Qt_Key_unknown()) - KEY_CALL = Key(C.Qt_Key_Call()) - KEY_CAMERA = Key(C.Qt_Key_Camera()) - KEY_CAMERAFOCUS = Key(C.Qt_Key_CameraFocus()) - KEY_CONTEXT1 = Key(C.Qt_Key_Context1()) - KEY_CONTEXT2 = Key(C.Qt_Key_Context2()) - KEY_CONTEXT3 = Key(C.Qt_Key_Context3()) - KEY_CONTEXT4 = Key(C.Qt_Key_Context4()) - KEY_FLIP = Key(C.Qt_Key_Flip()) - KEY_HANGUP = Key(C.Qt_Key_Hangup()) - KEY_NO = Key(C.Qt_Key_No()) - KEY_SELECT = Key(C.Qt_Key_Select()) - KEY_YES = Key(C.Qt_Key_Yes()) - KEY_TOGGLECALLHANGUP = Key(C.Qt_Key_ToggleCallHangup()) - KEY_VOICEDIAL = Key(C.Qt_Key_VoiceDial()) - KEY_LASTNUMBERREDIAL = Key(C.Qt_Key_LastNumberRedial()) - KEY_EXECUTE = Key(C.Qt_Key_Execute()) - KEY_PRINTER = Key(C.Qt_Key_Printer()) - KEY_PLAY = Key(C.Qt_Key_Play()) - KEY_SLEEP = Key(C.Qt_Key_Sleep()) - KEY_ZOOM = Key(C.Qt_Key_Zoom()) - KEY_CANCEL = Key(C.Qt_Key_Cancel()) -) - -type KeyboardModifier int - -var ( - NOMODIFIER = KeyboardModifier(C.Qt_NoModifier()) - SHIFTMODIFIER = KeyboardModifier(C.Qt_ShiftModifier()) - CONTROLMODIFIER = KeyboardModifier(C.Qt_ControlModifier()) - ALTMODIFIER = KeyboardModifier(C.Qt_AltModifier()) - METAMODIFIER = KeyboardModifier(C.Qt_MetaModifier()) - KEYPADMODIFIER = KeyboardModifier(C.Qt_KeypadModifier()) - GROUPSWITCHMODIFIER = KeyboardModifier(C.Qt_GroupSwitchModifier()) -) - -type LayoutDirection int - -var ( - LEFTTORIGHT = LayoutDirection(C.Qt_LeftToRight()) - RIGHTTOLEFT = LayoutDirection(C.Qt_RightToLeft()) - LAYOUTDIRECTIONAUTO = LayoutDirection(C.Qt_LayoutDirectionAuto()) -) - -type MaskMode int - -var ( - MASKINCOLOR = MaskMode(C.Qt_MaskInColor()) - MASKOUTCOLOR = MaskMode(C.Qt_MaskOutColor()) -) - -type MatchFlag int - -var ( - MATCHEXACTLY = MatchFlag(C.Qt_MatchExactly()) - MATCHFIXEDSTRING = MatchFlag(C.Qt_MatchFixedString()) - MATCHCONTAINS = MatchFlag(C.Qt_MatchContains()) - MATCHSTARTSWITH = MatchFlag(C.Qt_MatchStartsWith()) - MATCHENDSWITH = MatchFlag(C.Qt_MatchEndsWith()) - MATCHCASESENSITIVE = MatchFlag(C.Qt_MatchCaseSensitive()) - MATCHREGEXP = MatchFlag(C.Qt_MatchRegExp()) - MATCHWILDCARD = MatchFlag(C.Qt_MatchWildcard()) - MATCHWRAP = MatchFlag(C.Qt_MatchWrap()) - MATCHRECURSIVE = MatchFlag(C.Qt_MatchRecursive()) -) - -type Modifier int - -var ( - SHIFT = Modifier(C.Qt_SHIFT()) - META = Modifier(C.Qt_META()) - CTRL = Modifier(C.Qt_CTRL()) - ALT = Modifier(C.Qt_ALT()) - UNICODE_ACCEL = Modifier(C.Qt_UNICODE_ACCEL()) -) - -type MouseButton int - -var ( - NOBUTTON = MouseButton(C.Qt_NoButton()) - ALLBUTTONS = MouseButton(C.Qt_AllButtons()) - LEFTBUTTON = MouseButton(C.Qt_LeftButton()) - RIGHTBUTTON = MouseButton(C.Qt_RightButton()) - MIDBUTTON = MouseButton(C.Qt_MidButton()) - MIDDLEBUTTON = MouseButton(C.Qt_MiddleButton()) - BACKBUTTON = MouseButton(C.Qt_BackButton()) - XBUTTON1 = MouseButton(C.Qt_XButton1()) - EXTRABUTTON1 = MouseButton(C.Qt_ExtraButton1()) - FORWARDBUTTON = MouseButton(C.Qt_ForwardButton()) - XBUTTON2 = MouseButton(C.Qt_XButton2()) - EXTRABUTTON2 = MouseButton(C.Qt_ExtraButton2()) - TASKBUTTON = MouseButton(C.Qt_TaskButton()) - EXTRABUTTON3 = MouseButton(C.Qt_ExtraButton3()) - EXTRABUTTON4 = MouseButton(C.Qt_ExtraButton4()) - EXTRABUTTON5 = MouseButton(C.Qt_ExtraButton5()) - EXTRABUTTON6 = MouseButton(C.Qt_ExtraButton6()) - EXTRABUTTON7 = MouseButton(C.Qt_ExtraButton7()) - EXTRABUTTON8 = MouseButton(C.Qt_ExtraButton8()) - EXTRABUTTON9 = MouseButton(C.Qt_ExtraButton9()) - EXTRABUTTON10 = MouseButton(C.Qt_ExtraButton10()) - EXTRABUTTON11 = MouseButton(C.Qt_ExtraButton11()) - EXTRABUTTON12 = MouseButton(C.Qt_ExtraButton12()) - EXTRABUTTON13 = MouseButton(C.Qt_ExtraButton13()) - EXTRABUTTON14 = MouseButton(C.Qt_ExtraButton14()) - EXTRABUTTON15 = MouseButton(C.Qt_ExtraButton15()) - EXTRABUTTON16 = MouseButton(C.Qt_ExtraButton16()) - EXTRABUTTON17 = MouseButton(C.Qt_ExtraButton17()) - EXTRABUTTON18 = MouseButton(C.Qt_ExtraButton18()) - EXTRABUTTON19 = MouseButton(C.Qt_ExtraButton19()) - EXTRABUTTON20 = MouseButton(C.Qt_ExtraButton20()) - EXTRABUTTON21 = MouseButton(C.Qt_ExtraButton21()) - EXTRABUTTON22 = MouseButton(C.Qt_ExtraButton22()) - EXTRABUTTON23 = MouseButton(C.Qt_ExtraButton23()) - EXTRABUTTON24 = MouseButton(C.Qt_ExtraButton24()) -) - -type MouseEventFlag int - -var ( - MOUSEEVENTCREATEDDOUBLECLICK = MouseEventFlag(C.Qt_MouseEventCreatedDoubleClick()) -) - -type MouseEventSource int - -var ( - MOUSEEVENTNOTSYNTHESIZED = MouseEventSource(C.Qt_MouseEventNotSynthesized()) - MOUSEEVENTSYNTHESIZEDBYSYSTEM = MouseEventSource(C.Qt_MouseEventSynthesizedBySystem()) - MOUSEEVENTSYNTHESIZEDBYQT = MouseEventSource(C.Qt_MouseEventSynthesizedByQt()) -) - -type NativeGestureType int - -var () - -type NavigationMode int - -var ( - NAVIGATIONMODENONE = NavigationMode(C.Qt_NavigationModeNone()) - NAVIGATIONMODEKEYPADTABORDER = NavigationMode(C.Qt_NavigationModeKeypadTabOrder()) - NAVIGATIONMODEKEYPADDIRECTIONAL = NavigationMode(C.Qt_NavigationModeKeypadDirectional()) - NAVIGATIONMODECURSORAUTO = NavigationMode(C.Qt_NavigationModeCursorAuto()) - NAVIGATIONMODECURSORFORCEVISIBLE = NavigationMode(C.Qt_NavigationModeCursorForceVisible()) -) - -type Orientation int - -var ( - HORIZONTAL = Orientation(C.Qt_Horizontal()) - VERTICAL = Orientation(C.Qt_Vertical()) -) - -type PenCapStyle int - -var ( - SQUARECAP = PenCapStyle(C.Qt_SquareCap()) - FLATCAP = PenCapStyle(C.Qt_FlatCap()) - ROUNDCAP = PenCapStyle(C.Qt_RoundCap()) -) - -type PenJoinStyle int - -var ( - BEVELJOIN = PenJoinStyle(C.Qt_BevelJoin()) - MITERJOIN = PenJoinStyle(C.Qt_MiterJoin()) - ROUNDJOIN = PenJoinStyle(C.Qt_RoundJoin()) - SVGMITERJOIN = PenJoinStyle(C.Qt_SvgMiterJoin()) -) - -type PenStyle int - -var ( - SOLIDLINE = PenStyle(C.Qt_SolidLine()) - DASHDOTLINE = PenStyle(C.Qt_DashDotLine()) - NOPEN = PenStyle(C.Qt_NoPen()) - DASHLINE = PenStyle(C.Qt_DashLine()) - DOTLINE = PenStyle(C.Qt_DotLine()) - DASHDOTDOTLINE = PenStyle(C.Qt_DashDotDotLine()) - CUSTOMDASHLINE = PenStyle(C.Qt_CustomDashLine()) -) - -type ScreenOrientation int - -var ( - PRIMARYORIENTATION = ScreenOrientation(C.Qt_PrimaryOrientation()) - LANDSCAPEORIENTATION = ScreenOrientation(C.Qt_LandscapeOrientation()) - PORTRAITORIENTATION = ScreenOrientation(C.Qt_PortraitOrientation()) - INVERTEDLANDSCAPEORIENTATION = ScreenOrientation(C.Qt_InvertedLandscapeOrientation()) - INVERTEDPORTRAITORIENTATION = ScreenOrientation(C.Qt_InvertedPortraitOrientation()) -) - -type ScrollBarPolicy int - -var ( - SCROLLBARASNEEDED = ScrollBarPolicy(C.Qt_ScrollBarAsNeeded()) - SCROLLBARALWAYSOFF = ScrollBarPolicy(C.Qt_ScrollBarAlwaysOff()) - SCROLLBARALWAYSON = ScrollBarPolicy(C.Qt_ScrollBarAlwaysOn()) -) - -type ScrollPhase int - -var ( - SCROLLBEGIN = ScrollPhase(C.Qt_ScrollBegin()) - SCROLLUPDATE = ScrollPhase(C.Qt_ScrollUpdate()) - SCROLLEND = ScrollPhase(C.Qt_ScrollEnd()) -) - -type ShortcutContext int - -var ( - WIDGETSHORTCUT = ShortcutContext(C.Qt_WidgetShortcut()) - WIDGETWITHCHILDRENSHORTCUT = ShortcutContext(C.Qt_WidgetWithChildrenShortcut()) - WINDOWSHORTCUT = ShortcutContext(C.Qt_WindowShortcut()) - APPLICATIONSHORTCUT = ShortcutContext(C.Qt_ApplicationShortcut()) -) - -type SizeHint int - -var ( - MINIMUMSIZE = SizeHint(C.Qt_MinimumSize()) - PREFERREDSIZE = SizeHint(C.Qt_PreferredSize()) - MAXIMUMSIZE = SizeHint(C.Qt_MaximumSize()) - MINIMUMDESCENT = SizeHint(C.Qt_MinimumDescent()) -) - -type SizeMode int - -var ( - ABSOLUTESIZE = SizeMode(C.Qt_AbsoluteSize()) - RELATIVESIZE = SizeMode(C.Qt_RelativeSize()) -) - -type SortOrder int - -var ( - ASCENDINGORDER = SortOrder(C.Qt_AscendingOrder()) - DESCENDINGORDER = SortOrder(C.Qt_DescendingOrder()) -) - -type TextElideMode int - -var ( - ELIDELEFT = TextElideMode(C.Qt_ElideLeft()) - ELIDERIGHT = TextElideMode(C.Qt_ElideRight()) - ELIDEMIDDLE = TextElideMode(C.Qt_ElideMiddle()) - ELIDENONE = TextElideMode(C.Qt_ElideNone()) -) - -type TextFlag int - -var ( - TEXTSINGLELINE = TextFlag(C.Qt_TextSingleLine()) - TEXTDONTCLIP = TextFlag(C.Qt_TextDontClip()) - TEXTEXPANDTABS = TextFlag(C.Qt_TextExpandTabs()) - TEXTSHOWMNEMONIC = TextFlag(C.Qt_TextShowMnemonic()) - TEXTWORDWRAP = TextFlag(C.Qt_TextWordWrap()) - TEXTWRAPANYWHERE = TextFlag(C.Qt_TextWrapAnywhere()) - TEXTHIDEMNEMONIC = TextFlag(C.Qt_TextHideMnemonic()) - TEXTDONTPRINT = TextFlag(C.Qt_TextDontPrint()) - TEXTINCLUDETRAILINGSPACES = TextFlag(C.Qt_TextIncludeTrailingSpaces()) - TEXTJUSTIFICATIONFORCED = TextFlag(C.Qt_TextJustificationForced()) -) - -type TextFormat int - -var ( - PLAINTEXT = TextFormat(C.Qt_PlainText()) - RICHTEXT = TextFormat(C.Qt_RichText()) - AUTOTEXT = TextFormat(C.Qt_AutoText()) -) - -type TextInteractionFlag int - -var ( - NOTEXTINTERACTION = TextInteractionFlag(C.Qt_NoTextInteraction()) - TEXTSELECTABLEBYMOUSE = TextInteractionFlag(C.Qt_TextSelectableByMouse()) - TEXTSELECTABLEBYKEYBOARD = TextInteractionFlag(C.Qt_TextSelectableByKeyboard()) - LINKSACCESSIBLEBYMOUSE = TextInteractionFlag(C.Qt_LinksAccessibleByMouse()) - LINKSACCESSIBLEBYKEYBOARD = TextInteractionFlag(C.Qt_LinksAccessibleByKeyboard()) - TEXTEDITABLE = TextInteractionFlag(C.Qt_TextEditable()) - TEXTEDITORINTERACTION = TextInteractionFlag(C.Qt_TextEditorInteraction()) - TEXTBROWSERINTERACTION = TextInteractionFlag(C.Qt_TextBrowserInteraction()) -) - -type TileRule int - -var ( - STRETCHTILE = TileRule(C.Qt_StretchTile()) - REPEATTILE = TileRule(C.Qt_RepeatTile()) - ROUNDTILE = TileRule(C.Qt_RoundTile()) -) - -type TimeSpec int - -var ( - LOCALTIME = TimeSpec(C.Qt_LocalTime()) - UTC = TimeSpec(C.Qt_UTC()) - OFFSETFROMUTC = TimeSpec(C.Qt_OffsetFromUTC()) - TIMEZONE = TimeSpec(C.Qt_TimeZone()) -) - -type TimerType int - -var ( - PRECISETIMER = TimerType(C.Qt_PreciseTimer()) - COARSETIMER = TimerType(C.Qt_CoarseTimer()) - VERYCOARSETIMER = TimerType(C.Qt_VeryCoarseTimer()) -) - -type ToolBarArea int - -var ( - LEFTTOOLBARAREA = ToolBarArea(C.Qt_LeftToolBarArea()) - RIGHTTOOLBARAREA = ToolBarArea(C.Qt_RightToolBarArea()) - TOPTOOLBARAREA = ToolBarArea(C.Qt_TopToolBarArea()) - BOTTOMTOOLBARAREA = ToolBarArea(C.Qt_BottomToolBarArea()) - ALLTOOLBARAREAS = ToolBarArea(C.Qt_AllToolBarAreas()) - NOTOOLBARAREA = ToolBarArea(C.Qt_NoToolBarArea()) -) - -type ToolButtonStyle int - -var ( - TOOLBUTTONICONONLY = ToolButtonStyle(C.Qt_ToolButtonIconOnly()) - TOOLBUTTONTEXTONLY = ToolButtonStyle(C.Qt_ToolButtonTextOnly()) - TOOLBUTTONTEXTBESIDEICON = ToolButtonStyle(C.Qt_ToolButtonTextBesideIcon()) - TOOLBUTTONTEXTUNDERICON = ToolButtonStyle(C.Qt_ToolButtonTextUnderIcon()) - TOOLBUTTONFOLLOWSTYLE = ToolButtonStyle(C.Qt_ToolButtonFollowStyle()) -) - -type TouchPointState int - -var ( - TOUCHPOINTPRESSED = TouchPointState(C.Qt_TouchPointPressed()) - TOUCHPOINTMOVED = TouchPointState(C.Qt_TouchPointMoved()) - TOUCHPOINTSTATIONARY = TouchPointState(C.Qt_TouchPointStationary()) - TOUCHPOINTRELEASED = TouchPointState(C.Qt_TouchPointReleased()) -) - -type TransformationMode int - -var ( - FASTTRANSFORMATION = TransformationMode(C.Qt_FastTransformation()) - SMOOTHTRANSFORMATION = TransformationMode(C.Qt_SmoothTransformation()) -) - -type UIEffect int - -var ( - UI_ANIMATEMENU = UIEffect(C.Qt_UI_AnimateMenu()) - UI_FADEMENU = UIEffect(C.Qt_UI_FadeMenu()) - UI_ANIMATECOMBO = UIEffect(C.Qt_UI_AnimateCombo()) - UI_ANIMATETOOLTIP = UIEffect(C.Qt_UI_AnimateTooltip()) - UI_FADETOOLTIP = UIEffect(C.Qt_UI_FadeTooltip()) - UI_ANIMATETOOLBOX = UIEffect(C.Qt_UI_AnimateToolBox()) -) - -type WhiteSpaceMode int - -var ( - WHITESPACENORMAL = WhiteSpaceMode(C.Qt_WhiteSpaceNormal()) - WHITESPACEPRE = WhiteSpaceMode(C.Qt_WhiteSpacePre()) - WHITESPACENOWRAP = WhiteSpaceMode(C.Qt_WhiteSpaceNoWrap()) -) - -type WidgetAttribute int - -var ( - WA_ACCEPTDROPS = WidgetAttribute(C.Qt_WA_AcceptDrops()) - WA_ALWAYSSHOWTOOLTIPS = WidgetAttribute(C.Qt_WA_AlwaysShowToolTips()) - WA_CONTENTSPROPAGATED = WidgetAttribute(C.Qt_WA_ContentsPropagated()) - WA_CUSTOMWHATSTHIS = WidgetAttribute(C.Qt_WA_CustomWhatsThis()) - WA_DELETEONCLOSE = WidgetAttribute(C.Qt_WA_DeleteOnClose()) - WA_DISABLED = WidgetAttribute(C.Qt_WA_Disabled()) - WA_DONTSHOWONSCREEN = WidgetAttribute(C.Qt_WA_DontShowOnScreen()) - WA_FORCEDISABLED = WidgetAttribute(C.Qt_WA_ForceDisabled()) - WA_FORCEUPDATESDISABLED = WidgetAttribute(C.Qt_WA_ForceUpdatesDisabled()) - WA_GROUPLEADER = WidgetAttribute(C.Qt_WA_GroupLeader()) - WA_HOVER = WidgetAttribute(C.Qt_WA_Hover()) - WA_INPUTMETHODENABLED = WidgetAttribute(C.Qt_WA_InputMethodEnabled()) - WA_KEYBOARDFOCUSCHANGE = WidgetAttribute(C.Qt_WA_KeyboardFocusChange()) - WA_KEYCOMPRESSION = WidgetAttribute(C.Qt_WA_KeyCompression()) - WA_LAYOUTONENTIRERECT = WidgetAttribute(C.Qt_WA_LayoutOnEntireRect()) - WA_LAYOUTUSESWIDGETRECT = WidgetAttribute(C.Qt_WA_LayoutUsesWidgetRect()) - WA_MACNOCLICKTHROUGH = WidgetAttribute(C.Qt_WA_MacNoClickThrough()) - WA_MACOPAQUESIZEGRIP = WidgetAttribute(C.Qt_WA_MacOpaqueSizeGrip()) - WA_MACSHOWFOCUSRECT = WidgetAttribute(C.Qt_WA_MacShowFocusRect()) - WA_MACNORMALSIZE = WidgetAttribute(C.Qt_WA_MacNormalSize()) - WA_MACSMALLSIZE = WidgetAttribute(C.Qt_WA_MacSmallSize()) - WA_MACMINISIZE = WidgetAttribute(C.Qt_WA_MacMiniSize()) - WA_MACVARIABLESIZE = WidgetAttribute(C.Qt_WA_MacVariableSize()) - WA_MACBRUSHEDMETAL = WidgetAttribute(C.Qt_WA_MacBrushedMetal()) - WA_MAPPED = WidgetAttribute(C.Qt_WA_Mapped()) - WA_MOUSENOMASK = WidgetAttribute(C.Qt_WA_MouseNoMask()) - WA_MOUSETRACKING = WidgetAttribute(C.Qt_WA_MouseTracking()) - WA_MOVED = WidgetAttribute(C.Qt_WA_Moved()) - WA_MSWINDOWSUSEDIRECT3D = WidgetAttribute(C.Qt_WA_MSWindowsUseDirect3D()) - WA_NOBACKGROUND = WidgetAttribute(C.Qt_WA_NoBackground()) - WA_NOCHILDEVENTSFORPARENT = WidgetAttribute(C.Qt_WA_NoChildEventsForParent()) - WA_NOCHILDEVENTSFROMCHILDREN = WidgetAttribute(C.Qt_WA_NoChildEventsFromChildren()) - WA_NOMOUSEREPLAY = WidgetAttribute(C.Qt_WA_NoMouseReplay()) - WA_NOMOUSEPROPAGATION = WidgetAttribute(C.Qt_WA_NoMousePropagation()) - WA_TRANSPARENTFORMOUSEEVENTS = WidgetAttribute(C.Qt_WA_TransparentForMouseEvents()) - WA_NOSYSTEMBACKGROUND = WidgetAttribute(C.Qt_WA_NoSystemBackground()) - WA_OPAQUEPAINTEVENT = WidgetAttribute(C.Qt_WA_OpaquePaintEvent()) - WA_OUTSIDEWSRANGE = WidgetAttribute(C.Qt_WA_OutsideWSRange()) - WA_PAINTONSCREEN = WidgetAttribute(C.Qt_WA_PaintOnScreen()) - WA_PAINTUNCLIPPED = WidgetAttribute(C.Qt_WA_PaintUnclipped()) - WA_PENDINGMOVEEVENT = WidgetAttribute(C.Qt_WA_PendingMoveEvent()) - WA_PENDINGRESIZEEVENT = WidgetAttribute(C.Qt_WA_PendingResizeEvent()) - WA_QUITONCLOSE = WidgetAttribute(C.Qt_WA_QuitOnClose()) - WA_RESIZED = WidgetAttribute(C.Qt_WA_Resized()) - WA_RIGHTTOLEFT = WidgetAttribute(C.Qt_WA_RightToLeft()) - WA_SETCURSOR = WidgetAttribute(C.Qt_WA_SetCursor()) - WA_SETFONT = WidgetAttribute(C.Qt_WA_SetFont()) - WA_SETPALETTE = WidgetAttribute(C.Qt_WA_SetPalette()) - WA_SETSTYLE = WidgetAttribute(C.Qt_WA_SetStyle()) - WA_SHOWMODAL = WidgetAttribute(C.Qt_WA_ShowModal()) - WA_STATICCONTENTS = WidgetAttribute(C.Qt_WA_StaticContents()) - WA_STYLESHEET = WidgetAttribute(C.Qt_WA_StyleSheet()) - WA_TRANSLUCENTBACKGROUND = WidgetAttribute(C.Qt_WA_TranslucentBackground()) - WA_UNDERMOUSE = WidgetAttribute(C.Qt_WA_UnderMouse()) - WA_UPDATESDISABLED = WidgetAttribute(C.Qt_WA_UpdatesDisabled()) - WA_WINDOWMODIFIED = WidgetAttribute(C.Qt_WA_WindowModified()) - WA_WINDOWPROPAGATION = WidgetAttribute(C.Qt_WA_WindowPropagation()) - WA_MACALWAYSSHOWTOOLWINDOW = WidgetAttribute(C.Qt_WA_MacAlwaysShowToolWindow()) - WA_SETLOCALE = WidgetAttribute(C.Qt_WA_SetLocale()) - WA_STYLEDBACKGROUND = WidgetAttribute(C.Qt_WA_StyledBackground()) - WA_SHOWWITHOUTACTIVATING = WidgetAttribute(C.Qt_WA_ShowWithoutActivating()) - WA_NATIVEWINDOW = WidgetAttribute(C.Qt_WA_NativeWindow()) - WA_DONTCREATENATIVEANCESTORS = WidgetAttribute(C.Qt_WA_DontCreateNativeAncestors()) - WA_X11NETWMWINDOWTYPEDESKTOP = WidgetAttribute(C.Qt_WA_X11NetWmWindowTypeDesktop()) - WA_X11NETWMWINDOWTYPEDOCK = WidgetAttribute(C.Qt_WA_X11NetWmWindowTypeDock()) - WA_X11NETWMWINDOWTYPETOOLBAR = WidgetAttribute(C.Qt_WA_X11NetWmWindowTypeToolBar()) - WA_X11NETWMWINDOWTYPEMENU = WidgetAttribute(C.Qt_WA_X11NetWmWindowTypeMenu()) - WA_X11NETWMWINDOWTYPEUTILITY = WidgetAttribute(C.Qt_WA_X11NetWmWindowTypeUtility()) - WA_X11NETWMWINDOWTYPESPLASH = WidgetAttribute(C.Qt_WA_X11NetWmWindowTypeSplash()) - WA_X11NETWMWINDOWTYPEDIALOG = WidgetAttribute(C.Qt_WA_X11NetWmWindowTypeDialog()) - WA_X11NETWMWINDOWTYPEDROPDOWNMENU = WidgetAttribute(C.Qt_WA_X11NetWmWindowTypeDropDownMenu()) - WA_X11NETWMWINDOWTYPEPOPUPMENU = WidgetAttribute(C.Qt_WA_X11NetWmWindowTypePopupMenu()) - WA_X11NETWMWINDOWTYPETOOLTIP = WidgetAttribute(C.Qt_WA_X11NetWmWindowTypeToolTip()) - WA_X11NETWMWINDOWTYPENOTIFICATION = WidgetAttribute(C.Qt_WA_X11NetWmWindowTypeNotification()) - WA_X11NETWMWINDOWTYPECOMBO = WidgetAttribute(C.Qt_WA_X11NetWmWindowTypeCombo()) - WA_X11NETWMWINDOWTYPEDND = WidgetAttribute(C.Qt_WA_X11NetWmWindowTypeDND()) - WA_MACFRAMEWORKSCALED = WidgetAttribute(C.Qt_WA_MacFrameworkScaled()) - WA_ACCEPTTOUCHEVENTS = WidgetAttribute(C.Qt_WA_AcceptTouchEvents()) - WA_TOUCHPADACCEPTSINGLETOUCHEVENTS = WidgetAttribute(C.Qt_WA_TouchPadAcceptSingleTouchEvents()) - WA_X11DONOTACCEPTFOCUS = WidgetAttribute(C.Qt_WA_X11DoNotAcceptFocus()) -) - -type WindowFrameSection int - -var ( - NOSECTION = WindowFrameSection(C.Qt_NoSection()) - LEFTSECTION = WindowFrameSection(C.Qt_LeftSection()) - TOPLEFTSECTION = WindowFrameSection(C.Qt_TopLeftSection()) - TOPSECTION = WindowFrameSection(C.Qt_TopSection()) - TOPRIGHTSECTION = WindowFrameSection(C.Qt_TopRightSection()) - RIGHTSECTION = WindowFrameSection(C.Qt_RightSection()) - BOTTOMRIGHTSECTION = WindowFrameSection(C.Qt_BottomRightSection()) - BOTTOMSECTION = WindowFrameSection(C.Qt_BottomSection()) - BOTTOMLEFTSECTION = WindowFrameSection(C.Qt_BottomLeftSection()) - TITLEBARAREA = WindowFrameSection(C.Qt_TitleBarArea()) -) - -type WindowModality int - -var ( - NONMODAL = WindowModality(C.Qt_NonModal()) - WINDOWMODAL = WindowModality(C.Qt_WindowModal()) - APPLICATIONMODAL = WindowModality(C.Qt_ApplicationModal()) -) - -type WindowState int - -var ( - WINDOWNOSTATE = WindowState(C.Qt_WindowNoState()) - WINDOWMINIMIZED = WindowState(C.Qt_WindowMinimized()) - WINDOWMAXIMIZED = WindowState(C.Qt_WindowMaximized()) - WINDOWFULLSCREEN = WindowState(C.Qt_WindowFullScreen()) - WINDOWACTIVE = WindowState(C.Qt_WindowActive()) -) - -type WindowType int - -var ( - WIDGET = WindowType(C.Qt_Widget()) - WINDOW = WindowType(C.Qt_Window()) - DIALOG = WindowType(C.Qt_Dialog()) - SHEET = WindowType(C.Qt_Sheet()) - DRAWER = WindowType(C.Qt_Drawer()) - POPUP = WindowType(C.Qt_Popup()) - TOOL = WindowType(C.Qt_Tool()) - TOOLTIP = WindowType(C.Qt_ToolTip()) - SPLASHSCREEN = WindowType(C.Qt_SplashScreen()) - DESKTOP = WindowType(C.Qt_Desktop()) - SUBWINDOW = WindowType(C.Qt_SubWindow()) - FOREIGNWINDOW = WindowType(C.Qt_ForeignWindow()) - COVERWINDOW = WindowType(C.Qt_CoverWindow()) - MSWINDOWSFIXEDSIZEDIALOGHINT = WindowType(C.Qt_MSWindowsFixedSizeDialogHint()) - MSWINDOWSOWNDC = WindowType(C.Qt_MSWindowsOwnDC()) - BYPASSWINDOWMANAGERHINT = WindowType(C.Qt_BypassWindowManagerHint()) - X11BYPASSWINDOWMANAGERHINT = WindowType(C.Qt_X11BypassWindowManagerHint()) - FRAMELESSWINDOWHINT = WindowType(C.Qt_FramelessWindowHint()) - NODROPSHADOWWINDOWHINT = WindowType(C.Qt_NoDropShadowWindowHint()) - CUSTOMIZEWINDOWHINT = WindowType(C.Qt_CustomizeWindowHint()) - WINDOWTITLEHINT = WindowType(C.Qt_WindowTitleHint()) - WINDOWSYSTEMMENUHINT = WindowType(C.Qt_WindowSystemMenuHint()) - WINDOWMINIMIZEBUTTONHINT = WindowType(C.Qt_WindowMinimizeButtonHint()) - WINDOWMAXIMIZEBUTTONHINT = WindowType(C.Qt_WindowMaximizeButtonHint()) - WINDOWMINMAXBUTTONSHINT = WindowType(C.Qt_WindowMinMaxButtonsHint()) - WINDOWCLOSEBUTTONHINT = WindowType(C.Qt_WindowCloseButtonHint()) - WINDOWCONTEXTHELPBUTTONHINT = WindowType(C.Qt_WindowContextHelpButtonHint()) - MACWINDOWTOOLBARBUTTONHINT = WindowType(C.Qt_MacWindowToolBarButtonHint()) - WINDOWFULLSCREENBUTTONHINT = WindowType(C.Qt_WindowFullscreenButtonHint()) - BYPASSGRAPHICSPROXYWIDGET = WindowType(C.Qt_BypassGraphicsProxyWidget()) - WINDOWSHADEBUTTONHINT = WindowType(C.Qt_WindowShadeButtonHint()) - WINDOWSTAYSONTOPHINT = WindowType(C.Qt_WindowStaysOnTopHint()) - WINDOWSTAYSONBOTTOMHINT = WindowType(C.Qt_WindowStaysOnBottomHint()) - WINDOWOKBUTTONHINT = WindowType(C.Qt_WindowOkButtonHint()) - WINDOWCANCELBUTTONHINT = WindowType(C.Qt_WindowCancelButtonHint()) - WINDOWTRANSPARENTFORINPUT = WindowType(C.Qt_WindowTransparentForInput()) - WINDOWOVERRIDESSYSTEMGESTURES = WindowType(C.Qt_WindowOverridesSystemGestures()) - WINDOWDOESNOTACCEPTFOCUS = WindowType(C.Qt_WindowDoesNotAcceptFocus()) - WINDOWTYPE_MASK = WindowType(C.Qt_WindowType_Mask()) -) diff --git a/qt.h b/qt.h deleted file mode 100644 index 6a4f2b9d..00000000 --- a/qt.h +++ /dev/null @@ -1,1194 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -// AlignmentFlag -int Qt_AlignLeft(); -int Qt_AlignRight(); -int Qt_AlignHCenter(); -int Qt_AlignJustify(); -int Qt_AlignTop(); -int Qt_AlignBottom(); -int Qt_AlignVCenter(); -int Qt_AlignBaseline(); -int Qt_AlignCenter(); -int Qt_AlignAbsolute(); -int Qt_AlignLeading(); -int Qt_AlignTrailing(); -int Qt_AlignHorizontal_Mask(); -int Qt_AlignVertical_Mask(); - -// AnchorPoint -int Qt_AnchorLeft(); -int Qt_AnchorHorizontalCenter(); -int Qt_AnchorRight(); -int Qt_AnchorTop(); -int Qt_AnchorVerticalCenter(); -int Qt_AnchorBottom(); - -// ApplicationAttribute -int Qt_AA_DontShowIconsInMenus(); -int Qt_AA_NativeWindows(); -int Qt_AA_DontCreateNativeWidgetSiblings(); -int Qt_AA_MacPluginApplication(); -int Qt_AA_DontUseNativeMenuBar(); -int Qt_AA_MacDontSwapCtrlAndMeta(); -int Qt_AA_Use96Dpi(); -int Qt_AA_X11InitThreads(); -int Qt_AA_SynthesizeTouchForUnhandledMouseEvents(); -int Qt_AA_SynthesizeMouseForUnhandledTouchEvents(); -int Qt_AA_UseHighDpiPixmaps(); -int Qt_AA_ForceRasterWidgets(); -int Qt_AA_UseDesktopOpenGL(); -int Qt_AA_UseOpenGLES(); -int Qt_AA_ImmediateWidgetCreation(); -int Qt_AA_MSWindowsUseDirect3DByDefault(); - -// ApplicationState -int Qt_ApplicationSuspended(); -int Qt_ApplicationHidden(); -int Qt_ApplicationInactive(); -int Qt_ApplicationActive(); - -// ArrowType -int Qt_NoArrow(); -int Qt_UpArrow(); -int Qt_DownArrow(); -int Qt_LeftArrow(); -int Qt_RightArrow(); - -// AspectRatioMode -int Qt_IgnoreAspectRatio(); -int Qt_KeepAspectRatio(); -int Qt_KeepAspectRatioByExpanding(); - -// Axis -int Qt_XAxis(); -int Qt_YAxis(); -int Qt_ZAxis(); - -// BGMode -int Qt_TransparentMode(); -int Qt_OpaqueMode(); - -// BrushStyle -int Qt_NoBrush(); -int Qt_SolidPattern(); -int Qt_Dense1Pattern(); -int Qt_Dense2Pattern(); -int Qt_Dense3Pattern(); -int Qt_Dense4Pattern(); -int Qt_Dense5Pattern(); -int Qt_Dense6Pattern(); -int Qt_Dense7Pattern(); -int Qt_HorPattern(); -int Qt_VerPattern(); -int Qt_CrossPattern(); -int Qt_BDiagPattern(); -int Qt_FDiagPattern(); -int Qt_DiagCrossPattern(); -int Qt_LinearGradientPattern(); -int Qt_ConicalGradientPattern(); -int Qt_RadialGradientPattern(); -int Qt_TexturePattern(); - -// CaseSensitivity -int Qt_CaseInsensitive(); -int Qt_CaseSensitive(); - -// CheckState -int Qt_Unchecked(); -int Qt_PartiallyChecked(); -int Qt_Checked(); - -// ClipOperation -int Qt_NoClip(); -int Qt_ReplaceClip(); -int Qt_IntersectClip(); - -// ConnectionType -int Qt_AutoConnection(); -int Qt_DirectConnection(); -int Qt_QueuedConnection(); -int Qt_BlockingQueuedConnection(); -int Qt_UniqueConnection(); - -// ContextMenuPolicy -int Qt_NoContextMenu(); -int Qt_PreventContextMenu(); -int Qt_DefaultContextMenu(); -int Qt_ActionsContextMenu(); -int Qt_CustomContextMenu(); - -// CoordinateSystem -int Qt_DeviceCoordinates(); -int Qt_LogicalCoordinates(); - -// Corner -int Qt_TopLeftCorner(); -int Qt_TopRightCorner(); -int Qt_BottomLeftCorner(); -int Qt_BottomRightCorner(); - -// CursorMoveStyle -int Qt_LogicalMoveStyle(); -int Qt_VisualMoveStyle(); - -// CursorShape -int Qt_ArrowCursor(); -int Qt_UpArrowCursor(); -int Qt_CrossCursor(); -int Qt_WaitCursor(); -int Qt_IBeamCursor(); -int Qt_SizeVerCursor(); -int Qt_SizeHorCursor(); -int Qt_SizeBDiagCursor(); -int Qt_SizeFDiagCursor(); -int Qt_SizeAllCursor(); -int Qt_BlankCursor(); -int Qt_SplitVCursor(); -int Qt_SplitHCursor(); -int Qt_PointingHandCursor(); -int Qt_ForbiddenCursor(); -int Qt_OpenHandCursor(); -int Qt_ClosedHandCursor(); -int Qt_WhatsThisCursor(); -int Qt_BusyCursor(); -int Qt_DragMoveCursor(); -int Qt_DragCopyCursor(); -int Qt_DragLinkCursor(); -int Qt_BitmapCursor(); - -// DateFormat -int Qt_TextDate(); -int Qt_ISODate(); -int Qt_SystemLocaleShortDate(); -int Qt_SystemLocaleLongDate(); -int Qt_DefaultLocaleShortDate(); -int Qt_DefaultLocaleLongDate(); -int Qt_SystemLocaleDate(); -int Qt_LocaleDate(); -int Qt_LocalDate(); -int Qt_RFC2822Date(); - -// DayOfWeek -int Qt_Monday(); -int Qt_Tuesday(); -int Qt_Wednesday(); -int Qt_Thursday(); -int Qt_Friday(); -int Qt_Saturday(); -int Qt_Sunday(); - -// DockWidgetArea -int Qt_LeftDockWidgetArea(); -int Qt_RightDockWidgetArea(); -int Qt_TopDockWidgetArea(); -int Qt_BottomDockWidgetArea(); -int Qt_AllDockWidgetAreas(); -int Qt_NoDockWidgetArea(); - -// DropAction -int Qt_CopyAction(); -int Qt_MoveAction(); -int Qt_LinkAction(); -int Qt_ActionMask(); -int Qt_IgnoreAction(); -int Qt_TargetMoveAction(); - -// Edge -int Qt_TopEdge(); -int Qt_LeftEdge(); -int Qt_RightEdge(); -int Qt_BottomEdge(); - -// EventPriority -int Qt_HighEventPriority(); -int Qt_NormalEventPriority(); -int Qt_LowEventPriority(); - -// FillRule -int Qt_OddEvenFill(); -int Qt_WindingFill(); - -// FindChildOption -int Qt_FindDirectChildrenOnly(); -int Qt_FindChildrenRecursively(); - -// FocusPolicy -int Qt_TabFocus(); -int Qt_ClickFocus(); -int Qt_StrongFocus(); -int Qt_WheelFocus(); -int Qt_NoFocus(); - -// FocusReason -int Qt_MouseFocusReason(); -int Qt_TabFocusReason(); -int Qt_BacktabFocusReason(); -int Qt_ActiveWindowFocusReason(); -int Qt_PopupFocusReason(); -int Qt_ShortcutFocusReason(); -int Qt_MenuBarFocusReason(); -int Qt_OtherFocusReason(); - -// GestureFlag -int Qt_DontStartGestureOnChildren(); -int Qt_ReceivePartialGestures(); -int Qt_IgnoredGesturesPropagateToParent(); - -// GestureState -int Qt_GestureStarted(); -int Qt_GestureUpdated(); -int Qt_GestureFinished(); -int Qt_GestureCanceled(); - -// GestureType -int Qt_TapGesture(); -int Qt_TapAndHoldGesture(); -int Qt_PanGesture(); -int Qt_PinchGesture(); -int Qt_SwipeGesture(); -int Qt_CustomGesture(); - -// GlobalColor -int Qt_white(); -int Qt_black(); -int Qt_red(); -int Qt_darkRed(); -int Qt_green(); -int Qt_darkGreen(); -int Qt_blue(); -int Qt_darkBlue(); -int Qt_cyan(); -int Qt_darkCyan(); -int Qt_magenta(); -int Qt_darkMagenta(); -int Qt_yellow(); -int Qt_darkYellow(); -int Qt_gray(); -int Qt_darkGray(); -int Qt_lightGray(); -int Qt_transparent(); -int Qt_color0(); -int Qt_color1(); - -// HitTestAccuracy -int Qt_ExactHit(); -int Qt_FuzzyHit(); - -// ImageConversionFlag -int Qt_AutoColor(); -int Qt_ColorOnly(); -int Qt_MonoOnly(); -int Qt_DiffuseDither(); -int Qt_OrderedDither(); -int Qt_ThresholdDither(); -int Qt_ThresholdAlphaDither(); -int Qt_OrderedAlphaDither(); -int Qt_DiffuseAlphaDither(); -int Qt_PreferDither(); -int Qt_AvoidDither(); -int Qt_NoOpaqueDetection(); -int Qt_NoFormatConversion(); - -// InputMethodHint -int Qt_ImhNone(); -int Qt_ImhHiddenText(); -int Qt_ImhSensitiveData(); -int Qt_ImhNoAutoUppercase(); -int Qt_ImhPreferNumbers(); -int Qt_ImhPreferUppercase(); -int Qt_ImhPreferLowercase(); -int Qt_ImhNoPredictiveText(); -int Qt_ImhDate(); -int Qt_ImhTime(); -int Qt_ImhPreferLatin(); -int Qt_ImhMultiLine(); -int Qt_ImhDigitsOnly(); -int Qt_ImhFormattedNumbersOnly(); -int Qt_ImhUppercaseOnly(); -int Qt_ImhLowercaseOnly(); -int Qt_ImhDialableCharactersOnly(); -int Qt_ImhEmailCharactersOnly(); -int Qt_ImhUrlCharactersOnly(); -int Qt_ImhLatinOnly(); -int Qt_ImhExclusiveInputMask(); - -// InputMethodQuery -int Qt_ImEnabled(); -int Qt_ImMicroFocus(); -int Qt_ImCursorRectangle(); -int Qt_ImFont(); -int Qt_ImCursorPosition(); -int Qt_ImSurroundingText(); -int Qt_ImCurrentSelection(); -int Qt_ImMaximumTextLength(); -int Qt_ImAnchorPosition(); -int Qt_ImHints(); -int Qt_ImPreferredLanguage(); -int Qt_ImPlatformData(); -int Qt_ImAbsolutePosition(); -int Qt_ImTextBeforeCursor(); -int Qt_ImTextAfterCursor(); -int Qt_ImQueryInput(); -int Qt_ImQueryAll(); - -// ItemDataRole -int Qt_DisplayRole(); -int Qt_DecorationRole(); -int Qt_EditRole(); -int Qt_ToolTipRole(); -int Qt_StatusTipRole(); -int Qt_WhatsThisRole(); -int Qt_SizeHintRole(); -int Qt_FontRole(); -int Qt_TextAlignmentRole(); -int Qt_BackgroundRole(); -int Qt_BackgroundColorRole(); -int Qt_ForegroundRole(); -int Qt_TextColorRole(); -int Qt_CheckStateRole(); -int Qt_InitialSortOrderRole(); -int Qt_AccessibleTextRole(); -int Qt_AccessibleDescriptionRole(); -int Qt_UserRole(); - -// ItemFlag -int Qt_NoItemFlags(); -int Qt_ItemIsSelectable(); -int Qt_ItemIsEditable(); -int Qt_ItemIsDragEnabled(); -int Qt_ItemIsDropEnabled(); -int Qt_ItemIsUserCheckable(); -int Qt_ItemIsEnabled(); -int Qt_ItemIsTristate(); -int Qt_ItemNeverHasChildren(); - -// ItemSelectionMode -int Qt_ContainsItemShape(); -int Qt_IntersectsItemShape(); -int Qt_ContainsItemBoundingRect(); -int Qt_IntersectsItemBoundingRect(); - -// Key -int Qt_Key_Escape(); -int Qt_Key_Tab(); -int Qt_Key_Backtab(); -int Qt_Key_Backspace(); -int Qt_Key_Return(); -int Qt_Key_Enter(); -int Qt_Key_Insert(); -int Qt_Key_Delete(); -int Qt_Key_Pause(); -int Qt_Key_Print(); -int Qt_Key_SysReq(); -int Qt_Key_Clear(); -int Qt_Key_Home(); -int Qt_Key_End(); -int Qt_Key_Left(); -int Qt_Key_Up(); -int Qt_Key_Right(); -int Qt_Key_Down(); -int Qt_Key_PageUp(); -int Qt_Key_PageDown(); -int Qt_Key_Shift(); -int Qt_Key_Control(); -int Qt_Key_Meta(); -int Qt_Key_Alt(); -int Qt_Key_AltGr(); -int Qt_Key_CapsLock(); -int Qt_Key_NumLock(); -int Qt_Key_ScrollLock(); -int Qt_Key_F1(); -int Qt_Key_F2(); -int Qt_Key_F3(); -int Qt_Key_F4(); -int Qt_Key_F5(); -int Qt_Key_F6(); -int Qt_Key_F7(); -int Qt_Key_F8(); -int Qt_Key_F9(); -int Qt_Key_F10(); -int Qt_Key_F11(); -int Qt_Key_F12(); -int Qt_Key_F13(); -int Qt_Key_F14(); -int Qt_Key_F15(); -int Qt_Key_F16(); -int Qt_Key_F17(); -int Qt_Key_F18(); -int Qt_Key_F19(); -int Qt_Key_F20(); -int Qt_Key_F21(); -int Qt_Key_F22(); -int Qt_Key_F23(); -int Qt_Key_F24(); -int Qt_Key_F25(); -int Qt_Key_F26(); -int Qt_Key_F27(); -int Qt_Key_F28(); -int Qt_Key_F29(); -int Qt_Key_F30(); -int Qt_Key_F31(); -int Qt_Key_F32(); -int Qt_Key_F33(); -int Qt_Key_F34(); -int Qt_Key_F35(); -int Qt_Key_Super_L(); -int Qt_Key_Super_R(); -int Qt_Key_Menu(); -int Qt_Key_Hyper_L(); -int Qt_Key_Hyper_R(); -int Qt_Key_Help(); -int Qt_Key_Direction_L(); -int Qt_Key_Direction_R(); -int Qt_Key_Space(); -int Qt_Key_Any(); -int Qt_Key_Exclam(); -int Qt_Key_QuoteDbl(); -int Qt_Key_NumberSign(); -int Qt_Key_Dollar(); -int Qt_Key_Percent(); -int Qt_Key_Ampersand(); -int Qt_Key_Apostrophe(); -int Qt_Key_ParenLeft(); -int Qt_Key_ParenRight(); -int Qt_Key_Asterisk(); -int Qt_Key_Plus(); -int Qt_Key_Comma(); -int Qt_Key_Minus(); -int Qt_Key_Period(); -int Qt_Key_Slash(); -int Qt_Key_0(); -int Qt_Key_1(); -int Qt_Key_2(); -int Qt_Key_3(); -int Qt_Key_4(); -int Qt_Key_5(); -int Qt_Key_6(); -int Qt_Key_7(); -int Qt_Key_8(); -int Qt_Key_9(); -int Qt_Key_Colon(); -int Qt_Key_Semicolon(); -int Qt_Key_Less(); -int Qt_Key_Equal(); -int Qt_Key_Greater(); -int Qt_Key_Question(); -int Qt_Key_At(); -int Qt_Key_A(); -int Qt_Key_B(); -int Qt_Key_C(); -int Qt_Key_D(); -int Qt_Key_E(); -int Qt_Key_F(); -int Qt_Key_G(); -int Qt_Key_H(); -int Qt_Key_I(); -int Qt_Key_J(); -int Qt_Key_K(); -int Qt_Key_L(); -int Qt_Key_M(); -int Qt_Key_N(); -int Qt_Key_O(); -int Qt_Key_P(); -int Qt_Key_Q(); -int Qt_Key_R(); -int Qt_Key_S(); -int Qt_Key_T(); -int Qt_Key_U(); -int Qt_Key_V(); -int Qt_Key_W(); -int Qt_Key_X(); -int Qt_Key_Y(); -int Qt_Key_Z(); -int Qt_Key_BracketLeft(); -int Qt_Key_Backslash(); -int Qt_Key_BracketRight(); -int Qt_Key_AsciiCircum(); -int Qt_Key_Underscore(); -int Qt_Key_QuoteLeft(); -int Qt_Key_BraceLeft(); -int Qt_Key_Bar(); -int Qt_Key_BraceRight(); -int Qt_Key_AsciiTilde(); -int Qt_Key_nobreakspace(); -int Qt_Key_exclamdown(); -int Qt_Key_cent(); -int Qt_Key_sterling(); -int Qt_Key_currency(); -int Qt_Key_yen(); -int Qt_Key_brokenbar(); -int Qt_Key_section(); -int Qt_Key_diaeresis(); -int Qt_Key_copyright(); -int Qt_Key_ordfeminine(); -int Qt_Key_guillemotleft(); -int Qt_Key_notsign(); -int Qt_Key_hyphen(); -int Qt_Key_registered(); -int Qt_Key_macron(); -int Qt_Key_degree(); -int Qt_Key_plusminus(); -int Qt_Key_twosuperior(); -int Qt_Key_threesuperior(); -int Qt_Key_acute(); -int Qt_Key_mu(); -int Qt_Key_paragraph(); -int Qt_Key_periodcentered(); -int Qt_Key_cedilla(); -int Qt_Key_onesuperior(); -int Qt_Key_masculine(); -int Qt_Key_guillemotright(); -int Qt_Key_onequarter(); -int Qt_Key_onehalf(); -int Qt_Key_threequarters(); -int Qt_Key_questiondown(); -int Qt_Key_Agrave(); -int Qt_Key_Aacute(); -int Qt_Key_Acircumflex(); -int Qt_Key_Atilde(); -int Qt_Key_Adiaeresis(); -int Qt_Key_Aring(); -int Qt_Key_AE(); -int Qt_Key_Ccedilla(); -int Qt_Key_Egrave(); -int Qt_Key_Eacute(); -int Qt_Key_Ecircumflex(); -int Qt_Key_Ediaeresis(); -int Qt_Key_Igrave(); -int Qt_Key_Iacute(); -int Qt_Key_Icircumflex(); -int Qt_Key_Idiaeresis(); -int Qt_Key_ETH(); -int Qt_Key_Ntilde(); -int Qt_Key_Ograve(); -int Qt_Key_Oacute(); -int Qt_Key_Ocircumflex(); -int Qt_Key_Otilde(); -int Qt_Key_Odiaeresis(); -int Qt_Key_multiply(); -int Qt_Key_Ooblique(); -int Qt_Key_Ugrave(); -int Qt_Key_Uacute(); -int Qt_Key_Ucircumflex(); -int Qt_Key_Udiaeresis(); -int Qt_Key_Yacute(); -int Qt_Key_THORN(); -int Qt_Key_ssharp(); -int Qt_Key_division(); -int Qt_Key_ydiaeresis(); -int Qt_Key_Multi_key(); -int Qt_Key_Codeinput(); -int Qt_Key_SingleCandidate(); -int Qt_Key_MultipleCandidate(); -int Qt_Key_PreviousCandidate(); -int Qt_Key_Mode_switch(); -int Qt_Key_Kanji(); -int Qt_Key_Muhenkan(); -int Qt_Key_Henkan(); -int Qt_Key_Romaji(); -int Qt_Key_Hiragana(); -int Qt_Key_Katakana(); -int Qt_Key_Hiragana_Katakana(); -int Qt_Key_Zenkaku(); -int Qt_Key_Hankaku(); -int Qt_Key_Zenkaku_Hankaku(); -int Qt_Key_Touroku(); -int Qt_Key_Massyo(); -int Qt_Key_Kana_Lock(); -int Qt_Key_Kana_Shift(); -int Qt_Key_Eisu_Shift(); -int Qt_Key_Eisu_toggle(); -int Qt_Key_Hangul(); -int Qt_Key_Hangul_Start(); -int Qt_Key_Hangul_End(); -int Qt_Key_Hangul_Hanja(); -int Qt_Key_Hangul_Jamo(); -int Qt_Key_Hangul_Romaja(); -int Qt_Key_Hangul_Jeonja(); -int Qt_Key_Hangul_Banja(); -int Qt_Key_Hangul_PreHanja(); -int Qt_Key_Hangul_PostHanja(); -int Qt_Key_Hangul_Special(); -int Qt_Key_Dead_Grave(); -int Qt_Key_Dead_Acute(); -int Qt_Key_Dead_Circumflex(); -int Qt_Key_Dead_Tilde(); -int Qt_Key_Dead_Macron(); -int Qt_Key_Dead_Breve(); -int Qt_Key_Dead_Abovedot(); -int Qt_Key_Dead_Diaeresis(); -int Qt_Key_Dead_Abovering(); -int Qt_Key_Dead_Doubleacute(); -int Qt_Key_Dead_Caron(); -int Qt_Key_Dead_Cedilla(); -int Qt_Key_Dead_Ogonek(); -int Qt_Key_Dead_Iota(); -int Qt_Key_Dead_Voiced_Sound(); -int Qt_Key_Dead_Semivoiced_Sound(); -int Qt_Key_Dead_Belowdot(); -int Qt_Key_Dead_Hook(); -int Qt_Key_Dead_Horn(); -int Qt_Key_Back(); -int Qt_Key_Forward(); -int Qt_Key_Stop(); -int Qt_Key_Refresh(); -int Qt_Key_VolumeDown(); -int Qt_Key_VolumeMute(); -int Qt_Key_VolumeUp(); -int Qt_Key_BassBoost(); -int Qt_Key_BassUp(); -int Qt_Key_BassDown(); -int Qt_Key_TrebleUp(); -int Qt_Key_TrebleDown(); -int Qt_Key_MediaPlay(); -int Qt_Key_MediaStop(); -int Qt_Key_MediaPrevious(); -int Qt_Key_MediaNext(); -int Qt_Key_MediaRecord(); -int Qt_Key_MediaPause(); -int Qt_Key_MediaTogglePlayPause(); -int Qt_Key_HomePage(); -int Qt_Key_Favorites(); -int Qt_Key_Search(); -int Qt_Key_Standby(); -int Qt_Key_OpenUrl(); -int Qt_Key_LaunchMail(); -int Qt_Key_LaunchMedia(); -int Qt_Key_Launch0(); -int Qt_Key_Launch1(); -int Qt_Key_Launch2(); -int Qt_Key_Launch3(); -int Qt_Key_Launch4(); -int Qt_Key_Launch5(); -int Qt_Key_Launch6(); -int Qt_Key_Launch7(); -int Qt_Key_Launch8(); -int Qt_Key_Launch9(); -int Qt_Key_LaunchA(); -int Qt_Key_LaunchB(); -int Qt_Key_LaunchC(); -int Qt_Key_LaunchD(); -int Qt_Key_LaunchE(); -int Qt_Key_LaunchF(); -int Qt_Key_LaunchG(); -int Qt_Key_LaunchH(); -int Qt_Key_MonBrightnessUp(); -int Qt_Key_MonBrightnessDown(); -int Qt_Key_KeyboardLightOnOff(); -int Qt_Key_KeyboardBrightnessUp(); -int Qt_Key_KeyboardBrightnessDown(); -int Qt_Key_PowerOff(); -int Qt_Key_WakeUp(); -int Qt_Key_Eject(); -int Qt_Key_ScreenSaver(); -int Qt_Key_WWW(); -int Qt_Key_Memo(); -int Qt_Key_LightBulb(); -int Qt_Key_Shop(); -int Qt_Key_History(); -int Qt_Key_AddFavorite(); -int Qt_Key_HotLinks(); -int Qt_Key_BrightnessAdjust(); -int Qt_Key_Finance(); -int Qt_Key_Community(); -int Qt_Key_AudioRewind(); -int Qt_Key_BackForward(); -int Qt_Key_ApplicationLeft(); -int Qt_Key_ApplicationRight(); -int Qt_Key_Book(); -int Qt_Key_CD(); -int Qt_Key_Calculator(); -int Qt_Key_ToDoList(); -int Qt_Key_ClearGrab(); -int Qt_Key_Close(); -int Qt_Key_Copy(); -int Qt_Key_Cut(); -int Qt_Key_Display(); -int Qt_Key_DOS(); -int Qt_Key_Documents(); -int Qt_Key_Excel(); -int Qt_Key_Explorer(); -int Qt_Key_Game(); -int Qt_Key_Go(); -int Qt_Key_iTouch(); -int Qt_Key_LogOff(); -int Qt_Key_Market(); -int Qt_Key_Meeting(); -int Qt_Key_MenuKB(); -int Qt_Key_MenuPB(); -int Qt_Key_MySites(); -int Qt_Key_News(); -int Qt_Key_OfficeHome(); -int Qt_Key_Option(); -int Qt_Key_Paste(); -int Qt_Key_Phone(); -int Qt_Key_Calendar(); -int Qt_Key_Reply(); -int Qt_Key_Reload(); -int Qt_Key_RotateWindows(); -int Qt_Key_RotationPB(); -int Qt_Key_RotationKB(); -int Qt_Key_Save(); -int Qt_Key_Send(); -int Qt_Key_Spell(); -int Qt_Key_SplitScreen(); -int Qt_Key_Support(); -int Qt_Key_TaskPane(); -int Qt_Key_Terminal(); -int Qt_Key_Tools(); -int Qt_Key_Travel(); -int Qt_Key_Video(); -int Qt_Key_Word(); -int Qt_Key_Xfer(); -int Qt_Key_ZoomIn(); -int Qt_Key_ZoomOut(); -int Qt_Key_Away(); -int Qt_Key_Messenger(); -int Qt_Key_WebCam(); -int Qt_Key_MailForward(); -int Qt_Key_Pictures(); -int Qt_Key_Music(); -int Qt_Key_Battery(); -int Qt_Key_Bluetooth(); -int Qt_Key_WLAN(); -int Qt_Key_UWB(); -int Qt_Key_AudioForward(); -int Qt_Key_AudioRepeat(); -int Qt_Key_AudioRandomPlay(); -int Qt_Key_Subtitle(); -int Qt_Key_AudioCycleTrack(); -int Qt_Key_Time(); -int Qt_Key_Hibernate(); -int Qt_Key_View(); -int Qt_Key_TopMenu(); -int Qt_Key_PowerDown(); -int Qt_Key_Suspend(); -int Qt_Key_ContrastAdjust(); -int Qt_Key_TouchpadToggle(); -int Qt_Key_TouchpadOn(); -int Qt_Key_TouchpadOff(); -int Qt_Key_MicMute(); -int Qt_Key_Red(); -int Qt_Key_Green(); -int Qt_Key_Yellow(); -int Qt_Key_Blue(); -int Qt_Key_ChannelUp(); -int Qt_Key_ChannelDown(); -int Qt_Key_MediaLast(); -int Qt_Key_unknown(); -int Qt_Key_Call(); -int Qt_Key_Camera(); -int Qt_Key_CameraFocus(); -int Qt_Key_Context1(); -int Qt_Key_Context2(); -int Qt_Key_Context3(); -int Qt_Key_Context4(); -int Qt_Key_Flip(); -int Qt_Key_Hangup(); -int Qt_Key_No(); -int Qt_Key_Select(); -int Qt_Key_Yes(); -int Qt_Key_ToggleCallHangup(); -int Qt_Key_VoiceDial(); -int Qt_Key_LastNumberRedial(); -int Qt_Key_Execute(); -int Qt_Key_Printer(); -int Qt_Key_Play(); -int Qt_Key_Sleep(); -int Qt_Key_Zoom(); -int Qt_Key_Cancel(); - -// KeyboardModifier -int Qt_NoModifier(); -int Qt_ShiftModifier(); -int Qt_ControlModifier(); -int Qt_AltModifier(); -int Qt_MetaModifier(); -int Qt_KeypadModifier(); -int Qt_GroupSwitchModifier(); - -// LayoutDirection -int Qt_LeftToRight(); -int Qt_RightToLeft(); -int Qt_LayoutDirectionAuto(); - -// MaskMode -int Qt_MaskInColor(); -int Qt_MaskOutColor(); - -// MatchFlag -int Qt_MatchExactly(); -int Qt_MatchFixedString(); -int Qt_MatchContains(); -int Qt_MatchStartsWith(); -int Qt_MatchEndsWith(); -int Qt_MatchCaseSensitive(); -int Qt_MatchRegExp(); -int Qt_MatchWildcard(); -int Qt_MatchWrap(); -int Qt_MatchRecursive(); - -// Modifier -int Qt_SHIFT(); -int Qt_META(); -int Qt_CTRL(); -int Qt_ALT(); -int Qt_UNICODE_ACCEL(); - -// MouseButton -int Qt_NoButton(); -int Qt_AllButtons(); -int Qt_LeftButton(); -int Qt_RightButton(); -int Qt_MidButton(); -int Qt_MiddleButton(); -int Qt_BackButton(); -int Qt_XButton1(); -int Qt_ExtraButton1(); -int Qt_ForwardButton(); -int Qt_XButton2(); -int Qt_ExtraButton2(); -int Qt_TaskButton(); -int Qt_ExtraButton3(); -int Qt_ExtraButton4(); -int Qt_ExtraButton5(); -int Qt_ExtraButton6(); -int Qt_ExtraButton7(); -int Qt_ExtraButton8(); -int Qt_ExtraButton9(); -int Qt_ExtraButton10(); -int Qt_ExtraButton11(); -int Qt_ExtraButton12(); -int Qt_ExtraButton13(); -int Qt_ExtraButton14(); -int Qt_ExtraButton15(); -int Qt_ExtraButton16(); -int Qt_ExtraButton17(); -int Qt_ExtraButton18(); -int Qt_ExtraButton19(); -int Qt_ExtraButton20(); -int Qt_ExtraButton21(); -int Qt_ExtraButton22(); -int Qt_ExtraButton23(); -int Qt_ExtraButton24(); - -// MouseEventFlag -int Qt_MouseEventCreatedDoubleClick(); - -// MouseEventSource -int Qt_MouseEventNotSynthesized(); -int Qt_MouseEventSynthesizedBySystem(); -int Qt_MouseEventSynthesizedByQt(); - -// NativeGestureType - -// NavigationMode -int Qt_NavigationModeNone(); -int Qt_NavigationModeKeypadTabOrder(); -int Qt_NavigationModeKeypadDirectional(); -int Qt_NavigationModeCursorAuto(); -int Qt_NavigationModeCursorForceVisible(); - -// Orientation -int Qt_Horizontal(); -int Qt_Vertical(); - -// PenCapStyle -int Qt_SquareCap(); -int Qt_FlatCap(); -int Qt_RoundCap(); - -// PenJoinStyle -int Qt_BevelJoin(); -int Qt_MiterJoin(); -int Qt_RoundJoin(); -int Qt_SvgMiterJoin(); - -// PenStyle -int Qt_SolidLine(); -int Qt_DashDotLine(); -int Qt_NoPen(); -int Qt_DashLine(); -int Qt_DotLine(); -int Qt_DashDotDotLine(); -int Qt_CustomDashLine(); - -// ScreenOrientation -int Qt_PrimaryOrientation(); -int Qt_LandscapeOrientation(); -int Qt_PortraitOrientation(); -int Qt_InvertedLandscapeOrientation(); -int Qt_InvertedPortraitOrientation(); - -// ScrollBarPolicy -int Qt_ScrollBarAsNeeded(); -int Qt_ScrollBarAlwaysOff(); -int Qt_ScrollBarAlwaysOn(); - -// ScrollPhase -int Qt_ScrollBegin(); -int Qt_ScrollUpdate(); -int Qt_ScrollEnd(); - -// ShortcutContext -int Qt_WidgetShortcut(); -int Qt_WidgetWithChildrenShortcut(); -int Qt_WindowShortcut(); -int Qt_ApplicationShortcut(); - -// SizeHint -int Qt_MinimumSize(); -int Qt_PreferredSize(); -int Qt_MaximumSize(); -int Qt_MinimumDescent(); - -// SizeMode -int Qt_AbsoluteSize(); -int Qt_RelativeSize(); - -// SortOrder -int Qt_AscendingOrder(); -int Qt_DescendingOrder(); - -// TextElideMode -int Qt_ElideLeft(); -int Qt_ElideRight(); -int Qt_ElideMiddle(); -int Qt_ElideNone(); - -// TextFlag -int Qt_TextSingleLine(); -int Qt_TextDontClip(); -int Qt_TextExpandTabs(); -int Qt_TextShowMnemonic(); -int Qt_TextWordWrap(); -int Qt_TextWrapAnywhere(); -int Qt_TextHideMnemonic(); -int Qt_TextDontPrint(); -int Qt_TextIncludeTrailingSpaces(); -int Qt_TextJustificationForced(); - -// TextFormat -int Qt_PlainText(); -int Qt_RichText(); -int Qt_AutoText(); - -// TextInteractionFlag -int Qt_NoTextInteraction(); -int Qt_TextSelectableByMouse(); -int Qt_TextSelectableByKeyboard(); -int Qt_LinksAccessibleByMouse(); -int Qt_LinksAccessibleByKeyboard(); -int Qt_TextEditable(); -int Qt_TextEditorInteraction(); -int Qt_TextBrowserInteraction(); - -// TileRule -int Qt_StretchTile(); -int Qt_RepeatTile(); -int Qt_RoundTile(); - -// TimeSpec -int Qt_LocalTime(); -int Qt_UTC(); -int Qt_OffsetFromUTC(); -int Qt_TimeZone(); - -// TimerType -int Qt_PreciseTimer(); -int Qt_CoarseTimer(); -int Qt_VeryCoarseTimer(); - -// ToolBarArea -int Qt_LeftToolBarArea(); -int Qt_RightToolBarArea(); -int Qt_TopToolBarArea(); -int Qt_BottomToolBarArea(); -int Qt_AllToolBarAreas(); -int Qt_NoToolBarArea(); - -// ToolButtonStyle -int Qt_ToolButtonIconOnly(); -int Qt_ToolButtonTextOnly(); -int Qt_ToolButtonTextBesideIcon(); -int Qt_ToolButtonTextUnderIcon(); -int Qt_ToolButtonFollowStyle(); - -// TouchPointState -int Qt_TouchPointPressed(); -int Qt_TouchPointMoved(); -int Qt_TouchPointStationary(); -int Qt_TouchPointReleased(); - -// TransformationMode -int Qt_FastTransformation(); -int Qt_SmoothTransformation(); - -// UIEffect -int Qt_UI_AnimateMenu(); -int Qt_UI_FadeMenu(); -int Qt_UI_AnimateCombo(); -int Qt_UI_AnimateTooltip(); -int Qt_UI_FadeTooltip(); -int Qt_UI_AnimateToolBox(); - -// WhiteSpaceMode -int Qt_WhiteSpaceNormal(); -int Qt_WhiteSpacePre(); -int Qt_WhiteSpaceNoWrap(); - -// WidgetAttribute -int Qt_WA_AcceptDrops(); -int Qt_WA_AlwaysShowToolTips(); -int Qt_WA_ContentsPropagated(); -int Qt_WA_CustomWhatsThis(); -int Qt_WA_DeleteOnClose(); -int Qt_WA_Disabled(); -int Qt_WA_DontShowOnScreen(); -int Qt_WA_ForceDisabled(); -int Qt_WA_ForceUpdatesDisabled(); -int Qt_WA_GroupLeader(); -int Qt_WA_Hover(); -int Qt_WA_InputMethodEnabled(); -int Qt_WA_KeyboardFocusChange(); -int Qt_WA_KeyCompression(); -int Qt_WA_LayoutOnEntireRect(); -int Qt_WA_LayoutUsesWidgetRect(); -int Qt_WA_MacNoClickThrough(); -int Qt_WA_MacOpaqueSizeGrip(); -int Qt_WA_MacShowFocusRect(); -int Qt_WA_MacNormalSize(); -int Qt_WA_MacSmallSize(); -int Qt_WA_MacMiniSize(); -int Qt_WA_MacVariableSize(); -int Qt_WA_MacBrushedMetal(); -int Qt_WA_Mapped(); -int Qt_WA_MouseNoMask(); -int Qt_WA_MouseTracking(); -int Qt_WA_Moved(); -int Qt_WA_MSWindowsUseDirect3D(); -int Qt_WA_NoBackground(); -int Qt_WA_NoChildEventsForParent(); -int Qt_WA_NoChildEventsFromChildren(); -int Qt_WA_NoMouseReplay(); -int Qt_WA_NoMousePropagation(); -int Qt_WA_TransparentForMouseEvents(); -int Qt_WA_NoSystemBackground(); -int Qt_WA_OpaquePaintEvent(); -int Qt_WA_OutsideWSRange(); -int Qt_WA_PaintOnScreen(); -int Qt_WA_PaintUnclipped(); -int Qt_WA_PendingMoveEvent(); -int Qt_WA_PendingResizeEvent(); -int Qt_WA_QuitOnClose(); -int Qt_WA_Resized(); -int Qt_WA_RightToLeft(); -int Qt_WA_SetCursor(); -int Qt_WA_SetFont(); -int Qt_WA_SetPalette(); -int Qt_WA_SetStyle(); -int Qt_WA_ShowModal(); -int Qt_WA_StaticContents(); -int Qt_WA_StyleSheet(); -int Qt_WA_TranslucentBackground(); -int Qt_WA_UnderMouse(); -int Qt_WA_UpdatesDisabled(); -int Qt_WA_WindowModified(); -int Qt_WA_WindowPropagation(); -int Qt_WA_MacAlwaysShowToolWindow(); -int Qt_WA_SetLocale(); -int Qt_WA_StyledBackground(); -int Qt_WA_ShowWithoutActivating(); -int Qt_WA_NativeWindow(); -int Qt_WA_DontCreateNativeAncestors(); -int Qt_WA_X11NetWmWindowTypeDesktop(); -int Qt_WA_X11NetWmWindowTypeDock(); -int Qt_WA_X11NetWmWindowTypeToolBar(); -int Qt_WA_X11NetWmWindowTypeMenu(); -int Qt_WA_X11NetWmWindowTypeUtility(); -int Qt_WA_X11NetWmWindowTypeSplash(); -int Qt_WA_X11NetWmWindowTypeDialog(); -int Qt_WA_X11NetWmWindowTypeDropDownMenu(); -int Qt_WA_X11NetWmWindowTypePopupMenu(); -int Qt_WA_X11NetWmWindowTypeToolTip(); -int Qt_WA_X11NetWmWindowTypeNotification(); -int Qt_WA_X11NetWmWindowTypeCombo(); -int Qt_WA_X11NetWmWindowTypeDND(); -int Qt_WA_MacFrameworkScaled(); -int Qt_WA_AcceptTouchEvents(); -int Qt_WA_TouchPadAcceptSingleTouchEvents(); -int Qt_WA_X11DoNotAcceptFocus(); - -// WindowFrameSection -int Qt_NoSection(); -int Qt_LeftSection(); -int Qt_TopLeftSection(); -int Qt_TopSection(); -int Qt_TopRightSection(); -int Qt_RightSection(); -int Qt_BottomRightSection(); -int Qt_BottomSection(); -int Qt_BottomLeftSection(); -int Qt_TitleBarArea(); - -// WindowModality -int Qt_NonModal(); -int Qt_WindowModal(); -int Qt_ApplicationModal(); - -// WindowState -int Qt_WindowNoState(); -int Qt_WindowMinimized(); -int Qt_WindowMaximized(); -int Qt_WindowFullScreen(); -int Qt_WindowActive(); - -// WindowType -int Qt_Widget(); -int Qt_Window(); -int Qt_Dialog(); -int Qt_Sheet(); -int Qt_Drawer(); -int Qt_Popup(); -int Qt_Tool(); -int Qt_ToolTip(); -int Qt_SplashScreen(); -int Qt_Desktop(); -int Qt_SubWindow(); -int Qt_ForeignWindow(); -int Qt_CoverWindow(); -int Qt_MSWindowsFixedSizeDialogHint(); -int Qt_MSWindowsOwnDC(); -int Qt_BypassWindowManagerHint(); -int Qt_X11BypassWindowManagerHint(); -int Qt_FramelessWindowHint(); -int Qt_NoDropShadowWindowHint(); -int Qt_CustomizeWindowHint(); -int Qt_WindowTitleHint(); -int Qt_WindowSystemMenuHint(); -int Qt_WindowMinimizeButtonHint(); -int Qt_WindowMaximizeButtonHint(); -int Qt_WindowMinMaxButtonsHint(); -int Qt_WindowCloseButtonHint(); -int Qt_WindowContextHelpButtonHint(); -int Qt_MacWindowToolBarButtonHint(); -int Qt_WindowFullscreenButtonHint(); -int Qt_BypassGraphicsProxyWidget(); -int Qt_WindowShadeButtonHint(); -int Qt_WindowStaysOnTopHint(); -int Qt_WindowStaysOnBottomHint(); -int Qt_WindowOkButtonHint(); -int Qt_WindowCancelButtonHint(); -int Qt_WindowTransparentForInput(); -int Qt_WindowOverridesSystemGestures(); -int Qt_WindowDoesNotAcceptFocus(); -int Qt_WindowType_Mask(); - -#ifdef __cplusplus -} -#endif diff --git a/qtabbar.cpp b/qtabbar.cpp deleted file mode 100644 index fba0cb02..00000000 --- a/qtabbar.cpp +++ /dev/null @@ -1,239 +0,0 @@ -#include "qtabbar.h" -#include -#include "cgoexport.h" - -//MyQTabBar -class MyQTabBar: public QTabBar { -Q_OBJECT -public: -void Signal_CurrentChanged() { callbackQTabBar(this, QString("currentChanged").toUtf8().data()); }; -void Signal_TabBarClicked() { callbackQTabBar(this, QString("tabBarClicked").toUtf8().data()); }; -void Signal_TabBarDoubleClicked() { callbackQTabBar(this, QString("tabBarDoubleClicked").toUtf8().data()); }; -void Signal_TabCloseRequested() { callbackQTabBar(this, QString("tabCloseRequested").toUtf8().data()); }; -void Signal_TabMoved() { callbackQTabBar(this, QString("tabMoved").toUtf8().data()); }; - -signals: -void Slot_SetCurrentIndex(int index); - -}; -#include "qtabbar.moc" - - -//Public Functions -QtObjectPtr QTabBar_New_QWidget(QtObjectPtr parent) -{ - return new QTabBar(((QWidget*)(parent))); -} - -void QTabBar_Destroy(QtObjectPtr ptr) -{ - ((QTabBar*)(ptr))->~QTabBar(); -} - -int QTabBar_AddTab_String(QtObjectPtr ptr, char* text) -{ - return ((QTabBar*)(ptr))->addTab(QString(text)); -} - -int QTabBar_Count(QtObjectPtr ptr) -{ - return ((QTabBar*)(ptr))->count(); -} - -int QTabBar_CurrentIndex(QtObjectPtr ptr) -{ - return ((QTabBar*)(ptr))->currentIndex(); -} - -int QTabBar_DocumentMode(QtObjectPtr ptr) -{ - return ((QTabBar*)(ptr))->documentMode(); -} - -int QTabBar_DrawBase(QtObjectPtr ptr) -{ - return ((QTabBar*)(ptr))->drawBase(); -} - -int QTabBar_ElideMode(QtObjectPtr ptr) -{ - return ((QTabBar*)(ptr))->elideMode(); -} - -int QTabBar_Expanding(QtObjectPtr ptr) -{ - return ((QTabBar*)(ptr))->expanding(); -} - -int QTabBar_InsertTab_Int_String(QtObjectPtr ptr, int index, char* text) -{ - return ((QTabBar*)(ptr))->insertTab(index, QString(text)); -} - -int QTabBar_IsMovable(QtObjectPtr ptr) -{ - return ((QTabBar*)(ptr))->isMovable(); -} - -int QTabBar_IsTabEnabled_Int(QtObjectPtr ptr, int index) -{ - return ((QTabBar*)(ptr))->isTabEnabled(index); -} - -void QTabBar_MoveTab_Int_Int(QtObjectPtr ptr, int from, int to) -{ - ((QTabBar*)(ptr))->moveTab(from, to); -} - -void QTabBar_RemoveTab_Int(QtObjectPtr ptr, int index) -{ - ((QTabBar*)(ptr))->removeTab(index); -} - -void QTabBar_SetDocumentMode_Bool(QtObjectPtr ptr, int set) -{ - ((QTabBar*)(ptr))->setDocumentMode(set != 0); -} - -void QTabBar_SetDrawBase_Bool(QtObjectPtr ptr, int drawTheBase) -{ - ((QTabBar*)(ptr))->setDrawBase(drawTheBase != 0); -} - -void QTabBar_SetElideMode_TextElideMode(QtObjectPtr ptr, int TextElideMode) -{ - ((QTabBar*)(ptr))->setElideMode(((Qt::TextElideMode)(TextElideMode))); -} - -void QTabBar_SetExpanding_Bool(QtObjectPtr ptr, int enabled) -{ - ((QTabBar*)(ptr))->setExpanding(enabled != 0); -} - -void QTabBar_SetMovable_Bool(QtObjectPtr ptr, int movable) -{ - ((QTabBar*)(ptr))->setMovable(movable != 0); -} - -void QTabBar_SetTabEnabled_Int_Bool(QtObjectPtr ptr, int index, int enabled) -{ - ((QTabBar*)(ptr))->setTabEnabled(index, enabled != 0); -} - -void QTabBar_SetTabText_Int_String(QtObjectPtr ptr, int index, char* text) -{ - ((QTabBar*)(ptr))->setTabText(index, QString(text)); -} - -void QTabBar_SetTabToolTip_Int_String(QtObjectPtr ptr, int index, char* tip) -{ - ((QTabBar*)(ptr))->setTabToolTip(index, QString(tip)); -} - -void QTabBar_SetTabWhatsThis_Int_String(QtObjectPtr ptr, int index, char* text) -{ - ((QTabBar*)(ptr))->setTabWhatsThis(index, QString(text)); -} - -void QTabBar_SetTabsClosable_Bool(QtObjectPtr ptr, int closable) -{ - ((QTabBar*)(ptr))->setTabsClosable(closable != 0); -} - -void QTabBar_SetUsesScrollButtons_Bool(QtObjectPtr ptr, int useButtons) -{ - ((QTabBar*)(ptr))->setUsesScrollButtons(useButtons != 0); -} - -char* QTabBar_TabText_Int(QtObjectPtr ptr, int index) -{ - return ((QTabBar*)(ptr))->tabText(index).toUtf8().data(); -} - -char* QTabBar_TabToolTip_Int(QtObjectPtr ptr, int index) -{ - return ((QTabBar*)(ptr))->tabToolTip(index).toUtf8().data(); -} - -char* QTabBar_TabWhatsThis_Int(QtObjectPtr ptr, int index) -{ - return ((QTabBar*)(ptr))->tabWhatsThis(index).toUtf8().data(); -} - -int QTabBar_TabsClosable(QtObjectPtr ptr) -{ - return ((QTabBar*)(ptr))->tabsClosable(); -} - -int QTabBar_UsesScrollButtons(QtObjectPtr ptr) -{ - return ((QTabBar*)(ptr))->usesScrollButtons(); -} - -//Public Slots -void QTabBar_ConnectSlotSetCurrentIndex(QtObjectPtr ptr) -{ - QObject::connect(((MyQTabBar*)(ptr)), &MyQTabBar::Slot_SetCurrentIndex, ((QTabBar*)(ptr)), &QTabBar::setCurrentIndex, Qt::QueuedConnection); -} - -void QTabBar_DisconnectSlotSetCurrentIndex(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTabBar*)(ptr)), &MyQTabBar::Slot_SetCurrentIndex, ((QTabBar*)(ptr)), &QTabBar::setCurrentIndex); -} - -void QTabBar_SetCurrentIndex_Int(QtObjectPtr ptr, int index) -{ - ((MyQTabBar*)(ptr))->Slot_SetCurrentIndex(index); -} - -//Signals -void QTabBar_ConnectSignalCurrentChanged(QtObjectPtr ptr) -{ - QObject::connect(((QTabBar*)(ptr)), &QTabBar::currentChanged, ((MyQTabBar*)(ptr)), &MyQTabBar::Signal_CurrentChanged, Qt::QueuedConnection); -} - -void QTabBar_DisconnectSignalCurrentChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QTabBar*)(ptr)), &QTabBar::currentChanged, ((MyQTabBar*)(ptr)), &MyQTabBar::Signal_CurrentChanged); -} - -void QTabBar_ConnectSignalTabBarClicked(QtObjectPtr ptr) -{ - QObject::connect(((QTabBar*)(ptr)), &QTabBar::tabBarClicked, ((MyQTabBar*)(ptr)), &MyQTabBar::Signal_TabBarClicked, Qt::QueuedConnection); -} - -void QTabBar_DisconnectSignalTabBarClicked(QtObjectPtr ptr) -{ - QObject::disconnect(((QTabBar*)(ptr)), &QTabBar::tabBarClicked, ((MyQTabBar*)(ptr)), &MyQTabBar::Signal_TabBarClicked); -} - -void QTabBar_ConnectSignalTabBarDoubleClicked(QtObjectPtr ptr) -{ - QObject::connect(((QTabBar*)(ptr)), &QTabBar::tabBarDoubleClicked, ((MyQTabBar*)(ptr)), &MyQTabBar::Signal_TabBarDoubleClicked, Qt::QueuedConnection); -} - -void QTabBar_DisconnectSignalTabBarDoubleClicked(QtObjectPtr ptr) -{ - QObject::disconnect(((QTabBar*)(ptr)), &QTabBar::tabBarDoubleClicked, ((MyQTabBar*)(ptr)), &MyQTabBar::Signal_TabBarDoubleClicked); -} - -void QTabBar_ConnectSignalTabCloseRequested(QtObjectPtr ptr) -{ - QObject::connect(((QTabBar*)(ptr)), &QTabBar::tabCloseRequested, ((MyQTabBar*)(ptr)), &MyQTabBar::Signal_TabCloseRequested, Qt::QueuedConnection); -} - -void QTabBar_DisconnectSignalTabCloseRequested(QtObjectPtr ptr) -{ - QObject::disconnect(((QTabBar*)(ptr)), &QTabBar::tabCloseRequested, ((MyQTabBar*)(ptr)), &MyQTabBar::Signal_TabCloseRequested); -} - -void QTabBar_ConnectSignalTabMoved(QtObjectPtr ptr) -{ - QObject::connect(((QTabBar*)(ptr)), &QTabBar::tabMoved, ((MyQTabBar*)(ptr)), &MyQTabBar::Signal_TabMoved, Qt::QueuedConnection); -} - -void QTabBar_DisconnectSignalTabMoved(QtObjectPtr ptr) -{ - QObject::disconnect(((QTabBar*)(ptr)), &QTabBar::tabMoved, ((MyQTabBar*)(ptr)), &MyQTabBar::Signal_TabMoved); -} - diff --git a/qtabbar.go b/qtabbar.go deleted file mode 100644 index 89186a8f..00000000 --- a/qtabbar.go +++ /dev/null @@ -1,359 +0,0 @@ -package qt - -//#include "qtabbar.h" -import "C" - -type qtabbar struct { - qwidget -} - -type QTabBar interface { - QWidget - AddTab(text string) int - Count() int - CurrentIndex() int - DocumentMode() bool - DrawBase() bool - ElideMode() TextElideMode - Expanding() bool - InsertTab(index int, text string) int - IsMovable() bool - IsTabEnabled(index int) bool - MoveTab(from int, to int) - RemoveTab(index int) - SetDocumentMode(set bool) - SetDrawBase(drawTheBase bool) - SetElideMode(TextElideMode TextElideMode) - SetExpanding(enabled bool) - SetMovable(movable bool) - SetTabEnabled(index int, enabled bool) - SetTabText(index int, text string) - SetTabToolTip(index int, tip string) - SetTabWhatsThis(index int, text string) - SetTabsClosable(closable bool) - SetUsesScrollButtons(useButtons bool) - TabText(index int) string - TabToolTip(index int) string - TabWhatsThis(index int) string - TabsClosable() bool - UsesScrollButtons() bool - ConnectSlotSetCurrentIndex() - DisconnectSlotSetCurrentIndex() - SlotSetCurrentIndex(index int) - ConnectSignalCurrentChanged(f func()) - DisconnectSignalCurrentChanged() - SignalCurrentChanged() func() - ConnectSignalTabBarClicked(f func()) - DisconnectSignalTabBarClicked() - SignalTabBarClicked() func() - ConnectSignalTabBarDoubleClicked(f func()) - DisconnectSignalTabBarDoubleClicked() - SignalTabBarDoubleClicked() func() - ConnectSignalTabCloseRequested(f func()) - DisconnectSignalTabCloseRequested() - SignalTabCloseRequested() func() - ConnectSignalTabMoved(f func()) - DisconnectSignalTabMoved() - SignalTabMoved() func() -} - -func (p *qtabbar) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qtabbar) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQTabBar(parent QWidget) QTabBar { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qtabbar = new(qtabbar) - qtabbar.SetPointer(C.QTabBar_New_QWidget(parentPtr)) - qtabbar.SetObjectName("QTabBar_" + randomIdentifier()) - return qtabbar -} - -func (p *qtabbar) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QTabBar_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qtabbar) AddTab(text string) int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTabBar_AddTab_String(p.Pointer(), C.CString(text))) -} - -func (p *qtabbar) Count() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTabBar_Count(p.Pointer())) -} - -func (p *qtabbar) CurrentIndex() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTabBar_CurrentIndex(p.Pointer())) -} - -func (p *qtabbar) DocumentMode() bool { - if p.Pointer() == nil { - return false - } - return C.QTabBar_DocumentMode(p.Pointer()) != 0 -} - -func (p *qtabbar) DrawBase() bool { - if p.Pointer() == nil { - return false - } - return C.QTabBar_DrawBase(p.Pointer()) != 0 -} - -func (p *qtabbar) ElideMode() TextElideMode { - if p.Pointer() == nil { - return 0 - } - return TextElideMode(C.QTabBar_ElideMode(p.Pointer())) -} - -func (p *qtabbar) Expanding() bool { - if p.Pointer() == nil { - return false - } - return C.QTabBar_Expanding(p.Pointer()) != 0 -} - -func (p *qtabbar) InsertTab(index int, text string) int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTabBar_InsertTab_Int_String(p.Pointer(), C.int(index), C.CString(text))) -} - -func (p *qtabbar) IsMovable() bool { - if p.Pointer() == nil { - return false - } - return C.QTabBar_IsMovable(p.Pointer()) != 0 -} - -func (p *qtabbar) IsTabEnabled(index int) bool { - if p.Pointer() == nil { - return false - } - return C.QTabBar_IsTabEnabled_Int(p.Pointer(), C.int(index)) != 0 -} - -func (p *qtabbar) MoveTab(from int, to int) { - if p.Pointer() != nil { - C.QTabBar_MoveTab_Int_Int(p.Pointer(), C.int(from), C.int(to)) - } -} - -func (p *qtabbar) RemoveTab(index int) { - if p.Pointer() != nil { - C.QTabBar_RemoveTab_Int(p.Pointer(), C.int(index)) - } -} - -func (p *qtabbar) SetDocumentMode(set bool) { - if p.Pointer() != nil { - C.QTabBar_SetDocumentMode_Bool(p.Pointer(), goBoolToCInt(set)) - } -} - -func (p *qtabbar) SetDrawBase(drawTheBase bool) { - if p.Pointer() != nil { - C.QTabBar_SetDrawBase_Bool(p.Pointer(), goBoolToCInt(drawTheBase)) - } -} - -func (p *qtabbar) SetElideMode(TextElideMode TextElideMode) { - if p.Pointer() != nil { - C.QTabBar_SetElideMode_TextElideMode(p.Pointer(), C.int(TextElideMode)) - } -} - -func (p *qtabbar) SetExpanding(enabled bool) { - if p.Pointer() != nil { - C.QTabBar_SetExpanding_Bool(p.Pointer(), goBoolToCInt(enabled)) - } -} - -func (p *qtabbar) SetMovable(movable bool) { - if p.Pointer() != nil { - C.QTabBar_SetMovable_Bool(p.Pointer(), goBoolToCInt(movable)) - } -} - -func (p *qtabbar) SetTabEnabled(index int, enabled bool) { - if p.Pointer() != nil { - C.QTabBar_SetTabEnabled_Int_Bool(p.Pointer(), C.int(index), goBoolToCInt(enabled)) - } -} - -func (p *qtabbar) SetTabText(index int, text string) { - if p.Pointer() != nil { - C.QTabBar_SetTabText_Int_String(p.Pointer(), C.int(index), C.CString(text)) - } -} - -func (p *qtabbar) SetTabToolTip(index int, tip string) { - if p.Pointer() != nil { - C.QTabBar_SetTabToolTip_Int_String(p.Pointer(), C.int(index), C.CString(tip)) - } -} - -func (p *qtabbar) SetTabWhatsThis(index int, text string) { - if p.Pointer() != nil { - C.QTabBar_SetTabWhatsThis_Int_String(p.Pointer(), C.int(index), C.CString(text)) - } -} - -func (p *qtabbar) SetTabsClosable(closable bool) { - if p.Pointer() != nil { - C.QTabBar_SetTabsClosable_Bool(p.Pointer(), goBoolToCInt(closable)) - } -} - -func (p *qtabbar) SetUsesScrollButtons(useButtons bool) { - if p.Pointer() != nil { - C.QTabBar_SetUsesScrollButtons_Bool(p.Pointer(), goBoolToCInt(useButtons)) - } -} - -func (p *qtabbar) TabText(index int) string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QTabBar_TabText_Int(p.Pointer(), C.int(index))) -} - -func (p *qtabbar) TabToolTip(index int) string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QTabBar_TabToolTip_Int(p.Pointer(), C.int(index))) -} - -func (p *qtabbar) TabWhatsThis(index int) string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QTabBar_TabWhatsThis_Int(p.Pointer(), C.int(index))) -} - -func (p *qtabbar) TabsClosable() bool { - if p.Pointer() == nil { - return false - } - return C.QTabBar_TabsClosable(p.Pointer()) != 0 -} - -func (p *qtabbar) UsesScrollButtons() bool { - if p.Pointer() == nil { - return false - } - return C.QTabBar_UsesScrollButtons(p.Pointer()) != 0 -} - -func (p *qtabbar) ConnectSlotSetCurrentIndex() { - C.QTabBar_ConnectSlotSetCurrentIndex(p.Pointer()) -} - -func (p *qtabbar) DisconnectSlotSetCurrentIndex() { - C.QTabBar_DisconnectSlotSetCurrentIndex(p.Pointer()) -} - -func (p *qtabbar) SlotSetCurrentIndex(index int) { - if p.Pointer() != nil { - C.QTabBar_SetCurrentIndex_Int(p.Pointer(), C.int(index)) - } -} - -func (p *qtabbar) ConnectSignalCurrentChanged(f func()) { - C.QTabBar_ConnectSignalCurrentChanged(p.Pointer()) - connectSignal(p.ObjectName(), "currentChanged", f) -} - -func (p *qtabbar) DisconnectSignalCurrentChanged() { - C.QTabBar_DisconnectSignalCurrentChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "currentChanged") -} - -func (p *qtabbar) SignalCurrentChanged() func() { - return getSignal(p.ObjectName(), "currentChanged") -} - -func (p *qtabbar) ConnectSignalTabBarClicked(f func()) { - C.QTabBar_ConnectSignalTabBarClicked(p.Pointer()) - connectSignal(p.ObjectName(), "tabBarClicked", f) -} - -func (p *qtabbar) DisconnectSignalTabBarClicked() { - C.QTabBar_DisconnectSignalTabBarClicked(p.Pointer()) - disconnectSignal(p.ObjectName(), "tabBarClicked") -} - -func (p *qtabbar) SignalTabBarClicked() func() { - return getSignal(p.ObjectName(), "tabBarClicked") -} - -func (p *qtabbar) ConnectSignalTabBarDoubleClicked(f func()) { - C.QTabBar_ConnectSignalTabBarDoubleClicked(p.Pointer()) - connectSignal(p.ObjectName(), "tabBarDoubleClicked", f) -} - -func (p *qtabbar) DisconnectSignalTabBarDoubleClicked() { - C.QTabBar_DisconnectSignalTabBarDoubleClicked(p.Pointer()) - disconnectSignal(p.ObjectName(), "tabBarDoubleClicked") -} - -func (p *qtabbar) SignalTabBarDoubleClicked() func() { - return getSignal(p.ObjectName(), "tabBarDoubleClicked") -} - -func (p *qtabbar) ConnectSignalTabCloseRequested(f func()) { - C.QTabBar_ConnectSignalTabCloseRequested(p.Pointer()) - connectSignal(p.ObjectName(), "tabCloseRequested", f) -} - -func (p *qtabbar) DisconnectSignalTabCloseRequested() { - C.QTabBar_DisconnectSignalTabCloseRequested(p.Pointer()) - disconnectSignal(p.ObjectName(), "tabCloseRequested") -} - -func (p *qtabbar) SignalTabCloseRequested() func() { - return getSignal(p.ObjectName(), "tabCloseRequested") -} - -func (p *qtabbar) ConnectSignalTabMoved(f func()) { - C.QTabBar_ConnectSignalTabMoved(p.Pointer()) - connectSignal(p.ObjectName(), "tabMoved", f) -} - -func (p *qtabbar) DisconnectSignalTabMoved() { - C.QTabBar_DisconnectSignalTabMoved(p.Pointer()) - disconnectSignal(p.ObjectName(), "tabMoved") -} - -func (p *qtabbar) SignalTabMoved() func() { - return getSignal(p.ObjectName(), "tabMoved") -} - -//export callbackQTabBar -func callbackQTabBar(ptr C.QtObjectPtr, msg *C.char) { - var qtabbar = new(qtabbar) - qtabbar.SetPointer(ptr) - getSignal(qtabbar.ObjectName(), C.GoString(msg))() -} diff --git a/qtabbar.h b/qtabbar.h deleted file mode 100644 index 4f1d5b28..00000000 --- a/qtabbar.h +++ /dev/null @@ -1,56 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QTabBar_New_QWidget(QtObjectPtr parent); -void QTabBar_Destroy(QtObjectPtr ptr); -int QTabBar_AddTab_String(QtObjectPtr ptr, char* text); -int QTabBar_Count(QtObjectPtr ptr); -int QTabBar_CurrentIndex(QtObjectPtr ptr); -int QTabBar_DocumentMode(QtObjectPtr ptr); -int QTabBar_DrawBase(QtObjectPtr ptr); -int QTabBar_ElideMode(QtObjectPtr ptr); -int QTabBar_Expanding(QtObjectPtr ptr); -int QTabBar_InsertTab_Int_String(QtObjectPtr ptr, int index, char* text); -int QTabBar_IsMovable(QtObjectPtr ptr); -int QTabBar_IsTabEnabled_Int(QtObjectPtr ptr, int index); -void QTabBar_MoveTab_Int_Int(QtObjectPtr ptr, int from, int to); -void QTabBar_RemoveTab_Int(QtObjectPtr ptr, int index); -void QTabBar_SetDocumentMode_Bool(QtObjectPtr ptr, int set); -void QTabBar_SetDrawBase_Bool(QtObjectPtr ptr, int drawTheBase); -void QTabBar_SetElideMode_TextElideMode(QtObjectPtr ptr, int TextElideMode); -void QTabBar_SetExpanding_Bool(QtObjectPtr ptr, int enabled); -void QTabBar_SetMovable_Bool(QtObjectPtr ptr, int movable); -void QTabBar_SetTabEnabled_Int_Bool(QtObjectPtr ptr, int index, int enabled); -void QTabBar_SetTabText_Int_String(QtObjectPtr ptr, int index, char* text); -void QTabBar_SetTabToolTip_Int_String(QtObjectPtr ptr, int index, char* tip); -void QTabBar_SetTabWhatsThis_Int_String(QtObjectPtr ptr, int index, char* text); -void QTabBar_SetTabsClosable_Bool(QtObjectPtr ptr, int closable); -void QTabBar_SetUsesScrollButtons_Bool(QtObjectPtr ptr, int useButtons); -char* QTabBar_TabText_Int(QtObjectPtr ptr, int index); -char* QTabBar_TabToolTip_Int(QtObjectPtr ptr, int index); -char* QTabBar_TabWhatsThis_Int(QtObjectPtr ptr, int index); -int QTabBar_TabsClosable(QtObjectPtr ptr); -int QTabBar_UsesScrollButtons(QtObjectPtr ptr); -//Public Slots -void QTabBar_ConnectSlotSetCurrentIndex(QtObjectPtr ptr); -void QTabBar_DisconnectSlotSetCurrentIndex(QtObjectPtr ptr); -void QTabBar_SetCurrentIndex_Int(QtObjectPtr ptr, int index); -//Signals -void QTabBar_ConnectSignalCurrentChanged(QtObjectPtr ptr); -void QTabBar_DisconnectSignalCurrentChanged(QtObjectPtr ptr); -void QTabBar_ConnectSignalTabBarClicked(QtObjectPtr ptr); -void QTabBar_DisconnectSignalTabBarClicked(QtObjectPtr ptr); -void QTabBar_ConnectSignalTabBarDoubleClicked(QtObjectPtr ptr); -void QTabBar_DisconnectSignalTabBarDoubleClicked(QtObjectPtr ptr); -void QTabBar_ConnectSignalTabCloseRequested(QtObjectPtr ptr); -void QTabBar_DisconnectSignalTabCloseRequested(QtObjectPtr ptr); -void QTabBar_ConnectSignalTabMoved(QtObjectPtr ptr); -void QTabBar_DisconnectSignalTabMoved(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qtabbar.moc b/qtabbar.moc deleted file mode 100644 index e6631db0..00000000 --- a/qtabbar.moc +++ /dev/null @@ -1,125 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qtabbar.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qtabbar.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQTabBar_t { - QByteArrayData data[4]; - char stringdata[38]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQTabBar_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQTabBar_t qt_meta_stringdata_MyQTabBar = { - { -QT_MOC_LITERAL(0, 0, 9), // "MyQTabBar" -QT_MOC_LITERAL(1, 10, 20), // "Slot_SetCurrentIndex" -QT_MOC_LITERAL(2, 31, 0), // "" -QT_MOC_LITERAL(3, 32, 5) // "index" - - }, - "MyQTabBar\0Slot_SetCurrentIndex\0\0index" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQTabBar[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 1, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 19, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, QMetaType::Int, 3, - - 0 // eod -}; - -void MyQTabBar::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQTabBar *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_SetCurrentIndex((*reinterpret_cast< int(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQTabBar::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTabBar::Slot_SetCurrentIndex)) { - *result = 0; - } - } - } -} - -const QMetaObject MyQTabBar::staticMetaObject = { - { &QTabBar::staticMetaObject, qt_meta_stringdata_MyQTabBar.data, - qt_meta_data_MyQTabBar, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQTabBar::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQTabBar::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQTabBar.stringdata)) - return static_cast(const_cast< MyQTabBar*>(this)); - return QTabBar::qt_metacast(_clname); -} - -int MyQTabBar::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QTabBar::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 1) - qt_static_metacall(this, _c, _id, _a); - _id -= 1; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 1) - *reinterpret_cast(_a[0]) = -1; - _id -= 1; - } - return _id; -} - -// SIGNAL 0 -void MyQTabBar::Slot_SetCurrentIndex(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -QT_END_MOC_NAMESPACE diff --git a/qtableview.cpp b/qtableview.cpp deleted file mode 100644 index cc100a3b..00000000 --- a/qtableview.cpp +++ /dev/null @@ -1,333 +0,0 @@ -#include "qtableview.h" -#include -#include "cgoexport.h" - -//MyQTableView -class MyQTableView: public QTableView { -Q_OBJECT -public: - -signals: -void Slot_HideColumn(int column); -void Slot_HideRow(int row); -void Slot_ResizeColumnToContents(int column); -void Slot_ResizeColumnsToContents(); -void Slot_ResizeRowToContents(int row); -void Slot_ResizeRowsToContents(); -void Slot_SelectColumn(int column); -void Slot_SelectRow(int row); -void Slot_SetShowGrid(bool show); -void Slot_ShowColumn(int column); -void Slot_ShowRow(int row); - -}; -#include "qtableview.moc" - - -//Public Functions -QtObjectPtr QTableView_New_QWidget(QtObjectPtr parent) -{ - return new QTableView(((QWidget*)(parent))); -} - -void QTableView_Destroy(QtObjectPtr ptr) -{ - ((QTableView*)(ptr))->~QTableView(); -} - -void QTableView_ClearSpans(QtObjectPtr ptr) -{ - ((QTableView*)(ptr))->clearSpans(); -} - -int QTableView_ColumnAt_Int(QtObjectPtr ptr, int x) -{ - return ((QTableView*)(ptr))->columnAt(x); -} - -int QTableView_ColumnSpan_Int_Int(QtObjectPtr ptr, int row, int column) -{ - return ((QTableView*)(ptr))->columnSpan(row, column); -} - -int QTableView_ColumnViewportPosition_Int(QtObjectPtr ptr, int column) -{ - return ((QTableView*)(ptr))->columnViewportPosition(column); -} - -int QTableView_ColumnWidth_Int(QtObjectPtr ptr, int column) -{ - return ((QTableView*)(ptr))->columnWidth(column); -} - -int QTableView_GridStyle(QtObjectPtr ptr) -{ - return ((QTableView*)(ptr))->gridStyle(); -} - -int QTableView_IsColumnHidden_Int(QtObjectPtr ptr, int column) -{ - return ((QTableView*)(ptr))->isColumnHidden(column); -} - -int QTableView_IsCornerButtonEnabled(QtObjectPtr ptr) -{ - return ((QTableView*)(ptr))->isCornerButtonEnabled(); -} - -int QTableView_IsRowHidden_Int(QtObjectPtr ptr, int row) -{ - return ((QTableView*)(ptr))->isRowHidden(row); -} - -int QTableView_IsSortingEnabled(QtObjectPtr ptr) -{ - return ((QTableView*)(ptr))->isSortingEnabled(); -} - -int QTableView_RowAt_Int(QtObjectPtr ptr, int y) -{ - return ((QTableView*)(ptr))->rowAt(y); -} - -int QTableView_RowHeight_Int(QtObjectPtr ptr, int row) -{ - return ((QTableView*)(ptr))->rowHeight(row); -} - -int QTableView_RowSpan_Int_Int(QtObjectPtr ptr, int row, int column) -{ - return ((QTableView*)(ptr))->rowSpan(row, column); -} - -int QTableView_RowViewportPosition_Int(QtObjectPtr ptr, int row) -{ - return ((QTableView*)(ptr))->rowViewportPosition(row); -} - -void QTableView_SetColumnHidden_Int_Bool(QtObjectPtr ptr, int column, int hide) -{ - ((QTableView*)(ptr))->setColumnHidden(column, hide != 0); -} - -void QTableView_SetColumnWidth_Int_Int(QtObjectPtr ptr, int column, int width) -{ - ((QTableView*)(ptr))->setColumnWidth(column, width); -} - -void QTableView_SetCornerButtonEnabled_Bool(QtObjectPtr ptr, int enable) -{ - ((QTableView*)(ptr))->setCornerButtonEnabled(enable != 0); -} - -void QTableView_SetGridStyle_PenStyle(QtObjectPtr ptr, int style) -{ - ((QTableView*)(ptr))->setGridStyle(((Qt::PenStyle)(style))); -} - -void QTableView_SetRowHeight_Int_Int(QtObjectPtr ptr, int row, int height) -{ - ((QTableView*)(ptr))->setRowHeight(row, height); -} - -void QTableView_SetRowHidden_Int_Bool(QtObjectPtr ptr, int row, int hide) -{ - ((QTableView*)(ptr))->setRowHidden(row, hide != 0); -} - -void QTableView_SetSortingEnabled_Bool(QtObjectPtr ptr, int enable) -{ - ((QTableView*)(ptr))->setSortingEnabled(enable != 0); -} - -void QTableView_SetSpan_Int_Int_Int_Int(QtObjectPtr ptr, int row, int column, int rowSpanCount, int columnSpanCount) -{ - ((QTableView*)(ptr))->setSpan(row, column, rowSpanCount, columnSpanCount); -} - -void QTableView_SetWordWrap_Bool(QtObjectPtr ptr, int on) -{ - ((QTableView*)(ptr))->setWordWrap(on != 0); -} - -int QTableView_ShowGrid(QtObjectPtr ptr) -{ - return ((QTableView*)(ptr))->showGrid(); -} - -void QTableView_SortByColumn_Int_SortOrder(QtObjectPtr ptr, int column, int order) -{ - ((QTableView*)(ptr))->sortByColumn(column, ((Qt::SortOrder)(order))); -} - -int QTableView_WordWrap(QtObjectPtr ptr) -{ - return ((QTableView*)(ptr))->wordWrap(); -} - -//Public Slots -void QTableView_ConnectSlotHideColumn(QtObjectPtr ptr) -{ - QObject::connect(((MyQTableView*)(ptr)), &MyQTableView::Slot_HideColumn, ((QTableView*)(ptr)), &QTableView::hideColumn, Qt::QueuedConnection); -} - -void QTableView_DisconnectSlotHideColumn(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTableView*)(ptr)), &MyQTableView::Slot_HideColumn, ((QTableView*)(ptr)), &QTableView::hideColumn); -} - -void QTableView_HideColumn_Int(QtObjectPtr ptr, int column) -{ - ((MyQTableView*)(ptr))->Slot_HideColumn(column); -} - -void QTableView_ConnectSlotHideRow(QtObjectPtr ptr) -{ - QObject::connect(((MyQTableView*)(ptr)), &MyQTableView::Slot_HideRow, ((QTableView*)(ptr)), &QTableView::hideRow, Qt::QueuedConnection); -} - -void QTableView_DisconnectSlotHideRow(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTableView*)(ptr)), &MyQTableView::Slot_HideRow, ((QTableView*)(ptr)), &QTableView::hideRow); -} - -void QTableView_HideRow_Int(QtObjectPtr ptr, int row) -{ - ((MyQTableView*)(ptr))->Slot_HideRow(row); -} - -void QTableView_ConnectSlotResizeColumnToContents(QtObjectPtr ptr) -{ - QObject::connect(((MyQTableView*)(ptr)), &MyQTableView::Slot_ResizeColumnToContents, ((QTableView*)(ptr)), &QTableView::resizeColumnToContents, Qt::QueuedConnection); -} - -void QTableView_DisconnectSlotResizeColumnToContents(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTableView*)(ptr)), &MyQTableView::Slot_ResizeColumnToContents, ((QTableView*)(ptr)), &QTableView::resizeColumnToContents); -} - -void QTableView_ResizeColumnToContents_Int(QtObjectPtr ptr, int column) -{ - ((MyQTableView*)(ptr))->Slot_ResizeColumnToContents(column); -} - -void QTableView_ConnectSlotResizeColumnsToContents(QtObjectPtr ptr) -{ - QObject::connect(((MyQTableView*)(ptr)), &MyQTableView::Slot_ResizeColumnsToContents, ((QTableView*)(ptr)), &QTableView::resizeColumnsToContents, Qt::QueuedConnection); -} - -void QTableView_DisconnectSlotResizeColumnsToContents(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTableView*)(ptr)), &MyQTableView::Slot_ResizeColumnsToContents, ((QTableView*)(ptr)), &QTableView::resizeColumnsToContents); -} - -void QTableView_ResizeColumnsToContents(QtObjectPtr ptr) -{ - ((MyQTableView*)(ptr))->Slot_ResizeColumnsToContents(); -} - -void QTableView_ConnectSlotResizeRowToContents(QtObjectPtr ptr) -{ - QObject::connect(((MyQTableView*)(ptr)), &MyQTableView::Slot_ResizeRowToContents, ((QTableView*)(ptr)), &QTableView::resizeRowToContents, Qt::QueuedConnection); -} - -void QTableView_DisconnectSlotResizeRowToContents(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTableView*)(ptr)), &MyQTableView::Slot_ResizeRowToContents, ((QTableView*)(ptr)), &QTableView::resizeRowToContents); -} - -void QTableView_ResizeRowToContents_Int(QtObjectPtr ptr, int row) -{ - ((MyQTableView*)(ptr))->Slot_ResizeRowToContents(row); -} - -void QTableView_ConnectSlotResizeRowsToContents(QtObjectPtr ptr) -{ - QObject::connect(((MyQTableView*)(ptr)), &MyQTableView::Slot_ResizeRowsToContents, ((QTableView*)(ptr)), &QTableView::resizeRowsToContents, Qt::QueuedConnection); -} - -void QTableView_DisconnectSlotResizeRowsToContents(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTableView*)(ptr)), &MyQTableView::Slot_ResizeRowsToContents, ((QTableView*)(ptr)), &QTableView::resizeRowsToContents); -} - -void QTableView_ResizeRowsToContents(QtObjectPtr ptr) -{ - ((MyQTableView*)(ptr))->Slot_ResizeRowsToContents(); -} - -void QTableView_ConnectSlotSelectColumn(QtObjectPtr ptr) -{ - QObject::connect(((MyQTableView*)(ptr)), &MyQTableView::Slot_SelectColumn, ((QTableView*)(ptr)), &QTableView::selectColumn, Qt::QueuedConnection); -} - -void QTableView_DisconnectSlotSelectColumn(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTableView*)(ptr)), &MyQTableView::Slot_SelectColumn, ((QTableView*)(ptr)), &QTableView::selectColumn); -} - -void QTableView_SelectColumn_Int(QtObjectPtr ptr, int column) -{ - ((MyQTableView*)(ptr))->Slot_SelectColumn(column); -} - -void QTableView_ConnectSlotSelectRow(QtObjectPtr ptr) -{ - QObject::connect(((MyQTableView*)(ptr)), &MyQTableView::Slot_SelectRow, ((QTableView*)(ptr)), &QTableView::selectRow, Qt::QueuedConnection); -} - -void QTableView_DisconnectSlotSelectRow(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTableView*)(ptr)), &MyQTableView::Slot_SelectRow, ((QTableView*)(ptr)), &QTableView::selectRow); -} - -void QTableView_SelectRow_Int(QtObjectPtr ptr, int row) -{ - ((MyQTableView*)(ptr))->Slot_SelectRow(row); -} - -void QTableView_ConnectSlotSetShowGrid(QtObjectPtr ptr) -{ - QObject::connect(((MyQTableView*)(ptr)), &MyQTableView::Slot_SetShowGrid, ((QTableView*)(ptr)), &QTableView::setShowGrid, Qt::QueuedConnection); -} - -void QTableView_DisconnectSlotSetShowGrid(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTableView*)(ptr)), &MyQTableView::Slot_SetShowGrid, ((QTableView*)(ptr)), &QTableView::setShowGrid); -} - -void QTableView_SetShowGrid_Bool(QtObjectPtr ptr, int show) -{ - ((MyQTableView*)(ptr))->Slot_SetShowGrid(show != 0); -} - -void QTableView_ConnectSlotShowColumn(QtObjectPtr ptr) -{ - QObject::connect(((MyQTableView*)(ptr)), &MyQTableView::Slot_ShowColumn, ((QTableView*)(ptr)), &QTableView::showColumn, Qt::QueuedConnection); -} - -void QTableView_DisconnectSlotShowColumn(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTableView*)(ptr)), &MyQTableView::Slot_ShowColumn, ((QTableView*)(ptr)), &QTableView::showColumn); -} - -void QTableView_ShowColumn_Int(QtObjectPtr ptr, int column) -{ - ((MyQTableView*)(ptr))->Slot_ShowColumn(column); -} - -void QTableView_ConnectSlotShowRow(QtObjectPtr ptr) -{ - QObject::connect(((MyQTableView*)(ptr)), &MyQTableView::Slot_ShowRow, ((QTableView*)(ptr)), &QTableView::showRow, Qt::QueuedConnection); -} - -void QTableView_DisconnectSlotShowRow(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTableView*)(ptr)), &MyQTableView::Slot_ShowRow, ((QTableView*)(ptr)), &QTableView::showRow); -} - -void QTableView_ShowRow_Int(QtObjectPtr ptr, int row) -{ - ((MyQTableView*)(ptr))->Slot_ShowRow(row); -} - diff --git a/qtableview.go b/qtableview.go deleted file mode 100644 index 35b81b84..00000000 --- a/qtableview.go +++ /dev/null @@ -1,423 +0,0 @@ -package qt - -//#include "qtableview.h" -import "C" - -type qtableview struct { - qabstractitemview -} - -type QTableView interface { - QAbstractItemView - ClearSpans() - ColumnAt(x int) int - ColumnSpan(row int, column int) int - ColumnViewportPosition(column int) int - ColumnWidth(column int) int - GridStyle() PenStyle - IsColumnHidden(column int) bool - IsCornerButtonEnabled() bool - IsRowHidden(row int) bool - IsSortingEnabled() bool - RowAt(y int) int - RowHeight(row int) int - RowSpan(row int, column int) int - RowViewportPosition(row int) int - SetColumnHidden(column int, hide bool) - SetColumnWidth(column int, width int) - SetCornerButtonEnabled(enable bool) - SetGridStyle(style PenStyle) - SetRowHeight(row int, height int) - SetRowHidden(row int, hide bool) - SetSortingEnabled(enable bool) - SetSpan(row int, column int, rowSpanCount int, columnSpanCount int) - SetWordWrap(on bool) - ShowGrid() bool - SortByColumn(column int, order SortOrder) - WordWrap() bool - ConnectSlotHideColumn() - DisconnectSlotHideColumn() - SlotHideColumn(column int) - ConnectSlotHideRow() - DisconnectSlotHideRow() - SlotHideRow(row int) - ConnectSlotResizeColumnToContents() - DisconnectSlotResizeColumnToContents() - SlotResizeColumnToContents(column int) - ConnectSlotResizeColumnsToContents() - DisconnectSlotResizeColumnsToContents() - SlotResizeColumnsToContents() - ConnectSlotResizeRowToContents() - DisconnectSlotResizeRowToContents() - SlotResizeRowToContents(row int) - ConnectSlotResizeRowsToContents() - DisconnectSlotResizeRowsToContents() - SlotResizeRowsToContents() - ConnectSlotSelectColumn() - DisconnectSlotSelectColumn() - SlotSelectColumn(column int) - ConnectSlotSelectRow() - DisconnectSlotSelectRow() - SlotSelectRow(row int) - ConnectSlotSetShowGrid() - DisconnectSlotSetShowGrid() - SlotSetShowGrid(show bool) - ConnectSlotShowColumn() - DisconnectSlotShowColumn() - SlotShowColumn(column int) - ConnectSlotShowRow() - DisconnectSlotShowRow() - SlotShowRow(row int) -} - -func (p *qtableview) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qtableview) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQTableView(parent QWidget) QTableView { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qtableview = new(qtableview) - qtableview.SetPointer(C.QTableView_New_QWidget(parentPtr)) - qtableview.SetObjectName("QTableView_" + randomIdentifier()) - return qtableview -} - -func (p *qtableview) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QTableView_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qtableview) ClearSpans() { - if p.Pointer() != nil { - C.QTableView_ClearSpans(p.Pointer()) - } -} - -func (p *qtableview) ColumnAt(x int) int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTableView_ColumnAt_Int(p.Pointer(), C.int(x))) -} - -func (p *qtableview) ColumnSpan(row int, column int) int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTableView_ColumnSpan_Int_Int(p.Pointer(), C.int(row), C.int(column))) -} - -func (p *qtableview) ColumnViewportPosition(column int) int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTableView_ColumnViewportPosition_Int(p.Pointer(), C.int(column))) -} - -func (p *qtableview) ColumnWidth(column int) int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTableView_ColumnWidth_Int(p.Pointer(), C.int(column))) -} - -func (p *qtableview) GridStyle() PenStyle { - if p.Pointer() == nil { - return 0 - } - return PenStyle(C.QTableView_GridStyle(p.Pointer())) -} - -func (p *qtableview) IsColumnHidden(column int) bool { - if p.Pointer() == nil { - return false - } - return C.QTableView_IsColumnHidden_Int(p.Pointer(), C.int(column)) != 0 -} - -func (p *qtableview) IsCornerButtonEnabled() bool { - if p.Pointer() == nil { - return false - } - return C.QTableView_IsCornerButtonEnabled(p.Pointer()) != 0 -} - -func (p *qtableview) IsRowHidden(row int) bool { - if p.Pointer() == nil { - return false - } - return C.QTableView_IsRowHidden_Int(p.Pointer(), C.int(row)) != 0 -} - -func (p *qtableview) IsSortingEnabled() bool { - if p.Pointer() == nil { - return false - } - return C.QTableView_IsSortingEnabled(p.Pointer()) != 0 -} - -func (p *qtableview) RowAt(y int) int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTableView_RowAt_Int(p.Pointer(), C.int(y))) -} - -func (p *qtableview) RowHeight(row int) int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTableView_RowHeight_Int(p.Pointer(), C.int(row))) -} - -func (p *qtableview) RowSpan(row int, column int) int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTableView_RowSpan_Int_Int(p.Pointer(), C.int(row), C.int(column))) -} - -func (p *qtableview) RowViewportPosition(row int) int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTableView_RowViewportPosition_Int(p.Pointer(), C.int(row))) -} - -func (p *qtableview) SetColumnHidden(column int, hide bool) { - if p.Pointer() != nil { - C.QTableView_SetColumnHidden_Int_Bool(p.Pointer(), C.int(column), goBoolToCInt(hide)) - } -} - -func (p *qtableview) SetColumnWidth(column int, width int) { - if p.Pointer() != nil { - C.QTableView_SetColumnWidth_Int_Int(p.Pointer(), C.int(column), C.int(width)) - } -} - -func (p *qtableview) SetCornerButtonEnabled(enable bool) { - if p.Pointer() != nil { - C.QTableView_SetCornerButtonEnabled_Bool(p.Pointer(), goBoolToCInt(enable)) - } -} - -func (p *qtableview) SetGridStyle(style PenStyle) { - if p.Pointer() != nil { - C.QTableView_SetGridStyle_PenStyle(p.Pointer(), C.int(style)) - } -} - -func (p *qtableview) SetRowHeight(row int, height int) { - if p.Pointer() != nil { - C.QTableView_SetRowHeight_Int_Int(p.Pointer(), C.int(row), C.int(height)) - } -} - -func (p *qtableview) SetRowHidden(row int, hide bool) { - if p.Pointer() != nil { - C.QTableView_SetRowHidden_Int_Bool(p.Pointer(), C.int(row), goBoolToCInt(hide)) - } -} - -func (p *qtableview) SetSortingEnabled(enable bool) { - if p.Pointer() != nil { - C.QTableView_SetSortingEnabled_Bool(p.Pointer(), goBoolToCInt(enable)) - } -} - -func (p *qtableview) SetSpan(row int, column int, rowSpanCount int, columnSpanCount int) { - if p.Pointer() != nil { - C.QTableView_SetSpan_Int_Int_Int_Int(p.Pointer(), C.int(row), C.int(column), C.int(rowSpanCount), C.int(columnSpanCount)) - } -} - -func (p *qtableview) SetWordWrap(on bool) { - if p.Pointer() != nil { - C.QTableView_SetWordWrap_Bool(p.Pointer(), goBoolToCInt(on)) - } -} - -func (p *qtableview) ShowGrid() bool { - if p.Pointer() == nil { - return false - } - return C.QTableView_ShowGrid(p.Pointer()) != 0 -} - -func (p *qtableview) SortByColumn(column int, order SortOrder) { - if p.Pointer() != nil { - C.QTableView_SortByColumn_Int_SortOrder(p.Pointer(), C.int(column), C.int(order)) - } -} - -func (p *qtableview) WordWrap() bool { - if p.Pointer() == nil { - return false - } - return C.QTableView_WordWrap(p.Pointer()) != 0 -} - -func (p *qtableview) ConnectSlotHideColumn() { - C.QTableView_ConnectSlotHideColumn(p.Pointer()) -} - -func (p *qtableview) DisconnectSlotHideColumn() { - C.QTableView_DisconnectSlotHideColumn(p.Pointer()) -} - -func (p *qtableview) SlotHideColumn(column int) { - if p.Pointer() != nil { - C.QTableView_HideColumn_Int(p.Pointer(), C.int(column)) - } -} - -func (p *qtableview) ConnectSlotHideRow() { - C.QTableView_ConnectSlotHideRow(p.Pointer()) -} - -func (p *qtableview) DisconnectSlotHideRow() { - C.QTableView_DisconnectSlotHideRow(p.Pointer()) -} - -func (p *qtableview) SlotHideRow(row int) { - if p.Pointer() != nil { - C.QTableView_HideRow_Int(p.Pointer(), C.int(row)) - } -} - -func (p *qtableview) ConnectSlotResizeColumnToContents() { - C.QTableView_ConnectSlotResizeColumnToContents(p.Pointer()) -} - -func (p *qtableview) DisconnectSlotResizeColumnToContents() { - C.QTableView_DisconnectSlotResizeColumnToContents(p.Pointer()) -} - -func (p *qtableview) SlotResizeColumnToContents(column int) { - if p.Pointer() != nil { - C.QTableView_ResizeColumnToContents_Int(p.Pointer(), C.int(column)) - } -} - -func (p *qtableview) ConnectSlotResizeColumnsToContents() { - C.QTableView_ConnectSlotResizeColumnsToContents(p.Pointer()) -} - -func (p *qtableview) DisconnectSlotResizeColumnsToContents() { - C.QTableView_DisconnectSlotResizeColumnsToContents(p.Pointer()) -} - -func (p *qtableview) SlotResizeColumnsToContents() { - if p.Pointer() != nil { - C.QTableView_ResizeColumnsToContents(p.Pointer()) - } -} - -func (p *qtableview) ConnectSlotResizeRowToContents() { - C.QTableView_ConnectSlotResizeRowToContents(p.Pointer()) -} - -func (p *qtableview) DisconnectSlotResizeRowToContents() { - C.QTableView_DisconnectSlotResizeRowToContents(p.Pointer()) -} - -func (p *qtableview) SlotResizeRowToContents(row int) { - if p.Pointer() != nil { - C.QTableView_ResizeRowToContents_Int(p.Pointer(), C.int(row)) - } -} - -func (p *qtableview) ConnectSlotResizeRowsToContents() { - C.QTableView_ConnectSlotResizeRowsToContents(p.Pointer()) -} - -func (p *qtableview) DisconnectSlotResizeRowsToContents() { - C.QTableView_DisconnectSlotResizeRowsToContents(p.Pointer()) -} - -func (p *qtableview) SlotResizeRowsToContents() { - if p.Pointer() != nil { - C.QTableView_ResizeRowsToContents(p.Pointer()) - } -} - -func (p *qtableview) ConnectSlotSelectColumn() { - C.QTableView_ConnectSlotSelectColumn(p.Pointer()) -} - -func (p *qtableview) DisconnectSlotSelectColumn() { - C.QTableView_DisconnectSlotSelectColumn(p.Pointer()) -} - -func (p *qtableview) SlotSelectColumn(column int) { - if p.Pointer() != nil { - C.QTableView_SelectColumn_Int(p.Pointer(), C.int(column)) - } -} - -func (p *qtableview) ConnectSlotSelectRow() { - C.QTableView_ConnectSlotSelectRow(p.Pointer()) -} - -func (p *qtableview) DisconnectSlotSelectRow() { - C.QTableView_DisconnectSlotSelectRow(p.Pointer()) -} - -func (p *qtableview) SlotSelectRow(row int) { - if p.Pointer() != nil { - C.QTableView_SelectRow_Int(p.Pointer(), C.int(row)) - } -} - -func (p *qtableview) ConnectSlotSetShowGrid() { - C.QTableView_ConnectSlotSetShowGrid(p.Pointer()) -} - -func (p *qtableview) DisconnectSlotSetShowGrid() { - C.QTableView_DisconnectSlotSetShowGrid(p.Pointer()) -} - -func (p *qtableview) SlotSetShowGrid(show bool) { - if p.Pointer() != nil { - C.QTableView_SetShowGrid_Bool(p.Pointer(), goBoolToCInt(show)) - } -} - -func (p *qtableview) ConnectSlotShowColumn() { - C.QTableView_ConnectSlotShowColumn(p.Pointer()) -} - -func (p *qtableview) DisconnectSlotShowColumn() { - C.QTableView_DisconnectSlotShowColumn(p.Pointer()) -} - -func (p *qtableview) SlotShowColumn(column int) { - if p.Pointer() != nil { - C.QTableView_ShowColumn_Int(p.Pointer(), C.int(column)) - } -} - -func (p *qtableview) ConnectSlotShowRow() { - C.QTableView_ConnectSlotShowRow(p.Pointer()) -} - -func (p *qtableview) DisconnectSlotShowRow() { - C.QTableView_DisconnectSlotShowRow(p.Pointer()) -} - -func (p *qtableview) SlotShowRow(row int) { - if p.Pointer() != nil { - C.QTableView_ShowRow_Int(p.Pointer(), C.int(row)) - } -} diff --git a/qtableview.h b/qtableview.h deleted file mode 100644 index 33405c51..00000000 --- a/qtableview.h +++ /dev/null @@ -1,73 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QTableView_New_QWidget(QtObjectPtr parent); -void QTableView_Destroy(QtObjectPtr ptr); -void QTableView_ClearSpans(QtObjectPtr ptr); -int QTableView_ColumnAt_Int(QtObjectPtr ptr, int x); -int QTableView_ColumnSpan_Int_Int(QtObjectPtr ptr, int row, int column); -int QTableView_ColumnViewportPosition_Int(QtObjectPtr ptr, int column); -int QTableView_ColumnWidth_Int(QtObjectPtr ptr, int column); -int QTableView_GridStyle(QtObjectPtr ptr); -int QTableView_IsColumnHidden_Int(QtObjectPtr ptr, int column); -int QTableView_IsCornerButtonEnabled(QtObjectPtr ptr); -int QTableView_IsRowHidden_Int(QtObjectPtr ptr, int row); -int QTableView_IsSortingEnabled(QtObjectPtr ptr); -int QTableView_RowAt_Int(QtObjectPtr ptr, int y); -int QTableView_RowHeight_Int(QtObjectPtr ptr, int row); -int QTableView_RowSpan_Int_Int(QtObjectPtr ptr, int row, int column); -int QTableView_RowViewportPosition_Int(QtObjectPtr ptr, int row); -void QTableView_SetColumnHidden_Int_Bool(QtObjectPtr ptr, int column, int hide); -void QTableView_SetColumnWidth_Int_Int(QtObjectPtr ptr, int column, int width); -void QTableView_SetCornerButtonEnabled_Bool(QtObjectPtr ptr, int enable); -void QTableView_SetGridStyle_PenStyle(QtObjectPtr ptr, int style); -void QTableView_SetRowHeight_Int_Int(QtObjectPtr ptr, int row, int height); -void QTableView_SetRowHidden_Int_Bool(QtObjectPtr ptr, int row, int hide); -void QTableView_SetSortingEnabled_Bool(QtObjectPtr ptr, int enable); -void QTableView_SetSpan_Int_Int_Int_Int(QtObjectPtr ptr, int row, int column, int rowSpanCount, int columnSpanCount); -void QTableView_SetWordWrap_Bool(QtObjectPtr ptr, int on); -int QTableView_ShowGrid(QtObjectPtr ptr); -void QTableView_SortByColumn_Int_SortOrder(QtObjectPtr ptr, int column, int order); -int QTableView_WordWrap(QtObjectPtr ptr); -//Public Slots -void QTableView_ConnectSlotHideColumn(QtObjectPtr ptr); -void QTableView_DisconnectSlotHideColumn(QtObjectPtr ptr); -void QTableView_HideColumn_Int(QtObjectPtr ptr, int column); -void QTableView_ConnectSlotHideRow(QtObjectPtr ptr); -void QTableView_DisconnectSlotHideRow(QtObjectPtr ptr); -void QTableView_HideRow_Int(QtObjectPtr ptr, int row); -void QTableView_ConnectSlotResizeColumnToContents(QtObjectPtr ptr); -void QTableView_DisconnectSlotResizeColumnToContents(QtObjectPtr ptr); -void QTableView_ResizeColumnToContents_Int(QtObjectPtr ptr, int column); -void QTableView_ConnectSlotResizeColumnsToContents(QtObjectPtr ptr); -void QTableView_DisconnectSlotResizeColumnsToContents(QtObjectPtr ptr); -void QTableView_ResizeColumnsToContents(QtObjectPtr ptr); -void QTableView_ConnectSlotResizeRowToContents(QtObjectPtr ptr); -void QTableView_DisconnectSlotResizeRowToContents(QtObjectPtr ptr); -void QTableView_ResizeRowToContents_Int(QtObjectPtr ptr, int row); -void QTableView_ConnectSlotResizeRowsToContents(QtObjectPtr ptr); -void QTableView_DisconnectSlotResizeRowsToContents(QtObjectPtr ptr); -void QTableView_ResizeRowsToContents(QtObjectPtr ptr); -void QTableView_ConnectSlotSelectColumn(QtObjectPtr ptr); -void QTableView_DisconnectSlotSelectColumn(QtObjectPtr ptr); -void QTableView_SelectColumn_Int(QtObjectPtr ptr, int column); -void QTableView_ConnectSlotSelectRow(QtObjectPtr ptr); -void QTableView_DisconnectSlotSelectRow(QtObjectPtr ptr); -void QTableView_SelectRow_Int(QtObjectPtr ptr, int row); -void QTableView_ConnectSlotSetShowGrid(QtObjectPtr ptr); -void QTableView_DisconnectSlotSetShowGrid(QtObjectPtr ptr); -void QTableView_SetShowGrid_Bool(QtObjectPtr ptr, int show); -void QTableView_ConnectSlotShowColumn(QtObjectPtr ptr); -void QTableView_DisconnectSlotShowColumn(QtObjectPtr ptr); -void QTableView_ShowColumn_Int(QtObjectPtr ptr, int column); -void QTableView_ConnectSlotShowRow(QtObjectPtr ptr); -void QTableView_DisconnectSlotShowRow(QtObjectPtr ptr); -void QTableView_ShowRow_Int(QtObjectPtr ptr, int row); - -#ifdef __cplusplus -} -#endif diff --git a/qtableview.moc b/qtableview.moc deleted file mode 100644 index b0132ade..00000000 --- a/qtableview.moc +++ /dev/null @@ -1,301 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qtableview.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qtableview.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQTableView_t { - QByteArrayData data[16]; - char stringdata[246]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQTableView_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQTableView_t qt_meta_stringdata_MyQTableView = { - { -QT_MOC_LITERAL(0, 0, 12), // "MyQTableView" -QT_MOC_LITERAL(1, 13, 15), // "Slot_HideColumn" -QT_MOC_LITERAL(2, 29, 0), // "" -QT_MOC_LITERAL(3, 30, 6), // "column" -QT_MOC_LITERAL(4, 37, 12), // "Slot_HideRow" -QT_MOC_LITERAL(5, 50, 3), // "row" -QT_MOC_LITERAL(6, 54, 27), // "Slot_ResizeColumnToContents" -QT_MOC_LITERAL(7, 82, 28), // "Slot_ResizeColumnsToContents" -QT_MOC_LITERAL(8, 111, 24), // "Slot_ResizeRowToContents" -QT_MOC_LITERAL(9, 136, 25), // "Slot_ResizeRowsToContents" -QT_MOC_LITERAL(10, 162, 17), // "Slot_SelectColumn" -QT_MOC_LITERAL(11, 180, 14), // "Slot_SelectRow" -QT_MOC_LITERAL(12, 195, 16), // "Slot_SetShowGrid" -QT_MOC_LITERAL(13, 212, 4), // "show" -QT_MOC_LITERAL(14, 217, 15), // "Slot_ShowColumn" -QT_MOC_LITERAL(15, 233, 12) // "Slot_ShowRow" - - }, - "MyQTableView\0Slot_HideColumn\0\0column\0" - "Slot_HideRow\0row\0Slot_ResizeColumnToContents\0" - "Slot_ResizeColumnsToContents\0" - "Slot_ResizeRowToContents\0" - "Slot_ResizeRowsToContents\0Slot_SelectColumn\0" - "Slot_SelectRow\0Slot_SetShowGrid\0show\0" - "Slot_ShowColumn\0Slot_ShowRow" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQTableView[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 11, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 11, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 69, 2, 0x06 /* Public */, - 4, 1, 72, 2, 0x06 /* Public */, - 6, 1, 75, 2, 0x06 /* Public */, - 7, 0, 78, 2, 0x06 /* Public */, - 8, 1, 79, 2, 0x06 /* Public */, - 9, 0, 82, 2, 0x06 /* Public */, - 10, 1, 83, 2, 0x06 /* Public */, - 11, 1, 86, 2, 0x06 /* Public */, - 12, 1, 89, 2, 0x06 /* Public */, - 14, 1, 92, 2, 0x06 /* Public */, - 15, 1, 95, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, QMetaType::Int, 3, - QMetaType::Void, QMetaType::Int, 5, - QMetaType::Void, QMetaType::Int, 3, - QMetaType::Void, - QMetaType::Void, QMetaType::Int, 5, - QMetaType::Void, - QMetaType::Void, QMetaType::Int, 3, - QMetaType::Void, QMetaType::Int, 5, - QMetaType::Void, QMetaType::Bool, 13, - QMetaType::Void, QMetaType::Int, 3, - QMetaType::Void, QMetaType::Int, 5, - - 0 // eod -}; - -void MyQTableView::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQTableView *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_HideColumn((*reinterpret_cast< int(*)>(_a[1]))); break; - case 1: _t->Slot_HideRow((*reinterpret_cast< int(*)>(_a[1]))); break; - case 2: _t->Slot_ResizeColumnToContents((*reinterpret_cast< int(*)>(_a[1]))); break; - case 3: _t->Slot_ResizeColumnsToContents(); break; - case 4: _t->Slot_ResizeRowToContents((*reinterpret_cast< int(*)>(_a[1]))); break; - case 5: _t->Slot_ResizeRowsToContents(); break; - case 6: _t->Slot_SelectColumn((*reinterpret_cast< int(*)>(_a[1]))); break; - case 7: _t->Slot_SelectRow((*reinterpret_cast< int(*)>(_a[1]))); break; - case 8: _t->Slot_SetShowGrid((*reinterpret_cast< bool(*)>(_a[1]))); break; - case 9: _t->Slot_ShowColumn((*reinterpret_cast< int(*)>(_a[1]))); break; - case 10: _t->Slot_ShowRow((*reinterpret_cast< int(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQTableView::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTableView::Slot_HideColumn)) { - *result = 0; - } - } - { - typedef void (MyQTableView::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTableView::Slot_HideRow)) { - *result = 1; - } - } - { - typedef void (MyQTableView::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTableView::Slot_ResizeColumnToContents)) { - *result = 2; - } - } - { - typedef void (MyQTableView::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTableView::Slot_ResizeColumnsToContents)) { - *result = 3; - } - } - { - typedef void (MyQTableView::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTableView::Slot_ResizeRowToContents)) { - *result = 4; - } - } - { - typedef void (MyQTableView::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTableView::Slot_ResizeRowsToContents)) { - *result = 5; - } - } - { - typedef void (MyQTableView::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTableView::Slot_SelectColumn)) { - *result = 6; - } - } - { - typedef void (MyQTableView::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTableView::Slot_SelectRow)) { - *result = 7; - } - } - { - typedef void (MyQTableView::*_t)(bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTableView::Slot_SetShowGrid)) { - *result = 8; - } - } - { - typedef void (MyQTableView::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTableView::Slot_ShowColumn)) { - *result = 9; - } - } - { - typedef void (MyQTableView::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTableView::Slot_ShowRow)) { - *result = 10; - } - } - } -} - -const QMetaObject MyQTableView::staticMetaObject = { - { &QTableView::staticMetaObject, qt_meta_stringdata_MyQTableView.data, - qt_meta_data_MyQTableView, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQTableView::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQTableView::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQTableView.stringdata)) - return static_cast(const_cast< MyQTableView*>(this)); - return QTableView::qt_metacast(_clname); -} - -int MyQTableView::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QTableView::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 11) - qt_static_metacall(this, _c, _id, _a); - _id -= 11; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 11) - *reinterpret_cast(_a[0]) = -1; - _id -= 11; - } - return _id; -} - -// SIGNAL 0 -void MyQTableView::Slot_HideColumn(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void MyQTableView::Slot_HideRow(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} - -// SIGNAL 2 -void MyQTableView::Slot_ResizeColumnToContents(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 2, _a); -} - -// SIGNAL 3 -void MyQTableView::Slot_ResizeColumnsToContents() -{ - QMetaObject::activate(this, &staticMetaObject, 3, 0); -} - -// SIGNAL 4 -void MyQTableView::Slot_ResizeRowToContents(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 4, _a); -} - -// SIGNAL 5 -void MyQTableView::Slot_ResizeRowsToContents() -{ - QMetaObject::activate(this, &staticMetaObject, 5, 0); -} - -// SIGNAL 6 -void MyQTableView::Slot_SelectColumn(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 6, _a); -} - -// SIGNAL 7 -void MyQTableView::Slot_SelectRow(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 7, _a); -} - -// SIGNAL 8 -void MyQTableView::Slot_SetShowGrid(bool _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 8, _a); -} - -// SIGNAL 9 -void MyQTableView::Slot_ShowColumn(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 9, _a); -} - -// SIGNAL 10 -void MyQTableView::Slot_ShowRow(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 10, _a); -} -QT_END_MOC_NAMESPACE diff --git a/qtablewidget.cpp b/qtablewidget.cpp deleted file mode 100644 index 1e46e922..00000000 --- a/qtablewidget.cpp +++ /dev/null @@ -1,277 +0,0 @@ -#include "qtablewidget.h" -#include -#include "cgoexport.h" - -//MyQTableWidget -class MyQTableWidget: public QTableWidget { -Q_OBJECT -public: -void Signal_CellActivated() { callbackQTableWidget(this, QString("cellActivated").toUtf8().data()); }; -void Signal_CellChanged() { callbackQTableWidget(this, QString("cellChanged").toUtf8().data()); }; -void Signal_CellClicked() { callbackQTableWidget(this, QString("cellClicked").toUtf8().data()); }; -void Signal_CellDoubleClicked() { callbackQTableWidget(this, QString("cellDoubleClicked").toUtf8().data()); }; -void Signal_CellEntered() { callbackQTableWidget(this, QString("cellEntered").toUtf8().data()); }; -void Signal_CellPressed() { callbackQTableWidget(this, QString("cellPressed").toUtf8().data()); }; -void Signal_CurrentCellChanged() { callbackQTableWidget(this, QString("currentCellChanged").toUtf8().data()); }; -void Signal_ItemSelectionChanged() { callbackQTableWidget(this, QString("itemSelectionChanged").toUtf8().data()); }; - -signals: -void Slot_Clear(); -void Slot_ClearContents(); -void Slot_InsertColumn(int column); -void Slot_InsertRow(int row); -void Slot_RemoveColumn(int column); -void Slot_RemoveRow(int row); - -}; -#include "qtablewidget.moc" - - -//Public Functions -QtObjectPtr QTableWidget_New_Int_Int_QWidget(int rows, int columns, QtObjectPtr parent) -{ - return new QTableWidget(rows, columns, ((QWidget*)(parent))); -} - -void QTableWidget_Destroy(QtObjectPtr ptr) -{ - ((QTableWidget*)(ptr))->~QTableWidget(); -} - -QtObjectPtr QTableWidget_CellWidget_Int_Int(QtObjectPtr ptr, int row, int column) -{ - return ((QTableWidget*)(ptr))->cellWidget(row, column); -} - -int QTableWidget_ColumnCount(QtObjectPtr ptr) -{ - return ((QTableWidget*)(ptr))->columnCount(); -} - -int QTableWidget_CurrentColumn(QtObjectPtr ptr) -{ - return ((QTableWidget*)(ptr))->currentColumn(); -} - -int QTableWidget_CurrentRow(QtObjectPtr ptr) -{ - return ((QTableWidget*)(ptr))->currentRow(); -} - -void QTableWidget_RemoveCellWidget_Int_Int(QtObjectPtr ptr, int row, int column) -{ - ((QTableWidget*)(ptr))->removeCellWidget(row, column); -} - -int QTableWidget_RowCount(QtObjectPtr ptr) -{ - return ((QTableWidget*)(ptr))->rowCount(); -} - -void QTableWidget_SetCellWidget_Int_Int_QWidget(QtObjectPtr ptr, int row, int column, QtObjectPtr widget) -{ - ((QTableWidget*)(ptr))->setCellWidget(row, column, ((QWidget*)(widget))); -} - -void QTableWidget_SetColumnCount_Int(QtObjectPtr ptr, int columns) -{ - ((QTableWidget*)(ptr))->setColumnCount(columns); -} - -void QTableWidget_SetCurrentCell_Int_Int(QtObjectPtr ptr, int row, int column) -{ - ((QTableWidget*)(ptr))->setCurrentCell(row, column); -} - -void QTableWidget_SetRowCount_Int(QtObjectPtr ptr, int rows) -{ - ((QTableWidget*)(ptr))->setRowCount(rows); -} - -void QTableWidget_SortItems_Int_SortOrder(QtObjectPtr ptr, int column, int order) -{ - ((QTableWidget*)(ptr))->sortItems(column, ((Qt::SortOrder)(order))); -} - -int QTableWidget_VisualColumn_Int(QtObjectPtr ptr, int logicalColumn) -{ - return ((QTableWidget*)(ptr))->visualColumn(logicalColumn); -} - -int QTableWidget_VisualRow_Int(QtObjectPtr ptr, int logicalRow) -{ - return ((QTableWidget*)(ptr))->visualRow(logicalRow); -} - -//Public Slots -void QTableWidget_ConnectSlotClear(QtObjectPtr ptr) -{ - QObject::connect(((MyQTableWidget*)(ptr)), &MyQTableWidget::Slot_Clear, ((QTableWidget*)(ptr)), &QTableWidget::clear, Qt::QueuedConnection); -} - -void QTableWidget_DisconnectSlotClear(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTableWidget*)(ptr)), &MyQTableWidget::Slot_Clear, ((QTableWidget*)(ptr)), &QTableWidget::clear); -} - -void QTableWidget_Clear(QtObjectPtr ptr) -{ - ((MyQTableWidget*)(ptr))->Slot_Clear(); -} - -void QTableWidget_ConnectSlotClearContents(QtObjectPtr ptr) -{ - QObject::connect(((MyQTableWidget*)(ptr)), &MyQTableWidget::Slot_ClearContents, ((QTableWidget*)(ptr)), &QTableWidget::clearContents, Qt::QueuedConnection); -} - -void QTableWidget_DisconnectSlotClearContents(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTableWidget*)(ptr)), &MyQTableWidget::Slot_ClearContents, ((QTableWidget*)(ptr)), &QTableWidget::clearContents); -} - -void QTableWidget_ClearContents(QtObjectPtr ptr) -{ - ((MyQTableWidget*)(ptr))->Slot_ClearContents(); -} - -void QTableWidget_ConnectSlotInsertColumn(QtObjectPtr ptr) -{ - QObject::connect(((MyQTableWidget*)(ptr)), &MyQTableWidget::Slot_InsertColumn, ((QTableWidget*)(ptr)), &QTableWidget::insertColumn, Qt::QueuedConnection); -} - -void QTableWidget_DisconnectSlotInsertColumn(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTableWidget*)(ptr)), &MyQTableWidget::Slot_InsertColumn, ((QTableWidget*)(ptr)), &QTableWidget::insertColumn); -} - -void QTableWidget_InsertColumn_Int(QtObjectPtr ptr, int column) -{ - ((MyQTableWidget*)(ptr))->Slot_InsertColumn(column); -} - -void QTableWidget_ConnectSlotInsertRow(QtObjectPtr ptr) -{ - QObject::connect(((MyQTableWidget*)(ptr)), &MyQTableWidget::Slot_InsertRow, ((QTableWidget*)(ptr)), &QTableWidget::insertRow, Qt::QueuedConnection); -} - -void QTableWidget_DisconnectSlotInsertRow(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTableWidget*)(ptr)), &MyQTableWidget::Slot_InsertRow, ((QTableWidget*)(ptr)), &QTableWidget::insertRow); -} - -void QTableWidget_InsertRow_Int(QtObjectPtr ptr, int row) -{ - ((MyQTableWidget*)(ptr))->Slot_InsertRow(row); -} - -void QTableWidget_ConnectSlotRemoveColumn(QtObjectPtr ptr) -{ - QObject::connect(((MyQTableWidget*)(ptr)), &MyQTableWidget::Slot_RemoveColumn, ((QTableWidget*)(ptr)), &QTableWidget::removeColumn, Qt::QueuedConnection); -} - -void QTableWidget_DisconnectSlotRemoveColumn(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTableWidget*)(ptr)), &MyQTableWidget::Slot_RemoveColumn, ((QTableWidget*)(ptr)), &QTableWidget::removeColumn); -} - -void QTableWidget_RemoveColumn_Int(QtObjectPtr ptr, int column) -{ - ((MyQTableWidget*)(ptr))->Slot_RemoveColumn(column); -} - -void QTableWidget_ConnectSlotRemoveRow(QtObjectPtr ptr) -{ - QObject::connect(((MyQTableWidget*)(ptr)), &MyQTableWidget::Slot_RemoveRow, ((QTableWidget*)(ptr)), &QTableWidget::removeRow, Qt::QueuedConnection); -} - -void QTableWidget_DisconnectSlotRemoveRow(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTableWidget*)(ptr)), &MyQTableWidget::Slot_RemoveRow, ((QTableWidget*)(ptr)), &QTableWidget::removeRow); -} - -void QTableWidget_RemoveRow_Int(QtObjectPtr ptr, int row) -{ - ((MyQTableWidget*)(ptr))->Slot_RemoveRow(row); -} - -//Signals -void QTableWidget_ConnectSignalCellActivated(QtObjectPtr ptr) -{ - QObject::connect(((QTableWidget*)(ptr)), &QTableWidget::cellActivated, ((MyQTableWidget*)(ptr)), &MyQTableWidget::Signal_CellActivated, Qt::QueuedConnection); -} - -void QTableWidget_DisconnectSignalCellActivated(QtObjectPtr ptr) -{ - QObject::disconnect(((QTableWidget*)(ptr)), &QTableWidget::cellActivated, ((MyQTableWidget*)(ptr)), &MyQTableWidget::Signal_CellActivated); -} - -void QTableWidget_ConnectSignalCellChanged(QtObjectPtr ptr) -{ - QObject::connect(((QTableWidget*)(ptr)), &QTableWidget::cellChanged, ((MyQTableWidget*)(ptr)), &MyQTableWidget::Signal_CellChanged, Qt::QueuedConnection); -} - -void QTableWidget_DisconnectSignalCellChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QTableWidget*)(ptr)), &QTableWidget::cellChanged, ((MyQTableWidget*)(ptr)), &MyQTableWidget::Signal_CellChanged); -} - -void QTableWidget_ConnectSignalCellClicked(QtObjectPtr ptr) -{ - QObject::connect(((QTableWidget*)(ptr)), &QTableWidget::cellClicked, ((MyQTableWidget*)(ptr)), &MyQTableWidget::Signal_CellClicked, Qt::QueuedConnection); -} - -void QTableWidget_DisconnectSignalCellClicked(QtObjectPtr ptr) -{ - QObject::disconnect(((QTableWidget*)(ptr)), &QTableWidget::cellClicked, ((MyQTableWidget*)(ptr)), &MyQTableWidget::Signal_CellClicked); -} - -void QTableWidget_ConnectSignalCellDoubleClicked(QtObjectPtr ptr) -{ - QObject::connect(((QTableWidget*)(ptr)), &QTableWidget::cellDoubleClicked, ((MyQTableWidget*)(ptr)), &MyQTableWidget::Signal_CellDoubleClicked, Qt::QueuedConnection); -} - -void QTableWidget_DisconnectSignalCellDoubleClicked(QtObjectPtr ptr) -{ - QObject::disconnect(((QTableWidget*)(ptr)), &QTableWidget::cellDoubleClicked, ((MyQTableWidget*)(ptr)), &MyQTableWidget::Signal_CellDoubleClicked); -} - -void QTableWidget_ConnectSignalCellEntered(QtObjectPtr ptr) -{ - QObject::connect(((QTableWidget*)(ptr)), &QTableWidget::cellEntered, ((MyQTableWidget*)(ptr)), &MyQTableWidget::Signal_CellEntered, Qt::QueuedConnection); -} - -void QTableWidget_DisconnectSignalCellEntered(QtObjectPtr ptr) -{ - QObject::disconnect(((QTableWidget*)(ptr)), &QTableWidget::cellEntered, ((MyQTableWidget*)(ptr)), &MyQTableWidget::Signal_CellEntered); -} - -void QTableWidget_ConnectSignalCellPressed(QtObjectPtr ptr) -{ - QObject::connect(((QTableWidget*)(ptr)), &QTableWidget::cellPressed, ((MyQTableWidget*)(ptr)), &MyQTableWidget::Signal_CellPressed, Qt::QueuedConnection); -} - -void QTableWidget_DisconnectSignalCellPressed(QtObjectPtr ptr) -{ - QObject::disconnect(((QTableWidget*)(ptr)), &QTableWidget::cellPressed, ((MyQTableWidget*)(ptr)), &MyQTableWidget::Signal_CellPressed); -} - -void QTableWidget_ConnectSignalCurrentCellChanged(QtObjectPtr ptr) -{ - QObject::connect(((QTableWidget*)(ptr)), &QTableWidget::currentCellChanged, ((MyQTableWidget*)(ptr)), &MyQTableWidget::Signal_CurrentCellChanged, Qt::QueuedConnection); -} - -void QTableWidget_DisconnectSignalCurrentCellChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QTableWidget*)(ptr)), &QTableWidget::currentCellChanged, ((MyQTableWidget*)(ptr)), &MyQTableWidget::Signal_CurrentCellChanged); -} - -void QTableWidget_ConnectSignalItemSelectionChanged(QtObjectPtr ptr) -{ - QObject::connect(((QTableWidget*)(ptr)), &QTableWidget::itemSelectionChanged, ((MyQTableWidget*)(ptr)), &MyQTableWidget::Signal_ItemSelectionChanged, Qt::QueuedConnection); -} - -void QTableWidget_DisconnectSignalItemSelectionChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QTableWidget*)(ptr)), &QTableWidget::itemSelectionChanged, ((MyQTableWidget*)(ptr)), &MyQTableWidget::Signal_ItemSelectionChanged); -} - diff --git a/qtablewidget.go b/qtablewidget.go deleted file mode 100644 index 705535ac..00000000 --- a/qtablewidget.go +++ /dev/null @@ -1,392 +0,0 @@ -package qt - -//#include "qtablewidget.h" -import "C" - -type qtablewidget struct { - qtableview -} - -type QTableWidget interface { - QTableView - CellWidget(row int, column int) QWidget - ColumnCount() int - CurrentColumn() int - CurrentRow() int - RemoveCellWidget(row int, column int) - RowCount() int - SetCellWidget(row int, column int, widget QWidget) - SetColumnCount(columns int) - SetCurrentCell(row int, column int) - SetRowCount(rows int) - SortItems(column int, order SortOrder) - VisualColumn(logicalColumn int) int - VisualRow(logicalRow int) int - ConnectSlotClear() - DisconnectSlotClear() - SlotClear() - ConnectSlotClearContents() - DisconnectSlotClearContents() - SlotClearContents() - ConnectSlotInsertColumn() - DisconnectSlotInsertColumn() - SlotInsertColumn(column int) - ConnectSlotInsertRow() - DisconnectSlotInsertRow() - SlotInsertRow(row int) - ConnectSlotRemoveColumn() - DisconnectSlotRemoveColumn() - SlotRemoveColumn(column int) - ConnectSlotRemoveRow() - DisconnectSlotRemoveRow() - SlotRemoveRow(row int) - ConnectSignalCellActivated(f func()) - DisconnectSignalCellActivated() - SignalCellActivated() func() - ConnectSignalCellChanged(f func()) - DisconnectSignalCellChanged() - SignalCellChanged() func() - ConnectSignalCellClicked(f func()) - DisconnectSignalCellClicked() - SignalCellClicked() func() - ConnectSignalCellDoubleClicked(f func()) - DisconnectSignalCellDoubleClicked() - SignalCellDoubleClicked() func() - ConnectSignalCellEntered(f func()) - DisconnectSignalCellEntered() - SignalCellEntered() func() - ConnectSignalCellPressed(f func()) - DisconnectSignalCellPressed() - SignalCellPressed() func() - ConnectSignalCurrentCellChanged(f func()) - DisconnectSignalCurrentCellChanged() - SignalCurrentCellChanged() func() - ConnectSignalItemSelectionChanged(f func()) - DisconnectSignalItemSelectionChanged() - SignalItemSelectionChanged() func() -} - -func (p *qtablewidget) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qtablewidget) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQTableWidget(rows int, columns int, parent QWidget) QTableWidget { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qtablewidget = new(qtablewidget) - qtablewidget.SetPointer(C.QTableWidget_New_Int_Int_QWidget(C.int(rows), C.int(columns), parentPtr)) - qtablewidget.SetObjectName("QTableWidget_" + randomIdentifier()) - return qtablewidget -} - -func (p *qtablewidget) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QTableWidget_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qtablewidget) CellWidget(row int, column int) QWidget { - if p.Pointer() == nil { - return nil - } else { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QTableWidget_CellWidget_Int_Int(p.Pointer(), C.int(row), C.int(column))) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qtablewidget) ColumnCount() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTableWidget_ColumnCount(p.Pointer())) -} - -func (p *qtablewidget) CurrentColumn() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTableWidget_CurrentColumn(p.Pointer())) -} - -func (p *qtablewidget) CurrentRow() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTableWidget_CurrentRow(p.Pointer())) -} - -func (p *qtablewidget) RemoveCellWidget(row int, column int) { - if p.Pointer() != nil { - C.QTableWidget_RemoveCellWidget_Int_Int(p.Pointer(), C.int(row), C.int(column)) - } -} - -func (p *qtablewidget) RowCount() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTableWidget_RowCount(p.Pointer())) -} - -func (p *qtablewidget) SetCellWidget(row int, column int, widget QWidget) { - if p.Pointer() != nil { - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - C.QTableWidget_SetCellWidget_Int_Int_QWidget(p.Pointer(), C.int(row), C.int(column), widgetPtr) - } -} - -func (p *qtablewidget) SetColumnCount(columns int) { - if p.Pointer() != nil { - C.QTableWidget_SetColumnCount_Int(p.Pointer(), C.int(columns)) - } -} - -func (p *qtablewidget) SetCurrentCell(row int, column int) { - if p.Pointer() != nil { - C.QTableWidget_SetCurrentCell_Int_Int(p.Pointer(), C.int(row), C.int(column)) - } -} - -func (p *qtablewidget) SetRowCount(rows int) { - if p.Pointer() != nil { - C.QTableWidget_SetRowCount_Int(p.Pointer(), C.int(rows)) - } -} - -func (p *qtablewidget) SortItems(column int, order SortOrder) { - if p.Pointer() != nil { - C.QTableWidget_SortItems_Int_SortOrder(p.Pointer(), C.int(column), C.int(order)) - } -} - -func (p *qtablewidget) VisualColumn(logicalColumn int) int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTableWidget_VisualColumn_Int(p.Pointer(), C.int(logicalColumn))) -} - -func (p *qtablewidget) VisualRow(logicalRow int) int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTableWidget_VisualRow_Int(p.Pointer(), C.int(logicalRow))) -} - -func (p *qtablewidget) ConnectSlotClear() { - C.QTableWidget_ConnectSlotClear(p.Pointer()) -} - -func (p *qtablewidget) DisconnectSlotClear() { - C.QTableWidget_DisconnectSlotClear(p.Pointer()) -} - -func (p *qtablewidget) SlotClear() { - if p.Pointer() != nil { - C.QTableWidget_Clear(p.Pointer()) - } -} - -func (p *qtablewidget) ConnectSlotClearContents() { - C.QTableWidget_ConnectSlotClearContents(p.Pointer()) -} - -func (p *qtablewidget) DisconnectSlotClearContents() { - C.QTableWidget_DisconnectSlotClearContents(p.Pointer()) -} - -func (p *qtablewidget) SlotClearContents() { - if p.Pointer() != nil { - C.QTableWidget_ClearContents(p.Pointer()) - } -} - -func (p *qtablewidget) ConnectSlotInsertColumn() { - C.QTableWidget_ConnectSlotInsertColumn(p.Pointer()) -} - -func (p *qtablewidget) DisconnectSlotInsertColumn() { - C.QTableWidget_DisconnectSlotInsertColumn(p.Pointer()) -} - -func (p *qtablewidget) SlotInsertColumn(column int) { - if p.Pointer() != nil { - C.QTableWidget_InsertColumn_Int(p.Pointer(), C.int(column)) - } -} - -func (p *qtablewidget) ConnectSlotInsertRow() { - C.QTableWidget_ConnectSlotInsertRow(p.Pointer()) -} - -func (p *qtablewidget) DisconnectSlotInsertRow() { - C.QTableWidget_DisconnectSlotInsertRow(p.Pointer()) -} - -func (p *qtablewidget) SlotInsertRow(row int) { - if p.Pointer() != nil { - C.QTableWidget_InsertRow_Int(p.Pointer(), C.int(row)) - } -} - -func (p *qtablewidget) ConnectSlotRemoveColumn() { - C.QTableWidget_ConnectSlotRemoveColumn(p.Pointer()) -} - -func (p *qtablewidget) DisconnectSlotRemoveColumn() { - C.QTableWidget_DisconnectSlotRemoveColumn(p.Pointer()) -} - -func (p *qtablewidget) SlotRemoveColumn(column int) { - if p.Pointer() != nil { - C.QTableWidget_RemoveColumn_Int(p.Pointer(), C.int(column)) - } -} - -func (p *qtablewidget) ConnectSlotRemoveRow() { - C.QTableWidget_ConnectSlotRemoveRow(p.Pointer()) -} - -func (p *qtablewidget) DisconnectSlotRemoveRow() { - C.QTableWidget_DisconnectSlotRemoveRow(p.Pointer()) -} - -func (p *qtablewidget) SlotRemoveRow(row int) { - if p.Pointer() != nil { - C.QTableWidget_RemoveRow_Int(p.Pointer(), C.int(row)) - } -} - -func (p *qtablewidget) ConnectSignalCellActivated(f func()) { - C.QTableWidget_ConnectSignalCellActivated(p.Pointer()) - connectSignal(p.ObjectName(), "cellActivated", f) -} - -func (p *qtablewidget) DisconnectSignalCellActivated() { - C.QTableWidget_DisconnectSignalCellActivated(p.Pointer()) - disconnectSignal(p.ObjectName(), "cellActivated") -} - -func (p *qtablewidget) SignalCellActivated() func() { - return getSignal(p.ObjectName(), "cellActivated") -} - -func (p *qtablewidget) ConnectSignalCellChanged(f func()) { - C.QTableWidget_ConnectSignalCellChanged(p.Pointer()) - connectSignal(p.ObjectName(), "cellChanged", f) -} - -func (p *qtablewidget) DisconnectSignalCellChanged() { - C.QTableWidget_DisconnectSignalCellChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "cellChanged") -} - -func (p *qtablewidget) SignalCellChanged() func() { - return getSignal(p.ObjectName(), "cellChanged") -} - -func (p *qtablewidget) ConnectSignalCellClicked(f func()) { - C.QTableWidget_ConnectSignalCellClicked(p.Pointer()) - connectSignal(p.ObjectName(), "cellClicked", f) -} - -func (p *qtablewidget) DisconnectSignalCellClicked() { - C.QTableWidget_DisconnectSignalCellClicked(p.Pointer()) - disconnectSignal(p.ObjectName(), "cellClicked") -} - -func (p *qtablewidget) SignalCellClicked() func() { - return getSignal(p.ObjectName(), "cellClicked") -} - -func (p *qtablewidget) ConnectSignalCellDoubleClicked(f func()) { - C.QTableWidget_ConnectSignalCellDoubleClicked(p.Pointer()) - connectSignal(p.ObjectName(), "cellDoubleClicked", f) -} - -func (p *qtablewidget) DisconnectSignalCellDoubleClicked() { - C.QTableWidget_DisconnectSignalCellDoubleClicked(p.Pointer()) - disconnectSignal(p.ObjectName(), "cellDoubleClicked") -} - -func (p *qtablewidget) SignalCellDoubleClicked() func() { - return getSignal(p.ObjectName(), "cellDoubleClicked") -} - -func (p *qtablewidget) ConnectSignalCellEntered(f func()) { - C.QTableWidget_ConnectSignalCellEntered(p.Pointer()) - connectSignal(p.ObjectName(), "cellEntered", f) -} - -func (p *qtablewidget) DisconnectSignalCellEntered() { - C.QTableWidget_DisconnectSignalCellEntered(p.Pointer()) - disconnectSignal(p.ObjectName(), "cellEntered") -} - -func (p *qtablewidget) SignalCellEntered() func() { - return getSignal(p.ObjectName(), "cellEntered") -} - -func (p *qtablewidget) ConnectSignalCellPressed(f func()) { - C.QTableWidget_ConnectSignalCellPressed(p.Pointer()) - connectSignal(p.ObjectName(), "cellPressed", f) -} - -func (p *qtablewidget) DisconnectSignalCellPressed() { - C.QTableWidget_DisconnectSignalCellPressed(p.Pointer()) - disconnectSignal(p.ObjectName(), "cellPressed") -} - -func (p *qtablewidget) SignalCellPressed() func() { - return getSignal(p.ObjectName(), "cellPressed") -} - -func (p *qtablewidget) ConnectSignalCurrentCellChanged(f func()) { - C.QTableWidget_ConnectSignalCurrentCellChanged(p.Pointer()) - connectSignal(p.ObjectName(), "currentCellChanged", f) -} - -func (p *qtablewidget) DisconnectSignalCurrentCellChanged() { - C.QTableWidget_DisconnectSignalCurrentCellChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "currentCellChanged") -} - -func (p *qtablewidget) SignalCurrentCellChanged() func() { - return getSignal(p.ObjectName(), "currentCellChanged") -} - -func (p *qtablewidget) ConnectSignalItemSelectionChanged(f func()) { - C.QTableWidget_ConnectSignalItemSelectionChanged(p.Pointer()) - connectSignal(p.ObjectName(), "itemSelectionChanged", f) -} - -func (p *qtablewidget) DisconnectSignalItemSelectionChanged() { - C.QTableWidget_DisconnectSignalItemSelectionChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "itemSelectionChanged") -} - -func (p *qtablewidget) SignalItemSelectionChanged() func() { - return getSignal(p.ObjectName(), "itemSelectionChanged") -} - -//export callbackQTableWidget -func callbackQTableWidget(ptr C.QtObjectPtr, msg *C.char) { - var qtablewidget = new(qtablewidget) - qtablewidget.SetPointer(ptr) - getSignal(qtablewidget.ObjectName(), C.GoString(msg))() -} diff --git a/qtablewidget.h b/qtablewidget.h deleted file mode 100644 index a93ebb8f..00000000 --- a/qtablewidget.h +++ /dev/null @@ -1,62 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QTableWidget_New_Int_Int_QWidget(int rows, int columns, QtObjectPtr parent); -void QTableWidget_Destroy(QtObjectPtr ptr); -QtObjectPtr QTableWidget_CellWidget_Int_Int(QtObjectPtr ptr, int row, int column); -int QTableWidget_ColumnCount(QtObjectPtr ptr); -int QTableWidget_CurrentColumn(QtObjectPtr ptr); -int QTableWidget_CurrentRow(QtObjectPtr ptr); -void QTableWidget_RemoveCellWidget_Int_Int(QtObjectPtr ptr, int row, int column); -int QTableWidget_RowCount(QtObjectPtr ptr); -void QTableWidget_SetCellWidget_Int_Int_QWidget(QtObjectPtr ptr, int row, int column, QtObjectPtr widget); -void QTableWidget_SetColumnCount_Int(QtObjectPtr ptr, int columns); -void QTableWidget_SetCurrentCell_Int_Int(QtObjectPtr ptr, int row, int column); -void QTableWidget_SetRowCount_Int(QtObjectPtr ptr, int rows); -void QTableWidget_SortItems_Int_SortOrder(QtObjectPtr ptr, int column, int order); -int QTableWidget_VisualColumn_Int(QtObjectPtr ptr, int logicalColumn); -int QTableWidget_VisualRow_Int(QtObjectPtr ptr, int logicalRow); -//Public Slots -void QTableWidget_ConnectSlotClear(QtObjectPtr ptr); -void QTableWidget_DisconnectSlotClear(QtObjectPtr ptr); -void QTableWidget_Clear(QtObjectPtr ptr); -void QTableWidget_ConnectSlotClearContents(QtObjectPtr ptr); -void QTableWidget_DisconnectSlotClearContents(QtObjectPtr ptr); -void QTableWidget_ClearContents(QtObjectPtr ptr); -void QTableWidget_ConnectSlotInsertColumn(QtObjectPtr ptr); -void QTableWidget_DisconnectSlotInsertColumn(QtObjectPtr ptr); -void QTableWidget_InsertColumn_Int(QtObjectPtr ptr, int column); -void QTableWidget_ConnectSlotInsertRow(QtObjectPtr ptr); -void QTableWidget_DisconnectSlotInsertRow(QtObjectPtr ptr); -void QTableWidget_InsertRow_Int(QtObjectPtr ptr, int row); -void QTableWidget_ConnectSlotRemoveColumn(QtObjectPtr ptr); -void QTableWidget_DisconnectSlotRemoveColumn(QtObjectPtr ptr); -void QTableWidget_RemoveColumn_Int(QtObjectPtr ptr, int column); -void QTableWidget_ConnectSlotRemoveRow(QtObjectPtr ptr); -void QTableWidget_DisconnectSlotRemoveRow(QtObjectPtr ptr); -void QTableWidget_RemoveRow_Int(QtObjectPtr ptr, int row); -//Signals -void QTableWidget_ConnectSignalCellActivated(QtObjectPtr ptr); -void QTableWidget_DisconnectSignalCellActivated(QtObjectPtr ptr); -void QTableWidget_ConnectSignalCellChanged(QtObjectPtr ptr); -void QTableWidget_DisconnectSignalCellChanged(QtObjectPtr ptr); -void QTableWidget_ConnectSignalCellClicked(QtObjectPtr ptr); -void QTableWidget_DisconnectSignalCellClicked(QtObjectPtr ptr); -void QTableWidget_ConnectSignalCellDoubleClicked(QtObjectPtr ptr); -void QTableWidget_DisconnectSignalCellDoubleClicked(QtObjectPtr ptr); -void QTableWidget_ConnectSignalCellEntered(QtObjectPtr ptr); -void QTableWidget_DisconnectSignalCellEntered(QtObjectPtr ptr); -void QTableWidget_ConnectSignalCellPressed(QtObjectPtr ptr); -void QTableWidget_DisconnectSignalCellPressed(QtObjectPtr ptr); -void QTableWidget_ConnectSignalCurrentCellChanged(QtObjectPtr ptr); -void QTableWidget_DisconnectSignalCurrentCellChanged(QtObjectPtr ptr); -void QTableWidget_ConnectSignalItemSelectionChanged(QtObjectPtr ptr); -void QTableWidget_DisconnectSignalItemSelectionChanged(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qtablewidget.moc b/qtablewidget.moc deleted file mode 100644 index 6340d7a5..00000000 --- a/qtablewidget.moc +++ /dev/null @@ -1,212 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qtablewidget.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qtablewidget.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQTableWidget_t { - QByteArrayData data[10]; - char stringdata[123]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQTableWidget_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQTableWidget_t qt_meta_stringdata_MyQTableWidget = { - { -QT_MOC_LITERAL(0, 0, 14), // "MyQTableWidget" -QT_MOC_LITERAL(1, 15, 10), // "Slot_Clear" -QT_MOC_LITERAL(2, 26, 0), // "" -QT_MOC_LITERAL(3, 27, 18), // "Slot_ClearContents" -QT_MOC_LITERAL(4, 46, 17), // "Slot_InsertColumn" -QT_MOC_LITERAL(5, 64, 6), // "column" -QT_MOC_LITERAL(6, 71, 14), // "Slot_InsertRow" -QT_MOC_LITERAL(7, 86, 3), // "row" -QT_MOC_LITERAL(8, 90, 17), // "Slot_RemoveColumn" -QT_MOC_LITERAL(9, 108, 14) // "Slot_RemoveRow" - - }, - "MyQTableWidget\0Slot_Clear\0\0" - "Slot_ClearContents\0Slot_InsertColumn\0" - "column\0Slot_InsertRow\0row\0Slot_RemoveColumn\0" - "Slot_RemoveRow" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQTableWidget[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 6, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 6, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 0, 44, 2, 0x06 /* Public */, - 3, 0, 45, 2, 0x06 /* Public */, - 4, 1, 46, 2, 0x06 /* Public */, - 6, 1, 49, 2, 0x06 /* Public */, - 8, 1, 52, 2, 0x06 /* Public */, - 9, 1, 55, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, QMetaType::Int, 5, - QMetaType::Void, QMetaType::Int, 7, - QMetaType::Void, QMetaType::Int, 5, - QMetaType::Void, QMetaType::Int, 7, - - 0 // eod -}; - -void MyQTableWidget::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQTableWidget *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_Clear(); break; - case 1: _t->Slot_ClearContents(); break; - case 2: _t->Slot_InsertColumn((*reinterpret_cast< int(*)>(_a[1]))); break; - case 3: _t->Slot_InsertRow((*reinterpret_cast< int(*)>(_a[1]))); break; - case 4: _t->Slot_RemoveColumn((*reinterpret_cast< int(*)>(_a[1]))); break; - case 5: _t->Slot_RemoveRow((*reinterpret_cast< int(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQTableWidget::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTableWidget::Slot_Clear)) { - *result = 0; - } - } - { - typedef void (MyQTableWidget::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTableWidget::Slot_ClearContents)) { - *result = 1; - } - } - { - typedef void (MyQTableWidget::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTableWidget::Slot_InsertColumn)) { - *result = 2; - } - } - { - typedef void (MyQTableWidget::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTableWidget::Slot_InsertRow)) { - *result = 3; - } - } - { - typedef void (MyQTableWidget::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTableWidget::Slot_RemoveColumn)) { - *result = 4; - } - } - { - typedef void (MyQTableWidget::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTableWidget::Slot_RemoveRow)) { - *result = 5; - } - } - } -} - -const QMetaObject MyQTableWidget::staticMetaObject = { - { &QTableWidget::staticMetaObject, qt_meta_stringdata_MyQTableWidget.data, - qt_meta_data_MyQTableWidget, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQTableWidget::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQTableWidget::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQTableWidget.stringdata)) - return static_cast(const_cast< MyQTableWidget*>(this)); - return QTableWidget::qt_metacast(_clname); -} - -int MyQTableWidget::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QTableWidget::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 6) - qt_static_metacall(this, _c, _id, _a); - _id -= 6; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 6) - *reinterpret_cast(_a[0]) = -1; - _id -= 6; - } - return _id; -} - -// SIGNAL 0 -void MyQTableWidget::Slot_Clear() -{ - QMetaObject::activate(this, &staticMetaObject, 0, 0); -} - -// SIGNAL 1 -void MyQTableWidget::Slot_ClearContents() -{ - QMetaObject::activate(this, &staticMetaObject, 1, 0); -} - -// SIGNAL 2 -void MyQTableWidget::Slot_InsertColumn(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 2, _a); -} - -// SIGNAL 3 -void MyQTableWidget::Slot_InsertRow(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 3, _a); -} - -// SIGNAL 4 -void MyQTableWidget::Slot_RemoveColumn(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 4, _a); -} - -// SIGNAL 5 -void MyQTableWidget::Slot_RemoveRow(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 5, _a); -} -QT_END_MOC_NAMESPACE diff --git a/qtabwidget.cpp b/qtabwidget.cpp deleted file mode 100644 index 62005ff3..00000000 --- a/qtabwidget.cpp +++ /dev/null @@ -1,238 +0,0 @@ -#include "qtabwidget.h" -#include -#include "cgoexport.h" - -//MyQTabWidget -class MyQTabWidget: public QTabWidget { -Q_OBJECT -public: -void Signal_CurrentChanged() { callbackQTabWidget(this, QString("currentChanged").toUtf8().data()); }; -void Signal_TabBarClicked() { callbackQTabWidget(this, QString("tabBarClicked").toUtf8().data()); }; -void Signal_TabBarDoubleClicked() { callbackQTabWidget(this, QString("tabBarDoubleClicked").toUtf8().data()); }; -void Signal_TabCloseRequested() { callbackQTabWidget(this, QString("tabCloseRequested").toUtf8().data()); }; - -signals: -void Slot_SetCurrentIndex(int index); - -}; -#include "qtabwidget.moc" - - -//Public Functions -QtObjectPtr QTabWidget_New_QWidget(QtObjectPtr parent) -{ - return new QTabWidget(((QWidget*)(parent))); -} - -void QTabWidget_Destroy(QtObjectPtr ptr) -{ - ((QTabWidget*)(ptr))->~QTabWidget(); -} - -int QTabWidget_AddTab_QWidget_String(QtObjectPtr ptr, QtObjectPtr page, char* label) -{ - return ((QTabWidget*)(ptr))->addTab(((QWidget*)(page)), QString(label)); -} - -void QTabWidget_Clear(QtObjectPtr ptr) -{ - ((QTabWidget*)(ptr))->clear(); -} - -QtObjectPtr QTabWidget_CornerWidget_Corner(QtObjectPtr ptr, int corner) -{ - return ((QTabWidget*)(ptr))->cornerWidget(((Qt::Corner)(corner))); -} - -int QTabWidget_Count(QtObjectPtr ptr) -{ - return ((QTabWidget*)(ptr))->count(); -} - -int QTabWidget_CurrentIndex(QtObjectPtr ptr) -{ - return ((QTabWidget*)(ptr))->currentIndex(); -} - -QtObjectPtr QTabWidget_CurrentWidget(QtObjectPtr ptr) -{ - return ((QTabWidget*)(ptr))->currentWidget(); -} - -int QTabWidget_DocumentMode(QtObjectPtr ptr) -{ - return ((QTabWidget*)(ptr))->documentMode(); -} - -int QTabWidget_ElideMode(QtObjectPtr ptr) -{ - return ((QTabWidget*)(ptr))->elideMode(); -} - -int QTabWidget_IndexOf_QWidget(QtObjectPtr ptr, QtObjectPtr w) -{ - return ((QTabWidget*)(ptr))->indexOf(((QWidget*)(w))); -} - -int QTabWidget_InsertTab_Int_QWidget_String(QtObjectPtr ptr, int index, QtObjectPtr page, char* label) -{ - return ((QTabWidget*)(ptr))->insertTab(index, ((QWidget*)(page)), QString(label)); -} - -int QTabWidget_IsMovable(QtObjectPtr ptr) -{ - return ((QTabWidget*)(ptr))->isMovable(); -} - -int QTabWidget_IsTabEnabled_Int(QtObjectPtr ptr, int index) -{ - return ((QTabWidget*)(ptr))->isTabEnabled(index); -} - -void QTabWidget_RemoveTab_Int(QtObjectPtr ptr, int index) -{ - ((QTabWidget*)(ptr))->removeTab(index); -} - -void QTabWidget_SetCornerWidget_QWidget_Corner(QtObjectPtr ptr, QtObjectPtr widget, int corner) -{ - ((QTabWidget*)(ptr))->setCornerWidget(((QWidget*)(widget)), ((Qt::Corner)(corner))); -} - -void QTabWidget_SetDocumentMode_Bool(QtObjectPtr ptr, int set) -{ - ((QTabWidget*)(ptr))->setDocumentMode(set != 0); -} - -void QTabWidget_SetElideMode_TextElideMode(QtObjectPtr ptr, int TextElideMode) -{ - ((QTabWidget*)(ptr))->setElideMode(((Qt::TextElideMode)(TextElideMode))); -} - -void QTabWidget_SetMovable_Bool(QtObjectPtr ptr, int movable) -{ - ((QTabWidget*)(ptr))->setMovable(movable != 0); -} - -void QTabWidget_SetTabEnabled_Int_Bool(QtObjectPtr ptr, int index, int enable) -{ - ((QTabWidget*)(ptr))->setTabEnabled(index, enable != 0); -} - -void QTabWidget_SetTabText_Int_String(QtObjectPtr ptr, int index, char* label) -{ - ((QTabWidget*)(ptr))->setTabText(index, QString(label)); -} - -void QTabWidget_SetTabToolTip_Int_String(QtObjectPtr ptr, int index, char* tip) -{ - ((QTabWidget*)(ptr))->setTabToolTip(index, QString(tip)); -} - -void QTabWidget_SetTabWhatsThis_Int_String(QtObjectPtr ptr, int index, char* text) -{ - ((QTabWidget*)(ptr))->setTabWhatsThis(index, QString(text)); -} - -void QTabWidget_SetTabsClosable_Bool(QtObjectPtr ptr, int closeable) -{ - ((QTabWidget*)(ptr))->setTabsClosable(closeable != 0); -} - -void QTabWidget_SetUsesScrollButtons_Bool(QtObjectPtr ptr, int useButtons) -{ - ((QTabWidget*)(ptr))->setUsesScrollButtons(useButtons != 0); -} - -QtObjectPtr QTabWidget_TabBar(QtObjectPtr ptr) -{ - return ((QTabWidget*)(ptr))->tabBar(); -} - -char* QTabWidget_TabText_Int(QtObjectPtr ptr, int index) -{ - return ((QTabWidget*)(ptr))->tabText(index).toUtf8().data(); -} - -char* QTabWidget_TabToolTip_Int(QtObjectPtr ptr, int index) -{ - return ((QTabWidget*)(ptr))->tabToolTip(index).toUtf8().data(); -} - -char* QTabWidget_TabWhatsThis_Int(QtObjectPtr ptr, int index) -{ - return ((QTabWidget*)(ptr))->tabWhatsThis(index).toUtf8().data(); -} - -int QTabWidget_TabsClosable(QtObjectPtr ptr) -{ - return ((QTabWidget*)(ptr))->tabsClosable(); -} - -int QTabWidget_UsesScrollButtons(QtObjectPtr ptr) -{ - return ((QTabWidget*)(ptr))->usesScrollButtons(); -} - -QtObjectPtr QTabWidget_Widget_Int(QtObjectPtr ptr, int index) -{ - return ((QTabWidget*)(ptr))->widget(index); -} - -//Public Slots -void QTabWidget_ConnectSlotSetCurrentIndex(QtObjectPtr ptr) -{ - QObject::connect(((MyQTabWidget*)(ptr)), &MyQTabWidget::Slot_SetCurrentIndex, ((QTabWidget*)(ptr)), &QTabWidget::setCurrentIndex, Qt::QueuedConnection); -} - -void QTabWidget_DisconnectSlotSetCurrentIndex(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTabWidget*)(ptr)), &MyQTabWidget::Slot_SetCurrentIndex, ((QTabWidget*)(ptr)), &QTabWidget::setCurrentIndex); -} - -void QTabWidget_SetCurrentIndex_Int(QtObjectPtr ptr, int index) -{ - ((MyQTabWidget*)(ptr))->Slot_SetCurrentIndex(index); -} - -//Signals -void QTabWidget_ConnectSignalCurrentChanged(QtObjectPtr ptr) -{ - QObject::connect(((QTabWidget*)(ptr)), &QTabWidget::currentChanged, ((MyQTabWidget*)(ptr)), &MyQTabWidget::Signal_CurrentChanged, Qt::QueuedConnection); -} - -void QTabWidget_DisconnectSignalCurrentChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QTabWidget*)(ptr)), &QTabWidget::currentChanged, ((MyQTabWidget*)(ptr)), &MyQTabWidget::Signal_CurrentChanged); -} - -void QTabWidget_ConnectSignalTabBarClicked(QtObjectPtr ptr) -{ - QObject::connect(((QTabWidget*)(ptr)), &QTabWidget::tabBarClicked, ((MyQTabWidget*)(ptr)), &MyQTabWidget::Signal_TabBarClicked, Qt::QueuedConnection); -} - -void QTabWidget_DisconnectSignalTabBarClicked(QtObjectPtr ptr) -{ - QObject::disconnect(((QTabWidget*)(ptr)), &QTabWidget::tabBarClicked, ((MyQTabWidget*)(ptr)), &MyQTabWidget::Signal_TabBarClicked); -} - -void QTabWidget_ConnectSignalTabBarDoubleClicked(QtObjectPtr ptr) -{ - QObject::connect(((QTabWidget*)(ptr)), &QTabWidget::tabBarDoubleClicked, ((MyQTabWidget*)(ptr)), &MyQTabWidget::Signal_TabBarDoubleClicked, Qt::QueuedConnection); -} - -void QTabWidget_DisconnectSignalTabBarDoubleClicked(QtObjectPtr ptr) -{ - QObject::disconnect(((QTabWidget*)(ptr)), &QTabWidget::tabBarDoubleClicked, ((MyQTabWidget*)(ptr)), &MyQTabWidget::Signal_TabBarDoubleClicked); -} - -void QTabWidget_ConnectSignalTabCloseRequested(QtObjectPtr ptr) -{ - QObject::connect(((QTabWidget*)(ptr)), &QTabWidget::tabCloseRequested, ((MyQTabWidget*)(ptr)), &MyQTabWidget::Signal_TabCloseRequested, Qt::QueuedConnection); -} - -void QTabWidget_DisconnectSignalTabCloseRequested(QtObjectPtr ptr) -{ - QObject::disconnect(((QTabWidget*)(ptr)), &QTabWidget::tabCloseRequested, ((MyQTabWidget*)(ptr)), &MyQTabWidget::Signal_TabCloseRequested); -} - diff --git a/qtabwidget.go b/qtabwidget.go deleted file mode 100644 index a042fd08..00000000 --- a/qtabwidget.go +++ /dev/null @@ -1,402 +0,0 @@ -package qt - -//#include "qtabwidget.h" -import "C" - -type qtabwidget struct { - qwidget -} - -type QTabWidget interface { - QWidget - AddTab(page QWidget, label string) int - Clear() - CornerWidget(corner Corner) QWidget - Count() int - CurrentIndex() int - CurrentWidget() QWidget - DocumentMode() bool - ElideMode() TextElideMode - IndexOf(w QWidget) int - InsertTab(index int, page QWidget, label string) int - IsMovable() bool - IsTabEnabled(index int) bool - RemoveTab(index int) - SetCornerWidget(widget QWidget, corner Corner) - SetDocumentMode(set bool) - SetElideMode(TextElideMode TextElideMode) - SetMovable(movable bool) - SetTabEnabled(index int, enable bool) - SetTabText(index int, label string) - SetTabToolTip(index int, tip string) - SetTabWhatsThis(index int, text string) - SetTabsClosable(closeable bool) - SetUsesScrollButtons(useButtons bool) - TabBar() QTabBar - TabText(index int) string - TabToolTip(index int) string - TabWhatsThis(index int) string - TabsClosable() bool - UsesScrollButtons() bool - Widget(index int) QWidget - ConnectSlotSetCurrentIndex() - DisconnectSlotSetCurrentIndex() - SlotSetCurrentIndex(index int) - ConnectSignalCurrentChanged(f func()) - DisconnectSignalCurrentChanged() - SignalCurrentChanged() func() - ConnectSignalTabBarClicked(f func()) - DisconnectSignalTabBarClicked() - SignalTabBarClicked() func() - ConnectSignalTabBarDoubleClicked(f func()) - DisconnectSignalTabBarDoubleClicked() - SignalTabBarDoubleClicked() func() - ConnectSignalTabCloseRequested(f func()) - DisconnectSignalTabCloseRequested() - SignalTabCloseRequested() func() -} - -func (p *qtabwidget) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qtabwidget) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQTabWidget(parent QWidget) QTabWidget { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qtabwidget = new(qtabwidget) - qtabwidget.SetPointer(C.QTabWidget_New_QWidget(parentPtr)) - qtabwidget.SetObjectName("QTabWidget_" + randomIdentifier()) - return qtabwidget -} - -func (p *qtabwidget) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QTabWidget_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qtabwidget) AddTab(page QWidget, label string) int { - if p.Pointer() == nil { - return 0 - } else { - var pagePtr C.QtObjectPtr - if page != nil { - pagePtr = page.Pointer() - } - return int(C.QTabWidget_AddTab_QWidget_String(p.Pointer(), pagePtr, C.CString(label))) - } -} - -func (p *qtabwidget) Clear() { - if p.Pointer() != nil { - C.QTabWidget_Clear(p.Pointer()) - } -} - -func (p *qtabwidget) CornerWidget(corner Corner) QWidget { - if p.Pointer() == nil { - return nil - } else { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QTabWidget_CornerWidget_Corner(p.Pointer(), C.int(corner))) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qtabwidget) Count() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTabWidget_Count(p.Pointer())) -} - -func (p *qtabwidget) CurrentIndex() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTabWidget_CurrentIndex(p.Pointer())) -} - -func (p *qtabwidget) CurrentWidget() QWidget { - if p.Pointer() == nil { - return nil - } else { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QTabWidget_CurrentWidget(p.Pointer())) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qtabwidget) DocumentMode() bool { - if p.Pointer() == nil { - return false - } - return C.QTabWidget_DocumentMode(p.Pointer()) != 0 -} - -func (p *qtabwidget) ElideMode() TextElideMode { - if p.Pointer() == nil { - return 0 - } - return TextElideMode(C.QTabWidget_ElideMode(p.Pointer())) -} - -func (p *qtabwidget) IndexOf(w QWidget) int { - if p.Pointer() == nil { - return 0 - } else { - var wPtr C.QtObjectPtr - if w != nil { - wPtr = w.Pointer() - } - return int(C.QTabWidget_IndexOf_QWidget(p.Pointer(), wPtr)) - } -} - -func (p *qtabwidget) InsertTab(index int, page QWidget, label string) int { - if p.Pointer() == nil { - return 0 - } else { - var pagePtr C.QtObjectPtr - if page != nil { - pagePtr = page.Pointer() - } - return int(C.QTabWidget_InsertTab_Int_QWidget_String(p.Pointer(), C.int(index), pagePtr, C.CString(label))) - } -} - -func (p *qtabwidget) IsMovable() bool { - if p.Pointer() == nil { - return false - } - return C.QTabWidget_IsMovable(p.Pointer()) != 0 -} - -func (p *qtabwidget) IsTabEnabled(index int) bool { - if p.Pointer() == nil { - return false - } - return C.QTabWidget_IsTabEnabled_Int(p.Pointer(), C.int(index)) != 0 -} - -func (p *qtabwidget) RemoveTab(index int) { - if p.Pointer() != nil { - C.QTabWidget_RemoveTab_Int(p.Pointer(), C.int(index)) - } -} - -func (p *qtabwidget) SetCornerWidget(widget QWidget, corner Corner) { - if p.Pointer() != nil { - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - C.QTabWidget_SetCornerWidget_QWidget_Corner(p.Pointer(), widgetPtr, C.int(corner)) - } -} - -func (p *qtabwidget) SetDocumentMode(set bool) { - if p.Pointer() != nil { - C.QTabWidget_SetDocumentMode_Bool(p.Pointer(), goBoolToCInt(set)) - } -} - -func (p *qtabwidget) SetElideMode(TextElideMode TextElideMode) { - if p.Pointer() != nil { - C.QTabWidget_SetElideMode_TextElideMode(p.Pointer(), C.int(TextElideMode)) - } -} - -func (p *qtabwidget) SetMovable(movable bool) { - if p.Pointer() != nil { - C.QTabWidget_SetMovable_Bool(p.Pointer(), goBoolToCInt(movable)) - } -} - -func (p *qtabwidget) SetTabEnabled(index int, enable bool) { - if p.Pointer() != nil { - C.QTabWidget_SetTabEnabled_Int_Bool(p.Pointer(), C.int(index), goBoolToCInt(enable)) - } -} - -func (p *qtabwidget) SetTabText(index int, label string) { - if p.Pointer() != nil { - C.QTabWidget_SetTabText_Int_String(p.Pointer(), C.int(index), C.CString(label)) - } -} - -func (p *qtabwidget) SetTabToolTip(index int, tip string) { - if p.Pointer() != nil { - C.QTabWidget_SetTabToolTip_Int_String(p.Pointer(), C.int(index), C.CString(tip)) - } -} - -func (p *qtabwidget) SetTabWhatsThis(index int, text string) { - if p.Pointer() != nil { - C.QTabWidget_SetTabWhatsThis_Int_String(p.Pointer(), C.int(index), C.CString(text)) - } -} - -func (p *qtabwidget) SetTabsClosable(closeable bool) { - if p.Pointer() != nil { - C.QTabWidget_SetTabsClosable_Bool(p.Pointer(), goBoolToCInt(closeable)) - } -} - -func (p *qtabwidget) SetUsesScrollButtons(useButtons bool) { - if p.Pointer() != nil { - C.QTabWidget_SetUsesScrollButtons_Bool(p.Pointer(), goBoolToCInt(useButtons)) - } -} - -func (p *qtabwidget) TabBar() QTabBar { - if p.Pointer() == nil { - return nil - } else { - var qtabbar = new(qtabbar) - qtabbar.SetPointer(C.QTabWidget_TabBar(p.Pointer())) - if qtabbar.ObjectName() == "" { - qtabbar.SetObjectName("QTabBar_" + randomIdentifier()) - } - return qtabbar - } -} - -func (p *qtabwidget) TabText(index int) string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QTabWidget_TabText_Int(p.Pointer(), C.int(index))) -} - -func (p *qtabwidget) TabToolTip(index int) string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QTabWidget_TabToolTip_Int(p.Pointer(), C.int(index))) -} - -func (p *qtabwidget) TabWhatsThis(index int) string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QTabWidget_TabWhatsThis_Int(p.Pointer(), C.int(index))) -} - -func (p *qtabwidget) TabsClosable() bool { - if p.Pointer() == nil { - return false - } - return C.QTabWidget_TabsClosable(p.Pointer()) != 0 -} - -func (p *qtabwidget) UsesScrollButtons() bool { - if p.Pointer() == nil { - return false - } - return C.QTabWidget_UsesScrollButtons(p.Pointer()) != 0 -} - -func (p *qtabwidget) Widget(index int) QWidget { - if p.Pointer() == nil { - return nil - } else { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QTabWidget_Widget_Int(p.Pointer(), C.int(index))) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qtabwidget) ConnectSlotSetCurrentIndex() { - C.QTabWidget_ConnectSlotSetCurrentIndex(p.Pointer()) -} - -func (p *qtabwidget) DisconnectSlotSetCurrentIndex() { - C.QTabWidget_DisconnectSlotSetCurrentIndex(p.Pointer()) -} - -func (p *qtabwidget) SlotSetCurrentIndex(index int) { - if p.Pointer() != nil { - C.QTabWidget_SetCurrentIndex_Int(p.Pointer(), C.int(index)) - } -} - -func (p *qtabwidget) ConnectSignalCurrentChanged(f func()) { - C.QTabWidget_ConnectSignalCurrentChanged(p.Pointer()) - connectSignal(p.ObjectName(), "currentChanged", f) -} - -func (p *qtabwidget) DisconnectSignalCurrentChanged() { - C.QTabWidget_DisconnectSignalCurrentChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "currentChanged") -} - -func (p *qtabwidget) SignalCurrentChanged() func() { - return getSignal(p.ObjectName(), "currentChanged") -} - -func (p *qtabwidget) ConnectSignalTabBarClicked(f func()) { - C.QTabWidget_ConnectSignalTabBarClicked(p.Pointer()) - connectSignal(p.ObjectName(), "tabBarClicked", f) -} - -func (p *qtabwidget) DisconnectSignalTabBarClicked() { - C.QTabWidget_DisconnectSignalTabBarClicked(p.Pointer()) - disconnectSignal(p.ObjectName(), "tabBarClicked") -} - -func (p *qtabwidget) SignalTabBarClicked() func() { - return getSignal(p.ObjectName(), "tabBarClicked") -} - -func (p *qtabwidget) ConnectSignalTabBarDoubleClicked(f func()) { - C.QTabWidget_ConnectSignalTabBarDoubleClicked(p.Pointer()) - connectSignal(p.ObjectName(), "tabBarDoubleClicked", f) -} - -func (p *qtabwidget) DisconnectSignalTabBarDoubleClicked() { - C.QTabWidget_DisconnectSignalTabBarDoubleClicked(p.Pointer()) - disconnectSignal(p.ObjectName(), "tabBarDoubleClicked") -} - -func (p *qtabwidget) SignalTabBarDoubleClicked() func() { - return getSignal(p.ObjectName(), "tabBarDoubleClicked") -} - -func (p *qtabwidget) ConnectSignalTabCloseRequested(f func()) { - C.QTabWidget_ConnectSignalTabCloseRequested(p.Pointer()) - connectSignal(p.ObjectName(), "tabCloseRequested", f) -} - -func (p *qtabwidget) DisconnectSignalTabCloseRequested() { - C.QTabWidget_DisconnectSignalTabCloseRequested(p.Pointer()) - disconnectSignal(p.ObjectName(), "tabCloseRequested") -} - -func (p *qtabwidget) SignalTabCloseRequested() func() { - return getSignal(p.ObjectName(), "tabCloseRequested") -} - -//export callbackQTabWidget -func callbackQTabWidget(ptr C.QtObjectPtr, msg *C.char) { - var qtabwidget = new(qtabwidget) - qtabwidget.SetPointer(ptr) - getSignal(qtabwidget.ObjectName(), C.GoString(msg))() -} diff --git a/qtabwidget.h b/qtabwidget.h deleted file mode 100644 index 71cf1513..00000000 --- a/qtabwidget.h +++ /dev/null @@ -1,56 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QTabWidget_New_QWidget(QtObjectPtr parent); -void QTabWidget_Destroy(QtObjectPtr ptr); -int QTabWidget_AddTab_QWidget_String(QtObjectPtr ptr, QtObjectPtr page, char* label); -void QTabWidget_Clear(QtObjectPtr ptr); -QtObjectPtr QTabWidget_CornerWidget_Corner(QtObjectPtr ptr, int corner); -int QTabWidget_Count(QtObjectPtr ptr); -int QTabWidget_CurrentIndex(QtObjectPtr ptr); -QtObjectPtr QTabWidget_CurrentWidget(QtObjectPtr ptr); -int QTabWidget_DocumentMode(QtObjectPtr ptr); -int QTabWidget_ElideMode(QtObjectPtr ptr); -int QTabWidget_IndexOf_QWidget(QtObjectPtr ptr, QtObjectPtr w); -int QTabWidget_InsertTab_Int_QWidget_String(QtObjectPtr ptr, int index, QtObjectPtr page, char* label); -int QTabWidget_IsMovable(QtObjectPtr ptr); -int QTabWidget_IsTabEnabled_Int(QtObjectPtr ptr, int index); -void QTabWidget_RemoveTab_Int(QtObjectPtr ptr, int index); -void QTabWidget_SetCornerWidget_QWidget_Corner(QtObjectPtr ptr, QtObjectPtr widget, int corner); -void QTabWidget_SetDocumentMode_Bool(QtObjectPtr ptr, int set); -void QTabWidget_SetElideMode_TextElideMode(QtObjectPtr ptr, int TextElideMode); -void QTabWidget_SetMovable_Bool(QtObjectPtr ptr, int movable); -void QTabWidget_SetTabEnabled_Int_Bool(QtObjectPtr ptr, int index, int enable); -void QTabWidget_SetTabText_Int_String(QtObjectPtr ptr, int index, char* label); -void QTabWidget_SetTabToolTip_Int_String(QtObjectPtr ptr, int index, char* tip); -void QTabWidget_SetTabWhatsThis_Int_String(QtObjectPtr ptr, int index, char* text); -void QTabWidget_SetTabsClosable_Bool(QtObjectPtr ptr, int closeable); -void QTabWidget_SetUsesScrollButtons_Bool(QtObjectPtr ptr, int useButtons); -QtObjectPtr QTabWidget_TabBar(QtObjectPtr ptr); -char* QTabWidget_TabText_Int(QtObjectPtr ptr, int index); -char* QTabWidget_TabToolTip_Int(QtObjectPtr ptr, int index); -char* QTabWidget_TabWhatsThis_Int(QtObjectPtr ptr, int index); -int QTabWidget_TabsClosable(QtObjectPtr ptr); -int QTabWidget_UsesScrollButtons(QtObjectPtr ptr); -QtObjectPtr QTabWidget_Widget_Int(QtObjectPtr ptr, int index); -//Public Slots -void QTabWidget_ConnectSlotSetCurrentIndex(QtObjectPtr ptr); -void QTabWidget_DisconnectSlotSetCurrentIndex(QtObjectPtr ptr); -void QTabWidget_SetCurrentIndex_Int(QtObjectPtr ptr, int index); -//Signals -void QTabWidget_ConnectSignalCurrentChanged(QtObjectPtr ptr); -void QTabWidget_DisconnectSignalCurrentChanged(QtObjectPtr ptr); -void QTabWidget_ConnectSignalTabBarClicked(QtObjectPtr ptr); -void QTabWidget_DisconnectSignalTabBarClicked(QtObjectPtr ptr); -void QTabWidget_ConnectSignalTabBarDoubleClicked(QtObjectPtr ptr); -void QTabWidget_DisconnectSignalTabBarDoubleClicked(QtObjectPtr ptr); -void QTabWidget_ConnectSignalTabCloseRequested(QtObjectPtr ptr); -void QTabWidget_DisconnectSignalTabCloseRequested(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qtabwidget.moc b/qtabwidget.moc deleted file mode 100644 index 771812fe..00000000 --- a/qtabwidget.moc +++ /dev/null @@ -1,126 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qtabwidget.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qtabwidget.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQTabWidget_t { - QByteArrayData data[4]; - char stringdata[41]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQTabWidget_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQTabWidget_t qt_meta_stringdata_MyQTabWidget = { - { -QT_MOC_LITERAL(0, 0, 12), // "MyQTabWidget" -QT_MOC_LITERAL(1, 13, 20), // "Slot_SetCurrentIndex" -QT_MOC_LITERAL(2, 34, 0), // "" -QT_MOC_LITERAL(3, 35, 5) // "index" - - }, - "MyQTabWidget\0Slot_SetCurrentIndex\0\0" - "index" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQTabWidget[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 1, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 19, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, QMetaType::Int, 3, - - 0 // eod -}; - -void MyQTabWidget::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQTabWidget *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_SetCurrentIndex((*reinterpret_cast< int(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQTabWidget::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTabWidget::Slot_SetCurrentIndex)) { - *result = 0; - } - } - } -} - -const QMetaObject MyQTabWidget::staticMetaObject = { - { &QTabWidget::staticMetaObject, qt_meta_stringdata_MyQTabWidget.data, - qt_meta_data_MyQTabWidget, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQTabWidget::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQTabWidget::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQTabWidget.stringdata)) - return static_cast(const_cast< MyQTabWidget*>(this)); - return QTabWidget::qt_metacast(_clname); -} - -int MyQTabWidget::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QTabWidget::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 1) - qt_static_metacall(this, _c, _id, _a); - _id -= 1; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 1) - *reinterpret_cast(_a[0]) = -1; - _id -= 1; - } - return _id; -} - -// SIGNAL 0 -void MyQTabWidget::Slot_SetCurrentIndex(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -QT_END_MOC_NAMESPACE diff --git a/qtextedit.cpp b/qtextedit.cpp deleted file mode 100644 index 39510fc8..00000000 --- a/qtextedit.cpp +++ /dev/null @@ -1,451 +0,0 @@ -#include "qtextedit.h" -#include -#include "cgoexport.h" - -//MyQTextEdit -class MyQTextEdit: public QTextEdit { -Q_OBJECT -public: -void Signal_CopyAvailable() { callbackQTextEdit(this, QString("copyAvailable").toUtf8().data()); }; -void Signal_CursorPositionChanged() { callbackQTextEdit(this, QString("cursorPositionChanged").toUtf8().data()); }; -void Signal_RedoAvailable() { callbackQTextEdit(this, QString("redoAvailable").toUtf8().data()); }; -void Signal_SelectionChanged() { callbackQTextEdit(this, QString("selectionChanged").toUtf8().data()); }; -void Signal_TextChanged() { callbackQTextEdit(this, QString("textChanged").toUtf8().data()); }; -void Signal_UndoAvailable() { callbackQTextEdit(this, QString("undoAvailable").toUtf8().data()); }; - -signals: -void Slot_Clear(); -void Slot_Copy(); -void Slot_Cut(); -void Slot_Paste(); -void Slot_Redo(); -void Slot_SelectAll(); -void Slot_SetFontItalic(bool italic); -void Slot_SetFontUnderline(bool underline); -void Slot_SetFontWeight(int weight); -void Slot_Undo(); -void Slot_ZoomIn(int rang); -void Slot_ZoomOut(int rang); - -}; -#include "qtextedit.moc" - - -//Public Functions -QtObjectPtr QTextEdit_New_QWidget(QtObjectPtr parent) -{ - return new QTextEdit(((QWidget*)(parent))); -} - -QtObjectPtr QTextEdit_New_String_QWidget(char* text, QtObjectPtr parent) -{ - return new QTextEdit(QString(text), ((QWidget*)(parent))); -} - -void QTextEdit_Destroy(QtObjectPtr ptr) -{ - ((QTextEdit*)(ptr))->~QTextEdit(); -} - -int QTextEdit_AcceptRichText(QtObjectPtr ptr) -{ - return ((QTextEdit*)(ptr))->acceptRichText(); -} - -int QTextEdit_Alignment(QtObjectPtr ptr) -{ - return ((QTextEdit*)(ptr))->alignment(); -} - -int QTextEdit_CanPaste(QtObjectPtr ptr) -{ - return ((QTextEdit*)(ptr))->canPaste(); -} - -QtObjectPtr QTextEdit_CreateStandardContextMenu(QtObjectPtr ptr) -{ - return ((QTextEdit*)(ptr))->createStandardContextMenu(); -} - -int QTextEdit_CursorWidth(QtObjectPtr ptr) -{ - return ((QTextEdit*)(ptr))->cursorWidth(); -} - -char* QTextEdit_DocumentTitle(QtObjectPtr ptr) -{ - return ((QTextEdit*)(ptr))->documentTitle().toUtf8().data(); -} - -void QTextEdit_EnsureCursorVisible(QtObjectPtr ptr) -{ - ((QTextEdit*)(ptr))->ensureCursorVisible(); -} - -char* QTextEdit_FontFamily(QtObjectPtr ptr) -{ - return ((QTextEdit*)(ptr))->fontFamily().toUtf8().data(); -} - -int QTextEdit_FontItalic(QtObjectPtr ptr) -{ - return ((QTextEdit*)(ptr))->fontItalic(); -} - -int QTextEdit_FontUnderline(QtObjectPtr ptr) -{ - return ((QTextEdit*)(ptr))->fontUnderline(); -} - -int QTextEdit_FontWeight(QtObjectPtr ptr) -{ - return ((QTextEdit*)(ptr))->fontWeight(); -} - -int QTextEdit_IsReadOnly(QtObjectPtr ptr) -{ - return ((QTextEdit*)(ptr))->isReadOnly(); -} - -int QTextEdit_IsUndoRedoEnabled(QtObjectPtr ptr) -{ - return ((QTextEdit*)(ptr))->isUndoRedoEnabled(); -} - -int QTextEdit_LineWrapColumnOrWidth(QtObjectPtr ptr) -{ - return ((QTextEdit*)(ptr))->lineWrapColumnOrWidth(); -} - -int QTextEdit_OverwriteMode(QtObjectPtr ptr) -{ - return ((QTextEdit*)(ptr))->overwriteMode(); -} - -char* QTextEdit_PlaceholderText(QtObjectPtr ptr) -{ - return ((QTextEdit*)(ptr))->placeholderText().toUtf8().data(); -} - -void QTextEdit_SetAcceptRichText_Bool(QtObjectPtr ptr, int accept) -{ - ((QTextEdit*)(ptr))->setAcceptRichText(accept != 0); -} - -void QTextEdit_SetCursorWidth_Int(QtObjectPtr ptr, int width) -{ - ((QTextEdit*)(ptr))->setCursorWidth(width); -} - -void QTextEdit_SetDocumentTitle_String(QtObjectPtr ptr, char* title) -{ - ((QTextEdit*)(ptr))->setDocumentTitle(QString(title)); -} - -void QTextEdit_SetLineWrapColumnOrWidth_Int(QtObjectPtr ptr, int w) -{ - ((QTextEdit*)(ptr))->setLineWrapColumnOrWidth(w); -} - -void QTextEdit_SetOverwriteMode_Bool(QtObjectPtr ptr, int overwrite) -{ - ((QTextEdit*)(ptr))->setOverwriteMode(overwrite != 0); -} - -void QTextEdit_SetPlaceholderText_String(QtObjectPtr ptr, char* placeholderText) -{ - ((QTextEdit*)(ptr))->setPlaceholderText(QString(placeholderText)); -} - -void QTextEdit_SetReadOnly_Bool(QtObjectPtr ptr, int ro) -{ - ((QTextEdit*)(ptr))->setReadOnly(ro != 0); -} - -void QTextEdit_SetTabChangesFocus_Bool(QtObjectPtr ptr, int b) -{ - ((QTextEdit*)(ptr))->setTabChangesFocus(b != 0); -} - -void QTextEdit_SetTabStopWidth_Int(QtObjectPtr ptr, int width) -{ - ((QTextEdit*)(ptr))->setTabStopWidth(width); -} - -void QTextEdit_SetTextInteractionFlags_TextInteractionFlag(QtObjectPtr ptr, int flags) -{ - ((QTextEdit*)(ptr))->setTextInteractionFlags(((Qt::TextInteractionFlag)(flags))); -} - -void QTextEdit_SetUndoRedoEnabled_Bool(QtObjectPtr ptr, int enable) -{ - ((QTextEdit*)(ptr))->setUndoRedoEnabled(enable != 0); -} - -int QTextEdit_TabChangesFocus(QtObjectPtr ptr) -{ - return ((QTextEdit*)(ptr))->tabChangesFocus(); -} - -int QTextEdit_TabStopWidth(QtObjectPtr ptr) -{ - return ((QTextEdit*)(ptr))->tabStopWidth(); -} - -int QTextEdit_TextInteractionFlags(QtObjectPtr ptr) -{ - return ((QTextEdit*)(ptr))->textInteractionFlags(); -} - -char* QTextEdit_ToHtml(QtObjectPtr ptr) -{ - return ((QTextEdit*)(ptr))->toHtml().toUtf8().data(); -} - -char* QTextEdit_ToPlainText(QtObjectPtr ptr) -{ - return ((QTextEdit*)(ptr))->toPlainText().toUtf8().data(); -} - -//Public Slots -void QTextEdit_ConnectSlotClear(QtObjectPtr ptr) -{ - QObject::connect(((MyQTextEdit*)(ptr)), &MyQTextEdit::Slot_Clear, ((QTextEdit*)(ptr)), &QTextEdit::clear, Qt::QueuedConnection); -} - -void QTextEdit_DisconnectSlotClear(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTextEdit*)(ptr)), &MyQTextEdit::Slot_Clear, ((QTextEdit*)(ptr)), &QTextEdit::clear); -} - -void QTextEdit_Clear(QtObjectPtr ptr) -{ - ((MyQTextEdit*)(ptr))->Slot_Clear(); -} - -void QTextEdit_ConnectSlotCopy(QtObjectPtr ptr) -{ - QObject::connect(((MyQTextEdit*)(ptr)), &MyQTextEdit::Slot_Copy, ((QTextEdit*)(ptr)), &QTextEdit::copy, Qt::QueuedConnection); -} - -void QTextEdit_DisconnectSlotCopy(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTextEdit*)(ptr)), &MyQTextEdit::Slot_Copy, ((QTextEdit*)(ptr)), &QTextEdit::copy); -} - -void QTextEdit_Copy(QtObjectPtr ptr) -{ - ((MyQTextEdit*)(ptr))->Slot_Copy(); -} - -void QTextEdit_ConnectSlotCut(QtObjectPtr ptr) -{ - QObject::connect(((MyQTextEdit*)(ptr)), &MyQTextEdit::Slot_Cut, ((QTextEdit*)(ptr)), &QTextEdit::cut, Qt::QueuedConnection); -} - -void QTextEdit_DisconnectSlotCut(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTextEdit*)(ptr)), &MyQTextEdit::Slot_Cut, ((QTextEdit*)(ptr)), &QTextEdit::cut); -} - -void QTextEdit_Cut(QtObjectPtr ptr) -{ - ((MyQTextEdit*)(ptr))->Slot_Cut(); -} - -void QTextEdit_ConnectSlotPaste(QtObjectPtr ptr) -{ - QObject::connect(((MyQTextEdit*)(ptr)), &MyQTextEdit::Slot_Paste, ((QTextEdit*)(ptr)), &QTextEdit::paste, Qt::QueuedConnection); -} - -void QTextEdit_DisconnectSlotPaste(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTextEdit*)(ptr)), &MyQTextEdit::Slot_Paste, ((QTextEdit*)(ptr)), &QTextEdit::paste); -} - -void QTextEdit_Paste(QtObjectPtr ptr) -{ - ((MyQTextEdit*)(ptr))->Slot_Paste(); -} - -void QTextEdit_ConnectSlotRedo(QtObjectPtr ptr) -{ - QObject::connect(((MyQTextEdit*)(ptr)), &MyQTextEdit::Slot_Redo, ((QTextEdit*)(ptr)), &QTextEdit::redo, Qt::QueuedConnection); -} - -void QTextEdit_DisconnectSlotRedo(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTextEdit*)(ptr)), &MyQTextEdit::Slot_Redo, ((QTextEdit*)(ptr)), &QTextEdit::redo); -} - -void QTextEdit_Redo(QtObjectPtr ptr) -{ - ((MyQTextEdit*)(ptr))->Slot_Redo(); -} - -void QTextEdit_ConnectSlotSelectAll(QtObjectPtr ptr) -{ - QObject::connect(((MyQTextEdit*)(ptr)), &MyQTextEdit::Slot_SelectAll, ((QTextEdit*)(ptr)), &QTextEdit::selectAll, Qt::QueuedConnection); -} - -void QTextEdit_DisconnectSlotSelectAll(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTextEdit*)(ptr)), &MyQTextEdit::Slot_SelectAll, ((QTextEdit*)(ptr)), &QTextEdit::selectAll); -} - -void QTextEdit_SelectAll(QtObjectPtr ptr) -{ - ((MyQTextEdit*)(ptr))->Slot_SelectAll(); -} - -void QTextEdit_ConnectSlotSetFontItalic(QtObjectPtr ptr) -{ - QObject::connect(((MyQTextEdit*)(ptr)), &MyQTextEdit::Slot_SetFontItalic, ((QTextEdit*)(ptr)), &QTextEdit::setFontItalic, Qt::QueuedConnection); -} - -void QTextEdit_DisconnectSlotSetFontItalic(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTextEdit*)(ptr)), &MyQTextEdit::Slot_SetFontItalic, ((QTextEdit*)(ptr)), &QTextEdit::setFontItalic); -} - -void QTextEdit_SetFontItalic_Bool(QtObjectPtr ptr, int italic) -{ - ((MyQTextEdit*)(ptr))->Slot_SetFontItalic(italic != 0); -} - -void QTextEdit_ConnectSlotSetFontUnderline(QtObjectPtr ptr) -{ - QObject::connect(((MyQTextEdit*)(ptr)), &MyQTextEdit::Slot_SetFontUnderline, ((QTextEdit*)(ptr)), &QTextEdit::setFontUnderline, Qt::QueuedConnection); -} - -void QTextEdit_DisconnectSlotSetFontUnderline(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTextEdit*)(ptr)), &MyQTextEdit::Slot_SetFontUnderline, ((QTextEdit*)(ptr)), &QTextEdit::setFontUnderline); -} - -void QTextEdit_SetFontUnderline_Bool(QtObjectPtr ptr, int underline) -{ - ((MyQTextEdit*)(ptr))->Slot_SetFontUnderline(underline != 0); -} - -void QTextEdit_ConnectSlotSetFontWeight(QtObjectPtr ptr) -{ - QObject::connect(((MyQTextEdit*)(ptr)), &MyQTextEdit::Slot_SetFontWeight, ((QTextEdit*)(ptr)), &QTextEdit::setFontWeight, Qt::QueuedConnection); -} - -void QTextEdit_DisconnectSlotSetFontWeight(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTextEdit*)(ptr)), &MyQTextEdit::Slot_SetFontWeight, ((QTextEdit*)(ptr)), &QTextEdit::setFontWeight); -} - -void QTextEdit_SetFontWeight_Int(QtObjectPtr ptr, int weight) -{ - ((MyQTextEdit*)(ptr))->Slot_SetFontWeight(weight); -} - -void QTextEdit_ConnectSlotUndo(QtObjectPtr ptr) -{ - QObject::connect(((MyQTextEdit*)(ptr)), &MyQTextEdit::Slot_Undo, ((QTextEdit*)(ptr)), &QTextEdit::undo, Qt::QueuedConnection); -} - -void QTextEdit_DisconnectSlotUndo(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTextEdit*)(ptr)), &MyQTextEdit::Slot_Undo, ((QTextEdit*)(ptr)), &QTextEdit::undo); -} - -void QTextEdit_Undo(QtObjectPtr ptr) -{ - ((MyQTextEdit*)(ptr))->Slot_Undo(); -} - -void QTextEdit_ConnectSlotZoomIn(QtObjectPtr ptr) -{ - QObject::connect(((MyQTextEdit*)(ptr)), &MyQTextEdit::Slot_ZoomIn, ((QTextEdit*)(ptr)), &QTextEdit::zoomIn, Qt::QueuedConnection); -} - -void QTextEdit_DisconnectSlotZoomIn(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTextEdit*)(ptr)), &MyQTextEdit::Slot_ZoomIn, ((QTextEdit*)(ptr)), &QTextEdit::zoomIn); -} - -void QTextEdit_ZoomIn_Int(QtObjectPtr ptr, int rang) -{ - ((MyQTextEdit*)(ptr))->Slot_ZoomIn(rang); -} - -void QTextEdit_ConnectSlotZoomOut(QtObjectPtr ptr) -{ - QObject::connect(((MyQTextEdit*)(ptr)), &MyQTextEdit::Slot_ZoomOut, ((QTextEdit*)(ptr)), &QTextEdit::zoomOut, Qt::QueuedConnection); -} - -void QTextEdit_DisconnectSlotZoomOut(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTextEdit*)(ptr)), &MyQTextEdit::Slot_ZoomOut, ((QTextEdit*)(ptr)), &QTextEdit::zoomOut); -} - -void QTextEdit_ZoomOut_Int(QtObjectPtr ptr, int rang) -{ - ((MyQTextEdit*)(ptr))->Slot_ZoomOut(rang); -} - -//Signals -void QTextEdit_ConnectSignalCopyAvailable(QtObjectPtr ptr) -{ - QObject::connect(((QTextEdit*)(ptr)), &QTextEdit::copyAvailable, ((MyQTextEdit*)(ptr)), &MyQTextEdit::Signal_CopyAvailable, Qt::QueuedConnection); -} - -void QTextEdit_DisconnectSignalCopyAvailable(QtObjectPtr ptr) -{ - QObject::disconnect(((QTextEdit*)(ptr)), &QTextEdit::copyAvailable, ((MyQTextEdit*)(ptr)), &MyQTextEdit::Signal_CopyAvailable); -} - -void QTextEdit_ConnectSignalCursorPositionChanged(QtObjectPtr ptr) -{ - QObject::connect(((QTextEdit*)(ptr)), &QTextEdit::cursorPositionChanged, ((MyQTextEdit*)(ptr)), &MyQTextEdit::Signal_CursorPositionChanged, Qt::QueuedConnection); -} - -void QTextEdit_DisconnectSignalCursorPositionChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QTextEdit*)(ptr)), &QTextEdit::cursorPositionChanged, ((MyQTextEdit*)(ptr)), &MyQTextEdit::Signal_CursorPositionChanged); -} - -void QTextEdit_ConnectSignalRedoAvailable(QtObjectPtr ptr) -{ - QObject::connect(((QTextEdit*)(ptr)), &QTextEdit::redoAvailable, ((MyQTextEdit*)(ptr)), &MyQTextEdit::Signal_RedoAvailable, Qt::QueuedConnection); -} - -void QTextEdit_DisconnectSignalRedoAvailable(QtObjectPtr ptr) -{ - QObject::disconnect(((QTextEdit*)(ptr)), &QTextEdit::redoAvailable, ((MyQTextEdit*)(ptr)), &MyQTextEdit::Signal_RedoAvailable); -} - -void QTextEdit_ConnectSignalSelectionChanged(QtObjectPtr ptr) -{ - QObject::connect(((QTextEdit*)(ptr)), &QTextEdit::selectionChanged, ((MyQTextEdit*)(ptr)), &MyQTextEdit::Signal_SelectionChanged, Qt::QueuedConnection); -} - -void QTextEdit_DisconnectSignalSelectionChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QTextEdit*)(ptr)), &QTextEdit::selectionChanged, ((MyQTextEdit*)(ptr)), &MyQTextEdit::Signal_SelectionChanged); -} - -void QTextEdit_ConnectSignalTextChanged(QtObjectPtr ptr) -{ - QObject::connect(((QTextEdit*)(ptr)), &QTextEdit::textChanged, ((MyQTextEdit*)(ptr)), &MyQTextEdit::Signal_TextChanged, Qt::QueuedConnection); -} - -void QTextEdit_DisconnectSignalTextChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QTextEdit*)(ptr)), &QTextEdit::textChanged, ((MyQTextEdit*)(ptr)), &MyQTextEdit::Signal_TextChanged); -} - -void QTextEdit_ConnectSignalUndoAvailable(QtObjectPtr ptr) -{ - QObject::connect(((QTextEdit*)(ptr)), &QTextEdit::undoAvailable, ((MyQTextEdit*)(ptr)), &MyQTextEdit::Signal_UndoAvailable, Qt::QueuedConnection); -} - -void QTextEdit_DisconnectSignalUndoAvailable(QtObjectPtr ptr) -{ - QObject::disconnect(((QTextEdit*)(ptr)), &QTextEdit::undoAvailable, ((MyQTextEdit*)(ptr)), &MyQTextEdit::Signal_UndoAvailable); -} - diff --git a/qtextedit.go b/qtextedit.go deleted file mode 100644 index 78a1ba5c..00000000 --- a/qtextedit.go +++ /dev/null @@ -1,613 +0,0 @@ -package qt - -//#include "qtextedit.h" -import "C" - -type qtextedit struct { - qabstractscrollarea -} - -type QTextEdit interface { - QAbstractScrollArea - AcceptRichText() bool - Alignment() AlignmentFlag - CanPaste() bool - CreateStandardContextMenu() QMenu - CursorWidth() int - DocumentTitle() string - EnsureCursorVisible() - FontFamily() string - FontItalic() bool - FontUnderline() bool - FontWeight() int - IsReadOnly() bool - IsUndoRedoEnabled() bool - LineWrapColumnOrWidth() int - OverwriteMode() bool - PlaceholderText() string - SetAcceptRichText(accept bool) - SetCursorWidth(width int) - SetDocumentTitle(title string) - SetLineWrapColumnOrWidth(w int) - SetOverwriteMode(overwrite bool) - SetPlaceholderText(placeholderText string) - SetReadOnly(ro bool) - SetTabChangesFocus(b bool) - SetTabStopWidth(width int) - SetTextInteractionFlags(flags TextInteractionFlag) - SetUndoRedoEnabled(enable bool) - TabChangesFocus() bool - TabStopWidth() int - TextInteractionFlags() TextInteractionFlag - ToHtml() string - ToPlainText() string - ConnectSlotClear() - DisconnectSlotClear() - SlotClear() - ConnectSlotCopy() - DisconnectSlotCopy() - SlotCopy() - ConnectSlotCut() - DisconnectSlotCut() - SlotCut() - ConnectSlotPaste() - DisconnectSlotPaste() - SlotPaste() - ConnectSlotRedo() - DisconnectSlotRedo() - SlotRedo() - ConnectSlotSelectAll() - DisconnectSlotSelectAll() - SlotSelectAll() - ConnectSlotSetFontItalic() - DisconnectSlotSetFontItalic() - SlotSetFontItalic(italic bool) - ConnectSlotSetFontUnderline() - DisconnectSlotSetFontUnderline() - SlotSetFontUnderline(underline bool) - ConnectSlotSetFontWeight() - DisconnectSlotSetFontWeight() - SlotSetFontWeight(weight int) - ConnectSlotUndo() - DisconnectSlotUndo() - SlotUndo() - ConnectSlotZoomIn() - DisconnectSlotZoomIn() - SlotZoomIn(rang int) - ConnectSlotZoomOut() - DisconnectSlotZoomOut() - SlotZoomOut(rang int) - ConnectSignalCopyAvailable(f func()) - DisconnectSignalCopyAvailable() - SignalCopyAvailable() func() - ConnectSignalCursorPositionChanged(f func()) - DisconnectSignalCursorPositionChanged() - SignalCursorPositionChanged() func() - ConnectSignalRedoAvailable(f func()) - DisconnectSignalRedoAvailable() - SignalRedoAvailable() func() - ConnectSignalSelectionChanged(f func()) - DisconnectSignalSelectionChanged() - SignalSelectionChanged() func() - ConnectSignalTextChanged(f func()) - DisconnectSignalTextChanged() - SignalTextChanged() func() - ConnectSignalUndoAvailable(f func()) - DisconnectSignalUndoAvailable() - SignalUndoAvailable() func() -} - -func (p *qtextedit) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qtextedit) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQTextEdit1(parent QWidget) QTextEdit { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qtextedit = new(qtextedit) - qtextedit.SetPointer(C.QTextEdit_New_QWidget(parentPtr)) - qtextedit.SetObjectName("QTextEdit_" + randomIdentifier()) - return qtextedit -} - -func NewQTextEdit2(text string, parent QWidget) QTextEdit { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qtextedit = new(qtextedit) - qtextedit.SetPointer(C.QTextEdit_New_String_QWidget(C.CString(text), parentPtr)) - qtextedit.SetObjectName("QTextEdit_" + randomIdentifier()) - return qtextedit -} - -func (p *qtextedit) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QTextEdit_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qtextedit) AcceptRichText() bool { - if p.Pointer() == nil { - return false - } - return C.QTextEdit_AcceptRichText(p.Pointer()) != 0 -} - -func (p *qtextedit) Alignment() AlignmentFlag { - if p.Pointer() == nil { - return 0 - } - return AlignmentFlag(C.QTextEdit_Alignment(p.Pointer())) -} - -func (p *qtextedit) CanPaste() bool { - if p.Pointer() == nil { - return false - } - return C.QTextEdit_CanPaste(p.Pointer()) != 0 -} - -func (p *qtextedit) CreateStandardContextMenu() QMenu { - if p.Pointer() == nil { - return nil - } else { - var qmenu = new(qmenu) - qmenu.SetPointer(C.QTextEdit_CreateStandardContextMenu(p.Pointer())) - if qmenu.ObjectName() == "" { - qmenu.SetObjectName("QMenu_" + randomIdentifier()) - } - return qmenu - } -} - -func (p *qtextedit) CursorWidth() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTextEdit_CursorWidth(p.Pointer())) -} - -func (p *qtextedit) DocumentTitle() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QTextEdit_DocumentTitle(p.Pointer())) -} - -func (p *qtextedit) EnsureCursorVisible() { - if p.Pointer() != nil { - C.QTextEdit_EnsureCursorVisible(p.Pointer()) - } -} - -func (p *qtextedit) FontFamily() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QTextEdit_FontFamily(p.Pointer())) -} - -func (p *qtextedit) FontItalic() bool { - if p.Pointer() == nil { - return false - } - return C.QTextEdit_FontItalic(p.Pointer()) != 0 -} - -func (p *qtextedit) FontUnderline() bool { - if p.Pointer() == nil { - return false - } - return C.QTextEdit_FontUnderline(p.Pointer()) != 0 -} - -func (p *qtextedit) FontWeight() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTextEdit_FontWeight(p.Pointer())) -} - -func (p *qtextedit) IsReadOnly() bool { - if p.Pointer() == nil { - return false - } - return C.QTextEdit_IsReadOnly(p.Pointer()) != 0 -} - -func (p *qtextedit) IsUndoRedoEnabled() bool { - if p.Pointer() == nil { - return false - } - return C.QTextEdit_IsUndoRedoEnabled(p.Pointer()) != 0 -} - -func (p *qtextedit) LineWrapColumnOrWidth() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTextEdit_LineWrapColumnOrWidth(p.Pointer())) -} - -func (p *qtextedit) OverwriteMode() bool { - if p.Pointer() == nil { - return false - } - return C.QTextEdit_OverwriteMode(p.Pointer()) != 0 -} - -func (p *qtextedit) PlaceholderText() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QTextEdit_PlaceholderText(p.Pointer())) -} - -func (p *qtextedit) SetAcceptRichText(accept bool) { - if p.Pointer() != nil { - C.QTextEdit_SetAcceptRichText_Bool(p.Pointer(), goBoolToCInt(accept)) - } -} - -func (p *qtextedit) SetCursorWidth(width int) { - if p.Pointer() != nil { - C.QTextEdit_SetCursorWidth_Int(p.Pointer(), C.int(width)) - } -} - -func (p *qtextedit) SetDocumentTitle(title string) { - if p.Pointer() != nil { - C.QTextEdit_SetDocumentTitle_String(p.Pointer(), C.CString(title)) - } -} - -func (p *qtextedit) SetLineWrapColumnOrWidth(w int) { - if p.Pointer() != nil { - C.QTextEdit_SetLineWrapColumnOrWidth_Int(p.Pointer(), C.int(w)) - } -} - -func (p *qtextedit) SetOverwriteMode(overwrite bool) { - if p.Pointer() != nil { - C.QTextEdit_SetOverwriteMode_Bool(p.Pointer(), goBoolToCInt(overwrite)) - } -} - -func (p *qtextedit) SetPlaceholderText(placeholderText string) { - if p.Pointer() != nil { - C.QTextEdit_SetPlaceholderText_String(p.Pointer(), C.CString(placeholderText)) - } -} - -func (p *qtextedit) SetReadOnly(ro bool) { - if p.Pointer() != nil { - C.QTextEdit_SetReadOnly_Bool(p.Pointer(), goBoolToCInt(ro)) - } -} - -func (p *qtextedit) SetTabChangesFocus(b bool) { - if p.Pointer() != nil { - C.QTextEdit_SetTabChangesFocus_Bool(p.Pointer(), goBoolToCInt(b)) - } -} - -func (p *qtextedit) SetTabStopWidth(width int) { - if p.Pointer() != nil { - C.QTextEdit_SetTabStopWidth_Int(p.Pointer(), C.int(width)) - } -} - -func (p *qtextedit) SetTextInteractionFlags(flags TextInteractionFlag) { - if p.Pointer() != nil { - C.QTextEdit_SetTextInteractionFlags_TextInteractionFlag(p.Pointer(), C.int(flags)) - } -} - -func (p *qtextedit) SetUndoRedoEnabled(enable bool) { - if p.Pointer() != nil { - C.QTextEdit_SetUndoRedoEnabled_Bool(p.Pointer(), goBoolToCInt(enable)) - } -} - -func (p *qtextedit) TabChangesFocus() bool { - if p.Pointer() == nil { - return false - } - return C.QTextEdit_TabChangesFocus(p.Pointer()) != 0 -} - -func (p *qtextedit) TabStopWidth() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTextEdit_TabStopWidth(p.Pointer())) -} - -func (p *qtextedit) TextInteractionFlags() TextInteractionFlag { - if p.Pointer() == nil { - return 0 - } - return TextInteractionFlag(C.QTextEdit_TextInteractionFlags(p.Pointer())) -} - -func (p *qtextedit) ToHtml() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QTextEdit_ToHtml(p.Pointer())) -} - -func (p *qtextedit) ToPlainText() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QTextEdit_ToPlainText(p.Pointer())) -} - -func (p *qtextedit) ConnectSlotClear() { - C.QTextEdit_ConnectSlotClear(p.Pointer()) -} - -func (p *qtextedit) DisconnectSlotClear() { - C.QTextEdit_DisconnectSlotClear(p.Pointer()) -} - -func (p *qtextedit) SlotClear() { - if p.Pointer() != nil { - C.QTextEdit_Clear(p.Pointer()) - } -} - -func (p *qtextedit) ConnectSlotCopy() { - C.QTextEdit_ConnectSlotCopy(p.Pointer()) -} - -func (p *qtextedit) DisconnectSlotCopy() { - C.QTextEdit_DisconnectSlotCopy(p.Pointer()) -} - -func (p *qtextedit) SlotCopy() { - if p.Pointer() != nil { - C.QTextEdit_Copy(p.Pointer()) - } -} - -func (p *qtextedit) ConnectSlotCut() { - C.QTextEdit_ConnectSlotCut(p.Pointer()) -} - -func (p *qtextedit) DisconnectSlotCut() { - C.QTextEdit_DisconnectSlotCut(p.Pointer()) -} - -func (p *qtextedit) SlotCut() { - if p.Pointer() != nil { - C.QTextEdit_Cut(p.Pointer()) - } -} - -func (p *qtextedit) ConnectSlotPaste() { - C.QTextEdit_ConnectSlotPaste(p.Pointer()) -} - -func (p *qtextedit) DisconnectSlotPaste() { - C.QTextEdit_DisconnectSlotPaste(p.Pointer()) -} - -func (p *qtextedit) SlotPaste() { - if p.Pointer() != nil { - C.QTextEdit_Paste(p.Pointer()) - } -} - -func (p *qtextedit) ConnectSlotRedo() { - C.QTextEdit_ConnectSlotRedo(p.Pointer()) -} - -func (p *qtextedit) DisconnectSlotRedo() { - C.QTextEdit_DisconnectSlotRedo(p.Pointer()) -} - -func (p *qtextedit) SlotRedo() { - if p.Pointer() != nil { - C.QTextEdit_Redo(p.Pointer()) - } -} - -func (p *qtextedit) ConnectSlotSelectAll() { - C.QTextEdit_ConnectSlotSelectAll(p.Pointer()) -} - -func (p *qtextedit) DisconnectSlotSelectAll() { - C.QTextEdit_DisconnectSlotSelectAll(p.Pointer()) -} - -func (p *qtextedit) SlotSelectAll() { - if p.Pointer() != nil { - C.QTextEdit_SelectAll(p.Pointer()) - } -} - -func (p *qtextedit) ConnectSlotSetFontItalic() { - C.QTextEdit_ConnectSlotSetFontItalic(p.Pointer()) -} - -func (p *qtextedit) DisconnectSlotSetFontItalic() { - C.QTextEdit_DisconnectSlotSetFontItalic(p.Pointer()) -} - -func (p *qtextedit) SlotSetFontItalic(italic bool) { - if p.Pointer() != nil { - C.QTextEdit_SetFontItalic_Bool(p.Pointer(), goBoolToCInt(italic)) - } -} - -func (p *qtextedit) ConnectSlotSetFontUnderline() { - C.QTextEdit_ConnectSlotSetFontUnderline(p.Pointer()) -} - -func (p *qtextedit) DisconnectSlotSetFontUnderline() { - C.QTextEdit_DisconnectSlotSetFontUnderline(p.Pointer()) -} - -func (p *qtextedit) SlotSetFontUnderline(underline bool) { - if p.Pointer() != nil { - C.QTextEdit_SetFontUnderline_Bool(p.Pointer(), goBoolToCInt(underline)) - } -} - -func (p *qtextedit) ConnectSlotSetFontWeight() { - C.QTextEdit_ConnectSlotSetFontWeight(p.Pointer()) -} - -func (p *qtextedit) DisconnectSlotSetFontWeight() { - C.QTextEdit_DisconnectSlotSetFontWeight(p.Pointer()) -} - -func (p *qtextedit) SlotSetFontWeight(weight int) { - if p.Pointer() != nil { - C.QTextEdit_SetFontWeight_Int(p.Pointer(), C.int(weight)) - } -} - -func (p *qtextedit) ConnectSlotUndo() { - C.QTextEdit_ConnectSlotUndo(p.Pointer()) -} - -func (p *qtextedit) DisconnectSlotUndo() { - C.QTextEdit_DisconnectSlotUndo(p.Pointer()) -} - -func (p *qtextedit) SlotUndo() { - if p.Pointer() != nil { - C.QTextEdit_Undo(p.Pointer()) - } -} - -func (p *qtextedit) ConnectSlotZoomIn() { - C.QTextEdit_ConnectSlotZoomIn(p.Pointer()) -} - -func (p *qtextedit) DisconnectSlotZoomIn() { - C.QTextEdit_DisconnectSlotZoomIn(p.Pointer()) -} - -func (p *qtextedit) SlotZoomIn(rang int) { - if p.Pointer() != nil { - C.QTextEdit_ZoomIn_Int(p.Pointer(), C.int(rang)) - } -} - -func (p *qtextedit) ConnectSlotZoomOut() { - C.QTextEdit_ConnectSlotZoomOut(p.Pointer()) -} - -func (p *qtextedit) DisconnectSlotZoomOut() { - C.QTextEdit_DisconnectSlotZoomOut(p.Pointer()) -} - -func (p *qtextedit) SlotZoomOut(rang int) { - if p.Pointer() != nil { - C.QTextEdit_ZoomOut_Int(p.Pointer(), C.int(rang)) - } -} - -func (p *qtextedit) ConnectSignalCopyAvailable(f func()) { - C.QTextEdit_ConnectSignalCopyAvailable(p.Pointer()) - connectSignal(p.ObjectName(), "copyAvailable", f) -} - -func (p *qtextedit) DisconnectSignalCopyAvailable() { - C.QTextEdit_DisconnectSignalCopyAvailable(p.Pointer()) - disconnectSignal(p.ObjectName(), "copyAvailable") -} - -func (p *qtextedit) SignalCopyAvailable() func() { - return getSignal(p.ObjectName(), "copyAvailable") -} - -func (p *qtextedit) ConnectSignalCursorPositionChanged(f func()) { - C.QTextEdit_ConnectSignalCursorPositionChanged(p.Pointer()) - connectSignal(p.ObjectName(), "cursorPositionChanged", f) -} - -func (p *qtextedit) DisconnectSignalCursorPositionChanged() { - C.QTextEdit_DisconnectSignalCursorPositionChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "cursorPositionChanged") -} - -func (p *qtextedit) SignalCursorPositionChanged() func() { - return getSignal(p.ObjectName(), "cursorPositionChanged") -} - -func (p *qtextedit) ConnectSignalRedoAvailable(f func()) { - C.QTextEdit_ConnectSignalRedoAvailable(p.Pointer()) - connectSignal(p.ObjectName(), "redoAvailable", f) -} - -func (p *qtextedit) DisconnectSignalRedoAvailable() { - C.QTextEdit_DisconnectSignalRedoAvailable(p.Pointer()) - disconnectSignal(p.ObjectName(), "redoAvailable") -} - -func (p *qtextedit) SignalRedoAvailable() func() { - return getSignal(p.ObjectName(), "redoAvailable") -} - -func (p *qtextedit) ConnectSignalSelectionChanged(f func()) { - C.QTextEdit_ConnectSignalSelectionChanged(p.Pointer()) - connectSignal(p.ObjectName(), "selectionChanged", f) -} - -func (p *qtextedit) DisconnectSignalSelectionChanged() { - C.QTextEdit_DisconnectSignalSelectionChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "selectionChanged") -} - -func (p *qtextedit) SignalSelectionChanged() func() { - return getSignal(p.ObjectName(), "selectionChanged") -} - -func (p *qtextedit) ConnectSignalTextChanged(f func()) { - C.QTextEdit_ConnectSignalTextChanged(p.Pointer()) - connectSignal(p.ObjectName(), "textChanged", f) -} - -func (p *qtextedit) DisconnectSignalTextChanged() { - C.QTextEdit_DisconnectSignalTextChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "textChanged") -} - -func (p *qtextedit) SignalTextChanged() func() { - return getSignal(p.ObjectName(), "textChanged") -} - -func (p *qtextedit) ConnectSignalUndoAvailable(f func()) { - C.QTextEdit_ConnectSignalUndoAvailable(p.Pointer()) - connectSignal(p.ObjectName(), "undoAvailable", f) -} - -func (p *qtextedit) DisconnectSignalUndoAvailable() { - C.QTextEdit_DisconnectSignalUndoAvailable(p.Pointer()) - disconnectSignal(p.ObjectName(), "undoAvailable") -} - -func (p *qtextedit) SignalUndoAvailable() func() { - return getSignal(p.ObjectName(), "undoAvailable") -} - -//export callbackQTextEdit -func callbackQTextEdit(ptr C.QtObjectPtr, msg *C.char) { - var qtextedit = new(qtextedit) - qtextedit.SetPointer(ptr) - getSignal(qtextedit.ObjectName(), C.GoString(msg))() -} diff --git a/qtextedit.h b/qtextedit.h deleted file mode 100644 index 094993b6..00000000 --- a/qtextedit.h +++ /dev/null @@ -1,96 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QTextEdit_New_QWidget(QtObjectPtr parent); -QtObjectPtr QTextEdit_New_String_QWidget(char* text, QtObjectPtr parent); -void QTextEdit_Destroy(QtObjectPtr ptr); -int QTextEdit_AcceptRichText(QtObjectPtr ptr); -int QTextEdit_Alignment(QtObjectPtr ptr); -int QTextEdit_CanPaste(QtObjectPtr ptr); -QtObjectPtr QTextEdit_CreateStandardContextMenu(QtObjectPtr ptr); -int QTextEdit_CursorWidth(QtObjectPtr ptr); -char* QTextEdit_DocumentTitle(QtObjectPtr ptr); -void QTextEdit_EnsureCursorVisible(QtObjectPtr ptr); -char* QTextEdit_FontFamily(QtObjectPtr ptr); -int QTextEdit_FontItalic(QtObjectPtr ptr); -int QTextEdit_FontUnderline(QtObjectPtr ptr); -int QTextEdit_FontWeight(QtObjectPtr ptr); -int QTextEdit_IsReadOnly(QtObjectPtr ptr); -int QTextEdit_IsUndoRedoEnabled(QtObjectPtr ptr); -int QTextEdit_LineWrapColumnOrWidth(QtObjectPtr ptr); -int QTextEdit_OverwriteMode(QtObjectPtr ptr); -char* QTextEdit_PlaceholderText(QtObjectPtr ptr); -void QTextEdit_SetAcceptRichText_Bool(QtObjectPtr ptr, int accept); -void QTextEdit_SetCursorWidth_Int(QtObjectPtr ptr, int width); -void QTextEdit_SetDocumentTitle_String(QtObjectPtr ptr, char* title); -void QTextEdit_SetLineWrapColumnOrWidth_Int(QtObjectPtr ptr, int w); -void QTextEdit_SetOverwriteMode_Bool(QtObjectPtr ptr, int overwrite); -void QTextEdit_SetPlaceholderText_String(QtObjectPtr ptr, char* placeholderText); -void QTextEdit_SetReadOnly_Bool(QtObjectPtr ptr, int ro); -void QTextEdit_SetTabChangesFocus_Bool(QtObjectPtr ptr, int b); -void QTextEdit_SetTabStopWidth_Int(QtObjectPtr ptr, int width); -void QTextEdit_SetTextInteractionFlags_TextInteractionFlag(QtObjectPtr ptr, int flags); -void QTextEdit_SetUndoRedoEnabled_Bool(QtObjectPtr ptr, int enable); -int QTextEdit_TabChangesFocus(QtObjectPtr ptr); -int QTextEdit_TabStopWidth(QtObjectPtr ptr); -int QTextEdit_TextInteractionFlags(QtObjectPtr ptr); -char* QTextEdit_ToHtml(QtObjectPtr ptr); -char* QTextEdit_ToPlainText(QtObjectPtr ptr); -//Public Slots -void QTextEdit_ConnectSlotClear(QtObjectPtr ptr); -void QTextEdit_DisconnectSlotClear(QtObjectPtr ptr); -void QTextEdit_Clear(QtObjectPtr ptr); -void QTextEdit_ConnectSlotCopy(QtObjectPtr ptr); -void QTextEdit_DisconnectSlotCopy(QtObjectPtr ptr); -void QTextEdit_Copy(QtObjectPtr ptr); -void QTextEdit_ConnectSlotCut(QtObjectPtr ptr); -void QTextEdit_DisconnectSlotCut(QtObjectPtr ptr); -void QTextEdit_Cut(QtObjectPtr ptr); -void QTextEdit_ConnectSlotPaste(QtObjectPtr ptr); -void QTextEdit_DisconnectSlotPaste(QtObjectPtr ptr); -void QTextEdit_Paste(QtObjectPtr ptr); -void QTextEdit_ConnectSlotRedo(QtObjectPtr ptr); -void QTextEdit_DisconnectSlotRedo(QtObjectPtr ptr); -void QTextEdit_Redo(QtObjectPtr ptr); -void QTextEdit_ConnectSlotSelectAll(QtObjectPtr ptr); -void QTextEdit_DisconnectSlotSelectAll(QtObjectPtr ptr); -void QTextEdit_SelectAll(QtObjectPtr ptr); -void QTextEdit_ConnectSlotSetFontItalic(QtObjectPtr ptr); -void QTextEdit_DisconnectSlotSetFontItalic(QtObjectPtr ptr); -void QTextEdit_SetFontItalic_Bool(QtObjectPtr ptr, int italic); -void QTextEdit_ConnectSlotSetFontUnderline(QtObjectPtr ptr); -void QTextEdit_DisconnectSlotSetFontUnderline(QtObjectPtr ptr); -void QTextEdit_SetFontUnderline_Bool(QtObjectPtr ptr, int underline); -void QTextEdit_ConnectSlotSetFontWeight(QtObjectPtr ptr); -void QTextEdit_DisconnectSlotSetFontWeight(QtObjectPtr ptr); -void QTextEdit_SetFontWeight_Int(QtObjectPtr ptr, int weight); -void QTextEdit_ConnectSlotUndo(QtObjectPtr ptr); -void QTextEdit_DisconnectSlotUndo(QtObjectPtr ptr); -void QTextEdit_Undo(QtObjectPtr ptr); -void QTextEdit_ConnectSlotZoomIn(QtObjectPtr ptr); -void QTextEdit_DisconnectSlotZoomIn(QtObjectPtr ptr); -void QTextEdit_ZoomIn_Int(QtObjectPtr ptr, int rang); -void QTextEdit_ConnectSlotZoomOut(QtObjectPtr ptr); -void QTextEdit_DisconnectSlotZoomOut(QtObjectPtr ptr); -void QTextEdit_ZoomOut_Int(QtObjectPtr ptr, int rang); -//Signals -void QTextEdit_ConnectSignalCopyAvailable(QtObjectPtr ptr); -void QTextEdit_DisconnectSignalCopyAvailable(QtObjectPtr ptr); -void QTextEdit_ConnectSignalCursorPositionChanged(QtObjectPtr ptr); -void QTextEdit_DisconnectSignalCursorPositionChanged(QtObjectPtr ptr); -void QTextEdit_ConnectSignalRedoAvailable(QtObjectPtr ptr); -void QTextEdit_DisconnectSignalRedoAvailable(QtObjectPtr ptr); -void QTextEdit_ConnectSignalSelectionChanged(QtObjectPtr ptr); -void QTextEdit_DisconnectSignalSelectionChanged(QtObjectPtr ptr); -void QTextEdit_ConnectSignalTextChanged(QtObjectPtr ptr); -void QTextEdit_DisconnectSignalTextChanged(QtObjectPtr ptr); -void QTextEdit_ConnectSignalUndoAvailable(QtObjectPtr ptr); -void QTextEdit_DisconnectSignalUndoAvailable(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qtextedit.moc b/qtextedit.moc deleted file mode 100644 index 3202677d..00000000 --- a/qtextedit.moc +++ /dev/null @@ -1,313 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qtextedit.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qtextedit.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQTextEdit_t { - QByteArrayData data[18]; - char stringdata[203]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQTextEdit_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQTextEdit_t qt_meta_stringdata_MyQTextEdit = { - { -QT_MOC_LITERAL(0, 0, 11), // "MyQTextEdit" -QT_MOC_LITERAL(1, 12, 10), // "Slot_Clear" -QT_MOC_LITERAL(2, 23, 0), // "" -QT_MOC_LITERAL(3, 24, 9), // "Slot_Copy" -QT_MOC_LITERAL(4, 34, 8), // "Slot_Cut" -QT_MOC_LITERAL(5, 43, 10), // "Slot_Paste" -QT_MOC_LITERAL(6, 54, 9), // "Slot_Redo" -QT_MOC_LITERAL(7, 64, 14), // "Slot_SelectAll" -QT_MOC_LITERAL(8, 79, 18), // "Slot_SetFontItalic" -QT_MOC_LITERAL(9, 98, 6), // "italic" -QT_MOC_LITERAL(10, 105, 21), // "Slot_SetFontUnderline" -QT_MOC_LITERAL(11, 127, 9), // "underline" -QT_MOC_LITERAL(12, 137, 18), // "Slot_SetFontWeight" -QT_MOC_LITERAL(13, 156, 6), // "weight" -QT_MOC_LITERAL(14, 163, 9), // "Slot_Undo" -QT_MOC_LITERAL(15, 173, 11), // "Slot_ZoomIn" -QT_MOC_LITERAL(16, 185, 4), // "rang" -QT_MOC_LITERAL(17, 190, 12) // "Slot_ZoomOut" - - }, - "MyQTextEdit\0Slot_Clear\0\0Slot_Copy\0" - "Slot_Cut\0Slot_Paste\0Slot_Redo\0" - "Slot_SelectAll\0Slot_SetFontItalic\0" - "italic\0Slot_SetFontUnderline\0underline\0" - "Slot_SetFontWeight\0weight\0Slot_Undo\0" - "Slot_ZoomIn\0rang\0Slot_ZoomOut" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQTextEdit[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 12, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 12, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 0, 74, 2, 0x06 /* Public */, - 3, 0, 75, 2, 0x06 /* Public */, - 4, 0, 76, 2, 0x06 /* Public */, - 5, 0, 77, 2, 0x06 /* Public */, - 6, 0, 78, 2, 0x06 /* Public */, - 7, 0, 79, 2, 0x06 /* Public */, - 8, 1, 80, 2, 0x06 /* Public */, - 10, 1, 83, 2, 0x06 /* Public */, - 12, 1, 86, 2, 0x06 /* Public */, - 14, 0, 89, 2, 0x06 /* Public */, - 15, 1, 90, 2, 0x06 /* Public */, - 17, 1, 93, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, QMetaType::Bool, 9, - QMetaType::Void, QMetaType::Bool, 11, - QMetaType::Void, QMetaType::Int, 13, - QMetaType::Void, - QMetaType::Void, QMetaType::Int, 16, - QMetaType::Void, QMetaType::Int, 16, - - 0 // eod -}; - -void MyQTextEdit::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQTextEdit *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_Clear(); break; - case 1: _t->Slot_Copy(); break; - case 2: _t->Slot_Cut(); break; - case 3: _t->Slot_Paste(); break; - case 4: _t->Slot_Redo(); break; - case 5: _t->Slot_SelectAll(); break; - case 6: _t->Slot_SetFontItalic((*reinterpret_cast< bool(*)>(_a[1]))); break; - case 7: _t->Slot_SetFontUnderline((*reinterpret_cast< bool(*)>(_a[1]))); break; - case 8: _t->Slot_SetFontWeight((*reinterpret_cast< int(*)>(_a[1]))); break; - case 9: _t->Slot_Undo(); break; - case 10: _t->Slot_ZoomIn((*reinterpret_cast< int(*)>(_a[1]))); break; - case 11: _t->Slot_ZoomOut((*reinterpret_cast< int(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQTextEdit::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTextEdit::Slot_Clear)) { - *result = 0; - } - } - { - typedef void (MyQTextEdit::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTextEdit::Slot_Copy)) { - *result = 1; - } - } - { - typedef void (MyQTextEdit::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTextEdit::Slot_Cut)) { - *result = 2; - } - } - { - typedef void (MyQTextEdit::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTextEdit::Slot_Paste)) { - *result = 3; - } - } - { - typedef void (MyQTextEdit::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTextEdit::Slot_Redo)) { - *result = 4; - } - } - { - typedef void (MyQTextEdit::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTextEdit::Slot_SelectAll)) { - *result = 5; - } - } - { - typedef void (MyQTextEdit::*_t)(bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTextEdit::Slot_SetFontItalic)) { - *result = 6; - } - } - { - typedef void (MyQTextEdit::*_t)(bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTextEdit::Slot_SetFontUnderline)) { - *result = 7; - } - } - { - typedef void (MyQTextEdit::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTextEdit::Slot_SetFontWeight)) { - *result = 8; - } - } - { - typedef void (MyQTextEdit::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTextEdit::Slot_Undo)) { - *result = 9; - } - } - { - typedef void (MyQTextEdit::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTextEdit::Slot_ZoomIn)) { - *result = 10; - } - } - { - typedef void (MyQTextEdit::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTextEdit::Slot_ZoomOut)) { - *result = 11; - } - } - } -} - -const QMetaObject MyQTextEdit::staticMetaObject = { - { &QTextEdit::staticMetaObject, qt_meta_stringdata_MyQTextEdit.data, - qt_meta_data_MyQTextEdit, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQTextEdit::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQTextEdit::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQTextEdit.stringdata)) - return static_cast(const_cast< MyQTextEdit*>(this)); - return QTextEdit::qt_metacast(_clname); -} - -int MyQTextEdit::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QTextEdit::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 12) - qt_static_metacall(this, _c, _id, _a); - _id -= 12; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 12) - *reinterpret_cast(_a[0]) = -1; - _id -= 12; - } - return _id; -} - -// SIGNAL 0 -void MyQTextEdit::Slot_Clear() -{ - QMetaObject::activate(this, &staticMetaObject, 0, 0); -} - -// SIGNAL 1 -void MyQTextEdit::Slot_Copy() -{ - QMetaObject::activate(this, &staticMetaObject, 1, 0); -} - -// SIGNAL 2 -void MyQTextEdit::Slot_Cut() -{ - QMetaObject::activate(this, &staticMetaObject, 2, 0); -} - -// SIGNAL 3 -void MyQTextEdit::Slot_Paste() -{ - QMetaObject::activate(this, &staticMetaObject, 3, 0); -} - -// SIGNAL 4 -void MyQTextEdit::Slot_Redo() -{ - QMetaObject::activate(this, &staticMetaObject, 4, 0); -} - -// SIGNAL 5 -void MyQTextEdit::Slot_SelectAll() -{ - QMetaObject::activate(this, &staticMetaObject, 5, 0); -} - -// SIGNAL 6 -void MyQTextEdit::Slot_SetFontItalic(bool _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 6, _a); -} - -// SIGNAL 7 -void MyQTextEdit::Slot_SetFontUnderline(bool _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 7, _a); -} - -// SIGNAL 8 -void MyQTextEdit::Slot_SetFontWeight(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 8, _a); -} - -// SIGNAL 9 -void MyQTextEdit::Slot_Undo() -{ - QMetaObject::activate(this, &staticMetaObject, 9, 0); -} - -// SIGNAL 10 -void MyQTextEdit::Slot_ZoomIn(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 10, _a); -} - -// SIGNAL 11 -void MyQTextEdit::Slot_ZoomOut(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 11, _a); -} -QT_END_MOC_NAMESPACE diff --git a/qthread.cpp b/qthread.cpp deleted file mode 100644 index 1f4acb9c..00000000 --- a/qthread.cpp +++ /dev/null @@ -1,137 +0,0 @@ -#include "qthread.h" -#include -#include "cgoexport.h" - -//MyQThread -class MyQThread: public QThread { -Q_OBJECT -public: -void Signal_Finished() { callbackQThread(this, QString("finished").toUtf8().data()); }; -void Signal_Started() { callbackQThread(this, QString("started").toUtf8().data()); }; - -signals: -void Slot_Quit(); -void Slot_Terminate(); - -}; -#include "qthread.moc" - -//Public Types -int QThread_IdlePriority() { return QThread::IdlePriority; } -int QThread_LowestPriority() { return QThread::LowestPriority; } -int QThread_LowPriority() { return QThread::LowPriority; } -int QThread_NormalPriority() { return QThread::NormalPriority; } -int QThread_HighPriority() { return QThread::HighPriority; } -int QThread_HighestPriority() { return QThread::HighestPriority; } -int QThread_TimeCriticalPriority() { return QThread::TimeCriticalPriority; } -int QThread_InheritPriority() { return QThread::InheritPriority; } - -//Public Functions -QtObjectPtr QThread_New_QObject(QtObjectPtr parent) -{ - return new QThread(((QObject*)(parent))); -} - -void QThread_Destroy(QtObjectPtr ptr) -{ - ((QThread*)(ptr))->~QThread(); -} - -void QThread_Exit_Int(QtObjectPtr ptr, int returnCode) -{ - ((QThread*)(ptr))->exit(returnCode); -} - -int QThread_IsFinished(QtObjectPtr ptr) -{ - return ((QThread*)(ptr))->isFinished(); -} - -int QThread_IsInterruptionRequested(QtObjectPtr ptr) -{ - return ((QThread*)(ptr))->isInterruptionRequested(); -} - -int QThread_IsRunning(QtObjectPtr ptr) -{ - return ((QThread*)(ptr))->isRunning(); -} - -int QThread_Priority(QtObjectPtr ptr) -{ - return ((QThread*)(ptr))->priority(); -} - -void QThread_RequestInterruption(QtObjectPtr ptr) -{ - ((QThread*)(ptr))->requestInterruption(); -} - -void QThread_SetPriority_Priority(QtObjectPtr ptr, int priority) -{ - ((QThread*)(ptr))->setPriority(((QThread::Priority)(priority))); -} - -//Public Slots -void QThread_ConnectSlotQuit(QtObjectPtr ptr) -{ - QObject::connect(((MyQThread*)(ptr)), &MyQThread::Slot_Quit, ((QThread*)(ptr)), &QThread::quit, Qt::QueuedConnection); -} - -void QThread_DisconnectSlotQuit(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQThread*)(ptr)), &MyQThread::Slot_Quit, ((QThread*)(ptr)), &QThread::quit); -} - -void QThread_Quit(QtObjectPtr ptr) -{ - ((MyQThread*)(ptr))->Slot_Quit(); -} - -void QThread_ConnectSlotTerminate(QtObjectPtr ptr) -{ - QObject::connect(((MyQThread*)(ptr)), &MyQThread::Slot_Terminate, ((QThread*)(ptr)), &QThread::terminate, Qt::QueuedConnection); -} - -void QThread_DisconnectSlotTerminate(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQThread*)(ptr)), &MyQThread::Slot_Terminate, ((QThread*)(ptr)), &QThread::terminate); -} - -void QThread_Terminate(QtObjectPtr ptr) -{ - ((MyQThread*)(ptr))->Slot_Terminate(); -} - -//Signals -void QThread_ConnectSignalFinished(QtObjectPtr ptr) -{ - QObject::connect(((QThread*)(ptr)), &QThread::finished, ((MyQThread*)(ptr)), &MyQThread::Signal_Finished, Qt::QueuedConnection); -} - -void QThread_DisconnectSignalFinished(QtObjectPtr ptr) -{ - QObject::disconnect(((QThread*)(ptr)), &QThread::finished, ((MyQThread*)(ptr)), &MyQThread::Signal_Finished); -} - -void QThread_ConnectSignalStarted(QtObjectPtr ptr) -{ - QObject::connect(((QThread*)(ptr)), &QThread::started, ((MyQThread*)(ptr)), &MyQThread::Signal_Started, Qt::QueuedConnection); -} - -void QThread_DisconnectSignalStarted(QtObjectPtr ptr) -{ - QObject::disconnect(((QThread*)(ptr)), &QThread::started, ((MyQThread*)(ptr)), &MyQThread::Signal_Started); -} - -//Static Public Members -QtObjectPtr QThread_CurrentThread() -{ - return QThread::currentThread(); -} - -int QThread_IdealThreadCount() -{ - return QThread::idealThreadCount(); -} - diff --git a/qthread.go b/qthread.go deleted file mode 100644 index 95637163..00000000 --- a/qthread.go +++ /dev/null @@ -1,194 +0,0 @@ -package qt - -//#include "qthread.h" -import "C" - -type qthread struct { - qobject -} - -type QThread interface { - QObject - Exit(returnCode int) - IsFinished() bool - IsInterruptionRequested() bool - IsRunning() bool - Priority() Priority - RequestInterruption() - SetPriority(priority Priority) - ConnectSlotQuit() - DisconnectSlotQuit() - SlotQuit() - ConnectSlotTerminate() - DisconnectSlotTerminate() - SlotTerminate() - ConnectSignalFinished(f func()) - DisconnectSignalFinished() - SignalFinished() func() - ConnectSignalStarted(f func()) - DisconnectSignalStarted() - SignalStarted() func() -} - -func (p *qthread) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qthread) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -//Priority -type Priority int - -var ( - IDLEPRIORITY = Priority(C.QThread_IdlePriority()) - LOWESTPRIORITY = Priority(C.QThread_LowestPriority()) - LOWPRIORITY = Priority(C.QThread_LowPriority()) - NORMALPRIORITY = Priority(C.QThread_NormalPriority()) - HIGHPRIORITY = Priority(C.QThread_HighPriority()) - HIGHESTPRIORITY = Priority(C.QThread_HighestPriority()) - TIMECRITICALPRIORITY = Priority(C.QThread_TimeCriticalPriority()) - INHERITPRIORITY = Priority(C.QThread_InheritPriority()) -) - -func NewQThread(parent QObject) QThread { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qthread = new(qthread) - qthread.SetPointer(C.QThread_New_QObject(parentPtr)) - qthread.SetObjectName("QThread_" + randomIdentifier()) - return qthread -} - -func (p *qthread) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QThread_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qthread) Exit(returnCode int) { - if p.Pointer() != nil { - C.QThread_Exit_Int(p.Pointer(), C.int(returnCode)) - } -} - -func (p *qthread) IsFinished() bool { - if p.Pointer() == nil { - return false - } - return C.QThread_IsFinished(p.Pointer()) != 0 -} - -func (p *qthread) IsInterruptionRequested() bool { - if p.Pointer() == nil { - return false - } - return C.QThread_IsInterruptionRequested(p.Pointer()) != 0 -} - -func (p *qthread) IsRunning() bool { - if p.Pointer() == nil { - return false - } - return C.QThread_IsRunning(p.Pointer()) != 0 -} - -func (p *qthread) Priority() Priority { - if p.Pointer() == nil { - return 0 - } - return Priority(C.QThread_Priority(p.Pointer())) -} - -func (p *qthread) RequestInterruption() { - if p.Pointer() != nil { - C.QThread_RequestInterruption(p.Pointer()) - } -} - -func (p *qthread) SetPriority(priority Priority) { - if p.Pointer() != nil { - C.QThread_SetPriority_Priority(p.Pointer(), C.int(priority)) - } -} - -func (p *qthread) ConnectSlotQuit() { - C.QThread_ConnectSlotQuit(p.Pointer()) -} - -func (p *qthread) DisconnectSlotQuit() { - C.QThread_DisconnectSlotQuit(p.Pointer()) -} - -func (p *qthread) SlotQuit() { - if p.Pointer() != nil { - C.QThread_Quit(p.Pointer()) - } -} - -func (p *qthread) ConnectSlotTerminate() { - C.QThread_ConnectSlotTerminate(p.Pointer()) -} - -func (p *qthread) DisconnectSlotTerminate() { - C.QThread_DisconnectSlotTerminate(p.Pointer()) -} - -func (p *qthread) SlotTerminate() { - if p.Pointer() != nil { - C.QThread_Terminate(p.Pointer()) - } -} - -func (p *qthread) ConnectSignalFinished(f func()) { - C.QThread_ConnectSignalFinished(p.Pointer()) - connectSignal(p.ObjectName(), "finished", f) -} - -func (p *qthread) DisconnectSignalFinished() { - C.QThread_DisconnectSignalFinished(p.Pointer()) - disconnectSignal(p.ObjectName(), "finished") -} - -func (p *qthread) SignalFinished() func() { - return getSignal(p.ObjectName(), "finished") -} - -func (p *qthread) ConnectSignalStarted(f func()) { - C.QThread_ConnectSignalStarted(p.Pointer()) - connectSignal(p.ObjectName(), "started", f) -} - -func (p *qthread) DisconnectSignalStarted() { - C.QThread_DisconnectSignalStarted(p.Pointer()) - disconnectSignal(p.ObjectName(), "started") -} - -func (p *qthread) SignalStarted() func() { - return getSignal(p.ObjectName(), "started") -} - -func QThread_CurrentThread() QThread { - var qthread = new(qthread) - qthread.SetPointer(C.QThread_CurrentThread()) - if qthread.ObjectName() == "" { - qthread.SetObjectName("QThread_" + randomIdentifier()) - } - return qthread -} - -func QThread_IdealThreadCount() int { - return int(C.QThread_IdealThreadCount()) -} - -//export callbackQThread -func callbackQThread(ptr C.QtObjectPtr, msg *C.char) { - var qthread = new(qthread) - qthread.SetPointer(ptr) - getSignal(qthread.ObjectName(), C.GoString(msg))() -} diff --git a/qthread.h b/qthread.h deleted file mode 100644 index 62c9928f..00000000 --- a/qthread.h +++ /dev/null @@ -1,44 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Types -int QThread_IdlePriority(); -int QThread_LowestPriority(); -int QThread_LowPriority(); -int QThread_NormalPriority(); -int QThread_HighPriority(); -int QThread_HighestPriority(); -int QThread_TimeCriticalPriority(); -int QThread_InheritPriority(); -//Public Functions -QtObjectPtr QThread_New_QObject(QtObjectPtr parent); -void QThread_Destroy(QtObjectPtr ptr); -void QThread_Exit_Int(QtObjectPtr ptr, int returnCode); -int QThread_IsFinished(QtObjectPtr ptr); -int QThread_IsInterruptionRequested(QtObjectPtr ptr); -int QThread_IsRunning(QtObjectPtr ptr); -int QThread_Priority(QtObjectPtr ptr); -void QThread_RequestInterruption(QtObjectPtr ptr); -void QThread_SetPriority_Priority(QtObjectPtr ptr, int priority); -//Public Slots -void QThread_ConnectSlotQuit(QtObjectPtr ptr); -void QThread_DisconnectSlotQuit(QtObjectPtr ptr); -void QThread_Quit(QtObjectPtr ptr); -void QThread_ConnectSlotTerminate(QtObjectPtr ptr); -void QThread_DisconnectSlotTerminate(QtObjectPtr ptr); -void QThread_Terminate(QtObjectPtr ptr); -//Signals -void QThread_ConnectSignalFinished(QtObjectPtr ptr); -void QThread_DisconnectSignalFinished(QtObjectPtr ptr); -void QThread_ConnectSignalStarted(QtObjectPtr ptr); -void QThread_DisconnectSignalStarted(QtObjectPtr ptr); -//Static Public Members -QtObjectPtr QThread_CurrentThread(); -int QThread_IdealThreadCount(); - -#ifdef __cplusplus -} -#endif diff --git a/qthread.moc b/qthread.moc deleted file mode 100644 index e4f9a006..00000000 --- a/qthread.moc +++ /dev/null @@ -1,140 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qthread.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qthread.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQThread_t { - QByteArrayData data[4]; - char stringdata[36]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQThread_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQThread_t qt_meta_stringdata_MyQThread = { - { -QT_MOC_LITERAL(0, 0, 9), // "MyQThread" -QT_MOC_LITERAL(1, 10, 9), // "Slot_Quit" -QT_MOC_LITERAL(2, 20, 0), // "" -QT_MOC_LITERAL(3, 21, 14) // "Slot_Terminate" - - }, - "MyQThread\0Slot_Quit\0\0Slot_Terminate" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQThread[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 2, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 2, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 0, 24, 2, 0x06 /* Public */, - 3, 0, 25, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, - QMetaType::Void, - - 0 // eod -}; - -void MyQThread::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQThread *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_Quit(); break; - case 1: _t->Slot_Terminate(); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQThread::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQThread::Slot_Quit)) { - *result = 0; - } - } - { - typedef void (MyQThread::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQThread::Slot_Terminate)) { - *result = 1; - } - } - } - Q_UNUSED(_a); -} - -const QMetaObject MyQThread::staticMetaObject = { - { &QThread::staticMetaObject, qt_meta_stringdata_MyQThread.data, - qt_meta_data_MyQThread, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQThread::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQThread::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQThread.stringdata)) - return static_cast(const_cast< MyQThread*>(this)); - return QThread::qt_metacast(_clname); -} - -int MyQThread::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QThread::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 2) - qt_static_metacall(this, _c, _id, _a); - _id -= 2; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 2) - *reinterpret_cast(_a[0]) = -1; - _id -= 2; - } - return _id; -} - -// SIGNAL 0 -void MyQThread::Slot_Quit() -{ - QMetaObject::activate(this, &staticMetaObject, 0, 0); -} - -// SIGNAL 1 -void MyQThread::Slot_Terminate() -{ - QMetaObject::activate(this, &staticMetaObject, 1, 0); -} -QT_END_MOC_NAMESPACE diff --git a/qthreadpool.cpp b/qthreadpool.cpp deleted file mode 100644 index be3d5222..00000000 --- a/qthreadpool.cpp +++ /dev/null @@ -1,68 +0,0 @@ -#include "qthreadpool.h" -#include -#include "cgoexport.h" - - - -//Public Functions -QtObjectPtr QThreadPool_New_QObject(QtObjectPtr parent) -{ - return new QThreadPool(((QObject*)(parent))); -} - -void QThreadPool_Destroy(QtObjectPtr ptr) -{ - ((QThreadPool*)(ptr))->~QThreadPool(); -} - -int QThreadPool_ActiveThreadCount(QtObjectPtr ptr) -{ - return ((QThreadPool*)(ptr))->activeThreadCount(); -} - -void QThreadPool_Clear(QtObjectPtr ptr) -{ - ((QThreadPool*)(ptr))->clear(); -} - -int QThreadPool_ExpiryTimeout(QtObjectPtr ptr) -{ - return ((QThreadPool*)(ptr))->expiryTimeout(); -} - -int QThreadPool_MaxThreadCount(QtObjectPtr ptr) -{ - return ((QThreadPool*)(ptr))->maxThreadCount(); -} - -void QThreadPool_ReleaseThread(QtObjectPtr ptr) -{ - ((QThreadPool*)(ptr))->releaseThread(); -} - -void QThreadPool_ReserveThread(QtObjectPtr ptr) -{ - ((QThreadPool*)(ptr))->reserveThread(); -} - -void QThreadPool_SetExpiryTimeout_Int(QtObjectPtr ptr, int expiryTimeout) -{ - ((QThreadPool*)(ptr))->setExpiryTimeout(expiryTimeout); -} - -void QThreadPool_SetMaxThreadCount_Int(QtObjectPtr ptr, int maxThreadCount) -{ - ((QThreadPool*)(ptr))->setMaxThreadCount(maxThreadCount); -} - -int QThreadPool_WaitForDone_Int(QtObjectPtr ptr, int msecs) -{ - return ((QThreadPool*)(ptr))->waitForDone(msecs); -} - -//Static Public Members -QtObjectPtr QThreadPool_GlobalInstance() -{ - return QThreadPool::globalInstance(); -} - diff --git a/qthreadpool.go b/qthreadpool.go deleted file mode 100644 index 1f650c34..00000000 --- a/qthreadpool.go +++ /dev/null @@ -1,115 +0,0 @@ -package qt - -//#include "qthreadpool.h" -import "C" - -type qthreadpool struct { - qobject -} - -type QThreadPool interface { - QObject - ActiveThreadCount() int - Clear() - ExpiryTimeout() int - MaxThreadCount() int - ReleaseThread() - ReserveThread() - SetExpiryTimeout(expiryTimeout int) - SetMaxThreadCount(maxThreadCount int) - WaitForDone(msecs int) bool -} - -func (p *qthreadpool) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qthreadpool) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQThreadPool(parent QObject) QThreadPool { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qthreadpool = new(qthreadpool) - qthreadpool.SetPointer(C.QThreadPool_New_QObject(parentPtr)) - qthreadpool.SetObjectName("QThreadPool_" + randomIdentifier()) - return qthreadpool -} - -func (p *qthreadpool) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QThreadPool_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qthreadpool) ActiveThreadCount() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QThreadPool_ActiveThreadCount(p.Pointer())) -} - -func (p *qthreadpool) Clear() { - if p.Pointer() != nil { - C.QThreadPool_Clear(p.Pointer()) - } -} - -func (p *qthreadpool) ExpiryTimeout() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QThreadPool_ExpiryTimeout(p.Pointer())) -} - -func (p *qthreadpool) MaxThreadCount() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QThreadPool_MaxThreadCount(p.Pointer())) -} - -func (p *qthreadpool) ReleaseThread() { - if p.Pointer() != nil { - C.QThreadPool_ReleaseThread(p.Pointer()) - } -} - -func (p *qthreadpool) ReserveThread() { - if p.Pointer() != nil { - C.QThreadPool_ReserveThread(p.Pointer()) - } -} - -func (p *qthreadpool) SetExpiryTimeout(expiryTimeout int) { - if p.Pointer() != nil { - C.QThreadPool_SetExpiryTimeout_Int(p.Pointer(), C.int(expiryTimeout)) - } -} - -func (p *qthreadpool) SetMaxThreadCount(maxThreadCount int) { - if p.Pointer() != nil { - C.QThreadPool_SetMaxThreadCount_Int(p.Pointer(), C.int(maxThreadCount)) - } -} - -func (p *qthreadpool) WaitForDone(msecs int) bool { - if p.Pointer() == nil { - return false - } - return C.QThreadPool_WaitForDone_Int(p.Pointer(), C.int(msecs)) != 0 -} - -func QThreadPool_GlobalInstance() QThreadPool { - var qthreadpool = new(qthreadpool) - qthreadpool.SetPointer(C.QThreadPool_GlobalInstance()) - if qthreadpool.ObjectName() == "" { - qthreadpool.SetObjectName("QThreadPool_" + randomIdentifier()) - } - return qthreadpool -} diff --git a/qthreadpool.h b/qthreadpool.h deleted file mode 100644 index 15dcb9c3..00000000 --- a/qthreadpool.h +++ /dev/null @@ -1,24 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QThreadPool_New_QObject(QtObjectPtr parent); -void QThreadPool_Destroy(QtObjectPtr ptr); -int QThreadPool_ActiveThreadCount(QtObjectPtr ptr); -void QThreadPool_Clear(QtObjectPtr ptr); -int QThreadPool_ExpiryTimeout(QtObjectPtr ptr); -int QThreadPool_MaxThreadCount(QtObjectPtr ptr); -void QThreadPool_ReleaseThread(QtObjectPtr ptr); -void QThreadPool_ReserveThread(QtObjectPtr ptr); -void QThreadPool_SetExpiryTimeout_Int(QtObjectPtr ptr, int expiryTimeout); -void QThreadPool_SetMaxThreadCount_Int(QtObjectPtr ptr, int maxThreadCount); -int QThreadPool_WaitForDone_Int(QtObjectPtr ptr, int msecs); -//Static Public Members -QtObjectPtr QThreadPool_GlobalInstance(); - -#ifdef __cplusplus -} -#endif diff --git a/qthreadpool.moc b/qthreadpool.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/qtoolbar.cpp b/qtoolbar.cpp deleted file mode 100644 index 2db4b60a..00000000 --- a/qtoolbar.cpp +++ /dev/null @@ -1,170 +0,0 @@ -#include "qtoolbar.h" -#include -#include "cgoexport.h" - -//MyQToolBar -class MyQToolBar: public QToolBar { -Q_OBJECT -public: -void Signal_ActionTriggered() { callbackQToolBar(this, QString("actionTriggered").toUtf8().data()); }; -void Signal_AllowedAreasChanged() { callbackQToolBar(this, QString("allowedAreasChanged").toUtf8().data()); }; -void Signal_MovableChanged() { callbackQToolBar(this, QString("movableChanged").toUtf8().data()); }; -void Signal_OrientationChanged() { callbackQToolBar(this, QString("orientationChanged").toUtf8().data()); }; -void Signal_ToolButtonStyleChanged() { callbackQToolBar(this, QString("toolButtonStyleChanged").toUtf8().data()); }; -void Signal_TopLevelChanged() { callbackQToolBar(this, QString("topLevelChanged").toUtf8().data()); }; -void Signal_VisibilityChanged() { callbackQToolBar(this, QString("visibilityChanged").toUtf8().data()); }; - -signals: - -}; -#include "qtoolbar.moc" - -#include - -//Public Functions -QtObjectPtr QToolBar_New_String_QWidget(char* title, QtObjectPtr parent) -{ - return new QToolBar(QString(title), ((QWidget*)(parent))); -} - -QtObjectPtr QToolBar_New_QWidget(QtObjectPtr parent) -{ - return new QToolBar(((QWidget*)(parent))); -} - -void QToolBar_Destroy(QtObjectPtr ptr) -{ - ((QToolBar*)(ptr))->~QToolBar(); -} - -int QToolBar_AllowedAreas(QtObjectPtr ptr) -{ - return ((QToolBar*)(ptr))->allowedAreas(); -} - -void QToolBar_Clear(QtObjectPtr ptr) -{ - ((QToolBar*)(ptr))->clear(); -} - -int QToolBar_IsAreaAllowed_ToolBarArea(QtObjectPtr ptr, int area) -{ - return ((QToolBar*)(ptr))->isAreaAllowed(((Qt::ToolBarArea)(area))); -} - -int QToolBar_IsFloatable(QtObjectPtr ptr) -{ - return ((QToolBar*)(ptr))->isFloatable(); -} - -int QToolBar_IsFloating(QtObjectPtr ptr) -{ - return ((QToolBar*)(ptr))->isFloating(); -} - -int QToolBar_IsMovable(QtObjectPtr ptr) -{ - return ((QToolBar*)(ptr))->isMovable(); -} - -int QToolBar_Orientation(QtObjectPtr ptr) -{ - return ((QToolBar*)(ptr))->orientation(); -} - -void QToolBar_SetAllowedAreas_ToolBarArea(QtObjectPtr ptr, int areas) -{ - ((QToolBar*)(ptr))->setAllowedAreas(((Qt::ToolBarArea)(areas))); -} - -void QToolBar_SetFloatable_Bool(QtObjectPtr ptr, int floatable) -{ - ((QToolBar*)(ptr))->setFloatable(floatable != 0); -} - -void QToolBar_SetMovable_Bool(QtObjectPtr ptr, int movable) -{ - ((QToolBar*)(ptr))->setMovable(movable != 0); -} - -void QToolBar_SetOrientation_Orientation(QtObjectPtr ptr, int orientation) -{ - ((QToolBar*)(ptr))->setOrientation(((Qt::Orientation)(orientation))); -} - -int QToolBar_ToolButtonStyle(QtObjectPtr ptr) -{ - return ((QToolBar*)(ptr))->toolButtonStyle(); -} - -//Signals -void QToolBar_ConnectSignalActionTriggered(QtObjectPtr ptr) -{ - QObject::connect(((QToolBar*)(ptr)), &QToolBar::actionTriggered, ((MyQToolBar*)(ptr)), &MyQToolBar::Signal_ActionTriggered, Qt::QueuedConnection); -} - -void QToolBar_DisconnectSignalActionTriggered(QtObjectPtr ptr) -{ - QObject::disconnect(((QToolBar*)(ptr)), &QToolBar::actionTriggered, ((MyQToolBar*)(ptr)), &MyQToolBar::Signal_ActionTriggered); -} - -void QToolBar_ConnectSignalAllowedAreasChanged(QtObjectPtr ptr) -{ - QObject::connect(((QToolBar*)(ptr)), &QToolBar::allowedAreasChanged, ((MyQToolBar*)(ptr)), &MyQToolBar::Signal_AllowedAreasChanged, Qt::QueuedConnection); -} - -void QToolBar_DisconnectSignalAllowedAreasChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QToolBar*)(ptr)), &QToolBar::allowedAreasChanged, ((MyQToolBar*)(ptr)), &MyQToolBar::Signal_AllowedAreasChanged); -} - -void QToolBar_ConnectSignalMovableChanged(QtObjectPtr ptr) -{ - QObject::connect(((QToolBar*)(ptr)), &QToolBar::movableChanged, ((MyQToolBar*)(ptr)), &MyQToolBar::Signal_MovableChanged, Qt::QueuedConnection); -} - -void QToolBar_DisconnectSignalMovableChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QToolBar*)(ptr)), &QToolBar::movableChanged, ((MyQToolBar*)(ptr)), &MyQToolBar::Signal_MovableChanged); -} - -void QToolBar_ConnectSignalOrientationChanged(QtObjectPtr ptr) -{ - QObject::connect(((QToolBar*)(ptr)), &QToolBar::orientationChanged, ((MyQToolBar*)(ptr)), &MyQToolBar::Signal_OrientationChanged, Qt::QueuedConnection); -} - -void QToolBar_DisconnectSignalOrientationChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QToolBar*)(ptr)), &QToolBar::orientationChanged, ((MyQToolBar*)(ptr)), &MyQToolBar::Signal_OrientationChanged); -} - -void QToolBar_ConnectSignalToolButtonStyleChanged(QtObjectPtr ptr) -{ - QObject::connect(((QToolBar*)(ptr)), &QToolBar::toolButtonStyleChanged, ((MyQToolBar*)(ptr)), &MyQToolBar::Signal_ToolButtonStyleChanged, Qt::QueuedConnection); -} - -void QToolBar_DisconnectSignalToolButtonStyleChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QToolBar*)(ptr)), &QToolBar::toolButtonStyleChanged, ((MyQToolBar*)(ptr)), &MyQToolBar::Signal_ToolButtonStyleChanged); -} - -void QToolBar_ConnectSignalTopLevelChanged(QtObjectPtr ptr) -{ - QObject::connect(((QToolBar*)(ptr)), &QToolBar::topLevelChanged, ((MyQToolBar*)(ptr)), &MyQToolBar::Signal_TopLevelChanged, Qt::QueuedConnection); -} - -void QToolBar_DisconnectSignalTopLevelChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QToolBar*)(ptr)), &QToolBar::topLevelChanged, ((MyQToolBar*)(ptr)), &MyQToolBar::Signal_TopLevelChanged); -} - -void QToolBar_ConnectSignalVisibilityChanged(QtObjectPtr ptr) -{ - QObject::connect(((QToolBar*)(ptr)), &QToolBar::visibilityChanged, ((MyQToolBar*)(ptr)), &MyQToolBar::Signal_VisibilityChanged, Qt::QueuedConnection); -} - -void QToolBar_DisconnectSignalVisibilityChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QToolBar*)(ptr)), &QToolBar::visibilityChanged, ((MyQToolBar*)(ptr)), &MyQToolBar::Signal_VisibilityChanged); -} - diff --git a/qtoolbar.go b/qtoolbar.go deleted file mode 100644 index ee741919..00000000 --- a/qtoolbar.go +++ /dev/null @@ -1,267 +0,0 @@ -package qt - -//#include "qtoolbar.h" -import "C" - -type qtoolbar struct { - qwidget -} - -type QToolBar interface { - QWidget - AllowedAreas() ToolBarArea - Clear() - IsAreaAllowed(area ToolBarArea) bool - IsFloatable() bool - IsFloating() bool - IsMovable() bool - Orientation() Orientation - SetAllowedAreas(areas ToolBarArea) - SetFloatable(floatable bool) - SetMovable(movable bool) - SetOrientation(orientation Orientation) - ToolButtonStyle() ToolButtonStyle - ConnectSignalActionTriggered(f func()) - DisconnectSignalActionTriggered() - SignalActionTriggered() func() - ConnectSignalAllowedAreasChanged(f func()) - DisconnectSignalAllowedAreasChanged() - SignalAllowedAreasChanged() func() - ConnectSignalMovableChanged(f func()) - DisconnectSignalMovableChanged() - SignalMovableChanged() func() - ConnectSignalOrientationChanged(f func()) - DisconnectSignalOrientationChanged() - SignalOrientationChanged() func() - ConnectSignalToolButtonStyleChanged(f func()) - DisconnectSignalToolButtonStyleChanged() - SignalToolButtonStyleChanged() func() - ConnectSignalTopLevelChanged(f func()) - DisconnectSignalTopLevelChanged() - SignalTopLevelChanged() func() - ConnectSignalVisibilityChanged(f func()) - DisconnectSignalVisibilityChanged() - SignalVisibilityChanged() func() -} - -func (p *qtoolbar) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qtoolbar) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQToolBar1(title string, parent QWidget) QToolBar { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qtoolbar = new(qtoolbar) - qtoolbar.SetPointer(C.QToolBar_New_String_QWidget(C.CString(title), parentPtr)) - qtoolbar.SetObjectName("QToolBar_" + randomIdentifier()) - return qtoolbar -} - -func NewQToolBar2(parent QWidget) QToolBar { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qtoolbar = new(qtoolbar) - qtoolbar.SetPointer(C.QToolBar_New_QWidget(parentPtr)) - qtoolbar.SetObjectName("QToolBar_" + randomIdentifier()) - return qtoolbar -} - -func (p *qtoolbar) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QToolBar_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qtoolbar) AllowedAreas() ToolBarArea { - if p.Pointer() == nil { - return 0 - } - return ToolBarArea(C.QToolBar_AllowedAreas(p.Pointer())) -} - -func (p *qtoolbar) Clear() { - if p.Pointer() != nil { - C.QToolBar_Clear(p.Pointer()) - } -} - -func (p *qtoolbar) IsAreaAllowed(area ToolBarArea) bool { - if p.Pointer() == nil { - return false - } - return C.QToolBar_IsAreaAllowed_ToolBarArea(p.Pointer(), C.int(area)) != 0 -} - -func (p *qtoolbar) IsFloatable() bool { - if p.Pointer() == nil { - return false - } - return C.QToolBar_IsFloatable(p.Pointer()) != 0 -} - -func (p *qtoolbar) IsFloating() bool { - if p.Pointer() == nil { - return false - } - return C.QToolBar_IsFloating(p.Pointer()) != 0 -} - -func (p *qtoolbar) IsMovable() bool { - if p.Pointer() == nil { - return false - } - return C.QToolBar_IsMovable(p.Pointer()) != 0 -} - -func (p *qtoolbar) Orientation() Orientation { - if p.Pointer() == nil { - return 0 - } - return Orientation(C.QToolBar_Orientation(p.Pointer())) -} - -func (p *qtoolbar) SetAllowedAreas(areas ToolBarArea) { - if p.Pointer() != nil { - C.QToolBar_SetAllowedAreas_ToolBarArea(p.Pointer(), C.int(areas)) - } -} - -func (p *qtoolbar) SetFloatable(floatable bool) { - if p.Pointer() != nil { - C.QToolBar_SetFloatable_Bool(p.Pointer(), goBoolToCInt(floatable)) - } -} - -func (p *qtoolbar) SetMovable(movable bool) { - if p.Pointer() != nil { - C.QToolBar_SetMovable_Bool(p.Pointer(), goBoolToCInt(movable)) - } -} - -func (p *qtoolbar) SetOrientation(orientation Orientation) { - if p.Pointer() != nil { - C.QToolBar_SetOrientation_Orientation(p.Pointer(), C.int(orientation)) - } -} - -func (p *qtoolbar) ToolButtonStyle() ToolButtonStyle { - if p.Pointer() == nil { - return 0 - } - return ToolButtonStyle(C.QToolBar_ToolButtonStyle(p.Pointer())) -} - -func (p *qtoolbar) ConnectSignalActionTriggered(f func()) { - C.QToolBar_ConnectSignalActionTriggered(p.Pointer()) - connectSignal(p.ObjectName(), "actionTriggered", f) -} - -func (p *qtoolbar) DisconnectSignalActionTriggered() { - C.QToolBar_DisconnectSignalActionTriggered(p.Pointer()) - disconnectSignal(p.ObjectName(), "actionTriggered") -} - -func (p *qtoolbar) SignalActionTriggered() func() { - return getSignal(p.ObjectName(), "actionTriggered") -} - -func (p *qtoolbar) ConnectSignalAllowedAreasChanged(f func()) { - C.QToolBar_ConnectSignalAllowedAreasChanged(p.Pointer()) - connectSignal(p.ObjectName(), "allowedAreasChanged", f) -} - -func (p *qtoolbar) DisconnectSignalAllowedAreasChanged() { - C.QToolBar_DisconnectSignalAllowedAreasChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "allowedAreasChanged") -} - -func (p *qtoolbar) SignalAllowedAreasChanged() func() { - return getSignal(p.ObjectName(), "allowedAreasChanged") -} - -func (p *qtoolbar) ConnectSignalMovableChanged(f func()) { - C.QToolBar_ConnectSignalMovableChanged(p.Pointer()) - connectSignal(p.ObjectName(), "movableChanged", f) -} - -func (p *qtoolbar) DisconnectSignalMovableChanged() { - C.QToolBar_DisconnectSignalMovableChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "movableChanged") -} - -func (p *qtoolbar) SignalMovableChanged() func() { - return getSignal(p.ObjectName(), "movableChanged") -} - -func (p *qtoolbar) ConnectSignalOrientationChanged(f func()) { - C.QToolBar_ConnectSignalOrientationChanged(p.Pointer()) - connectSignal(p.ObjectName(), "orientationChanged", f) -} - -func (p *qtoolbar) DisconnectSignalOrientationChanged() { - C.QToolBar_DisconnectSignalOrientationChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "orientationChanged") -} - -func (p *qtoolbar) SignalOrientationChanged() func() { - return getSignal(p.ObjectName(), "orientationChanged") -} - -func (p *qtoolbar) ConnectSignalToolButtonStyleChanged(f func()) { - C.QToolBar_ConnectSignalToolButtonStyleChanged(p.Pointer()) - connectSignal(p.ObjectName(), "toolButtonStyleChanged", f) -} - -func (p *qtoolbar) DisconnectSignalToolButtonStyleChanged() { - C.QToolBar_DisconnectSignalToolButtonStyleChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "toolButtonStyleChanged") -} - -func (p *qtoolbar) SignalToolButtonStyleChanged() func() { - return getSignal(p.ObjectName(), "toolButtonStyleChanged") -} - -func (p *qtoolbar) ConnectSignalTopLevelChanged(f func()) { - C.QToolBar_ConnectSignalTopLevelChanged(p.Pointer()) - connectSignal(p.ObjectName(), "topLevelChanged", f) -} - -func (p *qtoolbar) DisconnectSignalTopLevelChanged() { - C.QToolBar_DisconnectSignalTopLevelChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "topLevelChanged") -} - -func (p *qtoolbar) SignalTopLevelChanged() func() { - return getSignal(p.ObjectName(), "topLevelChanged") -} - -func (p *qtoolbar) ConnectSignalVisibilityChanged(f func()) { - C.QToolBar_ConnectSignalVisibilityChanged(p.Pointer()) - connectSignal(p.ObjectName(), "visibilityChanged", f) -} - -func (p *qtoolbar) DisconnectSignalVisibilityChanged() { - C.QToolBar_DisconnectSignalVisibilityChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "visibilityChanged") -} - -func (p *qtoolbar) SignalVisibilityChanged() func() { - return getSignal(p.ObjectName(), "visibilityChanged") -} - -//export callbackQToolBar -func callbackQToolBar(ptr C.QtObjectPtr, msg *C.char) { - var qtoolbar = new(qtoolbar) - qtoolbar.SetPointer(ptr) - getSignal(qtoolbar.ObjectName(), C.GoString(msg))() -} diff --git a/qtoolbar.h b/qtoolbar.h deleted file mode 100644 index 78e71b73..00000000 --- a/qtoolbar.h +++ /dev/null @@ -1,41 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QToolBar_New_String_QWidget(char* title, QtObjectPtr parent); -QtObjectPtr QToolBar_New_QWidget(QtObjectPtr parent); -void QToolBar_Destroy(QtObjectPtr ptr); -int QToolBar_AllowedAreas(QtObjectPtr ptr); -void QToolBar_Clear(QtObjectPtr ptr); -int QToolBar_IsAreaAllowed_ToolBarArea(QtObjectPtr ptr, int area); -int QToolBar_IsFloatable(QtObjectPtr ptr); -int QToolBar_IsFloating(QtObjectPtr ptr); -int QToolBar_IsMovable(QtObjectPtr ptr); -int QToolBar_Orientation(QtObjectPtr ptr); -void QToolBar_SetAllowedAreas_ToolBarArea(QtObjectPtr ptr, int areas); -void QToolBar_SetFloatable_Bool(QtObjectPtr ptr, int floatable); -void QToolBar_SetMovable_Bool(QtObjectPtr ptr, int movable); -void QToolBar_SetOrientation_Orientation(QtObjectPtr ptr, int orientation); -int QToolBar_ToolButtonStyle(QtObjectPtr ptr); -//Signals -void QToolBar_ConnectSignalActionTriggered(QtObjectPtr ptr); -void QToolBar_DisconnectSignalActionTriggered(QtObjectPtr ptr); -void QToolBar_ConnectSignalAllowedAreasChanged(QtObjectPtr ptr); -void QToolBar_DisconnectSignalAllowedAreasChanged(QtObjectPtr ptr); -void QToolBar_ConnectSignalMovableChanged(QtObjectPtr ptr); -void QToolBar_DisconnectSignalMovableChanged(QtObjectPtr ptr); -void QToolBar_ConnectSignalOrientationChanged(QtObjectPtr ptr); -void QToolBar_DisconnectSignalOrientationChanged(QtObjectPtr ptr); -void QToolBar_ConnectSignalToolButtonStyleChanged(QtObjectPtr ptr); -void QToolBar_DisconnectSignalToolButtonStyleChanged(QtObjectPtr ptr); -void QToolBar_ConnectSignalTopLevelChanged(QtObjectPtr ptr); -void QToolBar_DisconnectSignalTopLevelChanged(QtObjectPtr ptr); -void QToolBar_ConnectSignalVisibilityChanged(QtObjectPtr ptr); -void QToolBar_DisconnectSignalVisibilityChanged(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qtoolbar.moc b/qtoolbar.moc deleted file mode 100644 index 3b1d961d..00000000 --- a/qtoolbar.moc +++ /dev/null @@ -1,88 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qtoolbar.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qtoolbar.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQToolBar_t { - QByteArrayData data[1]; - char stringdata[11]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQToolBar_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQToolBar_t qt_meta_stringdata_MyQToolBar = { - { -QT_MOC_LITERAL(0, 0, 10) // "MyQToolBar" - - }, - "MyQToolBar" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQToolBar[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 0, 0, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 0, // signalCount - - 0 // eod -}; - -void MyQToolBar::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - Q_UNUSED(_o); - Q_UNUSED(_id); - Q_UNUSED(_c); - Q_UNUSED(_a); -} - -const QMetaObject MyQToolBar::staticMetaObject = { - { &QToolBar::staticMetaObject, qt_meta_stringdata_MyQToolBar.data, - qt_meta_data_MyQToolBar, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQToolBar::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQToolBar::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQToolBar.stringdata)) - return static_cast(const_cast< MyQToolBar*>(this)); - return QToolBar::qt_metacast(_clname); -} - -int MyQToolBar::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QToolBar::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - return _id; -} -QT_END_MOC_NAMESPACE diff --git a/qtoolbox.cpp b/qtoolbox.cpp deleted file mode 100644 index 8b11e20e..00000000 --- a/qtoolbox.cpp +++ /dev/null @@ -1,125 +0,0 @@ -#include "qtoolbox.h" -#include -#include "cgoexport.h" - -//MyQToolBox -class MyQToolBox: public QToolBox { -Q_OBJECT -public: -void Signal_CurrentChanged() { callbackQToolBox(this, QString("currentChanged").toUtf8().data()); }; - -signals: -void Slot_SetCurrentIndex(int index); - -}; -#include "qtoolbox.moc" - - -//Public Functions -QtObjectPtr QToolBox_New_QWidget_WindowType(QtObjectPtr parent, int f) -{ - return new QToolBox(((QWidget*)(parent)), ((Qt::WindowType)(f))); -} - -void QToolBox_Destroy(QtObjectPtr ptr) -{ - ((QToolBox*)(ptr))->~QToolBox(); -} - -int QToolBox_AddItem_QWidget_String(QtObjectPtr ptr, QtObjectPtr w, char* text) -{ - return ((QToolBox*)(ptr))->addItem(((QWidget*)(w)), QString(text)); -} - -int QToolBox_Count(QtObjectPtr ptr) -{ - return ((QToolBox*)(ptr))->count(); -} - -int QToolBox_CurrentIndex(QtObjectPtr ptr) -{ - return ((QToolBox*)(ptr))->currentIndex(); -} - -QtObjectPtr QToolBox_CurrentWidget(QtObjectPtr ptr) -{ - return ((QToolBox*)(ptr))->currentWidget(); -} - -int QToolBox_IndexOf_QWidget(QtObjectPtr ptr, QtObjectPtr widget) -{ - return ((QToolBox*)(ptr))->indexOf(((QWidget*)(widget))); -} - -int QToolBox_InsertItem_Int_QWidget_String(QtObjectPtr ptr, int index, QtObjectPtr widget, char* text) -{ - return ((QToolBox*)(ptr))->insertItem(index, ((QWidget*)(widget)), QString(text)); -} - -int QToolBox_IsItemEnabled_Int(QtObjectPtr ptr, int index) -{ - return ((QToolBox*)(ptr))->isItemEnabled(index); -} - -char* QToolBox_ItemText_Int(QtObjectPtr ptr, int index) -{ - return ((QToolBox*)(ptr))->itemText(index).toUtf8().data(); -} - -char* QToolBox_ItemToolTip_Int(QtObjectPtr ptr, int index) -{ - return ((QToolBox*)(ptr))->itemToolTip(index).toUtf8().data(); -} - -void QToolBox_RemoveItem_Int(QtObjectPtr ptr, int index) -{ - ((QToolBox*)(ptr))->removeItem(index); -} - -void QToolBox_SetItemEnabled_Int_Bool(QtObjectPtr ptr, int index, int enabled) -{ - ((QToolBox*)(ptr))->setItemEnabled(index, enabled != 0); -} - -void QToolBox_SetItemText_Int_String(QtObjectPtr ptr, int index, char* text) -{ - ((QToolBox*)(ptr))->setItemText(index, QString(text)); -} - -void QToolBox_SetItemToolTip_Int_String(QtObjectPtr ptr, int index, char* toolTip) -{ - ((QToolBox*)(ptr))->setItemToolTip(index, QString(toolTip)); -} - -QtObjectPtr QToolBox_Widget_Int(QtObjectPtr ptr, int index) -{ - return ((QToolBox*)(ptr))->widget(index); -} - -//Public Slots -void QToolBox_ConnectSlotSetCurrentIndex(QtObjectPtr ptr) -{ - QObject::connect(((MyQToolBox*)(ptr)), &MyQToolBox::Slot_SetCurrentIndex, ((QToolBox*)(ptr)), &QToolBox::setCurrentIndex, Qt::QueuedConnection); -} - -void QToolBox_DisconnectSlotSetCurrentIndex(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQToolBox*)(ptr)), &MyQToolBox::Slot_SetCurrentIndex, ((QToolBox*)(ptr)), &QToolBox::setCurrentIndex); -} - -void QToolBox_SetCurrentIndex_Int(QtObjectPtr ptr, int index) -{ - ((MyQToolBox*)(ptr))->Slot_SetCurrentIndex(index); -} - -//Signals -void QToolBox_ConnectSignalCurrentChanged(QtObjectPtr ptr) -{ - QObject::connect(((QToolBox*)(ptr)), &QToolBox::currentChanged, ((MyQToolBox*)(ptr)), &MyQToolBox::Signal_CurrentChanged, Qt::QueuedConnection); -} - -void QToolBox_DisconnectSignalCurrentChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QToolBox*)(ptr)), &QToolBox::currentChanged, ((MyQToolBox*)(ptr)), &MyQToolBox::Signal_CurrentChanged); -} - diff --git a/qtoolbox.go b/qtoolbox.go deleted file mode 100644 index 7732b0c1..00000000 --- a/qtoolbox.go +++ /dev/null @@ -1,215 +0,0 @@ -package qt - -//#include "qtoolbox.h" -import "C" - -type qtoolbox struct { - qframe -} - -type QToolBox interface { - QFrame - AddItem(w QWidget, text string) int - Count() int - CurrentIndex() int - CurrentWidget() QWidget - IndexOf(widget QWidget) int - InsertItem(index int, widget QWidget, text string) int - IsItemEnabled(index int) bool - ItemText(index int) string - ItemToolTip(index int) string - RemoveItem(index int) - SetItemEnabled(index int, enabled bool) - SetItemText(index int, text string) - SetItemToolTip(index int, toolTip string) - Widget(index int) QWidget - ConnectSlotSetCurrentIndex() - DisconnectSlotSetCurrentIndex() - SlotSetCurrentIndex(index int) - ConnectSignalCurrentChanged(f func()) - DisconnectSignalCurrentChanged() - SignalCurrentChanged() func() -} - -func (p *qtoolbox) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qtoolbox) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQToolBox(parent QWidget, f WindowType) QToolBox { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qtoolbox = new(qtoolbox) - qtoolbox.SetPointer(C.QToolBox_New_QWidget_WindowType(parentPtr, C.int(f))) - qtoolbox.SetObjectName("QToolBox_" + randomIdentifier()) - return qtoolbox -} - -func (p *qtoolbox) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QToolBox_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qtoolbox) AddItem(w QWidget, text string) int { - if p.Pointer() == nil { - return 0 - } else { - var wPtr C.QtObjectPtr - if w != nil { - wPtr = w.Pointer() - } - return int(C.QToolBox_AddItem_QWidget_String(p.Pointer(), wPtr, C.CString(text))) - } -} - -func (p *qtoolbox) Count() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QToolBox_Count(p.Pointer())) -} - -func (p *qtoolbox) CurrentIndex() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QToolBox_CurrentIndex(p.Pointer())) -} - -func (p *qtoolbox) CurrentWidget() QWidget { - if p.Pointer() == nil { - return nil - } else { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QToolBox_CurrentWidget(p.Pointer())) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qtoolbox) IndexOf(widget QWidget) int { - if p.Pointer() == nil { - return 0 - } else { - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - return int(C.QToolBox_IndexOf_QWidget(p.Pointer(), widgetPtr)) - } -} - -func (p *qtoolbox) InsertItem(index int, widget QWidget, text string) int { - if p.Pointer() == nil { - return 0 - } else { - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - return int(C.QToolBox_InsertItem_Int_QWidget_String(p.Pointer(), C.int(index), widgetPtr, C.CString(text))) - } -} - -func (p *qtoolbox) IsItemEnabled(index int) bool { - if p.Pointer() == nil { - return false - } - return C.QToolBox_IsItemEnabled_Int(p.Pointer(), C.int(index)) != 0 -} - -func (p *qtoolbox) ItemText(index int) string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QToolBox_ItemText_Int(p.Pointer(), C.int(index))) -} - -func (p *qtoolbox) ItemToolTip(index int) string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QToolBox_ItemToolTip_Int(p.Pointer(), C.int(index))) -} - -func (p *qtoolbox) RemoveItem(index int) { - if p.Pointer() != nil { - C.QToolBox_RemoveItem_Int(p.Pointer(), C.int(index)) - } -} - -func (p *qtoolbox) SetItemEnabled(index int, enabled bool) { - if p.Pointer() != nil { - C.QToolBox_SetItemEnabled_Int_Bool(p.Pointer(), C.int(index), goBoolToCInt(enabled)) - } -} - -func (p *qtoolbox) SetItemText(index int, text string) { - if p.Pointer() != nil { - C.QToolBox_SetItemText_Int_String(p.Pointer(), C.int(index), C.CString(text)) - } -} - -func (p *qtoolbox) SetItemToolTip(index int, toolTip string) { - if p.Pointer() != nil { - C.QToolBox_SetItemToolTip_Int_String(p.Pointer(), C.int(index), C.CString(toolTip)) - } -} - -func (p *qtoolbox) Widget(index int) QWidget { - if p.Pointer() == nil { - return nil - } else { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QToolBox_Widget_Int(p.Pointer(), C.int(index))) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qtoolbox) ConnectSlotSetCurrentIndex() { - C.QToolBox_ConnectSlotSetCurrentIndex(p.Pointer()) -} - -func (p *qtoolbox) DisconnectSlotSetCurrentIndex() { - C.QToolBox_DisconnectSlotSetCurrentIndex(p.Pointer()) -} - -func (p *qtoolbox) SlotSetCurrentIndex(index int) { - if p.Pointer() != nil { - C.QToolBox_SetCurrentIndex_Int(p.Pointer(), C.int(index)) - } -} - -func (p *qtoolbox) ConnectSignalCurrentChanged(f func()) { - C.QToolBox_ConnectSignalCurrentChanged(p.Pointer()) - connectSignal(p.ObjectName(), "currentChanged", f) -} - -func (p *qtoolbox) DisconnectSignalCurrentChanged() { - C.QToolBox_DisconnectSignalCurrentChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "currentChanged") -} - -func (p *qtoolbox) SignalCurrentChanged() func() { - return getSignal(p.ObjectName(), "currentChanged") -} - -//export callbackQToolBox -func callbackQToolBox(ptr C.QtObjectPtr, msg *C.char) { - var qtoolbox = new(qtoolbox) - qtoolbox.SetPointer(ptr) - getSignal(qtoolbox.ObjectName(), C.GoString(msg))() -} diff --git a/qtoolbox.h b/qtoolbox.h deleted file mode 100644 index 528279dd..00000000 --- a/qtoolbox.h +++ /dev/null @@ -1,34 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QToolBox_New_QWidget_WindowType(QtObjectPtr parent, int f); -void QToolBox_Destroy(QtObjectPtr ptr); -int QToolBox_AddItem_QWidget_String(QtObjectPtr ptr, QtObjectPtr w, char* text); -int QToolBox_Count(QtObjectPtr ptr); -int QToolBox_CurrentIndex(QtObjectPtr ptr); -QtObjectPtr QToolBox_CurrentWidget(QtObjectPtr ptr); -int QToolBox_IndexOf_QWidget(QtObjectPtr ptr, QtObjectPtr widget); -int QToolBox_InsertItem_Int_QWidget_String(QtObjectPtr ptr, int index, QtObjectPtr widget, char* text); -int QToolBox_IsItemEnabled_Int(QtObjectPtr ptr, int index); -char* QToolBox_ItemText_Int(QtObjectPtr ptr, int index); -char* QToolBox_ItemToolTip_Int(QtObjectPtr ptr, int index); -void QToolBox_RemoveItem_Int(QtObjectPtr ptr, int index); -void QToolBox_SetItemEnabled_Int_Bool(QtObjectPtr ptr, int index, int enabled); -void QToolBox_SetItemText_Int_String(QtObjectPtr ptr, int index, char* text); -void QToolBox_SetItemToolTip_Int_String(QtObjectPtr ptr, int index, char* toolTip); -QtObjectPtr QToolBox_Widget_Int(QtObjectPtr ptr, int index); -//Public Slots -void QToolBox_ConnectSlotSetCurrentIndex(QtObjectPtr ptr); -void QToolBox_DisconnectSlotSetCurrentIndex(QtObjectPtr ptr); -void QToolBox_SetCurrentIndex_Int(QtObjectPtr ptr, int index); -//Signals -void QToolBox_ConnectSignalCurrentChanged(QtObjectPtr ptr); -void QToolBox_DisconnectSignalCurrentChanged(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qtoolbox.moc b/qtoolbox.moc deleted file mode 100644 index befe1132..00000000 --- a/qtoolbox.moc +++ /dev/null @@ -1,125 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qtoolbox.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qtoolbox.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQToolBox_t { - QByteArrayData data[4]; - char stringdata[39]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQToolBox_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQToolBox_t qt_meta_stringdata_MyQToolBox = { - { -QT_MOC_LITERAL(0, 0, 10), // "MyQToolBox" -QT_MOC_LITERAL(1, 11, 20), // "Slot_SetCurrentIndex" -QT_MOC_LITERAL(2, 32, 0), // "" -QT_MOC_LITERAL(3, 33, 5) // "index" - - }, - "MyQToolBox\0Slot_SetCurrentIndex\0\0index" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQToolBox[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 1, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 19, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, QMetaType::Int, 3, - - 0 // eod -}; - -void MyQToolBox::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQToolBox *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_SetCurrentIndex((*reinterpret_cast< int(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQToolBox::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQToolBox::Slot_SetCurrentIndex)) { - *result = 0; - } - } - } -} - -const QMetaObject MyQToolBox::staticMetaObject = { - { &QToolBox::staticMetaObject, qt_meta_stringdata_MyQToolBox.data, - qt_meta_data_MyQToolBox, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQToolBox::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQToolBox::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQToolBox.stringdata)) - return static_cast(const_cast< MyQToolBox*>(this)); - return QToolBox::qt_metacast(_clname); -} - -int MyQToolBox::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QToolBox::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 1) - qt_static_metacall(this, _c, _id, _a); - _id -= 1; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 1) - *reinterpret_cast(_a[0]) = -1; - _id -= 1; - } - return _id; -} - -// SIGNAL 0 -void MyQToolBox::Slot_SetCurrentIndex(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -QT_END_MOC_NAMESPACE diff --git a/qtoolbutton.cpp b/qtoolbutton.cpp deleted file mode 100644 index aa3676eb..00000000 --- a/qtoolbutton.cpp +++ /dev/null @@ -1,91 +0,0 @@ -#include "qtoolbutton.h" -#include -#include "cgoexport.h" - -//MyQToolButton -class MyQToolButton: public QToolButton { -Q_OBJECT -public: -void Signal_Triggered() { callbackQToolButton(this, QString("triggered").toUtf8().data()); }; - -signals: -void Slot_ShowMenu(); - -}; -#include "qtoolbutton.moc" - -#include - -//Public Functions -QtObjectPtr QToolButton_New_QWidget(QtObjectPtr parent) -{ - return new QToolButton(((QWidget*)(parent))); -} - -void QToolButton_Destroy(QtObjectPtr ptr) -{ - ((QToolButton*)(ptr))->~QToolButton(); -} - -int QToolButton_ArrowType(QtObjectPtr ptr) -{ - return ((QToolButton*)(ptr))->arrowType(); -} - -int QToolButton_AutoRaise(QtObjectPtr ptr) -{ - return ((QToolButton*)(ptr))->autoRaise(); -} - -QtObjectPtr QToolButton_Menu(QtObjectPtr ptr) -{ - return ((QToolButton*)(ptr))->menu(); -} - -void QToolButton_SetArrowType_ArrowType(QtObjectPtr ptr, int typ) -{ - ((QToolButton*)(ptr))->setArrowType(((Qt::ArrowType)(typ))); -} - -void QToolButton_SetAutoRaise_Bool(QtObjectPtr ptr, int enable) -{ - ((QToolButton*)(ptr))->setAutoRaise(enable != 0); -} - -void QToolButton_SetMenu_QMenu(QtObjectPtr ptr, QtObjectPtr menu) -{ - ((QToolButton*)(ptr))->setMenu(((QMenu*)(menu))); -} - -int QToolButton_ToolButtonStyle(QtObjectPtr ptr) -{ - return ((QToolButton*)(ptr))->toolButtonStyle(); -} - -//Public Slots -void QToolButton_ConnectSlotShowMenu(QtObjectPtr ptr) -{ - QObject::connect(((MyQToolButton*)(ptr)), &MyQToolButton::Slot_ShowMenu, ((QToolButton*)(ptr)), &QToolButton::showMenu, Qt::QueuedConnection); -} - -void QToolButton_DisconnectSlotShowMenu(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQToolButton*)(ptr)), &MyQToolButton::Slot_ShowMenu, ((QToolButton*)(ptr)), &QToolButton::showMenu); -} - -void QToolButton_ShowMenu(QtObjectPtr ptr) -{ - ((MyQToolButton*)(ptr))->Slot_ShowMenu(); -} - -//Signals -void QToolButton_ConnectSignalTriggered(QtObjectPtr ptr) -{ - QObject::connect(((QToolButton*)(ptr)), &QToolButton::triggered, ((MyQToolButton*)(ptr)), &MyQToolButton::Signal_Triggered, Qt::QueuedConnection); -} - -void QToolButton_DisconnectSignalTriggered(QtObjectPtr ptr) -{ - QObject::disconnect(((QToolButton*)(ptr)), &QToolButton::triggered, ((MyQToolButton*)(ptr)), &MyQToolButton::Signal_Triggered); -} - diff --git a/qtoolbutton.go b/qtoolbutton.go deleted file mode 100644 index 1cb00107..00000000 --- a/qtoolbutton.go +++ /dev/null @@ -1,143 +0,0 @@ -package qt - -//#include "qtoolbutton.h" -import "C" - -type qtoolbutton struct { - qabstractbutton -} - -type QToolButton interface { - QAbstractButton - ArrowType() ArrowType - AutoRaise() bool - Menu() QMenu - SetArrowType(typ ArrowType) - SetAutoRaise(enable bool) - SetMenu(menu QMenu) - ToolButtonStyle() ToolButtonStyle - ConnectSlotShowMenu() - DisconnectSlotShowMenu() - SlotShowMenu() - ConnectSignalTriggered(f func()) - DisconnectSignalTriggered() - SignalTriggered() func() -} - -func (p *qtoolbutton) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qtoolbutton) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQToolButton(parent QWidget) QToolButton { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qtoolbutton = new(qtoolbutton) - qtoolbutton.SetPointer(C.QToolButton_New_QWidget(parentPtr)) - qtoolbutton.SetObjectName("QToolButton_" + randomIdentifier()) - return qtoolbutton -} - -func (p *qtoolbutton) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QToolButton_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qtoolbutton) ArrowType() ArrowType { - if p.Pointer() == nil { - return 0 - } - return ArrowType(C.QToolButton_ArrowType(p.Pointer())) -} - -func (p *qtoolbutton) AutoRaise() bool { - if p.Pointer() == nil { - return false - } - return C.QToolButton_AutoRaise(p.Pointer()) != 0 -} - -func (p *qtoolbutton) Menu() QMenu { - if p.Pointer() == nil { - return nil - } else { - var qmenu = new(qmenu) - qmenu.SetPointer(C.QToolButton_Menu(p.Pointer())) - if qmenu.ObjectName() == "" { - qmenu.SetObjectName("QMenu_" + randomIdentifier()) - } - return qmenu - } -} - -func (p *qtoolbutton) SetArrowType(typ ArrowType) { - if p.Pointer() != nil { - C.QToolButton_SetArrowType_ArrowType(p.Pointer(), C.int(typ)) - } -} - -func (p *qtoolbutton) SetAutoRaise(enable bool) { - if p.Pointer() != nil { - C.QToolButton_SetAutoRaise_Bool(p.Pointer(), goBoolToCInt(enable)) - } -} - -func (p *qtoolbutton) SetMenu(menu QMenu) { - if p.Pointer() != nil { - var menuPtr C.QtObjectPtr - if menu != nil { - menuPtr = menu.Pointer() - } - C.QToolButton_SetMenu_QMenu(p.Pointer(), menuPtr) - } -} - -func (p *qtoolbutton) ToolButtonStyle() ToolButtonStyle { - if p.Pointer() == nil { - return 0 - } - return ToolButtonStyle(C.QToolButton_ToolButtonStyle(p.Pointer())) -} - -func (p *qtoolbutton) ConnectSlotShowMenu() { - C.QToolButton_ConnectSlotShowMenu(p.Pointer()) -} - -func (p *qtoolbutton) DisconnectSlotShowMenu() { - C.QToolButton_DisconnectSlotShowMenu(p.Pointer()) -} - -func (p *qtoolbutton) SlotShowMenu() { - if p.Pointer() != nil { - C.QToolButton_ShowMenu(p.Pointer()) - } -} - -func (p *qtoolbutton) ConnectSignalTriggered(f func()) { - C.QToolButton_ConnectSignalTriggered(p.Pointer()) - connectSignal(p.ObjectName(), "triggered", f) -} - -func (p *qtoolbutton) DisconnectSignalTriggered() { - C.QToolButton_DisconnectSignalTriggered(p.Pointer()) - disconnectSignal(p.ObjectName(), "triggered") -} - -func (p *qtoolbutton) SignalTriggered() func() { - return getSignal(p.ObjectName(), "triggered") -} - -//export callbackQToolButton -func callbackQToolButton(ptr C.QtObjectPtr, msg *C.char) { - var qtoolbutton = new(qtoolbutton) - qtoolbutton.SetPointer(ptr) - getSignal(qtoolbutton.ObjectName(), C.GoString(msg))() -} diff --git a/qtoolbutton.h b/qtoolbutton.h deleted file mode 100644 index a0b36735..00000000 --- a/qtoolbutton.h +++ /dev/null @@ -1,27 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QToolButton_New_QWidget(QtObjectPtr parent); -void QToolButton_Destroy(QtObjectPtr ptr); -int QToolButton_ArrowType(QtObjectPtr ptr); -int QToolButton_AutoRaise(QtObjectPtr ptr); -QtObjectPtr QToolButton_Menu(QtObjectPtr ptr); -void QToolButton_SetArrowType_ArrowType(QtObjectPtr ptr, int typ); -void QToolButton_SetAutoRaise_Bool(QtObjectPtr ptr, int enable); -void QToolButton_SetMenu_QMenu(QtObjectPtr ptr, QtObjectPtr menu); -int QToolButton_ToolButtonStyle(QtObjectPtr ptr); -//Public Slots -void QToolButton_ConnectSlotShowMenu(QtObjectPtr ptr); -void QToolButton_DisconnectSlotShowMenu(QtObjectPtr ptr); -void QToolButton_ShowMenu(QtObjectPtr ptr); -//Signals -void QToolButton_ConnectSignalTriggered(QtObjectPtr ptr); -void QToolButton_DisconnectSignalTriggered(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qtoolbutton.moc b/qtoolbutton.moc deleted file mode 100644 index a319a4b7..00000000 --- a/qtoolbutton.moc +++ /dev/null @@ -1,124 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qtoolbutton.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qtoolbutton.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQToolButton_t { - QByteArrayData data[3]; - char stringdata[29]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQToolButton_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQToolButton_t qt_meta_stringdata_MyQToolButton = { - { -QT_MOC_LITERAL(0, 0, 13), // "MyQToolButton" -QT_MOC_LITERAL(1, 14, 13), // "Slot_ShowMenu" -QT_MOC_LITERAL(2, 28, 0) // "" - - }, - "MyQToolButton\0Slot_ShowMenu\0" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQToolButton[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 1, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 0, 19, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, - - 0 // eod -}; - -void MyQToolButton::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQToolButton *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_ShowMenu(); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQToolButton::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQToolButton::Slot_ShowMenu)) { - *result = 0; - } - } - } - Q_UNUSED(_a); -} - -const QMetaObject MyQToolButton::staticMetaObject = { - { &QToolButton::staticMetaObject, qt_meta_stringdata_MyQToolButton.data, - qt_meta_data_MyQToolButton, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQToolButton::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQToolButton::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQToolButton.stringdata)) - return static_cast(const_cast< MyQToolButton*>(this)); - return QToolButton::qt_metacast(_clname); -} - -int MyQToolButton::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QToolButton::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 1) - qt_static_metacall(this, _c, _id, _a); - _id -= 1; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 1) - *reinterpret_cast(_a[0]) = -1; - _id -= 1; - } - return _id; -} - -// SIGNAL 0 -void MyQToolButton::Slot_ShowMenu() -{ - QMetaObject::activate(this, &staticMetaObject, 0, 0); -} -QT_END_MOC_NAMESPACE diff --git a/qtreeview.cpp b/qtreeview.cpp deleted file mode 100644 index 4b7ea7c1..00000000 --- a/qtreeview.cpp +++ /dev/null @@ -1,278 +0,0 @@ -#include "qtreeview.h" -#include -#include "cgoexport.h" - -//MyQTreeView -class MyQTreeView: public QTreeView { -Q_OBJECT -public: - -signals: -void Slot_CollapseAll(); -void Slot_ExpandAll(); -void Slot_ExpandToDepth(int depth); -void Slot_HideColumn(int column); -void Slot_ResizeColumnToContents(int column); -void Slot_ShowColumn(int column); - -}; -#include "qtreeview.moc" - - -//Public Functions -QtObjectPtr QTreeView_New_QWidget(QtObjectPtr parent) -{ - return new QTreeView(((QWidget*)(parent))); -} - -void QTreeView_Destroy(QtObjectPtr ptr) -{ - ((QTreeView*)(ptr))->~QTreeView(); -} - -int QTreeView_AllColumnsShowFocus(QtObjectPtr ptr) -{ - return ((QTreeView*)(ptr))->allColumnsShowFocus(); -} - -int QTreeView_AutoExpandDelay(QtObjectPtr ptr) -{ - return ((QTreeView*)(ptr))->autoExpandDelay(); -} - -int QTreeView_ColumnAt_Int(QtObjectPtr ptr, int x) -{ - return ((QTreeView*)(ptr))->columnAt(x); -} - -int QTreeView_ColumnViewportPosition_Int(QtObjectPtr ptr, int column) -{ - return ((QTreeView*)(ptr))->columnViewportPosition(column); -} - -int QTreeView_ColumnWidth_Int(QtObjectPtr ptr, int column) -{ - return ((QTreeView*)(ptr))->columnWidth(column); -} - -int QTreeView_ExpandsOnDoubleClick(QtObjectPtr ptr) -{ - return ((QTreeView*)(ptr))->expandsOnDoubleClick(); -} - -int QTreeView_Indentation(QtObjectPtr ptr) -{ - return ((QTreeView*)(ptr))->indentation(); -} - -int QTreeView_IsAnimated(QtObjectPtr ptr) -{ - return ((QTreeView*)(ptr))->isAnimated(); -} - -int QTreeView_IsColumnHidden_Int(QtObjectPtr ptr, int column) -{ - return ((QTreeView*)(ptr))->isColumnHidden(column); -} - -int QTreeView_IsHeaderHidden(QtObjectPtr ptr) -{ - return ((QTreeView*)(ptr))->isHeaderHidden(); -} - -int QTreeView_IsSortingEnabled(QtObjectPtr ptr) -{ - return ((QTreeView*)(ptr))->isSortingEnabled(); -} - -int QTreeView_ItemsExpandable(QtObjectPtr ptr) -{ - return ((QTreeView*)(ptr))->itemsExpandable(); -} - -int QTreeView_RootIsDecorated(QtObjectPtr ptr) -{ - return ((QTreeView*)(ptr))->rootIsDecorated(); -} - -void QTreeView_SetAllColumnsShowFocus_Bool(QtObjectPtr ptr, int enable) -{ - ((QTreeView*)(ptr))->setAllColumnsShowFocus(enable != 0); -} - -void QTreeView_SetAnimated_Bool(QtObjectPtr ptr, int enable) -{ - ((QTreeView*)(ptr))->setAnimated(enable != 0); -} - -void QTreeView_SetAutoExpandDelay_Int(QtObjectPtr ptr, int delay) -{ - ((QTreeView*)(ptr))->setAutoExpandDelay(delay); -} - -void QTreeView_SetColumnHidden_Int_Bool(QtObjectPtr ptr, int column, int hide) -{ - ((QTreeView*)(ptr))->setColumnHidden(column, hide != 0); -} - -void QTreeView_SetColumnWidth_Int_Int(QtObjectPtr ptr, int column, int width) -{ - ((QTreeView*)(ptr))->setColumnWidth(column, width); -} - -void QTreeView_SetExpandsOnDoubleClick_Bool(QtObjectPtr ptr, int enable) -{ - ((QTreeView*)(ptr))->setExpandsOnDoubleClick(enable != 0); -} - -void QTreeView_SetHeaderHidden_Bool(QtObjectPtr ptr, int hide) -{ - ((QTreeView*)(ptr))->setHeaderHidden(hide != 0); -} - -void QTreeView_SetIndentation_Int(QtObjectPtr ptr, int i) -{ - ((QTreeView*)(ptr))->setIndentation(i); -} - -void QTreeView_SetItemsExpandable_Bool(QtObjectPtr ptr, int enable) -{ - ((QTreeView*)(ptr))->setItemsExpandable(enable != 0); -} - -void QTreeView_SetRootIsDecorated_Bool(QtObjectPtr ptr, int show) -{ - ((QTreeView*)(ptr))->setRootIsDecorated(show != 0); -} - -void QTreeView_SetSortingEnabled_Bool(QtObjectPtr ptr, int enable) -{ - ((QTreeView*)(ptr))->setSortingEnabled(enable != 0); -} - -void QTreeView_SetTreePosition_Int(QtObjectPtr ptr, int index) -{ - ((QTreeView*)(ptr))->setTreePosition(index); -} - -void QTreeView_SetUniformRowHeights_Bool(QtObjectPtr ptr, int uniform) -{ - ((QTreeView*)(ptr))->setUniformRowHeights(uniform != 0); -} - -void QTreeView_SetWordWrap_Bool(QtObjectPtr ptr, int on) -{ - ((QTreeView*)(ptr))->setWordWrap(on != 0); -} - -void QTreeView_SortByColumn_Int_SortOrder(QtObjectPtr ptr, int column, int order) -{ - ((QTreeView*)(ptr))->sortByColumn(column, ((Qt::SortOrder)(order))); -} - -int QTreeView_TreePosition(QtObjectPtr ptr) -{ - return ((QTreeView*)(ptr))->treePosition(); -} - -int QTreeView_UniformRowHeights(QtObjectPtr ptr) -{ - return ((QTreeView*)(ptr))->uniformRowHeights(); -} - -int QTreeView_WordWrap(QtObjectPtr ptr) -{ - return ((QTreeView*)(ptr))->wordWrap(); -} - -//Public Slots -void QTreeView_ConnectSlotCollapseAll(QtObjectPtr ptr) -{ - QObject::connect(((MyQTreeView*)(ptr)), &MyQTreeView::Slot_CollapseAll, ((QTreeView*)(ptr)), &QTreeView::collapseAll, Qt::QueuedConnection); -} - -void QTreeView_DisconnectSlotCollapseAll(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTreeView*)(ptr)), &MyQTreeView::Slot_CollapseAll, ((QTreeView*)(ptr)), &QTreeView::collapseAll); -} - -void QTreeView_CollapseAll(QtObjectPtr ptr) -{ - ((MyQTreeView*)(ptr))->Slot_CollapseAll(); -} - -void QTreeView_ConnectSlotExpandAll(QtObjectPtr ptr) -{ - QObject::connect(((MyQTreeView*)(ptr)), &MyQTreeView::Slot_ExpandAll, ((QTreeView*)(ptr)), &QTreeView::expandAll, Qt::QueuedConnection); -} - -void QTreeView_DisconnectSlotExpandAll(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTreeView*)(ptr)), &MyQTreeView::Slot_ExpandAll, ((QTreeView*)(ptr)), &QTreeView::expandAll); -} - -void QTreeView_ExpandAll(QtObjectPtr ptr) -{ - ((MyQTreeView*)(ptr))->Slot_ExpandAll(); -} - -void QTreeView_ConnectSlotExpandToDepth(QtObjectPtr ptr) -{ - QObject::connect(((MyQTreeView*)(ptr)), &MyQTreeView::Slot_ExpandToDepth, ((QTreeView*)(ptr)), &QTreeView::expandToDepth, Qt::QueuedConnection); -} - -void QTreeView_DisconnectSlotExpandToDepth(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTreeView*)(ptr)), &MyQTreeView::Slot_ExpandToDepth, ((QTreeView*)(ptr)), &QTreeView::expandToDepth); -} - -void QTreeView_ExpandToDepth_Int(QtObjectPtr ptr, int depth) -{ - ((MyQTreeView*)(ptr))->Slot_ExpandToDepth(depth); -} - -void QTreeView_ConnectSlotHideColumn(QtObjectPtr ptr) -{ - QObject::connect(((MyQTreeView*)(ptr)), &MyQTreeView::Slot_HideColumn, ((QTreeView*)(ptr)), &QTreeView::hideColumn, Qt::QueuedConnection); -} - -void QTreeView_DisconnectSlotHideColumn(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTreeView*)(ptr)), &MyQTreeView::Slot_HideColumn, ((QTreeView*)(ptr)), &QTreeView::hideColumn); -} - -void QTreeView_HideColumn_Int(QtObjectPtr ptr, int column) -{ - ((MyQTreeView*)(ptr))->Slot_HideColumn(column); -} - -void QTreeView_ConnectSlotResizeColumnToContents(QtObjectPtr ptr) -{ - QObject::connect(((MyQTreeView*)(ptr)), &MyQTreeView::Slot_ResizeColumnToContents, ((QTreeView*)(ptr)), &QTreeView::resizeColumnToContents, Qt::QueuedConnection); -} - -void QTreeView_DisconnectSlotResizeColumnToContents(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTreeView*)(ptr)), &MyQTreeView::Slot_ResizeColumnToContents, ((QTreeView*)(ptr)), &QTreeView::resizeColumnToContents); -} - -void QTreeView_ResizeColumnToContents_Int(QtObjectPtr ptr, int column) -{ - ((MyQTreeView*)(ptr))->Slot_ResizeColumnToContents(column); -} - -void QTreeView_ConnectSlotShowColumn(QtObjectPtr ptr) -{ - QObject::connect(((MyQTreeView*)(ptr)), &MyQTreeView::Slot_ShowColumn, ((QTreeView*)(ptr)), &QTreeView::showColumn, Qt::QueuedConnection); -} - -void QTreeView_DisconnectSlotShowColumn(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTreeView*)(ptr)), &MyQTreeView::Slot_ShowColumn, ((QTreeView*)(ptr)), &QTreeView::showColumn); -} - -void QTreeView_ShowColumn_Int(QtObjectPtr ptr, int column) -{ - ((MyQTreeView*)(ptr))->Slot_ShowColumn(column); -} - diff --git a/qtreeview.go b/qtreeview.go deleted file mode 100644 index 5078e3c3..00000000 --- a/qtreeview.go +++ /dev/null @@ -1,374 +0,0 @@ -package qt - -//#include "qtreeview.h" -import "C" - -type qtreeview struct { - qabstractitemview -} - -type QTreeView interface { - QAbstractItemView - AllColumnsShowFocus() bool - AutoExpandDelay() int - ColumnAt(x int) int - ColumnViewportPosition(column int) int - ColumnWidth(column int) int - ExpandsOnDoubleClick() bool - Indentation() int - IsAnimated() bool - IsColumnHidden(column int) bool - IsHeaderHidden() bool - IsSortingEnabled() bool - ItemsExpandable() bool - RootIsDecorated() bool - SetAllColumnsShowFocus(enable bool) - SetAnimated(enable bool) - SetAutoExpandDelay(delay int) - SetColumnHidden(column int, hide bool) - SetColumnWidth(column int, width int) - SetExpandsOnDoubleClick(enable bool) - SetHeaderHidden(hide bool) - SetIndentation(i int) - SetItemsExpandable(enable bool) - SetRootIsDecorated(show bool) - SetSortingEnabled(enable bool) - SetTreePosition(index int) - SetUniformRowHeights(uniform bool) - SetWordWrap(on bool) - SortByColumn(column int, order SortOrder) - TreePosition() int - UniformRowHeights() bool - WordWrap() bool - ConnectSlotCollapseAll() - DisconnectSlotCollapseAll() - SlotCollapseAll() - ConnectSlotExpandAll() - DisconnectSlotExpandAll() - SlotExpandAll() - ConnectSlotExpandToDepth() - DisconnectSlotExpandToDepth() - SlotExpandToDepth(depth int) - ConnectSlotHideColumn() - DisconnectSlotHideColumn() - SlotHideColumn(column int) - ConnectSlotResizeColumnToContents() - DisconnectSlotResizeColumnToContents() - SlotResizeColumnToContents(column int) - ConnectSlotShowColumn() - DisconnectSlotShowColumn() - SlotShowColumn(column int) -} - -func (p *qtreeview) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qtreeview) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQTreeView(parent QWidget) QTreeView { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qtreeview = new(qtreeview) - qtreeview.SetPointer(C.QTreeView_New_QWidget(parentPtr)) - qtreeview.SetObjectName("QTreeView_" + randomIdentifier()) - return qtreeview -} - -func (p *qtreeview) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QTreeView_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qtreeview) AllColumnsShowFocus() bool { - if p.Pointer() == nil { - return false - } - return C.QTreeView_AllColumnsShowFocus(p.Pointer()) != 0 -} - -func (p *qtreeview) AutoExpandDelay() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTreeView_AutoExpandDelay(p.Pointer())) -} - -func (p *qtreeview) ColumnAt(x int) int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTreeView_ColumnAt_Int(p.Pointer(), C.int(x))) -} - -func (p *qtreeview) ColumnViewportPosition(column int) int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTreeView_ColumnViewportPosition_Int(p.Pointer(), C.int(column))) -} - -func (p *qtreeview) ColumnWidth(column int) int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTreeView_ColumnWidth_Int(p.Pointer(), C.int(column))) -} - -func (p *qtreeview) ExpandsOnDoubleClick() bool { - if p.Pointer() == nil { - return false - } - return C.QTreeView_ExpandsOnDoubleClick(p.Pointer()) != 0 -} - -func (p *qtreeview) Indentation() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTreeView_Indentation(p.Pointer())) -} - -func (p *qtreeview) IsAnimated() bool { - if p.Pointer() == nil { - return false - } - return C.QTreeView_IsAnimated(p.Pointer()) != 0 -} - -func (p *qtreeview) IsColumnHidden(column int) bool { - if p.Pointer() == nil { - return false - } - return C.QTreeView_IsColumnHidden_Int(p.Pointer(), C.int(column)) != 0 -} - -func (p *qtreeview) IsHeaderHidden() bool { - if p.Pointer() == nil { - return false - } - return C.QTreeView_IsHeaderHidden(p.Pointer()) != 0 -} - -func (p *qtreeview) IsSortingEnabled() bool { - if p.Pointer() == nil { - return false - } - return C.QTreeView_IsSortingEnabled(p.Pointer()) != 0 -} - -func (p *qtreeview) ItemsExpandable() bool { - if p.Pointer() == nil { - return false - } - return C.QTreeView_ItemsExpandable(p.Pointer()) != 0 -} - -func (p *qtreeview) RootIsDecorated() bool { - if p.Pointer() == nil { - return false - } - return C.QTreeView_RootIsDecorated(p.Pointer()) != 0 -} - -func (p *qtreeview) SetAllColumnsShowFocus(enable bool) { - if p.Pointer() != nil { - C.QTreeView_SetAllColumnsShowFocus_Bool(p.Pointer(), goBoolToCInt(enable)) - } -} - -func (p *qtreeview) SetAnimated(enable bool) { - if p.Pointer() != nil { - C.QTreeView_SetAnimated_Bool(p.Pointer(), goBoolToCInt(enable)) - } -} - -func (p *qtreeview) SetAutoExpandDelay(delay int) { - if p.Pointer() != nil { - C.QTreeView_SetAutoExpandDelay_Int(p.Pointer(), C.int(delay)) - } -} - -func (p *qtreeview) SetColumnHidden(column int, hide bool) { - if p.Pointer() != nil { - C.QTreeView_SetColumnHidden_Int_Bool(p.Pointer(), C.int(column), goBoolToCInt(hide)) - } -} - -func (p *qtreeview) SetColumnWidth(column int, width int) { - if p.Pointer() != nil { - C.QTreeView_SetColumnWidth_Int_Int(p.Pointer(), C.int(column), C.int(width)) - } -} - -func (p *qtreeview) SetExpandsOnDoubleClick(enable bool) { - if p.Pointer() != nil { - C.QTreeView_SetExpandsOnDoubleClick_Bool(p.Pointer(), goBoolToCInt(enable)) - } -} - -func (p *qtreeview) SetHeaderHidden(hide bool) { - if p.Pointer() != nil { - C.QTreeView_SetHeaderHidden_Bool(p.Pointer(), goBoolToCInt(hide)) - } -} - -func (p *qtreeview) SetIndentation(i int) { - if p.Pointer() != nil { - C.QTreeView_SetIndentation_Int(p.Pointer(), C.int(i)) - } -} - -func (p *qtreeview) SetItemsExpandable(enable bool) { - if p.Pointer() != nil { - C.QTreeView_SetItemsExpandable_Bool(p.Pointer(), goBoolToCInt(enable)) - } -} - -func (p *qtreeview) SetRootIsDecorated(show bool) { - if p.Pointer() != nil { - C.QTreeView_SetRootIsDecorated_Bool(p.Pointer(), goBoolToCInt(show)) - } -} - -func (p *qtreeview) SetSortingEnabled(enable bool) { - if p.Pointer() != nil { - C.QTreeView_SetSortingEnabled_Bool(p.Pointer(), goBoolToCInt(enable)) - } -} - -func (p *qtreeview) SetTreePosition(index int) { - if p.Pointer() != nil { - C.QTreeView_SetTreePosition_Int(p.Pointer(), C.int(index)) - } -} - -func (p *qtreeview) SetUniformRowHeights(uniform bool) { - if p.Pointer() != nil { - C.QTreeView_SetUniformRowHeights_Bool(p.Pointer(), goBoolToCInt(uniform)) - } -} - -func (p *qtreeview) SetWordWrap(on bool) { - if p.Pointer() != nil { - C.QTreeView_SetWordWrap_Bool(p.Pointer(), goBoolToCInt(on)) - } -} - -func (p *qtreeview) SortByColumn(column int, order SortOrder) { - if p.Pointer() != nil { - C.QTreeView_SortByColumn_Int_SortOrder(p.Pointer(), C.int(column), C.int(order)) - } -} - -func (p *qtreeview) TreePosition() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTreeView_TreePosition(p.Pointer())) -} - -func (p *qtreeview) UniformRowHeights() bool { - if p.Pointer() == nil { - return false - } - return C.QTreeView_UniformRowHeights(p.Pointer()) != 0 -} - -func (p *qtreeview) WordWrap() bool { - if p.Pointer() == nil { - return false - } - return C.QTreeView_WordWrap(p.Pointer()) != 0 -} - -func (p *qtreeview) ConnectSlotCollapseAll() { - C.QTreeView_ConnectSlotCollapseAll(p.Pointer()) -} - -func (p *qtreeview) DisconnectSlotCollapseAll() { - C.QTreeView_DisconnectSlotCollapseAll(p.Pointer()) -} - -func (p *qtreeview) SlotCollapseAll() { - if p.Pointer() != nil { - C.QTreeView_CollapseAll(p.Pointer()) - } -} - -func (p *qtreeview) ConnectSlotExpandAll() { - C.QTreeView_ConnectSlotExpandAll(p.Pointer()) -} - -func (p *qtreeview) DisconnectSlotExpandAll() { - C.QTreeView_DisconnectSlotExpandAll(p.Pointer()) -} - -func (p *qtreeview) SlotExpandAll() { - if p.Pointer() != nil { - C.QTreeView_ExpandAll(p.Pointer()) - } -} - -func (p *qtreeview) ConnectSlotExpandToDepth() { - C.QTreeView_ConnectSlotExpandToDepth(p.Pointer()) -} - -func (p *qtreeview) DisconnectSlotExpandToDepth() { - C.QTreeView_DisconnectSlotExpandToDepth(p.Pointer()) -} - -func (p *qtreeview) SlotExpandToDepth(depth int) { - if p.Pointer() != nil { - C.QTreeView_ExpandToDepth_Int(p.Pointer(), C.int(depth)) - } -} - -func (p *qtreeview) ConnectSlotHideColumn() { - C.QTreeView_ConnectSlotHideColumn(p.Pointer()) -} - -func (p *qtreeview) DisconnectSlotHideColumn() { - C.QTreeView_DisconnectSlotHideColumn(p.Pointer()) -} - -func (p *qtreeview) SlotHideColumn(column int) { - if p.Pointer() != nil { - C.QTreeView_HideColumn_Int(p.Pointer(), C.int(column)) - } -} - -func (p *qtreeview) ConnectSlotResizeColumnToContents() { - C.QTreeView_ConnectSlotResizeColumnToContents(p.Pointer()) -} - -func (p *qtreeview) DisconnectSlotResizeColumnToContents() { - C.QTreeView_DisconnectSlotResizeColumnToContents(p.Pointer()) -} - -func (p *qtreeview) SlotResizeColumnToContents(column int) { - if p.Pointer() != nil { - C.QTreeView_ResizeColumnToContents_Int(p.Pointer(), C.int(column)) - } -} - -func (p *qtreeview) ConnectSlotShowColumn() { - C.QTreeView_ConnectSlotShowColumn(p.Pointer()) -} - -func (p *qtreeview) DisconnectSlotShowColumn() { - C.QTreeView_DisconnectSlotShowColumn(p.Pointer()) -} - -func (p *qtreeview) SlotShowColumn(column int) { - if p.Pointer() != nil { - C.QTreeView_ShowColumn_Int(p.Pointer(), C.int(column)) - } -} diff --git a/qtreeview.h b/qtreeview.h deleted file mode 100644 index d2d4f1d6..00000000 --- a/qtreeview.h +++ /dev/null @@ -1,63 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QTreeView_New_QWidget(QtObjectPtr parent); -void QTreeView_Destroy(QtObjectPtr ptr); -int QTreeView_AllColumnsShowFocus(QtObjectPtr ptr); -int QTreeView_AutoExpandDelay(QtObjectPtr ptr); -int QTreeView_ColumnAt_Int(QtObjectPtr ptr, int x); -int QTreeView_ColumnViewportPosition_Int(QtObjectPtr ptr, int column); -int QTreeView_ColumnWidth_Int(QtObjectPtr ptr, int column); -int QTreeView_ExpandsOnDoubleClick(QtObjectPtr ptr); -int QTreeView_Indentation(QtObjectPtr ptr); -int QTreeView_IsAnimated(QtObjectPtr ptr); -int QTreeView_IsColumnHidden_Int(QtObjectPtr ptr, int column); -int QTreeView_IsHeaderHidden(QtObjectPtr ptr); -int QTreeView_IsSortingEnabled(QtObjectPtr ptr); -int QTreeView_ItemsExpandable(QtObjectPtr ptr); -int QTreeView_RootIsDecorated(QtObjectPtr ptr); -void QTreeView_SetAllColumnsShowFocus_Bool(QtObjectPtr ptr, int enable); -void QTreeView_SetAnimated_Bool(QtObjectPtr ptr, int enable); -void QTreeView_SetAutoExpandDelay_Int(QtObjectPtr ptr, int delay); -void QTreeView_SetColumnHidden_Int_Bool(QtObjectPtr ptr, int column, int hide); -void QTreeView_SetColumnWidth_Int_Int(QtObjectPtr ptr, int column, int width); -void QTreeView_SetExpandsOnDoubleClick_Bool(QtObjectPtr ptr, int enable); -void QTreeView_SetHeaderHidden_Bool(QtObjectPtr ptr, int hide); -void QTreeView_SetIndentation_Int(QtObjectPtr ptr, int i); -void QTreeView_SetItemsExpandable_Bool(QtObjectPtr ptr, int enable); -void QTreeView_SetRootIsDecorated_Bool(QtObjectPtr ptr, int show); -void QTreeView_SetSortingEnabled_Bool(QtObjectPtr ptr, int enable); -void QTreeView_SetTreePosition_Int(QtObjectPtr ptr, int index); -void QTreeView_SetUniformRowHeights_Bool(QtObjectPtr ptr, int uniform); -void QTreeView_SetWordWrap_Bool(QtObjectPtr ptr, int on); -void QTreeView_SortByColumn_Int_SortOrder(QtObjectPtr ptr, int column, int order); -int QTreeView_TreePosition(QtObjectPtr ptr); -int QTreeView_UniformRowHeights(QtObjectPtr ptr); -int QTreeView_WordWrap(QtObjectPtr ptr); -//Public Slots -void QTreeView_ConnectSlotCollapseAll(QtObjectPtr ptr); -void QTreeView_DisconnectSlotCollapseAll(QtObjectPtr ptr); -void QTreeView_CollapseAll(QtObjectPtr ptr); -void QTreeView_ConnectSlotExpandAll(QtObjectPtr ptr); -void QTreeView_DisconnectSlotExpandAll(QtObjectPtr ptr); -void QTreeView_ExpandAll(QtObjectPtr ptr); -void QTreeView_ConnectSlotExpandToDepth(QtObjectPtr ptr); -void QTreeView_DisconnectSlotExpandToDepth(QtObjectPtr ptr); -void QTreeView_ExpandToDepth_Int(QtObjectPtr ptr, int depth); -void QTreeView_ConnectSlotHideColumn(QtObjectPtr ptr); -void QTreeView_DisconnectSlotHideColumn(QtObjectPtr ptr); -void QTreeView_HideColumn_Int(QtObjectPtr ptr, int column); -void QTreeView_ConnectSlotResizeColumnToContents(QtObjectPtr ptr); -void QTreeView_DisconnectSlotResizeColumnToContents(QtObjectPtr ptr); -void QTreeView_ResizeColumnToContents_Int(QtObjectPtr ptr, int column); -void QTreeView_ConnectSlotShowColumn(QtObjectPtr ptr); -void QTreeView_DisconnectSlotShowColumn(QtObjectPtr ptr); -void QTreeView_ShowColumn_Int(QtObjectPtr ptr, int column); - -#ifdef __cplusplus -} -#endif diff --git a/qtreeview.moc b/qtreeview.moc deleted file mode 100644 index 5176ed98..00000000 --- a/qtreeview.moc +++ /dev/null @@ -1,212 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qtreeview.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qtreeview.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQTreeView_t { - QByteArrayData data[10]; - char stringdata[137]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQTreeView_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQTreeView_t qt_meta_stringdata_MyQTreeView = { - { -QT_MOC_LITERAL(0, 0, 11), // "MyQTreeView" -QT_MOC_LITERAL(1, 12, 16), // "Slot_CollapseAll" -QT_MOC_LITERAL(2, 29, 0), // "" -QT_MOC_LITERAL(3, 30, 14), // "Slot_ExpandAll" -QT_MOC_LITERAL(4, 45, 18), // "Slot_ExpandToDepth" -QT_MOC_LITERAL(5, 64, 5), // "depth" -QT_MOC_LITERAL(6, 70, 15), // "Slot_HideColumn" -QT_MOC_LITERAL(7, 86, 6), // "column" -QT_MOC_LITERAL(8, 93, 27), // "Slot_ResizeColumnToContents" -QT_MOC_LITERAL(9, 121, 15) // "Slot_ShowColumn" - - }, - "MyQTreeView\0Slot_CollapseAll\0\0" - "Slot_ExpandAll\0Slot_ExpandToDepth\0" - "depth\0Slot_HideColumn\0column\0" - "Slot_ResizeColumnToContents\0Slot_ShowColumn" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQTreeView[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 6, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 6, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 0, 44, 2, 0x06 /* Public */, - 3, 0, 45, 2, 0x06 /* Public */, - 4, 1, 46, 2, 0x06 /* Public */, - 6, 1, 49, 2, 0x06 /* Public */, - 8, 1, 52, 2, 0x06 /* Public */, - 9, 1, 55, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, QMetaType::Int, 5, - QMetaType::Void, QMetaType::Int, 7, - QMetaType::Void, QMetaType::Int, 7, - QMetaType::Void, QMetaType::Int, 7, - - 0 // eod -}; - -void MyQTreeView::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQTreeView *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_CollapseAll(); break; - case 1: _t->Slot_ExpandAll(); break; - case 2: _t->Slot_ExpandToDepth((*reinterpret_cast< int(*)>(_a[1]))); break; - case 3: _t->Slot_HideColumn((*reinterpret_cast< int(*)>(_a[1]))); break; - case 4: _t->Slot_ResizeColumnToContents((*reinterpret_cast< int(*)>(_a[1]))); break; - case 5: _t->Slot_ShowColumn((*reinterpret_cast< int(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQTreeView::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTreeView::Slot_CollapseAll)) { - *result = 0; - } - } - { - typedef void (MyQTreeView::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTreeView::Slot_ExpandAll)) { - *result = 1; - } - } - { - typedef void (MyQTreeView::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTreeView::Slot_ExpandToDepth)) { - *result = 2; - } - } - { - typedef void (MyQTreeView::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTreeView::Slot_HideColumn)) { - *result = 3; - } - } - { - typedef void (MyQTreeView::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTreeView::Slot_ResizeColumnToContents)) { - *result = 4; - } - } - { - typedef void (MyQTreeView::*_t)(int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTreeView::Slot_ShowColumn)) { - *result = 5; - } - } - } -} - -const QMetaObject MyQTreeView::staticMetaObject = { - { &QTreeView::staticMetaObject, qt_meta_stringdata_MyQTreeView.data, - qt_meta_data_MyQTreeView, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQTreeView::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQTreeView::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQTreeView.stringdata)) - return static_cast(const_cast< MyQTreeView*>(this)); - return QTreeView::qt_metacast(_clname); -} - -int MyQTreeView::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QTreeView::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 6) - qt_static_metacall(this, _c, _id, _a); - _id -= 6; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 6) - *reinterpret_cast(_a[0]) = -1; - _id -= 6; - } - return _id; -} - -// SIGNAL 0 -void MyQTreeView::Slot_CollapseAll() -{ - QMetaObject::activate(this, &staticMetaObject, 0, 0); -} - -// SIGNAL 1 -void MyQTreeView::Slot_ExpandAll() -{ - QMetaObject::activate(this, &staticMetaObject, 1, 0); -} - -// SIGNAL 2 -void MyQTreeView::Slot_ExpandToDepth(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 2, _a); -} - -// SIGNAL 3 -void MyQTreeView::Slot_HideColumn(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 3, _a); -} - -// SIGNAL 4 -void MyQTreeView::Slot_ResizeColumnToContents(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 4, _a); -} - -// SIGNAL 5 -void MyQTreeView::Slot_ShowColumn(int _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 5, _a); -} -QT_END_MOC_NAMESPACE diff --git a/qtreewidget.cpp b/qtreewidget.cpp deleted file mode 100644 index d1b83e8b..00000000 --- a/qtreewidget.cpp +++ /dev/null @@ -1,304 +0,0 @@ -#include "qtreewidget.h" -#include -#include "cgoexport.h" - -//MyQTreeWidget -class MyQTreeWidget: public QTreeWidget { -Q_OBJECT -public: -void Signal_CurrentItemChanged() { callbackQTreeWidget(this, QString("currentItemChanged").toUtf8().data()); }; -void Signal_ItemActivated() { callbackQTreeWidget(this, QString("itemActivated").toUtf8().data()); }; -void Signal_ItemChanged() { callbackQTreeWidget(this, QString("itemChanged").toUtf8().data()); }; -void Signal_ItemClicked() { callbackQTreeWidget(this, QString("itemClicked").toUtf8().data()); }; -void Signal_ItemCollapsed() { callbackQTreeWidget(this, QString("itemCollapsed").toUtf8().data()); }; -void Signal_ItemDoubleClicked() { callbackQTreeWidget(this, QString("itemDoubleClicked").toUtf8().data()); }; -void Signal_ItemEntered() { callbackQTreeWidget(this, QString("itemEntered").toUtf8().data()); }; -void Signal_ItemExpanded() { callbackQTreeWidget(this, QString("itemExpanded").toUtf8().data()); }; -void Signal_ItemPressed() { callbackQTreeWidget(this, QString("itemPressed").toUtf8().data()); }; -void Signal_ItemSelectionChanged() { callbackQTreeWidget(this, QString("itemSelectionChanged").toUtf8().data()); }; - -signals: -void Slot_Clear(); - -}; -#include "qtreewidget.moc" - - -//Public Functions -QtObjectPtr QTreeWidget_New_QWidget(QtObjectPtr parent) -{ - return new QTreeWidget(((QWidget*)(parent))); -} - -void QTreeWidget_Destroy(QtObjectPtr ptr) -{ - ((QTreeWidget*)(ptr))->~QTreeWidget(); -} - -void QTreeWidget_AddTopLevelItem_QTreeWidgetItem(QtObjectPtr ptr, QtObjectPtr item) -{ - ((QTreeWidget*)(ptr))->addTopLevelItem(((QTreeWidgetItem*)(item))); -} - -void QTreeWidget_ClosePersistentEditor_QTreeWidgetItem_Int(QtObjectPtr ptr, QtObjectPtr item, int column) -{ - ((QTreeWidget*)(ptr))->closePersistentEditor(((QTreeWidgetItem*)(item)), column); -} - -int QTreeWidget_ColumnCount(QtObjectPtr ptr) -{ - return ((QTreeWidget*)(ptr))->columnCount(); -} - -int QTreeWidget_CurrentColumn(QtObjectPtr ptr) -{ - return ((QTreeWidget*)(ptr))->currentColumn(); -} - -QtObjectPtr QTreeWidget_CurrentItem(QtObjectPtr ptr) -{ - return ((QTreeWidget*)(ptr))->currentItem(); -} - -void QTreeWidget_EditItem_QTreeWidgetItem_Int(QtObjectPtr ptr, QtObjectPtr item, int column) -{ - ((QTreeWidget*)(ptr))->editItem(((QTreeWidgetItem*)(item)), column); -} - -QtObjectPtr QTreeWidget_HeaderItem(QtObjectPtr ptr) -{ - return ((QTreeWidget*)(ptr))->headerItem(); -} - -int QTreeWidget_IndexOfTopLevelItem_QTreeWidgetItem(QtObjectPtr ptr, QtObjectPtr item) -{ - return ((QTreeWidget*)(ptr))->indexOfTopLevelItem(((QTreeWidgetItem*)(item))); -} - -void QTreeWidget_InsertTopLevelItem_Int_QTreeWidgetItem(QtObjectPtr ptr, int index, QtObjectPtr item) -{ - ((QTreeWidget*)(ptr))->insertTopLevelItem(index, ((QTreeWidgetItem*)(item))); -} - -QtObjectPtr QTreeWidget_InvisibleRootItem(QtObjectPtr ptr) -{ - return ((QTreeWidget*)(ptr))->invisibleRootItem(); -} - -int QTreeWidget_IsFirstItemColumnSpanned_QTreeWidgetItem(QtObjectPtr ptr, QtObjectPtr item) -{ - return ((QTreeWidget*)(ptr))->isFirstItemColumnSpanned(((QTreeWidgetItem*)(item))); -} - -QtObjectPtr QTreeWidget_ItemAbove_QTreeWidgetItem(QtObjectPtr ptr, QtObjectPtr item) -{ - return ((QTreeWidget*)(ptr))->itemAbove(((QTreeWidgetItem*)(item))); -} - -QtObjectPtr QTreeWidget_ItemAt_Int_Int(QtObjectPtr ptr, int x, int y) -{ - return ((QTreeWidget*)(ptr))->itemAt(x, y); -} - -QtObjectPtr QTreeWidget_ItemBelow_QTreeWidgetItem(QtObjectPtr ptr, QtObjectPtr item) -{ - return ((QTreeWidget*)(ptr))->itemBelow(((QTreeWidgetItem*)(item))); -} - -QtObjectPtr QTreeWidget_ItemWidget_QTreeWidgetItem_Int(QtObjectPtr ptr, QtObjectPtr item, int column) -{ - return ((QTreeWidget*)(ptr))->itemWidget(((QTreeWidgetItem*)(item)), column); -} - -void QTreeWidget_OpenPersistentEditor_QTreeWidgetItem_Int(QtObjectPtr ptr, QtObjectPtr item, int column) -{ - ((QTreeWidget*)(ptr))->openPersistentEditor(((QTreeWidgetItem*)(item)), column); -} - -void QTreeWidget_RemoveItemWidget_QTreeWidgetItem_Int(QtObjectPtr ptr, QtObjectPtr item, int column) -{ - ((QTreeWidget*)(ptr))->removeItemWidget(((QTreeWidgetItem*)(item)), column); -} - -void QTreeWidget_SetColumnCount_Int(QtObjectPtr ptr, int columns) -{ - ((QTreeWidget*)(ptr))->setColumnCount(columns); -} - -void QTreeWidget_SetCurrentItem_QTreeWidgetItem(QtObjectPtr ptr, QtObjectPtr item) -{ - ((QTreeWidget*)(ptr))->setCurrentItem(((QTreeWidgetItem*)(item))); -} - -void QTreeWidget_SetCurrentItem_QTreeWidgetItem_Int(QtObjectPtr ptr, QtObjectPtr item, int column) -{ - ((QTreeWidget*)(ptr))->setCurrentItem(((QTreeWidgetItem*)(item)), column); -} - -void QTreeWidget_SetFirstItemColumnSpanned_QTreeWidgetItem_Bool(QtObjectPtr ptr, QtObjectPtr item, int span) -{ - ((QTreeWidget*)(ptr))->setFirstItemColumnSpanned(((QTreeWidgetItem*)(item)), span != 0); -} - -void QTreeWidget_SetHeaderItem_QTreeWidgetItem(QtObjectPtr ptr, QtObjectPtr item) -{ - ((QTreeWidget*)(ptr))->setHeaderItem(((QTreeWidgetItem*)(item))); -} - -void QTreeWidget_SetHeaderLabel_String(QtObjectPtr ptr, char* label) -{ - ((QTreeWidget*)(ptr))->setHeaderLabel(QString(label)); -} - -void QTreeWidget_SetHeaderLabels_QStringList(QtObjectPtr ptr, char* labels) -{ - ((QTreeWidget*)(ptr))->setHeaderLabels(QString(labels).split("|", QString::SkipEmptyParts)); -} - -void QTreeWidget_SetItemWidget_QTreeWidgetItem_Int_QWidget(QtObjectPtr ptr, QtObjectPtr item, int column, QtObjectPtr widget) -{ - ((QTreeWidget*)(ptr))->setItemWidget(((QTreeWidgetItem*)(item)), column, ((QWidget*)(widget))); -} - -int QTreeWidget_SortColumn(QtObjectPtr ptr) -{ - return ((QTreeWidget*)(ptr))->sortColumn(); -} - -void QTreeWidget_SortItems_Int_SortOrder(QtObjectPtr ptr, int column, int order) -{ - ((QTreeWidget*)(ptr))->sortItems(column, ((Qt::SortOrder)(order))); -} - -QtObjectPtr QTreeWidget_TakeTopLevelItem_Int(QtObjectPtr ptr, int index) -{ - return ((QTreeWidget*)(ptr))->takeTopLevelItem(index); -} - -QtObjectPtr QTreeWidget_TopLevelItem_Int(QtObjectPtr ptr, int index) -{ - return ((QTreeWidget*)(ptr))->topLevelItem(index); -} - -int QTreeWidget_TopLevelItemCount(QtObjectPtr ptr) -{ - return ((QTreeWidget*)(ptr))->topLevelItemCount(); -} - -//Public Slots -void QTreeWidget_ConnectSlotClear(QtObjectPtr ptr) -{ - QObject::connect(((MyQTreeWidget*)(ptr)), &MyQTreeWidget::Slot_Clear, ((QTreeWidget*)(ptr)), &QTreeWidget::clear, Qt::QueuedConnection); -} - -void QTreeWidget_DisconnectSlotClear(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQTreeWidget*)(ptr)), &MyQTreeWidget::Slot_Clear, ((QTreeWidget*)(ptr)), &QTreeWidget::clear); -} - -void QTreeWidget_Clear(QtObjectPtr ptr) -{ - ((MyQTreeWidget*)(ptr))->Slot_Clear(); -} - -//Signals -void QTreeWidget_ConnectSignalCurrentItemChanged(QtObjectPtr ptr) -{ - QObject::connect(((QTreeWidget*)(ptr)), &QTreeWidget::currentItemChanged, ((MyQTreeWidget*)(ptr)), &MyQTreeWidget::Signal_CurrentItemChanged, Qt::QueuedConnection); -} - -void QTreeWidget_DisconnectSignalCurrentItemChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QTreeWidget*)(ptr)), &QTreeWidget::currentItemChanged, ((MyQTreeWidget*)(ptr)), &MyQTreeWidget::Signal_CurrentItemChanged); -} - -void QTreeWidget_ConnectSignalItemActivated(QtObjectPtr ptr) -{ - QObject::connect(((QTreeWidget*)(ptr)), &QTreeWidget::itemActivated, ((MyQTreeWidget*)(ptr)), &MyQTreeWidget::Signal_ItemActivated, Qt::QueuedConnection); -} - -void QTreeWidget_DisconnectSignalItemActivated(QtObjectPtr ptr) -{ - QObject::disconnect(((QTreeWidget*)(ptr)), &QTreeWidget::itemActivated, ((MyQTreeWidget*)(ptr)), &MyQTreeWidget::Signal_ItemActivated); -} - -void QTreeWidget_ConnectSignalItemChanged(QtObjectPtr ptr) -{ - QObject::connect(((QTreeWidget*)(ptr)), &QTreeWidget::itemChanged, ((MyQTreeWidget*)(ptr)), &MyQTreeWidget::Signal_ItemChanged, Qt::QueuedConnection); -} - -void QTreeWidget_DisconnectSignalItemChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QTreeWidget*)(ptr)), &QTreeWidget::itemChanged, ((MyQTreeWidget*)(ptr)), &MyQTreeWidget::Signal_ItemChanged); -} - -void QTreeWidget_ConnectSignalItemClicked(QtObjectPtr ptr) -{ - QObject::connect(((QTreeWidget*)(ptr)), &QTreeWidget::itemClicked, ((MyQTreeWidget*)(ptr)), &MyQTreeWidget::Signal_ItemClicked, Qt::QueuedConnection); -} - -void QTreeWidget_DisconnectSignalItemClicked(QtObjectPtr ptr) -{ - QObject::disconnect(((QTreeWidget*)(ptr)), &QTreeWidget::itemClicked, ((MyQTreeWidget*)(ptr)), &MyQTreeWidget::Signal_ItemClicked); -} - -void QTreeWidget_ConnectSignalItemCollapsed(QtObjectPtr ptr) -{ - QObject::connect(((QTreeWidget*)(ptr)), &QTreeWidget::itemCollapsed, ((MyQTreeWidget*)(ptr)), &MyQTreeWidget::Signal_ItemCollapsed, Qt::QueuedConnection); -} - -void QTreeWidget_DisconnectSignalItemCollapsed(QtObjectPtr ptr) -{ - QObject::disconnect(((QTreeWidget*)(ptr)), &QTreeWidget::itemCollapsed, ((MyQTreeWidget*)(ptr)), &MyQTreeWidget::Signal_ItemCollapsed); -} - -void QTreeWidget_ConnectSignalItemDoubleClicked(QtObjectPtr ptr) -{ - QObject::connect(((QTreeWidget*)(ptr)), &QTreeWidget::itemDoubleClicked, ((MyQTreeWidget*)(ptr)), &MyQTreeWidget::Signal_ItemDoubleClicked, Qt::QueuedConnection); -} - -void QTreeWidget_DisconnectSignalItemDoubleClicked(QtObjectPtr ptr) -{ - QObject::disconnect(((QTreeWidget*)(ptr)), &QTreeWidget::itemDoubleClicked, ((MyQTreeWidget*)(ptr)), &MyQTreeWidget::Signal_ItemDoubleClicked); -} - -void QTreeWidget_ConnectSignalItemEntered(QtObjectPtr ptr) -{ - QObject::connect(((QTreeWidget*)(ptr)), &QTreeWidget::itemEntered, ((MyQTreeWidget*)(ptr)), &MyQTreeWidget::Signal_ItemEntered, Qt::QueuedConnection); -} - -void QTreeWidget_DisconnectSignalItemEntered(QtObjectPtr ptr) -{ - QObject::disconnect(((QTreeWidget*)(ptr)), &QTreeWidget::itemEntered, ((MyQTreeWidget*)(ptr)), &MyQTreeWidget::Signal_ItemEntered); -} - -void QTreeWidget_ConnectSignalItemExpanded(QtObjectPtr ptr) -{ - QObject::connect(((QTreeWidget*)(ptr)), &QTreeWidget::itemExpanded, ((MyQTreeWidget*)(ptr)), &MyQTreeWidget::Signal_ItemExpanded, Qt::QueuedConnection); -} - -void QTreeWidget_DisconnectSignalItemExpanded(QtObjectPtr ptr) -{ - QObject::disconnect(((QTreeWidget*)(ptr)), &QTreeWidget::itemExpanded, ((MyQTreeWidget*)(ptr)), &MyQTreeWidget::Signal_ItemExpanded); -} - -void QTreeWidget_ConnectSignalItemPressed(QtObjectPtr ptr) -{ - QObject::connect(((QTreeWidget*)(ptr)), &QTreeWidget::itemPressed, ((MyQTreeWidget*)(ptr)), &MyQTreeWidget::Signal_ItemPressed, Qt::QueuedConnection); -} - -void QTreeWidget_DisconnectSignalItemPressed(QtObjectPtr ptr) -{ - QObject::disconnect(((QTreeWidget*)(ptr)), &QTreeWidget::itemPressed, ((MyQTreeWidget*)(ptr)), &MyQTreeWidget::Signal_ItemPressed); -} - -void QTreeWidget_ConnectSignalItemSelectionChanged(QtObjectPtr ptr) -{ - QObject::connect(((QTreeWidget*)(ptr)), &QTreeWidget::itemSelectionChanged, ((MyQTreeWidget*)(ptr)), &MyQTreeWidget::Signal_ItemSelectionChanged, Qt::QueuedConnection); -} - -void QTreeWidget_DisconnectSignalItemSelectionChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QTreeWidget*)(ptr)), &QTreeWidget::itemSelectionChanged, ((MyQTreeWidget*)(ptr)), &MyQTreeWidget::Signal_ItemSelectionChanged); -} - diff --git a/qtreewidget.go b/qtreewidget.go deleted file mode 100644 index 90d242c1..00000000 --- a/qtreewidget.go +++ /dev/null @@ -1,560 +0,0 @@ -package qt - -//#include "qtreewidget.h" -import "C" - -import "strings" - -type qtreewidget struct { - qtreeview -} - -type QTreeWidget interface { - QTreeView - AddTopLevelItem(item QTreeWidgetItem) - ClosePersistentEditor(item QTreeWidgetItem, column int) - ColumnCount() int - CurrentColumn() int - CurrentItem() QTreeWidgetItem - EditItem(item QTreeWidgetItem, column int) - HeaderItem() QTreeWidgetItem - IndexOfTopLevelItem(item QTreeWidgetItem) int - InsertTopLevelItem(index int, item QTreeWidgetItem) - InvisibleRootItem() QTreeWidgetItem - IsFirstItemColumnSpanned(item QTreeWidgetItem) bool - ItemAbove(item QTreeWidgetItem) QTreeWidgetItem - ItemAt(x int, y int) QTreeWidgetItem - ItemBelow(item QTreeWidgetItem) QTreeWidgetItem - ItemWidget(item QTreeWidgetItem, column int) QWidget - OpenPersistentEditor(item QTreeWidgetItem, column int) - RemoveItemWidget(item QTreeWidgetItem, column int) - SetColumnCount(columns int) - SetCurrentItem1(item QTreeWidgetItem) - SetCurrentItem2(item QTreeWidgetItem, column int) - SetFirstItemColumnSpanned(item QTreeWidgetItem, span bool) - SetHeaderItem(item QTreeWidgetItem) - SetHeaderLabel(label string) - SetHeaderLabels(labels []string) - SetItemWidget(item QTreeWidgetItem, column int, widget QWidget) - SortColumn() int - SortItems(column int, order SortOrder) - TakeTopLevelItem(index int) QTreeWidgetItem - TopLevelItem(index int) QTreeWidgetItem - TopLevelItemCount() int - ConnectSlotClear() - DisconnectSlotClear() - SlotClear() - ConnectSignalCurrentItemChanged(f func()) - DisconnectSignalCurrentItemChanged() - SignalCurrentItemChanged() func() - ConnectSignalItemActivated(f func()) - DisconnectSignalItemActivated() - SignalItemActivated() func() - ConnectSignalItemChanged(f func()) - DisconnectSignalItemChanged() - SignalItemChanged() func() - ConnectSignalItemClicked(f func()) - DisconnectSignalItemClicked() - SignalItemClicked() func() - ConnectSignalItemCollapsed(f func()) - DisconnectSignalItemCollapsed() - SignalItemCollapsed() func() - ConnectSignalItemDoubleClicked(f func()) - DisconnectSignalItemDoubleClicked() - SignalItemDoubleClicked() func() - ConnectSignalItemEntered(f func()) - DisconnectSignalItemEntered() - SignalItemEntered() func() - ConnectSignalItemExpanded(f func()) - DisconnectSignalItemExpanded() - SignalItemExpanded() func() - ConnectSignalItemPressed(f func()) - DisconnectSignalItemPressed() - SignalItemPressed() func() - ConnectSignalItemSelectionChanged(f func()) - DisconnectSignalItemSelectionChanged() - SignalItemSelectionChanged() func() -} - -func (p *qtreewidget) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qtreewidget) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQTreeWidget(parent QWidget) QTreeWidget { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qtreewidget = new(qtreewidget) - qtreewidget.SetPointer(C.QTreeWidget_New_QWidget(parentPtr)) - qtreewidget.SetObjectName("QTreeWidget_" + randomIdentifier()) - return qtreewidget -} - -func (p *qtreewidget) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QTreeWidget_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qtreewidget) AddTopLevelItem(item QTreeWidgetItem) { - if p.Pointer() != nil { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - C.QTreeWidget_AddTopLevelItem_QTreeWidgetItem(p.Pointer(), itemPtr) - } -} - -func (p *qtreewidget) ClosePersistentEditor(item QTreeWidgetItem, column int) { - if p.Pointer() != nil { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - C.QTreeWidget_ClosePersistentEditor_QTreeWidgetItem_Int(p.Pointer(), itemPtr, C.int(column)) - } -} - -func (p *qtreewidget) ColumnCount() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTreeWidget_ColumnCount(p.Pointer())) -} - -func (p *qtreewidget) CurrentColumn() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTreeWidget_CurrentColumn(p.Pointer())) -} - -func (p *qtreewidget) CurrentItem() QTreeWidgetItem { - if p.Pointer() == nil { - return nil - } else { - var qtreewidgetitem = new(qtreewidgetitem) - qtreewidgetitem.SetPointer(C.QTreeWidget_CurrentItem(p.Pointer())) - return qtreewidgetitem - } -} - -func (p *qtreewidget) EditItem(item QTreeWidgetItem, column int) { - if p.Pointer() != nil { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - C.QTreeWidget_EditItem_QTreeWidgetItem_Int(p.Pointer(), itemPtr, C.int(column)) - } -} - -func (p *qtreewidget) HeaderItem() QTreeWidgetItem { - if p.Pointer() == nil { - return nil - } else { - var qtreewidgetitem = new(qtreewidgetitem) - qtreewidgetitem.SetPointer(C.QTreeWidget_HeaderItem(p.Pointer())) - return qtreewidgetitem - } -} - -func (p *qtreewidget) IndexOfTopLevelItem(item QTreeWidgetItem) int { - if p.Pointer() == nil { - return 0 - } else { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - return int(C.QTreeWidget_IndexOfTopLevelItem_QTreeWidgetItem(p.Pointer(), itemPtr)) - } -} - -func (p *qtreewidget) InsertTopLevelItem(index int, item QTreeWidgetItem) { - if p.Pointer() != nil { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - C.QTreeWidget_InsertTopLevelItem_Int_QTreeWidgetItem(p.Pointer(), C.int(index), itemPtr) - } -} - -func (p *qtreewidget) InvisibleRootItem() QTreeWidgetItem { - if p.Pointer() == nil { - return nil - } else { - var qtreewidgetitem = new(qtreewidgetitem) - qtreewidgetitem.SetPointer(C.QTreeWidget_InvisibleRootItem(p.Pointer())) - return qtreewidgetitem - } -} - -func (p *qtreewidget) IsFirstItemColumnSpanned(item QTreeWidgetItem) bool { - if p.Pointer() == nil { - return false - } else { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - return C.QTreeWidget_IsFirstItemColumnSpanned_QTreeWidgetItem(p.Pointer(), itemPtr) != 0 - } -} - -func (p *qtreewidget) ItemAbove(item QTreeWidgetItem) QTreeWidgetItem { - if p.Pointer() == nil { - return nil - } else { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - var qtreewidgetitem = new(qtreewidgetitem) - qtreewidgetitem.SetPointer(C.QTreeWidget_ItemAbove_QTreeWidgetItem(p.Pointer(), itemPtr)) - return qtreewidgetitem - } -} - -func (p *qtreewidget) ItemAt(x int, y int) QTreeWidgetItem { - if p.Pointer() == nil { - return nil - } else { - var qtreewidgetitem = new(qtreewidgetitem) - qtreewidgetitem.SetPointer(C.QTreeWidget_ItemAt_Int_Int(p.Pointer(), C.int(x), C.int(y))) - return qtreewidgetitem - } -} - -func (p *qtreewidget) ItemBelow(item QTreeWidgetItem) QTreeWidgetItem { - if p.Pointer() == nil { - return nil - } else { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - var qtreewidgetitem = new(qtreewidgetitem) - qtreewidgetitem.SetPointer(C.QTreeWidget_ItemBelow_QTreeWidgetItem(p.Pointer(), itemPtr)) - return qtreewidgetitem - } -} - -func (p *qtreewidget) ItemWidget(item QTreeWidgetItem, column int) QWidget { - if p.Pointer() == nil { - return nil - } else { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - var qwidget = new(qwidget) - qwidget.SetPointer(C.QTreeWidget_ItemWidget_QTreeWidgetItem_Int(p.Pointer(), itemPtr, C.int(column))) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qtreewidget) OpenPersistentEditor(item QTreeWidgetItem, column int) { - if p.Pointer() != nil { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - C.QTreeWidget_OpenPersistentEditor_QTreeWidgetItem_Int(p.Pointer(), itemPtr, C.int(column)) - } -} - -func (p *qtreewidget) RemoveItemWidget(item QTreeWidgetItem, column int) { - if p.Pointer() != nil { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - C.QTreeWidget_RemoveItemWidget_QTreeWidgetItem_Int(p.Pointer(), itemPtr, C.int(column)) - } -} - -func (p *qtreewidget) SetColumnCount(columns int) { - if p.Pointer() != nil { - C.QTreeWidget_SetColumnCount_Int(p.Pointer(), C.int(columns)) - } -} - -func (p *qtreewidget) SetCurrentItem1(item QTreeWidgetItem) { - if p.Pointer() != nil { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - C.QTreeWidget_SetCurrentItem_QTreeWidgetItem(p.Pointer(), itemPtr) - } -} - -func (p *qtreewidget) SetCurrentItem2(item QTreeWidgetItem, column int) { - if p.Pointer() != nil { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - C.QTreeWidget_SetCurrentItem_QTreeWidgetItem_Int(p.Pointer(), itemPtr, C.int(column)) - } -} - -func (p *qtreewidget) SetFirstItemColumnSpanned(item QTreeWidgetItem, span bool) { - if p.Pointer() != nil { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - C.QTreeWidget_SetFirstItemColumnSpanned_QTreeWidgetItem_Bool(p.Pointer(), itemPtr, goBoolToCInt(span)) - } -} - -func (p *qtreewidget) SetHeaderItem(item QTreeWidgetItem) { - if p.Pointer() != nil { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - C.QTreeWidget_SetHeaderItem_QTreeWidgetItem(p.Pointer(), itemPtr) - } -} - -func (p *qtreewidget) SetHeaderLabel(label string) { - if p.Pointer() != nil { - C.QTreeWidget_SetHeaderLabel_String(p.Pointer(), C.CString(label)) - } -} - -func (p *qtreewidget) SetHeaderLabels(labels []string) { - if p.Pointer() != nil { - C.QTreeWidget_SetHeaderLabels_QStringList(p.Pointer(), C.CString(strings.Join(labels, "|"))) - } -} - -func (p *qtreewidget) SetItemWidget(item QTreeWidgetItem, column int, widget QWidget) { - if p.Pointer() != nil { - var itemPtr C.QtObjectPtr - if item != nil { - itemPtr = item.Pointer() - } - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - C.QTreeWidget_SetItemWidget_QTreeWidgetItem_Int_QWidget(p.Pointer(), itemPtr, C.int(column), widgetPtr) - } -} - -func (p *qtreewidget) SortColumn() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTreeWidget_SortColumn(p.Pointer())) -} - -func (p *qtreewidget) SortItems(column int, order SortOrder) { - if p.Pointer() != nil { - C.QTreeWidget_SortItems_Int_SortOrder(p.Pointer(), C.int(column), C.int(order)) - } -} - -func (p *qtreewidget) TakeTopLevelItem(index int) QTreeWidgetItem { - if p.Pointer() == nil { - return nil - } else { - var qtreewidgetitem = new(qtreewidgetitem) - qtreewidgetitem.SetPointer(C.QTreeWidget_TakeTopLevelItem_Int(p.Pointer(), C.int(index))) - return qtreewidgetitem - } -} - -func (p *qtreewidget) TopLevelItem(index int) QTreeWidgetItem { - if p.Pointer() == nil { - return nil - } else { - var qtreewidgetitem = new(qtreewidgetitem) - qtreewidgetitem.SetPointer(C.QTreeWidget_TopLevelItem_Int(p.Pointer(), C.int(index))) - return qtreewidgetitem - } -} - -func (p *qtreewidget) TopLevelItemCount() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTreeWidget_TopLevelItemCount(p.Pointer())) -} - -func (p *qtreewidget) ConnectSlotClear() { - C.QTreeWidget_ConnectSlotClear(p.Pointer()) -} - -func (p *qtreewidget) DisconnectSlotClear() { - C.QTreeWidget_DisconnectSlotClear(p.Pointer()) -} - -func (p *qtreewidget) SlotClear() { - if p.Pointer() != nil { - C.QTreeWidget_Clear(p.Pointer()) - } -} - -func (p *qtreewidget) ConnectSignalCurrentItemChanged(f func()) { - C.QTreeWidget_ConnectSignalCurrentItemChanged(p.Pointer()) - connectSignal(p.ObjectName(), "currentItemChanged", f) -} - -func (p *qtreewidget) DisconnectSignalCurrentItemChanged() { - C.QTreeWidget_DisconnectSignalCurrentItemChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "currentItemChanged") -} - -func (p *qtreewidget) SignalCurrentItemChanged() func() { - return getSignal(p.ObjectName(), "currentItemChanged") -} - -func (p *qtreewidget) ConnectSignalItemActivated(f func()) { - C.QTreeWidget_ConnectSignalItemActivated(p.Pointer()) - connectSignal(p.ObjectName(), "itemActivated", f) -} - -func (p *qtreewidget) DisconnectSignalItemActivated() { - C.QTreeWidget_DisconnectSignalItemActivated(p.Pointer()) - disconnectSignal(p.ObjectName(), "itemActivated") -} - -func (p *qtreewidget) SignalItemActivated() func() { - return getSignal(p.ObjectName(), "itemActivated") -} - -func (p *qtreewidget) ConnectSignalItemChanged(f func()) { - C.QTreeWidget_ConnectSignalItemChanged(p.Pointer()) - connectSignal(p.ObjectName(), "itemChanged", f) -} - -func (p *qtreewidget) DisconnectSignalItemChanged() { - C.QTreeWidget_DisconnectSignalItemChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "itemChanged") -} - -func (p *qtreewidget) SignalItemChanged() func() { - return getSignal(p.ObjectName(), "itemChanged") -} - -func (p *qtreewidget) ConnectSignalItemClicked(f func()) { - C.QTreeWidget_ConnectSignalItemClicked(p.Pointer()) - connectSignal(p.ObjectName(), "itemClicked", f) -} - -func (p *qtreewidget) DisconnectSignalItemClicked() { - C.QTreeWidget_DisconnectSignalItemClicked(p.Pointer()) - disconnectSignal(p.ObjectName(), "itemClicked") -} - -func (p *qtreewidget) SignalItemClicked() func() { - return getSignal(p.ObjectName(), "itemClicked") -} - -func (p *qtreewidget) ConnectSignalItemCollapsed(f func()) { - C.QTreeWidget_ConnectSignalItemCollapsed(p.Pointer()) - connectSignal(p.ObjectName(), "itemCollapsed", f) -} - -func (p *qtreewidget) DisconnectSignalItemCollapsed() { - C.QTreeWidget_DisconnectSignalItemCollapsed(p.Pointer()) - disconnectSignal(p.ObjectName(), "itemCollapsed") -} - -func (p *qtreewidget) SignalItemCollapsed() func() { - return getSignal(p.ObjectName(), "itemCollapsed") -} - -func (p *qtreewidget) ConnectSignalItemDoubleClicked(f func()) { - C.QTreeWidget_ConnectSignalItemDoubleClicked(p.Pointer()) - connectSignal(p.ObjectName(), "itemDoubleClicked", f) -} - -func (p *qtreewidget) DisconnectSignalItemDoubleClicked() { - C.QTreeWidget_DisconnectSignalItemDoubleClicked(p.Pointer()) - disconnectSignal(p.ObjectName(), "itemDoubleClicked") -} - -func (p *qtreewidget) SignalItemDoubleClicked() func() { - return getSignal(p.ObjectName(), "itemDoubleClicked") -} - -func (p *qtreewidget) ConnectSignalItemEntered(f func()) { - C.QTreeWidget_ConnectSignalItemEntered(p.Pointer()) - connectSignal(p.ObjectName(), "itemEntered", f) -} - -func (p *qtreewidget) DisconnectSignalItemEntered() { - C.QTreeWidget_DisconnectSignalItemEntered(p.Pointer()) - disconnectSignal(p.ObjectName(), "itemEntered") -} - -func (p *qtreewidget) SignalItemEntered() func() { - return getSignal(p.ObjectName(), "itemEntered") -} - -func (p *qtreewidget) ConnectSignalItemExpanded(f func()) { - C.QTreeWidget_ConnectSignalItemExpanded(p.Pointer()) - connectSignal(p.ObjectName(), "itemExpanded", f) -} - -func (p *qtreewidget) DisconnectSignalItemExpanded() { - C.QTreeWidget_DisconnectSignalItemExpanded(p.Pointer()) - disconnectSignal(p.ObjectName(), "itemExpanded") -} - -func (p *qtreewidget) SignalItemExpanded() func() { - return getSignal(p.ObjectName(), "itemExpanded") -} - -func (p *qtreewidget) ConnectSignalItemPressed(f func()) { - C.QTreeWidget_ConnectSignalItemPressed(p.Pointer()) - connectSignal(p.ObjectName(), "itemPressed", f) -} - -func (p *qtreewidget) DisconnectSignalItemPressed() { - C.QTreeWidget_DisconnectSignalItemPressed(p.Pointer()) - disconnectSignal(p.ObjectName(), "itemPressed") -} - -func (p *qtreewidget) SignalItemPressed() func() { - return getSignal(p.ObjectName(), "itemPressed") -} - -func (p *qtreewidget) ConnectSignalItemSelectionChanged(f func()) { - C.QTreeWidget_ConnectSignalItemSelectionChanged(p.Pointer()) - connectSignal(p.ObjectName(), "itemSelectionChanged", f) -} - -func (p *qtreewidget) DisconnectSignalItemSelectionChanged() { - C.QTreeWidget_DisconnectSignalItemSelectionChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "itemSelectionChanged") -} - -func (p *qtreewidget) SignalItemSelectionChanged() func() { - return getSignal(p.ObjectName(), "itemSelectionChanged") -} - -//export callbackQTreeWidget -func callbackQTreeWidget(ptr C.QtObjectPtr, msg *C.char) { - var qtreewidget = new(qtreewidget) - qtreewidget.SetPointer(ptr) - getSignal(qtreewidget.ObjectName(), C.GoString(msg))() -} diff --git a/qtreewidget.h b/qtreewidget.h deleted file mode 100644 index 835e0539..00000000 --- a/qtreewidget.h +++ /dev/null @@ -1,68 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QTreeWidget_New_QWidget(QtObjectPtr parent); -void QTreeWidget_Destroy(QtObjectPtr ptr); -void QTreeWidget_AddTopLevelItem_QTreeWidgetItem(QtObjectPtr ptr, QtObjectPtr item); -void QTreeWidget_ClosePersistentEditor_QTreeWidgetItem_Int(QtObjectPtr ptr, QtObjectPtr item, int column); -int QTreeWidget_ColumnCount(QtObjectPtr ptr); -int QTreeWidget_CurrentColumn(QtObjectPtr ptr); -QtObjectPtr QTreeWidget_CurrentItem(QtObjectPtr ptr); -void QTreeWidget_EditItem_QTreeWidgetItem_Int(QtObjectPtr ptr, QtObjectPtr item, int column); -QtObjectPtr QTreeWidget_HeaderItem(QtObjectPtr ptr); -int QTreeWidget_IndexOfTopLevelItem_QTreeWidgetItem(QtObjectPtr ptr, QtObjectPtr item); -void QTreeWidget_InsertTopLevelItem_Int_QTreeWidgetItem(QtObjectPtr ptr, int index, QtObjectPtr item); -QtObjectPtr QTreeWidget_InvisibleRootItem(QtObjectPtr ptr); -int QTreeWidget_IsFirstItemColumnSpanned_QTreeWidgetItem(QtObjectPtr ptr, QtObjectPtr item); -QtObjectPtr QTreeWidget_ItemAbove_QTreeWidgetItem(QtObjectPtr ptr, QtObjectPtr item); -QtObjectPtr QTreeWidget_ItemAt_Int_Int(QtObjectPtr ptr, int x, int y); -QtObjectPtr QTreeWidget_ItemBelow_QTreeWidgetItem(QtObjectPtr ptr, QtObjectPtr item); -QtObjectPtr QTreeWidget_ItemWidget_QTreeWidgetItem_Int(QtObjectPtr ptr, QtObjectPtr item, int column); -void QTreeWidget_OpenPersistentEditor_QTreeWidgetItem_Int(QtObjectPtr ptr, QtObjectPtr item, int column); -void QTreeWidget_RemoveItemWidget_QTreeWidgetItem_Int(QtObjectPtr ptr, QtObjectPtr item, int column); -void QTreeWidget_SetColumnCount_Int(QtObjectPtr ptr, int columns); -void QTreeWidget_SetCurrentItem_QTreeWidgetItem(QtObjectPtr ptr, QtObjectPtr item); -void QTreeWidget_SetCurrentItem_QTreeWidgetItem_Int(QtObjectPtr ptr, QtObjectPtr item, int column); -void QTreeWidget_SetFirstItemColumnSpanned_QTreeWidgetItem_Bool(QtObjectPtr ptr, QtObjectPtr item, int span); -void QTreeWidget_SetHeaderItem_QTreeWidgetItem(QtObjectPtr ptr, QtObjectPtr item); -void QTreeWidget_SetHeaderLabel_String(QtObjectPtr ptr, char* label); -void QTreeWidget_SetHeaderLabels_QStringList(QtObjectPtr ptr, char* labels); -void QTreeWidget_SetItemWidget_QTreeWidgetItem_Int_QWidget(QtObjectPtr ptr, QtObjectPtr item, int column, QtObjectPtr widget); -int QTreeWidget_SortColumn(QtObjectPtr ptr); -void QTreeWidget_SortItems_Int_SortOrder(QtObjectPtr ptr, int column, int order); -QtObjectPtr QTreeWidget_TakeTopLevelItem_Int(QtObjectPtr ptr, int index); -QtObjectPtr QTreeWidget_TopLevelItem_Int(QtObjectPtr ptr, int index); -int QTreeWidget_TopLevelItemCount(QtObjectPtr ptr); -//Public Slots -void QTreeWidget_ConnectSlotClear(QtObjectPtr ptr); -void QTreeWidget_DisconnectSlotClear(QtObjectPtr ptr); -void QTreeWidget_Clear(QtObjectPtr ptr); -//Signals -void QTreeWidget_ConnectSignalCurrentItemChanged(QtObjectPtr ptr); -void QTreeWidget_DisconnectSignalCurrentItemChanged(QtObjectPtr ptr); -void QTreeWidget_ConnectSignalItemActivated(QtObjectPtr ptr); -void QTreeWidget_DisconnectSignalItemActivated(QtObjectPtr ptr); -void QTreeWidget_ConnectSignalItemChanged(QtObjectPtr ptr); -void QTreeWidget_DisconnectSignalItemChanged(QtObjectPtr ptr); -void QTreeWidget_ConnectSignalItemClicked(QtObjectPtr ptr); -void QTreeWidget_DisconnectSignalItemClicked(QtObjectPtr ptr); -void QTreeWidget_ConnectSignalItemCollapsed(QtObjectPtr ptr); -void QTreeWidget_DisconnectSignalItemCollapsed(QtObjectPtr ptr); -void QTreeWidget_ConnectSignalItemDoubleClicked(QtObjectPtr ptr); -void QTreeWidget_DisconnectSignalItemDoubleClicked(QtObjectPtr ptr); -void QTreeWidget_ConnectSignalItemEntered(QtObjectPtr ptr); -void QTreeWidget_DisconnectSignalItemEntered(QtObjectPtr ptr); -void QTreeWidget_ConnectSignalItemExpanded(QtObjectPtr ptr); -void QTreeWidget_DisconnectSignalItemExpanded(QtObjectPtr ptr); -void QTreeWidget_ConnectSignalItemPressed(QtObjectPtr ptr); -void QTreeWidget_DisconnectSignalItemPressed(QtObjectPtr ptr); -void QTreeWidget_ConnectSignalItemSelectionChanged(QtObjectPtr ptr); -void QTreeWidget_DisconnectSignalItemSelectionChanged(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qtreewidget.moc b/qtreewidget.moc deleted file mode 100644 index 5e3be396..00000000 --- a/qtreewidget.moc +++ /dev/null @@ -1,124 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qtreewidget.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qtreewidget.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQTreeWidget_t { - QByteArrayData data[3]; - char stringdata[26]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQTreeWidget_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQTreeWidget_t qt_meta_stringdata_MyQTreeWidget = { - { -QT_MOC_LITERAL(0, 0, 13), // "MyQTreeWidget" -QT_MOC_LITERAL(1, 14, 10), // "Slot_Clear" -QT_MOC_LITERAL(2, 25, 0) // "" - - }, - "MyQTreeWidget\0Slot_Clear\0" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQTreeWidget[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 1, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 0, 19, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, - - 0 // eod -}; - -void MyQTreeWidget::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQTreeWidget *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_Clear(); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQTreeWidget::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQTreeWidget::Slot_Clear)) { - *result = 0; - } - } - } - Q_UNUSED(_a); -} - -const QMetaObject MyQTreeWidget::staticMetaObject = { - { &QTreeWidget::staticMetaObject, qt_meta_stringdata_MyQTreeWidget.data, - qt_meta_data_MyQTreeWidget, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQTreeWidget::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQTreeWidget::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQTreeWidget.stringdata)) - return static_cast(const_cast< MyQTreeWidget*>(this)); - return QTreeWidget::qt_metacast(_clname); -} - -int MyQTreeWidget::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QTreeWidget::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 1) - qt_static_metacall(this, _c, _id, _a); - _id -= 1; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 1) - *reinterpret_cast(_a[0]) = -1; - _id -= 1; - } - return _id; -} - -// SIGNAL 0 -void MyQTreeWidget::Slot_Clear() -{ - QMetaObject::activate(this, &staticMetaObject, 0, 0); -} -QT_END_MOC_NAMESPACE diff --git a/qtreewidgetitem.cpp b/qtreewidgetitem.cpp deleted file mode 100644 index 82c2a7b3..00000000 --- a/qtreewidgetitem.cpp +++ /dev/null @@ -1,237 +0,0 @@ -#include "qtreewidgetitem.h" -#include -#include "cgoexport.h" - - - -//Public Functions -QtObjectPtr QTreeWidgetItem_New_Int(int typ) -{ - return new QTreeWidgetItem(typ); -} - -QtObjectPtr QTreeWidgetItem_New_QTreeWidget_Int(QtObjectPtr parent, int typ) -{ - return new QTreeWidgetItem(((QTreeWidget*)(parent)), typ); -} - -QtObjectPtr QTreeWidgetItem_New_QTreeWidget_QTreeWidgetItem_Int(QtObjectPtr parent, QtObjectPtr preceding, int typ) -{ - return new QTreeWidgetItem(((QTreeWidget*)(parent)), ((QTreeWidgetItem*)(preceding)), typ); -} - -QtObjectPtr QTreeWidgetItem_New_QTreeWidgetItem_Int(QtObjectPtr parent, int typ) -{ - return new QTreeWidgetItem(((QTreeWidgetItem*)(parent)), typ); -} - -QtObjectPtr QTreeWidgetItem_New_QTreeWidgetItem_QTreeWidgetItem_Int(QtObjectPtr parent, QtObjectPtr preceding, int typ) -{ - return new QTreeWidgetItem(((QTreeWidgetItem*)(parent)), ((QTreeWidgetItem*)(preceding)), typ); -} - -QtObjectPtr QTreeWidgetItem_New_QTreeWidgetItem(QtObjectPtr other) -{ - return new QTreeWidgetItem(((QTreeWidgetItem*)(other))); -} - -void QTreeWidgetItem_Destroy(QtObjectPtr ptr) -{ - ((QTreeWidgetItem*)(ptr))->~QTreeWidgetItem(); -} - -void QTreeWidgetItem_AddChild_QTreeWidgetItem(QtObjectPtr ptr, QtObjectPtr child) -{ - ((QTreeWidgetItem*)(ptr))->addChild(((QTreeWidgetItem*)(child))); -} - -int QTreeWidgetItem_CheckState_Int(QtObjectPtr ptr, int column) -{ - return ((QTreeWidgetItem*)(ptr))->checkState(column); -} - -QtObjectPtr QTreeWidgetItem_Child_Int(QtObjectPtr ptr, int index) -{ - return ((QTreeWidgetItem*)(ptr))->child(index); -} - -int QTreeWidgetItem_ChildCount(QtObjectPtr ptr) -{ - return ((QTreeWidgetItem*)(ptr))->childCount(); -} - -QtObjectPtr QTreeWidgetItem_Clone(QtObjectPtr ptr) -{ - return ((QTreeWidgetItem*)(ptr))->clone(); -} - -int QTreeWidgetItem_ColumnCount(QtObjectPtr ptr) -{ - return ((QTreeWidgetItem*)(ptr))->columnCount(); -} - -int QTreeWidgetItem_Flags(QtObjectPtr ptr) -{ - return ((QTreeWidgetItem*)(ptr))->flags(); -} - -int QTreeWidgetItem_IndexOfChild_QTreeWidgetItem(QtObjectPtr ptr, QtObjectPtr child) -{ - return ((QTreeWidgetItem*)(ptr))->indexOfChild(((QTreeWidgetItem*)(child))); -} - -void QTreeWidgetItem_InsertChild_Int_QTreeWidgetItem(QtObjectPtr ptr, int index, QtObjectPtr child) -{ - ((QTreeWidgetItem*)(ptr))->insertChild(index, ((QTreeWidgetItem*)(child))); -} - -int QTreeWidgetItem_IsDisabled(QtObjectPtr ptr) -{ - return ((QTreeWidgetItem*)(ptr))->isDisabled(); -} - -int QTreeWidgetItem_IsExpanded(QtObjectPtr ptr) -{ - return ((QTreeWidgetItem*)(ptr))->isExpanded(); -} - -int QTreeWidgetItem_IsFirstColumnSpanned(QtObjectPtr ptr) -{ - return ((QTreeWidgetItem*)(ptr))->isFirstColumnSpanned(); -} - -int QTreeWidgetItem_IsHidden(QtObjectPtr ptr) -{ - return ((QTreeWidgetItem*)(ptr))->isHidden(); -} - -int QTreeWidgetItem_IsSelected(QtObjectPtr ptr) -{ - return ((QTreeWidgetItem*)(ptr))->isSelected(); -} - -QtObjectPtr QTreeWidgetItem_Parent(QtObjectPtr ptr) -{ - return ((QTreeWidgetItem*)(ptr))->parent(); -} - -void QTreeWidgetItem_RemoveChild_QTreeWidgetItem(QtObjectPtr ptr, QtObjectPtr child) -{ - ((QTreeWidgetItem*)(ptr))->removeChild(((QTreeWidgetItem*)(child))); -} - -void QTreeWidgetItem_SetBackground_Int_QBrush(QtObjectPtr ptr, int column, QtObjectPtr brush) -{ - ((QTreeWidgetItem*)(ptr))->setBackground(column, *((QBrush*)(brush))); -} - -void QTreeWidgetItem_SetCheckState_Int_CheckState(QtObjectPtr ptr, int column, int state) -{ - ((QTreeWidgetItem*)(ptr))->setCheckState(column, ((Qt::CheckState)(state))); -} - -void QTreeWidgetItem_SetDisabled_Bool(QtObjectPtr ptr, int disabled) -{ - ((QTreeWidgetItem*)(ptr))->setDisabled(disabled != 0); -} - -void QTreeWidgetItem_SetExpanded_Bool(QtObjectPtr ptr, int expand) -{ - ((QTreeWidgetItem*)(ptr))->setExpanded(expand != 0); -} - -void QTreeWidgetItem_SetFirstColumnSpanned_Bool(QtObjectPtr ptr, int span) -{ - ((QTreeWidgetItem*)(ptr))->setFirstColumnSpanned(span != 0); -} - -void QTreeWidgetItem_SetFlags_ItemFlag(QtObjectPtr ptr, int flags) -{ - ((QTreeWidgetItem*)(ptr))->setFlags(((Qt::ItemFlag)(flags))); -} - -void QTreeWidgetItem_SetForeground_Int_QBrush(QtObjectPtr ptr, int column, QtObjectPtr brush) -{ - ((QTreeWidgetItem*)(ptr))->setForeground(column, *((QBrush*)(brush))); -} - -void QTreeWidgetItem_SetHidden_Bool(QtObjectPtr ptr, int hide) -{ - ((QTreeWidgetItem*)(ptr))->setHidden(hide != 0); -} - -void QTreeWidgetItem_SetSelected_Bool(QtObjectPtr ptr, int selected) -{ - ((QTreeWidgetItem*)(ptr))->setSelected(selected != 0); -} - -void QTreeWidgetItem_SetStatusTip_Int_String(QtObjectPtr ptr, int column, char* statusTip) -{ - ((QTreeWidgetItem*)(ptr))->setStatusTip(column, QString(statusTip)); -} - -void QTreeWidgetItem_SetText_Int_String(QtObjectPtr ptr, int column, char* text) -{ - ((QTreeWidgetItem*)(ptr))->setText(column, QString(text)); -} - -void QTreeWidgetItem_SetTextAlignment_Int_Int(QtObjectPtr ptr, int column, int alignment) -{ - ((QTreeWidgetItem*)(ptr))->setTextAlignment(column, alignment); -} - -void QTreeWidgetItem_SetToolTip_Int_String(QtObjectPtr ptr, int column, char* toolTip) -{ - ((QTreeWidgetItem*)(ptr))->setToolTip(column, QString(toolTip)); -} - -void QTreeWidgetItem_SetWhatsThis_Int_String(QtObjectPtr ptr, int column, char* whatsThis) -{ - ((QTreeWidgetItem*)(ptr))->setWhatsThis(column, QString(whatsThis)); -} - -void QTreeWidgetItem_SortChildren_Int_SortOrder(QtObjectPtr ptr, int column, int order) -{ - ((QTreeWidgetItem*)(ptr))->sortChildren(column, ((Qt::SortOrder)(order))); -} - -char* QTreeWidgetItem_StatusTip_Int(QtObjectPtr ptr, int column) -{ - return ((QTreeWidgetItem*)(ptr))->statusTip(column).toUtf8().data(); -} - -QtObjectPtr QTreeWidgetItem_TakeChild_Int(QtObjectPtr ptr, int index) -{ - return ((QTreeWidgetItem*)(ptr))->takeChild(index); -} - -char* QTreeWidgetItem_Text_Int(QtObjectPtr ptr, int column) -{ - return ((QTreeWidgetItem*)(ptr))->text(column).toUtf8().data(); -} - -int QTreeWidgetItem_TextAlignment_Int(QtObjectPtr ptr, int column) -{ - return ((QTreeWidgetItem*)(ptr))->textAlignment(column); -} - -char* QTreeWidgetItem_ToolTip_Int(QtObjectPtr ptr, int column) -{ - return ((QTreeWidgetItem*)(ptr))->toolTip(column).toUtf8().data(); -} - -QtObjectPtr QTreeWidgetItem_TreeWidget(QtObjectPtr ptr) -{ - return ((QTreeWidgetItem*)(ptr))->treeWidget(); -} - -int QTreeWidgetItem_Type(QtObjectPtr ptr) -{ - return ((QTreeWidgetItem*)(ptr))->type(); -} - -char* QTreeWidgetItem_WhatsThis_Int(QtObjectPtr ptr, int column) -{ - return ((QTreeWidgetItem*)(ptr))->whatsThis(column).toUtf8().data(); -} - diff --git a/qtreewidgetitem.go b/qtreewidgetitem.go deleted file mode 100644 index 8a1ea8bd..00000000 --- a/qtreewidgetitem.go +++ /dev/null @@ -1,430 +0,0 @@ -package qt - -//#include "qtreewidgetitem.h" -import "C" - -type qtreewidgetitem struct { - ptr C.QtObjectPtr -} - -type QTreeWidgetItem interface { - Pointer() (ptr C.QtObjectPtr) - SetPointer(ptr C.QtObjectPtr) - Destroy() - AddChild(child QTreeWidgetItem) - CheckState(column int) CheckState - Child(index int) QTreeWidgetItem - ChildCount() int - Clone() QTreeWidgetItem - ColumnCount() int - Flags() ItemFlag - IndexOfChild(child QTreeWidgetItem) int - InsertChild(index int, child QTreeWidgetItem) - IsDisabled() bool - IsExpanded() bool - IsFirstColumnSpanned() bool - IsHidden() bool - IsSelected() bool - Parent() QTreeWidgetItem - RemoveChild(child QTreeWidgetItem) - SetBackground(column int, brush QBrush) - SetCheckState(column int, state CheckState) - SetDisabled(disabled bool) - SetExpanded(expand bool) - SetFirstColumnSpanned(span bool) - SetFlags(flags ItemFlag) - SetForeground(column int, brush QBrush) - SetHidden(hide bool) - SetSelected(selected bool) - SetStatusTip(column int, statusTip string) - SetText(column int, text string) - SetTextAlignment(column int, alignment int) - SetToolTip(column int, toolTip string) - SetWhatsThis(column int, whatsThis string) - SortChildren(column int, order SortOrder) - StatusTip(column int) string - TakeChild(index int) QTreeWidgetItem - Text(column int) string - TextAlignment(column int) int - ToolTip(column int) string - TreeWidget() QTreeWidget - Type() int - WhatsThis(column int) string -} - -func (p *qtreewidgetitem) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qtreewidgetitem) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQTreeWidgetItem1(typ int) QTreeWidgetItem { - var qtreewidgetitem = new(qtreewidgetitem) - qtreewidgetitem.SetPointer(C.QTreeWidgetItem_New_Int(C.int(typ))) - return qtreewidgetitem -} - -func NewQTreeWidgetItem2(parent QTreeWidget, typ int) QTreeWidgetItem { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qtreewidgetitem = new(qtreewidgetitem) - qtreewidgetitem.SetPointer(C.QTreeWidgetItem_New_QTreeWidget_Int(parentPtr, C.int(typ))) - return qtreewidgetitem -} - -func NewQTreeWidgetItem3(parent QTreeWidget, preceding QTreeWidgetItem, typ int) QTreeWidgetItem { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var precedingPtr C.QtObjectPtr - if preceding != nil { - precedingPtr = preceding.Pointer() - } - var qtreewidgetitem = new(qtreewidgetitem) - qtreewidgetitem.SetPointer(C.QTreeWidgetItem_New_QTreeWidget_QTreeWidgetItem_Int(parentPtr, precedingPtr, C.int(typ))) - return qtreewidgetitem -} - -func NewQTreeWidgetItem4(parent QTreeWidgetItem, typ int) QTreeWidgetItem { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qtreewidgetitem = new(qtreewidgetitem) - qtreewidgetitem.SetPointer(C.QTreeWidgetItem_New_QTreeWidgetItem_Int(parentPtr, C.int(typ))) - return qtreewidgetitem -} - -func NewQTreeWidgetItem5(parent QTreeWidgetItem, preceding QTreeWidgetItem, typ int) QTreeWidgetItem { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var precedingPtr C.QtObjectPtr - if preceding != nil { - precedingPtr = preceding.Pointer() - } - var qtreewidgetitem = new(qtreewidgetitem) - qtreewidgetitem.SetPointer(C.QTreeWidgetItem_New_QTreeWidgetItem_QTreeWidgetItem_Int(parentPtr, precedingPtr, C.int(typ))) - return qtreewidgetitem -} - -func NewQTreeWidgetItem6(other QTreeWidgetItem) QTreeWidgetItem { - var otherPtr C.QtObjectPtr - if other != nil { - otherPtr = other.Pointer() - } - var qtreewidgetitem = new(qtreewidgetitem) - qtreewidgetitem.SetPointer(C.QTreeWidgetItem_New_QTreeWidgetItem(otherPtr)) - return qtreewidgetitem -} - -func (p *qtreewidgetitem) Destroy() { - if p.Pointer() != nil { - C.QTreeWidgetItem_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qtreewidgetitem) AddChild(child QTreeWidgetItem) { - if p.Pointer() != nil { - var childPtr C.QtObjectPtr - if child != nil { - childPtr = child.Pointer() - } - C.QTreeWidgetItem_AddChild_QTreeWidgetItem(p.Pointer(), childPtr) - } -} - -func (p *qtreewidgetitem) CheckState(column int) CheckState { - if p.Pointer() == nil { - return 0 - } - return CheckState(C.QTreeWidgetItem_CheckState_Int(p.Pointer(), C.int(column))) -} - -func (p *qtreewidgetitem) Child(index int) QTreeWidgetItem { - if p.Pointer() == nil { - return nil - } else { - var qtreewidgetitem = new(qtreewidgetitem) - qtreewidgetitem.SetPointer(C.QTreeWidgetItem_Child_Int(p.Pointer(), C.int(index))) - return qtreewidgetitem - } -} - -func (p *qtreewidgetitem) ChildCount() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTreeWidgetItem_ChildCount(p.Pointer())) -} - -func (p *qtreewidgetitem) Clone() QTreeWidgetItem { - if p.Pointer() == nil { - return nil - } else { - var qtreewidgetitem = new(qtreewidgetitem) - qtreewidgetitem.SetPointer(C.QTreeWidgetItem_Clone(p.Pointer())) - return qtreewidgetitem - } -} - -func (p *qtreewidgetitem) ColumnCount() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTreeWidgetItem_ColumnCount(p.Pointer())) -} - -func (p *qtreewidgetitem) Flags() ItemFlag { - if p.Pointer() == nil { - return 0 - } - return ItemFlag(C.QTreeWidgetItem_Flags(p.Pointer())) -} - -func (p *qtreewidgetitem) IndexOfChild(child QTreeWidgetItem) int { - if p.Pointer() == nil { - return 0 - } else { - var childPtr C.QtObjectPtr - if child != nil { - childPtr = child.Pointer() - } - return int(C.QTreeWidgetItem_IndexOfChild_QTreeWidgetItem(p.Pointer(), childPtr)) - } -} - -func (p *qtreewidgetitem) InsertChild(index int, child QTreeWidgetItem) { - if p.Pointer() != nil { - var childPtr C.QtObjectPtr - if child != nil { - childPtr = child.Pointer() - } - C.QTreeWidgetItem_InsertChild_Int_QTreeWidgetItem(p.Pointer(), C.int(index), childPtr) - } -} - -func (p *qtreewidgetitem) IsDisabled() bool { - if p.Pointer() == nil { - return false - } - return C.QTreeWidgetItem_IsDisabled(p.Pointer()) != 0 -} - -func (p *qtreewidgetitem) IsExpanded() bool { - if p.Pointer() == nil { - return false - } - return C.QTreeWidgetItem_IsExpanded(p.Pointer()) != 0 -} - -func (p *qtreewidgetitem) IsFirstColumnSpanned() bool { - if p.Pointer() == nil { - return false - } - return C.QTreeWidgetItem_IsFirstColumnSpanned(p.Pointer()) != 0 -} - -func (p *qtreewidgetitem) IsHidden() bool { - if p.Pointer() == nil { - return false - } - return C.QTreeWidgetItem_IsHidden(p.Pointer()) != 0 -} - -func (p *qtreewidgetitem) IsSelected() bool { - if p.Pointer() == nil { - return false - } - return C.QTreeWidgetItem_IsSelected(p.Pointer()) != 0 -} - -func (p *qtreewidgetitem) Parent() QTreeWidgetItem { - if p.Pointer() == nil { - return nil - } else { - var qtreewidgetitem = new(qtreewidgetitem) - qtreewidgetitem.SetPointer(C.QTreeWidgetItem_Parent(p.Pointer())) - return qtreewidgetitem - } -} - -func (p *qtreewidgetitem) RemoveChild(child QTreeWidgetItem) { - if p.Pointer() != nil { - var childPtr C.QtObjectPtr - if child != nil { - childPtr = child.Pointer() - } - C.QTreeWidgetItem_RemoveChild_QTreeWidgetItem(p.Pointer(), childPtr) - } -} - -func (p *qtreewidgetitem) SetBackground(column int, brush QBrush) { - if p.Pointer() != nil { - var brushPtr C.QtObjectPtr - if brush != nil { - brushPtr = brush.Pointer() - } - C.QTreeWidgetItem_SetBackground_Int_QBrush(p.Pointer(), C.int(column), brushPtr) - } -} - -func (p *qtreewidgetitem) SetCheckState(column int, state CheckState) { - if p.Pointer() != nil { - C.QTreeWidgetItem_SetCheckState_Int_CheckState(p.Pointer(), C.int(column), C.int(state)) - } -} - -func (p *qtreewidgetitem) SetDisabled(disabled bool) { - if p.Pointer() != nil { - C.QTreeWidgetItem_SetDisabled_Bool(p.Pointer(), goBoolToCInt(disabled)) - } -} - -func (p *qtreewidgetitem) SetExpanded(expand bool) { - if p.Pointer() != nil { - C.QTreeWidgetItem_SetExpanded_Bool(p.Pointer(), goBoolToCInt(expand)) - } -} - -func (p *qtreewidgetitem) SetFirstColumnSpanned(span bool) { - if p.Pointer() != nil { - C.QTreeWidgetItem_SetFirstColumnSpanned_Bool(p.Pointer(), goBoolToCInt(span)) - } -} - -func (p *qtreewidgetitem) SetFlags(flags ItemFlag) { - if p.Pointer() != nil { - C.QTreeWidgetItem_SetFlags_ItemFlag(p.Pointer(), C.int(flags)) - } -} - -func (p *qtreewidgetitem) SetForeground(column int, brush QBrush) { - if p.Pointer() != nil { - var brushPtr C.QtObjectPtr - if brush != nil { - brushPtr = brush.Pointer() - } - C.QTreeWidgetItem_SetForeground_Int_QBrush(p.Pointer(), C.int(column), brushPtr) - } -} - -func (p *qtreewidgetitem) SetHidden(hide bool) { - if p.Pointer() != nil { - C.QTreeWidgetItem_SetHidden_Bool(p.Pointer(), goBoolToCInt(hide)) - } -} - -func (p *qtreewidgetitem) SetSelected(selected bool) { - if p.Pointer() != nil { - C.QTreeWidgetItem_SetSelected_Bool(p.Pointer(), goBoolToCInt(selected)) - } -} - -func (p *qtreewidgetitem) SetStatusTip(column int, statusTip string) { - if p.Pointer() != nil { - C.QTreeWidgetItem_SetStatusTip_Int_String(p.Pointer(), C.int(column), C.CString(statusTip)) - } -} - -func (p *qtreewidgetitem) SetText(column int, text string) { - if p.Pointer() != nil { - C.QTreeWidgetItem_SetText_Int_String(p.Pointer(), C.int(column), C.CString(text)) - } -} - -func (p *qtreewidgetitem) SetTextAlignment(column int, alignment int) { - if p.Pointer() != nil { - C.QTreeWidgetItem_SetTextAlignment_Int_Int(p.Pointer(), C.int(column), C.int(alignment)) - } -} - -func (p *qtreewidgetitem) SetToolTip(column int, toolTip string) { - if p.Pointer() != nil { - C.QTreeWidgetItem_SetToolTip_Int_String(p.Pointer(), C.int(column), C.CString(toolTip)) - } -} - -func (p *qtreewidgetitem) SetWhatsThis(column int, whatsThis string) { - if p.Pointer() != nil { - C.QTreeWidgetItem_SetWhatsThis_Int_String(p.Pointer(), C.int(column), C.CString(whatsThis)) - } -} - -func (p *qtreewidgetitem) SortChildren(column int, order SortOrder) { - if p.Pointer() != nil { - C.QTreeWidgetItem_SortChildren_Int_SortOrder(p.Pointer(), C.int(column), C.int(order)) - } -} - -func (p *qtreewidgetitem) StatusTip(column int) string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QTreeWidgetItem_StatusTip_Int(p.Pointer(), C.int(column))) -} - -func (p *qtreewidgetitem) TakeChild(index int) QTreeWidgetItem { - if p.Pointer() == nil { - return nil - } else { - var qtreewidgetitem = new(qtreewidgetitem) - qtreewidgetitem.SetPointer(C.QTreeWidgetItem_TakeChild_Int(p.Pointer(), C.int(index))) - return qtreewidgetitem - } -} - -func (p *qtreewidgetitem) Text(column int) string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QTreeWidgetItem_Text_Int(p.Pointer(), C.int(column))) -} - -func (p *qtreewidgetitem) TextAlignment(column int) int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTreeWidgetItem_TextAlignment_Int(p.Pointer(), C.int(column))) -} - -func (p *qtreewidgetitem) ToolTip(column int) string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QTreeWidgetItem_ToolTip_Int(p.Pointer(), C.int(column))) -} - -func (p *qtreewidgetitem) TreeWidget() QTreeWidget { - if p.Pointer() == nil { - return nil - } else { - var qtreewidget = new(qtreewidget) - qtreewidget.SetPointer(C.QTreeWidgetItem_TreeWidget(p.Pointer())) - if qtreewidget.ObjectName() == "" { - qtreewidget.SetObjectName("QTreeWidget_" + randomIdentifier()) - } - return qtreewidget - } -} - -func (p *qtreewidgetitem) Type() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QTreeWidgetItem_Type(p.Pointer())) -} - -func (p *qtreewidgetitem) WhatsThis(column int) string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QTreeWidgetItem_WhatsThis_Int(p.Pointer(), C.int(column))) -} diff --git a/qtreewidgetitem.h b/qtreewidgetitem.h deleted file mode 100644 index 84fdfdc5..00000000 --- a/qtreewidgetitem.h +++ /dev/null @@ -1,57 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QTreeWidgetItem_New_Int(int typ); -QtObjectPtr QTreeWidgetItem_New_QTreeWidget_Int(QtObjectPtr parent, int typ); -QtObjectPtr QTreeWidgetItem_New_QTreeWidget_QTreeWidgetItem_Int(QtObjectPtr parent, QtObjectPtr preceding, int typ); -QtObjectPtr QTreeWidgetItem_New_QTreeWidgetItem_Int(QtObjectPtr parent, int typ); -QtObjectPtr QTreeWidgetItem_New_QTreeWidgetItem_QTreeWidgetItem_Int(QtObjectPtr parent, QtObjectPtr preceding, int typ); -QtObjectPtr QTreeWidgetItem_New_QTreeWidgetItem(QtObjectPtr other); -void QTreeWidgetItem_Destroy(QtObjectPtr ptr); -void QTreeWidgetItem_AddChild_QTreeWidgetItem(QtObjectPtr ptr, QtObjectPtr child); -int QTreeWidgetItem_CheckState_Int(QtObjectPtr ptr, int column); -QtObjectPtr QTreeWidgetItem_Child_Int(QtObjectPtr ptr, int index); -int QTreeWidgetItem_ChildCount(QtObjectPtr ptr); -QtObjectPtr QTreeWidgetItem_Clone(QtObjectPtr ptr); -int QTreeWidgetItem_ColumnCount(QtObjectPtr ptr); -int QTreeWidgetItem_Flags(QtObjectPtr ptr); -int QTreeWidgetItem_IndexOfChild_QTreeWidgetItem(QtObjectPtr ptr, QtObjectPtr child); -void QTreeWidgetItem_InsertChild_Int_QTreeWidgetItem(QtObjectPtr ptr, int index, QtObjectPtr child); -int QTreeWidgetItem_IsDisabled(QtObjectPtr ptr); -int QTreeWidgetItem_IsExpanded(QtObjectPtr ptr); -int QTreeWidgetItem_IsFirstColumnSpanned(QtObjectPtr ptr); -int QTreeWidgetItem_IsHidden(QtObjectPtr ptr); -int QTreeWidgetItem_IsSelected(QtObjectPtr ptr); -QtObjectPtr QTreeWidgetItem_Parent(QtObjectPtr ptr); -void QTreeWidgetItem_RemoveChild_QTreeWidgetItem(QtObjectPtr ptr, QtObjectPtr child); -void QTreeWidgetItem_SetBackground_Int_QBrush(QtObjectPtr ptr, int column, QtObjectPtr brush); -void QTreeWidgetItem_SetCheckState_Int_CheckState(QtObjectPtr ptr, int column, int state); -void QTreeWidgetItem_SetDisabled_Bool(QtObjectPtr ptr, int disabled); -void QTreeWidgetItem_SetExpanded_Bool(QtObjectPtr ptr, int expand); -void QTreeWidgetItem_SetFirstColumnSpanned_Bool(QtObjectPtr ptr, int span); -void QTreeWidgetItem_SetFlags_ItemFlag(QtObjectPtr ptr, int flags); -void QTreeWidgetItem_SetForeground_Int_QBrush(QtObjectPtr ptr, int column, QtObjectPtr brush); -void QTreeWidgetItem_SetHidden_Bool(QtObjectPtr ptr, int hide); -void QTreeWidgetItem_SetSelected_Bool(QtObjectPtr ptr, int selected); -void QTreeWidgetItem_SetStatusTip_Int_String(QtObjectPtr ptr, int column, char* statusTip); -void QTreeWidgetItem_SetText_Int_String(QtObjectPtr ptr, int column, char* text); -void QTreeWidgetItem_SetTextAlignment_Int_Int(QtObjectPtr ptr, int column, int alignment); -void QTreeWidgetItem_SetToolTip_Int_String(QtObjectPtr ptr, int column, char* toolTip); -void QTreeWidgetItem_SetWhatsThis_Int_String(QtObjectPtr ptr, int column, char* whatsThis); -void QTreeWidgetItem_SortChildren_Int_SortOrder(QtObjectPtr ptr, int column, int order); -char* QTreeWidgetItem_StatusTip_Int(QtObjectPtr ptr, int column); -QtObjectPtr QTreeWidgetItem_TakeChild_Int(QtObjectPtr ptr, int index); -char* QTreeWidgetItem_Text_Int(QtObjectPtr ptr, int column); -int QTreeWidgetItem_TextAlignment_Int(QtObjectPtr ptr, int column); -char* QTreeWidgetItem_ToolTip_Int(QtObjectPtr ptr, int column); -QtObjectPtr QTreeWidgetItem_TreeWidget(QtObjectPtr ptr); -int QTreeWidgetItem_Type(QtObjectPtr ptr); -char* QTreeWidgetItem_WhatsThis_Int(QtObjectPtr ptr, int column); - -#ifdef __cplusplus -} -#endif diff --git a/qtreewidgetitem.moc b/qtreewidgetitem.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/quick/cgo_darwin_amd64.go b/quick/cgo_darwin_amd64.go new file mode 100755 index 00000000..2c4614a3 --- /dev/null +++ b/quick/cgo_darwin_amd64.go @@ -0,0 +1,13 @@ +package quick + +/* +#cgo CPPFLAGS: -pipe -O2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 -Wall -W +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_QML_LIB -DQT_QUICK_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/mkspecs/macx-clang -F/usr/local/Qt5.5.1/5.5/clang_64/lib +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtCore.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtGui.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtNetwork.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtQml.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtQuick.framework/Headers +#cgo CPPFLAGS: -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.framework/Headers + +#cgo LDFLAGS: -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 +#cgo LDFLAGS: -F/usr/local/Qt5.5.1/5.5/clang_64/lib -framework QtCore -framework QtGui -framework QtNetwork -framework QtQml -framework QtQuick -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL +*/ +import "C" diff --git a/quick/cgo_linux_386.go b/quick/cgo_linux_386.go new file mode 100755 index 00000000..393d06dc --- /dev/null +++ b/quick/cgo_linux_386.go @@ -0,0 +1,12 @@ +package quick + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_QML_LIB -DQT_QUICK_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include -I/usr/local/Qt5.5.1/5.5/gcc/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc/include/QtGui -I/usr/local/Qt5.5.1/5.5/gcc/include/QtNetwork -I/usr/local/Qt5.5.1/5.5/gcc/include/QtQml -I/usr/local/Qt5.5.1/5.5/gcc/include/QtQuick + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc/lib -L/usr/lib -lQt5Core -lQt5Gui -lQt5Network -lQt5Qml -lQt5Quick -lpthread +*/ +import "C" diff --git a/quick/cgo_linux_amd64.go b/quick/cgo_linux_amd64.go new file mode 100755 index 00000000..d7cd10d6 --- /dev/null +++ b/quick/cgo_linux_amd64.go @@ -0,0 +1,12 @@ +package quick + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_QML_LIB -DQT_QUICK_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include -I/usr/local/Qt5.5.1/5.5/gcc_64/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtGui -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtNetwork -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtQml -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtQuick + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc_64/lib -L/usr/lib64 -lQt5Core -lQt5Gui -lQt5Network -lQt5Qml -lQt5Quick -lpthread +*/ +import "C" diff --git a/quick/cgo_windows_386.go b/quick/cgo_windows_386.go new file mode 100755 index 00000000..0235f576 --- /dev/null +++ b/quick/cgo_windows_386.go @@ -0,0 +1,12 @@ +package quick + +/* +#cgo CPPFLAGS: -pipe -fno-keep-inline-dllexport -O2 -Wall -Wextra -fexceptions -mthreads +#cgo CPPFLAGS: -DUNICODE -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_QML_LIB -DQT_QUICK_LIB +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include -IC:/Qt/Qt5.5.1/5.5/mingw492_32/mkspecs/win32-g++ +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtCore -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtGui -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtNetwork -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtQml -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtQuick + +#cgo LDFLAGS: -Wl,-s -Wl,-subsystem,windows -mthreads +#cgo LDFLAGS: -LC:/Qt/Qt5.5.1/5.5/mingw492_32/bin -lQt5Core -lQt5Gui -lQt5Network -lQt5Qml -lQt5Quick +*/ +import "C" diff --git a/quick/qquickframebufferobject.cpp b/quick/qquickframebufferobject.cpp new file mode 100755 index 00000000..281fb445 --- /dev/null +++ b/quick/qquickframebufferobject.cpp @@ -0,0 +1,42 @@ +#include "qquickframebufferobject.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQuickFramebufferObject: public QQuickFramebufferObject { +public: +void Signal_TextureFollowsItemSizeChanged(bool v){callbackQQuickFramebufferObjectTextureFollowsItemSizeChanged(this->objectName().toUtf8().data(), v);}; +}; + +void QQuickFramebufferObject_SetTextureFollowsItemSize(QtObjectPtr ptr, int follows){ + static_cast(ptr)->setTextureFollowsItemSize(follows != 0); +} + +int QQuickFramebufferObject_TextureFollowsItemSize(QtObjectPtr ptr){ + return static_cast(ptr)->textureFollowsItemSize(); +} + +int QQuickFramebufferObject_IsTextureProvider(QtObjectPtr ptr){ + return static_cast(ptr)->isTextureProvider(); +} + +void QQuickFramebufferObject_ReleaseResources(QtObjectPtr ptr){ + static_cast(ptr)->releaseResources(); +} + +void QQuickFramebufferObject_ConnectTextureFollowsItemSizeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQuickFramebufferObject::textureFollowsItemSizeChanged), static_cast(ptr), static_cast(&MyQQuickFramebufferObject::Signal_TextureFollowsItemSizeChanged));; +} + +void QQuickFramebufferObject_DisconnectTextureFollowsItemSizeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQuickFramebufferObject::textureFollowsItemSizeChanged), static_cast(ptr), static_cast(&MyQQuickFramebufferObject::Signal_TextureFollowsItemSizeChanged));; +} + +QtObjectPtr QQuickFramebufferObject_TextureProvider(QtObjectPtr ptr){ + return static_cast(ptr)->textureProvider(); +} + diff --git a/quick/qquickframebufferobject.go b/quick/qquickframebufferobject.go new file mode 100755 index 00000000..32b8da59 --- /dev/null +++ b/quick/qquickframebufferobject.go @@ -0,0 +1,89 @@ +package quick + +//#include "qquickframebufferobject.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QQuickFramebufferObject struct { + QQuickItem +} + +type QQuickFramebufferObjectITF interface { + QQuickItemITF + QQuickFramebufferObjectPTR() *QQuickFramebufferObject +} + +func PointerFromQQuickFramebufferObject(ptr QQuickFramebufferObjectITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQuickFramebufferObjectPTR().Pointer() + } + return nil +} + +func QQuickFramebufferObjectFromPointer(ptr unsafe.Pointer) *QQuickFramebufferObject { + var n = new(QQuickFramebufferObject) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QQuickFramebufferObject_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QQuickFramebufferObject) QQuickFramebufferObjectPTR() *QQuickFramebufferObject { + return ptr +} + +func (ptr *QQuickFramebufferObject) SetTextureFollowsItemSize(follows bool) { + if ptr.Pointer() != nil { + C.QQuickFramebufferObject_SetTextureFollowsItemSize(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(follows))) + } +} + +func (ptr *QQuickFramebufferObject) TextureFollowsItemSize() bool { + if ptr.Pointer() != nil { + return C.QQuickFramebufferObject_TextureFollowsItemSize(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQuickFramebufferObject) IsTextureProvider() bool { + if ptr.Pointer() != nil { + return C.QQuickFramebufferObject_IsTextureProvider(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQuickFramebufferObject) ReleaseResources() { + if ptr.Pointer() != nil { + C.QQuickFramebufferObject_ReleaseResources(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QQuickFramebufferObject) ConnectTextureFollowsItemSizeChanged(f func(v bool)) { + if ptr.Pointer() != nil { + C.QQuickFramebufferObject_ConnectTextureFollowsItemSizeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "textureFollowsItemSizeChanged", f) + } +} + +func (ptr *QQuickFramebufferObject) DisconnectTextureFollowsItemSizeChanged() { + if ptr.Pointer() != nil { + C.QQuickFramebufferObject_DisconnectTextureFollowsItemSizeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "textureFollowsItemSizeChanged") + } +} + +//export callbackQQuickFramebufferObjectTextureFollowsItemSizeChanged +func callbackQQuickFramebufferObjectTextureFollowsItemSizeChanged(ptrName *C.char, v C.int) { + qt.GetSignal(C.GoString(ptrName), "textureFollowsItemSizeChanged").(func(bool))(int(v) != 0) +} + +func (ptr *QQuickFramebufferObject) TextureProvider() *QSGTextureProvider { + if ptr.Pointer() != nil { + return QSGTextureProviderFromPointer(unsafe.Pointer(C.QQuickFramebufferObject_TextureProvider(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} diff --git a/quick/qquickframebufferobject.h b/quick/qquickframebufferobject.h new file mode 100755 index 00000000..00fb2de4 --- /dev/null +++ b/quick/qquickframebufferobject.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QQuickFramebufferObject_SetTextureFollowsItemSize(QtObjectPtr ptr, int follows); +int QQuickFramebufferObject_TextureFollowsItemSize(QtObjectPtr ptr); +int QQuickFramebufferObject_IsTextureProvider(QtObjectPtr ptr); +void QQuickFramebufferObject_ReleaseResources(QtObjectPtr ptr); +void QQuickFramebufferObject_ConnectTextureFollowsItemSizeChanged(QtObjectPtr ptr); +void QQuickFramebufferObject_DisconnectTextureFollowsItemSizeChanged(QtObjectPtr ptr); +QtObjectPtr QQuickFramebufferObject_TextureProvider(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qquickimageprovider.cpp b/quick/qquickimageprovider.cpp new file mode 100755 index 00000000..187a9220 --- /dev/null +++ b/quick/qquickimageprovider.cpp @@ -0,0 +1,29 @@ +#include "qquickimageprovider.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQuickImageProvider: public QQuickImageProvider { +public: +}; + +QtObjectPtr QQuickImageProvider_NewQQuickImageProvider(int ty, int flags){ + return new QQuickImageProvider(static_cast(ty), static_cast(flags)); +} + +int QQuickImageProvider_Flags(QtObjectPtr ptr){ + return static_cast(ptr)->flags(); +} + +int QQuickImageProvider_ImageType(QtObjectPtr ptr){ + return static_cast(ptr)->imageType(); +} + +void QQuickImageProvider_DestroyQQuickImageProvider(QtObjectPtr ptr){ + static_cast(ptr)->~QQuickImageProvider(); +} + diff --git a/quick/qquickimageprovider.go b/quick/qquickimageprovider.go new file mode 100755 index 00000000..54c087d4 --- /dev/null +++ b/quick/qquickimageprovider.go @@ -0,0 +1,58 @@ +package quick + +//#include "qquickimageprovider.h" +import "C" +import ( + "github.com/therecipe/qt/qml" + "unsafe" +) + +type QQuickImageProvider struct { + qml.QQmlImageProviderBase +} + +type QQuickImageProviderITF interface { + qml.QQmlImageProviderBaseITF + QQuickImageProviderPTR() *QQuickImageProvider +} + +func PointerFromQQuickImageProvider(ptr QQuickImageProviderITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQuickImageProviderPTR().Pointer() + } + return nil +} + +func QQuickImageProviderFromPointer(ptr unsafe.Pointer) *QQuickImageProvider { + var n = new(QQuickImageProvider) + n.SetPointer(ptr) + return n +} + +func (ptr *QQuickImageProvider) QQuickImageProviderPTR() *QQuickImageProvider { + return ptr +} + +func NewQQuickImageProvider(ty qml.QQmlImageProviderBase__ImageType, flags qml.QQmlImageProviderBase__Flag) *QQuickImageProvider { + return QQuickImageProviderFromPointer(unsafe.Pointer(C.QQuickImageProvider_NewQQuickImageProvider(C.int(ty), C.int(flags)))) +} + +func (ptr *QQuickImageProvider) Flags() qml.QQmlImageProviderBase__Flag { + if ptr.Pointer() != nil { + return qml.QQmlImageProviderBase__Flag(C.QQuickImageProvider_Flags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QQuickImageProvider) ImageType() qml.QQmlImageProviderBase__ImageType { + if ptr.Pointer() != nil { + return qml.QQmlImageProviderBase__ImageType(C.QQuickImageProvider_ImageType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QQuickImageProvider) DestroyQQuickImageProvider() { + if ptr.Pointer() != nil { + C.QQuickImageProvider_DestroyQQuickImageProvider(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/quick/qquickimageprovider.h b/quick/qquickimageprovider.h new file mode 100755 index 00000000..7bf2bd69 --- /dev/null +++ b/quick/qquickimageprovider.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QQuickImageProvider_NewQQuickImageProvider(int ty, int flags); +int QQuickImageProvider_Flags(QtObjectPtr ptr); +int QQuickImageProvider_ImageType(QtObjectPtr ptr); +void QQuickImageProvider_DestroyQQuickImageProvider(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qquickitem.cpp b/quick/qquickitem.cpp new file mode 100755 index 00000000..1d8a03f5 --- /dev/null +++ b/quick/qquickitem.cpp @@ -0,0 +1,259 @@ +#include "qquickitem.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQuickItem: public QQuickItem { +public: +void Signal_WindowChanged(QQuickWindow * window){callbackQQuickItemWindowChanged(this->objectName().toUtf8().data(), window);}; +}; + +QtObjectPtr QQuickItem_NewQQuickItem(QtObjectPtr parent){ + return new QQuickItem(static_cast(parent)); +} + +int QQuickItem_ActiveFocusOnTab(QtObjectPtr ptr){ + return static_cast(ptr)->activeFocusOnTab(); +} + +int QQuickItem_Antialiasing(QtObjectPtr ptr){ + return static_cast(ptr)->antialiasing(); +} + +int QQuickItem_Clip(QtObjectPtr ptr){ + return static_cast(ptr)->clip(); +} + +int QQuickItem_HasActiveFocus(QtObjectPtr ptr){ + return static_cast(ptr)->hasActiveFocus(); +} + +int QQuickItem_HasFocus(QtObjectPtr ptr){ + return static_cast(ptr)->hasFocus(); +} + +int QQuickItem_IsEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isEnabled(); +} + +int QQuickItem_IsTextureProvider(QtObjectPtr ptr){ + return static_cast(ptr)->isTextureProvider(); +} + +int QQuickItem_IsVisible(QtObjectPtr ptr){ + return static_cast(ptr)->isVisible(); +} + +QtObjectPtr QQuickItem_ParentItem(QtObjectPtr ptr){ + return static_cast(ptr)->parentItem(); +} + +void QQuickItem_ResetAntialiasing(QtObjectPtr ptr){ + static_cast(ptr)->resetAntialiasing(); +} + +void QQuickItem_ResetHeight(QtObjectPtr ptr){ + static_cast(ptr)->resetHeight(); +} + +void QQuickItem_ResetWidth(QtObjectPtr ptr){ + static_cast(ptr)->resetWidth(); +} + +void QQuickItem_SetActiveFocusOnTab(QtObjectPtr ptr, int v){ + static_cast(ptr)->setActiveFocusOnTab(v != 0); +} + +void QQuickItem_SetAntialiasing(QtObjectPtr ptr, int v){ + static_cast(ptr)->setAntialiasing(v != 0); +} + +void QQuickItem_SetClip(QtObjectPtr ptr, int v){ + static_cast(ptr)->setClip(v != 0); +} + +void QQuickItem_SetEnabled(QtObjectPtr ptr, int v){ + static_cast(ptr)->setEnabled(v != 0); +} + +void QQuickItem_SetFocus(QtObjectPtr ptr, int v){ + static_cast(ptr)->setFocus(v != 0); +} + +void QQuickItem_SetFocus2(QtObjectPtr ptr, int focus, int reason){ + static_cast(ptr)->setFocus(focus != 0, static_cast(reason)); +} + +void QQuickItem_SetParentItem(QtObjectPtr ptr, QtObjectPtr parent){ + static_cast(ptr)->setParentItem(static_cast(parent)); +} + +void QQuickItem_SetSmooth(QtObjectPtr ptr, int v){ + static_cast(ptr)->setSmooth(v != 0); +} + +void QQuickItem_SetState(QtObjectPtr ptr, char* v){ + static_cast(ptr)->setState(QString(v)); +} + +void QQuickItem_SetTransformOrigin(QtObjectPtr ptr, int v){ + static_cast(ptr)->setTransformOrigin(static_cast(v)); +} + +void QQuickItem_SetVisible(QtObjectPtr ptr, int v){ + static_cast(ptr)->setVisible(v != 0); +} + +int QQuickItem_Smooth(QtObjectPtr ptr){ + return static_cast(ptr)->smooth(); +} + +QtObjectPtr QQuickItem_TextureProvider(QtObjectPtr ptr){ + return static_cast(ptr)->textureProvider(); +} + +int QQuickItem_TransformOrigin(QtObjectPtr ptr){ + return static_cast(ptr)->transformOrigin(); +} + +int QQuickItem_AcceptHoverEvents(QtObjectPtr ptr){ + return static_cast(ptr)->acceptHoverEvents(); +} + +int QQuickItem_AcceptedMouseButtons(QtObjectPtr ptr){ + return static_cast(ptr)->acceptedMouseButtons(); +} + +int QQuickItem_Contains(QtObjectPtr ptr, QtObjectPtr point){ + return static_cast(ptr)->contains(*static_cast(point)); +} + +int QQuickItem_FiltersChildMouseEvents(QtObjectPtr ptr){ + return static_cast(ptr)->filtersChildMouseEvents(); +} + +int QQuickItem_Flags(QtObjectPtr ptr){ + return static_cast(ptr)->flags(); +} + +void QQuickItem_ForceActiveFocus(QtObjectPtr ptr){ + static_cast(ptr)->forceActiveFocus(); +} + +void QQuickItem_ForceActiveFocus2(QtObjectPtr ptr, int reason){ + static_cast(ptr)->forceActiveFocus(static_cast(reason)); +} + +void QQuickItem_GrabMouse(QtObjectPtr ptr){ + static_cast(ptr)->grabMouse(); +} + +char* QQuickItem_InputMethodQuery(QtObjectPtr ptr, int query){ + return static_cast(ptr)->inputMethodQuery(static_cast(query)).toString().toUtf8().data(); +} + +int QQuickItem_IsFocusScope(QtObjectPtr ptr){ + return static_cast(ptr)->isFocusScope(); +} + +int QQuickItem_KeepMouseGrab(QtObjectPtr ptr){ + return static_cast(ptr)->keepMouseGrab(); +} + +int QQuickItem_KeepTouchGrab(QtObjectPtr ptr){ + return static_cast(ptr)->keepTouchGrab(); +} + +QtObjectPtr QQuickItem_NextItemInFocusChain(QtObjectPtr ptr, int forward){ + return static_cast(ptr)->nextItemInFocusChain(forward != 0); +} + +void QQuickItem_Polish(QtObjectPtr ptr){ + static_cast(ptr)->polish(); +} + +QtObjectPtr QQuickItem_ScopedFocusItem(QtObjectPtr ptr){ + return static_cast(ptr)->scopedFocusItem(); +} + +void QQuickItem_SetAcceptHoverEvents(QtObjectPtr ptr, int enabled){ + static_cast(ptr)->setAcceptHoverEvents(enabled != 0); +} + +void QQuickItem_SetAcceptedMouseButtons(QtObjectPtr ptr, int buttons){ + static_cast(ptr)->setAcceptedMouseButtons(static_cast(buttons)); +} + +void QQuickItem_SetCursor(QtObjectPtr ptr, QtObjectPtr cursor){ + static_cast(ptr)->setCursor(*static_cast(cursor)); +} + +void QQuickItem_SetFiltersChildMouseEvents(QtObjectPtr ptr, int filter){ + static_cast(ptr)->setFiltersChildMouseEvents(filter != 0); +} + +void QQuickItem_SetFlag(QtObjectPtr ptr, int flag, int enabled){ + static_cast(ptr)->setFlag(static_cast(flag), enabled != 0); +} + +void QQuickItem_SetFlags(QtObjectPtr ptr, int flags){ + static_cast(ptr)->setFlags(static_cast(flags)); +} + +void QQuickItem_SetKeepMouseGrab(QtObjectPtr ptr, int keep){ + static_cast(ptr)->setKeepMouseGrab(keep != 0); +} + +void QQuickItem_SetKeepTouchGrab(QtObjectPtr ptr, int keep){ + static_cast(ptr)->setKeepTouchGrab(keep != 0); +} + +void QQuickItem_StackAfter(QtObjectPtr ptr, QtObjectPtr sibling){ + static_cast(ptr)->stackAfter(static_cast(sibling)); +} + +void QQuickItem_StackBefore(QtObjectPtr ptr, QtObjectPtr sibling){ + static_cast(ptr)->stackBefore(static_cast(sibling)); +} + +void QQuickItem_UngrabMouse(QtObjectPtr ptr){ + static_cast(ptr)->ungrabMouse(); +} + +void QQuickItem_UngrabTouchPoints(QtObjectPtr ptr){ + static_cast(ptr)->ungrabTouchPoints(); +} + +void QQuickItem_UnsetCursor(QtObjectPtr ptr){ + static_cast(ptr)->unsetCursor(); +} + +void QQuickItem_Update(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "update"); +} + +QtObjectPtr QQuickItem_Window(QtObjectPtr ptr){ + return static_cast(ptr)->window(); +} + +void QQuickItem_ConnectWindowChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQuickItem::windowChanged), static_cast(ptr), static_cast(&MyQQuickItem::Signal_WindowChanged));; +} + +void QQuickItem_DisconnectWindowChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQuickItem::windowChanged), static_cast(ptr), static_cast(&MyQQuickItem::Signal_WindowChanged));; +} + +void QQuickItem_DestroyQQuickItem(QtObjectPtr ptr){ + static_cast(ptr)->~QQuickItem(); +} + diff --git a/quick/qquickitem.go b/quick/qquickitem.go new file mode 100755 index 00000000..c9573b94 --- /dev/null +++ b/quick/qquickitem.go @@ -0,0 +1,482 @@ +package quick + +//#include "qquickitem.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "github.com/therecipe/qt/qml" + "unsafe" +) + +type QQuickItem struct { + core.QObject + qml.QQmlParserStatus +} + +type QQuickItemITF interface { + core.QObjectITF + qml.QQmlParserStatusITF + QQuickItemPTR() *QQuickItem +} + +func (p *QQuickItem) Pointer() unsafe.Pointer { + return p.QObjectPTR().Pointer() +} + +func (p *QQuickItem) SetPointer(ptr unsafe.Pointer) { + p.QObjectPTR().SetPointer(ptr) + p.QQmlParserStatusPTR().SetPointer(ptr) +} + +func PointerFromQQuickItem(ptr QQuickItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQuickItemPTR().Pointer() + } + return nil +} + +func QQuickItemFromPointer(ptr unsafe.Pointer) *QQuickItem { + var n = new(QQuickItem) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QQuickItem_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QQuickItem) QQuickItemPTR() *QQuickItem { + return ptr +} + +//QQuickItem::Flag +type QQuickItem__Flag int + +var ( + QQuickItem__ItemClipsChildrenToShape = QQuickItem__Flag(0x01) + QQuickItem__ItemAcceptsInputMethod = QQuickItem__Flag(0x02) + QQuickItem__ItemIsFocusScope = QQuickItem__Flag(0x04) + QQuickItem__ItemHasContents = QQuickItem__Flag(0x08) + QQuickItem__ItemAcceptsDrops = QQuickItem__Flag(0x10) +) + +//QQuickItem::ItemChange +type QQuickItem__ItemChange int + +var ( + QQuickItem__ItemChildAddedChange = QQuickItem__ItemChange(0) + QQuickItem__ItemChildRemovedChange = QQuickItem__ItemChange(1) + QQuickItem__ItemSceneChange = QQuickItem__ItemChange(2) + QQuickItem__ItemVisibleHasChanged = QQuickItem__ItemChange(3) + QQuickItem__ItemParentHasChanged = QQuickItem__ItemChange(4) + QQuickItem__ItemOpacityHasChanged = QQuickItem__ItemChange(5) + QQuickItem__ItemActiveFocusHasChanged = QQuickItem__ItemChange(6) + QQuickItem__ItemRotationHasChanged = QQuickItem__ItemChange(7) + QQuickItem__ItemAntialiasingHasChanged = QQuickItem__ItemChange(8) +) + +//QQuickItem::TransformOrigin +type QQuickItem__TransformOrigin int + +var ( + QQuickItem__TopLeft = QQuickItem__TransformOrigin(0) + QQuickItem__Top = QQuickItem__TransformOrigin(1) + QQuickItem__TopRight = QQuickItem__TransformOrigin(2) + QQuickItem__Left = QQuickItem__TransformOrigin(3) + QQuickItem__Center = QQuickItem__TransformOrigin(4) + QQuickItem__Right = QQuickItem__TransformOrigin(5) + QQuickItem__BottomLeft = QQuickItem__TransformOrigin(6) + QQuickItem__Bottom = QQuickItem__TransformOrigin(7) + QQuickItem__BottomRight = QQuickItem__TransformOrigin(8) +) + +func NewQQuickItem(parent QQuickItemITF) *QQuickItem { + return QQuickItemFromPointer(unsafe.Pointer(C.QQuickItem_NewQQuickItem(C.QtObjectPtr(PointerFromQQuickItem(parent))))) +} + +func (ptr *QQuickItem) ActiveFocusOnTab() bool { + if ptr.Pointer() != nil { + return C.QQuickItem_ActiveFocusOnTab(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQuickItem) Antialiasing() bool { + if ptr.Pointer() != nil { + return C.QQuickItem_Antialiasing(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQuickItem) Clip() bool { + if ptr.Pointer() != nil { + return C.QQuickItem_Clip(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQuickItem) HasActiveFocus() bool { + if ptr.Pointer() != nil { + return C.QQuickItem_HasActiveFocus(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQuickItem) HasFocus() bool { + if ptr.Pointer() != nil { + return C.QQuickItem_HasFocus(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQuickItem) IsEnabled() bool { + if ptr.Pointer() != nil { + return C.QQuickItem_IsEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQuickItem) IsTextureProvider() bool { + if ptr.Pointer() != nil { + return C.QQuickItem_IsTextureProvider(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQuickItem) IsVisible() bool { + if ptr.Pointer() != nil { + return C.QQuickItem_IsVisible(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQuickItem) ParentItem() *QQuickItem { + if ptr.Pointer() != nil { + return QQuickItemFromPointer(unsafe.Pointer(C.QQuickItem_ParentItem(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQuickItem) ResetAntialiasing() { + if ptr.Pointer() != nil { + C.QQuickItem_ResetAntialiasing(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QQuickItem) ResetHeight() { + if ptr.Pointer() != nil { + C.QQuickItem_ResetHeight(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QQuickItem) ResetWidth() { + if ptr.Pointer() != nil { + C.QQuickItem_ResetWidth(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QQuickItem) SetActiveFocusOnTab(v bool) { + if ptr.Pointer() != nil { + C.QQuickItem_SetActiveFocusOnTab(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QQuickItem) SetAntialiasing(v bool) { + if ptr.Pointer() != nil { + C.QQuickItem_SetAntialiasing(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QQuickItem) SetClip(v bool) { + if ptr.Pointer() != nil { + C.QQuickItem_SetClip(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QQuickItem) SetEnabled(v bool) { + if ptr.Pointer() != nil { + C.QQuickItem_SetEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QQuickItem) SetFocus(v bool) { + if ptr.Pointer() != nil { + C.QQuickItem_SetFocus(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QQuickItem) SetFocus2(focus bool, reason core.Qt__FocusReason) { + if ptr.Pointer() != nil { + C.QQuickItem_SetFocus2(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(focus)), C.int(reason)) + } +} + +func (ptr *QQuickItem) SetParentItem(parent QQuickItemITF) { + if ptr.Pointer() != nil { + C.QQuickItem_SetParentItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQQuickItem(parent))) + } +} + +func (ptr *QQuickItem) SetSmooth(v bool) { + if ptr.Pointer() != nil { + C.QQuickItem_SetSmooth(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QQuickItem) SetState(v string) { + if ptr.Pointer() != nil { + C.QQuickItem_SetState(C.QtObjectPtr(ptr.Pointer()), C.CString(v)) + } +} + +func (ptr *QQuickItem) SetTransformOrigin(v QQuickItem__TransformOrigin) { + if ptr.Pointer() != nil { + C.QQuickItem_SetTransformOrigin(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QQuickItem) SetVisible(v bool) { + if ptr.Pointer() != nil { + C.QQuickItem_SetVisible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QQuickItem) Smooth() bool { + if ptr.Pointer() != nil { + return C.QQuickItem_Smooth(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQuickItem) TextureProvider() *QSGTextureProvider { + if ptr.Pointer() != nil { + return QSGTextureProviderFromPointer(unsafe.Pointer(C.QQuickItem_TextureProvider(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQuickItem) TransformOrigin() QQuickItem__TransformOrigin { + if ptr.Pointer() != nil { + return QQuickItem__TransformOrigin(C.QQuickItem_TransformOrigin(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QQuickItem) AcceptHoverEvents() bool { + if ptr.Pointer() != nil { + return C.QQuickItem_AcceptHoverEvents(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQuickItem) AcceptedMouseButtons() core.Qt__MouseButton { + if ptr.Pointer() != nil { + return core.Qt__MouseButton(C.QQuickItem_AcceptedMouseButtons(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QQuickItem) Contains(point core.QPointFITF) bool { + if ptr.Pointer() != nil { + return C.QQuickItem_Contains(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(point))) != 0 + } + return false +} + +func (ptr *QQuickItem) FiltersChildMouseEvents() bool { + if ptr.Pointer() != nil { + return C.QQuickItem_FiltersChildMouseEvents(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQuickItem) Flags() QQuickItem__Flag { + if ptr.Pointer() != nil { + return QQuickItem__Flag(C.QQuickItem_Flags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QQuickItem) ForceActiveFocus() { + if ptr.Pointer() != nil { + C.QQuickItem_ForceActiveFocus(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QQuickItem) ForceActiveFocus2(reason core.Qt__FocusReason) { + if ptr.Pointer() != nil { + C.QQuickItem_ForceActiveFocus2(C.QtObjectPtr(ptr.Pointer()), C.int(reason)) + } +} + +func (ptr *QQuickItem) GrabMouse() { + if ptr.Pointer() != nil { + C.QQuickItem_GrabMouse(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QQuickItem) InputMethodQuery(query core.Qt__InputMethodQuery) string { + if ptr.Pointer() != nil { + return C.GoString(C.QQuickItem_InputMethodQuery(C.QtObjectPtr(ptr.Pointer()), C.int(query))) + } + return "" +} + +func (ptr *QQuickItem) IsFocusScope() bool { + if ptr.Pointer() != nil { + return C.QQuickItem_IsFocusScope(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQuickItem) KeepMouseGrab() bool { + if ptr.Pointer() != nil { + return C.QQuickItem_KeepMouseGrab(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQuickItem) KeepTouchGrab() bool { + if ptr.Pointer() != nil { + return C.QQuickItem_KeepTouchGrab(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQuickItem) NextItemInFocusChain(forward bool) *QQuickItem { + if ptr.Pointer() != nil { + return QQuickItemFromPointer(unsafe.Pointer(C.QQuickItem_NextItemInFocusChain(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(forward))))) + } + return nil +} + +func (ptr *QQuickItem) Polish() { + if ptr.Pointer() != nil { + C.QQuickItem_Polish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QQuickItem) ScopedFocusItem() *QQuickItem { + if ptr.Pointer() != nil { + return QQuickItemFromPointer(unsafe.Pointer(C.QQuickItem_ScopedFocusItem(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQuickItem) SetAcceptHoverEvents(enabled bool) { + if ptr.Pointer() != nil { + C.QQuickItem_SetAcceptHoverEvents(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QQuickItem) SetAcceptedMouseButtons(buttons core.Qt__MouseButton) { + if ptr.Pointer() != nil { + C.QQuickItem_SetAcceptedMouseButtons(C.QtObjectPtr(ptr.Pointer()), C.int(buttons)) + } +} + +func (ptr *QQuickItem) SetCursor(cursor gui.QCursorITF) { + if ptr.Pointer() != nil { + C.QQuickItem_SetCursor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQCursor(cursor))) + } +} + +func (ptr *QQuickItem) SetFiltersChildMouseEvents(filter bool) { + if ptr.Pointer() != nil { + C.QQuickItem_SetFiltersChildMouseEvents(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(filter))) + } +} + +func (ptr *QQuickItem) SetFlag(flag QQuickItem__Flag, enabled bool) { + if ptr.Pointer() != nil { + C.QQuickItem_SetFlag(C.QtObjectPtr(ptr.Pointer()), C.int(flag), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QQuickItem) SetFlags(flags QQuickItem__Flag) { + if ptr.Pointer() != nil { + C.QQuickItem_SetFlags(C.QtObjectPtr(ptr.Pointer()), C.int(flags)) + } +} + +func (ptr *QQuickItem) SetKeepMouseGrab(keep bool) { + if ptr.Pointer() != nil { + C.QQuickItem_SetKeepMouseGrab(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(keep))) + } +} + +func (ptr *QQuickItem) SetKeepTouchGrab(keep bool) { + if ptr.Pointer() != nil { + C.QQuickItem_SetKeepTouchGrab(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(keep))) + } +} + +func (ptr *QQuickItem) StackAfter(sibling QQuickItemITF) { + if ptr.Pointer() != nil { + C.QQuickItem_StackAfter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQQuickItem(sibling))) + } +} + +func (ptr *QQuickItem) StackBefore(sibling QQuickItemITF) { + if ptr.Pointer() != nil { + C.QQuickItem_StackBefore(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQQuickItem(sibling))) + } +} + +func (ptr *QQuickItem) UngrabMouse() { + if ptr.Pointer() != nil { + C.QQuickItem_UngrabMouse(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QQuickItem) UngrabTouchPoints() { + if ptr.Pointer() != nil { + C.QQuickItem_UngrabTouchPoints(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QQuickItem) UnsetCursor() { + if ptr.Pointer() != nil { + C.QQuickItem_UnsetCursor(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QQuickItem) Update() { + if ptr.Pointer() != nil { + C.QQuickItem_Update(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QQuickItem) Window() *QQuickWindow { + if ptr.Pointer() != nil { + return QQuickWindowFromPointer(unsafe.Pointer(C.QQuickItem_Window(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQuickItem) ConnectWindowChanged(f func(window QQuickWindowITF)) { + if ptr.Pointer() != nil { + C.QQuickItem_ConnectWindowChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "windowChanged", f) + } +} + +func (ptr *QQuickItem) DisconnectWindowChanged() { + if ptr.Pointer() != nil { + C.QQuickItem_DisconnectWindowChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "windowChanged") + } +} + +//export callbackQQuickItemWindowChanged +func callbackQQuickItemWindowChanged(ptrName *C.char, window unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "windowChanged").(func(*QQuickWindow))(QQuickWindowFromPointer(window)) +} + +func (ptr *QQuickItem) DestroyQQuickItem() { + if ptr.Pointer() != nil { + C.QQuickItem_DestroyQQuickItem(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/quick/qquickitem.h b/quick/qquickitem.h new file mode 100755 index 00000000..d21ab8e4 --- /dev/null +++ b/quick/qquickitem.h @@ -0,0 +1,69 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QQuickItem_NewQQuickItem(QtObjectPtr parent); +int QQuickItem_ActiveFocusOnTab(QtObjectPtr ptr); +int QQuickItem_Antialiasing(QtObjectPtr ptr); +int QQuickItem_Clip(QtObjectPtr ptr); +int QQuickItem_HasActiveFocus(QtObjectPtr ptr); +int QQuickItem_HasFocus(QtObjectPtr ptr); +int QQuickItem_IsEnabled(QtObjectPtr ptr); +int QQuickItem_IsTextureProvider(QtObjectPtr ptr); +int QQuickItem_IsVisible(QtObjectPtr ptr); +QtObjectPtr QQuickItem_ParentItem(QtObjectPtr ptr); +void QQuickItem_ResetAntialiasing(QtObjectPtr ptr); +void QQuickItem_ResetHeight(QtObjectPtr ptr); +void QQuickItem_ResetWidth(QtObjectPtr ptr); +void QQuickItem_SetActiveFocusOnTab(QtObjectPtr ptr, int v); +void QQuickItem_SetAntialiasing(QtObjectPtr ptr, int v); +void QQuickItem_SetClip(QtObjectPtr ptr, int v); +void QQuickItem_SetEnabled(QtObjectPtr ptr, int v); +void QQuickItem_SetFocus(QtObjectPtr ptr, int v); +void QQuickItem_SetFocus2(QtObjectPtr ptr, int focus, int reason); +void QQuickItem_SetParentItem(QtObjectPtr ptr, QtObjectPtr parent); +void QQuickItem_SetSmooth(QtObjectPtr ptr, int v); +void QQuickItem_SetState(QtObjectPtr ptr, char* v); +void QQuickItem_SetTransformOrigin(QtObjectPtr ptr, int v); +void QQuickItem_SetVisible(QtObjectPtr ptr, int v); +int QQuickItem_Smooth(QtObjectPtr ptr); +QtObjectPtr QQuickItem_TextureProvider(QtObjectPtr ptr); +int QQuickItem_TransformOrigin(QtObjectPtr ptr); +int QQuickItem_AcceptHoverEvents(QtObjectPtr ptr); +int QQuickItem_AcceptedMouseButtons(QtObjectPtr ptr); +int QQuickItem_Contains(QtObjectPtr ptr, QtObjectPtr point); +int QQuickItem_FiltersChildMouseEvents(QtObjectPtr ptr); +int QQuickItem_Flags(QtObjectPtr ptr); +void QQuickItem_ForceActiveFocus(QtObjectPtr ptr); +void QQuickItem_ForceActiveFocus2(QtObjectPtr ptr, int reason); +void QQuickItem_GrabMouse(QtObjectPtr ptr); +char* QQuickItem_InputMethodQuery(QtObjectPtr ptr, int query); +int QQuickItem_IsFocusScope(QtObjectPtr ptr); +int QQuickItem_KeepMouseGrab(QtObjectPtr ptr); +int QQuickItem_KeepTouchGrab(QtObjectPtr ptr); +QtObjectPtr QQuickItem_NextItemInFocusChain(QtObjectPtr ptr, int forward); +void QQuickItem_Polish(QtObjectPtr ptr); +QtObjectPtr QQuickItem_ScopedFocusItem(QtObjectPtr ptr); +void QQuickItem_SetAcceptHoverEvents(QtObjectPtr ptr, int enabled); +void QQuickItem_SetAcceptedMouseButtons(QtObjectPtr ptr, int buttons); +void QQuickItem_SetCursor(QtObjectPtr ptr, QtObjectPtr cursor); +void QQuickItem_SetFiltersChildMouseEvents(QtObjectPtr ptr, int filter); +void QQuickItem_SetFlag(QtObjectPtr ptr, int flag, int enabled); +void QQuickItem_SetFlags(QtObjectPtr ptr, int flags); +void QQuickItem_SetKeepMouseGrab(QtObjectPtr ptr, int keep); +void QQuickItem_SetKeepTouchGrab(QtObjectPtr ptr, int keep); +void QQuickItem_StackAfter(QtObjectPtr ptr, QtObjectPtr sibling); +void QQuickItem_StackBefore(QtObjectPtr ptr, QtObjectPtr sibling); +void QQuickItem_UngrabMouse(QtObjectPtr ptr); +void QQuickItem_UngrabTouchPoints(QtObjectPtr ptr); +void QQuickItem_UnsetCursor(QtObjectPtr ptr); +void QQuickItem_Update(QtObjectPtr ptr); +QtObjectPtr QQuickItem_Window(QtObjectPtr ptr); +void QQuickItem_ConnectWindowChanged(QtObjectPtr ptr); +void QQuickItem_DisconnectWindowChanged(QtObjectPtr ptr); +void QQuickItem_DestroyQQuickItem(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qquickitemgrabresult.cpp b/quick/qquickitemgrabresult.cpp new file mode 100755 index 00000000..9de0b00c --- /dev/null +++ b/quick/qquickitemgrabresult.cpp @@ -0,0 +1,31 @@ +#include "qquickitemgrabresult.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQuickItemGrabResult: public QQuickItemGrabResult { +public: +void Signal_Ready(){callbackQQuickItemGrabResultReady(this->objectName().toUtf8().data());}; +}; + +char* QQuickItemGrabResult_Url(QtObjectPtr ptr){ + return static_cast(ptr)->url().toString().toUtf8().data(); +} + +void QQuickItemGrabResult_ConnectReady(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQuickItemGrabResult::ready), static_cast(ptr), static_cast(&MyQQuickItemGrabResult::Signal_Ready));; +} + +void QQuickItemGrabResult_DisconnectReady(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQuickItemGrabResult::ready), static_cast(ptr), static_cast(&MyQQuickItemGrabResult::Signal_Ready));; +} + +int QQuickItemGrabResult_SaveToFile(QtObjectPtr ptr, char* fileName){ + return static_cast(ptr)->saveToFile(QString(fileName)); +} + diff --git a/quick/qquickitemgrabresult.go b/quick/qquickitemgrabresult.go new file mode 100755 index 00000000..a1a8ca59 --- /dev/null +++ b/quick/qquickitemgrabresult.go @@ -0,0 +1,71 @@ +package quick + +//#include "qquickitemgrabresult.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QQuickItemGrabResult struct { + core.QObject +} + +type QQuickItemGrabResultITF interface { + core.QObjectITF + QQuickItemGrabResultPTR() *QQuickItemGrabResult +} + +func PointerFromQQuickItemGrabResult(ptr QQuickItemGrabResultITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQuickItemGrabResultPTR().Pointer() + } + return nil +} + +func QQuickItemGrabResultFromPointer(ptr unsafe.Pointer) *QQuickItemGrabResult { + var n = new(QQuickItemGrabResult) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QQuickItemGrabResult_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QQuickItemGrabResult) QQuickItemGrabResultPTR() *QQuickItemGrabResult { + return ptr +} + +func (ptr *QQuickItemGrabResult) Url() string { + if ptr.Pointer() != nil { + return C.GoString(C.QQuickItemGrabResult_Url(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QQuickItemGrabResult) ConnectReady(f func()) { + if ptr.Pointer() != nil { + C.QQuickItemGrabResult_ConnectReady(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "ready", f) + } +} + +func (ptr *QQuickItemGrabResult) DisconnectReady() { + if ptr.Pointer() != nil { + C.QQuickItemGrabResult_DisconnectReady(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "ready") + } +} + +//export callbackQQuickItemGrabResultReady +func callbackQQuickItemGrabResultReady(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "ready").(func())() +} + +func (ptr *QQuickItemGrabResult) SaveToFile(fileName string) bool { + if ptr.Pointer() != nil { + return C.QQuickItemGrabResult_SaveToFile(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName)) != 0 + } + return false +} diff --git a/quick/qquickitemgrabresult.h b/quick/qquickitemgrabresult.h new file mode 100755 index 00000000..127f7e40 --- /dev/null +++ b/quick/qquickitemgrabresult.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QQuickItemGrabResult_Url(QtObjectPtr ptr); +void QQuickItemGrabResult_ConnectReady(QtObjectPtr ptr); +void QQuickItemGrabResult_DisconnectReady(QtObjectPtr ptr); +int QQuickItemGrabResult_SaveToFile(QtObjectPtr ptr, char* fileName); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qquickpainteditem.cpp b/quick/qquickpainteditem.cpp new file mode 100755 index 00000000..c23f4460 --- /dev/null +++ b/quick/qquickpainteditem.cpp @@ -0,0 +1,129 @@ +#include "qquickpainteditem.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQuickPaintedItem: public QQuickPaintedItem { +public: +void Signal_ContentsScaleChanged(){callbackQQuickPaintedItemContentsScaleChanged(this->objectName().toUtf8().data());}; +void Signal_ContentsSizeChanged(){callbackQQuickPaintedItemContentsSizeChanged(this->objectName().toUtf8().data());}; +void Signal_FillColorChanged(){callbackQQuickPaintedItemFillColorChanged(this->objectName().toUtf8().data());}; +void Signal_RenderTargetChanged(){callbackQQuickPaintedItemRenderTargetChanged(this->objectName().toUtf8().data());}; +}; + +int QQuickPaintedItem_RenderTarget(QtObjectPtr ptr){ + return static_cast(ptr)->renderTarget(); +} + +void QQuickPaintedItem_SetContentsSize(QtObjectPtr ptr, QtObjectPtr v){ + static_cast(ptr)->setContentsSize(*static_cast(v)); +} + +void QQuickPaintedItem_SetFillColor(QtObjectPtr ptr, QtObjectPtr v){ + static_cast(ptr)->setFillColor(*static_cast(v)); +} + +void QQuickPaintedItem_SetRenderTarget(QtObjectPtr ptr, int target){ + static_cast(ptr)->setRenderTarget(static_cast(target)); +} + +int QQuickPaintedItem_Antialiasing(QtObjectPtr ptr){ + return static_cast(ptr)->antialiasing(); +} + +void QQuickPaintedItem_ConnectContentsScaleChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQuickPaintedItem::contentsScaleChanged), static_cast(ptr), static_cast(&MyQQuickPaintedItem::Signal_ContentsScaleChanged));; +} + +void QQuickPaintedItem_DisconnectContentsScaleChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQuickPaintedItem::contentsScaleChanged), static_cast(ptr), static_cast(&MyQQuickPaintedItem::Signal_ContentsScaleChanged));; +} + +void QQuickPaintedItem_ConnectContentsSizeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQuickPaintedItem::contentsSizeChanged), static_cast(ptr), static_cast(&MyQQuickPaintedItem::Signal_ContentsSizeChanged));; +} + +void QQuickPaintedItem_DisconnectContentsSizeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQuickPaintedItem::contentsSizeChanged), static_cast(ptr), static_cast(&MyQQuickPaintedItem::Signal_ContentsSizeChanged));; +} + +void QQuickPaintedItem_ConnectFillColorChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQuickPaintedItem::fillColorChanged), static_cast(ptr), static_cast(&MyQQuickPaintedItem::Signal_FillColorChanged));; +} + +void QQuickPaintedItem_DisconnectFillColorChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQuickPaintedItem::fillColorChanged), static_cast(ptr), static_cast(&MyQQuickPaintedItem::Signal_FillColorChanged));; +} + +int QQuickPaintedItem_IsTextureProvider(QtObjectPtr ptr){ + return static_cast(ptr)->isTextureProvider(); +} + +int QQuickPaintedItem_Mipmap(QtObjectPtr ptr){ + return static_cast(ptr)->mipmap(); +} + +int QQuickPaintedItem_OpaquePainting(QtObjectPtr ptr){ + return static_cast(ptr)->opaquePainting(); +} + +void QQuickPaintedItem_Paint(QtObjectPtr ptr, QtObjectPtr painter){ + static_cast(ptr)->paint(static_cast(painter)); +} + +int QQuickPaintedItem_PerformanceHints(QtObjectPtr ptr){ + return static_cast(ptr)->performanceHints(); +} + +void QQuickPaintedItem_ConnectRenderTargetChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQuickPaintedItem::renderTargetChanged), static_cast(ptr), static_cast(&MyQQuickPaintedItem::Signal_RenderTargetChanged));; +} + +void QQuickPaintedItem_DisconnectRenderTargetChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQuickPaintedItem::renderTargetChanged), static_cast(ptr), static_cast(&MyQQuickPaintedItem::Signal_RenderTargetChanged));; +} + +void QQuickPaintedItem_ResetContentsSize(QtObjectPtr ptr){ + static_cast(ptr)->resetContentsSize(); +} + +void QQuickPaintedItem_SetAntialiasing(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setAntialiasing(enable != 0); +} + +void QQuickPaintedItem_SetMipmap(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setMipmap(enable != 0); +} + +void QQuickPaintedItem_SetOpaquePainting(QtObjectPtr ptr, int opaque){ + static_cast(ptr)->setOpaquePainting(opaque != 0); +} + +void QQuickPaintedItem_SetPerformanceHint(QtObjectPtr ptr, int hint, int enabled){ + static_cast(ptr)->setPerformanceHint(static_cast(hint), enabled != 0); +} + +void QQuickPaintedItem_SetPerformanceHints(QtObjectPtr ptr, int hints){ + static_cast(ptr)->setPerformanceHints(static_cast(hints)); +} + +QtObjectPtr QQuickPaintedItem_TextureProvider(QtObjectPtr ptr){ + return static_cast(ptr)->textureProvider(); +} + +void QQuickPaintedItem_Update(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->update(*static_cast(rect)); +} + +void QQuickPaintedItem_DestroyQQuickPaintedItem(QtObjectPtr ptr){ + static_cast(ptr)->~QQuickPaintedItem(); +} + diff --git a/quick/qquickpainteditem.go b/quick/qquickpainteditem.go new file mode 100755 index 00000000..7d251c14 --- /dev/null +++ b/quick/qquickpainteditem.go @@ -0,0 +1,253 @@ +package quick + +//#include "qquickpainteditem.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QQuickPaintedItem struct { + QQuickItem +} + +type QQuickPaintedItemITF interface { + QQuickItemITF + QQuickPaintedItemPTR() *QQuickPaintedItem +} + +func PointerFromQQuickPaintedItem(ptr QQuickPaintedItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQuickPaintedItemPTR().Pointer() + } + return nil +} + +func QQuickPaintedItemFromPointer(ptr unsafe.Pointer) *QQuickPaintedItem { + var n = new(QQuickPaintedItem) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QQuickPaintedItem_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QQuickPaintedItem) QQuickPaintedItemPTR() *QQuickPaintedItem { + return ptr +} + +//QQuickPaintedItem::PerformanceHint +type QQuickPaintedItem__PerformanceHint int + +var ( + QQuickPaintedItem__FastFBOResizing = QQuickPaintedItem__PerformanceHint(0x1) +) + +//QQuickPaintedItem::RenderTarget +type QQuickPaintedItem__RenderTarget int + +var ( + QQuickPaintedItem__Image = QQuickPaintedItem__RenderTarget(0) + QQuickPaintedItem__FramebufferObject = QQuickPaintedItem__RenderTarget(1) + QQuickPaintedItem__InvertedYFramebufferObject = QQuickPaintedItem__RenderTarget(2) +) + +func (ptr *QQuickPaintedItem) RenderTarget() QQuickPaintedItem__RenderTarget { + if ptr.Pointer() != nil { + return QQuickPaintedItem__RenderTarget(C.QQuickPaintedItem_RenderTarget(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QQuickPaintedItem) SetContentsSize(v core.QSizeITF) { + if ptr.Pointer() != nil { + C.QQuickPaintedItem_SetContentsSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(v))) + } +} + +func (ptr *QQuickPaintedItem) SetFillColor(v gui.QColorITF) { + if ptr.Pointer() != nil { + C.QQuickPaintedItem_SetFillColor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQColor(v))) + } +} + +func (ptr *QQuickPaintedItem) SetRenderTarget(target QQuickPaintedItem__RenderTarget) { + if ptr.Pointer() != nil { + C.QQuickPaintedItem_SetRenderTarget(C.QtObjectPtr(ptr.Pointer()), C.int(target)) + } +} + +func (ptr *QQuickPaintedItem) Antialiasing() bool { + if ptr.Pointer() != nil { + return C.QQuickPaintedItem_Antialiasing(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQuickPaintedItem) ConnectContentsScaleChanged(f func()) { + if ptr.Pointer() != nil { + C.QQuickPaintedItem_ConnectContentsScaleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "contentsScaleChanged", f) + } +} + +func (ptr *QQuickPaintedItem) DisconnectContentsScaleChanged() { + if ptr.Pointer() != nil { + C.QQuickPaintedItem_DisconnectContentsScaleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "contentsScaleChanged") + } +} + +//export callbackQQuickPaintedItemContentsScaleChanged +func callbackQQuickPaintedItemContentsScaleChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "contentsScaleChanged").(func())() +} + +func (ptr *QQuickPaintedItem) ConnectContentsSizeChanged(f func()) { + if ptr.Pointer() != nil { + C.QQuickPaintedItem_ConnectContentsSizeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "contentsSizeChanged", f) + } +} + +func (ptr *QQuickPaintedItem) DisconnectContentsSizeChanged() { + if ptr.Pointer() != nil { + C.QQuickPaintedItem_DisconnectContentsSizeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "contentsSizeChanged") + } +} + +//export callbackQQuickPaintedItemContentsSizeChanged +func callbackQQuickPaintedItemContentsSizeChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "contentsSizeChanged").(func())() +} + +func (ptr *QQuickPaintedItem) ConnectFillColorChanged(f func()) { + if ptr.Pointer() != nil { + C.QQuickPaintedItem_ConnectFillColorChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "fillColorChanged", f) + } +} + +func (ptr *QQuickPaintedItem) DisconnectFillColorChanged() { + if ptr.Pointer() != nil { + C.QQuickPaintedItem_DisconnectFillColorChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "fillColorChanged") + } +} + +//export callbackQQuickPaintedItemFillColorChanged +func callbackQQuickPaintedItemFillColorChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "fillColorChanged").(func())() +} + +func (ptr *QQuickPaintedItem) IsTextureProvider() bool { + if ptr.Pointer() != nil { + return C.QQuickPaintedItem_IsTextureProvider(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQuickPaintedItem) Mipmap() bool { + if ptr.Pointer() != nil { + return C.QQuickPaintedItem_Mipmap(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQuickPaintedItem) OpaquePainting() bool { + if ptr.Pointer() != nil { + return C.QQuickPaintedItem_OpaquePainting(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQuickPaintedItem) Paint(painter gui.QPainterITF) { + if ptr.Pointer() != nil { + C.QQuickPaintedItem_Paint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter))) + } +} + +func (ptr *QQuickPaintedItem) PerformanceHints() QQuickPaintedItem__PerformanceHint { + if ptr.Pointer() != nil { + return QQuickPaintedItem__PerformanceHint(C.QQuickPaintedItem_PerformanceHints(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QQuickPaintedItem) ConnectRenderTargetChanged(f func()) { + if ptr.Pointer() != nil { + C.QQuickPaintedItem_ConnectRenderTargetChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "renderTargetChanged", f) + } +} + +func (ptr *QQuickPaintedItem) DisconnectRenderTargetChanged() { + if ptr.Pointer() != nil { + C.QQuickPaintedItem_DisconnectRenderTargetChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "renderTargetChanged") + } +} + +//export callbackQQuickPaintedItemRenderTargetChanged +func callbackQQuickPaintedItemRenderTargetChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "renderTargetChanged").(func())() +} + +func (ptr *QQuickPaintedItem) ResetContentsSize() { + if ptr.Pointer() != nil { + C.QQuickPaintedItem_ResetContentsSize(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QQuickPaintedItem) SetAntialiasing(enable bool) { + if ptr.Pointer() != nil { + C.QQuickPaintedItem_SetAntialiasing(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QQuickPaintedItem) SetMipmap(enable bool) { + if ptr.Pointer() != nil { + C.QQuickPaintedItem_SetMipmap(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QQuickPaintedItem) SetOpaquePainting(opaque bool) { + if ptr.Pointer() != nil { + C.QQuickPaintedItem_SetOpaquePainting(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(opaque))) + } +} + +func (ptr *QQuickPaintedItem) SetPerformanceHint(hint QQuickPaintedItem__PerformanceHint, enabled bool) { + if ptr.Pointer() != nil { + C.QQuickPaintedItem_SetPerformanceHint(C.QtObjectPtr(ptr.Pointer()), C.int(hint), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QQuickPaintedItem) SetPerformanceHints(hints QQuickPaintedItem__PerformanceHint) { + if ptr.Pointer() != nil { + C.QQuickPaintedItem_SetPerformanceHints(C.QtObjectPtr(ptr.Pointer()), C.int(hints)) + } +} + +func (ptr *QQuickPaintedItem) TextureProvider() *QSGTextureProvider { + if ptr.Pointer() != nil { + return QSGTextureProviderFromPointer(unsafe.Pointer(C.QQuickPaintedItem_TextureProvider(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQuickPaintedItem) Update(rect core.QRectITF) { + if ptr.Pointer() != nil { + C.QQuickPaintedItem_Update(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rect))) + } +} + +func (ptr *QQuickPaintedItem) DestroyQQuickPaintedItem() { + if ptr.Pointer() != nil { + C.QQuickPaintedItem_DestroyQQuickPaintedItem(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/quick/qquickpainteditem.h b/quick/qquickpainteditem.h new file mode 100755 index 00000000..c0c8c545 --- /dev/null +++ b/quick/qquickpainteditem.h @@ -0,0 +1,36 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QQuickPaintedItem_RenderTarget(QtObjectPtr ptr); +void QQuickPaintedItem_SetContentsSize(QtObjectPtr ptr, QtObjectPtr v); +void QQuickPaintedItem_SetFillColor(QtObjectPtr ptr, QtObjectPtr v); +void QQuickPaintedItem_SetRenderTarget(QtObjectPtr ptr, int target); +int QQuickPaintedItem_Antialiasing(QtObjectPtr ptr); +void QQuickPaintedItem_ConnectContentsScaleChanged(QtObjectPtr ptr); +void QQuickPaintedItem_DisconnectContentsScaleChanged(QtObjectPtr ptr); +void QQuickPaintedItem_ConnectContentsSizeChanged(QtObjectPtr ptr); +void QQuickPaintedItem_DisconnectContentsSizeChanged(QtObjectPtr ptr); +void QQuickPaintedItem_ConnectFillColorChanged(QtObjectPtr ptr); +void QQuickPaintedItem_DisconnectFillColorChanged(QtObjectPtr ptr); +int QQuickPaintedItem_IsTextureProvider(QtObjectPtr ptr); +int QQuickPaintedItem_Mipmap(QtObjectPtr ptr); +int QQuickPaintedItem_OpaquePainting(QtObjectPtr ptr); +void QQuickPaintedItem_Paint(QtObjectPtr ptr, QtObjectPtr painter); +int QQuickPaintedItem_PerformanceHints(QtObjectPtr ptr); +void QQuickPaintedItem_ConnectRenderTargetChanged(QtObjectPtr ptr); +void QQuickPaintedItem_DisconnectRenderTargetChanged(QtObjectPtr ptr); +void QQuickPaintedItem_ResetContentsSize(QtObjectPtr ptr); +void QQuickPaintedItem_SetAntialiasing(QtObjectPtr ptr, int enable); +void QQuickPaintedItem_SetMipmap(QtObjectPtr ptr, int enable); +void QQuickPaintedItem_SetOpaquePainting(QtObjectPtr ptr, int opaque); +void QQuickPaintedItem_SetPerformanceHint(QtObjectPtr ptr, int hint, int enabled); +void QQuickPaintedItem_SetPerformanceHints(QtObjectPtr ptr, int hints); +QtObjectPtr QQuickPaintedItem_TextureProvider(QtObjectPtr ptr); +void QQuickPaintedItem_Update(QtObjectPtr ptr, QtObjectPtr rect); +void QQuickPaintedItem_DestroyQQuickPaintedItem(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qquickrendercontrol.cpp b/quick/qquickrendercontrol.cpp new file mode 100755 index 00000000..bf7d509e --- /dev/null +++ b/quick/qquickrendercontrol.cpp @@ -0,0 +1,75 @@ +#include "qquickrendercontrol.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQuickRenderControl: public QQuickRenderControl { +public: +void Signal_RenderRequested(){callbackQQuickRenderControlRenderRequested(this->objectName().toUtf8().data());}; +void Signal_SceneChanged(){callbackQQuickRenderControlSceneChanged(this->objectName().toUtf8().data());}; +}; + +QtObjectPtr QQuickRenderControl_NewQQuickRenderControl(QtObjectPtr parent){ + return new QQuickRenderControl(static_cast(parent)); +} + +void QQuickRenderControl_Initialize(QtObjectPtr ptr, QtObjectPtr gl){ + static_cast(ptr)->initialize(static_cast(gl)); +} + +void QQuickRenderControl_Invalidate(QtObjectPtr ptr){ + static_cast(ptr)->invalidate(); +} + +void QQuickRenderControl_PolishItems(QtObjectPtr ptr){ + static_cast(ptr)->polishItems(); +} + +void QQuickRenderControl_PrepareThread(QtObjectPtr ptr, QtObjectPtr targetThread){ + static_cast(ptr)->prepareThread(static_cast(targetThread)); +} + +void QQuickRenderControl_Render(QtObjectPtr ptr){ + static_cast(ptr)->render(); +} + +void QQuickRenderControl_ConnectRenderRequested(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQuickRenderControl::renderRequested), static_cast(ptr), static_cast(&MyQQuickRenderControl::Signal_RenderRequested));; +} + +void QQuickRenderControl_DisconnectRenderRequested(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQuickRenderControl::renderRequested), static_cast(ptr), static_cast(&MyQQuickRenderControl::Signal_RenderRequested));; +} + +QtObjectPtr QQuickRenderControl_RenderWindow(QtObjectPtr ptr, QtObjectPtr offset){ + return static_cast(ptr)->renderWindow(static_cast(offset)); +} + +QtObjectPtr QQuickRenderControl_QQuickRenderControl_RenderWindowFor(QtObjectPtr win, QtObjectPtr offset){ + return QQuickRenderControl::renderWindowFor(static_cast(win), static_cast(offset)); +} + +void QQuickRenderControl_ConnectSceneChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQuickRenderControl::sceneChanged), static_cast(ptr), static_cast(&MyQQuickRenderControl::Signal_SceneChanged));; +} + +void QQuickRenderControl_DisconnectSceneChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQuickRenderControl::sceneChanged), static_cast(ptr), static_cast(&MyQQuickRenderControl::Signal_SceneChanged));; +} + +int QQuickRenderControl_Sync(QtObjectPtr ptr){ + return static_cast(ptr)->sync(); +} + +void QQuickRenderControl_DestroyQQuickRenderControl(QtObjectPtr ptr){ + static_cast(ptr)->~QQuickRenderControl(); +} + diff --git a/quick/qquickrendercontrol.go b/quick/qquickrendercontrol.go new file mode 100755 index 00000000..fa2a7166 --- /dev/null +++ b/quick/qquickrendercontrol.go @@ -0,0 +1,136 @@ +package quick + +//#include "qquickrendercontrol.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QQuickRenderControl struct { + core.QObject +} + +type QQuickRenderControlITF interface { + core.QObjectITF + QQuickRenderControlPTR() *QQuickRenderControl +} + +func PointerFromQQuickRenderControl(ptr QQuickRenderControlITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQuickRenderControlPTR().Pointer() + } + return nil +} + +func QQuickRenderControlFromPointer(ptr unsafe.Pointer) *QQuickRenderControl { + var n = new(QQuickRenderControl) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QQuickRenderControl_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QQuickRenderControl) QQuickRenderControlPTR() *QQuickRenderControl { + return ptr +} + +func NewQQuickRenderControl(parent core.QObjectITF) *QQuickRenderControl { + return QQuickRenderControlFromPointer(unsafe.Pointer(C.QQuickRenderControl_NewQQuickRenderControl(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QQuickRenderControl) Initialize(gl gui.QOpenGLContextITF) { + if ptr.Pointer() != nil { + C.QQuickRenderControl_Initialize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQOpenGLContext(gl))) + } +} + +func (ptr *QQuickRenderControl) Invalidate() { + if ptr.Pointer() != nil { + C.QQuickRenderControl_Invalidate(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QQuickRenderControl) PolishItems() { + if ptr.Pointer() != nil { + C.QQuickRenderControl_PolishItems(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QQuickRenderControl) PrepareThread(targetThread core.QThreadITF) { + if ptr.Pointer() != nil { + C.QQuickRenderControl_PrepareThread(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQThread(targetThread))) + } +} + +func (ptr *QQuickRenderControl) Render() { + if ptr.Pointer() != nil { + C.QQuickRenderControl_Render(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QQuickRenderControl) ConnectRenderRequested(f func()) { + if ptr.Pointer() != nil { + C.QQuickRenderControl_ConnectRenderRequested(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "renderRequested", f) + } +} + +func (ptr *QQuickRenderControl) DisconnectRenderRequested() { + if ptr.Pointer() != nil { + C.QQuickRenderControl_DisconnectRenderRequested(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "renderRequested") + } +} + +//export callbackQQuickRenderControlRenderRequested +func callbackQQuickRenderControlRenderRequested(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "renderRequested").(func())() +} + +func (ptr *QQuickRenderControl) RenderWindow(offset core.QPointITF) *gui.QWindow { + if ptr.Pointer() != nil { + return gui.QWindowFromPointer(unsafe.Pointer(C.QQuickRenderControl_RenderWindow(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(offset))))) + } + return nil +} + +func QQuickRenderControl_RenderWindowFor(win QQuickWindowITF, offset core.QPointITF) *gui.QWindow { + return gui.QWindowFromPointer(unsafe.Pointer(C.QQuickRenderControl_QQuickRenderControl_RenderWindowFor(C.QtObjectPtr(PointerFromQQuickWindow(win)), C.QtObjectPtr(core.PointerFromQPoint(offset))))) +} + +func (ptr *QQuickRenderControl) ConnectSceneChanged(f func()) { + if ptr.Pointer() != nil { + C.QQuickRenderControl_ConnectSceneChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "sceneChanged", f) + } +} + +func (ptr *QQuickRenderControl) DisconnectSceneChanged() { + if ptr.Pointer() != nil { + C.QQuickRenderControl_DisconnectSceneChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "sceneChanged") + } +} + +//export callbackQQuickRenderControlSceneChanged +func callbackQQuickRenderControlSceneChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "sceneChanged").(func())() +} + +func (ptr *QQuickRenderControl) Sync() bool { + if ptr.Pointer() != nil { + return C.QQuickRenderControl_Sync(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQuickRenderControl) DestroyQQuickRenderControl() { + if ptr.Pointer() != nil { + C.QQuickRenderControl_DestroyQQuickRenderControl(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/quick/qquickrendercontrol.h b/quick/qquickrendercontrol.h new file mode 100755 index 00000000..92823249 --- /dev/null +++ b/quick/qquickrendercontrol.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QQuickRenderControl_NewQQuickRenderControl(QtObjectPtr parent); +void QQuickRenderControl_Initialize(QtObjectPtr ptr, QtObjectPtr gl); +void QQuickRenderControl_Invalidate(QtObjectPtr ptr); +void QQuickRenderControl_PolishItems(QtObjectPtr ptr); +void QQuickRenderControl_PrepareThread(QtObjectPtr ptr, QtObjectPtr targetThread); +void QQuickRenderControl_Render(QtObjectPtr ptr); +void QQuickRenderControl_ConnectRenderRequested(QtObjectPtr ptr); +void QQuickRenderControl_DisconnectRenderRequested(QtObjectPtr ptr); +QtObjectPtr QQuickRenderControl_RenderWindow(QtObjectPtr ptr, QtObjectPtr offset); +QtObjectPtr QQuickRenderControl_QQuickRenderControl_RenderWindowFor(QtObjectPtr win, QtObjectPtr offset); +void QQuickRenderControl_ConnectSceneChanged(QtObjectPtr ptr); +void QQuickRenderControl_DisconnectSceneChanged(QtObjectPtr ptr); +int QQuickRenderControl_Sync(QtObjectPtr ptr); +void QQuickRenderControl_DestroyQQuickRenderControl(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qquicktextdocument.cpp b/quick/qquicktextdocument.cpp new file mode 100755 index 00000000..61c53999 --- /dev/null +++ b/quick/qquicktextdocument.cpp @@ -0,0 +1,21 @@ +#include "qquicktextdocument.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQuickTextDocument: public QQuickTextDocument { +public: +}; + +QtObjectPtr QQuickTextDocument_NewQQuickTextDocument(QtObjectPtr parent){ + return new QQuickTextDocument(static_cast(parent)); +} + +QtObjectPtr QQuickTextDocument_TextDocument(QtObjectPtr ptr){ + return static_cast(ptr)->textDocument(); +} + diff --git a/quick/qquicktextdocument.go b/quick/qquicktextdocument.go new file mode 100755 index 00000000..67d2d6f7 --- /dev/null +++ b/quick/qquicktextdocument.go @@ -0,0 +1,50 @@ +package quick + +//#include "qquicktextdocument.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QQuickTextDocument struct { + core.QObject +} + +type QQuickTextDocumentITF interface { + core.QObjectITF + QQuickTextDocumentPTR() *QQuickTextDocument +} + +func PointerFromQQuickTextDocument(ptr QQuickTextDocumentITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQuickTextDocumentPTR().Pointer() + } + return nil +} + +func QQuickTextDocumentFromPointer(ptr unsafe.Pointer) *QQuickTextDocument { + var n = new(QQuickTextDocument) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QQuickTextDocument_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QQuickTextDocument) QQuickTextDocumentPTR() *QQuickTextDocument { + return ptr +} + +func NewQQuickTextDocument(parent QQuickItemITF) *QQuickTextDocument { + return QQuickTextDocumentFromPointer(unsafe.Pointer(C.QQuickTextDocument_NewQQuickTextDocument(C.QtObjectPtr(PointerFromQQuickItem(parent))))) +} + +func (ptr *QQuickTextDocument) TextDocument() *gui.QTextDocument { + if ptr.Pointer() != nil { + return gui.QTextDocumentFromPointer(unsafe.Pointer(C.QQuickTextDocument_TextDocument(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} diff --git a/quick/qquicktextdocument.h b/quick/qquicktextdocument.h new file mode 100755 index 00000000..ebefa9cb --- /dev/null +++ b/quick/qquicktextdocument.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QQuickTextDocument_NewQQuickTextDocument(QtObjectPtr parent); +QtObjectPtr QQuickTextDocument_TextDocument(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qquicktexturefactory.cpp b/quick/qquicktexturefactory.cpp new file mode 100755 index 00000000..2e283b56 --- /dev/null +++ b/quick/qquicktexturefactory.cpp @@ -0,0 +1,25 @@ +#include "qquicktexturefactory.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQuickTextureFactory: public QQuickTextureFactory { +public: +}; + +QtObjectPtr QQuickTextureFactory_CreateTexture(QtObjectPtr ptr, QtObjectPtr window){ + return static_cast(ptr)->createTexture(static_cast(window)); +} + +int QQuickTextureFactory_TextureByteCount(QtObjectPtr ptr){ + return static_cast(ptr)->textureByteCount(); +} + +void QQuickTextureFactory_DestroyQQuickTextureFactory(QtObjectPtr ptr){ + static_cast(ptr)->~QQuickTextureFactory(); +} + diff --git a/quick/qquicktexturefactory.go b/quick/qquicktexturefactory.go new file mode 100755 index 00000000..9c6e65e4 --- /dev/null +++ b/quick/qquicktexturefactory.go @@ -0,0 +1,59 @@ +package quick + +//#include "qquicktexturefactory.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QQuickTextureFactory struct { + core.QObject +} + +type QQuickTextureFactoryITF interface { + core.QObjectITF + QQuickTextureFactoryPTR() *QQuickTextureFactory +} + +func PointerFromQQuickTextureFactory(ptr QQuickTextureFactoryITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQuickTextureFactoryPTR().Pointer() + } + return nil +} + +func QQuickTextureFactoryFromPointer(ptr unsafe.Pointer) *QQuickTextureFactory { + var n = new(QQuickTextureFactory) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QQuickTextureFactory_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QQuickTextureFactory) QQuickTextureFactoryPTR() *QQuickTextureFactory { + return ptr +} + +func (ptr *QQuickTextureFactory) CreateTexture(window QQuickWindowITF) *QSGTexture { + if ptr.Pointer() != nil { + return QSGTextureFromPointer(unsafe.Pointer(C.QQuickTextureFactory_CreateTexture(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQQuickWindow(window))))) + } + return nil +} + +func (ptr *QQuickTextureFactory) TextureByteCount() int { + if ptr.Pointer() != nil { + return int(C.QQuickTextureFactory_TextureByteCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QQuickTextureFactory) DestroyQQuickTextureFactory() { + if ptr.Pointer() != nil { + C.QQuickTextureFactory_DestroyQQuickTextureFactory(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/quick/qquicktexturefactory.h b/quick/qquicktexturefactory.h new file mode 100755 index 00000000..53d1b54a --- /dev/null +++ b/quick/qquicktexturefactory.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QQuickTextureFactory_CreateTexture(QtObjectPtr ptr, QtObjectPtr window); +int QQuickTextureFactory_TextureByteCount(QtObjectPtr ptr); +void QQuickTextureFactory_DestroyQQuickTextureFactory(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qquickview.cpp b/quick/qquickview.cpp new file mode 100755 index 00000000..509920aa --- /dev/null +++ b/quick/qquickview.cpp @@ -0,0 +1,73 @@ +#include "qquickview.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQuickView: public QQuickView { +public: +void Signal_StatusChanged(QQuickView::Status status){callbackQQuickViewStatusChanged(this->objectName().toUtf8().data(), status);}; +}; + +int QQuickView_ResizeMode(QtObjectPtr ptr){ + return static_cast(ptr)->resizeMode(); +} + +void QQuickView_SetResizeMode(QtObjectPtr ptr, int v){ + static_cast(ptr)->setResizeMode(static_cast(v)); +} + +int QQuickView_Status(QtObjectPtr ptr){ + return static_cast(ptr)->status(); +} + +QtObjectPtr QQuickView_NewQQuickView2(QtObjectPtr engine, QtObjectPtr parent){ + return new QQuickView(static_cast(engine), static_cast(parent)); +} + +QtObjectPtr QQuickView_NewQQuickView(QtObjectPtr parent){ + return new QQuickView(static_cast(parent)); +} + +QtObjectPtr QQuickView_NewQQuickView3(char* source, QtObjectPtr parent){ + return new QQuickView(QUrl(QString(source)), static_cast(parent)); +} + +QtObjectPtr QQuickView_Engine(QtObjectPtr ptr){ + return static_cast(ptr)->engine(); +} + +QtObjectPtr QQuickView_RootContext(QtObjectPtr ptr){ + return static_cast(ptr)->rootContext(); +} + +QtObjectPtr QQuickView_RootObject(QtObjectPtr ptr){ + return static_cast(ptr)->rootObject(); +} + +void QQuickView_SetSource(QtObjectPtr ptr, char* url){ + QMetaObject::invokeMethod(static_cast(ptr), "setSource", Q_ARG(QUrl, QUrl(QString(url)))); +} + +char* QQuickView_Source(QtObjectPtr ptr){ + return static_cast(ptr)->source().toString().toUtf8().data(); +} + +void QQuickView_ConnectStatusChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQuickView::statusChanged), static_cast(ptr), static_cast(&MyQQuickView::Signal_StatusChanged));; +} + +void QQuickView_DisconnectStatusChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQuickView::statusChanged), static_cast(ptr), static_cast(&MyQQuickView::Signal_StatusChanged));; +} + +void QQuickView_DestroyQQuickView(QtObjectPtr ptr){ + static_cast(ptr)->~QQuickView(); +} + diff --git a/quick/qquickview.go b/quick/qquickview.go new file mode 100755 index 00000000..ab66b9f8 --- /dev/null +++ b/quick/qquickview.go @@ -0,0 +1,149 @@ +package quick + +//#include "qquickview.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/gui" + "github.com/therecipe/qt/qml" + "unsafe" +) + +type QQuickView struct { + QQuickWindow +} + +type QQuickViewITF interface { + QQuickWindowITF + QQuickViewPTR() *QQuickView +} + +func PointerFromQQuickView(ptr QQuickViewITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQuickViewPTR().Pointer() + } + return nil +} + +func QQuickViewFromPointer(ptr unsafe.Pointer) *QQuickView { + var n = new(QQuickView) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QQuickView_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QQuickView) QQuickViewPTR() *QQuickView { + return ptr +} + +//QQuickView::ResizeMode +type QQuickView__ResizeMode int + +var ( + QQuickView__SizeViewToRootObject = QQuickView__ResizeMode(0) + QQuickView__SizeRootObjectToView = QQuickView__ResizeMode(1) +) + +//QQuickView::Status +type QQuickView__Status int + +var ( + QQuickView__Null = QQuickView__Status(0) + QQuickView__Ready = QQuickView__Status(1) + QQuickView__Loading = QQuickView__Status(2) + QQuickView__Error = QQuickView__Status(3) +) + +func (ptr *QQuickView) ResizeMode() QQuickView__ResizeMode { + if ptr.Pointer() != nil { + return QQuickView__ResizeMode(C.QQuickView_ResizeMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QQuickView) SetResizeMode(v QQuickView__ResizeMode) { + if ptr.Pointer() != nil { + C.QQuickView_SetResizeMode(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QQuickView) Status() QQuickView__Status { + if ptr.Pointer() != nil { + return QQuickView__Status(C.QQuickView_Status(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQQuickView2(engine qml.QQmlEngineITF, parent gui.QWindowITF) *QQuickView { + return QQuickViewFromPointer(unsafe.Pointer(C.QQuickView_NewQQuickView2(C.QtObjectPtr(qml.PointerFromQQmlEngine(engine)), C.QtObjectPtr(gui.PointerFromQWindow(parent))))) +} + +func NewQQuickView(parent gui.QWindowITF) *QQuickView { + return QQuickViewFromPointer(unsafe.Pointer(C.QQuickView_NewQQuickView(C.QtObjectPtr(gui.PointerFromQWindow(parent))))) +} + +func NewQQuickView3(source string, parent gui.QWindowITF) *QQuickView { + return QQuickViewFromPointer(unsafe.Pointer(C.QQuickView_NewQQuickView3(C.CString(source), C.QtObjectPtr(gui.PointerFromQWindow(parent))))) +} + +func (ptr *QQuickView) Engine() *qml.QQmlEngine { + if ptr.Pointer() != nil { + return qml.QQmlEngineFromPointer(unsafe.Pointer(C.QQuickView_Engine(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQuickView) RootContext() *qml.QQmlContext { + if ptr.Pointer() != nil { + return qml.QQmlContextFromPointer(unsafe.Pointer(C.QQuickView_RootContext(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQuickView) RootObject() *QQuickItem { + if ptr.Pointer() != nil { + return QQuickItemFromPointer(unsafe.Pointer(C.QQuickView_RootObject(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQuickView) SetSource(url string) { + if ptr.Pointer() != nil { + C.QQuickView_SetSource(C.QtObjectPtr(ptr.Pointer()), C.CString(url)) + } +} + +func (ptr *QQuickView) Source() string { + if ptr.Pointer() != nil { + return C.GoString(C.QQuickView_Source(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QQuickView) ConnectStatusChanged(f func(status QQuickView__Status)) { + if ptr.Pointer() != nil { + C.QQuickView_ConnectStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "statusChanged", f) + } +} + +func (ptr *QQuickView) DisconnectStatusChanged() { + if ptr.Pointer() != nil { + C.QQuickView_DisconnectStatusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "statusChanged") + } +} + +//export callbackQQuickViewStatusChanged +func callbackQQuickViewStatusChanged(ptrName *C.char, status C.int) { + qt.GetSignal(C.GoString(ptrName), "statusChanged").(func(QQuickView__Status))(QQuickView__Status(status)) +} + +func (ptr *QQuickView) DestroyQQuickView() { + if ptr.Pointer() != nil { + C.QQuickView_DestroyQQuickView(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/quick/qquickview.h b/quick/qquickview.h new file mode 100755 index 00000000..a8105ac8 --- /dev/null +++ b/quick/qquickview.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QQuickView_ResizeMode(QtObjectPtr ptr); +void QQuickView_SetResizeMode(QtObjectPtr ptr, int v); +int QQuickView_Status(QtObjectPtr ptr); +QtObjectPtr QQuickView_NewQQuickView2(QtObjectPtr engine, QtObjectPtr parent); +QtObjectPtr QQuickView_NewQQuickView(QtObjectPtr parent); +QtObjectPtr QQuickView_NewQQuickView3(char* source, QtObjectPtr parent); +QtObjectPtr QQuickView_Engine(QtObjectPtr ptr); +QtObjectPtr QQuickView_RootContext(QtObjectPtr ptr); +QtObjectPtr QQuickView_RootObject(QtObjectPtr ptr); +void QQuickView_SetSource(QtObjectPtr ptr, char* url); +char* QQuickView_Source(QtObjectPtr ptr); +void QQuickView_ConnectStatusChanged(QtObjectPtr ptr); +void QQuickView_DisconnectStatusChanged(QtObjectPtr ptr); +void QQuickView_DestroyQQuickView(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qquickwidget.cpp b/quick/qquickwidget.cpp new file mode 100755 index 00000000..69ae0ec9 --- /dev/null +++ b/quick/qquickwidget.cpp @@ -0,0 +1,7 @@ +#include "qquickwidget.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/quick/qquickwidget.go b/quick/qquickwidget.go new file mode 100755 index 00000000..dd88874b --- /dev/null +++ b/quick/qquickwidget.go @@ -0,0 +1,56 @@ +package quick + +//#include "qquickwidget.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/widgets" + "unsafe" +) + +type QQuickWidget struct { + widgets.QWidget +} + +type QQuickWidgetITF interface { + widgets.QWidgetITF + QQuickWidgetPTR() *QQuickWidget +} + +func PointerFromQQuickWidget(ptr QQuickWidgetITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQuickWidgetPTR().Pointer() + } + return nil +} + +func QQuickWidgetFromPointer(ptr unsafe.Pointer) *QQuickWidget { + var n = new(QQuickWidget) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QQuickWidget_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QQuickWidget) QQuickWidgetPTR() *QQuickWidget { + return ptr +} + +//QQuickWidget::ResizeMode +type QQuickWidget__ResizeMode int + +var ( + QQuickWidget__SizeViewToRootObject = QQuickWidget__ResizeMode(0) + QQuickWidget__SizeRootObjectToView = QQuickWidget__ResizeMode(1) +) + +//QQuickWidget::Status +type QQuickWidget__Status int + +var ( + QQuickWidget__Null = QQuickWidget__Status(0) + QQuickWidget__Ready = QQuickWidget__Status(1) + QQuickWidget__Loading = QQuickWidget__Status(2) + QQuickWidget__Error = QQuickWidget__Status(3) +) diff --git a/quick/qquickwidget.h b/quick/qquickwidget.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/quick/qquickwidget.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qquickwindow.cpp b/quick/qquickwindow.cpp new file mode 100755 index 00000000..0e13acea --- /dev/null +++ b/quick/qquickwindow.cpp @@ -0,0 +1,238 @@ +#include "qquickwindow.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQQuickWindow: public QQuickWindow { +public: +void Signal_ActiveFocusItemChanged(){callbackQQuickWindowActiveFocusItemChanged(this->objectName().toUtf8().data());}; +void Signal_AfterAnimating(){callbackQQuickWindowAfterAnimating(this->objectName().toUtf8().data());}; +void Signal_AfterRendering(){callbackQQuickWindowAfterRendering(this->objectName().toUtf8().data());}; +void Signal_AfterSynchronizing(){callbackQQuickWindowAfterSynchronizing(this->objectName().toUtf8().data());}; +void Signal_BeforeRendering(){callbackQQuickWindowBeforeRendering(this->objectName().toUtf8().data());}; +void Signal_BeforeSynchronizing(){callbackQQuickWindowBeforeSynchronizing(this->objectName().toUtf8().data());}; +void Signal_FrameSwapped(){callbackQQuickWindowFrameSwapped(this->objectName().toUtf8().data());}; +void Signal_OpenglContextCreated(QOpenGLContext * context){callbackQQuickWindowOpenglContextCreated(this->objectName().toUtf8().data(), context);}; +void Signal_SceneGraphAboutToStop(){callbackQQuickWindowSceneGraphAboutToStop(this->objectName().toUtf8().data());}; +void Signal_SceneGraphError(QQuickWindow::SceneGraphError error, const QString & message){callbackQQuickWindowSceneGraphError(this->objectName().toUtf8().data(), error, message.toUtf8().data());}; +void Signal_SceneGraphInitialized(){callbackQQuickWindowSceneGraphInitialized(this->objectName().toUtf8().data());}; +void Signal_SceneGraphInvalidated(){callbackQQuickWindowSceneGraphInvalidated(this->objectName().toUtf8().data());}; +}; + +QtObjectPtr QQuickWindow_ActiveFocusItem(QtObjectPtr ptr){ + return static_cast(ptr)->activeFocusItem(); +} + +QtObjectPtr QQuickWindow_ContentItem(QtObjectPtr ptr){ + return static_cast(ptr)->contentItem(); +} + +void QQuickWindow_SetColor(QtObjectPtr ptr, QtObjectPtr color){ + static_cast(ptr)->setColor(*static_cast(color)); +} + +QtObjectPtr QQuickWindow_NewQQuickWindow(QtObjectPtr parent){ + return new QQuickWindow(static_cast(parent)); +} + +QtObjectPtr QQuickWindow_AccessibleRoot(QtObjectPtr ptr){ + return static_cast(ptr)->accessibleRoot(); +} + +void QQuickWindow_ConnectActiveFocusItemChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQuickWindow::activeFocusItemChanged), static_cast(ptr), static_cast(&MyQQuickWindow::Signal_ActiveFocusItemChanged));; +} + +void QQuickWindow_DisconnectActiveFocusItemChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQuickWindow::activeFocusItemChanged), static_cast(ptr), static_cast(&MyQQuickWindow::Signal_ActiveFocusItemChanged));; +} + +void QQuickWindow_ConnectAfterAnimating(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQuickWindow::afterAnimating), static_cast(ptr), static_cast(&MyQQuickWindow::Signal_AfterAnimating));; +} + +void QQuickWindow_DisconnectAfterAnimating(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQuickWindow::afterAnimating), static_cast(ptr), static_cast(&MyQQuickWindow::Signal_AfterAnimating));; +} + +void QQuickWindow_ConnectAfterRendering(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQuickWindow::afterRendering), static_cast(ptr), static_cast(&MyQQuickWindow::Signal_AfterRendering));; +} + +void QQuickWindow_DisconnectAfterRendering(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQuickWindow::afterRendering), static_cast(ptr), static_cast(&MyQQuickWindow::Signal_AfterRendering));; +} + +void QQuickWindow_ConnectAfterSynchronizing(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQuickWindow::afterSynchronizing), static_cast(ptr), static_cast(&MyQQuickWindow::Signal_AfterSynchronizing));; +} + +void QQuickWindow_DisconnectAfterSynchronizing(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQuickWindow::afterSynchronizing), static_cast(ptr), static_cast(&MyQQuickWindow::Signal_AfterSynchronizing));; +} + +void QQuickWindow_ConnectBeforeRendering(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQuickWindow::beforeRendering), static_cast(ptr), static_cast(&MyQQuickWindow::Signal_BeforeRendering));; +} + +void QQuickWindow_DisconnectBeforeRendering(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQuickWindow::beforeRendering), static_cast(ptr), static_cast(&MyQQuickWindow::Signal_BeforeRendering));; +} + +void QQuickWindow_ConnectBeforeSynchronizing(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQuickWindow::beforeSynchronizing), static_cast(ptr), static_cast(&MyQQuickWindow::Signal_BeforeSynchronizing));; +} + +void QQuickWindow_DisconnectBeforeSynchronizing(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQuickWindow::beforeSynchronizing), static_cast(ptr), static_cast(&MyQQuickWindow::Signal_BeforeSynchronizing));; +} + +int QQuickWindow_ClearBeforeRendering(QtObjectPtr ptr){ + return static_cast(ptr)->clearBeforeRendering(); +} + +QtObjectPtr QQuickWindow_CreateTextureFromImage2(QtObjectPtr ptr, QtObjectPtr image){ + return static_cast(ptr)->createTextureFromImage(*static_cast(image)); +} + +QtObjectPtr QQuickWindow_CreateTextureFromImage(QtObjectPtr ptr, QtObjectPtr image, int options){ + return static_cast(ptr)->createTextureFromImage(*static_cast(image), static_cast(options)); +} + +void QQuickWindow_ConnectFrameSwapped(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQuickWindow::frameSwapped), static_cast(ptr), static_cast(&MyQQuickWindow::Signal_FrameSwapped));; +} + +void QQuickWindow_DisconnectFrameSwapped(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQuickWindow::frameSwapped), static_cast(ptr), static_cast(&MyQQuickWindow::Signal_FrameSwapped));; +} + +int QQuickWindow_QQuickWindow_HasDefaultAlphaBuffer(){ + return QQuickWindow::hasDefaultAlphaBuffer(); +} + +QtObjectPtr QQuickWindow_IncubationController(QtObjectPtr ptr){ + return static_cast(ptr)->incubationController(); +} + +int QQuickWindow_IsPersistentOpenGLContext(QtObjectPtr ptr){ + return static_cast(ptr)->isPersistentOpenGLContext(); +} + +int QQuickWindow_IsPersistentSceneGraph(QtObjectPtr ptr){ + return static_cast(ptr)->isPersistentSceneGraph(); +} + +int QQuickWindow_IsSceneGraphInitialized(QtObjectPtr ptr){ + return static_cast(ptr)->isSceneGraphInitialized(); +} + +QtObjectPtr QQuickWindow_MouseGrabberItem(QtObjectPtr ptr){ + return static_cast(ptr)->mouseGrabberItem(); +} + +QtObjectPtr QQuickWindow_OpenglContext(QtObjectPtr ptr){ + return static_cast(ptr)->openglContext(); +} + +void QQuickWindow_ConnectOpenglContextCreated(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQuickWindow::openglContextCreated), static_cast(ptr), static_cast(&MyQQuickWindow::Signal_OpenglContextCreated));; +} + +void QQuickWindow_DisconnectOpenglContextCreated(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQuickWindow::openglContextCreated), static_cast(ptr), static_cast(&MyQQuickWindow::Signal_OpenglContextCreated));; +} + +void QQuickWindow_ReleaseResources(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "releaseResources"); +} + +QtObjectPtr QQuickWindow_RenderTarget(QtObjectPtr ptr){ + return static_cast(ptr)->renderTarget(); +} + +void QQuickWindow_ResetOpenGLState(QtObjectPtr ptr){ + static_cast(ptr)->resetOpenGLState(); +} + +void QQuickWindow_ConnectSceneGraphAboutToStop(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQuickWindow::sceneGraphAboutToStop), static_cast(ptr), static_cast(&MyQQuickWindow::Signal_SceneGraphAboutToStop));; +} + +void QQuickWindow_DisconnectSceneGraphAboutToStop(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQuickWindow::sceneGraphAboutToStop), static_cast(ptr), static_cast(&MyQQuickWindow::Signal_SceneGraphAboutToStop));; +} + +void QQuickWindow_ConnectSceneGraphError(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQuickWindow::sceneGraphError), static_cast(ptr), static_cast(&MyQQuickWindow::Signal_SceneGraphError));; +} + +void QQuickWindow_DisconnectSceneGraphError(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQuickWindow::sceneGraphError), static_cast(ptr), static_cast(&MyQQuickWindow::Signal_SceneGraphError));; +} + +void QQuickWindow_ConnectSceneGraphInitialized(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQuickWindow::sceneGraphInitialized), static_cast(ptr), static_cast(&MyQQuickWindow::Signal_SceneGraphInitialized));; +} + +void QQuickWindow_DisconnectSceneGraphInitialized(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQuickWindow::sceneGraphInitialized), static_cast(ptr), static_cast(&MyQQuickWindow::Signal_SceneGraphInitialized));; +} + +void QQuickWindow_ConnectSceneGraphInvalidated(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QQuickWindow::sceneGraphInvalidated), static_cast(ptr), static_cast(&MyQQuickWindow::Signal_SceneGraphInvalidated));; +} + +void QQuickWindow_DisconnectSceneGraphInvalidated(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QQuickWindow::sceneGraphInvalidated), static_cast(ptr), static_cast(&MyQQuickWindow::Signal_SceneGraphInvalidated));; +} + +void QQuickWindow_ScheduleRenderJob(QtObjectPtr ptr, QtObjectPtr job, int stage){ + static_cast(ptr)->scheduleRenderJob(static_cast(job), static_cast(stage)); +} + +int QQuickWindow_SendEvent(QtObjectPtr ptr, QtObjectPtr item, QtObjectPtr e){ + return static_cast(ptr)->sendEvent(static_cast(item), static_cast(e)); +} + +void QQuickWindow_SetClearBeforeRendering(QtObjectPtr ptr, int enabled){ + static_cast(ptr)->setClearBeforeRendering(enabled != 0); +} + +void QQuickWindow_QQuickWindow_SetDefaultAlphaBuffer(int useAlpha){ + QQuickWindow::setDefaultAlphaBuffer(useAlpha != 0); +} + +void QQuickWindow_SetPersistentOpenGLContext(QtObjectPtr ptr, int persistent){ + static_cast(ptr)->setPersistentOpenGLContext(persistent != 0); +} + +void QQuickWindow_SetPersistentSceneGraph(QtObjectPtr ptr, int persistent){ + static_cast(ptr)->setPersistentSceneGraph(persistent != 0); +} + +void QQuickWindow_SetRenderTarget(QtObjectPtr ptr, QtObjectPtr fbo){ + static_cast(ptr)->setRenderTarget(static_cast(fbo)); +} + +void QQuickWindow_Update(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "update"); +} + +void QQuickWindow_DestroyQQuickWindow(QtObjectPtr ptr){ + static_cast(ptr)->~QQuickWindow(); +} + diff --git a/quick/qquickwindow.go b/quick/qquickwindow.go new file mode 100755 index 00000000..7da36d2c --- /dev/null +++ b/quick/qquickwindow.go @@ -0,0 +1,467 @@ +package quick + +//#include "qquickwindow.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "github.com/therecipe/qt/qml" + "unsafe" +) + +type QQuickWindow struct { + gui.QWindow +} + +type QQuickWindowITF interface { + gui.QWindowITF + QQuickWindowPTR() *QQuickWindow +} + +func PointerFromQQuickWindow(ptr QQuickWindowITF) unsafe.Pointer { + if ptr != nil { + return ptr.QQuickWindowPTR().Pointer() + } + return nil +} + +func QQuickWindowFromPointer(ptr unsafe.Pointer) *QQuickWindow { + var n = new(QQuickWindow) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QQuickWindow_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QQuickWindow) QQuickWindowPTR() *QQuickWindow { + return ptr +} + +//QQuickWindow::CreateTextureOption +type QQuickWindow__CreateTextureOption int + +var ( + QQuickWindow__TextureHasAlphaChannel = QQuickWindow__CreateTextureOption(0x0001) + QQuickWindow__TextureHasMipmaps = QQuickWindow__CreateTextureOption(0x0002) + QQuickWindow__TextureOwnsGLTexture = QQuickWindow__CreateTextureOption(0x0004) + QQuickWindow__TextureCanUseAtlas = QQuickWindow__CreateTextureOption(0x0008) +) + +//QQuickWindow::RenderStage +type QQuickWindow__RenderStage int + +var ( + QQuickWindow__BeforeSynchronizingStage = QQuickWindow__RenderStage(0) + QQuickWindow__AfterSynchronizingStage = QQuickWindow__RenderStage(1) + QQuickWindow__BeforeRenderingStage = QQuickWindow__RenderStage(2) + QQuickWindow__AfterRenderingStage = QQuickWindow__RenderStage(3) + QQuickWindow__AfterSwapStage = QQuickWindow__RenderStage(4) +) + +//QQuickWindow::SceneGraphError +type QQuickWindow__SceneGraphError int + +var ( + QQuickWindow__ContextNotAvailable = QQuickWindow__SceneGraphError(1) +) + +func (ptr *QQuickWindow) ActiveFocusItem() *QQuickItem { + if ptr.Pointer() != nil { + return QQuickItemFromPointer(unsafe.Pointer(C.QQuickWindow_ActiveFocusItem(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQuickWindow) ContentItem() *QQuickItem { + if ptr.Pointer() != nil { + return QQuickItemFromPointer(unsafe.Pointer(C.QQuickWindow_ContentItem(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQuickWindow) SetColor(color gui.QColorITF) { + if ptr.Pointer() != nil { + C.QQuickWindow_SetColor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQColor(color))) + } +} + +func NewQQuickWindow(parent gui.QWindowITF) *QQuickWindow { + return QQuickWindowFromPointer(unsafe.Pointer(C.QQuickWindow_NewQQuickWindow(C.QtObjectPtr(gui.PointerFromQWindow(parent))))) +} + +func (ptr *QQuickWindow) AccessibleRoot() *gui.QAccessibleInterface { + if ptr.Pointer() != nil { + return gui.QAccessibleInterfaceFromPointer(unsafe.Pointer(C.QQuickWindow_AccessibleRoot(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQuickWindow) ConnectActiveFocusItemChanged(f func()) { + if ptr.Pointer() != nil { + C.QQuickWindow_ConnectActiveFocusItemChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "activeFocusItemChanged", f) + } +} + +func (ptr *QQuickWindow) DisconnectActiveFocusItemChanged() { + if ptr.Pointer() != nil { + C.QQuickWindow_DisconnectActiveFocusItemChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "activeFocusItemChanged") + } +} + +//export callbackQQuickWindowActiveFocusItemChanged +func callbackQQuickWindowActiveFocusItemChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "activeFocusItemChanged").(func())() +} + +func (ptr *QQuickWindow) ConnectAfterAnimating(f func()) { + if ptr.Pointer() != nil { + C.QQuickWindow_ConnectAfterAnimating(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "afterAnimating", f) + } +} + +func (ptr *QQuickWindow) DisconnectAfterAnimating() { + if ptr.Pointer() != nil { + C.QQuickWindow_DisconnectAfterAnimating(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "afterAnimating") + } +} + +//export callbackQQuickWindowAfterAnimating +func callbackQQuickWindowAfterAnimating(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "afterAnimating").(func())() +} + +func (ptr *QQuickWindow) ConnectAfterRendering(f func()) { + if ptr.Pointer() != nil { + C.QQuickWindow_ConnectAfterRendering(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "afterRendering", f) + } +} + +func (ptr *QQuickWindow) DisconnectAfterRendering() { + if ptr.Pointer() != nil { + C.QQuickWindow_DisconnectAfterRendering(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "afterRendering") + } +} + +//export callbackQQuickWindowAfterRendering +func callbackQQuickWindowAfterRendering(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "afterRendering").(func())() +} + +func (ptr *QQuickWindow) ConnectAfterSynchronizing(f func()) { + if ptr.Pointer() != nil { + C.QQuickWindow_ConnectAfterSynchronizing(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "afterSynchronizing", f) + } +} + +func (ptr *QQuickWindow) DisconnectAfterSynchronizing() { + if ptr.Pointer() != nil { + C.QQuickWindow_DisconnectAfterSynchronizing(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "afterSynchronizing") + } +} + +//export callbackQQuickWindowAfterSynchronizing +func callbackQQuickWindowAfterSynchronizing(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "afterSynchronizing").(func())() +} + +func (ptr *QQuickWindow) ConnectBeforeRendering(f func()) { + if ptr.Pointer() != nil { + C.QQuickWindow_ConnectBeforeRendering(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "beforeRendering", f) + } +} + +func (ptr *QQuickWindow) DisconnectBeforeRendering() { + if ptr.Pointer() != nil { + C.QQuickWindow_DisconnectBeforeRendering(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "beforeRendering") + } +} + +//export callbackQQuickWindowBeforeRendering +func callbackQQuickWindowBeforeRendering(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "beforeRendering").(func())() +} + +func (ptr *QQuickWindow) ConnectBeforeSynchronizing(f func()) { + if ptr.Pointer() != nil { + C.QQuickWindow_ConnectBeforeSynchronizing(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "beforeSynchronizing", f) + } +} + +func (ptr *QQuickWindow) DisconnectBeforeSynchronizing() { + if ptr.Pointer() != nil { + C.QQuickWindow_DisconnectBeforeSynchronizing(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "beforeSynchronizing") + } +} + +//export callbackQQuickWindowBeforeSynchronizing +func callbackQQuickWindowBeforeSynchronizing(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "beforeSynchronizing").(func())() +} + +func (ptr *QQuickWindow) ClearBeforeRendering() bool { + if ptr.Pointer() != nil { + return C.QQuickWindow_ClearBeforeRendering(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQuickWindow) CreateTextureFromImage2(image gui.QImageITF) *QSGTexture { + if ptr.Pointer() != nil { + return QSGTextureFromPointer(unsafe.Pointer(C.QQuickWindow_CreateTextureFromImage2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQImage(image))))) + } + return nil +} + +func (ptr *QQuickWindow) CreateTextureFromImage(image gui.QImageITF, options QQuickWindow__CreateTextureOption) *QSGTexture { + if ptr.Pointer() != nil { + return QSGTextureFromPointer(unsafe.Pointer(C.QQuickWindow_CreateTextureFromImage(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQImage(image)), C.int(options)))) + } + return nil +} + +func (ptr *QQuickWindow) ConnectFrameSwapped(f func()) { + if ptr.Pointer() != nil { + C.QQuickWindow_ConnectFrameSwapped(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "frameSwapped", f) + } +} + +func (ptr *QQuickWindow) DisconnectFrameSwapped() { + if ptr.Pointer() != nil { + C.QQuickWindow_DisconnectFrameSwapped(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "frameSwapped") + } +} + +//export callbackQQuickWindowFrameSwapped +func callbackQQuickWindowFrameSwapped(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "frameSwapped").(func())() +} + +func QQuickWindow_HasDefaultAlphaBuffer() bool { + return C.QQuickWindow_QQuickWindow_HasDefaultAlphaBuffer() != 0 +} + +func (ptr *QQuickWindow) IncubationController() *qml.QQmlIncubationController { + if ptr.Pointer() != nil { + return qml.QQmlIncubationControllerFromPointer(unsafe.Pointer(C.QQuickWindow_IncubationController(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQuickWindow) IsPersistentOpenGLContext() bool { + if ptr.Pointer() != nil { + return C.QQuickWindow_IsPersistentOpenGLContext(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQuickWindow) IsPersistentSceneGraph() bool { + if ptr.Pointer() != nil { + return C.QQuickWindow_IsPersistentSceneGraph(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQuickWindow) IsSceneGraphInitialized() bool { + if ptr.Pointer() != nil { + return C.QQuickWindow_IsSceneGraphInitialized(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QQuickWindow) MouseGrabberItem() *QQuickItem { + if ptr.Pointer() != nil { + return QQuickItemFromPointer(unsafe.Pointer(C.QQuickWindow_MouseGrabberItem(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQuickWindow) OpenglContext() *gui.QOpenGLContext { + if ptr.Pointer() != nil { + return gui.QOpenGLContextFromPointer(unsafe.Pointer(C.QQuickWindow_OpenglContext(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQuickWindow) ConnectOpenglContextCreated(f func(context gui.QOpenGLContextITF)) { + if ptr.Pointer() != nil { + C.QQuickWindow_ConnectOpenglContextCreated(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "openglContextCreated", f) + } +} + +func (ptr *QQuickWindow) DisconnectOpenglContextCreated() { + if ptr.Pointer() != nil { + C.QQuickWindow_DisconnectOpenglContextCreated(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "openglContextCreated") + } +} + +//export callbackQQuickWindowOpenglContextCreated +func callbackQQuickWindowOpenglContextCreated(ptrName *C.char, context unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "openglContextCreated").(func(*gui.QOpenGLContext))(gui.QOpenGLContextFromPointer(context)) +} + +func (ptr *QQuickWindow) ReleaseResources() { + if ptr.Pointer() != nil { + C.QQuickWindow_ReleaseResources(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QQuickWindow) RenderTarget() *gui.QOpenGLFramebufferObject { + if ptr.Pointer() != nil { + return gui.QOpenGLFramebufferObjectFromPointer(unsafe.Pointer(C.QQuickWindow_RenderTarget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QQuickWindow) ResetOpenGLState() { + if ptr.Pointer() != nil { + C.QQuickWindow_ResetOpenGLState(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QQuickWindow) ConnectSceneGraphAboutToStop(f func()) { + if ptr.Pointer() != nil { + C.QQuickWindow_ConnectSceneGraphAboutToStop(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "sceneGraphAboutToStop", f) + } +} + +func (ptr *QQuickWindow) DisconnectSceneGraphAboutToStop() { + if ptr.Pointer() != nil { + C.QQuickWindow_DisconnectSceneGraphAboutToStop(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "sceneGraphAboutToStop") + } +} + +//export callbackQQuickWindowSceneGraphAboutToStop +func callbackQQuickWindowSceneGraphAboutToStop(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "sceneGraphAboutToStop").(func())() +} + +func (ptr *QQuickWindow) ConnectSceneGraphError(f func(error QQuickWindow__SceneGraphError, message string)) { + if ptr.Pointer() != nil { + C.QQuickWindow_ConnectSceneGraphError(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "sceneGraphError", f) + } +} + +func (ptr *QQuickWindow) DisconnectSceneGraphError() { + if ptr.Pointer() != nil { + C.QQuickWindow_DisconnectSceneGraphError(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "sceneGraphError") + } +} + +//export callbackQQuickWindowSceneGraphError +func callbackQQuickWindowSceneGraphError(ptrName *C.char, error C.int, message *C.char) { + qt.GetSignal(C.GoString(ptrName), "sceneGraphError").(func(QQuickWindow__SceneGraphError, string))(QQuickWindow__SceneGraphError(error), C.GoString(message)) +} + +func (ptr *QQuickWindow) ConnectSceneGraphInitialized(f func()) { + if ptr.Pointer() != nil { + C.QQuickWindow_ConnectSceneGraphInitialized(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "sceneGraphInitialized", f) + } +} + +func (ptr *QQuickWindow) DisconnectSceneGraphInitialized() { + if ptr.Pointer() != nil { + C.QQuickWindow_DisconnectSceneGraphInitialized(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "sceneGraphInitialized") + } +} + +//export callbackQQuickWindowSceneGraphInitialized +func callbackQQuickWindowSceneGraphInitialized(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "sceneGraphInitialized").(func())() +} + +func (ptr *QQuickWindow) ConnectSceneGraphInvalidated(f func()) { + if ptr.Pointer() != nil { + C.QQuickWindow_ConnectSceneGraphInvalidated(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "sceneGraphInvalidated", f) + } +} + +func (ptr *QQuickWindow) DisconnectSceneGraphInvalidated() { + if ptr.Pointer() != nil { + C.QQuickWindow_DisconnectSceneGraphInvalidated(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "sceneGraphInvalidated") + } +} + +//export callbackQQuickWindowSceneGraphInvalidated +func callbackQQuickWindowSceneGraphInvalidated(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "sceneGraphInvalidated").(func())() +} + +func (ptr *QQuickWindow) ScheduleRenderJob(job core.QRunnableITF, stage QQuickWindow__RenderStage) { + if ptr.Pointer() != nil { + C.QQuickWindow_ScheduleRenderJob(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRunnable(job)), C.int(stage)) + } +} + +func (ptr *QQuickWindow) SendEvent(item QQuickItemITF, e core.QEventITF) bool { + if ptr.Pointer() != nil { + return C.QQuickWindow_SendEvent(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQQuickItem(item)), C.QtObjectPtr(core.PointerFromQEvent(e))) != 0 + } + return false +} + +func (ptr *QQuickWindow) SetClearBeforeRendering(enabled bool) { + if ptr.Pointer() != nil { + C.QQuickWindow_SetClearBeforeRendering(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func QQuickWindow_SetDefaultAlphaBuffer(useAlpha bool) { + C.QQuickWindow_QQuickWindow_SetDefaultAlphaBuffer(C.int(qt.GoBoolToInt(useAlpha))) +} + +func (ptr *QQuickWindow) SetPersistentOpenGLContext(persistent bool) { + if ptr.Pointer() != nil { + C.QQuickWindow_SetPersistentOpenGLContext(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(persistent))) + } +} + +func (ptr *QQuickWindow) SetPersistentSceneGraph(persistent bool) { + if ptr.Pointer() != nil { + C.QQuickWindow_SetPersistentSceneGraph(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(persistent))) + } +} + +func (ptr *QQuickWindow) SetRenderTarget(fbo gui.QOpenGLFramebufferObjectITF) { + if ptr.Pointer() != nil { + C.QQuickWindow_SetRenderTarget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQOpenGLFramebufferObject(fbo))) + } +} + +func (ptr *QQuickWindow) Update() { + if ptr.Pointer() != nil { + C.QQuickWindow_Update(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QQuickWindow) DestroyQQuickWindow() { + if ptr.Pointer() != nil { + C.QQuickWindow_DestroyQQuickWindow(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/quick/qquickwindow.h b/quick/qquickwindow.h new file mode 100755 index 00000000..ca37f70f --- /dev/null +++ b/quick/qquickwindow.h @@ -0,0 +1,60 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QQuickWindow_ActiveFocusItem(QtObjectPtr ptr); +QtObjectPtr QQuickWindow_ContentItem(QtObjectPtr ptr); +void QQuickWindow_SetColor(QtObjectPtr ptr, QtObjectPtr color); +QtObjectPtr QQuickWindow_NewQQuickWindow(QtObjectPtr parent); +QtObjectPtr QQuickWindow_AccessibleRoot(QtObjectPtr ptr); +void QQuickWindow_ConnectActiveFocusItemChanged(QtObjectPtr ptr); +void QQuickWindow_DisconnectActiveFocusItemChanged(QtObjectPtr ptr); +void QQuickWindow_ConnectAfterAnimating(QtObjectPtr ptr); +void QQuickWindow_DisconnectAfterAnimating(QtObjectPtr ptr); +void QQuickWindow_ConnectAfterRendering(QtObjectPtr ptr); +void QQuickWindow_DisconnectAfterRendering(QtObjectPtr ptr); +void QQuickWindow_ConnectAfterSynchronizing(QtObjectPtr ptr); +void QQuickWindow_DisconnectAfterSynchronizing(QtObjectPtr ptr); +void QQuickWindow_ConnectBeforeRendering(QtObjectPtr ptr); +void QQuickWindow_DisconnectBeforeRendering(QtObjectPtr ptr); +void QQuickWindow_ConnectBeforeSynchronizing(QtObjectPtr ptr); +void QQuickWindow_DisconnectBeforeSynchronizing(QtObjectPtr ptr); +int QQuickWindow_ClearBeforeRendering(QtObjectPtr ptr); +QtObjectPtr QQuickWindow_CreateTextureFromImage2(QtObjectPtr ptr, QtObjectPtr image); +QtObjectPtr QQuickWindow_CreateTextureFromImage(QtObjectPtr ptr, QtObjectPtr image, int options); +void QQuickWindow_ConnectFrameSwapped(QtObjectPtr ptr); +void QQuickWindow_DisconnectFrameSwapped(QtObjectPtr ptr); +int QQuickWindow_QQuickWindow_HasDefaultAlphaBuffer(); +QtObjectPtr QQuickWindow_IncubationController(QtObjectPtr ptr); +int QQuickWindow_IsPersistentOpenGLContext(QtObjectPtr ptr); +int QQuickWindow_IsPersistentSceneGraph(QtObjectPtr ptr); +int QQuickWindow_IsSceneGraphInitialized(QtObjectPtr ptr); +QtObjectPtr QQuickWindow_MouseGrabberItem(QtObjectPtr ptr); +QtObjectPtr QQuickWindow_OpenglContext(QtObjectPtr ptr); +void QQuickWindow_ConnectOpenglContextCreated(QtObjectPtr ptr); +void QQuickWindow_DisconnectOpenglContextCreated(QtObjectPtr ptr); +void QQuickWindow_ReleaseResources(QtObjectPtr ptr); +QtObjectPtr QQuickWindow_RenderTarget(QtObjectPtr ptr); +void QQuickWindow_ResetOpenGLState(QtObjectPtr ptr); +void QQuickWindow_ConnectSceneGraphAboutToStop(QtObjectPtr ptr); +void QQuickWindow_DisconnectSceneGraphAboutToStop(QtObjectPtr ptr); +void QQuickWindow_ConnectSceneGraphError(QtObjectPtr ptr); +void QQuickWindow_DisconnectSceneGraphError(QtObjectPtr ptr); +void QQuickWindow_ConnectSceneGraphInitialized(QtObjectPtr ptr); +void QQuickWindow_DisconnectSceneGraphInitialized(QtObjectPtr ptr); +void QQuickWindow_ConnectSceneGraphInvalidated(QtObjectPtr ptr); +void QQuickWindow_DisconnectSceneGraphInvalidated(QtObjectPtr ptr); +void QQuickWindow_ScheduleRenderJob(QtObjectPtr ptr, QtObjectPtr job, int stage); +int QQuickWindow_SendEvent(QtObjectPtr ptr, QtObjectPtr item, QtObjectPtr e); +void QQuickWindow_SetClearBeforeRendering(QtObjectPtr ptr, int enabled); +void QQuickWindow_QQuickWindow_SetDefaultAlphaBuffer(int useAlpha); +void QQuickWindow_SetPersistentOpenGLContext(QtObjectPtr ptr, int persistent); +void QQuickWindow_SetPersistentSceneGraph(QtObjectPtr ptr, int persistent); +void QQuickWindow_SetRenderTarget(QtObjectPtr ptr, QtObjectPtr fbo); +void QQuickWindow_Update(QtObjectPtr ptr); +void QQuickWindow_DestroyQQuickWindow(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qsgabstractrenderer.cpp b/quick/qsgabstractrenderer.cpp new file mode 100755 index 00000000..bb6fd747 --- /dev/null +++ b/quick/qsgabstractrenderer.cpp @@ -0,0 +1,63 @@ +#include "qsgabstractrenderer.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSGAbstractRenderer: public QSGAbstractRenderer { +public: +void Signal_SceneGraphChanged(){callbackQSGAbstractRendererSceneGraphChanged(this->objectName().toUtf8().data());}; +}; + +int QSGAbstractRenderer_ClearMode(QtObjectPtr ptr){ + return static_cast(ptr)->clearMode(); +} + +void QSGAbstractRenderer_ConnectSceneGraphChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSGAbstractRenderer::sceneGraphChanged), static_cast(ptr), static_cast(&MyQSGAbstractRenderer::Signal_SceneGraphChanged));; +} + +void QSGAbstractRenderer_DisconnectSceneGraphChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSGAbstractRenderer::sceneGraphChanged), static_cast(ptr), static_cast(&MyQSGAbstractRenderer::Signal_SceneGraphChanged));; +} + +void QSGAbstractRenderer_SetClearColor(QtObjectPtr ptr, QtObjectPtr color){ + static_cast(ptr)->setClearColor(*static_cast(color)); +} + +void QSGAbstractRenderer_SetClearMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setClearMode(static_cast(mode)); +} + +void QSGAbstractRenderer_SetDeviceRect(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->setDeviceRect(*static_cast(rect)); +} + +void QSGAbstractRenderer_SetDeviceRect2(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->setDeviceRect(*static_cast(size)); +} + +void QSGAbstractRenderer_SetProjectionMatrix(QtObjectPtr ptr, QtObjectPtr matrix){ + static_cast(ptr)->setProjectionMatrix(*static_cast(matrix)); +} + +void QSGAbstractRenderer_SetProjectionMatrixToRect(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->setProjectionMatrixToRect(*static_cast(rect)); +} + +void QSGAbstractRenderer_SetViewportRect(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->setViewportRect(*static_cast(rect)); +} + +void QSGAbstractRenderer_SetViewportRect2(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->setViewportRect(*static_cast(size)); +} + diff --git a/quick/qsgabstractrenderer.go b/quick/qsgabstractrenderer.go new file mode 100755 index 00000000..6ee96908 --- /dev/null +++ b/quick/qsgabstractrenderer.go @@ -0,0 +1,122 @@ +package quick + +//#include "qsgabstractrenderer.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QSGAbstractRenderer struct { + core.QObject +} + +type QSGAbstractRendererITF interface { + core.QObjectITF + QSGAbstractRendererPTR() *QSGAbstractRenderer +} + +func PointerFromQSGAbstractRenderer(ptr QSGAbstractRendererITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSGAbstractRendererPTR().Pointer() + } + return nil +} + +func QSGAbstractRendererFromPointer(ptr unsafe.Pointer) *QSGAbstractRenderer { + var n = new(QSGAbstractRenderer) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSGAbstractRenderer_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSGAbstractRenderer) QSGAbstractRendererPTR() *QSGAbstractRenderer { + return ptr +} + +//QSGAbstractRenderer::ClearModeBit +type QSGAbstractRenderer__ClearModeBit int + +var ( + QSGAbstractRenderer__ClearColorBuffer = QSGAbstractRenderer__ClearModeBit(0x0001) + QSGAbstractRenderer__ClearDepthBuffer = QSGAbstractRenderer__ClearModeBit(0x0002) + QSGAbstractRenderer__ClearStencilBuffer = QSGAbstractRenderer__ClearModeBit(0x0004) +) + +func (ptr *QSGAbstractRenderer) ClearMode() QSGAbstractRenderer__ClearModeBit { + if ptr.Pointer() != nil { + return QSGAbstractRenderer__ClearModeBit(C.QSGAbstractRenderer_ClearMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSGAbstractRenderer) ConnectSceneGraphChanged(f func()) { + if ptr.Pointer() != nil { + C.QSGAbstractRenderer_ConnectSceneGraphChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "sceneGraphChanged", f) + } +} + +func (ptr *QSGAbstractRenderer) DisconnectSceneGraphChanged() { + if ptr.Pointer() != nil { + C.QSGAbstractRenderer_DisconnectSceneGraphChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "sceneGraphChanged") + } +} + +//export callbackQSGAbstractRendererSceneGraphChanged +func callbackQSGAbstractRendererSceneGraphChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "sceneGraphChanged").(func())() +} + +func (ptr *QSGAbstractRenderer) SetClearColor(color gui.QColorITF) { + if ptr.Pointer() != nil { + C.QSGAbstractRenderer_SetClearColor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQColor(color))) + } +} + +func (ptr *QSGAbstractRenderer) SetClearMode(mode QSGAbstractRenderer__ClearModeBit) { + if ptr.Pointer() != nil { + C.QSGAbstractRenderer_SetClearMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QSGAbstractRenderer) SetDeviceRect(rect core.QRectITF) { + if ptr.Pointer() != nil { + C.QSGAbstractRenderer_SetDeviceRect(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rect))) + } +} + +func (ptr *QSGAbstractRenderer) SetDeviceRect2(size core.QSizeITF) { + if ptr.Pointer() != nil { + C.QSGAbstractRenderer_SetDeviceRect2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(size))) + } +} + +func (ptr *QSGAbstractRenderer) SetProjectionMatrix(matrix gui.QMatrix4x4ITF) { + if ptr.Pointer() != nil { + C.QSGAbstractRenderer_SetProjectionMatrix(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQMatrix4x4(matrix))) + } +} + +func (ptr *QSGAbstractRenderer) SetProjectionMatrixToRect(rect core.QRectFITF) { + if ptr.Pointer() != nil { + C.QSGAbstractRenderer_SetProjectionMatrixToRect(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rect))) + } +} + +func (ptr *QSGAbstractRenderer) SetViewportRect(rect core.QRectITF) { + if ptr.Pointer() != nil { + C.QSGAbstractRenderer_SetViewportRect(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rect))) + } +} + +func (ptr *QSGAbstractRenderer) SetViewportRect2(size core.QSizeITF) { + if ptr.Pointer() != nil { + C.QSGAbstractRenderer_SetViewportRect2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(size))) + } +} diff --git a/quick/qsgabstractrenderer.h b/quick/qsgabstractrenderer.h new file mode 100755 index 00000000..4d4fd797 --- /dev/null +++ b/quick/qsgabstractrenderer.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QSGAbstractRenderer_ClearMode(QtObjectPtr ptr); +void QSGAbstractRenderer_ConnectSceneGraphChanged(QtObjectPtr ptr); +void QSGAbstractRenderer_DisconnectSceneGraphChanged(QtObjectPtr ptr); +void QSGAbstractRenderer_SetClearColor(QtObjectPtr ptr, QtObjectPtr color); +void QSGAbstractRenderer_SetClearMode(QtObjectPtr ptr, int mode); +void QSGAbstractRenderer_SetDeviceRect(QtObjectPtr ptr, QtObjectPtr rect); +void QSGAbstractRenderer_SetDeviceRect2(QtObjectPtr ptr, QtObjectPtr size); +void QSGAbstractRenderer_SetProjectionMatrix(QtObjectPtr ptr, QtObjectPtr matrix); +void QSGAbstractRenderer_SetProjectionMatrixToRect(QtObjectPtr ptr, QtObjectPtr rect); +void QSGAbstractRenderer_SetViewportRect(QtObjectPtr ptr, QtObjectPtr rect); +void QSGAbstractRenderer_SetViewportRect2(QtObjectPtr ptr, QtObjectPtr size); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qsgbasicgeometrynode.cpp b/quick/qsgbasicgeometrynode.cpp new file mode 100755 index 00000000..0a201127 --- /dev/null +++ b/quick/qsgbasicgeometrynode.cpp @@ -0,0 +1,29 @@ +#include "qsgbasicgeometrynode.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSGBasicGeometryNode: public QSGBasicGeometryNode { +public: +}; + +QtObjectPtr QSGBasicGeometryNode_Geometry2(QtObjectPtr ptr){ + return static_cast(ptr)->geometry(); +} + +QtObjectPtr QSGBasicGeometryNode_Geometry(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->geometry()); +} + +void QSGBasicGeometryNode_SetGeometry(QtObjectPtr ptr, QtObjectPtr geometry){ + static_cast(ptr)->setGeometry(static_cast(geometry)); +} + +void QSGBasicGeometryNode_DestroyQSGBasicGeometryNode(QtObjectPtr ptr){ + static_cast(ptr)->~QSGBasicGeometryNode(); +} + diff --git a/quick/qsgbasicgeometrynode.go b/quick/qsgbasicgeometrynode.go new file mode 100755 index 00000000..6e92dcb5 --- /dev/null +++ b/quick/qsgbasicgeometrynode.go @@ -0,0 +1,59 @@ +package quick + +//#include "qsgbasicgeometrynode.h" +import "C" +import ( + "unsafe" +) + +type QSGBasicGeometryNode struct { + QSGNode +} + +type QSGBasicGeometryNodeITF interface { + QSGNodeITF + QSGBasicGeometryNodePTR() *QSGBasicGeometryNode +} + +func PointerFromQSGBasicGeometryNode(ptr QSGBasicGeometryNodeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSGBasicGeometryNodePTR().Pointer() + } + return nil +} + +func QSGBasicGeometryNodeFromPointer(ptr unsafe.Pointer) *QSGBasicGeometryNode { + var n = new(QSGBasicGeometryNode) + n.SetPointer(ptr) + return n +} + +func (ptr *QSGBasicGeometryNode) QSGBasicGeometryNodePTR() *QSGBasicGeometryNode { + return ptr +} + +func (ptr *QSGBasicGeometryNode) Geometry2() *QSGGeometry { + if ptr.Pointer() != nil { + return QSGGeometryFromPointer(unsafe.Pointer(C.QSGBasicGeometryNode_Geometry2(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSGBasicGeometryNode) Geometry() *QSGGeometry { + if ptr.Pointer() != nil { + return QSGGeometryFromPointer(unsafe.Pointer(C.QSGBasicGeometryNode_Geometry(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSGBasicGeometryNode) SetGeometry(geometry QSGGeometryITF) { + if ptr.Pointer() != nil { + C.QSGBasicGeometryNode_SetGeometry(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSGGeometry(geometry))) + } +} + +func (ptr *QSGBasicGeometryNode) DestroyQSGBasicGeometryNode() { + if ptr.Pointer() != nil { + C.QSGBasicGeometryNode_DestroyQSGBasicGeometryNode(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/quick/qsgbasicgeometrynode.h b/quick/qsgbasicgeometrynode.h new file mode 100755 index 00000000..2ab6f8ec --- /dev/null +++ b/quick/qsgbasicgeometrynode.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSGBasicGeometryNode_Geometry2(QtObjectPtr ptr); +QtObjectPtr QSGBasicGeometryNode_Geometry(QtObjectPtr ptr); +void QSGBasicGeometryNode_SetGeometry(QtObjectPtr ptr, QtObjectPtr geometry); +void QSGBasicGeometryNode_DestroyQSGBasicGeometryNode(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qsgclipnode.cpp b/quick/qsgclipnode.cpp new file mode 100755 index 00000000..37b68f68 --- /dev/null +++ b/quick/qsgclipnode.cpp @@ -0,0 +1,34 @@ +#include "qsgclipnode.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSGClipNode: public QSGClipNode { +public: +}; + +QtObjectPtr QSGClipNode_NewQSGClipNode(){ + return new QSGClipNode(); +} + +int QSGClipNode_IsRectangular(QtObjectPtr ptr){ + return static_cast(ptr)->isRectangular(); +} + +void QSGClipNode_SetClipRect(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->setClipRect(*static_cast(rect)); +} + +void QSGClipNode_SetIsRectangular(QtObjectPtr ptr, int rectHint){ + static_cast(ptr)->setIsRectangular(rectHint != 0); +} + +void QSGClipNode_DestroyQSGClipNode(QtObjectPtr ptr){ + static_cast(ptr)->~QSGClipNode(); +} + diff --git a/quick/qsgclipnode.go b/quick/qsgclipnode.go new file mode 100755 index 00000000..42f29a27 --- /dev/null +++ b/quick/qsgclipnode.go @@ -0,0 +1,64 @@ +package quick + +//#include "qsgclipnode.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QSGClipNode struct { + QSGBasicGeometryNode +} + +type QSGClipNodeITF interface { + QSGBasicGeometryNodeITF + QSGClipNodePTR() *QSGClipNode +} + +func PointerFromQSGClipNode(ptr QSGClipNodeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSGClipNodePTR().Pointer() + } + return nil +} + +func QSGClipNodeFromPointer(ptr unsafe.Pointer) *QSGClipNode { + var n = new(QSGClipNode) + n.SetPointer(ptr) + return n +} + +func (ptr *QSGClipNode) QSGClipNodePTR() *QSGClipNode { + return ptr +} + +func NewQSGClipNode() *QSGClipNode { + return QSGClipNodeFromPointer(unsafe.Pointer(C.QSGClipNode_NewQSGClipNode())) +} + +func (ptr *QSGClipNode) IsRectangular() bool { + if ptr.Pointer() != nil { + return C.QSGClipNode_IsRectangular(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSGClipNode) SetClipRect(rect core.QRectFITF) { + if ptr.Pointer() != nil { + C.QSGClipNode_SetClipRect(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rect))) + } +} + +func (ptr *QSGClipNode) SetIsRectangular(rectHint bool) { + if ptr.Pointer() != nil { + C.QSGClipNode_SetIsRectangular(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(rectHint))) + } +} + +func (ptr *QSGClipNode) DestroyQSGClipNode() { + if ptr.Pointer() != nil { + C.QSGClipNode_DestroyQSGClipNode(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/quick/qsgclipnode.h b/quick/qsgclipnode.h new file mode 100755 index 00000000..80cf683d --- /dev/null +++ b/quick/qsgclipnode.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSGClipNode_NewQSGClipNode(); +int QSGClipNode_IsRectangular(QtObjectPtr ptr); +void QSGClipNode_SetClipRect(QtObjectPtr ptr, QtObjectPtr rect); +void QSGClipNode_SetIsRectangular(QtObjectPtr ptr, int rectHint); +void QSGClipNode_DestroyQSGClipNode(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qsgdynamictexture.cpp b/quick/qsgdynamictexture.cpp new file mode 100755 index 00000000..63428ff2 --- /dev/null +++ b/quick/qsgdynamictexture.cpp @@ -0,0 +1,16 @@ +#include "qsgdynamictexture.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSGDynamicTexture: public QSGDynamicTexture { +public: +}; + +int QSGDynamicTexture_UpdateTexture(QtObjectPtr ptr){ + return static_cast(ptr)->updateTexture(); +} + diff --git a/quick/qsgdynamictexture.go b/quick/qsgdynamictexture.go new file mode 100755 index 00000000..b0b65759 --- /dev/null +++ b/quick/qsgdynamictexture.go @@ -0,0 +1,44 @@ +package quick + +//#include "qsgdynamictexture.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QSGDynamicTexture struct { + QSGTexture +} + +type QSGDynamicTextureITF interface { + QSGTextureITF + QSGDynamicTexturePTR() *QSGDynamicTexture +} + +func PointerFromQSGDynamicTexture(ptr QSGDynamicTextureITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSGDynamicTexturePTR().Pointer() + } + return nil +} + +func QSGDynamicTextureFromPointer(ptr unsafe.Pointer) *QSGDynamicTexture { + var n = new(QSGDynamicTexture) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSGDynamicTexture_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSGDynamicTexture) QSGDynamicTexturePTR() *QSGDynamicTexture { + return ptr +} + +func (ptr *QSGDynamicTexture) UpdateTexture() bool { + if ptr.Pointer() != nil { + return C.QSGDynamicTexture_UpdateTexture(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} diff --git a/quick/qsgdynamictexture.h b/quick/qsgdynamictexture.h new file mode 100755 index 00000000..c5ae0796 --- /dev/null +++ b/quick/qsgdynamictexture.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QSGDynamicTexture_UpdateTexture(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qsgengine.cpp b/quick/qsgengine.cpp new file mode 100755 index 00000000..e0d60ccf --- /dev/null +++ b/quick/qsgengine.cpp @@ -0,0 +1,39 @@ +#include "qsgengine.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSGEngine: public QSGEngine { +public: +}; + +QtObjectPtr QSGEngine_NewQSGEngine(QtObjectPtr parent){ + return new QSGEngine(static_cast(parent)); +} + +QtObjectPtr QSGEngine_CreateRenderer(QtObjectPtr ptr){ + return static_cast(ptr)->createRenderer(); +} + +QtObjectPtr QSGEngine_CreateTextureFromImage(QtObjectPtr ptr, QtObjectPtr image, int options){ + return static_cast(ptr)->createTextureFromImage(*static_cast(image), static_cast(options)); +} + +void QSGEngine_Initialize(QtObjectPtr ptr, QtObjectPtr context){ + static_cast(ptr)->initialize(static_cast(context)); +} + +void QSGEngine_Invalidate(QtObjectPtr ptr){ + static_cast(ptr)->invalidate(); +} + +void QSGEngine_DestroyQSGEngine(QtObjectPtr ptr){ + static_cast(ptr)->~QSGEngine(); +} + diff --git a/quick/qsgengine.go b/quick/qsgengine.go new file mode 100755 index 00000000..afb10c86 --- /dev/null +++ b/quick/qsgengine.go @@ -0,0 +1,85 @@ +package quick + +//#include "qsgengine.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QSGEngine struct { + core.QObject +} + +type QSGEngineITF interface { + core.QObjectITF + QSGEnginePTR() *QSGEngine +} + +func PointerFromQSGEngine(ptr QSGEngineITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSGEnginePTR().Pointer() + } + return nil +} + +func QSGEngineFromPointer(ptr unsafe.Pointer) *QSGEngine { + var n = new(QSGEngine) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSGEngine_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSGEngine) QSGEnginePTR() *QSGEngine { + return ptr +} + +//QSGEngine::CreateTextureOption +type QSGEngine__CreateTextureOption int + +var ( + QSGEngine__TextureHasAlphaChannel = QSGEngine__CreateTextureOption(0x0001) + QSGEngine__TextureOwnsGLTexture = QSGEngine__CreateTextureOption(0x0004) + QSGEngine__TextureCanUseAtlas = QSGEngine__CreateTextureOption(0x0008) +) + +func NewQSGEngine(parent core.QObjectITF) *QSGEngine { + return QSGEngineFromPointer(unsafe.Pointer(C.QSGEngine_NewQSGEngine(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QSGEngine) CreateRenderer() *QSGAbstractRenderer { + if ptr.Pointer() != nil { + return QSGAbstractRendererFromPointer(unsafe.Pointer(C.QSGEngine_CreateRenderer(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSGEngine) CreateTextureFromImage(image gui.QImageITF, options QSGEngine__CreateTextureOption) *QSGTexture { + if ptr.Pointer() != nil { + return QSGTextureFromPointer(unsafe.Pointer(C.QSGEngine_CreateTextureFromImage(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQImage(image)), C.int(options)))) + } + return nil +} + +func (ptr *QSGEngine) Initialize(context gui.QOpenGLContextITF) { + if ptr.Pointer() != nil { + C.QSGEngine_Initialize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQOpenGLContext(context))) + } +} + +func (ptr *QSGEngine) Invalidate() { + if ptr.Pointer() != nil { + C.QSGEngine_Invalidate(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSGEngine) DestroyQSGEngine() { + if ptr.Pointer() != nil { + C.QSGEngine_DestroyQSGEngine(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/quick/qsgengine.h b/quick/qsgengine.h new file mode 100755 index 00000000..e88720ca --- /dev/null +++ b/quick/qsgengine.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSGEngine_NewQSGEngine(QtObjectPtr parent); +QtObjectPtr QSGEngine_CreateRenderer(QtObjectPtr ptr); +QtObjectPtr QSGEngine_CreateTextureFromImage(QtObjectPtr ptr, QtObjectPtr image, int options); +void QSGEngine_Initialize(QtObjectPtr ptr, QtObjectPtr context); +void QSGEngine_Invalidate(QtObjectPtr ptr); +void QSGEngine_DestroyQSGEngine(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qsgflatcolormaterial.cpp b/quick/qsgflatcolormaterial.cpp new file mode 100755 index 00000000..71cfe767 --- /dev/null +++ b/quick/qsgflatcolormaterial.cpp @@ -0,0 +1,17 @@ +#include "qsgflatcolormaterial.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSGFlatColorMaterial: public QSGFlatColorMaterial { +public: +}; + +void QSGFlatColorMaterial_SetColor(QtObjectPtr ptr, QtObjectPtr color){ + static_cast(ptr)->setColor(*static_cast(color)); +} + diff --git a/quick/qsgflatcolormaterial.go b/quick/qsgflatcolormaterial.go new file mode 100755 index 00000000..2904ee45 --- /dev/null +++ b/quick/qsgflatcolormaterial.go @@ -0,0 +1,40 @@ +package quick + +//#include "qsgflatcolormaterial.h" +import "C" +import ( + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QSGFlatColorMaterial struct { + QSGMaterial +} + +type QSGFlatColorMaterialITF interface { + QSGMaterialITF + QSGFlatColorMaterialPTR() *QSGFlatColorMaterial +} + +func PointerFromQSGFlatColorMaterial(ptr QSGFlatColorMaterialITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSGFlatColorMaterialPTR().Pointer() + } + return nil +} + +func QSGFlatColorMaterialFromPointer(ptr unsafe.Pointer) *QSGFlatColorMaterial { + var n = new(QSGFlatColorMaterial) + n.SetPointer(ptr) + return n +} + +func (ptr *QSGFlatColorMaterial) QSGFlatColorMaterialPTR() *QSGFlatColorMaterial { + return ptr +} + +func (ptr *QSGFlatColorMaterial) SetColor(color gui.QColorITF) { + if ptr.Pointer() != nil { + C.QSGFlatColorMaterial_SetColor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQColor(color))) + } +} diff --git a/quick/qsgflatcolormaterial.h b/quick/qsgflatcolormaterial.h new file mode 100755 index 00000000..4a4505a0 --- /dev/null +++ b/quick/qsgflatcolormaterial.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QSGFlatColorMaterial_SetColor(QtObjectPtr ptr, QtObjectPtr color); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qsggeometry.cpp b/quick/qsggeometry.cpp new file mode 100755 index 00000000..cab49c1f --- /dev/null +++ b/quick/qsggeometry.cpp @@ -0,0 +1,94 @@ +#include "qsggeometry.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSGGeometry: public QSGGeometry { +public: +}; + +void QSGGeometry_Allocate(QtObjectPtr ptr, int vertexCount, int indexCount){ + static_cast(ptr)->allocate(vertexCount, indexCount); +} + +int QSGGeometry_AttributeCount(QtObjectPtr ptr){ + return static_cast(ptr)->attributeCount(); +} + +int QSGGeometry_IndexCount(QtObjectPtr ptr){ + return static_cast(ptr)->indexCount(); +} + +void QSGGeometry_IndexData(QtObjectPtr ptr){ + static_cast(ptr)->indexData(); +} + +void QSGGeometry_IndexData2(QtObjectPtr ptr){ + static_cast(ptr)->indexData(); +} + +int QSGGeometry_IndexDataPattern(QtObjectPtr ptr){ + return static_cast(ptr)->indexDataPattern(); +} + +int QSGGeometry_IndexType(QtObjectPtr ptr){ + return static_cast(ptr)->indexType(); +} + +void QSGGeometry_MarkIndexDataDirty(QtObjectPtr ptr){ + static_cast(ptr)->markIndexDataDirty(); +} + +void QSGGeometry_MarkVertexDataDirty(QtObjectPtr ptr){ + static_cast(ptr)->markVertexDataDirty(); +} + +void QSGGeometry_SetIndexDataPattern(QtObjectPtr ptr, int p){ + static_cast(ptr)->setIndexDataPattern(static_cast(p)); +} + +void QSGGeometry_SetVertexDataPattern(QtObjectPtr ptr, int p){ + static_cast(ptr)->setVertexDataPattern(static_cast(p)); +} + +int QSGGeometry_SizeOfIndex(QtObjectPtr ptr){ + return static_cast(ptr)->sizeOfIndex(); +} + +int QSGGeometry_SizeOfVertex(QtObjectPtr ptr){ + return static_cast(ptr)->sizeOfVertex(); +} + +void QSGGeometry_QSGGeometry_UpdateRectGeometry(QtObjectPtr g, QtObjectPtr rect){ + QSGGeometry::updateRectGeometry(static_cast(g), *static_cast(rect)); +} + +void QSGGeometry_QSGGeometry_UpdateTexturedRectGeometry(QtObjectPtr g, QtObjectPtr rect, QtObjectPtr textureRect){ + QSGGeometry::updateTexturedRectGeometry(static_cast(g), *static_cast(rect), *static_cast(textureRect)); +} + +int QSGGeometry_VertexCount(QtObjectPtr ptr){ + return static_cast(ptr)->vertexCount(); +} + +void QSGGeometry_VertexData(QtObjectPtr ptr){ + static_cast(ptr)->vertexData(); +} + +void QSGGeometry_VertexData2(QtObjectPtr ptr){ + static_cast(ptr)->vertexData(); +} + +int QSGGeometry_VertexDataPattern(QtObjectPtr ptr){ + return static_cast(ptr)->vertexDataPattern(); +} + +void QSGGeometry_DestroyQSGGeometry(QtObjectPtr ptr){ + static_cast(ptr)->~QSGGeometry(); +} + diff --git a/quick/qsggeometry.go b/quick/qsggeometry.go new file mode 100755 index 00000000..12e39861 --- /dev/null +++ b/quick/qsggeometry.go @@ -0,0 +1,175 @@ +package quick + +//#include "qsggeometry.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QSGGeometry struct { + ptr unsafe.Pointer +} + +type QSGGeometryITF interface { + QSGGeometryPTR() *QSGGeometry +} + +func (p *QSGGeometry) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSGGeometry) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSGGeometry(ptr QSGGeometryITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSGGeometryPTR().Pointer() + } + return nil +} + +func QSGGeometryFromPointer(ptr unsafe.Pointer) *QSGGeometry { + var n = new(QSGGeometry) + n.SetPointer(ptr) + return n +} + +func (ptr *QSGGeometry) QSGGeometryPTR() *QSGGeometry { + return ptr +} + +//QSGGeometry::DataPattern +type QSGGeometry__DataPattern int + +var ( + QSGGeometry__AlwaysUploadPattern = QSGGeometry__DataPattern(0) + QSGGeometry__StreamPattern = QSGGeometry__DataPattern(1) + QSGGeometry__DynamicPattern = QSGGeometry__DataPattern(2) + QSGGeometry__StaticPattern = QSGGeometry__DataPattern(3) +) + +func (ptr *QSGGeometry) Allocate(vertexCount int, indexCount int) { + if ptr.Pointer() != nil { + C.QSGGeometry_Allocate(C.QtObjectPtr(ptr.Pointer()), C.int(vertexCount), C.int(indexCount)) + } +} + +func (ptr *QSGGeometry) AttributeCount() int { + if ptr.Pointer() != nil { + return int(C.QSGGeometry_AttributeCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSGGeometry) IndexCount() int { + if ptr.Pointer() != nil { + return int(C.QSGGeometry_IndexCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSGGeometry) IndexData() { + if ptr.Pointer() != nil { + C.QSGGeometry_IndexData(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSGGeometry) IndexData2() { + if ptr.Pointer() != nil { + C.QSGGeometry_IndexData2(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSGGeometry) IndexDataPattern() QSGGeometry__DataPattern { + if ptr.Pointer() != nil { + return QSGGeometry__DataPattern(C.QSGGeometry_IndexDataPattern(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSGGeometry) IndexType() int { + if ptr.Pointer() != nil { + return int(C.QSGGeometry_IndexType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSGGeometry) MarkIndexDataDirty() { + if ptr.Pointer() != nil { + C.QSGGeometry_MarkIndexDataDirty(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSGGeometry) MarkVertexDataDirty() { + if ptr.Pointer() != nil { + C.QSGGeometry_MarkVertexDataDirty(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSGGeometry) SetIndexDataPattern(p QSGGeometry__DataPattern) { + if ptr.Pointer() != nil { + C.QSGGeometry_SetIndexDataPattern(C.QtObjectPtr(ptr.Pointer()), C.int(p)) + } +} + +func (ptr *QSGGeometry) SetVertexDataPattern(p QSGGeometry__DataPattern) { + if ptr.Pointer() != nil { + C.QSGGeometry_SetVertexDataPattern(C.QtObjectPtr(ptr.Pointer()), C.int(p)) + } +} + +func (ptr *QSGGeometry) SizeOfIndex() int { + if ptr.Pointer() != nil { + return int(C.QSGGeometry_SizeOfIndex(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSGGeometry) SizeOfVertex() int { + if ptr.Pointer() != nil { + return int(C.QSGGeometry_SizeOfVertex(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QSGGeometry_UpdateRectGeometry(g QSGGeometryITF, rect core.QRectFITF) { + C.QSGGeometry_QSGGeometry_UpdateRectGeometry(C.QtObjectPtr(PointerFromQSGGeometry(g)), C.QtObjectPtr(core.PointerFromQRectF(rect))) +} + +func QSGGeometry_UpdateTexturedRectGeometry(g QSGGeometryITF, rect core.QRectFITF, textureRect core.QRectFITF) { + C.QSGGeometry_QSGGeometry_UpdateTexturedRectGeometry(C.QtObjectPtr(PointerFromQSGGeometry(g)), C.QtObjectPtr(core.PointerFromQRectF(rect)), C.QtObjectPtr(core.PointerFromQRectF(textureRect))) +} + +func (ptr *QSGGeometry) VertexCount() int { + if ptr.Pointer() != nil { + return int(C.QSGGeometry_VertexCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSGGeometry) VertexData() { + if ptr.Pointer() != nil { + C.QSGGeometry_VertexData(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSGGeometry) VertexData2() { + if ptr.Pointer() != nil { + C.QSGGeometry_VertexData2(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSGGeometry) VertexDataPattern() QSGGeometry__DataPattern { + if ptr.Pointer() != nil { + return QSGGeometry__DataPattern(C.QSGGeometry_VertexDataPattern(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSGGeometry) DestroyQSGGeometry() { + if ptr.Pointer() != nil { + C.QSGGeometry_DestroyQSGGeometry(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/quick/qsggeometry.h b/quick/qsggeometry.h new file mode 100755 index 00000000..3238955e --- /dev/null +++ b/quick/qsggeometry.h @@ -0,0 +1,29 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QSGGeometry_Allocate(QtObjectPtr ptr, int vertexCount, int indexCount); +int QSGGeometry_AttributeCount(QtObjectPtr ptr); +int QSGGeometry_IndexCount(QtObjectPtr ptr); +void QSGGeometry_IndexData(QtObjectPtr ptr); +void QSGGeometry_IndexData2(QtObjectPtr ptr); +int QSGGeometry_IndexDataPattern(QtObjectPtr ptr); +int QSGGeometry_IndexType(QtObjectPtr ptr); +void QSGGeometry_MarkIndexDataDirty(QtObjectPtr ptr); +void QSGGeometry_MarkVertexDataDirty(QtObjectPtr ptr); +void QSGGeometry_SetIndexDataPattern(QtObjectPtr ptr, int p); +void QSGGeometry_SetVertexDataPattern(QtObjectPtr ptr, int p); +int QSGGeometry_SizeOfIndex(QtObjectPtr ptr); +int QSGGeometry_SizeOfVertex(QtObjectPtr ptr); +void QSGGeometry_QSGGeometry_UpdateRectGeometry(QtObjectPtr g, QtObjectPtr rect); +void QSGGeometry_QSGGeometry_UpdateTexturedRectGeometry(QtObjectPtr g, QtObjectPtr rect, QtObjectPtr textureRect); +int QSGGeometry_VertexCount(QtObjectPtr ptr); +void QSGGeometry_VertexData(QtObjectPtr ptr); +void QSGGeometry_VertexData2(QtObjectPtr ptr); +int QSGGeometry_VertexDataPattern(QtObjectPtr ptr); +void QSGGeometry_DestroyQSGGeometry(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qsggeometrynode.cpp b/quick/qsggeometrynode.cpp new file mode 100755 index 00000000..c7ec66ca --- /dev/null +++ b/quick/qsggeometrynode.cpp @@ -0,0 +1,38 @@ +#include "qsggeometrynode.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSGGeometryNode: public QSGGeometryNode { +public: +}; + +QtObjectPtr QSGGeometryNode_NewQSGGeometryNode(){ + return new QSGGeometryNode(); +} + +QtObjectPtr QSGGeometryNode_Material(QtObjectPtr ptr){ + return static_cast(ptr)->material(); +} + +QtObjectPtr QSGGeometryNode_OpaqueMaterial(QtObjectPtr ptr){ + return static_cast(ptr)->opaqueMaterial(); +} + +void QSGGeometryNode_SetMaterial(QtObjectPtr ptr, QtObjectPtr material){ + static_cast(ptr)->setMaterial(static_cast(material)); +} + +void QSGGeometryNode_SetOpaqueMaterial(QtObjectPtr ptr, QtObjectPtr material){ + static_cast(ptr)->setOpaqueMaterial(static_cast(material)); +} + +void QSGGeometryNode_DestroyQSGGeometryNode(QtObjectPtr ptr){ + static_cast(ptr)->~QSGGeometryNode(); +} + diff --git a/quick/qsggeometrynode.go b/quick/qsggeometrynode.go new file mode 100755 index 00000000..d2b3dcc6 --- /dev/null +++ b/quick/qsggeometrynode.go @@ -0,0 +1,69 @@ +package quick + +//#include "qsggeometrynode.h" +import "C" +import ( + "unsafe" +) + +type QSGGeometryNode struct { + QSGBasicGeometryNode +} + +type QSGGeometryNodeITF interface { + QSGBasicGeometryNodeITF + QSGGeometryNodePTR() *QSGGeometryNode +} + +func PointerFromQSGGeometryNode(ptr QSGGeometryNodeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSGGeometryNodePTR().Pointer() + } + return nil +} + +func QSGGeometryNodeFromPointer(ptr unsafe.Pointer) *QSGGeometryNode { + var n = new(QSGGeometryNode) + n.SetPointer(ptr) + return n +} + +func (ptr *QSGGeometryNode) QSGGeometryNodePTR() *QSGGeometryNode { + return ptr +} + +func NewQSGGeometryNode() *QSGGeometryNode { + return QSGGeometryNodeFromPointer(unsafe.Pointer(C.QSGGeometryNode_NewQSGGeometryNode())) +} + +func (ptr *QSGGeometryNode) Material() *QSGMaterial { + if ptr.Pointer() != nil { + return QSGMaterialFromPointer(unsafe.Pointer(C.QSGGeometryNode_Material(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSGGeometryNode) OpaqueMaterial() *QSGMaterial { + if ptr.Pointer() != nil { + return QSGMaterialFromPointer(unsafe.Pointer(C.QSGGeometryNode_OpaqueMaterial(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSGGeometryNode) SetMaterial(material QSGMaterialITF) { + if ptr.Pointer() != nil { + C.QSGGeometryNode_SetMaterial(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSGMaterial(material))) + } +} + +func (ptr *QSGGeometryNode) SetOpaqueMaterial(material QSGMaterialITF) { + if ptr.Pointer() != nil { + C.QSGGeometryNode_SetOpaqueMaterial(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSGMaterial(material))) + } +} + +func (ptr *QSGGeometryNode) DestroyQSGGeometryNode() { + if ptr.Pointer() != nil { + C.QSGGeometryNode_DestroyQSGGeometryNode(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/quick/qsggeometrynode.h b/quick/qsggeometrynode.h new file mode 100755 index 00000000..e6e6d3a2 --- /dev/null +++ b/quick/qsggeometrynode.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSGGeometryNode_NewQSGGeometryNode(); +QtObjectPtr QSGGeometryNode_Material(QtObjectPtr ptr); +QtObjectPtr QSGGeometryNode_OpaqueMaterial(QtObjectPtr ptr); +void QSGGeometryNode_SetMaterial(QtObjectPtr ptr, QtObjectPtr material); +void QSGGeometryNode_SetOpaqueMaterial(QtObjectPtr ptr, QtObjectPtr material); +void QSGGeometryNode_DestroyQSGGeometryNode(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qsgmaterial.cpp b/quick/qsgmaterial.cpp new file mode 100755 index 00000000..b99a6d99 --- /dev/null +++ b/quick/qsgmaterial.cpp @@ -0,0 +1,32 @@ +#include "qsgmaterial.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSGMaterial: public QSGMaterial { +public: +}; + +int QSGMaterial_Compare(QtObjectPtr ptr, QtObjectPtr other){ + return static_cast(ptr)->compare(static_cast(other)); +} + +QtObjectPtr QSGMaterial_CreateShader(QtObjectPtr ptr){ + return static_cast(ptr)->createShader(); +} + +int QSGMaterial_Flags(QtObjectPtr ptr){ + return static_cast(ptr)->flags(); +} + +void QSGMaterial_SetFlag(QtObjectPtr ptr, int flags, int on){ + static_cast(ptr)->setFlag(static_cast(flags), on != 0); +} + +QtObjectPtr QSGMaterial_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + diff --git a/quick/qsgmaterial.go b/quick/qsgmaterial.go new file mode 100755 index 00000000..cab10ae8 --- /dev/null +++ b/quick/qsgmaterial.go @@ -0,0 +1,86 @@ +package quick + +//#include "qsgmaterial.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QSGMaterial struct { + ptr unsafe.Pointer +} + +type QSGMaterialITF interface { + QSGMaterialPTR() *QSGMaterial +} + +func (p *QSGMaterial) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSGMaterial) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSGMaterial(ptr QSGMaterialITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSGMaterialPTR().Pointer() + } + return nil +} + +func QSGMaterialFromPointer(ptr unsafe.Pointer) *QSGMaterial { + var n = new(QSGMaterial) + n.SetPointer(ptr) + return n +} + +func (ptr *QSGMaterial) QSGMaterialPTR() *QSGMaterial { + return ptr +} + +//QSGMaterial::Flag +type QSGMaterial__Flag int + +var ( + QSGMaterial__Blending = QSGMaterial__Flag(0x0001) + QSGMaterial__RequiresDeterminant = QSGMaterial__Flag(0x0002) + QSGMaterial__RequiresFullMatrixExceptTranslate = QSGMaterial__Flag(0x0004 | QSGMaterial__RequiresDeterminant) + QSGMaterial__RequiresFullMatrix = QSGMaterial__Flag(0x0008 | QSGMaterial__RequiresFullMatrixExceptTranslate) + QSGMaterial__CustomCompileStep = QSGMaterial__Flag(0x0010) +) + +func (ptr *QSGMaterial) Compare(other QSGMaterialITF) int { + if ptr.Pointer() != nil { + return int(C.QSGMaterial_Compare(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSGMaterial(other)))) + } + return 0 +} + +func (ptr *QSGMaterial) CreateShader() *QSGMaterialShader { + if ptr.Pointer() != nil { + return QSGMaterialShaderFromPointer(unsafe.Pointer(C.QSGMaterial_CreateShader(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSGMaterial) Flags() QSGMaterial__Flag { + if ptr.Pointer() != nil { + return QSGMaterial__Flag(C.QSGMaterial_Flags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSGMaterial) SetFlag(flags QSGMaterial__Flag, on bool) { + if ptr.Pointer() != nil { + C.QSGMaterial_SetFlag(C.QtObjectPtr(ptr.Pointer()), C.int(flags), C.int(qt.GoBoolToInt(on))) + } +} + +func (ptr *QSGMaterial) Type() *QSGMaterialType { + if ptr.Pointer() != nil { + return QSGMaterialTypeFromPointer(unsafe.Pointer(C.QSGMaterial_Type(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} diff --git a/quick/qsgmaterial.h b/quick/qsgmaterial.h new file mode 100755 index 00000000..048fbafb --- /dev/null +++ b/quick/qsgmaterial.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QSGMaterial_Compare(QtObjectPtr ptr, QtObjectPtr other); +QtObjectPtr QSGMaterial_CreateShader(QtObjectPtr ptr); +int QSGMaterial_Flags(QtObjectPtr ptr); +void QSGMaterial_SetFlag(QtObjectPtr ptr, int flags, int on); +QtObjectPtr QSGMaterial_Type(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qsgmaterialshader.cpp b/quick/qsgmaterialshader.cpp new file mode 100755 index 00000000..e032fef4 --- /dev/null +++ b/quick/qsgmaterialshader.cpp @@ -0,0 +1,25 @@ +#include "qsgmaterialshader.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSGMaterialShader: public QSGMaterialShader { +public: +}; + +void QSGMaterialShader_Activate(QtObjectPtr ptr){ + static_cast(ptr)->activate(); +} + +void QSGMaterialShader_Deactivate(QtObjectPtr ptr){ + static_cast(ptr)->deactivate(); +} + +QtObjectPtr QSGMaterialShader_Program(QtObjectPtr ptr){ + return static_cast(ptr)->program(); +} + diff --git a/quick/qsgmaterialshader.go b/quick/qsgmaterialshader.go new file mode 100755 index 00000000..cb58e34f --- /dev/null +++ b/quick/qsgmaterialshader.go @@ -0,0 +1,60 @@ +package quick + +//#include "qsgmaterialshader.h" +import "C" +import ( + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QSGMaterialShader struct { + ptr unsafe.Pointer +} + +type QSGMaterialShaderITF interface { + QSGMaterialShaderPTR() *QSGMaterialShader +} + +func (p *QSGMaterialShader) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSGMaterialShader) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSGMaterialShader(ptr QSGMaterialShaderITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSGMaterialShaderPTR().Pointer() + } + return nil +} + +func QSGMaterialShaderFromPointer(ptr unsafe.Pointer) *QSGMaterialShader { + var n = new(QSGMaterialShader) + n.SetPointer(ptr) + return n +} + +func (ptr *QSGMaterialShader) QSGMaterialShaderPTR() *QSGMaterialShader { + return ptr +} + +func (ptr *QSGMaterialShader) Activate() { + if ptr.Pointer() != nil { + C.QSGMaterialShader_Activate(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSGMaterialShader) Deactivate() { + if ptr.Pointer() != nil { + C.QSGMaterialShader_Deactivate(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSGMaterialShader) Program() *gui.QOpenGLShaderProgram { + if ptr.Pointer() != nil { + return gui.QOpenGLShaderProgramFromPointer(unsafe.Pointer(C.QSGMaterialShader_Program(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} diff --git a/quick/qsgmaterialshader.h b/quick/qsgmaterialshader.h new file mode 100755 index 00000000..8f313126 --- /dev/null +++ b/quick/qsgmaterialshader.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QSGMaterialShader_Activate(QtObjectPtr ptr); +void QSGMaterialShader_Deactivate(QtObjectPtr ptr); +QtObjectPtr QSGMaterialShader_Program(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qsgmaterialtype.cpp b/quick/qsgmaterialtype.cpp new file mode 100755 index 00000000..60ad7f2e --- /dev/null +++ b/quick/qsgmaterialtype.cpp @@ -0,0 +1,13 @@ +#include "qsgmaterialtype.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSGMaterialType: public QSGMaterialType { +public: +}; + diff --git a/quick/qsgmaterialtype.go b/quick/qsgmaterialtype.go new file mode 100755 index 00000000..1c0df528 --- /dev/null +++ b/quick/qsgmaterialtype.go @@ -0,0 +1,40 @@ +package quick + +//#include "qsgmaterialtype.h" +import "C" +import ( + "unsafe" +) + +type QSGMaterialType struct { + ptr unsafe.Pointer +} + +type QSGMaterialTypeITF interface { + QSGMaterialTypePTR() *QSGMaterialType +} + +func (p *QSGMaterialType) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSGMaterialType) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSGMaterialType(ptr QSGMaterialTypeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSGMaterialTypePTR().Pointer() + } + return nil +} + +func QSGMaterialTypeFromPointer(ptr unsafe.Pointer) *QSGMaterialType { + var n = new(QSGMaterialType) + n.SetPointer(ptr) + return n +} + +func (ptr *QSGMaterialType) QSGMaterialTypePTR() *QSGMaterialType { + return ptr +} diff --git a/quick/qsgmaterialtype.h b/quick/qsgmaterialtype.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/quick/qsgmaterialtype.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qsgnode.cpp b/quick/qsgnode.cpp new file mode 100755 index 00000000..8b8c6207 --- /dev/null +++ b/quick/qsgnode.cpp @@ -0,0 +1,100 @@ +#include "qsgnode.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSGNode: public QSGNode { +public: +}; + +QtObjectPtr QSGNode_ChildAtIndex(QtObjectPtr ptr, int i){ + return static_cast(ptr)->childAtIndex(i); +} + +int QSGNode_ChildCount(QtObjectPtr ptr){ + return static_cast(ptr)->childCount(); +} + +QtObjectPtr QSGNode_NewQSGNode(){ + return new QSGNode(); +} + +void QSGNode_AppendChildNode(QtObjectPtr ptr, QtObjectPtr node){ + static_cast(ptr)->appendChildNode(static_cast(node)); +} + +QtObjectPtr QSGNode_FirstChild(QtObjectPtr ptr){ + return static_cast(ptr)->firstChild(); +} + +int QSGNode_Flags(QtObjectPtr ptr){ + return static_cast(ptr)->flags(); +} + +void QSGNode_InsertChildNodeAfter(QtObjectPtr ptr, QtObjectPtr node, QtObjectPtr after){ + static_cast(ptr)->insertChildNodeAfter(static_cast(node), static_cast(after)); +} + +void QSGNode_InsertChildNodeBefore(QtObjectPtr ptr, QtObjectPtr node, QtObjectPtr before){ + static_cast(ptr)->insertChildNodeBefore(static_cast(node), static_cast(before)); +} + +int QSGNode_IsSubtreeBlocked(QtObjectPtr ptr){ + return static_cast(ptr)->isSubtreeBlocked(); +} + +QtObjectPtr QSGNode_LastChild(QtObjectPtr ptr){ + return static_cast(ptr)->lastChild(); +} + +void QSGNode_MarkDirty(QtObjectPtr ptr, int bits){ + static_cast(ptr)->markDirty(static_cast(bits)); +} + +QtObjectPtr QSGNode_NextSibling(QtObjectPtr ptr){ + return static_cast(ptr)->nextSibling(); +} + +QtObjectPtr QSGNode_Parent(QtObjectPtr ptr){ + return static_cast(ptr)->parent(); +} + +void QSGNode_PrependChildNode(QtObjectPtr ptr, QtObjectPtr node){ + static_cast(ptr)->prependChildNode(static_cast(node)); +} + +void QSGNode_Preprocess(QtObjectPtr ptr){ + static_cast(ptr)->preprocess(); +} + +QtObjectPtr QSGNode_PreviousSibling(QtObjectPtr ptr){ + return static_cast(ptr)->previousSibling(); +} + +void QSGNode_RemoveAllChildNodes(QtObjectPtr ptr){ + static_cast(ptr)->removeAllChildNodes(); +} + +void QSGNode_RemoveChildNode(QtObjectPtr ptr, QtObjectPtr node){ + static_cast(ptr)->removeChildNode(static_cast(node)); +} + +void QSGNode_SetFlag(QtObjectPtr ptr, int f, int enabled){ + static_cast(ptr)->setFlag(static_cast(f), enabled != 0); +} + +void QSGNode_SetFlags(QtObjectPtr ptr, int f, int enabled){ + static_cast(ptr)->setFlags(static_cast(f), enabled != 0); +} + +int QSGNode_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QSGNode_DestroyQSGNode(QtObjectPtr ptr){ + static_cast(ptr)->~QSGNode(); +} + diff --git a/quick/qsgnode.go b/quick/qsgnode.go new file mode 100755 index 00000000..da02f4ad --- /dev/null +++ b/quick/qsgnode.go @@ -0,0 +1,217 @@ +package quick + +//#include "qsgnode.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QSGNode struct { + ptr unsafe.Pointer +} + +type QSGNodeITF interface { + QSGNodePTR() *QSGNode +} + +func (p *QSGNode) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSGNode) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSGNode(ptr QSGNodeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSGNodePTR().Pointer() + } + return nil +} + +func QSGNodeFromPointer(ptr unsafe.Pointer) *QSGNode { + var n = new(QSGNode) + n.SetPointer(ptr) + return n +} + +func (ptr *QSGNode) QSGNodePTR() *QSGNode { + return ptr +} + +//QSGNode::DirtyStateBit +type QSGNode__DirtyStateBit int + +var ( + QSGNode__DirtySubtreeBlocked = QSGNode__DirtyStateBit(0x0080) + QSGNode__DirtyMatrix = QSGNode__DirtyStateBit(0x0100) + QSGNode__DirtyNodeAdded = QSGNode__DirtyStateBit(0x0400) + QSGNode__DirtyNodeRemoved = QSGNode__DirtyStateBit(0x0800) + QSGNode__DirtyGeometry = QSGNode__DirtyStateBit(0x1000) + QSGNode__DirtyMaterial = QSGNode__DirtyStateBit(0x2000) + QSGNode__DirtyOpacity = QSGNode__DirtyStateBit(0x4000) +) + +//QSGNode::Flag +type QSGNode__Flag int + +var ( + QSGNode__OwnedByParent = QSGNode__Flag(0x0001) + QSGNode__UsePreprocess = QSGNode__Flag(0x0002) + QSGNode__OwnsGeometry = QSGNode__Flag(0x00010000) + QSGNode__OwnsMaterial = QSGNode__Flag(0x00020000) + QSGNode__OwnsOpaqueMaterial = QSGNode__Flag(0x00040000) + QSGNode__InternalReserved = QSGNode__Flag(0x01000000) +) + +//QSGNode::NodeType +type QSGNode__NodeType int + +var ( + QSGNode__BasicNodeType = QSGNode__NodeType(0) + QSGNode__GeometryNodeType = QSGNode__NodeType(1) + QSGNode__TransformNodeType = QSGNode__NodeType(2) + QSGNode__ClipNodeType = QSGNode__NodeType(3) + QSGNode__OpacityNodeType = QSGNode__NodeType(4) +) + +func (ptr *QSGNode) ChildAtIndex(i int) *QSGNode { + if ptr.Pointer() != nil { + return QSGNodeFromPointer(unsafe.Pointer(C.QSGNode_ChildAtIndex(C.QtObjectPtr(ptr.Pointer()), C.int(i)))) + } + return nil +} + +func (ptr *QSGNode) ChildCount() int { + if ptr.Pointer() != nil { + return int(C.QSGNode_ChildCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQSGNode() *QSGNode { + return QSGNodeFromPointer(unsafe.Pointer(C.QSGNode_NewQSGNode())) +} + +func (ptr *QSGNode) AppendChildNode(node QSGNodeITF) { + if ptr.Pointer() != nil { + C.QSGNode_AppendChildNode(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSGNode(node))) + } +} + +func (ptr *QSGNode) FirstChild() *QSGNode { + if ptr.Pointer() != nil { + return QSGNodeFromPointer(unsafe.Pointer(C.QSGNode_FirstChild(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSGNode) Flags() QSGNode__Flag { + if ptr.Pointer() != nil { + return QSGNode__Flag(C.QSGNode_Flags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSGNode) InsertChildNodeAfter(node QSGNodeITF, after QSGNodeITF) { + if ptr.Pointer() != nil { + C.QSGNode_InsertChildNodeAfter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSGNode(node)), C.QtObjectPtr(PointerFromQSGNode(after))) + } +} + +func (ptr *QSGNode) InsertChildNodeBefore(node QSGNodeITF, before QSGNodeITF) { + if ptr.Pointer() != nil { + C.QSGNode_InsertChildNodeBefore(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSGNode(node)), C.QtObjectPtr(PointerFromQSGNode(before))) + } +} + +func (ptr *QSGNode) IsSubtreeBlocked() bool { + if ptr.Pointer() != nil { + return C.QSGNode_IsSubtreeBlocked(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSGNode) LastChild() *QSGNode { + if ptr.Pointer() != nil { + return QSGNodeFromPointer(unsafe.Pointer(C.QSGNode_LastChild(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSGNode) MarkDirty(bits QSGNode__DirtyStateBit) { + if ptr.Pointer() != nil { + C.QSGNode_MarkDirty(C.QtObjectPtr(ptr.Pointer()), C.int(bits)) + } +} + +func (ptr *QSGNode) NextSibling() *QSGNode { + if ptr.Pointer() != nil { + return QSGNodeFromPointer(unsafe.Pointer(C.QSGNode_NextSibling(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSGNode) Parent() *QSGNode { + if ptr.Pointer() != nil { + return QSGNodeFromPointer(unsafe.Pointer(C.QSGNode_Parent(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSGNode) PrependChildNode(node QSGNodeITF) { + if ptr.Pointer() != nil { + C.QSGNode_PrependChildNode(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSGNode(node))) + } +} + +func (ptr *QSGNode) Preprocess() { + if ptr.Pointer() != nil { + C.QSGNode_Preprocess(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSGNode) PreviousSibling() *QSGNode { + if ptr.Pointer() != nil { + return QSGNodeFromPointer(unsafe.Pointer(C.QSGNode_PreviousSibling(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSGNode) RemoveAllChildNodes() { + if ptr.Pointer() != nil { + C.QSGNode_RemoveAllChildNodes(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSGNode) RemoveChildNode(node QSGNodeITF) { + if ptr.Pointer() != nil { + C.QSGNode_RemoveChildNode(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSGNode(node))) + } +} + +func (ptr *QSGNode) SetFlag(f QSGNode__Flag, enabled bool) { + if ptr.Pointer() != nil { + C.QSGNode_SetFlag(C.QtObjectPtr(ptr.Pointer()), C.int(f), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QSGNode) SetFlags(f QSGNode__Flag, enabled bool) { + if ptr.Pointer() != nil { + C.QSGNode_SetFlags(C.QtObjectPtr(ptr.Pointer()), C.int(f), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QSGNode) Type() QSGNode__NodeType { + if ptr.Pointer() != nil { + return QSGNode__NodeType(C.QSGNode_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSGNode) DestroyQSGNode() { + if ptr.Pointer() != nil { + C.QSGNode_DestroyQSGNode(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/quick/qsgnode.h b/quick/qsgnode.h new file mode 100755 index 00000000..1cced186 --- /dev/null +++ b/quick/qsgnode.h @@ -0,0 +1,31 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSGNode_ChildAtIndex(QtObjectPtr ptr, int i); +int QSGNode_ChildCount(QtObjectPtr ptr); +QtObjectPtr QSGNode_NewQSGNode(); +void QSGNode_AppendChildNode(QtObjectPtr ptr, QtObjectPtr node); +QtObjectPtr QSGNode_FirstChild(QtObjectPtr ptr); +int QSGNode_Flags(QtObjectPtr ptr); +void QSGNode_InsertChildNodeAfter(QtObjectPtr ptr, QtObjectPtr node, QtObjectPtr after); +void QSGNode_InsertChildNodeBefore(QtObjectPtr ptr, QtObjectPtr node, QtObjectPtr before); +int QSGNode_IsSubtreeBlocked(QtObjectPtr ptr); +QtObjectPtr QSGNode_LastChild(QtObjectPtr ptr); +void QSGNode_MarkDirty(QtObjectPtr ptr, int bits); +QtObjectPtr QSGNode_NextSibling(QtObjectPtr ptr); +QtObjectPtr QSGNode_Parent(QtObjectPtr ptr); +void QSGNode_PrependChildNode(QtObjectPtr ptr, QtObjectPtr node); +void QSGNode_Preprocess(QtObjectPtr ptr); +QtObjectPtr QSGNode_PreviousSibling(QtObjectPtr ptr); +void QSGNode_RemoveAllChildNodes(QtObjectPtr ptr); +void QSGNode_RemoveChildNode(QtObjectPtr ptr, QtObjectPtr node); +void QSGNode_SetFlag(QtObjectPtr ptr, int f, int enabled); +void QSGNode_SetFlags(QtObjectPtr ptr, int f, int enabled); +int QSGNode_Type(QtObjectPtr ptr); +void QSGNode_DestroyQSGNode(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qsgopacitynode.cpp b/quick/qsgopacitynode.cpp new file mode 100755 index 00000000..d21733d8 --- /dev/null +++ b/quick/qsgopacitynode.cpp @@ -0,0 +1,20 @@ +#include "qsgopacitynode.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSGOpacityNode: public QSGOpacityNode { +public: +}; + +QtObjectPtr QSGOpacityNode_NewQSGOpacityNode(){ + return new QSGOpacityNode(); +} + +void QSGOpacityNode_DestroyQSGOpacityNode(QtObjectPtr ptr){ + static_cast(ptr)->~QSGOpacityNode(); +} + diff --git a/quick/qsgopacitynode.go b/quick/qsgopacitynode.go new file mode 100755 index 00000000..88f496bf --- /dev/null +++ b/quick/qsgopacitynode.go @@ -0,0 +1,43 @@ +package quick + +//#include "qsgopacitynode.h" +import "C" +import ( + "unsafe" +) + +type QSGOpacityNode struct { + QSGNode +} + +type QSGOpacityNodeITF interface { + QSGNodeITF + QSGOpacityNodePTR() *QSGOpacityNode +} + +func PointerFromQSGOpacityNode(ptr QSGOpacityNodeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSGOpacityNodePTR().Pointer() + } + return nil +} + +func QSGOpacityNodeFromPointer(ptr unsafe.Pointer) *QSGOpacityNode { + var n = new(QSGOpacityNode) + n.SetPointer(ptr) + return n +} + +func (ptr *QSGOpacityNode) QSGOpacityNodePTR() *QSGOpacityNode { + return ptr +} + +func NewQSGOpacityNode() *QSGOpacityNode { + return QSGOpacityNodeFromPointer(unsafe.Pointer(C.QSGOpacityNode_NewQSGOpacityNode())) +} + +func (ptr *QSGOpacityNode) DestroyQSGOpacityNode() { + if ptr.Pointer() != nil { + C.QSGOpacityNode_DestroyQSGOpacityNode(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/quick/qsgopacitynode.h b/quick/qsgopacitynode.h new file mode 100755 index 00000000..e5566f1a --- /dev/null +++ b/quick/qsgopacitynode.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSGOpacityNode_NewQSGOpacityNode(); +void QSGOpacityNode_DestroyQSGOpacityNode(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qsgopaquetexturematerial.cpp b/quick/qsgopaquetexturematerial.cpp new file mode 100755 index 00000000..62aba3a2 --- /dev/null +++ b/quick/qsgopaquetexturematerial.cpp @@ -0,0 +1,53 @@ +#include "qsgopaquetexturematerial.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSGOpaqueTextureMaterial: public QSGOpaqueTextureMaterial { +public: +}; + +int QSGOpaqueTextureMaterial_Filtering(QtObjectPtr ptr){ + return static_cast(ptr)->filtering(); +} + +int QSGOpaqueTextureMaterial_HorizontalWrapMode(QtObjectPtr ptr){ + return static_cast(ptr)->horizontalWrapMode(); +} + +int QSGOpaqueTextureMaterial_MipmapFiltering(QtObjectPtr ptr){ + return static_cast(ptr)->mipmapFiltering(); +} + +void QSGOpaqueTextureMaterial_SetFiltering(QtObjectPtr ptr, int filtering){ + static_cast(ptr)->setFiltering(static_cast(filtering)); +} + +void QSGOpaqueTextureMaterial_SetHorizontalWrapMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setHorizontalWrapMode(static_cast(mode)); +} + +void QSGOpaqueTextureMaterial_SetMipmapFiltering(QtObjectPtr ptr, int filtering){ + static_cast(ptr)->setMipmapFiltering(static_cast(filtering)); +} + +void QSGOpaqueTextureMaterial_SetTexture(QtObjectPtr ptr, QtObjectPtr texture){ + static_cast(ptr)->setTexture(static_cast(texture)); +} + +void QSGOpaqueTextureMaterial_SetVerticalWrapMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setVerticalWrapMode(static_cast(mode)); +} + +QtObjectPtr QSGOpaqueTextureMaterial_Texture(QtObjectPtr ptr){ + return static_cast(ptr)->texture(); +} + +int QSGOpaqueTextureMaterial_VerticalWrapMode(QtObjectPtr ptr){ + return static_cast(ptr)->verticalWrapMode(); +} + diff --git a/quick/qsgopaquetexturematerial.go b/quick/qsgopaquetexturematerial.go new file mode 100755 index 00000000..04aa593d --- /dev/null +++ b/quick/qsgopaquetexturematerial.go @@ -0,0 +1,98 @@ +package quick + +//#include "qsgopaquetexturematerial.h" +import "C" +import ( + "unsafe" +) + +type QSGOpaqueTextureMaterial struct { + QSGMaterial +} + +type QSGOpaqueTextureMaterialITF interface { + QSGMaterialITF + QSGOpaqueTextureMaterialPTR() *QSGOpaqueTextureMaterial +} + +func PointerFromQSGOpaqueTextureMaterial(ptr QSGOpaqueTextureMaterialITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSGOpaqueTextureMaterialPTR().Pointer() + } + return nil +} + +func QSGOpaqueTextureMaterialFromPointer(ptr unsafe.Pointer) *QSGOpaqueTextureMaterial { + var n = new(QSGOpaqueTextureMaterial) + n.SetPointer(ptr) + return n +} + +func (ptr *QSGOpaqueTextureMaterial) QSGOpaqueTextureMaterialPTR() *QSGOpaqueTextureMaterial { + return ptr +} + +func (ptr *QSGOpaqueTextureMaterial) Filtering() QSGTexture__Filtering { + if ptr.Pointer() != nil { + return QSGTexture__Filtering(C.QSGOpaqueTextureMaterial_Filtering(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSGOpaqueTextureMaterial) HorizontalWrapMode() QSGTexture__WrapMode { + if ptr.Pointer() != nil { + return QSGTexture__WrapMode(C.QSGOpaqueTextureMaterial_HorizontalWrapMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSGOpaqueTextureMaterial) MipmapFiltering() QSGTexture__Filtering { + if ptr.Pointer() != nil { + return QSGTexture__Filtering(C.QSGOpaqueTextureMaterial_MipmapFiltering(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSGOpaqueTextureMaterial) SetFiltering(filtering QSGTexture__Filtering) { + if ptr.Pointer() != nil { + C.QSGOpaqueTextureMaterial_SetFiltering(C.QtObjectPtr(ptr.Pointer()), C.int(filtering)) + } +} + +func (ptr *QSGOpaqueTextureMaterial) SetHorizontalWrapMode(mode QSGTexture__WrapMode) { + if ptr.Pointer() != nil { + C.QSGOpaqueTextureMaterial_SetHorizontalWrapMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QSGOpaqueTextureMaterial) SetMipmapFiltering(filtering QSGTexture__Filtering) { + if ptr.Pointer() != nil { + C.QSGOpaqueTextureMaterial_SetMipmapFiltering(C.QtObjectPtr(ptr.Pointer()), C.int(filtering)) + } +} + +func (ptr *QSGOpaqueTextureMaterial) SetTexture(texture QSGTextureITF) { + if ptr.Pointer() != nil { + C.QSGOpaqueTextureMaterial_SetTexture(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSGTexture(texture))) + } +} + +func (ptr *QSGOpaqueTextureMaterial) SetVerticalWrapMode(mode QSGTexture__WrapMode) { + if ptr.Pointer() != nil { + C.QSGOpaqueTextureMaterial_SetVerticalWrapMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QSGOpaqueTextureMaterial) Texture() *QSGTexture { + if ptr.Pointer() != nil { + return QSGTextureFromPointer(unsafe.Pointer(C.QSGOpaqueTextureMaterial_Texture(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSGOpaqueTextureMaterial) VerticalWrapMode() QSGTexture__WrapMode { + if ptr.Pointer() != nil { + return QSGTexture__WrapMode(C.QSGOpaqueTextureMaterial_VerticalWrapMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/quick/qsgopaquetexturematerial.h b/quick/qsgopaquetexturematerial.h new file mode 100755 index 00000000..c2e45668 --- /dev/null +++ b/quick/qsgopaquetexturematerial.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QSGOpaqueTextureMaterial_Filtering(QtObjectPtr ptr); +int QSGOpaqueTextureMaterial_HorizontalWrapMode(QtObjectPtr ptr); +int QSGOpaqueTextureMaterial_MipmapFiltering(QtObjectPtr ptr); +void QSGOpaqueTextureMaterial_SetFiltering(QtObjectPtr ptr, int filtering); +void QSGOpaqueTextureMaterial_SetHorizontalWrapMode(QtObjectPtr ptr, int mode); +void QSGOpaqueTextureMaterial_SetMipmapFiltering(QtObjectPtr ptr, int filtering); +void QSGOpaqueTextureMaterial_SetTexture(QtObjectPtr ptr, QtObjectPtr texture); +void QSGOpaqueTextureMaterial_SetVerticalWrapMode(QtObjectPtr ptr, int mode); +QtObjectPtr QSGOpaqueTextureMaterial_Texture(QtObjectPtr ptr); +int QSGOpaqueTextureMaterial_VerticalWrapMode(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qsgsimplematerial.cpp b/quick/qsgsimplematerial.cpp new file mode 100755 index 00000000..18fc3679 --- /dev/null +++ b/quick/qsgsimplematerial.cpp @@ -0,0 +1,8 @@ +#include "qsgsimplematerial.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/quick/qsgsimplematerial.go b/quick/qsgsimplematerial.go new file mode 100755 index 00000000..129cadde --- /dev/null +++ b/quick/qsgsimplematerial.go @@ -0,0 +1,33 @@ +package quick + +//#include "qsgsimplematerial.h" +import "C" +import ( + "unsafe" +) + +type QSGSimpleMaterial struct { + QSGMaterial +} + +type QSGSimpleMaterialITF interface { + QSGMaterialITF + QSGSimpleMaterialPTR() *QSGSimpleMaterial +} + +func PointerFromQSGSimpleMaterial(ptr QSGSimpleMaterialITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSGSimpleMaterialPTR().Pointer() + } + return nil +} + +func QSGSimpleMaterialFromPointer(ptr unsafe.Pointer) *QSGSimpleMaterial { + var n = new(QSGSimpleMaterial) + n.SetPointer(ptr) + return n +} + +func (ptr *QSGSimpleMaterial) QSGSimpleMaterialPTR() *QSGSimpleMaterial { + return ptr +} diff --git a/quick/qsgsimplematerial.h b/quick/qsgsimplematerial.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/quick/qsgsimplematerial.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qsgsimplematerialshader.cpp b/quick/qsgsimplematerialshader.cpp new file mode 100755 index 00000000..60c7c203 --- /dev/null +++ b/quick/qsgsimplematerialshader.cpp @@ -0,0 +1,7 @@ +#include "qsgsimplematerialshader.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/quick/qsgsimplematerialshader.go b/quick/qsgsimplematerialshader.go new file mode 100755 index 00000000..c6be4aad --- /dev/null +++ b/quick/qsgsimplematerialshader.go @@ -0,0 +1,33 @@ +package quick + +//#include "qsgsimplematerialshader.h" +import "C" +import ( + "unsafe" +) + +type QSGSimpleMaterialShader struct { + QSGMaterialShader +} + +type QSGSimpleMaterialShaderITF interface { + QSGMaterialShaderITF + QSGSimpleMaterialShaderPTR() *QSGSimpleMaterialShader +} + +func PointerFromQSGSimpleMaterialShader(ptr QSGSimpleMaterialShaderITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSGSimpleMaterialShaderPTR().Pointer() + } + return nil +} + +func QSGSimpleMaterialShaderFromPointer(ptr unsafe.Pointer) *QSGSimpleMaterialShader { + var n = new(QSGSimpleMaterialShader) + n.SetPointer(ptr) + return n +} + +func (ptr *QSGSimpleMaterialShader) QSGSimpleMaterialShaderPTR() *QSGSimpleMaterialShader { + return ptr +} diff --git a/quick/qsgsimplematerialshader.h b/quick/qsgsimplematerialshader.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/quick/qsgsimplematerialshader.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qsgsimplerectnode.cpp b/quick/qsgsimplerectnode.cpp new file mode 100755 index 00000000..31c8ef2b --- /dev/null +++ b/quick/qsgsimplerectnode.cpp @@ -0,0 +1,31 @@ +#include "qsgsimplerectnode.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSGSimpleRectNode: public QSGSimpleRectNode { +public: +}; + +QtObjectPtr QSGSimpleRectNode_NewQSGSimpleRectNode2(){ + return new QSGSimpleRectNode(); +} + +QtObjectPtr QSGSimpleRectNode_NewQSGSimpleRectNode(QtObjectPtr rect, QtObjectPtr color){ + return new QSGSimpleRectNode(*static_cast(rect), *static_cast(color)); +} + +void QSGSimpleRectNode_SetColor(QtObjectPtr ptr, QtObjectPtr color){ + static_cast(ptr)->setColor(*static_cast(color)); +} + +void QSGSimpleRectNode_SetRect(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->setRect(*static_cast(rect)); +} + diff --git a/quick/qsgsimplerectnode.go b/quick/qsgsimplerectnode.go new file mode 100755 index 00000000..4b79f401 --- /dev/null +++ b/quick/qsgsimplerectnode.go @@ -0,0 +1,55 @@ +package quick + +//#include "qsgsimplerectnode.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QSGSimpleRectNode struct { + QSGGeometryNode +} + +type QSGSimpleRectNodeITF interface { + QSGGeometryNodeITF + QSGSimpleRectNodePTR() *QSGSimpleRectNode +} + +func PointerFromQSGSimpleRectNode(ptr QSGSimpleRectNodeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSGSimpleRectNodePTR().Pointer() + } + return nil +} + +func QSGSimpleRectNodeFromPointer(ptr unsafe.Pointer) *QSGSimpleRectNode { + var n = new(QSGSimpleRectNode) + n.SetPointer(ptr) + return n +} + +func (ptr *QSGSimpleRectNode) QSGSimpleRectNodePTR() *QSGSimpleRectNode { + return ptr +} + +func NewQSGSimpleRectNode2() *QSGSimpleRectNode { + return QSGSimpleRectNodeFromPointer(unsafe.Pointer(C.QSGSimpleRectNode_NewQSGSimpleRectNode2())) +} + +func NewQSGSimpleRectNode(rect core.QRectFITF, color gui.QColorITF) *QSGSimpleRectNode { + return QSGSimpleRectNodeFromPointer(unsafe.Pointer(C.QSGSimpleRectNode_NewQSGSimpleRectNode(C.QtObjectPtr(core.PointerFromQRectF(rect)), C.QtObjectPtr(gui.PointerFromQColor(color))))) +} + +func (ptr *QSGSimpleRectNode) SetColor(color gui.QColorITF) { + if ptr.Pointer() != nil { + C.QSGSimpleRectNode_SetColor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQColor(color))) + } +} + +func (ptr *QSGSimpleRectNode) SetRect(rect core.QRectFITF) { + if ptr.Pointer() != nil { + C.QSGSimpleRectNode_SetRect(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rect))) + } +} diff --git a/quick/qsgsimplerectnode.h b/quick/qsgsimplerectnode.h new file mode 100755 index 00000000..3c59dc2b --- /dev/null +++ b/quick/qsgsimplerectnode.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSGSimpleRectNode_NewQSGSimpleRectNode2(); +QtObjectPtr QSGSimpleRectNode_NewQSGSimpleRectNode(QtObjectPtr rect, QtObjectPtr color); +void QSGSimpleRectNode_SetColor(QtObjectPtr ptr, QtObjectPtr color); +void QSGSimpleRectNode_SetRect(QtObjectPtr ptr, QtObjectPtr rect); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qsgsimpletexturenode.cpp b/quick/qsgsimpletexturenode.cpp new file mode 100755 index 00000000..529219c3 --- /dev/null +++ b/quick/qsgsimpletexturenode.cpp @@ -0,0 +1,63 @@ +#include "qsgsimpletexturenode.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSGSimpleTextureNode: public QSGSimpleTextureNode { +public: +}; + +QtObjectPtr QSGSimpleTextureNode_NewQSGSimpleTextureNode(){ + return new QSGSimpleTextureNode(); +} + +int QSGSimpleTextureNode_Filtering(QtObjectPtr ptr){ + return static_cast(ptr)->filtering(); +} + +int QSGSimpleTextureNode_OwnsTexture(QtObjectPtr ptr){ + return static_cast(ptr)->ownsTexture(); +} + +void QSGSimpleTextureNode_SetFiltering(QtObjectPtr ptr, int filtering){ + static_cast(ptr)->setFiltering(static_cast(filtering)); +} + +void QSGSimpleTextureNode_SetOwnsTexture(QtObjectPtr ptr, int owns){ + static_cast(ptr)->setOwnsTexture(owns != 0); +} + +void QSGSimpleTextureNode_SetRect(QtObjectPtr ptr, QtObjectPtr r){ + static_cast(ptr)->setRect(*static_cast(r)); +} + +void QSGSimpleTextureNode_SetSourceRect(QtObjectPtr ptr, QtObjectPtr r){ + static_cast(ptr)->setSourceRect(*static_cast(r)); +} + +void QSGSimpleTextureNode_SetTexture(QtObjectPtr ptr, QtObjectPtr texture){ + static_cast(ptr)->setTexture(static_cast(texture)); +} + +void QSGSimpleTextureNode_SetTextureCoordinatesTransform(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setTextureCoordinatesTransform(static_cast(mode)); +} + +QtObjectPtr QSGSimpleTextureNode_Texture(QtObjectPtr ptr){ + return static_cast(ptr)->texture(); +} + +int QSGSimpleTextureNode_TextureCoordinatesTransform(QtObjectPtr ptr){ + return static_cast(ptr)->textureCoordinatesTransform(); +} + +void QSGSimpleTextureNode_DestroyQSGSimpleTextureNode(QtObjectPtr ptr){ + static_cast(ptr)->~QSGSimpleTextureNode(); +} + diff --git a/quick/qsgsimpletexturenode.go b/quick/qsgsimpletexturenode.go new file mode 100755 index 00000000..8c713d90 --- /dev/null +++ b/quick/qsgsimpletexturenode.go @@ -0,0 +1,118 @@ +package quick + +//#include "qsgsimpletexturenode.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QSGSimpleTextureNode struct { + QSGGeometryNode +} + +type QSGSimpleTextureNodeITF interface { + QSGGeometryNodeITF + QSGSimpleTextureNodePTR() *QSGSimpleTextureNode +} + +func PointerFromQSGSimpleTextureNode(ptr QSGSimpleTextureNodeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSGSimpleTextureNodePTR().Pointer() + } + return nil +} + +func QSGSimpleTextureNodeFromPointer(ptr unsafe.Pointer) *QSGSimpleTextureNode { + var n = new(QSGSimpleTextureNode) + n.SetPointer(ptr) + return n +} + +func (ptr *QSGSimpleTextureNode) QSGSimpleTextureNodePTR() *QSGSimpleTextureNode { + return ptr +} + +//QSGSimpleTextureNode::TextureCoordinatesTransformFlag +type QSGSimpleTextureNode__TextureCoordinatesTransformFlag int + +var ( + QSGSimpleTextureNode__NoTransform = QSGSimpleTextureNode__TextureCoordinatesTransformFlag(0x00) + QSGSimpleTextureNode__MirrorHorizontally = QSGSimpleTextureNode__TextureCoordinatesTransformFlag(0x01) + QSGSimpleTextureNode__MirrorVertically = QSGSimpleTextureNode__TextureCoordinatesTransformFlag(0x02) +) + +func NewQSGSimpleTextureNode() *QSGSimpleTextureNode { + return QSGSimpleTextureNodeFromPointer(unsafe.Pointer(C.QSGSimpleTextureNode_NewQSGSimpleTextureNode())) +} + +func (ptr *QSGSimpleTextureNode) Filtering() QSGTexture__Filtering { + if ptr.Pointer() != nil { + return QSGTexture__Filtering(C.QSGSimpleTextureNode_Filtering(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSGSimpleTextureNode) OwnsTexture() bool { + if ptr.Pointer() != nil { + return C.QSGSimpleTextureNode_OwnsTexture(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSGSimpleTextureNode) SetFiltering(filtering QSGTexture__Filtering) { + if ptr.Pointer() != nil { + C.QSGSimpleTextureNode_SetFiltering(C.QtObjectPtr(ptr.Pointer()), C.int(filtering)) + } +} + +func (ptr *QSGSimpleTextureNode) SetOwnsTexture(owns bool) { + if ptr.Pointer() != nil { + C.QSGSimpleTextureNode_SetOwnsTexture(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(owns))) + } +} + +func (ptr *QSGSimpleTextureNode) SetRect(r core.QRectFITF) { + if ptr.Pointer() != nil { + C.QSGSimpleTextureNode_SetRect(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(r))) + } +} + +func (ptr *QSGSimpleTextureNode) SetSourceRect(r core.QRectFITF) { + if ptr.Pointer() != nil { + C.QSGSimpleTextureNode_SetSourceRect(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(r))) + } +} + +func (ptr *QSGSimpleTextureNode) SetTexture(texture QSGTextureITF) { + if ptr.Pointer() != nil { + C.QSGSimpleTextureNode_SetTexture(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSGTexture(texture))) + } +} + +func (ptr *QSGSimpleTextureNode) SetTextureCoordinatesTransform(mode QSGSimpleTextureNode__TextureCoordinatesTransformFlag) { + if ptr.Pointer() != nil { + C.QSGSimpleTextureNode_SetTextureCoordinatesTransform(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QSGSimpleTextureNode) Texture() *QSGTexture { + if ptr.Pointer() != nil { + return QSGTextureFromPointer(unsafe.Pointer(C.QSGSimpleTextureNode_Texture(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSGSimpleTextureNode) TextureCoordinatesTransform() QSGSimpleTextureNode__TextureCoordinatesTransformFlag { + if ptr.Pointer() != nil { + return QSGSimpleTextureNode__TextureCoordinatesTransformFlag(C.QSGSimpleTextureNode_TextureCoordinatesTransform(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSGSimpleTextureNode) DestroyQSGSimpleTextureNode() { + if ptr.Pointer() != nil { + C.QSGSimpleTextureNode_DestroyQSGSimpleTextureNode(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/quick/qsgsimpletexturenode.h b/quick/qsgsimpletexturenode.h new file mode 100755 index 00000000..1feb99b3 --- /dev/null +++ b/quick/qsgsimpletexturenode.h @@ -0,0 +1,21 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSGSimpleTextureNode_NewQSGSimpleTextureNode(); +int QSGSimpleTextureNode_Filtering(QtObjectPtr ptr); +int QSGSimpleTextureNode_OwnsTexture(QtObjectPtr ptr); +void QSGSimpleTextureNode_SetFiltering(QtObjectPtr ptr, int filtering); +void QSGSimpleTextureNode_SetOwnsTexture(QtObjectPtr ptr, int owns); +void QSGSimpleTextureNode_SetRect(QtObjectPtr ptr, QtObjectPtr r); +void QSGSimpleTextureNode_SetSourceRect(QtObjectPtr ptr, QtObjectPtr r); +void QSGSimpleTextureNode_SetTexture(QtObjectPtr ptr, QtObjectPtr texture); +void QSGSimpleTextureNode_SetTextureCoordinatesTransform(QtObjectPtr ptr, int mode); +QtObjectPtr QSGSimpleTextureNode_Texture(QtObjectPtr ptr); +int QSGSimpleTextureNode_TextureCoordinatesTransform(QtObjectPtr ptr); +void QSGSimpleTextureNode_DestroyQSGSimpleTextureNode(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qsgtexture.cpp b/quick/qsgtexture.cpp new file mode 100755 index 00000000..bccce2ea --- /dev/null +++ b/quick/qsgtexture.cpp @@ -0,0 +1,76 @@ +#include "qsgtexture.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSGTexture: public QSGTexture { +public: +}; + +void QSGTexture_Bind(QtObjectPtr ptr){ + static_cast(ptr)->bind(); +} + +int QSGTexture_Filtering(QtObjectPtr ptr){ + return static_cast(ptr)->filtering(); +} + +int QSGTexture_HasAlphaChannel(QtObjectPtr ptr){ + return static_cast(ptr)->hasAlphaChannel(); +} + +int QSGTexture_HasMipmaps(QtObjectPtr ptr){ + return static_cast(ptr)->hasMipmaps(); +} + +int QSGTexture_HorizontalWrapMode(QtObjectPtr ptr){ + return static_cast(ptr)->horizontalWrapMode(); +} + +int QSGTexture_IsAtlasTexture(QtObjectPtr ptr){ + return static_cast(ptr)->isAtlasTexture(); +} + +int QSGTexture_MipmapFiltering(QtObjectPtr ptr){ + return static_cast(ptr)->mipmapFiltering(); +} + +QtObjectPtr QSGTexture_RemovedFromAtlas(QtObjectPtr ptr){ + return static_cast(ptr)->removedFromAtlas(); +} + +void QSGTexture_SetFiltering(QtObjectPtr ptr, int filter){ + static_cast(ptr)->setFiltering(static_cast(filter)); +} + +void QSGTexture_SetHorizontalWrapMode(QtObjectPtr ptr, int hwrap){ + static_cast(ptr)->setHorizontalWrapMode(static_cast(hwrap)); +} + +void QSGTexture_SetMipmapFiltering(QtObjectPtr ptr, int filter){ + static_cast(ptr)->setMipmapFiltering(static_cast(filter)); +} + +void QSGTexture_SetVerticalWrapMode(QtObjectPtr ptr, int vwrap){ + static_cast(ptr)->setVerticalWrapMode(static_cast(vwrap)); +} + +int QSGTexture_TextureId(QtObjectPtr ptr){ + return static_cast(ptr)->textureId(); +} + +void QSGTexture_UpdateBindOptions(QtObjectPtr ptr, int force){ + static_cast(ptr)->updateBindOptions(force != 0); +} + +int QSGTexture_VerticalWrapMode(QtObjectPtr ptr){ + return static_cast(ptr)->verticalWrapMode(); +} + +void QSGTexture_DestroyQSGTexture(QtObjectPtr ptr){ + static_cast(ptr)->~QSGTexture(); +} + diff --git a/quick/qsgtexture.go b/quick/qsgtexture.go new file mode 100755 index 00000000..0cffe3f7 --- /dev/null +++ b/quick/qsgtexture.go @@ -0,0 +1,161 @@ +package quick + +//#include "qsgtexture.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QSGTexture struct { + core.QObject +} + +type QSGTextureITF interface { + core.QObjectITF + QSGTexturePTR() *QSGTexture +} + +func PointerFromQSGTexture(ptr QSGTextureITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSGTexturePTR().Pointer() + } + return nil +} + +func QSGTextureFromPointer(ptr unsafe.Pointer) *QSGTexture { + var n = new(QSGTexture) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSGTexture_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSGTexture) QSGTexturePTR() *QSGTexture { + return ptr +} + +//QSGTexture::Filtering +type QSGTexture__Filtering int + +var ( + QSGTexture__None = QSGTexture__Filtering(0) + QSGTexture__Nearest = QSGTexture__Filtering(1) + QSGTexture__Linear = QSGTexture__Filtering(2) +) + +//QSGTexture::WrapMode +type QSGTexture__WrapMode int + +var ( + QSGTexture__Repeat = QSGTexture__WrapMode(0) + QSGTexture__ClampToEdge = QSGTexture__WrapMode(1) +) + +func (ptr *QSGTexture) Bind() { + if ptr.Pointer() != nil { + C.QSGTexture_Bind(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSGTexture) Filtering() QSGTexture__Filtering { + if ptr.Pointer() != nil { + return QSGTexture__Filtering(C.QSGTexture_Filtering(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSGTexture) HasAlphaChannel() bool { + if ptr.Pointer() != nil { + return C.QSGTexture_HasAlphaChannel(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSGTexture) HasMipmaps() bool { + if ptr.Pointer() != nil { + return C.QSGTexture_HasMipmaps(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSGTexture) HorizontalWrapMode() QSGTexture__WrapMode { + if ptr.Pointer() != nil { + return QSGTexture__WrapMode(C.QSGTexture_HorizontalWrapMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSGTexture) IsAtlasTexture() bool { + if ptr.Pointer() != nil { + return C.QSGTexture_IsAtlasTexture(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSGTexture) MipmapFiltering() QSGTexture__Filtering { + if ptr.Pointer() != nil { + return QSGTexture__Filtering(C.QSGTexture_MipmapFiltering(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSGTexture) RemovedFromAtlas() *QSGTexture { + if ptr.Pointer() != nil { + return QSGTextureFromPointer(unsafe.Pointer(C.QSGTexture_RemovedFromAtlas(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSGTexture) SetFiltering(filter QSGTexture__Filtering) { + if ptr.Pointer() != nil { + C.QSGTexture_SetFiltering(C.QtObjectPtr(ptr.Pointer()), C.int(filter)) + } +} + +func (ptr *QSGTexture) SetHorizontalWrapMode(hwrap QSGTexture__WrapMode) { + if ptr.Pointer() != nil { + C.QSGTexture_SetHorizontalWrapMode(C.QtObjectPtr(ptr.Pointer()), C.int(hwrap)) + } +} + +func (ptr *QSGTexture) SetMipmapFiltering(filter QSGTexture__Filtering) { + if ptr.Pointer() != nil { + C.QSGTexture_SetMipmapFiltering(C.QtObjectPtr(ptr.Pointer()), C.int(filter)) + } +} + +func (ptr *QSGTexture) SetVerticalWrapMode(vwrap QSGTexture__WrapMode) { + if ptr.Pointer() != nil { + C.QSGTexture_SetVerticalWrapMode(C.QtObjectPtr(ptr.Pointer()), C.int(vwrap)) + } +} + +func (ptr *QSGTexture) TextureId() int { + if ptr.Pointer() != nil { + return int(C.QSGTexture_TextureId(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSGTexture) UpdateBindOptions(force bool) { + if ptr.Pointer() != nil { + C.QSGTexture_UpdateBindOptions(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(force))) + } +} + +func (ptr *QSGTexture) VerticalWrapMode() QSGTexture__WrapMode { + if ptr.Pointer() != nil { + return QSGTexture__WrapMode(C.QSGTexture_VerticalWrapMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSGTexture) DestroyQSGTexture() { + if ptr.Pointer() != nil { + C.QSGTexture_DestroyQSGTexture(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/quick/qsgtexture.h b/quick/qsgtexture.h new file mode 100755 index 00000000..4be744b0 --- /dev/null +++ b/quick/qsgtexture.h @@ -0,0 +1,25 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QSGTexture_Bind(QtObjectPtr ptr); +int QSGTexture_Filtering(QtObjectPtr ptr); +int QSGTexture_HasAlphaChannel(QtObjectPtr ptr); +int QSGTexture_HasMipmaps(QtObjectPtr ptr); +int QSGTexture_HorizontalWrapMode(QtObjectPtr ptr); +int QSGTexture_IsAtlasTexture(QtObjectPtr ptr); +int QSGTexture_MipmapFiltering(QtObjectPtr ptr); +QtObjectPtr QSGTexture_RemovedFromAtlas(QtObjectPtr ptr); +void QSGTexture_SetFiltering(QtObjectPtr ptr, int filter); +void QSGTexture_SetHorizontalWrapMode(QtObjectPtr ptr, int hwrap); +void QSGTexture_SetMipmapFiltering(QtObjectPtr ptr, int filter); +void QSGTexture_SetVerticalWrapMode(QtObjectPtr ptr, int vwrap); +int QSGTexture_TextureId(QtObjectPtr ptr); +void QSGTexture_UpdateBindOptions(QtObjectPtr ptr, int force); +int QSGTexture_VerticalWrapMode(QtObjectPtr ptr); +void QSGTexture_DestroyQSGTexture(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qsgtexturematerial.cpp b/quick/qsgtexturematerial.cpp new file mode 100755 index 00000000..407ff173 --- /dev/null +++ b/quick/qsgtexturematerial.cpp @@ -0,0 +1,13 @@ +#include "qsgtexturematerial.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSGTextureMaterial: public QSGTextureMaterial { +public: +}; + diff --git a/quick/qsgtexturematerial.go b/quick/qsgtexturematerial.go new file mode 100755 index 00000000..513bde73 --- /dev/null +++ b/quick/qsgtexturematerial.go @@ -0,0 +1,33 @@ +package quick + +//#include "qsgtexturematerial.h" +import "C" +import ( + "unsafe" +) + +type QSGTextureMaterial struct { + QSGOpaqueTextureMaterial +} + +type QSGTextureMaterialITF interface { + QSGOpaqueTextureMaterialITF + QSGTextureMaterialPTR() *QSGTextureMaterial +} + +func PointerFromQSGTextureMaterial(ptr QSGTextureMaterialITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSGTextureMaterialPTR().Pointer() + } + return nil +} + +func QSGTextureMaterialFromPointer(ptr unsafe.Pointer) *QSGTextureMaterial { + var n = new(QSGTextureMaterial) + n.SetPointer(ptr) + return n +} + +func (ptr *QSGTextureMaterial) QSGTextureMaterialPTR() *QSGTextureMaterial { + return ptr +} diff --git a/quick/qsgtexturematerial.h b/quick/qsgtexturematerial.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/quick/qsgtexturematerial.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qsgtextureprovider.cpp b/quick/qsgtextureprovider.cpp new file mode 100755 index 00000000..3ab4a88b --- /dev/null +++ b/quick/qsgtextureprovider.cpp @@ -0,0 +1,27 @@ +#include "qsgtextureprovider.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSGTextureProvider: public QSGTextureProvider { +public: +void Signal_TextureChanged(){callbackQSGTextureProviderTextureChanged(this->objectName().toUtf8().data());}; +}; + +QtObjectPtr QSGTextureProvider_Texture(QtObjectPtr ptr){ + return static_cast(ptr)->texture(); +} + +void QSGTextureProvider_ConnectTextureChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSGTextureProvider::textureChanged), static_cast(ptr), static_cast(&MyQSGTextureProvider::Signal_TextureChanged));; +} + +void QSGTextureProvider_DisconnectTextureChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSGTextureProvider::textureChanged), static_cast(ptr), static_cast(&MyQSGTextureProvider::Signal_TextureChanged));; +} + diff --git a/quick/qsgtextureprovider.go b/quick/qsgtextureprovider.go new file mode 100755 index 00000000..6c5b4928 --- /dev/null +++ b/quick/qsgtextureprovider.go @@ -0,0 +1,64 @@ +package quick + +//#include "qsgtextureprovider.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QSGTextureProvider struct { + core.QObject +} + +type QSGTextureProviderITF interface { + core.QObjectITF + QSGTextureProviderPTR() *QSGTextureProvider +} + +func PointerFromQSGTextureProvider(ptr QSGTextureProviderITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSGTextureProviderPTR().Pointer() + } + return nil +} + +func QSGTextureProviderFromPointer(ptr unsafe.Pointer) *QSGTextureProvider { + var n = new(QSGTextureProvider) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSGTextureProvider_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSGTextureProvider) QSGTextureProviderPTR() *QSGTextureProvider { + return ptr +} + +func (ptr *QSGTextureProvider) Texture() *QSGTexture { + if ptr.Pointer() != nil { + return QSGTextureFromPointer(unsafe.Pointer(C.QSGTextureProvider_Texture(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSGTextureProvider) ConnectTextureChanged(f func()) { + if ptr.Pointer() != nil { + C.QSGTextureProvider_ConnectTextureChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "textureChanged", f) + } +} + +func (ptr *QSGTextureProvider) DisconnectTextureChanged() { + if ptr.Pointer() != nil { + C.QSGTextureProvider_DisconnectTextureChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "textureChanged") + } +} + +//export callbackQSGTextureProviderTextureChanged +func callbackQSGTextureProviderTextureChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "textureChanged").(func())() +} diff --git a/quick/qsgtextureprovider.h b/quick/qsgtextureprovider.h new file mode 100755 index 00000000..37a632c9 --- /dev/null +++ b/quick/qsgtextureprovider.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSGTextureProvider_Texture(QtObjectPtr ptr); +void QSGTextureProvider_ConnectTextureChanged(QtObjectPtr ptr); +void QSGTextureProvider_DisconnectTextureChanged(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qsgtransformnode.cpp b/quick/qsgtransformnode.cpp new file mode 100755 index 00000000..46439767 --- /dev/null +++ b/quick/qsgtransformnode.cpp @@ -0,0 +1,25 @@ +#include "qsgtransformnode.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSGTransformNode: public QSGTransformNode { +public: +}; + +QtObjectPtr QSGTransformNode_NewQSGTransformNode(){ + return new QSGTransformNode(); +} + +void QSGTransformNode_SetMatrix(QtObjectPtr ptr, QtObjectPtr matrix){ + static_cast(ptr)->setMatrix(*static_cast(matrix)); +} + +void QSGTransformNode_DestroyQSGTransformNode(QtObjectPtr ptr){ + static_cast(ptr)->~QSGTransformNode(); +} + diff --git a/quick/qsgtransformnode.go b/quick/qsgtransformnode.go new file mode 100755 index 00000000..663bd757 --- /dev/null +++ b/quick/qsgtransformnode.go @@ -0,0 +1,50 @@ +package quick + +//#include "qsgtransformnode.h" +import "C" +import ( + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QSGTransformNode struct { + QSGNode +} + +type QSGTransformNodeITF interface { + QSGNodeITF + QSGTransformNodePTR() *QSGTransformNode +} + +func PointerFromQSGTransformNode(ptr QSGTransformNodeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSGTransformNodePTR().Pointer() + } + return nil +} + +func QSGTransformNodeFromPointer(ptr unsafe.Pointer) *QSGTransformNode { + var n = new(QSGTransformNode) + n.SetPointer(ptr) + return n +} + +func (ptr *QSGTransformNode) QSGTransformNodePTR() *QSGTransformNode { + return ptr +} + +func NewQSGTransformNode() *QSGTransformNode { + return QSGTransformNodeFromPointer(unsafe.Pointer(C.QSGTransformNode_NewQSGTransformNode())) +} + +func (ptr *QSGTransformNode) SetMatrix(matrix gui.QMatrix4x4ITF) { + if ptr.Pointer() != nil { + C.QSGTransformNode_SetMatrix(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQMatrix4x4(matrix))) + } +} + +func (ptr *QSGTransformNode) DestroyQSGTransformNode() { + if ptr.Pointer() != nil { + C.QSGTransformNode_DestroyQSGTransformNode(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/quick/qsgtransformnode.h b/quick/qsgtransformnode.h new file mode 100755 index 00000000..63f5730d --- /dev/null +++ b/quick/qsgtransformnode.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSGTransformNode_NewQSGTransformNode(); +void QSGTransformNode_SetMatrix(QtObjectPtr ptr, QtObjectPtr matrix); +void QSGTransformNode_DestroyQSGTransformNode(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/quick/qsgvertexcolormaterial.cpp b/quick/qsgvertexcolormaterial.cpp new file mode 100755 index 00000000..cb5d7ffa --- /dev/null +++ b/quick/qsgvertexcolormaterial.cpp @@ -0,0 +1,12 @@ +#include "qsgvertexcolormaterial.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSGVertexColorMaterial: public QSGVertexColorMaterial { +public: +}; + diff --git a/quick/qsgvertexcolormaterial.go b/quick/qsgvertexcolormaterial.go new file mode 100755 index 00000000..bc6e60ae --- /dev/null +++ b/quick/qsgvertexcolormaterial.go @@ -0,0 +1,33 @@ +package quick + +//#include "qsgvertexcolormaterial.h" +import "C" +import ( + "unsafe" +) + +type QSGVertexColorMaterial struct { + QSGMaterial +} + +type QSGVertexColorMaterialITF interface { + QSGMaterialITF + QSGVertexColorMaterialPTR() *QSGVertexColorMaterial +} + +func PointerFromQSGVertexColorMaterial(ptr QSGVertexColorMaterialITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSGVertexColorMaterialPTR().Pointer() + } + return nil +} + +func QSGVertexColorMaterialFromPointer(ptr unsafe.Pointer) *QSGVertexColorMaterial { + var n = new(QSGVertexColorMaterial) + n.SetPointer(ptr) + return n +} + +func (ptr *QSGVertexColorMaterial) QSGVertexColorMaterialPTR() *QSGVertexColorMaterial { + return ptr +} diff --git a/quick/qsgvertexcolormaterial.h b/quick/qsgvertexcolormaterial.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/quick/qsgvertexcolormaterial.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/qvalidator.cpp b/qvalidator.cpp deleted file mode 100644 index 26bc7c40..00000000 --- a/qvalidator.cpp +++ /dev/null @@ -1,37 +0,0 @@ -#include "qvalidator.h" -#include -#include "cgoexport.h" - -//MyQValidator -class MyQValidator: public QValidator { -Q_OBJECT -public: -void Signal_Changed() { callbackQValidator(this, QString("changed").toUtf8().data()); }; - -signals: - -}; -#include "qvalidator.moc" - -//Public Types -int QValidator_Invalid() { return QValidator::Invalid; } -int QValidator_Intermediate() { return QValidator::Intermediate; } -int QValidator_Acceptable() { return QValidator::Acceptable; } - -//Public Functions -void QValidator_Destroy(QtObjectPtr ptr) -{ - ((QValidator*)(ptr))->~QValidator(); -} - -//Signals -void QValidator_ConnectSignalChanged(QtObjectPtr ptr) -{ - QObject::connect(((QValidator*)(ptr)), &QValidator::changed, ((MyQValidator*)(ptr)), &MyQValidator::Signal_Changed, Qt::QueuedConnection); -} - -void QValidator_DisconnectSignalChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QValidator*)(ptr)), &QValidator::changed, ((MyQValidator*)(ptr)), &MyQValidator::Signal_Changed); -} - diff --git a/qvalidator.go b/qvalidator.go deleted file mode 100644 index a0c0c3b1..00000000 --- a/qvalidator.go +++ /dev/null @@ -1,61 +0,0 @@ -package qt - -//#include "qvalidator.h" -import "C" - -type qvalidator struct { - qobject -} - -type QValidator interface { - QObject - ConnectSignalChanged(f func()) - DisconnectSignalChanged() - SignalChanged() func() -} - -func (p *qvalidator) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qvalidator) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -//State -type State int - -var ( - INVALID = State(C.QValidator_Invalid()) - INTERMEDIATE = State(C.QValidator_Intermediate()) - ACCEPTABLE = State(C.QValidator_Acceptable()) -) - -func (p *qvalidator) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QValidator_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qvalidator) ConnectSignalChanged(f func()) { - C.QValidator_ConnectSignalChanged(p.Pointer()) - connectSignal(p.ObjectName(), "changed", f) -} - -func (p *qvalidator) DisconnectSignalChanged() { - C.QValidator_DisconnectSignalChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "changed") -} - -func (p *qvalidator) SignalChanged() func() { - return getSignal(p.ObjectName(), "changed") -} - -//export callbackQValidator -func callbackQValidator(ptr C.QtObjectPtr, msg *C.char) { - var qvalidator = new(qvalidator) - qvalidator.SetPointer(ptr) - getSignal(qvalidator.ObjectName(), C.GoString(msg))() -} diff --git a/qvalidator.h b/qvalidator.h deleted file mode 100644 index 0bd17df6..00000000 --- a/qvalidator.h +++ /dev/null @@ -1,19 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Types -int QValidator_Invalid(); -int QValidator_Intermediate(); -int QValidator_Acceptable(); -//Public Functions -void QValidator_Destroy(QtObjectPtr ptr); -//Signals -void QValidator_ConnectSignalChanged(QtObjectPtr ptr); -void QValidator_DisconnectSignalChanged(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qvalidator.moc b/qvalidator.moc deleted file mode 100644 index 012f766b..00000000 --- a/qvalidator.moc +++ /dev/null @@ -1,88 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qvalidator.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qvalidator.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQValidator_t { - QByteArrayData data[1]; - char stringdata[13]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQValidator_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQValidator_t qt_meta_stringdata_MyQValidator = { - { -QT_MOC_LITERAL(0, 0, 12) // "MyQValidator" - - }, - "MyQValidator" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQValidator[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 0, 0, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 0, // signalCount - - 0 // eod -}; - -void MyQValidator::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - Q_UNUSED(_o); - Q_UNUSED(_id); - Q_UNUSED(_c); - Q_UNUSED(_a); -} - -const QMetaObject MyQValidator::staticMetaObject = { - { &QValidator::staticMetaObject, qt_meta_stringdata_MyQValidator.data, - qt_meta_data_MyQValidator, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQValidator::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQValidator::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQValidator.stringdata)) - return static_cast(const_cast< MyQValidator*>(this)); - return QValidator::qt_metacast(_clname); -} - -int MyQValidator::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QValidator::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - return _id; -} -QT_END_MOC_NAMESPACE diff --git a/qvboxlayout.cpp b/qvboxlayout.cpp deleted file mode 100644 index 702f6ee4..00000000 --- a/qvboxlayout.cpp +++ /dev/null @@ -1,22 +0,0 @@ -#include "qvboxlayout.h" -#include -#include "cgoexport.h" - - - -//Public Functions -QtObjectPtr QVBoxLayout_New() -{ - return new QVBoxLayout(); -} - -QtObjectPtr QVBoxLayout_New_QWidget(QtObjectPtr parent) -{ - return new QVBoxLayout(((QWidget*)(parent))); -} - -void QVBoxLayout_Destroy(QtObjectPtr ptr) -{ - ((QVBoxLayout*)(ptr))->~QVBoxLayout(); -} - diff --git a/qvboxlayout.go b/qvboxlayout.go deleted file mode 100644 index 08be5a8a..00000000 --- a/qvboxlayout.go +++ /dev/null @@ -1,46 +0,0 @@ -package qt - -//#include "qvboxlayout.h" -import "C" - -type qvboxlayout struct { - qboxlayout -} - -type QVBoxLayout interface { - QBoxLayout -} - -func (p *qvboxlayout) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qvboxlayout) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQVBoxLayout1() QVBoxLayout { - var qvboxlayout = new(qvboxlayout) - qvboxlayout.SetPointer(C.QVBoxLayout_New()) - qvboxlayout.SetObjectName("QVBoxLayout_" + randomIdentifier()) - return qvboxlayout -} - -func NewQVBoxLayout2(parent QWidget) QVBoxLayout { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qvboxlayout = new(qvboxlayout) - qvboxlayout.SetPointer(C.QVBoxLayout_New_QWidget(parentPtr)) - qvboxlayout.SetObjectName("QVBoxLayout_" + randomIdentifier()) - return qvboxlayout -} - -func (p *qvboxlayout) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QVBoxLayout_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} diff --git a/qvboxlayout.h b/qvboxlayout.h deleted file mode 100644 index 1f990a73..00000000 --- a/qvboxlayout.h +++ /dev/null @@ -1,14 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QVBoxLayout_New(); -QtObjectPtr QVBoxLayout_New_QWidget(QtObjectPtr parent); -void QVBoxLayout_Destroy(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qvboxlayout.moc b/qvboxlayout.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/qwidget.cpp b/qwidget.cpp deleted file mode 100644 index cd54162c..00000000 --- a/qwidget.cpp +++ /dev/null @@ -1,891 +0,0 @@ -#include "qwidget.h" -#include -#include "cgoexport.h" - -//MyQWidget -class MyQWidget: public QWidget { -Q_OBJECT -public: -void Signal_WindowIconTextChanged() { callbackQWidget(this, QString("windowIconTextChanged").toUtf8().data()); }; -void Signal_WindowTitleChanged() { callbackQWidget(this, QString("windowTitleChanged").toUtf8().data()); }; - -signals: -void Slot_Close(); -void Slot_Hide(); -void Slot_Lower(); -void Slot_Raise(); -void Slot_SetDisabled(bool disable); -void Slot_SetEnabled(bool enabled); -void Slot_SetHidden(bool hidden); -void Slot_SetStyleSheet(QString styleSheet); -void Slot_SetWindowModified(bool modified); -void Slot_SetWindowTitle(QString windowTitle); -void Slot_Show(); -void Slot_ShowFullScreen(); -void Slot_ShowMaximized(); -void Slot_ShowMinimized(); -void Slot_ShowNormal(); - -}; -#include "qwidget.moc" - - -//Public Functions -QtObjectPtr QWidget_New_QWidget_WindowType(QtObjectPtr parent, int f) -{ - return new QWidget(((QWidget*)(parent)), ((Qt::WindowType)(f))); -} - -void QWidget_Destroy(QtObjectPtr ptr) -{ - ((QWidget*)(ptr))->~QWidget(); -} - -int QWidget_AcceptDrops(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->acceptDrops(); -} - -char* QWidget_AccessibleDescription(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->accessibleDescription().toUtf8().data(); -} - -char* QWidget_AccessibleName(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->accessibleName().toUtf8().data(); -} - -void QWidget_ActivateWindow(QtObjectPtr ptr) -{ - ((QWidget*)(ptr))->activateWindow(); -} - -void QWidget_AdjustSize(QtObjectPtr ptr) -{ - ((QWidget*)(ptr))->adjustSize(); -} - -int QWidget_AutoFillBackground(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->autoFillBackground(); -} - -QtObjectPtr QWidget_ChildAt_Int_Int(QtObjectPtr ptr, int x, int y) -{ - return ((QWidget*)(ptr))->childAt(x, y); -} - -void QWidget_ClearFocus(QtObjectPtr ptr) -{ - ((QWidget*)(ptr))->clearFocus(); -} - -void QWidget_ClearMask(QtObjectPtr ptr) -{ - ((QWidget*)(ptr))->clearMask(); -} - -int QWidget_ContextMenuPolicy(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->contextMenuPolicy(); -} - -void QWidget_EnsurePolished(QtObjectPtr ptr) -{ - ((QWidget*)(ptr))->ensurePolished(); -} - -int QWidget_FocusPolicy(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->focusPolicy(); -} - -QtObjectPtr QWidget_FocusProxy(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->focusProxy(); -} - -QtObjectPtr QWidget_FocusWidget(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->focusWidget(); -} - -void QWidget_GrabKeyboard(QtObjectPtr ptr) -{ - ((QWidget*)(ptr))->grabKeyboard(); -} - -void QWidget_GrabMouse(QtObjectPtr ptr) -{ - ((QWidget*)(ptr))->grabMouse(); -} - -int QWidget_HasFocus(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->hasFocus(); -} - -int QWidget_HasHeightForWidth(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->hasHeightForWidth(); -} - -int QWidget_HasMouseTracking(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->hasMouseTracking(); -} - -int QWidget_Height(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->height(); -} - -int QWidget_HeightForWidth_Int(QtObjectPtr ptr, int w) -{ - return ((QWidget*)(ptr))->heightForWidth(w); -} - -int QWidget_InputMethodHints(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->inputMethodHints(); -} - -int QWidget_IsActiveWindow(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->isActiveWindow(); -} - -int QWidget_IsAncestorOf_QWidget(QtObjectPtr ptr, QtObjectPtr child) -{ - return ((QWidget*)(ptr))->isAncestorOf(((QWidget*)(child))); -} - -int QWidget_IsEnabled(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->isEnabled(); -} - -int QWidget_IsEnabledTo_QWidget(QtObjectPtr ptr, QtObjectPtr ancestor) -{ - return ((QWidget*)(ptr))->isEnabledTo(((QWidget*)(ancestor))); -} - -int QWidget_IsFullScreen(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->isFullScreen(); -} - -int QWidget_IsHidden(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->isHidden(); -} - -int QWidget_IsMaximized(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->isMaximized(); -} - -int QWidget_IsMinimized(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->isMinimized(); -} - -int QWidget_IsModal(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->isModal(); -} - -int QWidget_IsVisible(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->isVisible(); -} - -int QWidget_IsVisibleTo_QWidget(QtObjectPtr ptr, QtObjectPtr ancestor) -{ - return ((QWidget*)(ptr))->isVisibleTo(((QWidget*)(ancestor))); -} - -int QWidget_IsWindow(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->isWindow(); -} - -int QWidget_IsWindowModified(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->isWindowModified(); -} - -QtObjectPtr QWidget_Layout(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->layout(); -} - -int QWidget_LayoutDirection(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->layoutDirection(); -} - -int QWidget_MaximumHeight(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->maximumHeight(); -} - -int QWidget_MaximumWidth(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->maximumWidth(); -} - -int QWidget_MinimumHeight(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->minimumHeight(); -} - -int QWidget_MinimumWidth(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->minimumWidth(); -} - -void QWidget_Move_Int_Int(QtObjectPtr ptr, int x, int y) -{ - ((QWidget*)(ptr))->move(x, y); -} - -QtObjectPtr QWidget_NativeParentWidget(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->nativeParentWidget(); -} - -QtObjectPtr QWidget_NextInFocusChain(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->nextInFocusChain(); -} - -void QWidget_OverrideWindowFlags_WindowType(QtObjectPtr ptr, int flags) -{ - ((QWidget*)(ptr))->overrideWindowFlags(((Qt::WindowType)(flags))); -} - -QtObjectPtr QWidget_ParentWidget(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->parentWidget(); -} - -QtObjectPtr QWidget_PreviousInFocusChain(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->previousInFocusChain(); -} - -void QWidget_ReleaseKeyboard(QtObjectPtr ptr) -{ - ((QWidget*)(ptr))->releaseKeyboard(); -} - -void QWidget_ReleaseMouse(QtObjectPtr ptr) -{ - ((QWidget*)(ptr))->releaseMouse(); -} - -void QWidget_ReleaseShortcut_Int(QtObjectPtr ptr, int id) -{ - ((QWidget*)(ptr))->releaseShortcut(id); -} - -void QWidget_Repaint_Int_Int_Int_Int(QtObjectPtr ptr, int x, int y, int w, int h) -{ - ((QWidget*)(ptr))->repaint(x, y, w, h); -} - -void QWidget_Resize_Int_Int(QtObjectPtr ptr, int w, int h) -{ - ((QWidget*)(ptr))->resize(w, h); -} - -void QWidget_Scroll_Int_Int(QtObjectPtr ptr, int dx, int dy) -{ - ((QWidget*)(ptr))->scroll(dx, dy); -} - -void QWidget_SetAcceptDrops_Bool(QtObjectPtr ptr, int on) -{ - ((QWidget*)(ptr))->setAcceptDrops(on != 0); -} - -void QWidget_SetAccessibleDescription_String(QtObjectPtr ptr, char* description) -{ - ((QWidget*)(ptr))->setAccessibleDescription(QString(description)); -} - -void QWidget_SetAccessibleName_String(QtObjectPtr ptr, char* name) -{ - ((QWidget*)(ptr))->setAccessibleName(QString(name)); -} - -void QWidget_SetAttribute_WidgetAttribute_Bool(QtObjectPtr ptr, int attribute, int on) -{ - ((QWidget*)(ptr))->setAttribute(((Qt::WidgetAttribute)(attribute)), on != 0); -} - -void QWidget_SetAutoFillBackground_Bool(QtObjectPtr ptr, int enabled) -{ - ((QWidget*)(ptr))->setAutoFillBackground(enabled != 0); -} - -void QWidget_SetBaseSize_Int_Int(QtObjectPtr ptr, int basew, int baseh) -{ - ((QWidget*)(ptr))->setBaseSize(basew, baseh); -} - -void QWidget_SetContentsMargins_Int_Int_Int_Int(QtObjectPtr ptr, int left, int top, int right, int bottom) -{ - ((QWidget*)(ptr))->setContentsMargins(left, top, right, bottom); -} - -void QWidget_SetContextMenuPolicy_ContextMenuPolicy(QtObjectPtr ptr, int policy) -{ - ((QWidget*)(ptr))->setContextMenuPolicy(((Qt::ContextMenuPolicy)(policy))); -} - -void QWidget_SetFixedHeight_Int(QtObjectPtr ptr, int h) -{ - ((QWidget*)(ptr))->setFixedHeight(h); -} - -void QWidget_SetFixedSize_Int_Int(QtObjectPtr ptr, int w, int h) -{ - ((QWidget*)(ptr))->setFixedSize(w, h); -} - -void QWidget_SetFixedWidth_Int(QtObjectPtr ptr, int w) -{ - ((QWidget*)(ptr))->setFixedWidth(w); -} - -void QWidget_SetFocus_FocusReason(QtObjectPtr ptr, int reason) -{ - ((QWidget*)(ptr))->setFocus(((Qt::FocusReason)(reason))); -} - -void QWidget_SetFocusPolicy_FocusPolicy(QtObjectPtr ptr, int policy) -{ - ((QWidget*)(ptr))->setFocusPolicy(((Qt::FocusPolicy)(policy))); -} - -void QWidget_SetFocusProxy_QWidget(QtObjectPtr ptr, QtObjectPtr w) -{ - ((QWidget*)(ptr))->setFocusProxy(((QWidget*)(w))); -} - -void QWidget_SetGeometry_Int_Int_Int_Int(QtObjectPtr ptr, int x, int y, int w, int h) -{ - ((QWidget*)(ptr))->setGeometry(x, y, w, h); -} - -void QWidget_SetLayout_QLayout(QtObjectPtr ptr, QtObjectPtr layout) -{ - ((QWidget*)(ptr))->setLayout(((QLayout*)(layout))); -} - -void QWidget_SetLayoutDirection_LayoutDirection(QtObjectPtr ptr, int direction) -{ - ((QWidget*)(ptr))->setLayoutDirection(((Qt::LayoutDirection)(direction))); -} - -void QWidget_SetMaximumHeight_Int(QtObjectPtr ptr, int maxh) -{ - ((QWidget*)(ptr))->setMaximumHeight(maxh); -} - -void QWidget_SetMaximumSize_Int_Int(QtObjectPtr ptr, int maxw, int maxh) -{ - ((QWidget*)(ptr))->setMaximumSize(maxw, maxh); -} - -void QWidget_SetMaximumWidth_Int(QtObjectPtr ptr, int maxw) -{ - ((QWidget*)(ptr))->setMaximumWidth(maxw); -} - -void QWidget_SetMinimumHeight_Int(QtObjectPtr ptr, int minh) -{ - ((QWidget*)(ptr))->setMinimumHeight(minh); -} - -void QWidget_SetMinimumSize_Int_Int(QtObjectPtr ptr, int minw, int minh) -{ - ((QWidget*)(ptr))->setMinimumSize(minw, minh); -} - -void QWidget_SetMinimumWidth_Int(QtObjectPtr ptr, int minw) -{ - ((QWidget*)(ptr))->setMinimumWidth(minw); -} - -void QWidget_SetMouseTracking_Bool(QtObjectPtr ptr, int enable) -{ - ((QWidget*)(ptr))->setMouseTracking(enable != 0); -} - -void QWidget_SetShortcutAutoRepeat_Int_Bool(QtObjectPtr ptr, int id, int enable) -{ - ((QWidget*)(ptr))->setShortcutAutoRepeat(id, enable != 0); -} - -void QWidget_SetShortcutEnabled_Int_Bool(QtObjectPtr ptr, int id, int enable) -{ - ((QWidget*)(ptr))->setShortcutEnabled(id, enable != 0); -} - -void QWidget_SetSizeIncrement_Int_Int(QtObjectPtr ptr, int w, int h) -{ - ((QWidget*)(ptr))->setSizeIncrement(w, h); -} - -void QWidget_SetStatusTip_String(QtObjectPtr ptr, char* statusTip) -{ - ((QWidget*)(ptr))->setStatusTip(QString(statusTip)); -} - -void QWidget_SetToolTip_String(QtObjectPtr ptr, char* toolTip) -{ - ((QWidget*)(ptr))->setToolTip(QString(toolTip)); -} - -void QWidget_SetToolTipDuration_Int(QtObjectPtr ptr, int msec) -{ - ((QWidget*)(ptr))->setToolTipDuration(msec); -} - -void QWidget_SetUpdatesEnabled_Bool(QtObjectPtr ptr, int enable) -{ - ((QWidget*)(ptr))->setUpdatesEnabled(enable != 0); -} - -void QWidget_SetWhatsThis_String(QtObjectPtr ptr, char* whatsThis) -{ - ((QWidget*)(ptr))->setWhatsThis(QString(whatsThis)); -} - -void QWidget_SetWindowFilePath_String(QtObjectPtr ptr, char* filePath) -{ - ((QWidget*)(ptr))->setWindowFilePath(QString(filePath)); -} - -void QWidget_SetWindowFlags_WindowType(QtObjectPtr ptr, int typ) -{ - ((QWidget*)(ptr))->setWindowFlags(((Qt::WindowType)(typ))); -} - -void QWidget_SetWindowIconText_String(QtObjectPtr ptr, char* iconText) -{ - ((QWidget*)(ptr))->setWindowIconText(QString(iconText)); -} - -void QWidget_SetWindowModality_WindowModality(QtObjectPtr ptr, int windowModality) -{ - ((QWidget*)(ptr))->setWindowModality(((Qt::WindowModality)(windowModality))); -} - -void QWidget_SetWindowRole_String(QtObjectPtr ptr, char* role) -{ - ((QWidget*)(ptr))->setWindowRole(QString(role)); -} - -void QWidget_SetWindowState_WindowState(QtObjectPtr ptr, int windowState) -{ - ((QWidget*)(ptr))->setWindowState(((Qt::WindowState)(windowState))); -} - -void QWidget_StackUnder_QWidget(QtObjectPtr ptr, QtObjectPtr w) -{ - ((QWidget*)(ptr))->stackUnder(((QWidget*)(w))); -} - -char* QWidget_StatusTip(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->statusTip().toUtf8().data(); -} - -char* QWidget_StyleSheet(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->styleSheet().toUtf8().data(); -} - -int QWidget_TestAttribute_WidgetAttribute(QtObjectPtr ptr, int attribute) -{ - return ((QWidget*)(ptr))->testAttribute(((Qt::WidgetAttribute)(attribute))); -} - -char* QWidget_ToolTip(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->toolTip().toUtf8().data(); -} - -int QWidget_ToolTipDuration(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->toolTipDuration(); -} - -int QWidget_UnderMouse(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->underMouse(); -} - -void QWidget_UngrabGesture_GestureType(QtObjectPtr ptr, int gesture) -{ - ((QWidget*)(ptr))->ungrabGesture(((Qt::GestureType)(gesture))); -} - -void QWidget_UnsetCursor(QtObjectPtr ptr) -{ - ((QWidget*)(ptr))->unsetCursor(); -} - -void QWidget_UnsetLayoutDirection(QtObjectPtr ptr) -{ - ((QWidget*)(ptr))->unsetLayoutDirection(); -} - -void QWidget_UnsetLocale(QtObjectPtr ptr) -{ - ((QWidget*)(ptr))->unsetLocale(); -} - -void QWidget_Update_Int_Int_Int_Int(QtObjectPtr ptr, int x, int y, int w, int h) -{ - ((QWidget*)(ptr))->update(x, y, w, h); -} - -void QWidget_UpdateGeometry(QtObjectPtr ptr) -{ - ((QWidget*)(ptr))->updateGeometry(); -} - -int QWidget_UpdatesEnabled(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->updatesEnabled(); -} - -int QWidget_Width(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->width(); -} - -QtObjectPtr QWidget_Window(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->window(); -} - -char* QWidget_WindowFilePath(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->windowFilePath().toUtf8().data(); -} - -int QWidget_WindowFlags(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->windowFlags(); -} - -char* QWidget_WindowIconText(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->windowIconText().toUtf8().data(); -} - -int QWidget_WindowModality(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->windowModality(); -} - -char* QWidget_WindowRole(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->windowRole().toUtf8().data(); -} - -int QWidget_WindowState(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->windowState(); -} - -char* QWidget_WindowTitle(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->windowTitle().toUtf8().data(); -} - -int QWidget_WindowType(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->windowType(); -} - -int QWidget_X(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->x(); -} - -int QWidget_Y(QtObjectPtr ptr) -{ - return ((QWidget*)(ptr))->y(); -} - -//Public Slots -void QWidget_ConnectSlotClose(QtObjectPtr ptr) -{ - QObject::connect(((MyQWidget*)(ptr)), &MyQWidget::Slot_Close, ((QWidget*)(ptr)), &QWidget::close, Qt::QueuedConnection); -} - -void QWidget_DisconnectSlotClose(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQWidget*)(ptr)), &MyQWidget::Slot_Close, ((QWidget*)(ptr)), &QWidget::close); -} - -void QWidget_Close(QtObjectPtr ptr) -{ - return ((MyQWidget*)(ptr))->Slot_Close(); -} - -void QWidget_ConnectSlotHide(QtObjectPtr ptr) -{ - QObject::connect(((MyQWidget*)(ptr)), &MyQWidget::Slot_Hide, ((QWidget*)(ptr)), &QWidget::hide, Qt::QueuedConnection); -} - -void QWidget_DisconnectSlotHide(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQWidget*)(ptr)), &MyQWidget::Slot_Hide, ((QWidget*)(ptr)), &QWidget::hide); -} - -void QWidget_Hide(QtObjectPtr ptr) -{ - ((MyQWidget*)(ptr))->Slot_Hide(); -} - -void QWidget_ConnectSlotLower(QtObjectPtr ptr) -{ - QObject::connect(((MyQWidget*)(ptr)), &MyQWidget::Slot_Lower, ((QWidget*)(ptr)), &QWidget::lower, Qt::QueuedConnection); -} - -void QWidget_DisconnectSlotLower(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQWidget*)(ptr)), &MyQWidget::Slot_Lower, ((QWidget*)(ptr)), &QWidget::lower); -} - -void QWidget_Lower(QtObjectPtr ptr) -{ - ((MyQWidget*)(ptr))->Slot_Lower(); -} - -void QWidget_ConnectSlotRaise(QtObjectPtr ptr) -{ - QObject::connect(((MyQWidget*)(ptr)), &MyQWidget::Slot_Raise, ((QWidget*)(ptr)), &QWidget::raise, Qt::QueuedConnection); -} - -void QWidget_DisconnectSlotRaise(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQWidget*)(ptr)), &MyQWidget::Slot_Raise, ((QWidget*)(ptr)), &QWidget::raise); -} - -void QWidget_Raise(QtObjectPtr ptr) -{ - ((MyQWidget*)(ptr))->Slot_Raise(); -} - -void QWidget_ConnectSlotSetDisabled(QtObjectPtr ptr) -{ - QObject::connect(((MyQWidget*)(ptr)), &MyQWidget::Slot_SetDisabled, ((QWidget*)(ptr)), &QWidget::setDisabled, Qt::QueuedConnection); -} - -void QWidget_DisconnectSlotSetDisabled(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQWidget*)(ptr)), &MyQWidget::Slot_SetDisabled, ((QWidget*)(ptr)), &QWidget::setDisabled); -} - -void QWidget_SetDisabled_Bool(QtObjectPtr ptr, int disable) -{ - ((MyQWidget*)(ptr))->Slot_SetDisabled(disable != 0); -} - -void QWidget_ConnectSlotSetEnabled(QtObjectPtr ptr) -{ - QObject::connect(((MyQWidget*)(ptr)), &MyQWidget::Slot_SetEnabled, ((QWidget*)(ptr)), &QWidget::setEnabled, Qt::QueuedConnection); -} - -void QWidget_DisconnectSlotSetEnabled(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQWidget*)(ptr)), &MyQWidget::Slot_SetEnabled, ((QWidget*)(ptr)), &QWidget::setEnabled); -} - -void QWidget_SetEnabled_Bool(QtObjectPtr ptr, int enabled) -{ - ((MyQWidget*)(ptr))->Slot_SetEnabled(enabled != 0); -} - -void QWidget_ConnectSlotSetHidden(QtObjectPtr ptr) -{ - QObject::connect(((MyQWidget*)(ptr)), &MyQWidget::Slot_SetHidden, ((QWidget*)(ptr)), &QWidget::setHidden, Qt::QueuedConnection); -} - -void QWidget_DisconnectSlotSetHidden(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQWidget*)(ptr)), &MyQWidget::Slot_SetHidden, ((QWidget*)(ptr)), &QWidget::setHidden); -} - -void QWidget_SetHidden_Bool(QtObjectPtr ptr, int hidden) -{ - ((MyQWidget*)(ptr))->Slot_SetHidden(hidden != 0); -} - -void QWidget_ConnectSlotSetStyleSheet(QtObjectPtr ptr) -{ - QObject::connect(((MyQWidget*)(ptr)), &MyQWidget::Slot_SetStyleSheet, ((QWidget*)(ptr)), &QWidget::setStyleSheet, Qt::QueuedConnection); -} - -void QWidget_DisconnectSlotSetStyleSheet(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQWidget*)(ptr)), &MyQWidget::Slot_SetStyleSheet, ((QWidget*)(ptr)), &QWidget::setStyleSheet); -} - -void QWidget_SetStyleSheet_String(QtObjectPtr ptr, char* styleSheet) -{ - ((MyQWidget*)(ptr))->Slot_SetStyleSheet(QString(styleSheet)); -} - -void QWidget_ConnectSlotSetWindowModified(QtObjectPtr ptr) -{ - QObject::connect(((MyQWidget*)(ptr)), &MyQWidget::Slot_SetWindowModified, ((QWidget*)(ptr)), &QWidget::setWindowModified, Qt::QueuedConnection); -} - -void QWidget_DisconnectSlotSetWindowModified(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQWidget*)(ptr)), &MyQWidget::Slot_SetWindowModified, ((QWidget*)(ptr)), &QWidget::setWindowModified); -} - -void QWidget_SetWindowModified_Bool(QtObjectPtr ptr, int modified) -{ - ((MyQWidget*)(ptr))->Slot_SetWindowModified(modified != 0); -} - -void QWidget_ConnectSlotSetWindowTitle(QtObjectPtr ptr) -{ - QObject::connect(((MyQWidget*)(ptr)), &MyQWidget::Slot_SetWindowTitle, ((QWidget*)(ptr)), &QWidget::setWindowTitle, Qt::QueuedConnection); -} - -void QWidget_DisconnectSlotSetWindowTitle(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQWidget*)(ptr)), &MyQWidget::Slot_SetWindowTitle, ((QWidget*)(ptr)), &QWidget::setWindowTitle); -} - -void QWidget_SetWindowTitle_String(QtObjectPtr ptr, char* windowTitle) -{ - ((MyQWidget*)(ptr))->Slot_SetWindowTitle(QString(windowTitle)); -} - -void QWidget_ConnectSlotShow(QtObjectPtr ptr) -{ - QObject::connect(((MyQWidget*)(ptr)), &MyQWidget::Slot_Show, ((QWidget*)(ptr)), &QWidget::show, Qt::QueuedConnection); -} - -void QWidget_DisconnectSlotShow(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQWidget*)(ptr)), &MyQWidget::Slot_Show, ((QWidget*)(ptr)), &QWidget::show); -} - -void QWidget_Show(QtObjectPtr ptr) -{ - ((MyQWidget*)(ptr))->Slot_Show(); -} - -void QWidget_ConnectSlotShowFullScreen(QtObjectPtr ptr) -{ - QObject::connect(((MyQWidget*)(ptr)), &MyQWidget::Slot_ShowFullScreen, ((QWidget*)(ptr)), &QWidget::showFullScreen, Qt::QueuedConnection); -} - -void QWidget_DisconnectSlotShowFullScreen(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQWidget*)(ptr)), &MyQWidget::Slot_ShowFullScreen, ((QWidget*)(ptr)), &QWidget::showFullScreen); -} - -void QWidget_ShowFullScreen(QtObjectPtr ptr) -{ - ((MyQWidget*)(ptr))->Slot_ShowFullScreen(); -} - -void QWidget_ConnectSlotShowMaximized(QtObjectPtr ptr) -{ - QObject::connect(((MyQWidget*)(ptr)), &MyQWidget::Slot_ShowMaximized, ((QWidget*)(ptr)), &QWidget::showMaximized, Qt::QueuedConnection); -} - -void QWidget_DisconnectSlotShowMaximized(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQWidget*)(ptr)), &MyQWidget::Slot_ShowMaximized, ((QWidget*)(ptr)), &QWidget::showMaximized); -} - -void QWidget_ShowMaximized(QtObjectPtr ptr) -{ - ((MyQWidget*)(ptr))->Slot_ShowMaximized(); -} - -void QWidget_ConnectSlotShowMinimized(QtObjectPtr ptr) -{ - QObject::connect(((MyQWidget*)(ptr)), &MyQWidget::Slot_ShowMinimized, ((QWidget*)(ptr)), &QWidget::showMinimized, Qt::QueuedConnection); -} - -void QWidget_DisconnectSlotShowMinimized(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQWidget*)(ptr)), &MyQWidget::Slot_ShowMinimized, ((QWidget*)(ptr)), &QWidget::showMinimized); -} - -void QWidget_ShowMinimized(QtObjectPtr ptr) -{ - ((MyQWidget*)(ptr))->Slot_ShowMinimized(); -} - -void QWidget_ConnectSlotShowNormal(QtObjectPtr ptr) -{ - QObject::connect(((MyQWidget*)(ptr)), &MyQWidget::Slot_ShowNormal, ((QWidget*)(ptr)), &QWidget::showNormal, Qt::QueuedConnection); -} - -void QWidget_DisconnectSlotShowNormal(QtObjectPtr ptr) -{ - QObject::disconnect(((MyQWidget*)(ptr)), &MyQWidget::Slot_ShowNormal, ((QWidget*)(ptr)), &QWidget::showNormal); -} - -void QWidget_ShowNormal(QtObjectPtr ptr) -{ - ((MyQWidget*)(ptr))->Slot_ShowNormal(); -} - -//Signals -void QWidget_ConnectSignalWindowIconTextChanged(QtObjectPtr ptr) -{ - QObject::connect(((QWidget*)(ptr)), &QWidget::windowIconTextChanged, ((MyQWidget*)(ptr)), &MyQWidget::Signal_WindowIconTextChanged, Qt::QueuedConnection); -} - -void QWidget_DisconnectSignalWindowIconTextChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QWidget*)(ptr)), &QWidget::windowIconTextChanged, ((MyQWidget*)(ptr)), &MyQWidget::Signal_WindowIconTextChanged); -} - -void QWidget_ConnectSignalWindowTitleChanged(QtObjectPtr ptr) -{ - QObject::connect(((QWidget*)(ptr)), &QWidget::windowTitleChanged, ((MyQWidget*)(ptr)), &MyQWidget::Signal_WindowTitleChanged, Qt::QueuedConnection); -} - -void QWidget_DisconnectSignalWindowTitleChanged(QtObjectPtr ptr) -{ - QObject::disconnect(((QWidget*)(ptr)), &QWidget::windowTitleChanged, ((MyQWidget*)(ptr)), &MyQWidget::Signal_WindowTitleChanged); -} - -//Static Public Members -QtObjectPtr QWidget_KeyboardGrabber() -{ - return QWidget::keyboardGrabber(); -} - -QtObjectPtr QWidget_MouseGrabber() -{ - return QWidget::mouseGrabber(); -} - -void QWidget_SetTabOrder_QWidget_QWidget(QtObjectPtr first, QtObjectPtr second) -{ - QWidget::setTabOrder(((QWidget*)(first)), ((QWidget*)(second))); -} - diff --git a/qwidget.go b/qwidget.go deleted file mode 100644 index 10f07a8e..00000000 --- a/qwidget.go +++ /dev/null @@ -1,1322 +0,0 @@ -package qt - -//#include "qwidget.h" -import "C" - -type qwidget struct { - qobject -} - -type QWidget interface { - QObject - AcceptDrops() bool - AccessibleDescription() string - AccessibleName() string - ActivateWindow() - AdjustSize() - AutoFillBackground() bool - ChildAt(x int, y int) QWidget - ClearFocus() - ClearMask() - ContextMenuPolicy() ContextMenuPolicy - EnsurePolished() - FocusPolicy() FocusPolicy - FocusProxy() QWidget - FocusWidget() QWidget - GrabKeyboard() - GrabMouse() - HasFocus() bool - HasHeightForWidth() bool - HasMouseTracking() bool - Height() int - HeightForWidth(w int) int - InputMethodHints() InputMethodHint - IsActiveWindow() bool - IsAncestorOf(child QWidget) bool - IsEnabled() bool - IsEnabledTo(ancestor QWidget) bool - IsFullScreen() bool - IsHidden() bool - IsMaximized() bool - IsMinimized() bool - IsModal() bool - IsVisible() bool - IsVisibleTo(ancestor QWidget) bool - IsWindow() bool - IsWindowModified() bool - Layout() QLayout - LayoutDirection() LayoutDirection - MaximumHeight() int - MaximumWidth() int - MinimumHeight() int - MinimumWidth() int - Move(x int, y int) - NativeParentWidget() QWidget - NextInFocusChain() QWidget - OverrideWindowFlags(flags WindowType) - ParentWidget() QWidget - PreviousInFocusChain() QWidget - ReleaseKeyboard() - ReleaseMouse() - ReleaseShortcut(id int) - Repaint(x int, y int, w int, h int) - Resize(w int, h int) - Scroll(dx int, dy int) - SetAcceptDrops(on bool) - SetAccessibleDescription(description string) - SetAccessibleName(name string) - SetAttribute(attribute WidgetAttribute, on bool) - SetAutoFillBackground(enabled bool) - SetBaseSize(basew int, baseh int) - SetContentsMargins(left int, top int, right int, bottom int) - SetContextMenuPolicy(policy ContextMenuPolicy) - SetFixedHeight(h int) - SetFixedSize(w int, h int) - SetFixedWidth(w int) - SetFocus(reason FocusReason) - SetFocusPolicy(policy FocusPolicy) - SetFocusProxy(w QWidget) - SetGeometry(x int, y int, w int, h int) - SetLayout(layout QLayout) - SetLayoutDirection(direction LayoutDirection) - SetMaximumHeight(maxh int) - SetMaximumSize(maxw int, maxh int) - SetMaximumWidth(maxw int) - SetMinimumHeight(minh int) - SetMinimumSize(minw int, minh int) - SetMinimumWidth(minw int) - SetMouseTracking(enable bool) - SetShortcutAutoRepeat(id int, enable bool) - SetShortcutEnabled(id int, enable bool) - SetSizeIncrement(w int, h int) - SetStatusTip(statusTip string) - SetToolTip(toolTip string) - SetToolTipDuration(msec int) - SetUpdatesEnabled(enable bool) - SetWhatsThis(whatsThis string) - SetWindowFilePath(filePath string) - SetWindowFlags(typ WindowType) - SetWindowIconText(iconText string) - SetWindowModality(windowModality WindowModality) - SetWindowRole(role string) - SetWindowState(windowState WindowState) - StackUnder(w QWidget) - StatusTip() string - StyleSheet() string - TestAttribute(attribute WidgetAttribute) bool - ToolTip() string - ToolTipDuration() int - UnderMouse() bool - UngrabGesture(gesture GestureType) - UnsetCursor() - UnsetLayoutDirection() - UnsetLocale() - Update(x int, y int, w int, h int) - UpdateGeometry() - UpdatesEnabled() bool - Width() int - Window() QWidget - WindowFilePath() string - WindowFlags() WindowType - WindowIconText() string - WindowModality() WindowModality - WindowRole() string - WindowState() WindowState - WindowTitle() string - WindowType() WindowType - X() int - Y() int - ConnectSlotClose() - DisconnectSlotClose() - SlotClose() - ConnectSlotHide() - DisconnectSlotHide() - SlotHide() - ConnectSlotLower() - DisconnectSlotLower() - SlotLower() - ConnectSlotRaise() - DisconnectSlotRaise() - SlotRaise() - ConnectSlotSetDisabled() - DisconnectSlotSetDisabled() - SlotSetDisabled(disable bool) - ConnectSlotSetEnabled() - DisconnectSlotSetEnabled() - SlotSetEnabled(enabled bool) - ConnectSlotSetHidden() - DisconnectSlotSetHidden() - SlotSetHidden(hidden bool) - ConnectSlotSetStyleSheet() - DisconnectSlotSetStyleSheet() - SlotSetStyleSheet(styleSheet string) - ConnectSlotSetWindowModified() - DisconnectSlotSetWindowModified() - SlotSetWindowModified(modified bool) - ConnectSlotSetWindowTitle() - DisconnectSlotSetWindowTitle() - SlotSetWindowTitle(windowTitle string) - ConnectSlotShow() - DisconnectSlotShow() - SlotShow() - ConnectSlotShowFullScreen() - DisconnectSlotShowFullScreen() - SlotShowFullScreen() - ConnectSlotShowMaximized() - DisconnectSlotShowMaximized() - SlotShowMaximized() - ConnectSlotShowMinimized() - DisconnectSlotShowMinimized() - SlotShowMinimized() - ConnectSlotShowNormal() - DisconnectSlotShowNormal() - SlotShowNormal() - ConnectSignalWindowIconTextChanged(f func()) - DisconnectSignalWindowIconTextChanged() - SignalWindowIconTextChanged() func() - ConnectSignalWindowTitleChanged(f func()) - DisconnectSignalWindowTitleChanged() - SignalWindowTitleChanged() func() -} - -func (p *qwidget) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qwidget) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQWidget(parent QWidget, f WindowType) QWidget { - var parentPtr C.QtObjectPtr - if parent != nil { - parentPtr = parent.Pointer() - } - var qwidget = new(qwidget) - qwidget.SetPointer(C.QWidget_New_QWidget_WindowType(parentPtr, C.int(f))) - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - return qwidget -} - -func (p *qwidget) Destroy() { - if p.Pointer() != nil { - getSignal(p.ObjectName(), "destroyed")() - C.QWidget_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} - -func (p *qwidget) AcceptDrops() bool { - if p.Pointer() == nil { - return false - } - return C.QWidget_AcceptDrops(p.Pointer()) != 0 -} - -func (p *qwidget) AccessibleDescription() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QWidget_AccessibleDescription(p.Pointer())) -} - -func (p *qwidget) AccessibleName() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QWidget_AccessibleName(p.Pointer())) -} - -func (p *qwidget) ActivateWindow() { - if p.Pointer() != nil { - C.QWidget_ActivateWindow(p.Pointer()) - } -} - -func (p *qwidget) AdjustSize() { - if p.Pointer() != nil { - C.QWidget_AdjustSize(p.Pointer()) - } -} - -func (p *qwidget) AutoFillBackground() bool { - if p.Pointer() == nil { - return false - } - return C.QWidget_AutoFillBackground(p.Pointer()) != 0 -} - -func (p *qwidget) ChildAt(x int, y int) QWidget { - if p.Pointer() == nil { - return nil - } else { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QWidget_ChildAt_Int_Int(p.Pointer(), C.int(x), C.int(y))) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qwidget) ClearFocus() { - if p.Pointer() != nil { - C.QWidget_ClearFocus(p.Pointer()) - } -} - -func (p *qwidget) ClearMask() { - if p.Pointer() != nil { - C.QWidget_ClearMask(p.Pointer()) - } -} - -func (p *qwidget) ContextMenuPolicy() ContextMenuPolicy { - if p.Pointer() == nil { - return 0 - } - return ContextMenuPolicy(C.QWidget_ContextMenuPolicy(p.Pointer())) -} - -func (p *qwidget) EnsurePolished() { - if p.Pointer() != nil { - C.QWidget_EnsurePolished(p.Pointer()) - } -} - -func (p *qwidget) FocusPolicy() FocusPolicy { - if p.Pointer() == nil { - return 0 - } - return FocusPolicy(C.QWidget_FocusPolicy(p.Pointer())) -} - -func (p *qwidget) FocusProxy() QWidget { - if p.Pointer() == nil { - return nil - } else { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QWidget_FocusProxy(p.Pointer())) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qwidget) FocusWidget() QWidget { - if p.Pointer() == nil { - return nil - } else { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QWidget_FocusWidget(p.Pointer())) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qwidget) GrabKeyboard() { - if p.Pointer() != nil { - C.QWidget_GrabKeyboard(p.Pointer()) - } -} - -func (p *qwidget) GrabMouse() { - if p.Pointer() != nil { - C.QWidget_GrabMouse(p.Pointer()) - } -} - -func (p *qwidget) HasFocus() bool { - if p.Pointer() == nil { - return false - } - return C.QWidget_HasFocus(p.Pointer()) != 0 -} - -func (p *qwidget) HasHeightForWidth() bool { - if p.Pointer() == nil { - return false - } - return C.QWidget_HasHeightForWidth(p.Pointer()) != 0 -} - -func (p *qwidget) HasMouseTracking() bool { - if p.Pointer() == nil { - return false - } - return C.QWidget_HasMouseTracking(p.Pointer()) != 0 -} - -func (p *qwidget) Height() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QWidget_Height(p.Pointer())) -} - -func (p *qwidget) HeightForWidth(w int) int { - if p.Pointer() == nil { - return 0 - } - return int(C.QWidget_HeightForWidth_Int(p.Pointer(), C.int(w))) -} - -func (p *qwidget) InputMethodHints() InputMethodHint { - if p.Pointer() == nil { - return 0 - } - return InputMethodHint(C.QWidget_InputMethodHints(p.Pointer())) -} - -func (p *qwidget) IsActiveWindow() bool { - if p.Pointer() == nil { - return false - } - return C.QWidget_IsActiveWindow(p.Pointer()) != 0 -} - -func (p *qwidget) IsAncestorOf(child QWidget) bool { - if p.Pointer() == nil { - return false - } else { - var childPtr C.QtObjectPtr - if child != nil { - childPtr = child.Pointer() - } - return C.QWidget_IsAncestorOf_QWidget(p.Pointer(), childPtr) != 0 - } -} - -func (p *qwidget) IsEnabled() bool { - if p.Pointer() == nil { - return false - } - return C.QWidget_IsEnabled(p.Pointer()) != 0 -} - -func (p *qwidget) IsEnabledTo(ancestor QWidget) bool { - if p.Pointer() == nil { - return false - } else { - var ancestorPtr C.QtObjectPtr - if ancestor != nil { - ancestorPtr = ancestor.Pointer() - } - return C.QWidget_IsEnabledTo_QWidget(p.Pointer(), ancestorPtr) != 0 - } -} - -func (p *qwidget) IsFullScreen() bool { - if p.Pointer() == nil { - return false - } - return C.QWidget_IsFullScreen(p.Pointer()) != 0 -} - -func (p *qwidget) IsHidden() bool { - if p.Pointer() == nil { - return false - } - return C.QWidget_IsHidden(p.Pointer()) != 0 -} - -func (p *qwidget) IsMaximized() bool { - if p.Pointer() == nil { - return false - } - return C.QWidget_IsMaximized(p.Pointer()) != 0 -} - -func (p *qwidget) IsMinimized() bool { - if p.Pointer() == nil { - return false - } - return C.QWidget_IsMinimized(p.Pointer()) != 0 -} - -func (p *qwidget) IsModal() bool { - if p.Pointer() == nil { - return false - } - return C.QWidget_IsModal(p.Pointer()) != 0 -} - -func (p *qwidget) IsVisible() bool { - if p.Pointer() == nil { - return false - } - return C.QWidget_IsVisible(p.Pointer()) != 0 -} - -func (p *qwidget) IsVisibleTo(ancestor QWidget) bool { - if p.Pointer() == nil { - return false - } else { - var ancestorPtr C.QtObjectPtr - if ancestor != nil { - ancestorPtr = ancestor.Pointer() - } - return C.QWidget_IsVisibleTo_QWidget(p.Pointer(), ancestorPtr) != 0 - } -} - -func (p *qwidget) IsWindow() bool { - if p.Pointer() == nil { - return false - } - return C.QWidget_IsWindow(p.Pointer()) != 0 -} - -func (p *qwidget) IsWindowModified() bool { - if p.Pointer() == nil { - return false - } - return C.QWidget_IsWindowModified(p.Pointer()) != 0 -} - -func (p *qwidget) Layout() QLayout { - if p.Pointer() == nil { - return nil - } else { - var qlayout = new(qlayout) - qlayout.SetPointer(C.QWidget_Layout(p.Pointer())) - if qlayout.ObjectName() == "" { - qlayout.SetObjectName("QLayout_" + randomIdentifier()) - } - return qlayout - } -} - -func (p *qwidget) LayoutDirection() LayoutDirection { - if p.Pointer() == nil { - return 0 - } - return LayoutDirection(C.QWidget_LayoutDirection(p.Pointer())) -} - -func (p *qwidget) MaximumHeight() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QWidget_MaximumHeight(p.Pointer())) -} - -func (p *qwidget) MaximumWidth() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QWidget_MaximumWidth(p.Pointer())) -} - -func (p *qwidget) MinimumHeight() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QWidget_MinimumHeight(p.Pointer())) -} - -func (p *qwidget) MinimumWidth() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QWidget_MinimumWidth(p.Pointer())) -} - -func (p *qwidget) Move(x int, y int) { - if p.Pointer() != nil { - C.QWidget_Move_Int_Int(p.Pointer(), C.int(x), C.int(y)) - } -} - -func (p *qwidget) NativeParentWidget() QWidget { - if p.Pointer() == nil { - return nil - } else { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QWidget_NativeParentWidget(p.Pointer())) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qwidget) NextInFocusChain() QWidget { - if p.Pointer() == nil { - return nil - } else { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QWidget_NextInFocusChain(p.Pointer())) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qwidget) OverrideWindowFlags(flags WindowType) { - if p.Pointer() != nil { - C.QWidget_OverrideWindowFlags_WindowType(p.Pointer(), C.int(flags)) - } -} - -func (p *qwidget) ParentWidget() QWidget { - if p.Pointer() == nil { - return nil - } else { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QWidget_ParentWidget(p.Pointer())) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qwidget) PreviousInFocusChain() QWidget { - if p.Pointer() == nil { - return nil - } else { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QWidget_PreviousInFocusChain(p.Pointer())) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qwidget) ReleaseKeyboard() { - if p.Pointer() != nil { - C.QWidget_ReleaseKeyboard(p.Pointer()) - } -} - -func (p *qwidget) ReleaseMouse() { - if p.Pointer() != nil { - C.QWidget_ReleaseMouse(p.Pointer()) - } -} - -func (p *qwidget) ReleaseShortcut(id int) { - if p.Pointer() != nil { - C.QWidget_ReleaseShortcut_Int(p.Pointer(), C.int(id)) - } -} - -func (p *qwidget) Repaint(x int, y int, w int, h int) { - if p.Pointer() != nil { - C.QWidget_Repaint_Int_Int_Int_Int(p.Pointer(), C.int(x), C.int(y), C.int(w), C.int(h)) - } -} - -func (p *qwidget) Resize(w int, h int) { - if p.Pointer() != nil { - C.QWidget_Resize_Int_Int(p.Pointer(), C.int(w), C.int(h)) - } -} - -func (p *qwidget) Scroll(dx int, dy int) { - if p.Pointer() != nil { - C.QWidget_Scroll_Int_Int(p.Pointer(), C.int(dx), C.int(dy)) - } -} - -func (p *qwidget) SetAcceptDrops(on bool) { - if p.Pointer() != nil { - C.QWidget_SetAcceptDrops_Bool(p.Pointer(), goBoolToCInt(on)) - } -} - -func (p *qwidget) SetAccessibleDescription(description string) { - if p.Pointer() != nil { - C.QWidget_SetAccessibleDescription_String(p.Pointer(), C.CString(description)) - } -} - -func (p *qwidget) SetAccessibleName(name string) { - if p.Pointer() != nil { - C.QWidget_SetAccessibleName_String(p.Pointer(), C.CString(name)) - } -} - -func (p *qwidget) SetAttribute(attribute WidgetAttribute, on bool) { - if p.Pointer() != nil { - C.QWidget_SetAttribute_WidgetAttribute_Bool(p.Pointer(), C.int(attribute), goBoolToCInt(on)) - } -} - -func (p *qwidget) SetAutoFillBackground(enabled bool) { - if p.Pointer() != nil { - C.QWidget_SetAutoFillBackground_Bool(p.Pointer(), goBoolToCInt(enabled)) - } -} - -func (p *qwidget) SetBaseSize(basew int, baseh int) { - if p.Pointer() != nil { - C.QWidget_SetBaseSize_Int_Int(p.Pointer(), C.int(basew), C.int(baseh)) - } -} - -func (p *qwidget) SetContentsMargins(left int, top int, right int, bottom int) { - if p.Pointer() != nil { - C.QWidget_SetContentsMargins_Int_Int_Int_Int(p.Pointer(), C.int(left), C.int(top), C.int(right), C.int(bottom)) - } -} - -func (p *qwidget) SetContextMenuPolicy(policy ContextMenuPolicy) { - if p.Pointer() != nil { - C.QWidget_SetContextMenuPolicy_ContextMenuPolicy(p.Pointer(), C.int(policy)) - } -} - -func (p *qwidget) SetFixedHeight(h int) { - if p.Pointer() != nil { - C.QWidget_SetFixedHeight_Int(p.Pointer(), C.int(h)) - } -} - -func (p *qwidget) SetFixedSize(w int, h int) { - if p.Pointer() != nil { - C.QWidget_SetFixedSize_Int_Int(p.Pointer(), C.int(w), C.int(h)) - } -} - -func (p *qwidget) SetFixedWidth(w int) { - if p.Pointer() != nil { - C.QWidget_SetFixedWidth_Int(p.Pointer(), C.int(w)) - } -} - -func (p *qwidget) SetFocus(reason FocusReason) { - if p.Pointer() != nil { - C.QWidget_SetFocus_FocusReason(p.Pointer(), C.int(reason)) - } -} - -func (p *qwidget) SetFocusPolicy(policy FocusPolicy) { - if p.Pointer() != nil { - C.QWidget_SetFocusPolicy_FocusPolicy(p.Pointer(), C.int(policy)) - } -} - -func (p *qwidget) SetFocusProxy(w QWidget) { - if p.Pointer() != nil { - var wPtr C.QtObjectPtr - if w != nil { - wPtr = w.Pointer() - } - C.QWidget_SetFocusProxy_QWidget(p.Pointer(), wPtr) - } -} - -func (p *qwidget) SetGeometry(x int, y int, w int, h int) { - if p.Pointer() != nil { - C.QWidget_SetGeometry_Int_Int_Int_Int(p.Pointer(), C.int(x), C.int(y), C.int(w), C.int(h)) - } -} - -func (p *qwidget) SetLayout(layout QLayout) { - if p.Pointer() != nil { - var layoutPtr C.QtObjectPtr - if layout != nil { - layoutPtr = layout.Pointer() - } - C.QWidget_SetLayout_QLayout(p.Pointer(), layoutPtr) - } -} - -func (p *qwidget) SetLayoutDirection(direction LayoutDirection) { - if p.Pointer() != nil { - C.QWidget_SetLayoutDirection_LayoutDirection(p.Pointer(), C.int(direction)) - } -} - -func (p *qwidget) SetMaximumHeight(maxh int) { - if p.Pointer() != nil { - C.QWidget_SetMaximumHeight_Int(p.Pointer(), C.int(maxh)) - } -} - -func (p *qwidget) SetMaximumSize(maxw int, maxh int) { - if p.Pointer() != nil { - C.QWidget_SetMaximumSize_Int_Int(p.Pointer(), C.int(maxw), C.int(maxh)) - } -} - -func (p *qwidget) SetMaximumWidth(maxw int) { - if p.Pointer() != nil { - C.QWidget_SetMaximumWidth_Int(p.Pointer(), C.int(maxw)) - } -} - -func (p *qwidget) SetMinimumHeight(minh int) { - if p.Pointer() != nil { - C.QWidget_SetMinimumHeight_Int(p.Pointer(), C.int(minh)) - } -} - -func (p *qwidget) SetMinimumSize(minw int, minh int) { - if p.Pointer() != nil { - C.QWidget_SetMinimumSize_Int_Int(p.Pointer(), C.int(minw), C.int(minh)) - } -} - -func (p *qwidget) SetMinimumWidth(minw int) { - if p.Pointer() != nil { - C.QWidget_SetMinimumWidth_Int(p.Pointer(), C.int(minw)) - } -} - -func (p *qwidget) SetMouseTracking(enable bool) { - if p.Pointer() != nil { - C.QWidget_SetMouseTracking_Bool(p.Pointer(), goBoolToCInt(enable)) - } -} - -func (p *qwidget) SetShortcutAutoRepeat(id int, enable bool) { - if p.Pointer() != nil { - C.QWidget_SetShortcutAutoRepeat_Int_Bool(p.Pointer(), C.int(id), goBoolToCInt(enable)) - } -} - -func (p *qwidget) SetShortcutEnabled(id int, enable bool) { - if p.Pointer() != nil { - C.QWidget_SetShortcutEnabled_Int_Bool(p.Pointer(), C.int(id), goBoolToCInt(enable)) - } -} - -func (p *qwidget) SetSizeIncrement(w int, h int) { - if p.Pointer() != nil { - C.QWidget_SetSizeIncrement_Int_Int(p.Pointer(), C.int(w), C.int(h)) - } -} - -func (p *qwidget) SetStatusTip(statusTip string) { - if p.Pointer() != nil { - C.QWidget_SetStatusTip_String(p.Pointer(), C.CString(statusTip)) - } -} - -func (p *qwidget) SetToolTip(toolTip string) { - if p.Pointer() != nil { - C.QWidget_SetToolTip_String(p.Pointer(), C.CString(toolTip)) - } -} - -func (p *qwidget) SetToolTipDuration(msec int) { - if p.Pointer() != nil { - C.QWidget_SetToolTipDuration_Int(p.Pointer(), C.int(msec)) - } -} - -func (p *qwidget) SetUpdatesEnabled(enable bool) { - if p.Pointer() != nil { - C.QWidget_SetUpdatesEnabled_Bool(p.Pointer(), goBoolToCInt(enable)) - } -} - -func (p *qwidget) SetWhatsThis(whatsThis string) { - if p.Pointer() != nil { - C.QWidget_SetWhatsThis_String(p.Pointer(), C.CString(whatsThis)) - } -} - -func (p *qwidget) SetWindowFilePath(filePath string) { - if p.Pointer() != nil { - C.QWidget_SetWindowFilePath_String(p.Pointer(), C.CString(filePath)) - } -} - -func (p *qwidget) SetWindowFlags(typ WindowType) { - if p.Pointer() != nil { - C.QWidget_SetWindowFlags_WindowType(p.Pointer(), C.int(typ)) - } -} - -func (p *qwidget) SetWindowIconText(iconText string) { - if p.Pointer() != nil { - C.QWidget_SetWindowIconText_String(p.Pointer(), C.CString(iconText)) - } -} - -func (p *qwidget) SetWindowModality(windowModality WindowModality) { - if p.Pointer() != nil { - C.QWidget_SetWindowModality_WindowModality(p.Pointer(), C.int(windowModality)) - } -} - -func (p *qwidget) SetWindowRole(role string) { - if p.Pointer() != nil { - C.QWidget_SetWindowRole_String(p.Pointer(), C.CString(role)) - } -} - -func (p *qwidget) SetWindowState(windowState WindowState) { - if p.Pointer() != nil { - C.QWidget_SetWindowState_WindowState(p.Pointer(), C.int(windowState)) - } -} - -func (p *qwidget) StackUnder(w QWidget) { - if p.Pointer() != nil { - var wPtr C.QtObjectPtr - if w != nil { - wPtr = w.Pointer() - } - C.QWidget_StackUnder_QWidget(p.Pointer(), wPtr) - } -} - -func (p *qwidget) StatusTip() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QWidget_StatusTip(p.Pointer())) -} - -func (p *qwidget) StyleSheet() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QWidget_StyleSheet(p.Pointer())) -} - -func (p *qwidget) TestAttribute(attribute WidgetAttribute) bool { - if p.Pointer() == nil { - return false - } - return C.QWidget_TestAttribute_WidgetAttribute(p.Pointer(), C.int(attribute)) != 0 -} - -func (p *qwidget) ToolTip() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QWidget_ToolTip(p.Pointer())) -} - -func (p *qwidget) ToolTipDuration() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QWidget_ToolTipDuration(p.Pointer())) -} - -func (p *qwidget) UnderMouse() bool { - if p.Pointer() == nil { - return false - } - return C.QWidget_UnderMouse(p.Pointer()) != 0 -} - -func (p *qwidget) UngrabGesture(gesture GestureType) { - if p.Pointer() != nil { - C.QWidget_UngrabGesture_GestureType(p.Pointer(), C.int(gesture)) - } -} - -func (p *qwidget) UnsetCursor() { - if p.Pointer() != nil { - C.QWidget_UnsetCursor(p.Pointer()) - } -} - -func (p *qwidget) UnsetLayoutDirection() { - if p.Pointer() != nil { - C.QWidget_UnsetLayoutDirection(p.Pointer()) - } -} - -func (p *qwidget) UnsetLocale() { - if p.Pointer() != nil { - C.QWidget_UnsetLocale(p.Pointer()) - } -} - -func (p *qwidget) Update(x int, y int, w int, h int) { - if p.Pointer() != nil { - C.QWidget_Update_Int_Int_Int_Int(p.Pointer(), C.int(x), C.int(y), C.int(w), C.int(h)) - } -} - -func (p *qwidget) UpdateGeometry() { - if p.Pointer() != nil { - C.QWidget_UpdateGeometry(p.Pointer()) - } -} - -func (p *qwidget) UpdatesEnabled() bool { - if p.Pointer() == nil { - return false - } - return C.QWidget_UpdatesEnabled(p.Pointer()) != 0 -} - -func (p *qwidget) Width() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QWidget_Width(p.Pointer())) -} - -func (p *qwidget) Window() QWidget { - if p.Pointer() == nil { - return nil - } else { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QWidget_Window(p.Pointer())) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget - } -} - -func (p *qwidget) WindowFilePath() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QWidget_WindowFilePath(p.Pointer())) -} - -func (p *qwidget) WindowFlags() WindowType { - if p.Pointer() == nil { - return 0 - } - return WindowType(C.QWidget_WindowFlags(p.Pointer())) -} - -func (p *qwidget) WindowIconText() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QWidget_WindowIconText(p.Pointer())) -} - -func (p *qwidget) WindowModality() WindowModality { - if p.Pointer() == nil { - return 0 - } - return WindowModality(C.QWidget_WindowModality(p.Pointer())) -} - -func (p *qwidget) WindowRole() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QWidget_WindowRole(p.Pointer())) -} - -func (p *qwidget) WindowState() WindowState { - if p.Pointer() == nil { - return 0 - } - return WindowState(C.QWidget_WindowState(p.Pointer())) -} - -func (p *qwidget) WindowTitle() string { - if p.Pointer() == nil { - return "" - } - return C.GoString(C.QWidget_WindowTitle(p.Pointer())) -} - -func (p *qwidget) WindowType() WindowType { - if p.Pointer() == nil { - return 0 - } - return WindowType(C.QWidget_WindowType(p.Pointer())) -} - -func (p *qwidget) X() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QWidget_X(p.Pointer())) -} - -func (p *qwidget) Y() int { - if p.Pointer() == nil { - return 0 - } - return int(C.QWidget_Y(p.Pointer())) -} - -func (p *qwidget) ConnectSlotClose() { - C.QWidget_ConnectSlotClose(p.Pointer()) -} - -func (p *qwidget) DisconnectSlotClose() { - C.QWidget_DisconnectSlotClose(p.Pointer()) -} - -func (p *qwidget) SlotClose() { - if p.Pointer() != nil { - C.QWidget_Close(p.Pointer()) - } -} - -func (p *qwidget) ConnectSlotHide() { - C.QWidget_ConnectSlotHide(p.Pointer()) -} - -func (p *qwidget) DisconnectSlotHide() { - C.QWidget_DisconnectSlotHide(p.Pointer()) -} - -func (p *qwidget) SlotHide() { - if p.Pointer() != nil { - C.QWidget_Hide(p.Pointer()) - } -} - -func (p *qwidget) ConnectSlotLower() { - C.QWidget_ConnectSlotLower(p.Pointer()) -} - -func (p *qwidget) DisconnectSlotLower() { - C.QWidget_DisconnectSlotLower(p.Pointer()) -} - -func (p *qwidget) SlotLower() { - if p.Pointer() != nil { - C.QWidget_Lower(p.Pointer()) - } -} - -func (p *qwidget) ConnectSlotRaise() { - C.QWidget_ConnectSlotRaise(p.Pointer()) -} - -func (p *qwidget) DisconnectSlotRaise() { - C.QWidget_DisconnectSlotRaise(p.Pointer()) -} - -func (p *qwidget) SlotRaise() { - if p.Pointer() != nil { - C.QWidget_Raise(p.Pointer()) - } -} - -func (p *qwidget) ConnectSlotSetDisabled() { - C.QWidget_ConnectSlotSetDisabled(p.Pointer()) -} - -func (p *qwidget) DisconnectSlotSetDisabled() { - C.QWidget_DisconnectSlotSetDisabled(p.Pointer()) -} - -func (p *qwidget) SlotSetDisabled(disable bool) { - if p.Pointer() != nil { - C.QWidget_SetDisabled_Bool(p.Pointer(), goBoolToCInt(disable)) - } -} - -func (p *qwidget) ConnectSlotSetEnabled() { - C.QWidget_ConnectSlotSetEnabled(p.Pointer()) -} - -func (p *qwidget) DisconnectSlotSetEnabled() { - C.QWidget_DisconnectSlotSetEnabled(p.Pointer()) -} - -func (p *qwidget) SlotSetEnabled(enabled bool) { - if p.Pointer() != nil { - C.QWidget_SetEnabled_Bool(p.Pointer(), goBoolToCInt(enabled)) - } -} - -func (p *qwidget) ConnectSlotSetHidden() { - C.QWidget_ConnectSlotSetHidden(p.Pointer()) -} - -func (p *qwidget) DisconnectSlotSetHidden() { - C.QWidget_DisconnectSlotSetHidden(p.Pointer()) -} - -func (p *qwidget) SlotSetHidden(hidden bool) { - if p.Pointer() != nil { - C.QWidget_SetHidden_Bool(p.Pointer(), goBoolToCInt(hidden)) - } -} - -func (p *qwidget) ConnectSlotSetStyleSheet() { - C.QWidget_ConnectSlotSetStyleSheet(p.Pointer()) -} - -func (p *qwidget) DisconnectSlotSetStyleSheet() { - C.QWidget_DisconnectSlotSetStyleSheet(p.Pointer()) -} - -func (p *qwidget) SlotSetStyleSheet(styleSheet string) { - if p.Pointer() != nil { - C.QWidget_SetStyleSheet_String(p.Pointer(), C.CString(styleSheet)) - } -} - -func (p *qwidget) ConnectSlotSetWindowModified() { - C.QWidget_ConnectSlotSetWindowModified(p.Pointer()) -} - -func (p *qwidget) DisconnectSlotSetWindowModified() { - C.QWidget_DisconnectSlotSetWindowModified(p.Pointer()) -} - -func (p *qwidget) SlotSetWindowModified(modified bool) { - if p.Pointer() != nil { - C.QWidget_SetWindowModified_Bool(p.Pointer(), goBoolToCInt(modified)) - } -} - -func (p *qwidget) ConnectSlotSetWindowTitle() { - C.QWidget_ConnectSlotSetWindowTitle(p.Pointer()) -} - -func (p *qwidget) DisconnectSlotSetWindowTitle() { - C.QWidget_DisconnectSlotSetWindowTitle(p.Pointer()) -} - -func (p *qwidget) SlotSetWindowTitle(windowTitle string) { - if p.Pointer() != nil { - C.QWidget_SetWindowTitle_String(p.Pointer(), C.CString(windowTitle)) - } -} - -func (p *qwidget) ConnectSlotShow() { - C.QWidget_ConnectSlotShow(p.Pointer()) -} - -func (p *qwidget) DisconnectSlotShow() { - C.QWidget_DisconnectSlotShow(p.Pointer()) -} - -func (p *qwidget) SlotShow() { - if p.Pointer() != nil { - C.QWidget_Show(p.Pointer()) - } -} - -func (p *qwidget) ConnectSlotShowFullScreen() { - C.QWidget_ConnectSlotShowFullScreen(p.Pointer()) -} - -func (p *qwidget) DisconnectSlotShowFullScreen() { - C.QWidget_DisconnectSlotShowFullScreen(p.Pointer()) -} - -func (p *qwidget) SlotShowFullScreen() { - if p.Pointer() != nil { - C.QWidget_ShowFullScreen(p.Pointer()) - } -} - -func (p *qwidget) ConnectSlotShowMaximized() { - C.QWidget_ConnectSlotShowMaximized(p.Pointer()) -} - -func (p *qwidget) DisconnectSlotShowMaximized() { - C.QWidget_DisconnectSlotShowMaximized(p.Pointer()) -} - -func (p *qwidget) SlotShowMaximized() { - if p.Pointer() != nil { - C.QWidget_ShowMaximized(p.Pointer()) - } -} - -func (p *qwidget) ConnectSlotShowMinimized() { - C.QWidget_ConnectSlotShowMinimized(p.Pointer()) -} - -func (p *qwidget) DisconnectSlotShowMinimized() { - C.QWidget_DisconnectSlotShowMinimized(p.Pointer()) -} - -func (p *qwidget) SlotShowMinimized() { - if p.Pointer() != nil { - C.QWidget_ShowMinimized(p.Pointer()) - } -} - -func (p *qwidget) ConnectSlotShowNormal() { - C.QWidget_ConnectSlotShowNormal(p.Pointer()) -} - -func (p *qwidget) DisconnectSlotShowNormal() { - C.QWidget_DisconnectSlotShowNormal(p.Pointer()) -} - -func (p *qwidget) SlotShowNormal() { - if p.Pointer() != nil { - C.QWidget_ShowNormal(p.Pointer()) - } -} - -func (p *qwidget) ConnectSignalWindowIconTextChanged(f func()) { - C.QWidget_ConnectSignalWindowIconTextChanged(p.Pointer()) - connectSignal(p.ObjectName(), "windowIconTextChanged", f) -} - -func (p *qwidget) DisconnectSignalWindowIconTextChanged() { - C.QWidget_DisconnectSignalWindowIconTextChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "windowIconTextChanged") -} - -func (p *qwidget) SignalWindowIconTextChanged() func() { - return getSignal(p.ObjectName(), "windowIconTextChanged") -} - -func (p *qwidget) ConnectSignalWindowTitleChanged(f func()) { - C.QWidget_ConnectSignalWindowTitleChanged(p.Pointer()) - connectSignal(p.ObjectName(), "windowTitleChanged", f) -} - -func (p *qwidget) DisconnectSignalWindowTitleChanged() { - C.QWidget_DisconnectSignalWindowTitleChanged(p.Pointer()) - disconnectSignal(p.ObjectName(), "windowTitleChanged") -} - -func (p *qwidget) SignalWindowTitleChanged() func() { - return getSignal(p.ObjectName(), "windowTitleChanged") -} - -func QWidget_KeyboardGrabber() QWidget { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QWidget_KeyboardGrabber()) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget -} - -func QWidget_MouseGrabber() QWidget { - var qwidget = new(qwidget) - qwidget.SetPointer(C.QWidget_MouseGrabber()) - if qwidget.ObjectName() == "" { - qwidget.SetObjectName("QWidget_" + randomIdentifier()) - } - return qwidget -} - -func QWidget_SetTabOrder(first QWidget, second QWidget) { - var firstPtr C.QtObjectPtr - if first != nil { - firstPtr = first.Pointer() - } - var secondPtr C.QtObjectPtr - if second != nil { - secondPtr = second.Pointer() - } - C.QWidget_SetTabOrder_QWidget_QWidget(firstPtr, secondPtr) -} - -//export callbackQWidget -func callbackQWidget(ptr C.QtObjectPtr, msg *C.char) { - var qwidget = new(qwidget) - qwidget.SetPointer(ptr) - getSignal(qwidget.ObjectName(), C.GoString(msg))() -} diff --git a/qwidget.h b/qwidget.h deleted file mode 100644 index 6c144fa7..00000000 --- a/qwidget.h +++ /dev/null @@ -1,185 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QWidget_New_QWidget_WindowType(QtObjectPtr parent, int f); -void QWidget_Destroy(QtObjectPtr ptr); -int QWidget_AcceptDrops(QtObjectPtr ptr); -char* QWidget_AccessibleDescription(QtObjectPtr ptr); -char* QWidget_AccessibleName(QtObjectPtr ptr); -void QWidget_ActivateWindow(QtObjectPtr ptr); -void QWidget_AdjustSize(QtObjectPtr ptr); -int QWidget_AutoFillBackground(QtObjectPtr ptr); -QtObjectPtr QWidget_ChildAt_Int_Int(QtObjectPtr ptr, int x, int y); -void QWidget_ClearFocus(QtObjectPtr ptr); -void QWidget_ClearMask(QtObjectPtr ptr); -int QWidget_ContextMenuPolicy(QtObjectPtr ptr); -void QWidget_EnsurePolished(QtObjectPtr ptr); -int QWidget_FocusPolicy(QtObjectPtr ptr); -QtObjectPtr QWidget_FocusProxy(QtObjectPtr ptr); -QtObjectPtr QWidget_FocusWidget(QtObjectPtr ptr); -void QWidget_GrabKeyboard(QtObjectPtr ptr); -void QWidget_GrabMouse(QtObjectPtr ptr); -int QWidget_HasFocus(QtObjectPtr ptr); -int QWidget_HasHeightForWidth(QtObjectPtr ptr); -int QWidget_HasMouseTracking(QtObjectPtr ptr); -int QWidget_Height(QtObjectPtr ptr); -int QWidget_HeightForWidth_Int(QtObjectPtr ptr, int w); -int QWidget_InputMethodHints(QtObjectPtr ptr); -int QWidget_IsActiveWindow(QtObjectPtr ptr); -int QWidget_IsAncestorOf_QWidget(QtObjectPtr ptr, QtObjectPtr child); -int QWidget_IsEnabled(QtObjectPtr ptr); -int QWidget_IsEnabledTo_QWidget(QtObjectPtr ptr, QtObjectPtr ancestor); -int QWidget_IsFullScreen(QtObjectPtr ptr); -int QWidget_IsHidden(QtObjectPtr ptr); -int QWidget_IsMaximized(QtObjectPtr ptr); -int QWidget_IsMinimized(QtObjectPtr ptr); -int QWidget_IsModal(QtObjectPtr ptr); -int QWidget_IsVisible(QtObjectPtr ptr); -int QWidget_IsVisibleTo_QWidget(QtObjectPtr ptr, QtObjectPtr ancestor); -int QWidget_IsWindow(QtObjectPtr ptr); -int QWidget_IsWindowModified(QtObjectPtr ptr); -QtObjectPtr QWidget_Layout(QtObjectPtr ptr); -int QWidget_LayoutDirection(QtObjectPtr ptr); -int QWidget_MaximumHeight(QtObjectPtr ptr); -int QWidget_MaximumWidth(QtObjectPtr ptr); -int QWidget_MinimumHeight(QtObjectPtr ptr); -int QWidget_MinimumWidth(QtObjectPtr ptr); -void QWidget_Move_Int_Int(QtObjectPtr ptr, int x, int y); -QtObjectPtr QWidget_NativeParentWidget(QtObjectPtr ptr); -QtObjectPtr QWidget_NextInFocusChain(QtObjectPtr ptr); -void QWidget_OverrideWindowFlags_WindowType(QtObjectPtr ptr, int flags); -QtObjectPtr QWidget_ParentWidget(QtObjectPtr ptr); -QtObjectPtr QWidget_PreviousInFocusChain(QtObjectPtr ptr); -void QWidget_ReleaseKeyboard(QtObjectPtr ptr); -void QWidget_ReleaseMouse(QtObjectPtr ptr); -void QWidget_ReleaseShortcut_Int(QtObjectPtr ptr, int id); -void QWidget_Repaint_Int_Int_Int_Int(QtObjectPtr ptr, int x, int y, int w, int h); -void QWidget_Resize_Int_Int(QtObjectPtr ptr, int w, int h); -void QWidget_Scroll_Int_Int(QtObjectPtr ptr, int dx, int dy); -void QWidget_SetAcceptDrops_Bool(QtObjectPtr ptr, int on); -void QWidget_SetAccessibleDescription_String(QtObjectPtr ptr, char* description); -void QWidget_SetAccessibleName_String(QtObjectPtr ptr, char* name); -void QWidget_SetAttribute_WidgetAttribute_Bool(QtObjectPtr ptr, int attribute, int on); -void QWidget_SetAutoFillBackground_Bool(QtObjectPtr ptr, int enabled); -void QWidget_SetBaseSize_Int_Int(QtObjectPtr ptr, int basew, int baseh); -void QWidget_SetContentsMargins_Int_Int_Int_Int(QtObjectPtr ptr, int left, int top, int right, int bottom); -void QWidget_SetContextMenuPolicy_ContextMenuPolicy(QtObjectPtr ptr, int policy); -void QWidget_SetFixedHeight_Int(QtObjectPtr ptr, int h); -void QWidget_SetFixedSize_Int_Int(QtObjectPtr ptr, int w, int h); -void QWidget_SetFixedWidth_Int(QtObjectPtr ptr, int w); -void QWidget_SetFocus_FocusReason(QtObjectPtr ptr, int reason); -void QWidget_SetFocusPolicy_FocusPolicy(QtObjectPtr ptr, int policy); -void QWidget_SetFocusProxy_QWidget(QtObjectPtr ptr, QtObjectPtr w); -void QWidget_SetGeometry_Int_Int_Int_Int(QtObjectPtr ptr, int x, int y, int w, int h); -void QWidget_SetLayout_QLayout(QtObjectPtr ptr, QtObjectPtr layout); -void QWidget_SetLayoutDirection_LayoutDirection(QtObjectPtr ptr, int direction); -void QWidget_SetMaximumHeight_Int(QtObjectPtr ptr, int maxh); -void QWidget_SetMaximumSize_Int_Int(QtObjectPtr ptr, int maxw, int maxh); -void QWidget_SetMaximumWidth_Int(QtObjectPtr ptr, int maxw); -void QWidget_SetMinimumHeight_Int(QtObjectPtr ptr, int minh); -void QWidget_SetMinimumSize_Int_Int(QtObjectPtr ptr, int minw, int minh); -void QWidget_SetMinimumWidth_Int(QtObjectPtr ptr, int minw); -void QWidget_SetMouseTracking_Bool(QtObjectPtr ptr, int enable); -void QWidget_SetShortcutAutoRepeat_Int_Bool(QtObjectPtr ptr, int id, int enable); -void QWidget_SetShortcutEnabled_Int_Bool(QtObjectPtr ptr, int id, int enable); -void QWidget_SetSizeIncrement_Int_Int(QtObjectPtr ptr, int w, int h); -void QWidget_SetStatusTip_String(QtObjectPtr ptr, char* statusTip); -void QWidget_SetToolTip_String(QtObjectPtr ptr, char* toolTip); -void QWidget_SetToolTipDuration_Int(QtObjectPtr ptr, int msec); -void QWidget_SetUpdatesEnabled_Bool(QtObjectPtr ptr, int enable); -void QWidget_SetWhatsThis_String(QtObjectPtr ptr, char* whatsThis); -void QWidget_SetWindowFilePath_String(QtObjectPtr ptr, char* filePath); -void QWidget_SetWindowFlags_WindowType(QtObjectPtr ptr, int typ); -void QWidget_SetWindowIconText_String(QtObjectPtr ptr, char* iconText); -void QWidget_SetWindowModality_WindowModality(QtObjectPtr ptr, int windowModality); -void QWidget_SetWindowRole_String(QtObjectPtr ptr, char* role); -void QWidget_SetWindowState_WindowState(QtObjectPtr ptr, int windowState); -void QWidget_StackUnder_QWidget(QtObjectPtr ptr, QtObjectPtr w); -char* QWidget_StatusTip(QtObjectPtr ptr); -char* QWidget_StyleSheet(QtObjectPtr ptr); -int QWidget_TestAttribute_WidgetAttribute(QtObjectPtr ptr, int attribute); -char* QWidget_ToolTip(QtObjectPtr ptr); -int QWidget_ToolTipDuration(QtObjectPtr ptr); -int QWidget_UnderMouse(QtObjectPtr ptr); -void QWidget_UngrabGesture_GestureType(QtObjectPtr ptr, int gesture); -void QWidget_UnsetCursor(QtObjectPtr ptr); -void QWidget_UnsetLayoutDirection(QtObjectPtr ptr); -void QWidget_UnsetLocale(QtObjectPtr ptr); -void QWidget_Update_Int_Int_Int_Int(QtObjectPtr ptr, int x, int y, int w, int h); -void QWidget_UpdateGeometry(QtObjectPtr ptr); -int QWidget_UpdatesEnabled(QtObjectPtr ptr); -int QWidget_Width(QtObjectPtr ptr); -QtObjectPtr QWidget_Window(QtObjectPtr ptr); -char* QWidget_WindowFilePath(QtObjectPtr ptr); -int QWidget_WindowFlags(QtObjectPtr ptr); -char* QWidget_WindowIconText(QtObjectPtr ptr); -int QWidget_WindowModality(QtObjectPtr ptr); -char* QWidget_WindowRole(QtObjectPtr ptr); -int QWidget_WindowState(QtObjectPtr ptr); -char* QWidget_WindowTitle(QtObjectPtr ptr); -int QWidget_WindowType(QtObjectPtr ptr); -int QWidget_X(QtObjectPtr ptr); -int QWidget_Y(QtObjectPtr ptr); -//Public Slots -void QWidget_ConnectSlotClose(QtObjectPtr ptr); -void QWidget_DisconnectSlotClose(QtObjectPtr ptr); -void QWidget_Close(QtObjectPtr ptr); -void QWidget_ConnectSlotHide(QtObjectPtr ptr); -void QWidget_DisconnectSlotHide(QtObjectPtr ptr); -void QWidget_Hide(QtObjectPtr ptr); -void QWidget_ConnectSlotLower(QtObjectPtr ptr); -void QWidget_DisconnectSlotLower(QtObjectPtr ptr); -void QWidget_Lower(QtObjectPtr ptr); -void QWidget_ConnectSlotRaise(QtObjectPtr ptr); -void QWidget_DisconnectSlotRaise(QtObjectPtr ptr); -void QWidget_Raise(QtObjectPtr ptr); -void QWidget_ConnectSlotSetDisabled(QtObjectPtr ptr); -void QWidget_DisconnectSlotSetDisabled(QtObjectPtr ptr); -void QWidget_SetDisabled_Bool(QtObjectPtr ptr, int disable); -void QWidget_ConnectSlotSetEnabled(QtObjectPtr ptr); -void QWidget_DisconnectSlotSetEnabled(QtObjectPtr ptr); -void QWidget_SetEnabled_Bool(QtObjectPtr ptr, int enabled); -void QWidget_ConnectSlotSetHidden(QtObjectPtr ptr); -void QWidget_DisconnectSlotSetHidden(QtObjectPtr ptr); -void QWidget_SetHidden_Bool(QtObjectPtr ptr, int hidden); -void QWidget_ConnectSlotSetStyleSheet(QtObjectPtr ptr); -void QWidget_DisconnectSlotSetStyleSheet(QtObjectPtr ptr); -void QWidget_SetStyleSheet_String(QtObjectPtr ptr, char* styleSheet); -void QWidget_ConnectSlotSetWindowModified(QtObjectPtr ptr); -void QWidget_DisconnectSlotSetWindowModified(QtObjectPtr ptr); -void QWidget_SetWindowModified_Bool(QtObjectPtr ptr, int modified); -void QWidget_ConnectSlotSetWindowTitle(QtObjectPtr ptr); -void QWidget_DisconnectSlotSetWindowTitle(QtObjectPtr ptr); -void QWidget_SetWindowTitle_String(QtObjectPtr ptr, char* windowTitle); -void QWidget_ConnectSlotShow(QtObjectPtr ptr); -void QWidget_DisconnectSlotShow(QtObjectPtr ptr); -void QWidget_Show(QtObjectPtr ptr); -void QWidget_ConnectSlotShowFullScreen(QtObjectPtr ptr); -void QWidget_DisconnectSlotShowFullScreen(QtObjectPtr ptr); -void QWidget_ShowFullScreen(QtObjectPtr ptr); -void QWidget_ConnectSlotShowMaximized(QtObjectPtr ptr); -void QWidget_DisconnectSlotShowMaximized(QtObjectPtr ptr); -void QWidget_ShowMaximized(QtObjectPtr ptr); -void QWidget_ConnectSlotShowMinimized(QtObjectPtr ptr); -void QWidget_DisconnectSlotShowMinimized(QtObjectPtr ptr); -void QWidget_ShowMinimized(QtObjectPtr ptr); -void QWidget_ConnectSlotShowNormal(QtObjectPtr ptr); -void QWidget_DisconnectSlotShowNormal(QtObjectPtr ptr); -void QWidget_ShowNormal(QtObjectPtr ptr); -//Signals -void QWidget_ConnectSignalWindowIconTextChanged(QtObjectPtr ptr); -void QWidget_DisconnectSignalWindowIconTextChanged(QtObjectPtr ptr); -void QWidget_ConnectSignalWindowTitleChanged(QtObjectPtr ptr); -void QWidget_DisconnectSignalWindowTitleChanged(QtObjectPtr ptr); -//Static Public Members -QtObjectPtr QWidget_KeyboardGrabber(); -QtObjectPtr QWidget_MouseGrabber(); -void QWidget_SetTabOrder_QWidget_QWidget(QtObjectPtr first, QtObjectPtr second); - -#ifdef __cplusplus -} -#endif diff --git a/qwidget.moc b/qwidget.moc deleted file mode 100644 index 74503e62..00000000 --- a/qwidget.moc +++ /dev/null @@ -1,367 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qwidget.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qwidget.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.4.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -struct qt_meta_stringdata_MyQWidget_t { - QByteArrayData data[23]; - char stringdata[303]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyQWidget_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyQWidget_t qt_meta_stringdata_MyQWidget = { - { -QT_MOC_LITERAL(0, 0, 9), // "MyQWidget" -QT_MOC_LITERAL(1, 10, 10), // "Slot_Close" -QT_MOC_LITERAL(2, 21, 0), // "" -QT_MOC_LITERAL(3, 22, 9), // "Slot_Hide" -QT_MOC_LITERAL(4, 32, 10), // "Slot_Lower" -QT_MOC_LITERAL(5, 43, 10), // "Slot_Raise" -QT_MOC_LITERAL(6, 54, 16), // "Slot_SetDisabled" -QT_MOC_LITERAL(7, 71, 7), // "disable" -QT_MOC_LITERAL(8, 79, 15), // "Slot_SetEnabled" -QT_MOC_LITERAL(9, 95, 7), // "enabled" -QT_MOC_LITERAL(10, 103, 14), // "Slot_SetHidden" -QT_MOC_LITERAL(11, 118, 6), // "hidden" -QT_MOC_LITERAL(12, 125, 18), // "Slot_SetStyleSheet" -QT_MOC_LITERAL(13, 144, 10), // "styleSheet" -QT_MOC_LITERAL(14, 155, 22), // "Slot_SetWindowModified" -QT_MOC_LITERAL(15, 178, 8), // "modified" -QT_MOC_LITERAL(16, 187, 19), // "Slot_SetWindowTitle" -QT_MOC_LITERAL(17, 207, 11), // "windowTitle" -QT_MOC_LITERAL(18, 219, 9), // "Slot_Show" -QT_MOC_LITERAL(19, 229, 19), // "Slot_ShowFullScreen" -QT_MOC_LITERAL(20, 249, 18), // "Slot_ShowMaximized" -QT_MOC_LITERAL(21, 268, 18), // "Slot_ShowMinimized" -QT_MOC_LITERAL(22, 287, 15) // "Slot_ShowNormal" - - }, - "MyQWidget\0Slot_Close\0\0Slot_Hide\0" - "Slot_Lower\0Slot_Raise\0Slot_SetDisabled\0" - "disable\0Slot_SetEnabled\0enabled\0" - "Slot_SetHidden\0hidden\0Slot_SetStyleSheet\0" - "styleSheet\0Slot_SetWindowModified\0" - "modified\0Slot_SetWindowTitle\0windowTitle\0" - "Slot_Show\0Slot_ShowFullScreen\0" - "Slot_ShowMaximized\0Slot_ShowMinimized\0" - "Slot_ShowNormal" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyQWidget[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 15, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 15, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 0, 89, 2, 0x06 /* Public */, - 3, 0, 90, 2, 0x06 /* Public */, - 4, 0, 91, 2, 0x06 /* Public */, - 5, 0, 92, 2, 0x06 /* Public */, - 6, 1, 93, 2, 0x06 /* Public */, - 8, 1, 96, 2, 0x06 /* Public */, - 10, 1, 99, 2, 0x06 /* Public */, - 12, 1, 102, 2, 0x06 /* Public */, - 14, 1, 105, 2, 0x06 /* Public */, - 16, 1, 108, 2, 0x06 /* Public */, - 18, 0, 111, 2, 0x06 /* Public */, - 19, 0, 112, 2, 0x06 /* Public */, - 20, 0, 113, 2, 0x06 /* Public */, - 21, 0, 114, 2, 0x06 /* Public */, - 22, 0, 115, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, QMetaType::Bool, 7, - QMetaType::Void, QMetaType::Bool, 9, - QMetaType::Void, QMetaType::Bool, 11, - QMetaType::Void, QMetaType::QString, 13, - QMetaType::Void, QMetaType::Bool, 15, - QMetaType::Void, QMetaType::QString, 17, - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - - 0 // eod -}; - -void MyQWidget::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyQWidget *_t = static_cast(_o); - switch (_id) { - case 0: _t->Slot_Close(); break; - case 1: _t->Slot_Hide(); break; - case 2: _t->Slot_Lower(); break; - case 3: _t->Slot_Raise(); break; - case 4: _t->Slot_SetDisabled((*reinterpret_cast< bool(*)>(_a[1]))); break; - case 5: _t->Slot_SetEnabled((*reinterpret_cast< bool(*)>(_a[1]))); break; - case 6: _t->Slot_SetHidden((*reinterpret_cast< bool(*)>(_a[1]))); break; - case 7: _t->Slot_SetStyleSheet((*reinterpret_cast< QString(*)>(_a[1]))); break; - case 8: _t->Slot_SetWindowModified((*reinterpret_cast< bool(*)>(_a[1]))); break; - case 9: _t->Slot_SetWindowTitle((*reinterpret_cast< QString(*)>(_a[1]))); break; - case 10: _t->Slot_Show(); break; - case 11: _t->Slot_ShowFullScreen(); break; - case 12: _t->Slot_ShowMaximized(); break; - case 13: _t->Slot_ShowMinimized(); break; - case 14: _t->Slot_ShowNormal(); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (MyQWidget::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQWidget::Slot_Close)) { - *result = 0; - } - } - { - typedef void (MyQWidget::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQWidget::Slot_Hide)) { - *result = 1; - } - } - { - typedef void (MyQWidget::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQWidget::Slot_Lower)) { - *result = 2; - } - } - { - typedef void (MyQWidget::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQWidget::Slot_Raise)) { - *result = 3; - } - } - { - typedef void (MyQWidget::*_t)(bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQWidget::Slot_SetDisabled)) { - *result = 4; - } - } - { - typedef void (MyQWidget::*_t)(bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQWidget::Slot_SetEnabled)) { - *result = 5; - } - } - { - typedef void (MyQWidget::*_t)(bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQWidget::Slot_SetHidden)) { - *result = 6; - } - } - { - typedef void (MyQWidget::*_t)(QString ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQWidget::Slot_SetStyleSheet)) { - *result = 7; - } - } - { - typedef void (MyQWidget::*_t)(bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQWidget::Slot_SetWindowModified)) { - *result = 8; - } - } - { - typedef void (MyQWidget::*_t)(QString ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQWidget::Slot_SetWindowTitle)) { - *result = 9; - } - } - { - typedef void (MyQWidget::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQWidget::Slot_Show)) { - *result = 10; - } - } - { - typedef void (MyQWidget::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQWidget::Slot_ShowFullScreen)) { - *result = 11; - } - } - { - typedef void (MyQWidget::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQWidget::Slot_ShowMaximized)) { - *result = 12; - } - } - { - typedef void (MyQWidget::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQWidget::Slot_ShowMinimized)) { - *result = 13; - } - } - { - typedef void (MyQWidget::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MyQWidget::Slot_ShowNormal)) { - *result = 14; - } - } - } -} - -const QMetaObject MyQWidget::staticMetaObject = { - { &QWidget::staticMetaObject, qt_meta_stringdata_MyQWidget.data, - qt_meta_data_MyQWidget, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyQWidget::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyQWidget::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyQWidget.stringdata)) - return static_cast(const_cast< MyQWidget*>(this)); - return QWidget::qt_metacast(_clname); -} - -int MyQWidget::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QWidget::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 15) - qt_static_metacall(this, _c, _id, _a); - _id -= 15; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 15) - *reinterpret_cast(_a[0]) = -1; - _id -= 15; - } - return _id; -} - -// SIGNAL 0 -void MyQWidget::Slot_Close() -{ - QMetaObject::activate(this, &staticMetaObject, 0, 0); -} - -// SIGNAL 1 -void MyQWidget::Slot_Hide() -{ - QMetaObject::activate(this, &staticMetaObject, 1, 0); -} - -// SIGNAL 2 -void MyQWidget::Slot_Lower() -{ - QMetaObject::activate(this, &staticMetaObject, 2, 0); -} - -// SIGNAL 3 -void MyQWidget::Slot_Raise() -{ - QMetaObject::activate(this, &staticMetaObject, 3, 0); -} - -// SIGNAL 4 -void MyQWidget::Slot_SetDisabled(bool _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 4, _a); -} - -// SIGNAL 5 -void MyQWidget::Slot_SetEnabled(bool _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 5, _a); -} - -// SIGNAL 6 -void MyQWidget::Slot_SetHidden(bool _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 6, _a); -} - -// SIGNAL 7 -void MyQWidget::Slot_SetStyleSheet(QString _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 7, _a); -} - -// SIGNAL 8 -void MyQWidget::Slot_SetWindowModified(bool _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 8, _a); -} - -// SIGNAL 9 -void MyQWidget::Slot_SetWindowTitle(QString _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 9, _a); -} - -// SIGNAL 10 -void MyQWidget::Slot_Show() -{ - QMetaObject::activate(this, &staticMetaObject, 10, 0); -} - -// SIGNAL 11 -void MyQWidget::Slot_ShowFullScreen() -{ - QMetaObject::activate(this, &staticMetaObject, 11, 0); -} - -// SIGNAL 12 -void MyQWidget::Slot_ShowMaximized() -{ - QMetaObject::activate(this, &staticMetaObject, 12, 0); -} - -// SIGNAL 13 -void MyQWidget::Slot_ShowMinimized() -{ - QMetaObject::activate(this, &staticMetaObject, 13, 0); -} - -// SIGNAL 14 -void MyQWidget::Slot_ShowNormal() -{ - QMetaObject::activate(this, &staticMetaObject, 14, 0); -} -QT_END_MOC_NAMESPACE diff --git a/qwidgetitem.cpp b/qwidgetitem.cpp deleted file mode 100644 index 77100665..00000000 --- a/qwidgetitem.cpp +++ /dev/null @@ -1,17 +0,0 @@ -#include "qwidgetitem.h" -#include -#include "cgoexport.h" - - - -//Public Functions -QtObjectPtr QWidgetItem_New_QWidget(QtObjectPtr widget) -{ - return new QWidgetItem(((QWidget*)(widget))); -} - -void QWidgetItem_Destroy(QtObjectPtr ptr) -{ - ((QWidgetItem*)(ptr))->~QWidgetItem(); -} - diff --git a/qwidgetitem.go b/qwidgetitem.go deleted file mode 100644 index d2d2834e..00000000 --- a/qwidgetitem.go +++ /dev/null @@ -1,37 +0,0 @@ -package qt - -//#include "qwidgetitem.h" -import "C" - -type qwidgetitem struct { - qlayoutitem -} - -type QWidgetItem interface { - QLayoutItem -} - -func (p *qwidgetitem) Pointer() (ptr C.QtObjectPtr) { - return p.ptr -} - -func (p *qwidgetitem) SetPointer(ptr C.QtObjectPtr) { - p.ptr = ptr -} - -func NewQWidgetItem(widget QWidget) QWidgetItem { - var widgetPtr C.QtObjectPtr - if widget != nil { - widgetPtr = widget.Pointer() - } - var qwidgetitem = new(qwidgetitem) - qwidgetitem.SetPointer(C.QWidgetItem_New_QWidget(widgetPtr)) - return qwidgetitem -} - -func (p *qwidgetitem) Destroy() { - if p.Pointer() != nil { - C.QWidgetItem_Destroy(p.Pointer()) - p.SetPointer(nil) - } -} diff --git a/qwidgetitem.h b/qwidgetitem.h deleted file mode 100644 index 25de2f26..00000000 --- a/qwidgetitem.h +++ /dev/null @@ -1,13 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -#include "cgoutil.h" - -//Public Functions -QtObjectPtr QWidgetItem_New_QWidget(QtObjectPtr widget); -void QWidgetItem_Destroy(QtObjectPtr ptr); - -#ifdef __cplusplus -} -#endif diff --git a/qwidgetitem.moc b/qwidgetitem.moc deleted file mode 100644 index e69de29b..00000000 diff --git a/script/cgo_darwin_amd64.go b/script/cgo_darwin_amd64.go new file mode 100755 index 00000000..618cee5a --- /dev/null +++ b/script/cgo_darwin_amd64.go @@ -0,0 +1,13 @@ +package script + +/* +#cgo CPPFLAGS: -pipe -O2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 -Wall -W +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_SCRIPT_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/mkspecs/macx-clang -F/usr/local/Qt5.5.1/5.5/clang_64/lib +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtCore.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtScript.framework/Headers +#cgo CPPFLAGS: -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.framework/Headers + +#cgo LDFLAGS: -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 +#cgo LDFLAGS: -F/usr/local/Qt5.5.1/5.5/clang_64/lib -framework QtCore -framework QtScript -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL +*/ +import "C" diff --git a/script/cgo_linux_386.go b/script/cgo_linux_386.go new file mode 100755 index 00000000..f4eab1d2 --- /dev/null +++ b/script/cgo_linux_386.go @@ -0,0 +1,12 @@ +package script + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_SCRIPT_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include -I/usr/local/Qt5.5.1/5.5/gcc/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc/include/QtScript + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc/lib -L/usr/lib -lQt5Core -lQt5Script -lpthread +*/ +import "C" diff --git a/script/cgo_linux_amd64.go b/script/cgo_linux_amd64.go new file mode 100755 index 00000000..c22318b8 --- /dev/null +++ b/script/cgo_linux_amd64.go @@ -0,0 +1,12 @@ +package script + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_SCRIPT_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include -I/usr/local/Qt5.5.1/5.5/gcc_64/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtScript + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc_64/lib -L/usr/lib64 -lQt5Core -lQt5Script -lpthread +*/ +import "C" diff --git a/script/cgo_windows_386.go b/script/cgo_windows_386.go new file mode 100755 index 00000000..8656be09 --- /dev/null +++ b/script/cgo_windows_386.go @@ -0,0 +1,12 @@ +package script + +/* +#cgo CPPFLAGS: -pipe -fno-keep-inline-dllexport -O2 -Wall -Wextra -fexceptions -mthreads +#cgo CPPFLAGS: -DUNICODE -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_SCRIPT_LIB +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include -IC:/Qt/Qt5.5.1/5.5/mingw492_32/mkspecs/win32-g++ +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtCore -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtScript + +#cgo LDFLAGS: -Wl,-s -Wl,-subsystem,windows -mthreads +#cgo LDFLAGS: -LC:/Qt/Qt5.5.1/5.5/mingw492_32/bin -lQt5Core -lQt5Script +*/ +import "C" diff --git a/script/qscriptable.cpp b/script/qscriptable.cpp new file mode 100755 index 00000000..c8c4967c --- /dev/null +++ b/script/qscriptable.cpp @@ -0,0 +1,24 @@ +#include "qscriptable.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQScriptable: public QScriptable { +public: +}; + +int QScriptable_ArgumentCount(QtObjectPtr ptr){ + return static_cast(ptr)->argumentCount(); +} + +QtObjectPtr QScriptable_Context(QtObjectPtr ptr){ + return static_cast(ptr)->context(); +} + +QtObjectPtr QScriptable_Engine(QtObjectPtr ptr){ + return static_cast(ptr)->engine(); +} + diff --git a/script/qscriptable.go b/script/qscriptable.go new file mode 100755 index 00000000..582b9492 --- /dev/null +++ b/script/qscriptable.go @@ -0,0 +1,61 @@ +package script + +//#include "qscriptable.h" +import "C" +import ( + "unsafe" +) + +type QScriptable struct { + ptr unsafe.Pointer +} + +type QScriptableITF interface { + QScriptablePTR() *QScriptable +} + +func (p *QScriptable) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QScriptable) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQScriptable(ptr QScriptableITF) unsafe.Pointer { + if ptr != nil { + return ptr.QScriptablePTR().Pointer() + } + return nil +} + +func QScriptableFromPointer(ptr unsafe.Pointer) *QScriptable { + var n = new(QScriptable) + n.SetPointer(ptr) + return n +} + +func (ptr *QScriptable) QScriptablePTR() *QScriptable { + return ptr +} + +func (ptr *QScriptable) ArgumentCount() int { + if ptr.Pointer() != nil { + return int(C.QScriptable_ArgumentCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QScriptable) Context() *QScriptContext { + if ptr.Pointer() != nil { + return QScriptContextFromPointer(unsafe.Pointer(C.QScriptable_Context(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QScriptable) Engine() *QScriptEngine { + if ptr.Pointer() != nil { + return QScriptEngineFromPointer(unsafe.Pointer(C.QScriptable_Engine(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} diff --git a/script/qscriptable.h b/script/qscriptable.h new file mode 100755 index 00000000..522eaeda --- /dev/null +++ b/script/qscriptable.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QScriptable_ArgumentCount(QtObjectPtr ptr); +QtObjectPtr QScriptable_Context(QtObjectPtr ptr); +QtObjectPtr QScriptable_Engine(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/script/qscriptclass.cpp b/script/qscriptclass.cpp new file mode 100755 index 00000000..0884373b --- /dev/null +++ b/script/qscriptclass.cpp @@ -0,0 +1,42 @@ +#include "qscriptclass.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQScriptClass: public QScriptClass { +public: +}; + +QtObjectPtr QScriptClass_NewQScriptClass(QtObjectPtr engine){ + return new QScriptClass(static_cast(engine)); +} + +QtObjectPtr QScriptClass_Engine(QtObjectPtr ptr){ + return static_cast(ptr)->engine(); +} + +char* QScriptClass_Extension(QtObjectPtr ptr, int extension, char* argument){ + return static_cast(ptr)->extension(static_cast(extension), QVariant(argument)).toString().toUtf8().data(); +} + +char* QScriptClass_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +QtObjectPtr QScriptClass_NewIterator(QtObjectPtr ptr, QtObjectPtr object){ + return static_cast(ptr)->newIterator(*static_cast(object)); +} + +int QScriptClass_SupportsExtension(QtObjectPtr ptr, int extension){ + return static_cast(ptr)->supportsExtension(static_cast(extension)); +} + +void QScriptClass_DestroyQScriptClass(QtObjectPtr ptr){ + static_cast(ptr)->~QScriptClass(); +} + diff --git a/script/qscriptclass.go b/script/qscriptclass.go new file mode 100755 index 00000000..a14c6220 --- /dev/null +++ b/script/qscriptclass.go @@ -0,0 +1,101 @@ +package script + +//#include "qscriptclass.h" +import "C" +import ( + "unsafe" +) + +type QScriptClass struct { + ptr unsafe.Pointer +} + +type QScriptClassITF interface { + QScriptClassPTR() *QScriptClass +} + +func (p *QScriptClass) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QScriptClass) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQScriptClass(ptr QScriptClassITF) unsafe.Pointer { + if ptr != nil { + return ptr.QScriptClassPTR().Pointer() + } + return nil +} + +func QScriptClassFromPointer(ptr unsafe.Pointer) *QScriptClass { + var n = new(QScriptClass) + n.SetPointer(ptr) + return n +} + +func (ptr *QScriptClass) QScriptClassPTR() *QScriptClass { + return ptr +} + +//QScriptClass::Extension +type QScriptClass__Extension int + +var ( + QScriptClass__Callable = QScriptClass__Extension(0) + QScriptClass__HasInstance = QScriptClass__Extension(1) +) + +//QScriptClass::QueryFlag +type QScriptClass__QueryFlag int + +var ( + QScriptClass__HandlesReadAccess = QScriptClass__QueryFlag(0x01) + QScriptClass__HandlesWriteAccess = QScriptClass__QueryFlag(0x02) +) + +func NewQScriptClass(engine QScriptEngineITF) *QScriptClass { + return QScriptClassFromPointer(unsafe.Pointer(C.QScriptClass_NewQScriptClass(C.QtObjectPtr(PointerFromQScriptEngine(engine))))) +} + +func (ptr *QScriptClass) Engine() *QScriptEngine { + if ptr.Pointer() != nil { + return QScriptEngineFromPointer(unsafe.Pointer(C.QScriptClass_Engine(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QScriptClass) Extension(extension QScriptClass__Extension, argument string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QScriptClass_Extension(C.QtObjectPtr(ptr.Pointer()), C.int(extension), C.CString(argument))) + } + return "" +} + +func (ptr *QScriptClass) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QScriptClass_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QScriptClass) NewIterator(object QScriptValueITF) *QScriptClassPropertyIterator { + if ptr.Pointer() != nil { + return QScriptClassPropertyIteratorFromPointer(unsafe.Pointer(C.QScriptClass_NewIterator(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQScriptValue(object))))) + } + return nil +} + +func (ptr *QScriptClass) SupportsExtension(extension QScriptClass__Extension) bool { + if ptr.Pointer() != nil { + return C.QScriptClass_SupportsExtension(C.QtObjectPtr(ptr.Pointer()), C.int(extension)) != 0 + } + return false +} + +func (ptr *QScriptClass) DestroyQScriptClass() { + if ptr.Pointer() != nil { + C.QScriptClass_DestroyQScriptClass(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/script/qscriptclass.h b/script/qscriptclass.h new file mode 100755 index 00000000..31fb3acc --- /dev/null +++ b/script/qscriptclass.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QScriptClass_NewQScriptClass(QtObjectPtr engine); +QtObjectPtr QScriptClass_Engine(QtObjectPtr ptr); +char* QScriptClass_Extension(QtObjectPtr ptr, int extension, char* argument); +char* QScriptClass_Name(QtObjectPtr ptr); +QtObjectPtr QScriptClass_NewIterator(QtObjectPtr ptr, QtObjectPtr object); +int QScriptClass_SupportsExtension(QtObjectPtr ptr, int extension); +void QScriptClass_DestroyQScriptClass(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/script/qscriptclasspropertyiterator.cpp b/script/qscriptclasspropertyiterator.cpp new file mode 100755 index 00000000..ce3fd551 --- /dev/null +++ b/script/qscriptclasspropertyiterator.cpp @@ -0,0 +1,9 @@ +#include "qscriptclasspropertyiterator.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/script/qscriptclasspropertyiterator.go b/script/qscriptclasspropertyiterator.go new file mode 100755 index 00000000..468e06ad --- /dev/null +++ b/script/qscriptclasspropertyiterator.go @@ -0,0 +1,40 @@ +package script + +//#include "qscriptclasspropertyiterator.h" +import "C" +import ( + "unsafe" +) + +type QScriptClassPropertyIterator struct { + ptr unsafe.Pointer +} + +type QScriptClassPropertyIteratorITF interface { + QScriptClassPropertyIteratorPTR() *QScriptClassPropertyIterator +} + +func (p *QScriptClassPropertyIterator) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QScriptClassPropertyIterator) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQScriptClassPropertyIterator(ptr QScriptClassPropertyIteratorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QScriptClassPropertyIteratorPTR().Pointer() + } + return nil +} + +func QScriptClassPropertyIteratorFromPointer(ptr unsafe.Pointer) *QScriptClassPropertyIterator { + var n = new(QScriptClassPropertyIterator) + n.SetPointer(ptr) + return n +} + +func (ptr *QScriptClassPropertyIterator) QScriptClassPropertyIteratorPTR() *QScriptClassPropertyIterator { + return ptr +} diff --git a/script/qscriptclasspropertyiterator.h b/script/qscriptclasspropertyiterator.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/script/qscriptclasspropertyiterator.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/script/qscriptcontext.cpp b/script/qscriptcontext.cpp new file mode 100755 index 00000000..34242b61 --- /dev/null +++ b/script/qscriptcontext.cpp @@ -0,0 +1,49 @@ +#include "qscriptcontext.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQScriptContext: public QScriptContext { +public: +}; + +int QScriptContext_ArgumentCount(QtObjectPtr ptr){ + return static_cast(ptr)->argumentCount(); +} + +char* QScriptContext_Backtrace(QtObjectPtr ptr){ + return static_cast(ptr)->backtrace().join("|").toUtf8().data(); +} + +QtObjectPtr QScriptContext_Engine(QtObjectPtr ptr){ + return static_cast(ptr)->engine(); +} + +int QScriptContext_IsCalledAsConstructor(QtObjectPtr ptr){ + return static_cast(ptr)->isCalledAsConstructor(); +} + +QtObjectPtr QScriptContext_ParentContext(QtObjectPtr ptr){ + return static_cast(ptr)->parentContext(); +} + +void QScriptContext_SetActivationObject(QtObjectPtr ptr, QtObjectPtr activation){ + static_cast(ptr)->setActivationObject(*static_cast(activation)); +} + +void QScriptContext_SetThisObject(QtObjectPtr ptr, QtObjectPtr thisObject){ + static_cast(ptr)->setThisObject(*static_cast(thisObject)); +} + +char* QScriptContext_ToString(QtObjectPtr ptr){ + return static_cast(ptr)->toString().toUtf8().data(); +} + +void QScriptContext_DestroyQScriptContext(QtObjectPtr ptr){ + static_cast(ptr)->~QScriptContext(); +} + diff --git a/script/qscriptcontext.go b/script/qscriptcontext.go new file mode 100755 index 00000000..f4eabdbd --- /dev/null +++ b/script/qscriptcontext.go @@ -0,0 +1,121 @@ +package script + +//#include "qscriptcontext.h" +import "C" +import ( + "strings" + "unsafe" +) + +type QScriptContext struct { + ptr unsafe.Pointer +} + +type QScriptContextITF interface { + QScriptContextPTR() *QScriptContext +} + +func (p *QScriptContext) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QScriptContext) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQScriptContext(ptr QScriptContextITF) unsafe.Pointer { + if ptr != nil { + return ptr.QScriptContextPTR().Pointer() + } + return nil +} + +func QScriptContextFromPointer(ptr unsafe.Pointer) *QScriptContext { + var n = new(QScriptContext) + n.SetPointer(ptr) + return n +} + +func (ptr *QScriptContext) QScriptContextPTR() *QScriptContext { + return ptr +} + +//QScriptContext::Error +type QScriptContext__Error int + +var ( + QScriptContext__UnknownError = QScriptContext__Error(0) + QScriptContext__ReferenceError = QScriptContext__Error(1) + QScriptContext__SyntaxError = QScriptContext__Error(2) + QScriptContext__TypeError = QScriptContext__Error(3) + QScriptContext__RangeError = QScriptContext__Error(4) + QScriptContext__URIError = QScriptContext__Error(5) +) + +//QScriptContext::ExecutionState +type QScriptContext__ExecutionState int + +var ( + QScriptContext__NormalState = QScriptContext__ExecutionState(0) + QScriptContext__ExceptionState = QScriptContext__ExecutionState(1) +) + +func (ptr *QScriptContext) ArgumentCount() int { + if ptr.Pointer() != nil { + return int(C.QScriptContext_ArgumentCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QScriptContext) Backtrace() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QScriptContext_Backtrace(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QScriptContext) Engine() *QScriptEngine { + if ptr.Pointer() != nil { + return QScriptEngineFromPointer(unsafe.Pointer(C.QScriptContext_Engine(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QScriptContext) IsCalledAsConstructor() bool { + if ptr.Pointer() != nil { + return C.QScriptContext_IsCalledAsConstructor(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QScriptContext) ParentContext() *QScriptContext { + if ptr.Pointer() != nil { + return QScriptContextFromPointer(unsafe.Pointer(C.QScriptContext_ParentContext(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QScriptContext) SetActivationObject(activation QScriptValueITF) { + if ptr.Pointer() != nil { + C.QScriptContext_SetActivationObject(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQScriptValue(activation))) + } +} + +func (ptr *QScriptContext) SetThisObject(thisObject QScriptValueITF) { + if ptr.Pointer() != nil { + C.QScriptContext_SetThisObject(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQScriptValue(thisObject))) + } +} + +func (ptr *QScriptContext) ToString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QScriptContext_ToString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QScriptContext) DestroyQScriptContext() { + if ptr.Pointer() != nil { + C.QScriptContext_DestroyQScriptContext(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/script/qscriptcontext.h b/script/qscriptcontext.h new file mode 100755 index 00000000..324f91f1 --- /dev/null +++ b/script/qscriptcontext.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QScriptContext_ArgumentCount(QtObjectPtr ptr); +char* QScriptContext_Backtrace(QtObjectPtr ptr); +QtObjectPtr QScriptContext_Engine(QtObjectPtr ptr); +int QScriptContext_IsCalledAsConstructor(QtObjectPtr ptr); +QtObjectPtr QScriptContext_ParentContext(QtObjectPtr ptr); +void QScriptContext_SetActivationObject(QtObjectPtr ptr, QtObjectPtr activation); +void QScriptContext_SetThisObject(QtObjectPtr ptr, QtObjectPtr thisObject); +char* QScriptContext_ToString(QtObjectPtr ptr); +void QScriptContext_DestroyQScriptContext(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/script/qscriptcontextinfo.cpp b/script/qscriptcontextinfo.cpp new file mode 100755 index 00000000..826bfeb4 --- /dev/null +++ b/script/qscriptcontextinfo.cpp @@ -0,0 +1,65 @@ +#include "qscriptcontextinfo.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQScriptContextInfo: public QScriptContextInfo { +public: +}; + +QtObjectPtr QScriptContextInfo_NewQScriptContextInfo3(){ + return new QScriptContextInfo(); +} + +QtObjectPtr QScriptContextInfo_NewQScriptContextInfo(QtObjectPtr context){ + return new QScriptContextInfo(static_cast(context)); +} + +QtObjectPtr QScriptContextInfo_NewQScriptContextInfo2(QtObjectPtr other){ + return new QScriptContextInfo(*static_cast(other)); +} + +char* QScriptContextInfo_FileName(QtObjectPtr ptr){ + return static_cast(ptr)->fileName().toUtf8().data(); +} + +int QScriptContextInfo_FunctionEndLineNumber(QtObjectPtr ptr){ + return static_cast(ptr)->functionEndLineNumber(); +} + +int QScriptContextInfo_FunctionMetaIndex(QtObjectPtr ptr){ + return static_cast(ptr)->functionMetaIndex(); +} + +char* QScriptContextInfo_FunctionName(QtObjectPtr ptr){ + return static_cast(ptr)->functionName().toUtf8().data(); +} + +char* QScriptContextInfo_FunctionParameterNames(QtObjectPtr ptr){ + return static_cast(ptr)->functionParameterNames().join("|").toUtf8().data(); +} + +int QScriptContextInfo_FunctionStartLineNumber(QtObjectPtr ptr){ + return static_cast(ptr)->functionStartLineNumber(); +} + +int QScriptContextInfo_FunctionType(QtObjectPtr ptr){ + return static_cast(ptr)->functionType(); +} + +int QScriptContextInfo_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QScriptContextInfo_LineNumber(QtObjectPtr ptr){ + return static_cast(ptr)->lineNumber(); +} + +void QScriptContextInfo_DestroyQScriptContextInfo(QtObjectPtr ptr){ + static_cast(ptr)->~QScriptContextInfo(); +} + diff --git a/script/qscriptcontextinfo.go b/script/qscriptcontextinfo.go new file mode 100755 index 00000000..90a2e954 --- /dev/null +++ b/script/qscriptcontextinfo.go @@ -0,0 +1,132 @@ +package script + +//#include "qscriptcontextinfo.h" +import "C" +import ( + "strings" + "unsafe" +) + +type QScriptContextInfo struct { + ptr unsafe.Pointer +} + +type QScriptContextInfoITF interface { + QScriptContextInfoPTR() *QScriptContextInfo +} + +func (p *QScriptContextInfo) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QScriptContextInfo) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQScriptContextInfo(ptr QScriptContextInfoITF) unsafe.Pointer { + if ptr != nil { + return ptr.QScriptContextInfoPTR().Pointer() + } + return nil +} + +func QScriptContextInfoFromPointer(ptr unsafe.Pointer) *QScriptContextInfo { + var n = new(QScriptContextInfo) + n.SetPointer(ptr) + return n +} + +func (ptr *QScriptContextInfo) QScriptContextInfoPTR() *QScriptContextInfo { + return ptr +} + +//QScriptContextInfo::FunctionType +type QScriptContextInfo__FunctionType int + +var ( + QScriptContextInfo__ScriptFunction = QScriptContextInfo__FunctionType(0) + QScriptContextInfo__QtFunction = QScriptContextInfo__FunctionType(1) + QScriptContextInfo__QtPropertyFunction = QScriptContextInfo__FunctionType(2) + QScriptContextInfo__NativeFunction = QScriptContextInfo__FunctionType(3) +) + +func NewQScriptContextInfo3() *QScriptContextInfo { + return QScriptContextInfoFromPointer(unsafe.Pointer(C.QScriptContextInfo_NewQScriptContextInfo3())) +} + +func NewQScriptContextInfo(context QScriptContextITF) *QScriptContextInfo { + return QScriptContextInfoFromPointer(unsafe.Pointer(C.QScriptContextInfo_NewQScriptContextInfo(C.QtObjectPtr(PointerFromQScriptContext(context))))) +} + +func NewQScriptContextInfo2(other QScriptContextInfoITF) *QScriptContextInfo { + return QScriptContextInfoFromPointer(unsafe.Pointer(C.QScriptContextInfo_NewQScriptContextInfo2(C.QtObjectPtr(PointerFromQScriptContextInfo(other))))) +} + +func (ptr *QScriptContextInfo) FileName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QScriptContextInfo_FileName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QScriptContextInfo) FunctionEndLineNumber() int { + if ptr.Pointer() != nil { + return int(C.QScriptContextInfo_FunctionEndLineNumber(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QScriptContextInfo) FunctionMetaIndex() int { + if ptr.Pointer() != nil { + return int(C.QScriptContextInfo_FunctionMetaIndex(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QScriptContextInfo) FunctionName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QScriptContextInfo_FunctionName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QScriptContextInfo) FunctionParameterNames() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QScriptContextInfo_FunctionParameterNames(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QScriptContextInfo) FunctionStartLineNumber() int { + if ptr.Pointer() != nil { + return int(C.QScriptContextInfo_FunctionStartLineNumber(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QScriptContextInfo) FunctionType() QScriptContextInfo__FunctionType { + if ptr.Pointer() != nil { + return QScriptContextInfo__FunctionType(C.QScriptContextInfo_FunctionType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QScriptContextInfo) IsNull() bool { + if ptr.Pointer() != nil { + return C.QScriptContextInfo_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QScriptContextInfo) LineNumber() int { + if ptr.Pointer() != nil { + return int(C.QScriptContextInfo_LineNumber(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QScriptContextInfo) DestroyQScriptContextInfo() { + if ptr.Pointer() != nil { + C.QScriptContextInfo_DestroyQScriptContextInfo(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/script/qscriptcontextinfo.h b/script/qscriptcontextinfo.h new file mode 100755 index 00000000..e93c8162 --- /dev/null +++ b/script/qscriptcontextinfo.h @@ -0,0 +1,22 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QScriptContextInfo_NewQScriptContextInfo3(); +QtObjectPtr QScriptContextInfo_NewQScriptContextInfo(QtObjectPtr context); +QtObjectPtr QScriptContextInfo_NewQScriptContextInfo2(QtObjectPtr other); +char* QScriptContextInfo_FileName(QtObjectPtr ptr); +int QScriptContextInfo_FunctionEndLineNumber(QtObjectPtr ptr); +int QScriptContextInfo_FunctionMetaIndex(QtObjectPtr ptr); +char* QScriptContextInfo_FunctionName(QtObjectPtr ptr); +char* QScriptContextInfo_FunctionParameterNames(QtObjectPtr ptr); +int QScriptContextInfo_FunctionStartLineNumber(QtObjectPtr ptr); +int QScriptContextInfo_FunctionType(QtObjectPtr ptr); +int QScriptContextInfo_IsNull(QtObjectPtr ptr); +int QScriptContextInfo_LineNumber(QtObjectPtr ptr); +void QScriptContextInfo_DestroyQScriptContextInfo(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/script/qscriptengine.cpp b/script/qscriptengine.cpp new file mode 100755 index 00000000..098bf78c --- /dev/null +++ b/script/qscriptengine.cpp @@ -0,0 +1,107 @@ +#include "qscriptengine.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQScriptEngine: public QScriptEngine { +public: +}; + +QtObjectPtr QScriptEngine_NewQScriptEngine(){ + return new QScriptEngine(); +} + +QtObjectPtr QScriptEngine_NewQScriptEngine2(QtObjectPtr parent){ + return new QScriptEngine(static_cast(parent)); +} + +void QScriptEngine_AbortEvaluation(QtObjectPtr ptr, QtObjectPtr result){ + static_cast(ptr)->abortEvaluation(*static_cast(result)); +} + +QtObjectPtr QScriptEngine_Agent(QtObjectPtr ptr){ + return static_cast(ptr)->agent(); +} + +char* QScriptEngine_AvailableExtensions(QtObjectPtr ptr){ + return static_cast(ptr)->availableExtensions().join("|").toUtf8().data(); +} + +void QScriptEngine_ClearExceptions(QtObjectPtr ptr){ + static_cast(ptr)->clearExceptions(); +} + +void QScriptEngine_CollectGarbage(QtObjectPtr ptr){ + static_cast(ptr)->collectGarbage(); +} + +QtObjectPtr QScriptEngine_CurrentContext(QtObjectPtr ptr){ + return static_cast(ptr)->currentContext(); +} + +int QScriptEngine_HasUncaughtException(QtObjectPtr ptr){ + return static_cast(ptr)->hasUncaughtException(); +} + +char* QScriptEngine_ImportedExtensions(QtObjectPtr ptr){ + return static_cast(ptr)->importedExtensions().join("|").toUtf8().data(); +} + +void QScriptEngine_InstallTranslatorFunctions(QtObjectPtr ptr, QtObjectPtr object){ + static_cast(ptr)->installTranslatorFunctions(*static_cast(object)); +} + +int QScriptEngine_IsEvaluating(QtObjectPtr ptr){ + return static_cast(ptr)->isEvaluating(); +} + +void QScriptEngine_PopContext(QtObjectPtr ptr){ + static_cast(ptr)->popContext(); +} + +int QScriptEngine_ProcessEventsInterval(QtObjectPtr ptr){ + return static_cast(ptr)->processEventsInterval(); +} + +QtObjectPtr QScriptEngine_PushContext(QtObjectPtr ptr){ + return static_cast(ptr)->pushContext(); +} + +void QScriptEngine_ReportAdditionalMemoryCost(QtObjectPtr ptr, int size){ + static_cast(ptr)->reportAdditionalMemoryCost(size); +} + +void QScriptEngine_SetAgent(QtObjectPtr ptr, QtObjectPtr agent){ + static_cast(ptr)->setAgent(static_cast(agent)); +} + +void QScriptEngine_SetDefaultPrototype(QtObjectPtr ptr, int metaTypeId, QtObjectPtr prototype){ + static_cast(ptr)->setDefaultPrototype(metaTypeId, *static_cast(prototype)); +} + +void QScriptEngine_SetGlobalObject(QtObjectPtr ptr, QtObjectPtr object){ + static_cast(ptr)->setGlobalObject(*static_cast(object)); +} + +void QScriptEngine_SetProcessEventsInterval(QtObjectPtr ptr, int interval){ + static_cast(ptr)->setProcessEventsInterval(interval); +} + +char* QScriptEngine_UncaughtExceptionBacktrace(QtObjectPtr ptr){ + return static_cast(ptr)->uncaughtExceptionBacktrace().join("|").toUtf8().data(); +} + +int QScriptEngine_UncaughtExceptionLineNumber(QtObjectPtr ptr){ + return static_cast(ptr)->uncaughtExceptionLineNumber(); +} + +void QScriptEngine_DestroyQScriptEngine(QtObjectPtr ptr){ + static_cast(ptr)->~QScriptEngine(); +} + diff --git a/script/qscriptengine.go b/script/qscriptengine.go new file mode 100755 index 00000000..1ee717a4 --- /dev/null +++ b/script/qscriptengine.go @@ -0,0 +1,208 @@ +package script + +//#include "qscriptengine.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QScriptEngine struct { + core.QObject +} + +type QScriptEngineITF interface { + core.QObjectITF + QScriptEnginePTR() *QScriptEngine +} + +func PointerFromQScriptEngine(ptr QScriptEngineITF) unsafe.Pointer { + if ptr != nil { + return ptr.QScriptEnginePTR().Pointer() + } + return nil +} + +func QScriptEngineFromPointer(ptr unsafe.Pointer) *QScriptEngine { + var n = new(QScriptEngine) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QScriptEngine_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QScriptEngine) QScriptEnginePTR() *QScriptEngine { + return ptr +} + +//QScriptEngine::QObjectWrapOption +type QScriptEngine__QObjectWrapOption int + +var ( + QScriptEngine__ExcludeChildObjects = QScriptEngine__QObjectWrapOption(0x0001) + QScriptEngine__ExcludeSuperClassMethods = QScriptEngine__QObjectWrapOption(0x0002) + QScriptEngine__ExcludeSuperClassProperties = QScriptEngine__QObjectWrapOption(0x0004) + QScriptEngine__ExcludeSuperClassContents = QScriptEngine__QObjectWrapOption(0x0006) + QScriptEngine__SkipMethodsInEnumeration = QScriptEngine__QObjectWrapOption(0x0008) + QScriptEngine__ExcludeDeleteLater = QScriptEngine__QObjectWrapOption(0x0010) + QScriptEngine__ExcludeSlots = QScriptEngine__QObjectWrapOption(0x0020) + QScriptEngine__AutoCreateDynamicProperties = QScriptEngine__QObjectWrapOption(0x0100) + QScriptEngine__PreferExistingWrapperObject = QScriptEngine__QObjectWrapOption(0x0200) +) + +//QScriptEngine::ValueOwnership +type QScriptEngine__ValueOwnership int + +var ( + QScriptEngine__QtOwnership = QScriptEngine__ValueOwnership(0) + QScriptEngine__ScriptOwnership = QScriptEngine__ValueOwnership(1) + QScriptEngine__AutoOwnership = QScriptEngine__ValueOwnership(2) +) + +func NewQScriptEngine() *QScriptEngine { + return QScriptEngineFromPointer(unsafe.Pointer(C.QScriptEngine_NewQScriptEngine())) +} + +func NewQScriptEngine2(parent core.QObjectITF) *QScriptEngine { + return QScriptEngineFromPointer(unsafe.Pointer(C.QScriptEngine_NewQScriptEngine2(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QScriptEngine) AbortEvaluation(result QScriptValueITF) { + if ptr.Pointer() != nil { + C.QScriptEngine_AbortEvaluation(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQScriptValue(result))) + } +} + +func (ptr *QScriptEngine) Agent() *QScriptEngineAgent { + if ptr.Pointer() != nil { + return QScriptEngineAgentFromPointer(unsafe.Pointer(C.QScriptEngine_Agent(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QScriptEngine) AvailableExtensions() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QScriptEngine_AvailableExtensions(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QScriptEngine) ClearExceptions() { + if ptr.Pointer() != nil { + C.QScriptEngine_ClearExceptions(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QScriptEngine) CollectGarbage() { + if ptr.Pointer() != nil { + C.QScriptEngine_CollectGarbage(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QScriptEngine) CurrentContext() *QScriptContext { + if ptr.Pointer() != nil { + return QScriptContextFromPointer(unsafe.Pointer(C.QScriptEngine_CurrentContext(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QScriptEngine) HasUncaughtException() bool { + if ptr.Pointer() != nil { + return C.QScriptEngine_HasUncaughtException(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QScriptEngine) ImportedExtensions() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QScriptEngine_ImportedExtensions(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QScriptEngine) InstallTranslatorFunctions(object QScriptValueITF) { + if ptr.Pointer() != nil { + C.QScriptEngine_InstallTranslatorFunctions(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQScriptValue(object))) + } +} + +func (ptr *QScriptEngine) IsEvaluating() bool { + if ptr.Pointer() != nil { + return C.QScriptEngine_IsEvaluating(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QScriptEngine) PopContext() { + if ptr.Pointer() != nil { + C.QScriptEngine_PopContext(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QScriptEngine) ProcessEventsInterval() int { + if ptr.Pointer() != nil { + return int(C.QScriptEngine_ProcessEventsInterval(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QScriptEngine) PushContext() *QScriptContext { + if ptr.Pointer() != nil { + return QScriptContextFromPointer(unsafe.Pointer(C.QScriptEngine_PushContext(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QScriptEngine) ReportAdditionalMemoryCost(size int) { + if ptr.Pointer() != nil { + C.QScriptEngine_ReportAdditionalMemoryCost(C.QtObjectPtr(ptr.Pointer()), C.int(size)) + } +} + +func (ptr *QScriptEngine) SetAgent(agent QScriptEngineAgentITF) { + if ptr.Pointer() != nil { + C.QScriptEngine_SetAgent(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQScriptEngineAgent(agent))) + } +} + +func (ptr *QScriptEngine) SetDefaultPrototype(metaTypeId int, prototype QScriptValueITF) { + if ptr.Pointer() != nil { + C.QScriptEngine_SetDefaultPrototype(C.QtObjectPtr(ptr.Pointer()), C.int(metaTypeId), C.QtObjectPtr(PointerFromQScriptValue(prototype))) + } +} + +func (ptr *QScriptEngine) SetGlobalObject(object QScriptValueITF) { + if ptr.Pointer() != nil { + C.QScriptEngine_SetGlobalObject(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQScriptValue(object))) + } +} + +func (ptr *QScriptEngine) SetProcessEventsInterval(interval int) { + if ptr.Pointer() != nil { + C.QScriptEngine_SetProcessEventsInterval(C.QtObjectPtr(ptr.Pointer()), C.int(interval)) + } +} + +func (ptr *QScriptEngine) UncaughtExceptionBacktrace() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QScriptEngine_UncaughtExceptionBacktrace(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QScriptEngine) UncaughtExceptionLineNumber() int { + if ptr.Pointer() != nil { + return int(C.QScriptEngine_UncaughtExceptionLineNumber(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QScriptEngine) DestroyQScriptEngine() { + if ptr.Pointer() != nil { + C.QScriptEngine_DestroyQScriptEngine(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/script/qscriptengine.h b/script/qscriptengine.h new file mode 100755 index 00000000..3f3c6984 --- /dev/null +++ b/script/qscriptengine.h @@ -0,0 +1,32 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QScriptEngine_NewQScriptEngine(); +QtObjectPtr QScriptEngine_NewQScriptEngine2(QtObjectPtr parent); +void QScriptEngine_AbortEvaluation(QtObjectPtr ptr, QtObjectPtr result); +QtObjectPtr QScriptEngine_Agent(QtObjectPtr ptr); +char* QScriptEngine_AvailableExtensions(QtObjectPtr ptr); +void QScriptEngine_ClearExceptions(QtObjectPtr ptr); +void QScriptEngine_CollectGarbage(QtObjectPtr ptr); +QtObjectPtr QScriptEngine_CurrentContext(QtObjectPtr ptr); +int QScriptEngine_HasUncaughtException(QtObjectPtr ptr); +char* QScriptEngine_ImportedExtensions(QtObjectPtr ptr); +void QScriptEngine_InstallTranslatorFunctions(QtObjectPtr ptr, QtObjectPtr object); +int QScriptEngine_IsEvaluating(QtObjectPtr ptr); +void QScriptEngine_PopContext(QtObjectPtr ptr); +int QScriptEngine_ProcessEventsInterval(QtObjectPtr ptr); +QtObjectPtr QScriptEngine_PushContext(QtObjectPtr ptr); +void QScriptEngine_ReportAdditionalMemoryCost(QtObjectPtr ptr, int size); +void QScriptEngine_SetAgent(QtObjectPtr ptr, QtObjectPtr agent); +void QScriptEngine_SetDefaultPrototype(QtObjectPtr ptr, int metaTypeId, QtObjectPtr prototype); +void QScriptEngine_SetGlobalObject(QtObjectPtr ptr, QtObjectPtr object); +void QScriptEngine_SetProcessEventsInterval(QtObjectPtr ptr, int interval); +char* QScriptEngine_UncaughtExceptionBacktrace(QtObjectPtr ptr); +int QScriptEngine_UncaughtExceptionLineNumber(QtObjectPtr ptr); +void QScriptEngine_DestroyQScriptEngine(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/script/qscriptengineagent.cpp b/script/qscriptengineagent.cpp new file mode 100755 index 00000000..27de24d4 --- /dev/null +++ b/script/qscriptengineagent.cpp @@ -0,0 +1,41 @@ +#include "qscriptengineagent.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQScriptEngineAgent: public QScriptEngineAgent { +public: +}; + +QtObjectPtr QScriptEngineAgent_NewQScriptEngineAgent(QtObjectPtr engine){ + return new QScriptEngineAgent(static_cast(engine)); +} + +void QScriptEngineAgent_ContextPop(QtObjectPtr ptr){ + static_cast(ptr)->contextPop(); +} + +void QScriptEngineAgent_ContextPush(QtObjectPtr ptr){ + static_cast(ptr)->contextPush(); +} + +QtObjectPtr QScriptEngineAgent_Engine(QtObjectPtr ptr){ + return static_cast(ptr)->engine(); +} + +char* QScriptEngineAgent_Extension(QtObjectPtr ptr, int extension, char* argument){ + return static_cast(ptr)->extension(static_cast(extension), QVariant(argument)).toString().toUtf8().data(); +} + +int QScriptEngineAgent_SupportsExtension(QtObjectPtr ptr, int extension){ + return static_cast(ptr)->supportsExtension(static_cast(extension)); +} + +void QScriptEngineAgent_DestroyQScriptEngineAgent(QtObjectPtr ptr){ + static_cast(ptr)->~QScriptEngineAgent(); +} + diff --git a/script/qscriptengineagent.go b/script/qscriptengineagent.go new file mode 100755 index 00000000..fb71b50c --- /dev/null +++ b/script/qscriptengineagent.go @@ -0,0 +1,90 @@ +package script + +//#include "qscriptengineagent.h" +import "C" +import ( + "unsafe" +) + +type QScriptEngineAgent struct { + ptr unsafe.Pointer +} + +type QScriptEngineAgentITF interface { + QScriptEngineAgentPTR() *QScriptEngineAgent +} + +func (p *QScriptEngineAgent) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QScriptEngineAgent) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQScriptEngineAgent(ptr QScriptEngineAgentITF) unsafe.Pointer { + if ptr != nil { + return ptr.QScriptEngineAgentPTR().Pointer() + } + return nil +} + +func QScriptEngineAgentFromPointer(ptr unsafe.Pointer) *QScriptEngineAgent { + var n = new(QScriptEngineAgent) + n.SetPointer(ptr) + return n +} + +func (ptr *QScriptEngineAgent) QScriptEngineAgentPTR() *QScriptEngineAgent { + return ptr +} + +//QScriptEngineAgent::Extension +type QScriptEngineAgent__Extension int + +var ( + QScriptEngineAgent__DebuggerInvocationRequest = QScriptEngineAgent__Extension(0) +) + +func NewQScriptEngineAgent(engine QScriptEngineITF) *QScriptEngineAgent { + return QScriptEngineAgentFromPointer(unsafe.Pointer(C.QScriptEngineAgent_NewQScriptEngineAgent(C.QtObjectPtr(PointerFromQScriptEngine(engine))))) +} + +func (ptr *QScriptEngineAgent) ContextPop() { + if ptr.Pointer() != nil { + C.QScriptEngineAgent_ContextPop(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QScriptEngineAgent) ContextPush() { + if ptr.Pointer() != nil { + C.QScriptEngineAgent_ContextPush(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QScriptEngineAgent) Engine() *QScriptEngine { + if ptr.Pointer() != nil { + return QScriptEngineFromPointer(unsafe.Pointer(C.QScriptEngineAgent_Engine(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QScriptEngineAgent) Extension(extension QScriptEngineAgent__Extension, argument string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QScriptEngineAgent_Extension(C.QtObjectPtr(ptr.Pointer()), C.int(extension), C.CString(argument))) + } + return "" +} + +func (ptr *QScriptEngineAgent) SupportsExtension(extension QScriptEngineAgent__Extension) bool { + if ptr.Pointer() != nil { + return C.QScriptEngineAgent_SupportsExtension(C.QtObjectPtr(ptr.Pointer()), C.int(extension)) != 0 + } + return false +} + +func (ptr *QScriptEngineAgent) DestroyQScriptEngineAgent() { + if ptr.Pointer() != nil { + C.QScriptEngineAgent_DestroyQScriptEngineAgent(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/script/qscriptengineagent.h b/script/qscriptengineagent.h new file mode 100755 index 00000000..e678da33 --- /dev/null +++ b/script/qscriptengineagent.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QScriptEngineAgent_NewQScriptEngineAgent(QtObjectPtr engine); +void QScriptEngineAgent_ContextPop(QtObjectPtr ptr); +void QScriptEngineAgent_ContextPush(QtObjectPtr ptr); +QtObjectPtr QScriptEngineAgent_Engine(QtObjectPtr ptr); +char* QScriptEngineAgent_Extension(QtObjectPtr ptr, int extension, char* argument); +int QScriptEngineAgent_SupportsExtension(QtObjectPtr ptr, int extension); +void QScriptEngineAgent_DestroyQScriptEngineAgent(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/script/qscriptextensionplugin.cpp b/script/qscriptextensionplugin.cpp new file mode 100755 index 00000000..5bcd75d1 --- /dev/null +++ b/script/qscriptextensionplugin.cpp @@ -0,0 +1,25 @@ +#include "qscriptextensionplugin.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQScriptExtensionPlugin: public QScriptExtensionPlugin { +public: +}; + +void QScriptExtensionPlugin_Initialize(QtObjectPtr ptr, char* key, QtObjectPtr engine){ + static_cast(ptr)->initialize(QString(key), static_cast(engine)); +} + +char* QScriptExtensionPlugin_Keys(QtObjectPtr ptr){ + return static_cast(ptr)->keys().join("|").toUtf8().data(); +} + +void QScriptExtensionPlugin_DestroyQScriptExtensionPlugin(QtObjectPtr ptr){ + static_cast(ptr)->~QScriptExtensionPlugin(); +} + diff --git a/script/qscriptextensionplugin.go b/script/qscriptextensionplugin.go new file mode 100755 index 00000000..bc2e8933 --- /dev/null +++ b/script/qscriptextensionplugin.go @@ -0,0 +1,59 @@ +package script + +//#include "qscriptextensionplugin.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QScriptExtensionPlugin struct { + core.QObject +} + +type QScriptExtensionPluginITF interface { + core.QObjectITF + QScriptExtensionPluginPTR() *QScriptExtensionPlugin +} + +func PointerFromQScriptExtensionPlugin(ptr QScriptExtensionPluginITF) unsafe.Pointer { + if ptr != nil { + return ptr.QScriptExtensionPluginPTR().Pointer() + } + return nil +} + +func QScriptExtensionPluginFromPointer(ptr unsafe.Pointer) *QScriptExtensionPlugin { + var n = new(QScriptExtensionPlugin) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QScriptExtensionPlugin_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QScriptExtensionPlugin) QScriptExtensionPluginPTR() *QScriptExtensionPlugin { + return ptr +} + +func (ptr *QScriptExtensionPlugin) Initialize(key string, engine QScriptEngineITF) { + if ptr.Pointer() != nil { + C.QScriptExtensionPlugin_Initialize(C.QtObjectPtr(ptr.Pointer()), C.CString(key), C.QtObjectPtr(PointerFromQScriptEngine(engine))) + } +} + +func (ptr *QScriptExtensionPlugin) Keys() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QScriptExtensionPlugin_Keys(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QScriptExtensionPlugin) DestroyQScriptExtensionPlugin() { + if ptr.Pointer() != nil { + C.QScriptExtensionPlugin_DestroyQScriptExtensionPlugin(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/script/qscriptextensionplugin.h b/script/qscriptextensionplugin.h new file mode 100755 index 00000000..b509083f --- /dev/null +++ b/script/qscriptextensionplugin.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QScriptExtensionPlugin_Initialize(QtObjectPtr ptr, char* key, QtObjectPtr engine); +char* QScriptExtensionPlugin_Keys(QtObjectPtr ptr); +void QScriptExtensionPlugin_DestroyQScriptExtensionPlugin(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/script/qscriptprogram.cpp b/script/qscriptprogram.cpp new file mode 100755 index 00000000..79ac5d04 --- /dev/null +++ b/script/qscriptprogram.cpp @@ -0,0 +1,44 @@ +#include "qscriptprogram.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQScriptProgram: public QScriptProgram { +public: +}; + +QtObjectPtr QScriptProgram_NewQScriptProgram(){ + return new QScriptProgram(); +} + +QtObjectPtr QScriptProgram_NewQScriptProgram3(QtObjectPtr other){ + return new QScriptProgram(*static_cast(other)); +} + +QtObjectPtr QScriptProgram_NewQScriptProgram2(char* sourceCode, char* fileName, int firstLineNumber){ + return new QScriptProgram(QString(sourceCode), QString(fileName), firstLineNumber); +} + +char* QScriptProgram_FileName(QtObjectPtr ptr){ + return static_cast(ptr)->fileName().toUtf8().data(); +} + +int QScriptProgram_FirstLineNumber(QtObjectPtr ptr){ + return static_cast(ptr)->firstLineNumber(); +} + +int QScriptProgram_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +char* QScriptProgram_SourceCode(QtObjectPtr ptr){ + return static_cast(ptr)->sourceCode().toUtf8().data(); +} + +void QScriptProgram_DestroyQScriptProgram(QtObjectPtr ptr){ + static_cast(ptr)->~QScriptProgram(); +} + diff --git a/script/qscriptprogram.go b/script/qscriptprogram.go new file mode 100755 index 00000000..6b74f203 --- /dev/null +++ b/script/qscriptprogram.go @@ -0,0 +1,86 @@ +package script + +//#include "qscriptprogram.h" +import "C" +import ( + "unsafe" +) + +type QScriptProgram struct { + ptr unsafe.Pointer +} + +type QScriptProgramITF interface { + QScriptProgramPTR() *QScriptProgram +} + +func (p *QScriptProgram) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QScriptProgram) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQScriptProgram(ptr QScriptProgramITF) unsafe.Pointer { + if ptr != nil { + return ptr.QScriptProgramPTR().Pointer() + } + return nil +} + +func QScriptProgramFromPointer(ptr unsafe.Pointer) *QScriptProgram { + var n = new(QScriptProgram) + n.SetPointer(ptr) + return n +} + +func (ptr *QScriptProgram) QScriptProgramPTR() *QScriptProgram { + return ptr +} + +func NewQScriptProgram() *QScriptProgram { + return QScriptProgramFromPointer(unsafe.Pointer(C.QScriptProgram_NewQScriptProgram())) +} + +func NewQScriptProgram3(other QScriptProgramITF) *QScriptProgram { + return QScriptProgramFromPointer(unsafe.Pointer(C.QScriptProgram_NewQScriptProgram3(C.QtObjectPtr(PointerFromQScriptProgram(other))))) +} + +func NewQScriptProgram2(sourceCode string, fileName string, firstLineNumber int) *QScriptProgram { + return QScriptProgramFromPointer(unsafe.Pointer(C.QScriptProgram_NewQScriptProgram2(C.CString(sourceCode), C.CString(fileName), C.int(firstLineNumber)))) +} + +func (ptr *QScriptProgram) FileName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QScriptProgram_FileName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QScriptProgram) FirstLineNumber() int { + if ptr.Pointer() != nil { + return int(C.QScriptProgram_FirstLineNumber(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QScriptProgram) IsNull() bool { + if ptr.Pointer() != nil { + return C.QScriptProgram_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QScriptProgram) SourceCode() string { + if ptr.Pointer() != nil { + return C.GoString(C.QScriptProgram_SourceCode(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QScriptProgram) DestroyQScriptProgram() { + if ptr.Pointer() != nil { + C.QScriptProgram_DestroyQScriptProgram(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/script/qscriptprogram.h b/script/qscriptprogram.h new file mode 100755 index 00000000..a63a030c --- /dev/null +++ b/script/qscriptprogram.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QScriptProgram_NewQScriptProgram(); +QtObjectPtr QScriptProgram_NewQScriptProgram3(QtObjectPtr other); +QtObjectPtr QScriptProgram_NewQScriptProgram2(char* sourceCode, char* fileName, int firstLineNumber); +char* QScriptProgram_FileName(QtObjectPtr ptr); +int QScriptProgram_FirstLineNumber(QtObjectPtr ptr); +int QScriptProgram_IsNull(QtObjectPtr ptr); +char* QScriptProgram_SourceCode(QtObjectPtr ptr); +void QScriptProgram_DestroyQScriptProgram(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/script/qscriptstring.cpp b/script/qscriptstring.cpp new file mode 100755 index 00000000..6ce6dcac --- /dev/null +++ b/script/qscriptstring.cpp @@ -0,0 +1,32 @@ +#include "qscriptstring.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQScriptString: public QScriptString { +public: +}; + +QtObjectPtr QScriptString_NewQScriptString(){ + return new QScriptString(); +} + +QtObjectPtr QScriptString_NewQScriptString2(QtObjectPtr other){ + return new QScriptString(*static_cast(other)); +} + +int QScriptString_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +char* QScriptString_ToString(QtObjectPtr ptr){ + return static_cast(ptr)->toString().toUtf8().data(); +} + +void QScriptString_DestroyQScriptString(QtObjectPtr ptr){ + static_cast(ptr)->~QScriptString(); +} + diff --git a/script/qscriptstring.go b/script/qscriptstring.go new file mode 100755 index 00000000..597b1274 --- /dev/null +++ b/script/qscriptstring.go @@ -0,0 +1,68 @@ +package script + +//#include "qscriptstring.h" +import "C" +import ( + "unsafe" +) + +type QScriptString struct { + ptr unsafe.Pointer +} + +type QScriptStringITF interface { + QScriptStringPTR() *QScriptString +} + +func (p *QScriptString) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QScriptString) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQScriptString(ptr QScriptStringITF) unsafe.Pointer { + if ptr != nil { + return ptr.QScriptStringPTR().Pointer() + } + return nil +} + +func QScriptStringFromPointer(ptr unsafe.Pointer) *QScriptString { + var n = new(QScriptString) + n.SetPointer(ptr) + return n +} + +func (ptr *QScriptString) QScriptStringPTR() *QScriptString { + return ptr +} + +func NewQScriptString() *QScriptString { + return QScriptStringFromPointer(unsafe.Pointer(C.QScriptString_NewQScriptString())) +} + +func NewQScriptString2(other QScriptStringITF) *QScriptString { + return QScriptStringFromPointer(unsafe.Pointer(C.QScriptString_NewQScriptString2(C.QtObjectPtr(PointerFromQScriptString(other))))) +} + +func (ptr *QScriptString) IsValid() bool { + if ptr.Pointer() != nil { + return C.QScriptString_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QScriptString) ToString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QScriptString_ToString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QScriptString) DestroyQScriptString() { + if ptr.Pointer() != nil { + C.QScriptString_DestroyQScriptString(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/script/qscriptstring.h b/script/qscriptstring.h new file mode 100755 index 00000000..e92097fd --- /dev/null +++ b/script/qscriptstring.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QScriptString_NewQScriptString(); +QtObjectPtr QScriptString_NewQScriptString2(QtObjectPtr other); +int QScriptString_IsValid(QtObjectPtr ptr); +char* QScriptString_ToString(QtObjectPtr ptr); +void QScriptString_DestroyQScriptString(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/script/qscriptsyntaxcheckresult.cpp b/script/qscriptsyntaxcheckresult.cpp new file mode 100755 index 00000000..8123e3d2 --- /dev/null +++ b/script/qscriptsyntaxcheckresult.cpp @@ -0,0 +1,32 @@ +#include "qscriptsyntaxcheckresult.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQScriptSyntaxCheckResult: public QScriptSyntaxCheckResult { +public: +}; + +QtObjectPtr QScriptSyntaxCheckResult_NewQScriptSyntaxCheckResult(QtObjectPtr other){ + return new QScriptSyntaxCheckResult(*static_cast(other)); +} + +int QScriptSyntaxCheckResult_ErrorColumnNumber(QtObjectPtr ptr){ + return static_cast(ptr)->errorColumnNumber(); +} + +int QScriptSyntaxCheckResult_ErrorLineNumber(QtObjectPtr ptr){ + return static_cast(ptr)->errorLineNumber(); +} + +char* QScriptSyntaxCheckResult_ErrorMessage(QtObjectPtr ptr){ + return static_cast(ptr)->errorMessage().toUtf8().data(); +} + +void QScriptSyntaxCheckResult_DestroyQScriptSyntaxCheckResult(QtObjectPtr ptr){ + static_cast(ptr)->~QScriptSyntaxCheckResult(); +} + diff --git a/script/qscriptsyntaxcheckresult.go b/script/qscriptsyntaxcheckresult.go new file mode 100755 index 00000000..c5152b2a --- /dev/null +++ b/script/qscriptsyntaxcheckresult.go @@ -0,0 +1,80 @@ +package script + +//#include "qscriptsyntaxcheckresult.h" +import "C" +import ( + "unsafe" +) + +type QScriptSyntaxCheckResult struct { + ptr unsafe.Pointer +} + +type QScriptSyntaxCheckResultITF interface { + QScriptSyntaxCheckResultPTR() *QScriptSyntaxCheckResult +} + +func (p *QScriptSyntaxCheckResult) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QScriptSyntaxCheckResult) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQScriptSyntaxCheckResult(ptr QScriptSyntaxCheckResultITF) unsafe.Pointer { + if ptr != nil { + return ptr.QScriptSyntaxCheckResultPTR().Pointer() + } + return nil +} + +func QScriptSyntaxCheckResultFromPointer(ptr unsafe.Pointer) *QScriptSyntaxCheckResult { + var n = new(QScriptSyntaxCheckResult) + n.SetPointer(ptr) + return n +} + +func (ptr *QScriptSyntaxCheckResult) QScriptSyntaxCheckResultPTR() *QScriptSyntaxCheckResult { + return ptr +} + +//QScriptSyntaxCheckResult::State +type QScriptSyntaxCheckResult__State int + +var ( + QScriptSyntaxCheckResult__Error = QScriptSyntaxCheckResult__State(0) + QScriptSyntaxCheckResult__Intermediate = QScriptSyntaxCheckResult__State(1) + QScriptSyntaxCheckResult__Valid = QScriptSyntaxCheckResult__State(2) +) + +func NewQScriptSyntaxCheckResult(other QScriptSyntaxCheckResultITF) *QScriptSyntaxCheckResult { + return QScriptSyntaxCheckResultFromPointer(unsafe.Pointer(C.QScriptSyntaxCheckResult_NewQScriptSyntaxCheckResult(C.QtObjectPtr(PointerFromQScriptSyntaxCheckResult(other))))) +} + +func (ptr *QScriptSyntaxCheckResult) ErrorColumnNumber() int { + if ptr.Pointer() != nil { + return int(C.QScriptSyntaxCheckResult_ErrorColumnNumber(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QScriptSyntaxCheckResult) ErrorLineNumber() int { + if ptr.Pointer() != nil { + return int(C.QScriptSyntaxCheckResult_ErrorLineNumber(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QScriptSyntaxCheckResult) ErrorMessage() string { + if ptr.Pointer() != nil { + return C.GoString(C.QScriptSyntaxCheckResult_ErrorMessage(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QScriptSyntaxCheckResult) DestroyQScriptSyntaxCheckResult() { + if ptr.Pointer() != nil { + C.QScriptSyntaxCheckResult_DestroyQScriptSyntaxCheckResult(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/script/qscriptsyntaxcheckresult.h b/script/qscriptsyntaxcheckresult.h new file mode 100755 index 00000000..112fc728 --- /dev/null +++ b/script/qscriptsyntaxcheckresult.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QScriptSyntaxCheckResult_NewQScriptSyntaxCheckResult(QtObjectPtr other); +int QScriptSyntaxCheckResult_ErrorColumnNumber(QtObjectPtr ptr); +int QScriptSyntaxCheckResult_ErrorLineNumber(QtObjectPtr ptr); +char* QScriptSyntaxCheckResult_ErrorMessage(QtObjectPtr ptr); +void QScriptSyntaxCheckResult_DestroyQScriptSyntaxCheckResult(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/script/qscriptvalue.cpp b/script/qscriptvalue.cpp new file mode 100755 index 00000000..94d5677e --- /dev/null +++ b/script/qscriptvalue.cpp @@ -0,0 +1,185 @@ +#include "qscriptvalue.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQScriptValue: public QScriptValue { +public: +}; + +QtObjectPtr QScriptValue_NewQScriptValue(){ + return new QScriptValue(); +} + +QtObjectPtr QScriptValue_NewQScriptValue10(int value){ + return new QScriptValue(static_cast(value)); +} + +QtObjectPtr QScriptValue_NewQScriptValue11(int value){ + return new QScriptValue(value != 0); +} + +QtObjectPtr QScriptValue_NewQScriptValue16(QtObjectPtr value){ + return new QScriptValue(*static_cast(value)); +} + +QtObjectPtr QScriptValue_NewQScriptValue2(QtObjectPtr other){ + return new QScriptValue(*static_cast(other)); +} + +QtObjectPtr QScriptValue_NewQScriptValue15(char* value){ + return new QScriptValue(QString(value)); +} + +QtObjectPtr QScriptValue_NewQScriptValue17(char* value){ + return new QScriptValue(const_cast(value)); +} + +QtObjectPtr QScriptValue_NewQScriptValue12(int value){ + return new QScriptValue(value); +} + +QtObjectPtr QScriptValue_Engine(QtObjectPtr ptr){ + return static_cast(ptr)->engine(); +} + +int QScriptValue_Equals(QtObjectPtr ptr, QtObjectPtr other){ + return static_cast(ptr)->equals(*static_cast(other)); +} + +int QScriptValue_InstanceOf(QtObjectPtr ptr, QtObjectPtr other){ + return static_cast(ptr)->instanceOf(*static_cast(other)); +} + +int QScriptValue_IsArray(QtObjectPtr ptr){ + return static_cast(ptr)->isArray(); +} + +int QScriptValue_IsBool(QtObjectPtr ptr){ + return static_cast(ptr)->isBool(); +} + +int QScriptValue_IsDate(QtObjectPtr ptr){ + return static_cast(ptr)->isDate(); +} + +int QScriptValue_IsError(QtObjectPtr ptr){ + return static_cast(ptr)->isError(); +} + +int QScriptValue_IsFunction(QtObjectPtr ptr){ + return static_cast(ptr)->isFunction(); +} + +int QScriptValue_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QScriptValue_IsNumber(QtObjectPtr ptr){ + return static_cast(ptr)->isNumber(); +} + +int QScriptValue_IsObject(QtObjectPtr ptr){ + return static_cast(ptr)->isObject(); +} + +int QScriptValue_IsQMetaObject(QtObjectPtr ptr){ + return static_cast(ptr)->isQMetaObject(); +} + +int QScriptValue_IsQObject(QtObjectPtr ptr){ + return static_cast(ptr)->isQObject(); +} + +int QScriptValue_IsRegExp(QtObjectPtr ptr){ + return static_cast(ptr)->isRegExp(); +} + +int QScriptValue_IsString(QtObjectPtr ptr){ + return static_cast(ptr)->isString(); +} + +int QScriptValue_IsUndefined(QtObjectPtr ptr){ + return static_cast(ptr)->isUndefined(); +} + +int QScriptValue_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QScriptValue_IsVariant(QtObjectPtr ptr){ + return static_cast(ptr)->isVariant(); +} + +int QScriptValue_LessThan(QtObjectPtr ptr, QtObjectPtr other){ + return static_cast(ptr)->lessThan(*static_cast(other)); +} + +int QScriptValue_PropertyFlags2(QtObjectPtr ptr, QtObjectPtr name, int mode){ + return static_cast(ptr)->propertyFlags(*static_cast(name), static_cast(mode)); +} + +int QScriptValue_PropertyFlags(QtObjectPtr ptr, char* name, int mode){ + return static_cast(ptr)->propertyFlags(QString(name), static_cast(mode)); +} + +QtObjectPtr QScriptValue_ScriptClass(QtObjectPtr ptr){ + return static_cast(ptr)->scriptClass(); +} + +void QScriptValue_SetData(QtObjectPtr ptr, QtObjectPtr data){ + static_cast(ptr)->setData(*static_cast(data)); +} + +void QScriptValue_SetProperty2(QtObjectPtr ptr, QtObjectPtr name, QtObjectPtr value, int flags){ + static_cast(ptr)->setProperty(*static_cast(name), *static_cast(value), static_cast(flags)); +} + +void QScriptValue_SetProperty(QtObjectPtr ptr, char* name, QtObjectPtr value, int flags){ + static_cast(ptr)->setProperty(QString(name), *static_cast(value), static_cast(flags)); +} + +void QScriptValue_SetPrototype(QtObjectPtr ptr, QtObjectPtr prototype){ + static_cast(ptr)->setPrototype(*static_cast(prototype)); +} + +void QScriptValue_SetScriptClass(QtObjectPtr ptr, QtObjectPtr scriptClass){ + static_cast(ptr)->setScriptClass(static_cast(scriptClass)); +} + +int QScriptValue_StrictlyEquals(QtObjectPtr ptr, QtObjectPtr other){ + return static_cast(ptr)->strictlyEquals(*static_cast(other)); +} + +int QScriptValue_ToBool(QtObjectPtr ptr){ + return static_cast(ptr)->toBool(); +} + +QtObjectPtr QScriptValue_ToQMetaObject(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->toQMetaObject()); +} + +QtObjectPtr QScriptValue_ToQObject(QtObjectPtr ptr){ + return static_cast(ptr)->toQObject(); +} + +char* QScriptValue_ToString(QtObjectPtr ptr){ + return static_cast(ptr)->toString().toUtf8().data(); +} + +char* QScriptValue_ToVariant(QtObjectPtr ptr){ + return static_cast(ptr)->toVariant().toString().toUtf8().data(); +} + +void QScriptValue_DestroyQScriptValue(QtObjectPtr ptr){ + static_cast(ptr)->~QScriptValue(); +} + diff --git a/script/qscriptvalue.go b/script/qscriptvalue.go new file mode 100755 index 00000000..156fac3d --- /dev/null +++ b/script/qscriptvalue.go @@ -0,0 +1,338 @@ +package script + +//#include "qscriptvalue.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QScriptValue struct { + ptr unsafe.Pointer +} + +type QScriptValueITF interface { + QScriptValuePTR() *QScriptValue +} + +func (p *QScriptValue) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QScriptValue) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQScriptValue(ptr QScriptValueITF) unsafe.Pointer { + if ptr != nil { + return ptr.QScriptValuePTR().Pointer() + } + return nil +} + +func QScriptValueFromPointer(ptr unsafe.Pointer) *QScriptValue { + var n = new(QScriptValue) + n.SetPointer(ptr) + return n +} + +func (ptr *QScriptValue) QScriptValuePTR() *QScriptValue { + return ptr +} + +//QScriptValue::PropertyFlag +type QScriptValue__PropertyFlag int + +var ( + QScriptValue__ReadOnly = QScriptValue__PropertyFlag(0x00000001) + QScriptValue__Undeletable = QScriptValue__PropertyFlag(0x00000002) + QScriptValue__SkipInEnumeration = QScriptValue__PropertyFlag(0x00000004) + QScriptValue__PropertyGetter = QScriptValue__PropertyFlag(0x00000008) + QScriptValue__PropertySetter = QScriptValue__PropertyFlag(0x00000010) + QScriptValue__QObjectMember = QScriptValue__PropertyFlag(0x00000020) + QScriptValue__KeepExistingFlags = QScriptValue__PropertyFlag(0x00000800) + QScriptValue__UserRange = QScriptValue__PropertyFlag(0xff000000) +) + +//QScriptValue::ResolveFlag +type QScriptValue__ResolveFlag int + +var ( + QScriptValue__ResolveLocal = QScriptValue__ResolveFlag(0x00) + QScriptValue__ResolvePrototype = QScriptValue__ResolveFlag(0x01) + QScriptValue__ResolveScope = QScriptValue__ResolveFlag(0x02) + QScriptValue__ResolveFull = QScriptValue__ResolveFlag(QScriptValue__ResolvePrototype | QScriptValue__ResolveScope) +) + +//QScriptValue::SpecialValue +type QScriptValue__SpecialValue int + +var ( + QScriptValue__NullValue = QScriptValue__SpecialValue(0) + QScriptValue__UndefinedValue = QScriptValue__SpecialValue(1) +) + +func NewQScriptValue() *QScriptValue { + return QScriptValueFromPointer(unsafe.Pointer(C.QScriptValue_NewQScriptValue())) +} + +func NewQScriptValue10(value QScriptValue__SpecialValue) *QScriptValue { + return QScriptValueFromPointer(unsafe.Pointer(C.QScriptValue_NewQScriptValue10(C.int(value)))) +} + +func NewQScriptValue11(value bool) *QScriptValue { + return QScriptValueFromPointer(unsafe.Pointer(C.QScriptValue_NewQScriptValue11(C.int(qt.GoBoolToInt(value))))) +} + +func NewQScriptValue16(value core.QLatin1StringITF) *QScriptValue { + return QScriptValueFromPointer(unsafe.Pointer(C.QScriptValue_NewQScriptValue16(C.QtObjectPtr(core.PointerFromQLatin1String(value))))) +} + +func NewQScriptValue2(other QScriptValueITF) *QScriptValue { + return QScriptValueFromPointer(unsafe.Pointer(C.QScriptValue_NewQScriptValue2(C.QtObjectPtr(PointerFromQScriptValue(other))))) +} + +func NewQScriptValue15(value string) *QScriptValue { + return QScriptValueFromPointer(unsafe.Pointer(C.QScriptValue_NewQScriptValue15(C.CString(value)))) +} + +func NewQScriptValue17(value string) *QScriptValue { + return QScriptValueFromPointer(unsafe.Pointer(C.QScriptValue_NewQScriptValue17(C.CString(value)))) +} + +func NewQScriptValue12(value int) *QScriptValue { + return QScriptValueFromPointer(unsafe.Pointer(C.QScriptValue_NewQScriptValue12(C.int(value)))) +} + +func (ptr *QScriptValue) Engine() *QScriptEngine { + if ptr.Pointer() != nil { + return QScriptEngineFromPointer(unsafe.Pointer(C.QScriptValue_Engine(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QScriptValue) Equals(other QScriptValueITF) bool { + if ptr.Pointer() != nil { + return C.QScriptValue_Equals(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQScriptValue(other))) != 0 + } + return false +} + +func (ptr *QScriptValue) InstanceOf(other QScriptValueITF) bool { + if ptr.Pointer() != nil { + return C.QScriptValue_InstanceOf(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQScriptValue(other))) != 0 + } + return false +} + +func (ptr *QScriptValue) IsArray() bool { + if ptr.Pointer() != nil { + return C.QScriptValue_IsArray(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QScriptValue) IsBool() bool { + if ptr.Pointer() != nil { + return C.QScriptValue_IsBool(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QScriptValue) IsDate() bool { + if ptr.Pointer() != nil { + return C.QScriptValue_IsDate(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QScriptValue) IsError() bool { + if ptr.Pointer() != nil { + return C.QScriptValue_IsError(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QScriptValue) IsFunction() bool { + if ptr.Pointer() != nil { + return C.QScriptValue_IsFunction(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QScriptValue) IsNull() bool { + if ptr.Pointer() != nil { + return C.QScriptValue_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QScriptValue) IsNumber() bool { + if ptr.Pointer() != nil { + return C.QScriptValue_IsNumber(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QScriptValue) IsObject() bool { + if ptr.Pointer() != nil { + return C.QScriptValue_IsObject(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QScriptValue) IsQMetaObject() bool { + if ptr.Pointer() != nil { + return C.QScriptValue_IsQMetaObject(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QScriptValue) IsQObject() bool { + if ptr.Pointer() != nil { + return C.QScriptValue_IsQObject(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QScriptValue) IsRegExp() bool { + if ptr.Pointer() != nil { + return C.QScriptValue_IsRegExp(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QScriptValue) IsString() bool { + if ptr.Pointer() != nil { + return C.QScriptValue_IsString(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QScriptValue) IsUndefined() bool { + if ptr.Pointer() != nil { + return C.QScriptValue_IsUndefined(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QScriptValue) IsValid() bool { + if ptr.Pointer() != nil { + return C.QScriptValue_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QScriptValue) IsVariant() bool { + if ptr.Pointer() != nil { + return C.QScriptValue_IsVariant(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QScriptValue) LessThan(other QScriptValueITF) bool { + if ptr.Pointer() != nil { + return C.QScriptValue_LessThan(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQScriptValue(other))) != 0 + } + return false +} + +func (ptr *QScriptValue) PropertyFlags2(name QScriptStringITF, mode QScriptValue__ResolveFlag) QScriptValue__PropertyFlag { + if ptr.Pointer() != nil { + return QScriptValue__PropertyFlag(C.QScriptValue_PropertyFlags2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQScriptString(name)), C.int(mode))) + } + return 0 +} + +func (ptr *QScriptValue) PropertyFlags(name string, mode QScriptValue__ResolveFlag) QScriptValue__PropertyFlag { + if ptr.Pointer() != nil { + return QScriptValue__PropertyFlag(C.QScriptValue_PropertyFlags(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.int(mode))) + } + return 0 +} + +func (ptr *QScriptValue) ScriptClass() *QScriptClass { + if ptr.Pointer() != nil { + return QScriptClassFromPointer(unsafe.Pointer(C.QScriptValue_ScriptClass(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QScriptValue) SetData(data QScriptValueITF) { + if ptr.Pointer() != nil { + C.QScriptValue_SetData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQScriptValue(data))) + } +} + +func (ptr *QScriptValue) SetProperty2(name QScriptStringITF, value QScriptValueITF, flags QScriptValue__PropertyFlag) { + if ptr.Pointer() != nil { + C.QScriptValue_SetProperty2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQScriptString(name)), C.QtObjectPtr(PointerFromQScriptValue(value)), C.int(flags)) + } +} + +func (ptr *QScriptValue) SetProperty(name string, value QScriptValueITF, flags QScriptValue__PropertyFlag) { + if ptr.Pointer() != nil { + C.QScriptValue_SetProperty(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.QtObjectPtr(PointerFromQScriptValue(value)), C.int(flags)) + } +} + +func (ptr *QScriptValue) SetPrototype(prototype QScriptValueITF) { + if ptr.Pointer() != nil { + C.QScriptValue_SetPrototype(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQScriptValue(prototype))) + } +} + +func (ptr *QScriptValue) SetScriptClass(scriptClass QScriptClassITF) { + if ptr.Pointer() != nil { + C.QScriptValue_SetScriptClass(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQScriptClass(scriptClass))) + } +} + +func (ptr *QScriptValue) StrictlyEquals(other QScriptValueITF) bool { + if ptr.Pointer() != nil { + return C.QScriptValue_StrictlyEquals(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQScriptValue(other))) != 0 + } + return false +} + +func (ptr *QScriptValue) ToBool() bool { + if ptr.Pointer() != nil { + return C.QScriptValue_ToBool(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QScriptValue) ToQMetaObject() *core.QMetaObject { + if ptr.Pointer() != nil { + return core.QMetaObjectFromPointer(unsafe.Pointer(C.QScriptValue_ToQMetaObject(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QScriptValue) ToQObject() *core.QObject { + if ptr.Pointer() != nil { + return core.QObjectFromPointer(unsafe.Pointer(C.QScriptValue_ToQObject(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QScriptValue) ToString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QScriptValue_ToString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QScriptValue) ToVariant() string { + if ptr.Pointer() != nil { + return C.GoString(C.QScriptValue_ToVariant(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QScriptValue) DestroyQScriptValue() { + if ptr.Pointer() != nil { + C.QScriptValue_DestroyQScriptValue(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/script/qscriptvalue.h b/script/qscriptvalue.h new file mode 100755 index 00000000..a6b1a20f --- /dev/null +++ b/script/qscriptvalue.h @@ -0,0 +1,51 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QScriptValue_NewQScriptValue(); +QtObjectPtr QScriptValue_NewQScriptValue10(int value); +QtObjectPtr QScriptValue_NewQScriptValue11(int value); +QtObjectPtr QScriptValue_NewQScriptValue16(QtObjectPtr value); +QtObjectPtr QScriptValue_NewQScriptValue2(QtObjectPtr other); +QtObjectPtr QScriptValue_NewQScriptValue15(char* value); +QtObjectPtr QScriptValue_NewQScriptValue17(char* value); +QtObjectPtr QScriptValue_NewQScriptValue12(int value); +QtObjectPtr QScriptValue_Engine(QtObjectPtr ptr); +int QScriptValue_Equals(QtObjectPtr ptr, QtObjectPtr other); +int QScriptValue_InstanceOf(QtObjectPtr ptr, QtObjectPtr other); +int QScriptValue_IsArray(QtObjectPtr ptr); +int QScriptValue_IsBool(QtObjectPtr ptr); +int QScriptValue_IsDate(QtObjectPtr ptr); +int QScriptValue_IsError(QtObjectPtr ptr); +int QScriptValue_IsFunction(QtObjectPtr ptr); +int QScriptValue_IsNull(QtObjectPtr ptr); +int QScriptValue_IsNumber(QtObjectPtr ptr); +int QScriptValue_IsObject(QtObjectPtr ptr); +int QScriptValue_IsQMetaObject(QtObjectPtr ptr); +int QScriptValue_IsQObject(QtObjectPtr ptr); +int QScriptValue_IsRegExp(QtObjectPtr ptr); +int QScriptValue_IsString(QtObjectPtr ptr); +int QScriptValue_IsUndefined(QtObjectPtr ptr); +int QScriptValue_IsValid(QtObjectPtr ptr); +int QScriptValue_IsVariant(QtObjectPtr ptr); +int QScriptValue_LessThan(QtObjectPtr ptr, QtObjectPtr other); +int QScriptValue_PropertyFlags2(QtObjectPtr ptr, QtObjectPtr name, int mode); +int QScriptValue_PropertyFlags(QtObjectPtr ptr, char* name, int mode); +QtObjectPtr QScriptValue_ScriptClass(QtObjectPtr ptr); +void QScriptValue_SetData(QtObjectPtr ptr, QtObjectPtr data); +void QScriptValue_SetProperty2(QtObjectPtr ptr, QtObjectPtr name, QtObjectPtr value, int flags); +void QScriptValue_SetProperty(QtObjectPtr ptr, char* name, QtObjectPtr value, int flags); +void QScriptValue_SetPrototype(QtObjectPtr ptr, QtObjectPtr prototype); +void QScriptValue_SetScriptClass(QtObjectPtr ptr, QtObjectPtr scriptClass); +int QScriptValue_StrictlyEquals(QtObjectPtr ptr, QtObjectPtr other); +int QScriptValue_ToBool(QtObjectPtr ptr); +QtObjectPtr QScriptValue_ToQMetaObject(QtObjectPtr ptr); +QtObjectPtr QScriptValue_ToQObject(QtObjectPtr ptr); +char* QScriptValue_ToString(QtObjectPtr ptr); +char* QScriptValue_ToVariant(QtObjectPtr ptr); +void QScriptValue_DestroyQScriptValue(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/script/qscriptvalueiterator.cpp b/script/qscriptvalueiterator.cpp new file mode 100755 index 00000000..94e14650 --- /dev/null +++ b/script/qscriptvalueiterator.cpp @@ -0,0 +1,9 @@ +#include "qscriptvalueiterator.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/script/qscriptvalueiterator.go b/script/qscriptvalueiterator.go new file mode 100755 index 00000000..4a61898d --- /dev/null +++ b/script/qscriptvalueiterator.go @@ -0,0 +1,40 @@ +package script + +//#include "qscriptvalueiterator.h" +import "C" +import ( + "unsafe" +) + +type QScriptValueIterator struct { + ptr unsafe.Pointer +} + +type QScriptValueIteratorITF interface { + QScriptValueIteratorPTR() *QScriptValueIterator +} + +func (p *QScriptValueIterator) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QScriptValueIterator) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQScriptValueIterator(ptr QScriptValueIteratorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QScriptValueIteratorPTR().Pointer() + } + return nil +} + +func QScriptValueIteratorFromPointer(ptr unsafe.Pointer) *QScriptValueIterator { + var n = new(QScriptValueIterator) + n.SetPointer(ptr) + return n +} + +func (ptr *QScriptValueIterator) QScriptValueIteratorPTR() *QScriptValueIterator { + return ptr +} diff --git a/script/qscriptvalueiterator.h b/script/qscriptvalueiterator.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/script/qscriptvalueiterator.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/scripttools/cgo_darwin_amd64.go b/scripttools/cgo_darwin_amd64.go new file mode 100755 index 00000000..0bb6e1a5 --- /dev/null +++ b/scripttools/cgo_darwin_amd64.go @@ -0,0 +1,13 @@ +package scripttools + +/* +#cgo CPPFLAGS: -pipe -O2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 -Wall -W +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_SCRIPT_LIB -DQT_WIDGETS_LIB -DQT_SCRIPTTOOLS_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/mkspecs/macx-clang -F/usr/local/Qt5.5.1/5.5/clang_64/lib +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtCore.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtGui.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtScript.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtWidgets.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtScriptTools.framework/Headers +#cgo CPPFLAGS: -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.framework/Headers + +#cgo LDFLAGS: -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 +#cgo LDFLAGS: -F/usr/local/Qt5.5.1/5.5/clang_64/lib -framework QtCore -framework QtGui -framework QtScript -framework QtWidgets -framework QtScriptTools -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL +*/ +import "C" diff --git a/scripttools/cgo_linux_386.go b/scripttools/cgo_linux_386.go new file mode 100755 index 00000000..dbc39766 --- /dev/null +++ b/scripttools/cgo_linux_386.go @@ -0,0 +1,12 @@ +package scripttools + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_SCRIPT_LIB -DQT_WIDGETS_LIB -DQT_SCRIPTTOOLS_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include -I/usr/local/Qt5.5.1/5.5/gcc/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc/include/QtGui -I/usr/local/Qt5.5.1/5.5/gcc/include/QtScript -I/usr/local/Qt5.5.1/5.5/gcc/include/QtWidgets -I/usr/local/Qt5.5.1/5.5/gcc/include/QtScriptTools + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc/lib -L/usr/lib -lQt5Core -lQt5Gui -lQt5Script -lQt5Widgets -lQt5ScriptTools -lpthread +*/ +import "C" diff --git a/scripttools/cgo_linux_amd64.go b/scripttools/cgo_linux_amd64.go new file mode 100755 index 00000000..6e00d428 --- /dev/null +++ b/scripttools/cgo_linux_amd64.go @@ -0,0 +1,12 @@ +package scripttools + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_SCRIPT_LIB -DQT_WIDGETS_LIB -DQT_SCRIPTTOOLS_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include -I/usr/local/Qt5.5.1/5.5/gcc_64/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtGui -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtScript -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtWidgets -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtScriptTools + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc_64/lib -L/usr/lib64 -lQt5Core -lQt5Gui -lQt5Script -lQt5Widgets -lQt5ScriptTools -lpthread +*/ +import "C" diff --git a/scripttools/cgo_windows_386.go b/scripttools/cgo_windows_386.go new file mode 100755 index 00000000..c4052ac7 --- /dev/null +++ b/scripttools/cgo_windows_386.go @@ -0,0 +1,12 @@ +package scripttools + +/* +#cgo CPPFLAGS: -pipe -fno-keep-inline-dllexport -O2 -Wall -Wextra -fexceptions -mthreads +#cgo CPPFLAGS: -DUNICODE -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_SCRIPT_LIB -DQT_WIDGETS_LIB -DQT_SCRIPTTOOLS_LIB +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include -IC:/Qt/Qt5.5.1/5.5/mingw492_32/mkspecs/win32-g++ +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtCore -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtGui -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtScript -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtWidgets -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtScriptTools + +#cgo LDFLAGS: -Wl,-s -Wl,-subsystem,windows -mthreads +#cgo LDFLAGS: -LC:/Qt/Qt5.5.1/5.5/mingw492_32/bin -lQt5Core -lQt5Gui -lQt5Script -lQt5Widgets -lQt5ScriptTools +*/ +import "C" diff --git a/scripttools/qscriptenginedebugger.cpp b/scripttools/qscriptenginedebugger.cpp new file mode 100755 index 00000000..71651d8b --- /dev/null +++ b/scripttools/qscriptenginedebugger.cpp @@ -0,0 +1,77 @@ +#include "qscriptenginedebugger.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQScriptEngineDebugger: public QScriptEngineDebugger { +public: +void Signal_EvaluationResumed(){callbackQScriptEngineDebuggerEvaluationResumed(this->objectName().toUtf8().data());}; +void Signal_EvaluationSuspended(){callbackQScriptEngineDebuggerEvaluationSuspended(this->objectName().toUtf8().data());}; +}; + +QtObjectPtr QScriptEngineDebugger_NewQScriptEngineDebugger(QtObjectPtr parent){ + return new QScriptEngineDebugger(static_cast(parent)); +} + +QtObjectPtr QScriptEngineDebugger_Action(QtObjectPtr ptr, int action){ + return static_cast(ptr)->action(static_cast(action)); +} + +void QScriptEngineDebugger_AttachTo(QtObjectPtr ptr, QtObjectPtr engine){ + static_cast(ptr)->attachTo(static_cast(engine)); +} + +int QScriptEngineDebugger_AutoShowStandardWindow(QtObjectPtr ptr){ + return static_cast(ptr)->autoShowStandardWindow(); +} + +QtObjectPtr QScriptEngineDebugger_CreateStandardMenu(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->createStandardMenu(static_cast(parent)); +} + +QtObjectPtr QScriptEngineDebugger_CreateStandardToolBar(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->createStandardToolBar(static_cast(parent)); +} + +void QScriptEngineDebugger_Detach(QtObjectPtr ptr){ + static_cast(ptr)->detach(); +} + +void QScriptEngineDebugger_ConnectEvaluationResumed(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QScriptEngineDebugger::evaluationResumed), static_cast(ptr), static_cast(&MyQScriptEngineDebugger::Signal_EvaluationResumed));; +} + +void QScriptEngineDebugger_DisconnectEvaluationResumed(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QScriptEngineDebugger::evaluationResumed), static_cast(ptr), static_cast(&MyQScriptEngineDebugger::Signal_EvaluationResumed));; +} + +void QScriptEngineDebugger_ConnectEvaluationSuspended(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QScriptEngineDebugger::evaluationSuspended), static_cast(ptr), static_cast(&MyQScriptEngineDebugger::Signal_EvaluationSuspended));; +} + +void QScriptEngineDebugger_DisconnectEvaluationSuspended(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QScriptEngineDebugger::evaluationSuspended), static_cast(ptr), static_cast(&MyQScriptEngineDebugger::Signal_EvaluationSuspended));; +} + +void QScriptEngineDebugger_SetAutoShowStandardWindow(QtObjectPtr ptr, int autoShow){ + static_cast(ptr)->setAutoShowStandardWindow(autoShow != 0); +} + +QtObjectPtr QScriptEngineDebugger_StandardWindow(QtObjectPtr ptr){ + return static_cast(ptr)->standardWindow(); +} + +QtObjectPtr QScriptEngineDebugger_Widget(QtObjectPtr ptr, int widget){ + return static_cast(ptr)->widget(static_cast(widget)); +} + +void QScriptEngineDebugger_DestroyQScriptEngineDebugger(QtObjectPtr ptr){ + static_cast(ptr)->~QScriptEngineDebugger(); +} + diff --git a/scripttools/qscriptenginedebugger.go b/scripttools/qscriptenginedebugger.go new file mode 100755 index 00000000..d7764830 --- /dev/null +++ b/scripttools/qscriptenginedebugger.go @@ -0,0 +1,193 @@ +package scripttools + +//#include "qscriptenginedebugger.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/script" + "github.com/therecipe/qt/widgets" + "unsafe" +) + +type QScriptEngineDebugger struct { + core.QObject +} + +type QScriptEngineDebuggerITF interface { + core.QObjectITF + QScriptEngineDebuggerPTR() *QScriptEngineDebugger +} + +func PointerFromQScriptEngineDebugger(ptr QScriptEngineDebuggerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QScriptEngineDebuggerPTR().Pointer() + } + return nil +} + +func QScriptEngineDebuggerFromPointer(ptr unsafe.Pointer) *QScriptEngineDebugger { + var n = new(QScriptEngineDebugger) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QScriptEngineDebugger_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QScriptEngineDebugger) QScriptEngineDebuggerPTR() *QScriptEngineDebugger { + return ptr +} + +//QScriptEngineDebugger::DebuggerAction +type QScriptEngineDebugger__DebuggerAction int + +var ( + QScriptEngineDebugger__InterruptAction = QScriptEngineDebugger__DebuggerAction(0) + QScriptEngineDebugger__ContinueAction = QScriptEngineDebugger__DebuggerAction(1) + QScriptEngineDebugger__StepIntoAction = QScriptEngineDebugger__DebuggerAction(2) + QScriptEngineDebugger__StepOverAction = QScriptEngineDebugger__DebuggerAction(3) + QScriptEngineDebugger__StepOutAction = QScriptEngineDebugger__DebuggerAction(4) + QScriptEngineDebugger__RunToCursorAction = QScriptEngineDebugger__DebuggerAction(5) + QScriptEngineDebugger__RunToNewScriptAction = QScriptEngineDebugger__DebuggerAction(6) + QScriptEngineDebugger__ToggleBreakpointAction = QScriptEngineDebugger__DebuggerAction(7) + QScriptEngineDebugger__ClearDebugOutputAction = QScriptEngineDebugger__DebuggerAction(8) + QScriptEngineDebugger__ClearErrorLogAction = QScriptEngineDebugger__DebuggerAction(9) + QScriptEngineDebugger__ClearConsoleAction = QScriptEngineDebugger__DebuggerAction(10) + QScriptEngineDebugger__FindInScriptAction = QScriptEngineDebugger__DebuggerAction(11) + QScriptEngineDebugger__FindNextInScriptAction = QScriptEngineDebugger__DebuggerAction(12) + QScriptEngineDebugger__FindPreviousInScriptAction = QScriptEngineDebugger__DebuggerAction(13) + QScriptEngineDebugger__GoToLineAction = QScriptEngineDebugger__DebuggerAction(14) +) + +//QScriptEngineDebugger::DebuggerState +type QScriptEngineDebugger__DebuggerState int + +var ( + QScriptEngineDebugger__RunningState = QScriptEngineDebugger__DebuggerState(0) + QScriptEngineDebugger__SuspendedState = QScriptEngineDebugger__DebuggerState(1) +) + +//QScriptEngineDebugger::DebuggerWidget +type QScriptEngineDebugger__DebuggerWidget int + +var ( + QScriptEngineDebugger__ConsoleWidget = QScriptEngineDebugger__DebuggerWidget(0) + QScriptEngineDebugger__StackWidget = QScriptEngineDebugger__DebuggerWidget(1) + QScriptEngineDebugger__ScriptsWidget = QScriptEngineDebugger__DebuggerWidget(2) + QScriptEngineDebugger__LocalsWidget = QScriptEngineDebugger__DebuggerWidget(3) + QScriptEngineDebugger__CodeWidget = QScriptEngineDebugger__DebuggerWidget(4) + QScriptEngineDebugger__CodeFinderWidget = QScriptEngineDebugger__DebuggerWidget(5) + QScriptEngineDebugger__BreakpointsWidget = QScriptEngineDebugger__DebuggerWidget(6) + QScriptEngineDebugger__DebugOutputWidget = QScriptEngineDebugger__DebuggerWidget(7) + QScriptEngineDebugger__ErrorLogWidget = QScriptEngineDebugger__DebuggerWidget(8) +) + +func NewQScriptEngineDebugger(parent core.QObjectITF) *QScriptEngineDebugger { + return QScriptEngineDebuggerFromPointer(unsafe.Pointer(C.QScriptEngineDebugger_NewQScriptEngineDebugger(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QScriptEngineDebugger) Action(action QScriptEngineDebugger__DebuggerAction) *widgets.QAction { + if ptr.Pointer() != nil { + return widgets.QActionFromPointer(unsafe.Pointer(C.QScriptEngineDebugger_Action(C.QtObjectPtr(ptr.Pointer()), C.int(action)))) + } + return nil +} + +func (ptr *QScriptEngineDebugger) AttachTo(engine script.QScriptEngineITF) { + if ptr.Pointer() != nil { + C.QScriptEngineDebugger_AttachTo(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(script.PointerFromQScriptEngine(engine))) + } +} + +func (ptr *QScriptEngineDebugger) AutoShowStandardWindow() bool { + if ptr.Pointer() != nil { + return C.QScriptEngineDebugger_AutoShowStandardWindow(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QScriptEngineDebugger) CreateStandardMenu(parent widgets.QWidgetITF) *widgets.QMenu { + if ptr.Pointer() != nil { + return widgets.QMenuFromPointer(unsafe.Pointer(C.QScriptEngineDebugger_CreateStandardMenu(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(widgets.PointerFromQWidget(parent))))) + } + return nil +} + +func (ptr *QScriptEngineDebugger) CreateStandardToolBar(parent widgets.QWidgetITF) *widgets.QToolBar { + if ptr.Pointer() != nil { + return widgets.QToolBarFromPointer(unsafe.Pointer(C.QScriptEngineDebugger_CreateStandardToolBar(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(widgets.PointerFromQWidget(parent))))) + } + return nil +} + +func (ptr *QScriptEngineDebugger) Detach() { + if ptr.Pointer() != nil { + C.QScriptEngineDebugger_Detach(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QScriptEngineDebugger) ConnectEvaluationResumed(f func()) { + if ptr.Pointer() != nil { + C.QScriptEngineDebugger_ConnectEvaluationResumed(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "evaluationResumed", f) + } +} + +func (ptr *QScriptEngineDebugger) DisconnectEvaluationResumed() { + if ptr.Pointer() != nil { + C.QScriptEngineDebugger_DisconnectEvaluationResumed(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "evaluationResumed") + } +} + +//export callbackQScriptEngineDebuggerEvaluationResumed +func callbackQScriptEngineDebuggerEvaluationResumed(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "evaluationResumed").(func())() +} + +func (ptr *QScriptEngineDebugger) ConnectEvaluationSuspended(f func()) { + if ptr.Pointer() != nil { + C.QScriptEngineDebugger_ConnectEvaluationSuspended(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "evaluationSuspended", f) + } +} + +func (ptr *QScriptEngineDebugger) DisconnectEvaluationSuspended() { + if ptr.Pointer() != nil { + C.QScriptEngineDebugger_DisconnectEvaluationSuspended(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "evaluationSuspended") + } +} + +//export callbackQScriptEngineDebuggerEvaluationSuspended +func callbackQScriptEngineDebuggerEvaluationSuspended(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "evaluationSuspended").(func())() +} + +func (ptr *QScriptEngineDebugger) SetAutoShowStandardWindow(autoShow bool) { + if ptr.Pointer() != nil { + C.QScriptEngineDebugger_SetAutoShowStandardWindow(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(autoShow))) + } +} + +func (ptr *QScriptEngineDebugger) StandardWindow() *widgets.QMainWindow { + if ptr.Pointer() != nil { + return widgets.QMainWindowFromPointer(unsafe.Pointer(C.QScriptEngineDebugger_StandardWindow(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QScriptEngineDebugger) Widget(widget QScriptEngineDebugger__DebuggerWidget) *widgets.QWidget { + if ptr.Pointer() != nil { + return widgets.QWidgetFromPointer(unsafe.Pointer(C.QScriptEngineDebugger_Widget(C.QtObjectPtr(ptr.Pointer()), C.int(widget)))) + } + return nil +} + +func (ptr *QScriptEngineDebugger) DestroyQScriptEngineDebugger() { + if ptr.Pointer() != nil { + C.QScriptEngineDebugger_DestroyQScriptEngineDebugger(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/scripttools/qscriptenginedebugger.h b/scripttools/qscriptenginedebugger.h new file mode 100755 index 00000000..746579cf --- /dev/null +++ b/scripttools/qscriptenginedebugger.h @@ -0,0 +1,24 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QScriptEngineDebugger_NewQScriptEngineDebugger(QtObjectPtr parent); +QtObjectPtr QScriptEngineDebugger_Action(QtObjectPtr ptr, int action); +void QScriptEngineDebugger_AttachTo(QtObjectPtr ptr, QtObjectPtr engine); +int QScriptEngineDebugger_AutoShowStandardWindow(QtObjectPtr ptr); +QtObjectPtr QScriptEngineDebugger_CreateStandardMenu(QtObjectPtr ptr, QtObjectPtr parent); +QtObjectPtr QScriptEngineDebugger_CreateStandardToolBar(QtObjectPtr ptr, QtObjectPtr parent); +void QScriptEngineDebugger_Detach(QtObjectPtr ptr); +void QScriptEngineDebugger_ConnectEvaluationResumed(QtObjectPtr ptr); +void QScriptEngineDebugger_DisconnectEvaluationResumed(QtObjectPtr ptr); +void QScriptEngineDebugger_ConnectEvaluationSuspended(QtObjectPtr ptr); +void QScriptEngineDebugger_DisconnectEvaluationSuspended(QtObjectPtr ptr); +void QScriptEngineDebugger_SetAutoShowStandardWindow(QtObjectPtr ptr, int autoShow); +QtObjectPtr QScriptEngineDebugger_StandardWindow(QtObjectPtr ptr); +QtObjectPtr QScriptEngineDebugger_Widget(QtObjectPtr ptr, int widget); +void QScriptEngineDebugger_DestroyQScriptEngineDebugger(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/cgo_darwin_amd64.go b/sensors/cgo_darwin_amd64.go new file mode 100755 index 00000000..db5024e3 --- /dev/null +++ b/sensors/cgo_darwin_amd64.go @@ -0,0 +1,13 @@ +package sensors + +/* +#cgo CPPFLAGS: -pipe -O2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 -Wall -W +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_SENSORS_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/mkspecs/macx-clang -F/usr/local/Qt5.5.1/5.5/clang_64/lib +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtCore.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtSensors.framework/Headers +#cgo CPPFLAGS: -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.framework/Headers + +#cgo LDFLAGS: -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 +#cgo LDFLAGS: -F/usr/local/Qt5.5.1/5.5/clang_64/lib -framework QtCore -framework QtSensors -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL +*/ +import "C" diff --git a/sensors/cgo_linux_386.go b/sensors/cgo_linux_386.go new file mode 100755 index 00000000..8906d666 --- /dev/null +++ b/sensors/cgo_linux_386.go @@ -0,0 +1,12 @@ +package sensors + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_SENSORS_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include -I/usr/local/Qt5.5.1/5.5/gcc/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc/include/QtSensors + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc/lib -L/usr/lib -lQt5Core -lQt5Sensors -lpthread +*/ +import "C" diff --git a/sensors/cgo_linux_amd64.go b/sensors/cgo_linux_amd64.go new file mode 100755 index 00000000..ba864822 --- /dev/null +++ b/sensors/cgo_linux_amd64.go @@ -0,0 +1,12 @@ +package sensors + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_SENSORS_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include -I/usr/local/Qt5.5.1/5.5/gcc_64/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtSensors + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc_64/lib -L/usr/lib64 -lQt5Core -lQt5Sensors -lpthread +*/ +import "C" diff --git a/sensors/cgo_windows_386.go b/sensors/cgo_windows_386.go new file mode 100755 index 00000000..70165235 --- /dev/null +++ b/sensors/cgo_windows_386.go @@ -0,0 +1,12 @@ +package sensors + +/* +#cgo CPPFLAGS: -pipe -fno-keep-inline-dllexport -O2 -Wall -Wextra -fexceptions -mthreads +#cgo CPPFLAGS: -DUNICODE -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_SENSORS_LIB +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include -IC:/Qt/Qt5.5.1/5.5/mingw492_32/mkspecs/win32-g++ +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtCore -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtSensors + +#cgo LDFLAGS: -Wl,-s -Wl,-subsystem,windows -mthreads +#cgo LDFLAGS: -LC:/Qt/Qt5.5.1/5.5/mingw492_32/bin -lQt5Core -lQt5Sensors +*/ +import "C" diff --git a/sensors/qaccelerometer.cpp b/sensors/qaccelerometer.cpp new file mode 100755 index 00000000..6f36dee6 --- /dev/null +++ b/sensors/qaccelerometer.cpp @@ -0,0 +1,42 @@ +#include "qaccelerometer.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAccelerometer: public QAccelerometer { +public: +void Signal_AccelerationModeChanged(QAccelerometer::AccelerationMode accelerationMode){callbackQAccelerometerAccelerationModeChanged(this->objectName().toUtf8().data(), accelerationMode);}; +}; + +int QAccelerometer_AccelerationMode(QtObjectPtr ptr){ + return static_cast(ptr)->accelerationMode(); +} + +QtObjectPtr QAccelerometer_Reading(QtObjectPtr ptr){ + return static_cast(ptr)->reading(); +} + +QtObjectPtr QAccelerometer_NewQAccelerometer(QtObjectPtr parent){ + return new QAccelerometer(static_cast(parent)); +} + +void QAccelerometer_ConnectAccelerationModeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAccelerometer::accelerationModeChanged), static_cast(ptr), static_cast(&MyQAccelerometer::Signal_AccelerationModeChanged));; +} + +void QAccelerometer_DisconnectAccelerationModeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAccelerometer::accelerationModeChanged), static_cast(ptr), static_cast(&MyQAccelerometer::Signal_AccelerationModeChanged));; +} + +void QAccelerometer_SetAccelerationMode(QtObjectPtr ptr, int accelerationMode){ + static_cast(ptr)->setAccelerationMode(static_cast(accelerationMode)); +} + +void QAccelerometer_DestroyQAccelerometer(QtObjectPtr ptr){ + static_cast(ptr)->~QAccelerometer(); +} + diff --git a/sensors/qaccelerometer.go b/sensors/qaccelerometer.go new file mode 100755 index 00000000..10e95a75 --- /dev/null +++ b/sensors/qaccelerometer.go @@ -0,0 +1,97 @@ +package sensors + +//#include "qaccelerometer.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAccelerometer struct { + QSensor +} + +type QAccelerometerITF interface { + QSensorITF + QAccelerometerPTR() *QAccelerometer +} + +func PointerFromQAccelerometer(ptr QAccelerometerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAccelerometerPTR().Pointer() + } + return nil +} + +func QAccelerometerFromPointer(ptr unsafe.Pointer) *QAccelerometer { + var n = new(QAccelerometer) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAccelerometer_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAccelerometer) QAccelerometerPTR() *QAccelerometer { + return ptr +} + +//QAccelerometer::AccelerationMode +type QAccelerometer__AccelerationMode int + +var ( + QAccelerometer__Combined = QAccelerometer__AccelerationMode(0) + QAccelerometer__Gravity = QAccelerometer__AccelerationMode(1) + QAccelerometer__User = QAccelerometer__AccelerationMode(2) +) + +func (ptr *QAccelerometer) AccelerationMode() QAccelerometer__AccelerationMode { + if ptr.Pointer() != nil { + return QAccelerometer__AccelerationMode(C.QAccelerometer_AccelerationMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccelerometer) Reading() *QAccelerometerReading { + if ptr.Pointer() != nil { + return QAccelerometerReadingFromPointer(unsafe.Pointer(C.QAccelerometer_Reading(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func NewQAccelerometer(parent core.QObjectITF) *QAccelerometer { + return QAccelerometerFromPointer(unsafe.Pointer(C.QAccelerometer_NewQAccelerometer(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QAccelerometer) ConnectAccelerationModeChanged(f func(accelerationMode QAccelerometer__AccelerationMode)) { + if ptr.Pointer() != nil { + C.QAccelerometer_ConnectAccelerationModeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "accelerationModeChanged", f) + } +} + +func (ptr *QAccelerometer) DisconnectAccelerationModeChanged() { + if ptr.Pointer() != nil { + C.QAccelerometer_DisconnectAccelerationModeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "accelerationModeChanged") + } +} + +//export callbackQAccelerometerAccelerationModeChanged +func callbackQAccelerometerAccelerationModeChanged(ptrName *C.char, accelerationMode C.int) { + qt.GetSignal(C.GoString(ptrName), "accelerationModeChanged").(func(QAccelerometer__AccelerationMode))(QAccelerometer__AccelerationMode(accelerationMode)) +} + +func (ptr *QAccelerometer) SetAccelerationMode(accelerationMode QAccelerometer__AccelerationMode) { + if ptr.Pointer() != nil { + C.QAccelerometer_SetAccelerationMode(C.QtObjectPtr(ptr.Pointer()), C.int(accelerationMode)) + } +} + +func (ptr *QAccelerometer) DestroyQAccelerometer() { + if ptr.Pointer() != nil { + C.QAccelerometer_DestroyQAccelerometer(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/sensors/qaccelerometer.h b/sensors/qaccelerometer.h new file mode 100755 index 00000000..d0c57563 --- /dev/null +++ b/sensors/qaccelerometer.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QAccelerometer_AccelerationMode(QtObjectPtr ptr); +QtObjectPtr QAccelerometer_Reading(QtObjectPtr ptr); +QtObjectPtr QAccelerometer_NewQAccelerometer(QtObjectPtr parent); +void QAccelerometer_ConnectAccelerationModeChanged(QtObjectPtr ptr); +void QAccelerometer_DisconnectAccelerationModeChanged(QtObjectPtr ptr); +void QAccelerometer_SetAccelerationMode(QtObjectPtr ptr, int accelerationMode); +void QAccelerometer_DestroyQAccelerometer(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qaccelerometerfilter.cpp b/sensors/qaccelerometerfilter.cpp new file mode 100755 index 00000000..91de4779 --- /dev/null +++ b/sensors/qaccelerometerfilter.cpp @@ -0,0 +1,18 @@ +#include "qaccelerometerfilter.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAccelerometerFilter: public QAccelerometerFilter { +public: +}; + +int QAccelerometerFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading){ + return static_cast(ptr)->filter(static_cast(reading)); +} + diff --git a/sensors/qaccelerometerfilter.go b/sensors/qaccelerometerfilter.go new file mode 100755 index 00000000..303fc073 --- /dev/null +++ b/sensors/qaccelerometerfilter.go @@ -0,0 +1,40 @@ +package sensors + +//#include "qaccelerometerfilter.h" +import "C" +import ( + "unsafe" +) + +type QAccelerometerFilter struct { + QSensorFilter +} + +type QAccelerometerFilterITF interface { + QSensorFilterITF + QAccelerometerFilterPTR() *QAccelerometerFilter +} + +func PointerFromQAccelerometerFilter(ptr QAccelerometerFilterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAccelerometerFilterPTR().Pointer() + } + return nil +} + +func QAccelerometerFilterFromPointer(ptr unsafe.Pointer) *QAccelerometerFilter { + var n = new(QAccelerometerFilter) + n.SetPointer(ptr) + return n +} + +func (ptr *QAccelerometerFilter) QAccelerometerFilterPTR() *QAccelerometerFilter { + return ptr +} + +func (ptr *QAccelerometerFilter) Filter(reading QAccelerometerReadingITF) bool { + if ptr.Pointer() != nil { + return C.QAccelerometerFilter_Filter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAccelerometerReading(reading))) != 0 + } + return false +} diff --git a/sensors/qaccelerometerfilter.h b/sensors/qaccelerometerfilter.h new file mode 100755 index 00000000..36f3c063 --- /dev/null +++ b/sensors/qaccelerometerfilter.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QAccelerometerFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qaccelerometerreading.cpp b/sensors/qaccelerometerreading.cpp new file mode 100755 index 00000000..55739d34 --- /dev/null +++ b/sensors/qaccelerometerreading.cpp @@ -0,0 +1,13 @@ +#include "qaccelerometerreading.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAccelerometerReading: public QAccelerometerReading { +public: +}; + diff --git a/sensors/qaccelerometerreading.go b/sensors/qaccelerometerreading.go new file mode 100755 index 00000000..0be555a4 --- /dev/null +++ b/sensors/qaccelerometerreading.go @@ -0,0 +1,37 @@ +package sensors + +//#include "qaccelerometerreading.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QAccelerometerReading struct { + QSensorReading +} + +type QAccelerometerReadingITF interface { + QSensorReadingITF + QAccelerometerReadingPTR() *QAccelerometerReading +} + +func PointerFromQAccelerometerReading(ptr QAccelerometerReadingITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAccelerometerReadingPTR().Pointer() + } + return nil +} + +func QAccelerometerReadingFromPointer(ptr unsafe.Pointer) *QAccelerometerReading { + var n = new(QAccelerometerReading) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAccelerometerReading_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAccelerometerReading) QAccelerometerReadingPTR() *QAccelerometerReading { + return ptr +} diff --git a/sensors/qaccelerometerreading.h b/sensors/qaccelerometerreading.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/sensors/qaccelerometerreading.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qaltimeter.cpp b/sensors/qaltimeter.cpp new file mode 100755 index 00000000..2e9c7fee --- /dev/null +++ b/sensors/qaltimeter.cpp @@ -0,0 +1,25 @@ +#include "qaltimeter.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAltimeter: public QAltimeter { +public: +}; + +QtObjectPtr QAltimeter_Reading(QtObjectPtr ptr){ + return static_cast(ptr)->reading(); +} + +QtObjectPtr QAltimeter_NewQAltimeter(QtObjectPtr parent){ + return new QAltimeter(static_cast(parent)); +} + +void QAltimeter_DestroyQAltimeter(QtObjectPtr ptr){ + static_cast(ptr)->~QAltimeter(); +} + diff --git a/sensors/qaltimeter.go b/sensors/qaltimeter.go new file mode 100755 index 00000000..9fbda7ea --- /dev/null +++ b/sensors/qaltimeter.go @@ -0,0 +1,56 @@ +package sensors + +//#include "qaltimeter.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAltimeter struct { + QSensor +} + +type QAltimeterITF interface { + QSensorITF + QAltimeterPTR() *QAltimeter +} + +func PointerFromQAltimeter(ptr QAltimeterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAltimeterPTR().Pointer() + } + return nil +} + +func QAltimeterFromPointer(ptr unsafe.Pointer) *QAltimeter { + var n = new(QAltimeter) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAltimeter_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAltimeter) QAltimeterPTR() *QAltimeter { + return ptr +} + +func (ptr *QAltimeter) Reading() *QAltimeterReading { + if ptr.Pointer() != nil { + return QAltimeterReadingFromPointer(unsafe.Pointer(C.QAltimeter_Reading(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func NewQAltimeter(parent core.QObjectITF) *QAltimeter { + return QAltimeterFromPointer(unsafe.Pointer(C.QAltimeter_NewQAltimeter(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QAltimeter) DestroyQAltimeter() { + if ptr.Pointer() != nil { + C.QAltimeter_DestroyQAltimeter(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/sensors/qaltimeter.h b/sensors/qaltimeter.h new file mode 100755 index 00000000..91381d90 --- /dev/null +++ b/sensors/qaltimeter.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAltimeter_Reading(QtObjectPtr ptr); +QtObjectPtr QAltimeter_NewQAltimeter(QtObjectPtr parent); +void QAltimeter_DestroyQAltimeter(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qaltimeterfilter.cpp b/sensors/qaltimeterfilter.cpp new file mode 100755 index 00000000..1c02cc16 --- /dev/null +++ b/sensors/qaltimeterfilter.cpp @@ -0,0 +1,18 @@ +#include "qaltimeterfilter.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAltimeterFilter: public QAltimeterFilter { +public: +}; + +int QAltimeterFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading){ + return static_cast(ptr)->filter(static_cast(reading)); +} + diff --git a/sensors/qaltimeterfilter.go b/sensors/qaltimeterfilter.go new file mode 100755 index 00000000..e79f0230 --- /dev/null +++ b/sensors/qaltimeterfilter.go @@ -0,0 +1,40 @@ +package sensors + +//#include "qaltimeterfilter.h" +import "C" +import ( + "unsafe" +) + +type QAltimeterFilter struct { + QSensorFilter +} + +type QAltimeterFilterITF interface { + QSensorFilterITF + QAltimeterFilterPTR() *QAltimeterFilter +} + +func PointerFromQAltimeterFilter(ptr QAltimeterFilterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAltimeterFilterPTR().Pointer() + } + return nil +} + +func QAltimeterFilterFromPointer(ptr unsafe.Pointer) *QAltimeterFilter { + var n = new(QAltimeterFilter) + n.SetPointer(ptr) + return n +} + +func (ptr *QAltimeterFilter) QAltimeterFilterPTR() *QAltimeterFilter { + return ptr +} + +func (ptr *QAltimeterFilter) Filter(reading QAltimeterReadingITF) bool { + if ptr.Pointer() != nil { + return C.QAltimeterFilter_Filter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAltimeterReading(reading))) != 0 + } + return false +} diff --git a/sensors/qaltimeterfilter.h b/sensors/qaltimeterfilter.h new file mode 100755 index 00000000..fa1008ea --- /dev/null +++ b/sensors/qaltimeterfilter.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QAltimeterFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qaltimeterreading.cpp b/sensors/qaltimeterreading.cpp new file mode 100755 index 00000000..c092f2f9 --- /dev/null +++ b/sensors/qaltimeterreading.cpp @@ -0,0 +1,13 @@ +#include "qaltimeterreading.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAltimeterReading: public QAltimeterReading { +public: +}; + diff --git a/sensors/qaltimeterreading.go b/sensors/qaltimeterreading.go new file mode 100755 index 00000000..6ee23f5f --- /dev/null +++ b/sensors/qaltimeterreading.go @@ -0,0 +1,37 @@ +package sensors + +//#include "qaltimeterreading.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QAltimeterReading struct { + QSensorReading +} + +type QAltimeterReadingITF interface { + QSensorReadingITF + QAltimeterReadingPTR() *QAltimeterReading +} + +func PointerFromQAltimeterReading(ptr QAltimeterReadingITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAltimeterReadingPTR().Pointer() + } + return nil +} + +func QAltimeterReadingFromPointer(ptr unsafe.Pointer) *QAltimeterReading { + var n = new(QAltimeterReading) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAltimeterReading_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAltimeterReading) QAltimeterReadingPTR() *QAltimeterReading { + return ptr +} diff --git a/sensors/qaltimeterreading.h b/sensors/qaltimeterreading.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/sensors/qaltimeterreading.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qambientlightfilter.cpp b/sensors/qambientlightfilter.cpp new file mode 100755 index 00000000..439bb76c --- /dev/null +++ b/sensors/qambientlightfilter.cpp @@ -0,0 +1,17 @@ +#include "qambientlightfilter.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAmbientLightFilter: public QAmbientLightFilter { +public: +}; + +int QAmbientLightFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading){ + return static_cast(ptr)->filter(static_cast(reading)); +} + diff --git a/sensors/qambientlightfilter.go b/sensors/qambientlightfilter.go new file mode 100755 index 00000000..fc759545 --- /dev/null +++ b/sensors/qambientlightfilter.go @@ -0,0 +1,40 @@ +package sensors + +//#include "qambientlightfilter.h" +import "C" +import ( + "unsafe" +) + +type QAmbientLightFilter struct { + QSensorFilter +} + +type QAmbientLightFilterITF interface { + QSensorFilterITF + QAmbientLightFilterPTR() *QAmbientLightFilter +} + +func PointerFromQAmbientLightFilter(ptr QAmbientLightFilterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAmbientLightFilterPTR().Pointer() + } + return nil +} + +func QAmbientLightFilterFromPointer(ptr unsafe.Pointer) *QAmbientLightFilter { + var n = new(QAmbientLightFilter) + n.SetPointer(ptr) + return n +} + +func (ptr *QAmbientLightFilter) QAmbientLightFilterPTR() *QAmbientLightFilter { + return ptr +} + +func (ptr *QAmbientLightFilter) Filter(reading QAmbientLightReadingITF) bool { + if ptr.Pointer() != nil { + return C.QAmbientLightFilter_Filter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAmbientLightReading(reading))) != 0 + } + return false +} diff --git a/sensors/qambientlightfilter.h b/sensors/qambientlightfilter.h new file mode 100755 index 00000000..a482fe06 --- /dev/null +++ b/sensors/qambientlightfilter.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QAmbientLightFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qambientlightreading.cpp b/sensors/qambientlightreading.cpp new file mode 100755 index 00000000..bf0a3129 --- /dev/null +++ b/sensors/qambientlightreading.cpp @@ -0,0 +1,20 @@ +#include "qambientlightreading.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAmbientLightReading: public QAmbientLightReading { +public: +}; + +int QAmbientLightReading_LightLevel(QtObjectPtr ptr){ + return static_cast(ptr)->lightLevel(); +} + +void QAmbientLightReading_SetLightLevel(QtObjectPtr ptr, int lightLevel){ + static_cast(ptr)->setLightLevel(static_cast(lightLevel)); +} + diff --git a/sensors/qambientlightreading.go b/sensors/qambientlightreading.go new file mode 100755 index 00000000..7e2322ae --- /dev/null +++ b/sensors/qambientlightreading.go @@ -0,0 +1,62 @@ +package sensors + +//#include "qambientlightreading.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QAmbientLightReading struct { + QSensorReading +} + +type QAmbientLightReadingITF interface { + QSensorReadingITF + QAmbientLightReadingPTR() *QAmbientLightReading +} + +func PointerFromQAmbientLightReading(ptr QAmbientLightReadingITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAmbientLightReadingPTR().Pointer() + } + return nil +} + +func QAmbientLightReadingFromPointer(ptr unsafe.Pointer) *QAmbientLightReading { + var n = new(QAmbientLightReading) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAmbientLightReading_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAmbientLightReading) QAmbientLightReadingPTR() *QAmbientLightReading { + return ptr +} + +//QAmbientLightReading::LightLevel +type QAmbientLightReading__LightLevel int + +var ( + QAmbientLightReading__Undefined = QAmbientLightReading__LightLevel(0) + QAmbientLightReading__Dark = QAmbientLightReading__LightLevel(1) + QAmbientLightReading__Twilight = QAmbientLightReading__LightLevel(2) + QAmbientLightReading__Light = QAmbientLightReading__LightLevel(3) + QAmbientLightReading__Bright = QAmbientLightReading__LightLevel(4) + QAmbientLightReading__Sunny = QAmbientLightReading__LightLevel(5) +) + +func (ptr *QAmbientLightReading) LightLevel() QAmbientLightReading__LightLevel { + if ptr.Pointer() != nil { + return QAmbientLightReading__LightLevel(C.QAmbientLightReading_LightLevel(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAmbientLightReading) SetLightLevel(lightLevel QAmbientLightReading__LightLevel) { + if ptr.Pointer() != nil { + C.QAmbientLightReading_SetLightLevel(C.QtObjectPtr(ptr.Pointer()), C.int(lightLevel)) + } +} diff --git a/sensors/qambientlightreading.h b/sensors/qambientlightreading.h new file mode 100755 index 00000000..5a443a37 --- /dev/null +++ b/sensors/qambientlightreading.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QAmbientLightReading_LightLevel(QtObjectPtr ptr); +void QAmbientLightReading_SetLightLevel(QtObjectPtr ptr, int lightLevel); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qambientlightsensor.cpp b/sensors/qambientlightsensor.cpp new file mode 100755 index 00000000..5e15fdb7 --- /dev/null +++ b/sensors/qambientlightsensor.cpp @@ -0,0 +1,25 @@ +#include "qambientlightsensor.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAmbientLightSensor: public QAmbientLightSensor { +public: +}; + +QtObjectPtr QAmbientLightSensor_Reading(QtObjectPtr ptr){ + return static_cast(ptr)->reading(); +} + +QtObjectPtr QAmbientLightSensor_NewQAmbientLightSensor(QtObjectPtr parent){ + return new QAmbientLightSensor(static_cast(parent)); +} + +void QAmbientLightSensor_DestroyQAmbientLightSensor(QtObjectPtr ptr){ + static_cast(ptr)->~QAmbientLightSensor(); +} + diff --git a/sensors/qambientlightsensor.go b/sensors/qambientlightsensor.go new file mode 100755 index 00000000..84b46869 --- /dev/null +++ b/sensors/qambientlightsensor.go @@ -0,0 +1,56 @@ +package sensors + +//#include "qambientlightsensor.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAmbientLightSensor struct { + QSensor +} + +type QAmbientLightSensorITF interface { + QSensorITF + QAmbientLightSensorPTR() *QAmbientLightSensor +} + +func PointerFromQAmbientLightSensor(ptr QAmbientLightSensorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAmbientLightSensorPTR().Pointer() + } + return nil +} + +func QAmbientLightSensorFromPointer(ptr unsafe.Pointer) *QAmbientLightSensor { + var n = new(QAmbientLightSensor) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAmbientLightSensor_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAmbientLightSensor) QAmbientLightSensorPTR() *QAmbientLightSensor { + return ptr +} + +func (ptr *QAmbientLightSensor) Reading() *QAmbientLightReading { + if ptr.Pointer() != nil { + return QAmbientLightReadingFromPointer(unsafe.Pointer(C.QAmbientLightSensor_Reading(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func NewQAmbientLightSensor(parent core.QObjectITF) *QAmbientLightSensor { + return QAmbientLightSensorFromPointer(unsafe.Pointer(C.QAmbientLightSensor_NewQAmbientLightSensor(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QAmbientLightSensor) DestroyQAmbientLightSensor() { + if ptr.Pointer() != nil { + C.QAmbientLightSensor_DestroyQAmbientLightSensor(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/sensors/qambientlightsensor.h b/sensors/qambientlightsensor.h new file mode 100755 index 00000000..fd6cc6f3 --- /dev/null +++ b/sensors/qambientlightsensor.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAmbientLightSensor_Reading(QtObjectPtr ptr); +QtObjectPtr QAmbientLightSensor_NewQAmbientLightSensor(QtObjectPtr parent); +void QAmbientLightSensor_DestroyQAmbientLightSensor(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qambienttemperaturefilter.cpp b/sensors/qambienttemperaturefilter.cpp new file mode 100755 index 00000000..bc1cd049 --- /dev/null +++ b/sensors/qambienttemperaturefilter.cpp @@ -0,0 +1,17 @@ +#include "qambienttemperaturefilter.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAmbientTemperatureFilter: public QAmbientTemperatureFilter { +public: +}; + +int QAmbientTemperatureFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading){ + return static_cast(ptr)->filter(static_cast(reading)); +} + diff --git a/sensors/qambienttemperaturefilter.go b/sensors/qambienttemperaturefilter.go new file mode 100755 index 00000000..fe8645c5 --- /dev/null +++ b/sensors/qambienttemperaturefilter.go @@ -0,0 +1,40 @@ +package sensors + +//#include "qambienttemperaturefilter.h" +import "C" +import ( + "unsafe" +) + +type QAmbientTemperatureFilter struct { + QSensorFilter +} + +type QAmbientTemperatureFilterITF interface { + QSensorFilterITF + QAmbientTemperatureFilterPTR() *QAmbientTemperatureFilter +} + +func PointerFromQAmbientTemperatureFilter(ptr QAmbientTemperatureFilterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAmbientTemperatureFilterPTR().Pointer() + } + return nil +} + +func QAmbientTemperatureFilterFromPointer(ptr unsafe.Pointer) *QAmbientTemperatureFilter { + var n = new(QAmbientTemperatureFilter) + n.SetPointer(ptr) + return n +} + +func (ptr *QAmbientTemperatureFilter) QAmbientTemperatureFilterPTR() *QAmbientTemperatureFilter { + return ptr +} + +func (ptr *QAmbientTemperatureFilter) Filter(reading QAmbientTemperatureReadingITF) bool { + if ptr.Pointer() != nil { + return C.QAmbientTemperatureFilter_Filter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAmbientTemperatureReading(reading))) != 0 + } + return false +} diff --git a/sensors/qambienttemperaturefilter.h b/sensors/qambienttemperaturefilter.h new file mode 100755 index 00000000..abb438d6 --- /dev/null +++ b/sensors/qambienttemperaturefilter.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QAmbientTemperatureFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qambienttemperaturereading.cpp b/sensors/qambienttemperaturereading.cpp new file mode 100755 index 00000000..ad372fa5 --- /dev/null +++ b/sensors/qambienttemperaturereading.cpp @@ -0,0 +1,12 @@ +#include "qambienttemperaturereading.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAmbientTemperatureReading: public QAmbientTemperatureReading { +public: +}; + diff --git a/sensors/qambienttemperaturereading.go b/sensors/qambienttemperaturereading.go new file mode 100755 index 00000000..4e1e9f52 --- /dev/null +++ b/sensors/qambienttemperaturereading.go @@ -0,0 +1,37 @@ +package sensors + +//#include "qambienttemperaturereading.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QAmbientTemperatureReading struct { + QSensorReading +} + +type QAmbientTemperatureReadingITF interface { + QSensorReadingITF + QAmbientTemperatureReadingPTR() *QAmbientTemperatureReading +} + +func PointerFromQAmbientTemperatureReading(ptr QAmbientTemperatureReadingITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAmbientTemperatureReadingPTR().Pointer() + } + return nil +} + +func QAmbientTemperatureReadingFromPointer(ptr unsafe.Pointer) *QAmbientTemperatureReading { + var n = new(QAmbientTemperatureReading) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAmbientTemperatureReading_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAmbientTemperatureReading) QAmbientTemperatureReadingPTR() *QAmbientTemperatureReading { + return ptr +} diff --git a/sensors/qambienttemperaturereading.h b/sensors/qambienttemperaturereading.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/sensors/qambienttemperaturereading.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qambienttemperaturesensor.cpp b/sensors/qambienttemperaturesensor.cpp new file mode 100755 index 00000000..88f000e7 --- /dev/null +++ b/sensors/qambienttemperaturesensor.cpp @@ -0,0 +1,25 @@ +#include "qambienttemperaturesensor.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAmbientTemperatureSensor: public QAmbientTemperatureSensor { +public: +}; + +QtObjectPtr QAmbientTemperatureSensor_Reading(QtObjectPtr ptr){ + return static_cast(ptr)->reading(); +} + +QtObjectPtr QAmbientTemperatureSensor_NewQAmbientTemperatureSensor(QtObjectPtr parent){ + return new QAmbientTemperatureSensor(static_cast(parent)); +} + +void QAmbientTemperatureSensor_DestroyQAmbientTemperatureSensor(QtObjectPtr ptr){ + static_cast(ptr)->~QAmbientTemperatureSensor(); +} + diff --git a/sensors/qambienttemperaturesensor.go b/sensors/qambienttemperaturesensor.go new file mode 100755 index 00000000..d95918c7 --- /dev/null +++ b/sensors/qambienttemperaturesensor.go @@ -0,0 +1,56 @@ +package sensors + +//#include "qambienttemperaturesensor.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAmbientTemperatureSensor struct { + QSensor +} + +type QAmbientTemperatureSensorITF interface { + QSensorITF + QAmbientTemperatureSensorPTR() *QAmbientTemperatureSensor +} + +func PointerFromQAmbientTemperatureSensor(ptr QAmbientTemperatureSensorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAmbientTemperatureSensorPTR().Pointer() + } + return nil +} + +func QAmbientTemperatureSensorFromPointer(ptr unsafe.Pointer) *QAmbientTemperatureSensor { + var n = new(QAmbientTemperatureSensor) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAmbientTemperatureSensor_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAmbientTemperatureSensor) QAmbientTemperatureSensorPTR() *QAmbientTemperatureSensor { + return ptr +} + +func (ptr *QAmbientTemperatureSensor) Reading() *QAmbientTemperatureReading { + if ptr.Pointer() != nil { + return QAmbientTemperatureReadingFromPointer(unsafe.Pointer(C.QAmbientTemperatureSensor_Reading(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func NewQAmbientTemperatureSensor(parent core.QObjectITF) *QAmbientTemperatureSensor { + return QAmbientTemperatureSensorFromPointer(unsafe.Pointer(C.QAmbientTemperatureSensor_NewQAmbientTemperatureSensor(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QAmbientTemperatureSensor) DestroyQAmbientTemperatureSensor() { + if ptr.Pointer() != nil { + C.QAmbientTemperatureSensor_DestroyQAmbientTemperatureSensor(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/sensors/qambienttemperaturesensor.h b/sensors/qambienttemperaturesensor.h new file mode 100755 index 00000000..83a2438e --- /dev/null +++ b/sensors/qambienttemperaturesensor.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAmbientTemperatureSensor_Reading(QtObjectPtr ptr); +QtObjectPtr QAmbientTemperatureSensor_NewQAmbientTemperatureSensor(QtObjectPtr parent); +void QAmbientTemperatureSensor_DestroyQAmbientTemperatureSensor(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qcompass.cpp b/sensors/qcompass.cpp new file mode 100755 index 00000000..2c8c8b65 --- /dev/null +++ b/sensors/qcompass.cpp @@ -0,0 +1,25 @@ +#include "qcompass.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCompass: public QCompass { +public: +}; + +QtObjectPtr QCompass_Reading(QtObjectPtr ptr){ + return static_cast(ptr)->reading(); +} + +QtObjectPtr QCompass_NewQCompass(QtObjectPtr parent){ + return new QCompass(static_cast(parent)); +} + +void QCompass_DestroyQCompass(QtObjectPtr ptr){ + static_cast(ptr)->~QCompass(); +} + diff --git a/sensors/qcompass.go b/sensors/qcompass.go new file mode 100755 index 00000000..df958537 --- /dev/null +++ b/sensors/qcompass.go @@ -0,0 +1,56 @@ +package sensors + +//#include "qcompass.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QCompass struct { + QSensor +} + +type QCompassITF interface { + QSensorITF + QCompassPTR() *QCompass +} + +func PointerFromQCompass(ptr QCompassITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCompassPTR().Pointer() + } + return nil +} + +func QCompassFromPointer(ptr unsafe.Pointer) *QCompass { + var n = new(QCompass) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCompass_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCompass) QCompassPTR() *QCompass { + return ptr +} + +func (ptr *QCompass) Reading() *QCompassReading { + if ptr.Pointer() != nil { + return QCompassReadingFromPointer(unsafe.Pointer(C.QCompass_Reading(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func NewQCompass(parent core.QObjectITF) *QCompass { + return QCompassFromPointer(unsafe.Pointer(C.QCompass_NewQCompass(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QCompass) DestroyQCompass() { + if ptr.Pointer() != nil { + C.QCompass_DestroyQCompass(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/sensors/qcompass.h b/sensors/qcompass.h new file mode 100755 index 00000000..b131a1bf --- /dev/null +++ b/sensors/qcompass.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QCompass_Reading(QtObjectPtr ptr); +QtObjectPtr QCompass_NewQCompass(QtObjectPtr parent); +void QCompass_DestroyQCompass(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qcompassfilter.cpp b/sensors/qcompassfilter.cpp new file mode 100755 index 00000000..a8224e0b --- /dev/null +++ b/sensors/qcompassfilter.cpp @@ -0,0 +1,18 @@ +#include "qcompassfilter.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCompassFilter: public QCompassFilter { +public: +}; + +int QCompassFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading){ + return static_cast(ptr)->filter(static_cast(reading)); +} + diff --git a/sensors/qcompassfilter.go b/sensors/qcompassfilter.go new file mode 100755 index 00000000..620d1d3e --- /dev/null +++ b/sensors/qcompassfilter.go @@ -0,0 +1,40 @@ +package sensors + +//#include "qcompassfilter.h" +import "C" +import ( + "unsafe" +) + +type QCompassFilter struct { + QSensorFilter +} + +type QCompassFilterITF interface { + QSensorFilterITF + QCompassFilterPTR() *QCompassFilter +} + +func PointerFromQCompassFilter(ptr QCompassFilterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCompassFilterPTR().Pointer() + } + return nil +} + +func QCompassFilterFromPointer(ptr unsafe.Pointer) *QCompassFilter { + var n = new(QCompassFilter) + n.SetPointer(ptr) + return n +} + +func (ptr *QCompassFilter) QCompassFilterPTR() *QCompassFilter { + return ptr +} + +func (ptr *QCompassFilter) Filter(reading QCompassReadingITF) bool { + if ptr.Pointer() != nil { + return C.QCompassFilter_Filter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQCompassReading(reading))) != 0 + } + return false +} diff --git a/sensors/qcompassfilter.h b/sensors/qcompassfilter.h new file mode 100755 index 00000000..0cc5f68e --- /dev/null +++ b/sensors/qcompassfilter.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QCompassFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qcompassreading.cpp b/sensors/qcompassreading.cpp new file mode 100755 index 00000000..a7f7d3f9 --- /dev/null +++ b/sensors/qcompassreading.cpp @@ -0,0 +1,13 @@ +#include "qcompassreading.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCompassReading: public QCompassReading { +public: +}; + diff --git a/sensors/qcompassreading.go b/sensors/qcompassreading.go new file mode 100755 index 00000000..9bf20332 --- /dev/null +++ b/sensors/qcompassreading.go @@ -0,0 +1,37 @@ +package sensors + +//#include "qcompassreading.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QCompassReading struct { + QSensorReading +} + +type QCompassReadingITF interface { + QSensorReadingITF + QCompassReadingPTR() *QCompassReading +} + +func PointerFromQCompassReading(ptr QCompassReadingITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCompassReadingPTR().Pointer() + } + return nil +} + +func QCompassReadingFromPointer(ptr unsafe.Pointer) *QCompassReading { + var n = new(QCompassReading) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCompassReading_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCompassReading) QCompassReadingPTR() *QCompassReading { + return ptr +} diff --git a/sensors/qcompassreading.h b/sensors/qcompassreading.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/sensors/qcompassreading.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qdistancefilter.cpp b/sensors/qdistancefilter.cpp new file mode 100755 index 00000000..61438c0b --- /dev/null +++ b/sensors/qdistancefilter.cpp @@ -0,0 +1,17 @@ +#include "qdistancefilter.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDistanceFilter: public QDistanceFilter { +public: +}; + +int QDistanceFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading){ + return static_cast(ptr)->filter(static_cast(reading)); +} + diff --git a/sensors/qdistancefilter.go b/sensors/qdistancefilter.go new file mode 100755 index 00000000..a25e74c2 --- /dev/null +++ b/sensors/qdistancefilter.go @@ -0,0 +1,40 @@ +package sensors + +//#include "qdistancefilter.h" +import "C" +import ( + "unsafe" +) + +type QDistanceFilter struct { + QSensorFilter +} + +type QDistanceFilterITF interface { + QSensorFilterITF + QDistanceFilterPTR() *QDistanceFilter +} + +func PointerFromQDistanceFilter(ptr QDistanceFilterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDistanceFilterPTR().Pointer() + } + return nil +} + +func QDistanceFilterFromPointer(ptr unsafe.Pointer) *QDistanceFilter { + var n = new(QDistanceFilter) + n.SetPointer(ptr) + return n +} + +func (ptr *QDistanceFilter) QDistanceFilterPTR() *QDistanceFilter { + return ptr +} + +func (ptr *QDistanceFilter) Filter(reading QDistanceReadingITF) bool { + if ptr.Pointer() != nil { + return C.QDistanceFilter_Filter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDistanceReading(reading))) != 0 + } + return false +} diff --git a/sensors/qdistancefilter.h b/sensors/qdistancefilter.h new file mode 100755 index 00000000..164d4841 --- /dev/null +++ b/sensors/qdistancefilter.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QDistanceFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qdistancereading.cpp b/sensors/qdistancereading.cpp new file mode 100755 index 00000000..d7e05490 --- /dev/null +++ b/sensors/qdistancereading.cpp @@ -0,0 +1,12 @@ +#include "qdistancereading.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDistanceReading: public QDistanceReading { +public: +}; + diff --git a/sensors/qdistancereading.go b/sensors/qdistancereading.go new file mode 100755 index 00000000..4c46d1dc --- /dev/null +++ b/sensors/qdistancereading.go @@ -0,0 +1,37 @@ +package sensors + +//#include "qdistancereading.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QDistanceReading struct { + QSensorReading +} + +type QDistanceReadingITF interface { + QSensorReadingITF + QDistanceReadingPTR() *QDistanceReading +} + +func PointerFromQDistanceReading(ptr QDistanceReadingITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDistanceReadingPTR().Pointer() + } + return nil +} + +func QDistanceReadingFromPointer(ptr unsafe.Pointer) *QDistanceReading { + var n = new(QDistanceReading) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QDistanceReading_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QDistanceReading) QDistanceReadingPTR() *QDistanceReading { + return ptr +} diff --git a/sensors/qdistancereading.h b/sensors/qdistancereading.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/sensors/qdistancereading.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qdistancesensor.cpp b/sensors/qdistancesensor.cpp new file mode 100755 index 00000000..25168190 --- /dev/null +++ b/sensors/qdistancesensor.cpp @@ -0,0 +1,25 @@ +#include "qdistancesensor.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDistanceSensor: public QDistanceSensor { +public: +}; + +QtObjectPtr QDistanceSensor_Reading(QtObjectPtr ptr){ + return static_cast(ptr)->reading(); +} + +QtObjectPtr QDistanceSensor_NewQDistanceSensor(QtObjectPtr parent){ + return new QDistanceSensor(static_cast(parent)); +} + +void QDistanceSensor_DestroyQDistanceSensor(QtObjectPtr ptr){ + static_cast(ptr)->~QDistanceSensor(); +} + diff --git a/sensors/qdistancesensor.go b/sensors/qdistancesensor.go new file mode 100755 index 00000000..a33f1617 --- /dev/null +++ b/sensors/qdistancesensor.go @@ -0,0 +1,56 @@ +package sensors + +//#include "qdistancesensor.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QDistanceSensor struct { + QSensor +} + +type QDistanceSensorITF interface { + QSensorITF + QDistanceSensorPTR() *QDistanceSensor +} + +func PointerFromQDistanceSensor(ptr QDistanceSensorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDistanceSensorPTR().Pointer() + } + return nil +} + +func QDistanceSensorFromPointer(ptr unsafe.Pointer) *QDistanceSensor { + var n = new(QDistanceSensor) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QDistanceSensor_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QDistanceSensor) QDistanceSensorPTR() *QDistanceSensor { + return ptr +} + +func (ptr *QDistanceSensor) Reading() *QDistanceReading { + if ptr.Pointer() != nil { + return QDistanceReadingFromPointer(unsafe.Pointer(C.QDistanceSensor_Reading(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func NewQDistanceSensor(parent core.QObjectITF) *QDistanceSensor { + return QDistanceSensorFromPointer(unsafe.Pointer(C.QDistanceSensor_NewQDistanceSensor(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QDistanceSensor) DestroyQDistanceSensor() { + if ptr.Pointer() != nil { + C.QDistanceSensor_DestroyQDistanceSensor(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/sensors/qdistancesensor.h b/sensors/qdistancesensor.h new file mode 100755 index 00000000..5a778b57 --- /dev/null +++ b/sensors/qdistancesensor.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDistanceSensor_Reading(QtObjectPtr ptr); +QtObjectPtr QDistanceSensor_NewQDistanceSensor(QtObjectPtr parent); +void QDistanceSensor_DestroyQDistanceSensor(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qgyroscope.cpp b/sensors/qgyroscope.cpp new file mode 100755 index 00000000..9c3b7982 --- /dev/null +++ b/sensors/qgyroscope.cpp @@ -0,0 +1,25 @@ +#include "qgyroscope.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGyroscope: public QGyroscope { +public: +}; + +QtObjectPtr QGyroscope_Reading(QtObjectPtr ptr){ + return static_cast(ptr)->reading(); +} + +QtObjectPtr QGyroscope_NewQGyroscope(QtObjectPtr parent){ + return new QGyroscope(static_cast(parent)); +} + +void QGyroscope_DestroyQGyroscope(QtObjectPtr ptr){ + static_cast(ptr)->~QGyroscope(); +} + diff --git a/sensors/qgyroscope.go b/sensors/qgyroscope.go new file mode 100755 index 00000000..2590c7a0 --- /dev/null +++ b/sensors/qgyroscope.go @@ -0,0 +1,56 @@ +package sensors + +//#include "qgyroscope.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGyroscope struct { + QSensor +} + +type QGyroscopeITF interface { + QSensorITF + QGyroscopePTR() *QGyroscope +} + +func PointerFromQGyroscope(ptr QGyroscopeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGyroscopePTR().Pointer() + } + return nil +} + +func QGyroscopeFromPointer(ptr unsafe.Pointer) *QGyroscope { + var n = new(QGyroscope) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGyroscope_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGyroscope) QGyroscopePTR() *QGyroscope { + return ptr +} + +func (ptr *QGyroscope) Reading() *QGyroscopeReading { + if ptr.Pointer() != nil { + return QGyroscopeReadingFromPointer(unsafe.Pointer(C.QGyroscope_Reading(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func NewQGyroscope(parent core.QObjectITF) *QGyroscope { + return QGyroscopeFromPointer(unsafe.Pointer(C.QGyroscope_NewQGyroscope(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QGyroscope) DestroyQGyroscope() { + if ptr.Pointer() != nil { + C.QGyroscope_DestroyQGyroscope(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/sensors/qgyroscope.h b/sensors/qgyroscope.h new file mode 100755 index 00000000..50c89b02 --- /dev/null +++ b/sensors/qgyroscope.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGyroscope_Reading(QtObjectPtr ptr); +QtObjectPtr QGyroscope_NewQGyroscope(QtObjectPtr parent); +void QGyroscope_DestroyQGyroscope(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qgyroscopefilter.cpp b/sensors/qgyroscopefilter.cpp new file mode 100755 index 00000000..d7ac8efa --- /dev/null +++ b/sensors/qgyroscopefilter.cpp @@ -0,0 +1,18 @@ +#include "qgyroscopefilter.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGyroscopeFilter: public QGyroscopeFilter { +public: +}; + +int QGyroscopeFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading){ + return static_cast(ptr)->filter(static_cast(reading)); +} + diff --git a/sensors/qgyroscopefilter.go b/sensors/qgyroscopefilter.go new file mode 100755 index 00000000..e745321f --- /dev/null +++ b/sensors/qgyroscopefilter.go @@ -0,0 +1,40 @@ +package sensors + +//#include "qgyroscopefilter.h" +import "C" +import ( + "unsafe" +) + +type QGyroscopeFilter struct { + QSensorFilter +} + +type QGyroscopeFilterITF interface { + QSensorFilterITF + QGyroscopeFilterPTR() *QGyroscopeFilter +} + +func PointerFromQGyroscopeFilter(ptr QGyroscopeFilterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGyroscopeFilterPTR().Pointer() + } + return nil +} + +func QGyroscopeFilterFromPointer(ptr unsafe.Pointer) *QGyroscopeFilter { + var n = new(QGyroscopeFilter) + n.SetPointer(ptr) + return n +} + +func (ptr *QGyroscopeFilter) QGyroscopeFilterPTR() *QGyroscopeFilter { + return ptr +} + +func (ptr *QGyroscopeFilter) Filter(reading QGyroscopeReadingITF) bool { + if ptr.Pointer() != nil { + return C.QGyroscopeFilter_Filter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGyroscopeReading(reading))) != 0 + } + return false +} diff --git a/sensors/qgyroscopefilter.h b/sensors/qgyroscopefilter.h new file mode 100755 index 00000000..376d5220 --- /dev/null +++ b/sensors/qgyroscopefilter.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QGyroscopeFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qgyroscopereading.cpp b/sensors/qgyroscopereading.cpp new file mode 100755 index 00000000..c50df81f --- /dev/null +++ b/sensors/qgyroscopereading.cpp @@ -0,0 +1,13 @@ +#include "qgyroscopereading.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGyroscopeReading: public QGyroscopeReading { +public: +}; + diff --git a/sensors/qgyroscopereading.go b/sensors/qgyroscopereading.go new file mode 100755 index 00000000..8e633d56 --- /dev/null +++ b/sensors/qgyroscopereading.go @@ -0,0 +1,37 @@ +package sensors + +//#include "qgyroscopereading.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QGyroscopeReading struct { + QSensorReading +} + +type QGyroscopeReadingITF interface { + QSensorReadingITF + QGyroscopeReadingPTR() *QGyroscopeReading +} + +func PointerFromQGyroscopeReading(ptr QGyroscopeReadingITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGyroscopeReadingPTR().Pointer() + } + return nil +} + +func QGyroscopeReadingFromPointer(ptr unsafe.Pointer) *QGyroscopeReading { + var n = new(QGyroscopeReading) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGyroscopeReading_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGyroscopeReading) QGyroscopeReadingPTR() *QGyroscopeReading { + return ptr +} diff --git a/sensors/qgyroscopereading.h b/sensors/qgyroscopereading.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/sensors/qgyroscopereading.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qholsterfilter.cpp b/sensors/qholsterfilter.cpp new file mode 100755 index 00000000..224dfc68 --- /dev/null +++ b/sensors/qholsterfilter.cpp @@ -0,0 +1,17 @@ +#include "qholsterfilter.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQHolsterFilter: public QHolsterFilter { +public: +}; + +int QHolsterFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading){ + return static_cast(ptr)->filter(static_cast(reading)); +} + diff --git a/sensors/qholsterfilter.go b/sensors/qholsterfilter.go new file mode 100755 index 00000000..04430d16 --- /dev/null +++ b/sensors/qholsterfilter.go @@ -0,0 +1,40 @@ +package sensors + +//#include "qholsterfilter.h" +import "C" +import ( + "unsafe" +) + +type QHolsterFilter struct { + QSensorFilter +} + +type QHolsterFilterITF interface { + QSensorFilterITF + QHolsterFilterPTR() *QHolsterFilter +} + +func PointerFromQHolsterFilter(ptr QHolsterFilterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QHolsterFilterPTR().Pointer() + } + return nil +} + +func QHolsterFilterFromPointer(ptr unsafe.Pointer) *QHolsterFilter { + var n = new(QHolsterFilter) + n.SetPointer(ptr) + return n +} + +func (ptr *QHolsterFilter) QHolsterFilterPTR() *QHolsterFilter { + return ptr +} + +func (ptr *QHolsterFilter) Filter(reading QHolsterReadingITF) bool { + if ptr.Pointer() != nil { + return C.QHolsterFilter_Filter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQHolsterReading(reading))) != 0 + } + return false +} diff --git a/sensors/qholsterfilter.h b/sensors/qholsterfilter.h new file mode 100755 index 00000000..bc52610b --- /dev/null +++ b/sensors/qholsterfilter.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QHolsterFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qholsterreading.cpp b/sensors/qholsterreading.cpp new file mode 100755 index 00000000..e9fb39d2 --- /dev/null +++ b/sensors/qholsterreading.cpp @@ -0,0 +1,20 @@ +#include "qholsterreading.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQHolsterReading: public QHolsterReading { +public: +}; + +int QHolsterReading_Holstered(QtObjectPtr ptr){ + return static_cast(ptr)->holstered(); +} + +void QHolsterReading_SetHolstered(QtObjectPtr ptr, int holstered){ + static_cast(ptr)->setHolstered(holstered != 0); +} + diff --git a/sensors/qholsterreading.go b/sensors/qholsterreading.go new file mode 100755 index 00000000..7d9c192b --- /dev/null +++ b/sensors/qholsterreading.go @@ -0,0 +1,50 @@ +package sensors + +//#include "qholsterreading.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QHolsterReading struct { + QSensorReading +} + +type QHolsterReadingITF interface { + QSensorReadingITF + QHolsterReadingPTR() *QHolsterReading +} + +func PointerFromQHolsterReading(ptr QHolsterReadingITF) unsafe.Pointer { + if ptr != nil { + return ptr.QHolsterReadingPTR().Pointer() + } + return nil +} + +func QHolsterReadingFromPointer(ptr unsafe.Pointer) *QHolsterReading { + var n = new(QHolsterReading) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QHolsterReading_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QHolsterReading) QHolsterReadingPTR() *QHolsterReading { + return ptr +} + +func (ptr *QHolsterReading) Holstered() bool { + if ptr.Pointer() != nil { + return C.QHolsterReading_Holstered(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QHolsterReading) SetHolstered(holstered bool) { + if ptr.Pointer() != nil { + C.QHolsterReading_SetHolstered(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(holstered))) + } +} diff --git a/sensors/qholsterreading.h b/sensors/qholsterreading.h new file mode 100755 index 00000000..908df8cc --- /dev/null +++ b/sensors/qholsterreading.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QHolsterReading_Holstered(QtObjectPtr ptr); +void QHolsterReading_SetHolstered(QtObjectPtr ptr, int holstered); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qholstersensor.cpp b/sensors/qholstersensor.cpp new file mode 100755 index 00000000..91083592 --- /dev/null +++ b/sensors/qholstersensor.cpp @@ -0,0 +1,25 @@ +#include "qholstersensor.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQHolsterSensor: public QHolsterSensor { +public: +}; + +QtObjectPtr QHolsterSensor_Reading(QtObjectPtr ptr){ + return static_cast(ptr)->reading(); +} + +QtObjectPtr QHolsterSensor_NewQHolsterSensor(QtObjectPtr parent){ + return new QHolsterSensor(static_cast(parent)); +} + +void QHolsterSensor_DestroyQHolsterSensor(QtObjectPtr ptr){ + static_cast(ptr)->~QHolsterSensor(); +} + diff --git a/sensors/qholstersensor.go b/sensors/qholstersensor.go new file mode 100755 index 00000000..59741f0f --- /dev/null +++ b/sensors/qholstersensor.go @@ -0,0 +1,56 @@ +package sensors + +//#include "qholstersensor.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QHolsterSensor struct { + QSensor +} + +type QHolsterSensorITF interface { + QSensorITF + QHolsterSensorPTR() *QHolsterSensor +} + +func PointerFromQHolsterSensor(ptr QHolsterSensorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QHolsterSensorPTR().Pointer() + } + return nil +} + +func QHolsterSensorFromPointer(ptr unsafe.Pointer) *QHolsterSensor { + var n = new(QHolsterSensor) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QHolsterSensor_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QHolsterSensor) QHolsterSensorPTR() *QHolsterSensor { + return ptr +} + +func (ptr *QHolsterSensor) Reading() *QHolsterReading { + if ptr.Pointer() != nil { + return QHolsterReadingFromPointer(unsafe.Pointer(C.QHolsterSensor_Reading(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func NewQHolsterSensor(parent core.QObjectITF) *QHolsterSensor { + return QHolsterSensorFromPointer(unsafe.Pointer(C.QHolsterSensor_NewQHolsterSensor(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QHolsterSensor) DestroyQHolsterSensor() { + if ptr.Pointer() != nil { + C.QHolsterSensor_DestroyQHolsterSensor(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/sensors/qholstersensor.h b/sensors/qholstersensor.h new file mode 100755 index 00000000..5831afe5 --- /dev/null +++ b/sensors/qholstersensor.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QHolsterSensor_Reading(QtObjectPtr ptr); +QtObjectPtr QHolsterSensor_NewQHolsterSensor(QtObjectPtr parent); +void QHolsterSensor_DestroyQHolsterSensor(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qirproximityfilter.cpp b/sensors/qirproximityfilter.cpp new file mode 100755 index 00000000..ce3b36c0 --- /dev/null +++ b/sensors/qirproximityfilter.cpp @@ -0,0 +1,17 @@ +#include "qirproximityfilter.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQIRProximityFilter: public QIRProximityFilter { +public: +}; + +int QIRProximityFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading){ + return static_cast(ptr)->filter(static_cast(reading)); +} + diff --git a/sensors/qirproximityfilter.go b/sensors/qirproximityfilter.go new file mode 100755 index 00000000..665fae75 --- /dev/null +++ b/sensors/qirproximityfilter.go @@ -0,0 +1,40 @@ +package sensors + +//#include "qirproximityfilter.h" +import "C" +import ( + "unsafe" +) + +type QIRProximityFilter struct { + QSensorFilter +} + +type QIRProximityFilterITF interface { + QSensorFilterITF + QIRProximityFilterPTR() *QIRProximityFilter +} + +func PointerFromQIRProximityFilter(ptr QIRProximityFilterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QIRProximityFilterPTR().Pointer() + } + return nil +} + +func QIRProximityFilterFromPointer(ptr unsafe.Pointer) *QIRProximityFilter { + var n = new(QIRProximityFilter) + n.SetPointer(ptr) + return n +} + +func (ptr *QIRProximityFilter) QIRProximityFilterPTR() *QIRProximityFilter { + return ptr +} + +func (ptr *QIRProximityFilter) Filter(reading QIRProximityReadingITF) bool { + if ptr.Pointer() != nil { + return C.QIRProximityFilter_Filter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQIRProximityReading(reading))) != 0 + } + return false +} diff --git a/sensors/qirproximityfilter.h b/sensors/qirproximityfilter.h new file mode 100755 index 00000000..87bf4689 --- /dev/null +++ b/sensors/qirproximityfilter.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QIRProximityFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qirproximityreading.cpp b/sensors/qirproximityreading.cpp new file mode 100755 index 00000000..4dfacb32 --- /dev/null +++ b/sensors/qirproximityreading.cpp @@ -0,0 +1,12 @@ +#include "qirproximityreading.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQIRProximityReading: public QIRProximityReading { +public: +}; + diff --git a/sensors/qirproximityreading.go b/sensors/qirproximityreading.go new file mode 100755 index 00000000..09ebe374 --- /dev/null +++ b/sensors/qirproximityreading.go @@ -0,0 +1,37 @@ +package sensors + +//#include "qirproximityreading.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QIRProximityReading struct { + QSensorReading +} + +type QIRProximityReadingITF interface { + QSensorReadingITF + QIRProximityReadingPTR() *QIRProximityReading +} + +func PointerFromQIRProximityReading(ptr QIRProximityReadingITF) unsafe.Pointer { + if ptr != nil { + return ptr.QIRProximityReadingPTR().Pointer() + } + return nil +} + +func QIRProximityReadingFromPointer(ptr unsafe.Pointer) *QIRProximityReading { + var n = new(QIRProximityReading) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QIRProximityReading_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QIRProximityReading) QIRProximityReadingPTR() *QIRProximityReading { + return ptr +} diff --git a/sensors/qirproximityreading.h b/sensors/qirproximityreading.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/sensors/qirproximityreading.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qirproximitysensor.cpp b/sensors/qirproximitysensor.cpp new file mode 100755 index 00000000..9ad42dc2 --- /dev/null +++ b/sensors/qirproximitysensor.cpp @@ -0,0 +1,25 @@ +#include "qirproximitysensor.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQIRProximitySensor: public QIRProximitySensor { +public: +}; + +QtObjectPtr QIRProximitySensor_Reading(QtObjectPtr ptr){ + return static_cast(ptr)->reading(); +} + +QtObjectPtr QIRProximitySensor_NewQIRProximitySensor(QtObjectPtr parent){ + return new QIRProximitySensor(static_cast(parent)); +} + +void QIRProximitySensor_DestroyQIRProximitySensor(QtObjectPtr ptr){ + static_cast(ptr)->~QIRProximitySensor(); +} + diff --git a/sensors/qirproximitysensor.go b/sensors/qirproximitysensor.go new file mode 100755 index 00000000..04cfda37 --- /dev/null +++ b/sensors/qirproximitysensor.go @@ -0,0 +1,56 @@ +package sensors + +//#include "qirproximitysensor.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QIRProximitySensor struct { + QSensor +} + +type QIRProximitySensorITF interface { + QSensorITF + QIRProximitySensorPTR() *QIRProximitySensor +} + +func PointerFromQIRProximitySensor(ptr QIRProximitySensorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QIRProximitySensorPTR().Pointer() + } + return nil +} + +func QIRProximitySensorFromPointer(ptr unsafe.Pointer) *QIRProximitySensor { + var n = new(QIRProximitySensor) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QIRProximitySensor_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QIRProximitySensor) QIRProximitySensorPTR() *QIRProximitySensor { + return ptr +} + +func (ptr *QIRProximitySensor) Reading() *QIRProximityReading { + if ptr.Pointer() != nil { + return QIRProximityReadingFromPointer(unsafe.Pointer(C.QIRProximitySensor_Reading(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func NewQIRProximitySensor(parent core.QObjectITF) *QIRProximitySensor { + return QIRProximitySensorFromPointer(unsafe.Pointer(C.QIRProximitySensor_NewQIRProximitySensor(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QIRProximitySensor) DestroyQIRProximitySensor() { + if ptr.Pointer() != nil { + C.QIRProximitySensor_DestroyQIRProximitySensor(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/sensors/qirproximitysensor.h b/sensors/qirproximitysensor.h new file mode 100755 index 00000000..112daa41 --- /dev/null +++ b/sensors/qirproximitysensor.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QIRProximitySensor_Reading(QtObjectPtr ptr); +QtObjectPtr QIRProximitySensor_NewQIRProximitySensor(QtObjectPtr parent); +void QIRProximitySensor_DestroyQIRProximitySensor(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qlightfilter.cpp b/sensors/qlightfilter.cpp new file mode 100755 index 00000000..9a4ebd48 --- /dev/null +++ b/sensors/qlightfilter.cpp @@ -0,0 +1,17 @@ +#include "qlightfilter.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQLightFilter: public QLightFilter { +public: +}; + +int QLightFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading){ + return static_cast(ptr)->filter(static_cast(reading)); +} + diff --git a/sensors/qlightfilter.go b/sensors/qlightfilter.go new file mode 100755 index 00000000..7955be8c --- /dev/null +++ b/sensors/qlightfilter.go @@ -0,0 +1,40 @@ +package sensors + +//#include "qlightfilter.h" +import "C" +import ( + "unsafe" +) + +type QLightFilter struct { + QSensorFilter +} + +type QLightFilterITF interface { + QSensorFilterITF + QLightFilterPTR() *QLightFilter +} + +func PointerFromQLightFilter(ptr QLightFilterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QLightFilterPTR().Pointer() + } + return nil +} + +func QLightFilterFromPointer(ptr unsafe.Pointer) *QLightFilter { + var n = new(QLightFilter) + n.SetPointer(ptr) + return n +} + +func (ptr *QLightFilter) QLightFilterPTR() *QLightFilter { + return ptr +} + +func (ptr *QLightFilter) Filter(reading QLightReadingITF) bool { + if ptr.Pointer() != nil { + return C.QLightFilter_Filter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLightReading(reading))) != 0 + } + return false +} diff --git a/sensors/qlightfilter.h b/sensors/qlightfilter.h new file mode 100755 index 00000000..ba607add --- /dev/null +++ b/sensors/qlightfilter.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QLightFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qlightreading.cpp b/sensors/qlightreading.cpp new file mode 100755 index 00000000..ff58c749 --- /dev/null +++ b/sensors/qlightreading.cpp @@ -0,0 +1,12 @@ +#include "qlightreading.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQLightReading: public QLightReading { +public: +}; + diff --git a/sensors/qlightreading.go b/sensors/qlightreading.go new file mode 100755 index 00000000..d32c6416 --- /dev/null +++ b/sensors/qlightreading.go @@ -0,0 +1,37 @@ +package sensors + +//#include "qlightreading.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QLightReading struct { + QSensorReading +} + +type QLightReadingITF interface { + QSensorReadingITF + QLightReadingPTR() *QLightReading +} + +func PointerFromQLightReading(ptr QLightReadingITF) unsafe.Pointer { + if ptr != nil { + return ptr.QLightReadingPTR().Pointer() + } + return nil +} + +func QLightReadingFromPointer(ptr unsafe.Pointer) *QLightReading { + var n = new(QLightReading) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QLightReading_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QLightReading) QLightReadingPTR() *QLightReading { + return ptr +} diff --git a/sensors/qlightreading.h b/sensors/qlightreading.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/sensors/qlightreading.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qlightsensor.cpp b/sensors/qlightsensor.cpp new file mode 100755 index 00000000..5e20a24e --- /dev/null +++ b/sensors/qlightsensor.cpp @@ -0,0 +1,25 @@ +#include "qlightsensor.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQLightSensor: public QLightSensor { +public: +}; + +QtObjectPtr QLightSensor_Reading(QtObjectPtr ptr){ + return static_cast(ptr)->reading(); +} + +QtObjectPtr QLightSensor_NewQLightSensor(QtObjectPtr parent){ + return new QLightSensor(static_cast(parent)); +} + +void QLightSensor_DestroyQLightSensor(QtObjectPtr ptr){ + static_cast(ptr)->~QLightSensor(); +} + diff --git a/sensors/qlightsensor.go b/sensors/qlightsensor.go new file mode 100755 index 00000000..c342114f --- /dev/null +++ b/sensors/qlightsensor.go @@ -0,0 +1,56 @@ +package sensors + +//#include "qlightsensor.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QLightSensor struct { + QSensor +} + +type QLightSensorITF interface { + QSensorITF + QLightSensorPTR() *QLightSensor +} + +func PointerFromQLightSensor(ptr QLightSensorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QLightSensorPTR().Pointer() + } + return nil +} + +func QLightSensorFromPointer(ptr unsafe.Pointer) *QLightSensor { + var n = new(QLightSensor) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QLightSensor_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QLightSensor) QLightSensorPTR() *QLightSensor { + return ptr +} + +func (ptr *QLightSensor) Reading() *QLightReading { + if ptr.Pointer() != nil { + return QLightReadingFromPointer(unsafe.Pointer(C.QLightSensor_Reading(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func NewQLightSensor(parent core.QObjectITF) *QLightSensor { + return QLightSensorFromPointer(unsafe.Pointer(C.QLightSensor_NewQLightSensor(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QLightSensor) DestroyQLightSensor() { + if ptr.Pointer() != nil { + C.QLightSensor_DestroyQLightSensor(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/sensors/qlightsensor.h b/sensors/qlightsensor.h new file mode 100755 index 00000000..3be094fa --- /dev/null +++ b/sensors/qlightsensor.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QLightSensor_Reading(QtObjectPtr ptr); +QtObjectPtr QLightSensor_NewQLightSensor(QtObjectPtr parent); +void QLightSensor_DestroyQLightSensor(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qmagnetometer.cpp b/sensors/qmagnetometer.cpp new file mode 100755 index 00000000..b7875311 --- /dev/null +++ b/sensors/qmagnetometer.cpp @@ -0,0 +1,42 @@ +#include "qmagnetometer.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMagnetometer: public QMagnetometer { +public: +void Signal_ReturnGeoValuesChanged(bool returnGeoValues){callbackQMagnetometerReturnGeoValuesChanged(this->objectName().toUtf8().data(), returnGeoValues);}; +}; + +QtObjectPtr QMagnetometer_Reading(QtObjectPtr ptr){ + return static_cast(ptr)->reading(); +} + +int QMagnetometer_ReturnGeoValues(QtObjectPtr ptr){ + return static_cast(ptr)->returnGeoValues(); +} + +void QMagnetometer_SetReturnGeoValues(QtObjectPtr ptr, int returnGeoValues){ + static_cast(ptr)->setReturnGeoValues(returnGeoValues != 0); +} + +QtObjectPtr QMagnetometer_NewQMagnetometer(QtObjectPtr parent){ + return new QMagnetometer(static_cast(parent)); +} + +void QMagnetometer_ConnectReturnGeoValuesChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMagnetometer::returnGeoValuesChanged), static_cast(ptr), static_cast(&MyQMagnetometer::Signal_ReturnGeoValuesChanged));; +} + +void QMagnetometer_DisconnectReturnGeoValuesChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMagnetometer::returnGeoValuesChanged), static_cast(ptr), static_cast(&MyQMagnetometer::Signal_ReturnGeoValuesChanged));; +} + +void QMagnetometer_DestroyQMagnetometer(QtObjectPtr ptr){ + static_cast(ptr)->~QMagnetometer(); +} + diff --git a/sensors/qmagnetometer.go b/sensors/qmagnetometer.go new file mode 100755 index 00000000..3d09bf47 --- /dev/null +++ b/sensors/qmagnetometer.go @@ -0,0 +1,88 @@ +package sensors + +//#include "qmagnetometer.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QMagnetometer struct { + QSensor +} + +type QMagnetometerITF interface { + QSensorITF + QMagnetometerPTR() *QMagnetometer +} + +func PointerFromQMagnetometer(ptr QMagnetometerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMagnetometerPTR().Pointer() + } + return nil +} + +func QMagnetometerFromPointer(ptr unsafe.Pointer) *QMagnetometer { + var n = new(QMagnetometer) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMagnetometer_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMagnetometer) QMagnetometerPTR() *QMagnetometer { + return ptr +} + +func (ptr *QMagnetometer) Reading() *QMagnetometerReading { + if ptr.Pointer() != nil { + return QMagnetometerReadingFromPointer(unsafe.Pointer(C.QMagnetometer_Reading(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMagnetometer) ReturnGeoValues() bool { + if ptr.Pointer() != nil { + return C.QMagnetometer_ReturnGeoValues(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMagnetometer) SetReturnGeoValues(returnGeoValues bool) { + if ptr.Pointer() != nil { + C.QMagnetometer_SetReturnGeoValues(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(returnGeoValues))) + } +} + +func NewQMagnetometer(parent core.QObjectITF) *QMagnetometer { + return QMagnetometerFromPointer(unsafe.Pointer(C.QMagnetometer_NewQMagnetometer(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QMagnetometer) ConnectReturnGeoValuesChanged(f func(returnGeoValues bool)) { + if ptr.Pointer() != nil { + C.QMagnetometer_ConnectReturnGeoValuesChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "returnGeoValuesChanged", f) + } +} + +func (ptr *QMagnetometer) DisconnectReturnGeoValuesChanged() { + if ptr.Pointer() != nil { + C.QMagnetometer_DisconnectReturnGeoValuesChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "returnGeoValuesChanged") + } +} + +//export callbackQMagnetometerReturnGeoValuesChanged +func callbackQMagnetometerReturnGeoValuesChanged(ptrName *C.char, returnGeoValues C.int) { + qt.GetSignal(C.GoString(ptrName), "returnGeoValuesChanged").(func(bool))(int(returnGeoValues) != 0) +} + +func (ptr *QMagnetometer) DestroyQMagnetometer() { + if ptr.Pointer() != nil { + C.QMagnetometer_DestroyQMagnetometer(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/sensors/qmagnetometer.h b/sensors/qmagnetometer.h new file mode 100755 index 00000000..7883f68c --- /dev/null +++ b/sensors/qmagnetometer.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QMagnetometer_Reading(QtObjectPtr ptr); +int QMagnetometer_ReturnGeoValues(QtObjectPtr ptr); +void QMagnetometer_SetReturnGeoValues(QtObjectPtr ptr, int returnGeoValues); +QtObjectPtr QMagnetometer_NewQMagnetometer(QtObjectPtr parent); +void QMagnetometer_ConnectReturnGeoValuesChanged(QtObjectPtr ptr); +void QMagnetometer_DisconnectReturnGeoValuesChanged(QtObjectPtr ptr); +void QMagnetometer_DestroyQMagnetometer(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qmagnetometerfilter.cpp b/sensors/qmagnetometerfilter.cpp new file mode 100755 index 00000000..6646dd56 --- /dev/null +++ b/sensors/qmagnetometerfilter.cpp @@ -0,0 +1,18 @@ +#include "qmagnetometerfilter.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMagnetometerFilter: public QMagnetometerFilter { +public: +}; + +int QMagnetometerFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading){ + return static_cast(ptr)->filter(static_cast(reading)); +} + diff --git a/sensors/qmagnetometerfilter.go b/sensors/qmagnetometerfilter.go new file mode 100755 index 00000000..3cf52a63 --- /dev/null +++ b/sensors/qmagnetometerfilter.go @@ -0,0 +1,40 @@ +package sensors + +//#include "qmagnetometerfilter.h" +import "C" +import ( + "unsafe" +) + +type QMagnetometerFilter struct { + QSensorFilter +} + +type QMagnetometerFilterITF interface { + QSensorFilterITF + QMagnetometerFilterPTR() *QMagnetometerFilter +} + +func PointerFromQMagnetometerFilter(ptr QMagnetometerFilterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMagnetometerFilterPTR().Pointer() + } + return nil +} + +func QMagnetometerFilterFromPointer(ptr unsafe.Pointer) *QMagnetometerFilter { + var n = new(QMagnetometerFilter) + n.SetPointer(ptr) + return n +} + +func (ptr *QMagnetometerFilter) QMagnetometerFilterPTR() *QMagnetometerFilter { + return ptr +} + +func (ptr *QMagnetometerFilter) Filter(reading QMagnetometerReadingITF) bool { + if ptr.Pointer() != nil { + return C.QMagnetometerFilter_Filter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMagnetometerReading(reading))) != 0 + } + return false +} diff --git a/sensors/qmagnetometerfilter.h b/sensors/qmagnetometerfilter.h new file mode 100755 index 00000000..336305e9 --- /dev/null +++ b/sensors/qmagnetometerfilter.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QMagnetometerFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qmagnetometerreading.cpp b/sensors/qmagnetometerreading.cpp new file mode 100755 index 00000000..dc0cf5b3 --- /dev/null +++ b/sensors/qmagnetometerreading.cpp @@ -0,0 +1,13 @@ +#include "qmagnetometerreading.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMagnetometerReading: public QMagnetometerReading { +public: +}; + diff --git a/sensors/qmagnetometerreading.go b/sensors/qmagnetometerreading.go new file mode 100755 index 00000000..76364a51 --- /dev/null +++ b/sensors/qmagnetometerreading.go @@ -0,0 +1,37 @@ +package sensors + +//#include "qmagnetometerreading.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QMagnetometerReading struct { + QSensorReading +} + +type QMagnetometerReadingITF interface { + QSensorReadingITF + QMagnetometerReadingPTR() *QMagnetometerReading +} + +func PointerFromQMagnetometerReading(ptr QMagnetometerReadingITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMagnetometerReadingPTR().Pointer() + } + return nil +} + +func QMagnetometerReadingFromPointer(ptr unsafe.Pointer) *QMagnetometerReading { + var n = new(QMagnetometerReading) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMagnetometerReading_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMagnetometerReading) QMagnetometerReadingPTR() *QMagnetometerReading { + return ptr +} diff --git a/sensors/qmagnetometerreading.h b/sensors/qmagnetometerreading.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/sensors/qmagnetometerreading.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qorientationfilter.cpp b/sensors/qorientationfilter.cpp new file mode 100755 index 00000000..fe16aca1 --- /dev/null +++ b/sensors/qorientationfilter.cpp @@ -0,0 +1,17 @@ +#include "qorientationfilter.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOrientationFilter: public QOrientationFilter { +public: +}; + +int QOrientationFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading){ + return static_cast(ptr)->filter(static_cast(reading)); +} + diff --git a/sensors/qorientationfilter.go b/sensors/qorientationfilter.go new file mode 100755 index 00000000..9faeb49f --- /dev/null +++ b/sensors/qorientationfilter.go @@ -0,0 +1,40 @@ +package sensors + +//#include "qorientationfilter.h" +import "C" +import ( + "unsafe" +) + +type QOrientationFilter struct { + QSensorFilter +} + +type QOrientationFilterITF interface { + QSensorFilterITF + QOrientationFilterPTR() *QOrientationFilter +} + +func PointerFromQOrientationFilter(ptr QOrientationFilterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOrientationFilterPTR().Pointer() + } + return nil +} + +func QOrientationFilterFromPointer(ptr unsafe.Pointer) *QOrientationFilter { + var n = new(QOrientationFilter) + n.SetPointer(ptr) + return n +} + +func (ptr *QOrientationFilter) QOrientationFilterPTR() *QOrientationFilter { + return ptr +} + +func (ptr *QOrientationFilter) Filter(reading QOrientationReadingITF) bool { + if ptr.Pointer() != nil { + return C.QOrientationFilter_Filter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQOrientationReading(reading))) != 0 + } + return false +} diff --git a/sensors/qorientationfilter.h b/sensors/qorientationfilter.h new file mode 100755 index 00000000..aefd73c9 --- /dev/null +++ b/sensors/qorientationfilter.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QOrientationFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qorientationreading.cpp b/sensors/qorientationreading.cpp new file mode 100755 index 00000000..fa474b1e --- /dev/null +++ b/sensors/qorientationreading.cpp @@ -0,0 +1,20 @@ +#include "qorientationreading.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOrientationReading: public QOrientationReading { +public: +}; + +int QOrientationReading_Orientation(QtObjectPtr ptr){ + return static_cast(ptr)->orientation(); +} + +void QOrientationReading_SetOrientation(QtObjectPtr ptr, int orientation){ + static_cast(ptr)->setOrientation(static_cast(orientation)); +} + diff --git a/sensors/qorientationreading.go b/sensors/qorientationreading.go new file mode 100755 index 00000000..f0461418 --- /dev/null +++ b/sensors/qorientationreading.go @@ -0,0 +1,63 @@ +package sensors + +//#include "qorientationreading.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QOrientationReading struct { + QSensorReading +} + +type QOrientationReadingITF interface { + QSensorReadingITF + QOrientationReadingPTR() *QOrientationReading +} + +func PointerFromQOrientationReading(ptr QOrientationReadingITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOrientationReadingPTR().Pointer() + } + return nil +} + +func QOrientationReadingFromPointer(ptr unsafe.Pointer) *QOrientationReading { + var n = new(QOrientationReading) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QOrientationReading_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QOrientationReading) QOrientationReadingPTR() *QOrientationReading { + return ptr +} + +//QOrientationReading::Orientation +type QOrientationReading__Orientation int + +var ( + QOrientationReading__Undefined = QOrientationReading__Orientation(0) + QOrientationReading__TopUp = QOrientationReading__Orientation(1) + QOrientationReading__TopDown = QOrientationReading__Orientation(2) + QOrientationReading__LeftUp = QOrientationReading__Orientation(3) + QOrientationReading__RightUp = QOrientationReading__Orientation(4) + QOrientationReading__FaceUp = QOrientationReading__Orientation(5) + QOrientationReading__FaceDown = QOrientationReading__Orientation(6) +) + +func (ptr *QOrientationReading) Orientation() QOrientationReading__Orientation { + if ptr.Pointer() != nil { + return QOrientationReading__Orientation(C.QOrientationReading_Orientation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOrientationReading) SetOrientation(orientation QOrientationReading__Orientation) { + if ptr.Pointer() != nil { + C.QOrientationReading_SetOrientation(C.QtObjectPtr(ptr.Pointer()), C.int(orientation)) + } +} diff --git a/sensors/qorientationreading.h b/sensors/qorientationreading.h new file mode 100755 index 00000000..62a84421 --- /dev/null +++ b/sensors/qorientationreading.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QOrientationReading_Orientation(QtObjectPtr ptr); +void QOrientationReading_SetOrientation(QtObjectPtr ptr, int orientation); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qorientationsensor.cpp b/sensors/qorientationsensor.cpp new file mode 100755 index 00000000..17b77a55 --- /dev/null +++ b/sensors/qorientationsensor.cpp @@ -0,0 +1,25 @@ +#include "qorientationsensor.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOrientationSensor: public QOrientationSensor { +public: +}; + +QtObjectPtr QOrientationSensor_Reading(QtObjectPtr ptr){ + return static_cast(ptr)->reading(); +} + +QtObjectPtr QOrientationSensor_NewQOrientationSensor(QtObjectPtr parent){ + return new QOrientationSensor(static_cast(parent)); +} + +void QOrientationSensor_DestroyQOrientationSensor(QtObjectPtr ptr){ + static_cast(ptr)->~QOrientationSensor(); +} + diff --git a/sensors/qorientationsensor.go b/sensors/qorientationsensor.go new file mode 100755 index 00000000..f1f4b367 --- /dev/null +++ b/sensors/qorientationsensor.go @@ -0,0 +1,56 @@ +package sensors + +//#include "qorientationsensor.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QOrientationSensor struct { + QSensor +} + +type QOrientationSensorITF interface { + QSensorITF + QOrientationSensorPTR() *QOrientationSensor +} + +func PointerFromQOrientationSensor(ptr QOrientationSensorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOrientationSensorPTR().Pointer() + } + return nil +} + +func QOrientationSensorFromPointer(ptr unsafe.Pointer) *QOrientationSensor { + var n = new(QOrientationSensor) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QOrientationSensor_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QOrientationSensor) QOrientationSensorPTR() *QOrientationSensor { + return ptr +} + +func (ptr *QOrientationSensor) Reading() *QOrientationReading { + if ptr.Pointer() != nil { + return QOrientationReadingFromPointer(unsafe.Pointer(C.QOrientationSensor_Reading(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func NewQOrientationSensor(parent core.QObjectITF) *QOrientationSensor { + return QOrientationSensorFromPointer(unsafe.Pointer(C.QOrientationSensor_NewQOrientationSensor(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QOrientationSensor) DestroyQOrientationSensor() { + if ptr.Pointer() != nil { + C.QOrientationSensor_DestroyQOrientationSensor(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/sensors/qorientationsensor.h b/sensors/qorientationsensor.h new file mode 100755 index 00000000..7944c928 --- /dev/null +++ b/sensors/qorientationsensor.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOrientationSensor_Reading(QtObjectPtr ptr); +QtObjectPtr QOrientationSensor_NewQOrientationSensor(QtObjectPtr parent); +void QOrientationSensor_DestroyQOrientationSensor(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qpressurefilter.cpp b/sensors/qpressurefilter.cpp new file mode 100755 index 00000000..4d9f37de --- /dev/null +++ b/sensors/qpressurefilter.cpp @@ -0,0 +1,17 @@ +#include "qpressurefilter.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPressureFilter: public QPressureFilter { +public: +}; + +int QPressureFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading){ + return static_cast(ptr)->filter(static_cast(reading)); +} + diff --git a/sensors/qpressurefilter.go b/sensors/qpressurefilter.go new file mode 100755 index 00000000..a590f59f --- /dev/null +++ b/sensors/qpressurefilter.go @@ -0,0 +1,40 @@ +package sensors + +//#include "qpressurefilter.h" +import "C" +import ( + "unsafe" +) + +type QPressureFilter struct { + QSensorFilter +} + +type QPressureFilterITF interface { + QSensorFilterITF + QPressureFilterPTR() *QPressureFilter +} + +func PointerFromQPressureFilter(ptr QPressureFilterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPressureFilterPTR().Pointer() + } + return nil +} + +func QPressureFilterFromPointer(ptr unsafe.Pointer) *QPressureFilter { + var n = new(QPressureFilter) + n.SetPointer(ptr) + return n +} + +func (ptr *QPressureFilter) QPressureFilterPTR() *QPressureFilter { + return ptr +} + +func (ptr *QPressureFilter) Filter(reading QPressureReadingITF) bool { + if ptr.Pointer() != nil { + return C.QPressureFilter_Filter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPressureReading(reading))) != 0 + } + return false +} diff --git a/sensors/qpressurefilter.h b/sensors/qpressurefilter.h new file mode 100755 index 00000000..19cd03f3 --- /dev/null +++ b/sensors/qpressurefilter.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QPressureFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qpressurereading.cpp b/sensors/qpressurereading.cpp new file mode 100755 index 00000000..8822ba9a --- /dev/null +++ b/sensors/qpressurereading.cpp @@ -0,0 +1,12 @@ +#include "qpressurereading.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPressureReading: public QPressureReading { +public: +}; + diff --git a/sensors/qpressurereading.go b/sensors/qpressurereading.go new file mode 100755 index 00000000..d061cb49 --- /dev/null +++ b/sensors/qpressurereading.go @@ -0,0 +1,37 @@ +package sensors + +//#include "qpressurereading.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QPressureReading struct { + QSensorReading +} + +type QPressureReadingITF interface { + QSensorReadingITF + QPressureReadingPTR() *QPressureReading +} + +func PointerFromQPressureReading(ptr QPressureReadingITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPressureReadingPTR().Pointer() + } + return nil +} + +func QPressureReadingFromPointer(ptr unsafe.Pointer) *QPressureReading { + var n = new(QPressureReading) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QPressureReading_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QPressureReading) QPressureReadingPTR() *QPressureReading { + return ptr +} diff --git a/sensors/qpressurereading.h b/sensors/qpressurereading.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/sensors/qpressurereading.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qpressuresensor.cpp b/sensors/qpressuresensor.cpp new file mode 100755 index 00000000..8db938ad --- /dev/null +++ b/sensors/qpressuresensor.cpp @@ -0,0 +1,25 @@ +#include "qpressuresensor.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPressureSensor: public QPressureSensor { +public: +}; + +QtObjectPtr QPressureSensor_Reading(QtObjectPtr ptr){ + return static_cast(ptr)->reading(); +} + +QtObjectPtr QPressureSensor_NewQPressureSensor(QtObjectPtr parent){ + return new QPressureSensor(static_cast(parent)); +} + +void QPressureSensor_DestroyQPressureSensor(QtObjectPtr ptr){ + static_cast(ptr)->~QPressureSensor(); +} + diff --git a/sensors/qpressuresensor.go b/sensors/qpressuresensor.go new file mode 100755 index 00000000..18b3b4da --- /dev/null +++ b/sensors/qpressuresensor.go @@ -0,0 +1,56 @@ +package sensors + +//#include "qpressuresensor.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QPressureSensor struct { + QSensor +} + +type QPressureSensorITF interface { + QSensorITF + QPressureSensorPTR() *QPressureSensor +} + +func PointerFromQPressureSensor(ptr QPressureSensorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPressureSensorPTR().Pointer() + } + return nil +} + +func QPressureSensorFromPointer(ptr unsafe.Pointer) *QPressureSensor { + var n = new(QPressureSensor) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QPressureSensor_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QPressureSensor) QPressureSensorPTR() *QPressureSensor { + return ptr +} + +func (ptr *QPressureSensor) Reading() *QPressureReading { + if ptr.Pointer() != nil { + return QPressureReadingFromPointer(unsafe.Pointer(C.QPressureSensor_Reading(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func NewQPressureSensor(parent core.QObjectITF) *QPressureSensor { + return QPressureSensorFromPointer(unsafe.Pointer(C.QPressureSensor_NewQPressureSensor(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QPressureSensor) DestroyQPressureSensor() { + if ptr.Pointer() != nil { + C.QPressureSensor_DestroyQPressureSensor(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/sensors/qpressuresensor.h b/sensors/qpressuresensor.h new file mode 100755 index 00000000..21b34da0 --- /dev/null +++ b/sensors/qpressuresensor.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QPressureSensor_Reading(QtObjectPtr ptr); +QtObjectPtr QPressureSensor_NewQPressureSensor(QtObjectPtr parent); +void QPressureSensor_DestroyQPressureSensor(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qproximityfilter.cpp b/sensors/qproximityfilter.cpp new file mode 100755 index 00000000..f903626c --- /dev/null +++ b/sensors/qproximityfilter.cpp @@ -0,0 +1,17 @@ +#include "qproximityfilter.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQProximityFilter: public QProximityFilter { +public: +}; + +int QProximityFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading){ + return static_cast(ptr)->filter(static_cast(reading)); +} + diff --git a/sensors/qproximityfilter.go b/sensors/qproximityfilter.go new file mode 100755 index 00000000..d3dcf412 --- /dev/null +++ b/sensors/qproximityfilter.go @@ -0,0 +1,40 @@ +package sensors + +//#include "qproximityfilter.h" +import "C" +import ( + "unsafe" +) + +type QProximityFilter struct { + QSensorFilter +} + +type QProximityFilterITF interface { + QSensorFilterITF + QProximityFilterPTR() *QProximityFilter +} + +func PointerFromQProximityFilter(ptr QProximityFilterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QProximityFilterPTR().Pointer() + } + return nil +} + +func QProximityFilterFromPointer(ptr unsafe.Pointer) *QProximityFilter { + var n = new(QProximityFilter) + n.SetPointer(ptr) + return n +} + +func (ptr *QProximityFilter) QProximityFilterPTR() *QProximityFilter { + return ptr +} + +func (ptr *QProximityFilter) Filter(reading QProximityReadingITF) bool { + if ptr.Pointer() != nil { + return C.QProximityFilter_Filter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQProximityReading(reading))) != 0 + } + return false +} diff --git a/sensors/qproximityfilter.h b/sensors/qproximityfilter.h new file mode 100755 index 00000000..f838b266 --- /dev/null +++ b/sensors/qproximityfilter.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QProximityFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qproximityreading.cpp b/sensors/qproximityreading.cpp new file mode 100755 index 00000000..940941b7 --- /dev/null +++ b/sensors/qproximityreading.cpp @@ -0,0 +1,20 @@ +#include "qproximityreading.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQProximityReading: public QProximityReading { +public: +}; + +int QProximityReading_Close(QtObjectPtr ptr){ + return static_cast(ptr)->close(); +} + +void QProximityReading_SetClose(QtObjectPtr ptr, int close){ + static_cast(ptr)->setClose(close != 0); +} + diff --git a/sensors/qproximityreading.go b/sensors/qproximityreading.go new file mode 100755 index 00000000..8b9bb0b6 --- /dev/null +++ b/sensors/qproximityreading.go @@ -0,0 +1,50 @@ +package sensors + +//#include "qproximityreading.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QProximityReading struct { + QSensorReading +} + +type QProximityReadingITF interface { + QSensorReadingITF + QProximityReadingPTR() *QProximityReading +} + +func PointerFromQProximityReading(ptr QProximityReadingITF) unsafe.Pointer { + if ptr != nil { + return ptr.QProximityReadingPTR().Pointer() + } + return nil +} + +func QProximityReadingFromPointer(ptr unsafe.Pointer) *QProximityReading { + var n = new(QProximityReading) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QProximityReading_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QProximityReading) QProximityReadingPTR() *QProximityReading { + return ptr +} + +func (ptr *QProximityReading) Close() bool { + if ptr.Pointer() != nil { + return C.QProximityReading_Close(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QProximityReading) SetClose(close bool) { + if ptr.Pointer() != nil { + C.QProximityReading_SetClose(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(close))) + } +} diff --git a/sensors/qproximityreading.h b/sensors/qproximityreading.h new file mode 100755 index 00000000..4f02f3aa --- /dev/null +++ b/sensors/qproximityreading.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QProximityReading_Close(QtObjectPtr ptr); +void QProximityReading_SetClose(QtObjectPtr ptr, int close); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qproximitysensor.cpp b/sensors/qproximitysensor.cpp new file mode 100755 index 00000000..49b1d302 --- /dev/null +++ b/sensors/qproximitysensor.cpp @@ -0,0 +1,25 @@ +#include "qproximitysensor.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQProximitySensor: public QProximitySensor { +public: +}; + +QtObjectPtr QProximitySensor_Reading(QtObjectPtr ptr){ + return static_cast(ptr)->reading(); +} + +QtObjectPtr QProximitySensor_NewQProximitySensor(QtObjectPtr parent){ + return new QProximitySensor(static_cast(parent)); +} + +void QProximitySensor_DestroyQProximitySensor(QtObjectPtr ptr){ + static_cast(ptr)->~QProximitySensor(); +} + diff --git a/sensors/qproximitysensor.go b/sensors/qproximitysensor.go new file mode 100755 index 00000000..c9b39922 --- /dev/null +++ b/sensors/qproximitysensor.go @@ -0,0 +1,56 @@ +package sensors + +//#include "qproximitysensor.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QProximitySensor struct { + QSensor +} + +type QProximitySensorITF interface { + QSensorITF + QProximitySensorPTR() *QProximitySensor +} + +func PointerFromQProximitySensor(ptr QProximitySensorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QProximitySensorPTR().Pointer() + } + return nil +} + +func QProximitySensorFromPointer(ptr unsafe.Pointer) *QProximitySensor { + var n = new(QProximitySensor) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QProximitySensor_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QProximitySensor) QProximitySensorPTR() *QProximitySensor { + return ptr +} + +func (ptr *QProximitySensor) Reading() *QProximityReading { + if ptr.Pointer() != nil { + return QProximityReadingFromPointer(unsafe.Pointer(C.QProximitySensor_Reading(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func NewQProximitySensor(parent core.QObjectITF) *QProximitySensor { + return QProximitySensorFromPointer(unsafe.Pointer(C.QProximitySensor_NewQProximitySensor(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QProximitySensor) DestroyQProximitySensor() { + if ptr.Pointer() != nil { + C.QProximitySensor_DestroyQProximitySensor(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/sensors/qproximitysensor.h b/sensors/qproximitysensor.h new file mode 100755 index 00000000..04ae95b3 --- /dev/null +++ b/sensors/qproximitysensor.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QProximitySensor_Reading(QtObjectPtr ptr); +QtObjectPtr QProximitySensor_NewQProximitySensor(QtObjectPtr parent); +void QProximitySensor_DestroyQProximitySensor(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qrotationfilter.cpp b/sensors/qrotationfilter.cpp new file mode 100755 index 00000000..a6b54d26 --- /dev/null +++ b/sensors/qrotationfilter.cpp @@ -0,0 +1,17 @@ +#include "qrotationfilter.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQRotationFilter: public QRotationFilter { +public: +}; + +int QRotationFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading){ + return static_cast(ptr)->filter(static_cast(reading)); +} + diff --git a/sensors/qrotationfilter.go b/sensors/qrotationfilter.go new file mode 100755 index 00000000..a1f43953 --- /dev/null +++ b/sensors/qrotationfilter.go @@ -0,0 +1,40 @@ +package sensors + +//#include "qrotationfilter.h" +import "C" +import ( + "unsafe" +) + +type QRotationFilter struct { + QSensorFilter +} + +type QRotationFilterITF interface { + QSensorFilterITF + QRotationFilterPTR() *QRotationFilter +} + +func PointerFromQRotationFilter(ptr QRotationFilterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QRotationFilterPTR().Pointer() + } + return nil +} + +func QRotationFilterFromPointer(ptr unsafe.Pointer) *QRotationFilter { + var n = new(QRotationFilter) + n.SetPointer(ptr) + return n +} + +func (ptr *QRotationFilter) QRotationFilterPTR() *QRotationFilter { + return ptr +} + +func (ptr *QRotationFilter) Filter(reading QRotationReadingITF) bool { + if ptr.Pointer() != nil { + return C.QRotationFilter_Filter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQRotationReading(reading))) != 0 + } + return false +} diff --git a/sensors/qrotationfilter.h b/sensors/qrotationfilter.h new file mode 100755 index 00000000..e5704641 --- /dev/null +++ b/sensors/qrotationfilter.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QRotationFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qrotationreading.cpp b/sensors/qrotationreading.cpp new file mode 100755 index 00000000..ca58182b --- /dev/null +++ b/sensors/qrotationreading.cpp @@ -0,0 +1,12 @@ +#include "qrotationreading.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQRotationReading: public QRotationReading { +public: +}; + diff --git a/sensors/qrotationreading.go b/sensors/qrotationreading.go new file mode 100755 index 00000000..4a8908d2 --- /dev/null +++ b/sensors/qrotationreading.go @@ -0,0 +1,37 @@ +package sensors + +//#include "qrotationreading.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QRotationReading struct { + QSensorReading +} + +type QRotationReadingITF interface { + QSensorReadingITF + QRotationReadingPTR() *QRotationReading +} + +func PointerFromQRotationReading(ptr QRotationReadingITF) unsafe.Pointer { + if ptr != nil { + return ptr.QRotationReadingPTR().Pointer() + } + return nil +} + +func QRotationReadingFromPointer(ptr unsafe.Pointer) *QRotationReading { + var n = new(QRotationReading) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QRotationReading_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QRotationReading) QRotationReadingPTR() *QRotationReading { + return ptr +} diff --git a/sensors/qrotationreading.h b/sensors/qrotationreading.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/sensors/qrotationreading.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qrotationsensor.cpp b/sensors/qrotationsensor.cpp new file mode 100755 index 00000000..580ca43c --- /dev/null +++ b/sensors/qrotationsensor.cpp @@ -0,0 +1,42 @@ +#include "qrotationsensor.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQRotationSensor: public QRotationSensor { +public: +void Signal_HasZChanged(bool hasZ){callbackQRotationSensorHasZChanged(this->objectName().toUtf8().data(), hasZ);}; +}; + +int QRotationSensor_HasZ(QtObjectPtr ptr){ + return static_cast(ptr)->hasZ(); +} + +QtObjectPtr QRotationSensor_Reading(QtObjectPtr ptr){ + return static_cast(ptr)->reading(); +} + +QtObjectPtr QRotationSensor_NewQRotationSensor(QtObjectPtr parent){ + return new QRotationSensor(static_cast(parent)); +} + +void QRotationSensor_ConnectHasZChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QRotationSensor::hasZChanged), static_cast(ptr), static_cast(&MyQRotationSensor::Signal_HasZChanged));; +} + +void QRotationSensor_DisconnectHasZChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QRotationSensor::hasZChanged), static_cast(ptr), static_cast(&MyQRotationSensor::Signal_HasZChanged));; +} + +void QRotationSensor_SetHasZ(QtObjectPtr ptr, int hasZ){ + static_cast(ptr)->setHasZ(hasZ != 0); +} + +void QRotationSensor_DestroyQRotationSensor(QtObjectPtr ptr){ + static_cast(ptr)->~QRotationSensor(); +} + diff --git a/sensors/qrotationsensor.go b/sensors/qrotationsensor.go new file mode 100755 index 00000000..5109121a --- /dev/null +++ b/sensors/qrotationsensor.go @@ -0,0 +1,88 @@ +package sensors + +//#include "qrotationsensor.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QRotationSensor struct { + QSensor +} + +type QRotationSensorITF interface { + QSensorITF + QRotationSensorPTR() *QRotationSensor +} + +func PointerFromQRotationSensor(ptr QRotationSensorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QRotationSensorPTR().Pointer() + } + return nil +} + +func QRotationSensorFromPointer(ptr unsafe.Pointer) *QRotationSensor { + var n = new(QRotationSensor) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QRotationSensor_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QRotationSensor) QRotationSensorPTR() *QRotationSensor { + return ptr +} + +func (ptr *QRotationSensor) HasZ() bool { + if ptr.Pointer() != nil { + return C.QRotationSensor_HasZ(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QRotationSensor) Reading() *QRotationReading { + if ptr.Pointer() != nil { + return QRotationReadingFromPointer(unsafe.Pointer(C.QRotationSensor_Reading(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func NewQRotationSensor(parent core.QObjectITF) *QRotationSensor { + return QRotationSensorFromPointer(unsafe.Pointer(C.QRotationSensor_NewQRotationSensor(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QRotationSensor) ConnectHasZChanged(f func(hasZ bool)) { + if ptr.Pointer() != nil { + C.QRotationSensor_ConnectHasZChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "hasZChanged", f) + } +} + +func (ptr *QRotationSensor) DisconnectHasZChanged() { + if ptr.Pointer() != nil { + C.QRotationSensor_DisconnectHasZChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "hasZChanged") + } +} + +//export callbackQRotationSensorHasZChanged +func callbackQRotationSensorHasZChanged(ptrName *C.char, hasZ C.int) { + qt.GetSignal(C.GoString(ptrName), "hasZChanged").(func(bool))(int(hasZ) != 0) +} + +func (ptr *QRotationSensor) SetHasZ(hasZ bool) { + if ptr.Pointer() != nil { + C.QRotationSensor_SetHasZ(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(hasZ))) + } +} + +func (ptr *QRotationSensor) DestroyQRotationSensor() { + if ptr.Pointer() != nil { + C.QRotationSensor_DestroyQRotationSensor(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/sensors/qrotationsensor.h b/sensors/qrotationsensor.h new file mode 100755 index 00000000..be17e943 --- /dev/null +++ b/sensors/qrotationsensor.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QRotationSensor_HasZ(QtObjectPtr ptr); +QtObjectPtr QRotationSensor_Reading(QtObjectPtr ptr); +QtObjectPtr QRotationSensor_NewQRotationSensor(QtObjectPtr parent); +void QRotationSensor_ConnectHasZChanged(QtObjectPtr ptr); +void QRotationSensor_DisconnectHasZChanged(QtObjectPtr ptr); +void QRotationSensor_SetHasZ(QtObjectPtr ptr, int hasZ); +void QRotationSensor_DestroyQRotationSensor(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qsensor.cpp b/sensors/qsensor.cpp new file mode 100755 index 00000000..781feb9d --- /dev/null +++ b/sensors/qsensor.cpp @@ -0,0 +1,287 @@ +#include "qsensor.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSensor: public QSensor { +public: +void Signal_ActiveChanged(){callbackQSensorActiveChanged(this->objectName().toUtf8().data());}; +void Signal_AlwaysOnChanged(){callbackQSensorAlwaysOnChanged(this->objectName().toUtf8().data());}; +void Signal_AvailableSensorsChanged(){callbackQSensorAvailableSensorsChanged(this->objectName().toUtf8().data());}; +void Signal_AxesOrientationModeChanged(QSensor::AxesOrientationMode axesOrientationMode){callbackQSensorAxesOrientationModeChanged(this->objectName().toUtf8().data(), axesOrientationMode);}; +void Signal_BufferSizeChanged(int bufferSize){callbackQSensorBufferSizeChanged(this->objectName().toUtf8().data(), bufferSize);}; +void Signal_BusyChanged(){callbackQSensorBusyChanged(this->objectName().toUtf8().data());}; +void Signal_CurrentOrientationChanged(int currentOrientation){callbackQSensorCurrentOrientationChanged(this->objectName().toUtf8().data(), currentOrientation);}; +void Signal_DataRateChanged(){callbackQSensorDataRateChanged(this->objectName().toUtf8().data());}; +void Signal_EfficientBufferSizeChanged(int efficientBufferSize){callbackQSensorEfficientBufferSizeChanged(this->objectName().toUtf8().data(), efficientBufferSize);}; +void Signal_MaxBufferSizeChanged(int maxBufferSize){callbackQSensorMaxBufferSizeChanged(this->objectName().toUtf8().data(), maxBufferSize);}; +void Signal_ReadingChanged(){callbackQSensorReadingChanged(this->objectName().toUtf8().data());}; +void Signal_SensorError(int error){callbackQSensorSensorError(this->objectName().toUtf8().data(), error);}; +void Signal_SkipDuplicatesChanged(bool skipDuplicates){callbackQSensorSkipDuplicatesChanged(this->objectName().toUtf8().data(), skipDuplicates);}; +void Signal_UserOrientationChanged(int userOrientation){callbackQSensorUserOrientationChanged(this->objectName().toUtf8().data(), userOrientation);}; +}; + +int QSensor_AxesOrientationMode(QtObjectPtr ptr){ + return static_cast(ptr)->axesOrientationMode(); +} + +int QSensor_BufferSize(QtObjectPtr ptr){ + return static_cast(ptr)->bufferSize(); +} + +int QSensor_CurrentOrientation(QtObjectPtr ptr){ + return static_cast(ptr)->currentOrientation(); +} + +int QSensor_DataRate(QtObjectPtr ptr){ + return static_cast(ptr)->dataRate(); +} + +char* QSensor_Description(QtObjectPtr ptr){ + return static_cast(ptr)->description().toUtf8().data(); +} + +int QSensor_EfficientBufferSize(QtObjectPtr ptr){ + return static_cast(ptr)->efficientBufferSize(); +} + +int QSensor_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +int QSensor_IsActive(QtObjectPtr ptr){ + return static_cast(ptr)->isActive(); +} + +int QSensor_IsAlwaysOn(QtObjectPtr ptr){ + return static_cast(ptr)->isAlwaysOn(); +} + +int QSensor_IsBusy(QtObjectPtr ptr){ + return static_cast(ptr)->isBusy(); +} + +int QSensor_IsConnectedToBackend(QtObjectPtr ptr){ + return static_cast(ptr)->isConnectedToBackend(); +} + +int QSensor_MaxBufferSize(QtObjectPtr ptr){ + return static_cast(ptr)->maxBufferSize(); +} + +int QSensor_OutputRange(QtObjectPtr ptr){ + return static_cast(ptr)->outputRange(); +} + +QtObjectPtr QSensor_Reading(QtObjectPtr ptr){ + return static_cast(ptr)->reading(); +} + +void QSensor_SetActive(QtObjectPtr ptr, int active){ + static_cast(ptr)->setActive(active != 0); +} + +void QSensor_SetAlwaysOn(QtObjectPtr ptr, int alwaysOn){ + static_cast(ptr)->setAlwaysOn(alwaysOn != 0); +} + +void QSensor_SetAxesOrientationMode(QtObjectPtr ptr, int axesOrientationMode){ + static_cast(ptr)->setAxesOrientationMode(static_cast(axesOrientationMode)); +} + +void QSensor_SetBufferSize(QtObjectPtr ptr, int bufferSize){ + static_cast(ptr)->setBufferSize(bufferSize); +} + +void QSensor_SetDataRate(QtObjectPtr ptr, int rate){ + static_cast(ptr)->setDataRate(rate); +} + +void QSensor_SetIdentifier(QtObjectPtr ptr, QtObjectPtr identifier){ + static_cast(ptr)->setIdentifier(*static_cast(identifier)); +} + +void QSensor_SetOutputRange(QtObjectPtr ptr, int index){ + static_cast(ptr)->setOutputRange(index); +} + +void QSensor_SetUserOrientation(QtObjectPtr ptr, int userOrientation){ + static_cast(ptr)->setUserOrientation(userOrientation); +} + +int QSensor_SkipDuplicates(QtObjectPtr ptr){ + return static_cast(ptr)->skipDuplicates(); +} + +int QSensor_UserOrientation(QtObjectPtr ptr){ + return static_cast(ptr)->userOrientation(); +} + +QtObjectPtr QSensor_NewQSensor(QtObjectPtr ty, QtObjectPtr parent){ + return new QSensor(*static_cast(ty), static_cast(parent)); +} + +void QSensor_ConnectActiveChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSensor::activeChanged), static_cast(ptr), static_cast(&MyQSensor::Signal_ActiveChanged));; +} + +void QSensor_DisconnectActiveChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSensor::activeChanged), static_cast(ptr), static_cast(&MyQSensor::Signal_ActiveChanged));; +} + +void QSensor_AddFilter(QtObjectPtr ptr, QtObjectPtr filter){ + static_cast(ptr)->addFilter(static_cast(filter)); +} + +void QSensor_ConnectAlwaysOnChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSensor::alwaysOnChanged), static_cast(ptr), static_cast(&MyQSensor::Signal_AlwaysOnChanged));; +} + +void QSensor_DisconnectAlwaysOnChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSensor::alwaysOnChanged), static_cast(ptr), static_cast(&MyQSensor::Signal_AlwaysOnChanged));; +} + +void QSensor_ConnectAvailableSensorsChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSensor::availableSensorsChanged), static_cast(ptr), static_cast(&MyQSensor::Signal_AvailableSensorsChanged));; +} + +void QSensor_DisconnectAvailableSensorsChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSensor::availableSensorsChanged), static_cast(ptr), static_cast(&MyQSensor::Signal_AvailableSensorsChanged));; +} + +void QSensor_ConnectAxesOrientationModeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSensor::axesOrientationModeChanged), static_cast(ptr), static_cast(&MyQSensor::Signal_AxesOrientationModeChanged));; +} + +void QSensor_DisconnectAxesOrientationModeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSensor::axesOrientationModeChanged), static_cast(ptr), static_cast(&MyQSensor::Signal_AxesOrientationModeChanged));; +} + +void QSensor_ConnectBufferSizeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSensor::bufferSizeChanged), static_cast(ptr), static_cast(&MyQSensor::Signal_BufferSizeChanged));; +} + +void QSensor_DisconnectBufferSizeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSensor::bufferSizeChanged), static_cast(ptr), static_cast(&MyQSensor::Signal_BufferSizeChanged));; +} + +void QSensor_ConnectBusyChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSensor::busyChanged), static_cast(ptr), static_cast(&MyQSensor::Signal_BusyChanged));; +} + +void QSensor_DisconnectBusyChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSensor::busyChanged), static_cast(ptr), static_cast(&MyQSensor::Signal_BusyChanged));; +} + +int QSensor_ConnectToBackend(QtObjectPtr ptr){ + return static_cast(ptr)->connectToBackend(); +} + +void QSensor_ConnectCurrentOrientationChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSensor::currentOrientationChanged), static_cast(ptr), static_cast(&MyQSensor::Signal_CurrentOrientationChanged));; +} + +void QSensor_DisconnectCurrentOrientationChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSensor::currentOrientationChanged), static_cast(ptr), static_cast(&MyQSensor::Signal_CurrentOrientationChanged));; +} + +void QSensor_ConnectDataRateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSensor::dataRateChanged), static_cast(ptr), static_cast(&MyQSensor::Signal_DataRateChanged));; +} + +void QSensor_DisconnectDataRateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSensor::dataRateChanged), static_cast(ptr), static_cast(&MyQSensor::Signal_DataRateChanged));; +} + +void QSensor_ConnectEfficientBufferSizeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSensor::efficientBufferSizeChanged), static_cast(ptr), static_cast(&MyQSensor::Signal_EfficientBufferSizeChanged));; +} + +void QSensor_DisconnectEfficientBufferSizeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSensor::efficientBufferSizeChanged), static_cast(ptr), static_cast(&MyQSensor::Signal_EfficientBufferSizeChanged));; +} + +int QSensor_IsFeatureSupported(QtObjectPtr ptr, int feature){ + return static_cast(ptr)->isFeatureSupported(static_cast(feature)); +} + +void QSensor_ConnectMaxBufferSizeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSensor::maxBufferSizeChanged), static_cast(ptr), static_cast(&MyQSensor::Signal_MaxBufferSizeChanged));; +} + +void QSensor_DisconnectMaxBufferSizeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSensor::maxBufferSizeChanged), static_cast(ptr), static_cast(&MyQSensor::Signal_MaxBufferSizeChanged));; +} + +void QSensor_ConnectReadingChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSensor::readingChanged), static_cast(ptr), static_cast(&MyQSensor::Signal_ReadingChanged));; +} + +void QSensor_DisconnectReadingChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSensor::readingChanged), static_cast(ptr), static_cast(&MyQSensor::Signal_ReadingChanged));; +} + +void QSensor_RemoveFilter(QtObjectPtr ptr, QtObjectPtr filter){ + static_cast(ptr)->removeFilter(static_cast(filter)); +} + +void QSensor_ConnectSensorError(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSensor::sensorError), static_cast(ptr), static_cast(&MyQSensor::Signal_SensorError));; +} + +void QSensor_DisconnectSensorError(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSensor::sensorError), static_cast(ptr), static_cast(&MyQSensor::Signal_SensorError));; +} + +void QSensor_SetCurrentOrientation(QtObjectPtr ptr, int currentOrientation){ + static_cast(ptr)->setCurrentOrientation(currentOrientation); +} + +void QSensor_SetEfficientBufferSize(QtObjectPtr ptr, int efficientBufferSize){ + static_cast(ptr)->setEfficientBufferSize(efficientBufferSize); +} + +void QSensor_SetMaxBufferSize(QtObjectPtr ptr, int maxBufferSize){ + static_cast(ptr)->setMaxBufferSize(maxBufferSize); +} + +void QSensor_SetSkipDuplicates(QtObjectPtr ptr, int skipDuplicates){ + static_cast(ptr)->setSkipDuplicates(skipDuplicates != 0); +} + +void QSensor_ConnectSkipDuplicatesChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSensor::skipDuplicatesChanged), static_cast(ptr), static_cast(&MyQSensor::Signal_SkipDuplicatesChanged));; +} + +void QSensor_DisconnectSkipDuplicatesChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSensor::skipDuplicatesChanged), static_cast(ptr), static_cast(&MyQSensor::Signal_SkipDuplicatesChanged));; +} + +int QSensor_Start(QtObjectPtr ptr){ + return QMetaObject::invokeMethod(static_cast(ptr), "start"); +} + +void QSensor_Stop(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "stop"); +} + +void QSensor_ConnectUserOrientationChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSensor::userOrientationChanged), static_cast(ptr), static_cast(&MyQSensor::Signal_UserOrientationChanged));; +} + +void QSensor_DisconnectUserOrientationChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSensor::userOrientationChanged), static_cast(ptr), static_cast(&MyQSensor::Signal_UserOrientationChanged));; +} + +void QSensor_DestroyQSensor(QtObjectPtr ptr){ + static_cast(ptr)->~QSensor(); +} + diff --git a/sensors/qsensor.go b/sensors/qsensor.go new file mode 100755 index 00000000..460dcb5a --- /dev/null +++ b/sensors/qsensor.go @@ -0,0 +1,562 @@ +package sensors + +//#include "qsensor.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QSensor struct { + core.QObject +} + +type QSensorITF interface { + core.QObjectITF + QSensorPTR() *QSensor +} + +func PointerFromQSensor(ptr QSensorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSensorPTR().Pointer() + } + return nil +} + +func QSensorFromPointer(ptr unsafe.Pointer) *QSensor { + var n = new(QSensor) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSensor_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSensor) QSensorPTR() *QSensor { + return ptr +} + +//QSensor::AxesOrientationMode +type QSensor__AxesOrientationMode int + +var ( + QSensor__FixedOrientation = QSensor__AxesOrientationMode(0) + QSensor__AutomaticOrientation = QSensor__AxesOrientationMode(1) + QSensor__UserOrientation = QSensor__AxesOrientationMode(2) +) + +//QSensor::Feature +type QSensor__Feature int + +var ( + QSensor__Buffering = QSensor__Feature(0) + QSensor__AlwaysOn = QSensor__Feature(1) + QSensor__GeoValues = QSensor__Feature(2) + QSensor__FieldOfView = QSensor__Feature(3) + QSensor__AccelerationMode = QSensor__Feature(4) + QSensor__SkipDuplicates = QSensor__Feature(5) + QSensor__AxesOrientation = QSensor__Feature(6) + QSensor__PressureSensorTemperature = QSensor__Feature(7) + QSensor__Reserved = QSensor__Feature(257) +) + +func (ptr *QSensor) AxesOrientationMode() QSensor__AxesOrientationMode { + if ptr.Pointer() != nil { + return QSensor__AxesOrientationMode(C.QSensor_AxesOrientationMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSensor) BufferSize() int { + if ptr.Pointer() != nil { + return int(C.QSensor_BufferSize(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSensor) CurrentOrientation() int { + if ptr.Pointer() != nil { + return int(C.QSensor_CurrentOrientation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSensor) DataRate() int { + if ptr.Pointer() != nil { + return int(C.QSensor_DataRate(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSensor) Description() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSensor_Description(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSensor) EfficientBufferSize() int { + if ptr.Pointer() != nil { + return int(C.QSensor_EfficientBufferSize(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSensor) Error() int { + if ptr.Pointer() != nil { + return int(C.QSensor_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSensor) IsActive() bool { + if ptr.Pointer() != nil { + return C.QSensor_IsActive(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSensor) IsAlwaysOn() bool { + if ptr.Pointer() != nil { + return C.QSensor_IsAlwaysOn(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSensor) IsBusy() bool { + if ptr.Pointer() != nil { + return C.QSensor_IsBusy(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSensor) IsConnectedToBackend() bool { + if ptr.Pointer() != nil { + return C.QSensor_IsConnectedToBackend(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSensor) MaxBufferSize() int { + if ptr.Pointer() != nil { + return int(C.QSensor_MaxBufferSize(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSensor) OutputRange() int { + if ptr.Pointer() != nil { + return int(C.QSensor_OutputRange(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSensor) Reading() *QSensorReading { + if ptr.Pointer() != nil { + return QSensorReadingFromPointer(unsafe.Pointer(C.QSensor_Reading(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSensor) SetActive(active bool) { + if ptr.Pointer() != nil { + C.QSensor_SetActive(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(active))) + } +} + +func (ptr *QSensor) SetAlwaysOn(alwaysOn bool) { + if ptr.Pointer() != nil { + C.QSensor_SetAlwaysOn(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(alwaysOn))) + } +} + +func (ptr *QSensor) SetAxesOrientationMode(axesOrientationMode QSensor__AxesOrientationMode) { + if ptr.Pointer() != nil { + C.QSensor_SetAxesOrientationMode(C.QtObjectPtr(ptr.Pointer()), C.int(axesOrientationMode)) + } +} + +func (ptr *QSensor) SetBufferSize(bufferSize int) { + if ptr.Pointer() != nil { + C.QSensor_SetBufferSize(C.QtObjectPtr(ptr.Pointer()), C.int(bufferSize)) + } +} + +func (ptr *QSensor) SetDataRate(rate int) { + if ptr.Pointer() != nil { + C.QSensor_SetDataRate(C.QtObjectPtr(ptr.Pointer()), C.int(rate)) + } +} + +func (ptr *QSensor) SetIdentifier(identifier core.QByteArrayITF) { + if ptr.Pointer() != nil { + C.QSensor_SetIdentifier(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(identifier))) + } +} + +func (ptr *QSensor) SetOutputRange(index int) { + if ptr.Pointer() != nil { + C.QSensor_SetOutputRange(C.QtObjectPtr(ptr.Pointer()), C.int(index)) + } +} + +func (ptr *QSensor) SetUserOrientation(userOrientation int) { + if ptr.Pointer() != nil { + C.QSensor_SetUserOrientation(C.QtObjectPtr(ptr.Pointer()), C.int(userOrientation)) + } +} + +func (ptr *QSensor) SkipDuplicates() bool { + if ptr.Pointer() != nil { + return C.QSensor_SkipDuplicates(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSensor) UserOrientation() int { + if ptr.Pointer() != nil { + return int(C.QSensor_UserOrientation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQSensor(ty core.QByteArrayITF, parent core.QObjectITF) *QSensor { + return QSensorFromPointer(unsafe.Pointer(C.QSensor_NewQSensor(C.QtObjectPtr(core.PointerFromQByteArray(ty)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QSensor) ConnectActiveChanged(f func()) { + if ptr.Pointer() != nil { + C.QSensor_ConnectActiveChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "activeChanged", f) + } +} + +func (ptr *QSensor) DisconnectActiveChanged() { + if ptr.Pointer() != nil { + C.QSensor_DisconnectActiveChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "activeChanged") + } +} + +//export callbackQSensorActiveChanged +func callbackQSensorActiveChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "activeChanged").(func())() +} + +func (ptr *QSensor) AddFilter(filter QSensorFilterITF) { + if ptr.Pointer() != nil { + C.QSensor_AddFilter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSensorFilter(filter))) + } +} + +func (ptr *QSensor) ConnectAlwaysOnChanged(f func()) { + if ptr.Pointer() != nil { + C.QSensor_ConnectAlwaysOnChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "alwaysOnChanged", f) + } +} + +func (ptr *QSensor) DisconnectAlwaysOnChanged() { + if ptr.Pointer() != nil { + C.QSensor_DisconnectAlwaysOnChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "alwaysOnChanged") + } +} + +//export callbackQSensorAlwaysOnChanged +func callbackQSensorAlwaysOnChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "alwaysOnChanged").(func())() +} + +func (ptr *QSensor) ConnectAvailableSensorsChanged(f func()) { + if ptr.Pointer() != nil { + C.QSensor_ConnectAvailableSensorsChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "availableSensorsChanged", f) + } +} + +func (ptr *QSensor) DisconnectAvailableSensorsChanged() { + if ptr.Pointer() != nil { + C.QSensor_DisconnectAvailableSensorsChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "availableSensorsChanged") + } +} + +//export callbackQSensorAvailableSensorsChanged +func callbackQSensorAvailableSensorsChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "availableSensorsChanged").(func())() +} + +func (ptr *QSensor) ConnectAxesOrientationModeChanged(f func(axesOrientationMode QSensor__AxesOrientationMode)) { + if ptr.Pointer() != nil { + C.QSensor_ConnectAxesOrientationModeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "axesOrientationModeChanged", f) + } +} + +func (ptr *QSensor) DisconnectAxesOrientationModeChanged() { + if ptr.Pointer() != nil { + C.QSensor_DisconnectAxesOrientationModeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "axesOrientationModeChanged") + } +} + +//export callbackQSensorAxesOrientationModeChanged +func callbackQSensorAxesOrientationModeChanged(ptrName *C.char, axesOrientationMode C.int) { + qt.GetSignal(C.GoString(ptrName), "axesOrientationModeChanged").(func(QSensor__AxesOrientationMode))(QSensor__AxesOrientationMode(axesOrientationMode)) +} + +func (ptr *QSensor) ConnectBufferSizeChanged(f func(bufferSize int)) { + if ptr.Pointer() != nil { + C.QSensor_ConnectBufferSizeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "bufferSizeChanged", f) + } +} + +func (ptr *QSensor) DisconnectBufferSizeChanged() { + if ptr.Pointer() != nil { + C.QSensor_DisconnectBufferSizeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "bufferSizeChanged") + } +} + +//export callbackQSensorBufferSizeChanged +func callbackQSensorBufferSizeChanged(ptrName *C.char, bufferSize C.int) { + qt.GetSignal(C.GoString(ptrName), "bufferSizeChanged").(func(int))(int(bufferSize)) +} + +func (ptr *QSensor) ConnectBusyChanged(f func()) { + if ptr.Pointer() != nil { + C.QSensor_ConnectBusyChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "busyChanged", f) + } +} + +func (ptr *QSensor) DisconnectBusyChanged() { + if ptr.Pointer() != nil { + C.QSensor_DisconnectBusyChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "busyChanged") + } +} + +//export callbackQSensorBusyChanged +func callbackQSensorBusyChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "busyChanged").(func())() +} + +func (ptr *QSensor) ConnectToBackend() bool { + if ptr.Pointer() != nil { + return C.QSensor_ConnectToBackend(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSensor) ConnectCurrentOrientationChanged(f func(currentOrientation int)) { + if ptr.Pointer() != nil { + C.QSensor_ConnectCurrentOrientationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "currentOrientationChanged", f) + } +} + +func (ptr *QSensor) DisconnectCurrentOrientationChanged() { + if ptr.Pointer() != nil { + C.QSensor_DisconnectCurrentOrientationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "currentOrientationChanged") + } +} + +//export callbackQSensorCurrentOrientationChanged +func callbackQSensorCurrentOrientationChanged(ptrName *C.char, currentOrientation C.int) { + qt.GetSignal(C.GoString(ptrName), "currentOrientationChanged").(func(int))(int(currentOrientation)) +} + +func (ptr *QSensor) ConnectDataRateChanged(f func()) { + if ptr.Pointer() != nil { + C.QSensor_ConnectDataRateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "dataRateChanged", f) + } +} + +func (ptr *QSensor) DisconnectDataRateChanged() { + if ptr.Pointer() != nil { + C.QSensor_DisconnectDataRateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "dataRateChanged") + } +} + +//export callbackQSensorDataRateChanged +func callbackQSensorDataRateChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "dataRateChanged").(func())() +} + +func (ptr *QSensor) ConnectEfficientBufferSizeChanged(f func(efficientBufferSize int)) { + if ptr.Pointer() != nil { + C.QSensor_ConnectEfficientBufferSizeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "efficientBufferSizeChanged", f) + } +} + +func (ptr *QSensor) DisconnectEfficientBufferSizeChanged() { + if ptr.Pointer() != nil { + C.QSensor_DisconnectEfficientBufferSizeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "efficientBufferSizeChanged") + } +} + +//export callbackQSensorEfficientBufferSizeChanged +func callbackQSensorEfficientBufferSizeChanged(ptrName *C.char, efficientBufferSize C.int) { + qt.GetSignal(C.GoString(ptrName), "efficientBufferSizeChanged").(func(int))(int(efficientBufferSize)) +} + +func (ptr *QSensor) IsFeatureSupported(feature QSensor__Feature) bool { + if ptr.Pointer() != nil { + return C.QSensor_IsFeatureSupported(C.QtObjectPtr(ptr.Pointer()), C.int(feature)) != 0 + } + return false +} + +func (ptr *QSensor) ConnectMaxBufferSizeChanged(f func(maxBufferSize int)) { + if ptr.Pointer() != nil { + C.QSensor_ConnectMaxBufferSizeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "maxBufferSizeChanged", f) + } +} + +func (ptr *QSensor) DisconnectMaxBufferSizeChanged() { + if ptr.Pointer() != nil { + C.QSensor_DisconnectMaxBufferSizeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "maxBufferSizeChanged") + } +} + +//export callbackQSensorMaxBufferSizeChanged +func callbackQSensorMaxBufferSizeChanged(ptrName *C.char, maxBufferSize C.int) { + qt.GetSignal(C.GoString(ptrName), "maxBufferSizeChanged").(func(int))(int(maxBufferSize)) +} + +func (ptr *QSensor) ConnectReadingChanged(f func()) { + if ptr.Pointer() != nil { + C.QSensor_ConnectReadingChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "readingChanged", f) + } +} + +func (ptr *QSensor) DisconnectReadingChanged() { + if ptr.Pointer() != nil { + C.QSensor_DisconnectReadingChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "readingChanged") + } +} + +//export callbackQSensorReadingChanged +func callbackQSensorReadingChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "readingChanged").(func())() +} + +func (ptr *QSensor) RemoveFilter(filter QSensorFilterITF) { + if ptr.Pointer() != nil { + C.QSensor_RemoveFilter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSensorFilter(filter))) + } +} + +func (ptr *QSensor) ConnectSensorError(f func(error int)) { + if ptr.Pointer() != nil { + C.QSensor_ConnectSensorError(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "sensorError", f) + } +} + +func (ptr *QSensor) DisconnectSensorError() { + if ptr.Pointer() != nil { + C.QSensor_DisconnectSensorError(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "sensorError") + } +} + +//export callbackQSensorSensorError +func callbackQSensorSensorError(ptrName *C.char, error C.int) { + qt.GetSignal(C.GoString(ptrName), "sensorError").(func(int))(int(error)) +} + +func (ptr *QSensor) SetCurrentOrientation(currentOrientation int) { + if ptr.Pointer() != nil { + C.QSensor_SetCurrentOrientation(C.QtObjectPtr(ptr.Pointer()), C.int(currentOrientation)) + } +} + +func (ptr *QSensor) SetEfficientBufferSize(efficientBufferSize int) { + if ptr.Pointer() != nil { + C.QSensor_SetEfficientBufferSize(C.QtObjectPtr(ptr.Pointer()), C.int(efficientBufferSize)) + } +} + +func (ptr *QSensor) SetMaxBufferSize(maxBufferSize int) { + if ptr.Pointer() != nil { + C.QSensor_SetMaxBufferSize(C.QtObjectPtr(ptr.Pointer()), C.int(maxBufferSize)) + } +} + +func (ptr *QSensor) SetSkipDuplicates(skipDuplicates bool) { + if ptr.Pointer() != nil { + C.QSensor_SetSkipDuplicates(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(skipDuplicates))) + } +} + +func (ptr *QSensor) ConnectSkipDuplicatesChanged(f func(skipDuplicates bool)) { + if ptr.Pointer() != nil { + C.QSensor_ConnectSkipDuplicatesChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "skipDuplicatesChanged", f) + } +} + +func (ptr *QSensor) DisconnectSkipDuplicatesChanged() { + if ptr.Pointer() != nil { + C.QSensor_DisconnectSkipDuplicatesChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "skipDuplicatesChanged") + } +} + +//export callbackQSensorSkipDuplicatesChanged +func callbackQSensorSkipDuplicatesChanged(ptrName *C.char, skipDuplicates C.int) { + qt.GetSignal(C.GoString(ptrName), "skipDuplicatesChanged").(func(bool))(int(skipDuplicates) != 0) +} + +func (ptr *QSensor) Start() bool { + if ptr.Pointer() != nil { + return C.QSensor_Start(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSensor) Stop() { + if ptr.Pointer() != nil { + C.QSensor_Stop(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSensor) ConnectUserOrientationChanged(f func(userOrientation int)) { + if ptr.Pointer() != nil { + C.QSensor_ConnectUserOrientationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "userOrientationChanged", f) + } +} + +func (ptr *QSensor) DisconnectUserOrientationChanged() { + if ptr.Pointer() != nil { + C.QSensor_DisconnectUserOrientationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "userOrientationChanged") + } +} + +//export callbackQSensorUserOrientationChanged +func callbackQSensorUserOrientationChanged(ptrName *C.char, userOrientation C.int) { + qt.GetSignal(C.GoString(ptrName), "userOrientationChanged").(func(int))(int(userOrientation)) +} + +func (ptr *QSensor) DestroyQSensor() { + if ptr.Pointer() != nil { + C.QSensor_DestroyQSensor(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/sensors/qsensor.h b/sensors/qsensor.h new file mode 100755 index 00000000..f49368bd --- /dev/null +++ b/sensors/qsensor.h @@ -0,0 +1,73 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QSensor_AxesOrientationMode(QtObjectPtr ptr); +int QSensor_BufferSize(QtObjectPtr ptr); +int QSensor_CurrentOrientation(QtObjectPtr ptr); +int QSensor_DataRate(QtObjectPtr ptr); +char* QSensor_Description(QtObjectPtr ptr); +int QSensor_EfficientBufferSize(QtObjectPtr ptr); +int QSensor_Error(QtObjectPtr ptr); +int QSensor_IsActive(QtObjectPtr ptr); +int QSensor_IsAlwaysOn(QtObjectPtr ptr); +int QSensor_IsBusy(QtObjectPtr ptr); +int QSensor_IsConnectedToBackend(QtObjectPtr ptr); +int QSensor_MaxBufferSize(QtObjectPtr ptr); +int QSensor_OutputRange(QtObjectPtr ptr); +QtObjectPtr QSensor_Reading(QtObjectPtr ptr); +void QSensor_SetActive(QtObjectPtr ptr, int active); +void QSensor_SetAlwaysOn(QtObjectPtr ptr, int alwaysOn); +void QSensor_SetAxesOrientationMode(QtObjectPtr ptr, int axesOrientationMode); +void QSensor_SetBufferSize(QtObjectPtr ptr, int bufferSize); +void QSensor_SetDataRate(QtObjectPtr ptr, int rate); +void QSensor_SetIdentifier(QtObjectPtr ptr, QtObjectPtr identifier); +void QSensor_SetOutputRange(QtObjectPtr ptr, int index); +void QSensor_SetUserOrientation(QtObjectPtr ptr, int userOrientation); +int QSensor_SkipDuplicates(QtObjectPtr ptr); +int QSensor_UserOrientation(QtObjectPtr ptr); +QtObjectPtr QSensor_NewQSensor(QtObjectPtr ty, QtObjectPtr parent); +void QSensor_ConnectActiveChanged(QtObjectPtr ptr); +void QSensor_DisconnectActiveChanged(QtObjectPtr ptr); +void QSensor_AddFilter(QtObjectPtr ptr, QtObjectPtr filter); +void QSensor_ConnectAlwaysOnChanged(QtObjectPtr ptr); +void QSensor_DisconnectAlwaysOnChanged(QtObjectPtr ptr); +void QSensor_ConnectAvailableSensorsChanged(QtObjectPtr ptr); +void QSensor_DisconnectAvailableSensorsChanged(QtObjectPtr ptr); +void QSensor_ConnectAxesOrientationModeChanged(QtObjectPtr ptr); +void QSensor_DisconnectAxesOrientationModeChanged(QtObjectPtr ptr); +void QSensor_ConnectBufferSizeChanged(QtObjectPtr ptr); +void QSensor_DisconnectBufferSizeChanged(QtObjectPtr ptr); +void QSensor_ConnectBusyChanged(QtObjectPtr ptr); +void QSensor_DisconnectBusyChanged(QtObjectPtr ptr); +int QSensor_ConnectToBackend(QtObjectPtr ptr); +void QSensor_ConnectCurrentOrientationChanged(QtObjectPtr ptr); +void QSensor_DisconnectCurrentOrientationChanged(QtObjectPtr ptr); +void QSensor_ConnectDataRateChanged(QtObjectPtr ptr); +void QSensor_DisconnectDataRateChanged(QtObjectPtr ptr); +void QSensor_ConnectEfficientBufferSizeChanged(QtObjectPtr ptr); +void QSensor_DisconnectEfficientBufferSizeChanged(QtObjectPtr ptr); +int QSensor_IsFeatureSupported(QtObjectPtr ptr, int feature); +void QSensor_ConnectMaxBufferSizeChanged(QtObjectPtr ptr); +void QSensor_DisconnectMaxBufferSizeChanged(QtObjectPtr ptr); +void QSensor_ConnectReadingChanged(QtObjectPtr ptr); +void QSensor_DisconnectReadingChanged(QtObjectPtr ptr); +void QSensor_RemoveFilter(QtObjectPtr ptr, QtObjectPtr filter); +void QSensor_ConnectSensorError(QtObjectPtr ptr); +void QSensor_DisconnectSensorError(QtObjectPtr ptr); +void QSensor_SetCurrentOrientation(QtObjectPtr ptr, int currentOrientation); +void QSensor_SetEfficientBufferSize(QtObjectPtr ptr, int efficientBufferSize); +void QSensor_SetMaxBufferSize(QtObjectPtr ptr, int maxBufferSize); +void QSensor_SetSkipDuplicates(QtObjectPtr ptr, int skipDuplicates); +void QSensor_ConnectSkipDuplicatesChanged(QtObjectPtr ptr); +void QSensor_DisconnectSkipDuplicatesChanged(QtObjectPtr ptr); +int QSensor_Start(QtObjectPtr ptr); +void QSensor_Stop(QtObjectPtr ptr); +void QSensor_ConnectUserOrientationChanged(QtObjectPtr ptr); +void QSensor_DisconnectUserOrientationChanged(QtObjectPtr ptr); +void QSensor_DestroyQSensor(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qsensorbackend.cpp b/sensors/qsensorbackend.cpp new file mode 100755 index 00000000..e2658302 --- /dev/null +++ b/sensors/qsensorbackend.cpp @@ -0,0 +1,57 @@ +#include "qsensorbackend.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSensorBackend: public QSensorBackend { +public: +}; + +int QSensorBackend_IsFeatureSupported(QtObjectPtr ptr, int feature){ + return static_cast(ptr)->isFeatureSupported(static_cast(feature)); +} + +void QSensorBackend_SensorBusy(QtObjectPtr ptr){ + static_cast(ptr)->sensorBusy(); +} + +void QSensorBackend_SensorError(QtObjectPtr ptr, int error){ + static_cast(ptr)->sensorError(error); +} + +void QSensorBackend_NewReadingAvailable(QtObjectPtr ptr){ + static_cast(ptr)->newReadingAvailable(); +} + +QtObjectPtr QSensorBackend_Reading(QtObjectPtr ptr){ + return static_cast(ptr)->reading(); +} + +QtObjectPtr QSensorBackend_Sensor(QtObjectPtr ptr){ + return static_cast(ptr)->sensor(); +} + +void QSensorBackend_SensorStopped(QtObjectPtr ptr){ + static_cast(ptr)->sensorStopped(); +} + +void QSensorBackend_SetDataRates(QtObjectPtr ptr, QtObjectPtr otherSensor){ + static_cast(ptr)->setDataRates(static_cast(otherSensor)); +} + +void QSensorBackend_SetDescription(QtObjectPtr ptr, char* description){ + static_cast(ptr)->setDescription(QString(description)); +} + +void QSensorBackend_Start(QtObjectPtr ptr){ + static_cast(ptr)->start(); +} + +void QSensorBackend_Stop(QtObjectPtr ptr){ + static_cast(ptr)->stop(); +} + diff --git a/sensors/qsensorbackend.go b/sensors/qsensorbackend.go new file mode 100755 index 00000000..3f2fde0a --- /dev/null +++ b/sensors/qsensorbackend.go @@ -0,0 +1,107 @@ +package sensors + +//#include "qsensorbackend.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QSensorBackend struct { + core.QObject +} + +type QSensorBackendITF interface { + core.QObjectITF + QSensorBackendPTR() *QSensorBackend +} + +func PointerFromQSensorBackend(ptr QSensorBackendITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSensorBackendPTR().Pointer() + } + return nil +} + +func QSensorBackendFromPointer(ptr unsafe.Pointer) *QSensorBackend { + var n = new(QSensorBackend) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSensorBackend_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSensorBackend) QSensorBackendPTR() *QSensorBackend { + return ptr +} + +func (ptr *QSensorBackend) IsFeatureSupported(feature QSensor__Feature) bool { + if ptr.Pointer() != nil { + return C.QSensorBackend_IsFeatureSupported(C.QtObjectPtr(ptr.Pointer()), C.int(feature)) != 0 + } + return false +} + +func (ptr *QSensorBackend) SensorBusy() { + if ptr.Pointer() != nil { + C.QSensorBackend_SensorBusy(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSensorBackend) SensorError(error int) { + if ptr.Pointer() != nil { + C.QSensorBackend_SensorError(C.QtObjectPtr(ptr.Pointer()), C.int(error)) + } +} + +func (ptr *QSensorBackend) NewReadingAvailable() { + if ptr.Pointer() != nil { + C.QSensorBackend_NewReadingAvailable(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSensorBackend) Reading() *QSensorReading { + if ptr.Pointer() != nil { + return QSensorReadingFromPointer(unsafe.Pointer(C.QSensorBackend_Reading(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSensorBackend) Sensor() *QSensor { + if ptr.Pointer() != nil { + return QSensorFromPointer(unsafe.Pointer(C.QSensorBackend_Sensor(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSensorBackend) SensorStopped() { + if ptr.Pointer() != nil { + C.QSensorBackend_SensorStopped(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSensorBackend) SetDataRates(otherSensor QSensorITF) { + if ptr.Pointer() != nil { + C.QSensorBackend_SetDataRates(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSensor(otherSensor))) + } +} + +func (ptr *QSensorBackend) SetDescription(description string) { + if ptr.Pointer() != nil { + C.QSensorBackend_SetDescription(C.QtObjectPtr(ptr.Pointer()), C.CString(description)) + } +} + +func (ptr *QSensorBackend) Start() { + if ptr.Pointer() != nil { + C.QSensorBackend_Start(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSensorBackend) Stop() { + if ptr.Pointer() != nil { + C.QSensorBackend_Stop(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/sensors/qsensorbackend.h b/sensors/qsensorbackend.h new file mode 100755 index 00000000..7797d33e --- /dev/null +++ b/sensors/qsensorbackend.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QSensorBackend_IsFeatureSupported(QtObjectPtr ptr, int feature); +void QSensorBackend_SensorBusy(QtObjectPtr ptr); +void QSensorBackend_SensorError(QtObjectPtr ptr, int error); +void QSensorBackend_NewReadingAvailable(QtObjectPtr ptr); +QtObjectPtr QSensorBackend_Reading(QtObjectPtr ptr); +QtObjectPtr QSensorBackend_Sensor(QtObjectPtr ptr); +void QSensorBackend_SensorStopped(QtObjectPtr ptr); +void QSensorBackend_SetDataRates(QtObjectPtr ptr, QtObjectPtr otherSensor); +void QSensorBackend_SetDescription(QtObjectPtr ptr, char* description); +void QSensorBackend_Start(QtObjectPtr ptr); +void QSensorBackend_Stop(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qsensorbackendfactory.cpp b/sensors/qsensorbackendfactory.cpp new file mode 100755 index 00000000..44e1975e --- /dev/null +++ b/sensors/qsensorbackendfactory.cpp @@ -0,0 +1,18 @@ +#include "qsensorbackendfactory.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSensorBackendFactory: public QSensorBackendFactory { +public: +}; + +QtObjectPtr QSensorBackendFactory_CreateBackend(QtObjectPtr ptr, QtObjectPtr sensor){ + return static_cast(ptr)->createBackend(static_cast(sensor)); +} + diff --git a/sensors/qsensorbackendfactory.go b/sensors/qsensorbackendfactory.go new file mode 100755 index 00000000..d2131567 --- /dev/null +++ b/sensors/qsensorbackendfactory.go @@ -0,0 +1,47 @@ +package sensors + +//#include "qsensorbackendfactory.h" +import "C" +import ( + "unsafe" +) + +type QSensorBackendFactory struct { + ptr unsafe.Pointer +} + +type QSensorBackendFactoryITF interface { + QSensorBackendFactoryPTR() *QSensorBackendFactory +} + +func (p *QSensorBackendFactory) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSensorBackendFactory) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSensorBackendFactory(ptr QSensorBackendFactoryITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSensorBackendFactoryPTR().Pointer() + } + return nil +} + +func QSensorBackendFactoryFromPointer(ptr unsafe.Pointer) *QSensorBackendFactory { + var n = new(QSensorBackendFactory) + n.SetPointer(ptr) + return n +} + +func (ptr *QSensorBackendFactory) QSensorBackendFactoryPTR() *QSensorBackendFactory { + return ptr +} + +func (ptr *QSensorBackendFactory) CreateBackend(sensor QSensorITF) *QSensorBackend { + if ptr.Pointer() != nil { + return QSensorBackendFromPointer(unsafe.Pointer(C.QSensorBackendFactory_CreateBackend(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSensor(sensor))))) + } + return nil +} diff --git a/sensors/qsensorbackendfactory.h b/sensors/qsensorbackendfactory.h new file mode 100755 index 00000000..68e03436 --- /dev/null +++ b/sensors/qsensorbackendfactory.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSensorBackendFactory_CreateBackend(QtObjectPtr ptr, QtObjectPtr sensor); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qsensorchangesinterface.cpp b/sensors/qsensorchangesinterface.cpp new file mode 100755 index 00000000..53692305 --- /dev/null +++ b/sensors/qsensorchangesinterface.cpp @@ -0,0 +1,17 @@ +#include "qsensorchangesinterface.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSensorChangesInterface: public QSensorChangesInterface { +public: +}; + +void QSensorChangesInterface_SensorsChanged(QtObjectPtr ptr){ + static_cast(ptr)->sensorsChanged(); +} + diff --git a/sensors/qsensorchangesinterface.go b/sensors/qsensorchangesinterface.go new file mode 100755 index 00000000..32e1f7b3 --- /dev/null +++ b/sensors/qsensorchangesinterface.go @@ -0,0 +1,46 @@ +package sensors + +//#include "qsensorchangesinterface.h" +import "C" +import ( + "unsafe" +) + +type QSensorChangesInterface struct { + ptr unsafe.Pointer +} + +type QSensorChangesInterfaceITF interface { + QSensorChangesInterfacePTR() *QSensorChangesInterface +} + +func (p *QSensorChangesInterface) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSensorChangesInterface) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSensorChangesInterface(ptr QSensorChangesInterfaceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSensorChangesInterfacePTR().Pointer() + } + return nil +} + +func QSensorChangesInterfaceFromPointer(ptr unsafe.Pointer) *QSensorChangesInterface { + var n = new(QSensorChangesInterface) + n.SetPointer(ptr) + return n +} + +func (ptr *QSensorChangesInterface) QSensorChangesInterfacePTR() *QSensorChangesInterface { + return ptr +} + +func (ptr *QSensorChangesInterface) SensorsChanged() { + if ptr.Pointer() != nil { + C.QSensorChangesInterface_SensorsChanged(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/sensors/qsensorchangesinterface.h b/sensors/qsensorchangesinterface.h new file mode 100755 index 00000000..5219b946 --- /dev/null +++ b/sensors/qsensorchangesinterface.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QSensorChangesInterface_SensorsChanged(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qsensorfilter.cpp b/sensors/qsensorfilter.cpp new file mode 100755 index 00000000..557d4619 --- /dev/null +++ b/sensors/qsensorfilter.cpp @@ -0,0 +1,18 @@ +#include "qsensorfilter.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSensorFilter: public QSensorFilter { +public: +}; + +int QSensorFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading){ + return static_cast(ptr)->filter(static_cast(reading)); +} + diff --git a/sensors/qsensorfilter.go b/sensors/qsensorfilter.go new file mode 100755 index 00000000..a242129a --- /dev/null +++ b/sensors/qsensorfilter.go @@ -0,0 +1,47 @@ +package sensors + +//#include "qsensorfilter.h" +import "C" +import ( + "unsafe" +) + +type QSensorFilter struct { + ptr unsafe.Pointer +} + +type QSensorFilterITF interface { + QSensorFilterPTR() *QSensorFilter +} + +func (p *QSensorFilter) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSensorFilter) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSensorFilter(ptr QSensorFilterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSensorFilterPTR().Pointer() + } + return nil +} + +func QSensorFilterFromPointer(ptr unsafe.Pointer) *QSensorFilter { + var n = new(QSensorFilter) + n.SetPointer(ptr) + return n +} + +func (ptr *QSensorFilter) QSensorFilterPTR() *QSensorFilter { + return ptr +} + +func (ptr *QSensorFilter) Filter(reading QSensorReadingITF) bool { + if ptr.Pointer() != nil { + return C.QSensorFilter_Filter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSensorReading(reading))) != 0 + } + return false +} diff --git a/sensors/qsensorfilter.h b/sensors/qsensorfilter.h new file mode 100755 index 00000000..2333ab4e --- /dev/null +++ b/sensors/qsensorfilter.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QSensorFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qsensorgesture.cpp b/sensors/qsensorgesture.cpp new file mode 100755 index 00000000..6d37ec67 --- /dev/null +++ b/sensors/qsensorgesture.cpp @@ -0,0 +1,46 @@ +#include "qsensorgesture.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSensorGesture: public QSensorGesture { +public: +}; + +QtObjectPtr QSensorGesture_NewQSensorGesture(char* ids, QtObjectPtr parent){ + return new QSensorGesture(QString(ids).split("|", QString::SkipEmptyParts), static_cast(parent)); +} + +char* QSensorGesture_GestureSignals(QtObjectPtr ptr){ + return static_cast(ptr)->gestureSignals().join("|").toUtf8().data(); +} + +char* QSensorGesture_InvalidIds(QtObjectPtr ptr){ + return static_cast(ptr)->invalidIds().join("|").toUtf8().data(); +} + +int QSensorGesture_IsActive(QtObjectPtr ptr){ + return static_cast(ptr)->isActive(); +} + +void QSensorGesture_StartDetection(QtObjectPtr ptr){ + static_cast(ptr)->startDetection(); +} + +void QSensorGesture_StopDetection(QtObjectPtr ptr){ + static_cast(ptr)->stopDetection(); +} + +char* QSensorGesture_ValidIds(QtObjectPtr ptr){ + return static_cast(ptr)->validIds().join("|").toUtf8().data(); +} + +void QSensorGesture_DestroyQSensorGesture(QtObjectPtr ptr){ + static_cast(ptr)->~QSensorGesture(); +} + diff --git a/sensors/qsensorgesture.go b/sensors/qsensorgesture.go new file mode 100755 index 00000000..b8a17e13 --- /dev/null +++ b/sensors/qsensorgesture.go @@ -0,0 +1,90 @@ +package sensors + +//#include "qsensorgesture.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QSensorGesture struct { + core.QObject +} + +type QSensorGestureITF interface { + core.QObjectITF + QSensorGesturePTR() *QSensorGesture +} + +func PointerFromQSensorGesture(ptr QSensorGestureITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSensorGesturePTR().Pointer() + } + return nil +} + +func QSensorGestureFromPointer(ptr unsafe.Pointer) *QSensorGesture { + var n = new(QSensorGesture) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSensorGesture_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSensorGesture) QSensorGesturePTR() *QSensorGesture { + return ptr +} + +func NewQSensorGesture(ids []string, parent core.QObjectITF) *QSensorGesture { + return QSensorGestureFromPointer(unsafe.Pointer(C.QSensorGesture_NewQSensorGesture(C.CString(strings.Join(ids, "|")), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QSensorGesture) GestureSignals() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QSensorGesture_GestureSignals(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QSensorGesture) InvalidIds() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QSensorGesture_InvalidIds(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QSensorGesture) IsActive() bool { + if ptr.Pointer() != nil { + return C.QSensorGesture_IsActive(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSensorGesture) StartDetection() { + if ptr.Pointer() != nil { + C.QSensorGesture_StartDetection(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSensorGesture) StopDetection() { + if ptr.Pointer() != nil { + C.QSensorGesture_StopDetection(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSensorGesture) ValidIds() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QSensorGesture_ValidIds(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QSensorGesture) DestroyQSensorGesture() { + if ptr.Pointer() != nil { + C.QSensorGesture_DestroyQSensorGesture(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/sensors/qsensorgesture.h b/sensors/qsensorgesture.h new file mode 100755 index 00000000..5231af8d --- /dev/null +++ b/sensors/qsensorgesture.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSensorGesture_NewQSensorGesture(char* ids, QtObjectPtr parent); +char* QSensorGesture_GestureSignals(QtObjectPtr ptr); +char* QSensorGesture_InvalidIds(QtObjectPtr ptr); +int QSensorGesture_IsActive(QtObjectPtr ptr); +void QSensorGesture_StartDetection(QtObjectPtr ptr); +void QSensorGesture_StopDetection(QtObjectPtr ptr); +char* QSensorGesture_ValidIds(QtObjectPtr ptr); +void QSensorGesture_DestroyQSensorGesture(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qsensorgesturemanager.cpp b/sensors/qsensorgesturemanager.cpp new file mode 100755 index 00000000..a87848af --- /dev/null +++ b/sensors/qsensorgesturemanager.cpp @@ -0,0 +1,49 @@ +#include "qsensorgesturemanager.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSensorGestureManager: public QSensorGestureManager { +public: +void Signal_NewSensorGestureAvailable(){callbackQSensorGestureManagerNewSensorGestureAvailable(this->objectName().toUtf8().data());}; +}; + +QtObjectPtr QSensorGestureManager_NewQSensorGestureManager(QtObjectPtr parent){ + return new QSensorGestureManager(static_cast(parent)); +} + +char* QSensorGestureManager_GestureIds(QtObjectPtr ptr){ + return static_cast(ptr)->gestureIds().join("|").toUtf8().data(); +} + +void QSensorGestureManager_ConnectNewSensorGestureAvailable(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSensorGestureManager::newSensorGestureAvailable), static_cast(ptr), static_cast(&MyQSensorGestureManager::Signal_NewSensorGestureAvailable));; +} + +void QSensorGestureManager_DisconnectNewSensorGestureAvailable(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSensorGestureManager::newSensorGestureAvailable), static_cast(ptr), static_cast(&MyQSensorGestureManager::Signal_NewSensorGestureAvailable));; +} + +char* QSensorGestureManager_RecognizerSignals(QtObjectPtr ptr, char* gestureId){ + return static_cast(ptr)->recognizerSignals(QString(gestureId)).join("|").toUtf8().data(); +} + +int QSensorGestureManager_RegisterSensorGestureRecognizer(QtObjectPtr ptr, QtObjectPtr recognizer){ + return static_cast(ptr)->registerSensorGestureRecognizer(static_cast(recognizer)); +} + +QtObjectPtr QSensorGestureManager_QSensorGestureManager_SensorGestureRecognizer(char* id){ + return QSensorGestureManager::sensorGestureRecognizer(QString(id)); +} + +void QSensorGestureManager_DestroyQSensorGestureManager(QtObjectPtr ptr){ + static_cast(ptr)->~QSensorGestureManager(); +} + diff --git a/sensors/qsensorgesturemanager.go b/sensors/qsensorgesturemanager.go new file mode 100755 index 00000000..638e79f2 --- /dev/null +++ b/sensors/qsensorgesturemanager.go @@ -0,0 +1,94 @@ +package sensors + +//#include "qsensorgesturemanager.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QSensorGestureManager struct { + core.QObject +} + +type QSensorGestureManagerITF interface { + core.QObjectITF + QSensorGestureManagerPTR() *QSensorGestureManager +} + +func PointerFromQSensorGestureManager(ptr QSensorGestureManagerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSensorGestureManagerPTR().Pointer() + } + return nil +} + +func QSensorGestureManagerFromPointer(ptr unsafe.Pointer) *QSensorGestureManager { + var n = new(QSensorGestureManager) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSensorGestureManager_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSensorGestureManager) QSensorGestureManagerPTR() *QSensorGestureManager { + return ptr +} + +func NewQSensorGestureManager(parent core.QObjectITF) *QSensorGestureManager { + return QSensorGestureManagerFromPointer(unsafe.Pointer(C.QSensorGestureManager_NewQSensorGestureManager(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QSensorGestureManager) GestureIds() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QSensorGestureManager_GestureIds(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QSensorGestureManager) ConnectNewSensorGestureAvailable(f func()) { + if ptr.Pointer() != nil { + C.QSensorGestureManager_ConnectNewSensorGestureAvailable(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "newSensorGestureAvailable", f) + } +} + +func (ptr *QSensorGestureManager) DisconnectNewSensorGestureAvailable() { + if ptr.Pointer() != nil { + C.QSensorGestureManager_DisconnectNewSensorGestureAvailable(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "newSensorGestureAvailable") + } +} + +//export callbackQSensorGestureManagerNewSensorGestureAvailable +func callbackQSensorGestureManagerNewSensorGestureAvailable(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "newSensorGestureAvailable").(func())() +} + +func (ptr *QSensorGestureManager) RecognizerSignals(gestureId string) []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QSensorGestureManager_RecognizerSignals(C.QtObjectPtr(ptr.Pointer()), C.CString(gestureId))), "|") + } + return make([]string, 0) +} + +func (ptr *QSensorGestureManager) RegisterSensorGestureRecognizer(recognizer QSensorGestureRecognizerITF) bool { + if ptr.Pointer() != nil { + return C.QSensorGestureManager_RegisterSensorGestureRecognizer(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSensorGestureRecognizer(recognizer))) != 0 + } + return false +} + +func QSensorGestureManager_SensorGestureRecognizer(id string) *QSensorGestureRecognizer { + return QSensorGestureRecognizerFromPointer(unsafe.Pointer(C.QSensorGestureManager_QSensorGestureManager_SensorGestureRecognizer(C.CString(id)))) +} + +func (ptr *QSensorGestureManager) DestroyQSensorGestureManager() { + if ptr.Pointer() != nil { + C.QSensorGestureManager_DestroyQSensorGestureManager(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/sensors/qsensorgesturemanager.h b/sensors/qsensorgesturemanager.h new file mode 100755 index 00000000..e36d6dfa --- /dev/null +++ b/sensors/qsensorgesturemanager.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSensorGestureManager_NewQSensorGestureManager(QtObjectPtr parent); +char* QSensorGestureManager_GestureIds(QtObjectPtr ptr); +void QSensorGestureManager_ConnectNewSensorGestureAvailable(QtObjectPtr ptr); +void QSensorGestureManager_DisconnectNewSensorGestureAvailable(QtObjectPtr ptr); +char* QSensorGestureManager_RecognizerSignals(QtObjectPtr ptr, char* gestureId); +int QSensorGestureManager_RegisterSensorGestureRecognizer(QtObjectPtr ptr, QtObjectPtr recognizer); +QtObjectPtr QSensorGestureManager_QSensorGestureManager_SensorGestureRecognizer(char* id); +void QSensorGestureManager_DestroyQSensorGestureManager(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qsensorgestureplugininterface.cpp b/sensors/qsensorgestureplugininterface.cpp new file mode 100755 index 00000000..1b9591af --- /dev/null +++ b/sensors/qsensorgestureplugininterface.cpp @@ -0,0 +1,26 @@ +#include "qsensorgestureplugininterface.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSensorGesturePluginInterface: public QSensorGesturePluginInterface { +public: +}; + +char* QSensorGesturePluginInterface_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +char* QSensorGesturePluginInterface_SupportedIds(QtObjectPtr ptr){ + return static_cast(ptr)->supportedIds().join("|").toUtf8().data(); +} + +void QSensorGesturePluginInterface_DestroyQSensorGesturePluginInterface(QtObjectPtr ptr){ + static_cast(ptr)->~QSensorGesturePluginInterface(); +} + diff --git a/sensors/qsensorgestureplugininterface.go b/sensors/qsensorgestureplugininterface.go new file mode 100755 index 00000000..4b8451e2 --- /dev/null +++ b/sensors/qsensorgestureplugininterface.go @@ -0,0 +1,61 @@ +package sensors + +//#include "qsensorgestureplugininterface.h" +import "C" +import ( + "strings" + "unsafe" +) + +type QSensorGesturePluginInterface struct { + ptr unsafe.Pointer +} + +type QSensorGesturePluginInterfaceITF interface { + QSensorGesturePluginInterfacePTR() *QSensorGesturePluginInterface +} + +func (p *QSensorGesturePluginInterface) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSensorGesturePluginInterface) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSensorGesturePluginInterface(ptr QSensorGesturePluginInterfaceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSensorGesturePluginInterfacePTR().Pointer() + } + return nil +} + +func QSensorGesturePluginInterfaceFromPointer(ptr unsafe.Pointer) *QSensorGesturePluginInterface { + var n = new(QSensorGesturePluginInterface) + n.SetPointer(ptr) + return n +} + +func (ptr *QSensorGesturePluginInterface) QSensorGesturePluginInterfacePTR() *QSensorGesturePluginInterface { + return ptr +} + +func (ptr *QSensorGesturePluginInterface) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSensorGesturePluginInterface_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSensorGesturePluginInterface) SupportedIds() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QSensorGesturePluginInterface_SupportedIds(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QSensorGesturePluginInterface) DestroyQSensorGesturePluginInterface() { + if ptr.Pointer() != nil { + C.QSensorGesturePluginInterface_DestroyQSensorGesturePluginInterface(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/sensors/qsensorgestureplugininterface.h b/sensors/qsensorgestureplugininterface.h new file mode 100755 index 00000000..482f6ce3 --- /dev/null +++ b/sensors/qsensorgestureplugininterface.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QSensorGesturePluginInterface_Name(QtObjectPtr ptr); +char* QSensorGesturePluginInterface_SupportedIds(QtObjectPtr ptr); +void QSensorGesturePluginInterface_DestroyQSensorGesturePluginInterface(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qsensorgesturerecognizer.cpp b/sensors/qsensorgesturerecognizer.cpp new file mode 100755 index 00000000..b6685985 --- /dev/null +++ b/sensors/qsensorgesturerecognizer.cpp @@ -0,0 +1,42 @@ +#include "qsensorgesturerecognizer.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSensorGestureRecognizer: public QSensorGestureRecognizer { +public: +}; + +void QSensorGestureRecognizer_CreateBackend(QtObjectPtr ptr){ + static_cast(ptr)->createBackend(); +} + +char* QSensorGestureRecognizer_GestureSignals(QtObjectPtr ptr){ + return static_cast(ptr)->gestureSignals().join("|").toUtf8().data(); +} + +char* QSensorGestureRecognizer_Id(QtObjectPtr ptr){ + return static_cast(ptr)->id().toUtf8().data(); +} + +int QSensorGestureRecognizer_IsActive(QtObjectPtr ptr){ + return static_cast(ptr)->isActive(); +} + +void QSensorGestureRecognizer_StartBackend(QtObjectPtr ptr){ + static_cast(ptr)->startBackend(); +} + +void QSensorGestureRecognizer_StopBackend(QtObjectPtr ptr){ + static_cast(ptr)->stopBackend(); +} + +void QSensorGestureRecognizer_DestroyQSensorGestureRecognizer(QtObjectPtr ptr){ + static_cast(ptr)->~QSensorGestureRecognizer(); +} + diff --git a/sensors/qsensorgesturerecognizer.go b/sensors/qsensorgesturerecognizer.go new file mode 100755 index 00000000..afb3fcec --- /dev/null +++ b/sensors/qsensorgesturerecognizer.go @@ -0,0 +1,85 @@ +package sensors + +//#include "qsensorgesturerecognizer.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QSensorGestureRecognizer struct { + core.QObject +} + +type QSensorGestureRecognizerITF interface { + core.QObjectITF + QSensorGestureRecognizerPTR() *QSensorGestureRecognizer +} + +func PointerFromQSensorGestureRecognizer(ptr QSensorGestureRecognizerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSensorGestureRecognizerPTR().Pointer() + } + return nil +} + +func QSensorGestureRecognizerFromPointer(ptr unsafe.Pointer) *QSensorGestureRecognizer { + var n = new(QSensorGestureRecognizer) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSensorGestureRecognizer_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSensorGestureRecognizer) QSensorGestureRecognizerPTR() *QSensorGestureRecognizer { + return ptr +} + +func (ptr *QSensorGestureRecognizer) CreateBackend() { + if ptr.Pointer() != nil { + C.QSensorGestureRecognizer_CreateBackend(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSensorGestureRecognizer) GestureSignals() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QSensorGestureRecognizer_GestureSignals(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QSensorGestureRecognizer) Id() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSensorGestureRecognizer_Id(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSensorGestureRecognizer) IsActive() bool { + if ptr.Pointer() != nil { + return C.QSensorGestureRecognizer_IsActive(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSensorGestureRecognizer) StartBackend() { + if ptr.Pointer() != nil { + C.QSensorGestureRecognizer_StartBackend(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSensorGestureRecognizer) StopBackend() { + if ptr.Pointer() != nil { + C.QSensorGestureRecognizer_StopBackend(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSensorGestureRecognizer) DestroyQSensorGestureRecognizer() { + if ptr.Pointer() != nil { + C.QSensorGestureRecognizer_DestroyQSensorGestureRecognizer(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/sensors/qsensorgesturerecognizer.h b/sensors/qsensorgesturerecognizer.h new file mode 100755 index 00000000..20d60225 --- /dev/null +++ b/sensors/qsensorgesturerecognizer.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QSensorGestureRecognizer_CreateBackend(QtObjectPtr ptr); +char* QSensorGestureRecognizer_GestureSignals(QtObjectPtr ptr); +char* QSensorGestureRecognizer_Id(QtObjectPtr ptr); +int QSensorGestureRecognizer_IsActive(QtObjectPtr ptr); +void QSensorGestureRecognizer_StartBackend(QtObjectPtr ptr); +void QSensorGestureRecognizer_StopBackend(QtObjectPtr ptr); +void QSensorGestureRecognizer_DestroyQSensorGestureRecognizer(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qsensormanager.cpp b/sensors/qsensormanager.cpp new file mode 100755 index 00000000..deb4c42d --- /dev/null +++ b/sensors/qsensormanager.cpp @@ -0,0 +1,36 @@ +#include "qsensormanager.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSensorManager: public QSensorManager { +public: +}; + +QtObjectPtr QSensorManager_QSensorManager_CreateBackend(QtObjectPtr sensor){ + return QSensorManager::createBackend(static_cast(sensor)); +} + +int QSensorManager_QSensorManager_IsBackendRegistered(QtObjectPtr ty, QtObjectPtr identifier){ + return QSensorManager::isBackendRegistered(*static_cast(ty), *static_cast(identifier)); +} + +void QSensorManager_QSensorManager_RegisterBackend(QtObjectPtr ty, QtObjectPtr identifier, QtObjectPtr factory){ + QSensorManager::registerBackend(*static_cast(ty), *static_cast(identifier), static_cast(factory)); +} + +void QSensorManager_QSensorManager_SetDefaultBackend(QtObjectPtr ty, QtObjectPtr identifier){ + QSensorManager::setDefaultBackend(*static_cast(ty), *static_cast(identifier)); +} + +void QSensorManager_QSensorManager_UnregisterBackend(QtObjectPtr ty, QtObjectPtr identifier){ + QSensorManager::unregisterBackend(*static_cast(ty), *static_cast(identifier)); +} + diff --git a/sensors/qsensormanager.go b/sensors/qsensormanager.go new file mode 100755 index 00000000..55e3f26a --- /dev/null +++ b/sensors/qsensormanager.go @@ -0,0 +1,61 @@ +package sensors + +//#include "qsensormanager.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QSensorManager struct { + ptr unsafe.Pointer +} + +type QSensorManagerITF interface { + QSensorManagerPTR() *QSensorManager +} + +func (p *QSensorManager) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSensorManager) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSensorManager(ptr QSensorManagerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSensorManagerPTR().Pointer() + } + return nil +} + +func QSensorManagerFromPointer(ptr unsafe.Pointer) *QSensorManager { + var n = new(QSensorManager) + n.SetPointer(ptr) + return n +} + +func (ptr *QSensorManager) QSensorManagerPTR() *QSensorManager { + return ptr +} + +func QSensorManager_CreateBackend(sensor QSensorITF) *QSensorBackend { + return QSensorBackendFromPointer(unsafe.Pointer(C.QSensorManager_QSensorManager_CreateBackend(C.QtObjectPtr(PointerFromQSensor(sensor))))) +} + +func QSensorManager_IsBackendRegistered(ty core.QByteArrayITF, identifier core.QByteArrayITF) bool { + return C.QSensorManager_QSensorManager_IsBackendRegistered(C.QtObjectPtr(core.PointerFromQByteArray(ty)), C.QtObjectPtr(core.PointerFromQByteArray(identifier))) != 0 +} + +func QSensorManager_RegisterBackend(ty core.QByteArrayITF, identifier core.QByteArrayITF, factory QSensorBackendFactoryITF) { + C.QSensorManager_QSensorManager_RegisterBackend(C.QtObjectPtr(core.PointerFromQByteArray(ty)), C.QtObjectPtr(core.PointerFromQByteArray(identifier)), C.QtObjectPtr(PointerFromQSensorBackendFactory(factory))) +} + +func QSensorManager_SetDefaultBackend(ty core.QByteArrayITF, identifier core.QByteArrayITF) { + C.QSensorManager_QSensorManager_SetDefaultBackend(C.QtObjectPtr(core.PointerFromQByteArray(ty)), C.QtObjectPtr(core.PointerFromQByteArray(identifier))) +} + +func QSensorManager_UnregisterBackend(ty core.QByteArrayITF, identifier core.QByteArrayITF) { + C.QSensorManager_QSensorManager_UnregisterBackend(C.QtObjectPtr(core.PointerFromQByteArray(ty)), C.QtObjectPtr(core.PointerFromQByteArray(identifier))) +} diff --git a/sensors/qsensormanager.h b/sensors/qsensormanager.h new file mode 100755 index 00000000..c82cf41a --- /dev/null +++ b/sensors/qsensormanager.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSensorManager_QSensorManager_CreateBackend(QtObjectPtr sensor); +int QSensorManager_QSensorManager_IsBackendRegistered(QtObjectPtr ty, QtObjectPtr identifier); +void QSensorManager_QSensorManager_RegisterBackend(QtObjectPtr ty, QtObjectPtr identifier, QtObjectPtr factory); +void QSensorManager_QSensorManager_SetDefaultBackend(QtObjectPtr ty, QtObjectPtr identifier); +void QSensorManager_QSensorManager_UnregisterBackend(QtObjectPtr ty, QtObjectPtr identifier); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qsensorplugininterface.cpp b/sensors/qsensorplugininterface.cpp new file mode 100755 index 00000000..eb21f96f --- /dev/null +++ b/sensors/qsensorplugininterface.cpp @@ -0,0 +1,17 @@ +#include "qsensorplugininterface.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSensorPluginInterface: public QSensorPluginInterface { +public: +}; + +void QSensorPluginInterface_RegisterSensors(QtObjectPtr ptr){ + static_cast(ptr)->registerSensors(); +} + diff --git a/sensors/qsensorplugininterface.go b/sensors/qsensorplugininterface.go new file mode 100755 index 00000000..73cf2b73 --- /dev/null +++ b/sensors/qsensorplugininterface.go @@ -0,0 +1,46 @@ +package sensors + +//#include "qsensorplugininterface.h" +import "C" +import ( + "unsafe" +) + +type QSensorPluginInterface struct { + ptr unsafe.Pointer +} + +type QSensorPluginInterfaceITF interface { + QSensorPluginInterfacePTR() *QSensorPluginInterface +} + +func (p *QSensorPluginInterface) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSensorPluginInterface) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSensorPluginInterface(ptr QSensorPluginInterfaceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSensorPluginInterfacePTR().Pointer() + } + return nil +} + +func QSensorPluginInterfaceFromPointer(ptr unsafe.Pointer) *QSensorPluginInterface { + var n = new(QSensorPluginInterface) + n.SetPointer(ptr) + return n +} + +func (ptr *QSensorPluginInterface) QSensorPluginInterfacePTR() *QSensorPluginInterface { + return ptr +} + +func (ptr *QSensorPluginInterface) RegisterSensors() { + if ptr.Pointer() != nil { + C.QSensorPluginInterface_RegisterSensors(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/sensors/qsensorplugininterface.h b/sensors/qsensorplugininterface.h new file mode 100755 index 00000000..726afb4a --- /dev/null +++ b/sensors/qsensorplugininterface.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QSensorPluginInterface_RegisterSensors(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qsensorreading.cpp b/sensors/qsensorreading.cpp new file mode 100755 index 00000000..d5a10b10 --- /dev/null +++ b/sensors/qsensorreading.cpp @@ -0,0 +1,21 @@ +#include "qsensorreading.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSensorReading: public QSensorReading { +public: +}; + +char* QSensorReading_Value(QtObjectPtr ptr, int index){ + return static_cast(ptr)->value(index).toString().toUtf8().data(); +} + +int QSensorReading_ValueCount(QtObjectPtr ptr){ + return static_cast(ptr)->valueCount(); +} + diff --git a/sensors/qsensorreading.go b/sensors/qsensorreading.go new file mode 100755 index 00000000..98baab41 --- /dev/null +++ b/sensors/qsensorreading.go @@ -0,0 +1,52 @@ +package sensors + +//#include "qsensorreading.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QSensorReading struct { + core.QObject +} + +type QSensorReadingITF interface { + core.QObjectITF + QSensorReadingPTR() *QSensorReading +} + +func PointerFromQSensorReading(ptr QSensorReadingITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSensorReadingPTR().Pointer() + } + return nil +} + +func QSensorReadingFromPointer(ptr unsafe.Pointer) *QSensorReading { + var n = new(QSensorReading) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSensorReading_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSensorReading) QSensorReadingPTR() *QSensorReading { + return ptr +} + +func (ptr *QSensorReading) Value(index int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QSensorReading_Value(C.QtObjectPtr(ptr.Pointer()), C.int(index))) + } + return "" +} + +func (ptr *QSensorReading) ValueCount() int { + if ptr.Pointer() != nil { + return int(C.QSensorReading_ValueCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/sensors/qsensorreading.h b/sensors/qsensorreading.h new file mode 100755 index 00000000..14dae8e5 --- /dev/null +++ b/sensors/qsensorreading.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QSensorReading_Value(QtObjectPtr ptr, int index); +int QSensorReading_ValueCount(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qtapfilter.cpp b/sensors/qtapfilter.cpp new file mode 100755 index 00000000..afb2fc4c --- /dev/null +++ b/sensors/qtapfilter.cpp @@ -0,0 +1,17 @@ +#include "qtapfilter.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTapFilter: public QTapFilter { +public: +}; + +int QTapFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading){ + return static_cast(ptr)->filter(static_cast(reading)); +} + diff --git a/sensors/qtapfilter.go b/sensors/qtapfilter.go new file mode 100755 index 00000000..eb4b23a5 --- /dev/null +++ b/sensors/qtapfilter.go @@ -0,0 +1,40 @@ +package sensors + +//#include "qtapfilter.h" +import "C" +import ( + "unsafe" +) + +type QTapFilter struct { + QSensorFilter +} + +type QTapFilterITF interface { + QSensorFilterITF + QTapFilterPTR() *QTapFilter +} + +func PointerFromQTapFilter(ptr QTapFilterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTapFilterPTR().Pointer() + } + return nil +} + +func QTapFilterFromPointer(ptr unsafe.Pointer) *QTapFilter { + var n = new(QTapFilter) + n.SetPointer(ptr) + return n +} + +func (ptr *QTapFilter) QTapFilterPTR() *QTapFilter { + return ptr +} + +func (ptr *QTapFilter) Filter(reading QTapReadingITF) bool { + if ptr.Pointer() != nil { + return C.QTapFilter_Filter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTapReading(reading))) != 0 + } + return false +} diff --git a/sensors/qtapfilter.h b/sensors/qtapfilter.h new file mode 100755 index 00000000..10aebbbd --- /dev/null +++ b/sensors/qtapfilter.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QTapFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qtapreading.cpp b/sensors/qtapreading.cpp new file mode 100755 index 00000000..290fad2f --- /dev/null +++ b/sensors/qtapreading.cpp @@ -0,0 +1,28 @@ +#include "qtapreading.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTapReading: public QTapReading { +public: +}; + +int QTapReading_IsDoubleTap(QtObjectPtr ptr){ + return static_cast(ptr)->isDoubleTap(); +} + +int QTapReading_TapDirection(QtObjectPtr ptr){ + return static_cast(ptr)->tapDirection(); +} + +void QTapReading_SetDoubleTap(QtObjectPtr ptr, int doubleTap){ + static_cast(ptr)->setDoubleTap(doubleTap != 0); +} + +void QTapReading_SetTapDirection(QtObjectPtr ptr, int tapDirection){ + static_cast(ptr)->setTapDirection(static_cast(tapDirection)); +} + diff --git a/sensors/qtapreading.go b/sensors/qtapreading.go new file mode 100755 index 00000000..0fcc3407 --- /dev/null +++ b/sensors/qtapreading.go @@ -0,0 +1,82 @@ +package sensors + +//#include "qtapreading.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QTapReading struct { + QSensorReading +} + +type QTapReadingITF interface { + QSensorReadingITF + QTapReadingPTR() *QTapReading +} + +func PointerFromQTapReading(ptr QTapReadingITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTapReadingPTR().Pointer() + } + return nil +} + +func QTapReadingFromPointer(ptr unsafe.Pointer) *QTapReading { + var n = new(QTapReading) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QTapReading_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QTapReading) QTapReadingPTR() *QTapReading { + return ptr +} + +//QTapReading::TapDirection +type QTapReading__TapDirection int + +var ( + QTapReading__Undefined = QTapReading__TapDirection(0) + QTapReading__X = QTapReading__TapDirection(0x0001) + QTapReading__Y = QTapReading__TapDirection(0x0002) + QTapReading__Z = QTapReading__TapDirection(0x0004) + QTapReading__X_Pos = QTapReading__TapDirection(0x0011) + QTapReading__Y_Pos = QTapReading__TapDirection(0x0022) + QTapReading__Z_Pos = QTapReading__TapDirection(0x0044) + QTapReading__X_Neg = QTapReading__TapDirection(0x0101) + QTapReading__Y_Neg = QTapReading__TapDirection(0x0202) + QTapReading__Z_Neg = QTapReading__TapDirection(0x0404) + QTapReading__X_Both = QTapReading__TapDirection(0x0111) + QTapReading__Y_Both = QTapReading__TapDirection(0x0222) + QTapReading__Z_Both = QTapReading__TapDirection(0x0444) +) + +func (ptr *QTapReading) IsDoubleTap() bool { + if ptr.Pointer() != nil { + return C.QTapReading_IsDoubleTap(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTapReading) TapDirection() QTapReading__TapDirection { + if ptr.Pointer() != nil { + return QTapReading__TapDirection(C.QTapReading_TapDirection(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTapReading) SetDoubleTap(doubleTap bool) { + if ptr.Pointer() != nil { + C.QTapReading_SetDoubleTap(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(doubleTap))) + } +} + +func (ptr *QTapReading) SetTapDirection(tapDirection QTapReading__TapDirection) { + if ptr.Pointer() != nil { + C.QTapReading_SetTapDirection(C.QtObjectPtr(ptr.Pointer()), C.int(tapDirection)) + } +} diff --git a/sensors/qtapreading.h b/sensors/qtapreading.h new file mode 100755 index 00000000..9e478bd3 --- /dev/null +++ b/sensors/qtapreading.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QTapReading_IsDoubleTap(QtObjectPtr ptr); +int QTapReading_TapDirection(QtObjectPtr ptr); +void QTapReading_SetDoubleTap(QtObjectPtr ptr, int doubleTap); +void QTapReading_SetTapDirection(QtObjectPtr ptr, int tapDirection); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qtapsensor.cpp b/sensors/qtapsensor.cpp new file mode 100755 index 00000000..676b07d7 --- /dev/null +++ b/sensors/qtapsensor.cpp @@ -0,0 +1,42 @@ +#include "qtapsensor.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTapSensor: public QTapSensor { +public: +void Signal_ReturnDoubleTapEventsChanged(bool returnDoubleTapEvents){callbackQTapSensorReturnDoubleTapEventsChanged(this->objectName().toUtf8().data(), returnDoubleTapEvents);}; +}; + +QtObjectPtr QTapSensor_Reading(QtObjectPtr ptr){ + return static_cast(ptr)->reading(); +} + +int QTapSensor_ReturnDoubleTapEvents(QtObjectPtr ptr){ + return static_cast(ptr)->returnDoubleTapEvents(); +} + +void QTapSensor_SetReturnDoubleTapEvents(QtObjectPtr ptr, int returnDoubleTapEvents){ + static_cast(ptr)->setReturnDoubleTapEvents(returnDoubleTapEvents != 0); +} + +QtObjectPtr QTapSensor_NewQTapSensor(QtObjectPtr parent){ + return new QTapSensor(static_cast(parent)); +} + +void QTapSensor_ConnectReturnDoubleTapEventsChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTapSensor::returnDoubleTapEventsChanged), static_cast(ptr), static_cast(&MyQTapSensor::Signal_ReturnDoubleTapEventsChanged));; +} + +void QTapSensor_DisconnectReturnDoubleTapEventsChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTapSensor::returnDoubleTapEventsChanged), static_cast(ptr), static_cast(&MyQTapSensor::Signal_ReturnDoubleTapEventsChanged));; +} + +void QTapSensor_DestroyQTapSensor(QtObjectPtr ptr){ + static_cast(ptr)->~QTapSensor(); +} + diff --git a/sensors/qtapsensor.go b/sensors/qtapsensor.go new file mode 100755 index 00000000..9ea81f5f --- /dev/null +++ b/sensors/qtapsensor.go @@ -0,0 +1,88 @@ +package sensors + +//#include "qtapsensor.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QTapSensor struct { + QSensor +} + +type QTapSensorITF interface { + QSensorITF + QTapSensorPTR() *QTapSensor +} + +func PointerFromQTapSensor(ptr QTapSensorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTapSensorPTR().Pointer() + } + return nil +} + +func QTapSensorFromPointer(ptr unsafe.Pointer) *QTapSensor { + var n = new(QTapSensor) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QTapSensor_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QTapSensor) QTapSensorPTR() *QTapSensor { + return ptr +} + +func (ptr *QTapSensor) Reading() *QTapReading { + if ptr.Pointer() != nil { + return QTapReadingFromPointer(unsafe.Pointer(C.QTapSensor_Reading(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTapSensor) ReturnDoubleTapEvents() bool { + if ptr.Pointer() != nil { + return C.QTapSensor_ReturnDoubleTapEvents(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTapSensor) SetReturnDoubleTapEvents(returnDoubleTapEvents bool) { + if ptr.Pointer() != nil { + C.QTapSensor_SetReturnDoubleTapEvents(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(returnDoubleTapEvents))) + } +} + +func NewQTapSensor(parent core.QObjectITF) *QTapSensor { + return QTapSensorFromPointer(unsafe.Pointer(C.QTapSensor_NewQTapSensor(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QTapSensor) ConnectReturnDoubleTapEventsChanged(f func(returnDoubleTapEvents bool)) { + if ptr.Pointer() != nil { + C.QTapSensor_ConnectReturnDoubleTapEventsChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "returnDoubleTapEventsChanged", f) + } +} + +func (ptr *QTapSensor) DisconnectReturnDoubleTapEventsChanged() { + if ptr.Pointer() != nil { + C.QTapSensor_DisconnectReturnDoubleTapEventsChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "returnDoubleTapEventsChanged") + } +} + +//export callbackQTapSensorReturnDoubleTapEventsChanged +func callbackQTapSensorReturnDoubleTapEventsChanged(ptrName *C.char, returnDoubleTapEvents C.int) { + qt.GetSignal(C.GoString(ptrName), "returnDoubleTapEventsChanged").(func(bool))(int(returnDoubleTapEvents) != 0) +} + +func (ptr *QTapSensor) DestroyQTapSensor() { + if ptr.Pointer() != nil { + C.QTapSensor_DestroyQTapSensor(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/sensors/qtapsensor.h b/sensors/qtapsensor.h new file mode 100755 index 00000000..60c50bd7 --- /dev/null +++ b/sensors/qtapsensor.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTapSensor_Reading(QtObjectPtr ptr); +int QTapSensor_ReturnDoubleTapEvents(QtObjectPtr ptr); +void QTapSensor_SetReturnDoubleTapEvents(QtObjectPtr ptr, int returnDoubleTapEvents); +QtObjectPtr QTapSensor_NewQTapSensor(QtObjectPtr parent); +void QTapSensor_ConnectReturnDoubleTapEventsChanged(QtObjectPtr ptr); +void QTapSensor_DisconnectReturnDoubleTapEventsChanged(QtObjectPtr ptr); +void QTapSensor_DestroyQTapSensor(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qtiltfilter.cpp b/sensors/qtiltfilter.cpp new file mode 100755 index 00000000..ef60ce9d --- /dev/null +++ b/sensors/qtiltfilter.cpp @@ -0,0 +1,17 @@ +#include "qtiltfilter.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTiltFilter: public QTiltFilter { +public: +}; + +int QTiltFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading){ + return static_cast(ptr)->filter(static_cast(reading)); +} + diff --git a/sensors/qtiltfilter.go b/sensors/qtiltfilter.go new file mode 100755 index 00000000..0b73f8b3 --- /dev/null +++ b/sensors/qtiltfilter.go @@ -0,0 +1,40 @@ +package sensors + +//#include "qtiltfilter.h" +import "C" +import ( + "unsafe" +) + +type QTiltFilter struct { + QSensorFilter +} + +type QTiltFilterITF interface { + QSensorFilterITF + QTiltFilterPTR() *QTiltFilter +} + +func PointerFromQTiltFilter(ptr QTiltFilterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTiltFilterPTR().Pointer() + } + return nil +} + +func QTiltFilterFromPointer(ptr unsafe.Pointer) *QTiltFilter { + var n = new(QTiltFilter) + n.SetPointer(ptr) + return n +} + +func (ptr *QTiltFilter) QTiltFilterPTR() *QTiltFilter { + return ptr +} + +func (ptr *QTiltFilter) Filter(reading QTiltReadingITF) bool { + if ptr.Pointer() != nil { + return C.QTiltFilter_Filter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTiltReading(reading))) != 0 + } + return false +} diff --git a/sensors/qtiltfilter.h b/sensors/qtiltfilter.h new file mode 100755 index 00000000..cc93a4b0 --- /dev/null +++ b/sensors/qtiltfilter.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QTiltFilter_Filter(QtObjectPtr ptr, QtObjectPtr reading); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qtiltreading.cpp b/sensors/qtiltreading.cpp new file mode 100755 index 00000000..c49d70a6 --- /dev/null +++ b/sensors/qtiltreading.cpp @@ -0,0 +1,12 @@ +#include "qtiltreading.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTiltReading: public QTiltReading { +public: +}; + diff --git a/sensors/qtiltreading.go b/sensors/qtiltreading.go new file mode 100755 index 00000000..fbb4fccf --- /dev/null +++ b/sensors/qtiltreading.go @@ -0,0 +1,37 @@ +package sensors + +//#include "qtiltreading.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QTiltReading struct { + QSensorReading +} + +type QTiltReadingITF interface { + QSensorReadingITF + QTiltReadingPTR() *QTiltReading +} + +func PointerFromQTiltReading(ptr QTiltReadingITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTiltReadingPTR().Pointer() + } + return nil +} + +func QTiltReadingFromPointer(ptr unsafe.Pointer) *QTiltReading { + var n = new(QTiltReading) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QTiltReading_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QTiltReading) QTiltReadingPTR() *QTiltReading { + return ptr +} diff --git a/sensors/qtiltreading.h b/sensors/qtiltreading.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/sensors/qtiltreading.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sensors/qtiltsensor.cpp b/sensors/qtiltsensor.cpp new file mode 100755 index 00000000..9e18ab11 --- /dev/null +++ b/sensors/qtiltsensor.cpp @@ -0,0 +1,29 @@ +#include "qtiltsensor.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTiltSensor: public QTiltSensor { +public: +}; + +QtObjectPtr QTiltSensor_NewQTiltSensor(QtObjectPtr parent){ + return new QTiltSensor(static_cast(parent)); +} + +QtObjectPtr QTiltSensor_Reading(QtObjectPtr ptr){ + return static_cast(ptr)->reading(); +} + +void QTiltSensor_DestroyQTiltSensor(QtObjectPtr ptr){ + static_cast(ptr)->~QTiltSensor(); +} + +void QTiltSensor_Calibrate(QtObjectPtr ptr){ + static_cast(ptr)->calibrate(); +} + diff --git a/sensors/qtiltsensor.go b/sensors/qtiltsensor.go new file mode 100755 index 00000000..b8dded12 --- /dev/null +++ b/sensors/qtiltsensor.go @@ -0,0 +1,62 @@ +package sensors + +//#include "qtiltsensor.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QTiltSensor struct { + QSensor +} + +type QTiltSensorITF interface { + QSensorITF + QTiltSensorPTR() *QTiltSensor +} + +func PointerFromQTiltSensor(ptr QTiltSensorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTiltSensorPTR().Pointer() + } + return nil +} + +func QTiltSensorFromPointer(ptr unsafe.Pointer) *QTiltSensor { + var n = new(QTiltSensor) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QTiltSensor_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QTiltSensor) QTiltSensorPTR() *QTiltSensor { + return ptr +} + +func NewQTiltSensor(parent core.QObjectITF) *QTiltSensor { + return QTiltSensorFromPointer(unsafe.Pointer(C.QTiltSensor_NewQTiltSensor(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QTiltSensor) Reading() *QTiltReading { + if ptr.Pointer() != nil { + return QTiltReadingFromPointer(unsafe.Pointer(C.QTiltSensor_Reading(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTiltSensor) DestroyQTiltSensor() { + if ptr.Pointer() != nil { + C.QTiltSensor_DestroyQTiltSensor(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} + +func (ptr *QTiltSensor) Calibrate() { + if ptr.Pointer() != nil { + C.QTiltSensor_Calibrate(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/sensors/qtiltsensor.h b/sensors/qtiltsensor.h new file mode 100755 index 00000000..00810c17 --- /dev/null +++ b/sensors/qtiltsensor.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTiltSensor_NewQTiltSensor(QtObjectPtr parent); +QtObjectPtr QTiltSensor_Reading(QtObjectPtr ptr); +void QTiltSensor_DestroyQTiltSensor(QtObjectPtr ptr); +void QTiltSensor_Calibrate(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sql/cgo_darwin_amd64.go b/sql/cgo_darwin_amd64.go new file mode 100755 index 00000000..62aa320f --- /dev/null +++ b/sql/cgo_darwin_amd64.go @@ -0,0 +1,13 @@ +package sql + +/* +#cgo CPPFLAGS: -pipe -O2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 -Wall -W +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_SQL_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/mkspecs/macx-clang -F/usr/local/Qt5.5.1/5.5/clang_64/lib +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtCore.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtSql.framework/Headers +#cgo CPPFLAGS: -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.framework/Headers + +#cgo LDFLAGS: -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 +#cgo LDFLAGS: -F/usr/local/Qt5.5.1/5.5/clang_64/lib -framework QtCore -framework QtSql -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL +*/ +import "C" diff --git a/sql/cgo_linux_386.go b/sql/cgo_linux_386.go new file mode 100755 index 00000000..b841f513 --- /dev/null +++ b/sql/cgo_linux_386.go @@ -0,0 +1,12 @@ +package sql + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_SQL_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include -I/usr/local/Qt5.5.1/5.5/gcc/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc/include/QtSql + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc/lib -L/usr/lib -lQt5Core -lQt5Sql -lpthread +*/ +import "C" diff --git a/sql/cgo_linux_amd64.go b/sql/cgo_linux_amd64.go new file mode 100755 index 00000000..ece078a9 --- /dev/null +++ b/sql/cgo_linux_amd64.go @@ -0,0 +1,12 @@ +package sql + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_SQL_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include -I/usr/local/Qt5.5.1/5.5/gcc_64/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtSql + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc_64/lib -L/usr/lib64 -lQt5Core -lQt5Sql -lpthread +*/ +import "C" diff --git a/sql/cgo_windows_386.go b/sql/cgo_windows_386.go new file mode 100755 index 00000000..7c7b83cc --- /dev/null +++ b/sql/cgo_windows_386.go @@ -0,0 +1,12 @@ +package sql + +/* +#cgo CPPFLAGS: -pipe -fno-keep-inline-dllexport -O2 -Wall -Wextra -fexceptions -mthreads +#cgo CPPFLAGS: -DUNICODE -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_SQL_LIB +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include -IC:/Qt/Qt5.5.1/5.5/mingw492_32/mkspecs/win32-g++ +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtCore -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtSql + +#cgo LDFLAGS: -Wl,-s -Wl,-subsystem,windows -mthreads +#cgo LDFLAGS: -LC:/Qt/Qt5.5.1/5.5/mingw492_32/bin -lQt5Core -lQt5Sql +*/ +import "C" diff --git a/sql/qsqldatabase.cpp b/sql/qsqldatabase.cpp new file mode 100755 index 00000000..50e749eb --- /dev/null +++ b/sql/qsqldatabase.cpp @@ -0,0 +1,147 @@ +#include "qsqldatabase.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSqlDatabase: public QSqlDatabase { +public: +}; + +QtObjectPtr QSqlDatabase_NewQSqlDatabase(){ + return new QSqlDatabase(); +} + +QtObjectPtr QSqlDatabase_NewQSqlDatabase2(QtObjectPtr other){ + return new QSqlDatabase(*static_cast(other)); +} + +void QSqlDatabase_Close(QtObjectPtr ptr){ + static_cast(ptr)->close(); +} + +int QSqlDatabase_Commit(QtObjectPtr ptr){ + return static_cast(ptr)->commit(); +} + +char* QSqlDatabase_ConnectOptions(QtObjectPtr ptr){ + return static_cast(ptr)->connectOptions().toUtf8().data(); +} + +char* QSqlDatabase_ConnectionName(QtObjectPtr ptr){ + return static_cast(ptr)->connectionName().toUtf8().data(); +} + +char* QSqlDatabase_QSqlDatabase_ConnectionNames(){ + return QSqlDatabase::connectionNames().join("|").toUtf8().data(); +} + +int QSqlDatabase_QSqlDatabase_Contains(char* connectionName){ + return QSqlDatabase::contains(QString(connectionName)); +} + +char* QSqlDatabase_DatabaseName(QtObjectPtr ptr){ + return static_cast(ptr)->databaseName().toUtf8().data(); +} + +QtObjectPtr QSqlDatabase_Driver(QtObjectPtr ptr){ + return static_cast(ptr)->driver(); +} + +char* QSqlDatabase_DriverName(QtObjectPtr ptr){ + return static_cast(ptr)->driverName().toUtf8().data(); +} + +char* QSqlDatabase_QSqlDatabase_Drivers(){ + return QSqlDatabase::drivers().join("|").toUtf8().data(); +} + +char* QSqlDatabase_HostName(QtObjectPtr ptr){ + return static_cast(ptr)->hostName().toUtf8().data(); +} + +int QSqlDatabase_QSqlDatabase_IsDriverAvailable(char* name){ + return QSqlDatabase::isDriverAvailable(QString(name)); +} + +int QSqlDatabase_IsOpen(QtObjectPtr ptr){ + return static_cast(ptr)->isOpen(); +} + +int QSqlDatabase_IsOpenError(QtObjectPtr ptr){ + return static_cast(ptr)->isOpenError(); +} + +int QSqlDatabase_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QSqlDatabase_Open(QtObjectPtr ptr){ + return static_cast(ptr)->open(); +} + +int QSqlDatabase_Open2(QtObjectPtr ptr, char* user, char* password){ + return static_cast(ptr)->open(QString(user), QString(password)); +} + +char* QSqlDatabase_Password(QtObjectPtr ptr){ + return static_cast(ptr)->password().toUtf8().data(); +} + +int QSqlDatabase_Port(QtObjectPtr ptr){ + return static_cast(ptr)->port(); +} + +void QSqlDatabase_QSqlDatabase_RegisterSqlDriver(char* name, QtObjectPtr creator){ + QSqlDatabase::registerSqlDriver(QString(name), static_cast(creator)); +} + +void QSqlDatabase_QSqlDatabase_RemoveDatabase(char* connectionName){ + QSqlDatabase::removeDatabase(QString(connectionName)); +} + +int QSqlDatabase_Rollback(QtObjectPtr ptr){ + return static_cast(ptr)->rollback(); +} + +void QSqlDatabase_SetConnectOptions(QtObjectPtr ptr, char* options){ + static_cast(ptr)->setConnectOptions(QString(options)); +} + +void QSqlDatabase_SetDatabaseName(QtObjectPtr ptr, char* name){ + static_cast(ptr)->setDatabaseName(QString(name)); +} + +void QSqlDatabase_SetHostName(QtObjectPtr ptr, char* host){ + static_cast(ptr)->setHostName(QString(host)); +} + +void QSqlDatabase_SetPassword(QtObjectPtr ptr, char* password){ + static_cast(ptr)->setPassword(QString(password)); +} + +void QSqlDatabase_SetPort(QtObjectPtr ptr, int port){ + static_cast(ptr)->setPort(port); +} + +void QSqlDatabase_SetUserName(QtObjectPtr ptr, char* name){ + static_cast(ptr)->setUserName(QString(name)); +} + +int QSqlDatabase_Transaction(QtObjectPtr ptr){ + return static_cast(ptr)->transaction(); +} + +char* QSqlDatabase_UserName(QtObjectPtr ptr){ + return static_cast(ptr)->userName().toUtf8().data(); +} + +void QSqlDatabase_DestroyQSqlDatabase(QtObjectPtr ptr){ + static_cast(ptr)->~QSqlDatabase(); +} + diff --git a/sql/qsqldatabase.go b/sql/qsqldatabase.go new file mode 100755 index 00000000..4e2f6ee1 --- /dev/null +++ b/sql/qsqldatabase.go @@ -0,0 +1,240 @@ +package sql + +//#include "qsqldatabase.h" +import "C" +import ( + "strings" + "unsafe" +) + +type QSqlDatabase struct { + ptr unsafe.Pointer +} + +type QSqlDatabaseITF interface { + QSqlDatabasePTR() *QSqlDatabase +} + +func (p *QSqlDatabase) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSqlDatabase) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSqlDatabase(ptr QSqlDatabaseITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSqlDatabasePTR().Pointer() + } + return nil +} + +func QSqlDatabaseFromPointer(ptr unsafe.Pointer) *QSqlDatabase { + var n = new(QSqlDatabase) + n.SetPointer(ptr) + return n +} + +func (ptr *QSqlDatabase) QSqlDatabasePTR() *QSqlDatabase { + return ptr +} + +func NewQSqlDatabase() *QSqlDatabase { + return QSqlDatabaseFromPointer(unsafe.Pointer(C.QSqlDatabase_NewQSqlDatabase())) +} + +func NewQSqlDatabase2(other QSqlDatabaseITF) *QSqlDatabase { + return QSqlDatabaseFromPointer(unsafe.Pointer(C.QSqlDatabase_NewQSqlDatabase2(C.QtObjectPtr(PointerFromQSqlDatabase(other))))) +} + +func (ptr *QSqlDatabase) Close() { + if ptr.Pointer() != nil { + C.QSqlDatabase_Close(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSqlDatabase) Commit() bool { + if ptr.Pointer() != nil { + return C.QSqlDatabase_Commit(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlDatabase) ConnectOptions() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlDatabase_ConnectOptions(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSqlDatabase) ConnectionName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlDatabase_ConnectionName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func QSqlDatabase_ConnectionNames() []string { + return strings.Split(C.GoString(C.QSqlDatabase_QSqlDatabase_ConnectionNames()), "|") +} + +func QSqlDatabase_Contains(connectionName string) bool { + return C.QSqlDatabase_QSqlDatabase_Contains(C.CString(connectionName)) != 0 +} + +func (ptr *QSqlDatabase) DatabaseName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlDatabase_DatabaseName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSqlDatabase) Driver() *QSqlDriver { + if ptr.Pointer() != nil { + return QSqlDriverFromPointer(unsafe.Pointer(C.QSqlDatabase_Driver(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSqlDatabase) DriverName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlDatabase_DriverName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func QSqlDatabase_Drivers() []string { + return strings.Split(C.GoString(C.QSqlDatabase_QSqlDatabase_Drivers()), "|") +} + +func (ptr *QSqlDatabase) HostName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlDatabase_HostName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func QSqlDatabase_IsDriverAvailable(name string) bool { + return C.QSqlDatabase_QSqlDatabase_IsDriverAvailable(C.CString(name)) != 0 +} + +func (ptr *QSqlDatabase) IsOpen() bool { + if ptr.Pointer() != nil { + return C.QSqlDatabase_IsOpen(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlDatabase) IsOpenError() bool { + if ptr.Pointer() != nil { + return C.QSqlDatabase_IsOpenError(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlDatabase) IsValid() bool { + if ptr.Pointer() != nil { + return C.QSqlDatabase_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlDatabase) Open() bool { + if ptr.Pointer() != nil { + return C.QSqlDatabase_Open(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlDatabase) Open2(user string, password string) bool { + if ptr.Pointer() != nil { + return C.QSqlDatabase_Open2(C.QtObjectPtr(ptr.Pointer()), C.CString(user), C.CString(password)) != 0 + } + return false +} + +func (ptr *QSqlDatabase) Password() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlDatabase_Password(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSqlDatabase) Port() int { + if ptr.Pointer() != nil { + return int(C.QSqlDatabase_Port(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QSqlDatabase_RegisterSqlDriver(name string, creator QSqlDriverCreatorBaseITF) { + C.QSqlDatabase_QSqlDatabase_RegisterSqlDriver(C.CString(name), C.QtObjectPtr(PointerFromQSqlDriverCreatorBase(creator))) +} + +func QSqlDatabase_RemoveDatabase(connectionName string) { + C.QSqlDatabase_QSqlDatabase_RemoveDatabase(C.CString(connectionName)) +} + +func (ptr *QSqlDatabase) Rollback() bool { + if ptr.Pointer() != nil { + return C.QSqlDatabase_Rollback(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlDatabase) SetConnectOptions(options string) { + if ptr.Pointer() != nil { + C.QSqlDatabase_SetConnectOptions(C.QtObjectPtr(ptr.Pointer()), C.CString(options)) + } +} + +func (ptr *QSqlDatabase) SetDatabaseName(name string) { + if ptr.Pointer() != nil { + C.QSqlDatabase_SetDatabaseName(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func (ptr *QSqlDatabase) SetHostName(host string) { + if ptr.Pointer() != nil { + C.QSqlDatabase_SetHostName(C.QtObjectPtr(ptr.Pointer()), C.CString(host)) + } +} + +func (ptr *QSqlDatabase) SetPassword(password string) { + if ptr.Pointer() != nil { + C.QSqlDatabase_SetPassword(C.QtObjectPtr(ptr.Pointer()), C.CString(password)) + } +} + +func (ptr *QSqlDatabase) SetPort(port int) { + if ptr.Pointer() != nil { + C.QSqlDatabase_SetPort(C.QtObjectPtr(ptr.Pointer()), C.int(port)) + } +} + +func (ptr *QSqlDatabase) SetUserName(name string) { + if ptr.Pointer() != nil { + C.QSqlDatabase_SetUserName(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func (ptr *QSqlDatabase) Transaction() bool { + if ptr.Pointer() != nil { + return C.QSqlDatabase_Transaction(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlDatabase) UserName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlDatabase_UserName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSqlDatabase) DestroyQSqlDatabase() { + if ptr.Pointer() != nil { + C.QSqlDatabase_DestroyQSqlDatabase(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/sql/qsqldatabase.h b/sql/qsqldatabase.h new file mode 100755 index 00000000..1f3bf671 --- /dev/null +++ b/sql/qsqldatabase.h @@ -0,0 +1,42 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSqlDatabase_NewQSqlDatabase(); +QtObjectPtr QSqlDatabase_NewQSqlDatabase2(QtObjectPtr other); +void QSqlDatabase_Close(QtObjectPtr ptr); +int QSqlDatabase_Commit(QtObjectPtr ptr); +char* QSqlDatabase_ConnectOptions(QtObjectPtr ptr); +char* QSqlDatabase_ConnectionName(QtObjectPtr ptr); +char* QSqlDatabase_QSqlDatabase_ConnectionNames(); +int QSqlDatabase_QSqlDatabase_Contains(char* connectionName); +char* QSqlDatabase_DatabaseName(QtObjectPtr ptr); +QtObjectPtr QSqlDatabase_Driver(QtObjectPtr ptr); +char* QSqlDatabase_DriverName(QtObjectPtr ptr); +char* QSqlDatabase_QSqlDatabase_Drivers(); +char* QSqlDatabase_HostName(QtObjectPtr ptr); +int QSqlDatabase_QSqlDatabase_IsDriverAvailable(char* name); +int QSqlDatabase_IsOpen(QtObjectPtr ptr); +int QSqlDatabase_IsOpenError(QtObjectPtr ptr); +int QSqlDatabase_IsValid(QtObjectPtr ptr); +int QSqlDatabase_Open(QtObjectPtr ptr); +int QSqlDatabase_Open2(QtObjectPtr ptr, char* user, char* password); +char* QSqlDatabase_Password(QtObjectPtr ptr); +int QSqlDatabase_Port(QtObjectPtr ptr); +void QSqlDatabase_QSqlDatabase_RegisterSqlDriver(char* name, QtObjectPtr creator); +void QSqlDatabase_QSqlDatabase_RemoveDatabase(char* connectionName); +int QSqlDatabase_Rollback(QtObjectPtr ptr); +void QSqlDatabase_SetConnectOptions(QtObjectPtr ptr, char* options); +void QSqlDatabase_SetDatabaseName(QtObjectPtr ptr, char* name); +void QSqlDatabase_SetHostName(QtObjectPtr ptr, char* host); +void QSqlDatabase_SetPassword(QtObjectPtr ptr, char* password); +void QSqlDatabase_SetPort(QtObjectPtr ptr, int port); +void QSqlDatabase_SetUserName(QtObjectPtr ptr, char* name); +int QSqlDatabase_Transaction(QtObjectPtr ptr); +char* QSqlDatabase_UserName(QtObjectPtr ptr); +void QSqlDatabase_DestroyQSqlDatabase(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sql/qsqldriver.cpp b/sql/qsqldriver.cpp new file mode 100755 index 00000000..868d46b3 --- /dev/null +++ b/sql/qsqldriver.cpp @@ -0,0 +1,104 @@ +#include "qsqldriver.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSqlDriver: public QSqlDriver { +public: +void Signal_Notification(const QString & name){callbackQSqlDriverNotification(this->objectName().toUtf8().data(), name.toUtf8().data());}; +}; + +int QSqlDriver_BeginTransaction(QtObjectPtr ptr){ + return static_cast(ptr)->beginTransaction(); +} + +void QSqlDriver_Close(QtObjectPtr ptr){ + static_cast(ptr)->close(); +} + +int QSqlDriver_CommitTransaction(QtObjectPtr ptr){ + return static_cast(ptr)->commitTransaction(); +} + +QtObjectPtr QSqlDriver_CreateResult(QtObjectPtr ptr){ + return static_cast(ptr)->createResult(); +} + +int QSqlDriver_DbmsType(QtObjectPtr ptr){ + return static_cast(ptr)->dbmsType(); +} + +char* QSqlDriver_EscapeIdentifier(QtObjectPtr ptr, char* identifier, int ty){ + return static_cast(ptr)->escapeIdentifier(QString(identifier), static_cast(ty)).toUtf8().data(); +} + +char* QSqlDriver_FormatValue(QtObjectPtr ptr, QtObjectPtr field, int trimStrings){ + return static_cast(ptr)->formatValue(*static_cast(field), trimStrings != 0).toUtf8().data(); +} + +char* QSqlDriver_Handle(QtObjectPtr ptr){ + return static_cast(ptr)->handle().toString().toUtf8().data(); +} + +int QSqlDriver_HasFeature(QtObjectPtr ptr, int feature){ + return static_cast(ptr)->hasFeature(static_cast(feature)); +} + +int QSqlDriver_IsIdentifierEscaped(QtObjectPtr ptr, char* identifier, int ty){ + return static_cast(ptr)->isIdentifierEscaped(QString(identifier), static_cast(ty)); +} + +int QSqlDriver_IsOpen(QtObjectPtr ptr){ + return static_cast(ptr)->isOpen(); +} + +int QSqlDriver_IsOpenError(QtObjectPtr ptr){ + return static_cast(ptr)->isOpenError(); +} + +void QSqlDriver_ConnectNotification(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSqlDriver::notification), static_cast(ptr), static_cast(&MyQSqlDriver::Signal_Notification));; +} + +void QSqlDriver_DisconnectNotification(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSqlDriver::notification), static_cast(ptr), static_cast(&MyQSqlDriver::Signal_Notification));; +} + +int QSqlDriver_Open(QtObjectPtr ptr, char* db, char* user, char* password, char* host, int port, char* options){ + return static_cast(ptr)->open(QString(db), QString(user), QString(password), QString(host), port, QString(options)); +} + +int QSqlDriver_RollbackTransaction(QtObjectPtr ptr){ + return static_cast(ptr)->rollbackTransaction(); +} + +char* QSqlDriver_SqlStatement(QtObjectPtr ptr, int ty, char* tableName, QtObjectPtr rec, int preparedStatement){ + return static_cast(ptr)->sqlStatement(static_cast(ty), QString(tableName), *static_cast(rec), preparedStatement != 0).toUtf8().data(); +} + +char* QSqlDriver_StripDelimiters(QtObjectPtr ptr, char* identifier, int ty){ + return static_cast(ptr)->stripDelimiters(QString(identifier), static_cast(ty)).toUtf8().data(); +} + +int QSqlDriver_SubscribeToNotification(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->subscribeToNotification(QString(name)); +} + +char* QSqlDriver_SubscribedToNotifications(QtObjectPtr ptr){ + return static_cast(ptr)->subscribedToNotifications().join("|").toUtf8().data(); +} + +int QSqlDriver_UnsubscribeFromNotification(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->unsubscribeFromNotification(QString(name)); +} + +void QSqlDriver_DestroyQSqlDriver(QtObjectPtr ptr){ + static_cast(ptr)->~QSqlDriver(); +} + diff --git a/sql/qsqldriver.go b/sql/qsqldriver.go new file mode 100755 index 00000000..96f2e5b4 --- /dev/null +++ b/sql/qsqldriver.go @@ -0,0 +1,261 @@ +package sql + +//#include "qsqldriver.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QSqlDriver struct { + core.QObject +} + +type QSqlDriverITF interface { + core.QObjectITF + QSqlDriverPTR() *QSqlDriver +} + +func PointerFromQSqlDriver(ptr QSqlDriverITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSqlDriverPTR().Pointer() + } + return nil +} + +func QSqlDriverFromPointer(ptr unsafe.Pointer) *QSqlDriver { + var n = new(QSqlDriver) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSqlDriver_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSqlDriver) QSqlDriverPTR() *QSqlDriver { + return ptr +} + +//QSqlDriver::DbmsType +type QSqlDriver__DbmsType int + +var ( + QSqlDriver__UnknownDbms = QSqlDriver__DbmsType(0) + QSqlDriver__MSSqlServer = QSqlDriver__DbmsType(1) + QSqlDriver__MySqlServer = QSqlDriver__DbmsType(2) + QSqlDriver__PostgreSQL = QSqlDriver__DbmsType(3) + QSqlDriver__Oracle = QSqlDriver__DbmsType(4) + QSqlDriver__Sybase = QSqlDriver__DbmsType(5) + QSqlDriver__SQLite = QSqlDriver__DbmsType(6) + QSqlDriver__Interbase = QSqlDriver__DbmsType(7) + QSqlDriver__DB2 = QSqlDriver__DbmsType(8) +) + +//QSqlDriver::DriverFeature +type QSqlDriver__DriverFeature int + +var ( + QSqlDriver__Transactions = QSqlDriver__DriverFeature(0) + QSqlDriver__QuerySize = QSqlDriver__DriverFeature(1) + QSqlDriver__BLOB = QSqlDriver__DriverFeature(2) + QSqlDriver__Unicode = QSqlDriver__DriverFeature(3) + QSqlDriver__PreparedQueries = QSqlDriver__DriverFeature(4) + QSqlDriver__NamedPlaceholders = QSqlDriver__DriverFeature(5) + QSqlDriver__PositionalPlaceholders = QSqlDriver__DriverFeature(6) + QSqlDriver__LastInsertId = QSqlDriver__DriverFeature(7) + QSqlDriver__BatchOperations = QSqlDriver__DriverFeature(8) + QSqlDriver__SimpleLocking = QSqlDriver__DriverFeature(9) + QSqlDriver__LowPrecisionNumbers = QSqlDriver__DriverFeature(10) + QSqlDriver__EventNotifications = QSqlDriver__DriverFeature(11) + QSqlDriver__FinishQuery = QSqlDriver__DriverFeature(12) + QSqlDriver__MultipleResultSets = QSqlDriver__DriverFeature(13) + QSqlDriver__CancelQuery = QSqlDriver__DriverFeature(14) +) + +//QSqlDriver::IdentifierType +type QSqlDriver__IdentifierType int + +var ( + QSqlDriver__FieldName = QSqlDriver__IdentifierType(0) + QSqlDriver__TableName = QSqlDriver__IdentifierType(1) +) + +//QSqlDriver::NotificationSource +type QSqlDriver__NotificationSource int + +var ( + QSqlDriver__UnknownSource = QSqlDriver__NotificationSource(0) + QSqlDriver__SelfSource = QSqlDriver__NotificationSource(1) + QSqlDriver__OtherSource = QSqlDriver__NotificationSource(2) +) + +//QSqlDriver::StatementType +type QSqlDriver__StatementType int + +var ( + QSqlDriver__WhereStatement = QSqlDriver__StatementType(0) + QSqlDriver__SelectStatement = QSqlDriver__StatementType(1) + QSqlDriver__UpdateStatement = QSqlDriver__StatementType(2) + QSqlDriver__InsertStatement = QSqlDriver__StatementType(3) + QSqlDriver__DeleteStatement = QSqlDriver__StatementType(4) +) + +func (ptr *QSqlDriver) BeginTransaction() bool { + if ptr.Pointer() != nil { + return C.QSqlDriver_BeginTransaction(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlDriver) Close() { + if ptr.Pointer() != nil { + C.QSqlDriver_Close(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSqlDriver) CommitTransaction() bool { + if ptr.Pointer() != nil { + return C.QSqlDriver_CommitTransaction(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlDriver) CreateResult() *QSqlResult { + if ptr.Pointer() != nil { + return QSqlResultFromPointer(unsafe.Pointer(C.QSqlDriver_CreateResult(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSqlDriver) DbmsType() QSqlDriver__DbmsType { + if ptr.Pointer() != nil { + return QSqlDriver__DbmsType(C.QSqlDriver_DbmsType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSqlDriver) EscapeIdentifier(identifier string, ty QSqlDriver__IdentifierType) string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlDriver_EscapeIdentifier(C.QtObjectPtr(ptr.Pointer()), C.CString(identifier), C.int(ty))) + } + return "" +} + +func (ptr *QSqlDriver) FormatValue(field QSqlFieldITF, trimStrings bool) string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlDriver_FormatValue(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSqlField(field)), C.int(qt.GoBoolToInt(trimStrings)))) + } + return "" +} + +func (ptr *QSqlDriver) Handle() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlDriver_Handle(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSqlDriver) HasFeature(feature QSqlDriver__DriverFeature) bool { + if ptr.Pointer() != nil { + return C.QSqlDriver_HasFeature(C.QtObjectPtr(ptr.Pointer()), C.int(feature)) != 0 + } + return false +} + +func (ptr *QSqlDriver) IsIdentifierEscaped(identifier string, ty QSqlDriver__IdentifierType) bool { + if ptr.Pointer() != nil { + return C.QSqlDriver_IsIdentifierEscaped(C.QtObjectPtr(ptr.Pointer()), C.CString(identifier), C.int(ty)) != 0 + } + return false +} + +func (ptr *QSqlDriver) IsOpen() bool { + if ptr.Pointer() != nil { + return C.QSqlDriver_IsOpen(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlDriver) IsOpenError() bool { + if ptr.Pointer() != nil { + return C.QSqlDriver_IsOpenError(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlDriver) ConnectNotification(f func(name string)) { + if ptr.Pointer() != nil { + C.QSqlDriver_ConnectNotification(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "notification", f) + } +} + +func (ptr *QSqlDriver) DisconnectNotification() { + if ptr.Pointer() != nil { + C.QSqlDriver_DisconnectNotification(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "notification") + } +} + +//export callbackQSqlDriverNotification +func callbackQSqlDriverNotification(ptrName *C.char, name *C.char) { + qt.GetSignal(C.GoString(ptrName), "notification").(func(string))(C.GoString(name)) +} + +func (ptr *QSqlDriver) Open(db string, user string, password string, host string, port int, options string) bool { + if ptr.Pointer() != nil { + return C.QSqlDriver_Open(C.QtObjectPtr(ptr.Pointer()), C.CString(db), C.CString(user), C.CString(password), C.CString(host), C.int(port), C.CString(options)) != 0 + } + return false +} + +func (ptr *QSqlDriver) RollbackTransaction() bool { + if ptr.Pointer() != nil { + return C.QSqlDriver_RollbackTransaction(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlDriver) SqlStatement(ty QSqlDriver__StatementType, tableName string, rec QSqlRecordITF, preparedStatement bool) string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlDriver_SqlStatement(C.QtObjectPtr(ptr.Pointer()), C.int(ty), C.CString(tableName), C.QtObjectPtr(PointerFromQSqlRecord(rec)), C.int(qt.GoBoolToInt(preparedStatement)))) + } + return "" +} + +func (ptr *QSqlDriver) StripDelimiters(identifier string, ty QSqlDriver__IdentifierType) string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlDriver_StripDelimiters(C.QtObjectPtr(ptr.Pointer()), C.CString(identifier), C.int(ty))) + } + return "" +} + +func (ptr *QSqlDriver) SubscribeToNotification(name string) bool { + if ptr.Pointer() != nil { + return C.QSqlDriver_SubscribeToNotification(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) != 0 + } + return false +} + +func (ptr *QSqlDriver) SubscribedToNotifications() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QSqlDriver_SubscribedToNotifications(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QSqlDriver) UnsubscribeFromNotification(name string) bool { + if ptr.Pointer() != nil { + return C.QSqlDriver_UnsubscribeFromNotification(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) != 0 + } + return false +} + +func (ptr *QSqlDriver) DestroyQSqlDriver() { + if ptr.Pointer() != nil { + C.QSqlDriver_DestroyQSqlDriver(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/sql/qsqldriver.h b/sql/qsqldriver.h new file mode 100755 index 00000000..b79f3ba9 --- /dev/null +++ b/sql/qsqldriver.h @@ -0,0 +1,31 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QSqlDriver_BeginTransaction(QtObjectPtr ptr); +void QSqlDriver_Close(QtObjectPtr ptr); +int QSqlDriver_CommitTransaction(QtObjectPtr ptr); +QtObjectPtr QSqlDriver_CreateResult(QtObjectPtr ptr); +int QSqlDriver_DbmsType(QtObjectPtr ptr); +char* QSqlDriver_EscapeIdentifier(QtObjectPtr ptr, char* identifier, int ty); +char* QSqlDriver_FormatValue(QtObjectPtr ptr, QtObjectPtr field, int trimStrings); +char* QSqlDriver_Handle(QtObjectPtr ptr); +int QSqlDriver_HasFeature(QtObjectPtr ptr, int feature); +int QSqlDriver_IsIdentifierEscaped(QtObjectPtr ptr, char* identifier, int ty); +int QSqlDriver_IsOpen(QtObjectPtr ptr); +int QSqlDriver_IsOpenError(QtObjectPtr ptr); +void QSqlDriver_ConnectNotification(QtObjectPtr ptr); +void QSqlDriver_DisconnectNotification(QtObjectPtr ptr); +int QSqlDriver_Open(QtObjectPtr ptr, char* db, char* user, char* password, char* host, int port, char* options); +int QSqlDriver_RollbackTransaction(QtObjectPtr ptr); +char* QSqlDriver_SqlStatement(QtObjectPtr ptr, int ty, char* tableName, QtObjectPtr rec, int preparedStatement); +char* QSqlDriver_StripDelimiters(QtObjectPtr ptr, char* identifier, int ty); +int QSqlDriver_SubscribeToNotification(QtObjectPtr ptr, char* name); +char* QSqlDriver_SubscribedToNotifications(QtObjectPtr ptr); +int QSqlDriver_UnsubscribeFromNotification(QtObjectPtr ptr, char* name); +void QSqlDriver_DestroyQSqlDriver(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sql/qsqldrivercreator.cpp b/sql/qsqldrivercreator.cpp new file mode 100755 index 00000000..6b0302ba --- /dev/null +++ b/sql/qsqldrivercreator.cpp @@ -0,0 +1,9 @@ +#include "qsqldrivercreator.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/sql/qsqldrivercreator.go b/sql/qsqldrivercreator.go new file mode 100755 index 00000000..ad1b0cb4 --- /dev/null +++ b/sql/qsqldrivercreator.go @@ -0,0 +1,33 @@ +package sql + +//#include "qsqldrivercreator.h" +import "C" +import ( + "unsafe" +) + +type QSqlDriverCreator struct { + QSqlDriverCreatorBase +} + +type QSqlDriverCreatorITF interface { + QSqlDriverCreatorBaseITF + QSqlDriverCreatorPTR() *QSqlDriverCreator +} + +func PointerFromQSqlDriverCreator(ptr QSqlDriverCreatorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSqlDriverCreatorPTR().Pointer() + } + return nil +} + +func QSqlDriverCreatorFromPointer(ptr unsafe.Pointer) *QSqlDriverCreator { + var n = new(QSqlDriverCreator) + n.SetPointer(ptr) + return n +} + +func (ptr *QSqlDriverCreator) QSqlDriverCreatorPTR() *QSqlDriverCreator { + return ptr +} diff --git a/sql/qsqldrivercreator.h b/sql/qsqldrivercreator.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/sql/qsqldrivercreator.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sql/qsqldrivercreatorbase.cpp b/sql/qsqldrivercreatorbase.cpp new file mode 100755 index 00000000..3967767c --- /dev/null +++ b/sql/qsqldrivercreatorbase.cpp @@ -0,0 +1,22 @@ +#include "qsqldrivercreatorbase.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSqlDriverCreatorBase: public QSqlDriverCreatorBase { +public: +}; + +QtObjectPtr QSqlDriverCreatorBase_CreateObject(QtObjectPtr ptr){ + return static_cast(ptr)->createObject(); +} + +void QSqlDriverCreatorBase_DestroyQSqlDriverCreatorBase(QtObjectPtr ptr){ + static_cast(ptr)->~QSqlDriverCreatorBase(); +} + diff --git a/sql/qsqldrivercreatorbase.go b/sql/qsqldrivercreatorbase.go new file mode 100755 index 00000000..aa767d2c --- /dev/null +++ b/sql/qsqldrivercreatorbase.go @@ -0,0 +1,53 @@ +package sql + +//#include "qsqldrivercreatorbase.h" +import "C" +import ( + "unsafe" +) + +type QSqlDriverCreatorBase struct { + ptr unsafe.Pointer +} + +type QSqlDriverCreatorBaseITF interface { + QSqlDriverCreatorBasePTR() *QSqlDriverCreatorBase +} + +func (p *QSqlDriverCreatorBase) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSqlDriverCreatorBase) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSqlDriverCreatorBase(ptr QSqlDriverCreatorBaseITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSqlDriverCreatorBasePTR().Pointer() + } + return nil +} + +func QSqlDriverCreatorBaseFromPointer(ptr unsafe.Pointer) *QSqlDriverCreatorBase { + var n = new(QSqlDriverCreatorBase) + n.SetPointer(ptr) + return n +} + +func (ptr *QSqlDriverCreatorBase) QSqlDriverCreatorBasePTR() *QSqlDriverCreatorBase { + return ptr +} + +func (ptr *QSqlDriverCreatorBase) CreateObject() *QSqlDriver { + if ptr.Pointer() != nil { + return QSqlDriverFromPointer(unsafe.Pointer(C.QSqlDriverCreatorBase_CreateObject(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSqlDriverCreatorBase) DestroyQSqlDriverCreatorBase() { + if ptr.Pointer() != nil { + C.QSqlDriverCreatorBase_DestroyQSqlDriverCreatorBase(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/sql/qsqldrivercreatorbase.h b/sql/qsqldrivercreatorbase.h new file mode 100755 index 00000000..2a81a19a --- /dev/null +++ b/sql/qsqldrivercreatorbase.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSqlDriverCreatorBase_CreateObject(QtObjectPtr ptr); +void QSqlDriverCreatorBase_DestroyQSqlDriverCreatorBase(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sql/qsqldriverplugin.cpp b/sql/qsqldriverplugin.cpp new file mode 100755 index 00000000..3f9d760e --- /dev/null +++ b/sql/qsqldriverplugin.cpp @@ -0,0 +1,21 @@ +#include "qsqldriverplugin.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSqlDriverPlugin: public QSqlDriverPlugin { +public: +}; + +QtObjectPtr QSqlDriverPlugin_Create(QtObjectPtr ptr, char* key){ + return static_cast(ptr)->create(QString(key)); +} + +void QSqlDriverPlugin_DestroyQSqlDriverPlugin(QtObjectPtr ptr){ + static_cast(ptr)->~QSqlDriverPlugin(); +} + diff --git a/sql/qsqldriverplugin.go b/sql/qsqldriverplugin.go new file mode 100755 index 00000000..e44c34e1 --- /dev/null +++ b/sql/qsqldriverplugin.go @@ -0,0 +1,52 @@ +package sql + +//#include "qsqldriverplugin.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QSqlDriverPlugin struct { + core.QObject +} + +type QSqlDriverPluginITF interface { + core.QObjectITF + QSqlDriverPluginPTR() *QSqlDriverPlugin +} + +func PointerFromQSqlDriverPlugin(ptr QSqlDriverPluginITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSqlDriverPluginPTR().Pointer() + } + return nil +} + +func QSqlDriverPluginFromPointer(ptr unsafe.Pointer) *QSqlDriverPlugin { + var n = new(QSqlDriverPlugin) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSqlDriverPlugin_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSqlDriverPlugin) QSqlDriverPluginPTR() *QSqlDriverPlugin { + return ptr +} + +func (ptr *QSqlDriverPlugin) Create(key string) *QSqlDriver { + if ptr.Pointer() != nil { + return QSqlDriverFromPointer(unsafe.Pointer(C.QSqlDriverPlugin_Create(C.QtObjectPtr(ptr.Pointer()), C.CString(key)))) + } + return nil +} + +func (ptr *QSqlDriverPlugin) DestroyQSqlDriverPlugin() { + if ptr.Pointer() != nil { + C.QSqlDriverPlugin_DestroyQSqlDriverPlugin(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/sql/qsqldriverplugin.h b/sql/qsqldriverplugin.h new file mode 100755 index 00000000..4bbcd4ad --- /dev/null +++ b/sql/qsqldriverplugin.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSqlDriverPlugin_Create(QtObjectPtr ptr, char* key); +void QSqlDriverPlugin_DestroyQSqlDriverPlugin(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sql/qsqlerror.cpp b/sql/qsqlerror.cpp new file mode 100755 index 00000000..0d810124 --- /dev/null +++ b/sql/qsqlerror.cpp @@ -0,0 +1,48 @@ +#include "qsqlerror.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSqlError: public QSqlError { +public: +}; + +QtObjectPtr QSqlError_NewQSqlError3(QtObjectPtr other){ + return new QSqlError(*static_cast(other)); +} + +QtObjectPtr QSqlError_NewQSqlError(char* driverText, char* databaseText, int ty, char* code){ + return new QSqlError(QString(driverText), QString(databaseText), static_cast(ty), QString(code)); +} + +char* QSqlError_DatabaseText(QtObjectPtr ptr){ + return static_cast(ptr)->databaseText().toUtf8().data(); +} + +char* QSqlError_DriverText(QtObjectPtr ptr){ + return static_cast(ptr)->driverText().toUtf8().data(); +} + +int QSqlError_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +char* QSqlError_NativeErrorCode(QtObjectPtr ptr){ + return static_cast(ptr)->nativeErrorCode().toUtf8().data(); +} + +char* QSqlError_Text(QtObjectPtr ptr){ + return static_cast(ptr)->text().toUtf8().data(); +} + +int QSqlError_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QSqlError_DestroyQSqlError(QtObjectPtr ptr){ + static_cast(ptr)->~QSqlError(); +} + diff --git a/sql/qsqlerror.go b/sql/qsqlerror.go new file mode 100755 index 00000000..a5e97e1f --- /dev/null +++ b/sql/qsqlerror.go @@ -0,0 +1,107 @@ +package sql + +//#include "qsqlerror.h" +import "C" +import ( + "unsafe" +) + +type QSqlError struct { + ptr unsafe.Pointer +} + +type QSqlErrorITF interface { + QSqlErrorPTR() *QSqlError +} + +func (p *QSqlError) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSqlError) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSqlError(ptr QSqlErrorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSqlErrorPTR().Pointer() + } + return nil +} + +func QSqlErrorFromPointer(ptr unsafe.Pointer) *QSqlError { + var n = new(QSqlError) + n.SetPointer(ptr) + return n +} + +func (ptr *QSqlError) QSqlErrorPTR() *QSqlError { + return ptr +} + +//QSqlError::ErrorType +type QSqlError__ErrorType int + +var ( + QSqlError__NoError = QSqlError__ErrorType(0) + QSqlError__ConnectionError = QSqlError__ErrorType(1) + QSqlError__StatementError = QSqlError__ErrorType(2) + QSqlError__TransactionError = QSqlError__ErrorType(3) + QSqlError__UnknownError = QSqlError__ErrorType(4) +) + +func NewQSqlError3(other QSqlErrorITF) *QSqlError { + return QSqlErrorFromPointer(unsafe.Pointer(C.QSqlError_NewQSqlError3(C.QtObjectPtr(PointerFromQSqlError(other))))) +} + +func NewQSqlError(driverText string, databaseText string, ty QSqlError__ErrorType, code string) *QSqlError { + return QSqlErrorFromPointer(unsafe.Pointer(C.QSqlError_NewQSqlError(C.CString(driverText), C.CString(databaseText), C.int(ty), C.CString(code)))) +} + +func (ptr *QSqlError) DatabaseText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlError_DatabaseText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSqlError) DriverText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlError_DriverText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSqlError) IsValid() bool { + if ptr.Pointer() != nil { + return C.QSqlError_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlError) NativeErrorCode() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlError_NativeErrorCode(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSqlError) Text() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlError_Text(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSqlError) Type() QSqlError__ErrorType { + if ptr.Pointer() != nil { + return QSqlError__ErrorType(C.QSqlError_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSqlError) DestroyQSqlError() { + if ptr.Pointer() != nil { + C.QSqlError_DestroyQSqlError(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/sql/qsqlerror.h b/sql/qsqlerror.h new file mode 100755 index 00000000..3d38e0e9 --- /dev/null +++ b/sql/qsqlerror.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSqlError_NewQSqlError3(QtObjectPtr other); +QtObjectPtr QSqlError_NewQSqlError(char* driverText, char* databaseText, int ty, char* code); +char* QSqlError_DatabaseText(QtObjectPtr ptr); +char* QSqlError_DriverText(QtObjectPtr ptr); +int QSqlError_IsValid(QtObjectPtr ptr); +char* QSqlError_NativeErrorCode(QtObjectPtr ptr); +char* QSqlError_Text(QtObjectPtr ptr); +int QSqlError_Type(QtObjectPtr ptr); +void QSqlError_DestroyQSqlError(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sql/qsqlfield.cpp b/sql/qsqlfield.cpp new file mode 100755 index 00000000..8d00da0f --- /dev/null +++ b/sql/qsqlfield.cpp @@ -0,0 +1,108 @@ +#include "qsqlfield.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSqlField: public QSqlField { +public: +}; + +QtObjectPtr QSqlField_NewQSqlField2(QtObjectPtr other){ + return new QSqlField(*static_cast(other)); +} + +void QSqlField_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +char* QSqlField_DefaultValue(QtObjectPtr ptr){ + return static_cast(ptr)->defaultValue().toString().toUtf8().data(); +} + +int QSqlField_IsAutoValue(QtObjectPtr ptr){ + return static_cast(ptr)->isAutoValue(); +} + +int QSqlField_IsGenerated(QtObjectPtr ptr){ + return static_cast(ptr)->isGenerated(); +} + +int QSqlField_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QSqlField_IsReadOnly(QtObjectPtr ptr){ + return static_cast(ptr)->isReadOnly(); +} + +int QSqlField_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QSqlField_Length(QtObjectPtr ptr){ + return static_cast(ptr)->length(); +} + +char* QSqlField_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +int QSqlField_Precision(QtObjectPtr ptr){ + return static_cast(ptr)->precision(); +} + +int QSqlField_RequiredStatus(QtObjectPtr ptr){ + return static_cast(ptr)->requiredStatus(); +} + +void QSqlField_SetAutoValue(QtObjectPtr ptr, int autoVal){ + static_cast(ptr)->setAutoValue(autoVal != 0); +} + +void QSqlField_SetDefaultValue(QtObjectPtr ptr, char* value){ + static_cast(ptr)->setDefaultValue(QVariant(value)); +} + +void QSqlField_SetGenerated(QtObjectPtr ptr, int gen){ + static_cast(ptr)->setGenerated(gen != 0); +} + +void QSqlField_SetLength(QtObjectPtr ptr, int fieldLength){ + static_cast(ptr)->setLength(fieldLength); +} + +void QSqlField_SetName(QtObjectPtr ptr, char* name){ + static_cast(ptr)->setName(QString(name)); +} + +void QSqlField_SetPrecision(QtObjectPtr ptr, int precision){ + static_cast(ptr)->setPrecision(precision); +} + +void QSqlField_SetReadOnly(QtObjectPtr ptr, int readOnly){ + static_cast(ptr)->setReadOnly(readOnly != 0); +} + +void QSqlField_SetRequired(QtObjectPtr ptr, int required){ + static_cast(ptr)->setRequired(required != 0); +} + +void QSqlField_SetRequiredStatus(QtObjectPtr ptr, int required){ + static_cast(ptr)->setRequiredStatus(static_cast(required)); +} + +void QSqlField_SetValue(QtObjectPtr ptr, char* value){ + static_cast(ptr)->setValue(QVariant(value)); +} + +char* QSqlField_Value(QtObjectPtr ptr){ + return static_cast(ptr)->value().toString().toUtf8().data(); +} + +void QSqlField_DestroyQSqlField(QtObjectPtr ptr){ + static_cast(ptr)->~QSqlField(); +} + diff --git a/sql/qsqlfield.go b/sql/qsqlfield.go new file mode 100755 index 00000000..cbc21644 --- /dev/null +++ b/sql/qsqlfield.go @@ -0,0 +1,203 @@ +package sql + +//#include "qsqlfield.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QSqlField struct { + ptr unsafe.Pointer +} + +type QSqlFieldITF interface { + QSqlFieldPTR() *QSqlField +} + +func (p *QSqlField) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSqlField) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSqlField(ptr QSqlFieldITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSqlFieldPTR().Pointer() + } + return nil +} + +func QSqlFieldFromPointer(ptr unsafe.Pointer) *QSqlField { + var n = new(QSqlField) + n.SetPointer(ptr) + return n +} + +func (ptr *QSqlField) QSqlFieldPTR() *QSqlField { + return ptr +} + +//QSqlField::RequiredStatus +type QSqlField__RequiredStatus int + +var ( + QSqlField__Unknown = QSqlField__RequiredStatus(-1) + QSqlField__Optional = QSqlField__RequiredStatus(0) + QSqlField__Required = QSqlField__RequiredStatus(1) +) + +func NewQSqlField2(other QSqlFieldITF) *QSqlField { + return QSqlFieldFromPointer(unsafe.Pointer(C.QSqlField_NewQSqlField2(C.QtObjectPtr(PointerFromQSqlField(other))))) +} + +func (ptr *QSqlField) Clear() { + if ptr.Pointer() != nil { + C.QSqlField_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSqlField) DefaultValue() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlField_DefaultValue(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSqlField) IsAutoValue() bool { + if ptr.Pointer() != nil { + return C.QSqlField_IsAutoValue(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlField) IsGenerated() bool { + if ptr.Pointer() != nil { + return C.QSqlField_IsGenerated(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlField) IsNull() bool { + if ptr.Pointer() != nil { + return C.QSqlField_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlField) IsReadOnly() bool { + if ptr.Pointer() != nil { + return C.QSqlField_IsReadOnly(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlField) IsValid() bool { + if ptr.Pointer() != nil { + return C.QSqlField_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlField) Length() int { + if ptr.Pointer() != nil { + return int(C.QSqlField_Length(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSqlField) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlField_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSqlField) Precision() int { + if ptr.Pointer() != nil { + return int(C.QSqlField_Precision(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSqlField) RequiredStatus() QSqlField__RequiredStatus { + if ptr.Pointer() != nil { + return QSqlField__RequiredStatus(C.QSqlField_RequiredStatus(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSqlField) SetAutoValue(autoVal bool) { + if ptr.Pointer() != nil { + C.QSqlField_SetAutoValue(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(autoVal))) + } +} + +func (ptr *QSqlField) SetDefaultValue(value string) { + if ptr.Pointer() != nil { + C.QSqlField_SetDefaultValue(C.QtObjectPtr(ptr.Pointer()), C.CString(value)) + } +} + +func (ptr *QSqlField) SetGenerated(gen bool) { + if ptr.Pointer() != nil { + C.QSqlField_SetGenerated(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(gen))) + } +} + +func (ptr *QSqlField) SetLength(fieldLength int) { + if ptr.Pointer() != nil { + C.QSqlField_SetLength(C.QtObjectPtr(ptr.Pointer()), C.int(fieldLength)) + } +} + +func (ptr *QSqlField) SetName(name string) { + if ptr.Pointer() != nil { + C.QSqlField_SetName(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func (ptr *QSqlField) SetPrecision(precision int) { + if ptr.Pointer() != nil { + C.QSqlField_SetPrecision(C.QtObjectPtr(ptr.Pointer()), C.int(precision)) + } +} + +func (ptr *QSqlField) SetReadOnly(readOnly bool) { + if ptr.Pointer() != nil { + C.QSqlField_SetReadOnly(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(readOnly))) + } +} + +func (ptr *QSqlField) SetRequired(required bool) { + if ptr.Pointer() != nil { + C.QSqlField_SetRequired(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(required))) + } +} + +func (ptr *QSqlField) SetRequiredStatus(required QSqlField__RequiredStatus) { + if ptr.Pointer() != nil { + C.QSqlField_SetRequiredStatus(C.QtObjectPtr(ptr.Pointer()), C.int(required)) + } +} + +func (ptr *QSqlField) SetValue(value string) { + if ptr.Pointer() != nil { + C.QSqlField_SetValue(C.QtObjectPtr(ptr.Pointer()), C.CString(value)) + } +} + +func (ptr *QSqlField) Value() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlField_Value(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSqlField) DestroyQSqlField() { + if ptr.Pointer() != nil { + C.QSqlField_DestroyQSqlField(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/sql/qsqlfield.h b/sql/qsqlfield.h new file mode 100755 index 00000000..97ae0637 --- /dev/null +++ b/sql/qsqlfield.h @@ -0,0 +1,33 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSqlField_NewQSqlField2(QtObjectPtr other); +void QSqlField_Clear(QtObjectPtr ptr); +char* QSqlField_DefaultValue(QtObjectPtr ptr); +int QSqlField_IsAutoValue(QtObjectPtr ptr); +int QSqlField_IsGenerated(QtObjectPtr ptr); +int QSqlField_IsNull(QtObjectPtr ptr); +int QSqlField_IsReadOnly(QtObjectPtr ptr); +int QSqlField_IsValid(QtObjectPtr ptr); +int QSqlField_Length(QtObjectPtr ptr); +char* QSqlField_Name(QtObjectPtr ptr); +int QSqlField_Precision(QtObjectPtr ptr); +int QSqlField_RequiredStatus(QtObjectPtr ptr); +void QSqlField_SetAutoValue(QtObjectPtr ptr, int autoVal); +void QSqlField_SetDefaultValue(QtObjectPtr ptr, char* value); +void QSqlField_SetGenerated(QtObjectPtr ptr, int gen); +void QSqlField_SetLength(QtObjectPtr ptr, int fieldLength); +void QSqlField_SetName(QtObjectPtr ptr, char* name); +void QSqlField_SetPrecision(QtObjectPtr ptr, int precision); +void QSqlField_SetReadOnly(QtObjectPtr ptr, int readOnly); +void QSqlField_SetRequired(QtObjectPtr ptr, int required); +void QSqlField_SetRequiredStatus(QtObjectPtr ptr, int required); +void QSqlField_SetValue(QtObjectPtr ptr, char* value); +char* QSqlField_Value(QtObjectPtr ptr); +void QSqlField_DestroyQSqlField(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sql/qsqlindex.cpp b/sql/qsqlindex.cpp new file mode 100755 index 00000000..2743cd1f --- /dev/null +++ b/sql/qsqlindex.cpp @@ -0,0 +1,57 @@ +#include "qsqlindex.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSqlIndex: public QSqlIndex { +public: +}; + +QtObjectPtr QSqlIndex_NewQSqlIndex2(QtObjectPtr other){ + return new QSqlIndex(*static_cast(other)); +} + +QtObjectPtr QSqlIndex_NewQSqlIndex(char* cursorname, char* name){ + return new QSqlIndex(QString(cursorname), QString(name)); +} + +void QSqlIndex_Append(QtObjectPtr ptr, QtObjectPtr field){ + static_cast(ptr)->append(*static_cast(field)); +} + +void QSqlIndex_Append2(QtObjectPtr ptr, QtObjectPtr field, int desc){ + static_cast(ptr)->append(*static_cast(field), desc != 0); +} + +char* QSqlIndex_CursorName(QtObjectPtr ptr){ + return static_cast(ptr)->cursorName().toUtf8().data(); +} + +int QSqlIndex_IsDescending(QtObjectPtr ptr, int i){ + return static_cast(ptr)->isDescending(i); +} + +char* QSqlIndex_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +void QSqlIndex_SetCursorName(QtObjectPtr ptr, char* cursorName){ + static_cast(ptr)->setCursorName(QString(cursorName)); +} + +void QSqlIndex_SetDescending(QtObjectPtr ptr, int i, int desc){ + static_cast(ptr)->setDescending(i, desc != 0); +} + +void QSqlIndex_SetName(QtObjectPtr ptr, char* name){ + static_cast(ptr)->setName(QString(name)); +} + +void QSqlIndex_DestroyQSqlIndex(QtObjectPtr ptr){ + static_cast(ptr)->~QSqlIndex(); +} + diff --git a/sql/qsqlindex.go b/sql/qsqlindex.go new file mode 100755 index 00000000..54747712 --- /dev/null +++ b/sql/qsqlindex.go @@ -0,0 +1,99 @@ +package sql + +//#include "qsqlindex.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QSqlIndex struct { + QSqlRecord +} + +type QSqlIndexITF interface { + QSqlRecordITF + QSqlIndexPTR() *QSqlIndex +} + +func PointerFromQSqlIndex(ptr QSqlIndexITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSqlIndexPTR().Pointer() + } + return nil +} + +func QSqlIndexFromPointer(ptr unsafe.Pointer) *QSqlIndex { + var n = new(QSqlIndex) + n.SetPointer(ptr) + return n +} + +func (ptr *QSqlIndex) QSqlIndexPTR() *QSqlIndex { + return ptr +} + +func NewQSqlIndex2(other QSqlIndexITF) *QSqlIndex { + return QSqlIndexFromPointer(unsafe.Pointer(C.QSqlIndex_NewQSqlIndex2(C.QtObjectPtr(PointerFromQSqlIndex(other))))) +} + +func NewQSqlIndex(cursorname string, name string) *QSqlIndex { + return QSqlIndexFromPointer(unsafe.Pointer(C.QSqlIndex_NewQSqlIndex(C.CString(cursorname), C.CString(name)))) +} + +func (ptr *QSqlIndex) Append(field QSqlFieldITF) { + if ptr.Pointer() != nil { + C.QSqlIndex_Append(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSqlField(field))) + } +} + +func (ptr *QSqlIndex) Append2(field QSqlFieldITF, desc bool) { + if ptr.Pointer() != nil { + C.QSqlIndex_Append2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSqlField(field)), C.int(qt.GoBoolToInt(desc))) + } +} + +func (ptr *QSqlIndex) CursorName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlIndex_CursorName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSqlIndex) IsDescending(i int) bool { + if ptr.Pointer() != nil { + return C.QSqlIndex_IsDescending(C.QtObjectPtr(ptr.Pointer()), C.int(i)) != 0 + } + return false +} + +func (ptr *QSqlIndex) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlIndex_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSqlIndex) SetCursorName(cursorName string) { + if ptr.Pointer() != nil { + C.QSqlIndex_SetCursorName(C.QtObjectPtr(ptr.Pointer()), C.CString(cursorName)) + } +} + +func (ptr *QSqlIndex) SetDescending(i int, desc bool) { + if ptr.Pointer() != nil { + C.QSqlIndex_SetDescending(C.QtObjectPtr(ptr.Pointer()), C.int(i), C.int(qt.GoBoolToInt(desc))) + } +} + +func (ptr *QSqlIndex) SetName(name string) { + if ptr.Pointer() != nil { + C.QSqlIndex_SetName(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func (ptr *QSqlIndex) DestroyQSqlIndex() { + if ptr.Pointer() != nil { + C.QSqlIndex_DestroyQSqlIndex(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/sql/qsqlindex.h b/sql/qsqlindex.h new file mode 100755 index 00000000..9c060651 --- /dev/null +++ b/sql/qsqlindex.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSqlIndex_NewQSqlIndex2(QtObjectPtr other); +QtObjectPtr QSqlIndex_NewQSqlIndex(char* cursorname, char* name); +void QSqlIndex_Append(QtObjectPtr ptr, QtObjectPtr field); +void QSqlIndex_Append2(QtObjectPtr ptr, QtObjectPtr field, int desc); +char* QSqlIndex_CursorName(QtObjectPtr ptr); +int QSqlIndex_IsDescending(QtObjectPtr ptr, int i); +char* QSqlIndex_Name(QtObjectPtr ptr); +void QSqlIndex_SetCursorName(QtObjectPtr ptr, char* cursorName); +void QSqlIndex_SetDescending(QtObjectPtr ptr, int i, int desc); +void QSqlIndex_SetName(QtObjectPtr ptr, char* name); +void QSqlIndex_DestroyQSqlIndex(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sql/qsqlquery.cpp b/sql/qsqlquery.cpp new file mode 100755 index 00000000..7490767a --- /dev/null +++ b/sql/qsqlquery.cpp @@ -0,0 +1,159 @@ +#include "qsqlquery.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSqlQuery: public QSqlQuery { +public: +}; + +QtObjectPtr QSqlQuery_NewQSqlQuery3(QtObjectPtr db){ + return new QSqlQuery(*static_cast(db)); +} + +QtObjectPtr QSqlQuery_NewQSqlQuery(QtObjectPtr result){ + return new QSqlQuery(static_cast(result)); +} + +QtObjectPtr QSqlQuery_NewQSqlQuery4(QtObjectPtr other){ + return new QSqlQuery(*static_cast(other)); +} + +QtObjectPtr QSqlQuery_NewQSqlQuery2(char* query, QtObjectPtr db){ + return new QSqlQuery(QString(query), *static_cast(db)); +} + +int QSqlQuery_At(QtObjectPtr ptr){ + return static_cast(ptr)->at(); +} + +char* QSqlQuery_BoundValue(QtObjectPtr ptr, char* placeholder){ + return static_cast(ptr)->boundValue(QString(placeholder)).toString().toUtf8().data(); +} + +char* QSqlQuery_BoundValue2(QtObjectPtr ptr, int pos){ + return static_cast(ptr)->boundValue(pos).toString().toUtf8().data(); +} + +void QSqlQuery_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +QtObjectPtr QSqlQuery_Driver(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->driver()); +} + +int QSqlQuery_Exec2(QtObjectPtr ptr){ + return static_cast(ptr)->exec(); +} + +int QSqlQuery_Exec(QtObjectPtr ptr, char* query){ + return static_cast(ptr)->exec(QString(query)); +} + +int QSqlQuery_ExecBatch(QtObjectPtr ptr, int mode){ + return static_cast(ptr)->execBatch(static_cast(mode)); +} + +char* QSqlQuery_ExecutedQuery(QtObjectPtr ptr){ + return static_cast(ptr)->executedQuery().toUtf8().data(); +} + +void QSqlQuery_Finish(QtObjectPtr ptr){ + static_cast(ptr)->finish(); +} + +int QSqlQuery_First(QtObjectPtr ptr){ + return static_cast(ptr)->first(); +} + +int QSqlQuery_IsActive(QtObjectPtr ptr){ + return static_cast(ptr)->isActive(); +} + +int QSqlQuery_IsForwardOnly(QtObjectPtr ptr){ + return static_cast(ptr)->isForwardOnly(); +} + +int QSqlQuery_IsNull2(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->isNull(QString(name)); +} + +int QSqlQuery_IsNull(QtObjectPtr ptr, int field){ + return static_cast(ptr)->isNull(field); +} + +int QSqlQuery_IsSelect(QtObjectPtr ptr){ + return static_cast(ptr)->isSelect(); +} + +int QSqlQuery_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QSqlQuery_Last(QtObjectPtr ptr){ + return static_cast(ptr)->last(); +} + +char* QSqlQuery_LastInsertId(QtObjectPtr ptr){ + return static_cast(ptr)->lastInsertId().toString().toUtf8().data(); +} + +char* QSqlQuery_LastQuery(QtObjectPtr ptr){ + return static_cast(ptr)->lastQuery().toUtf8().data(); +} + +int QSqlQuery_Next(QtObjectPtr ptr){ + return static_cast(ptr)->next(); +} + +int QSqlQuery_NextResult(QtObjectPtr ptr){ + return static_cast(ptr)->nextResult(); +} + +int QSqlQuery_NumRowsAffected(QtObjectPtr ptr){ + return static_cast(ptr)->numRowsAffected(); +} + +int QSqlQuery_Prepare(QtObjectPtr ptr, char* query){ + return static_cast(ptr)->prepare(QString(query)); +} + +int QSqlQuery_Previous(QtObjectPtr ptr){ + return static_cast(ptr)->previous(); +} + +QtObjectPtr QSqlQuery_Result(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->result()); +} + +int QSqlQuery_Seek(QtObjectPtr ptr, int index, int relative){ + return static_cast(ptr)->seek(index, relative != 0); +} + +void QSqlQuery_SetForwardOnly(QtObjectPtr ptr, int forward){ + static_cast(ptr)->setForwardOnly(forward != 0); +} + +int QSqlQuery_Size(QtObjectPtr ptr){ + return static_cast(ptr)->size(); +} + +char* QSqlQuery_Value2(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->value(QString(name)).toString().toUtf8().data(); +} + +char* QSqlQuery_Value(QtObjectPtr ptr, int index){ + return static_cast(ptr)->value(index).toString().toUtf8().data(); +} + +void QSqlQuery_DestroyQSqlQuery(QtObjectPtr ptr){ + static_cast(ptr)->~QSqlQuery(); +} + diff --git a/sql/qsqlquery.go b/sql/qsqlquery.go new file mode 100755 index 00000000..af4b4de5 --- /dev/null +++ b/sql/qsqlquery.go @@ -0,0 +1,285 @@ +package sql + +//#include "qsqlquery.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QSqlQuery struct { + ptr unsafe.Pointer +} + +type QSqlQueryITF interface { + QSqlQueryPTR() *QSqlQuery +} + +func (p *QSqlQuery) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSqlQuery) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSqlQuery(ptr QSqlQueryITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSqlQueryPTR().Pointer() + } + return nil +} + +func QSqlQueryFromPointer(ptr unsafe.Pointer) *QSqlQuery { + var n = new(QSqlQuery) + n.SetPointer(ptr) + return n +} + +func (ptr *QSqlQuery) QSqlQueryPTR() *QSqlQuery { + return ptr +} + +//QSqlQuery::BatchExecutionMode +type QSqlQuery__BatchExecutionMode int + +var ( + QSqlQuery__ValuesAsRows = QSqlQuery__BatchExecutionMode(0) + QSqlQuery__ValuesAsColumns = QSqlQuery__BatchExecutionMode(1) +) + +func NewQSqlQuery3(db QSqlDatabaseITF) *QSqlQuery { + return QSqlQueryFromPointer(unsafe.Pointer(C.QSqlQuery_NewQSqlQuery3(C.QtObjectPtr(PointerFromQSqlDatabase(db))))) +} + +func NewQSqlQuery(result QSqlResultITF) *QSqlQuery { + return QSqlQueryFromPointer(unsafe.Pointer(C.QSqlQuery_NewQSqlQuery(C.QtObjectPtr(PointerFromQSqlResult(result))))) +} + +func NewQSqlQuery4(other QSqlQueryITF) *QSqlQuery { + return QSqlQueryFromPointer(unsafe.Pointer(C.QSqlQuery_NewQSqlQuery4(C.QtObjectPtr(PointerFromQSqlQuery(other))))) +} + +func NewQSqlQuery2(query string, db QSqlDatabaseITF) *QSqlQuery { + return QSqlQueryFromPointer(unsafe.Pointer(C.QSqlQuery_NewQSqlQuery2(C.CString(query), C.QtObjectPtr(PointerFromQSqlDatabase(db))))) +} + +func (ptr *QSqlQuery) At() int { + if ptr.Pointer() != nil { + return int(C.QSqlQuery_At(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSqlQuery) BoundValue(placeholder string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlQuery_BoundValue(C.QtObjectPtr(ptr.Pointer()), C.CString(placeholder))) + } + return "" +} + +func (ptr *QSqlQuery) BoundValue2(pos int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlQuery_BoundValue2(C.QtObjectPtr(ptr.Pointer()), C.int(pos))) + } + return "" +} + +func (ptr *QSqlQuery) Clear() { + if ptr.Pointer() != nil { + C.QSqlQuery_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSqlQuery) Driver() *QSqlDriver { + if ptr.Pointer() != nil { + return QSqlDriverFromPointer(unsafe.Pointer(C.QSqlQuery_Driver(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSqlQuery) Exec2() bool { + if ptr.Pointer() != nil { + return C.QSqlQuery_Exec2(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlQuery) Exec(query string) bool { + if ptr.Pointer() != nil { + return C.QSqlQuery_Exec(C.QtObjectPtr(ptr.Pointer()), C.CString(query)) != 0 + } + return false +} + +func (ptr *QSqlQuery) ExecBatch(mode QSqlQuery__BatchExecutionMode) bool { + if ptr.Pointer() != nil { + return C.QSqlQuery_ExecBatch(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) != 0 + } + return false +} + +func (ptr *QSqlQuery) ExecutedQuery() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlQuery_ExecutedQuery(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSqlQuery) Finish() { + if ptr.Pointer() != nil { + C.QSqlQuery_Finish(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSqlQuery) First() bool { + if ptr.Pointer() != nil { + return C.QSqlQuery_First(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlQuery) IsActive() bool { + if ptr.Pointer() != nil { + return C.QSqlQuery_IsActive(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlQuery) IsForwardOnly() bool { + if ptr.Pointer() != nil { + return C.QSqlQuery_IsForwardOnly(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlQuery) IsNull2(name string) bool { + if ptr.Pointer() != nil { + return C.QSqlQuery_IsNull2(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) != 0 + } + return false +} + +func (ptr *QSqlQuery) IsNull(field int) bool { + if ptr.Pointer() != nil { + return C.QSqlQuery_IsNull(C.QtObjectPtr(ptr.Pointer()), C.int(field)) != 0 + } + return false +} + +func (ptr *QSqlQuery) IsSelect() bool { + if ptr.Pointer() != nil { + return C.QSqlQuery_IsSelect(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlQuery) IsValid() bool { + if ptr.Pointer() != nil { + return C.QSqlQuery_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlQuery) Last() bool { + if ptr.Pointer() != nil { + return C.QSqlQuery_Last(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlQuery) LastInsertId() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlQuery_LastInsertId(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSqlQuery) LastQuery() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlQuery_LastQuery(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSqlQuery) Next() bool { + if ptr.Pointer() != nil { + return C.QSqlQuery_Next(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlQuery) NextResult() bool { + if ptr.Pointer() != nil { + return C.QSqlQuery_NextResult(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlQuery) NumRowsAffected() int { + if ptr.Pointer() != nil { + return int(C.QSqlQuery_NumRowsAffected(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSqlQuery) Prepare(query string) bool { + if ptr.Pointer() != nil { + return C.QSqlQuery_Prepare(C.QtObjectPtr(ptr.Pointer()), C.CString(query)) != 0 + } + return false +} + +func (ptr *QSqlQuery) Previous() bool { + if ptr.Pointer() != nil { + return C.QSqlQuery_Previous(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlQuery) Result() *QSqlResult { + if ptr.Pointer() != nil { + return QSqlResultFromPointer(unsafe.Pointer(C.QSqlQuery_Result(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSqlQuery) Seek(index int, relative bool) bool { + if ptr.Pointer() != nil { + return C.QSqlQuery_Seek(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.int(qt.GoBoolToInt(relative))) != 0 + } + return false +} + +func (ptr *QSqlQuery) SetForwardOnly(forward bool) { + if ptr.Pointer() != nil { + C.QSqlQuery_SetForwardOnly(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(forward))) + } +} + +func (ptr *QSqlQuery) Size() int { + if ptr.Pointer() != nil { + return int(C.QSqlQuery_Size(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSqlQuery) Value2(name string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlQuery_Value2(C.QtObjectPtr(ptr.Pointer()), C.CString(name))) + } + return "" +} + +func (ptr *QSqlQuery) Value(index int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlQuery_Value(C.QtObjectPtr(ptr.Pointer()), C.int(index))) + } + return "" +} + +func (ptr *QSqlQuery) DestroyQSqlQuery() { + if ptr.Pointer() != nil { + C.QSqlQuery_DestroyQSqlQuery(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/sql/qsqlquery.h b/sql/qsqlquery.h new file mode 100755 index 00000000..bebe6083 --- /dev/null +++ b/sql/qsqlquery.h @@ -0,0 +1,45 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSqlQuery_NewQSqlQuery3(QtObjectPtr db); +QtObjectPtr QSqlQuery_NewQSqlQuery(QtObjectPtr result); +QtObjectPtr QSqlQuery_NewQSqlQuery4(QtObjectPtr other); +QtObjectPtr QSqlQuery_NewQSqlQuery2(char* query, QtObjectPtr db); +int QSqlQuery_At(QtObjectPtr ptr); +char* QSqlQuery_BoundValue(QtObjectPtr ptr, char* placeholder); +char* QSqlQuery_BoundValue2(QtObjectPtr ptr, int pos); +void QSqlQuery_Clear(QtObjectPtr ptr); +QtObjectPtr QSqlQuery_Driver(QtObjectPtr ptr); +int QSqlQuery_Exec2(QtObjectPtr ptr); +int QSqlQuery_Exec(QtObjectPtr ptr, char* query); +int QSqlQuery_ExecBatch(QtObjectPtr ptr, int mode); +char* QSqlQuery_ExecutedQuery(QtObjectPtr ptr); +void QSqlQuery_Finish(QtObjectPtr ptr); +int QSqlQuery_First(QtObjectPtr ptr); +int QSqlQuery_IsActive(QtObjectPtr ptr); +int QSqlQuery_IsForwardOnly(QtObjectPtr ptr); +int QSqlQuery_IsNull2(QtObjectPtr ptr, char* name); +int QSqlQuery_IsNull(QtObjectPtr ptr, int field); +int QSqlQuery_IsSelect(QtObjectPtr ptr); +int QSqlQuery_IsValid(QtObjectPtr ptr); +int QSqlQuery_Last(QtObjectPtr ptr); +char* QSqlQuery_LastInsertId(QtObjectPtr ptr); +char* QSqlQuery_LastQuery(QtObjectPtr ptr); +int QSqlQuery_Next(QtObjectPtr ptr); +int QSqlQuery_NextResult(QtObjectPtr ptr); +int QSqlQuery_NumRowsAffected(QtObjectPtr ptr); +int QSqlQuery_Prepare(QtObjectPtr ptr, char* query); +int QSqlQuery_Previous(QtObjectPtr ptr); +QtObjectPtr QSqlQuery_Result(QtObjectPtr ptr); +int QSqlQuery_Seek(QtObjectPtr ptr, int index, int relative); +void QSqlQuery_SetForwardOnly(QtObjectPtr ptr, int forward); +int QSqlQuery_Size(QtObjectPtr ptr); +char* QSqlQuery_Value2(QtObjectPtr ptr, char* name); +char* QSqlQuery_Value(QtObjectPtr ptr, int index); +void QSqlQuery_DestroyQSqlQuery(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sql/qsqlquerymodel.cpp b/sql/qsqlquerymodel.cpp new file mode 100755 index 00000000..67a4f5e7 --- /dev/null +++ b/sql/qsqlquerymodel.cpp @@ -0,0 +1,66 @@ +#include "qsqlquerymodel.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSqlQueryModel: public QSqlQueryModel { +public: +}; + +int QSqlQueryModel_RowCount(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->rowCount(*static_cast(parent)); +} + +char* QSqlQueryModel_Data(QtObjectPtr ptr, QtObjectPtr item, int role){ + return static_cast(ptr)->data(*static_cast(item), role).toString().toUtf8().data(); +} + +int QSqlQueryModel_CanFetchMore(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->canFetchMore(*static_cast(parent)); +} + +void QSqlQueryModel_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +int QSqlQueryModel_ColumnCount(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->columnCount(*static_cast(index)); +} + +void QSqlQueryModel_FetchMore(QtObjectPtr ptr, QtObjectPtr parent){ + static_cast(ptr)->fetchMore(*static_cast(parent)); +} + +char* QSqlQueryModel_HeaderData(QtObjectPtr ptr, int section, int orientation, int role){ + return static_cast(ptr)->headerData(section, static_cast(orientation), role).toString().toUtf8().data(); +} + +int QSqlQueryModel_InsertColumns(QtObjectPtr ptr, int column, int count, QtObjectPtr parent){ + return static_cast(ptr)->insertColumns(column, count, *static_cast(parent)); +} + +int QSqlQueryModel_RemoveColumns(QtObjectPtr ptr, int column, int count, QtObjectPtr parent){ + return static_cast(ptr)->removeColumns(column, count, *static_cast(parent)); +} + +int QSqlQueryModel_SetHeaderData(QtObjectPtr ptr, int section, int orientation, char* value, int role){ + return static_cast(ptr)->setHeaderData(section, static_cast(orientation), QVariant(value), role); +} + +void QSqlQueryModel_SetQuery(QtObjectPtr ptr, QtObjectPtr query){ + static_cast(ptr)->setQuery(*static_cast(query)); +} + +void QSqlQueryModel_SetQuery2(QtObjectPtr ptr, char* query, QtObjectPtr db){ + static_cast(ptr)->setQuery(QString(query), *static_cast(db)); +} + +void QSqlQueryModel_DestroyQSqlQueryModel(QtObjectPtr ptr){ + static_cast(ptr)->~QSqlQueryModel(); +} + diff --git a/sql/qsqlquerymodel.go b/sql/qsqlquerymodel.go new file mode 100755 index 00000000..fed591ba --- /dev/null +++ b/sql/qsqlquerymodel.go @@ -0,0 +1,125 @@ +package sql + +//#include "qsqlquerymodel.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QSqlQueryModel struct { + core.QAbstractTableModel +} + +type QSqlQueryModelITF interface { + core.QAbstractTableModelITF + QSqlQueryModelPTR() *QSqlQueryModel +} + +func PointerFromQSqlQueryModel(ptr QSqlQueryModelITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSqlQueryModelPTR().Pointer() + } + return nil +} + +func QSqlQueryModelFromPointer(ptr unsafe.Pointer) *QSqlQueryModel { + var n = new(QSqlQueryModel) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSqlQueryModel_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSqlQueryModel) QSqlQueryModelPTR() *QSqlQueryModel { + return ptr +} + +func (ptr *QSqlQueryModel) RowCount(parent core.QModelIndexITF) int { + if ptr.Pointer() != nil { + return int(C.QSqlQueryModel_RowCount(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(parent)))) + } + return 0 +} + +func (ptr *QSqlQueryModel) Data(item core.QModelIndexITF, role int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlQueryModel_Data(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(item)), C.int(role))) + } + return "" +} + +func (ptr *QSqlQueryModel) CanFetchMore(parent core.QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QSqlQueryModel_CanFetchMore(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QSqlQueryModel) Clear() { + if ptr.Pointer() != nil { + C.QSqlQueryModel_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSqlQueryModel) ColumnCount(index core.QModelIndexITF) int { + if ptr.Pointer() != nil { + return int(C.QSqlQueryModel_ColumnCount(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index)))) + } + return 0 +} + +func (ptr *QSqlQueryModel) FetchMore(parent core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QSqlQueryModel_FetchMore(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(parent))) + } +} + +func (ptr *QSqlQueryModel) HeaderData(section int, orientation core.Qt__Orientation, role int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlQueryModel_HeaderData(C.QtObjectPtr(ptr.Pointer()), C.int(section), C.int(orientation), C.int(role))) + } + return "" +} + +func (ptr *QSqlQueryModel) InsertColumns(column int, count int, parent core.QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QSqlQueryModel_InsertColumns(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(count), C.QtObjectPtr(core.PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QSqlQueryModel) RemoveColumns(column int, count int, parent core.QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QSqlQueryModel_RemoveColumns(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(count), C.QtObjectPtr(core.PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QSqlQueryModel) SetHeaderData(section int, orientation core.Qt__Orientation, value string, role int) bool { + if ptr.Pointer() != nil { + return C.QSqlQueryModel_SetHeaderData(C.QtObjectPtr(ptr.Pointer()), C.int(section), C.int(orientation), C.CString(value), C.int(role)) != 0 + } + return false +} + +func (ptr *QSqlQueryModel) SetQuery(query QSqlQueryITF) { + if ptr.Pointer() != nil { + C.QSqlQueryModel_SetQuery(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSqlQuery(query))) + } +} + +func (ptr *QSqlQueryModel) SetQuery2(query string, db QSqlDatabaseITF) { + if ptr.Pointer() != nil { + C.QSqlQueryModel_SetQuery2(C.QtObjectPtr(ptr.Pointer()), C.CString(query), C.QtObjectPtr(PointerFromQSqlDatabase(db))) + } +} + +func (ptr *QSqlQueryModel) DestroyQSqlQueryModel() { + if ptr.Pointer() != nil { + C.QSqlQueryModel_DestroyQSqlQueryModel(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/sql/qsqlquerymodel.h b/sql/qsqlquerymodel.h new file mode 100755 index 00000000..0745c9ab --- /dev/null +++ b/sql/qsqlquerymodel.h @@ -0,0 +1,22 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QSqlQueryModel_RowCount(QtObjectPtr ptr, QtObjectPtr parent); +char* QSqlQueryModel_Data(QtObjectPtr ptr, QtObjectPtr item, int role); +int QSqlQueryModel_CanFetchMore(QtObjectPtr ptr, QtObjectPtr parent); +void QSqlQueryModel_Clear(QtObjectPtr ptr); +int QSqlQueryModel_ColumnCount(QtObjectPtr ptr, QtObjectPtr index); +void QSqlQueryModel_FetchMore(QtObjectPtr ptr, QtObjectPtr parent); +char* QSqlQueryModel_HeaderData(QtObjectPtr ptr, int section, int orientation, int role); +int QSqlQueryModel_InsertColumns(QtObjectPtr ptr, int column, int count, QtObjectPtr parent); +int QSqlQueryModel_RemoveColumns(QtObjectPtr ptr, int column, int count, QtObjectPtr parent); +int QSqlQueryModel_SetHeaderData(QtObjectPtr ptr, int section, int orientation, char* value, int role); +void QSqlQueryModel_SetQuery(QtObjectPtr ptr, QtObjectPtr query); +void QSqlQueryModel_SetQuery2(QtObjectPtr ptr, char* query, QtObjectPtr db); +void QSqlQueryModel_DestroyQSqlQueryModel(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sql/qsqlrecord.cpp b/sql/qsqlrecord.cpp new file mode 100755 index 00000000..65cacb5c --- /dev/null +++ b/sql/qsqlrecord.cpp @@ -0,0 +1,105 @@ +#include "qsqlrecord.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSqlRecord: public QSqlRecord { +public: +}; + +QtObjectPtr QSqlRecord_NewQSqlRecord(){ + return new QSqlRecord(); +} + +QtObjectPtr QSqlRecord_NewQSqlRecord2(QtObjectPtr other){ + return new QSqlRecord(*static_cast(other)); +} + +void QSqlRecord_Append(QtObjectPtr ptr, QtObjectPtr field){ + static_cast(ptr)->append(*static_cast(field)); +} + +void QSqlRecord_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +void QSqlRecord_ClearValues(QtObjectPtr ptr){ + static_cast(ptr)->clearValues(); +} + +int QSqlRecord_Contains(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->contains(QString(name)); +} + +int QSqlRecord_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +char* QSqlRecord_FieldName(QtObjectPtr ptr, int index){ + return static_cast(ptr)->fieldName(index).toUtf8().data(); +} + +int QSqlRecord_IndexOf(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->indexOf(QString(name)); +} + +int QSqlRecord_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +int QSqlRecord_IsGenerated(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->isGenerated(QString(name)); +} + +int QSqlRecord_IsGenerated2(QtObjectPtr ptr, int index){ + return static_cast(ptr)->isGenerated(index); +} + +int QSqlRecord_IsNull(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->isNull(QString(name)); +} + +int QSqlRecord_IsNull2(QtObjectPtr ptr, int index){ + return static_cast(ptr)->isNull(index); +} + +void QSqlRecord_SetGenerated(QtObjectPtr ptr, char* name, int generated){ + static_cast(ptr)->setGenerated(QString(name), generated != 0); +} + +void QSqlRecord_SetGenerated2(QtObjectPtr ptr, int index, int generated){ + static_cast(ptr)->setGenerated(index, generated != 0); +} + +void QSqlRecord_SetNull2(QtObjectPtr ptr, char* name){ + static_cast(ptr)->setNull(QString(name)); +} + +void QSqlRecord_SetNull(QtObjectPtr ptr, int index){ + static_cast(ptr)->setNull(index); +} + +void QSqlRecord_SetValue2(QtObjectPtr ptr, char* name, char* val){ + static_cast(ptr)->setValue(QString(name), QVariant(val)); +} + +void QSqlRecord_SetValue(QtObjectPtr ptr, int index, char* val){ + static_cast(ptr)->setValue(index, QVariant(val)); +} + +char* QSqlRecord_Value2(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->value(QString(name)).toString().toUtf8().data(); +} + +char* QSqlRecord_Value(QtObjectPtr ptr, int index){ + return static_cast(ptr)->value(index).toString().toUtf8().data(); +} + +void QSqlRecord_DestroyQSqlRecord(QtObjectPtr ptr){ + static_cast(ptr)->~QSqlRecord(); +} + diff --git a/sql/qsqlrecord.go b/sql/qsqlrecord.go new file mode 100755 index 00000000..f8d8ac16 --- /dev/null +++ b/sql/qsqlrecord.go @@ -0,0 +1,186 @@ +package sql + +//#include "qsqlrecord.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QSqlRecord struct { + ptr unsafe.Pointer +} + +type QSqlRecordITF interface { + QSqlRecordPTR() *QSqlRecord +} + +func (p *QSqlRecord) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSqlRecord) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSqlRecord(ptr QSqlRecordITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSqlRecordPTR().Pointer() + } + return nil +} + +func QSqlRecordFromPointer(ptr unsafe.Pointer) *QSqlRecord { + var n = new(QSqlRecord) + n.SetPointer(ptr) + return n +} + +func (ptr *QSqlRecord) QSqlRecordPTR() *QSqlRecord { + return ptr +} + +func NewQSqlRecord() *QSqlRecord { + return QSqlRecordFromPointer(unsafe.Pointer(C.QSqlRecord_NewQSqlRecord())) +} + +func NewQSqlRecord2(other QSqlRecordITF) *QSqlRecord { + return QSqlRecordFromPointer(unsafe.Pointer(C.QSqlRecord_NewQSqlRecord2(C.QtObjectPtr(PointerFromQSqlRecord(other))))) +} + +func (ptr *QSqlRecord) Append(field QSqlFieldITF) { + if ptr.Pointer() != nil { + C.QSqlRecord_Append(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSqlField(field))) + } +} + +func (ptr *QSqlRecord) Clear() { + if ptr.Pointer() != nil { + C.QSqlRecord_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSqlRecord) ClearValues() { + if ptr.Pointer() != nil { + C.QSqlRecord_ClearValues(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSqlRecord) Contains(name string) bool { + if ptr.Pointer() != nil { + return C.QSqlRecord_Contains(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) != 0 + } + return false +} + +func (ptr *QSqlRecord) Count() int { + if ptr.Pointer() != nil { + return int(C.QSqlRecord_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSqlRecord) FieldName(index int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlRecord_FieldName(C.QtObjectPtr(ptr.Pointer()), C.int(index))) + } + return "" +} + +func (ptr *QSqlRecord) IndexOf(name string) int { + if ptr.Pointer() != nil { + return int(C.QSqlRecord_IndexOf(C.QtObjectPtr(ptr.Pointer()), C.CString(name))) + } + return 0 +} + +func (ptr *QSqlRecord) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QSqlRecord_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlRecord) IsGenerated(name string) bool { + if ptr.Pointer() != nil { + return C.QSqlRecord_IsGenerated(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) != 0 + } + return false +} + +func (ptr *QSqlRecord) IsGenerated2(index int) bool { + if ptr.Pointer() != nil { + return C.QSqlRecord_IsGenerated2(C.QtObjectPtr(ptr.Pointer()), C.int(index)) != 0 + } + return false +} + +func (ptr *QSqlRecord) IsNull(name string) bool { + if ptr.Pointer() != nil { + return C.QSqlRecord_IsNull(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) != 0 + } + return false +} + +func (ptr *QSqlRecord) IsNull2(index int) bool { + if ptr.Pointer() != nil { + return C.QSqlRecord_IsNull2(C.QtObjectPtr(ptr.Pointer()), C.int(index)) != 0 + } + return false +} + +func (ptr *QSqlRecord) SetGenerated(name string, generated bool) { + if ptr.Pointer() != nil { + C.QSqlRecord_SetGenerated(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.int(qt.GoBoolToInt(generated))) + } +} + +func (ptr *QSqlRecord) SetGenerated2(index int, generated bool) { + if ptr.Pointer() != nil { + C.QSqlRecord_SetGenerated2(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.int(qt.GoBoolToInt(generated))) + } +} + +func (ptr *QSqlRecord) SetNull2(name string) { + if ptr.Pointer() != nil { + C.QSqlRecord_SetNull2(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func (ptr *QSqlRecord) SetNull(index int) { + if ptr.Pointer() != nil { + C.QSqlRecord_SetNull(C.QtObjectPtr(ptr.Pointer()), C.int(index)) + } +} + +func (ptr *QSqlRecord) SetValue2(name string, val string) { + if ptr.Pointer() != nil { + C.QSqlRecord_SetValue2(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.CString(val)) + } +} + +func (ptr *QSqlRecord) SetValue(index int, val string) { + if ptr.Pointer() != nil { + C.QSqlRecord_SetValue(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.CString(val)) + } +} + +func (ptr *QSqlRecord) Value2(name string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlRecord_Value2(C.QtObjectPtr(ptr.Pointer()), C.CString(name))) + } + return "" +} + +func (ptr *QSqlRecord) Value(index int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlRecord_Value(C.QtObjectPtr(ptr.Pointer()), C.int(index))) + } + return "" +} + +func (ptr *QSqlRecord) DestroyQSqlRecord() { + if ptr.Pointer() != nil { + C.QSqlRecord_DestroyQSqlRecord(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/sql/qsqlrecord.h b/sql/qsqlrecord.h new file mode 100755 index 00000000..5436328d --- /dev/null +++ b/sql/qsqlrecord.h @@ -0,0 +1,32 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSqlRecord_NewQSqlRecord(); +QtObjectPtr QSqlRecord_NewQSqlRecord2(QtObjectPtr other); +void QSqlRecord_Append(QtObjectPtr ptr, QtObjectPtr field); +void QSqlRecord_Clear(QtObjectPtr ptr); +void QSqlRecord_ClearValues(QtObjectPtr ptr); +int QSqlRecord_Contains(QtObjectPtr ptr, char* name); +int QSqlRecord_Count(QtObjectPtr ptr); +char* QSqlRecord_FieldName(QtObjectPtr ptr, int index); +int QSqlRecord_IndexOf(QtObjectPtr ptr, char* name); +int QSqlRecord_IsEmpty(QtObjectPtr ptr); +int QSqlRecord_IsGenerated(QtObjectPtr ptr, char* name); +int QSqlRecord_IsGenerated2(QtObjectPtr ptr, int index); +int QSqlRecord_IsNull(QtObjectPtr ptr, char* name); +int QSqlRecord_IsNull2(QtObjectPtr ptr, int index); +void QSqlRecord_SetGenerated(QtObjectPtr ptr, char* name, int generated); +void QSqlRecord_SetGenerated2(QtObjectPtr ptr, int index, int generated); +void QSqlRecord_SetNull2(QtObjectPtr ptr, char* name); +void QSqlRecord_SetNull(QtObjectPtr ptr, int index); +void QSqlRecord_SetValue2(QtObjectPtr ptr, char* name, char* val); +void QSqlRecord_SetValue(QtObjectPtr ptr, int index, char* val); +char* QSqlRecord_Value2(QtObjectPtr ptr, char* name); +char* QSqlRecord_Value(QtObjectPtr ptr, int index); +void QSqlRecord_DestroyQSqlRecord(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sql/qsqlrelation.cpp b/sql/qsqlrelation.cpp new file mode 100755 index 00000000..6b5f9207 --- /dev/null +++ b/sql/qsqlrelation.cpp @@ -0,0 +1,36 @@ +#include "qsqlrelation.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSqlRelation: public QSqlRelation { +public: +}; + +QtObjectPtr QSqlRelation_NewQSqlRelation(){ + return new QSqlRelation(); +} + +QtObjectPtr QSqlRelation_NewQSqlRelation2(char* tableName, char* indexColumn, char* displayColumn){ + return new QSqlRelation(QString(tableName), QString(indexColumn), QString(displayColumn)); +} + +char* QSqlRelation_DisplayColumn(QtObjectPtr ptr){ + return static_cast(ptr)->displayColumn().toUtf8().data(); +} + +char* QSqlRelation_IndexColumn(QtObjectPtr ptr){ + return static_cast(ptr)->indexColumn().toUtf8().data(); +} + +int QSqlRelation_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +char* QSqlRelation_TableName(QtObjectPtr ptr){ + return static_cast(ptr)->tableName().toUtf8().data(); +} + diff --git a/sql/qsqlrelation.go b/sql/qsqlrelation.go new file mode 100755 index 00000000..d90bea01 --- /dev/null +++ b/sql/qsqlrelation.go @@ -0,0 +1,76 @@ +package sql + +//#include "qsqlrelation.h" +import "C" +import ( + "unsafe" +) + +type QSqlRelation struct { + ptr unsafe.Pointer +} + +type QSqlRelationITF interface { + QSqlRelationPTR() *QSqlRelation +} + +func (p *QSqlRelation) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSqlRelation) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSqlRelation(ptr QSqlRelationITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSqlRelationPTR().Pointer() + } + return nil +} + +func QSqlRelationFromPointer(ptr unsafe.Pointer) *QSqlRelation { + var n = new(QSqlRelation) + n.SetPointer(ptr) + return n +} + +func (ptr *QSqlRelation) QSqlRelationPTR() *QSqlRelation { + return ptr +} + +func NewQSqlRelation() *QSqlRelation { + return QSqlRelationFromPointer(unsafe.Pointer(C.QSqlRelation_NewQSqlRelation())) +} + +func NewQSqlRelation2(tableName string, indexColumn string, displayColumn string) *QSqlRelation { + return QSqlRelationFromPointer(unsafe.Pointer(C.QSqlRelation_NewQSqlRelation2(C.CString(tableName), C.CString(indexColumn), C.CString(displayColumn)))) +} + +func (ptr *QSqlRelation) DisplayColumn() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlRelation_DisplayColumn(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSqlRelation) IndexColumn() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlRelation_IndexColumn(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSqlRelation) IsValid() bool { + if ptr.Pointer() != nil { + return C.QSqlRelation_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlRelation) TableName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlRelation_TableName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/sql/qsqlrelation.h b/sql/qsqlrelation.h new file mode 100755 index 00000000..ac7acd75 --- /dev/null +++ b/sql/qsqlrelation.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSqlRelation_NewQSqlRelation(); +QtObjectPtr QSqlRelation_NewQSqlRelation2(char* tableName, char* indexColumn, char* displayColumn); +char* QSqlRelation_DisplayColumn(QtObjectPtr ptr); +char* QSqlRelation_IndexColumn(QtObjectPtr ptr); +int QSqlRelation_IsValid(QtObjectPtr ptr); +char* QSqlRelation_TableName(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sql/qsqlrelationaldelegate.cpp b/sql/qsqlrelationaldelegate.cpp new file mode 100755 index 00000000..d0cf93bd --- /dev/null +++ b/sql/qsqlrelationaldelegate.cpp @@ -0,0 +1,7 @@ +#include "qsqlrelationaldelegate.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/sql/qsqlrelationaldelegate.go b/sql/qsqlrelationaldelegate.go new file mode 100755 index 00000000..3bdd064a --- /dev/null +++ b/sql/qsqlrelationaldelegate.go @@ -0,0 +1,40 @@ +package sql + +//#include "qsqlrelationaldelegate.h" +import "C" +import ( + "unsafe" +) + +type QSqlRelationalDelegate struct { + ptr unsafe.Pointer +} + +type QSqlRelationalDelegateITF interface { + QSqlRelationalDelegatePTR() *QSqlRelationalDelegate +} + +func (p *QSqlRelationalDelegate) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSqlRelationalDelegate) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSqlRelationalDelegate(ptr QSqlRelationalDelegateITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSqlRelationalDelegatePTR().Pointer() + } + return nil +} + +func QSqlRelationalDelegateFromPointer(ptr unsafe.Pointer) *QSqlRelationalDelegate { + var n = new(QSqlRelationalDelegate) + n.SetPointer(ptr) + return n +} + +func (ptr *QSqlRelationalDelegate) QSqlRelationalDelegatePTR() *QSqlRelationalDelegate { + return ptr +} diff --git a/sql/qsqlrelationaldelegate.h b/sql/qsqlrelationaldelegate.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/sql/qsqlrelationaldelegate.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sql/qsqlrelationaltablemodel.cpp b/sql/qsqlrelationaltablemodel.cpp new file mode 100755 index 00000000..6ed1702d --- /dev/null +++ b/sql/qsqlrelationaltablemodel.cpp @@ -0,0 +1,58 @@ +#include "qsqlrelationaltablemodel.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSqlRelationalTableModel: public QSqlRelationalTableModel { +public: +}; + +void QSqlRelationalTableModel_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +char* QSqlRelationalTableModel_Data(QtObjectPtr ptr, QtObjectPtr index, int role){ + return static_cast(ptr)->data(*static_cast(index), role).toString().toUtf8().data(); +} + +QtObjectPtr QSqlRelationalTableModel_RelationModel(QtObjectPtr ptr, int column){ + return static_cast(ptr)->relationModel(column); +} + +int QSqlRelationalTableModel_RemoveColumns(QtObjectPtr ptr, int column, int count, QtObjectPtr parent){ + return static_cast(ptr)->removeColumns(column, count, *static_cast(parent)); +} + +void QSqlRelationalTableModel_RevertRow(QtObjectPtr ptr, int row){ + QMetaObject::invokeMethod(static_cast(ptr), "revertRow", Q_ARG(int, row)); +} + +int QSqlRelationalTableModel_Select(QtObjectPtr ptr){ + return static_cast(ptr)->select(); +} + +int QSqlRelationalTableModel_SetData(QtObjectPtr ptr, QtObjectPtr index, char* value, int role){ + return static_cast(ptr)->setData(*static_cast(index), QVariant(value), role); +} + +void QSqlRelationalTableModel_SetJoinMode(QtObjectPtr ptr, int joinMode){ + static_cast(ptr)->setJoinMode(static_cast(joinMode)); +} + +void QSqlRelationalTableModel_SetRelation(QtObjectPtr ptr, int column, QtObjectPtr relation){ + static_cast(ptr)->setRelation(column, *static_cast(relation)); +} + +void QSqlRelationalTableModel_SetTable(QtObjectPtr ptr, char* table){ + static_cast(ptr)->setTable(QString(table)); +} + +void QSqlRelationalTableModel_DestroyQSqlRelationalTableModel(QtObjectPtr ptr){ + static_cast(ptr)->~QSqlRelationalTableModel(); +} + diff --git a/sql/qsqlrelationaltablemodel.go b/sql/qsqlrelationaltablemodel.go new file mode 100755 index 00000000..67a8c271 --- /dev/null +++ b/sql/qsqlrelationaltablemodel.go @@ -0,0 +1,118 @@ +package sql + +//#include "qsqlrelationaltablemodel.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QSqlRelationalTableModel struct { + QSqlTableModel +} + +type QSqlRelationalTableModelITF interface { + QSqlTableModelITF + QSqlRelationalTableModelPTR() *QSqlRelationalTableModel +} + +func PointerFromQSqlRelationalTableModel(ptr QSqlRelationalTableModelITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSqlRelationalTableModelPTR().Pointer() + } + return nil +} + +func QSqlRelationalTableModelFromPointer(ptr unsafe.Pointer) *QSqlRelationalTableModel { + var n = new(QSqlRelationalTableModel) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSqlRelationalTableModel_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSqlRelationalTableModel) QSqlRelationalTableModelPTR() *QSqlRelationalTableModel { + return ptr +} + +//QSqlRelationalTableModel::JoinMode +type QSqlRelationalTableModel__JoinMode int + +var ( + QSqlRelationalTableModel__InnerJoin = QSqlRelationalTableModel__JoinMode(0) + QSqlRelationalTableModel__LeftJoin = QSqlRelationalTableModel__JoinMode(1) +) + +func (ptr *QSqlRelationalTableModel) Clear() { + if ptr.Pointer() != nil { + C.QSqlRelationalTableModel_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSqlRelationalTableModel) Data(index core.QModelIndexITF, role int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlRelationalTableModel_Data(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index)), C.int(role))) + } + return "" +} + +func (ptr *QSqlRelationalTableModel) RelationModel(column int) *QSqlTableModel { + if ptr.Pointer() != nil { + return QSqlTableModelFromPointer(unsafe.Pointer(C.QSqlRelationalTableModel_RelationModel(C.QtObjectPtr(ptr.Pointer()), C.int(column)))) + } + return nil +} + +func (ptr *QSqlRelationalTableModel) RemoveColumns(column int, count int, parent core.QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QSqlRelationalTableModel_RemoveColumns(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(count), C.QtObjectPtr(core.PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QSqlRelationalTableModel) RevertRow(row int) { + if ptr.Pointer() != nil { + C.QSqlRelationalTableModel_RevertRow(C.QtObjectPtr(ptr.Pointer()), C.int(row)) + } +} + +func (ptr *QSqlRelationalTableModel) Select() bool { + if ptr.Pointer() != nil { + return C.QSqlRelationalTableModel_Select(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlRelationalTableModel) SetData(index core.QModelIndexITF, value string, role int) bool { + if ptr.Pointer() != nil { + return C.QSqlRelationalTableModel_SetData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index)), C.CString(value), C.int(role)) != 0 + } + return false +} + +func (ptr *QSqlRelationalTableModel) SetJoinMode(joinMode QSqlRelationalTableModel__JoinMode) { + if ptr.Pointer() != nil { + C.QSqlRelationalTableModel_SetJoinMode(C.QtObjectPtr(ptr.Pointer()), C.int(joinMode)) + } +} + +func (ptr *QSqlRelationalTableModel) SetRelation(column int, relation QSqlRelationITF) { + if ptr.Pointer() != nil { + C.QSqlRelationalTableModel_SetRelation(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.QtObjectPtr(PointerFromQSqlRelation(relation))) + } +} + +func (ptr *QSqlRelationalTableModel) SetTable(table string) { + if ptr.Pointer() != nil { + C.QSqlRelationalTableModel_SetTable(C.QtObjectPtr(ptr.Pointer()), C.CString(table)) + } +} + +func (ptr *QSqlRelationalTableModel) DestroyQSqlRelationalTableModel() { + if ptr.Pointer() != nil { + C.QSqlRelationalTableModel_DestroyQSqlRelationalTableModel(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/sql/qsqlrelationaltablemodel.h b/sql/qsqlrelationaltablemodel.h new file mode 100755 index 00000000..969059bd --- /dev/null +++ b/sql/qsqlrelationaltablemodel.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QSqlRelationalTableModel_Clear(QtObjectPtr ptr); +char* QSqlRelationalTableModel_Data(QtObjectPtr ptr, QtObjectPtr index, int role); +QtObjectPtr QSqlRelationalTableModel_RelationModel(QtObjectPtr ptr, int column); +int QSqlRelationalTableModel_RemoveColumns(QtObjectPtr ptr, int column, int count, QtObjectPtr parent); +void QSqlRelationalTableModel_RevertRow(QtObjectPtr ptr, int row); +int QSqlRelationalTableModel_Select(QtObjectPtr ptr); +int QSqlRelationalTableModel_SetData(QtObjectPtr ptr, QtObjectPtr index, char* value, int role); +void QSqlRelationalTableModel_SetJoinMode(QtObjectPtr ptr, int joinMode); +void QSqlRelationalTableModel_SetRelation(QtObjectPtr ptr, int column, QtObjectPtr relation); +void QSqlRelationalTableModel_SetTable(QtObjectPtr ptr, char* table); +void QSqlRelationalTableModel_DestroyQSqlRelationalTableModel(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sql/qsqlresult.cpp b/sql/qsqlresult.cpp new file mode 100755 index 00000000..b015b1e8 --- /dev/null +++ b/sql/qsqlresult.cpp @@ -0,0 +1,20 @@ +#include "qsqlresult.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSqlResult: public QSqlResult { +public: +}; + +char* QSqlResult_Handle(QtObjectPtr ptr){ + return static_cast(ptr)->handle().toString().toUtf8().data(); +} + +void QSqlResult_DestroyQSqlResult(QtObjectPtr ptr){ + static_cast(ptr)->~QSqlResult(); +} + diff --git a/sql/qsqlresult.go b/sql/qsqlresult.go new file mode 100755 index 00000000..d362d455 --- /dev/null +++ b/sql/qsqlresult.go @@ -0,0 +1,53 @@ +package sql + +//#include "qsqlresult.h" +import "C" +import ( + "unsafe" +) + +type QSqlResult struct { + ptr unsafe.Pointer +} + +type QSqlResultITF interface { + QSqlResultPTR() *QSqlResult +} + +func (p *QSqlResult) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSqlResult) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSqlResult(ptr QSqlResultITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSqlResultPTR().Pointer() + } + return nil +} + +func QSqlResultFromPointer(ptr unsafe.Pointer) *QSqlResult { + var n = new(QSqlResult) + n.SetPointer(ptr) + return n +} + +func (ptr *QSqlResult) QSqlResultPTR() *QSqlResult { + return ptr +} + +func (ptr *QSqlResult) Handle() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlResult_Handle(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSqlResult) DestroyQSqlResult() { + if ptr.Pointer() != nil { + C.QSqlResult_DestroyQSqlResult(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/sql/qsqlresult.h b/sql/qsqlresult.h new file mode 100755 index 00000000..6ecb1933 --- /dev/null +++ b/sql/qsqlresult.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QSqlResult_Handle(QtObjectPtr ptr); +void QSqlResult_DestroyQSqlResult(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/sql/qsqltablemodel.cpp b/sql/qsqltablemodel.cpp new file mode 100755 index 00000000..96f1936f --- /dev/null +++ b/sql/qsqltablemodel.cpp @@ -0,0 +1,144 @@ +#include "qsqltablemodel.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSqlTableModel: public QSqlTableModel { +public: +void Signal_BeforeDelete(int row){callbackQSqlTableModelBeforeDelete(this->objectName().toUtf8().data(), row);}; +}; + +void QSqlTableModel_ConnectBeforeDelete(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSqlTableModel::beforeDelete), static_cast(ptr), static_cast(&MyQSqlTableModel::Signal_BeforeDelete));; +} + +void QSqlTableModel_DisconnectBeforeDelete(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSqlTableModel::beforeDelete), static_cast(ptr), static_cast(&MyQSqlTableModel::Signal_BeforeDelete));; +} + +void QSqlTableModel_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +char* QSqlTableModel_Data(QtObjectPtr ptr, QtObjectPtr index, int role){ + return static_cast(ptr)->data(*static_cast(index), role).toString().toUtf8().data(); +} + +int QSqlTableModel_EditStrategy(QtObjectPtr ptr){ + return static_cast(ptr)->editStrategy(); +} + +int QSqlTableModel_FieldIndex(QtObjectPtr ptr, char* fieldName){ + return static_cast(ptr)->fieldIndex(QString(fieldName)); +} + +char* QSqlTableModel_Filter(QtObjectPtr ptr){ + return static_cast(ptr)->filter().toUtf8().data(); +} + +int QSqlTableModel_Flags(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->flags(*static_cast(index)); +} + +char* QSqlTableModel_HeaderData(QtObjectPtr ptr, int section, int orientation, int role){ + return static_cast(ptr)->headerData(section, static_cast(orientation), role).toString().toUtf8().data(); +} + +int QSqlTableModel_InsertRecord(QtObjectPtr ptr, int row, QtObjectPtr record){ + return static_cast(ptr)->insertRecord(row, *static_cast(record)); +} + +int QSqlTableModel_InsertRows(QtObjectPtr ptr, int row, int count, QtObjectPtr parent){ + return static_cast(ptr)->insertRows(row, count, *static_cast(parent)); +} + +int QSqlTableModel_IsDirty2(QtObjectPtr ptr){ + return static_cast(ptr)->isDirty(); +} + +int QSqlTableModel_IsDirty(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->isDirty(*static_cast(index)); +} + +int QSqlTableModel_RemoveColumns(QtObjectPtr ptr, int column, int count, QtObjectPtr parent){ + return static_cast(ptr)->removeColumns(column, count, *static_cast(parent)); +} + +int QSqlTableModel_RemoveRows(QtObjectPtr ptr, int row, int count, QtObjectPtr parent){ + return static_cast(ptr)->removeRows(row, count, *static_cast(parent)); +} + +void QSqlTableModel_Revert(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "revert"); +} + +void QSqlTableModel_RevertAll(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "revertAll"); +} + +void QSqlTableModel_RevertRow(QtObjectPtr ptr, int row){ + static_cast(ptr)->revertRow(row); +} + +int QSqlTableModel_RowCount(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->rowCount(*static_cast(parent)); +} + +int QSqlTableModel_Select(QtObjectPtr ptr){ + return QMetaObject::invokeMethod(static_cast(ptr), "select"); +} + +int QSqlTableModel_SelectRow(QtObjectPtr ptr, int row){ + return QMetaObject::invokeMethod(static_cast(ptr), "selectRow", Q_ARG(int, row)); +} + +int QSqlTableModel_SetData(QtObjectPtr ptr, QtObjectPtr index, char* value, int role){ + return static_cast(ptr)->setData(*static_cast(index), QVariant(value), role); +} + +void QSqlTableModel_SetEditStrategy(QtObjectPtr ptr, int strategy){ + static_cast(ptr)->setEditStrategy(static_cast(strategy)); +} + +void QSqlTableModel_SetFilter(QtObjectPtr ptr, char* filter){ + static_cast(ptr)->setFilter(QString(filter)); +} + +int QSqlTableModel_SetRecord(QtObjectPtr ptr, int row, QtObjectPtr values){ + return static_cast(ptr)->setRecord(row, *static_cast(values)); +} + +void QSqlTableModel_SetSort(QtObjectPtr ptr, int column, int order){ + static_cast(ptr)->setSort(column, static_cast(order)); +} + +void QSqlTableModel_SetTable(QtObjectPtr ptr, char* tableName){ + static_cast(ptr)->setTable(QString(tableName)); +} + +void QSqlTableModel_Sort(QtObjectPtr ptr, int column, int order){ + static_cast(ptr)->sort(column, static_cast(order)); +} + +int QSqlTableModel_Submit(QtObjectPtr ptr){ + return QMetaObject::invokeMethod(static_cast(ptr), "submit"); +} + +int QSqlTableModel_SubmitAll(QtObjectPtr ptr){ + return QMetaObject::invokeMethod(static_cast(ptr), "submitAll"); +} + +char* QSqlTableModel_TableName(QtObjectPtr ptr){ + return static_cast(ptr)->tableName().toUtf8().data(); +} + +void QSqlTableModel_DestroyQSqlTableModel(QtObjectPtr ptr){ + static_cast(ptr)->~QSqlTableModel(); +} + diff --git a/sql/qsqltablemodel.go b/sql/qsqltablemodel.go new file mode 100755 index 00000000..48358f53 --- /dev/null +++ b/sql/qsqltablemodel.go @@ -0,0 +1,267 @@ +package sql + +//#include "qsqltablemodel.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QSqlTableModel struct { + QSqlQueryModel +} + +type QSqlTableModelITF interface { + QSqlQueryModelITF + QSqlTableModelPTR() *QSqlTableModel +} + +func PointerFromQSqlTableModel(ptr QSqlTableModelITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSqlTableModelPTR().Pointer() + } + return nil +} + +func QSqlTableModelFromPointer(ptr unsafe.Pointer) *QSqlTableModel { + var n = new(QSqlTableModel) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSqlTableModel_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSqlTableModel) QSqlTableModelPTR() *QSqlTableModel { + return ptr +} + +//QSqlTableModel::EditStrategy +type QSqlTableModel__EditStrategy int + +var ( + QSqlTableModel__OnFieldChange = QSqlTableModel__EditStrategy(0) + QSqlTableModel__OnRowChange = QSqlTableModel__EditStrategy(1) + QSqlTableModel__OnManualSubmit = QSqlTableModel__EditStrategy(2) +) + +func (ptr *QSqlTableModel) ConnectBeforeDelete(f func(row int)) { + if ptr.Pointer() != nil { + C.QSqlTableModel_ConnectBeforeDelete(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "beforeDelete", f) + } +} + +func (ptr *QSqlTableModel) DisconnectBeforeDelete() { + if ptr.Pointer() != nil { + C.QSqlTableModel_DisconnectBeforeDelete(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "beforeDelete") + } +} + +//export callbackQSqlTableModelBeforeDelete +func callbackQSqlTableModelBeforeDelete(ptrName *C.char, row C.int) { + qt.GetSignal(C.GoString(ptrName), "beforeDelete").(func(int))(int(row)) +} + +func (ptr *QSqlTableModel) Clear() { + if ptr.Pointer() != nil { + C.QSqlTableModel_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSqlTableModel) Data(index core.QModelIndexITF, role int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlTableModel_Data(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index)), C.int(role))) + } + return "" +} + +func (ptr *QSqlTableModel) EditStrategy() QSqlTableModel__EditStrategy { + if ptr.Pointer() != nil { + return QSqlTableModel__EditStrategy(C.QSqlTableModel_EditStrategy(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSqlTableModel) FieldIndex(fieldName string) int { + if ptr.Pointer() != nil { + return int(C.QSqlTableModel_FieldIndex(C.QtObjectPtr(ptr.Pointer()), C.CString(fieldName))) + } + return 0 +} + +func (ptr *QSqlTableModel) Filter() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlTableModel_Filter(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSqlTableModel) Flags(index core.QModelIndexITF) core.Qt__ItemFlag { + if ptr.Pointer() != nil { + return core.Qt__ItemFlag(C.QSqlTableModel_Flags(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index)))) + } + return 0 +} + +func (ptr *QSqlTableModel) HeaderData(section int, orientation core.Qt__Orientation, role int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlTableModel_HeaderData(C.QtObjectPtr(ptr.Pointer()), C.int(section), C.int(orientation), C.int(role))) + } + return "" +} + +func (ptr *QSqlTableModel) InsertRecord(row int, record QSqlRecordITF) bool { + if ptr.Pointer() != nil { + return C.QSqlTableModel_InsertRecord(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.QtObjectPtr(PointerFromQSqlRecord(record))) != 0 + } + return false +} + +func (ptr *QSqlTableModel) InsertRows(row int, count int, parent core.QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QSqlTableModel_InsertRows(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(count), C.QtObjectPtr(core.PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QSqlTableModel) IsDirty2() bool { + if ptr.Pointer() != nil { + return C.QSqlTableModel_IsDirty2(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlTableModel) IsDirty(index core.QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QSqlTableModel_IsDirty(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index))) != 0 + } + return false +} + +func (ptr *QSqlTableModel) RemoveColumns(column int, count int, parent core.QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QSqlTableModel_RemoveColumns(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(count), C.QtObjectPtr(core.PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QSqlTableModel) RemoveRows(row int, count int, parent core.QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QSqlTableModel_RemoveRows(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(count), C.QtObjectPtr(core.PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QSqlTableModel) Revert() { + if ptr.Pointer() != nil { + C.QSqlTableModel_Revert(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSqlTableModel) RevertAll() { + if ptr.Pointer() != nil { + C.QSqlTableModel_RevertAll(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSqlTableModel) RevertRow(row int) { + if ptr.Pointer() != nil { + C.QSqlTableModel_RevertRow(C.QtObjectPtr(ptr.Pointer()), C.int(row)) + } +} + +func (ptr *QSqlTableModel) RowCount(parent core.QModelIndexITF) int { + if ptr.Pointer() != nil { + return int(C.QSqlTableModel_RowCount(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(parent)))) + } + return 0 +} + +func (ptr *QSqlTableModel) Select() bool { + if ptr.Pointer() != nil { + return C.QSqlTableModel_Select(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlTableModel) SelectRow(row int) bool { + if ptr.Pointer() != nil { + return C.QSqlTableModel_SelectRow(C.QtObjectPtr(ptr.Pointer()), C.int(row)) != 0 + } + return false +} + +func (ptr *QSqlTableModel) SetData(index core.QModelIndexITF, value string, role int) bool { + if ptr.Pointer() != nil { + return C.QSqlTableModel_SetData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index)), C.CString(value), C.int(role)) != 0 + } + return false +} + +func (ptr *QSqlTableModel) SetEditStrategy(strategy QSqlTableModel__EditStrategy) { + if ptr.Pointer() != nil { + C.QSqlTableModel_SetEditStrategy(C.QtObjectPtr(ptr.Pointer()), C.int(strategy)) + } +} + +func (ptr *QSqlTableModel) SetFilter(filter string) { + if ptr.Pointer() != nil { + C.QSqlTableModel_SetFilter(C.QtObjectPtr(ptr.Pointer()), C.CString(filter)) + } +} + +func (ptr *QSqlTableModel) SetRecord(row int, values QSqlRecordITF) bool { + if ptr.Pointer() != nil { + return C.QSqlTableModel_SetRecord(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.QtObjectPtr(PointerFromQSqlRecord(values))) != 0 + } + return false +} + +func (ptr *QSqlTableModel) SetSort(column int, order core.Qt__SortOrder) { + if ptr.Pointer() != nil { + C.QSqlTableModel_SetSort(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(order)) + } +} + +func (ptr *QSqlTableModel) SetTable(tableName string) { + if ptr.Pointer() != nil { + C.QSqlTableModel_SetTable(C.QtObjectPtr(ptr.Pointer()), C.CString(tableName)) + } +} + +func (ptr *QSqlTableModel) Sort(column int, order core.Qt__SortOrder) { + if ptr.Pointer() != nil { + C.QSqlTableModel_Sort(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(order)) + } +} + +func (ptr *QSqlTableModel) Submit() bool { + if ptr.Pointer() != nil { + return C.QSqlTableModel_Submit(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlTableModel) SubmitAll() bool { + if ptr.Pointer() != nil { + return C.QSqlTableModel_SubmitAll(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSqlTableModel) TableName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSqlTableModel_TableName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSqlTableModel) DestroyQSqlTableModel() { + if ptr.Pointer() != nil { + C.QSqlTableModel_DestroyQSqlTableModel(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/sql/qsqltablemodel.h b/sql/qsqltablemodel.h new file mode 100755 index 00000000..58fdb941 --- /dev/null +++ b/sql/qsqltablemodel.h @@ -0,0 +1,41 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QSqlTableModel_ConnectBeforeDelete(QtObjectPtr ptr); +void QSqlTableModel_DisconnectBeforeDelete(QtObjectPtr ptr); +void QSqlTableModel_Clear(QtObjectPtr ptr); +char* QSqlTableModel_Data(QtObjectPtr ptr, QtObjectPtr index, int role); +int QSqlTableModel_EditStrategy(QtObjectPtr ptr); +int QSqlTableModel_FieldIndex(QtObjectPtr ptr, char* fieldName); +char* QSqlTableModel_Filter(QtObjectPtr ptr); +int QSqlTableModel_Flags(QtObjectPtr ptr, QtObjectPtr index); +char* QSqlTableModel_HeaderData(QtObjectPtr ptr, int section, int orientation, int role); +int QSqlTableModel_InsertRecord(QtObjectPtr ptr, int row, QtObjectPtr record); +int QSqlTableModel_InsertRows(QtObjectPtr ptr, int row, int count, QtObjectPtr parent); +int QSqlTableModel_IsDirty2(QtObjectPtr ptr); +int QSqlTableModel_IsDirty(QtObjectPtr ptr, QtObjectPtr index); +int QSqlTableModel_RemoveColumns(QtObjectPtr ptr, int column, int count, QtObjectPtr parent); +int QSqlTableModel_RemoveRows(QtObjectPtr ptr, int row, int count, QtObjectPtr parent); +void QSqlTableModel_Revert(QtObjectPtr ptr); +void QSqlTableModel_RevertAll(QtObjectPtr ptr); +void QSqlTableModel_RevertRow(QtObjectPtr ptr, int row); +int QSqlTableModel_RowCount(QtObjectPtr ptr, QtObjectPtr parent); +int QSqlTableModel_Select(QtObjectPtr ptr); +int QSqlTableModel_SelectRow(QtObjectPtr ptr, int row); +int QSqlTableModel_SetData(QtObjectPtr ptr, QtObjectPtr index, char* value, int role); +void QSqlTableModel_SetEditStrategy(QtObjectPtr ptr, int strategy); +void QSqlTableModel_SetFilter(QtObjectPtr ptr, char* filter); +int QSqlTableModel_SetRecord(QtObjectPtr ptr, int row, QtObjectPtr values); +void QSqlTableModel_SetSort(QtObjectPtr ptr, int column, int order); +void QSqlTableModel_SetTable(QtObjectPtr ptr, char* tableName); +void QSqlTableModel_Sort(QtObjectPtr ptr, int column, int order); +int QSqlTableModel_Submit(QtObjectPtr ptr); +int QSqlTableModel_SubmitAll(QtObjectPtr ptr); +char* QSqlTableModel_TableName(QtObjectPtr ptr); +void QSqlTableModel_DestroyQSqlTableModel(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/svg/cgo_darwin_amd64.go b/svg/cgo_darwin_amd64.go new file mode 100755 index 00000000..2b16a359 --- /dev/null +++ b/svg/cgo_darwin_amd64.go @@ -0,0 +1,13 @@ +package svg + +/* +#cgo CPPFLAGS: -pipe -O2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 -Wall -W +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DQT_SVG_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/mkspecs/macx-clang -F/usr/local/Qt5.5.1/5.5/clang_64/lib +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtCore.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtGui.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtWidgets.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtSvg.framework/Headers +#cgo CPPFLAGS: -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.framework/Headers + +#cgo LDFLAGS: -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 +#cgo LDFLAGS: -F/usr/local/Qt5.5.1/5.5/clang_64/lib -framework QtCore -framework QtGui -framework QtWidgets -framework QtSvg -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL +*/ +import "C" diff --git a/svg/cgo_linux_386.go b/svg/cgo_linux_386.go new file mode 100755 index 00000000..7a40bd08 --- /dev/null +++ b/svg/cgo_linux_386.go @@ -0,0 +1,12 @@ +package svg + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DQT_SVG_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include -I/usr/local/Qt5.5.1/5.5/gcc/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc/include/QtGui -I/usr/local/Qt5.5.1/5.5/gcc/include/QtWidgets -I/usr/local/Qt5.5.1/5.5/gcc/include/QtSvg + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc/lib -L/usr/lib -lQt5Core -lQt5Gui -lQt5Widgets -lQt5Svg -lpthread +*/ +import "C" diff --git a/svg/cgo_linux_amd64.go b/svg/cgo_linux_amd64.go new file mode 100755 index 00000000..f72bf9c4 --- /dev/null +++ b/svg/cgo_linux_amd64.go @@ -0,0 +1,12 @@ +package svg + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DQT_SVG_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include -I/usr/local/Qt5.5.1/5.5/gcc_64/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtGui -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtWidgets -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtSvg + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc_64/lib -L/usr/lib64 -lQt5Core -lQt5Gui -lQt5Widgets -lQt5Svg -lpthread +*/ +import "C" diff --git a/svg/cgo_windows_386.go b/svg/cgo_windows_386.go new file mode 100755 index 00000000..8f52cbc9 --- /dev/null +++ b/svg/cgo_windows_386.go @@ -0,0 +1,12 @@ +package svg + +/* +#cgo CPPFLAGS: -pipe -fno-keep-inline-dllexport -O2 -Wall -Wextra -fexceptions -mthreads +#cgo CPPFLAGS: -DUNICODE -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DQT_SVG_LIB +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include -IC:/Qt/Qt5.5.1/5.5/mingw492_32/mkspecs/win32-g++ +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtCore -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtGui -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtWidgets -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtSvg + +#cgo LDFLAGS: -Wl,-s -Wl,-subsystem,windows -mthreads +#cgo LDFLAGS: -LC:/Qt/Qt5.5.1/5.5/mingw492_32/bin -lQt5Core -lQt5Gui -lQt5Widgets -lQt5Svg +*/ +import "C" diff --git a/svg/qgraphicssvgitem.cpp b/svg/qgraphicssvgitem.cpp new file mode 100755 index 00000000..a62078a4 --- /dev/null +++ b/svg/qgraphicssvgitem.cpp @@ -0,0 +1,56 @@ +#include "qgraphicssvgitem.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsSvgItem: public QGraphicsSvgItem { +public: +}; + +QtObjectPtr QGraphicsSvgItem_NewQGraphicsSvgItem(QtObjectPtr parent){ + return new QGraphicsSvgItem(static_cast(parent)); +} + +QtObjectPtr QGraphicsSvgItem_NewQGraphicsSvgItem2(char* fileName, QtObjectPtr parent){ + return new QGraphicsSvgItem(QString(fileName), static_cast(parent)); +} + +char* QGraphicsSvgItem_ElementId(QtObjectPtr ptr){ + return static_cast(ptr)->elementId().toUtf8().data(); +} + +void QGraphicsSvgItem_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget){ + static_cast(ptr)->paint(static_cast(painter), static_cast(option), static_cast(widget)); +} + +QtObjectPtr QGraphicsSvgItem_Renderer(QtObjectPtr ptr){ + return static_cast(ptr)->renderer(); +} + +void QGraphicsSvgItem_SetElementId(QtObjectPtr ptr, char* id){ + static_cast(ptr)->setElementId(QString(id)); +} + +void QGraphicsSvgItem_SetMaximumCacheSize(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->setMaximumCacheSize(*static_cast(size)); +} + +void QGraphicsSvgItem_SetSharedRenderer(QtObjectPtr ptr, QtObjectPtr renderer){ + static_cast(ptr)->setSharedRenderer(static_cast(renderer)); +} + +int QGraphicsSvgItem_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + diff --git a/svg/qgraphicssvgitem.go b/svg/qgraphicssvgitem.go new file mode 100755 index 00000000..8cb516fe --- /dev/null +++ b/svg/qgraphicssvgitem.go @@ -0,0 +1,93 @@ +package svg + +//#include "qgraphicssvgitem.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "github.com/therecipe/qt/widgets" + "unsafe" +) + +type QGraphicsSvgItem struct { + widgets.QGraphicsObject +} + +type QGraphicsSvgItemITF interface { + widgets.QGraphicsObjectITF + QGraphicsSvgItemPTR() *QGraphicsSvgItem +} + +func PointerFromQGraphicsSvgItem(ptr QGraphicsSvgItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsSvgItemPTR().Pointer() + } + return nil +} + +func QGraphicsSvgItemFromPointer(ptr unsafe.Pointer) *QGraphicsSvgItem { + var n = new(QGraphicsSvgItem) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGraphicsSvgItem_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGraphicsSvgItem) QGraphicsSvgItemPTR() *QGraphicsSvgItem { + return ptr +} + +func NewQGraphicsSvgItem(parent widgets.QGraphicsItemITF) *QGraphicsSvgItem { + return QGraphicsSvgItemFromPointer(unsafe.Pointer(C.QGraphicsSvgItem_NewQGraphicsSvgItem(C.QtObjectPtr(widgets.PointerFromQGraphicsItem(parent))))) +} + +func NewQGraphicsSvgItem2(fileName string, parent widgets.QGraphicsItemITF) *QGraphicsSvgItem { + return QGraphicsSvgItemFromPointer(unsafe.Pointer(C.QGraphicsSvgItem_NewQGraphicsSvgItem2(C.CString(fileName), C.QtObjectPtr(widgets.PointerFromQGraphicsItem(parent))))) +} + +func (ptr *QGraphicsSvgItem) ElementId() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGraphicsSvgItem_ElementId(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QGraphicsSvgItem) Paint(painter gui.QPainterITF, option widgets.QStyleOptionGraphicsItemITF, widget widgets.QWidgetITF) { + if ptr.Pointer() != nil { + C.QGraphicsSvgItem_Paint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(widgets.PointerFromQStyleOptionGraphicsItem(option)), C.QtObjectPtr(widgets.PointerFromQWidget(widget))) + } +} + +func (ptr *QGraphicsSvgItem) Renderer() *QSvgRenderer { + if ptr.Pointer() != nil { + return QSvgRendererFromPointer(unsafe.Pointer(C.QGraphicsSvgItem_Renderer(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QGraphicsSvgItem) SetElementId(id string) { + if ptr.Pointer() != nil { + C.QGraphicsSvgItem_SetElementId(C.QtObjectPtr(ptr.Pointer()), C.CString(id)) + } +} + +func (ptr *QGraphicsSvgItem) SetMaximumCacheSize(size core.QSizeITF) { + if ptr.Pointer() != nil { + C.QGraphicsSvgItem_SetMaximumCacheSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(size))) + } +} + +func (ptr *QGraphicsSvgItem) SetSharedRenderer(renderer QSvgRendererITF) { + if ptr.Pointer() != nil { + C.QGraphicsSvgItem_SetSharedRenderer(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSvgRenderer(renderer))) + } +} + +func (ptr *QGraphicsSvgItem) Type() int { + if ptr.Pointer() != nil { + return int(C.QGraphicsSvgItem_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/svg/qgraphicssvgitem.h b/svg/qgraphicssvgitem.h new file mode 100755 index 00000000..cef34ea4 --- /dev/null +++ b/svg/qgraphicssvgitem.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGraphicsSvgItem_NewQGraphicsSvgItem(QtObjectPtr parent); +QtObjectPtr QGraphicsSvgItem_NewQGraphicsSvgItem2(char* fileName, QtObjectPtr parent); +char* QGraphicsSvgItem_ElementId(QtObjectPtr ptr); +void QGraphicsSvgItem_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget); +QtObjectPtr QGraphicsSvgItem_Renderer(QtObjectPtr ptr); +void QGraphicsSvgItem_SetElementId(QtObjectPtr ptr, char* id); +void QGraphicsSvgItem_SetMaximumCacheSize(QtObjectPtr ptr, QtObjectPtr size); +void QGraphicsSvgItem_SetSharedRenderer(QtObjectPtr ptr, QtObjectPtr renderer); +int QGraphicsSvgItem_Type(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/svg/qsvggenerator.cpp b/svg/qsvggenerator.cpp new file mode 100755 index 00000000..6845852e --- /dev/null +++ b/svg/qsvggenerator.cpp @@ -0,0 +1,76 @@ +#include "qsvggenerator.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSvgGenerator: public QSvgGenerator { +public: +}; + +char* QSvgGenerator_Description(QtObjectPtr ptr){ + return static_cast(ptr)->description().toUtf8().data(); +} + +char* QSvgGenerator_FileName(QtObjectPtr ptr){ + return static_cast(ptr)->fileName().toUtf8().data(); +} + +QtObjectPtr QSvgGenerator_OutputDevice(QtObjectPtr ptr){ + return static_cast(ptr)->outputDevice(); +} + +int QSvgGenerator_Resolution(QtObjectPtr ptr){ + return static_cast(ptr)->resolution(); +} + +void QSvgGenerator_SetDescription(QtObjectPtr ptr, char* description){ + static_cast(ptr)->setDescription(QString(description)); +} + +void QSvgGenerator_SetFileName(QtObjectPtr ptr, char* fileName){ + static_cast(ptr)->setFileName(QString(fileName)); +} + +void QSvgGenerator_SetOutputDevice(QtObjectPtr ptr, QtObjectPtr outputDevice){ + static_cast(ptr)->setOutputDevice(static_cast(outputDevice)); +} + +void QSvgGenerator_SetResolution(QtObjectPtr ptr, int dpi){ + static_cast(ptr)->setResolution(dpi); +} + +void QSvgGenerator_SetSize(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->setSize(*static_cast(size)); +} + +void QSvgGenerator_SetTitle(QtObjectPtr ptr, char* title){ + static_cast(ptr)->setTitle(QString(title)); +} + +void QSvgGenerator_SetViewBox(QtObjectPtr ptr, QtObjectPtr viewBox){ + static_cast(ptr)->setViewBox(*static_cast(viewBox)); +} + +void QSvgGenerator_SetViewBox2(QtObjectPtr ptr, QtObjectPtr viewBox){ + static_cast(ptr)->setViewBox(*static_cast(viewBox)); +} + +char* QSvgGenerator_Title(QtObjectPtr ptr){ + return static_cast(ptr)->title().toUtf8().data(); +} + +QtObjectPtr QSvgGenerator_NewQSvgGenerator(){ + return new QSvgGenerator(); +} + +void QSvgGenerator_DestroyQSvgGenerator(QtObjectPtr ptr){ + static_cast(ptr)->~QSvgGenerator(); +} + diff --git a/svg/qsvggenerator.go b/svg/qsvggenerator.go new file mode 100755 index 00000000..ffedcacb --- /dev/null +++ b/svg/qsvggenerator.go @@ -0,0 +1,128 @@ +package svg + +//#include "qsvggenerator.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QSvgGenerator struct { + gui.QPaintDevice +} + +type QSvgGeneratorITF interface { + gui.QPaintDeviceITF + QSvgGeneratorPTR() *QSvgGenerator +} + +func PointerFromQSvgGenerator(ptr QSvgGeneratorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSvgGeneratorPTR().Pointer() + } + return nil +} + +func QSvgGeneratorFromPointer(ptr unsafe.Pointer) *QSvgGenerator { + var n = new(QSvgGenerator) + n.SetPointer(ptr) + return n +} + +func (ptr *QSvgGenerator) QSvgGeneratorPTR() *QSvgGenerator { + return ptr +} + +func (ptr *QSvgGenerator) Description() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSvgGenerator_Description(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSvgGenerator) FileName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSvgGenerator_FileName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSvgGenerator) OutputDevice() *core.QIODevice { + if ptr.Pointer() != nil { + return core.QIODeviceFromPointer(unsafe.Pointer(C.QSvgGenerator_OutputDevice(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSvgGenerator) Resolution() int { + if ptr.Pointer() != nil { + return int(C.QSvgGenerator_Resolution(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSvgGenerator) SetDescription(description string) { + if ptr.Pointer() != nil { + C.QSvgGenerator_SetDescription(C.QtObjectPtr(ptr.Pointer()), C.CString(description)) + } +} + +func (ptr *QSvgGenerator) SetFileName(fileName string) { + if ptr.Pointer() != nil { + C.QSvgGenerator_SetFileName(C.QtObjectPtr(ptr.Pointer()), C.CString(fileName)) + } +} + +func (ptr *QSvgGenerator) SetOutputDevice(outputDevice core.QIODeviceITF) { + if ptr.Pointer() != nil { + C.QSvgGenerator_SetOutputDevice(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQIODevice(outputDevice))) + } +} + +func (ptr *QSvgGenerator) SetResolution(dpi int) { + if ptr.Pointer() != nil { + C.QSvgGenerator_SetResolution(C.QtObjectPtr(ptr.Pointer()), C.int(dpi)) + } +} + +func (ptr *QSvgGenerator) SetSize(size core.QSizeITF) { + if ptr.Pointer() != nil { + C.QSvgGenerator_SetSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(size))) + } +} + +func (ptr *QSvgGenerator) SetTitle(title string) { + if ptr.Pointer() != nil { + C.QSvgGenerator_SetTitle(C.QtObjectPtr(ptr.Pointer()), C.CString(title)) + } +} + +func (ptr *QSvgGenerator) SetViewBox(viewBox core.QRectITF) { + if ptr.Pointer() != nil { + C.QSvgGenerator_SetViewBox(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(viewBox))) + } +} + +func (ptr *QSvgGenerator) SetViewBox2(viewBox core.QRectFITF) { + if ptr.Pointer() != nil { + C.QSvgGenerator_SetViewBox2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(viewBox))) + } +} + +func (ptr *QSvgGenerator) Title() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSvgGenerator_Title(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func NewQSvgGenerator() *QSvgGenerator { + return QSvgGeneratorFromPointer(unsafe.Pointer(C.QSvgGenerator_NewQSvgGenerator())) +} + +func (ptr *QSvgGenerator) DestroyQSvgGenerator() { + if ptr.Pointer() != nil { + C.QSvgGenerator_DestroyQSvgGenerator(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/svg/qsvggenerator.h b/svg/qsvggenerator.h new file mode 100755 index 00000000..6fe04400 --- /dev/null +++ b/svg/qsvggenerator.h @@ -0,0 +1,24 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QSvgGenerator_Description(QtObjectPtr ptr); +char* QSvgGenerator_FileName(QtObjectPtr ptr); +QtObjectPtr QSvgGenerator_OutputDevice(QtObjectPtr ptr); +int QSvgGenerator_Resolution(QtObjectPtr ptr); +void QSvgGenerator_SetDescription(QtObjectPtr ptr, char* description); +void QSvgGenerator_SetFileName(QtObjectPtr ptr, char* fileName); +void QSvgGenerator_SetOutputDevice(QtObjectPtr ptr, QtObjectPtr outputDevice); +void QSvgGenerator_SetResolution(QtObjectPtr ptr, int dpi); +void QSvgGenerator_SetSize(QtObjectPtr ptr, QtObjectPtr size); +void QSvgGenerator_SetTitle(QtObjectPtr ptr, char* title); +void QSvgGenerator_SetViewBox(QtObjectPtr ptr, QtObjectPtr viewBox); +void QSvgGenerator_SetViewBox2(QtObjectPtr ptr, QtObjectPtr viewBox); +char* QSvgGenerator_Title(QtObjectPtr ptr); +QtObjectPtr QSvgGenerator_NewQSvgGenerator(); +void QSvgGenerator_DestroyQSvgGenerator(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/svg/qsvgrenderer.cpp b/svg/qsvgrenderer.cpp new file mode 100755 index 00000000..de182ce7 --- /dev/null +++ b/svg/qsvgrenderer.cpp @@ -0,0 +1,100 @@ +#include "qsvgrenderer.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSvgRenderer: public QSvgRenderer { +public: +void Signal_RepaintNeeded(){callbackQSvgRendererRepaintNeeded(this->objectName().toUtf8().data());}; +}; + +int QSvgRenderer_FramesPerSecond(QtObjectPtr ptr){ + return static_cast(ptr)->framesPerSecond(); +} + +void QSvgRenderer_SetFramesPerSecond(QtObjectPtr ptr, int num){ + static_cast(ptr)->setFramesPerSecond(num); +} + +void QSvgRenderer_SetViewBox(QtObjectPtr ptr, QtObjectPtr viewbox){ + static_cast(ptr)->setViewBox(*static_cast(viewbox)); +} + +void QSvgRenderer_SetViewBox2(QtObjectPtr ptr, QtObjectPtr viewbox){ + static_cast(ptr)->setViewBox(*static_cast(viewbox)); +} + +QtObjectPtr QSvgRenderer_NewQSvgRenderer(QtObjectPtr parent){ + return new QSvgRenderer(static_cast(parent)); +} + +QtObjectPtr QSvgRenderer_NewQSvgRenderer4(QtObjectPtr contents, QtObjectPtr parent){ + return new QSvgRenderer(static_cast(contents), static_cast(parent)); +} + +QtObjectPtr QSvgRenderer_NewQSvgRenderer3(QtObjectPtr contents, QtObjectPtr parent){ + return new QSvgRenderer(*static_cast(contents), static_cast(parent)); +} + +QtObjectPtr QSvgRenderer_NewQSvgRenderer2(char* filename, QtObjectPtr parent){ + return new QSvgRenderer(QString(filename), static_cast(parent)); +} + +int QSvgRenderer_Animated(QtObjectPtr ptr){ + return static_cast(ptr)->animated(); +} + +int QSvgRenderer_ElementExists(QtObjectPtr ptr, char* id){ + return static_cast(ptr)->elementExists(QString(id)); +} + +int QSvgRenderer_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QSvgRenderer_Load3(QtObjectPtr ptr, QtObjectPtr contents){ + return QMetaObject::invokeMethod(static_cast(ptr), "load", Q_ARG(QXmlStreamReader*, static_cast(contents))); +} + +int QSvgRenderer_Load2(QtObjectPtr ptr, QtObjectPtr contents){ + return QMetaObject::invokeMethod(static_cast(ptr), "load", Q_ARG(QByteArray, *static_cast(contents))); +} + +int QSvgRenderer_Load(QtObjectPtr ptr, char* filename){ + return QMetaObject::invokeMethod(static_cast(ptr), "load", Q_ARG(QString, QString(filename))); +} + +void QSvgRenderer_Render(QtObjectPtr ptr, QtObjectPtr painter){ + QMetaObject::invokeMethod(static_cast(ptr), "render", Q_ARG(QPainter*, static_cast(painter))); +} + +void QSvgRenderer_Render2(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr bounds){ + QMetaObject::invokeMethod(static_cast(ptr), "render", Q_ARG(QPainter*, static_cast(painter)), Q_ARG(QRectF, *static_cast(bounds))); +} + +void QSvgRenderer_Render3(QtObjectPtr ptr, QtObjectPtr painter, char* elementId, QtObjectPtr bounds){ + QMetaObject::invokeMethod(static_cast(ptr), "render", Q_ARG(QPainter*, static_cast(painter)), Q_ARG(QString, QString(elementId)), Q_ARG(QRectF, *static_cast(bounds))); +} + +void QSvgRenderer_ConnectRepaintNeeded(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSvgRenderer::repaintNeeded), static_cast(ptr), static_cast(&MyQSvgRenderer::Signal_RepaintNeeded));; +} + +void QSvgRenderer_DisconnectRepaintNeeded(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSvgRenderer::repaintNeeded), static_cast(ptr), static_cast(&MyQSvgRenderer::Signal_RepaintNeeded));; +} + +void QSvgRenderer_DestroyQSvgRenderer(QtObjectPtr ptr){ + static_cast(ptr)->~QSvgRenderer(); +} + diff --git a/svg/qsvgrenderer.go b/svg/qsvgrenderer.go new file mode 100755 index 00000000..0a10296b --- /dev/null +++ b/svg/qsvgrenderer.go @@ -0,0 +1,166 @@ +package svg + +//#include "qsvgrenderer.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QSvgRenderer struct { + core.QObject +} + +type QSvgRendererITF interface { + core.QObjectITF + QSvgRendererPTR() *QSvgRenderer +} + +func PointerFromQSvgRenderer(ptr QSvgRendererITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSvgRendererPTR().Pointer() + } + return nil +} + +func QSvgRendererFromPointer(ptr unsafe.Pointer) *QSvgRenderer { + var n = new(QSvgRenderer) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSvgRenderer_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSvgRenderer) QSvgRendererPTR() *QSvgRenderer { + return ptr +} + +func (ptr *QSvgRenderer) FramesPerSecond() int { + if ptr.Pointer() != nil { + return int(C.QSvgRenderer_FramesPerSecond(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSvgRenderer) SetFramesPerSecond(num int) { + if ptr.Pointer() != nil { + C.QSvgRenderer_SetFramesPerSecond(C.QtObjectPtr(ptr.Pointer()), C.int(num)) + } +} + +func (ptr *QSvgRenderer) SetViewBox(viewbox core.QRectITF) { + if ptr.Pointer() != nil { + C.QSvgRenderer_SetViewBox(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(viewbox))) + } +} + +func (ptr *QSvgRenderer) SetViewBox2(viewbox core.QRectFITF) { + if ptr.Pointer() != nil { + C.QSvgRenderer_SetViewBox2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(viewbox))) + } +} + +func NewQSvgRenderer(parent core.QObjectITF) *QSvgRenderer { + return QSvgRendererFromPointer(unsafe.Pointer(C.QSvgRenderer_NewQSvgRenderer(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQSvgRenderer4(contents core.QXmlStreamReaderITF, parent core.QObjectITF) *QSvgRenderer { + return QSvgRendererFromPointer(unsafe.Pointer(C.QSvgRenderer_NewQSvgRenderer4(C.QtObjectPtr(core.PointerFromQXmlStreamReader(contents)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQSvgRenderer3(contents core.QByteArrayITF, parent core.QObjectITF) *QSvgRenderer { + return QSvgRendererFromPointer(unsafe.Pointer(C.QSvgRenderer_NewQSvgRenderer3(C.QtObjectPtr(core.PointerFromQByteArray(contents)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQSvgRenderer2(filename string, parent core.QObjectITF) *QSvgRenderer { + return QSvgRendererFromPointer(unsafe.Pointer(C.QSvgRenderer_NewQSvgRenderer2(C.CString(filename), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QSvgRenderer) Animated() bool { + if ptr.Pointer() != nil { + return C.QSvgRenderer_Animated(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSvgRenderer) ElementExists(id string) bool { + if ptr.Pointer() != nil { + return C.QSvgRenderer_ElementExists(C.QtObjectPtr(ptr.Pointer()), C.CString(id)) != 0 + } + return false +} + +func (ptr *QSvgRenderer) IsValid() bool { + if ptr.Pointer() != nil { + return C.QSvgRenderer_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSvgRenderer) Load3(contents core.QXmlStreamReaderITF) bool { + if ptr.Pointer() != nil { + return C.QSvgRenderer_Load3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQXmlStreamReader(contents))) != 0 + } + return false +} + +func (ptr *QSvgRenderer) Load2(contents core.QByteArrayITF) bool { + if ptr.Pointer() != nil { + return C.QSvgRenderer_Load2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(contents))) != 0 + } + return false +} + +func (ptr *QSvgRenderer) Load(filename string) bool { + if ptr.Pointer() != nil { + return C.QSvgRenderer_Load(C.QtObjectPtr(ptr.Pointer()), C.CString(filename)) != 0 + } + return false +} + +func (ptr *QSvgRenderer) Render(painter gui.QPainterITF) { + if ptr.Pointer() != nil { + C.QSvgRenderer_Render(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter))) + } +} + +func (ptr *QSvgRenderer) Render2(painter gui.QPainterITF, bounds core.QRectFITF) { + if ptr.Pointer() != nil { + C.QSvgRenderer_Render2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(core.PointerFromQRectF(bounds))) + } +} + +func (ptr *QSvgRenderer) Render3(painter gui.QPainterITF, elementId string, bounds core.QRectFITF) { + if ptr.Pointer() != nil { + C.QSvgRenderer_Render3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.CString(elementId), C.QtObjectPtr(core.PointerFromQRectF(bounds))) + } +} + +func (ptr *QSvgRenderer) ConnectRepaintNeeded(f func()) { + if ptr.Pointer() != nil { + C.QSvgRenderer_ConnectRepaintNeeded(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "repaintNeeded", f) + } +} + +func (ptr *QSvgRenderer) DisconnectRepaintNeeded() { + if ptr.Pointer() != nil { + C.QSvgRenderer_DisconnectRepaintNeeded(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "repaintNeeded") + } +} + +//export callbackQSvgRendererRepaintNeeded +func callbackQSvgRendererRepaintNeeded(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "repaintNeeded").(func())() +} + +func (ptr *QSvgRenderer) DestroyQSvgRenderer() { + if ptr.Pointer() != nil { + C.QSvgRenderer_DestroyQSvgRenderer(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/svg/qsvgrenderer.h b/svg/qsvgrenderer.h new file mode 100755 index 00000000..5d892f71 --- /dev/null +++ b/svg/qsvgrenderer.h @@ -0,0 +1,29 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QSvgRenderer_FramesPerSecond(QtObjectPtr ptr); +void QSvgRenderer_SetFramesPerSecond(QtObjectPtr ptr, int num); +void QSvgRenderer_SetViewBox(QtObjectPtr ptr, QtObjectPtr viewbox); +void QSvgRenderer_SetViewBox2(QtObjectPtr ptr, QtObjectPtr viewbox); +QtObjectPtr QSvgRenderer_NewQSvgRenderer(QtObjectPtr parent); +QtObjectPtr QSvgRenderer_NewQSvgRenderer4(QtObjectPtr contents, QtObjectPtr parent); +QtObjectPtr QSvgRenderer_NewQSvgRenderer3(QtObjectPtr contents, QtObjectPtr parent); +QtObjectPtr QSvgRenderer_NewQSvgRenderer2(char* filename, QtObjectPtr parent); +int QSvgRenderer_Animated(QtObjectPtr ptr); +int QSvgRenderer_ElementExists(QtObjectPtr ptr, char* id); +int QSvgRenderer_IsValid(QtObjectPtr ptr); +int QSvgRenderer_Load3(QtObjectPtr ptr, QtObjectPtr contents); +int QSvgRenderer_Load2(QtObjectPtr ptr, QtObjectPtr contents); +int QSvgRenderer_Load(QtObjectPtr ptr, char* filename); +void QSvgRenderer_Render(QtObjectPtr ptr, QtObjectPtr painter); +void QSvgRenderer_Render2(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr bounds); +void QSvgRenderer_Render3(QtObjectPtr ptr, QtObjectPtr painter, char* elementId, QtObjectPtr bounds); +void QSvgRenderer_ConnectRepaintNeeded(QtObjectPtr ptr); +void QSvgRenderer_DisconnectRepaintNeeded(QtObjectPtr ptr); +void QSvgRenderer_DestroyQSvgRenderer(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/svg/qsvgwidget.cpp b/svg/qsvgwidget.cpp new file mode 100755 index 00000000..a13451b5 --- /dev/null +++ b/svg/qsvgwidget.cpp @@ -0,0 +1,39 @@ +#include "qsvgwidget.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSvgWidget: public QSvgWidget { +public: +}; + +QtObjectPtr QSvgWidget_NewQSvgWidget(QtObjectPtr parent){ + return new QSvgWidget(static_cast(parent)); +} + +QtObjectPtr QSvgWidget_NewQSvgWidget2(char* file, QtObjectPtr parent){ + return new QSvgWidget(QString(file), static_cast(parent)); +} + +void QSvgWidget_Load2(QtObjectPtr ptr, QtObjectPtr contents){ + QMetaObject::invokeMethod(static_cast(ptr), "load", Q_ARG(QByteArray, *static_cast(contents))); +} + +void QSvgWidget_Load(QtObjectPtr ptr, char* file){ + QMetaObject::invokeMethod(static_cast(ptr), "load", Q_ARG(QString, QString(file))); +} + +QtObjectPtr QSvgWidget_Renderer(QtObjectPtr ptr){ + return static_cast(ptr)->renderer(); +} + +void QSvgWidget_DestroyQSvgWidget(QtObjectPtr ptr){ + static_cast(ptr)->~QSvgWidget(); +} + diff --git a/svg/qsvgwidget.go b/svg/qsvgwidget.go new file mode 100755 index 00000000..cd511896 --- /dev/null +++ b/svg/qsvgwidget.go @@ -0,0 +1,73 @@ +package svg + +//#include "qsvgwidget.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/widgets" + "unsafe" +) + +type QSvgWidget struct { + widgets.QWidget +} + +type QSvgWidgetITF interface { + widgets.QWidgetITF + QSvgWidgetPTR() *QSvgWidget +} + +func PointerFromQSvgWidget(ptr QSvgWidgetITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSvgWidgetPTR().Pointer() + } + return nil +} + +func QSvgWidgetFromPointer(ptr unsafe.Pointer) *QSvgWidget { + var n = new(QSvgWidget) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSvgWidget_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSvgWidget) QSvgWidgetPTR() *QSvgWidget { + return ptr +} + +func NewQSvgWidget(parent widgets.QWidgetITF) *QSvgWidget { + return QSvgWidgetFromPointer(unsafe.Pointer(C.QSvgWidget_NewQSvgWidget(C.QtObjectPtr(widgets.PointerFromQWidget(parent))))) +} + +func NewQSvgWidget2(file string, parent widgets.QWidgetITF) *QSvgWidget { + return QSvgWidgetFromPointer(unsafe.Pointer(C.QSvgWidget_NewQSvgWidget2(C.CString(file), C.QtObjectPtr(widgets.PointerFromQWidget(parent))))) +} + +func (ptr *QSvgWidget) Load2(contents core.QByteArrayITF) { + if ptr.Pointer() != nil { + C.QSvgWidget_Load2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(contents))) + } +} + +func (ptr *QSvgWidget) Load(file string) { + if ptr.Pointer() != nil { + C.QSvgWidget_Load(C.QtObjectPtr(ptr.Pointer()), C.CString(file)) + } +} + +func (ptr *QSvgWidget) Renderer() *QSvgRenderer { + if ptr.Pointer() != nil { + return QSvgRendererFromPointer(unsafe.Pointer(C.QSvgWidget_Renderer(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSvgWidget) DestroyQSvgWidget() { + if ptr.Pointer() != nil { + C.QSvgWidget_DestroyQSvgWidget(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/svg/qsvgwidget.h b/svg/qsvgwidget.h new file mode 100755 index 00000000..f3db80b4 --- /dev/null +++ b/svg/qsvgwidget.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSvgWidget_NewQSvgWidget(QtObjectPtr parent); +QtObjectPtr QSvgWidget_NewQSvgWidget2(char* file, QtObjectPtr parent); +void QSvgWidget_Load2(QtObjectPtr ptr, QtObjectPtr contents); +void QSvgWidget_Load(QtObjectPtr ptr, char* file); +QtObjectPtr QSvgWidget_Renderer(QtObjectPtr ptr); +void QSvgWidget_DestroyQSvgWidget(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/webchannel/cgo_darwin_amd64.go b/webchannel/cgo_darwin_amd64.go new file mode 100755 index 00000000..213a44d4 --- /dev/null +++ b/webchannel/cgo_darwin_amd64.go @@ -0,0 +1,13 @@ +package webchannel + +/* +#cgo CPPFLAGS: -pipe -O2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 -Wall -W +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QML_LIB -DQT_WEBCHANNEL_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/mkspecs/macx-clang -F/usr/local/Qt5.5.1/5.5/clang_64/lib +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtCore.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtNetwork.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtQml.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtWebChannel.framework/Headers +#cgo CPPFLAGS: -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.framework/Headers + +#cgo LDFLAGS: -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 +#cgo LDFLAGS: -F/usr/local/Qt5.5.1/5.5/clang_64/lib -framework QtCore -framework QtNetwork -framework QtQml -framework QtWebChannel -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL +*/ +import "C" diff --git a/webchannel/cgo_linux_386.go b/webchannel/cgo_linux_386.go new file mode 100755 index 00000000..fc768449 --- /dev/null +++ b/webchannel/cgo_linux_386.go @@ -0,0 +1,12 @@ +package webchannel + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QML_LIB -DQT_WEBCHANNEL_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include -I/usr/local/Qt5.5.1/5.5/gcc/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc/include/QtNetwork -I/usr/local/Qt5.5.1/5.5/gcc/include/QtQml -I/usr/local/Qt5.5.1/5.5/gcc/include/QtWebChannel + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc/lib -L/usr/lib -lQt5Core -lQt5Network -lQt5Qml -lQt5WebChannel -lpthread +*/ +import "C" diff --git a/webchannel/cgo_linux_amd64.go b/webchannel/cgo_linux_amd64.go new file mode 100755 index 00000000..9cf48c3f --- /dev/null +++ b/webchannel/cgo_linux_amd64.go @@ -0,0 +1,12 @@ +package webchannel + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QML_LIB -DQT_WEBCHANNEL_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include -I/usr/local/Qt5.5.1/5.5/gcc_64/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtNetwork -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtQml -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtWebChannel + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc_64/lib -L/usr/lib64 -lQt5Core -lQt5Network -lQt5Qml -lQt5WebChannel -lpthread +*/ +import "C" diff --git a/webchannel/cgo_windows_386.go b/webchannel/cgo_windows_386.go new file mode 100755 index 00000000..bebe5743 --- /dev/null +++ b/webchannel/cgo_windows_386.go @@ -0,0 +1,12 @@ +package webchannel + +/* +#cgo CPPFLAGS: -pipe -fno-keep-inline-dllexport -O2 -Wall -Wextra -fexceptions -mthreads +#cgo CPPFLAGS: -DUNICODE -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QML_LIB -DQT_WEBCHANNEL_LIB +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include -IC:/Qt/Qt5.5.1/5.5/mingw492_32/mkspecs/win32-g++ +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtCore -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtNetwork -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtQml -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtWebChannel + +#cgo LDFLAGS: -Wl,-s -Wl,-subsystem,windows -mthreads +#cgo LDFLAGS: -LC:/Qt/Qt5.5.1/5.5/mingw492_32/bin -lQt5Core -lQt5Network -lQt5Qml -lQt5WebChannel +*/ +import "C" diff --git a/webchannel/qwebchannel.cpp b/webchannel/qwebchannel.cpp new file mode 100755 index 00000000..10c718cf --- /dev/null +++ b/webchannel/qwebchannel.cpp @@ -0,0 +1,56 @@ +#include "qwebchannel.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQWebChannel: public QWebChannel { +public: +void Signal_BlockUpdatesChanged(bool block){callbackQWebChannelBlockUpdatesChanged(this->objectName().toUtf8().data(), block);}; +}; + +int QWebChannel_BlockUpdates(QtObjectPtr ptr){ + return static_cast(ptr)->blockUpdates(); +} + +void QWebChannel_SetBlockUpdates(QtObjectPtr ptr, int block){ + static_cast(ptr)->setBlockUpdates(block != 0); +} + +QtObjectPtr QWebChannel_NewQWebChannel(QtObjectPtr parent){ + return new QWebChannel(static_cast(parent)); +} + +void QWebChannel_ConnectBlockUpdatesChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWebChannel::blockUpdatesChanged), static_cast(ptr), static_cast(&MyQWebChannel::Signal_BlockUpdatesChanged));; +} + +void QWebChannel_DisconnectBlockUpdatesChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWebChannel::blockUpdatesChanged), static_cast(ptr), static_cast(&MyQWebChannel::Signal_BlockUpdatesChanged));; +} + +void QWebChannel_ConnectTo(QtObjectPtr ptr, QtObjectPtr transport){ + QMetaObject::invokeMethod(static_cast(ptr), "connectTo", Q_ARG(QWebChannelAbstractTransport*, static_cast(transport))); +} + +void QWebChannel_DeregisterObject(QtObjectPtr ptr, QtObjectPtr object){ + static_cast(ptr)->deregisterObject(static_cast(object)); +} + +void QWebChannel_DisconnectFrom(QtObjectPtr ptr, QtObjectPtr transport){ + QMetaObject::invokeMethod(static_cast(ptr), "disconnectFrom", Q_ARG(QWebChannelAbstractTransport*, static_cast(transport))); +} + +void QWebChannel_RegisterObject(QtObjectPtr ptr, char* id, QtObjectPtr object){ + static_cast(ptr)->registerObject(QString(id), static_cast(object)); +} + +void QWebChannel_DestroyQWebChannel(QtObjectPtr ptr){ + static_cast(ptr)->~QWebChannel(); +} + diff --git a/webchannel/qwebchannel.go b/webchannel/qwebchannel.go new file mode 100755 index 00000000..403805b6 --- /dev/null +++ b/webchannel/qwebchannel.go @@ -0,0 +1,105 @@ +package webchannel + +//#include "qwebchannel.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QWebChannel struct { + core.QObject +} + +type QWebChannelITF interface { + core.QObjectITF + QWebChannelPTR() *QWebChannel +} + +func PointerFromQWebChannel(ptr QWebChannelITF) unsafe.Pointer { + if ptr != nil { + return ptr.QWebChannelPTR().Pointer() + } + return nil +} + +func QWebChannelFromPointer(ptr unsafe.Pointer) *QWebChannel { + var n = new(QWebChannel) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QWebChannel_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QWebChannel) QWebChannelPTR() *QWebChannel { + return ptr +} + +func (ptr *QWebChannel) BlockUpdates() bool { + if ptr.Pointer() != nil { + return C.QWebChannel_BlockUpdates(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWebChannel) SetBlockUpdates(block bool) { + if ptr.Pointer() != nil { + C.QWebChannel_SetBlockUpdates(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(block))) + } +} + +func NewQWebChannel(parent core.QObjectITF) *QWebChannel { + return QWebChannelFromPointer(unsafe.Pointer(C.QWebChannel_NewQWebChannel(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QWebChannel) ConnectBlockUpdatesChanged(f func(block bool)) { + if ptr.Pointer() != nil { + C.QWebChannel_ConnectBlockUpdatesChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "blockUpdatesChanged", f) + } +} + +func (ptr *QWebChannel) DisconnectBlockUpdatesChanged() { + if ptr.Pointer() != nil { + C.QWebChannel_DisconnectBlockUpdatesChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "blockUpdatesChanged") + } +} + +//export callbackQWebChannelBlockUpdatesChanged +func callbackQWebChannelBlockUpdatesChanged(ptrName *C.char, block C.int) { + qt.GetSignal(C.GoString(ptrName), "blockUpdatesChanged").(func(bool))(int(block) != 0) +} + +func (ptr *QWebChannel) ConnectTo(transport QWebChannelAbstractTransportITF) { + if ptr.Pointer() != nil { + C.QWebChannel_ConnectTo(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWebChannelAbstractTransport(transport))) + } +} + +func (ptr *QWebChannel) DeregisterObject(object core.QObjectITF) { + if ptr.Pointer() != nil { + C.QWebChannel_DeregisterObject(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(object))) + } +} + +func (ptr *QWebChannel) DisconnectFrom(transport QWebChannelAbstractTransportITF) { + if ptr.Pointer() != nil { + C.QWebChannel_DisconnectFrom(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWebChannelAbstractTransport(transport))) + } +} + +func (ptr *QWebChannel) RegisterObject(id string, object core.QObjectITF) { + if ptr.Pointer() != nil { + C.QWebChannel_RegisterObject(C.QtObjectPtr(ptr.Pointer()), C.CString(id), C.QtObjectPtr(core.PointerFromQObject(object))) + } +} + +func (ptr *QWebChannel) DestroyQWebChannel() { + if ptr.Pointer() != nil { + C.QWebChannel_DestroyQWebChannel(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/webchannel/qwebchannel.h b/webchannel/qwebchannel.h new file mode 100755 index 00000000..df8b9fce --- /dev/null +++ b/webchannel/qwebchannel.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QWebChannel_BlockUpdates(QtObjectPtr ptr); +void QWebChannel_SetBlockUpdates(QtObjectPtr ptr, int block); +QtObjectPtr QWebChannel_NewQWebChannel(QtObjectPtr parent); +void QWebChannel_ConnectBlockUpdatesChanged(QtObjectPtr ptr); +void QWebChannel_DisconnectBlockUpdatesChanged(QtObjectPtr ptr); +void QWebChannel_ConnectTo(QtObjectPtr ptr, QtObjectPtr transport); +void QWebChannel_DeregisterObject(QtObjectPtr ptr, QtObjectPtr object); +void QWebChannel_DisconnectFrom(QtObjectPtr ptr, QtObjectPtr transport); +void QWebChannel_RegisterObject(QtObjectPtr ptr, char* id, QtObjectPtr object); +void QWebChannel_DestroyQWebChannel(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/webchannel/qwebchannelabstracttransport.cpp b/webchannel/qwebchannelabstracttransport.cpp new file mode 100755 index 00000000..bd8eb3dd --- /dev/null +++ b/webchannel/qwebchannelabstracttransport.cpp @@ -0,0 +1,23 @@ +#include "qwebchannelabstracttransport.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQWebChannelAbstractTransport: public QWebChannelAbstractTransport { +public: +}; + +void QWebChannelAbstractTransport_SendMessage(QtObjectPtr ptr, QtObjectPtr message){ + QMetaObject::invokeMethod(static_cast(ptr), "sendMessage", Q_ARG(QJsonObject, *static_cast(message))); +} + +void QWebChannelAbstractTransport_DestroyQWebChannelAbstractTransport(QtObjectPtr ptr){ + static_cast(ptr)->~QWebChannelAbstractTransport(); +} + diff --git a/webchannel/qwebchannelabstracttransport.go b/webchannel/qwebchannelabstracttransport.go new file mode 100755 index 00000000..68c83f87 --- /dev/null +++ b/webchannel/qwebchannelabstracttransport.go @@ -0,0 +1,51 @@ +package webchannel + +//#include "qwebchannelabstracttransport.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QWebChannelAbstractTransport struct { + core.QObject +} + +type QWebChannelAbstractTransportITF interface { + core.QObjectITF + QWebChannelAbstractTransportPTR() *QWebChannelAbstractTransport +} + +func PointerFromQWebChannelAbstractTransport(ptr QWebChannelAbstractTransportITF) unsafe.Pointer { + if ptr != nil { + return ptr.QWebChannelAbstractTransportPTR().Pointer() + } + return nil +} + +func QWebChannelAbstractTransportFromPointer(ptr unsafe.Pointer) *QWebChannelAbstractTransport { + var n = new(QWebChannelAbstractTransport) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QWebChannelAbstractTransport_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QWebChannelAbstractTransport) QWebChannelAbstractTransportPTR() *QWebChannelAbstractTransport { + return ptr +} + +func (ptr *QWebChannelAbstractTransport) SendMessage(message core.QJsonObjectITF) { + if ptr.Pointer() != nil { + C.QWebChannelAbstractTransport_SendMessage(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQJsonObject(message))) + } +} + +func (ptr *QWebChannelAbstractTransport) DestroyQWebChannelAbstractTransport() { + if ptr.Pointer() != nil { + C.QWebChannelAbstractTransport_DestroyQWebChannelAbstractTransport(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/webchannel/qwebchannelabstracttransport.h b/webchannel/qwebchannelabstracttransport.h new file mode 100755 index 00000000..0852a097 --- /dev/null +++ b/webchannel/qwebchannelabstracttransport.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QWebChannelAbstractTransport_SendMessage(QtObjectPtr ptr, QtObjectPtr message); +void QWebChannelAbstractTransport_DestroyQWebChannelAbstractTransport(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/websockets/cgo_darwin_amd64.go b/websockets/cgo_darwin_amd64.go new file mode 100755 index 00000000..1be74503 --- /dev/null +++ b/websockets/cgo_darwin_amd64.go @@ -0,0 +1,13 @@ +package websockets + +/* +#cgo CPPFLAGS: -pipe -O2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 -Wall -W +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_WEBSOCKETS_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/mkspecs/macx-clang -F/usr/local/Qt5.5.1/5.5/clang_64/lib +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtCore.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtNetwork.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtWebSockets.framework/Headers +#cgo CPPFLAGS: -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.framework/Headers + +#cgo LDFLAGS: -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 +#cgo LDFLAGS: -F/usr/local/Qt5.5.1/5.5/clang_64/lib -framework QtCore -framework QtNetwork -framework QtWebSockets -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL +*/ +import "C" diff --git a/websockets/cgo_linux_386.go b/websockets/cgo_linux_386.go new file mode 100755 index 00000000..2fec8958 --- /dev/null +++ b/websockets/cgo_linux_386.go @@ -0,0 +1,12 @@ +package websockets + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_WEBSOCKETS_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include -I/usr/local/Qt5.5.1/5.5/gcc/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc/include/QtNetwork -I/usr/local/Qt5.5.1/5.5/gcc/include/QtWebSockets + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc/lib -L/usr/lib -lQt5Core -lQt5Network -lQt5WebSockets -lpthread +*/ +import "C" diff --git a/websockets/cgo_linux_amd64.go b/websockets/cgo_linux_amd64.go new file mode 100755 index 00000000..134c87ea --- /dev/null +++ b/websockets/cgo_linux_amd64.go @@ -0,0 +1,12 @@ +package websockets + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_WEBSOCKETS_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include -I/usr/local/Qt5.5.1/5.5/gcc_64/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtNetwork -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtWebSockets + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc_64/lib -L/usr/lib64 -lQt5Core -lQt5Network -lQt5WebSockets -lpthread +*/ +import "C" diff --git a/websockets/cgo_windows_386.go b/websockets/cgo_windows_386.go new file mode 100755 index 00000000..f90a5f0b --- /dev/null +++ b/websockets/cgo_windows_386.go @@ -0,0 +1,12 @@ +package websockets + +/* +#cgo CPPFLAGS: -pipe -fno-keep-inline-dllexport -O2 -Wall -Wextra -fexceptions -mthreads +#cgo CPPFLAGS: -DUNICODE -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_WEBSOCKETS_LIB +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include -IC:/Qt/Qt5.5.1/5.5/mingw492_32/mkspecs/win32-g++ +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtCore -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtNetwork -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtWebSockets + +#cgo LDFLAGS: -Wl,-s -Wl,-subsystem,windows -mthreads +#cgo LDFLAGS: -LC:/Qt/Qt5.5.1/5.5/mingw492_32/bin -lQt5Core -lQt5Network -lQt5WebSockets +*/ +import "C" diff --git a/websockets/qmaskgenerator.cpp b/websockets/qmaskgenerator.cpp new file mode 100755 index 00000000..6d3ff9e6 --- /dev/null +++ b/websockets/qmaskgenerator.cpp @@ -0,0 +1,20 @@ +#include "qmaskgenerator.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMaskGenerator: public QMaskGenerator { +public: +}; + +int QMaskGenerator_Seed(QtObjectPtr ptr){ + return static_cast(ptr)->seed(); +} + +void QMaskGenerator_DestroyQMaskGenerator(QtObjectPtr ptr){ + static_cast(ptr)->~QMaskGenerator(); +} + diff --git a/websockets/qmaskgenerator.go b/websockets/qmaskgenerator.go new file mode 100755 index 00000000..531c9261 --- /dev/null +++ b/websockets/qmaskgenerator.go @@ -0,0 +1,52 @@ +package websockets + +//#include "qmaskgenerator.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QMaskGenerator struct { + core.QObject +} + +type QMaskGeneratorITF interface { + core.QObjectITF + QMaskGeneratorPTR() *QMaskGenerator +} + +func PointerFromQMaskGenerator(ptr QMaskGeneratorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMaskGeneratorPTR().Pointer() + } + return nil +} + +func QMaskGeneratorFromPointer(ptr unsafe.Pointer) *QMaskGenerator { + var n = new(QMaskGenerator) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMaskGenerator_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMaskGenerator) QMaskGeneratorPTR() *QMaskGenerator { + return ptr +} + +func (ptr *QMaskGenerator) Seed() bool { + if ptr.Pointer() != nil { + return C.QMaskGenerator_Seed(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMaskGenerator) DestroyQMaskGenerator() { + if ptr.Pointer() != nil { + C.QMaskGenerator_DestroyQMaskGenerator(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/websockets/qmaskgenerator.h b/websockets/qmaskgenerator.h new file mode 100755 index 00000000..7363bc2a --- /dev/null +++ b/websockets/qmaskgenerator.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QMaskGenerator_Seed(QtObjectPtr ptr); +void QMaskGenerator_DestroyQMaskGenerator(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/websockets/qwebsocket.cpp b/websockets/qwebsocket.cpp new file mode 100755 index 00000000..29f6f9bc --- /dev/null +++ b/websockets/qwebsocket.cpp @@ -0,0 +1,166 @@ +#include "qwebsocket.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQWebSocket: public QWebSocket { +public: +void Signal_AboutToClose(){callbackQWebSocketAboutToClose(this->objectName().toUtf8().data());}; +void Signal_Connected(){callbackQWebSocketConnected(this->objectName().toUtf8().data());}; +void Signal_Disconnected(){callbackQWebSocketDisconnected(this->objectName().toUtf8().data());}; +void Signal_ReadChannelFinished(){callbackQWebSocketReadChannelFinished(this->objectName().toUtf8().data());}; +void Signal_StateChanged(QAbstractSocket::SocketState state){callbackQWebSocketStateChanged(this->objectName().toUtf8().data(), state);}; +void Signal_TextFrameReceived(const QString & frame, bool isLastFrame){callbackQWebSocketTextFrameReceived(this->objectName().toUtf8().data(), frame.toUtf8().data(), isLastFrame);}; +void Signal_TextMessageReceived(const QString & message){callbackQWebSocketTextMessageReceived(this->objectName().toUtf8().data(), message.toUtf8().data());}; +}; + +void QWebSocket_Abort(QtObjectPtr ptr){ + static_cast(ptr)->abort(); +} + +void QWebSocket_ConnectAboutToClose(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWebSocket::aboutToClose), static_cast(ptr), static_cast(&MyQWebSocket::Signal_AboutToClose));; +} + +void QWebSocket_DisconnectAboutToClose(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWebSocket::aboutToClose), static_cast(ptr), static_cast(&MyQWebSocket::Signal_AboutToClose));; +} + +char* QWebSocket_CloseReason(QtObjectPtr ptr){ + return static_cast(ptr)->closeReason().toUtf8().data(); +} + +void QWebSocket_ConnectConnected(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWebSocket::connected), static_cast(ptr), static_cast(&MyQWebSocket::Signal_Connected));; +} + +void QWebSocket_DisconnectConnected(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWebSocket::connected), static_cast(ptr), static_cast(&MyQWebSocket::Signal_Connected));; +} + +void QWebSocket_ConnectDisconnected(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWebSocket::disconnected), static_cast(ptr), static_cast(&MyQWebSocket::Signal_Disconnected));; +} + +void QWebSocket_DisconnectDisconnected(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWebSocket::disconnected), static_cast(ptr), static_cast(&MyQWebSocket::Signal_Disconnected));; +} + +int QWebSocket_Error(QtObjectPtr ptr){ + return static_cast(ptr)->error(); +} + +char* QWebSocket_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +int QWebSocket_Flush(QtObjectPtr ptr){ + return static_cast(ptr)->flush(); +} + +void QWebSocket_IgnoreSslErrors(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "ignoreSslErrors"); +} + +int QWebSocket_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +QtObjectPtr QWebSocket_MaskGenerator(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->maskGenerator()); +} + +void QWebSocket_Open(QtObjectPtr ptr, char* url){ + QMetaObject::invokeMethod(static_cast(ptr), "open", Q_ARG(QUrl, QUrl(QString(url)))); +} + +char* QWebSocket_Origin(QtObjectPtr ptr){ + return static_cast(ptr)->origin().toUtf8().data(); +} + +int QWebSocket_PauseMode(QtObjectPtr ptr){ + return static_cast(ptr)->pauseMode(); +} + +char* QWebSocket_PeerName(QtObjectPtr ptr){ + return static_cast(ptr)->peerName().toUtf8().data(); +} + +void QWebSocket_Ping(QtObjectPtr ptr, QtObjectPtr payload){ + QMetaObject::invokeMethod(static_cast(ptr), "ping", Q_ARG(QByteArray, *static_cast(payload))); +} + +void QWebSocket_ConnectReadChannelFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWebSocket::readChannelFinished), static_cast(ptr), static_cast(&MyQWebSocket::Signal_ReadChannelFinished));; +} + +void QWebSocket_DisconnectReadChannelFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWebSocket::readChannelFinished), static_cast(ptr), static_cast(&MyQWebSocket::Signal_ReadChannelFinished));; +} + +char* QWebSocket_RequestUrl(QtObjectPtr ptr){ + return static_cast(ptr)->requestUrl().toString().toUtf8().data(); +} + +char* QWebSocket_ResourceName(QtObjectPtr ptr){ + return static_cast(ptr)->resourceName().toUtf8().data(); +} + +void QWebSocket_Resume(QtObjectPtr ptr){ + static_cast(ptr)->resume(); +} + +void QWebSocket_SetMaskGenerator(QtObjectPtr ptr, QtObjectPtr maskGenerator){ + static_cast(ptr)->setMaskGenerator(static_cast(maskGenerator)); +} + +void QWebSocket_SetPauseMode(QtObjectPtr ptr, int pauseMode){ + static_cast(ptr)->setPauseMode(static_cast(pauseMode)); +} + +void QWebSocket_SetProxy(QtObjectPtr ptr, QtObjectPtr networkProxy){ + static_cast(ptr)->setProxy(*static_cast(networkProxy)); +} + +void QWebSocket_SetSslConfiguration(QtObjectPtr ptr, QtObjectPtr sslConfiguration){ + static_cast(ptr)->setSslConfiguration(*static_cast(sslConfiguration)); +} + +void QWebSocket_ConnectStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWebSocket::stateChanged), static_cast(ptr), static_cast(&MyQWebSocket::Signal_StateChanged));; +} + +void QWebSocket_DisconnectStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWebSocket::stateChanged), static_cast(ptr), static_cast(&MyQWebSocket::Signal_StateChanged));; +} + +void QWebSocket_ConnectTextFrameReceived(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWebSocket::textFrameReceived), static_cast(ptr), static_cast(&MyQWebSocket::Signal_TextFrameReceived));; +} + +void QWebSocket_DisconnectTextFrameReceived(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWebSocket::textFrameReceived), static_cast(ptr), static_cast(&MyQWebSocket::Signal_TextFrameReceived));; +} + +void QWebSocket_ConnectTextMessageReceived(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWebSocket::textMessageReceived), static_cast(ptr), static_cast(&MyQWebSocket::Signal_TextMessageReceived));; +} + +void QWebSocket_DisconnectTextMessageReceived(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWebSocket::textMessageReceived), static_cast(ptr), static_cast(&MyQWebSocket::Signal_TextMessageReceived));; +} + +void QWebSocket_DestroyQWebSocket(QtObjectPtr ptr){ + static_cast(ptr)->~QWebSocket(); +} + diff --git a/websockets/qwebsocket.go b/websockets/qwebsocket.go new file mode 100755 index 00000000..031d9acd --- /dev/null +++ b/websockets/qwebsocket.go @@ -0,0 +1,310 @@ +package websockets + +//#include "qwebsocket.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/network" + "unsafe" +) + +type QWebSocket struct { + core.QObject +} + +type QWebSocketITF interface { + core.QObjectITF + QWebSocketPTR() *QWebSocket +} + +func PointerFromQWebSocket(ptr QWebSocketITF) unsafe.Pointer { + if ptr != nil { + return ptr.QWebSocketPTR().Pointer() + } + return nil +} + +func QWebSocketFromPointer(ptr unsafe.Pointer) *QWebSocket { + var n = new(QWebSocket) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QWebSocket_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QWebSocket) QWebSocketPTR() *QWebSocket { + return ptr +} + +func (ptr *QWebSocket) Abort() { + if ptr.Pointer() != nil { + C.QWebSocket_Abort(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWebSocket) ConnectAboutToClose(f func()) { + if ptr.Pointer() != nil { + C.QWebSocket_ConnectAboutToClose(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "aboutToClose", f) + } +} + +func (ptr *QWebSocket) DisconnectAboutToClose() { + if ptr.Pointer() != nil { + C.QWebSocket_DisconnectAboutToClose(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "aboutToClose") + } +} + +//export callbackQWebSocketAboutToClose +func callbackQWebSocketAboutToClose(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "aboutToClose").(func())() +} + +func (ptr *QWebSocket) CloseReason() string { + if ptr.Pointer() != nil { + return C.GoString(C.QWebSocket_CloseReason(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QWebSocket) ConnectConnected(f func()) { + if ptr.Pointer() != nil { + C.QWebSocket_ConnectConnected(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "connected", f) + } +} + +func (ptr *QWebSocket) DisconnectConnected() { + if ptr.Pointer() != nil { + C.QWebSocket_DisconnectConnected(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "connected") + } +} + +//export callbackQWebSocketConnected +func callbackQWebSocketConnected(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "connected").(func())() +} + +func (ptr *QWebSocket) ConnectDisconnected(f func()) { + if ptr.Pointer() != nil { + C.QWebSocket_ConnectDisconnected(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "disconnected", f) + } +} + +func (ptr *QWebSocket) DisconnectDisconnected() { + if ptr.Pointer() != nil { + C.QWebSocket_DisconnectDisconnected(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "disconnected") + } +} + +//export callbackQWebSocketDisconnected +func callbackQWebSocketDisconnected(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "disconnected").(func())() +} + +func (ptr *QWebSocket) Error() network.QAbstractSocket__SocketError { + if ptr.Pointer() != nil { + return network.QAbstractSocket__SocketError(C.QWebSocket_Error(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWebSocket) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QWebSocket_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QWebSocket) Flush() bool { + if ptr.Pointer() != nil { + return C.QWebSocket_Flush(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWebSocket) IgnoreSslErrors() { + if ptr.Pointer() != nil { + C.QWebSocket_IgnoreSslErrors(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWebSocket) IsValid() bool { + if ptr.Pointer() != nil { + return C.QWebSocket_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWebSocket) MaskGenerator() *QMaskGenerator { + if ptr.Pointer() != nil { + return QMaskGeneratorFromPointer(unsafe.Pointer(C.QWebSocket_MaskGenerator(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QWebSocket) Open(url string) { + if ptr.Pointer() != nil { + C.QWebSocket_Open(C.QtObjectPtr(ptr.Pointer()), C.CString(url)) + } +} + +func (ptr *QWebSocket) Origin() string { + if ptr.Pointer() != nil { + return C.GoString(C.QWebSocket_Origin(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QWebSocket) PauseMode() network.QAbstractSocket__PauseMode { + if ptr.Pointer() != nil { + return network.QAbstractSocket__PauseMode(C.QWebSocket_PauseMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWebSocket) PeerName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QWebSocket_PeerName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QWebSocket) Ping(payload core.QByteArrayITF) { + if ptr.Pointer() != nil { + C.QWebSocket_Ping(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(payload))) + } +} + +func (ptr *QWebSocket) ConnectReadChannelFinished(f func()) { + if ptr.Pointer() != nil { + C.QWebSocket_ConnectReadChannelFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "readChannelFinished", f) + } +} + +func (ptr *QWebSocket) DisconnectReadChannelFinished() { + if ptr.Pointer() != nil { + C.QWebSocket_DisconnectReadChannelFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "readChannelFinished") + } +} + +//export callbackQWebSocketReadChannelFinished +func callbackQWebSocketReadChannelFinished(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "readChannelFinished").(func())() +} + +func (ptr *QWebSocket) RequestUrl() string { + if ptr.Pointer() != nil { + return C.GoString(C.QWebSocket_RequestUrl(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QWebSocket) ResourceName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QWebSocket_ResourceName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QWebSocket) Resume() { + if ptr.Pointer() != nil { + C.QWebSocket_Resume(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWebSocket) SetMaskGenerator(maskGenerator QMaskGeneratorITF) { + if ptr.Pointer() != nil { + C.QWebSocket_SetMaskGenerator(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMaskGenerator(maskGenerator))) + } +} + +func (ptr *QWebSocket) SetPauseMode(pauseMode network.QAbstractSocket__PauseMode) { + if ptr.Pointer() != nil { + C.QWebSocket_SetPauseMode(C.QtObjectPtr(ptr.Pointer()), C.int(pauseMode)) + } +} + +func (ptr *QWebSocket) SetProxy(networkProxy network.QNetworkProxyITF) { + if ptr.Pointer() != nil { + C.QWebSocket_SetProxy(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(network.PointerFromQNetworkProxy(networkProxy))) + } +} + +func (ptr *QWebSocket) SetSslConfiguration(sslConfiguration network.QSslConfigurationITF) { + if ptr.Pointer() != nil { + C.QWebSocket_SetSslConfiguration(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(network.PointerFromQSslConfiguration(sslConfiguration))) + } +} + +func (ptr *QWebSocket) ConnectStateChanged(f func(state network.QAbstractSocket__SocketState)) { + if ptr.Pointer() != nil { + C.QWebSocket_ConnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stateChanged", f) + } +} + +func (ptr *QWebSocket) DisconnectStateChanged() { + if ptr.Pointer() != nil { + C.QWebSocket_DisconnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stateChanged") + } +} + +//export callbackQWebSocketStateChanged +func callbackQWebSocketStateChanged(ptrName *C.char, state C.int) { + qt.GetSignal(C.GoString(ptrName), "stateChanged").(func(network.QAbstractSocket__SocketState))(network.QAbstractSocket__SocketState(state)) +} + +func (ptr *QWebSocket) ConnectTextFrameReceived(f func(frame string, isLastFrame bool)) { + if ptr.Pointer() != nil { + C.QWebSocket_ConnectTextFrameReceived(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "textFrameReceived", f) + } +} + +func (ptr *QWebSocket) DisconnectTextFrameReceived() { + if ptr.Pointer() != nil { + C.QWebSocket_DisconnectTextFrameReceived(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "textFrameReceived") + } +} + +//export callbackQWebSocketTextFrameReceived +func callbackQWebSocketTextFrameReceived(ptrName *C.char, frame *C.char, isLastFrame C.int) { + qt.GetSignal(C.GoString(ptrName), "textFrameReceived").(func(string, bool))(C.GoString(frame), int(isLastFrame) != 0) +} + +func (ptr *QWebSocket) ConnectTextMessageReceived(f func(message string)) { + if ptr.Pointer() != nil { + C.QWebSocket_ConnectTextMessageReceived(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "textMessageReceived", f) + } +} + +func (ptr *QWebSocket) DisconnectTextMessageReceived() { + if ptr.Pointer() != nil { + C.QWebSocket_DisconnectTextMessageReceived(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "textMessageReceived") + } +} + +//export callbackQWebSocketTextMessageReceived +func callbackQWebSocketTextMessageReceived(ptrName *C.char, message *C.char) { + qt.GetSignal(C.GoString(ptrName), "textMessageReceived").(func(string))(C.GoString(message)) +} + +func (ptr *QWebSocket) DestroyQWebSocket() { + if ptr.Pointer() != nil { + C.QWebSocket_DestroyQWebSocket(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/websockets/qwebsocket.h b/websockets/qwebsocket.h new file mode 100755 index 00000000..a592781c --- /dev/null +++ b/websockets/qwebsocket.h @@ -0,0 +1,44 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QWebSocket_Abort(QtObjectPtr ptr); +void QWebSocket_ConnectAboutToClose(QtObjectPtr ptr); +void QWebSocket_DisconnectAboutToClose(QtObjectPtr ptr); +char* QWebSocket_CloseReason(QtObjectPtr ptr); +void QWebSocket_ConnectConnected(QtObjectPtr ptr); +void QWebSocket_DisconnectConnected(QtObjectPtr ptr); +void QWebSocket_ConnectDisconnected(QtObjectPtr ptr); +void QWebSocket_DisconnectDisconnected(QtObjectPtr ptr); +int QWebSocket_Error(QtObjectPtr ptr); +char* QWebSocket_ErrorString(QtObjectPtr ptr); +int QWebSocket_Flush(QtObjectPtr ptr); +void QWebSocket_IgnoreSslErrors(QtObjectPtr ptr); +int QWebSocket_IsValid(QtObjectPtr ptr); +QtObjectPtr QWebSocket_MaskGenerator(QtObjectPtr ptr); +void QWebSocket_Open(QtObjectPtr ptr, char* url); +char* QWebSocket_Origin(QtObjectPtr ptr); +int QWebSocket_PauseMode(QtObjectPtr ptr); +char* QWebSocket_PeerName(QtObjectPtr ptr); +void QWebSocket_Ping(QtObjectPtr ptr, QtObjectPtr payload); +void QWebSocket_ConnectReadChannelFinished(QtObjectPtr ptr); +void QWebSocket_DisconnectReadChannelFinished(QtObjectPtr ptr); +char* QWebSocket_RequestUrl(QtObjectPtr ptr); +char* QWebSocket_ResourceName(QtObjectPtr ptr); +void QWebSocket_Resume(QtObjectPtr ptr); +void QWebSocket_SetMaskGenerator(QtObjectPtr ptr, QtObjectPtr maskGenerator); +void QWebSocket_SetPauseMode(QtObjectPtr ptr, int pauseMode); +void QWebSocket_SetProxy(QtObjectPtr ptr, QtObjectPtr networkProxy); +void QWebSocket_SetSslConfiguration(QtObjectPtr ptr, QtObjectPtr sslConfiguration); +void QWebSocket_ConnectStateChanged(QtObjectPtr ptr); +void QWebSocket_DisconnectStateChanged(QtObjectPtr ptr); +void QWebSocket_ConnectTextFrameReceived(QtObjectPtr ptr); +void QWebSocket_DisconnectTextFrameReceived(QtObjectPtr ptr); +void QWebSocket_ConnectTextMessageReceived(QtObjectPtr ptr); +void QWebSocket_DisconnectTextMessageReceived(QtObjectPtr ptr); +void QWebSocket_DestroyQWebSocket(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/websockets/qwebsocketcorsauthenticator.cpp b/websockets/qwebsocketcorsauthenticator.cpp new file mode 100755 index 00000000..b6fb3890 --- /dev/null +++ b/websockets/qwebsocketcorsauthenticator.cpp @@ -0,0 +1,45 @@ +#include "qwebsocketcorsauthenticator.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQWebSocketCorsAuthenticator: public QWebSocketCorsAuthenticator { +public: +}; + +QtObjectPtr QWebSocketCorsAuthenticator_NewQWebSocketCorsAuthenticator3(QtObjectPtr other){ + return new QWebSocketCorsAuthenticator(*static_cast(other)); +} + +QtObjectPtr QWebSocketCorsAuthenticator_NewQWebSocketCorsAuthenticator(char* origin){ + return new QWebSocketCorsAuthenticator(QString(origin)); +} + +QtObjectPtr QWebSocketCorsAuthenticator_NewQWebSocketCorsAuthenticator2(QtObjectPtr other){ + return new QWebSocketCorsAuthenticator(*static_cast(other)); +} + +int QWebSocketCorsAuthenticator_Allowed(QtObjectPtr ptr){ + return static_cast(ptr)->allowed(); +} + +char* QWebSocketCorsAuthenticator_Origin(QtObjectPtr ptr){ + return static_cast(ptr)->origin().toUtf8().data(); +} + +void QWebSocketCorsAuthenticator_SetAllowed(QtObjectPtr ptr, int allowed){ + static_cast(ptr)->setAllowed(allowed != 0); +} + +void QWebSocketCorsAuthenticator_Swap(QtObjectPtr ptr, QtObjectPtr other){ + static_cast(ptr)->swap(*static_cast(other)); +} + +void QWebSocketCorsAuthenticator_DestroyQWebSocketCorsAuthenticator(QtObjectPtr ptr){ + static_cast(ptr)->~QWebSocketCorsAuthenticator(); +} + diff --git a/websockets/qwebsocketcorsauthenticator.go b/websockets/qwebsocketcorsauthenticator.go new file mode 100755 index 00000000..adf6fd66 --- /dev/null +++ b/websockets/qwebsocketcorsauthenticator.go @@ -0,0 +1,85 @@ +package websockets + +//#include "qwebsocketcorsauthenticator.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QWebSocketCorsAuthenticator struct { + ptr unsafe.Pointer +} + +type QWebSocketCorsAuthenticatorITF interface { + QWebSocketCorsAuthenticatorPTR() *QWebSocketCorsAuthenticator +} + +func (p *QWebSocketCorsAuthenticator) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QWebSocketCorsAuthenticator) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQWebSocketCorsAuthenticator(ptr QWebSocketCorsAuthenticatorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QWebSocketCorsAuthenticatorPTR().Pointer() + } + return nil +} + +func QWebSocketCorsAuthenticatorFromPointer(ptr unsafe.Pointer) *QWebSocketCorsAuthenticator { + var n = new(QWebSocketCorsAuthenticator) + n.SetPointer(ptr) + return n +} + +func (ptr *QWebSocketCorsAuthenticator) QWebSocketCorsAuthenticatorPTR() *QWebSocketCorsAuthenticator { + return ptr +} + +func NewQWebSocketCorsAuthenticator3(other QWebSocketCorsAuthenticatorITF) *QWebSocketCorsAuthenticator { + return QWebSocketCorsAuthenticatorFromPointer(unsafe.Pointer(C.QWebSocketCorsAuthenticator_NewQWebSocketCorsAuthenticator3(C.QtObjectPtr(PointerFromQWebSocketCorsAuthenticator(other))))) +} + +func NewQWebSocketCorsAuthenticator(origin string) *QWebSocketCorsAuthenticator { + return QWebSocketCorsAuthenticatorFromPointer(unsafe.Pointer(C.QWebSocketCorsAuthenticator_NewQWebSocketCorsAuthenticator(C.CString(origin)))) +} + +func NewQWebSocketCorsAuthenticator2(other QWebSocketCorsAuthenticatorITF) *QWebSocketCorsAuthenticator { + return QWebSocketCorsAuthenticatorFromPointer(unsafe.Pointer(C.QWebSocketCorsAuthenticator_NewQWebSocketCorsAuthenticator2(C.QtObjectPtr(PointerFromQWebSocketCorsAuthenticator(other))))) +} + +func (ptr *QWebSocketCorsAuthenticator) Allowed() bool { + if ptr.Pointer() != nil { + return C.QWebSocketCorsAuthenticator_Allowed(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWebSocketCorsAuthenticator) Origin() string { + if ptr.Pointer() != nil { + return C.GoString(C.QWebSocketCorsAuthenticator_Origin(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QWebSocketCorsAuthenticator) SetAllowed(allowed bool) { + if ptr.Pointer() != nil { + C.QWebSocketCorsAuthenticator_SetAllowed(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(allowed))) + } +} + +func (ptr *QWebSocketCorsAuthenticator) Swap(other QWebSocketCorsAuthenticatorITF) { + if ptr.Pointer() != nil { + C.QWebSocketCorsAuthenticator_Swap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWebSocketCorsAuthenticator(other))) + } +} + +func (ptr *QWebSocketCorsAuthenticator) DestroyQWebSocketCorsAuthenticator() { + if ptr.Pointer() != nil { + C.QWebSocketCorsAuthenticator_DestroyQWebSocketCorsAuthenticator(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/websockets/qwebsocketcorsauthenticator.h b/websockets/qwebsocketcorsauthenticator.h new file mode 100755 index 00000000..53057682 --- /dev/null +++ b/websockets/qwebsocketcorsauthenticator.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QWebSocketCorsAuthenticator_NewQWebSocketCorsAuthenticator3(QtObjectPtr other); +QtObjectPtr QWebSocketCorsAuthenticator_NewQWebSocketCorsAuthenticator(char* origin); +QtObjectPtr QWebSocketCorsAuthenticator_NewQWebSocketCorsAuthenticator2(QtObjectPtr other); +int QWebSocketCorsAuthenticator_Allowed(QtObjectPtr ptr); +char* QWebSocketCorsAuthenticator_Origin(QtObjectPtr ptr); +void QWebSocketCorsAuthenticator_SetAllowed(QtObjectPtr ptr, int allowed); +void QWebSocketCorsAuthenticator_Swap(QtObjectPtr ptr, QtObjectPtr other); +void QWebSocketCorsAuthenticator_DestroyQWebSocketCorsAuthenticator(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/websockets/qwebsocketserver.cpp b/websockets/qwebsocketserver.cpp new file mode 100755 index 00000000..ae99a100 --- /dev/null +++ b/websockets/qwebsocketserver.cpp @@ -0,0 +1,130 @@ +#include "qwebsocketserver.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQWebSocketServer: public QWebSocketServer { +public: +void Signal_AcceptError(QAbstractSocket::SocketError socketError){callbackQWebSocketServerAcceptError(this->objectName().toUtf8().data(), socketError);}; +void Signal_Closed(){callbackQWebSocketServerClosed(this->objectName().toUtf8().data());}; +void Signal_NewConnection(){callbackQWebSocketServerNewConnection(this->objectName().toUtf8().data());}; +void Signal_OriginAuthenticationRequired(QWebSocketCorsAuthenticator * authenticator){callbackQWebSocketServerOriginAuthenticationRequired(this->objectName().toUtf8().data(), authenticator);}; +}; + +QtObjectPtr QWebSocketServer_NewQWebSocketServer(char* serverName, int secureMode, QtObjectPtr parent){ + return new QWebSocketServer(QString(serverName), static_cast(secureMode), static_cast(parent)); +} + +void QWebSocketServer_ConnectAcceptError(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWebSocketServer::acceptError), static_cast(ptr), static_cast(&MyQWebSocketServer::Signal_AcceptError));; +} + +void QWebSocketServer_DisconnectAcceptError(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWebSocketServer::acceptError), static_cast(ptr), static_cast(&MyQWebSocketServer::Signal_AcceptError));; +} + +void QWebSocketServer_Close(QtObjectPtr ptr){ + static_cast(ptr)->close(); +} + +void QWebSocketServer_ConnectClosed(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWebSocketServer::closed), static_cast(ptr), static_cast(&MyQWebSocketServer::Signal_Closed));; +} + +void QWebSocketServer_DisconnectClosed(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWebSocketServer::closed), static_cast(ptr), static_cast(&MyQWebSocketServer::Signal_Closed));; +} + +char* QWebSocketServer_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +int QWebSocketServer_HasPendingConnections(QtObjectPtr ptr){ + return static_cast(ptr)->hasPendingConnections(); +} + +int QWebSocketServer_IsListening(QtObjectPtr ptr){ + return static_cast(ptr)->isListening(); +} + +int QWebSocketServer_MaxPendingConnections(QtObjectPtr ptr){ + return static_cast(ptr)->maxPendingConnections(); +} + +void QWebSocketServer_ConnectNewConnection(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWebSocketServer::newConnection), static_cast(ptr), static_cast(&MyQWebSocketServer::Signal_NewConnection));; +} + +void QWebSocketServer_DisconnectNewConnection(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWebSocketServer::newConnection), static_cast(ptr), static_cast(&MyQWebSocketServer::Signal_NewConnection));; +} + +QtObjectPtr QWebSocketServer_NextPendingConnection(QtObjectPtr ptr){ + return static_cast(ptr)->nextPendingConnection(); +} + +void QWebSocketServer_ConnectOriginAuthenticationRequired(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWebSocketServer::originAuthenticationRequired), static_cast(ptr), static_cast(&MyQWebSocketServer::Signal_OriginAuthenticationRequired));; +} + +void QWebSocketServer_DisconnectOriginAuthenticationRequired(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWebSocketServer::originAuthenticationRequired), static_cast(ptr), static_cast(&MyQWebSocketServer::Signal_OriginAuthenticationRequired));; +} + +void QWebSocketServer_PauseAccepting(QtObjectPtr ptr){ + static_cast(ptr)->pauseAccepting(); +} + +void QWebSocketServer_ResumeAccepting(QtObjectPtr ptr){ + static_cast(ptr)->resumeAccepting(); +} + +int QWebSocketServer_SecureMode(QtObjectPtr ptr){ + return static_cast(ptr)->secureMode(); +} + +char* QWebSocketServer_ServerName(QtObjectPtr ptr){ + return static_cast(ptr)->serverName().toUtf8().data(); +} + +char* QWebSocketServer_ServerUrl(QtObjectPtr ptr){ + return static_cast(ptr)->serverUrl().toString().toUtf8().data(); +} + +void QWebSocketServer_SetMaxPendingConnections(QtObjectPtr ptr, int numConnections){ + static_cast(ptr)->setMaxPendingConnections(numConnections); +} + +void QWebSocketServer_SetProxy(QtObjectPtr ptr, QtObjectPtr networkProxy){ + static_cast(ptr)->setProxy(*static_cast(networkProxy)); +} + +void QWebSocketServer_SetServerName(QtObjectPtr ptr, char* serverName){ + static_cast(ptr)->setServerName(QString(serverName)); +} + +int QWebSocketServer_SetSocketDescriptor(QtObjectPtr ptr, int socketDescriptor){ + return static_cast(ptr)->setSocketDescriptor(socketDescriptor); +} + +void QWebSocketServer_SetSslConfiguration(QtObjectPtr ptr, QtObjectPtr sslConfiguration){ + static_cast(ptr)->setSslConfiguration(*static_cast(sslConfiguration)); +} + +int QWebSocketServer_SocketDescriptor(QtObjectPtr ptr){ + return static_cast(ptr)->socketDescriptor(); +} + +void QWebSocketServer_DestroyQWebSocketServer(QtObjectPtr ptr){ + static_cast(ptr)->~QWebSocketServer(); +} + diff --git a/websockets/qwebsocketserver.go b/websockets/qwebsocketserver.go new file mode 100755 index 00000000..5c520061 --- /dev/null +++ b/websockets/qwebsocketserver.go @@ -0,0 +1,246 @@ +package websockets + +//#include "qwebsocketserver.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/network" + "unsafe" +) + +type QWebSocketServer struct { + core.QObject +} + +type QWebSocketServerITF interface { + core.QObjectITF + QWebSocketServerPTR() *QWebSocketServer +} + +func PointerFromQWebSocketServer(ptr QWebSocketServerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QWebSocketServerPTR().Pointer() + } + return nil +} + +func QWebSocketServerFromPointer(ptr unsafe.Pointer) *QWebSocketServer { + var n = new(QWebSocketServer) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QWebSocketServer_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QWebSocketServer) QWebSocketServerPTR() *QWebSocketServer { + return ptr +} + +//QWebSocketServer::SslMode +type QWebSocketServer__SslMode int + +var ( + QWebSocketServer__SecureMode = QWebSocketServer__SslMode(0) + QWebSocketServer__NonSecureMode = QWebSocketServer__SslMode(1) +) + +func NewQWebSocketServer(serverName string, secureMode QWebSocketServer__SslMode, parent core.QObjectITF) *QWebSocketServer { + return QWebSocketServerFromPointer(unsafe.Pointer(C.QWebSocketServer_NewQWebSocketServer(C.CString(serverName), C.int(secureMode), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QWebSocketServer) ConnectAcceptError(f func(socketError network.QAbstractSocket__SocketError)) { + if ptr.Pointer() != nil { + C.QWebSocketServer_ConnectAcceptError(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "acceptError", f) + } +} + +func (ptr *QWebSocketServer) DisconnectAcceptError() { + if ptr.Pointer() != nil { + C.QWebSocketServer_DisconnectAcceptError(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "acceptError") + } +} + +//export callbackQWebSocketServerAcceptError +func callbackQWebSocketServerAcceptError(ptrName *C.char, socketError C.int) { + qt.GetSignal(C.GoString(ptrName), "acceptError").(func(network.QAbstractSocket__SocketError))(network.QAbstractSocket__SocketError(socketError)) +} + +func (ptr *QWebSocketServer) Close() { + if ptr.Pointer() != nil { + C.QWebSocketServer_Close(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWebSocketServer) ConnectClosed(f func()) { + if ptr.Pointer() != nil { + C.QWebSocketServer_ConnectClosed(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "closed", f) + } +} + +func (ptr *QWebSocketServer) DisconnectClosed() { + if ptr.Pointer() != nil { + C.QWebSocketServer_DisconnectClosed(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "closed") + } +} + +//export callbackQWebSocketServerClosed +func callbackQWebSocketServerClosed(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "closed").(func())() +} + +func (ptr *QWebSocketServer) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QWebSocketServer_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QWebSocketServer) HasPendingConnections() bool { + if ptr.Pointer() != nil { + return C.QWebSocketServer_HasPendingConnections(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWebSocketServer) IsListening() bool { + if ptr.Pointer() != nil { + return C.QWebSocketServer_IsListening(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWebSocketServer) MaxPendingConnections() int { + if ptr.Pointer() != nil { + return int(C.QWebSocketServer_MaxPendingConnections(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWebSocketServer) ConnectNewConnection(f func()) { + if ptr.Pointer() != nil { + C.QWebSocketServer_ConnectNewConnection(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "newConnection", f) + } +} + +func (ptr *QWebSocketServer) DisconnectNewConnection() { + if ptr.Pointer() != nil { + C.QWebSocketServer_DisconnectNewConnection(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "newConnection") + } +} + +//export callbackQWebSocketServerNewConnection +func callbackQWebSocketServerNewConnection(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "newConnection").(func())() +} + +func (ptr *QWebSocketServer) NextPendingConnection() *QWebSocket { + if ptr.Pointer() != nil { + return QWebSocketFromPointer(unsafe.Pointer(C.QWebSocketServer_NextPendingConnection(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QWebSocketServer) ConnectOriginAuthenticationRequired(f func(authenticator QWebSocketCorsAuthenticatorITF)) { + if ptr.Pointer() != nil { + C.QWebSocketServer_ConnectOriginAuthenticationRequired(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "originAuthenticationRequired", f) + } +} + +func (ptr *QWebSocketServer) DisconnectOriginAuthenticationRequired() { + if ptr.Pointer() != nil { + C.QWebSocketServer_DisconnectOriginAuthenticationRequired(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "originAuthenticationRequired") + } +} + +//export callbackQWebSocketServerOriginAuthenticationRequired +func callbackQWebSocketServerOriginAuthenticationRequired(ptrName *C.char, authenticator unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "originAuthenticationRequired").(func(*QWebSocketCorsAuthenticator))(QWebSocketCorsAuthenticatorFromPointer(authenticator)) +} + +func (ptr *QWebSocketServer) PauseAccepting() { + if ptr.Pointer() != nil { + C.QWebSocketServer_PauseAccepting(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWebSocketServer) ResumeAccepting() { + if ptr.Pointer() != nil { + C.QWebSocketServer_ResumeAccepting(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWebSocketServer) SecureMode() QWebSocketServer__SslMode { + if ptr.Pointer() != nil { + return QWebSocketServer__SslMode(C.QWebSocketServer_SecureMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWebSocketServer) ServerName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QWebSocketServer_ServerName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QWebSocketServer) ServerUrl() string { + if ptr.Pointer() != nil { + return C.GoString(C.QWebSocketServer_ServerUrl(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QWebSocketServer) SetMaxPendingConnections(numConnections int) { + if ptr.Pointer() != nil { + C.QWebSocketServer_SetMaxPendingConnections(C.QtObjectPtr(ptr.Pointer()), C.int(numConnections)) + } +} + +func (ptr *QWebSocketServer) SetProxy(networkProxy network.QNetworkProxyITF) { + if ptr.Pointer() != nil { + C.QWebSocketServer_SetProxy(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(network.PointerFromQNetworkProxy(networkProxy))) + } +} + +func (ptr *QWebSocketServer) SetServerName(serverName string) { + if ptr.Pointer() != nil { + C.QWebSocketServer_SetServerName(C.QtObjectPtr(ptr.Pointer()), C.CString(serverName)) + } +} + +func (ptr *QWebSocketServer) SetSocketDescriptor(socketDescriptor int) bool { + if ptr.Pointer() != nil { + return C.QWebSocketServer_SetSocketDescriptor(C.QtObjectPtr(ptr.Pointer()), C.int(socketDescriptor)) != 0 + } + return false +} + +func (ptr *QWebSocketServer) SetSslConfiguration(sslConfiguration network.QSslConfigurationITF) { + if ptr.Pointer() != nil { + C.QWebSocketServer_SetSslConfiguration(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(network.PointerFromQSslConfiguration(sslConfiguration))) + } +} + +func (ptr *QWebSocketServer) SocketDescriptor() int { + if ptr.Pointer() != nil { + return int(C.QWebSocketServer_SocketDescriptor(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWebSocketServer) DestroyQWebSocketServer() { + if ptr.Pointer() != nil { + C.QWebSocketServer_DestroyQWebSocketServer(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/websockets/qwebsocketserver.h b/websockets/qwebsocketserver.h new file mode 100755 index 00000000..12dcbad3 --- /dev/null +++ b/websockets/qwebsocketserver.h @@ -0,0 +1,36 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QWebSocketServer_NewQWebSocketServer(char* serverName, int secureMode, QtObjectPtr parent); +void QWebSocketServer_ConnectAcceptError(QtObjectPtr ptr); +void QWebSocketServer_DisconnectAcceptError(QtObjectPtr ptr); +void QWebSocketServer_Close(QtObjectPtr ptr); +void QWebSocketServer_ConnectClosed(QtObjectPtr ptr); +void QWebSocketServer_DisconnectClosed(QtObjectPtr ptr); +char* QWebSocketServer_ErrorString(QtObjectPtr ptr); +int QWebSocketServer_HasPendingConnections(QtObjectPtr ptr); +int QWebSocketServer_IsListening(QtObjectPtr ptr); +int QWebSocketServer_MaxPendingConnections(QtObjectPtr ptr); +void QWebSocketServer_ConnectNewConnection(QtObjectPtr ptr); +void QWebSocketServer_DisconnectNewConnection(QtObjectPtr ptr); +QtObjectPtr QWebSocketServer_NextPendingConnection(QtObjectPtr ptr); +void QWebSocketServer_ConnectOriginAuthenticationRequired(QtObjectPtr ptr); +void QWebSocketServer_DisconnectOriginAuthenticationRequired(QtObjectPtr ptr); +void QWebSocketServer_PauseAccepting(QtObjectPtr ptr); +void QWebSocketServer_ResumeAccepting(QtObjectPtr ptr); +int QWebSocketServer_SecureMode(QtObjectPtr ptr); +char* QWebSocketServer_ServerName(QtObjectPtr ptr); +char* QWebSocketServer_ServerUrl(QtObjectPtr ptr); +void QWebSocketServer_SetMaxPendingConnections(QtObjectPtr ptr, int numConnections); +void QWebSocketServer_SetProxy(QtObjectPtr ptr, QtObjectPtr networkProxy); +void QWebSocketServer_SetServerName(QtObjectPtr ptr, char* serverName); +int QWebSocketServer_SetSocketDescriptor(QtObjectPtr ptr, int socketDescriptor); +void QWebSocketServer_SetSslConfiguration(QtObjectPtr ptr, QtObjectPtr sslConfiguration); +int QWebSocketServer_SocketDescriptor(QtObjectPtr ptr); +void QWebSocketServer_DestroyQWebSocketServer(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/cgo_darwin_amd64.go b/widgets/cgo_darwin_amd64.go new file mode 100755 index 00000000..056fc82e --- /dev/null +++ b/widgets/cgo_darwin_amd64.go @@ -0,0 +1,13 @@ +package widgets + +/* +#cgo CPPFLAGS: -pipe -O2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 -Wall -W +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/mkspecs/macx-clang -F/usr/local/Qt5.5.1/5.5/clang_64/lib +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtCore.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtGui.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtWidgets.framework/Headers +#cgo CPPFLAGS: -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.framework/Headers + +#cgo LDFLAGS: -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 +#cgo LDFLAGS: -F/usr/local/Qt5.5.1/5.5/clang_64/lib -framework QtCore -framework QtGui -framework QtWidgets -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL +*/ +import "C" diff --git a/widgets/cgo_linux_386.go b/widgets/cgo_linux_386.go new file mode 100755 index 00000000..f090fad2 --- /dev/null +++ b/widgets/cgo_linux_386.go @@ -0,0 +1,12 @@ +package widgets + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include -I/usr/local/Qt5.5.1/5.5/gcc/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc/include/QtGui -I/usr/local/Qt5.5.1/5.5/gcc/include/QtWidgets + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc/lib -L/usr/lib -lQt5Core -lQt5Gui -lQt5Widgets -lpthread +*/ +import "C" diff --git a/widgets/cgo_linux_amd64.go b/widgets/cgo_linux_amd64.go new file mode 100755 index 00000000..7b769d21 --- /dev/null +++ b/widgets/cgo_linux_amd64.go @@ -0,0 +1,12 @@ +package widgets + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include -I/usr/local/Qt5.5.1/5.5/gcc_64/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtGui -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtWidgets + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc_64/lib -L/usr/lib64 -lQt5Core -lQt5Gui -lQt5Widgets -lpthread +*/ +import "C" diff --git a/widgets/cgo_windows_386.go b/widgets/cgo_windows_386.go new file mode 100755 index 00000000..b250037c --- /dev/null +++ b/widgets/cgo_windows_386.go @@ -0,0 +1,12 @@ +package widgets + +/* +#cgo CPPFLAGS: -pipe -fno-keep-inline-dllexport -O2 -Wall -Wextra -fexceptions -mthreads +#cgo CPPFLAGS: -DUNICODE -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include -IC:/Qt/Qt5.5.1/5.5/mingw492_32/mkspecs/win32-g++ +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtCore -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtGui -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtWidgets + +#cgo LDFLAGS: -Wl,-s -Wl,-subsystem,windows -mthreads +#cgo LDFLAGS: -LC:/Qt/Qt5.5.1/5.5/mingw492_32/bin -lQt5Core -lQt5Gui -lQt5Widgets +*/ +import "C" diff --git a/widgets/qabstractbutton.cpp b/widgets/qabstractbutton.cpp new file mode 100755 index 00000000..a75bff05 --- /dev/null +++ b/widgets/qabstractbutton.cpp @@ -0,0 +1,149 @@ +#include "qabstractbutton.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAbstractButton: public QAbstractButton { +public: +void Signal_Clicked(bool checked){callbackQAbstractButtonClicked(this->objectName().toUtf8().data(), checked);}; +void Signal_Pressed(){callbackQAbstractButtonPressed(this->objectName().toUtf8().data());}; +void Signal_Released(){callbackQAbstractButtonReleased(this->objectName().toUtf8().data());}; +void Signal_Toggled(bool checked){callbackQAbstractButtonToggled(this->objectName().toUtf8().data(), checked);}; +}; + +int QAbstractButton_AutoExclusive(QtObjectPtr ptr){ + return static_cast(ptr)->autoExclusive(); +} + +int QAbstractButton_AutoRepeat(QtObjectPtr ptr){ + return static_cast(ptr)->autoRepeat(); +} + +int QAbstractButton_AutoRepeatDelay(QtObjectPtr ptr){ + return static_cast(ptr)->autoRepeatDelay(); +} + +int QAbstractButton_AutoRepeatInterval(QtObjectPtr ptr){ + return static_cast(ptr)->autoRepeatInterval(); +} + +int QAbstractButton_IsCheckable(QtObjectPtr ptr){ + return static_cast(ptr)->isCheckable(); +} + +int QAbstractButton_IsChecked(QtObjectPtr ptr){ + return static_cast(ptr)->isChecked(); +} + +int QAbstractButton_IsDown(QtObjectPtr ptr){ + return static_cast(ptr)->isDown(); +} + +void QAbstractButton_SetAutoExclusive(QtObjectPtr ptr, int v){ + static_cast(ptr)->setAutoExclusive(v != 0); +} + +void QAbstractButton_SetAutoRepeat(QtObjectPtr ptr, int v){ + static_cast(ptr)->setAutoRepeat(v != 0); +} + +void QAbstractButton_SetAutoRepeatDelay(QtObjectPtr ptr, int v){ + static_cast(ptr)->setAutoRepeatDelay(v); +} + +void QAbstractButton_SetAutoRepeatInterval(QtObjectPtr ptr, int v){ + static_cast(ptr)->setAutoRepeatInterval(v); +} + +void QAbstractButton_SetCheckable(QtObjectPtr ptr, int v){ + static_cast(ptr)->setCheckable(v != 0); +} + +void QAbstractButton_SetChecked(QtObjectPtr ptr, int v){ + QMetaObject::invokeMethod(static_cast(ptr), "setChecked", Q_ARG(bool, v != 0)); +} + +void QAbstractButton_SetDown(QtObjectPtr ptr, int v){ + static_cast(ptr)->setDown(v != 0); +} + +void QAbstractButton_SetIcon(QtObjectPtr ptr, QtObjectPtr icon){ + static_cast(ptr)->setIcon(*static_cast(icon)); +} + +void QAbstractButton_SetIconSize(QtObjectPtr ptr, QtObjectPtr size){ + QMetaObject::invokeMethod(static_cast(ptr), "setIconSize", Q_ARG(QSize, *static_cast(size))); +} + +void QAbstractButton_SetShortcut(QtObjectPtr ptr, QtObjectPtr key){ + static_cast(ptr)->setShortcut(*static_cast(key)); +} + +void QAbstractButton_SetText(QtObjectPtr ptr, char* text){ + static_cast(ptr)->setText(QString(text)); +} + +char* QAbstractButton_Text(QtObjectPtr ptr){ + return static_cast(ptr)->text().toUtf8().data(); +} + +void QAbstractButton_Toggle(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "toggle"); +} + +void QAbstractButton_AnimateClick(QtObjectPtr ptr, int msec){ + QMetaObject::invokeMethod(static_cast(ptr), "animateClick", Q_ARG(int, msec)); +} + +void QAbstractButton_Click(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "click"); +} + +void QAbstractButton_ConnectClicked(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractButton::clicked), static_cast(ptr), static_cast(&MyQAbstractButton::Signal_Clicked));; +} + +void QAbstractButton_DisconnectClicked(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractButton::clicked), static_cast(ptr), static_cast(&MyQAbstractButton::Signal_Clicked));; +} + +QtObjectPtr QAbstractButton_Group(QtObjectPtr ptr){ + return static_cast(ptr)->group(); +} + +void QAbstractButton_ConnectPressed(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractButton::pressed), static_cast(ptr), static_cast(&MyQAbstractButton::Signal_Pressed));; +} + +void QAbstractButton_DisconnectPressed(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractButton::pressed), static_cast(ptr), static_cast(&MyQAbstractButton::Signal_Pressed));; +} + +void QAbstractButton_ConnectReleased(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractButton::released), static_cast(ptr), static_cast(&MyQAbstractButton::Signal_Released));; +} + +void QAbstractButton_DisconnectReleased(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractButton::released), static_cast(ptr), static_cast(&MyQAbstractButton::Signal_Released));; +} + +void QAbstractButton_ConnectToggled(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractButton::toggled), static_cast(ptr), static_cast(&MyQAbstractButton::Signal_Toggled));; +} + +void QAbstractButton_DisconnectToggled(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractButton::toggled), static_cast(ptr), static_cast(&MyQAbstractButton::Signal_Toggled));; +} + +void QAbstractButton_DestroyQAbstractButton(QtObjectPtr ptr){ + static_cast(ptr)->~QAbstractButton(); +} + diff --git a/widgets/qabstractbutton.go b/widgets/qabstractbutton.go new file mode 100755 index 00000000..2e99dd4b --- /dev/null +++ b/widgets/qabstractbutton.go @@ -0,0 +1,269 @@ +package widgets + +//#include "qabstractbutton.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QAbstractButton struct { + QWidget +} + +type QAbstractButtonITF interface { + QWidgetITF + QAbstractButtonPTR() *QAbstractButton +} + +func PointerFromQAbstractButton(ptr QAbstractButtonITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractButtonPTR().Pointer() + } + return nil +} + +func QAbstractButtonFromPointer(ptr unsafe.Pointer) *QAbstractButton { + var n = new(QAbstractButton) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAbstractButton_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAbstractButton) QAbstractButtonPTR() *QAbstractButton { + return ptr +} + +func (ptr *QAbstractButton) AutoExclusive() bool { + if ptr.Pointer() != nil { + return C.QAbstractButton_AutoExclusive(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractButton) AutoRepeat() bool { + if ptr.Pointer() != nil { + return C.QAbstractButton_AutoRepeat(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractButton) AutoRepeatDelay() int { + if ptr.Pointer() != nil { + return int(C.QAbstractButton_AutoRepeatDelay(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractButton) AutoRepeatInterval() int { + if ptr.Pointer() != nil { + return int(C.QAbstractButton_AutoRepeatInterval(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractButton) IsCheckable() bool { + if ptr.Pointer() != nil { + return C.QAbstractButton_IsCheckable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractButton) IsChecked() bool { + if ptr.Pointer() != nil { + return C.QAbstractButton_IsChecked(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractButton) IsDown() bool { + if ptr.Pointer() != nil { + return C.QAbstractButton_IsDown(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractButton) SetAutoExclusive(v bool) { + if ptr.Pointer() != nil { + C.QAbstractButton_SetAutoExclusive(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QAbstractButton) SetAutoRepeat(v bool) { + if ptr.Pointer() != nil { + C.QAbstractButton_SetAutoRepeat(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QAbstractButton) SetAutoRepeatDelay(v int) { + if ptr.Pointer() != nil { + C.QAbstractButton_SetAutoRepeatDelay(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QAbstractButton) SetAutoRepeatInterval(v int) { + if ptr.Pointer() != nil { + C.QAbstractButton_SetAutoRepeatInterval(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QAbstractButton) SetCheckable(v bool) { + if ptr.Pointer() != nil { + C.QAbstractButton_SetCheckable(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QAbstractButton) SetChecked(v bool) { + if ptr.Pointer() != nil { + C.QAbstractButton_SetChecked(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QAbstractButton) SetDown(v bool) { + if ptr.Pointer() != nil { + C.QAbstractButton_SetDown(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QAbstractButton) SetIcon(icon gui.QIconITF) { + if ptr.Pointer() != nil { + C.QAbstractButton_SetIcon(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQIcon(icon))) + } +} + +func (ptr *QAbstractButton) SetIconSize(size core.QSizeITF) { + if ptr.Pointer() != nil { + C.QAbstractButton_SetIconSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(size))) + } +} + +func (ptr *QAbstractButton) SetShortcut(key gui.QKeySequenceITF) { + if ptr.Pointer() != nil { + C.QAbstractButton_SetShortcut(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQKeySequence(key))) + } +} + +func (ptr *QAbstractButton) SetText(text string) { + if ptr.Pointer() != nil { + C.QAbstractButton_SetText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QAbstractButton) Text() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAbstractButton_Text(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAbstractButton) Toggle() { + if ptr.Pointer() != nil { + C.QAbstractButton_Toggle(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractButton) AnimateClick(msec int) { + if ptr.Pointer() != nil { + C.QAbstractButton_AnimateClick(C.QtObjectPtr(ptr.Pointer()), C.int(msec)) + } +} + +func (ptr *QAbstractButton) Click() { + if ptr.Pointer() != nil { + C.QAbstractButton_Click(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractButton) ConnectClicked(f func(checked bool)) { + if ptr.Pointer() != nil { + C.QAbstractButton_ConnectClicked(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "clicked", f) + } +} + +func (ptr *QAbstractButton) DisconnectClicked() { + if ptr.Pointer() != nil { + C.QAbstractButton_DisconnectClicked(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "clicked") + } +} + +//export callbackQAbstractButtonClicked +func callbackQAbstractButtonClicked(ptrName *C.char, checked C.int) { + qt.GetSignal(C.GoString(ptrName), "clicked").(func(bool))(int(checked) != 0) +} + +func (ptr *QAbstractButton) Group() *QButtonGroup { + if ptr.Pointer() != nil { + return QButtonGroupFromPointer(unsafe.Pointer(C.QAbstractButton_Group(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAbstractButton) ConnectPressed(f func()) { + if ptr.Pointer() != nil { + C.QAbstractButton_ConnectPressed(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "pressed", f) + } +} + +func (ptr *QAbstractButton) DisconnectPressed() { + if ptr.Pointer() != nil { + C.QAbstractButton_DisconnectPressed(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "pressed") + } +} + +//export callbackQAbstractButtonPressed +func callbackQAbstractButtonPressed(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "pressed").(func())() +} + +func (ptr *QAbstractButton) ConnectReleased(f func()) { + if ptr.Pointer() != nil { + C.QAbstractButton_ConnectReleased(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "released", f) + } +} + +func (ptr *QAbstractButton) DisconnectReleased() { + if ptr.Pointer() != nil { + C.QAbstractButton_DisconnectReleased(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "released") + } +} + +//export callbackQAbstractButtonReleased +func callbackQAbstractButtonReleased(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "released").(func())() +} + +func (ptr *QAbstractButton) ConnectToggled(f func(checked bool)) { + if ptr.Pointer() != nil { + C.QAbstractButton_ConnectToggled(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "toggled", f) + } +} + +func (ptr *QAbstractButton) DisconnectToggled() { + if ptr.Pointer() != nil { + C.QAbstractButton_DisconnectToggled(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "toggled") + } +} + +//export callbackQAbstractButtonToggled +func callbackQAbstractButtonToggled(ptrName *C.char, checked C.int) { + qt.GetSignal(C.GoString(ptrName), "toggled").(func(bool))(int(checked) != 0) +} + +func (ptr *QAbstractButton) DestroyQAbstractButton() { + if ptr.Pointer() != nil { + C.QAbstractButton_DestroyQAbstractButton(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qabstractbutton.h b/widgets/qabstractbutton.h new file mode 100755 index 00000000..85714501 --- /dev/null +++ b/widgets/qabstractbutton.h @@ -0,0 +1,41 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QAbstractButton_AutoExclusive(QtObjectPtr ptr); +int QAbstractButton_AutoRepeat(QtObjectPtr ptr); +int QAbstractButton_AutoRepeatDelay(QtObjectPtr ptr); +int QAbstractButton_AutoRepeatInterval(QtObjectPtr ptr); +int QAbstractButton_IsCheckable(QtObjectPtr ptr); +int QAbstractButton_IsChecked(QtObjectPtr ptr); +int QAbstractButton_IsDown(QtObjectPtr ptr); +void QAbstractButton_SetAutoExclusive(QtObjectPtr ptr, int v); +void QAbstractButton_SetAutoRepeat(QtObjectPtr ptr, int v); +void QAbstractButton_SetAutoRepeatDelay(QtObjectPtr ptr, int v); +void QAbstractButton_SetAutoRepeatInterval(QtObjectPtr ptr, int v); +void QAbstractButton_SetCheckable(QtObjectPtr ptr, int v); +void QAbstractButton_SetChecked(QtObjectPtr ptr, int v); +void QAbstractButton_SetDown(QtObjectPtr ptr, int v); +void QAbstractButton_SetIcon(QtObjectPtr ptr, QtObjectPtr icon); +void QAbstractButton_SetIconSize(QtObjectPtr ptr, QtObjectPtr size); +void QAbstractButton_SetShortcut(QtObjectPtr ptr, QtObjectPtr key); +void QAbstractButton_SetText(QtObjectPtr ptr, char* text); +char* QAbstractButton_Text(QtObjectPtr ptr); +void QAbstractButton_Toggle(QtObjectPtr ptr); +void QAbstractButton_AnimateClick(QtObjectPtr ptr, int msec); +void QAbstractButton_Click(QtObjectPtr ptr); +void QAbstractButton_ConnectClicked(QtObjectPtr ptr); +void QAbstractButton_DisconnectClicked(QtObjectPtr ptr); +QtObjectPtr QAbstractButton_Group(QtObjectPtr ptr); +void QAbstractButton_ConnectPressed(QtObjectPtr ptr); +void QAbstractButton_DisconnectPressed(QtObjectPtr ptr); +void QAbstractButton_ConnectReleased(QtObjectPtr ptr); +void QAbstractButton_DisconnectReleased(QtObjectPtr ptr); +void QAbstractButton_ConnectToggled(QtObjectPtr ptr); +void QAbstractButton_DisconnectToggled(QtObjectPtr ptr); +void QAbstractButton_DestroyQAbstractButton(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qabstractgraphicsshapeitem.cpp b/widgets/qabstractgraphicsshapeitem.cpp new file mode 100755 index 00000000..cc59253f --- /dev/null +++ b/widgets/qabstractgraphicsshapeitem.cpp @@ -0,0 +1,31 @@ +#include "qabstractgraphicsshapeitem.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAbstractGraphicsShapeItem: public QAbstractGraphicsShapeItem { +public: +}; + +int QAbstractGraphicsShapeItem_IsObscuredBy(QtObjectPtr ptr, QtObjectPtr item){ + return static_cast(ptr)->isObscuredBy(static_cast(item)); +} + +void QAbstractGraphicsShapeItem_SetBrush(QtObjectPtr ptr, QtObjectPtr brush){ + static_cast(ptr)->setBrush(*static_cast(brush)); +} + +void QAbstractGraphicsShapeItem_SetPen(QtObjectPtr ptr, QtObjectPtr pen){ + static_cast(ptr)->setPen(*static_cast(pen)); +} + +void QAbstractGraphicsShapeItem_DestroyQAbstractGraphicsShapeItem(QtObjectPtr ptr){ + static_cast(ptr)->~QAbstractGraphicsShapeItem(); +} + diff --git a/widgets/qabstractgraphicsshapeitem.go b/widgets/qabstractgraphicsshapeitem.go new file mode 100755 index 00000000..7f32ad31 --- /dev/null +++ b/widgets/qabstractgraphicsshapeitem.go @@ -0,0 +1,59 @@ +package widgets + +//#include "qabstractgraphicsshapeitem.h" +import "C" +import ( + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QAbstractGraphicsShapeItem struct { + QGraphicsItem +} + +type QAbstractGraphicsShapeItemITF interface { + QGraphicsItemITF + QAbstractGraphicsShapeItemPTR() *QAbstractGraphicsShapeItem +} + +func PointerFromQAbstractGraphicsShapeItem(ptr QAbstractGraphicsShapeItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractGraphicsShapeItemPTR().Pointer() + } + return nil +} + +func QAbstractGraphicsShapeItemFromPointer(ptr unsafe.Pointer) *QAbstractGraphicsShapeItem { + var n = new(QAbstractGraphicsShapeItem) + n.SetPointer(ptr) + return n +} + +func (ptr *QAbstractGraphicsShapeItem) QAbstractGraphicsShapeItemPTR() *QAbstractGraphicsShapeItem { + return ptr +} + +func (ptr *QAbstractGraphicsShapeItem) IsObscuredBy(item QGraphicsItemITF) bool { + if ptr.Pointer() != nil { + return C.QAbstractGraphicsShapeItem_IsObscuredBy(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsItem(item))) != 0 + } + return false +} + +func (ptr *QAbstractGraphicsShapeItem) SetBrush(brush gui.QBrushITF) { + if ptr.Pointer() != nil { + C.QAbstractGraphicsShapeItem_SetBrush(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQBrush(brush))) + } +} + +func (ptr *QAbstractGraphicsShapeItem) SetPen(pen gui.QPenITF) { + if ptr.Pointer() != nil { + C.QAbstractGraphicsShapeItem_SetPen(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPen(pen))) + } +} + +func (ptr *QAbstractGraphicsShapeItem) DestroyQAbstractGraphicsShapeItem() { + if ptr.Pointer() != nil { + C.QAbstractGraphicsShapeItem_DestroyQAbstractGraphicsShapeItem(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qabstractgraphicsshapeitem.h b/widgets/qabstractgraphicsshapeitem.h new file mode 100755 index 00000000..c45335e6 --- /dev/null +++ b/widgets/qabstractgraphicsshapeitem.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QAbstractGraphicsShapeItem_IsObscuredBy(QtObjectPtr ptr, QtObjectPtr item); +void QAbstractGraphicsShapeItem_SetBrush(QtObjectPtr ptr, QtObjectPtr brush); +void QAbstractGraphicsShapeItem_SetPen(QtObjectPtr ptr, QtObjectPtr pen); +void QAbstractGraphicsShapeItem_DestroyQAbstractGraphicsShapeItem(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qabstractitemdelegate.cpp b/widgets/qabstractitemdelegate.cpp new file mode 100755 index 00000000..2411868b --- /dev/null +++ b/widgets/qabstractitemdelegate.cpp @@ -0,0 +1,85 @@ +#include "qabstractitemdelegate.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAbstractItemDelegate: public QAbstractItemDelegate { +public: +void Signal_CloseEditor(QWidget * editor, QAbstractItemDelegate::EndEditHint hint){callbackQAbstractItemDelegateCloseEditor(this->objectName().toUtf8().data(), editor, hint);}; +void Signal_CommitData(QWidget * editor){callbackQAbstractItemDelegateCommitData(this->objectName().toUtf8().data(), editor);}; +void Signal_SizeHintChanged(const QModelIndex & index){callbackQAbstractItemDelegateSizeHintChanged(this->objectName().toUtf8().data(), index.internalPointer());}; +}; + +void QAbstractItemDelegate_ConnectCloseEditor(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractItemDelegate::closeEditor), static_cast(ptr), static_cast(&MyQAbstractItemDelegate::Signal_CloseEditor));; +} + +void QAbstractItemDelegate_DisconnectCloseEditor(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractItemDelegate::closeEditor), static_cast(ptr), static_cast(&MyQAbstractItemDelegate::Signal_CloseEditor));; +} + +void QAbstractItemDelegate_ConnectCommitData(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractItemDelegate::commitData), static_cast(ptr), static_cast(&MyQAbstractItemDelegate::Signal_CommitData));; +} + +void QAbstractItemDelegate_DisconnectCommitData(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractItemDelegate::commitData), static_cast(ptr), static_cast(&MyQAbstractItemDelegate::Signal_CommitData));; +} + +QtObjectPtr QAbstractItemDelegate_CreateEditor(QtObjectPtr ptr, QtObjectPtr parent, QtObjectPtr option, QtObjectPtr index){ + return static_cast(ptr)->createEditor(static_cast(parent), *static_cast(option), *static_cast(index)); +} + +void QAbstractItemDelegate_DestroyEditor(QtObjectPtr ptr, QtObjectPtr editor, QtObjectPtr index){ + static_cast(ptr)->destroyEditor(static_cast(editor), *static_cast(index)); +} + +int QAbstractItemDelegate_EditorEvent(QtObjectPtr ptr, QtObjectPtr event, QtObjectPtr model, QtObjectPtr option, QtObjectPtr index){ + return static_cast(ptr)->editorEvent(static_cast(event), static_cast(model), *static_cast(option), *static_cast(index)); +} + +int QAbstractItemDelegate_HelpEvent(QtObjectPtr ptr, QtObjectPtr event, QtObjectPtr view, QtObjectPtr option, QtObjectPtr index){ + return static_cast(ptr)->helpEvent(static_cast(event), static_cast(view), *static_cast(option), *static_cast(index)); +} + +void QAbstractItemDelegate_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr index){ + static_cast(ptr)->paint(static_cast(painter), *static_cast(option), *static_cast(index)); +} + +void QAbstractItemDelegate_SetEditorData(QtObjectPtr ptr, QtObjectPtr editor, QtObjectPtr index){ + static_cast(ptr)->setEditorData(static_cast(editor), *static_cast(index)); +} + +void QAbstractItemDelegate_SetModelData(QtObjectPtr ptr, QtObjectPtr editor, QtObjectPtr model, QtObjectPtr index){ + static_cast(ptr)->setModelData(static_cast(editor), static_cast(model), *static_cast(index)); +} + +void QAbstractItemDelegate_ConnectSizeHintChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractItemDelegate::sizeHintChanged), static_cast(ptr), static_cast(&MyQAbstractItemDelegate::Signal_SizeHintChanged));; +} + +void QAbstractItemDelegate_DisconnectSizeHintChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractItemDelegate::sizeHintChanged), static_cast(ptr), static_cast(&MyQAbstractItemDelegate::Signal_SizeHintChanged));; +} + +void QAbstractItemDelegate_UpdateEditorGeometry(QtObjectPtr ptr, QtObjectPtr editor, QtObjectPtr option, QtObjectPtr index){ + static_cast(ptr)->updateEditorGeometry(static_cast(editor), *static_cast(option), *static_cast(index)); +} + +void QAbstractItemDelegate_DestroyQAbstractItemDelegate(QtObjectPtr ptr){ + static_cast(ptr)->~QAbstractItemDelegate(); +} + diff --git a/widgets/qabstractitemdelegate.go b/widgets/qabstractitemdelegate.go new file mode 100755 index 00000000..c57caf7d --- /dev/null +++ b/widgets/qabstractitemdelegate.go @@ -0,0 +1,165 @@ +package widgets + +//#include "qabstractitemdelegate.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QAbstractItemDelegate struct { + core.QObject +} + +type QAbstractItemDelegateITF interface { + core.QObjectITF + QAbstractItemDelegatePTR() *QAbstractItemDelegate +} + +func PointerFromQAbstractItemDelegate(ptr QAbstractItemDelegateITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractItemDelegatePTR().Pointer() + } + return nil +} + +func QAbstractItemDelegateFromPointer(ptr unsafe.Pointer) *QAbstractItemDelegate { + var n = new(QAbstractItemDelegate) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAbstractItemDelegate_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAbstractItemDelegate) QAbstractItemDelegatePTR() *QAbstractItemDelegate { + return ptr +} + +//QAbstractItemDelegate::EndEditHint +type QAbstractItemDelegate__EndEditHint int + +var ( + QAbstractItemDelegate__NoHint = QAbstractItemDelegate__EndEditHint(0) + QAbstractItemDelegate__EditNextItem = QAbstractItemDelegate__EndEditHint(1) + QAbstractItemDelegate__EditPreviousItem = QAbstractItemDelegate__EndEditHint(2) + QAbstractItemDelegate__SubmitModelCache = QAbstractItemDelegate__EndEditHint(3) + QAbstractItemDelegate__RevertModelCache = QAbstractItemDelegate__EndEditHint(4) +) + +func (ptr *QAbstractItemDelegate) ConnectCloseEditor(f func(editor QWidgetITF, hint QAbstractItemDelegate__EndEditHint)) { + if ptr.Pointer() != nil { + C.QAbstractItemDelegate_ConnectCloseEditor(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "closeEditor", f) + } +} + +func (ptr *QAbstractItemDelegate) DisconnectCloseEditor() { + if ptr.Pointer() != nil { + C.QAbstractItemDelegate_DisconnectCloseEditor(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "closeEditor") + } +} + +//export callbackQAbstractItemDelegateCloseEditor +func callbackQAbstractItemDelegateCloseEditor(ptrName *C.char, editor unsafe.Pointer, hint C.int) { + qt.GetSignal(C.GoString(ptrName), "closeEditor").(func(*QWidget, QAbstractItemDelegate__EndEditHint))(QWidgetFromPointer(editor), QAbstractItemDelegate__EndEditHint(hint)) +} + +func (ptr *QAbstractItemDelegate) ConnectCommitData(f func(editor QWidgetITF)) { + if ptr.Pointer() != nil { + C.QAbstractItemDelegate_ConnectCommitData(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "commitData", f) + } +} + +func (ptr *QAbstractItemDelegate) DisconnectCommitData() { + if ptr.Pointer() != nil { + C.QAbstractItemDelegate_DisconnectCommitData(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "commitData") + } +} + +//export callbackQAbstractItemDelegateCommitData +func callbackQAbstractItemDelegateCommitData(ptrName *C.char, editor unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "commitData").(func(*QWidget))(QWidgetFromPointer(editor)) +} + +func (ptr *QAbstractItemDelegate) CreateEditor(parent QWidgetITF, option QStyleOptionViewItemITF, index core.QModelIndexITF) *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QAbstractItemDelegate_CreateEditor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(parent)), C.QtObjectPtr(PointerFromQStyleOptionViewItem(option)), C.QtObjectPtr(core.PointerFromQModelIndex(index))))) + } + return nil +} + +func (ptr *QAbstractItemDelegate) DestroyEditor(editor QWidgetITF, index core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QAbstractItemDelegate_DestroyEditor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(editor)), C.QtObjectPtr(core.PointerFromQModelIndex(index))) + } +} + +func (ptr *QAbstractItemDelegate) EditorEvent(event core.QEventITF, model core.QAbstractItemModelITF, option QStyleOptionViewItemITF, index core.QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QAbstractItemDelegate_EditorEvent(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQEvent(event)), C.QtObjectPtr(core.PointerFromQAbstractItemModel(model)), C.QtObjectPtr(PointerFromQStyleOptionViewItem(option)), C.QtObjectPtr(core.PointerFromQModelIndex(index))) != 0 + } + return false +} + +func (ptr *QAbstractItemDelegate) HelpEvent(event gui.QHelpEventITF, view QAbstractItemViewITF, option QStyleOptionViewItemITF, index core.QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QAbstractItemDelegate_HelpEvent(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQHelpEvent(event)), C.QtObjectPtr(PointerFromQAbstractItemView(view)), C.QtObjectPtr(PointerFromQStyleOptionViewItem(option)), C.QtObjectPtr(core.PointerFromQModelIndex(index))) != 0 + } + return false +} + +func (ptr *QAbstractItemDelegate) Paint(painter gui.QPainterITF, option QStyleOptionViewItemITF, index core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QAbstractItemDelegate_Paint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(PointerFromQStyleOptionViewItem(option)), C.QtObjectPtr(core.PointerFromQModelIndex(index))) + } +} + +func (ptr *QAbstractItemDelegate) SetEditorData(editor QWidgetITF, index core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QAbstractItemDelegate_SetEditorData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(editor)), C.QtObjectPtr(core.PointerFromQModelIndex(index))) + } +} + +func (ptr *QAbstractItemDelegate) SetModelData(editor QWidgetITF, model core.QAbstractItemModelITF, index core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QAbstractItemDelegate_SetModelData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(editor)), C.QtObjectPtr(core.PointerFromQAbstractItemModel(model)), C.QtObjectPtr(core.PointerFromQModelIndex(index))) + } +} + +func (ptr *QAbstractItemDelegate) ConnectSizeHintChanged(f func(index core.QModelIndexITF)) { + if ptr.Pointer() != nil { + C.QAbstractItemDelegate_ConnectSizeHintChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "sizeHintChanged", f) + } +} + +func (ptr *QAbstractItemDelegate) DisconnectSizeHintChanged() { + if ptr.Pointer() != nil { + C.QAbstractItemDelegate_DisconnectSizeHintChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "sizeHintChanged") + } +} + +//export callbackQAbstractItemDelegateSizeHintChanged +func callbackQAbstractItemDelegateSizeHintChanged(ptrName *C.char, index unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "sizeHintChanged").(func(*core.QModelIndex))(core.QModelIndexFromPointer(index)) +} + +func (ptr *QAbstractItemDelegate) UpdateEditorGeometry(editor QWidgetITF, option QStyleOptionViewItemITF, index core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QAbstractItemDelegate_UpdateEditorGeometry(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(editor)), C.QtObjectPtr(PointerFromQStyleOptionViewItem(option)), C.QtObjectPtr(core.PointerFromQModelIndex(index))) + } +} + +func (ptr *QAbstractItemDelegate) DestroyQAbstractItemDelegate() { + if ptr.Pointer() != nil { + C.QAbstractItemDelegate_DestroyQAbstractItemDelegate(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qabstractitemdelegate.h b/widgets/qabstractitemdelegate.h new file mode 100755 index 00000000..57b63fd6 --- /dev/null +++ b/widgets/qabstractitemdelegate.h @@ -0,0 +1,24 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QAbstractItemDelegate_ConnectCloseEditor(QtObjectPtr ptr); +void QAbstractItemDelegate_DisconnectCloseEditor(QtObjectPtr ptr); +void QAbstractItemDelegate_ConnectCommitData(QtObjectPtr ptr); +void QAbstractItemDelegate_DisconnectCommitData(QtObjectPtr ptr); +QtObjectPtr QAbstractItemDelegate_CreateEditor(QtObjectPtr ptr, QtObjectPtr parent, QtObjectPtr option, QtObjectPtr index); +void QAbstractItemDelegate_DestroyEditor(QtObjectPtr ptr, QtObjectPtr editor, QtObjectPtr index); +int QAbstractItemDelegate_EditorEvent(QtObjectPtr ptr, QtObjectPtr event, QtObjectPtr model, QtObjectPtr option, QtObjectPtr index); +int QAbstractItemDelegate_HelpEvent(QtObjectPtr ptr, QtObjectPtr event, QtObjectPtr view, QtObjectPtr option, QtObjectPtr index); +void QAbstractItemDelegate_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr index); +void QAbstractItemDelegate_SetEditorData(QtObjectPtr ptr, QtObjectPtr editor, QtObjectPtr index); +void QAbstractItemDelegate_SetModelData(QtObjectPtr ptr, QtObjectPtr editor, QtObjectPtr model, QtObjectPtr index); +void QAbstractItemDelegate_ConnectSizeHintChanged(QtObjectPtr ptr); +void QAbstractItemDelegate_DisconnectSizeHintChanged(QtObjectPtr ptr); +void QAbstractItemDelegate_UpdateEditorGeometry(QtObjectPtr ptr, QtObjectPtr editor, QtObjectPtr option, QtObjectPtr index); +void QAbstractItemDelegate_DestroyQAbstractItemDelegate(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qabstractitemview.cpp b/widgets/qabstractitemview.cpp new file mode 100755 index 00000000..881d7210 --- /dev/null +++ b/widgets/qabstractitemview.cpp @@ -0,0 +1,331 @@ +#include "qabstractitemview.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAbstractItemView: public QAbstractItemView { +public: +void Signal_Activated(const QModelIndex & index){callbackQAbstractItemViewActivated(this->objectName().toUtf8().data(), index.internalPointer());}; +void Signal_Clicked(const QModelIndex & index){callbackQAbstractItemViewClicked(this->objectName().toUtf8().data(), index.internalPointer());}; +void Signal_DoubleClicked(const QModelIndex & index){callbackQAbstractItemViewDoubleClicked(this->objectName().toUtf8().data(), index.internalPointer());}; +void Signal_Entered(const QModelIndex & index){callbackQAbstractItemViewEntered(this->objectName().toUtf8().data(), index.internalPointer());}; +void Signal_Pressed(const QModelIndex & index){callbackQAbstractItemViewPressed(this->objectName().toUtf8().data(), index.internalPointer());}; +void Signal_ViewportEntered(){callbackQAbstractItemViewViewportEntered(this->objectName().toUtf8().data());}; +}; + +int QAbstractItemView_AlternatingRowColors(QtObjectPtr ptr){ + return static_cast(ptr)->alternatingRowColors(); +} + +int QAbstractItemView_AutoScrollMargin(QtObjectPtr ptr){ + return static_cast(ptr)->autoScrollMargin(); +} + +int QAbstractItemView_DefaultDropAction(QtObjectPtr ptr){ + return static_cast(ptr)->defaultDropAction(); +} + +int QAbstractItemView_DragDropMode(QtObjectPtr ptr){ + return static_cast(ptr)->dragDropMode(); +} + +int QAbstractItemView_DragDropOverwriteMode(QtObjectPtr ptr){ + return static_cast(ptr)->dragDropOverwriteMode(); +} + +int QAbstractItemView_DragEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->dragEnabled(); +} + +int QAbstractItemView_EditTriggers(QtObjectPtr ptr){ + return static_cast(ptr)->editTriggers(); +} + +int QAbstractItemView_HasAutoScroll(QtObjectPtr ptr){ + return static_cast(ptr)->hasAutoScroll(); +} + +int QAbstractItemView_HorizontalScrollMode(QtObjectPtr ptr){ + return static_cast(ptr)->horizontalScrollMode(); +} + +int QAbstractItemView_SelectionBehavior(QtObjectPtr ptr){ + return static_cast(ptr)->selectionBehavior(); +} + +int QAbstractItemView_SelectionMode(QtObjectPtr ptr){ + return static_cast(ptr)->selectionMode(); +} + +void QAbstractItemView_SetAlternatingRowColors(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setAlternatingRowColors(enable != 0); +} + +void QAbstractItemView_SetAutoScroll(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setAutoScroll(enable != 0); +} + +void QAbstractItemView_SetAutoScrollMargin(QtObjectPtr ptr, int margin){ + static_cast(ptr)->setAutoScrollMargin(margin); +} + +void QAbstractItemView_SetDefaultDropAction(QtObjectPtr ptr, int dropAction){ + static_cast(ptr)->setDefaultDropAction(static_cast(dropAction)); +} + +void QAbstractItemView_SetDragDropMode(QtObjectPtr ptr, int behavior){ + static_cast(ptr)->setDragDropMode(static_cast(behavior)); +} + +void QAbstractItemView_SetDragDropOverwriteMode(QtObjectPtr ptr, int overwrite){ + static_cast(ptr)->setDragDropOverwriteMode(overwrite != 0); +} + +void QAbstractItemView_SetDragEnabled(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setDragEnabled(enable != 0); +} + +void QAbstractItemView_SetDropIndicatorShown(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setDropIndicatorShown(enable != 0); +} + +void QAbstractItemView_SetEditTriggers(QtObjectPtr ptr, int triggers){ + static_cast(ptr)->setEditTriggers(static_cast(triggers)); +} + +void QAbstractItemView_SetHorizontalScrollMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setHorizontalScrollMode(static_cast(mode)); +} + +void QAbstractItemView_SetIconSize(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->setIconSize(*static_cast(size)); +} + +void QAbstractItemView_SetSelectionBehavior(QtObjectPtr ptr, int behavior){ + static_cast(ptr)->setSelectionBehavior(static_cast(behavior)); +} + +void QAbstractItemView_SetSelectionMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setSelectionMode(static_cast(mode)); +} + +void QAbstractItemView_SetTabKeyNavigation(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setTabKeyNavigation(enable != 0); +} + +void QAbstractItemView_SetTextElideMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setTextElideMode(static_cast(mode)); +} + +void QAbstractItemView_SetVerticalScrollMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setVerticalScrollMode(static_cast(mode)); +} + +int QAbstractItemView_ShowDropIndicator(QtObjectPtr ptr){ + return static_cast(ptr)->showDropIndicator(); +} + +int QAbstractItemView_TabKeyNavigation(QtObjectPtr ptr){ + return static_cast(ptr)->tabKeyNavigation(); +} + +int QAbstractItemView_TextElideMode(QtObjectPtr ptr){ + return static_cast(ptr)->textElideMode(); +} + +int QAbstractItemView_VerticalScrollMode(QtObjectPtr ptr){ + return static_cast(ptr)->verticalScrollMode(); +} + +void QAbstractItemView_ConnectActivated(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractItemView::activated), static_cast(ptr), static_cast(&MyQAbstractItemView::Signal_Activated));; +} + +void QAbstractItemView_DisconnectActivated(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractItemView::activated), static_cast(ptr), static_cast(&MyQAbstractItemView::Signal_Activated));; +} + +void QAbstractItemView_ClearSelection(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "clearSelection"); +} + +void QAbstractItemView_ConnectClicked(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractItemView::clicked), static_cast(ptr), static_cast(&MyQAbstractItemView::Signal_Clicked));; +} + +void QAbstractItemView_DisconnectClicked(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractItemView::clicked), static_cast(ptr), static_cast(&MyQAbstractItemView::Signal_Clicked));; +} + +void QAbstractItemView_ClosePersistentEditor(QtObjectPtr ptr, QtObjectPtr index){ + static_cast(ptr)->closePersistentEditor(*static_cast(index)); +} + +QtObjectPtr QAbstractItemView_CurrentIndex(QtObjectPtr ptr){ + return static_cast(ptr)->currentIndex().internalPointer(); +} + +void QAbstractItemView_ConnectDoubleClicked(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractItemView::doubleClicked), static_cast(ptr), static_cast(&MyQAbstractItemView::Signal_DoubleClicked));; +} + +void QAbstractItemView_DisconnectDoubleClicked(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractItemView::doubleClicked), static_cast(ptr), static_cast(&MyQAbstractItemView::Signal_DoubleClicked));; +} + +void QAbstractItemView_Edit(QtObjectPtr ptr, QtObjectPtr index){ + QMetaObject::invokeMethod(static_cast(ptr), "edit", Q_ARG(QModelIndex, *static_cast(index))); +} + +void QAbstractItemView_ConnectEntered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractItemView::entered), static_cast(ptr), static_cast(&MyQAbstractItemView::Signal_Entered));; +} + +void QAbstractItemView_DisconnectEntered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractItemView::entered), static_cast(ptr), static_cast(&MyQAbstractItemView::Signal_Entered));; +} + +QtObjectPtr QAbstractItemView_IndexAt(QtObjectPtr ptr, QtObjectPtr point){ + return static_cast(ptr)->indexAt(*static_cast(point)).internalPointer(); +} + +QtObjectPtr QAbstractItemView_IndexWidget(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->indexWidget(*static_cast(index)); +} + +char* QAbstractItemView_InputMethodQuery(QtObjectPtr ptr, int query){ + return static_cast(ptr)->inputMethodQuery(static_cast(query)).toString().toUtf8().data(); +} + +QtObjectPtr QAbstractItemView_ItemDelegate(QtObjectPtr ptr){ + return static_cast(ptr)->itemDelegate(); +} + +QtObjectPtr QAbstractItemView_ItemDelegate2(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->itemDelegate(*static_cast(index)); +} + +QtObjectPtr QAbstractItemView_ItemDelegateForColumn(QtObjectPtr ptr, int column){ + return static_cast(ptr)->itemDelegateForColumn(column); +} + +QtObjectPtr QAbstractItemView_ItemDelegateForRow(QtObjectPtr ptr, int row){ + return static_cast(ptr)->itemDelegateForRow(row); +} + +void QAbstractItemView_KeyboardSearch(QtObjectPtr ptr, char* search){ + static_cast(ptr)->keyboardSearch(QString(search)); +} + +QtObjectPtr QAbstractItemView_Model(QtObjectPtr ptr){ + return static_cast(ptr)->model(); +} + +void QAbstractItemView_OpenPersistentEditor(QtObjectPtr ptr, QtObjectPtr index){ + static_cast(ptr)->openPersistentEditor(*static_cast(index)); +} + +void QAbstractItemView_ConnectPressed(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractItemView::pressed), static_cast(ptr), static_cast(&MyQAbstractItemView::Signal_Pressed));; +} + +void QAbstractItemView_DisconnectPressed(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractItemView::pressed), static_cast(ptr), static_cast(&MyQAbstractItemView::Signal_Pressed));; +} + +void QAbstractItemView_Reset(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "reset"); +} + +QtObjectPtr QAbstractItemView_RootIndex(QtObjectPtr ptr){ + return static_cast(ptr)->rootIndex().internalPointer(); +} + +void QAbstractItemView_ScrollTo(QtObjectPtr ptr, QtObjectPtr index, int hint){ + static_cast(ptr)->scrollTo(*static_cast(index), static_cast(hint)); +} + +void QAbstractItemView_ScrollToBottom(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "scrollToBottom"); +} + +void QAbstractItemView_ScrollToTop(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "scrollToTop"); +} + +void QAbstractItemView_SelectAll(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "selectAll"); +} + +QtObjectPtr QAbstractItemView_SelectionModel(QtObjectPtr ptr){ + return static_cast(ptr)->selectionModel(); +} + +void QAbstractItemView_SetCurrentIndex(QtObjectPtr ptr, QtObjectPtr index){ + QMetaObject::invokeMethod(static_cast(ptr), "setCurrentIndex", Q_ARG(QModelIndex, *static_cast(index))); +} + +void QAbstractItemView_SetIndexWidget(QtObjectPtr ptr, QtObjectPtr index, QtObjectPtr widget){ + static_cast(ptr)->setIndexWidget(*static_cast(index), static_cast(widget)); +} + +void QAbstractItemView_SetItemDelegate(QtObjectPtr ptr, QtObjectPtr delegate){ + static_cast(ptr)->setItemDelegate(static_cast(delegate)); +} + +void QAbstractItemView_SetItemDelegateForColumn(QtObjectPtr ptr, int column, QtObjectPtr delegate){ + static_cast(ptr)->setItemDelegateForColumn(column, static_cast(delegate)); +} + +void QAbstractItemView_SetItemDelegateForRow(QtObjectPtr ptr, int row, QtObjectPtr delegate){ + static_cast(ptr)->setItemDelegateForRow(row, static_cast(delegate)); +} + +void QAbstractItemView_SetModel(QtObjectPtr ptr, QtObjectPtr model){ + static_cast(ptr)->setModel(static_cast(model)); +} + +void QAbstractItemView_SetRootIndex(QtObjectPtr ptr, QtObjectPtr index){ + QMetaObject::invokeMethod(static_cast(ptr), "setRootIndex", Q_ARG(QModelIndex, *static_cast(index))); +} + +void QAbstractItemView_SetSelectionModel(QtObjectPtr ptr, QtObjectPtr selectionModel){ + static_cast(ptr)->setSelectionModel(static_cast(selectionModel)); +} + +int QAbstractItemView_SizeHintForColumn(QtObjectPtr ptr, int column){ + return static_cast(ptr)->sizeHintForColumn(column); +} + +int QAbstractItemView_SizeHintForRow(QtObjectPtr ptr, int row){ + return static_cast(ptr)->sizeHintForRow(row); +} + +void QAbstractItemView_Update(QtObjectPtr ptr, QtObjectPtr index){ + QMetaObject::invokeMethod(static_cast(ptr), "update", Q_ARG(QModelIndex, *static_cast(index))); +} + +void QAbstractItemView_ConnectViewportEntered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractItemView::viewportEntered), static_cast(ptr), static_cast(&MyQAbstractItemView::Signal_ViewportEntered));; +} + +void QAbstractItemView_DisconnectViewportEntered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractItemView::viewportEntered), static_cast(ptr), static_cast(&MyQAbstractItemView::Signal_ViewportEntered));; +} + +void QAbstractItemView_DestroyQAbstractItemView(QtObjectPtr ptr){ + static_cast(ptr)->~QAbstractItemView(); +} + diff --git a/widgets/qabstractitemview.go b/widgets/qabstractitemview.go new file mode 100755 index 00000000..ad95680a --- /dev/null +++ b/widgets/qabstractitemview.go @@ -0,0 +1,627 @@ +package widgets + +//#include "qabstractitemview.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAbstractItemView struct { + QAbstractScrollArea +} + +type QAbstractItemViewITF interface { + QAbstractScrollAreaITF + QAbstractItemViewPTR() *QAbstractItemView +} + +func PointerFromQAbstractItemView(ptr QAbstractItemViewITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractItemViewPTR().Pointer() + } + return nil +} + +func QAbstractItemViewFromPointer(ptr unsafe.Pointer) *QAbstractItemView { + var n = new(QAbstractItemView) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAbstractItemView_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAbstractItemView) QAbstractItemViewPTR() *QAbstractItemView { + return ptr +} + +//QAbstractItemView::DragDropMode +type QAbstractItemView__DragDropMode int + +var ( + QAbstractItemView__NoDragDrop = QAbstractItemView__DragDropMode(0) + QAbstractItemView__DragOnly = QAbstractItemView__DragDropMode(1) + QAbstractItemView__DropOnly = QAbstractItemView__DragDropMode(2) + QAbstractItemView__DragDrop = QAbstractItemView__DragDropMode(3) + QAbstractItemView__InternalMove = QAbstractItemView__DragDropMode(4) +) + +//QAbstractItemView::EditTrigger +type QAbstractItemView__EditTrigger int + +var ( + QAbstractItemView__NoEditTriggers = QAbstractItemView__EditTrigger(0) + QAbstractItemView__CurrentChanged = QAbstractItemView__EditTrigger(1) + QAbstractItemView__DoubleClicked = QAbstractItemView__EditTrigger(2) + QAbstractItemView__SelectedClicked = QAbstractItemView__EditTrigger(4) + QAbstractItemView__EditKeyPressed = QAbstractItemView__EditTrigger(8) + QAbstractItemView__AnyKeyPressed = QAbstractItemView__EditTrigger(16) + QAbstractItemView__AllEditTriggers = QAbstractItemView__EditTrigger(31) +) + +//QAbstractItemView::ScrollHint +type QAbstractItemView__ScrollHint int + +var ( + QAbstractItemView__EnsureVisible = QAbstractItemView__ScrollHint(0) + QAbstractItemView__PositionAtTop = QAbstractItemView__ScrollHint(1) + QAbstractItemView__PositionAtBottom = QAbstractItemView__ScrollHint(2) + QAbstractItemView__PositionAtCenter = QAbstractItemView__ScrollHint(3) +) + +//QAbstractItemView::ScrollMode +type QAbstractItemView__ScrollMode int + +var ( + QAbstractItemView__ScrollPerItem = QAbstractItemView__ScrollMode(0) + QAbstractItemView__ScrollPerPixel = QAbstractItemView__ScrollMode(1) +) + +//QAbstractItemView::SelectionBehavior +type QAbstractItemView__SelectionBehavior int + +var ( + QAbstractItemView__SelectItems = QAbstractItemView__SelectionBehavior(0) + QAbstractItemView__SelectRows = QAbstractItemView__SelectionBehavior(1) + QAbstractItemView__SelectColumns = QAbstractItemView__SelectionBehavior(2) +) + +//QAbstractItemView::SelectionMode +type QAbstractItemView__SelectionMode int + +var ( + QAbstractItemView__NoSelection = QAbstractItemView__SelectionMode(0) + QAbstractItemView__SingleSelection = QAbstractItemView__SelectionMode(1) + QAbstractItemView__MultiSelection = QAbstractItemView__SelectionMode(2) + QAbstractItemView__ExtendedSelection = QAbstractItemView__SelectionMode(3) + QAbstractItemView__ContiguousSelection = QAbstractItemView__SelectionMode(4) +) + +func (ptr *QAbstractItemView) AlternatingRowColors() bool { + if ptr.Pointer() != nil { + return C.QAbstractItemView_AlternatingRowColors(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractItemView) AutoScrollMargin() int { + if ptr.Pointer() != nil { + return int(C.QAbstractItemView_AutoScrollMargin(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractItemView) DefaultDropAction() core.Qt__DropAction { + if ptr.Pointer() != nil { + return core.Qt__DropAction(C.QAbstractItemView_DefaultDropAction(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractItemView) DragDropMode() QAbstractItemView__DragDropMode { + if ptr.Pointer() != nil { + return QAbstractItemView__DragDropMode(C.QAbstractItemView_DragDropMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractItemView) DragDropOverwriteMode() bool { + if ptr.Pointer() != nil { + return C.QAbstractItemView_DragDropOverwriteMode(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractItemView) DragEnabled() bool { + if ptr.Pointer() != nil { + return C.QAbstractItemView_DragEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractItemView) EditTriggers() QAbstractItemView__EditTrigger { + if ptr.Pointer() != nil { + return QAbstractItemView__EditTrigger(C.QAbstractItemView_EditTriggers(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractItemView) HasAutoScroll() bool { + if ptr.Pointer() != nil { + return C.QAbstractItemView_HasAutoScroll(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractItemView) HorizontalScrollMode() QAbstractItemView__ScrollMode { + if ptr.Pointer() != nil { + return QAbstractItemView__ScrollMode(C.QAbstractItemView_HorizontalScrollMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractItemView) SelectionBehavior() QAbstractItemView__SelectionBehavior { + if ptr.Pointer() != nil { + return QAbstractItemView__SelectionBehavior(C.QAbstractItemView_SelectionBehavior(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractItemView) SelectionMode() QAbstractItemView__SelectionMode { + if ptr.Pointer() != nil { + return QAbstractItemView__SelectionMode(C.QAbstractItemView_SelectionMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractItemView) SetAlternatingRowColors(enable bool) { + if ptr.Pointer() != nil { + C.QAbstractItemView_SetAlternatingRowColors(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QAbstractItemView) SetAutoScroll(enable bool) { + if ptr.Pointer() != nil { + C.QAbstractItemView_SetAutoScroll(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QAbstractItemView) SetAutoScrollMargin(margin int) { + if ptr.Pointer() != nil { + C.QAbstractItemView_SetAutoScrollMargin(C.QtObjectPtr(ptr.Pointer()), C.int(margin)) + } +} + +func (ptr *QAbstractItemView) SetDefaultDropAction(dropAction core.Qt__DropAction) { + if ptr.Pointer() != nil { + C.QAbstractItemView_SetDefaultDropAction(C.QtObjectPtr(ptr.Pointer()), C.int(dropAction)) + } +} + +func (ptr *QAbstractItemView) SetDragDropMode(behavior QAbstractItemView__DragDropMode) { + if ptr.Pointer() != nil { + C.QAbstractItemView_SetDragDropMode(C.QtObjectPtr(ptr.Pointer()), C.int(behavior)) + } +} + +func (ptr *QAbstractItemView) SetDragDropOverwriteMode(overwrite bool) { + if ptr.Pointer() != nil { + C.QAbstractItemView_SetDragDropOverwriteMode(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(overwrite))) + } +} + +func (ptr *QAbstractItemView) SetDragEnabled(enable bool) { + if ptr.Pointer() != nil { + C.QAbstractItemView_SetDragEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QAbstractItemView) SetDropIndicatorShown(enable bool) { + if ptr.Pointer() != nil { + C.QAbstractItemView_SetDropIndicatorShown(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QAbstractItemView) SetEditTriggers(triggers QAbstractItemView__EditTrigger) { + if ptr.Pointer() != nil { + C.QAbstractItemView_SetEditTriggers(C.QtObjectPtr(ptr.Pointer()), C.int(triggers)) + } +} + +func (ptr *QAbstractItemView) SetHorizontalScrollMode(mode QAbstractItemView__ScrollMode) { + if ptr.Pointer() != nil { + C.QAbstractItemView_SetHorizontalScrollMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QAbstractItemView) SetIconSize(size core.QSizeITF) { + if ptr.Pointer() != nil { + C.QAbstractItemView_SetIconSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(size))) + } +} + +func (ptr *QAbstractItemView) SetSelectionBehavior(behavior QAbstractItemView__SelectionBehavior) { + if ptr.Pointer() != nil { + C.QAbstractItemView_SetSelectionBehavior(C.QtObjectPtr(ptr.Pointer()), C.int(behavior)) + } +} + +func (ptr *QAbstractItemView) SetSelectionMode(mode QAbstractItemView__SelectionMode) { + if ptr.Pointer() != nil { + C.QAbstractItemView_SetSelectionMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QAbstractItemView) SetTabKeyNavigation(enable bool) { + if ptr.Pointer() != nil { + C.QAbstractItemView_SetTabKeyNavigation(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QAbstractItemView) SetTextElideMode(mode core.Qt__TextElideMode) { + if ptr.Pointer() != nil { + C.QAbstractItemView_SetTextElideMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QAbstractItemView) SetVerticalScrollMode(mode QAbstractItemView__ScrollMode) { + if ptr.Pointer() != nil { + C.QAbstractItemView_SetVerticalScrollMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QAbstractItemView) ShowDropIndicator() bool { + if ptr.Pointer() != nil { + return C.QAbstractItemView_ShowDropIndicator(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractItemView) TabKeyNavigation() bool { + if ptr.Pointer() != nil { + return C.QAbstractItemView_TabKeyNavigation(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractItemView) TextElideMode() core.Qt__TextElideMode { + if ptr.Pointer() != nil { + return core.Qt__TextElideMode(C.QAbstractItemView_TextElideMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractItemView) VerticalScrollMode() QAbstractItemView__ScrollMode { + if ptr.Pointer() != nil { + return QAbstractItemView__ScrollMode(C.QAbstractItemView_VerticalScrollMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractItemView) ConnectActivated(f func(index core.QModelIndexITF)) { + if ptr.Pointer() != nil { + C.QAbstractItemView_ConnectActivated(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "activated", f) + } +} + +func (ptr *QAbstractItemView) DisconnectActivated() { + if ptr.Pointer() != nil { + C.QAbstractItemView_DisconnectActivated(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "activated") + } +} + +//export callbackQAbstractItemViewActivated +func callbackQAbstractItemViewActivated(ptrName *C.char, index unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "activated").(func(*core.QModelIndex))(core.QModelIndexFromPointer(index)) +} + +func (ptr *QAbstractItemView) ClearSelection() { + if ptr.Pointer() != nil { + C.QAbstractItemView_ClearSelection(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractItemView) ConnectClicked(f func(index core.QModelIndexITF)) { + if ptr.Pointer() != nil { + C.QAbstractItemView_ConnectClicked(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "clicked", f) + } +} + +func (ptr *QAbstractItemView) DisconnectClicked() { + if ptr.Pointer() != nil { + C.QAbstractItemView_DisconnectClicked(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "clicked") + } +} + +//export callbackQAbstractItemViewClicked +func callbackQAbstractItemViewClicked(ptrName *C.char, index unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "clicked").(func(*core.QModelIndex))(core.QModelIndexFromPointer(index)) +} + +func (ptr *QAbstractItemView) ClosePersistentEditor(index core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QAbstractItemView_ClosePersistentEditor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index))) + } +} + +func (ptr *QAbstractItemView) CurrentIndex() *core.QModelIndex { + if ptr.Pointer() != nil { + return core.QModelIndexFromPointer(unsafe.Pointer(C.QAbstractItemView_CurrentIndex(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAbstractItemView) ConnectDoubleClicked(f func(index core.QModelIndexITF)) { + if ptr.Pointer() != nil { + C.QAbstractItemView_ConnectDoubleClicked(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "doubleClicked", f) + } +} + +func (ptr *QAbstractItemView) DisconnectDoubleClicked() { + if ptr.Pointer() != nil { + C.QAbstractItemView_DisconnectDoubleClicked(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "doubleClicked") + } +} + +//export callbackQAbstractItemViewDoubleClicked +func callbackQAbstractItemViewDoubleClicked(ptrName *C.char, index unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "doubleClicked").(func(*core.QModelIndex))(core.QModelIndexFromPointer(index)) +} + +func (ptr *QAbstractItemView) Edit(index core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QAbstractItemView_Edit(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index))) + } +} + +func (ptr *QAbstractItemView) ConnectEntered(f func(index core.QModelIndexITF)) { + if ptr.Pointer() != nil { + C.QAbstractItemView_ConnectEntered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "entered", f) + } +} + +func (ptr *QAbstractItemView) DisconnectEntered() { + if ptr.Pointer() != nil { + C.QAbstractItemView_DisconnectEntered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "entered") + } +} + +//export callbackQAbstractItemViewEntered +func callbackQAbstractItemViewEntered(ptrName *C.char, index unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "entered").(func(*core.QModelIndex))(core.QModelIndexFromPointer(index)) +} + +func (ptr *QAbstractItemView) IndexAt(point core.QPointITF) *core.QModelIndex { + if ptr.Pointer() != nil { + return core.QModelIndexFromPointer(unsafe.Pointer(C.QAbstractItemView_IndexAt(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(point))))) + } + return nil +} + +func (ptr *QAbstractItemView) IndexWidget(index core.QModelIndexITF) *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QAbstractItemView_IndexWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index))))) + } + return nil +} + +func (ptr *QAbstractItemView) InputMethodQuery(query core.Qt__InputMethodQuery) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAbstractItemView_InputMethodQuery(C.QtObjectPtr(ptr.Pointer()), C.int(query))) + } + return "" +} + +func (ptr *QAbstractItemView) ItemDelegate() *QAbstractItemDelegate { + if ptr.Pointer() != nil { + return QAbstractItemDelegateFromPointer(unsafe.Pointer(C.QAbstractItemView_ItemDelegate(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAbstractItemView) ItemDelegate2(index core.QModelIndexITF) *QAbstractItemDelegate { + if ptr.Pointer() != nil { + return QAbstractItemDelegateFromPointer(unsafe.Pointer(C.QAbstractItemView_ItemDelegate2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index))))) + } + return nil +} + +func (ptr *QAbstractItemView) ItemDelegateForColumn(column int) *QAbstractItemDelegate { + if ptr.Pointer() != nil { + return QAbstractItemDelegateFromPointer(unsafe.Pointer(C.QAbstractItemView_ItemDelegateForColumn(C.QtObjectPtr(ptr.Pointer()), C.int(column)))) + } + return nil +} + +func (ptr *QAbstractItemView) ItemDelegateForRow(row int) *QAbstractItemDelegate { + if ptr.Pointer() != nil { + return QAbstractItemDelegateFromPointer(unsafe.Pointer(C.QAbstractItemView_ItemDelegateForRow(C.QtObjectPtr(ptr.Pointer()), C.int(row)))) + } + return nil +} + +func (ptr *QAbstractItemView) KeyboardSearch(search string) { + if ptr.Pointer() != nil { + C.QAbstractItemView_KeyboardSearch(C.QtObjectPtr(ptr.Pointer()), C.CString(search)) + } +} + +func (ptr *QAbstractItemView) Model() *core.QAbstractItemModel { + if ptr.Pointer() != nil { + return core.QAbstractItemModelFromPointer(unsafe.Pointer(C.QAbstractItemView_Model(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAbstractItemView) OpenPersistentEditor(index core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QAbstractItemView_OpenPersistentEditor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index))) + } +} + +func (ptr *QAbstractItemView) ConnectPressed(f func(index core.QModelIndexITF)) { + if ptr.Pointer() != nil { + C.QAbstractItemView_ConnectPressed(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "pressed", f) + } +} + +func (ptr *QAbstractItemView) DisconnectPressed() { + if ptr.Pointer() != nil { + C.QAbstractItemView_DisconnectPressed(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "pressed") + } +} + +//export callbackQAbstractItemViewPressed +func callbackQAbstractItemViewPressed(ptrName *C.char, index unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "pressed").(func(*core.QModelIndex))(core.QModelIndexFromPointer(index)) +} + +func (ptr *QAbstractItemView) Reset() { + if ptr.Pointer() != nil { + C.QAbstractItemView_Reset(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractItemView) RootIndex() *core.QModelIndex { + if ptr.Pointer() != nil { + return core.QModelIndexFromPointer(unsafe.Pointer(C.QAbstractItemView_RootIndex(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAbstractItemView) ScrollTo(index core.QModelIndexITF, hint QAbstractItemView__ScrollHint) { + if ptr.Pointer() != nil { + C.QAbstractItemView_ScrollTo(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index)), C.int(hint)) + } +} + +func (ptr *QAbstractItemView) ScrollToBottom() { + if ptr.Pointer() != nil { + C.QAbstractItemView_ScrollToBottom(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractItemView) ScrollToTop() { + if ptr.Pointer() != nil { + C.QAbstractItemView_ScrollToTop(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractItemView) SelectAll() { + if ptr.Pointer() != nil { + C.QAbstractItemView_SelectAll(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractItemView) SelectionModel() *core.QItemSelectionModel { + if ptr.Pointer() != nil { + return core.QItemSelectionModelFromPointer(unsafe.Pointer(C.QAbstractItemView_SelectionModel(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAbstractItemView) SetCurrentIndex(index core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QAbstractItemView_SetCurrentIndex(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index))) + } +} + +func (ptr *QAbstractItemView) SetIndexWidget(index core.QModelIndexITF, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QAbstractItemView_SetIndexWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index)), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QAbstractItemView) SetItemDelegate(delegate QAbstractItemDelegateITF) { + if ptr.Pointer() != nil { + C.QAbstractItemView_SetItemDelegate(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractItemDelegate(delegate))) + } +} + +func (ptr *QAbstractItemView) SetItemDelegateForColumn(column int, delegate QAbstractItemDelegateITF) { + if ptr.Pointer() != nil { + C.QAbstractItemView_SetItemDelegateForColumn(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.QtObjectPtr(PointerFromQAbstractItemDelegate(delegate))) + } +} + +func (ptr *QAbstractItemView) SetItemDelegateForRow(row int, delegate QAbstractItemDelegateITF) { + if ptr.Pointer() != nil { + C.QAbstractItemView_SetItemDelegateForRow(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.QtObjectPtr(PointerFromQAbstractItemDelegate(delegate))) + } +} + +func (ptr *QAbstractItemView) SetModel(model core.QAbstractItemModelITF) { + if ptr.Pointer() != nil { + C.QAbstractItemView_SetModel(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQAbstractItemModel(model))) + } +} + +func (ptr *QAbstractItemView) SetRootIndex(index core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QAbstractItemView_SetRootIndex(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index))) + } +} + +func (ptr *QAbstractItemView) SetSelectionModel(selectionModel core.QItemSelectionModelITF) { + if ptr.Pointer() != nil { + C.QAbstractItemView_SetSelectionModel(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQItemSelectionModel(selectionModel))) + } +} + +func (ptr *QAbstractItemView) SizeHintForColumn(column int) int { + if ptr.Pointer() != nil { + return int(C.QAbstractItemView_SizeHintForColumn(C.QtObjectPtr(ptr.Pointer()), C.int(column))) + } + return 0 +} + +func (ptr *QAbstractItemView) SizeHintForRow(row int) int { + if ptr.Pointer() != nil { + return int(C.QAbstractItemView_SizeHintForRow(C.QtObjectPtr(ptr.Pointer()), C.int(row))) + } + return 0 +} + +func (ptr *QAbstractItemView) Update(index core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QAbstractItemView_Update(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index))) + } +} + +func (ptr *QAbstractItemView) ConnectViewportEntered(f func()) { + if ptr.Pointer() != nil { + C.QAbstractItemView_ConnectViewportEntered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "viewportEntered", f) + } +} + +func (ptr *QAbstractItemView) DisconnectViewportEntered() { + if ptr.Pointer() != nil { + C.QAbstractItemView_DisconnectViewportEntered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "viewportEntered") + } +} + +//export callbackQAbstractItemViewViewportEntered +func callbackQAbstractItemViewViewportEntered(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "viewportEntered").(func())() +} + +func (ptr *QAbstractItemView) DestroyQAbstractItemView() { + if ptr.Pointer() != nil { + C.QAbstractItemView_DestroyQAbstractItemView(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qabstractitemview.h b/widgets/qabstractitemview.h new file mode 100755 index 00000000..0029d01f --- /dev/null +++ b/widgets/qabstractitemview.h @@ -0,0 +1,85 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QAbstractItemView_AlternatingRowColors(QtObjectPtr ptr); +int QAbstractItemView_AutoScrollMargin(QtObjectPtr ptr); +int QAbstractItemView_DefaultDropAction(QtObjectPtr ptr); +int QAbstractItemView_DragDropMode(QtObjectPtr ptr); +int QAbstractItemView_DragDropOverwriteMode(QtObjectPtr ptr); +int QAbstractItemView_DragEnabled(QtObjectPtr ptr); +int QAbstractItemView_EditTriggers(QtObjectPtr ptr); +int QAbstractItemView_HasAutoScroll(QtObjectPtr ptr); +int QAbstractItemView_HorizontalScrollMode(QtObjectPtr ptr); +int QAbstractItemView_SelectionBehavior(QtObjectPtr ptr); +int QAbstractItemView_SelectionMode(QtObjectPtr ptr); +void QAbstractItemView_SetAlternatingRowColors(QtObjectPtr ptr, int enable); +void QAbstractItemView_SetAutoScroll(QtObjectPtr ptr, int enable); +void QAbstractItemView_SetAutoScrollMargin(QtObjectPtr ptr, int margin); +void QAbstractItemView_SetDefaultDropAction(QtObjectPtr ptr, int dropAction); +void QAbstractItemView_SetDragDropMode(QtObjectPtr ptr, int behavior); +void QAbstractItemView_SetDragDropOverwriteMode(QtObjectPtr ptr, int overwrite); +void QAbstractItemView_SetDragEnabled(QtObjectPtr ptr, int enable); +void QAbstractItemView_SetDropIndicatorShown(QtObjectPtr ptr, int enable); +void QAbstractItemView_SetEditTriggers(QtObjectPtr ptr, int triggers); +void QAbstractItemView_SetHorizontalScrollMode(QtObjectPtr ptr, int mode); +void QAbstractItemView_SetIconSize(QtObjectPtr ptr, QtObjectPtr size); +void QAbstractItemView_SetSelectionBehavior(QtObjectPtr ptr, int behavior); +void QAbstractItemView_SetSelectionMode(QtObjectPtr ptr, int mode); +void QAbstractItemView_SetTabKeyNavigation(QtObjectPtr ptr, int enable); +void QAbstractItemView_SetTextElideMode(QtObjectPtr ptr, int mode); +void QAbstractItemView_SetVerticalScrollMode(QtObjectPtr ptr, int mode); +int QAbstractItemView_ShowDropIndicator(QtObjectPtr ptr); +int QAbstractItemView_TabKeyNavigation(QtObjectPtr ptr); +int QAbstractItemView_TextElideMode(QtObjectPtr ptr); +int QAbstractItemView_VerticalScrollMode(QtObjectPtr ptr); +void QAbstractItemView_ConnectActivated(QtObjectPtr ptr); +void QAbstractItemView_DisconnectActivated(QtObjectPtr ptr); +void QAbstractItemView_ClearSelection(QtObjectPtr ptr); +void QAbstractItemView_ConnectClicked(QtObjectPtr ptr); +void QAbstractItemView_DisconnectClicked(QtObjectPtr ptr); +void QAbstractItemView_ClosePersistentEditor(QtObjectPtr ptr, QtObjectPtr index); +QtObjectPtr QAbstractItemView_CurrentIndex(QtObjectPtr ptr); +void QAbstractItemView_ConnectDoubleClicked(QtObjectPtr ptr); +void QAbstractItemView_DisconnectDoubleClicked(QtObjectPtr ptr); +void QAbstractItemView_Edit(QtObjectPtr ptr, QtObjectPtr index); +void QAbstractItemView_ConnectEntered(QtObjectPtr ptr); +void QAbstractItemView_DisconnectEntered(QtObjectPtr ptr); +QtObjectPtr QAbstractItemView_IndexAt(QtObjectPtr ptr, QtObjectPtr point); +QtObjectPtr QAbstractItemView_IndexWidget(QtObjectPtr ptr, QtObjectPtr index); +char* QAbstractItemView_InputMethodQuery(QtObjectPtr ptr, int query); +QtObjectPtr QAbstractItemView_ItemDelegate(QtObjectPtr ptr); +QtObjectPtr QAbstractItemView_ItemDelegate2(QtObjectPtr ptr, QtObjectPtr index); +QtObjectPtr QAbstractItemView_ItemDelegateForColumn(QtObjectPtr ptr, int column); +QtObjectPtr QAbstractItemView_ItemDelegateForRow(QtObjectPtr ptr, int row); +void QAbstractItemView_KeyboardSearch(QtObjectPtr ptr, char* search); +QtObjectPtr QAbstractItemView_Model(QtObjectPtr ptr); +void QAbstractItemView_OpenPersistentEditor(QtObjectPtr ptr, QtObjectPtr index); +void QAbstractItemView_ConnectPressed(QtObjectPtr ptr); +void QAbstractItemView_DisconnectPressed(QtObjectPtr ptr); +void QAbstractItemView_Reset(QtObjectPtr ptr); +QtObjectPtr QAbstractItemView_RootIndex(QtObjectPtr ptr); +void QAbstractItemView_ScrollTo(QtObjectPtr ptr, QtObjectPtr index, int hint); +void QAbstractItemView_ScrollToBottom(QtObjectPtr ptr); +void QAbstractItemView_ScrollToTop(QtObjectPtr ptr); +void QAbstractItemView_SelectAll(QtObjectPtr ptr); +QtObjectPtr QAbstractItemView_SelectionModel(QtObjectPtr ptr); +void QAbstractItemView_SetCurrentIndex(QtObjectPtr ptr, QtObjectPtr index); +void QAbstractItemView_SetIndexWidget(QtObjectPtr ptr, QtObjectPtr index, QtObjectPtr widget); +void QAbstractItemView_SetItemDelegate(QtObjectPtr ptr, QtObjectPtr delegate); +void QAbstractItemView_SetItemDelegateForColumn(QtObjectPtr ptr, int column, QtObjectPtr delegate); +void QAbstractItemView_SetItemDelegateForRow(QtObjectPtr ptr, int row, QtObjectPtr delegate); +void QAbstractItemView_SetModel(QtObjectPtr ptr, QtObjectPtr model); +void QAbstractItemView_SetRootIndex(QtObjectPtr ptr, QtObjectPtr index); +void QAbstractItemView_SetSelectionModel(QtObjectPtr ptr, QtObjectPtr selectionModel); +int QAbstractItemView_SizeHintForColumn(QtObjectPtr ptr, int column); +int QAbstractItemView_SizeHintForRow(QtObjectPtr ptr, int row); +void QAbstractItemView_Update(QtObjectPtr ptr, QtObjectPtr index); +void QAbstractItemView_ConnectViewportEntered(QtObjectPtr ptr); +void QAbstractItemView_DisconnectViewportEntered(QtObjectPtr ptr); +void QAbstractItemView_DestroyQAbstractItemView(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qabstractscrollarea.cpp b/widgets/qabstractscrollarea.cpp new file mode 100755 index 00000000..e7df7677 --- /dev/null +++ b/widgets/qabstractscrollarea.cpp @@ -0,0 +1,86 @@ +#include "qabstractscrollarea.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAbstractScrollArea: public QAbstractScrollArea { +public: +}; + +int QAbstractScrollArea_HorizontalScrollBarPolicy(QtObjectPtr ptr){ + return static_cast(ptr)->horizontalScrollBarPolicy(); +} + +void QAbstractScrollArea_SetHorizontalScrollBarPolicy(QtObjectPtr ptr, int v){ + static_cast(ptr)->setHorizontalScrollBarPolicy(static_cast(v)); +} + +void QAbstractScrollArea_SetSizeAdjustPolicy(QtObjectPtr ptr, int policy){ + static_cast(ptr)->setSizeAdjustPolicy(static_cast(policy)); +} + +void QAbstractScrollArea_SetVerticalScrollBarPolicy(QtObjectPtr ptr, int v){ + static_cast(ptr)->setVerticalScrollBarPolicy(static_cast(v)); +} + +int QAbstractScrollArea_SizeAdjustPolicy(QtObjectPtr ptr){ + return static_cast(ptr)->sizeAdjustPolicy(); +} + +int QAbstractScrollArea_VerticalScrollBarPolicy(QtObjectPtr ptr){ + return static_cast(ptr)->verticalScrollBarPolicy(); +} + +QtObjectPtr QAbstractScrollArea_NewQAbstractScrollArea(QtObjectPtr parent){ + return new QAbstractScrollArea(static_cast(parent)); +} + +void QAbstractScrollArea_AddScrollBarWidget(QtObjectPtr ptr, QtObjectPtr widget, int alignment){ + static_cast(ptr)->addScrollBarWidget(static_cast(widget), static_cast(alignment)); +} + +QtObjectPtr QAbstractScrollArea_CornerWidget(QtObjectPtr ptr){ + return static_cast(ptr)->cornerWidget(); +} + +QtObjectPtr QAbstractScrollArea_HorizontalScrollBar(QtObjectPtr ptr){ + return static_cast(ptr)->horizontalScrollBar(); +} + +void QAbstractScrollArea_SetCornerWidget(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->setCornerWidget(static_cast(widget)); +} + +void QAbstractScrollArea_SetHorizontalScrollBar(QtObjectPtr ptr, QtObjectPtr scrollBar){ + static_cast(ptr)->setHorizontalScrollBar(static_cast(scrollBar)); +} + +void QAbstractScrollArea_SetVerticalScrollBar(QtObjectPtr ptr, QtObjectPtr scrollBar){ + static_cast(ptr)->setVerticalScrollBar(static_cast(scrollBar)); +} + +void QAbstractScrollArea_SetViewport(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->setViewport(static_cast(widget)); +} + +void QAbstractScrollArea_SetupViewport(QtObjectPtr ptr, QtObjectPtr viewport){ + static_cast(ptr)->setupViewport(static_cast(viewport)); +} + +QtObjectPtr QAbstractScrollArea_VerticalScrollBar(QtObjectPtr ptr){ + return static_cast(ptr)->verticalScrollBar(); +} + +QtObjectPtr QAbstractScrollArea_Viewport(QtObjectPtr ptr){ + return static_cast(ptr)->viewport(); +} + +void QAbstractScrollArea_DestroyQAbstractScrollArea(QtObjectPtr ptr){ + static_cast(ptr)->~QAbstractScrollArea(); +} + diff --git a/widgets/qabstractscrollarea.go b/widgets/qabstractscrollarea.go new file mode 100755 index 00000000..da9fdc5c --- /dev/null +++ b/widgets/qabstractscrollarea.go @@ -0,0 +1,161 @@ +package widgets + +//#include "qabstractscrollarea.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAbstractScrollArea struct { + QFrame +} + +type QAbstractScrollAreaITF interface { + QFrameITF + QAbstractScrollAreaPTR() *QAbstractScrollArea +} + +func PointerFromQAbstractScrollArea(ptr QAbstractScrollAreaITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractScrollAreaPTR().Pointer() + } + return nil +} + +func QAbstractScrollAreaFromPointer(ptr unsafe.Pointer) *QAbstractScrollArea { + var n = new(QAbstractScrollArea) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAbstractScrollArea_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAbstractScrollArea) QAbstractScrollAreaPTR() *QAbstractScrollArea { + return ptr +} + +//QAbstractScrollArea::SizeAdjustPolicy +type QAbstractScrollArea__SizeAdjustPolicy int + +var ( + QAbstractScrollArea__AdjustIgnored = QAbstractScrollArea__SizeAdjustPolicy(0) + QAbstractScrollArea__AdjustToContentsOnFirstShow = QAbstractScrollArea__SizeAdjustPolicy(1) + QAbstractScrollArea__AdjustToContents = QAbstractScrollArea__SizeAdjustPolicy(2) +) + +func (ptr *QAbstractScrollArea) HorizontalScrollBarPolicy() core.Qt__ScrollBarPolicy { + if ptr.Pointer() != nil { + return core.Qt__ScrollBarPolicy(C.QAbstractScrollArea_HorizontalScrollBarPolicy(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractScrollArea) SetHorizontalScrollBarPolicy(v core.Qt__ScrollBarPolicy) { + if ptr.Pointer() != nil { + C.QAbstractScrollArea_SetHorizontalScrollBarPolicy(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QAbstractScrollArea) SetSizeAdjustPolicy(policy QAbstractScrollArea__SizeAdjustPolicy) { + if ptr.Pointer() != nil { + C.QAbstractScrollArea_SetSizeAdjustPolicy(C.QtObjectPtr(ptr.Pointer()), C.int(policy)) + } +} + +func (ptr *QAbstractScrollArea) SetVerticalScrollBarPolicy(v core.Qt__ScrollBarPolicy) { + if ptr.Pointer() != nil { + C.QAbstractScrollArea_SetVerticalScrollBarPolicy(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QAbstractScrollArea) SizeAdjustPolicy() QAbstractScrollArea__SizeAdjustPolicy { + if ptr.Pointer() != nil { + return QAbstractScrollArea__SizeAdjustPolicy(C.QAbstractScrollArea_SizeAdjustPolicy(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractScrollArea) VerticalScrollBarPolicy() core.Qt__ScrollBarPolicy { + if ptr.Pointer() != nil { + return core.Qt__ScrollBarPolicy(C.QAbstractScrollArea_VerticalScrollBarPolicy(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQAbstractScrollArea(parent QWidgetITF) *QAbstractScrollArea { + return QAbstractScrollAreaFromPointer(unsafe.Pointer(C.QAbstractScrollArea_NewQAbstractScrollArea(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QAbstractScrollArea) AddScrollBarWidget(widget QWidgetITF, alignment core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QAbstractScrollArea_AddScrollBarWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget)), C.int(alignment)) + } +} + +func (ptr *QAbstractScrollArea) CornerWidget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QAbstractScrollArea_CornerWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAbstractScrollArea) HorizontalScrollBar() *QScrollBar { + if ptr.Pointer() != nil { + return QScrollBarFromPointer(unsafe.Pointer(C.QAbstractScrollArea_HorizontalScrollBar(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAbstractScrollArea) SetCornerWidget(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QAbstractScrollArea_SetCornerWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QAbstractScrollArea) SetHorizontalScrollBar(scrollBar QScrollBarITF) { + if ptr.Pointer() != nil { + C.QAbstractScrollArea_SetHorizontalScrollBar(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQScrollBar(scrollBar))) + } +} + +func (ptr *QAbstractScrollArea) SetVerticalScrollBar(scrollBar QScrollBarITF) { + if ptr.Pointer() != nil { + C.QAbstractScrollArea_SetVerticalScrollBar(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQScrollBar(scrollBar))) + } +} + +func (ptr *QAbstractScrollArea) SetViewport(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QAbstractScrollArea_SetViewport(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QAbstractScrollArea) SetupViewport(viewport QWidgetITF) { + if ptr.Pointer() != nil { + C.QAbstractScrollArea_SetupViewport(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(viewport))) + } +} + +func (ptr *QAbstractScrollArea) VerticalScrollBar() *QScrollBar { + if ptr.Pointer() != nil { + return QScrollBarFromPointer(unsafe.Pointer(C.QAbstractScrollArea_VerticalScrollBar(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAbstractScrollArea) Viewport() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QAbstractScrollArea_Viewport(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAbstractScrollArea) DestroyQAbstractScrollArea() { + if ptr.Pointer() != nil { + C.QAbstractScrollArea_DestroyQAbstractScrollArea(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qabstractscrollarea.h b/widgets/qabstractscrollarea.h new file mode 100755 index 00000000..b14e87ae --- /dev/null +++ b/widgets/qabstractscrollarea.h @@ -0,0 +1,27 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QAbstractScrollArea_HorizontalScrollBarPolicy(QtObjectPtr ptr); +void QAbstractScrollArea_SetHorizontalScrollBarPolicy(QtObjectPtr ptr, int v); +void QAbstractScrollArea_SetSizeAdjustPolicy(QtObjectPtr ptr, int policy); +void QAbstractScrollArea_SetVerticalScrollBarPolicy(QtObjectPtr ptr, int v); +int QAbstractScrollArea_SizeAdjustPolicy(QtObjectPtr ptr); +int QAbstractScrollArea_VerticalScrollBarPolicy(QtObjectPtr ptr); +QtObjectPtr QAbstractScrollArea_NewQAbstractScrollArea(QtObjectPtr parent); +void QAbstractScrollArea_AddScrollBarWidget(QtObjectPtr ptr, QtObjectPtr widget, int alignment); +QtObjectPtr QAbstractScrollArea_CornerWidget(QtObjectPtr ptr); +QtObjectPtr QAbstractScrollArea_HorizontalScrollBar(QtObjectPtr ptr); +void QAbstractScrollArea_SetCornerWidget(QtObjectPtr ptr, QtObjectPtr widget); +void QAbstractScrollArea_SetHorizontalScrollBar(QtObjectPtr ptr, QtObjectPtr scrollBar); +void QAbstractScrollArea_SetVerticalScrollBar(QtObjectPtr ptr, QtObjectPtr scrollBar); +void QAbstractScrollArea_SetViewport(QtObjectPtr ptr, QtObjectPtr widget); +void QAbstractScrollArea_SetupViewport(QtObjectPtr ptr, QtObjectPtr viewport); +QtObjectPtr QAbstractScrollArea_VerticalScrollBar(QtObjectPtr ptr); +QtObjectPtr QAbstractScrollArea_Viewport(QtObjectPtr ptr); +void QAbstractScrollArea_DestroyQAbstractScrollArea(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qabstractslider.cpp b/widgets/qabstractslider.cpp new file mode 100755 index 00000000..398df528 --- /dev/null +++ b/widgets/qabstractslider.cpp @@ -0,0 +1,173 @@ +#include "qabstractslider.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAbstractSlider: public QAbstractSlider { +public: +void Signal_ActionTriggered(int action){callbackQAbstractSliderActionTriggered(this->objectName().toUtf8().data(), action);}; +void Signal_RangeChanged(int min, int max){callbackQAbstractSliderRangeChanged(this->objectName().toUtf8().data(), min, max);}; +void Signal_SliderMoved(int value){callbackQAbstractSliderSliderMoved(this->objectName().toUtf8().data(), value);}; +void Signal_SliderPressed(){callbackQAbstractSliderSliderPressed(this->objectName().toUtf8().data());}; +void Signal_SliderReleased(){callbackQAbstractSliderSliderReleased(this->objectName().toUtf8().data());}; +void Signal_ValueChanged(int value){callbackQAbstractSliderValueChanged(this->objectName().toUtf8().data(), value);}; +}; + +int QAbstractSlider_HasTracking(QtObjectPtr ptr){ + return static_cast(ptr)->hasTracking(); +} + +int QAbstractSlider_InvertedAppearance(QtObjectPtr ptr){ + return static_cast(ptr)->invertedAppearance(); +} + +int QAbstractSlider_InvertedControls(QtObjectPtr ptr){ + return static_cast(ptr)->invertedControls(); +} + +int QAbstractSlider_IsSliderDown(QtObjectPtr ptr){ + return static_cast(ptr)->isSliderDown(); +} + +int QAbstractSlider_Maximum(QtObjectPtr ptr){ + return static_cast(ptr)->maximum(); +} + +int QAbstractSlider_Minimum(QtObjectPtr ptr){ + return static_cast(ptr)->minimum(); +} + +int QAbstractSlider_Orientation(QtObjectPtr ptr){ + return static_cast(ptr)->orientation(); +} + +int QAbstractSlider_PageStep(QtObjectPtr ptr){ + return static_cast(ptr)->pageStep(); +} + +void QAbstractSlider_SetInvertedAppearance(QtObjectPtr ptr, int v){ + static_cast(ptr)->setInvertedAppearance(v != 0); +} + +void QAbstractSlider_SetInvertedControls(QtObjectPtr ptr, int v){ + static_cast(ptr)->setInvertedControls(v != 0); +} + +void QAbstractSlider_SetMaximum(QtObjectPtr ptr, int v){ + static_cast(ptr)->setMaximum(v); +} + +void QAbstractSlider_SetMinimum(QtObjectPtr ptr, int v){ + static_cast(ptr)->setMinimum(v); +} + +void QAbstractSlider_SetOrientation(QtObjectPtr ptr, int v){ + QMetaObject::invokeMethod(static_cast(ptr), "setOrientation", Q_ARG(Qt::Orientation, static_cast(v))); +} + +void QAbstractSlider_SetPageStep(QtObjectPtr ptr, int v){ + static_cast(ptr)->setPageStep(v); +} + +void QAbstractSlider_SetSingleStep(QtObjectPtr ptr, int v){ + static_cast(ptr)->setSingleStep(v); +} + +void QAbstractSlider_SetSliderDown(QtObjectPtr ptr, int v){ + static_cast(ptr)->setSliderDown(v != 0); +} + +void QAbstractSlider_SetSliderPosition(QtObjectPtr ptr, int v){ + static_cast(ptr)->setSliderPosition(v); +} + +void QAbstractSlider_SetTracking(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setTracking(enable != 0); +} + +void QAbstractSlider_SetValue(QtObjectPtr ptr, int v){ + QMetaObject::invokeMethod(static_cast(ptr), "setValue", Q_ARG(int, v)); +} + +int QAbstractSlider_SingleStep(QtObjectPtr ptr){ + return static_cast(ptr)->singleStep(); +} + +int QAbstractSlider_SliderPosition(QtObjectPtr ptr){ + return static_cast(ptr)->sliderPosition(); +} + +int QAbstractSlider_Value(QtObjectPtr ptr){ + return static_cast(ptr)->value(); +} + +QtObjectPtr QAbstractSlider_NewQAbstractSlider(QtObjectPtr parent){ + return new QAbstractSlider(static_cast(parent)); +} + +void QAbstractSlider_ConnectActionTriggered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractSlider::actionTriggered), static_cast(ptr), static_cast(&MyQAbstractSlider::Signal_ActionTriggered));; +} + +void QAbstractSlider_DisconnectActionTriggered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractSlider::actionTriggered), static_cast(ptr), static_cast(&MyQAbstractSlider::Signal_ActionTriggered));; +} + +void QAbstractSlider_ConnectRangeChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractSlider::rangeChanged), static_cast(ptr), static_cast(&MyQAbstractSlider::Signal_RangeChanged));; +} + +void QAbstractSlider_DisconnectRangeChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractSlider::rangeChanged), static_cast(ptr), static_cast(&MyQAbstractSlider::Signal_RangeChanged));; +} + +void QAbstractSlider_SetRange(QtObjectPtr ptr, int min, int max){ + QMetaObject::invokeMethod(static_cast(ptr), "setRange", Q_ARG(int, min), Q_ARG(int, max)); +} + +void QAbstractSlider_ConnectSliderMoved(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractSlider::sliderMoved), static_cast(ptr), static_cast(&MyQAbstractSlider::Signal_SliderMoved));; +} + +void QAbstractSlider_DisconnectSliderMoved(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractSlider::sliderMoved), static_cast(ptr), static_cast(&MyQAbstractSlider::Signal_SliderMoved));; +} + +void QAbstractSlider_ConnectSliderPressed(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractSlider::sliderPressed), static_cast(ptr), static_cast(&MyQAbstractSlider::Signal_SliderPressed));; +} + +void QAbstractSlider_DisconnectSliderPressed(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractSlider::sliderPressed), static_cast(ptr), static_cast(&MyQAbstractSlider::Signal_SliderPressed));; +} + +void QAbstractSlider_ConnectSliderReleased(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractSlider::sliderReleased), static_cast(ptr), static_cast(&MyQAbstractSlider::Signal_SliderReleased));; +} + +void QAbstractSlider_DisconnectSliderReleased(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractSlider::sliderReleased), static_cast(ptr), static_cast(&MyQAbstractSlider::Signal_SliderReleased));; +} + +void QAbstractSlider_TriggerAction(QtObjectPtr ptr, int action){ + static_cast(ptr)->triggerAction(static_cast(action)); +} + +void QAbstractSlider_ConnectValueChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractSlider::valueChanged), static_cast(ptr), static_cast(&MyQAbstractSlider::Signal_ValueChanged));; +} + +void QAbstractSlider_DisconnectValueChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractSlider::valueChanged), static_cast(ptr), static_cast(&MyQAbstractSlider::Signal_ValueChanged));; +} + +void QAbstractSlider_DestroyQAbstractSlider(QtObjectPtr ptr){ + static_cast(ptr)->~QAbstractSlider(); +} + diff --git a/widgets/qabstractslider.go b/widgets/qabstractslider.go new file mode 100755 index 00000000..6b4efb8d --- /dev/null +++ b/widgets/qabstractslider.go @@ -0,0 +1,332 @@ +package widgets + +//#include "qabstractslider.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAbstractSlider struct { + QWidget +} + +type QAbstractSliderITF interface { + QWidgetITF + QAbstractSliderPTR() *QAbstractSlider +} + +func PointerFromQAbstractSlider(ptr QAbstractSliderITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractSliderPTR().Pointer() + } + return nil +} + +func QAbstractSliderFromPointer(ptr unsafe.Pointer) *QAbstractSlider { + var n = new(QAbstractSlider) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAbstractSlider_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAbstractSlider) QAbstractSliderPTR() *QAbstractSlider { + return ptr +} + +//QAbstractSlider::SliderAction +type QAbstractSlider__SliderAction int + +var ( + QAbstractSlider__SliderNoAction = QAbstractSlider__SliderAction(0) + QAbstractSlider__SliderSingleStepAdd = QAbstractSlider__SliderAction(1) + QAbstractSlider__SliderSingleStepSub = QAbstractSlider__SliderAction(2) + QAbstractSlider__SliderPageStepAdd = QAbstractSlider__SliderAction(3) + QAbstractSlider__SliderPageStepSub = QAbstractSlider__SliderAction(4) + QAbstractSlider__SliderToMinimum = QAbstractSlider__SliderAction(5) + QAbstractSlider__SliderToMaximum = QAbstractSlider__SliderAction(6) + QAbstractSlider__SliderMove = QAbstractSlider__SliderAction(7) +) + +func (ptr *QAbstractSlider) HasTracking() bool { + if ptr.Pointer() != nil { + return C.QAbstractSlider_HasTracking(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractSlider) InvertedAppearance() bool { + if ptr.Pointer() != nil { + return C.QAbstractSlider_InvertedAppearance(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractSlider) InvertedControls() bool { + if ptr.Pointer() != nil { + return C.QAbstractSlider_InvertedControls(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractSlider) IsSliderDown() bool { + if ptr.Pointer() != nil { + return C.QAbstractSlider_IsSliderDown(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractSlider) Maximum() int { + if ptr.Pointer() != nil { + return int(C.QAbstractSlider_Maximum(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractSlider) Minimum() int { + if ptr.Pointer() != nil { + return int(C.QAbstractSlider_Minimum(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractSlider) Orientation() core.Qt__Orientation { + if ptr.Pointer() != nil { + return core.Qt__Orientation(C.QAbstractSlider_Orientation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractSlider) PageStep() int { + if ptr.Pointer() != nil { + return int(C.QAbstractSlider_PageStep(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractSlider) SetInvertedAppearance(v bool) { + if ptr.Pointer() != nil { + C.QAbstractSlider_SetInvertedAppearance(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QAbstractSlider) SetInvertedControls(v bool) { + if ptr.Pointer() != nil { + C.QAbstractSlider_SetInvertedControls(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QAbstractSlider) SetMaximum(v int) { + if ptr.Pointer() != nil { + C.QAbstractSlider_SetMaximum(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QAbstractSlider) SetMinimum(v int) { + if ptr.Pointer() != nil { + C.QAbstractSlider_SetMinimum(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QAbstractSlider) SetOrientation(v core.Qt__Orientation) { + if ptr.Pointer() != nil { + C.QAbstractSlider_SetOrientation(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QAbstractSlider) SetPageStep(v int) { + if ptr.Pointer() != nil { + C.QAbstractSlider_SetPageStep(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QAbstractSlider) SetSingleStep(v int) { + if ptr.Pointer() != nil { + C.QAbstractSlider_SetSingleStep(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QAbstractSlider) SetSliderDown(v bool) { + if ptr.Pointer() != nil { + C.QAbstractSlider_SetSliderDown(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QAbstractSlider) SetSliderPosition(v int) { + if ptr.Pointer() != nil { + C.QAbstractSlider_SetSliderPosition(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QAbstractSlider) SetTracking(enable bool) { + if ptr.Pointer() != nil { + C.QAbstractSlider_SetTracking(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QAbstractSlider) SetValue(v int) { + if ptr.Pointer() != nil { + C.QAbstractSlider_SetValue(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QAbstractSlider) SingleStep() int { + if ptr.Pointer() != nil { + return int(C.QAbstractSlider_SingleStep(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractSlider) SliderPosition() int { + if ptr.Pointer() != nil { + return int(C.QAbstractSlider_SliderPosition(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractSlider) Value() int { + if ptr.Pointer() != nil { + return int(C.QAbstractSlider_Value(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQAbstractSlider(parent QWidgetITF) *QAbstractSlider { + return QAbstractSliderFromPointer(unsafe.Pointer(C.QAbstractSlider_NewQAbstractSlider(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QAbstractSlider) ConnectActionTriggered(f func(action int)) { + if ptr.Pointer() != nil { + C.QAbstractSlider_ConnectActionTriggered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "actionTriggered", f) + } +} + +func (ptr *QAbstractSlider) DisconnectActionTriggered() { + if ptr.Pointer() != nil { + C.QAbstractSlider_DisconnectActionTriggered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "actionTriggered") + } +} + +//export callbackQAbstractSliderActionTriggered +func callbackQAbstractSliderActionTriggered(ptrName *C.char, action C.int) { + qt.GetSignal(C.GoString(ptrName), "actionTriggered").(func(int))(int(action)) +} + +func (ptr *QAbstractSlider) ConnectRangeChanged(f func(min int, max int)) { + if ptr.Pointer() != nil { + C.QAbstractSlider_ConnectRangeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "rangeChanged", f) + } +} + +func (ptr *QAbstractSlider) DisconnectRangeChanged() { + if ptr.Pointer() != nil { + C.QAbstractSlider_DisconnectRangeChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "rangeChanged") + } +} + +//export callbackQAbstractSliderRangeChanged +func callbackQAbstractSliderRangeChanged(ptrName *C.char, min C.int, max C.int) { + qt.GetSignal(C.GoString(ptrName), "rangeChanged").(func(int, int))(int(min), int(max)) +} + +func (ptr *QAbstractSlider) SetRange(min int, max int) { + if ptr.Pointer() != nil { + C.QAbstractSlider_SetRange(C.QtObjectPtr(ptr.Pointer()), C.int(min), C.int(max)) + } +} + +func (ptr *QAbstractSlider) ConnectSliderMoved(f func(value int)) { + if ptr.Pointer() != nil { + C.QAbstractSlider_ConnectSliderMoved(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "sliderMoved", f) + } +} + +func (ptr *QAbstractSlider) DisconnectSliderMoved() { + if ptr.Pointer() != nil { + C.QAbstractSlider_DisconnectSliderMoved(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "sliderMoved") + } +} + +//export callbackQAbstractSliderSliderMoved +func callbackQAbstractSliderSliderMoved(ptrName *C.char, value C.int) { + qt.GetSignal(C.GoString(ptrName), "sliderMoved").(func(int))(int(value)) +} + +func (ptr *QAbstractSlider) ConnectSliderPressed(f func()) { + if ptr.Pointer() != nil { + C.QAbstractSlider_ConnectSliderPressed(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "sliderPressed", f) + } +} + +func (ptr *QAbstractSlider) DisconnectSliderPressed() { + if ptr.Pointer() != nil { + C.QAbstractSlider_DisconnectSliderPressed(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "sliderPressed") + } +} + +//export callbackQAbstractSliderSliderPressed +func callbackQAbstractSliderSliderPressed(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "sliderPressed").(func())() +} + +func (ptr *QAbstractSlider) ConnectSliderReleased(f func()) { + if ptr.Pointer() != nil { + C.QAbstractSlider_ConnectSliderReleased(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "sliderReleased", f) + } +} + +func (ptr *QAbstractSlider) DisconnectSliderReleased() { + if ptr.Pointer() != nil { + C.QAbstractSlider_DisconnectSliderReleased(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "sliderReleased") + } +} + +//export callbackQAbstractSliderSliderReleased +func callbackQAbstractSliderSliderReleased(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "sliderReleased").(func())() +} + +func (ptr *QAbstractSlider) TriggerAction(action QAbstractSlider__SliderAction) { + if ptr.Pointer() != nil { + C.QAbstractSlider_TriggerAction(C.QtObjectPtr(ptr.Pointer()), C.int(action)) + } +} + +func (ptr *QAbstractSlider) ConnectValueChanged(f func(value int)) { + if ptr.Pointer() != nil { + C.QAbstractSlider_ConnectValueChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "valueChanged", f) + } +} + +func (ptr *QAbstractSlider) DisconnectValueChanged() { + if ptr.Pointer() != nil { + C.QAbstractSlider_DisconnectValueChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "valueChanged") + } +} + +//export callbackQAbstractSliderValueChanged +func callbackQAbstractSliderValueChanged(ptrName *C.char, value C.int) { + qt.GetSignal(C.GoString(ptrName), "valueChanged").(func(int))(int(value)) +} + +func (ptr *QAbstractSlider) DestroyQAbstractSlider() { + if ptr.Pointer() != nil { + C.QAbstractSlider_DestroyQAbstractSlider(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qabstractslider.h b/widgets/qabstractslider.h new file mode 100755 index 00000000..86434ca2 --- /dev/null +++ b/widgets/qabstractslider.h @@ -0,0 +1,47 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QAbstractSlider_HasTracking(QtObjectPtr ptr); +int QAbstractSlider_InvertedAppearance(QtObjectPtr ptr); +int QAbstractSlider_InvertedControls(QtObjectPtr ptr); +int QAbstractSlider_IsSliderDown(QtObjectPtr ptr); +int QAbstractSlider_Maximum(QtObjectPtr ptr); +int QAbstractSlider_Minimum(QtObjectPtr ptr); +int QAbstractSlider_Orientation(QtObjectPtr ptr); +int QAbstractSlider_PageStep(QtObjectPtr ptr); +void QAbstractSlider_SetInvertedAppearance(QtObjectPtr ptr, int v); +void QAbstractSlider_SetInvertedControls(QtObjectPtr ptr, int v); +void QAbstractSlider_SetMaximum(QtObjectPtr ptr, int v); +void QAbstractSlider_SetMinimum(QtObjectPtr ptr, int v); +void QAbstractSlider_SetOrientation(QtObjectPtr ptr, int v); +void QAbstractSlider_SetPageStep(QtObjectPtr ptr, int v); +void QAbstractSlider_SetSingleStep(QtObjectPtr ptr, int v); +void QAbstractSlider_SetSliderDown(QtObjectPtr ptr, int v); +void QAbstractSlider_SetSliderPosition(QtObjectPtr ptr, int v); +void QAbstractSlider_SetTracking(QtObjectPtr ptr, int enable); +void QAbstractSlider_SetValue(QtObjectPtr ptr, int v); +int QAbstractSlider_SingleStep(QtObjectPtr ptr); +int QAbstractSlider_SliderPosition(QtObjectPtr ptr); +int QAbstractSlider_Value(QtObjectPtr ptr); +QtObjectPtr QAbstractSlider_NewQAbstractSlider(QtObjectPtr parent); +void QAbstractSlider_ConnectActionTriggered(QtObjectPtr ptr); +void QAbstractSlider_DisconnectActionTriggered(QtObjectPtr ptr); +void QAbstractSlider_ConnectRangeChanged(QtObjectPtr ptr); +void QAbstractSlider_DisconnectRangeChanged(QtObjectPtr ptr); +void QAbstractSlider_SetRange(QtObjectPtr ptr, int min, int max); +void QAbstractSlider_ConnectSliderMoved(QtObjectPtr ptr); +void QAbstractSlider_DisconnectSliderMoved(QtObjectPtr ptr); +void QAbstractSlider_ConnectSliderPressed(QtObjectPtr ptr); +void QAbstractSlider_DisconnectSliderPressed(QtObjectPtr ptr); +void QAbstractSlider_ConnectSliderReleased(QtObjectPtr ptr); +void QAbstractSlider_DisconnectSliderReleased(QtObjectPtr ptr); +void QAbstractSlider_TriggerAction(QtObjectPtr ptr, int action); +void QAbstractSlider_ConnectValueChanged(QtObjectPtr ptr); +void QAbstractSlider_DisconnectValueChanged(QtObjectPtr ptr); +void QAbstractSlider_DestroyQAbstractSlider(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qabstractspinbox.cpp b/widgets/qabstractspinbox.cpp new file mode 100755 index 00000000..e94ac2b2 --- /dev/null +++ b/widgets/qabstractspinbox.cpp @@ -0,0 +1,153 @@ +#include "qabstractspinbox.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAbstractSpinBox: public QAbstractSpinBox { +public: +void Signal_EditingFinished(){callbackQAbstractSpinBoxEditingFinished(this->objectName().toUtf8().data());}; +}; + +int QAbstractSpinBox_Alignment(QtObjectPtr ptr){ + return static_cast(ptr)->alignment(); +} + +int QAbstractSpinBox_ButtonSymbols(QtObjectPtr ptr){ + return static_cast(ptr)->buttonSymbols(); +} + +int QAbstractSpinBox_CorrectionMode(QtObjectPtr ptr){ + return static_cast(ptr)->correctionMode(); +} + +int QAbstractSpinBox_HasAcceptableInput(QtObjectPtr ptr){ + return static_cast(ptr)->hasAcceptableInput(); +} + +int QAbstractSpinBox_HasFrame(QtObjectPtr ptr){ + return static_cast(ptr)->hasFrame(); +} + +int QAbstractSpinBox_IsAccelerated(QtObjectPtr ptr){ + return static_cast(ptr)->isAccelerated(); +} + +int QAbstractSpinBox_IsGroupSeparatorShown(QtObjectPtr ptr){ + return static_cast(ptr)->isGroupSeparatorShown(); +} + +int QAbstractSpinBox_IsReadOnly(QtObjectPtr ptr){ + return static_cast(ptr)->isReadOnly(); +} + +int QAbstractSpinBox_KeyboardTracking(QtObjectPtr ptr){ + return static_cast(ptr)->keyboardTracking(); +} + +void QAbstractSpinBox_SetAccelerated(QtObjectPtr ptr, int on){ + static_cast(ptr)->setAccelerated(on != 0); +} + +void QAbstractSpinBox_SetAlignment(QtObjectPtr ptr, int flag){ + static_cast(ptr)->setAlignment(static_cast(flag)); +} + +void QAbstractSpinBox_SetButtonSymbols(QtObjectPtr ptr, int bs){ + static_cast(ptr)->setButtonSymbols(static_cast(bs)); +} + +void QAbstractSpinBox_SetCorrectionMode(QtObjectPtr ptr, int cm){ + static_cast(ptr)->setCorrectionMode(static_cast(cm)); +} + +void QAbstractSpinBox_SetFrame(QtObjectPtr ptr, int v){ + static_cast(ptr)->setFrame(v != 0); +} + +void QAbstractSpinBox_SetGroupSeparatorShown(QtObjectPtr ptr, int shown){ + static_cast(ptr)->setGroupSeparatorShown(shown != 0); +} + +void QAbstractSpinBox_SetKeyboardTracking(QtObjectPtr ptr, int kt){ + static_cast(ptr)->setKeyboardTracking(kt != 0); +} + +void QAbstractSpinBox_SetReadOnly(QtObjectPtr ptr, int r){ + static_cast(ptr)->setReadOnly(r != 0); +} + +void QAbstractSpinBox_SetSpecialValueText(QtObjectPtr ptr, char* txt){ + static_cast(ptr)->setSpecialValueText(QString(txt)); +} + +void QAbstractSpinBox_SetWrapping(QtObjectPtr ptr, int w){ + static_cast(ptr)->setWrapping(w != 0); +} + +char* QAbstractSpinBox_SpecialValueText(QtObjectPtr ptr){ + return static_cast(ptr)->specialValueText().toUtf8().data(); +} + +char* QAbstractSpinBox_Text(QtObjectPtr ptr){ + return static_cast(ptr)->text().toUtf8().data(); +} + +int QAbstractSpinBox_Wrapping(QtObjectPtr ptr){ + return static_cast(ptr)->wrapping(); +} + +QtObjectPtr QAbstractSpinBox_NewQAbstractSpinBox(QtObjectPtr parent){ + return new QAbstractSpinBox(static_cast(parent)); +} + +void QAbstractSpinBox_Clear(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "clear"); +} + +void QAbstractSpinBox_ConnectEditingFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAbstractSpinBox::editingFinished), static_cast(ptr), static_cast(&MyQAbstractSpinBox::Signal_EditingFinished));; +} + +void QAbstractSpinBox_DisconnectEditingFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAbstractSpinBox::editingFinished), static_cast(ptr), static_cast(&MyQAbstractSpinBox::Signal_EditingFinished));; +} + +int QAbstractSpinBox_Event(QtObjectPtr ptr, QtObjectPtr event){ + return static_cast(ptr)->event(static_cast(event)); +} + +char* QAbstractSpinBox_InputMethodQuery(QtObjectPtr ptr, int query){ + return static_cast(ptr)->inputMethodQuery(static_cast(query)).toString().toUtf8().data(); +} + +void QAbstractSpinBox_InterpretText(QtObjectPtr ptr){ + static_cast(ptr)->interpretText(); +} + +void QAbstractSpinBox_SelectAll(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "selectAll"); +} + +void QAbstractSpinBox_StepBy(QtObjectPtr ptr, int steps){ + static_cast(ptr)->stepBy(steps); +} + +void QAbstractSpinBox_StepDown(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "stepDown"); +} + +void QAbstractSpinBox_StepUp(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "stepUp"); +} + +void QAbstractSpinBox_DestroyQAbstractSpinBox(QtObjectPtr ptr){ + static_cast(ptr)->~QAbstractSpinBox(); +} + diff --git a/widgets/qabstractspinbox.go b/widgets/qabstractspinbox.go new file mode 100755 index 00000000..22b951ce --- /dev/null +++ b/widgets/qabstractspinbox.go @@ -0,0 +1,288 @@ +package widgets + +//#include "qabstractspinbox.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAbstractSpinBox struct { + QWidget +} + +type QAbstractSpinBoxITF interface { + QWidgetITF + QAbstractSpinBoxPTR() *QAbstractSpinBox +} + +func PointerFromQAbstractSpinBox(ptr QAbstractSpinBoxITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractSpinBoxPTR().Pointer() + } + return nil +} + +func QAbstractSpinBoxFromPointer(ptr unsafe.Pointer) *QAbstractSpinBox { + var n = new(QAbstractSpinBox) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAbstractSpinBox_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAbstractSpinBox) QAbstractSpinBoxPTR() *QAbstractSpinBox { + return ptr +} + +//QAbstractSpinBox::ButtonSymbols +type QAbstractSpinBox__ButtonSymbols int + +var ( + QAbstractSpinBox__UpDownArrows = QAbstractSpinBox__ButtonSymbols(0) + QAbstractSpinBox__PlusMinus = QAbstractSpinBox__ButtonSymbols(1) + QAbstractSpinBox__NoButtons = QAbstractSpinBox__ButtonSymbols(2) +) + +//QAbstractSpinBox::CorrectionMode +type QAbstractSpinBox__CorrectionMode int + +var ( + QAbstractSpinBox__CorrectToPreviousValue = QAbstractSpinBox__CorrectionMode(0) + QAbstractSpinBox__CorrectToNearestValue = QAbstractSpinBox__CorrectionMode(1) +) + +//QAbstractSpinBox::StepEnabledFlag +type QAbstractSpinBox__StepEnabledFlag int + +var ( + QAbstractSpinBox__StepNone = QAbstractSpinBox__StepEnabledFlag(0x00) + QAbstractSpinBox__StepUpEnabled = QAbstractSpinBox__StepEnabledFlag(0x01) + QAbstractSpinBox__StepDownEnabled = QAbstractSpinBox__StepEnabledFlag(0x02) +) + +func (ptr *QAbstractSpinBox) Alignment() core.Qt__AlignmentFlag { + if ptr.Pointer() != nil { + return core.Qt__AlignmentFlag(C.QAbstractSpinBox_Alignment(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractSpinBox) ButtonSymbols() QAbstractSpinBox__ButtonSymbols { + if ptr.Pointer() != nil { + return QAbstractSpinBox__ButtonSymbols(C.QAbstractSpinBox_ButtonSymbols(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractSpinBox) CorrectionMode() QAbstractSpinBox__CorrectionMode { + if ptr.Pointer() != nil { + return QAbstractSpinBox__CorrectionMode(C.QAbstractSpinBox_CorrectionMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAbstractSpinBox) HasAcceptableInput() bool { + if ptr.Pointer() != nil { + return C.QAbstractSpinBox_HasAcceptableInput(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractSpinBox) HasFrame() bool { + if ptr.Pointer() != nil { + return C.QAbstractSpinBox_HasFrame(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractSpinBox) IsAccelerated() bool { + if ptr.Pointer() != nil { + return C.QAbstractSpinBox_IsAccelerated(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractSpinBox) IsGroupSeparatorShown() bool { + if ptr.Pointer() != nil { + return C.QAbstractSpinBox_IsGroupSeparatorShown(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractSpinBox) IsReadOnly() bool { + if ptr.Pointer() != nil { + return C.QAbstractSpinBox_IsReadOnly(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractSpinBox) KeyboardTracking() bool { + if ptr.Pointer() != nil { + return C.QAbstractSpinBox_KeyboardTracking(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAbstractSpinBox) SetAccelerated(on bool) { + if ptr.Pointer() != nil { + C.QAbstractSpinBox_SetAccelerated(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(on))) + } +} + +func (ptr *QAbstractSpinBox) SetAlignment(flag core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QAbstractSpinBox_SetAlignment(C.QtObjectPtr(ptr.Pointer()), C.int(flag)) + } +} + +func (ptr *QAbstractSpinBox) SetButtonSymbols(bs QAbstractSpinBox__ButtonSymbols) { + if ptr.Pointer() != nil { + C.QAbstractSpinBox_SetButtonSymbols(C.QtObjectPtr(ptr.Pointer()), C.int(bs)) + } +} + +func (ptr *QAbstractSpinBox) SetCorrectionMode(cm QAbstractSpinBox__CorrectionMode) { + if ptr.Pointer() != nil { + C.QAbstractSpinBox_SetCorrectionMode(C.QtObjectPtr(ptr.Pointer()), C.int(cm)) + } +} + +func (ptr *QAbstractSpinBox) SetFrame(v bool) { + if ptr.Pointer() != nil { + C.QAbstractSpinBox_SetFrame(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QAbstractSpinBox) SetGroupSeparatorShown(shown bool) { + if ptr.Pointer() != nil { + C.QAbstractSpinBox_SetGroupSeparatorShown(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(shown))) + } +} + +func (ptr *QAbstractSpinBox) SetKeyboardTracking(kt bool) { + if ptr.Pointer() != nil { + C.QAbstractSpinBox_SetKeyboardTracking(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(kt))) + } +} + +func (ptr *QAbstractSpinBox) SetReadOnly(r bool) { + if ptr.Pointer() != nil { + C.QAbstractSpinBox_SetReadOnly(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(r))) + } +} + +func (ptr *QAbstractSpinBox) SetSpecialValueText(txt string) { + if ptr.Pointer() != nil { + C.QAbstractSpinBox_SetSpecialValueText(C.QtObjectPtr(ptr.Pointer()), C.CString(txt)) + } +} + +func (ptr *QAbstractSpinBox) SetWrapping(w bool) { + if ptr.Pointer() != nil { + C.QAbstractSpinBox_SetWrapping(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(w))) + } +} + +func (ptr *QAbstractSpinBox) SpecialValueText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAbstractSpinBox_SpecialValueText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAbstractSpinBox) Text() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAbstractSpinBox_Text(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAbstractSpinBox) Wrapping() bool { + if ptr.Pointer() != nil { + return C.QAbstractSpinBox_Wrapping(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func NewQAbstractSpinBox(parent QWidgetITF) *QAbstractSpinBox { + return QAbstractSpinBoxFromPointer(unsafe.Pointer(C.QAbstractSpinBox_NewQAbstractSpinBox(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QAbstractSpinBox) Clear() { + if ptr.Pointer() != nil { + C.QAbstractSpinBox_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractSpinBox) ConnectEditingFinished(f func()) { + if ptr.Pointer() != nil { + C.QAbstractSpinBox_ConnectEditingFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "editingFinished", f) + } +} + +func (ptr *QAbstractSpinBox) DisconnectEditingFinished() { + if ptr.Pointer() != nil { + C.QAbstractSpinBox_DisconnectEditingFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "editingFinished") + } +} + +//export callbackQAbstractSpinBoxEditingFinished +func callbackQAbstractSpinBoxEditingFinished(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "editingFinished").(func())() +} + +func (ptr *QAbstractSpinBox) Event(event core.QEventITF) bool { + if ptr.Pointer() != nil { + return C.QAbstractSpinBox_Event(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQEvent(event))) != 0 + } + return false +} + +func (ptr *QAbstractSpinBox) InputMethodQuery(query core.Qt__InputMethodQuery) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAbstractSpinBox_InputMethodQuery(C.QtObjectPtr(ptr.Pointer()), C.int(query))) + } + return "" +} + +func (ptr *QAbstractSpinBox) InterpretText() { + if ptr.Pointer() != nil { + C.QAbstractSpinBox_InterpretText(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractSpinBox) SelectAll() { + if ptr.Pointer() != nil { + C.QAbstractSpinBox_SelectAll(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractSpinBox) StepBy(steps int) { + if ptr.Pointer() != nil { + C.QAbstractSpinBox_StepBy(C.QtObjectPtr(ptr.Pointer()), C.int(steps)) + } +} + +func (ptr *QAbstractSpinBox) StepDown() { + if ptr.Pointer() != nil { + C.QAbstractSpinBox_StepDown(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractSpinBox) StepUp() { + if ptr.Pointer() != nil { + C.QAbstractSpinBox_StepUp(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractSpinBox) DestroyQAbstractSpinBox() { + if ptr.Pointer() != nil { + C.QAbstractSpinBox_DestroyQAbstractSpinBox(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qabstractspinbox.h b/widgets/qabstractspinbox.h new file mode 100755 index 00000000..a523d6d6 --- /dev/null +++ b/widgets/qabstractspinbox.h @@ -0,0 +1,43 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QAbstractSpinBox_Alignment(QtObjectPtr ptr); +int QAbstractSpinBox_ButtonSymbols(QtObjectPtr ptr); +int QAbstractSpinBox_CorrectionMode(QtObjectPtr ptr); +int QAbstractSpinBox_HasAcceptableInput(QtObjectPtr ptr); +int QAbstractSpinBox_HasFrame(QtObjectPtr ptr); +int QAbstractSpinBox_IsAccelerated(QtObjectPtr ptr); +int QAbstractSpinBox_IsGroupSeparatorShown(QtObjectPtr ptr); +int QAbstractSpinBox_IsReadOnly(QtObjectPtr ptr); +int QAbstractSpinBox_KeyboardTracking(QtObjectPtr ptr); +void QAbstractSpinBox_SetAccelerated(QtObjectPtr ptr, int on); +void QAbstractSpinBox_SetAlignment(QtObjectPtr ptr, int flag); +void QAbstractSpinBox_SetButtonSymbols(QtObjectPtr ptr, int bs); +void QAbstractSpinBox_SetCorrectionMode(QtObjectPtr ptr, int cm); +void QAbstractSpinBox_SetFrame(QtObjectPtr ptr, int v); +void QAbstractSpinBox_SetGroupSeparatorShown(QtObjectPtr ptr, int shown); +void QAbstractSpinBox_SetKeyboardTracking(QtObjectPtr ptr, int kt); +void QAbstractSpinBox_SetReadOnly(QtObjectPtr ptr, int r); +void QAbstractSpinBox_SetSpecialValueText(QtObjectPtr ptr, char* txt); +void QAbstractSpinBox_SetWrapping(QtObjectPtr ptr, int w); +char* QAbstractSpinBox_SpecialValueText(QtObjectPtr ptr); +char* QAbstractSpinBox_Text(QtObjectPtr ptr); +int QAbstractSpinBox_Wrapping(QtObjectPtr ptr); +QtObjectPtr QAbstractSpinBox_NewQAbstractSpinBox(QtObjectPtr parent); +void QAbstractSpinBox_Clear(QtObjectPtr ptr); +void QAbstractSpinBox_ConnectEditingFinished(QtObjectPtr ptr); +void QAbstractSpinBox_DisconnectEditingFinished(QtObjectPtr ptr); +int QAbstractSpinBox_Event(QtObjectPtr ptr, QtObjectPtr event); +char* QAbstractSpinBox_InputMethodQuery(QtObjectPtr ptr, int query); +void QAbstractSpinBox_InterpretText(QtObjectPtr ptr); +void QAbstractSpinBox_SelectAll(QtObjectPtr ptr); +void QAbstractSpinBox_StepBy(QtObjectPtr ptr, int steps); +void QAbstractSpinBox_StepDown(QtObjectPtr ptr); +void QAbstractSpinBox_StepUp(QtObjectPtr ptr); +void QAbstractSpinBox_DestroyQAbstractSpinBox(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qaccessiblewidget.cpp b/widgets/qaccessiblewidget.cpp new file mode 100755 index 00000000..bfbf3b27 --- /dev/null +++ b/widgets/qaccessiblewidget.cpp @@ -0,0 +1,71 @@ +#include "qaccessiblewidget.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAccessibleWidget: public QAccessibleWidget { +public: +}; + +QtObjectPtr QAccessibleWidget_NewQAccessibleWidget(QtObjectPtr w, int role, char* name){ + return new QAccessibleWidget(static_cast(w), static_cast(role), QString(name)); +} + +char* QAccessibleWidget_ActionNames(QtObjectPtr ptr){ + return static_cast(ptr)->actionNames().join("|").toUtf8().data(); +} + +QtObjectPtr QAccessibleWidget_Child(QtObjectPtr ptr, int index){ + return static_cast(ptr)->child(index); +} + +int QAccessibleWidget_ChildCount(QtObjectPtr ptr){ + return static_cast(ptr)->childCount(); +} + +void QAccessibleWidget_DoAction(QtObjectPtr ptr, char* actionName){ + static_cast(ptr)->doAction(QString(actionName)); +} + +QtObjectPtr QAccessibleWidget_FocusChild(QtObjectPtr ptr){ + return static_cast(ptr)->focusChild(); +} + +int QAccessibleWidget_IndexOfChild(QtObjectPtr ptr, QtObjectPtr child){ + return static_cast(ptr)->indexOfChild(static_cast(child)); +} + +void QAccessibleWidget_Interface_cast(QtObjectPtr ptr, int t){ + static_cast(ptr)->interface_cast(static_cast(t)); +} + +int QAccessibleWidget_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +char* QAccessibleWidget_KeyBindingsForAction(QtObjectPtr ptr, char* actionName){ + return static_cast(ptr)->keyBindingsForAction(QString(actionName)).join("|").toUtf8().data(); +} + +QtObjectPtr QAccessibleWidget_Parent(QtObjectPtr ptr){ + return static_cast(ptr)->parent(); +} + +int QAccessibleWidget_Role(QtObjectPtr ptr){ + return static_cast(ptr)->role(); +} + +char* QAccessibleWidget_Text(QtObjectPtr ptr, int t){ + return static_cast(ptr)->text(static_cast(t)).toUtf8().data(); +} + +QtObjectPtr QAccessibleWidget_Window(QtObjectPtr ptr){ + return static_cast(ptr)->window(); +} + diff --git a/widgets/qaccessiblewidget.go b/widgets/qaccessiblewidget.go new file mode 100755 index 00000000..5a0952a9 --- /dev/null +++ b/widgets/qaccessiblewidget.go @@ -0,0 +1,139 @@ +package widgets + +//#include "qaccessiblewidget.h" +import "C" +import ( + "github.com/therecipe/qt/gui" + "strings" + "unsafe" +) + +type QAccessibleWidget struct { + gui.QAccessibleObject + gui.QAccessibleActionInterface +} + +type QAccessibleWidgetITF interface { + gui.QAccessibleObjectITF + gui.QAccessibleActionInterfaceITF + QAccessibleWidgetPTR() *QAccessibleWidget +} + +func (p *QAccessibleWidget) Pointer() unsafe.Pointer { + return p.QAccessibleObjectPTR().Pointer() +} + +func (p *QAccessibleWidget) SetPointer(ptr unsafe.Pointer) { + p.QAccessibleObjectPTR().SetPointer(ptr) + p.QAccessibleActionInterfacePTR().SetPointer(ptr) +} + +func PointerFromQAccessibleWidget(ptr QAccessibleWidgetITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAccessibleWidgetPTR().Pointer() + } + return nil +} + +func QAccessibleWidgetFromPointer(ptr unsafe.Pointer) *QAccessibleWidget { + var n = new(QAccessibleWidget) + n.SetPointer(ptr) + return n +} + +func (ptr *QAccessibleWidget) QAccessibleWidgetPTR() *QAccessibleWidget { + return ptr +} + +func NewQAccessibleWidget(w QWidgetITF, role gui.QAccessible__Role, name string) *QAccessibleWidget { + return QAccessibleWidgetFromPointer(unsafe.Pointer(C.QAccessibleWidget_NewQAccessibleWidget(C.QtObjectPtr(PointerFromQWidget(w)), C.int(role), C.CString(name)))) +} + +func (ptr *QAccessibleWidget) ActionNames() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QAccessibleWidget_ActionNames(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QAccessibleWidget) Child(index int) *gui.QAccessibleInterface { + if ptr.Pointer() != nil { + return gui.QAccessibleInterfaceFromPointer(unsafe.Pointer(C.QAccessibleWidget_Child(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QAccessibleWidget) ChildCount() int { + if ptr.Pointer() != nil { + return int(C.QAccessibleWidget_ChildCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleWidget) DoAction(actionName string) { + if ptr.Pointer() != nil { + C.QAccessibleWidget_DoAction(C.QtObjectPtr(ptr.Pointer()), C.CString(actionName)) + } +} + +func (ptr *QAccessibleWidget) FocusChild() *gui.QAccessibleInterface { + if ptr.Pointer() != nil { + return gui.QAccessibleInterfaceFromPointer(unsafe.Pointer(C.QAccessibleWidget_FocusChild(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAccessibleWidget) IndexOfChild(child gui.QAccessibleInterfaceITF) int { + if ptr.Pointer() != nil { + return int(C.QAccessibleWidget_IndexOfChild(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQAccessibleInterface(child)))) + } + return 0 +} + +func (ptr *QAccessibleWidget) Interface_cast(t gui.QAccessible__InterfaceType) { + if ptr.Pointer() != nil { + C.QAccessibleWidget_Interface_cast(C.QtObjectPtr(ptr.Pointer()), C.int(t)) + } +} + +func (ptr *QAccessibleWidget) IsValid() bool { + if ptr.Pointer() != nil { + return C.QAccessibleWidget_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAccessibleWidget) KeyBindingsForAction(actionName string) []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QAccessibleWidget_KeyBindingsForAction(C.QtObjectPtr(ptr.Pointer()), C.CString(actionName))), "|") + } + return make([]string, 0) +} + +func (ptr *QAccessibleWidget) Parent() *gui.QAccessibleInterface { + if ptr.Pointer() != nil { + return gui.QAccessibleInterfaceFromPointer(unsafe.Pointer(C.QAccessibleWidget_Parent(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAccessibleWidget) Role() gui.QAccessible__Role { + if ptr.Pointer() != nil { + return gui.QAccessible__Role(C.QAccessibleWidget_Role(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAccessibleWidget) Text(t gui.QAccessible__Text) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAccessibleWidget_Text(C.QtObjectPtr(ptr.Pointer()), C.int(t))) + } + return "" +} + +func (ptr *QAccessibleWidget) Window() *gui.QWindow { + if ptr.Pointer() != nil { + return gui.QWindowFromPointer(unsafe.Pointer(C.QAccessibleWidget_Window(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} diff --git a/widgets/qaccessiblewidget.h b/widgets/qaccessiblewidget.h new file mode 100755 index 00000000..a2ce0714 --- /dev/null +++ b/widgets/qaccessiblewidget.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QAccessibleWidget_NewQAccessibleWidget(QtObjectPtr w, int role, char* name); +char* QAccessibleWidget_ActionNames(QtObjectPtr ptr); +QtObjectPtr QAccessibleWidget_Child(QtObjectPtr ptr, int index); +int QAccessibleWidget_ChildCount(QtObjectPtr ptr); +void QAccessibleWidget_DoAction(QtObjectPtr ptr, char* actionName); +QtObjectPtr QAccessibleWidget_FocusChild(QtObjectPtr ptr); +int QAccessibleWidget_IndexOfChild(QtObjectPtr ptr, QtObjectPtr child); +void QAccessibleWidget_Interface_cast(QtObjectPtr ptr, int t); +int QAccessibleWidget_IsValid(QtObjectPtr ptr); +char* QAccessibleWidget_KeyBindingsForAction(QtObjectPtr ptr, char* actionName); +QtObjectPtr QAccessibleWidget_Parent(QtObjectPtr ptr); +int QAccessibleWidget_Role(QtObjectPtr ptr); +char* QAccessibleWidget_Text(QtObjectPtr ptr, int t); +QtObjectPtr QAccessibleWidget_Window(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qaction.cpp b/widgets/qaction.cpp new file mode 100755 index 00000000..ca7b6e16 --- /dev/null +++ b/widgets/qaction.cpp @@ -0,0 +1,260 @@ +#include "qaction.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAction: public QAction { +public: +void Signal_Changed(){callbackQActionChanged(this->objectName().toUtf8().data());}; +void Signal_Hovered(){callbackQActionHovered(this->objectName().toUtf8().data());}; +void Signal_Toggled(bool checked){callbackQActionToggled(this->objectName().toUtf8().data(), checked);}; +void Signal_Triggered(bool checked){callbackQActionTriggered(this->objectName().toUtf8().data(), checked);}; +}; + +int QAction_AutoRepeat(QtObjectPtr ptr){ + return static_cast(ptr)->autoRepeat(); +} + +char* QAction_IconText(QtObjectPtr ptr){ + return static_cast(ptr)->iconText().toUtf8().data(); +} + +int QAction_IsCheckable(QtObjectPtr ptr){ + return static_cast(ptr)->isCheckable(); +} + +int QAction_IsChecked(QtObjectPtr ptr){ + return static_cast(ptr)->isChecked(); +} + +int QAction_IsEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isEnabled(); +} + +int QAction_IsIconVisibleInMenu(QtObjectPtr ptr){ + return static_cast(ptr)->isIconVisibleInMenu(); +} + +int QAction_IsVisible(QtObjectPtr ptr){ + return static_cast(ptr)->isVisible(); +} + +int QAction_MenuRole(QtObjectPtr ptr){ + return static_cast(ptr)->menuRole(); +} + +int QAction_Priority(QtObjectPtr ptr){ + return static_cast(ptr)->priority(); +} + +void QAction_SetAutoRepeat(QtObjectPtr ptr, int v){ + static_cast(ptr)->setAutoRepeat(v != 0); +} + +void QAction_SetCheckable(QtObjectPtr ptr, int v){ + static_cast(ptr)->setCheckable(v != 0); +} + +void QAction_SetChecked(QtObjectPtr ptr, int v){ + QMetaObject::invokeMethod(static_cast(ptr), "setChecked", Q_ARG(bool, v != 0)); +} + +void QAction_SetData(QtObjectPtr ptr, char* userData){ + static_cast(ptr)->setData(QVariant(userData)); +} + +void QAction_SetEnabled(QtObjectPtr ptr, int v){ + QMetaObject::invokeMethod(static_cast(ptr), "setEnabled", Q_ARG(bool, v != 0)); +} + +void QAction_SetFont(QtObjectPtr ptr, QtObjectPtr font){ + static_cast(ptr)->setFont(*static_cast(font)); +} + +void QAction_SetIcon(QtObjectPtr ptr, QtObjectPtr icon){ + static_cast(ptr)->setIcon(*static_cast(icon)); +} + +void QAction_SetIconText(QtObjectPtr ptr, char* text){ + static_cast(ptr)->setIconText(QString(text)); +} + +void QAction_SetIconVisibleInMenu(QtObjectPtr ptr, int visible){ + static_cast(ptr)->setIconVisibleInMenu(visible != 0); +} + +void QAction_SetMenuRole(QtObjectPtr ptr, int menuRole){ + static_cast(ptr)->setMenuRole(static_cast(menuRole)); +} + +void QAction_SetPriority(QtObjectPtr ptr, int priority){ + static_cast(ptr)->setPriority(static_cast(priority)); +} + +void QAction_SetShortcut(QtObjectPtr ptr, QtObjectPtr shortcut){ + static_cast(ptr)->setShortcut(*static_cast(shortcut)); +} + +void QAction_SetShortcutContext(QtObjectPtr ptr, int context){ + static_cast(ptr)->setShortcutContext(static_cast(context)); +} + +void QAction_SetStatusTip(QtObjectPtr ptr, char* statusTip){ + static_cast(ptr)->setStatusTip(QString(statusTip)); +} + +void QAction_SetText(QtObjectPtr ptr, char* text){ + static_cast(ptr)->setText(QString(text)); +} + +void QAction_SetToolTip(QtObjectPtr ptr, char* tip){ + static_cast(ptr)->setToolTip(QString(tip)); +} + +void QAction_SetVisible(QtObjectPtr ptr, int v){ + QMetaObject::invokeMethod(static_cast(ptr), "setVisible", Q_ARG(bool, v != 0)); +} + +void QAction_SetWhatsThis(QtObjectPtr ptr, char* what){ + static_cast(ptr)->setWhatsThis(QString(what)); +} + +int QAction_ShortcutContext(QtObjectPtr ptr){ + return static_cast(ptr)->shortcutContext(); +} + +char* QAction_StatusTip(QtObjectPtr ptr){ + return static_cast(ptr)->statusTip().toUtf8().data(); +} + +char* QAction_Text(QtObjectPtr ptr){ + return static_cast(ptr)->text().toUtf8().data(); +} + +void QAction_Toggle(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "toggle"); +} + +char* QAction_ToolTip(QtObjectPtr ptr){ + return static_cast(ptr)->toolTip().toUtf8().data(); +} + +char* QAction_WhatsThis(QtObjectPtr ptr){ + return static_cast(ptr)->whatsThis().toUtf8().data(); +} + +QtObjectPtr QAction_NewQAction(QtObjectPtr parent){ + return new QAction(static_cast(parent)); +} + +QtObjectPtr QAction_NewQAction3(QtObjectPtr icon, char* text, QtObjectPtr parent){ + return new QAction(*static_cast(icon), QString(text), static_cast(parent)); +} + +QtObjectPtr QAction_NewQAction2(char* text, QtObjectPtr parent){ + return new QAction(QString(text), static_cast(parent)); +} + +QtObjectPtr QAction_ActionGroup(QtObjectPtr ptr){ + return static_cast(ptr)->actionGroup(); +} + +void QAction_Activate(QtObjectPtr ptr, int event){ + static_cast(ptr)->activate(static_cast(event)); +} + +void QAction_ConnectChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAction::changed), static_cast(ptr), static_cast(&MyQAction::Signal_Changed));; +} + +void QAction_DisconnectChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAction::changed), static_cast(ptr), static_cast(&MyQAction::Signal_Changed));; +} + +char* QAction_Data(QtObjectPtr ptr){ + return static_cast(ptr)->data().toString().toUtf8().data(); +} + +void QAction_Hover(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "hover"); +} + +void QAction_ConnectHovered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAction::hovered), static_cast(ptr), static_cast(&MyQAction::Signal_Hovered));; +} + +void QAction_DisconnectHovered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAction::hovered), static_cast(ptr), static_cast(&MyQAction::Signal_Hovered));; +} + +int QAction_IsSeparator(QtObjectPtr ptr){ + return static_cast(ptr)->isSeparator(); +} + +QtObjectPtr QAction_Menu(QtObjectPtr ptr){ + return static_cast(ptr)->menu(); +} + +QtObjectPtr QAction_ParentWidget(QtObjectPtr ptr){ + return static_cast(ptr)->parentWidget(); +} + +void QAction_SetActionGroup(QtObjectPtr ptr, QtObjectPtr group){ + static_cast(ptr)->setActionGroup(static_cast(group)); +} + +void QAction_SetDisabled(QtObjectPtr ptr, int b){ + QMetaObject::invokeMethod(static_cast(ptr), "setDisabled", Q_ARG(bool, b != 0)); +} + +void QAction_SetMenu(QtObjectPtr ptr, QtObjectPtr menu){ + static_cast(ptr)->setMenu(static_cast(menu)); +} + +void QAction_SetSeparator(QtObjectPtr ptr, int b){ + static_cast(ptr)->setSeparator(b != 0); +} + +void QAction_SetShortcuts2(QtObjectPtr ptr, int key){ + static_cast(ptr)->setShortcuts(static_cast(key)); +} + +int QAction_ShowStatusText(QtObjectPtr ptr, QtObjectPtr widget){ + return static_cast(ptr)->showStatusText(static_cast(widget)); +} + +void QAction_ConnectToggled(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAction::toggled), static_cast(ptr), static_cast(&MyQAction::Signal_Toggled));; +} + +void QAction_DisconnectToggled(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAction::toggled), static_cast(ptr), static_cast(&MyQAction::Signal_Toggled));; +} + +void QAction_Trigger(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "trigger"); +} + +void QAction_ConnectTriggered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QAction::triggered), static_cast(ptr), static_cast(&MyQAction::Signal_Triggered));; +} + +void QAction_DisconnectTriggered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QAction::triggered), static_cast(ptr), static_cast(&MyQAction::Signal_Triggered));; +} + +void QAction_DestroyQAction(QtObjectPtr ptr){ + static_cast(ptr)->~QAction(); +} + diff --git a/widgets/qaction.go b/widgets/qaction.go new file mode 100755 index 00000000..68af784a --- /dev/null +++ b/widgets/qaction.go @@ -0,0 +1,466 @@ +package widgets + +//#include "qaction.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QAction struct { + core.QObject +} + +type QActionITF interface { + core.QObjectITF + QActionPTR() *QAction +} + +func PointerFromQAction(ptr QActionITF) unsafe.Pointer { + if ptr != nil { + return ptr.QActionPTR().Pointer() + } + return nil +} + +func QActionFromPointer(ptr unsafe.Pointer) *QAction { + var n = new(QAction) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAction_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAction) QActionPTR() *QAction { + return ptr +} + +//QAction::ActionEvent +type QAction__ActionEvent int + +var ( + QAction__Trigger = QAction__ActionEvent(0) + QAction__Hover = QAction__ActionEvent(1) +) + +//QAction::MenuRole +type QAction__MenuRole int + +var ( + QAction__NoRole = QAction__MenuRole(0) + QAction__TextHeuristicRole = QAction__MenuRole(1) + QAction__ApplicationSpecificRole = QAction__MenuRole(2) + QAction__AboutQtRole = QAction__MenuRole(3) + QAction__AboutRole = QAction__MenuRole(4) + QAction__PreferencesRole = QAction__MenuRole(5) + QAction__QuitRole = QAction__MenuRole(6) +) + +//QAction::Priority +type QAction__Priority int + +var ( + QAction__LowPriority = QAction__Priority(0) + QAction__NormalPriority = QAction__Priority(128) + QAction__HighPriority = QAction__Priority(256) +) + +func (ptr *QAction) AutoRepeat() bool { + if ptr.Pointer() != nil { + return C.QAction_AutoRepeat(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAction) IconText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAction_IconText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAction) IsCheckable() bool { + if ptr.Pointer() != nil { + return C.QAction_IsCheckable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAction) IsChecked() bool { + if ptr.Pointer() != nil { + return C.QAction_IsChecked(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAction) IsEnabled() bool { + if ptr.Pointer() != nil { + return C.QAction_IsEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAction) IsIconVisibleInMenu() bool { + if ptr.Pointer() != nil { + return C.QAction_IsIconVisibleInMenu(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAction) IsVisible() bool { + if ptr.Pointer() != nil { + return C.QAction_IsVisible(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAction) MenuRole() QAction__MenuRole { + if ptr.Pointer() != nil { + return QAction__MenuRole(C.QAction_MenuRole(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAction) Priority() QAction__Priority { + if ptr.Pointer() != nil { + return QAction__Priority(C.QAction_Priority(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAction) SetAutoRepeat(v bool) { + if ptr.Pointer() != nil { + C.QAction_SetAutoRepeat(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QAction) SetCheckable(v bool) { + if ptr.Pointer() != nil { + C.QAction_SetCheckable(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QAction) SetChecked(v bool) { + if ptr.Pointer() != nil { + C.QAction_SetChecked(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QAction) SetData(userData string) { + if ptr.Pointer() != nil { + C.QAction_SetData(C.QtObjectPtr(ptr.Pointer()), C.CString(userData)) + } +} + +func (ptr *QAction) SetEnabled(v bool) { + if ptr.Pointer() != nil { + C.QAction_SetEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QAction) SetFont(font gui.QFontITF) { + if ptr.Pointer() != nil { + C.QAction_SetFont(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQFont(font))) + } +} + +func (ptr *QAction) SetIcon(icon gui.QIconITF) { + if ptr.Pointer() != nil { + C.QAction_SetIcon(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQIcon(icon))) + } +} + +func (ptr *QAction) SetIconText(text string) { + if ptr.Pointer() != nil { + C.QAction_SetIconText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QAction) SetIconVisibleInMenu(visible bool) { + if ptr.Pointer() != nil { + C.QAction_SetIconVisibleInMenu(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(visible))) + } +} + +func (ptr *QAction) SetMenuRole(menuRole QAction__MenuRole) { + if ptr.Pointer() != nil { + C.QAction_SetMenuRole(C.QtObjectPtr(ptr.Pointer()), C.int(menuRole)) + } +} + +func (ptr *QAction) SetPriority(priority QAction__Priority) { + if ptr.Pointer() != nil { + C.QAction_SetPriority(C.QtObjectPtr(ptr.Pointer()), C.int(priority)) + } +} + +func (ptr *QAction) SetShortcut(shortcut gui.QKeySequenceITF) { + if ptr.Pointer() != nil { + C.QAction_SetShortcut(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQKeySequence(shortcut))) + } +} + +func (ptr *QAction) SetShortcutContext(context core.Qt__ShortcutContext) { + if ptr.Pointer() != nil { + C.QAction_SetShortcutContext(C.QtObjectPtr(ptr.Pointer()), C.int(context)) + } +} + +func (ptr *QAction) SetStatusTip(statusTip string) { + if ptr.Pointer() != nil { + C.QAction_SetStatusTip(C.QtObjectPtr(ptr.Pointer()), C.CString(statusTip)) + } +} + +func (ptr *QAction) SetText(text string) { + if ptr.Pointer() != nil { + C.QAction_SetText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QAction) SetToolTip(tip string) { + if ptr.Pointer() != nil { + C.QAction_SetToolTip(C.QtObjectPtr(ptr.Pointer()), C.CString(tip)) + } +} + +func (ptr *QAction) SetVisible(v bool) { + if ptr.Pointer() != nil { + C.QAction_SetVisible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QAction) SetWhatsThis(what string) { + if ptr.Pointer() != nil { + C.QAction_SetWhatsThis(C.QtObjectPtr(ptr.Pointer()), C.CString(what)) + } +} + +func (ptr *QAction) ShortcutContext() core.Qt__ShortcutContext { + if ptr.Pointer() != nil { + return core.Qt__ShortcutContext(C.QAction_ShortcutContext(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QAction) StatusTip() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAction_StatusTip(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAction) Text() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAction_Text(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAction) Toggle() { + if ptr.Pointer() != nil { + C.QAction_Toggle(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAction) ToolTip() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAction_ToolTip(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAction) WhatsThis() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAction_WhatsThis(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func NewQAction(parent core.QObjectITF) *QAction { + return QActionFromPointer(unsafe.Pointer(C.QAction_NewQAction(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQAction3(icon gui.QIconITF, text string, parent core.QObjectITF) *QAction { + return QActionFromPointer(unsafe.Pointer(C.QAction_NewQAction3(C.QtObjectPtr(gui.PointerFromQIcon(icon)), C.CString(text), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQAction2(text string, parent core.QObjectITF) *QAction { + return QActionFromPointer(unsafe.Pointer(C.QAction_NewQAction2(C.CString(text), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QAction) ActionGroup() *QActionGroup { + if ptr.Pointer() != nil { + return QActionGroupFromPointer(unsafe.Pointer(C.QAction_ActionGroup(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAction) Activate(event QAction__ActionEvent) { + if ptr.Pointer() != nil { + C.QAction_Activate(C.QtObjectPtr(ptr.Pointer()), C.int(event)) + } +} + +func (ptr *QAction) ConnectChanged(f func()) { + if ptr.Pointer() != nil { + C.QAction_ConnectChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "changed", f) + } +} + +func (ptr *QAction) DisconnectChanged() { + if ptr.Pointer() != nil { + C.QAction_DisconnectChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "changed") + } +} + +//export callbackQActionChanged +func callbackQActionChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "changed").(func())() +} + +func (ptr *QAction) Data() string { + if ptr.Pointer() != nil { + return C.GoString(C.QAction_Data(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QAction) Hover() { + if ptr.Pointer() != nil { + C.QAction_Hover(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAction) ConnectHovered(f func()) { + if ptr.Pointer() != nil { + C.QAction_ConnectHovered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "hovered", f) + } +} + +func (ptr *QAction) DisconnectHovered() { + if ptr.Pointer() != nil { + C.QAction_DisconnectHovered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "hovered") + } +} + +//export callbackQActionHovered +func callbackQActionHovered(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "hovered").(func())() +} + +func (ptr *QAction) IsSeparator() bool { + if ptr.Pointer() != nil { + return C.QAction_IsSeparator(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QAction) Menu() *QMenu { + if ptr.Pointer() != nil { + return QMenuFromPointer(unsafe.Pointer(C.QAction_Menu(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAction) ParentWidget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QAction_ParentWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QAction) SetActionGroup(group QActionGroupITF) { + if ptr.Pointer() != nil { + C.QAction_SetActionGroup(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQActionGroup(group))) + } +} + +func (ptr *QAction) SetDisabled(b bool) { + if ptr.Pointer() != nil { + C.QAction_SetDisabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(b))) + } +} + +func (ptr *QAction) SetMenu(menu QMenuITF) { + if ptr.Pointer() != nil { + C.QAction_SetMenu(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMenu(menu))) + } +} + +func (ptr *QAction) SetSeparator(b bool) { + if ptr.Pointer() != nil { + C.QAction_SetSeparator(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(b))) + } +} + +func (ptr *QAction) SetShortcuts2(key gui.QKeySequence__StandardKey) { + if ptr.Pointer() != nil { + C.QAction_SetShortcuts2(C.QtObjectPtr(ptr.Pointer()), C.int(key)) + } +} + +func (ptr *QAction) ShowStatusText(widget QWidgetITF) bool { + if ptr.Pointer() != nil { + return C.QAction_ShowStatusText(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) != 0 + } + return false +} + +func (ptr *QAction) ConnectToggled(f func(checked bool)) { + if ptr.Pointer() != nil { + C.QAction_ConnectToggled(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "toggled", f) + } +} + +func (ptr *QAction) DisconnectToggled() { + if ptr.Pointer() != nil { + C.QAction_DisconnectToggled(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "toggled") + } +} + +//export callbackQActionToggled +func callbackQActionToggled(ptrName *C.char, checked C.int) { + qt.GetSignal(C.GoString(ptrName), "toggled").(func(bool))(int(checked) != 0) +} + +func (ptr *QAction) Trigger() { + if ptr.Pointer() != nil { + C.QAction_Trigger(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAction) ConnectTriggered(f func(checked bool)) { + if ptr.Pointer() != nil { + C.QAction_ConnectTriggered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "triggered", f) + } +} + +func (ptr *QAction) DisconnectTriggered() { + if ptr.Pointer() != nil { + C.QAction_DisconnectTriggered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "triggered") + } +} + +//export callbackQActionTriggered +func callbackQActionTriggered(ptrName *C.char, checked C.int) { + qt.GetSignal(C.GoString(ptrName), "triggered").(func(bool))(int(checked) != 0) +} + +func (ptr *QAction) DestroyQAction() { + if ptr.Pointer() != nil { + C.QAction_DestroyQAction(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qaction.h b/widgets/qaction.h new file mode 100755 index 00000000..2f8ad343 --- /dev/null +++ b/widgets/qaction.h @@ -0,0 +1,68 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QAction_AutoRepeat(QtObjectPtr ptr); +char* QAction_IconText(QtObjectPtr ptr); +int QAction_IsCheckable(QtObjectPtr ptr); +int QAction_IsChecked(QtObjectPtr ptr); +int QAction_IsEnabled(QtObjectPtr ptr); +int QAction_IsIconVisibleInMenu(QtObjectPtr ptr); +int QAction_IsVisible(QtObjectPtr ptr); +int QAction_MenuRole(QtObjectPtr ptr); +int QAction_Priority(QtObjectPtr ptr); +void QAction_SetAutoRepeat(QtObjectPtr ptr, int v); +void QAction_SetCheckable(QtObjectPtr ptr, int v); +void QAction_SetChecked(QtObjectPtr ptr, int v); +void QAction_SetData(QtObjectPtr ptr, char* userData); +void QAction_SetEnabled(QtObjectPtr ptr, int v); +void QAction_SetFont(QtObjectPtr ptr, QtObjectPtr font); +void QAction_SetIcon(QtObjectPtr ptr, QtObjectPtr icon); +void QAction_SetIconText(QtObjectPtr ptr, char* text); +void QAction_SetIconVisibleInMenu(QtObjectPtr ptr, int visible); +void QAction_SetMenuRole(QtObjectPtr ptr, int menuRole); +void QAction_SetPriority(QtObjectPtr ptr, int priority); +void QAction_SetShortcut(QtObjectPtr ptr, QtObjectPtr shortcut); +void QAction_SetShortcutContext(QtObjectPtr ptr, int context); +void QAction_SetStatusTip(QtObjectPtr ptr, char* statusTip); +void QAction_SetText(QtObjectPtr ptr, char* text); +void QAction_SetToolTip(QtObjectPtr ptr, char* tip); +void QAction_SetVisible(QtObjectPtr ptr, int v); +void QAction_SetWhatsThis(QtObjectPtr ptr, char* what); +int QAction_ShortcutContext(QtObjectPtr ptr); +char* QAction_StatusTip(QtObjectPtr ptr); +char* QAction_Text(QtObjectPtr ptr); +void QAction_Toggle(QtObjectPtr ptr); +char* QAction_ToolTip(QtObjectPtr ptr); +char* QAction_WhatsThis(QtObjectPtr ptr); +QtObjectPtr QAction_NewQAction(QtObjectPtr parent); +QtObjectPtr QAction_NewQAction3(QtObjectPtr icon, char* text, QtObjectPtr parent); +QtObjectPtr QAction_NewQAction2(char* text, QtObjectPtr parent); +QtObjectPtr QAction_ActionGroup(QtObjectPtr ptr); +void QAction_Activate(QtObjectPtr ptr, int event); +void QAction_ConnectChanged(QtObjectPtr ptr); +void QAction_DisconnectChanged(QtObjectPtr ptr); +char* QAction_Data(QtObjectPtr ptr); +void QAction_Hover(QtObjectPtr ptr); +void QAction_ConnectHovered(QtObjectPtr ptr); +void QAction_DisconnectHovered(QtObjectPtr ptr); +int QAction_IsSeparator(QtObjectPtr ptr); +QtObjectPtr QAction_Menu(QtObjectPtr ptr); +QtObjectPtr QAction_ParentWidget(QtObjectPtr ptr); +void QAction_SetActionGroup(QtObjectPtr ptr, QtObjectPtr group); +void QAction_SetDisabled(QtObjectPtr ptr, int b); +void QAction_SetMenu(QtObjectPtr ptr, QtObjectPtr menu); +void QAction_SetSeparator(QtObjectPtr ptr, int b); +void QAction_SetShortcuts2(QtObjectPtr ptr, int key); +int QAction_ShowStatusText(QtObjectPtr ptr, QtObjectPtr widget); +void QAction_ConnectToggled(QtObjectPtr ptr); +void QAction_DisconnectToggled(QtObjectPtr ptr); +void QAction_Trigger(QtObjectPtr ptr); +void QAction_ConnectTriggered(QtObjectPtr ptr); +void QAction_DisconnectTriggered(QtObjectPtr ptr); +void QAction_DestroyQAction(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qactiongroup.cpp b/widgets/qactiongroup.cpp new file mode 100755 index 00000000..fe67f37b --- /dev/null +++ b/widgets/qactiongroup.cpp @@ -0,0 +1,90 @@ +#include "qactiongroup.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQActionGroup: public QActionGroup { +public: +void Signal_Hovered(QAction * action){callbackQActionGroupHovered(this->objectName().toUtf8().data(), action);}; +void Signal_Triggered(QAction * action){callbackQActionGroupTriggered(this->objectName().toUtf8().data(), action);}; +}; + +QtObjectPtr QActionGroup_AddAction(QtObjectPtr ptr, QtObjectPtr action){ + return static_cast(ptr)->addAction(static_cast(action)); +} + +int QActionGroup_IsEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isEnabled(); +} + +int QActionGroup_IsExclusive(QtObjectPtr ptr){ + return static_cast(ptr)->isExclusive(); +} + +int QActionGroup_IsVisible(QtObjectPtr ptr){ + return static_cast(ptr)->isVisible(); +} + +void QActionGroup_SetEnabled(QtObjectPtr ptr, int v){ + QMetaObject::invokeMethod(static_cast(ptr), "setEnabled", Q_ARG(bool, v != 0)); +} + +void QActionGroup_SetExclusive(QtObjectPtr ptr, int v){ + QMetaObject::invokeMethod(static_cast(ptr), "setExclusive", Q_ARG(bool, v != 0)); +} + +void QActionGroup_SetVisible(QtObjectPtr ptr, int v){ + QMetaObject::invokeMethod(static_cast(ptr), "setVisible", Q_ARG(bool, v != 0)); +} + +QtObjectPtr QActionGroup_NewQActionGroup(QtObjectPtr parent){ + return new QActionGroup(static_cast(parent)); +} + +QtObjectPtr QActionGroup_AddAction3(QtObjectPtr ptr, QtObjectPtr icon, char* text){ + return static_cast(ptr)->addAction(*static_cast(icon), QString(text)); +} + +QtObjectPtr QActionGroup_AddAction2(QtObjectPtr ptr, char* text){ + return static_cast(ptr)->addAction(QString(text)); +} + +QtObjectPtr QActionGroup_CheckedAction(QtObjectPtr ptr){ + return static_cast(ptr)->checkedAction(); +} + +void QActionGroup_ConnectHovered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QActionGroup::hovered), static_cast(ptr), static_cast(&MyQActionGroup::Signal_Hovered));; +} + +void QActionGroup_DisconnectHovered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QActionGroup::hovered), static_cast(ptr), static_cast(&MyQActionGroup::Signal_Hovered));; +} + +void QActionGroup_RemoveAction(QtObjectPtr ptr, QtObjectPtr action){ + static_cast(ptr)->removeAction(static_cast(action)); +} + +void QActionGroup_SetDisabled(QtObjectPtr ptr, int b){ + QMetaObject::invokeMethod(static_cast(ptr), "setDisabled", Q_ARG(bool, b != 0)); +} + +void QActionGroup_ConnectTriggered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QActionGroup::triggered), static_cast(ptr), static_cast(&MyQActionGroup::Signal_Triggered));; +} + +void QActionGroup_DisconnectTriggered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QActionGroup::triggered), static_cast(ptr), static_cast(&MyQActionGroup::Signal_Triggered));; +} + +void QActionGroup_DestroyQActionGroup(QtObjectPtr ptr){ + static_cast(ptr)->~QActionGroup(); +} + diff --git a/widgets/qactiongroup.go b/widgets/qactiongroup.go new file mode 100755 index 00000000..d45d57cd --- /dev/null +++ b/widgets/qactiongroup.go @@ -0,0 +1,167 @@ +package widgets + +//#include "qactiongroup.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QActionGroup struct { + core.QObject +} + +type QActionGroupITF interface { + core.QObjectITF + QActionGroupPTR() *QActionGroup +} + +func PointerFromQActionGroup(ptr QActionGroupITF) unsafe.Pointer { + if ptr != nil { + return ptr.QActionGroupPTR().Pointer() + } + return nil +} + +func QActionGroupFromPointer(ptr unsafe.Pointer) *QActionGroup { + var n = new(QActionGroup) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QActionGroup_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QActionGroup) QActionGroupPTR() *QActionGroup { + return ptr +} + +func (ptr *QActionGroup) AddAction(action QActionITF) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QActionGroup_AddAction(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAction(action))))) + } + return nil +} + +func (ptr *QActionGroup) IsEnabled() bool { + if ptr.Pointer() != nil { + return C.QActionGroup_IsEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QActionGroup) IsExclusive() bool { + if ptr.Pointer() != nil { + return C.QActionGroup_IsExclusive(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QActionGroup) IsVisible() bool { + if ptr.Pointer() != nil { + return C.QActionGroup_IsVisible(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QActionGroup) SetEnabled(v bool) { + if ptr.Pointer() != nil { + C.QActionGroup_SetEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QActionGroup) SetExclusive(v bool) { + if ptr.Pointer() != nil { + C.QActionGroup_SetExclusive(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QActionGroup) SetVisible(v bool) { + if ptr.Pointer() != nil { + C.QActionGroup_SetVisible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func NewQActionGroup(parent core.QObjectITF) *QActionGroup { + return QActionGroupFromPointer(unsafe.Pointer(C.QActionGroup_NewQActionGroup(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QActionGroup) AddAction3(icon gui.QIconITF, text string) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QActionGroup_AddAction3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQIcon(icon)), C.CString(text)))) + } + return nil +} + +func (ptr *QActionGroup) AddAction2(text string) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QActionGroup_AddAction2(C.QtObjectPtr(ptr.Pointer()), C.CString(text)))) + } + return nil +} + +func (ptr *QActionGroup) CheckedAction() *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QActionGroup_CheckedAction(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QActionGroup) ConnectHovered(f func(action QActionITF)) { + if ptr.Pointer() != nil { + C.QActionGroup_ConnectHovered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "hovered", f) + } +} + +func (ptr *QActionGroup) DisconnectHovered() { + if ptr.Pointer() != nil { + C.QActionGroup_DisconnectHovered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "hovered") + } +} + +//export callbackQActionGroupHovered +func callbackQActionGroupHovered(ptrName *C.char, action unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "hovered").(func(*QAction))(QActionFromPointer(action)) +} + +func (ptr *QActionGroup) RemoveAction(action QActionITF) { + if ptr.Pointer() != nil { + C.QActionGroup_RemoveAction(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAction(action))) + } +} + +func (ptr *QActionGroup) SetDisabled(b bool) { + if ptr.Pointer() != nil { + C.QActionGroup_SetDisabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(b))) + } +} + +func (ptr *QActionGroup) ConnectTriggered(f func(action QActionITF)) { + if ptr.Pointer() != nil { + C.QActionGroup_ConnectTriggered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "triggered", f) + } +} + +func (ptr *QActionGroup) DisconnectTriggered() { + if ptr.Pointer() != nil { + C.QActionGroup_DisconnectTriggered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "triggered") + } +} + +//export callbackQActionGroupTriggered +func callbackQActionGroupTriggered(ptrName *C.char, action unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "triggered").(func(*QAction))(QActionFromPointer(action)) +} + +func (ptr *QActionGroup) DestroyQActionGroup() { + if ptr.Pointer() != nil { + C.QActionGroup_DestroyQActionGroup(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qactiongroup.h b/widgets/qactiongroup.h new file mode 100755 index 00000000..2bdd20b0 --- /dev/null +++ b/widgets/qactiongroup.h @@ -0,0 +1,27 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QActionGroup_AddAction(QtObjectPtr ptr, QtObjectPtr action); +int QActionGroup_IsEnabled(QtObjectPtr ptr); +int QActionGroup_IsExclusive(QtObjectPtr ptr); +int QActionGroup_IsVisible(QtObjectPtr ptr); +void QActionGroup_SetEnabled(QtObjectPtr ptr, int v); +void QActionGroup_SetExclusive(QtObjectPtr ptr, int v); +void QActionGroup_SetVisible(QtObjectPtr ptr, int v); +QtObjectPtr QActionGroup_NewQActionGroup(QtObjectPtr parent); +QtObjectPtr QActionGroup_AddAction3(QtObjectPtr ptr, QtObjectPtr icon, char* text); +QtObjectPtr QActionGroup_AddAction2(QtObjectPtr ptr, char* text); +QtObjectPtr QActionGroup_CheckedAction(QtObjectPtr ptr); +void QActionGroup_ConnectHovered(QtObjectPtr ptr); +void QActionGroup_DisconnectHovered(QtObjectPtr ptr); +void QActionGroup_RemoveAction(QtObjectPtr ptr, QtObjectPtr action); +void QActionGroup_SetDisabled(QtObjectPtr ptr, int b); +void QActionGroup_ConnectTriggered(QtObjectPtr ptr); +void QActionGroup_DisconnectTriggered(QtObjectPtr ptr); +void QActionGroup_DestroyQActionGroup(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qapplication.cpp b/widgets/qapplication.cpp new file mode 100755 index 00000000..ab358800 --- /dev/null +++ b/widgets/qapplication.cpp @@ -0,0 +1,219 @@ +#include "qapplication.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQApplication: public QApplication { +public: +void Signal_FocusChanged(QWidget * old, QWidget * now){callbackQApplicationFocusChanged(this->objectName().toUtf8().data(), old, now);}; +}; + +void QApplication_QApplication_Alert(QtObjectPtr widget, int msec){ + QApplication::alert(static_cast(widget), msec); +} + +int QApplication_AutoMaximizeThreshold(QtObjectPtr ptr){ + return QMetaObject::invokeMethod(static_cast(ptr), "autoMaximizeThreshold"); +} + +int QApplication_AutoSipEnabled(QtObjectPtr ptr){ + return QMetaObject::invokeMethod(static_cast(ptr), "autoSipEnabled"); +} + +void QApplication_QApplication_Beep(){ + QApplication::beep(); +} + +int QApplication_QApplication_CursorFlashTime(){ + return QApplication::cursorFlashTime(); +} + +int QApplication_QApplication_DoubleClickInterval(){ + return QApplication::doubleClickInterval(); +} + +int QApplication_QApplication_IsEffectEnabled(int effect){ + return QApplication::isEffectEnabled(static_cast(effect)); +} + +int QApplication_QApplication_KeyboardInputInterval(){ + return QApplication::keyboardInputInterval(); +} + +void QApplication_QApplication_SetActiveWindow(QtObjectPtr active){ + QApplication::setActiveWindow(static_cast(active)); +} + +void QApplication_SetAutoMaximizeThreshold(QtObjectPtr ptr, int threshold){ + QMetaObject::invokeMethod(static_cast(ptr), "setAutoMaximizeThreshold", Q_ARG(int, threshold)); +} + +void QApplication_SetAutoSipEnabled(QtObjectPtr ptr, int enabled){ + QMetaObject::invokeMethod(static_cast(ptr), "setAutoSipEnabled", Q_ARG(bool, enabled != 0)); +} + +void QApplication_QApplication_SetCursorFlashTime(int v){ + QApplication::setCursorFlashTime(v); +} + +void QApplication_QApplication_SetDoubleClickInterval(int v){ + QApplication::setDoubleClickInterval(v); +} + +void QApplication_QApplication_SetEffectEnabled(int effect, int enable){ + QApplication::setEffectEnabled(static_cast(effect), enable != 0); +} + +void QApplication_QApplication_SetGlobalStrut(QtObjectPtr v){ + QApplication::setGlobalStrut(*static_cast(v)); +} + +void QApplication_QApplication_SetKeyboardInputInterval(int v){ + QApplication::setKeyboardInputInterval(v); +} + +void QApplication_QApplication_SetStartDragDistance(int l){ + QApplication::setStartDragDistance(l); +} + +void QApplication_QApplication_SetStartDragTime(int ms){ + QApplication::setStartDragTime(ms); +} + +void QApplication_SetStyleSheet(QtObjectPtr ptr, char* sheet){ + QMetaObject::invokeMethod(static_cast(ptr), "setStyleSheet", Q_ARG(QString, QString(sheet))); +} + +void QApplication_QApplication_SetWheelScrollLines(int v){ + QApplication::setWheelScrollLines(v); +} + +void QApplication_QApplication_SetWindowIcon(QtObjectPtr icon){ + QApplication::setWindowIcon(*static_cast(icon)); +} + +int QApplication_QApplication_StartDragDistance(){ + return QApplication::startDragDistance(); +} + +int QApplication_QApplication_StartDragTime(){ + return QApplication::startDragTime(); +} + +char* QApplication_StyleSheet(QtObjectPtr ptr){ + return static_cast(ptr)->styleSheet().toUtf8().data(); +} + +QtObjectPtr QApplication_QApplication_TopLevelAt(QtObjectPtr point){ + return QApplication::topLevelAt(*static_cast(point)); +} + +int QApplication_QApplication_WheelScrollLines(){ + return QApplication::wheelScrollLines(); +} + +QtObjectPtr QApplication_QApplication_WidgetAt(QtObjectPtr point){ + return QApplication::widgetAt(*static_cast(point)); +} + +QtObjectPtr QApplication_NewQApplication(int argc, char* argv){ + return new QApplication(argc, &argv); +} + +void QApplication_QApplication_AboutQt(){ + QMetaObject::invokeMethod(QApplication::instance(), "aboutQt"); +} + +QtObjectPtr QApplication_QApplication_ActiveModalWidget(){ + return QApplication::activeModalWidget(); +} + +QtObjectPtr QApplication_QApplication_ActivePopupWidget(){ + return QApplication::activePopupWidget(); +} + +QtObjectPtr QApplication_QApplication_ActiveWindow(){ + return QApplication::activeWindow(); +} + +void QApplication_QApplication_CloseAllWindows(){ + QMetaObject::invokeMethod(QApplication::instance(), "closeAllWindows"); +} + +int QApplication_QApplication_ColorSpec(){ + return QApplication::colorSpec(); +} + +QtObjectPtr QApplication_QApplication_Desktop(){ + return QApplication::desktop(); +} + +int QApplication_QApplication_Exec(){ + return QApplication::exec(); +} + +void QApplication_ConnectFocusChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QApplication::focusChanged), static_cast(ptr), static_cast(&MyQApplication::Signal_FocusChanged));; +} + +void QApplication_DisconnectFocusChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QApplication::focusChanged), static_cast(ptr), static_cast(&MyQApplication::Signal_FocusChanged));; +} + +QtObjectPtr QApplication_QApplication_FocusWidget(){ + return QApplication::focusWidget(); +} + +int QApplication_Notify(QtObjectPtr ptr, QtObjectPtr receiver, QtObjectPtr e){ + return static_cast(ptr)->notify(static_cast(receiver), static_cast(e)); +} + +void QApplication_QApplication_SetColorSpec(int spec){ + QApplication::setColorSpec(spec); +} + +void QApplication_QApplication_SetFont(QtObjectPtr font, char* className){ + QApplication::setFont(*static_cast(font), const_cast(className)); +} + +void QApplication_QApplication_SetPalette(QtObjectPtr palette, char* className){ + QApplication::setPalette(*static_cast(palette), const_cast(className)); +} + +QtObjectPtr QApplication_QApplication_SetStyle2(char* style){ + return QApplication::setStyle(QString(style)); +} + +void QApplication_QApplication_SetStyle(QtObjectPtr style){ + QApplication::setStyle(static_cast(style)); +} + +QtObjectPtr QApplication_QApplication_Style(){ + return QApplication::style(); +} + +QtObjectPtr QApplication_QApplication_TopLevelAt2(int x, int y){ + return QApplication::topLevelAt(x, y); +} + +QtObjectPtr QApplication_QApplication_WidgetAt2(int x, int y){ + return QApplication::widgetAt(x, y); +} + +void QApplication_DestroyQApplication(QtObjectPtr ptr){ + static_cast(ptr)->~QApplication(); +} + diff --git a/widgets/qapplication.go b/widgets/qapplication.go new file mode 100755 index 00000000..ea2d335e --- /dev/null +++ b/widgets/qapplication.go @@ -0,0 +1,276 @@ +package widgets + +//#include "qapplication.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QApplication struct { + gui.QGuiApplication +} + +type QApplicationITF interface { + gui.QGuiApplicationITF + QApplicationPTR() *QApplication +} + +func PointerFromQApplication(ptr QApplicationITF) unsafe.Pointer { + if ptr != nil { + return ptr.QApplicationPTR().Pointer() + } + return nil +} + +func QApplicationFromPointer(ptr unsafe.Pointer) *QApplication { + var n = new(QApplication) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QApplication_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QApplication) QApplicationPTR() *QApplication { + return ptr +} + +//QApplication::ColorSpec +type QApplication__ColorSpec int + +var ( + QApplication__NormalColor = QApplication__ColorSpec(0) + QApplication__CustomColor = QApplication__ColorSpec(1) + QApplication__ManyColor = QApplication__ColorSpec(2) +) + +func QApplication_Alert(widget QWidgetITF, msec int) { + C.QApplication_QApplication_Alert(C.QtObjectPtr(PointerFromQWidget(widget)), C.int(msec)) +} + +func (ptr *QApplication) AutoMaximizeThreshold() int { + if ptr.Pointer() != nil { + return int(C.QApplication_AutoMaximizeThreshold(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QApplication) AutoSipEnabled() bool { + if ptr.Pointer() != nil { + return C.QApplication_AutoSipEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func QApplication_Beep() { + C.QApplication_QApplication_Beep() +} + +func QApplication_CursorFlashTime() int { + return int(C.QApplication_QApplication_CursorFlashTime()) +} + +func QApplication_DoubleClickInterval() int { + return int(C.QApplication_QApplication_DoubleClickInterval()) +} + +func QApplication_IsEffectEnabled(effect core.Qt__UIEffect) bool { + return C.QApplication_QApplication_IsEffectEnabled(C.int(effect)) != 0 +} + +func QApplication_KeyboardInputInterval() int { + return int(C.QApplication_QApplication_KeyboardInputInterval()) +} + +func QApplication_SetActiveWindow(active QWidgetITF) { + C.QApplication_QApplication_SetActiveWindow(C.QtObjectPtr(PointerFromQWidget(active))) +} + +func (ptr *QApplication) SetAutoMaximizeThreshold(threshold int) { + if ptr.Pointer() != nil { + C.QApplication_SetAutoMaximizeThreshold(C.QtObjectPtr(ptr.Pointer()), C.int(threshold)) + } +} + +func (ptr *QApplication) SetAutoSipEnabled(enabled bool) { + if ptr.Pointer() != nil { + C.QApplication_SetAutoSipEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func QApplication_SetCursorFlashTime(v int) { + C.QApplication_QApplication_SetCursorFlashTime(C.int(v)) +} + +func QApplication_SetDoubleClickInterval(v int) { + C.QApplication_QApplication_SetDoubleClickInterval(C.int(v)) +} + +func QApplication_SetEffectEnabled(effect core.Qt__UIEffect, enable bool) { + C.QApplication_QApplication_SetEffectEnabled(C.int(effect), C.int(qt.GoBoolToInt(enable))) +} + +func QApplication_SetGlobalStrut(v core.QSizeITF) { + C.QApplication_QApplication_SetGlobalStrut(C.QtObjectPtr(core.PointerFromQSize(v))) +} + +func QApplication_SetKeyboardInputInterval(v int) { + C.QApplication_QApplication_SetKeyboardInputInterval(C.int(v)) +} + +func QApplication_SetStartDragDistance(l int) { + C.QApplication_QApplication_SetStartDragDistance(C.int(l)) +} + +func QApplication_SetStartDragTime(ms int) { + C.QApplication_QApplication_SetStartDragTime(C.int(ms)) +} + +func (ptr *QApplication) SetStyleSheet(sheet string) { + if ptr.Pointer() != nil { + C.QApplication_SetStyleSheet(C.QtObjectPtr(ptr.Pointer()), C.CString(sheet)) + } +} + +func QApplication_SetWheelScrollLines(v int) { + C.QApplication_QApplication_SetWheelScrollLines(C.int(v)) +} + +func QApplication_SetWindowIcon(icon gui.QIconITF) { + C.QApplication_QApplication_SetWindowIcon(C.QtObjectPtr(gui.PointerFromQIcon(icon))) +} + +func QApplication_StartDragDistance() int { + return int(C.QApplication_QApplication_StartDragDistance()) +} + +func QApplication_StartDragTime() int { + return int(C.QApplication_QApplication_StartDragTime()) +} + +func (ptr *QApplication) StyleSheet() string { + if ptr.Pointer() != nil { + return C.GoString(C.QApplication_StyleSheet(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func QApplication_TopLevelAt(point core.QPointITF) *QWidget { + return QWidgetFromPointer(unsafe.Pointer(C.QApplication_QApplication_TopLevelAt(C.QtObjectPtr(core.PointerFromQPoint(point))))) +} + +func QApplication_WheelScrollLines() int { + return int(C.QApplication_QApplication_WheelScrollLines()) +} + +func QApplication_WidgetAt(point core.QPointITF) *QWidget { + return QWidgetFromPointer(unsafe.Pointer(C.QApplication_QApplication_WidgetAt(C.QtObjectPtr(core.PointerFromQPoint(point))))) +} + +func NewQApplication(argc int, argv string) *QApplication { + return QApplicationFromPointer(unsafe.Pointer(C.QApplication_NewQApplication(C.int(argc), C.CString(argv)))) +} + +func QApplication_AboutQt() { + C.QApplication_QApplication_AboutQt() +} + +func QApplication_ActiveModalWidget() *QWidget { + return QWidgetFromPointer(unsafe.Pointer(C.QApplication_QApplication_ActiveModalWidget())) +} + +func QApplication_ActivePopupWidget() *QWidget { + return QWidgetFromPointer(unsafe.Pointer(C.QApplication_QApplication_ActivePopupWidget())) +} + +func QApplication_ActiveWindow() *QWidget { + return QWidgetFromPointer(unsafe.Pointer(C.QApplication_QApplication_ActiveWindow())) +} + +func QApplication_CloseAllWindows() { + C.QApplication_QApplication_CloseAllWindows() +} + +func QApplication_ColorSpec() int { + return int(C.QApplication_QApplication_ColorSpec()) +} + +func QApplication_Desktop() *QDesktopWidget { + return QDesktopWidgetFromPointer(unsafe.Pointer(C.QApplication_QApplication_Desktop())) +} + +func QApplication_Exec() int { + return int(C.QApplication_QApplication_Exec()) +} + +func (ptr *QApplication) ConnectFocusChanged(f func(old QWidgetITF, now QWidgetITF)) { + if ptr.Pointer() != nil { + C.QApplication_ConnectFocusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "focusChanged", f) + } +} + +func (ptr *QApplication) DisconnectFocusChanged() { + if ptr.Pointer() != nil { + C.QApplication_DisconnectFocusChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "focusChanged") + } +} + +//export callbackQApplicationFocusChanged +func callbackQApplicationFocusChanged(ptrName *C.char, old unsafe.Pointer, now unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "focusChanged").(func(*QWidget, *QWidget))(QWidgetFromPointer(old), QWidgetFromPointer(now)) +} + +func QApplication_FocusWidget() *QWidget { + return QWidgetFromPointer(unsafe.Pointer(C.QApplication_QApplication_FocusWidget())) +} + +func (ptr *QApplication) Notify(receiver core.QObjectITF, e core.QEventITF) bool { + if ptr.Pointer() != nil { + return C.QApplication_Notify(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(receiver)), C.QtObjectPtr(core.PointerFromQEvent(e))) != 0 + } + return false +} + +func QApplication_SetColorSpec(spec int) { + C.QApplication_QApplication_SetColorSpec(C.int(spec)) +} + +func QApplication_SetFont(font gui.QFontITF, className string) { + C.QApplication_QApplication_SetFont(C.QtObjectPtr(gui.PointerFromQFont(font)), C.CString(className)) +} + +func QApplication_SetPalette(palette gui.QPaletteITF, className string) { + C.QApplication_QApplication_SetPalette(C.QtObjectPtr(gui.PointerFromQPalette(palette)), C.CString(className)) +} + +func QApplication_SetStyle2(style string) *QStyle { + return QStyleFromPointer(unsafe.Pointer(C.QApplication_QApplication_SetStyle2(C.CString(style)))) +} + +func QApplication_SetStyle(style QStyleITF) { + C.QApplication_QApplication_SetStyle(C.QtObjectPtr(PointerFromQStyle(style))) +} + +func QApplication_Style() *QStyle { + return QStyleFromPointer(unsafe.Pointer(C.QApplication_QApplication_Style())) +} + +func QApplication_TopLevelAt2(x int, y int) *QWidget { + return QWidgetFromPointer(unsafe.Pointer(C.QApplication_QApplication_TopLevelAt2(C.int(x), C.int(y)))) +} + +func QApplication_WidgetAt2(x int, y int) *QWidget { + return QWidgetFromPointer(unsafe.Pointer(C.QApplication_QApplication_WidgetAt2(C.int(x), C.int(y)))) +} + +func (ptr *QApplication) DestroyQApplication() { + if ptr.Pointer() != nil { + C.QApplication_DestroyQApplication(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qapplication.h b/widgets/qapplication.h new file mode 100755 index 00000000..f6afc14e --- /dev/null +++ b/widgets/qapplication.h @@ -0,0 +1,58 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QApplication_QApplication_Alert(QtObjectPtr widget, int msec); +int QApplication_AutoMaximizeThreshold(QtObjectPtr ptr); +int QApplication_AutoSipEnabled(QtObjectPtr ptr); +void QApplication_QApplication_Beep(); +int QApplication_QApplication_CursorFlashTime(); +int QApplication_QApplication_DoubleClickInterval(); +int QApplication_QApplication_IsEffectEnabled(int effect); +int QApplication_QApplication_KeyboardInputInterval(); +void QApplication_QApplication_SetActiveWindow(QtObjectPtr active); +void QApplication_SetAutoMaximizeThreshold(QtObjectPtr ptr, int threshold); +void QApplication_SetAutoSipEnabled(QtObjectPtr ptr, int enabled); +void QApplication_QApplication_SetCursorFlashTime(int v); +void QApplication_QApplication_SetDoubleClickInterval(int v); +void QApplication_QApplication_SetEffectEnabled(int effect, int enable); +void QApplication_QApplication_SetGlobalStrut(QtObjectPtr v); +void QApplication_QApplication_SetKeyboardInputInterval(int v); +void QApplication_QApplication_SetStartDragDistance(int l); +void QApplication_QApplication_SetStartDragTime(int ms); +void QApplication_SetStyleSheet(QtObjectPtr ptr, char* sheet); +void QApplication_QApplication_SetWheelScrollLines(int v); +void QApplication_QApplication_SetWindowIcon(QtObjectPtr icon); +int QApplication_QApplication_StartDragDistance(); +int QApplication_QApplication_StartDragTime(); +char* QApplication_StyleSheet(QtObjectPtr ptr); +QtObjectPtr QApplication_QApplication_TopLevelAt(QtObjectPtr point); +int QApplication_QApplication_WheelScrollLines(); +QtObjectPtr QApplication_QApplication_WidgetAt(QtObjectPtr point); +QtObjectPtr QApplication_NewQApplication(int argc, char* argv); +void QApplication_QApplication_AboutQt(); +QtObjectPtr QApplication_QApplication_ActiveModalWidget(); +QtObjectPtr QApplication_QApplication_ActivePopupWidget(); +QtObjectPtr QApplication_QApplication_ActiveWindow(); +void QApplication_QApplication_CloseAllWindows(); +int QApplication_QApplication_ColorSpec(); +QtObjectPtr QApplication_QApplication_Desktop(); +int QApplication_QApplication_Exec(); +void QApplication_ConnectFocusChanged(QtObjectPtr ptr); +void QApplication_DisconnectFocusChanged(QtObjectPtr ptr); +QtObjectPtr QApplication_QApplication_FocusWidget(); +int QApplication_Notify(QtObjectPtr ptr, QtObjectPtr receiver, QtObjectPtr e); +void QApplication_QApplication_SetColorSpec(int spec); +void QApplication_QApplication_SetFont(QtObjectPtr font, char* className); +void QApplication_QApplication_SetPalette(QtObjectPtr palette, char* className); +QtObjectPtr QApplication_QApplication_SetStyle2(char* style); +void QApplication_QApplication_SetStyle(QtObjectPtr style); +QtObjectPtr QApplication_QApplication_Style(); +QtObjectPtr QApplication_QApplication_TopLevelAt2(int x, int y); +QtObjectPtr QApplication_QApplication_WidgetAt2(int x, int y); +void QApplication_DestroyQApplication(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qboxlayout.cpp b/widgets/qboxlayout.cpp new file mode 100755 index 00000000..c0b1c421 --- /dev/null +++ b/widgets/qboxlayout.cpp @@ -0,0 +1,145 @@ +#include "qboxlayout.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQBoxLayout: public QBoxLayout { +public: +}; + +int QBoxLayout_Direction(QtObjectPtr ptr){ + return static_cast(ptr)->direction(); +} + +QtObjectPtr QBoxLayout_NewQBoxLayout(int dir, QtObjectPtr parent){ + return new QBoxLayout(static_cast(dir), static_cast(parent)); +} + +void QBoxLayout_AddItem(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->addItem(static_cast(item)); +} + +void QBoxLayout_AddLayout(QtObjectPtr ptr, QtObjectPtr layout, int stretch){ + static_cast(ptr)->addLayout(static_cast(layout), stretch); +} + +void QBoxLayout_AddSpacerItem(QtObjectPtr ptr, QtObjectPtr spacerItem){ + static_cast(ptr)->addSpacerItem(static_cast(spacerItem)); +} + +void QBoxLayout_AddSpacing(QtObjectPtr ptr, int size){ + static_cast(ptr)->addSpacing(size); +} + +void QBoxLayout_AddStretch(QtObjectPtr ptr, int stretch){ + static_cast(ptr)->addStretch(stretch); +} + +void QBoxLayout_AddStrut(QtObjectPtr ptr, int size){ + static_cast(ptr)->addStrut(size); +} + +void QBoxLayout_AddWidget(QtObjectPtr ptr, QtObjectPtr widget, int stretch, int alignment){ + static_cast(ptr)->addWidget(static_cast(widget), stretch, static_cast(alignment)); +} + +int QBoxLayout_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +int QBoxLayout_ExpandingDirections(QtObjectPtr ptr){ + return static_cast(ptr)->expandingDirections(); +} + +int QBoxLayout_HasHeightForWidth(QtObjectPtr ptr){ + return static_cast(ptr)->hasHeightForWidth(); +} + +int QBoxLayout_HeightForWidth(QtObjectPtr ptr, int w){ + return static_cast(ptr)->heightForWidth(w); +} + +void QBoxLayout_InsertItem(QtObjectPtr ptr, int index, QtObjectPtr item){ + static_cast(ptr)->insertItem(index, static_cast(item)); +} + +void QBoxLayout_InsertLayout(QtObjectPtr ptr, int index, QtObjectPtr layout, int stretch){ + static_cast(ptr)->insertLayout(index, static_cast(layout), stretch); +} + +void QBoxLayout_InsertSpacerItem(QtObjectPtr ptr, int index, QtObjectPtr spacerItem){ + static_cast(ptr)->insertSpacerItem(index, static_cast(spacerItem)); +} + +void QBoxLayout_InsertSpacing(QtObjectPtr ptr, int index, int size){ + static_cast(ptr)->insertSpacing(index, size); +} + +void QBoxLayout_InsertStretch(QtObjectPtr ptr, int index, int stretch){ + static_cast(ptr)->insertStretch(index, stretch); +} + +void QBoxLayout_InsertWidget(QtObjectPtr ptr, int index, QtObjectPtr widget, int stretch, int alignment){ + static_cast(ptr)->insertWidget(index, static_cast(widget), stretch, static_cast(alignment)); +} + +void QBoxLayout_Invalidate(QtObjectPtr ptr){ + static_cast(ptr)->invalidate(); +} + +QtObjectPtr QBoxLayout_ItemAt(QtObjectPtr ptr, int index){ + return static_cast(ptr)->itemAt(index); +} + +int QBoxLayout_MinimumHeightForWidth(QtObjectPtr ptr, int w){ + return static_cast(ptr)->minimumHeightForWidth(w); +} + +void QBoxLayout_SetDirection(QtObjectPtr ptr, int direction){ + static_cast(ptr)->setDirection(static_cast(direction)); +} + +void QBoxLayout_SetGeometry(QtObjectPtr ptr, QtObjectPtr r){ + static_cast(ptr)->setGeometry(*static_cast(r)); +} + +void QBoxLayout_SetSpacing(QtObjectPtr ptr, int spacing){ + static_cast(ptr)->setSpacing(spacing); +} + +void QBoxLayout_SetStretch(QtObjectPtr ptr, int index, int stretch){ + static_cast(ptr)->setStretch(index, stretch); +} + +int QBoxLayout_SetStretchFactor2(QtObjectPtr ptr, QtObjectPtr layout, int stretch){ + return static_cast(ptr)->setStretchFactor(static_cast(layout), stretch); +} + +int QBoxLayout_SetStretchFactor(QtObjectPtr ptr, QtObjectPtr widget, int stretch){ + return static_cast(ptr)->setStretchFactor(static_cast(widget), stretch); +} + +int QBoxLayout_Spacing(QtObjectPtr ptr){ + return static_cast(ptr)->spacing(); +} + +int QBoxLayout_Stretch(QtObjectPtr ptr, int index){ + return static_cast(ptr)->stretch(index); +} + +QtObjectPtr QBoxLayout_TakeAt(QtObjectPtr ptr, int index){ + return static_cast(ptr)->takeAt(index); +} + +void QBoxLayout_DestroyQBoxLayout(QtObjectPtr ptr){ + static_cast(ptr)->~QBoxLayout(); +} + diff --git a/widgets/qboxlayout.go b/widgets/qboxlayout.go new file mode 100755 index 00000000..b4481474 --- /dev/null +++ b/widgets/qboxlayout.go @@ -0,0 +1,253 @@ +package widgets + +//#include "qboxlayout.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QBoxLayout struct { + QLayout +} + +type QBoxLayoutITF interface { + QLayoutITF + QBoxLayoutPTR() *QBoxLayout +} + +func PointerFromQBoxLayout(ptr QBoxLayoutITF) unsafe.Pointer { + if ptr != nil { + return ptr.QBoxLayoutPTR().Pointer() + } + return nil +} + +func QBoxLayoutFromPointer(ptr unsafe.Pointer) *QBoxLayout { + var n = new(QBoxLayout) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QBoxLayout_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QBoxLayout) QBoxLayoutPTR() *QBoxLayout { + return ptr +} + +//QBoxLayout::Direction +type QBoxLayout__Direction int + +var ( + QBoxLayout__LeftToRight = QBoxLayout__Direction(0) + QBoxLayout__RightToLeft = QBoxLayout__Direction(1) + QBoxLayout__TopToBottom = QBoxLayout__Direction(2) + QBoxLayout__BottomToTop = QBoxLayout__Direction(3) + QBoxLayout__Down = QBoxLayout__Direction(QBoxLayout__TopToBottom) + QBoxLayout__Up = QBoxLayout__Direction(QBoxLayout__BottomToTop) +) + +func (ptr *QBoxLayout) Direction() QBoxLayout__Direction { + if ptr.Pointer() != nil { + return QBoxLayout__Direction(C.QBoxLayout_Direction(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQBoxLayout(dir QBoxLayout__Direction, parent QWidgetITF) *QBoxLayout { + return QBoxLayoutFromPointer(unsafe.Pointer(C.QBoxLayout_NewQBoxLayout(C.int(dir), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QBoxLayout) AddItem(item QLayoutItemITF) { + if ptr.Pointer() != nil { + C.QBoxLayout_AddItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLayoutItem(item))) + } +} + +func (ptr *QBoxLayout) AddLayout(layout QLayoutITF, stretch int) { + if ptr.Pointer() != nil { + C.QBoxLayout_AddLayout(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLayout(layout)), C.int(stretch)) + } +} + +func (ptr *QBoxLayout) AddSpacerItem(spacerItem QSpacerItemITF) { + if ptr.Pointer() != nil { + C.QBoxLayout_AddSpacerItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSpacerItem(spacerItem))) + } +} + +func (ptr *QBoxLayout) AddSpacing(size int) { + if ptr.Pointer() != nil { + C.QBoxLayout_AddSpacing(C.QtObjectPtr(ptr.Pointer()), C.int(size)) + } +} + +func (ptr *QBoxLayout) AddStretch(stretch int) { + if ptr.Pointer() != nil { + C.QBoxLayout_AddStretch(C.QtObjectPtr(ptr.Pointer()), C.int(stretch)) + } +} + +func (ptr *QBoxLayout) AddStrut(size int) { + if ptr.Pointer() != nil { + C.QBoxLayout_AddStrut(C.QtObjectPtr(ptr.Pointer()), C.int(size)) + } +} + +func (ptr *QBoxLayout) AddWidget(widget QWidgetITF, stretch int, alignment core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QBoxLayout_AddWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget)), C.int(stretch), C.int(alignment)) + } +} + +func (ptr *QBoxLayout) Count() int { + if ptr.Pointer() != nil { + return int(C.QBoxLayout_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QBoxLayout) ExpandingDirections() core.Qt__Orientation { + if ptr.Pointer() != nil { + return core.Qt__Orientation(C.QBoxLayout_ExpandingDirections(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QBoxLayout) HasHeightForWidth() bool { + if ptr.Pointer() != nil { + return C.QBoxLayout_HasHeightForWidth(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QBoxLayout) HeightForWidth(w int) int { + if ptr.Pointer() != nil { + return int(C.QBoxLayout_HeightForWidth(C.QtObjectPtr(ptr.Pointer()), C.int(w))) + } + return 0 +} + +func (ptr *QBoxLayout) InsertItem(index int, item QLayoutItemITF) { + if ptr.Pointer() != nil { + C.QBoxLayout_InsertItem(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.QtObjectPtr(PointerFromQLayoutItem(item))) + } +} + +func (ptr *QBoxLayout) InsertLayout(index int, layout QLayoutITF, stretch int) { + if ptr.Pointer() != nil { + C.QBoxLayout_InsertLayout(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.QtObjectPtr(PointerFromQLayout(layout)), C.int(stretch)) + } +} + +func (ptr *QBoxLayout) InsertSpacerItem(index int, spacerItem QSpacerItemITF) { + if ptr.Pointer() != nil { + C.QBoxLayout_InsertSpacerItem(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.QtObjectPtr(PointerFromQSpacerItem(spacerItem))) + } +} + +func (ptr *QBoxLayout) InsertSpacing(index int, size int) { + if ptr.Pointer() != nil { + C.QBoxLayout_InsertSpacing(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.int(size)) + } +} + +func (ptr *QBoxLayout) InsertStretch(index int, stretch int) { + if ptr.Pointer() != nil { + C.QBoxLayout_InsertStretch(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.int(stretch)) + } +} + +func (ptr *QBoxLayout) InsertWidget(index int, widget QWidgetITF, stretch int, alignment core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QBoxLayout_InsertWidget(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.QtObjectPtr(PointerFromQWidget(widget)), C.int(stretch), C.int(alignment)) + } +} + +func (ptr *QBoxLayout) Invalidate() { + if ptr.Pointer() != nil { + C.QBoxLayout_Invalidate(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QBoxLayout) ItemAt(index int) *QLayoutItem { + if ptr.Pointer() != nil { + return QLayoutItemFromPointer(unsafe.Pointer(C.QBoxLayout_ItemAt(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QBoxLayout) MinimumHeightForWidth(w int) int { + if ptr.Pointer() != nil { + return int(C.QBoxLayout_MinimumHeightForWidth(C.QtObjectPtr(ptr.Pointer()), C.int(w))) + } + return 0 +} + +func (ptr *QBoxLayout) SetDirection(direction QBoxLayout__Direction) { + if ptr.Pointer() != nil { + C.QBoxLayout_SetDirection(C.QtObjectPtr(ptr.Pointer()), C.int(direction)) + } +} + +func (ptr *QBoxLayout) SetGeometry(r core.QRectITF) { + if ptr.Pointer() != nil { + C.QBoxLayout_SetGeometry(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(r))) + } +} + +func (ptr *QBoxLayout) SetSpacing(spacing int) { + if ptr.Pointer() != nil { + C.QBoxLayout_SetSpacing(C.QtObjectPtr(ptr.Pointer()), C.int(spacing)) + } +} + +func (ptr *QBoxLayout) SetStretch(index int, stretch int) { + if ptr.Pointer() != nil { + C.QBoxLayout_SetStretch(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.int(stretch)) + } +} + +func (ptr *QBoxLayout) SetStretchFactor2(layout QLayoutITF, stretch int) bool { + if ptr.Pointer() != nil { + return C.QBoxLayout_SetStretchFactor2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLayout(layout)), C.int(stretch)) != 0 + } + return false +} + +func (ptr *QBoxLayout) SetStretchFactor(widget QWidgetITF, stretch int) bool { + if ptr.Pointer() != nil { + return C.QBoxLayout_SetStretchFactor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget)), C.int(stretch)) != 0 + } + return false +} + +func (ptr *QBoxLayout) Spacing() int { + if ptr.Pointer() != nil { + return int(C.QBoxLayout_Spacing(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QBoxLayout) Stretch(index int) int { + if ptr.Pointer() != nil { + return int(C.QBoxLayout_Stretch(C.QtObjectPtr(ptr.Pointer()), C.int(index))) + } + return 0 +} + +func (ptr *QBoxLayout) TakeAt(index int) *QLayoutItem { + if ptr.Pointer() != nil { + return QLayoutItemFromPointer(unsafe.Pointer(C.QBoxLayout_TakeAt(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QBoxLayout) DestroyQBoxLayout() { + if ptr.Pointer() != nil { + C.QBoxLayout_DestroyQBoxLayout(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qboxlayout.h b/widgets/qboxlayout.h new file mode 100755 index 00000000..5ec4d508 --- /dev/null +++ b/widgets/qboxlayout.h @@ -0,0 +1,41 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QBoxLayout_Direction(QtObjectPtr ptr); +QtObjectPtr QBoxLayout_NewQBoxLayout(int dir, QtObjectPtr parent); +void QBoxLayout_AddItem(QtObjectPtr ptr, QtObjectPtr item); +void QBoxLayout_AddLayout(QtObjectPtr ptr, QtObjectPtr layout, int stretch); +void QBoxLayout_AddSpacerItem(QtObjectPtr ptr, QtObjectPtr spacerItem); +void QBoxLayout_AddSpacing(QtObjectPtr ptr, int size); +void QBoxLayout_AddStretch(QtObjectPtr ptr, int stretch); +void QBoxLayout_AddStrut(QtObjectPtr ptr, int size); +void QBoxLayout_AddWidget(QtObjectPtr ptr, QtObjectPtr widget, int stretch, int alignment); +int QBoxLayout_Count(QtObjectPtr ptr); +int QBoxLayout_ExpandingDirections(QtObjectPtr ptr); +int QBoxLayout_HasHeightForWidth(QtObjectPtr ptr); +int QBoxLayout_HeightForWidth(QtObjectPtr ptr, int w); +void QBoxLayout_InsertItem(QtObjectPtr ptr, int index, QtObjectPtr item); +void QBoxLayout_InsertLayout(QtObjectPtr ptr, int index, QtObjectPtr layout, int stretch); +void QBoxLayout_InsertSpacerItem(QtObjectPtr ptr, int index, QtObjectPtr spacerItem); +void QBoxLayout_InsertSpacing(QtObjectPtr ptr, int index, int size); +void QBoxLayout_InsertStretch(QtObjectPtr ptr, int index, int stretch); +void QBoxLayout_InsertWidget(QtObjectPtr ptr, int index, QtObjectPtr widget, int stretch, int alignment); +void QBoxLayout_Invalidate(QtObjectPtr ptr); +QtObjectPtr QBoxLayout_ItemAt(QtObjectPtr ptr, int index); +int QBoxLayout_MinimumHeightForWidth(QtObjectPtr ptr, int w); +void QBoxLayout_SetDirection(QtObjectPtr ptr, int direction); +void QBoxLayout_SetGeometry(QtObjectPtr ptr, QtObjectPtr r); +void QBoxLayout_SetSpacing(QtObjectPtr ptr, int spacing); +void QBoxLayout_SetStretch(QtObjectPtr ptr, int index, int stretch); +int QBoxLayout_SetStretchFactor2(QtObjectPtr ptr, QtObjectPtr layout, int stretch); +int QBoxLayout_SetStretchFactor(QtObjectPtr ptr, QtObjectPtr widget, int stretch); +int QBoxLayout_Spacing(QtObjectPtr ptr); +int QBoxLayout_Stretch(QtObjectPtr ptr, int index); +QtObjectPtr QBoxLayout_TakeAt(QtObjectPtr ptr, int index); +void QBoxLayout_DestroyQBoxLayout(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qbuttongroup.cpp b/widgets/qbuttongroup.cpp new file mode 100755 index 00000000..6a466f27 --- /dev/null +++ b/widgets/qbuttongroup.cpp @@ -0,0 +1,94 @@ +#include "qbuttongroup.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQButtonGroup: public QButtonGroup { +public: +void Signal_ButtonClicked(QAbstractButton * button){callbackQButtonGroupButtonClicked(this->objectName().toUtf8().data(), button);}; +void Signal_ButtonPressed(QAbstractButton * button){callbackQButtonGroupButtonPressed(this->objectName().toUtf8().data(), button);}; +void Signal_ButtonReleased(QAbstractButton * button){callbackQButtonGroupButtonReleased(this->objectName().toUtf8().data(), button);}; +void Signal_ButtonToggled(QAbstractButton * button, bool checked){callbackQButtonGroupButtonToggled(this->objectName().toUtf8().data(), button, checked);}; +}; + +QtObjectPtr QButtonGroup_NewQButtonGroup(QtObjectPtr parent){ + return new QButtonGroup(static_cast(parent)); +} + +void QButtonGroup_AddButton(QtObjectPtr ptr, QtObjectPtr button, int id){ + static_cast(ptr)->addButton(static_cast(button), id); +} + +QtObjectPtr QButtonGroup_Button(QtObjectPtr ptr, int id){ + return static_cast(ptr)->button(id); +} + +QtObjectPtr QButtonGroup_CheckedButton(QtObjectPtr ptr){ + return static_cast(ptr)->checkedButton(); +} + +int QButtonGroup_CheckedId(QtObjectPtr ptr){ + return static_cast(ptr)->checkedId(); +} + +int QButtonGroup_Exclusive(QtObjectPtr ptr){ + return static_cast(ptr)->exclusive(); +} + +int QButtonGroup_Id(QtObjectPtr ptr, QtObjectPtr button){ + return static_cast(ptr)->id(static_cast(button)); +} + +void QButtonGroup_RemoveButton(QtObjectPtr ptr, QtObjectPtr button){ + static_cast(ptr)->removeButton(static_cast(button)); +} + +void QButtonGroup_SetExclusive(QtObjectPtr ptr, int v){ + static_cast(ptr)->setExclusive(v != 0); +} + +void QButtonGroup_SetId(QtObjectPtr ptr, QtObjectPtr button, int id){ + static_cast(ptr)->setId(static_cast(button), id); +} + +void QButtonGroup_DestroyQButtonGroup(QtObjectPtr ptr){ + static_cast(ptr)->~QButtonGroup(); +} + +void QButtonGroup_ConnectButtonClicked(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QButtonGroup::buttonClicked), static_cast(ptr), static_cast(&MyQButtonGroup::Signal_ButtonClicked));; +} + +void QButtonGroup_DisconnectButtonClicked(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QButtonGroup::buttonClicked), static_cast(ptr), static_cast(&MyQButtonGroup::Signal_ButtonClicked));; +} + +void QButtonGroup_ConnectButtonPressed(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QButtonGroup::buttonPressed), static_cast(ptr), static_cast(&MyQButtonGroup::Signal_ButtonPressed));; +} + +void QButtonGroup_DisconnectButtonPressed(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QButtonGroup::buttonPressed), static_cast(ptr), static_cast(&MyQButtonGroup::Signal_ButtonPressed));; +} + +void QButtonGroup_ConnectButtonReleased(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QButtonGroup::buttonReleased), static_cast(ptr), static_cast(&MyQButtonGroup::Signal_ButtonReleased));; +} + +void QButtonGroup_DisconnectButtonReleased(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QButtonGroup::buttonReleased), static_cast(ptr), static_cast(&MyQButtonGroup::Signal_ButtonReleased));; +} + +void QButtonGroup_ConnectButtonToggled(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QButtonGroup::buttonToggled), static_cast(ptr), static_cast(&MyQButtonGroup::Signal_ButtonToggled));; +} + +void QButtonGroup_DisconnectButtonToggled(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QButtonGroup::buttonToggled), static_cast(ptr), static_cast(&MyQButtonGroup::Signal_ButtonToggled));; +} + diff --git a/widgets/qbuttongroup.go b/widgets/qbuttongroup.go new file mode 100755 index 00000000..8e520d7b --- /dev/null +++ b/widgets/qbuttongroup.go @@ -0,0 +1,184 @@ +package widgets + +//#include "qbuttongroup.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QButtonGroup struct { + core.QObject +} + +type QButtonGroupITF interface { + core.QObjectITF + QButtonGroupPTR() *QButtonGroup +} + +func PointerFromQButtonGroup(ptr QButtonGroupITF) unsafe.Pointer { + if ptr != nil { + return ptr.QButtonGroupPTR().Pointer() + } + return nil +} + +func QButtonGroupFromPointer(ptr unsafe.Pointer) *QButtonGroup { + var n = new(QButtonGroup) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QButtonGroup_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QButtonGroup) QButtonGroupPTR() *QButtonGroup { + return ptr +} + +func NewQButtonGroup(parent core.QObjectITF) *QButtonGroup { + return QButtonGroupFromPointer(unsafe.Pointer(C.QButtonGroup_NewQButtonGroup(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QButtonGroup) AddButton(button QAbstractButtonITF, id int) { + if ptr.Pointer() != nil { + C.QButtonGroup_AddButton(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractButton(button)), C.int(id)) + } +} + +func (ptr *QButtonGroup) Button(id int) *QAbstractButton { + if ptr.Pointer() != nil { + return QAbstractButtonFromPointer(unsafe.Pointer(C.QButtonGroup_Button(C.QtObjectPtr(ptr.Pointer()), C.int(id)))) + } + return nil +} + +func (ptr *QButtonGroup) CheckedButton() *QAbstractButton { + if ptr.Pointer() != nil { + return QAbstractButtonFromPointer(unsafe.Pointer(C.QButtonGroup_CheckedButton(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QButtonGroup) CheckedId() int { + if ptr.Pointer() != nil { + return int(C.QButtonGroup_CheckedId(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QButtonGroup) Exclusive() bool { + if ptr.Pointer() != nil { + return C.QButtonGroup_Exclusive(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QButtonGroup) Id(button QAbstractButtonITF) int { + if ptr.Pointer() != nil { + return int(C.QButtonGroup_Id(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractButton(button)))) + } + return 0 +} + +func (ptr *QButtonGroup) RemoveButton(button QAbstractButtonITF) { + if ptr.Pointer() != nil { + C.QButtonGroup_RemoveButton(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractButton(button))) + } +} + +func (ptr *QButtonGroup) SetExclusive(v bool) { + if ptr.Pointer() != nil { + C.QButtonGroup_SetExclusive(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QButtonGroup) SetId(button QAbstractButtonITF, id int) { + if ptr.Pointer() != nil { + C.QButtonGroup_SetId(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractButton(button)), C.int(id)) + } +} + +func (ptr *QButtonGroup) DestroyQButtonGroup() { + if ptr.Pointer() != nil { + C.QButtonGroup_DestroyQButtonGroup(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} + +func (ptr *QButtonGroup) ConnectButtonClicked(f func(button QAbstractButtonITF)) { + if ptr.Pointer() != nil { + C.QButtonGroup_ConnectButtonClicked(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "buttonClicked", f) + } +} + +func (ptr *QButtonGroup) DisconnectButtonClicked() { + if ptr.Pointer() != nil { + C.QButtonGroup_DisconnectButtonClicked(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "buttonClicked") + } +} + +//export callbackQButtonGroupButtonClicked +func callbackQButtonGroupButtonClicked(ptrName *C.char, button unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "buttonClicked").(func(*QAbstractButton))(QAbstractButtonFromPointer(button)) +} + +func (ptr *QButtonGroup) ConnectButtonPressed(f func(button QAbstractButtonITF)) { + if ptr.Pointer() != nil { + C.QButtonGroup_ConnectButtonPressed(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "buttonPressed", f) + } +} + +func (ptr *QButtonGroup) DisconnectButtonPressed() { + if ptr.Pointer() != nil { + C.QButtonGroup_DisconnectButtonPressed(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "buttonPressed") + } +} + +//export callbackQButtonGroupButtonPressed +func callbackQButtonGroupButtonPressed(ptrName *C.char, button unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "buttonPressed").(func(*QAbstractButton))(QAbstractButtonFromPointer(button)) +} + +func (ptr *QButtonGroup) ConnectButtonReleased(f func(button QAbstractButtonITF)) { + if ptr.Pointer() != nil { + C.QButtonGroup_ConnectButtonReleased(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "buttonReleased", f) + } +} + +func (ptr *QButtonGroup) DisconnectButtonReleased() { + if ptr.Pointer() != nil { + C.QButtonGroup_DisconnectButtonReleased(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "buttonReleased") + } +} + +//export callbackQButtonGroupButtonReleased +func callbackQButtonGroupButtonReleased(ptrName *C.char, button unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "buttonReleased").(func(*QAbstractButton))(QAbstractButtonFromPointer(button)) +} + +func (ptr *QButtonGroup) ConnectButtonToggled(f func(button QAbstractButtonITF, checked bool)) { + if ptr.Pointer() != nil { + C.QButtonGroup_ConnectButtonToggled(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "buttonToggled", f) + } +} + +func (ptr *QButtonGroup) DisconnectButtonToggled() { + if ptr.Pointer() != nil { + C.QButtonGroup_DisconnectButtonToggled(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "buttonToggled") + } +} + +//export callbackQButtonGroupButtonToggled +func callbackQButtonGroupButtonToggled(ptrName *C.char, button unsafe.Pointer, checked C.int) { + qt.GetSignal(C.GoString(ptrName), "buttonToggled").(func(*QAbstractButton, bool))(QAbstractButtonFromPointer(button), int(checked) != 0) +} diff --git a/widgets/qbuttongroup.h b/widgets/qbuttongroup.h new file mode 100755 index 00000000..7a04b8fb --- /dev/null +++ b/widgets/qbuttongroup.h @@ -0,0 +1,28 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QButtonGroup_NewQButtonGroup(QtObjectPtr parent); +void QButtonGroup_AddButton(QtObjectPtr ptr, QtObjectPtr button, int id); +QtObjectPtr QButtonGroup_Button(QtObjectPtr ptr, int id); +QtObjectPtr QButtonGroup_CheckedButton(QtObjectPtr ptr); +int QButtonGroup_CheckedId(QtObjectPtr ptr); +int QButtonGroup_Exclusive(QtObjectPtr ptr); +int QButtonGroup_Id(QtObjectPtr ptr, QtObjectPtr button); +void QButtonGroup_RemoveButton(QtObjectPtr ptr, QtObjectPtr button); +void QButtonGroup_SetExclusive(QtObjectPtr ptr, int v); +void QButtonGroup_SetId(QtObjectPtr ptr, QtObjectPtr button, int id); +void QButtonGroup_DestroyQButtonGroup(QtObjectPtr ptr); +void QButtonGroup_ConnectButtonClicked(QtObjectPtr ptr); +void QButtonGroup_DisconnectButtonClicked(QtObjectPtr ptr); +void QButtonGroup_ConnectButtonPressed(QtObjectPtr ptr); +void QButtonGroup_DisconnectButtonPressed(QtObjectPtr ptr); +void QButtonGroup_ConnectButtonReleased(QtObjectPtr ptr); +void QButtonGroup_DisconnectButtonReleased(QtObjectPtr ptr); +void QButtonGroup_ConnectButtonToggled(QtObjectPtr ptr); +void QButtonGroup_DisconnectButtonToggled(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qcalendarwidget.cpp b/widgets/qcalendarwidget.cpp new file mode 100755 index 00000000..dfb7d30b --- /dev/null +++ b/widgets/qcalendarwidget.cpp @@ -0,0 +1,171 @@ +#include "qcalendarwidget.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCalendarWidget: public QCalendarWidget { +public: +void Signal_CurrentPageChanged(int year, int month){callbackQCalendarWidgetCurrentPageChanged(this->objectName().toUtf8().data(), year, month);}; +void Signal_SelectionChanged(){callbackQCalendarWidgetSelectionChanged(this->objectName().toUtf8().data());}; +}; + +int QCalendarWidget_DateEditAcceptDelay(QtObjectPtr ptr){ + return static_cast(ptr)->dateEditAcceptDelay(); +} + +int QCalendarWidget_FirstDayOfWeek(QtObjectPtr ptr){ + return static_cast(ptr)->firstDayOfWeek(); +} + +int QCalendarWidget_HorizontalHeaderFormat(QtObjectPtr ptr){ + return static_cast(ptr)->horizontalHeaderFormat(); +} + +int QCalendarWidget_IsDateEditEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isDateEditEnabled(); +} + +int QCalendarWidget_IsGridVisible(QtObjectPtr ptr){ + return static_cast(ptr)->isGridVisible(); +} + +int QCalendarWidget_IsNavigationBarVisible(QtObjectPtr ptr){ + return static_cast(ptr)->isNavigationBarVisible(); +} + +int QCalendarWidget_SelectionMode(QtObjectPtr ptr){ + return static_cast(ptr)->selectionMode(); +} + +void QCalendarWidget_SetDateEditAcceptDelay(QtObjectPtr ptr, int delay){ + static_cast(ptr)->setDateEditAcceptDelay(delay); +} + +void QCalendarWidget_SetDateEditEnabled(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setDateEditEnabled(enable != 0); +} + +void QCalendarWidget_SetFirstDayOfWeek(QtObjectPtr ptr, int dayOfWeek){ + static_cast(ptr)->setFirstDayOfWeek(static_cast(dayOfWeek)); +} + +void QCalendarWidget_SetGridVisible(QtObjectPtr ptr, int show){ + QMetaObject::invokeMethod(static_cast(ptr), "setGridVisible", Q_ARG(bool, show != 0)); +} + +void QCalendarWidget_SetHorizontalHeaderFormat(QtObjectPtr ptr, int format){ + static_cast(ptr)->setHorizontalHeaderFormat(static_cast(format)); +} + +void QCalendarWidget_SetMaximumDate(QtObjectPtr ptr, QtObjectPtr date){ + static_cast(ptr)->setMaximumDate(*static_cast(date)); +} + +void QCalendarWidget_SetMinimumDate(QtObjectPtr ptr, QtObjectPtr date){ + static_cast(ptr)->setMinimumDate(*static_cast(date)); +} + +void QCalendarWidget_SetNavigationBarVisible(QtObjectPtr ptr, int visible){ + QMetaObject::invokeMethod(static_cast(ptr), "setNavigationBarVisible", Q_ARG(bool, visible != 0)); +} + +void QCalendarWidget_SetSelectedDate(QtObjectPtr ptr, QtObjectPtr date){ + QMetaObject::invokeMethod(static_cast(ptr), "setSelectedDate", Q_ARG(QDate, *static_cast(date))); +} + +void QCalendarWidget_SetSelectionMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setSelectionMode(static_cast(mode)); +} + +void QCalendarWidget_SetVerticalHeaderFormat(QtObjectPtr ptr, int format){ + static_cast(ptr)->setVerticalHeaderFormat(static_cast(format)); +} + +int QCalendarWidget_VerticalHeaderFormat(QtObjectPtr ptr){ + return static_cast(ptr)->verticalHeaderFormat(); +} + +QtObjectPtr QCalendarWidget_NewQCalendarWidget(QtObjectPtr parent){ + return new QCalendarWidget(static_cast(parent)); +} + +void QCalendarWidget_ConnectCurrentPageChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCalendarWidget::currentPageChanged), static_cast(ptr), static_cast(&MyQCalendarWidget::Signal_CurrentPageChanged));; +} + +void QCalendarWidget_DisconnectCurrentPageChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCalendarWidget::currentPageChanged), static_cast(ptr), static_cast(&MyQCalendarWidget::Signal_CurrentPageChanged));; +} + +int QCalendarWidget_MonthShown(QtObjectPtr ptr){ + return static_cast(ptr)->monthShown(); +} + +void QCalendarWidget_ConnectSelectionChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCalendarWidget::selectionChanged), static_cast(ptr), static_cast(&MyQCalendarWidget::Signal_SelectionChanged));; +} + +void QCalendarWidget_DisconnectSelectionChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCalendarWidget::selectionChanged), static_cast(ptr), static_cast(&MyQCalendarWidget::Signal_SelectionChanged));; +} + +void QCalendarWidget_SetCurrentPage(QtObjectPtr ptr, int year, int month){ + QMetaObject::invokeMethod(static_cast(ptr), "setCurrentPage", Q_ARG(int, year), Q_ARG(int, month)); +} + +void QCalendarWidget_SetDateRange(QtObjectPtr ptr, QtObjectPtr min, QtObjectPtr max){ + QMetaObject::invokeMethod(static_cast(ptr), "setDateRange", Q_ARG(QDate, *static_cast(min)), Q_ARG(QDate, *static_cast(max))); +} + +void QCalendarWidget_SetDateTextFormat(QtObjectPtr ptr, QtObjectPtr date, QtObjectPtr format){ + static_cast(ptr)->setDateTextFormat(*static_cast(date), *static_cast(format)); +} + +void QCalendarWidget_SetHeaderTextFormat(QtObjectPtr ptr, QtObjectPtr format){ + static_cast(ptr)->setHeaderTextFormat(*static_cast(format)); +} + +void QCalendarWidget_SetWeekdayTextFormat(QtObjectPtr ptr, int dayOfWeek, QtObjectPtr format){ + static_cast(ptr)->setWeekdayTextFormat(static_cast(dayOfWeek), *static_cast(format)); +} + +void QCalendarWidget_ShowNextMonth(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "showNextMonth"); +} + +void QCalendarWidget_ShowNextYear(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "showNextYear"); +} + +void QCalendarWidget_ShowPreviousMonth(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "showPreviousMonth"); +} + +void QCalendarWidget_ShowPreviousYear(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "showPreviousYear"); +} + +void QCalendarWidget_ShowSelectedDate(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "showSelectedDate"); +} + +void QCalendarWidget_ShowToday(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "showToday"); +} + +int QCalendarWidget_YearShown(QtObjectPtr ptr){ + return static_cast(ptr)->yearShown(); +} + +void QCalendarWidget_DestroyQCalendarWidget(QtObjectPtr ptr){ + static_cast(ptr)->~QCalendarWidget(); +} + diff --git a/widgets/qcalendarwidget.go b/widgets/qcalendarwidget.go new file mode 100755 index 00000000..bcfc81f5 --- /dev/null +++ b/widgets/qcalendarwidget.go @@ -0,0 +1,316 @@ +package widgets + +//#include "qcalendarwidget.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QCalendarWidget struct { + QWidget +} + +type QCalendarWidgetITF interface { + QWidgetITF + QCalendarWidgetPTR() *QCalendarWidget +} + +func PointerFromQCalendarWidget(ptr QCalendarWidgetITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCalendarWidgetPTR().Pointer() + } + return nil +} + +func QCalendarWidgetFromPointer(ptr unsafe.Pointer) *QCalendarWidget { + var n = new(QCalendarWidget) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCalendarWidget_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCalendarWidget) QCalendarWidgetPTR() *QCalendarWidget { + return ptr +} + +//QCalendarWidget::HorizontalHeaderFormat +type QCalendarWidget__HorizontalHeaderFormat int + +var ( + QCalendarWidget__NoHorizontalHeader = QCalendarWidget__HorizontalHeaderFormat(0) + QCalendarWidget__SingleLetterDayNames = QCalendarWidget__HorizontalHeaderFormat(1) + QCalendarWidget__ShortDayNames = QCalendarWidget__HorizontalHeaderFormat(2) + QCalendarWidget__LongDayNames = QCalendarWidget__HorizontalHeaderFormat(3) +) + +//QCalendarWidget::SelectionMode +type QCalendarWidget__SelectionMode int + +var ( + QCalendarWidget__NoSelection = QCalendarWidget__SelectionMode(0) + QCalendarWidget__SingleSelection = QCalendarWidget__SelectionMode(1) +) + +//QCalendarWidget::VerticalHeaderFormat +type QCalendarWidget__VerticalHeaderFormat int + +var ( + QCalendarWidget__NoVerticalHeader = QCalendarWidget__VerticalHeaderFormat(0) + QCalendarWidget__ISOWeekNumbers = QCalendarWidget__VerticalHeaderFormat(1) +) + +func (ptr *QCalendarWidget) DateEditAcceptDelay() int { + if ptr.Pointer() != nil { + return int(C.QCalendarWidget_DateEditAcceptDelay(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCalendarWidget) FirstDayOfWeek() core.Qt__DayOfWeek { + if ptr.Pointer() != nil { + return core.Qt__DayOfWeek(C.QCalendarWidget_FirstDayOfWeek(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCalendarWidget) HorizontalHeaderFormat() QCalendarWidget__HorizontalHeaderFormat { + if ptr.Pointer() != nil { + return QCalendarWidget__HorizontalHeaderFormat(C.QCalendarWidget_HorizontalHeaderFormat(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCalendarWidget) IsDateEditEnabled() bool { + if ptr.Pointer() != nil { + return C.QCalendarWidget_IsDateEditEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QCalendarWidget) IsGridVisible() bool { + if ptr.Pointer() != nil { + return C.QCalendarWidget_IsGridVisible(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QCalendarWidget) IsNavigationBarVisible() bool { + if ptr.Pointer() != nil { + return C.QCalendarWidget_IsNavigationBarVisible(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QCalendarWidget) SelectionMode() QCalendarWidget__SelectionMode { + if ptr.Pointer() != nil { + return QCalendarWidget__SelectionMode(C.QCalendarWidget_SelectionMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCalendarWidget) SetDateEditAcceptDelay(delay int) { + if ptr.Pointer() != nil { + C.QCalendarWidget_SetDateEditAcceptDelay(C.QtObjectPtr(ptr.Pointer()), C.int(delay)) + } +} + +func (ptr *QCalendarWidget) SetDateEditEnabled(enable bool) { + if ptr.Pointer() != nil { + C.QCalendarWidget_SetDateEditEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QCalendarWidget) SetFirstDayOfWeek(dayOfWeek core.Qt__DayOfWeek) { + if ptr.Pointer() != nil { + C.QCalendarWidget_SetFirstDayOfWeek(C.QtObjectPtr(ptr.Pointer()), C.int(dayOfWeek)) + } +} + +func (ptr *QCalendarWidget) SetGridVisible(show bool) { + if ptr.Pointer() != nil { + C.QCalendarWidget_SetGridVisible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(show))) + } +} + +func (ptr *QCalendarWidget) SetHorizontalHeaderFormat(format QCalendarWidget__HorizontalHeaderFormat) { + if ptr.Pointer() != nil { + C.QCalendarWidget_SetHorizontalHeaderFormat(C.QtObjectPtr(ptr.Pointer()), C.int(format)) + } +} + +func (ptr *QCalendarWidget) SetMaximumDate(date core.QDateITF) { + if ptr.Pointer() != nil { + C.QCalendarWidget_SetMaximumDate(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDate(date))) + } +} + +func (ptr *QCalendarWidget) SetMinimumDate(date core.QDateITF) { + if ptr.Pointer() != nil { + C.QCalendarWidget_SetMinimumDate(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDate(date))) + } +} + +func (ptr *QCalendarWidget) SetNavigationBarVisible(visible bool) { + if ptr.Pointer() != nil { + C.QCalendarWidget_SetNavigationBarVisible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(visible))) + } +} + +func (ptr *QCalendarWidget) SetSelectedDate(date core.QDateITF) { + if ptr.Pointer() != nil { + C.QCalendarWidget_SetSelectedDate(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDate(date))) + } +} + +func (ptr *QCalendarWidget) SetSelectionMode(mode QCalendarWidget__SelectionMode) { + if ptr.Pointer() != nil { + C.QCalendarWidget_SetSelectionMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QCalendarWidget) SetVerticalHeaderFormat(format QCalendarWidget__VerticalHeaderFormat) { + if ptr.Pointer() != nil { + C.QCalendarWidget_SetVerticalHeaderFormat(C.QtObjectPtr(ptr.Pointer()), C.int(format)) + } +} + +func (ptr *QCalendarWidget) VerticalHeaderFormat() QCalendarWidget__VerticalHeaderFormat { + if ptr.Pointer() != nil { + return QCalendarWidget__VerticalHeaderFormat(C.QCalendarWidget_VerticalHeaderFormat(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQCalendarWidget(parent QWidgetITF) *QCalendarWidget { + return QCalendarWidgetFromPointer(unsafe.Pointer(C.QCalendarWidget_NewQCalendarWidget(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QCalendarWidget) ConnectCurrentPageChanged(f func(year int, month int)) { + if ptr.Pointer() != nil { + C.QCalendarWidget_ConnectCurrentPageChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "currentPageChanged", f) + } +} + +func (ptr *QCalendarWidget) DisconnectCurrentPageChanged() { + if ptr.Pointer() != nil { + C.QCalendarWidget_DisconnectCurrentPageChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "currentPageChanged") + } +} + +//export callbackQCalendarWidgetCurrentPageChanged +func callbackQCalendarWidgetCurrentPageChanged(ptrName *C.char, year C.int, month C.int) { + qt.GetSignal(C.GoString(ptrName), "currentPageChanged").(func(int, int))(int(year), int(month)) +} + +func (ptr *QCalendarWidget) MonthShown() int { + if ptr.Pointer() != nil { + return int(C.QCalendarWidget_MonthShown(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCalendarWidget) ConnectSelectionChanged(f func()) { + if ptr.Pointer() != nil { + C.QCalendarWidget_ConnectSelectionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "selectionChanged", f) + } +} + +func (ptr *QCalendarWidget) DisconnectSelectionChanged() { + if ptr.Pointer() != nil { + C.QCalendarWidget_DisconnectSelectionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "selectionChanged") + } +} + +//export callbackQCalendarWidgetSelectionChanged +func callbackQCalendarWidgetSelectionChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "selectionChanged").(func())() +} + +func (ptr *QCalendarWidget) SetCurrentPage(year int, month int) { + if ptr.Pointer() != nil { + C.QCalendarWidget_SetCurrentPage(C.QtObjectPtr(ptr.Pointer()), C.int(year), C.int(month)) + } +} + +func (ptr *QCalendarWidget) SetDateRange(min core.QDateITF, max core.QDateITF) { + if ptr.Pointer() != nil { + C.QCalendarWidget_SetDateRange(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDate(min)), C.QtObjectPtr(core.PointerFromQDate(max))) + } +} + +func (ptr *QCalendarWidget) SetDateTextFormat(date core.QDateITF, format gui.QTextCharFormatITF) { + if ptr.Pointer() != nil { + C.QCalendarWidget_SetDateTextFormat(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDate(date)), C.QtObjectPtr(gui.PointerFromQTextCharFormat(format))) + } +} + +func (ptr *QCalendarWidget) SetHeaderTextFormat(format gui.QTextCharFormatITF) { + if ptr.Pointer() != nil { + C.QCalendarWidget_SetHeaderTextFormat(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQTextCharFormat(format))) + } +} + +func (ptr *QCalendarWidget) SetWeekdayTextFormat(dayOfWeek core.Qt__DayOfWeek, format gui.QTextCharFormatITF) { + if ptr.Pointer() != nil { + C.QCalendarWidget_SetWeekdayTextFormat(C.QtObjectPtr(ptr.Pointer()), C.int(dayOfWeek), C.QtObjectPtr(gui.PointerFromQTextCharFormat(format))) + } +} + +func (ptr *QCalendarWidget) ShowNextMonth() { + if ptr.Pointer() != nil { + C.QCalendarWidget_ShowNextMonth(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QCalendarWidget) ShowNextYear() { + if ptr.Pointer() != nil { + C.QCalendarWidget_ShowNextYear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QCalendarWidget) ShowPreviousMonth() { + if ptr.Pointer() != nil { + C.QCalendarWidget_ShowPreviousMonth(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QCalendarWidget) ShowPreviousYear() { + if ptr.Pointer() != nil { + C.QCalendarWidget_ShowPreviousYear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QCalendarWidget) ShowSelectedDate() { + if ptr.Pointer() != nil { + C.QCalendarWidget_ShowSelectedDate(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QCalendarWidget) ShowToday() { + if ptr.Pointer() != nil { + C.QCalendarWidget_ShowToday(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QCalendarWidget) YearShown() int { + if ptr.Pointer() != nil { + return int(C.QCalendarWidget_YearShown(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCalendarWidget) DestroyQCalendarWidget() { + if ptr.Pointer() != nil { + C.QCalendarWidget_DestroyQCalendarWidget(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qcalendarwidget.h b/widgets/qcalendarwidget.h new file mode 100755 index 00000000..438c296e --- /dev/null +++ b/widgets/qcalendarwidget.h @@ -0,0 +1,47 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QCalendarWidget_DateEditAcceptDelay(QtObjectPtr ptr); +int QCalendarWidget_FirstDayOfWeek(QtObjectPtr ptr); +int QCalendarWidget_HorizontalHeaderFormat(QtObjectPtr ptr); +int QCalendarWidget_IsDateEditEnabled(QtObjectPtr ptr); +int QCalendarWidget_IsGridVisible(QtObjectPtr ptr); +int QCalendarWidget_IsNavigationBarVisible(QtObjectPtr ptr); +int QCalendarWidget_SelectionMode(QtObjectPtr ptr); +void QCalendarWidget_SetDateEditAcceptDelay(QtObjectPtr ptr, int delay); +void QCalendarWidget_SetDateEditEnabled(QtObjectPtr ptr, int enable); +void QCalendarWidget_SetFirstDayOfWeek(QtObjectPtr ptr, int dayOfWeek); +void QCalendarWidget_SetGridVisible(QtObjectPtr ptr, int show); +void QCalendarWidget_SetHorizontalHeaderFormat(QtObjectPtr ptr, int format); +void QCalendarWidget_SetMaximumDate(QtObjectPtr ptr, QtObjectPtr date); +void QCalendarWidget_SetMinimumDate(QtObjectPtr ptr, QtObjectPtr date); +void QCalendarWidget_SetNavigationBarVisible(QtObjectPtr ptr, int visible); +void QCalendarWidget_SetSelectedDate(QtObjectPtr ptr, QtObjectPtr date); +void QCalendarWidget_SetSelectionMode(QtObjectPtr ptr, int mode); +void QCalendarWidget_SetVerticalHeaderFormat(QtObjectPtr ptr, int format); +int QCalendarWidget_VerticalHeaderFormat(QtObjectPtr ptr); +QtObjectPtr QCalendarWidget_NewQCalendarWidget(QtObjectPtr parent); +void QCalendarWidget_ConnectCurrentPageChanged(QtObjectPtr ptr); +void QCalendarWidget_DisconnectCurrentPageChanged(QtObjectPtr ptr); +int QCalendarWidget_MonthShown(QtObjectPtr ptr); +void QCalendarWidget_ConnectSelectionChanged(QtObjectPtr ptr); +void QCalendarWidget_DisconnectSelectionChanged(QtObjectPtr ptr); +void QCalendarWidget_SetCurrentPage(QtObjectPtr ptr, int year, int month); +void QCalendarWidget_SetDateRange(QtObjectPtr ptr, QtObjectPtr min, QtObjectPtr max); +void QCalendarWidget_SetDateTextFormat(QtObjectPtr ptr, QtObjectPtr date, QtObjectPtr format); +void QCalendarWidget_SetHeaderTextFormat(QtObjectPtr ptr, QtObjectPtr format); +void QCalendarWidget_SetWeekdayTextFormat(QtObjectPtr ptr, int dayOfWeek, QtObjectPtr format); +void QCalendarWidget_ShowNextMonth(QtObjectPtr ptr); +void QCalendarWidget_ShowNextYear(QtObjectPtr ptr); +void QCalendarWidget_ShowPreviousMonth(QtObjectPtr ptr); +void QCalendarWidget_ShowPreviousYear(QtObjectPtr ptr); +void QCalendarWidget_ShowSelectedDate(QtObjectPtr ptr); +void QCalendarWidget_ShowToday(QtObjectPtr ptr); +int QCalendarWidget_YearShown(QtObjectPtr ptr); +void QCalendarWidget_DestroyQCalendarWidget(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qcheckbox.cpp b/widgets/qcheckbox.cpp new file mode 100755 index 00000000..2452a747 --- /dev/null +++ b/widgets/qcheckbox.cpp @@ -0,0 +1,51 @@ +#include "qcheckbox.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCheckBox: public QCheckBox { +public: +void Signal_StateChanged(int state){callbackQCheckBoxStateChanged(this->objectName().toUtf8().data(), state);}; +}; + +int QCheckBox_IsTristate(QtObjectPtr ptr){ + return static_cast(ptr)->isTristate(); +} + +void QCheckBox_SetTristate(QtObjectPtr ptr, int y){ + static_cast(ptr)->setTristate(y != 0); +} + +QtObjectPtr QCheckBox_NewQCheckBox(QtObjectPtr parent){ + return new QCheckBox(static_cast(parent)); +} + +QtObjectPtr QCheckBox_NewQCheckBox2(char* text, QtObjectPtr parent){ + return new QCheckBox(QString(text), static_cast(parent)); +} + +int QCheckBox_CheckState(QtObjectPtr ptr){ + return static_cast(ptr)->checkState(); +} + +void QCheckBox_SetCheckState(QtObjectPtr ptr, int state){ + static_cast(ptr)->setCheckState(static_cast(state)); +} + +void QCheckBox_ConnectStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCheckBox::stateChanged), static_cast(ptr), static_cast(&MyQCheckBox::Signal_StateChanged));; +} + +void QCheckBox_DisconnectStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCheckBox::stateChanged), static_cast(ptr), static_cast(&MyQCheckBox::Signal_StateChanged));; +} + +void QCheckBox_DestroyQCheckBox(QtObjectPtr ptr){ + static_cast(ptr)->~QCheckBox(); +} + diff --git a/widgets/qcheckbox.go b/widgets/qcheckbox.go new file mode 100755 index 00000000..23db05b6 --- /dev/null +++ b/widgets/qcheckbox.go @@ -0,0 +1,98 @@ +package widgets + +//#include "qcheckbox.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QCheckBox struct { + QAbstractButton +} + +type QCheckBoxITF interface { + QAbstractButtonITF + QCheckBoxPTR() *QCheckBox +} + +func PointerFromQCheckBox(ptr QCheckBoxITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCheckBoxPTR().Pointer() + } + return nil +} + +func QCheckBoxFromPointer(ptr unsafe.Pointer) *QCheckBox { + var n = new(QCheckBox) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCheckBox_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCheckBox) QCheckBoxPTR() *QCheckBox { + return ptr +} + +func (ptr *QCheckBox) IsTristate() bool { + if ptr.Pointer() != nil { + return C.QCheckBox_IsTristate(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QCheckBox) SetTristate(y bool) { + if ptr.Pointer() != nil { + C.QCheckBox_SetTristate(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(y))) + } +} + +func NewQCheckBox(parent QWidgetITF) *QCheckBox { + return QCheckBoxFromPointer(unsafe.Pointer(C.QCheckBox_NewQCheckBox(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQCheckBox2(text string, parent QWidgetITF) *QCheckBox { + return QCheckBoxFromPointer(unsafe.Pointer(C.QCheckBox_NewQCheckBox2(C.CString(text), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QCheckBox) CheckState() core.Qt__CheckState { + if ptr.Pointer() != nil { + return core.Qt__CheckState(C.QCheckBox_CheckState(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCheckBox) SetCheckState(state core.Qt__CheckState) { + if ptr.Pointer() != nil { + C.QCheckBox_SetCheckState(C.QtObjectPtr(ptr.Pointer()), C.int(state)) + } +} + +func (ptr *QCheckBox) ConnectStateChanged(f func(state int)) { + if ptr.Pointer() != nil { + C.QCheckBox_ConnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stateChanged", f) + } +} + +func (ptr *QCheckBox) DisconnectStateChanged() { + if ptr.Pointer() != nil { + C.QCheckBox_DisconnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stateChanged") + } +} + +//export callbackQCheckBoxStateChanged +func callbackQCheckBoxStateChanged(ptrName *C.char, state C.int) { + qt.GetSignal(C.GoString(ptrName), "stateChanged").(func(int))(int(state)) +} + +func (ptr *QCheckBox) DestroyQCheckBox() { + if ptr.Pointer() != nil { + C.QCheckBox_DestroyQCheckBox(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qcheckbox.h b/widgets/qcheckbox.h new file mode 100755 index 00000000..5754b3b6 --- /dev/null +++ b/widgets/qcheckbox.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QCheckBox_IsTristate(QtObjectPtr ptr); +void QCheckBox_SetTristate(QtObjectPtr ptr, int y); +QtObjectPtr QCheckBox_NewQCheckBox(QtObjectPtr parent); +QtObjectPtr QCheckBox_NewQCheckBox2(char* text, QtObjectPtr parent); +int QCheckBox_CheckState(QtObjectPtr ptr); +void QCheckBox_SetCheckState(QtObjectPtr ptr, int state); +void QCheckBox_ConnectStateChanged(QtObjectPtr ptr); +void QCheckBox_DisconnectStateChanged(QtObjectPtr ptr); +void QCheckBox_DestroyQCheckBox(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qcolordialog.cpp b/widgets/qcolordialog.cpp new file mode 100755 index 00000000..c762f689 --- /dev/null +++ b/widgets/qcolordialog.cpp @@ -0,0 +1,67 @@ +#include "qcolordialog.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQColorDialog: public QColorDialog { +public: +}; + +int QColorDialog_Options(QtObjectPtr ptr){ + return static_cast(ptr)->options(); +} + +void QColorDialog_SetCurrentColor(QtObjectPtr ptr, QtObjectPtr color){ + static_cast(ptr)->setCurrentColor(*static_cast(color)); +} + +void QColorDialog_SetOptions(QtObjectPtr ptr, int options){ + static_cast(ptr)->setOptions(static_cast(options)); +} + +QtObjectPtr QColorDialog_NewQColorDialog(QtObjectPtr parent){ + return new QColorDialog(static_cast(parent)); +} + +QtObjectPtr QColorDialog_NewQColorDialog2(QtObjectPtr initial, QtObjectPtr parent){ + return new QColorDialog(*static_cast(initial), static_cast(parent)); +} + +int QColorDialog_QColorDialog_CustomCount(){ + return QColorDialog::customCount(); +} + +void QColorDialog_Open(QtObjectPtr ptr, QtObjectPtr receiver, char* member){ + static_cast(ptr)->open(static_cast(receiver), const_cast(member)); +} + +void QColorDialog_QColorDialog_SetCustomColor(int index, QtObjectPtr color){ + QColorDialog::setCustomColor(index, *static_cast(color)); +} + +void QColorDialog_SetOption(QtObjectPtr ptr, int option, int on){ + static_cast(ptr)->setOption(static_cast(option), on != 0); +} + +void QColorDialog_QColorDialog_SetStandardColor(int index, QtObjectPtr color){ + QColorDialog::setStandardColor(index, *static_cast(color)); +} + +void QColorDialog_SetVisible(QtObjectPtr ptr, int visible){ + static_cast(ptr)->setVisible(visible != 0); +} + +int QColorDialog_TestOption(QtObjectPtr ptr, int option){ + return static_cast(ptr)->testOption(static_cast(option)); +} + +void QColorDialog_DestroyQColorDialog(QtObjectPtr ptr){ + static_cast(ptr)->~QColorDialog(); +} + diff --git a/widgets/qcolordialog.go b/widgets/qcolordialog.go new file mode 100755 index 00000000..c1ed53d5 --- /dev/null +++ b/widgets/qcolordialog.go @@ -0,0 +1,119 @@ +package widgets + +//#include "qcolordialog.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QColorDialog struct { + QDialog +} + +type QColorDialogITF interface { + QDialogITF + QColorDialogPTR() *QColorDialog +} + +func PointerFromQColorDialog(ptr QColorDialogITF) unsafe.Pointer { + if ptr != nil { + return ptr.QColorDialogPTR().Pointer() + } + return nil +} + +func QColorDialogFromPointer(ptr unsafe.Pointer) *QColorDialog { + var n = new(QColorDialog) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QColorDialog_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QColorDialog) QColorDialogPTR() *QColorDialog { + return ptr +} + +//QColorDialog::ColorDialogOption +type QColorDialog__ColorDialogOption int + +var ( + QColorDialog__ShowAlphaChannel = QColorDialog__ColorDialogOption(0x00000001) + QColorDialog__NoButtons = QColorDialog__ColorDialogOption(0x00000002) + QColorDialog__DontUseNativeDialog = QColorDialog__ColorDialogOption(0x00000004) +) + +func (ptr *QColorDialog) Options() QColorDialog__ColorDialogOption { + if ptr.Pointer() != nil { + return QColorDialog__ColorDialogOption(C.QColorDialog_Options(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QColorDialog) SetCurrentColor(color gui.QColorITF) { + if ptr.Pointer() != nil { + C.QColorDialog_SetCurrentColor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQColor(color))) + } +} + +func (ptr *QColorDialog) SetOptions(options QColorDialog__ColorDialogOption) { + if ptr.Pointer() != nil { + C.QColorDialog_SetOptions(C.QtObjectPtr(ptr.Pointer()), C.int(options)) + } +} + +func NewQColorDialog(parent QWidgetITF) *QColorDialog { + return QColorDialogFromPointer(unsafe.Pointer(C.QColorDialog_NewQColorDialog(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQColorDialog2(initial gui.QColorITF, parent QWidgetITF) *QColorDialog { + return QColorDialogFromPointer(unsafe.Pointer(C.QColorDialog_NewQColorDialog2(C.QtObjectPtr(gui.PointerFromQColor(initial)), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func QColorDialog_CustomCount() int { + return int(C.QColorDialog_QColorDialog_CustomCount()) +} + +func (ptr *QColorDialog) Open(receiver core.QObjectITF, member string) { + if ptr.Pointer() != nil { + C.QColorDialog_Open(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(receiver)), C.CString(member)) + } +} + +func QColorDialog_SetCustomColor(index int, color gui.QColorITF) { + C.QColorDialog_QColorDialog_SetCustomColor(C.int(index), C.QtObjectPtr(gui.PointerFromQColor(color))) +} + +func (ptr *QColorDialog) SetOption(option QColorDialog__ColorDialogOption, on bool) { + if ptr.Pointer() != nil { + C.QColorDialog_SetOption(C.QtObjectPtr(ptr.Pointer()), C.int(option), C.int(qt.GoBoolToInt(on))) + } +} + +func QColorDialog_SetStandardColor(index int, color gui.QColorITF) { + C.QColorDialog_QColorDialog_SetStandardColor(C.int(index), C.QtObjectPtr(gui.PointerFromQColor(color))) +} + +func (ptr *QColorDialog) SetVisible(visible bool) { + if ptr.Pointer() != nil { + C.QColorDialog_SetVisible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(visible))) + } +} + +func (ptr *QColorDialog) TestOption(option QColorDialog__ColorDialogOption) bool { + if ptr.Pointer() != nil { + return C.QColorDialog_TestOption(C.QtObjectPtr(ptr.Pointer()), C.int(option)) != 0 + } + return false +} + +func (ptr *QColorDialog) DestroyQColorDialog() { + if ptr.Pointer() != nil { + C.QColorDialog_DestroyQColorDialog(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qcolordialog.h b/widgets/qcolordialog.h new file mode 100755 index 00000000..f221f44c --- /dev/null +++ b/widgets/qcolordialog.h @@ -0,0 +1,22 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QColorDialog_Options(QtObjectPtr ptr); +void QColorDialog_SetCurrentColor(QtObjectPtr ptr, QtObjectPtr color); +void QColorDialog_SetOptions(QtObjectPtr ptr, int options); +QtObjectPtr QColorDialog_NewQColorDialog(QtObjectPtr parent); +QtObjectPtr QColorDialog_NewQColorDialog2(QtObjectPtr initial, QtObjectPtr parent); +int QColorDialog_QColorDialog_CustomCount(); +void QColorDialog_Open(QtObjectPtr ptr, QtObjectPtr receiver, char* member); +void QColorDialog_QColorDialog_SetCustomColor(int index, QtObjectPtr color); +void QColorDialog_SetOption(QtObjectPtr ptr, int option, int on); +void QColorDialog_QColorDialog_SetStandardColor(int index, QtObjectPtr color); +void QColorDialog_SetVisible(QtObjectPtr ptr, int visible); +int QColorDialog_TestOption(QtObjectPtr ptr, int option); +void QColorDialog_DestroyQColorDialog(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qcolormap.cpp b/widgets/qcolormap.cpp new file mode 100755 index 00000000..b765e24d --- /dev/null +++ b/widgets/qcolormap.cpp @@ -0,0 +1,33 @@ +#include "qcolormap.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQColormap: public QColormap { +public: +}; + +QtObjectPtr QColormap_NewQColormap(QtObjectPtr colormap){ + return new QColormap(*static_cast(colormap)); +} + +int QColormap_Depth(QtObjectPtr ptr){ + return static_cast(ptr)->depth(); +} + +int QColormap_Mode(QtObjectPtr ptr){ + return static_cast(ptr)->mode(); +} + +int QColormap_Size(QtObjectPtr ptr){ + return static_cast(ptr)->size(); +} + +void QColormap_DestroyQColormap(QtObjectPtr ptr){ + static_cast(ptr)->~QColormap(); +} + diff --git a/widgets/qcolormap.go b/widgets/qcolormap.go new file mode 100755 index 00000000..bbdd5ec4 --- /dev/null +++ b/widgets/qcolormap.go @@ -0,0 +1,80 @@ +package widgets + +//#include "qcolormap.h" +import "C" +import ( + "unsafe" +) + +type QColormap struct { + ptr unsafe.Pointer +} + +type QColormapITF interface { + QColormapPTR() *QColormap +} + +func (p *QColormap) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QColormap) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQColormap(ptr QColormapITF) unsafe.Pointer { + if ptr != nil { + return ptr.QColormapPTR().Pointer() + } + return nil +} + +func QColormapFromPointer(ptr unsafe.Pointer) *QColormap { + var n = new(QColormap) + n.SetPointer(ptr) + return n +} + +func (ptr *QColormap) QColormapPTR() *QColormap { + return ptr +} + +//QColormap::Mode +type QColormap__Mode int + +var ( + QColormap__Direct = QColormap__Mode(0) + QColormap__Indexed = QColormap__Mode(1) + QColormap__Gray = QColormap__Mode(2) +) + +func NewQColormap(colormap QColormapITF) *QColormap { + return QColormapFromPointer(unsafe.Pointer(C.QColormap_NewQColormap(C.QtObjectPtr(PointerFromQColormap(colormap))))) +} + +func (ptr *QColormap) Depth() int { + if ptr.Pointer() != nil { + return int(C.QColormap_Depth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QColormap) Mode() QColormap__Mode { + if ptr.Pointer() != nil { + return QColormap__Mode(C.QColormap_Mode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QColormap) Size() int { + if ptr.Pointer() != nil { + return int(C.QColormap_Size(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QColormap) DestroyQColormap() { + if ptr.Pointer() != nil { + C.QColormap_DestroyQColormap(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qcolormap.h b/widgets/qcolormap.h new file mode 100755 index 00000000..5a6937e4 --- /dev/null +++ b/widgets/qcolormap.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QColormap_NewQColormap(QtObjectPtr colormap); +int QColormap_Depth(QtObjectPtr ptr); +int QColormap_Mode(QtObjectPtr ptr); +int QColormap_Size(QtObjectPtr ptr); +void QColormap_DestroyQColormap(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qcolumnview.cpp b/widgets/qcolumnview.cpp new file mode 100755 index 00000000..4eb0e994 --- /dev/null +++ b/widgets/qcolumnview.cpp @@ -0,0 +1,76 @@ +#include "qcolumnview.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQColumnView: public QColumnView { +public: +void Signal_UpdatePreviewWidget(const QModelIndex & index){callbackQColumnViewUpdatePreviewWidget(this->objectName().toUtf8().data(), index.internalPointer());}; +}; + +int QColumnView_ResizeGripsVisible(QtObjectPtr ptr){ + return static_cast(ptr)->resizeGripsVisible(); +} + +void QColumnView_SetResizeGripsVisible(QtObjectPtr ptr, int visible){ + static_cast(ptr)->setResizeGripsVisible(visible != 0); +} + +QtObjectPtr QColumnView_NewQColumnView(QtObjectPtr parent){ + return new QColumnView(static_cast(parent)); +} + +QtObjectPtr QColumnView_IndexAt(QtObjectPtr ptr, QtObjectPtr point){ + return static_cast(ptr)->indexAt(*static_cast(point)).internalPointer(); +} + +QtObjectPtr QColumnView_PreviewWidget(QtObjectPtr ptr){ + return static_cast(ptr)->previewWidget(); +} + +void QColumnView_ScrollTo(QtObjectPtr ptr, QtObjectPtr index, int hint){ + static_cast(ptr)->scrollTo(*static_cast(index), static_cast(hint)); +} + +void QColumnView_SelectAll(QtObjectPtr ptr){ + static_cast(ptr)->selectAll(); +} + +void QColumnView_SetModel(QtObjectPtr ptr, QtObjectPtr model){ + static_cast(ptr)->setModel(static_cast(model)); +} + +void QColumnView_SetPreviewWidget(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->setPreviewWidget(static_cast(widget)); +} + +void QColumnView_SetRootIndex(QtObjectPtr ptr, QtObjectPtr index){ + static_cast(ptr)->setRootIndex(*static_cast(index)); +} + +void QColumnView_SetSelectionModel(QtObjectPtr ptr, QtObjectPtr newSelectionModel){ + static_cast(ptr)->setSelectionModel(static_cast(newSelectionModel)); +} + +void QColumnView_ConnectUpdatePreviewWidget(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QColumnView::updatePreviewWidget), static_cast(ptr), static_cast(&MyQColumnView::Signal_UpdatePreviewWidget));; +} + +void QColumnView_DisconnectUpdatePreviewWidget(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QColumnView::updatePreviewWidget), static_cast(ptr), static_cast(&MyQColumnView::Signal_UpdatePreviewWidget));; +} + +void QColumnView_DestroyQColumnView(QtObjectPtr ptr){ + static_cast(ptr)->~QColumnView(); +} + diff --git a/widgets/qcolumnview.go b/widgets/qcolumnview.go new file mode 100755 index 00000000..b9af1e04 --- /dev/null +++ b/widgets/qcolumnview.go @@ -0,0 +1,131 @@ +package widgets + +//#include "qcolumnview.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QColumnView struct { + QAbstractItemView +} + +type QColumnViewITF interface { + QAbstractItemViewITF + QColumnViewPTR() *QColumnView +} + +func PointerFromQColumnView(ptr QColumnViewITF) unsafe.Pointer { + if ptr != nil { + return ptr.QColumnViewPTR().Pointer() + } + return nil +} + +func QColumnViewFromPointer(ptr unsafe.Pointer) *QColumnView { + var n = new(QColumnView) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QColumnView_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QColumnView) QColumnViewPTR() *QColumnView { + return ptr +} + +func (ptr *QColumnView) ResizeGripsVisible() bool { + if ptr.Pointer() != nil { + return C.QColumnView_ResizeGripsVisible(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QColumnView) SetResizeGripsVisible(visible bool) { + if ptr.Pointer() != nil { + C.QColumnView_SetResizeGripsVisible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(visible))) + } +} + +func NewQColumnView(parent QWidgetITF) *QColumnView { + return QColumnViewFromPointer(unsafe.Pointer(C.QColumnView_NewQColumnView(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QColumnView) IndexAt(point core.QPointITF) *core.QModelIndex { + if ptr.Pointer() != nil { + return core.QModelIndexFromPointer(unsafe.Pointer(C.QColumnView_IndexAt(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(point))))) + } + return nil +} + +func (ptr *QColumnView) PreviewWidget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QColumnView_PreviewWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QColumnView) ScrollTo(index core.QModelIndexITF, hint QAbstractItemView__ScrollHint) { + if ptr.Pointer() != nil { + C.QColumnView_ScrollTo(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index)), C.int(hint)) + } +} + +func (ptr *QColumnView) SelectAll() { + if ptr.Pointer() != nil { + C.QColumnView_SelectAll(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QColumnView) SetModel(model core.QAbstractItemModelITF) { + if ptr.Pointer() != nil { + C.QColumnView_SetModel(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQAbstractItemModel(model))) + } +} + +func (ptr *QColumnView) SetPreviewWidget(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QColumnView_SetPreviewWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QColumnView) SetRootIndex(index core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QColumnView_SetRootIndex(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index))) + } +} + +func (ptr *QColumnView) SetSelectionModel(newSelectionModel core.QItemSelectionModelITF) { + if ptr.Pointer() != nil { + C.QColumnView_SetSelectionModel(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQItemSelectionModel(newSelectionModel))) + } +} + +func (ptr *QColumnView) ConnectUpdatePreviewWidget(f func(index core.QModelIndexITF)) { + if ptr.Pointer() != nil { + C.QColumnView_ConnectUpdatePreviewWidget(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "updatePreviewWidget", f) + } +} + +func (ptr *QColumnView) DisconnectUpdatePreviewWidget() { + if ptr.Pointer() != nil { + C.QColumnView_DisconnectUpdatePreviewWidget(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "updatePreviewWidget") + } +} + +//export callbackQColumnViewUpdatePreviewWidget +func callbackQColumnViewUpdatePreviewWidget(ptrName *C.char, index unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "updatePreviewWidget").(func(*core.QModelIndex))(core.QModelIndexFromPointer(index)) +} + +func (ptr *QColumnView) DestroyQColumnView() { + if ptr.Pointer() != nil { + C.QColumnView_DestroyQColumnView(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qcolumnview.h b/widgets/qcolumnview.h new file mode 100755 index 00000000..df8798b2 --- /dev/null +++ b/widgets/qcolumnview.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QColumnView_ResizeGripsVisible(QtObjectPtr ptr); +void QColumnView_SetResizeGripsVisible(QtObjectPtr ptr, int visible); +QtObjectPtr QColumnView_NewQColumnView(QtObjectPtr parent); +QtObjectPtr QColumnView_IndexAt(QtObjectPtr ptr, QtObjectPtr point); +QtObjectPtr QColumnView_PreviewWidget(QtObjectPtr ptr); +void QColumnView_ScrollTo(QtObjectPtr ptr, QtObjectPtr index, int hint); +void QColumnView_SelectAll(QtObjectPtr ptr); +void QColumnView_SetModel(QtObjectPtr ptr, QtObjectPtr model); +void QColumnView_SetPreviewWidget(QtObjectPtr ptr, QtObjectPtr widget); +void QColumnView_SetRootIndex(QtObjectPtr ptr, QtObjectPtr index); +void QColumnView_SetSelectionModel(QtObjectPtr ptr, QtObjectPtr newSelectionModel); +void QColumnView_ConnectUpdatePreviewWidget(QtObjectPtr ptr); +void QColumnView_DisconnectUpdatePreviewWidget(QtObjectPtr ptr); +void QColumnView_DestroyQColumnView(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qcombobox.cpp b/widgets/qcombobox.cpp new file mode 100755 index 00000000..160d3e28 --- /dev/null +++ b/widgets/qcombobox.cpp @@ -0,0 +1,322 @@ +#include "qcombobox.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQComboBox: public QComboBox { +public: +void Signal_Activated(int index){callbackQComboBoxActivated(this->objectName().toUtf8().data(), index);}; +void Signal_CurrentIndexChanged(int index){callbackQComboBoxCurrentIndexChanged(this->objectName().toUtf8().data(), index);}; +void Signal_CurrentTextChanged(const QString & text){callbackQComboBoxCurrentTextChanged(this->objectName().toUtf8().data(), text.toUtf8().data());}; +void Signal_EditTextChanged(const QString & text){callbackQComboBoxEditTextChanged(this->objectName().toUtf8().data(), text.toUtf8().data());}; +void Signal_Highlighted(int index){callbackQComboBoxHighlighted(this->objectName().toUtf8().data(), index);}; +}; + +int QComboBox_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +char* QComboBox_CurrentData(QtObjectPtr ptr, int role){ + return static_cast(ptr)->currentData(role).toString().toUtf8().data(); +} + +int QComboBox_CurrentIndex(QtObjectPtr ptr){ + return static_cast(ptr)->currentIndex(); +} + +char* QComboBox_CurrentText(QtObjectPtr ptr){ + return static_cast(ptr)->currentText().toUtf8().data(); +} + +int QComboBox_DuplicatesEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->duplicatesEnabled(); +} + +int QComboBox_HasFrame(QtObjectPtr ptr){ + return static_cast(ptr)->hasFrame(); +} + +int QComboBox_InsertPolicy(QtObjectPtr ptr){ + return static_cast(ptr)->insertPolicy(); +} + +int QComboBox_IsEditable(QtObjectPtr ptr){ + return static_cast(ptr)->isEditable(); +} + +int QComboBox_MaxCount(QtObjectPtr ptr){ + return static_cast(ptr)->maxCount(); +} + +int QComboBox_MaxVisibleItems(QtObjectPtr ptr){ + return static_cast(ptr)->maxVisibleItems(); +} + +int QComboBox_MinimumContentsLength(QtObjectPtr ptr){ + return static_cast(ptr)->minimumContentsLength(); +} + +int QComboBox_ModelColumn(QtObjectPtr ptr){ + return static_cast(ptr)->modelColumn(); +} + +void QComboBox_SetCompleter(QtObjectPtr ptr, QtObjectPtr completer){ + static_cast(ptr)->setCompleter(static_cast(completer)); +} + +void QComboBox_SetCurrentIndex(QtObjectPtr ptr, int index){ + QMetaObject::invokeMethod(static_cast(ptr), "setCurrentIndex", Q_ARG(int, index)); +} + +void QComboBox_SetCurrentText(QtObjectPtr ptr, char* text){ + QMetaObject::invokeMethod(static_cast(ptr), "setCurrentText", Q_ARG(QString, QString(text))); +} + +void QComboBox_SetDuplicatesEnabled(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setDuplicatesEnabled(enable != 0); +} + +void QComboBox_SetEditable(QtObjectPtr ptr, int editable){ + static_cast(ptr)->setEditable(editable != 0); +} + +void QComboBox_SetFrame(QtObjectPtr ptr, int v){ + static_cast(ptr)->setFrame(v != 0); +} + +void QComboBox_SetIconSize(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->setIconSize(*static_cast(size)); +} + +void QComboBox_SetInsertPolicy(QtObjectPtr ptr, int policy){ + static_cast(ptr)->setInsertPolicy(static_cast(policy)); +} + +void QComboBox_SetMaxCount(QtObjectPtr ptr, int max){ + static_cast(ptr)->setMaxCount(max); +} + +void QComboBox_SetMaxVisibleItems(QtObjectPtr ptr, int maxItems){ + static_cast(ptr)->setMaxVisibleItems(maxItems); +} + +void QComboBox_SetMinimumContentsLength(QtObjectPtr ptr, int characters){ + static_cast(ptr)->setMinimumContentsLength(characters); +} + +void QComboBox_SetModelColumn(QtObjectPtr ptr, int visibleColumn){ + static_cast(ptr)->setModelColumn(visibleColumn); +} + +void QComboBox_SetSizeAdjustPolicy(QtObjectPtr ptr, int policy){ + static_cast(ptr)->setSizeAdjustPolicy(static_cast(policy)); +} + +void QComboBox_SetValidator(QtObjectPtr ptr, QtObjectPtr validator){ + static_cast(ptr)->setValidator(static_cast(validator)); +} + +int QComboBox_SizeAdjustPolicy(QtObjectPtr ptr){ + return static_cast(ptr)->sizeAdjustPolicy(); +} + +QtObjectPtr QComboBox_NewQComboBox(QtObjectPtr parent){ + return new QComboBox(static_cast(parent)); +} + +void QComboBox_ConnectActivated(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QComboBox::activated), static_cast(ptr), static_cast(&MyQComboBox::Signal_Activated));; +} + +void QComboBox_DisconnectActivated(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QComboBox::activated), static_cast(ptr), static_cast(&MyQComboBox::Signal_Activated));; +} + +void QComboBox_AddItem2(QtObjectPtr ptr, QtObjectPtr icon, char* text, char* userData){ + static_cast(ptr)->addItem(*static_cast(icon), QString(text), QVariant(userData)); +} + +void QComboBox_AddItem(QtObjectPtr ptr, char* text, char* userData){ + static_cast(ptr)->addItem(QString(text), QVariant(userData)); +} + +void QComboBox_AddItems(QtObjectPtr ptr, char* texts){ + static_cast(ptr)->addItems(QString(texts).split("|", QString::SkipEmptyParts)); +} + +void QComboBox_Clear(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "clear"); +} + +void QComboBox_ClearEditText(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "clearEditText"); +} + +QtObjectPtr QComboBox_Completer(QtObjectPtr ptr){ + return static_cast(ptr)->completer(); +} + +void QComboBox_ConnectCurrentIndexChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QComboBox::currentIndexChanged), static_cast(ptr), static_cast(&MyQComboBox::Signal_CurrentIndexChanged));; +} + +void QComboBox_DisconnectCurrentIndexChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QComboBox::currentIndexChanged), static_cast(ptr), static_cast(&MyQComboBox::Signal_CurrentIndexChanged));; +} + +void QComboBox_ConnectCurrentTextChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QComboBox::currentTextChanged), static_cast(ptr), static_cast(&MyQComboBox::Signal_CurrentTextChanged));; +} + +void QComboBox_DisconnectCurrentTextChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QComboBox::currentTextChanged), static_cast(ptr), static_cast(&MyQComboBox::Signal_CurrentTextChanged));; +} + +void QComboBox_ConnectEditTextChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QComboBox::editTextChanged), static_cast(ptr), static_cast(&MyQComboBox::Signal_EditTextChanged));; +} + +void QComboBox_DisconnectEditTextChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QComboBox::editTextChanged), static_cast(ptr), static_cast(&MyQComboBox::Signal_EditTextChanged));; +} + +int QComboBox_Event(QtObjectPtr ptr, QtObjectPtr event){ + return static_cast(ptr)->event(static_cast(event)); +} + +int QComboBox_FindData(QtObjectPtr ptr, char* data, int role, int flags){ + return static_cast(ptr)->findData(QVariant(data), role, static_cast(flags)); +} + +int QComboBox_FindText(QtObjectPtr ptr, char* text, int flags){ + return static_cast(ptr)->findText(QString(text), static_cast(flags)); +} + +void QComboBox_HidePopup(QtObjectPtr ptr){ + static_cast(ptr)->hidePopup(); +} + +void QComboBox_ConnectHighlighted(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QComboBox::highlighted), static_cast(ptr), static_cast(&MyQComboBox::Signal_Highlighted));; +} + +void QComboBox_DisconnectHighlighted(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QComboBox::highlighted), static_cast(ptr), static_cast(&MyQComboBox::Signal_Highlighted));; +} + +char* QComboBox_InputMethodQuery(QtObjectPtr ptr, int query){ + return static_cast(ptr)->inputMethodQuery(static_cast(query)).toString().toUtf8().data(); +} + +void QComboBox_InsertItem2(QtObjectPtr ptr, int index, QtObjectPtr icon, char* text, char* userData){ + static_cast(ptr)->insertItem(index, *static_cast(icon), QString(text), QVariant(userData)); +} + +void QComboBox_InsertItem(QtObjectPtr ptr, int index, char* text, char* userData){ + static_cast(ptr)->insertItem(index, QString(text), QVariant(userData)); +} + +void QComboBox_InsertItems(QtObjectPtr ptr, int index, char* list){ + static_cast(ptr)->insertItems(index, QString(list).split("|", QString::SkipEmptyParts)); +} + +void QComboBox_InsertSeparator(QtObjectPtr ptr, int index){ + static_cast(ptr)->insertSeparator(index); +} + +char* QComboBox_ItemData(QtObjectPtr ptr, int index, int role){ + return static_cast(ptr)->itemData(index, role).toString().toUtf8().data(); +} + +QtObjectPtr QComboBox_ItemDelegate(QtObjectPtr ptr){ + return static_cast(ptr)->itemDelegate(); +} + +char* QComboBox_ItemText(QtObjectPtr ptr, int index){ + return static_cast(ptr)->itemText(index).toUtf8().data(); +} + +QtObjectPtr QComboBox_LineEdit(QtObjectPtr ptr){ + return static_cast(ptr)->lineEdit(); +} + +QtObjectPtr QComboBox_Model(QtObjectPtr ptr){ + return static_cast(ptr)->model(); +} + +void QComboBox_RemoveItem(QtObjectPtr ptr, int index){ + static_cast(ptr)->removeItem(index); +} + +QtObjectPtr QComboBox_RootModelIndex(QtObjectPtr ptr){ + return static_cast(ptr)->rootModelIndex().internalPointer(); +} + +void QComboBox_SetEditText(QtObjectPtr ptr, char* text){ + QMetaObject::invokeMethod(static_cast(ptr), "setEditText", Q_ARG(QString, QString(text))); +} + +void QComboBox_SetItemData(QtObjectPtr ptr, int index, char* value, int role){ + static_cast(ptr)->setItemData(index, QVariant(value), role); +} + +void QComboBox_SetItemDelegate(QtObjectPtr ptr, QtObjectPtr delegate){ + static_cast(ptr)->setItemDelegate(static_cast(delegate)); +} + +void QComboBox_SetItemIcon(QtObjectPtr ptr, int index, QtObjectPtr icon){ + static_cast(ptr)->setItemIcon(index, *static_cast(icon)); +} + +void QComboBox_SetItemText(QtObjectPtr ptr, int index, char* text){ + static_cast(ptr)->setItemText(index, QString(text)); +} + +void QComboBox_SetLineEdit(QtObjectPtr ptr, QtObjectPtr edit){ + static_cast(ptr)->setLineEdit(static_cast(edit)); +} + +void QComboBox_SetModel(QtObjectPtr ptr, QtObjectPtr model){ + static_cast(ptr)->setModel(static_cast(model)); +} + +void QComboBox_SetRootModelIndex(QtObjectPtr ptr, QtObjectPtr index){ + static_cast(ptr)->setRootModelIndex(*static_cast(index)); +} + +void QComboBox_SetView(QtObjectPtr ptr, QtObjectPtr itemView){ + static_cast(ptr)->setView(static_cast(itemView)); +} + +void QComboBox_ShowPopup(QtObjectPtr ptr){ + static_cast(ptr)->showPopup(); +} + +QtObjectPtr QComboBox_Validator(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->validator()); +} + +QtObjectPtr QComboBox_View(QtObjectPtr ptr){ + return static_cast(ptr)->view(); +} + +void QComboBox_DestroyQComboBox(QtObjectPtr ptr){ + static_cast(ptr)->~QComboBox(); +} + diff --git a/widgets/qcombobox.go b/widgets/qcombobox.go new file mode 100755 index 00000000..97372bb4 --- /dev/null +++ b/widgets/qcombobox.go @@ -0,0 +1,561 @@ +package widgets + +//#include "qcombobox.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "strings" + "unsafe" +) + +type QComboBox struct { + QWidget +} + +type QComboBoxITF interface { + QWidgetITF + QComboBoxPTR() *QComboBox +} + +func PointerFromQComboBox(ptr QComboBoxITF) unsafe.Pointer { + if ptr != nil { + return ptr.QComboBoxPTR().Pointer() + } + return nil +} + +func QComboBoxFromPointer(ptr unsafe.Pointer) *QComboBox { + var n = new(QComboBox) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QComboBox_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QComboBox) QComboBoxPTR() *QComboBox { + return ptr +} + +//QComboBox::InsertPolicy +type QComboBox__InsertPolicy int + +var ( + QComboBox__NoInsert = QComboBox__InsertPolicy(0) + QComboBox__InsertAtTop = QComboBox__InsertPolicy(1) + QComboBox__InsertAtCurrent = QComboBox__InsertPolicy(2) + QComboBox__InsertAtBottom = QComboBox__InsertPolicy(3) + QComboBox__InsertAfterCurrent = QComboBox__InsertPolicy(4) + QComboBox__InsertBeforeCurrent = QComboBox__InsertPolicy(5) + QComboBox__InsertAlphabetically = QComboBox__InsertPolicy(6) +) + +//QComboBox::SizeAdjustPolicy +type QComboBox__SizeAdjustPolicy int + +var ( + QComboBox__AdjustToContents = QComboBox__SizeAdjustPolicy(0) + QComboBox__AdjustToContentsOnFirstShow = QComboBox__SizeAdjustPolicy(1) + QComboBox__AdjustToMinimumContentsLength = QComboBox__SizeAdjustPolicy(2) + QComboBox__AdjustToMinimumContentsLengthWithIcon = QComboBox__SizeAdjustPolicy(3) +) + +func (ptr *QComboBox) Count() int { + if ptr.Pointer() != nil { + return int(C.QComboBox_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QComboBox) CurrentData(role int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QComboBox_CurrentData(C.QtObjectPtr(ptr.Pointer()), C.int(role))) + } + return "" +} + +func (ptr *QComboBox) CurrentIndex() int { + if ptr.Pointer() != nil { + return int(C.QComboBox_CurrentIndex(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QComboBox) CurrentText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QComboBox_CurrentText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QComboBox) DuplicatesEnabled() bool { + if ptr.Pointer() != nil { + return C.QComboBox_DuplicatesEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QComboBox) HasFrame() bool { + if ptr.Pointer() != nil { + return C.QComboBox_HasFrame(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QComboBox) InsertPolicy() QComboBox__InsertPolicy { + if ptr.Pointer() != nil { + return QComboBox__InsertPolicy(C.QComboBox_InsertPolicy(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QComboBox) IsEditable() bool { + if ptr.Pointer() != nil { + return C.QComboBox_IsEditable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QComboBox) MaxCount() int { + if ptr.Pointer() != nil { + return int(C.QComboBox_MaxCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QComboBox) MaxVisibleItems() int { + if ptr.Pointer() != nil { + return int(C.QComboBox_MaxVisibleItems(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QComboBox) MinimumContentsLength() int { + if ptr.Pointer() != nil { + return int(C.QComboBox_MinimumContentsLength(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QComboBox) ModelColumn() int { + if ptr.Pointer() != nil { + return int(C.QComboBox_ModelColumn(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QComboBox) SetCompleter(completer QCompleterITF) { + if ptr.Pointer() != nil { + C.QComboBox_SetCompleter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQCompleter(completer))) + } +} + +func (ptr *QComboBox) SetCurrentIndex(index int) { + if ptr.Pointer() != nil { + C.QComboBox_SetCurrentIndex(C.QtObjectPtr(ptr.Pointer()), C.int(index)) + } +} + +func (ptr *QComboBox) SetCurrentText(text string) { + if ptr.Pointer() != nil { + C.QComboBox_SetCurrentText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QComboBox) SetDuplicatesEnabled(enable bool) { + if ptr.Pointer() != nil { + C.QComboBox_SetDuplicatesEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QComboBox) SetEditable(editable bool) { + if ptr.Pointer() != nil { + C.QComboBox_SetEditable(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(editable))) + } +} + +func (ptr *QComboBox) SetFrame(v bool) { + if ptr.Pointer() != nil { + C.QComboBox_SetFrame(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QComboBox) SetIconSize(size core.QSizeITF) { + if ptr.Pointer() != nil { + C.QComboBox_SetIconSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(size))) + } +} + +func (ptr *QComboBox) SetInsertPolicy(policy QComboBox__InsertPolicy) { + if ptr.Pointer() != nil { + C.QComboBox_SetInsertPolicy(C.QtObjectPtr(ptr.Pointer()), C.int(policy)) + } +} + +func (ptr *QComboBox) SetMaxCount(max int) { + if ptr.Pointer() != nil { + C.QComboBox_SetMaxCount(C.QtObjectPtr(ptr.Pointer()), C.int(max)) + } +} + +func (ptr *QComboBox) SetMaxVisibleItems(maxItems int) { + if ptr.Pointer() != nil { + C.QComboBox_SetMaxVisibleItems(C.QtObjectPtr(ptr.Pointer()), C.int(maxItems)) + } +} + +func (ptr *QComboBox) SetMinimumContentsLength(characters int) { + if ptr.Pointer() != nil { + C.QComboBox_SetMinimumContentsLength(C.QtObjectPtr(ptr.Pointer()), C.int(characters)) + } +} + +func (ptr *QComboBox) SetModelColumn(visibleColumn int) { + if ptr.Pointer() != nil { + C.QComboBox_SetModelColumn(C.QtObjectPtr(ptr.Pointer()), C.int(visibleColumn)) + } +} + +func (ptr *QComboBox) SetSizeAdjustPolicy(policy QComboBox__SizeAdjustPolicy) { + if ptr.Pointer() != nil { + C.QComboBox_SetSizeAdjustPolicy(C.QtObjectPtr(ptr.Pointer()), C.int(policy)) + } +} + +func (ptr *QComboBox) SetValidator(validator gui.QValidatorITF) { + if ptr.Pointer() != nil { + C.QComboBox_SetValidator(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQValidator(validator))) + } +} + +func (ptr *QComboBox) SizeAdjustPolicy() QComboBox__SizeAdjustPolicy { + if ptr.Pointer() != nil { + return QComboBox__SizeAdjustPolicy(C.QComboBox_SizeAdjustPolicy(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQComboBox(parent QWidgetITF) *QComboBox { + return QComboBoxFromPointer(unsafe.Pointer(C.QComboBox_NewQComboBox(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QComboBox) ConnectActivated(f func(index int)) { + if ptr.Pointer() != nil { + C.QComboBox_ConnectActivated(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "activated", f) + } +} + +func (ptr *QComboBox) DisconnectActivated() { + if ptr.Pointer() != nil { + C.QComboBox_DisconnectActivated(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "activated") + } +} + +//export callbackQComboBoxActivated +func callbackQComboBoxActivated(ptrName *C.char, index C.int) { + qt.GetSignal(C.GoString(ptrName), "activated").(func(int))(int(index)) +} + +func (ptr *QComboBox) AddItem2(icon gui.QIconITF, text string, userData string) { + if ptr.Pointer() != nil { + C.QComboBox_AddItem2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQIcon(icon)), C.CString(text), C.CString(userData)) + } +} + +func (ptr *QComboBox) AddItem(text string, userData string) { + if ptr.Pointer() != nil { + C.QComboBox_AddItem(C.QtObjectPtr(ptr.Pointer()), C.CString(text), C.CString(userData)) + } +} + +func (ptr *QComboBox) AddItems(texts []string) { + if ptr.Pointer() != nil { + C.QComboBox_AddItems(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(texts, "|"))) + } +} + +func (ptr *QComboBox) Clear() { + if ptr.Pointer() != nil { + C.QComboBox_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QComboBox) ClearEditText() { + if ptr.Pointer() != nil { + C.QComboBox_ClearEditText(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QComboBox) Completer() *QCompleter { + if ptr.Pointer() != nil { + return QCompleterFromPointer(unsafe.Pointer(C.QComboBox_Completer(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QComboBox) ConnectCurrentIndexChanged(f func(index int)) { + if ptr.Pointer() != nil { + C.QComboBox_ConnectCurrentIndexChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "currentIndexChanged", f) + } +} + +func (ptr *QComboBox) DisconnectCurrentIndexChanged() { + if ptr.Pointer() != nil { + C.QComboBox_DisconnectCurrentIndexChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "currentIndexChanged") + } +} + +//export callbackQComboBoxCurrentIndexChanged +func callbackQComboBoxCurrentIndexChanged(ptrName *C.char, index C.int) { + qt.GetSignal(C.GoString(ptrName), "currentIndexChanged").(func(int))(int(index)) +} + +func (ptr *QComboBox) ConnectCurrentTextChanged(f func(text string)) { + if ptr.Pointer() != nil { + C.QComboBox_ConnectCurrentTextChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "currentTextChanged", f) + } +} + +func (ptr *QComboBox) DisconnectCurrentTextChanged() { + if ptr.Pointer() != nil { + C.QComboBox_DisconnectCurrentTextChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "currentTextChanged") + } +} + +//export callbackQComboBoxCurrentTextChanged +func callbackQComboBoxCurrentTextChanged(ptrName *C.char, text *C.char) { + qt.GetSignal(C.GoString(ptrName), "currentTextChanged").(func(string))(C.GoString(text)) +} + +func (ptr *QComboBox) ConnectEditTextChanged(f func(text string)) { + if ptr.Pointer() != nil { + C.QComboBox_ConnectEditTextChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "editTextChanged", f) + } +} + +func (ptr *QComboBox) DisconnectEditTextChanged() { + if ptr.Pointer() != nil { + C.QComboBox_DisconnectEditTextChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "editTextChanged") + } +} + +//export callbackQComboBoxEditTextChanged +func callbackQComboBoxEditTextChanged(ptrName *C.char, text *C.char) { + qt.GetSignal(C.GoString(ptrName), "editTextChanged").(func(string))(C.GoString(text)) +} + +func (ptr *QComboBox) Event(event core.QEventITF) bool { + if ptr.Pointer() != nil { + return C.QComboBox_Event(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQEvent(event))) != 0 + } + return false +} + +func (ptr *QComboBox) FindData(data string, role int, flags core.Qt__MatchFlag) int { + if ptr.Pointer() != nil { + return int(C.QComboBox_FindData(C.QtObjectPtr(ptr.Pointer()), C.CString(data), C.int(role), C.int(flags))) + } + return 0 +} + +func (ptr *QComboBox) FindText(text string, flags core.Qt__MatchFlag) int { + if ptr.Pointer() != nil { + return int(C.QComboBox_FindText(C.QtObjectPtr(ptr.Pointer()), C.CString(text), C.int(flags))) + } + return 0 +} + +func (ptr *QComboBox) HidePopup() { + if ptr.Pointer() != nil { + C.QComboBox_HidePopup(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QComboBox) ConnectHighlighted(f func(index int)) { + if ptr.Pointer() != nil { + C.QComboBox_ConnectHighlighted(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "highlighted", f) + } +} + +func (ptr *QComboBox) DisconnectHighlighted() { + if ptr.Pointer() != nil { + C.QComboBox_DisconnectHighlighted(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "highlighted") + } +} + +//export callbackQComboBoxHighlighted +func callbackQComboBoxHighlighted(ptrName *C.char, index C.int) { + qt.GetSignal(C.GoString(ptrName), "highlighted").(func(int))(int(index)) +} + +func (ptr *QComboBox) InputMethodQuery(query core.Qt__InputMethodQuery) string { + if ptr.Pointer() != nil { + return C.GoString(C.QComboBox_InputMethodQuery(C.QtObjectPtr(ptr.Pointer()), C.int(query))) + } + return "" +} + +func (ptr *QComboBox) InsertItem2(index int, icon gui.QIconITF, text string, userData string) { + if ptr.Pointer() != nil { + C.QComboBox_InsertItem2(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.QtObjectPtr(gui.PointerFromQIcon(icon)), C.CString(text), C.CString(userData)) + } +} + +func (ptr *QComboBox) InsertItem(index int, text string, userData string) { + if ptr.Pointer() != nil { + C.QComboBox_InsertItem(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.CString(text), C.CString(userData)) + } +} + +func (ptr *QComboBox) InsertItems(index int, list []string) { + if ptr.Pointer() != nil { + C.QComboBox_InsertItems(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.CString(strings.Join(list, "|"))) + } +} + +func (ptr *QComboBox) InsertSeparator(index int) { + if ptr.Pointer() != nil { + C.QComboBox_InsertSeparator(C.QtObjectPtr(ptr.Pointer()), C.int(index)) + } +} + +func (ptr *QComboBox) ItemData(index int, role int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QComboBox_ItemData(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.int(role))) + } + return "" +} + +func (ptr *QComboBox) ItemDelegate() *QAbstractItemDelegate { + if ptr.Pointer() != nil { + return QAbstractItemDelegateFromPointer(unsafe.Pointer(C.QComboBox_ItemDelegate(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QComboBox) ItemText(index int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QComboBox_ItemText(C.QtObjectPtr(ptr.Pointer()), C.int(index))) + } + return "" +} + +func (ptr *QComboBox) LineEdit() *QLineEdit { + if ptr.Pointer() != nil { + return QLineEditFromPointer(unsafe.Pointer(C.QComboBox_LineEdit(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QComboBox) Model() *core.QAbstractItemModel { + if ptr.Pointer() != nil { + return core.QAbstractItemModelFromPointer(unsafe.Pointer(C.QComboBox_Model(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QComboBox) RemoveItem(index int) { + if ptr.Pointer() != nil { + C.QComboBox_RemoveItem(C.QtObjectPtr(ptr.Pointer()), C.int(index)) + } +} + +func (ptr *QComboBox) RootModelIndex() *core.QModelIndex { + if ptr.Pointer() != nil { + return core.QModelIndexFromPointer(unsafe.Pointer(C.QComboBox_RootModelIndex(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QComboBox) SetEditText(text string) { + if ptr.Pointer() != nil { + C.QComboBox_SetEditText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QComboBox) SetItemData(index int, value string, role int) { + if ptr.Pointer() != nil { + C.QComboBox_SetItemData(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.CString(value), C.int(role)) + } +} + +func (ptr *QComboBox) SetItemDelegate(delegate QAbstractItemDelegateITF) { + if ptr.Pointer() != nil { + C.QComboBox_SetItemDelegate(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractItemDelegate(delegate))) + } +} + +func (ptr *QComboBox) SetItemIcon(index int, icon gui.QIconITF) { + if ptr.Pointer() != nil { + C.QComboBox_SetItemIcon(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.QtObjectPtr(gui.PointerFromQIcon(icon))) + } +} + +func (ptr *QComboBox) SetItemText(index int, text string) { + if ptr.Pointer() != nil { + C.QComboBox_SetItemText(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.CString(text)) + } +} + +func (ptr *QComboBox) SetLineEdit(edit QLineEditITF) { + if ptr.Pointer() != nil { + C.QComboBox_SetLineEdit(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLineEdit(edit))) + } +} + +func (ptr *QComboBox) SetModel(model core.QAbstractItemModelITF) { + if ptr.Pointer() != nil { + C.QComboBox_SetModel(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQAbstractItemModel(model))) + } +} + +func (ptr *QComboBox) SetRootModelIndex(index core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QComboBox_SetRootModelIndex(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index))) + } +} + +func (ptr *QComboBox) SetView(itemView QAbstractItemViewITF) { + if ptr.Pointer() != nil { + C.QComboBox_SetView(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractItemView(itemView))) + } +} + +func (ptr *QComboBox) ShowPopup() { + if ptr.Pointer() != nil { + C.QComboBox_ShowPopup(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QComboBox) Validator() *gui.QValidator { + if ptr.Pointer() != nil { + return gui.QValidatorFromPointer(unsafe.Pointer(C.QComboBox_Validator(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QComboBox) View() *QAbstractItemView { + if ptr.Pointer() != nil { + return QAbstractItemViewFromPointer(unsafe.Pointer(C.QComboBox_View(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QComboBox) DestroyQComboBox() { + if ptr.Pointer() != nil { + C.QComboBox_DestroyQComboBox(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qcombobox.h b/widgets/qcombobox.h new file mode 100755 index 00000000..8ef0f99c --- /dev/null +++ b/widgets/qcombobox.h @@ -0,0 +1,82 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QComboBox_Count(QtObjectPtr ptr); +char* QComboBox_CurrentData(QtObjectPtr ptr, int role); +int QComboBox_CurrentIndex(QtObjectPtr ptr); +char* QComboBox_CurrentText(QtObjectPtr ptr); +int QComboBox_DuplicatesEnabled(QtObjectPtr ptr); +int QComboBox_HasFrame(QtObjectPtr ptr); +int QComboBox_InsertPolicy(QtObjectPtr ptr); +int QComboBox_IsEditable(QtObjectPtr ptr); +int QComboBox_MaxCount(QtObjectPtr ptr); +int QComboBox_MaxVisibleItems(QtObjectPtr ptr); +int QComboBox_MinimumContentsLength(QtObjectPtr ptr); +int QComboBox_ModelColumn(QtObjectPtr ptr); +void QComboBox_SetCompleter(QtObjectPtr ptr, QtObjectPtr completer); +void QComboBox_SetCurrentIndex(QtObjectPtr ptr, int index); +void QComboBox_SetCurrentText(QtObjectPtr ptr, char* text); +void QComboBox_SetDuplicatesEnabled(QtObjectPtr ptr, int enable); +void QComboBox_SetEditable(QtObjectPtr ptr, int editable); +void QComboBox_SetFrame(QtObjectPtr ptr, int v); +void QComboBox_SetIconSize(QtObjectPtr ptr, QtObjectPtr size); +void QComboBox_SetInsertPolicy(QtObjectPtr ptr, int policy); +void QComboBox_SetMaxCount(QtObjectPtr ptr, int max); +void QComboBox_SetMaxVisibleItems(QtObjectPtr ptr, int maxItems); +void QComboBox_SetMinimumContentsLength(QtObjectPtr ptr, int characters); +void QComboBox_SetModelColumn(QtObjectPtr ptr, int visibleColumn); +void QComboBox_SetSizeAdjustPolicy(QtObjectPtr ptr, int policy); +void QComboBox_SetValidator(QtObjectPtr ptr, QtObjectPtr validator); +int QComboBox_SizeAdjustPolicy(QtObjectPtr ptr); +QtObjectPtr QComboBox_NewQComboBox(QtObjectPtr parent); +void QComboBox_ConnectActivated(QtObjectPtr ptr); +void QComboBox_DisconnectActivated(QtObjectPtr ptr); +void QComboBox_AddItem2(QtObjectPtr ptr, QtObjectPtr icon, char* text, char* userData); +void QComboBox_AddItem(QtObjectPtr ptr, char* text, char* userData); +void QComboBox_AddItems(QtObjectPtr ptr, char* texts); +void QComboBox_Clear(QtObjectPtr ptr); +void QComboBox_ClearEditText(QtObjectPtr ptr); +QtObjectPtr QComboBox_Completer(QtObjectPtr ptr); +void QComboBox_ConnectCurrentIndexChanged(QtObjectPtr ptr); +void QComboBox_DisconnectCurrentIndexChanged(QtObjectPtr ptr); +void QComboBox_ConnectCurrentTextChanged(QtObjectPtr ptr); +void QComboBox_DisconnectCurrentTextChanged(QtObjectPtr ptr); +void QComboBox_ConnectEditTextChanged(QtObjectPtr ptr); +void QComboBox_DisconnectEditTextChanged(QtObjectPtr ptr); +int QComboBox_Event(QtObjectPtr ptr, QtObjectPtr event); +int QComboBox_FindData(QtObjectPtr ptr, char* data, int role, int flags); +int QComboBox_FindText(QtObjectPtr ptr, char* text, int flags); +void QComboBox_HidePopup(QtObjectPtr ptr); +void QComboBox_ConnectHighlighted(QtObjectPtr ptr); +void QComboBox_DisconnectHighlighted(QtObjectPtr ptr); +char* QComboBox_InputMethodQuery(QtObjectPtr ptr, int query); +void QComboBox_InsertItem2(QtObjectPtr ptr, int index, QtObjectPtr icon, char* text, char* userData); +void QComboBox_InsertItem(QtObjectPtr ptr, int index, char* text, char* userData); +void QComboBox_InsertItems(QtObjectPtr ptr, int index, char* list); +void QComboBox_InsertSeparator(QtObjectPtr ptr, int index); +char* QComboBox_ItemData(QtObjectPtr ptr, int index, int role); +QtObjectPtr QComboBox_ItemDelegate(QtObjectPtr ptr); +char* QComboBox_ItemText(QtObjectPtr ptr, int index); +QtObjectPtr QComboBox_LineEdit(QtObjectPtr ptr); +QtObjectPtr QComboBox_Model(QtObjectPtr ptr); +void QComboBox_RemoveItem(QtObjectPtr ptr, int index); +QtObjectPtr QComboBox_RootModelIndex(QtObjectPtr ptr); +void QComboBox_SetEditText(QtObjectPtr ptr, char* text); +void QComboBox_SetItemData(QtObjectPtr ptr, int index, char* value, int role); +void QComboBox_SetItemDelegate(QtObjectPtr ptr, QtObjectPtr delegate); +void QComboBox_SetItemIcon(QtObjectPtr ptr, int index, QtObjectPtr icon); +void QComboBox_SetItemText(QtObjectPtr ptr, int index, char* text); +void QComboBox_SetLineEdit(QtObjectPtr ptr, QtObjectPtr edit); +void QComboBox_SetModel(QtObjectPtr ptr, QtObjectPtr model); +void QComboBox_SetRootModelIndex(QtObjectPtr ptr, QtObjectPtr index); +void QComboBox_SetView(QtObjectPtr ptr, QtObjectPtr itemView); +void QComboBox_ShowPopup(QtObjectPtr ptr); +QtObjectPtr QComboBox_Validator(QtObjectPtr ptr); +QtObjectPtr QComboBox_View(QtObjectPtr ptr); +void QComboBox_DestroyQComboBox(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qcommandlinkbutton.cpp b/widgets/qcommandlinkbutton.cpp new file mode 100755 index 00000000..a16d0360 --- /dev/null +++ b/widgets/qcommandlinkbutton.cpp @@ -0,0 +1,37 @@ +#include "qcommandlinkbutton.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCommandLinkButton: public QCommandLinkButton { +public: +}; + +char* QCommandLinkButton_Description(QtObjectPtr ptr){ + return static_cast(ptr)->description().toUtf8().data(); +} + +void QCommandLinkButton_SetDescription(QtObjectPtr ptr, char* description){ + static_cast(ptr)->setDescription(QString(description)); +} + +QtObjectPtr QCommandLinkButton_NewQCommandLinkButton(QtObjectPtr parent){ + return new QCommandLinkButton(static_cast(parent)); +} + +QtObjectPtr QCommandLinkButton_NewQCommandLinkButton2(char* text, QtObjectPtr parent){ + return new QCommandLinkButton(QString(text), static_cast(parent)); +} + +QtObjectPtr QCommandLinkButton_NewQCommandLinkButton3(char* text, char* description, QtObjectPtr parent){ + return new QCommandLinkButton(QString(text), QString(description), static_cast(parent)); +} + +void QCommandLinkButton_DestroyQCommandLinkButton(QtObjectPtr ptr){ + static_cast(ptr)->~QCommandLinkButton(); +} + diff --git a/widgets/qcommandlinkbutton.go b/widgets/qcommandlinkbutton.go new file mode 100755 index 00000000..c6c52b77 --- /dev/null +++ b/widgets/qcommandlinkbutton.go @@ -0,0 +1,69 @@ +package widgets + +//#include "qcommandlinkbutton.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QCommandLinkButton struct { + QPushButton +} + +type QCommandLinkButtonITF interface { + QPushButtonITF + QCommandLinkButtonPTR() *QCommandLinkButton +} + +func PointerFromQCommandLinkButton(ptr QCommandLinkButtonITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCommandLinkButtonPTR().Pointer() + } + return nil +} + +func QCommandLinkButtonFromPointer(ptr unsafe.Pointer) *QCommandLinkButton { + var n = new(QCommandLinkButton) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCommandLinkButton_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCommandLinkButton) QCommandLinkButtonPTR() *QCommandLinkButton { + return ptr +} + +func (ptr *QCommandLinkButton) Description() string { + if ptr.Pointer() != nil { + return C.GoString(C.QCommandLinkButton_Description(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QCommandLinkButton) SetDescription(description string) { + if ptr.Pointer() != nil { + C.QCommandLinkButton_SetDescription(C.QtObjectPtr(ptr.Pointer()), C.CString(description)) + } +} + +func NewQCommandLinkButton(parent QWidgetITF) *QCommandLinkButton { + return QCommandLinkButtonFromPointer(unsafe.Pointer(C.QCommandLinkButton_NewQCommandLinkButton(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQCommandLinkButton2(text string, parent QWidgetITF) *QCommandLinkButton { + return QCommandLinkButtonFromPointer(unsafe.Pointer(C.QCommandLinkButton_NewQCommandLinkButton2(C.CString(text), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQCommandLinkButton3(text string, description string, parent QWidgetITF) *QCommandLinkButton { + return QCommandLinkButtonFromPointer(unsafe.Pointer(C.QCommandLinkButton_NewQCommandLinkButton3(C.CString(text), C.CString(description), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QCommandLinkButton) DestroyQCommandLinkButton() { + if ptr.Pointer() != nil { + C.QCommandLinkButton_DestroyQCommandLinkButton(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qcommandlinkbutton.h b/widgets/qcommandlinkbutton.h new file mode 100755 index 00000000..90cd1154 --- /dev/null +++ b/widgets/qcommandlinkbutton.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QCommandLinkButton_Description(QtObjectPtr ptr); +void QCommandLinkButton_SetDescription(QtObjectPtr ptr, char* description); +QtObjectPtr QCommandLinkButton_NewQCommandLinkButton(QtObjectPtr parent); +QtObjectPtr QCommandLinkButton_NewQCommandLinkButton2(char* text, QtObjectPtr parent); +QtObjectPtr QCommandLinkButton_NewQCommandLinkButton3(char* text, char* description, QtObjectPtr parent); +void QCommandLinkButton_DestroyQCommandLinkButton(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qcommonstyle.cpp b/widgets/qcommonstyle.cpp new file mode 100755 index 00000000..116e8119 --- /dev/null +++ b/widgets/qcommonstyle.cpp @@ -0,0 +1,75 @@ +#include "qcommonstyle.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCommonStyle: public QCommonStyle { +public: +}; + +void QCommonStyle_DrawControl(QtObjectPtr ptr, int element, QtObjectPtr opt, QtObjectPtr p, QtObjectPtr widget){ + static_cast(ptr)->drawControl(static_cast(element), static_cast(opt), static_cast(p), static_cast(widget)); +} + +void QCommonStyle_DrawPrimitive(QtObjectPtr ptr, int pe, QtObjectPtr opt, QtObjectPtr p, QtObjectPtr widget){ + static_cast(ptr)->drawPrimitive(static_cast(pe), static_cast(opt), static_cast(p), static_cast(widget)); +} + +void QCommonStyle_DrawComplexControl(QtObjectPtr ptr, int cc, QtObjectPtr opt, QtObjectPtr p, QtObjectPtr widget){ + static_cast(ptr)->drawComplexControl(static_cast(cc), static_cast(opt), static_cast(p), static_cast(widget)); +} + +int QCommonStyle_HitTestComplexControl(QtObjectPtr ptr, int cc, QtObjectPtr opt, QtObjectPtr pt, QtObjectPtr widget){ + return static_cast(ptr)->hitTestComplexControl(static_cast(cc), static_cast(opt), *static_cast(pt), static_cast(widget)); +} + +int QCommonStyle_LayoutSpacing(QtObjectPtr ptr, int control1, int control2, int orientation, QtObjectPtr option, QtObjectPtr widget){ + return static_cast(ptr)->layoutSpacing(static_cast(control1), static_cast(control2), static_cast(orientation), static_cast(option), static_cast(widget)); +} + +int QCommonStyle_PixelMetric(QtObjectPtr ptr, int m, QtObjectPtr opt, QtObjectPtr widget){ + return static_cast(ptr)->pixelMetric(static_cast(m), static_cast(opt), static_cast(widget)); +} + +void QCommonStyle_Polish2(QtObjectPtr ptr, QtObjectPtr app){ + static_cast(ptr)->polish(static_cast(app)); +} + +void QCommonStyle_Polish(QtObjectPtr ptr, QtObjectPtr pal){ + static_cast(ptr)->polish(*static_cast(pal)); +} + +void QCommonStyle_Polish3(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->polish(static_cast(widget)); +} + +int QCommonStyle_StyleHint(QtObjectPtr ptr, int sh, QtObjectPtr opt, QtObjectPtr widget, QtObjectPtr hret){ + return static_cast(ptr)->styleHint(static_cast(sh), static_cast(opt), static_cast(widget), static_cast(hret)); +} + +void QCommonStyle_Unpolish2(QtObjectPtr ptr, QtObjectPtr application){ + static_cast(ptr)->unpolish(static_cast(application)); +} + +void QCommonStyle_Unpolish(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->unpolish(static_cast(widget)); +} + +void QCommonStyle_DestroyQCommonStyle(QtObjectPtr ptr){ + static_cast(ptr)->~QCommonStyle(); +} + diff --git a/widgets/qcommonstyle.go b/widgets/qcommonstyle.go new file mode 100755 index 00000000..f299eaf5 --- /dev/null +++ b/widgets/qcommonstyle.go @@ -0,0 +1,122 @@ +package widgets + +//#include "qcommonstyle.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QCommonStyle struct { + QStyle +} + +type QCommonStyleITF interface { + QStyleITF + QCommonStylePTR() *QCommonStyle +} + +func PointerFromQCommonStyle(ptr QCommonStyleITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCommonStylePTR().Pointer() + } + return nil +} + +func QCommonStyleFromPointer(ptr unsafe.Pointer) *QCommonStyle { + var n = new(QCommonStyle) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCommonStyle_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCommonStyle) QCommonStylePTR() *QCommonStyle { + return ptr +} + +func (ptr *QCommonStyle) DrawControl(element QStyle__ControlElement, opt QStyleOptionITF, p gui.QPainterITF, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QCommonStyle_DrawControl(C.QtObjectPtr(ptr.Pointer()), C.int(element), C.QtObjectPtr(PointerFromQStyleOption(opt)), C.QtObjectPtr(gui.PointerFromQPainter(p)), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QCommonStyle) DrawPrimitive(pe QStyle__PrimitiveElement, opt QStyleOptionITF, p gui.QPainterITF, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QCommonStyle_DrawPrimitive(C.QtObjectPtr(ptr.Pointer()), C.int(pe), C.QtObjectPtr(PointerFromQStyleOption(opt)), C.QtObjectPtr(gui.PointerFromQPainter(p)), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QCommonStyle) DrawComplexControl(cc QStyle__ComplexControl, opt QStyleOptionComplexITF, p gui.QPainterITF, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QCommonStyle_DrawComplexControl(C.QtObjectPtr(ptr.Pointer()), C.int(cc), C.QtObjectPtr(PointerFromQStyleOptionComplex(opt)), C.QtObjectPtr(gui.PointerFromQPainter(p)), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QCommonStyle) HitTestComplexControl(cc QStyle__ComplexControl, opt QStyleOptionComplexITF, pt core.QPointITF, widget QWidgetITF) QStyle__SubControl { + if ptr.Pointer() != nil { + return QStyle__SubControl(C.QCommonStyle_HitTestComplexControl(C.QtObjectPtr(ptr.Pointer()), C.int(cc), C.QtObjectPtr(PointerFromQStyleOptionComplex(opt)), C.QtObjectPtr(core.PointerFromQPoint(pt)), C.QtObjectPtr(PointerFromQWidget(widget)))) + } + return 0 +} + +func (ptr *QCommonStyle) LayoutSpacing(control1 QSizePolicy__ControlType, control2 QSizePolicy__ControlType, orientation core.Qt__Orientation, option QStyleOptionITF, widget QWidgetITF) int { + if ptr.Pointer() != nil { + return int(C.QCommonStyle_LayoutSpacing(C.QtObjectPtr(ptr.Pointer()), C.int(control1), C.int(control2), C.int(orientation), C.QtObjectPtr(PointerFromQStyleOption(option)), C.QtObjectPtr(PointerFromQWidget(widget)))) + } + return 0 +} + +func (ptr *QCommonStyle) PixelMetric(m QStyle__PixelMetric, opt QStyleOptionITF, widget QWidgetITF) int { + if ptr.Pointer() != nil { + return int(C.QCommonStyle_PixelMetric(C.QtObjectPtr(ptr.Pointer()), C.int(m), C.QtObjectPtr(PointerFromQStyleOption(opt)), C.QtObjectPtr(PointerFromQWidget(widget)))) + } + return 0 +} + +func (ptr *QCommonStyle) Polish2(app QApplicationITF) { + if ptr.Pointer() != nil { + C.QCommonStyle_Polish2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQApplication(app))) + } +} + +func (ptr *QCommonStyle) Polish(pal gui.QPaletteITF) { + if ptr.Pointer() != nil { + C.QCommonStyle_Polish(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPalette(pal))) + } +} + +func (ptr *QCommonStyle) Polish3(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QCommonStyle_Polish3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QCommonStyle) StyleHint(sh QStyle__StyleHint, opt QStyleOptionITF, widget QWidgetITF, hret QStyleHintReturnITF) int { + if ptr.Pointer() != nil { + return int(C.QCommonStyle_StyleHint(C.QtObjectPtr(ptr.Pointer()), C.int(sh), C.QtObjectPtr(PointerFromQStyleOption(opt)), C.QtObjectPtr(PointerFromQWidget(widget)), C.QtObjectPtr(PointerFromQStyleHintReturn(hret)))) + } + return 0 +} + +func (ptr *QCommonStyle) Unpolish2(application QApplicationITF) { + if ptr.Pointer() != nil { + C.QCommonStyle_Unpolish2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQApplication(application))) + } +} + +func (ptr *QCommonStyle) Unpolish(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QCommonStyle_Unpolish(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QCommonStyle) DestroyQCommonStyle() { + if ptr.Pointer() != nil { + C.QCommonStyle_DestroyQCommonStyle(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qcommonstyle.h b/widgets/qcommonstyle.h new file mode 100755 index 00000000..d1e0bebb --- /dev/null +++ b/widgets/qcommonstyle.h @@ -0,0 +1,22 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QCommonStyle_DrawControl(QtObjectPtr ptr, int element, QtObjectPtr opt, QtObjectPtr p, QtObjectPtr widget); +void QCommonStyle_DrawPrimitive(QtObjectPtr ptr, int pe, QtObjectPtr opt, QtObjectPtr p, QtObjectPtr widget); +void QCommonStyle_DrawComplexControl(QtObjectPtr ptr, int cc, QtObjectPtr opt, QtObjectPtr p, QtObjectPtr widget); +int QCommonStyle_HitTestComplexControl(QtObjectPtr ptr, int cc, QtObjectPtr opt, QtObjectPtr pt, QtObjectPtr widget); +int QCommonStyle_LayoutSpacing(QtObjectPtr ptr, int control1, int control2, int orientation, QtObjectPtr option, QtObjectPtr widget); +int QCommonStyle_PixelMetric(QtObjectPtr ptr, int m, QtObjectPtr opt, QtObjectPtr widget); +void QCommonStyle_Polish2(QtObjectPtr ptr, QtObjectPtr app); +void QCommonStyle_Polish(QtObjectPtr ptr, QtObjectPtr pal); +void QCommonStyle_Polish3(QtObjectPtr ptr, QtObjectPtr widget); +int QCommonStyle_StyleHint(QtObjectPtr ptr, int sh, QtObjectPtr opt, QtObjectPtr widget, QtObjectPtr hret); +void QCommonStyle_Unpolish2(QtObjectPtr ptr, QtObjectPtr application); +void QCommonStyle_Unpolish(QtObjectPtr ptr, QtObjectPtr widget); +void QCommonStyle_DestroyQCommonStyle(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qcompleter.cpp b/widgets/qcompleter.cpp new file mode 100755 index 00000000..40dd2b5e --- /dev/null +++ b/widgets/qcompleter.cpp @@ -0,0 +1,184 @@ +#include "qcompleter.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQCompleter: public QCompleter { +public: +void Signal_Activated(const QString & text){callbackQCompleterActivated(this->objectName().toUtf8().data(), text.toUtf8().data());}; +void Signal_Highlighted(const QString & text){callbackQCompleterHighlighted(this->objectName().toUtf8().data(), text.toUtf8().data());}; +}; + +int QCompleter_CaseSensitivity(QtObjectPtr ptr){ + return static_cast(ptr)->caseSensitivity(); +} + +int QCompleter_CompletionColumn(QtObjectPtr ptr){ + return static_cast(ptr)->completionColumn(); +} + +int QCompleter_CompletionMode(QtObjectPtr ptr){ + return static_cast(ptr)->completionMode(); +} + +char* QCompleter_CompletionPrefix(QtObjectPtr ptr){ + return static_cast(ptr)->completionPrefix().toUtf8().data(); +} + +int QCompleter_CompletionRole(QtObjectPtr ptr){ + return static_cast(ptr)->completionRole(); +} + +int QCompleter_FilterMode(QtObjectPtr ptr){ + return static_cast(ptr)->filterMode(); +} + +int QCompleter_MaxVisibleItems(QtObjectPtr ptr){ + return static_cast(ptr)->maxVisibleItems(); +} + +int QCompleter_ModelSorting(QtObjectPtr ptr){ + return static_cast(ptr)->modelSorting(); +} + +void QCompleter_SetCaseSensitivity(QtObjectPtr ptr, int caseSensitivity){ + static_cast(ptr)->setCaseSensitivity(static_cast(caseSensitivity)); +} + +void QCompleter_SetCompletionColumn(QtObjectPtr ptr, int column){ + static_cast(ptr)->setCompletionColumn(column); +} + +void QCompleter_SetCompletionMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setCompletionMode(static_cast(mode)); +} + +void QCompleter_SetCompletionPrefix(QtObjectPtr ptr, char* prefix){ + QMetaObject::invokeMethod(static_cast(ptr), "setCompletionPrefix", Q_ARG(QString, QString(prefix))); +} + +void QCompleter_SetCompletionRole(QtObjectPtr ptr, int role){ + static_cast(ptr)->setCompletionRole(role); +} + +void QCompleter_SetFilterMode(QtObjectPtr ptr, int filterMode){ + static_cast(ptr)->setFilterMode(static_cast(filterMode)); +} + +void QCompleter_SetMaxVisibleItems(QtObjectPtr ptr, int maxItems){ + static_cast(ptr)->setMaxVisibleItems(maxItems); +} + +void QCompleter_SetModelSorting(QtObjectPtr ptr, int sorting){ + static_cast(ptr)->setModelSorting(static_cast(sorting)); +} + +void QCompleter_SetWrapAround(QtObjectPtr ptr, int wrap){ + QMetaObject::invokeMethod(static_cast(ptr), "setWrapAround", Q_ARG(bool, wrap != 0)); +} + +int QCompleter_WrapAround(QtObjectPtr ptr){ + return static_cast(ptr)->wrapAround(); +} + +QtObjectPtr QCompleter_NewQCompleter2(QtObjectPtr model, QtObjectPtr parent){ + return new QCompleter(static_cast(model), static_cast(parent)); +} + +QtObjectPtr QCompleter_NewQCompleter(QtObjectPtr parent){ + return new QCompleter(static_cast(parent)); +} + +QtObjectPtr QCompleter_NewQCompleter3(char* list, QtObjectPtr parent){ + return new QCompleter(QString(list).split("|", QString::SkipEmptyParts), static_cast(parent)); +} + +void QCompleter_ConnectActivated(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCompleter::activated), static_cast(ptr), static_cast(&MyQCompleter::Signal_Activated));; +} + +void QCompleter_DisconnectActivated(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCompleter::activated), static_cast(ptr), static_cast(&MyQCompleter::Signal_Activated));; +} + +void QCompleter_Complete(QtObjectPtr ptr, QtObjectPtr rect){ + QMetaObject::invokeMethod(static_cast(ptr), "complete", Q_ARG(QRect, *static_cast(rect))); +} + +int QCompleter_CompletionCount(QtObjectPtr ptr){ + return static_cast(ptr)->completionCount(); +} + +QtObjectPtr QCompleter_CompletionModel(QtObjectPtr ptr){ + return static_cast(ptr)->completionModel(); +} + +char* QCompleter_CurrentCompletion(QtObjectPtr ptr){ + return static_cast(ptr)->currentCompletion().toUtf8().data(); +} + +QtObjectPtr QCompleter_CurrentIndex(QtObjectPtr ptr){ + return static_cast(ptr)->currentIndex().internalPointer(); +} + +int QCompleter_CurrentRow(QtObjectPtr ptr){ + return static_cast(ptr)->currentRow(); +} + +void QCompleter_ConnectHighlighted(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QCompleter::highlighted), static_cast(ptr), static_cast(&MyQCompleter::Signal_Highlighted));; +} + +void QCompleter_DisconnectHighlighted(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QCompleter::highlighted), static_cast(ptr), static_cast(&MyQCompleter::Signal_Highlighted));; +} + +QtObjectPtr QCompleter_Model(QtObjectPtr ptr){ + return static_cast(ptr)->model(); +} + +char* QCompleter_PathFromIndex(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->pathFromIndex(*static_cast(index)).toUtf8().data(); +} + +QtObjectPtr QCompleter_Popup(QtObjectPtr ptr){ + return static_cast(ptr)->popup(); +} + +int QCompleter_SetCurrentRow(QtObjectPtr ptr, int row){ + return static_cast(ptr)->setCurrentRow(row); +} + +void QCompleter_SetModel(QtObjectPtr ptr, QtObjectPtr model){ + static_cast(ptr)->setModel(static_cast(model)); +} + +void QCompleter_SetPopup(QtObjectPtr ptr, QtObjectPtr popup){ + static_cast(ptr)->setPopup(static_cast(popup)); +} + +void QCompleter_SetWidget(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->setWidget(static_cast(widget)); +} + +char* QCompleter_SplitPath(QtObjectPtr ptr, char* path){ + return static_cast(ptr)->splitPath(QString(path)).join("|").toUtf8().data(); +} + +QtObjectPtr QCompleter_Widget(QtObjectPtr ptr){ + return static_cast(ptr)->widget(); +} + +void QCompleter_DestroyQCompleter(QtObjectPtr ptr){ + static_cast(ptr)->~QCompleter(); +} + diff --git a/widgets/qcompleter.go b/widgets/qcompleter.go new file mode 100755 index 00000000..bcc2b962 --- /dev/null +++ b/widgets/qcompleter.go @@ -0,0 +1,332 @@ +package widgets + +//#include "qcompleter.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QCompleter struct { + core.QObject +} + +type QCompleterITF interface { + core.QObjectITF + QCompleterPTR() *QCompleter +} + +func PointerFromQCompleter(ptr QCompleterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QCompleterPTR().Pointer() + } + return nil +} + +func QCompleterFromPointer(ptr unsafe.Pointer) *QCompleter { + var n = new(QCompleter) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QCompleter_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QCompleter) QCompleterPTR() *QCompleter { + return ptr +} + +//QCompleter::CompletionMode +type QCompleter__CompletionMode int + +var ( + QCompleter__PopupCompletion = QCompleter__CompletionMode(0) + QCompleter__UnfilteredPopupCompletion = QCompleter__CompletionMode(1) + QCompleter__InlineCompletion = QCompleter__CompletionMode(2) +) + +//QCompleter::ModelSorting +type QCompleter__ModelSorting int + +var ( + QCompleter__UnsortedModel = QCompleter__ModelSorting(0) + QCompleter__CaseSensitivelySortedModel = QCompleter__ModelSorting(1) + QCompleter__CaseInsensitivelySortedModel = QCompleter__ModelSorting(2) +) + +func (ptr *QCompleter) CaseSensitivity() core.Qt__CaseSensitivity { + if ptr.Pointer() != nil { + return core.Qt__CaseSensitivity(C.QCompleter_CaseSensitivity(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCompleter) CompletionColumn() int { + if ptr.Pointer() != nil { + return int(C.QCompleter_CompletionColumn(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCompleter) CompletionMode() QCompleter__CompletionMode { + if ptr.Pointer() != nil { + return QCompleter__CompletionMode(C.QCompleter_CompletionMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCompleter) CompletionPrefix() string { + if ptr.Pointer() != nil { + return C.GoString(C.QCompleter_CompletionPrefix(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QCompleter) CompletionRole() int { + if ptr.Pointer() != nil { + return int(C.QCompleter_CompletionRole(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCompleter) FilterMode() core.Qt__MatchFlag { + if ptr.Pointer() != nil { + return core.Qt__MatchFlag(C.QCompleter_FilterMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCompleter) MaxVisibleItems() int { + if ptr.Pointer() != nil { + return int(C.QCompleter_MaxVisibleItems(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCompleter) ModelSorting() QCompleter__ModelSorting { + if ptr.Pointer() != nil { + return QCompleter__ModelSorting(C.QCompleter_ModelSorting(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCompleter) SetCaseSensitivity(caseSensitivity core.Qt__CaseSensitivity) { + if ptr.Pointer() != nil { + C.QCompleter_SetCaseSensitivity(C.QtObjectPtr(ptr.Pointer()), C.int(caseSensitivity)) + } +} + +func (ptr *QCompleter) SetCompletionColumn(column int) { + if ptr.Pointer() != nil { + C.QCompleter_SetCompletionColumn(C.QtObjectPtr(ptr.Pointer()), C.int(column)) + } +} + +func (ptr *QCompleter) SetCompletionMode(mode QCompleter__CompletionMode) { + if ptr.Pointer() != nil { + C.QCompleter_SetCompletionMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QCompleter) SetCompletionPrefix(prefix string) { + if ptr.Pointer() != nil { + C.QCompleter_SetCompletionPrefix(C.QtObjectPtr(ptr.Pointer()), C.CString(prefix)) + } +} + +func (ptr *QCompleter) SetCompletionRole(role int) { + if ptr.Pointer() != nil { + C.QCompleter_SetCompletionRole(C.QtObjectPtr(ptr.Pointer()), C.int(role)) + } +} + +func (ptr *QCompleter) SetFilterMode(filterMode core.Qt__MatchFlag) { + if ptr.Pointer() != nil { + C.QCompleter_SetFilterMode(C.QtObjectPtr(ptr.Pointer()), C.int(filterMode)) + } +} + +func (ptr *QCompleter) SetMaxVisibleItems(maxItems int) { + if ptr.Pointer() != nil { + C.QCompleter_SetMaxVisibleItems(C.QtObjectPtr(ptr.Pointer()), C.int(maxItems)) + } +} + +func (ptr *QCompleter) SetModelSorting(sorting QCompleter__ModelSorting) { + if ptr.Pointer() != nil { + C.QCompleter_SetModelSorting(C.QtObjectPtr(ptr.Pointer()), C.int(sorting)) + } +} + +func (ptr *QCompleter) SetWrapAround(wrap bool) { + if ptr.Pointer() != nil { + C.QCompleter_SetWrapAround(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(wrap))) + } +} + +func (ptr *QCompleter) WrapAround() bool { + if ptr.Pointer() != nil { + return C.QCompleter_WrapAround(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func NewQCompleter2(model core.QAbstractItemModelITF, parent core.QObjectITF) *QCompleter { + return QCompleterFromPointer(unsafe.Pointer(C.QCompleter_NewQCompleter2(C.QtObjectPtr(core.PointerFromQAbstractItemModel(model)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQCompleter(parent core.QObjectITF) *QCompleter { + return QCompleterFromPointer(unsafe.Pointer(C.QCompleter_NewQCompleter(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQCompleter3(list []string, parent core.QObjectITF) *QCompleter { + return QCompleterFromPointer(unsafe.Pointer(C.QCompleter_NewQCompleter3(C.CString(strings.Join(list, "|")), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QCompleter) ConnectActivated(f func(text string)) { + if ptr.Pointer() != nil { + C.QCompleter_ConnectActivated(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "activated", f) + } +} + +func (ptr *QCompleter) DisconnectActivated() { + if ptr.Pointer() != nil { + C.QCompleter_DisconnectActivated(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "activated") + } +} + +//export callbackQCompleterActivated +func callbackQCompleterActivated(ptrName *C.char, text *C.char) { + qt.GetSignal(C.GoString(ptrName), "activated").(func(string))(C.GoString(text)) +} + +func (ptr *QCompleter) Complete(rect core.QRectITF) { + if ptr.Pointer() != nil { + C.QCompleter_Complete(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rect))) + } +} + +func (ptr *QCompleter) CompletionCount() int { + if ptr.Pointer() != nil { + return int(C.QCompleter_CompletionCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCompleter) CompletionModel() *core.QAbstractItemModel { + if ptr.Pointer() != nil { + return core.QAbstractItemModelFromPointer(unsafe.Pointer(C.QCompleter_CompletionModel(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QCompleter) CurrentCompletion() string { + if ptr.Pointer() != nil { + return C.GoString(C.QCompleter_CurrentCompletion(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QCompleter) CurrentIndex() *core.QModelIndex { + if ptr.Pointer() != nil { + return core.QModelIndexFromPointer(unsafe.Pointer(C.QCompleter_CurrentIndex(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QCompleter) CurrentRow() int { + if ptr.Pointer() != nil { + return int(C.QCompleter_CurrentRow(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QCompleter) ConnectHighlighted(f func(text string)) { + if ptr.Pointer() != nil { + C.QCompleter_ConnectHighlighted(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "highlighted", f) + } +} + +func (ptr *QCompleter) DisconnectHighlighted() { + if ptr.Pointer() != nil { + C.QCompleter_DisconnectHighlighted(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "highlighted") + } +} + +//export callbackQCompleterHighlighted +func callbackQCompleterHighlighted(ptrName *C.char, text *C.char) { + qt.GetSignal(C.GoString(ptrName), "highlighted").(func(string))(C.GoString(text)) +} + +func (ptr *QCompleter) Model() *core.QAbstractItemModel { + if ptr.Pointer() != nil { + return core.QAbstractItemModelFromPointer(unsafe.Pointer(C.QCompleter_Model(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QCompleter) PathFromIndex(index core.QModelIndexITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QCompleter_PathFromIndex(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index)))) + } + return "" +} + +func (ptr *QCompleter) Popup() *QAbstractItemView { + if ptr.Pointer() != nil { + return QAbstractItemViewFromPointer(unsafe.Pointer(C.QCompleter_Popup(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QCompleter) SetCurrentRow(row int) bool { + if ptr.Pointer() != nil { + return C.QCompleter_SetCurrentRow(C.QtObjectPtr(ptr.Pointer()), C.int(row)) != 0 + } + return false +} + +func (ptr *QCompleter) SetModel(model core.QAbstractItemModelITF) { + if ptr.Pointer() != nil { + C.QCompleter_SetModel(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQAbstractItemModel(model))) + } +} + +func (ptr *QCompleter) SetPopup(popup QAbstractItemViewITF) { + if ptr.Pointer() != nil { + C.QCompleter_SetPopup(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractItemView(popup))) + } +} + +func (ptr *QCompleter) SetWidget(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QCompleter_SetWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QCompleter) SplitPath(path string) []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QCompleter_SplitPath(C.QtObjectPtr(ptr.Pointer()), C.CString(path))), "|") + } + return make([]string, 0) +} + +func (ptr *QCompleter) Widget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QCompleter_Widget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QCompleter) DestroyQCompleter() { + if ptr.Pointer() != nil { + C.QCompleter_DestroyQCompleter(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qcompleter.h b/widgets/qcompleter.h new file mode 100755 index 00000000..8782f8c3 --- /dev/null +++ b/widgets/qcompleter.h @@ -0,0 +1,50 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QCompleter_CaseSensitivity(QtObjectPtr ptr); +int QCompleter_CompletionColumn(QtObjectPtr ptr); +int QCompleter_CompletionMode(QtObjectPtr ptr); +char* QCompleter_CompletionPrefix(QtObjectPtr ptr); +int QCompleter_CompletionRole(QtObjectPtr ptr); +int QCompleter_FilterMode(QtObjectPtr ptr); +int QCompleter_MaxVisibleItems(QtObjectPtr ptr); +int QCompleter_ModelSorting(QtObjectPtr ptr); +void QCompleter_SetCaseSensitivity(QtObjectPtr ptr, int caseSensitivity); +void QCompleter_SetCompletionColumn(QtObjectPtr ptr, int column); +void QCompleter_SetCompletionMode(QtObjectPtr ptr, int mode); +void QCompleter_SetCompletionPrefix(QtObjectPtr ptr, char* prefix); +void QCompleter_SetCompletionRole(QtObjectPtr ptr, int role); +void QCompleter_SetFilterMode(QtObjectPtr ptr, int filterMode); +void QCompleter_SetMaxVisibleItems(QtObjectPtr ptr, int maxItems); +void QCompleter_SetModelSorting(QtObjectPtr ptr, int sorting); +void QCompleter_SetWrapAround(QtObjectPtr ptr, int wrap); +int QCompleter_WrapAround(QtObjectPtr ptr); +QtObjectPtr QCompleter_NewQCompleter2(QtObjectPtr model, QtObjectPtr parent); +QtObjectPtr QCompleter_NewQCompleter(QtObjectPtr parent); +QtObjectPtr QCompleter_NewQCompleter3(char* list, QtObjectPtr parent); +void QCompleter_ConnectActivated(QtObjectPtr ptr); +void QCompleter_DisconnectActivated(QtObjectPtr ptr); +void QCompleter_Complete(QtObjectPtr ptr, QtObjectPtr rect); +int QCompleter_CompletionCount(QtObjectPtr ptr); +QtObjectPtr QCompleter_CompletionModel(QtObjectPtr ptr); +char* QCompleter_CurrentCompletion(QtObjectPtr ptr); +QtObjectPtr QCompleter_CurrentIndex(QtObjectPtr ptr); +int QCompleter_CurrentRow(QtObjectPtr ptr); +void QCompleter_ConnectHighlighted(QtObjectPtr ptr); +void QCompleter_DisconnectHighlighted(QtObjectPtr ptr); +QtObjectPtr QCompleter_Model(QtObjectPtr ptr); +char* QCompleter_PathFromIndex(QtObjectPtr ptr, QtObjectPtr index); +QtObjectPtr QCompleter_Popup(QtObjectPtr ptr); +int QCompleter_SetCurrentRow(QtObjectPtr ptr, int row); +void QCompleter_SetModel(QtObjectPtr ptr, QtObjectPtr model); +void QCompleter_SetPopup(QtObjectPtr ptr, QtObjectPtr popup); +void QCompleter_SetWidget(QtObjectPtr ptr, QtObjectPtr widget); +char* QCompleter_SplitPath(QtObjectPtr ptr, char* path); +QtObjectPtr QCompleter_Widget(QtObjectPtr ptr); +void QCompleter_DestroyQCompleter(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qdatawidgetmapper.cpp b/widgets/qdatawidgetmapper.cpp new file mode 100755 index 00000000..da29c027 --- /dev/null +++ b/widgets/qdatawidgetmapper.cpp @@ -0,0 +1,135 @@ +#include "qdatawidgetmapper.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDataWidgetMapper: public QDataWidgetMapper { +public: +void Signal_CurrentIndexChanged(int index){callbackQDataWidgetMapperCurrentIndexChanged(this->objectName().toUtf8().data(), index);}; +}; + +int QDataWidgetMapper_CurrentIndex(QtObjectPtr ptr){ + return static_cast(ptr)->currentIndex(); +} + +int QDataWidgetMapper_Orientation(QtObjectPtr ptr){ + return static_cast(ptr)->orientation(); +} + +void QDataWidgetMapper_SetCurrentIndex(QtObjectPtr ptr, int index){ + QMetaObject::invokeMethod(static_cast(ptr), "setCurrentIndex", Q_ARG(int, index)); +} + +void QDataWidgetMapper_SetOrientation(QtObjectPtr ptr, int aOrientation){ + static_cast(ptr)->setOrientation(static_cast(aOrientation)); +} + +void QDataWidgetMapper_SetSubmitPolicy(QtObjectPtr ptr, int policy){ + static_cast(ptr)->setSubmitPolicy(static_cast(policy)); +} + +int QDataWidgetMapper_SubmitPolicy(QtObjectPtr ptr){ + return static_cast(ptr)->submitPolicy(); +} + +QtObjectPtr QDataWidgetMapper_NewQDataWidgetMapper(QtObjectPtr parent){ + return new QDataWidgetMapper(static_cast(parent)); +} + +void QDataWidgetMapper_AddMapping(QtObjectPtr ptr, QtObjectPtr widget, int section){ + static_cast(ptr)->addMapping(static_cast(widget), section); +} + +void QDataWidgetMapper_AddMapping2(QtObjectPtr ptr, QtObjectPtr widget, int section, QtObjectPtr propertyName){ + static_cast(ptr)->addMapping(static_cast(widget), section, *static_cast(propertyName)); +} + +void QDataWidgetMapper_ClearMapping(QtObjectPtr ptr){ + static_cast(ptr)->clearMapping(); +} + +void QDataWidgetMapper_ConnectCurrentIndexChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QDataWidgetMapper::currentIndexChanged), static_cast(ptr), static_cast(&MyQDataWidgetMapper::Signal_CurrentIndexChanged));; +} + +void QDataWidgetMapper_DisconnectCurrentIndexChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QDataWidgetMapper::currentIndexChanged), static_cast(ptr), static_cast(&MyQDataWidgetMapper::Signal_CurrentIndexChanged));; +} + +QtObjectPtr QDataWidgetMapper_ItemDelegate(QtObjectPtr ptr){ + return static_cast(ptr)->itemDelegate(); +} + +int QDataWidgetMapper_MappedSection(QtObjectPtr ptr, QtObjectPtr widget){ + return static_cast(ptr)->mappedSection(static_cast(widget)); +} + +QtObjectPtr QDataWidgetMapper_MappedWidgetAt(QtObjectPtr ptr, int section){ + return static_cast(ptr)->mappedWidgetAt(section); +} + +QtObjectPtr QDataWidgetMapper_Model(QtObjectPtr ptr){ + return static_cast(ptr)->model(); +} + +void QDataWidgetMapper_RemoveMapping(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->removeMapping(static_cast(widget)); +} + +void QDataWidgetMapper_Revert(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "revert"); +} + +QtObjectPtr QDataWidgetMapper_RootIndex(QtObjectPtr ptr){ + return static_cast(ptr)->rootIndex().internalPointer(); +} + +void QDataWidgetMapper_SetCurrentModelIndex(QtObjectPtr ptr, QtObjectPtr index){ + QMetaObject::invokeMethod(static_cast(ptr), "setCurrentModelIndex", Q_ARG(QModelIndex, *static_cast(index))); +} + +void QDataWidgetMapper_SetItemDelegate(QtObjectPtr ptr, QtObjectPtr delegate){ + static_cast(ptr)->setItemDelegate(static_cast(delegate)); +} + +void QDataWidgetMapper_SetModel(QtObjectPtr ptr, QtObjectPtr model){ + static_cast(ptr)->setModel(static_cast(model)); +} + +void QDataWidgetMapper_SetRootIndex(QtObjectPtr ptr, QtObjectPtr index){ + static_cast(ptr)->setRootIndex(*static_cast(index)); +} + +int QDataWidgetMapper_Submit(QtObjectPtr ptr){ + return QMetaObject::invokeMethod(static_cast(ptr), "submit"); +} + +void QDataWidgetMapper_ToFirst(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "toFirst"); +} + +void QDataWidgetMapper_ToLast(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "toLast"); +} + +void QDataWidgetMapper_ToNext(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "toNext"); +} + +void QDataWidgetMapper_ToPrevious(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "toPrevious"); +} + +void QDataWidgetMapper_DestroyQDataWidgetMapper(QtObjectPtr ptr){ + static_cast(ptr)->~QDataWidgetMapper(); +} + diff --git a/widgets/qdatawidgetmapper.go b/widgets/qdatawidgetmapper.go new file mode 100755 index 00000000..46f90f8a --- /dev/null +++ b/widgets/qdatawidgetmapper.go @@ -0,0 +1,235 @@ +package widgets + +//#include "qdatawidgetmapper.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QDataWidgetMapper struct { + core.QObject +} + +type QDataWidgetMapperITF interface { + core.QObjectITF + QDataWidgetMapperPTR() *QDataWidgetMapper +} + +func PointerFromQDataWidgetMapper(ptr QDataWidgetMapperITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDataWidgetMapperPTR().Pointer() + } + return nil +} + +func QDataWidgetMapperFromPointer(ptr unsafe.Pointer) *QDataWidgetMapper { + var n = new(QDataWidgetMapper) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QDataWidgetMapper_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QDataWidgetMapper) QDataWidgetMapperPTR() *QDataWidgetMapper { + return ptr +} + +//QDataWidgetMapper::SubmitPolicy +type QDataWidgetMapper__SubmitPolicy int + +var ( + QDataWidgetMapper__AutoSubmit = QDataWidgetMapper__SubmitPolicy(0) + QDataWidgetMapper__ManualSubmit = QDataWidgetMapper__SubmitPolicy(1) +) + +func (ptr *QDataWidgetMapper) CurrentIndex() int { + if ptr.Pointer() != nil { + return int(C.QDataWidgetMapper_CurrentIndex(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDataWidgetMapper) Orientation() core.Qt__Orientation { + if ptr.Pointer() != nil { + return core.Qt__Orientation(C.QDataWidgetMapper_Orientation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDataWidgetMapper) SetCurrentIndex(index int) { + if ptr.Pointer() != nil { + C.QDataWidgetMapper_SetCurrentIndex(C.QtObjectPtr(ptr.Pointer()), C.int(index)) + } +} + +func (ptr *QDataWidgetMapper) SetOrientation(aOrientation core.Qt__Orientation) { + if ptr.Pointer() != nil { + C.QDataWidgetMapper_SetOrientation(C.QtObjectPtr(ptr.Pointer()), C.int(aOrientation)) + } +} + +func (ptr *QDataWidgetMapper) SetSubmitPolicy(policy QDataWidgetMapper__SubmitPolicy) { + if ptr.Pointer() != nil { + C.QDataWidgetMapper_SetSubmitPolicy(C.QtObjectPtr(ptr.Pointer()), C.int(policy)) + } +} + +func (ptr *QDataWidgetMapper) SubmitPolicy() QDataWidgetMapper__SubmitPolicy { + if ptr.Pointer() != nil { + return QDataWidgetMapper__SubmitPolicy(C.QDataWidgetMapper_SubmitPolicy(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQDataWidgetMapper(parent core.QObjectITF) *QDataWidgetMapper { + return QDataWidgetMapperFromPointer(unsafe.Pointer(C.QDataWidgetMapper_NewQDataWidgetMapper(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QDataWidgetMapper) AddMapping(widget QWidgetITF, section int) { + if ptr.Pointer() != nil { + C.QDataWidgetMapper_AddMapping(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget)), C.int(section)) + } +} + +func (ptr *QDataWidgetMapper) AddMapping2(widget QWidgetITF, section int, propertyName core.QByteArrayITF) { + if ptr.Pointer() != nil { + C.QDataWidgetMapper_AddMapping2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget)), C.int(section), C.QtObjectPtr(core.PointerFromQByteArray(propertyName))) + } +} + +func (ptr *QDataWidgetMapper) ClearMapping() { + if ptr.Pointer() != nil { + C.QDataWidgetMapper_ClearMapping(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDataWidgetMapper) ConnectCurrentIndexChanged(f func(index int)) { + if ptr.Pointer() != nil { + C.QDataWidgetMapper_ConnectCurrentIndexChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "currentIndexChanged", f) + } +} + +func (ptr *QDataWidgetMapper) DisconnectCurrentIndexChanged() { + if ptr.Pointer() != nil { + C.QDataWidgetMapper_DisconnectCurrentIndexChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "currentIndexChanged") + } +} + +//export callbackQDataWidgetMapperCurrentIndexChanged +func callbackQDataWidgetMapperCurrentIndexChanged(ptrName *C.char, index C.int) { + qt.GetSignal(C.GoString(ptrName), "currentIndexChanged").(func(int))(int(index)) +} + +func (ptr *QDataWidgetMapper) ItemDelegate() *QAbstractItemDelegate { + if ptr.Pointer() != nil { + return QAbstractItemDelegateFromPointer(unsafe.Pointer(C.QDataWidgetMapper_ItemDelegate(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QDataWidgetMapper) MappedSection(widget QWidgetITF) int { + if ptr.Pointer() != nil { + return int(C.QDataWidgetMapper_MappedSection(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget)))) + } + return 0 +} + +func (ptr *QDataWidgetMapper) MappedWidgetAt(section int) *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QDataWidgetMapper_MappedWidgetAt(C.QtObjectPtr(ptr.Pointer()), C.int(section)))) + } + return nil +} + +func (ptr *QDataWidgetMapper) Model() *core.QAbstractItemModel { + if ptr.Pointer() != nil { + return core.QAbstractItemModelFromPointer(unsafe.Pointer(C.QDataWidgetMapper_Model(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QDataWidgetMapper) RemoveMapping(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QDataWidgetMapper_RemoveMapping(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QDataWidgetMapper) Revert() { + if ptr.Pointer() != nil { + C.QDataWidgetMapper_Revert(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDataWidgetMapper) RootIndex() *core.QModelIndex { + if ptr.Pointer() != nil { + return core.QModelIndexFromPointer(unsafe.Pointer(C.QDataWidgetMapper_RootIndex(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QDataWidgetMapper) SetCurrentModelIndex(index core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QDataWidgetMapper_SetCurrentModelIndex(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index))) + } +} + +func (ptr *QDataWidgetMapper) SetItemDelegate(delegate QAbstractItemDelegateITF) { + if ptr.Pointer() != nil { + C.QDataWidgetMapper_SetItemDelegate(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractItemDelegate(delegate))) + } +} + +func (ptr *QDataWidgetMapper) SetModel(model core.QAbstractItemModelITF) { + if ptr.Pointer() != nil { + C.QDataWidgetMapper_SetModel(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQAbstractItemModel(model))) + } +} + +func (ptr *QDataWidgetMapper) SetRootIndex(index core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QDataWidgetMapper_SetRootIndex(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index))) + } +} + +func (ptr *QDataWidgetMapper) Submit() bool { + if ptr.Pointer() != nil { + return C.QDataWidgetMapper_Submit(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDataWidgetMapper) ToFirst() { + if ptr.Pointer() != nil { + C.QDataWidgetMapper_ToFirst(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDataWidgetMapper) ToLast() { + if ptr.Pointer() != nil { + C.QDataWidgetMapper_ToLast(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDataWidgetMapper) ToNext() { + if ptr.Pointer() != nil { + C.QDataWidgetMapper_ToNext(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDataWidgetMapper) ToPrevious() { + if ptr.Pointer() != nil { + C.QDataWidgetMapper_ToPrevious(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDataWidgetMapper) DestroyQDataWidgetMapper() { + if ptr.Pointer() != nil { + C.QDataWidgetMapper_DestroyQDataWidgetMapper(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qdatawidgetmapper.h b/widgets/qdatawidgetmapper.h new file mode 100755 index 00000000..97123829 --- /dev/null +++ b/widgets/qdatawidgetmapper.h @@ -0,0 +1,38 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QDataWidgetMapper_CurrentIndex(QtObjectPtr ptr); +int QDataWidgetMapper_Orientation(QtObjectPtr ptr); +void QDataWidgetMapper_SetCurrentIndex(QtObjectPtr ptr, int index); +void QDataWidgetMapper_SetOrientation(QtObjectPtr ptr, int aOrientation); +void QDataWidgetMapper_SetSubmitPolicy(QtObjectPtr ptr, int policy); +int QDataWidgetMapper_SubmitPolicy(QtObjectPtr ptr); +QtObjectPtr QDataWidgetMapper_NewQDataWidgetMapper(QtObjectPtr parent); +void QDataWidgetMapper_AddMapping(QtObjectPtr ptr, QtObjectPtr widget, int section); +void QDataWidgetMapper_AddMapping2(QtObjectPtr ptr, QtObjectPtr widget, int section, QtObjectPtr propertyName); +void QDataWidgetMapper_ClearMapping(QtObjectPtr ptr); +void QDataWidgetMapper_ConnectCurrentIndexChanged(QtObjectPtr ptr); +void QDataWidgetMapper_DisconnectCurrentIndexChanged(QtObjectPtr ptr); +QtObjectPtr QDataWidgetMapper_ItemDelegate(QtObjectPtr ptr); +int QDataWidgetMapper_MappedSection(QtObjectPtr ptr, QtObjectPtr widget); +QtObjectPtr QDataWidgetMapper_MappedWidgetAt(QtObjectPtr ptr, int section); +QtObjectPtr QDataWidgetMapper_Model(QtObjectPtr ptr); +void QDataWidgetMapper_RemoveMapping(QtObjectPtr ptr, QtObjectPtr widget); +void QDataWidgetMapper_Revert(QtObjectPtr ptr); +QtObjectPtr QDataWidgetMapper_RootIndex(QtObjectPtr ptr); +void QDataWidgetMapper_SetCurrentModelIndex(QtObjectPtr ptr, QtObjectPtr index); +void QDataWidgetMapper_SetItemDelegate(QtObjectPtr ptr, QtObjectPtr delegate); +void QDataWidgetMapper_SetModel(QtObjectPtr ptr, QtObjectPtr model); +void QDataWidgetMapper_SetRootIndex(QtObjectPtr ptr, QtObjectPtr index); +int QDataWidgetMapper_Submit(QtObjectPtr ptr); +void QDataWidgetMapper_ToFirst(QtObjectPtr ptr); +void QDataWidgetMapper_ToLast(QtObjectPtr ptr); +void QDataWidgetMapper_ToNext(QtObjectPtr ptr); +void QDataWidgetMapper_ToPrevious(QtObjectPtr ptr); +void QDataWidgetMapper_DestroyQDataWidgetMapper(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qdateedit.cpp b/widgets/qdateedit.cpp new file mode 100755 index 00000000..135762d6 --- /dev/null +++ b/widgets/qdateedit.cpp @@ -0,0 +1,26 @@ +#include "qdateedit.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDateEdit: public QDateEdit { +public: +}; + +QtObjectPtr QDateEdit_NewQDateEdit(QtObjectPtr parent){ + return new QDateEdit(static_cast(parent)); +} + +QtObjectPtr QDateEdit_NewQDateEdit2(QtObjectPtr date, QtObjectPtr parent){ + return new QDateEdit(*static_cast(date), static_cast(parent)); +} + +void QDateEdit_DestroyQDateEdit(QtObjectPtr ptr){ + static_cast(ptr)->~QDateEdit(); +} + diff --git a/widgets/qdateedit.go b/widgets/qdateedit.go new file mode 100755 index 00000000..1f9537a7 --- /dev/null +++ b/widgets/qdateedit.go @@ -0,0 +1,53 @@ +package widgets + +//#include "qdateedit.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QDateEdit struct { + QDateTimeEdit +} + +type QDateEditITF interface { + QDateTimeEditITF + QDateEditPTR() *QDateEdit +} + +func PointerFromQDateEdit(ptr QDateEditITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDateEditPTR().Pointer() + } + return nil +} + +func QDateEditFromPointer(ptr unsafe.Pointer) *QDateEdit { + var n = new(QDateEdit) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QDateEdit_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QDateEdit) QDateEditPTR() *QDateEdit { + return ptr +} + +func NewQDateEdit(parent QWidgetITF) *QDateEdit { + return QDateEditFromPointer(unsafe.Pointer(C.QDateEdit_NewQDateEdit(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQDateEdit2(date core.QDateITF, parent QWidgetITF) *QDateEdit { + return QDateEditFromPointer(unsafe.Pointer(C.QDateEdit_NewQDateEdit2(C.QtObjectPtr(core.PointerFromQDate(date)), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QDateEdit) DestroyQDateEdit() { + if ptr.Pointer() != nil { + C.QDateEdit_DestroyQDateEdit(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qdateedit.h b/widgets/qdateedit.h new file mode 100755 index 00000000..a523fd5c --- /dev/null +++ b/widgets/qdateedit.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDateEdit_NewQDateEdit(QtObjectPtr parent); +QtObjectPtr QDateEdit_NewQDateEdit2(QtObjectPtr date, QtObjectPtr parent); +void QDateEdit_DestroyQDateEdit(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qdatetimeedit.cpp b/widgets/qdatetimeedit.cpp new file mode 100755 index 00000000..8c33c8db --- /dev/null +++ b/widgets/qdatetimeedit.cpp @@ -0,0 +1,191 @@ +#include "qdatetimeedit.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDateTimeEdit: public QDateTimeEdit { +public: +}; + +QtObjectPtr QDateTimeEdit_NewQDateTimeEdit3(QtObjectPtr date, QtObjectPtr parent){ + return new QDateTimeEdit(*static_cast(date), static_cast(parent)); +} + +QtObjectPtr QDateTimeEdit_NewQDateTimeEdit4(QtObjectPtr time, QtObjectPtr parent){ + return new QDateTimeEdit(*static_cast(time), static_cast(parent)); +} + +int QDateTimeEdit_CalendarPopup(QtObjectPtr ptr){ + return static_cast(ptr)->calendarPopup(); +} + +void QDateTimeEdit_ClearMaximumDate(QtObjectPtr ptr){ + static_cast(ptr)->clearMaximumDate(); +} + +void QDateTimeEdit_ClearMaximumDateTime(QtObjectPtr ptr){ + static_cast(ptr)->clearMaximumDateTime(); +} + +void QDateTimeEdit_ClearMaximumTime(QtObjectPtr ptr){ + static_cast(ptr)->clearMaximumTime(); +} + +void QDateTimeEdit_ClearMinimumDate(QtObjectPtr ptr){ + static_cast(ptr)->clearMinimumDate(); +} + +void QDateTimeEdit_ClearMinimumDateTime(QtObjectPtr ptr){ + static_cast(ptr)->clearMinimumDateTime(); +} + +void QDateTimeEdit_ClearMinimumTime(QtObjectPtr ptr){ + static_cast(ptr)->clearMinimumTime(); +} + +int QDateTimeEdit_CurrentSection(QtObjectPtr ptr){ + return static_cast(ptr)->currentSection(); +} + +int QDateTimeEdit_CurrentSectionIndex(QtObjectPtr ptr){ + return static_cast(ptr)->currentSectionIndex(); +} + +char* QDateTimeEdit_DisplayFormat(QtObjectPtr ptr){ + return static_cast(ptr)->displayFormat().toUtf8().data(); +} + +int QDateTimeEdit_DisplayedSections(QtObjectPtr ptr){ + return static_cast(ptr)->displayedSections(); +} + +int QDateTimeEdit_SectionCount(QtObjectPtr ptr){ + return static_cast(ptr)->sectionCount(); +} + +char* QDateTimeEdit_SectionText(QtObjectPtr ptr, int section){ + return static_cast(ptr)->sectionText(static_cast(section)).toUtf8().data(); +} + +void QDateTimeEdit_SetCalendarPopup(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setCalendarPopup(enable != 0); +} + +void QDateTimeEdit_SetCurrentSection(QtObjectPtr ptr, int section){ + static_cast(ptr)->setCurrentSection(static_cast(section)); +} + +void QDateTimeEdit_SetCurrentSectionIndex(QtObjectPtr ptr, int index){ + static_cast(ptr)->setCurrentSectionIndex(index); +} + +void QDateTimeEdit_SetDate(QtObjectPtr ptr, QtObjectPtr date){ + QMetaObject::invokeMethod(static_cast(ptr), "setDate", Q_ARG(QDate, *static_cast(date))); +} + +void QDateTimeEdit_SetDateTime(QtObjectPtr ptr, QtObjectPtr dateTime){ + QMetaObject::invokeMethod(static_cast(ptr), "setDateTime", Q_ARG(QDateTime, *static_cast(dateTime))); +} + +void QDateTimeEdit_SetDisplayFormat(QtObjectPtr ptr, char* format){ + static_cast(ptr)->setDisplayFormat(QString(format)); +} + +void QDateTimeEdit_SetMaximumDate(QtObjectPtr ptr, QtObjectPtr max){ + static_cast(ptr)->setMaximumDate(*static_cast(max)); +} + +void QDateTimeEdit_SetMaximumDateTime(QtObjectPtr ptr, QtObjectPtr dt){ + static_cast(ptr)->setMaximumDateTime(*static_cast(dt)); +} + +void QDateTimeEdit_SetMaximumTime(QtObjectPtr ptr, QtObjectPtr max){ + static_cast(ptr)->setMaximumTime(*static_cast(max)); +} + +void QDateTimeEdit_SetMinimumDate(QtObjectPtr ptr, QtObjectPtr min){ + static_cast(ptr)->setMinimumDate(*static_cast(min)); +} + +void QDateTimeEdit_SetMinimumDateTime(QtObjectPtr ptr, QtObjectPtr dt){ + static_cast(ptr)->setMinimumDateTime(*static_cast(dt)); +} + +void QDateTimeEdit_SetMinimumTime(QtObjectPtr ptr, QtObjectPtr min){ + static_cast(ptr)->setMinimumTime(*static_cast(min)); +} + +void QDateTimeEdit_SetTime(QtObjectPtr ptr, QtObjectPtr time){ + QMetaObject::invokeMethod(static_cast(ptr), "setTime", Q_ARG(QTime, *static_cast(time))); +} + +void QDateTimeEdit_SetTimeSpec(QtObjectPtr ptr, int spec){ + static_cast(ptr)->setTimeSpec(static_cast(spec)); +} + +int QDateTimeEdit_TimeSpec(QtObjectPtr ptr){ + return static_cast(ptr)->timeSpec(); +} + +QtObjectPtr QDateTimeEdit_NewQDateTimeEdit(QtObjectPtr parent){ + return new QDateTimeEdit(static_cast(parent)); +} + +QtObjectPtr QDateTimeEdit_NewQDateTimeEdit2(QtObjectPtr datetime, QtObjectPtr parent){ + return new QDateTimeEdit(*static_cast(datetime), static_cast(parent)); +} + +QtObjectPtr QDateTimeEdit_CalendarWidget(QtObjectPtr ptr){ + return static_cast(ptr)->calendarWidget(); +} + +void QDateTimeEdit_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +int QDateTimeEdit_Event(QtObjectPtr ptr, QtObjectPtr event){ + return static_cast(ptr)->event(static_cast(event)); +} + +int QDateTimeEdit_SectionAt(QtObjectPtr ptr, int index){ + return static_cast(ptr)->sectionAt(index); +} + +void QDateTimeEdit_SetCalendarWidget(QtObjectPtr ptr, QtObjectPtr calendarWidget){ + static_cast(ptr)->setCalendarWidget(static_cast(calendarWidget)); +} + +void QDateTimeEdit_SetDateRange(QtObjectPtr ptr, QtObjectPtr min, QtObjectPtr max){ + static_cast(ptr)->setDateRange(*static_cast(min), *static_cast(max)); +} + +void QDateTimeEdit_SetDateTimeRange(QtObjectPtr ptr, QtObjectPtr min, QtObjectPtr max){ + static_cast(ptr)->setDateTimeRange(*static_cast(min), *static_cast(max)); +} + +void QDateTimeEdit_SetSelectedSection(QtObjectPtr ptr, int section){ + static_cast(ptr)->setSelectedSection(static_cast(section)); +} + +void QDateTimeEdit_SetTimeRange(QtObjectPtr ptr, QtObjectPtr min, QtObjectPtr max){ + static_cast(ptr)->setTimeRange(*static_cast(min), *static_cast(max)); +} + +void QDateTimeEdit_StepBy(QtObjectPtr ptr, int steps){ + static_cast(ptr)->stepBy(steps); +} + +void QDateTimeEdit_DestroyQDateTimeEdit(QtObjectPtr ptr){ + static_cast(ptr)->~QDateTimeEdit(); +} + diff --git a/widgets/qdatetimeedit.go b/widgets/qdatetimeedit.go new file mode 100755 index 00000000..3cbc1d78 --- /dev/null +++ b/widgets/qdatetimeedit.go @@ -0,0 +1,317 @@ +package widgets + +//#include "qdatetimeedit.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QDateTimeEdit struct { + QAbstractSpinBox +} + +type QDateTimeEditITF interface { + QAbstractSpinBoxITF + QDateTimeEditPTR() *QDateTimeEdit +} + +func PointerFromQDateTimeEdit(ptr QDateTimeEditITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDateTimeEditPTR().Pointer() + } + return nil +} + +func QDateTimeEditFromPointer(ptr unsafe.Pointer) *QDateTimeEdit { + var n = new(QDateTimeEdit) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QDateTimeEdit_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QDateTimeEdit) QDateTimeEditPTR() *QDateTimeEdit { + return ptr +} + +//QDateTimeEdit::Section +type QDateTimeEdit__Section int + +var ( + QDateTimeEdit__NoSection = QDateTimeEdit__Section(0x0000) + QDateTimeEdit__AmPmSection = QDateTimeEdit__Section(0x0001) + QDateTimeEdit__MSecSection = QDateTimeEdit__Section(0x0002) + QDateTimeEdit__SecondSection = QDateTimeEdit__Section(0x0004) + QDateTimeEdit__MinuteSection = QDateTimeEdit__Section(0x0008) + QDateTimeEdit__HourSection = QDateTimeEdit__Section(0x0010) + QDateTimeEdit__DaySection = QDateTimeEdit__Section(0x0100) + QDateTimeEdit__MonthSection = QDateTimeEdit__Section(0x0200) + QDateTimeEdit__YearSection = QDateTimeEdit__Section(0x0400) + QDateTimeEdit__TimeSections_Mask = QDateTimeEdit__Section(QDateTimeEdit__AmPmSection | QDateTimeEdit__MSecSection | QDateTimeEdit__SecondSection | QDateTimeEdit__MinuteSection | QDateTimeEdit__HourSection) + QDateTimeEdit__DateSections_Mask = QDateTimeEdit__Section(QDateTimeEdit__DaySection | QDateTimeEdit__MonthSection | QDateTimeEdit__YearSection) +) + +func NewQDateTimeEdit3(date core.QDateITF, parent QWidgetITF) *QDateTimeEdit { + return QDateTimeEditFromPointer(unsafe.Pointer(C.QDateTimeEdit_NewQDateTimeEdit3(C.QtObjectPtr(core.PointerFromQDate(date)), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQDateTimeEdit4(time core.QTimeITF, parent QWidgetITF) *QDateTimeEdit { + return QDateTimeEditFromPointer(unsafe.Pointer(C.QDateTimeEdit_NewQDateTimeEdit4(C.QtObjectPtr(core.PointerFromQTime(time)), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QDateTimeEdit) CalendarPopup() bool { + if ptr.Pointer() != nil { + return C.QDateTimeEdit_CalendarPopup(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDateTimeEdit) ClearMaximumDate() { + if ptr.Pointer() != nil { + C.QDateTimeEdit_ClearMaximumDate(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDateTimeEdit) ClearMaximumDateTime() { + if ptr.Pointer() != nil { + C.QDateTimeEdit_ClearMaximumDateTime(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDateTimeEdit) ClearMaximumTime() { + if ptr.Pointer() != nil { + C.QDateTimeEdit_ClearMaximumTime(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDateTimeEdit) ClearMinimumDate() { + if ptr.Pointer() != nil { + C.QDateTimeEdit_ClearMinimumDate(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDateTimeEdit) ClearMinimumDateTime() { + if ptr.Pointer() != nil { + C.QDateTimeEdit_ClearMinimumDateTime(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDateTimeEdit) ClearMinimumTime() { + if ptr.Pointer() != nil { + C.QDateTimeEdit_ClearMinimumTime(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDateTimeEdit) CurrentSection() QDateTimeEdit__Section { + if ptr.Pointer() != nil { + return QDateTimeEdit__Section(C.QDateTimeEdit_CurrentSection(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDateTimeEdit) CurrentSectionIndex() int { + if ptr.Pointer() != nil { + return int(C.QDateTimeEdit_CurrentSectionIndex(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDateTimeEdit) DisplayFormat() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDateTimeEdit_DisplayFormat(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDateTimeEdit) DisplayedSections() QDateTimeEdit__Section { + if ptr.Pointer() != nil { + return QDateTimeEdit__Section(C.QDateTimeEdit_DisplayedSections(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDateTimeEdit) SectionCount() int { + if ptr.Pointer() != nil { + return int(C.QDateTimeEdit_SectionCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDateTimeEdit) SectionText(section QDateTimeEdit__Section) string { + if ptr.Pointer() != nil { + return C.GoString(C.QDateTimeEdit_SectionText(C.QtObjectPtr(ptr.Pointer()), C.int(section))) + } + return "" +} + +func (ptr *QDateTimeEdit) SetCalendarPopup(enable bool) { + if ptr.Pointer() != nil { + C.QDateTimeEdit_SetCalendarPopup(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QDateTimeEdit) SetCurrentSection(section QDateTimeEdit__Section) { + if ptr.Pointer() != nil { + C.QDateTimeEdit_SetCurrentSection(C.QtObjectPtr(ptr.Pointer()), C.int(section)) + } +} + +func (ptr *QDateTimeEdit) SetCurrentSectionIndex(index int) { + if ptr.Pointer() != nil { + C.QDateTimeEdit_SetCurrentSectionIndex(C.QtObjectPtr(ptr.Pointer()), C.int(index)) + } +} + +func (ptr *QDateTimeEdit) SetDate(date core.QDateITF) { + if ptr.Pointer() != nil { + C.QDateTimeEdit_SetDate(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDate(date))) + } +} + +func (ptr *QDateTimeEdit) SetDateTime(dateTime core.QDateTimeITF) { + if ptr.Pointer() != nil { + C.QDateTimeEdit_SetDateTime(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDateTime(dateTime))) + } +} + +func (ptr *QDateTimeEdit) SetDisplayFormat(format string) { + if ptr.Pointer() != nil { + C.QDateTimeEdit_SetDisplayFormat(C.QtObjectPtr(ptr.Pointer()), C.CString(format)) + } +} + +func (ptr *QDateTimeEdit) SetMaximumDate(max core.QDateITF) { + if ptr.Pointer() != nil { + C.QDateTimeEdit_SetMaximumDate(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDate(max))) + } +} + +func (ptr *QDateTimeEdit) SetMaximumDateTime(dt core.QDateTimeITF) { + if ptr.Pointer() != nil { + C.QDateTimeEdit_SetMaximumDateTime(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDateTime(dt))) + } +} + +func (ptr *QDateTimeEdit) SetMaximumTime(max core.QTimeITF) { + if ptr.Pointer() != nil { + C.QDateTimeEdit_SetMaximumTime(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQTime(max))) + } +} + +func (ptr *QDateTimeEdit) SetMinimumDate(min core.QDateITF) { + if ptr.Pointer() != nil { + C.QDateTimeEdit_SetMinimumDate(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDate(min))) + } +} + +func (ptr *QDateTimeEdit) SetMinimumDateTime(dt core.QDateTimeITF) { + if ptr.Pointer() != nil { + C.QDateTimeEdit_SetMinimumDateTime(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDateTime(dt))) + } +} + +func (ptr *QDateTimeEdit) SetMinimumTime(min core.QTimeITF) { + if ptr.Pointer() != nil { + C.QDateTimeEdit_SetMinimumTime(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQTime(min))) + } +} + +func (ptr *QDateTimeEdit) SetTime(time core.QTimeITF) { + if ptr.Pointer() != nil { + C.QDateTimeEdit_SetTime(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQTime(time))) + } +} + +func (ptr *QDateTimeEdit) SetTimeSpec(spec core.Qt__TimeSpec) { + if ptr.Pointer() != nil { + C.QDateTimeEdit_SetTimeSpec(C.QtObjectPtr(ptr.Pointer()), C.int(spec)) + } +} + +func (ptr *QDateTimeEdit) TimeSpec() core.Qt__TimeSpec { + if ptr.Pointer() != nil { + return core.Qt__TimeSpec(C.QDateTimeEdit_TimeSpec(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQDateTimeEdit(parent QWidgetITF) *QDateTimeEdit { + return QDateTimeEditFromPointer(unsafe.Pointer(C.QDateTimeEdit_NewQDateTimeEdit(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQDateTimeEdit2(datetime core.QDateTimeITF, parent QWidgetITF) *QDateTimeEdit { + return QDateTimeEditFromPointer(unsafe.Pointer(C.QDateTimeEdit_NewQDateTimeEdit2(C.QtObjectPtr(core.PointerFromQDateTime(datetime)), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QDateTimeEdit) CalendarWidget() *QCalendarWidget { + if ptr.Pointer() != nil { + return QCalendarWidgetFromPointer(unsafe.Pointer(C.QDateTimeEdit_CalendarWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QDateTimeEdit) Clear() { + if ptr.Pointer() != nil { + C.QDateTimeEdit_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDateTimeEdit) Event(event core.QEventITF) bool { + if ptr.Pointer() != nil { + return C.QDateTimeEdit_Event(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQEvent(event))) != 0 + } + return false +} + +func (ptr *QDateTimeEdit) SectionAt(index int) QDateTimeEdit__Section { + if ptr.Pointer() != nil { + return QDateTimeEdit__Section(C.QDateTimeEdit_SectionAt(C.QtObjectPtr(ptr.Pointer()), C.int(index))) + } + return 0 +} + +func (ptr *QDateTimeEdit) SetCalendarWidget(calendarWidget QCalendarWidgetITF) { + if ptr.Pointer() != nil { + C.QDateTimeEdit_SetCalendarWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQCalendarWidget(calendarWidget))) + } +} + +func (ptr *QDateTimeEdit) SetDateRange(min core.QDateITF, max core.QDateITF) { + if ptr.Pointer() != nil { + C.QDateTimeEdit_SetDateRange(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDate(min)), C.QtObjectPtr(core.PointerFromQDate(max))) + } +} + +func (ptr *QDateTimeEdit) SetDateTimeRange(min core.QDateTimeITF, max core.QDateTimeITF) { + if ptr.Pointer() != nil { + C.QDateTimeEdit_SetDateTimeRange(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDateTime(min)), C.QtObjectPtr(core.PointerFromQDateTime(max))) + } +} + +func (ptr *QDateTimeEdit) SetSelectedSection(section QDateTimeEdit__Section) { + if ptr.Pointer() != nil { + C.QDateTimeEdit_SetSelectedSection(C.QtObjectPtr(ptr.Pointer()), C.int(section)) + } +} + +func (ptr *QDateTimeEdit) SetTimeRange(min core.QTimeITF, max core.QTimeITF) { + if ptr.Pointer() != nil { + C.QDateTimeEdit_SetTimeRange(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQTime(min)), C.QtObjectPtr(core.PointerFromQTime(max))) + } +} + +func (ptr *QDateTimeEdit) StepBy(steps int) { + if ptr.Pointer() != nil { + C.QDateTimeEdit_StepBy(C.QtObjectPtr(ptr.Pointer()), C.int(steps)) + } +} + +func (ptr *QDateTimeEdit) DestroyQDateTimeEdit() { + if ptr.Pointer() != nil { + C.QDateTimeEdit_DestroyQDateTimeEdit(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qdatetimeedit.h b/widgets/qdatetimeedit.h new file mode 100755 index 00000000..0d485f4f --- /dev/null +++ b/widgets/qdatetimeedit.h @@ -0,0 +1,52 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDateTimeEdit_NewQDateTimeEdit3(QtObjectPtr date, QtObjectPtr parent); +QtObjectPtr QDateTimeEdit_NewQDateTimeEdit4(QtObjectPtr time, QtObjectPtr parent); +int QDateTimeEdit_CalendarPopup(QtObjectPtr ptr); +void QDateTimeEdit_ClearMaximumDate(QtObjectPtr ptr); +void QDateTimeEdit_ClearMaximumDateTime(QtObjectPtr ptr); +void QDateTimeEdit_ClearMaximumTime(QtObjectPtr ptr); +void QDateTimeEdit_ClearMinimumDate(QtObjectPtr ptr); +void QDateTimeEdit_ClearMinimumDateTime(QtObjectPtr ptr); +void QDateTimeEdit_ClearMinimumTime(QtObjectPtr ptr); +int QDateTimeEdit_CurrentSection(QtObjectPtr ptr); +int QDateTimeEdit_CurrentSectionIndex(QtObjectPtr ptr); +char* QDateTimeEdit_DisplayFormat(QtObjectPtr ptr); +int QDateTimeEdit_DisplayedSections(QtObjectPtr ptr); +int QDateTimeEdit_SectionCount(QtObjectPtr ptr); +char* QDateTimeEdit_SectionText(QtObjectPtr ptr, int section); +void QDateTimeEdit_SetCalendarPopup(QtObjectPtr ptr, int enable); +void QDateTimeEdit_SetCurrentSection(QtObjectPtr ptr, int section); +void QDateTimeEdit_SetCurrentSectionIndex(QtObjectPtr ptr, int index); +void QDateTimeEdit_SetDate(QtObjectPtr ptr, QtObjectPtr date); +void QDateTimeEdit_SetDateTime(QtObjectPtr ptr, QtObjectPtr dateTime); +void QDateTimeEdit_SetDisplayFormat(QtObjectPtr ptr, char* format); +void QDateTimeEdit_SetMaximumDate(QtObjectPtr ptr, QtObjectPtr max); +void QDateTimeEdit_SetMaximumDateTime(QtObjectPtr ptr, QtObjectPtr dt); +void QDateTimeEdit_SetMaximumTime(QtObjectPtr ptr, QtObjectPtr max); +void QDateTimeEdit_SetMinimumDate(QtObjectPtr ptr, QtObjectPtr min); +void QDateTimeEdit_SetMinimumDateTime(QtObjectPtr ptr, QtObjectPtr dt); +void QDateTimeEdit_SetMinimumTime(QtObjectPtr ptr, QtObjectPtr min); +void QDateTimeEdit_SetTime(QtObjectPtr ptr, QtObjectPtr time); +void QDateTimeEdit_SetTimeSpec(QtObjectPtr ptr, int spec); +int QDateTimeEdit_TimeSpec(QtObjectPtr ptr); +QtObjectPtr QDateTimeEdit_NewQDateTimeEdit(QtObjectPtr parent); +QtObjectPtr QDateTimeEdit_NewQDateTimeEdit2(QtObjectPtr datetime, QtObjectPtr parent); +QtObjectPtr QDateTimeEdit_CalendarWidget(QtObjectPtr ptr); +void QDateTimeEdit_Clear(QtObjectPtr ptr); +int QDateTimeEdit_Event(QtObjectPtr ptr, QtObjectPtr event); +int QDateTimeEdit_SectionAt(QtObjectPtr ptr, int index); +void QDateTimeEdit_SetCalendarWidget(QtObjectPtr ptr, QtObjectPtr calendarWidget); +void QDateTimeEdit_SetDateRange(QtObjectPtr ptr, QtObjectPtr min, QtObjectPtr max); +void QDateTimeEdit_SetDateTimeRange(QtObjectPtr ptr, QtObjectPtr min, QtObjectPtr max); +void QDateTimeEdit_SetSelectedSection(QtObjectPtr ptr, int section); +void QDateTimeEdit_SetTimeRange(QtObjectPtr ptr, QtObjectPtr min, QtObjectPtr max); +void QDateTimeEdit_StepBy(QtObjectPtr ptr, int steps); +void QDateTimeEdit_DestroyQDateTimeEdit(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qdesktopwidget.cpp b/widgets/qdesktopwidget.cpp new file mode 100755 index 00000000..0d8cc82d --- /dev/null +++ b/widgets/qdesktopwidget.cpp @@ -0,0 +1,66 @@ +#include "qdesktopwidget.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDesktopWidget: public QDesktopWidget { +public: +void Signal_Resized(int screen){callbackQDesktopWidgetResized(this->objectName().toUtf8().data(), screen);}; +void Signal_ScreenCountChanged(int newCount){callbackQDesktopWidgetScreenCountChanged(this->objectName().toUtf8().data(), newCount);}; +void Signal_WorkAreaResized(int screen){callbackQDesktopWidgetWorkAreaResized(this->objectName().toUtf8().data(), screen);}; +}; + +int QDesktopWidget_IsVirtualDesktop(QtObjectPtr ptr){ + return static_cast(ptr)->isVirtualDesktop(); +} + +int QDesktopWidget_PrimaryScreen(QtObjectPtr ptr){ + return static_cast(ptr)->primaryScreen(); +} + +QtObjectPtr QDesktopWidget_Screen(QtObjectPtr ptr, int screen){ + return static_cast(ptr)->screen(screen); +} + +int QDesktopWidget_ScreenNumber2(QtObjectPtr ptr, QtObjectPtr point){ + return static_cast(ptr)->screenNumber(*static_cast(point)); +} + +int QDesktopWidget_ScreenNumber(QtObjectPtr ptr, QtObjectPtr widget){ + return static_cast(ptr)->screenNumber(static_cast(widget)); +} + +void QDesktopWidget_ConnectResized(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QDesktopWidget::resized), static_cast(ptr), static_cast(&MyQDesktopWidget::Signal_Resized));; +} + +void QDesktopWidget_DisconnectResized(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QDesktopWidget::resized), static_cast(ptr), static_cast(&MyQDesktopWidget::Signal_Resized));; +} + +int QDesktopWidget_ScreenCount(QtObjectPtr ptr){ + return static_cast(ptr)->screenCount(); +} + +void QDesktopWidget_ConnectScreenCountChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QDesktopWidget::screenCountChanged), static_cast(ptr), static_cast(&MyQDesktopWidget::Signal_ScreenCountChanged));; +} + +void QDesktopWidget_DisconnectScreenCountChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QDesktopWidget::screenCountChanged), static_cast(ptr), static_cast(&MyQDesktopWidget::Signal_ScreenCountChanged));; +} + +void QDesktopWidget_ConnectWorkAreaResized(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QDesktopWidget::workAreaResized), static_cast(ptr), static_cast(&MyQDesktopWidget::Signal_WorkAreaResized));; +} + +void QDesktopWidget_DisconnectWorkAreaResized(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QDesktopWidget::workAreaResized), static_cast(ptr), static_cast(&MyQDesktopWidget::Signal_WorkAreaResized));; +} + diff --git a/widgets/qdesktopwidget.go b/widgets/qdesktopwidget.go new file mode 100755 index 00000000..3b10d0e6 --- /dev/null +++ b/widgets/qdesktopwidget.go @@ -0,0 +1,137 @@ +package widgets + +//#include "qdesktopwidget.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QDesktopWidget struct { + QWidget +} + +type QDesktopWidgetITF interface { + QWidgetITF + QDesktopWidgetPTR() *QDesktopWidget +} + +func PointerFromQDesktopWidget(ptr QDesktopWidgetITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDesktopWidgetPTR().Pointer() + } + return nil +} + +func QDesktopWidgetFromPointer(ptr unsafe.Pointer) *QDesktopWidget { + var n = new(QDesktopWidget) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QDesktopWidget_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QDesktopWidget) QDesktopWidgetPTR() *QDesktopWidget { + return ptr +} + +func (ptr *QDesktopWidget) IsVirtualDesktop() bool { + if ptr.Pointer() != nil { + return C.QDesktopWidget_IsVirtualDesktop(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDesktopWidget) PrimaryScreen() int { + if ptr.Pointer() != nil { + return int(C.QDesktopWidget_PrimaryScreen(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDesktopWidget) Screen(screen int) *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QDesktopWidget_Screen(C.QtObjectPtr(ptr.Pointer()), C.int(screen)))) + } + return nil +} + +func (ptr *QDesktopWidget) ScreenNumber2(point core.QPointITF) int { + if ptr.Pointer() != nil { + return int(C.QDesktopWidget_ScreenNumber2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(point)))) + } + return 0 +} + +func (ptr *QDesktopWidget) ScreenNumber(widget QWidgetITF) int { + if ptr.Pointer() != nil { + return int(C.QDesktopWidget_ScreenNumber(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget)))) + } + return 0 +} + +func (ptr *QDesktopWidget) ConnectResized(f func(screen int)) { + if ptr.Pointer() != nil { + C.QDesktopWidget_ConnectResized(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "resized", f) + } +} + +func (ptr *QDesktopWidget) DisconnectResized() { + if ptr.Pointer() != nil { + C.QDesktopWidget_DisconnectResized(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "resized") + } +} + +//export callbackQDesktopWidgetResized +func callbackQDesktopWidgetResized(ptrName *C.char, screen C.int) { + qt.GetSignal(C.GoString(ptrName), "resized").(func(int))(int(screen)) +} + +func (ptr *QDesktopWidget) ScreenCount() int { + if ptr.Pointer() != nil { + return int(C.QDesktopWidget_ScreenCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDesktopWidget) ConnectScreenCountChanged(f func(newCount int)) { + if ptr.Pointer() != nil { + C.QDesktopWidget_ConnectScreenCountChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "screenCountChanged", f) + } +} + +func (ptr *QDesktopWidget) DisconnectScreenCountChanged() { + if ptr.Pointer() != nil { + C.QDesktopWidget_DisconnectScreenCountChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "screenCountChanged") + } +} + +//export callbackQDesktopWidgetScreenCountChanged +func callbackQDesktopWidgetScreenCountChanged(ptrName *C.char, newCount C.int) { + qt.GetSignal(C.GoString(ptrName), "screenCountChanged").(func(int))(int(newCount)) +} + +func (ptr *QDesktopWidget) ConnectWorkAreaResized(f func(screen int)) { + if ptr.Pointer() != nil { + C.QDesktopWidget_ConnectWorkAreaResized(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "workAreaResized", f) + } +} + +func (ptr *QDesktopWidget) DisconnectWorkAreaResized() { + if ptr.Pointer() != nil { + C.QDesktopWidget_DisconnectWorkAreaResized(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "workAreaResized") + } +} + +//export callbackQDesktopWidgetWorkAreaResized +func callbackQDesktopWidgetWorkAreaResized(ptrName *C.char, screen C.int) { + qt.GetSignal(C.GoString(ptrName), "workAreaResized").(func(int))(int(screen)) +} diff --git a/widgets/qdesktopwidget.h b/widgets/qdesktopwidget.h new file mode 100755 index 00000000..d7892705 --- /dev/null +++ b/widgets/qdesktopwidget.h @@ -0,0 +1,21 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QDesktopWidget_IsVirtualDesktop(QtObjectPtr ptr); +int QDesktopWidget_PrimaryScreen(QtObjectPtr ptr); +QtObjectPtr QDesktopWidget_Screen(QtObjectPtr ptr, int screen); +int QDesktopWidget_ScreenNumber2(QtObjectPtr ptr, QtObjectPtr point); +int QDesktopWidget_ScreenNumber(QtObjectPtr ptr, QtObjectPtr widget); +void QDesktopWidget_ConnectResized(QtObjectPtr ptr); +void QDesktopWidget_DisconnectResized(QtObjectPtr ptr); +int QDesktopWidget_ScreenCount(QtObjectPtr ptr); +void QDesktopWidget_ConnectScreenCountChanged(QtObjectPtr ptr); +void QDesktopWidget_DisconnectScreenCountChanged(QtObjectPtr ptr); +void QDesktopWidget_ConnectWorkAreaResized(QtObjectPtr ptr); +void QDesktopWidget_DisconnectWorkAreaResized(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qdial.cpp b/widgets/qdial.cpp new file mode 100755 index 00000000..a82636e5 --- /dev/null +++ b/widgets/qdial.cpp @@ -0,0 +1,42 @@ +#include "qdial.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDial: public QDial { +public: +}; + +int QDial_NotchSize(QtObjectPtr ptr){ + return static_cast(ptr)->notchSize(); +} + +int QDial_NotchesVisible(QtObjectPtr ptr){ + return static_cast(ptr)->notchesVisible(); +} + +void QDial_SetNotchesVisible(QtObjectPtr ptr, int visible){ + QMetaObject::invokeMethod(static_cast(ptr), "setNotchesVisible", Q_ARG(bool, visible != 0)); +} + +void QDial_SetWrapping(QtObjectPtr ptr, int on){ + QMetaObject::invokeMethod(static_cast(ptr), "setWrapping", Q_ARG(bool, on != 0)); +} + +int QDial_Wrapping(QtObjectPtr ptr){ + return static_cast(ptr)->wrapping(); +} + +QtObjectPtr QDial_NewQDial(QtObjectPtr parent){ + return new QDial(static_cast(parent)); +} + +void QDial_DestroyQDial(QtObjectPtr ptr){ + static_cast(ptr)->~QDial(); +} + diff --git a/widgets/qdial.go b/widgets/qdial.go new file mode 100755 index 00000000..69abac94 --- /dev/null +++ b/widgets/qdial.go @@ -0,0 +1,81 @@ +package widgets + +//#include "qdial.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QDial struct { + QAbstractSlider +} + +type QDialITF interface { + QAbstractSliderITF + QDialPTR() *QDial +} + +func PointerFromQDial(ptr QDialITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDialPTR().Pointer() + } + return nil +} + +func QDialFromPointer(ptr unsafe.Pointer) *QDial { + var n = new(QDial) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QDial_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QDial) QDialPTR() *QDial { + return ptr +} + +func (ptr *QDial) NotchSize() int { + if ptr.Pointer() != nil { + return int(C.QDial_NotchSize(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDial) NotchesVisible() bool { + if ptr.Pointer() != nil { + return C.QDial_NotchesVisible(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDial) SetNotchesVisible(visible bool) { + if ptr.Pointer() != nil { + C.QDial_SetNotchesVisible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(visible))) + } +} + +func (ptr *QDial) SetWrapping(on bool) { + if ptr.Pointer() != nil { + C.QDial_SetWrapping(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(on))) + } +} + +func (ptr *QDial) Wrapping() bool { + if ptr.Pointer() != nil { + return C.QDial_Wrapping(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func NewQDial(parent QWidgetITF) *QDial { + return QDialFromPointer(unsafe.Pointer(C.QDial_NewQDial(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QDial) DestroyQDial() { + if ptr.Pointer() != nil { + C.QDial_DestroyQDial(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qdial.h b/widgets/qdial.h new file mode 100755 index 00000000..57f1c3ce --- /dev/null +++ b/widgets/qdial.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QDial_NotchSize(QtObjectPtr ptr); +int QDial_NotchesVisible(QtObjectPtr ptr); +void QDial_SetNotchesVisible(QtObjectPtr ptr, int visible); +void QDial_SetWrapping(QtObjectPtr ptr, int on); +int QDial_Wrapping(QtObjectPtr ptr); +QtObjectPtr QDial_NewQDial(QtObjectPtr parent); +void QDial_DestroyQDial(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qdialog.cpp b/widgets/qdialog.cpp new file mode 100755 index 00000000..b4a8aedd --- /dev/null +++ b/widgets/qdialog.cpp @@ -0,0 +1,95 @@ +#include "qdialog.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDialog: public QDialog { +public: +void Signal_Accepted(){callbackQDialogAccepted(this->objectName().toUtf8().data());}; +void Signal_Finished(int result){callbackQDialogFinished(this->objectName().toUtf8().data(), result);}; +void Signal_Rejected(){callbackQDialogRejected(this->objectName().toUtf8().data());}; +}; + +int QDialog_IsSizeGripEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isSizeGripEnabled(); +} + +void QDialog_SetModal(QtObjectPtr ptr, int modal){ + static_cast(ptr)->setModal(modal != 0); +} + +void QDialog_SetResult(QtObjectPtr ptr, int i){ + static_cast(ptr)->setResult(i); +} + +void QDialog_SetSizeGripEnabled(QtObjectPtr ptr, int v){ + static_cast(ptr)->setSizeGripEnabled(v != 0); +} + +QtObjectPtr QDialog_NewQDialog(QtObjectPtr parent, int f){ + return new QDialog(static_cast(parent), static_cast(f)); +} + +void QDialog_Accept(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "accept"); +} + +void QDialog_ConnectAccepted(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QDialog::accepted), static_cast(ptr), static_cast(&MyQDialog::Signal_Accepted));; +} + +void QDialog_DisconnectAccepted(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QDialog::accepted), static_cast(ptr), static_cast(&MyQDialog::Signal_Accepted));; +} + +void QDialog_Done(QtObjectPtr ptr, int r){ + QMetaObject::invokeMethod(static_cast(ptr), "done", Q_ARG(int, r)); +} + +int QDialog_Exec(QtObjectPtr ptr){ + return QMetaObject::invokeMethod(static_cast(ptr), "exec"); +} + +void QDialog_ConnectFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QDialog::finished), static_cast(ptr), static_cast(&MyQDialog::Signal_Finished));; +} + +void QDialog_DisconnectFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QDialog::finished), static_cast(ptr), static_cast(&MyQDialog::Signal_Finished));; +} + +void QDialog_Open(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "open"); +} + +void QDialog_Reject(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "reject"); +} + +void QDialog_ConnectRejected(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QDialog::rejected), static_cast(ptr), static_cast(&MyQDialog::Signal_Rejected));; +} + +void QDialog_DisconnectRejected(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QDialog::rejected), static_cast(ptr), static_cast(&MyQDialog::Signal_Rejected));; +} + +int QDialog_Result(QtObjectPtr ptr){ + return static_cast(ptr)->result(); +} + +void QDialog_SetVisible(QtObjectPtr ptr, int visible){ + static_cast(ptr)->setVisible(visible != 0); +} + +void QDialog_DestroyQDialog(QtObjectPtr ptr){ + static_cast(ptr)->~QDialog(); +} + diff --git a/widgets/qdialog.go b/widgets/qdialog.go new file mode 100755 index 00000000..3f64a033 --- /dev/null +++ b/widgets/qdialog.go @@ -0,0 +1,183 @@ +package widgets + +//#include "qdialog.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QDialog struct { + QWidget +} + +type QDialogITF interface { + QWidgetITF + QDialogPTR() *QDialog +} + +func PointerFromQDialog(ptr QDialogITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDialogPTR().Pointer() + } + return nil +} + +func QDialogFromPointer(ptr unsafe.Pointer) *QDialog { + var n = new(QDialog) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QDialog_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QDialog) QDialogPTR() *QDialog { + return ptr +} + +//QDialog::DialogCode +type QDialog__DialogCode int + +var ( + QDialog__Rejected = QDialog__DialogCode(0) + QDialog__Accepted = QDialog__DialogCode(1) +) + +func (ptr *QDialog) IsSizeGripEnabled() bool { + if ptr.Pointer() != nil { + return C.QDialog_IsSizeGripEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDialog) SetModal(modal bool) { + if ptr.Pointer() != nil { + C.QDialog_SetModal(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(modal))) + } +} + +func (ptr *QDialog) SetResult(i int) { + if ptr.Pointer() != nil { + C.QDialog_SetResult(C.QtObjectPtr(ptr.Pointer()), C.int(i)) + } +} + +func (ptr *QDialog) SetSizeGripEnabled(v bool) { + if ptr.Pointer() != nil { + C.QDialog_SetSizeGripEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func NewQDialog(parent QWidgetITF, f core.Qt__WindowType) *QDialog { + return QDialogFromPointer(unsafe.Pointer(C.QDialog_NewQDialog(C.QtObjectPtr(PointerFromQWidget(parent)), C.int(f)))) +} + +func (ptr *QDialog) Accept() { + if ptr.Pointer() != nil { + C.QDialog_Accept(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDialog) ConnectAccepted(f func()) { + if ptr.Pointer() != nil { + C.QDialog_ConnectAccepted(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "accepted", f) + } +} + +func (ptr *QDialog) DisconnectAccepted() { + if ptr.Pointer() != nil { + C.QDialog_DisconnectAccepted(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "accepted") + } +} + +//export callbackQDialogAccepted +func callbackQDialogAccepted(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "accepted").(func())() +} + +func (ptr *QDialog) Done(r int) { + if ptr.Pointer() != nil { + C.QDialog_Done(C.QtObjectPtr(ptr.Pointer()), C.int(r)) + } +} + +func (ptr *QDialog) Exec() int { + if ptr.Pointer() != nil { + return int(C.QDialog_Exec(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDialog) ConnectFinished(f func(result int)) { + if ptr.Pointer() != nil { + C.QDialog_ConnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "finished", f) + } +} + +func (ptr *QDialog) DisconnectFinished() { + if ptr.Pointer() != nil { + C.QDialog_DisconnectFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "finished") + } +} + +//export callbackQDialogFinished +func callbackQDialogFinished(ptrName *C.char, result C.int) { + qt.GetSignal(C.GoString(ptrName), "finished").(func(int))(int(result)) +} + +func (ptr *QDialog) Open() { + if ptr.Pointer() != nil { + C.QDialog_Open(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDialog) Reject() { + if ptr.Pointer() != nil { + C.QDialog_Reject(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDialog) ConnectRejected(f func()) { + if ptr.Pointer() != nil { + C.QDialog_ConnectRejected(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "rejected", f) + } +} + +func (ptr *QDialog) DisconnectRejected() { + if ptr.Pointer() != nil { + C.QDialog_DisconnectRejected(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "rejected") + } +} + +//export callbackQDialogRejected +func callbackQDialogRejected(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "rejected").(func())() +} + +func (ptr *QDialog) Result() int { + if ptr.Pointer() != nil { + return int(C.QDialog_Result(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDialog) SetVisible(visible bool) { + if ptr.Pointer() != nil { + C.QDialog_SetVisible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(visible))) + } +} + +func (ptr *QDialog) DestroyQDialog() { + if ptr.Pointer() != nil { + C.QDialog_DestroyQDialog(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qdialog.h b/widgets/qdialog.h new file mode 100755 index 00000000..5aca9aad --- /dev/null +++ b/widgets/qdialog.h @@ -0,0 +1,28 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QDialog_IsSizeGripEnabled(QtObjectPtr ptr); +void QDialog_SetModal(QtObjectPtr ptr, int modal); +void QDialog_SetResult(QtObjectPtr ptr, int i); +void QDialog_SetSizeGripEnabled(QtObjectPtr ptr, int v); +QtObjectPtr QDialog_NewQDialog(QtObjectPtr parent, int f); +void QDialog_Accept(QtObjectPtr ptr); +void QDialog_ConnectAccepted(QtObjectPtr ptr); +void QDialog_DisconnectAccepted(QtObjectPtr ptr); +void QDialog_Done(QtObjectPtr ptr, int r); +int QDialog_Exec(QtObjectPtr ptr); +void QDialog_ConnectFinished(QtObjectPtr ptr); +void QDialog_DisconnectFinished(QtObjectPtr ptr); +void QDialog_Open(QtObjectPtr ptr); +void QDialog_Reject(QtObjectPtr ptr); +void QDialog_ConnectRejected(QtObjectPtr ptr); +void QDialog_DisconnectRejected(QtObjectPtr ptr); +int QDialog_Result(QtObjectPtr ptr); +void QDialog_SetVisible(QtObjectPtr ptr, int visible); +void QDialog_DestroyQDialog(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qdialogbuttonbox.cpp b/widgets/qdialogbuttonbox.cpp new file mode 100755 index 00000000..d2028c42 --- /dev/null +++ b/widgets/qdialogbuttonbox.cpp @@ -0,0 +1,129 @@ +#include "qdialogbuttonbox.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDialogButtonBox: public QDialogButtonBox { +public: +void Signal_Accepted(){callbackQDialogButtonBoxAccepted(this->objectName().toUtf8().data());}; +void Signal_Clicked(QAbstractButton * button){callbackQDialogButtonBoxClicked(this->objectName().toUtf8().data(), button);}; +void Signal_HelpRequested(){callbackQDialogButtonBoxHelpRequested(this->objectName().toUtf8().data());}; +void Signal_Rejected(){callbackQDialogButtonBoxRejected(this->objectName().toUtf8().data());}; +}; + +int QDialogButtonBox_CenterButtons(QtObjectPtr ptr){ + return static_cast(ptr)->centerButtons(); +} + +int QDialogButtonBox_Orientation(QtObjectPtr ptr){ + return static_cast(ptr)->orientation(); +} + +void QDialogButtonBox_SetCenterButtons(QtObjectPtr ptr, int center){ + static_cast(ptr)->setCenterButtons(center != 0); +} + +void QDialogButtonBox_SetOrientation(QtObjectPtr ptr, int orientation){ + static_cast(ptr)->setOrientation(static_cast(orientation)); +} + +void QDialogButtonBox_SetStandardButtons(QtObjectPtr ptr, int buttons){ + static_cast(ptr)->setStandardButtons(static_cast(buttons)); +} + +int QDialogButtonBox_StandardButtons(QtObjectPtr ptr){ + return static_cast(ptr)->standardButtons(); +} + +QtObjectPtr QDialogButtonBox_NewQDialogButtonBox(QtObjectPtr parent){ + return new QDialogButtonBox(static_cast(parent)); +} + +QtObjectPtr QDialogButtonBox_NewQDialogButtonBox2(int orientation, QtObjectPtr parent){ + return new QDialogButtonBox(static_cast(orientation), static_cast(parent)); +} + +QtObjectPtr QDialogButtonBox_NewQDialogButtonBox3(int buttons, QtObjectPtr parent){ + return new QDialogButtonBox(static_cast(buttons), static_cast(parent)); +} + +QtObjectPtr QDialogButtonBox_NewQDialogButtonBox4(int buttons, int orientation, QtObjectPtr parent){ + return new QDialogButtonBox(static_cast(buttons), static_cast(orientation), static_cast(parent)); +} + +void QDialogButtonBox_ConnectAccepted(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QDialogButtonBox::accepted), static_cast(ptr), static_cast(&MyQDialogButtonBox::Signal_Accepted));; +} + +void QDialogButtonBox_DisconnectAccepted(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QDialogButtonBox::accepted), static_cast(ptr), static_cast(&MyQDialogButtonBox::Signal_Accepted));; +} + +QtObjectPtr QDialogButtonBox_AddButton3(QtObjectPtr ptr, int button){ + return static_cast(ptr)->addButton(static_cast(button)); +} + +QtObjectPtr QDialogButtonBox_AddButton2(QtObjectPtr ptr, char* text, int role){ + return static_cast(ptr)->addButton(QString(text), static_cast(role)); +} + +void QDialogButtonBox_AddButton(QtObjectPtr ptr, QtObjectPtr button, int role){ + static_cast(ptr)->addButton(static_cast(button), static_cast(role)); +} + +QtObjectPtr QDialogButtonBox_Button(QtObjectPtr ptr, int which){ + return static_cast(ptr)->button(static_cast(which)); +} + +int QDialogButtonBox_ButtonRole(QtObjectPtr ptr, QtObjectPtr button){ + return static_cast(ptr)->buttonRole(static_cast(button)); +} + +void QDialogButtonBox_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +void QDialogButtonBox_ConnectClicked(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QDialogButtonBox::clicked), static_cast(ptr), static_cast(&MyQDialogButtonBox::Signal_Clicked));; +} + +void QDialogButtonBox_DisconnectClicked(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QDialogButtonBox::clicked), static_cast(ptr), static_cast(&MyQDialogButtonBox::Signal_Clicked));; +} + +void QDialogButtonBox_ConnectHelpRequested(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QDialogButtonBox::helpRequested), static_cast(ptr), static_cast(&MyQDialogButtonBox::Signal_HelpRequested));; +} + +void QDialogButtonBox_DisconnectHelpRequested(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QDialogButtonBox::helpRequested), static_cast(ptr), static_cast(&MyQDialogButtonBox::Signal_HelpRequested));; +} + +void QDialogButtonBox_ConnectRejected(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QDialogButtonBox::rejected), static_cast(ptr), static_cast(&MyQDialogButtonBox::Signal_Rejected));; +} + +void QDialogButtonBox_DisconnectRejected(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QDialogButtonBox::rejected), static_cast(ptr), static_cast(&MyQDialogButtonBox::Signal_Rejected));; +} + +void QDialogButtonBox_RemoveButton(QtObjectPtr ptr, QtObjectPtr button){ + static_cast(ptr)->removeButton(static_cast(button)); +} + +int QDialogButtonBox_StandardButton(QtObjectPtr ptr, QtObjectPtr button){ + return static_cast(ptr)->standardButton(static_cast(button)); +} + +void QDialogButtonBox_DestroyQDialogButtonBox(QtObjectPtr ptr){ + static_cast(ptr)->~QDialogButtonBox(); +} + diff --git a/widgets/qdialogbuttonbox.go b/widgets/qdialogbuttonbox.go new file mode 100755 index 00000000..15bf9106 --- /dev/null +++ b/widgets/qdialogbuttonbox.go @@ -0,0 +1,283 @@ +package widgets + +//#include "qdialogbuttonbox.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QDialogButtonBox struct { + QWidget +} + +type QDialogButtonBoxITF interface { + QWidgetITF + QDialogButtonBoxPTR() *QDialogButtonBox +} + +func PointerFromQDialogButtonBox(ptr QDialogButtonBoxITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDialogButtonBoxPTR().Pointer() + } + return nil +} + +func QDialogButtonBoxFromPointer(ptr unsafe.Pointer) *QDialogButtonBox { + var n = new(QDialogButtonBox) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QDialogButtonBox_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QDialogButtonBox) QDialogButtonBoxPTR() *QDialogButtonBox { + return ptr +} + +//QDialogButtonBox::ButtonLayout +type QDialogButtonBox__ButtonLayout int + +var ( + QDialogButtonBox__WinLayout = QDialogButtonBox__ButtonLayout(0) + QDialogButtonBox__MacLayout = QDialogButtonBox__ButtonLayout(1) + QDialogButtonBox__KdeLayout = QDialogButtonBox__ButtonLayout(2) + QDialogButtonBox__GnomeLayout = QDialogButtonBox__ButtonLayout(3) +) + +//QDialogButtonBox::ButtonRole +type QDialogButtonBox__ButtonRole int + +var ( + QDialogButtonBox__InvalidRole = QDialogButtonBox__ButtonRole(-1) + QDialogButtonBox__AcceptRole = QDialogButtonBox__ButtonRole(0) + QDialogButtonBox__RejectRole = QDialogButtonBox__ButtonRole(1) + QDialogButtonBox__DestructiveRole = QDialogButtonBox__ButtonRole(2) + QDialogButtonBox__ActionRole = QDialogButtonBox__ButtonRole(3) + QDialogButtonBox__HelpRole = QDialogButtonBox__ButtonRole(4) + QDialogButtonBox__YesRole = QDialogButtonBox__ButtonRole(5) + QDialogButtonBox__NoRole = QDialogButtonBox__ButtonRole(6) + QDialogButtonBox__ResetRole = QDialogButtonBox__ButtonRole(7) + QDialogButtonBox__ApplyRole = QDialogButtonBox__ButtonRole(8) + QDialogButtonBox__NRoles = QDialogButtonBox__ButtonRole(9) +) + +//QDialogButtonBox::StandardButton +type QDialogButtonBox__StandardButton int + +var ( + QDialogButtonBox__NoButton = QDialogButtonBox__StandardButton(0x00000000) + QDialogButtonBox__Ok = QDialogButtonBox__StandardButton(0x00000400) + QDialogButtonBox__Save = QDialogButtonBox__StandardButton(0x00000800) + QDialogButtonBox__SaveAll = QDialogButtonBox__StandardButton(0x00001000) + QDialogButtonBox__Open = QDialogButtonBox__StandardButton(0x00002000) + QDialogButtonBox__Yes = QDialogButtonBox__StandardButton(0x00004000) + QDialogButtonBox__YesToAll = QDialogButtonBox__StandardButton(0x00008000) + QDialogButtonBox__No = QDialogButtonBox__StandardButton(0x00010000) + QDialogButtonBox__NoToAll = QDialogButtonBox__StandardButton(0x00020000) + QDialogButtonBox__Abort = QDialogButtonBox__StandardButton(0x00040000) + QDialogButtonBox__Retry = QDialogButtonBox__StandardButton(0x00080000) + QDialogButtonBox__Ignore = QDialogButtonBox__StandardButton(0x00100000) + QDialogButtonBox__Close = QDialogButtonBox__StandardButton(0x00200000) + QDialogButtonBox__Cancel = QDialogButtonBox__StandardButton(0x00400000) + QDialogButtonBox__Discard = QDialogButtonBox__StandardButton(0x00800000) + QDialogButtonBox__Help = QDialogButtonBox__StandardButton(0x01000000) + QDialogButtonBox__Apply = QDialogButtonBox__StandardButton(0x02000000) + QDialogButtonBox__Reset = QDialogButtonBox__StandardButton(0x04000000) + QDialogButtonBox__RestoreDefaults = QDialogButtonBox__StandardButton(0x08000000) + QDialogButtonBox__FirstButton = QDialogButtonBox__StandardButton(QDialogButtonBox__Ok) + QDialogButtonBox__LastButton = QDialogButtonBox__StandardButton(QDialogButtonBox__RestoreDefaults) +) + +func (ptr *QDialogButtonBox) CenterButtons() bool { + if ptr.Pointer() != nil { + return C.QDialogButtonBox_CenterButtons(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDialogButtonBox) Orientation() core.Qt__Orientation { + if ptr.Pointer() != nil { + return core.Qt__Orientation(C.QDialogButtonBox_Orientation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDialogButtonBox) SetCenterButtons(center bool) { + if ptr.Pointer() != nil { + C.QDialogButtonBox_SetCenterButtons(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(center))) + } +} + +func (ptr *QDialogButtonBox) SetOrientation(orientation core.Qt__Orientation) { + if ptr.Pointer() != nil { + C.QDialogButtonBox_SetOrientation(C.QtObjectPtr(ptr.Pointer()), C.int(orientation)) + } +} + +func (ptr *QDialogButtonBox) SetStandardButtons(buttons QDialogButtonBox__StandardButton) { + if ptr.Pointer() != nil { + C.QDialogButtonBox_SetStandardButtons(C.QtObjectPtr(ptr.Pointer()), C.int(buttons)) + } +} + +func (ptr *QDialogButtonBox) StandardButtons() QDialogButtonBox__StandardButton { + if ptr.Pointer() != nil { + return QDialogButtonBox__StandardButton(C.QDialogButtonBox_StandardButtons(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQDialogButtonBox(parent QWidgetITF) *QDialogButtonBox { + return QDialogButtonBoxFromPointer(unsafe.Pointer(C.QDialogButtonBox_NewQDialogButtonBox(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQDialogButtonBox2(orientation core.Qt__Orientation, parent QWidgetITF) *QDialogButtonBox { + return QDialogButtonBoxFromPointer(unsafe.Pointer(C.QDialogButtonBox_NewQDialogButtonBox2(C.int(orientation), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQDialogButtonBox3(buttons QDialogButtonBox__StandardButton, parent QWidgetITF) *QDialogButtonBox { + return QDialogButtonBoxFromPointer(unsafe.Pointer(C.QDialogButtonBox_NewQDialogButtonBox3(C.int(buttons), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQDialogButtonBox4(buttons QDialogButtonBox__StandardButton, orientation core.Qt__Orientation, parent QWidgetITF) *QDialogButtonBox { + return QDialogButtonBoxFromPointer(unsafe.Pointer(C.QDialogButtonBox_NewQDialogButtonBox4(C.int(buttons), C.int(orientation), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QDialogButtonBox) ConnectAccepted(f func()) { + if ptr.Pointer() != nil { + C.QDialogButtonBox_ConnectAccepted(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "accepted", f) + } +} + +func (ptr *QDialogButtonBox) DisconnectAccepted() { + if ptr.Pointer() != nil { + C.QDialogButtonBox_DisconnectAccepted(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "accepted") + } +} + +//export callbackQDialogButtonBoxAccepted +func callbackQDialogButtonBoxAccepted(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "accepted").(func())() +} + +func (ptr *QDialogButtonBox) AddButton3(button QDialogButtonBox__StandardButton) *QPushButton { + if ptr.Pointer() != nil { + return QPushButtonFromPointer(unsafe.Pointer(C.QDialogButtonBox_AddButton3(C.QtObjectPtr(ptr.Pointer()), C.int(button)))) + } + return nil +} + +func (ptr *QDialogButtonBox) AddButton2(text string, role QDialogButtonBox__ButtonRole) *QPushButton { + if ptr.Pointer() != nil { + return QPushButtonFromPointer(unsafe.Pointer(C.QDialogButtonBox_AddButton2(C.QtObjectPtr(ptr.Pointer()), C.CString(text), C.int(role)))) + } + return nil +} + +func (ptr *QDialogButtonBox) AddButton(button QAbstractButtonITF, role QDialogButtonBox__ButtonRole) { + if ptr.Pointer() != nil { + C.QDialogButtonBox_AddButton(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractButton(button)), C.int(role)) + } +} + +func (ptr *QDialogButtonBox) Button(which QDialogButtonBox__StandardButton) *QPushButton { + if ptr.Pointer() != nil { + return QPushButtonFromPointer(unsafe.Pointer(C.QDialogButtonBox_Button(C.QtObjectPtr(ptr.Pointer()), C.int(which)))) + } + return nil +} + +func (ptr *QDialogButtonBox) ButtonRole(button QAbstractButtonITF) QDialogButtonBox__ButtonRole { + if ptr.Pointer() != nil { + return QDialogButtonBox__ButtonRole(C.QDialogButtonBox_ButtonRole(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractButton(button)))) + } + return 0 +} + +func (ptr *QDialogButtonBox) Clear() { + if ptr.Pointer() != nil { + C.QDialogButtonBox_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDialogButtonBox) ConnectClicked(f func(button QAbstractButtonITF)) { + if ptr.Pointer() != nil { + C.QDialogButtonBox_ConnectClicked(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "clicked", f) + } +} + +func (ptr *QDialogButtonBox) DisconnectClicked() { + if ptr.Pointer() != nil { + C.QDialogButtonBox_DisconnectClicked(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "clicked") + } +} + +//export callbackQDialogButtonBoxClicked +func callbackQDialogButtonBoxClicked(ptrName *C.char, button unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "clicked").(func(*QAbstractButton))(QAbstractButtonFromPointer(button)) +} + +func (ptr *QDialogButtonBox) ConnectHelpRequested(f func()) { + if ptr.Pointer() != nil { + C.QDialogButtonBox_ConnectHelpRequested(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "helpRequested", f) + } +} + +func (ptr *QDialogButtonBox) DisconnectHelpRequested() { + if ptr.Pointer() != nil { + C.QDialogButtonBox_DisconnectHelpRequested(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "helpRequested") + } +} + +//export callbackQDialogButtonBoxHelpRequested +func callbackQDialogButtonBoxHelpRequested(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "helpRequested").(func())() +} + +func (ptr *QDialogButtonBox) ConnectRejected(f func()) { + if ptr.Pointer() != nil { + C.QDialogButtonBox_ConnectRejected(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "rejected", f) + } +} + +func (ptr *QDialogButtonBox) DisconnectRejected() { + if ptr.Pointer() != nil { + C.QDialogButtonBox_DisconnectRejected(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "rejected") + } +} + +//export callbackQDialogButtonBoxRejected +func callbackQDialogButtonBoxRejected(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "rejected").(func())() +} + +func (ptr *QDialogButtonBox) RemoveButton(button QAbstractButtonITF) { + if ptr.Pointer() != nil { + C.QDialogButtonBox_RemoveButton(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractButton(button))) + } +} + +func (ptr *QDialogButtonBox) StandardButton(button QAbstractButtonITF) QDialogButtonBox__StandardButton { + if ptr.Pointer() != nil { + return QDialogButtonBox__StandardButton(C.QDialogButtonBox_StandardButton(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractButton(button)))) + } + return 0 +} + +func (ptr *QDialogButtonBox) DestroyQDialogButtonBox() { + if ptr.Pointer() != nil { + C.QDialogButtonBox_DestroyQDialogButtonBox(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qdialogbuttonbox.h b/widgets/qdialogbuttonbox.h new file mode 100755 index 00000000..200854ed --- /dev/null +++ b/widgets/qdialogbuttonbox.h @@ -0,0 +1,36 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QDialogButtonBox_CenterButtons(QtObjectPtr ptr); +int QDialogButtonBox_Orientation(QtObjectPtr ptr); +void QDialogButtonBox_SetCenterButtons(QtObjectPtr ptr, int center); +void QDialogButtonBox_SetOrientation(QtObjectPtr ptr, int orientation); +void QDialogButtonBox_SetStandardButtons(QtObjectPtr ptr, int buttons); +int QDialogButtonBox_StandardButtons(QtObjectPtr ptr); +QtObjectPtr QDialogButtonBox_NewQDialogButtonBox(QtObjectPtr parent); +QtObjectPtr QDialogButtonBox_NewQDialogButtonBox2(int orientation, QtObjectPtr parent); +QtObjectPtr QDialogButtonBox_NewQDialogButtonBox3(int buttons, QtObjectPtr parent); +QtObjectPtr QDialogButtonBox_NewQDialogButtonBox4(int buttons, int orientation, QtObjectPtr parent); +void QDialogButtonBox_ConnectAccepted(QtObjectPtr ptr); +void QDialogButtonBox_DisconnectAccepted(QtObjectPtr ptr); +QtObjectPtr QDialogButtonBox_AddButton3(QtObjectPtr ptr, int button); +QtObjectPtr QDialogButtonBox_AddButton2(QtObjectPtr ptr, char* text, int role); +void QDialogButtonBox_AddButton(QtObjectPtr ptr, QtObjectPtr button, int role); +QtObjectPtr QDialogButtonBox_Button(QtObjectPtr ptr, int which); +int QDialogButtonBox_ButtonRole(QtObjectPtr ptr, QtObjectPtr button); +void QDialogButtonBox_Clear(QtObjectPtr ptr); +void QDialogButtonBox_ConnectClicked(QtObjectPtr ptr); +void QDialogButtonBox_DisconnectClicked(QtObjectPtr ptr); +void QDialogButtonBox_ConnectHelpRequested(QtObjectPtr ptr); +void QDialogButtonBox_DisconnectHelpRequested(QtObjectPtr ptr); +void QDialogButtonBox_ConnectRejected(QtObjectPtr ptr); +void QDialogButtonBox_DisconnectRejected(QtObjectPtr ptr); +void QDialogButtonBox_RemoveButton(QtObjectPtr ptr, QtObjectPtr button); +int QDialogButtonBox_StandardButton(QtObjectPtr ptr, QtObjectPtr button); +void QDialogButtonBox_DestroyQDialogButtonBox(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qdockwidget.cpp b/widgets/qdockwidget.cpp new file mode 100755 index 00000000..62025e95 --- /dev/null +++ b/widgets/qdockwidget.cpp @@ -0,0 +1,119 @@ +#include "qdockwidget.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDockWidget: public QDockWidget { +public: +void Signal_AllowedAreasChanged(Qt::DockWidgetAreas allowedAreas){callbackQDockWidgetAllowedAreasChanged(this->objectName().toUtf8().data(), allowedAreas);}; +void Signal_DockLocationChanged(Qt::DockWidgetArea area){callbackQDockWidgetDockLocationChanged(this->objectName().toUtf8().data(), area);}; +void Signal_FeaturesChanged(QDockWidget::DockWidgetFeatures features){callbackQDockWidgetFeaturesChanged(this->objectName().toUtf8().data(), features);}; +void Signal_TopLevelChanged(bool topLevel){callbackQDockWidgetTopLevelChanged(this->objectName().toUtf8().data(), topLevel);}; +void Signal_VisibilityChanged(bool visible){callbackQDockWidgetVisibilityChanged(this->objectName().toUtf8().data(), visible);}; +}; + +int QDockWidget_AllowedAreas(QtObjectPtr ptr){ + return static_cast(ptr)->allowedAreas(); +} + +int QDockWidget_Features(QtObjectPtr ptr){ + return static_cast(ptr)->features(); +} + +void QDockWidget_SetAllowedAreas(QtObjectPtr ptr, int areas){ + static_cast(ptr)->setAllowedAreas(static_cast(areas)); +} + +void QDockWidget_SetFeatures(QtObjectPtr ptr, int features){ + static_cast(ptr)->setFeatures(static_cast(features)); +} + +void QDockWidget_SetFloating(QtObjectPtr ptr, int floating){ + static_cast(ptr)->setFloating(floating != 0); +} + +QtObjectPtr QDockWidget_NewQDockWidget2(QtObjectPtr parent, int flags){ + return new QDockWidget(static_cast(parent), static_cast(flags)); +} + +QtObjectPtr QDockWidget_NewQDockWidget(char* title, QtObjectPtr parent, int flags){ + return new QDockWidget(QString(title), static_cast(parent), static_cast(flags)); +} + +void QDockWidget_ConnectAllowedAreasChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QDockWidget::allowedAreasChanged), static_cast(ptr), static_cast(&MyQDockWidget::Signal_AllowedAreasChanged));; +} + +void QDockWidget_DisconnectAllowedAreasChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QDockWidget::allowedAreasChanged), static_cast(ptr), static_cast(&MyQDockWidget::Signal_AllowedAreasChanged));; +} + +void QDockWidget_ConnectDockLocationChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QDockWidget::dockLocationChanged), static_cast(ptr), static_cast(&MyQDockWidget::Signal_DockLocationChanged));; +} + +void QDockWidget_DisconnectDockLocationChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QDockWidget::dockLocationChanged), static_cast(ptr), static_cast(&MyQDockWidget::Signal_DockLocationChanged));; +} + +void QDockWidget_ConnectFeaturesChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QDockWidget::featuresChanged), static_cast(ptr), static_cast(&MyQDockWidget::Signal_FeaturesChanged));; +} + +void QDockWidget_DisconnectFeaturesChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QDockWidget::featuresChanged), static_cast(ptr), static_cast(&MyQDockWidget::Signal_FeaturesChanged));; +} + +int QDockWidget_IsAreaAllowed(QtObjectPtr ptr, int area){ + return static_cast(ptr)->isAreaAllowed(static_cast(area)); +} + +int QDockWidget_IsFloating(QtObjectPtr ptr){ + return static_cast(ptr)->isFloating(); +} + +void QDockWidget_SetTitleBarWidget(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->setTitleBarWidget(static_cast(widget)); +} + +void QDockWidget_SetWidget(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->setWidget(static_cast(widget)); +} + +QtObjectPtr QDockWidget_TitleBarWidget(QtObjectPtr ptr){ + return static_cast(ptr)->titleBarWidget(); +} + +QtObjectPtr QDockWidget_ToggleViewAction(QtObjectPtr ptr){ + return static_cast(ptr)->toggleViewAction(); +} + +void QDockWidget_ConnectTopLevelChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QDockWidget::topLevelChanged), static_cast(ptr), static_cast(&MyQDockWidget::Signal_TopLevelChanged));; +} + +void QDockWidget_DisconnectTopLevelChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QDockWidget::topLevelChanged), static_cast(ptr), static_cast(&MyQDockWidget::Signal_TopLevelChanged));; +} + +void QDockWidget_ConnectVisibilityChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QDockWidget::visibilityChanged), static_cast(ptr), static_cast(&MyQDockWidget::Signal_VisibilityChanged));; +} + +void QDockWidget_DisconnectVisibilityChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QDockWidget::visibilityChanged), static_cast(ptr), static_cast(&MyQDockWidget::Signal_VisibilityChanged));; +} + +QtObjectPtr QDockWidget_Widget(QtObjectPtr ptr){ + return static_cast(ptr)->widget(); +} + +void QDockWidget_DestroyQDockWidget(QtObjectPtr ptr){ + static_cast(ptr)->~QDockWidget(); +} + diff --git a/widgets/qdockwidget.go b/widgets/qdockwidget.go new file mode 100755 index 00000000..a53692e4 --- /dev/null +++ b/widgets/qdockwidget.go @@ -0,0 +1,241 @@ +package widgets + +//#include "qdockwidget.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QDockWidget struct { + QWidget +} + +type QDockWidgetITF interface { + QWidgetITF + QDockWidgetPTR() *QDockWidget +} + +func PointerFromQDockWidget(ptr QDockWidgetITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDockWidgetPTR().Pointer() + } + return nil +} + +func QDockWidgetFromPointer(ptr unsafe.Pointer) *QDockWidget { + var n = new(QDockWidget) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QDockWidget_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QDockWidget) QDockWidgetPTR() *QDockWidget { + return ptr +} + +//QDockWidget::DockWidgetFeature +type QDockWidget__DockWidgetFeature int + +var ( + QDockWidget__DockWidgetClosable = QDockWidget__DockWidgetFeature(0x01) + QDockWidget__DockWidgetMovable = QDockWidget__DockWidgetFeature(0x02) + QDockWidget__DockWidgetFloatable = QDockWidget__DockWidgetFeature(0x04) + QDockWidget__DockWidgetVerticalTitleBar = QDockWidget__DockWidgetFeature(0x08) + QDockWidget__DockWidgetFeatureMask = QDockWidget__DockWidgetFeature(0x0f) + QDockWidget__AllDockWidgetFeatures = QDockWidget__DockWidgetFeature(QDockWidget__DockWidgetClosable | QDockWidget__DockWidgetMovable | QDockWidget__DockWidgetFloatable) + QDockWidget__NoDockWidgetFeatures = QDockWidget__DockWidgetFeature(0x00) + QDockWidget__Reserved = QDockWidget__DockWidgetFeature(0xff) +) + +func (ptr *QDockWidget) AllowedAreas() core.Qt__DockWidgetArea { + if ptr.Pointer() != nil { + return core.Qt__DockWidgetArea(C.QDockWidget_AllowedAreas(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDockWidget) Features() QDockWidget__DockWidgetFeature { + if ptr.Pointer() != nil { + return QDockWidget__DockWidgetFeature(C.QDockWidget_Features(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDockWidget) SetAllowedAreas(areas core.Qt__DockWidgetArea) { + if ptr.Pointer() != nil { + C.QDockWidget_SetAllowedAreas(C.QtObjectPtr(ptr.Pointer()), C.int(areas)) + } +} + +func (ptr *QDockWidget) SetFeatures(features QDockWidget__DockWidgetFeature) { + if ptr.Pointer() != nil { + C.QDockWidget_SetFeatures(C.QtObjectPtr(ptr.Pointer()), C.int(features)) + } +} + +func (ptr *QDockWidget) SetFloating(floating bool) { + if ptr.Pointer() != nil { + C.QDockWidget_SetFloating(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(floating))) + } +} + +func NewQDockWidget2(parent QWidgetITF, flags core.Qt__WindowType) *QDockWidget { + return QDockWidgetFromPointer(unsafe.Pointer(C.QDockWidget_NewQDockWidget2(C.QtObjectPtr(PointerFromQWidget(parent)), C.int(flags)))) +} + +func NewQDockWidget(title string, parent QWidgetITF, flags core.Qt__WindowType) *QDockWidget { + return QDockWidgetFromPointer(unsafe.Pointer(C.QDockWidget_NewQDockWidget(C.CString(title), C.QtObjectPtr(PointerFromQWidget(parent)), C.int(flags)))) +} + +func (ptr *QDockWidget) ConnectAllowedAreasChanged(f func(allowedAreas core.Qt__DockWidgetArea)) { + if ptr.Pointer() != nil { + C.QDockWidget_ConnectAllowedAreasChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "allowedAreasChanged", f) + } +} + +func (ptr *QDockWidget) DisconnectAllowedAreasChanged() { + if ptr.Pointer() != nil { + C.QDockWidget_DisconnectAllowedAreasChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "allowedAreasChanged") + } +} + +//export callbackQDockWidgetAllowedAreasChanged +func callbackQDockWidgetAllowedAreasChanged(ptrName *C.char, allowedAreas C.int) { + qt.GetSignal(C.GoString(ptrName), "allowedAreasChanged").(func(core.Qt__DockWidgetArea))(core.Qt__DockWidgetArea(allowedAreas)) +} + +func (ptr *QDockWidget) ConnectDockLocationChanged(f func(area core.Qt__DockWidgetArea)) { + if ptr.Pointer() != nil { + C.QDockWidget_ConnectDockLocationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "dockLocationChanged", f) + } +} + +func (ptr *QDockWidget) DisconnectDockLocationChanged() { + if ptr.Pointer() != nil { + C.QDockWidget_DisconnectDockLocationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "dockLocationChanged") + } +} + +//export callbackQDockWidgetDockLocationChanged +func callbackQDockWidgetDockLocationChanged(ptrName *C.char, area C.int) { + qt.GetSignal(C.GoString(ptrName), "dockLocationChanged").(func(core.Qt__DockWidgetArea))(core.Qt__DockWidgetArea(area)) +} + +func (ptr *QDockWidget) ConnectFeaturesChanged(f func(features QDockWidget__DockWidgetFeature)) { + if ptr.Pointer() != nil { + C.QDockWidget_ConnectFeaturesChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "featuresChanged", f) + } +} + +func (ptr *QDockWidget) DisconnectFeaturesChanged() { + if ptr.Pointer() != nil { + C.QDockWidget_DisconnectFeaturesChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "featuresChanged") + } +} + +//export callbackQDockWidgetFeaturesChanged +func callbackQDockWidgetFeaturesChanged(ptrName *C.char, features C.int) { + qt.GetSignal(C.GoString(ptrName), "featuresChanged").(func(QDockWidget__DockWidgetFeature))(QDockWidget__DockWidgetFeature(features)) +} + +func (ptr *QDockWidget) IsAreaAllowed(area core.Qt__DockWidgetArea) bool { + if ptr.Pointer() != nil { + return C.QDockWidget_IsAreaAllowed(C.QtObjectPtr(ptr.Pointer()), C.int(area)) != 0 + } + return false +} + +func (ptr *QDockWidget) IsFloating() bool { + if ptr.Pointer() != nil { + return C.QDockWidget_IsFloating(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDockWidget) SetTitleBarWidget(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QDockWidget_SetTitleBarWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QDockWidget) SetWidget(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QDockWidget_SetWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QDockWidget) TitleBarWidget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QDockWidget_TitleBarWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QDockWidget) ToggleViewAction() *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QDockWidget_ToggleViewAction(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QDockWidget) ConnectTopLevelChanged(f func(topLevel bool)) { + if ptr.Pointer() != nil { + C.QDockWidget_ConnectTopLevelChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "topLevelChanged", f) + } +} + +func (ptr *QDockWidget) DisconnectTopLevelChanged() { + if ptr.Pointer() != nil { + C.QDockWidget_DisconnectTopLevelChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "topLevelChanged") + } +} + +//export callbackQDockWidgetTopLevelChanged +func callbackQDockWidgetTopLevelChanged(ptrName *C.char, topLevel C.int) { + qt.GetSignal(C.GoString(ptrName), "topLevelChanged").(func(bool))(int(topLevel) != 0) +} + +func (ptr *QDockWidget) ConnectVisibilityChanged(f func(visible bool)) { + if ptr.Pointer() != nil { + C.QDockWidget_ConnectVisibilityChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "visibilityChanged", f) + } +} + +func (ptr *QDockWidget) DisconnectVisibilityChanged() { + if ptr.Pointer() != nil { + C.QDockWidget_DisconnectVisibilityChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "visibilityChanged") + } +} + +//export callbackQDockWidgetVisibilityChanged +func callbackQDockWidgetVisibilityChanged(ptrName *C.char, visible C.int) { + qt.GetSignal(C.GoString(ptrName), "visibilityChanged").(func(bool))(int(visible) != 0) +} + +func (ptr *QDockWidget) Widget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QDockWidget_Widget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QDockWidget) DestroyQDockWidget() { + if ptr.Pointer() != nil { + C.QDockWidget_DestroyQDockWidget(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qdockwidget.h b/widgets/qdockwidget.h new file mode 100755 index 00000000..2ade7941 --- /dev/null +++ b/widgets/qdockwidget.h @@ -0,0 +1,34 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QDockWidget_AllowedAreas(QtObjectPtr ptr); +int QDockWidget_Features(QtObjectPtr ptr); +void QDockWidget_SetAllowedAreas(QtObjectPtr ptr, int areas); +void QDockWidget_SetFeatures(QtObjectPtr ptr, int features); +void QDockWidget_SetFloating(QtObjectPtr ptr, int floating); +QtObjectPtr QDockWidget_NewQDockWidget2(QtObjectPtr parent, int flags); +QtObjectPtr QDockWidget_NewQDockWidget(char* title, QtObjectPtr parent, int flags); +void QDockWidget_ConnectAllowedAreasChanged(QtObjectPtr ptr); +void QDockWidget_DisconnectAllowedAreasChanged(QtObjectPtr ptr); +void QDockWidget_ConnectDockLocationChanged(QtObjectPtr ptr); +void QDockWidget_DisconnectDockLocationChanged(QtObjectPtr ptr); +void QDockWidget_ConnectFeaturesChanged(QtObjectPtr ptr); +void QDockWidget_DisconnectFeaturesChanged(QtObjectPtr ptr); +int QDockWidget_IsAreaAllowed(QtObjectPtr ptr, int area); +int QDockWidget_IsFloating(QtObjectPtr ptr); +void QDockWidget_SetTitleBarWidget(QtObjectPtr ptr, QtObjectPtr widget); +void QDockWidget_SetWidget(QtObjectPtr ptr, QtObjectPtr widget); +QtObjectPtr QDockWidget_TitleBarWidget(QtObjectPtr ptr); +QtObjectPtr QDockWidget_ToggleViewAction(QtObjectPtr ptr); +void QDockWidget_ConnectTopLevelChanged(QtObjectPtr ptr); +void QDockWidget_DisconnectTopLevelChanged(QtObjectPtr ptr); +void QDockWidget_ConnectVisibilityChanged(QtObjectPtr ptr); +void QDockWidget_DisconnectVisibilityChanged(QtObjectPtr ptr); +QtObjectPtr QDockWidget_Widget(QtObjectPtr ptr); +void QDockWidget_DestroyQDockWidget(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qdoublespinbox.cpp b/widgets/qdoublespinbox.cpp new file mode 100755 index 00000000..89a636e9 --- /dev/null +++ b/widgets/qdoublespinbox.cpp @@ -0,0 +1,49 @@ +#include "qdoublespinbox.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDoubleSpinBox: public QDoubleSpinBox { +public: +}; + +char* QDoubleSpinBox_CleanText(QtObjectPtr ptr){ + return static_cast(ptr)->cleanText().toUtf8().data(); +} + +int QDoubleSpinBox_Decimals(QtObjectPtr ptr){ + return static_cast(ptr)->decimals(); +} + +char* QDoubleSpinBox_Prefix(QtObjectPtr ptr){ + return static_cast(ptr)->prefix().toUtf8().data(); +} + +void QDoubleSpinBox_SetDecimals(QtObjectPtr ptr, int prec){ + static_cast(ptr)->setDecimals(prec); +} + +void QDoubleSpinBox_SetPrefix(QtObjectPtr ptr, char* prefix){ + static_cast(ptr)->setPrefix(QString(prefix)); +} + +void QDoubleSpinBox_SetSuffix(QtObjectPtr ptr, char* suffix){ + static_cast(ptr)->setSuffix(QString(suffix)); +} + +char* QDoubleSpinBox_Suffix(QtObjectPtr ptr){ + return static_cast(ptr)->suffix().toUtf8().data(); +} + +QtObjectPtr QDoubleSpinBox_NewQDoubleSpinBox(QtObjectPtr parent){ + return new QDoubleSpinBox(static_cast(parent)); +} + +void QDoubleSpinBox_DestroyQDoubleSpinBox(QtObjectPtr ptr){ + static_cast(ptr)->~QDoubleSpinBox(); +} + diff --git a/widgets/qdoublespinbox.go b/widgets/qdoublespinbox.go new file mode 100755 index 00000000..ab2db44d --- /dev/null +++ b/widgets/qdoublespinbox.go @@ -0,0 +1,94 @@ +package widgets + +//#include "qdoublespinbox.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QDoubleSpinBox struct { + QAbstractSpinBox +} + +type QDoubleSpinBoxITF interface { + QAbstractSpinBoxITF + QDoubleSpinBoxPTR() *QDoubleSpinBox +} + +func PointerFromQDoubleSpinBox(ptr QDoubleSpinBoxITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDoubleSpinBoxPTR().Pointer() + } + return nil +} + +func QDoubleSpinBoxFromPointer(ptr unsafe.Pointer) *QDoubleSpinBox { + var n = new(QDoubleSpinBox) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QDoubleSpinBox_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QDoubleSpinBox) QDoubleSpinBoxPTR() *QDoubleSpinBox { + return ptr +} + +func (ptr *QDoubleSpinBox) CleanText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDoubleSpinBox_CleanText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDoubleSpinBox) Decimals() int { + if ptr.Pointer() != nil { + return int(C.QDoubleSpinBox_Decimals(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDoubleSpinBox) Prefix() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDoubleSpinBox_Prefix(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDoubleSpinBox) SetDecimals(prec int) { + if ptr.Pointer() != nil { + C.QDoubleSpinBox_SetDecimals(C.QtObjectPtr(ptr.Pointer()), C.int(prec)) + } +} + +func (ptr *QDoubleSpinBox) SetPrefix(prefix string) { + if ptr.Pointer() != nil { + C.QDoubleSpinBox_SetPrefix(C.QtObjectPtr(ptr.Pointer()), C.CString(prefix)) + } +} + +func (ptr *QDoubleSpinBox) SetSuffix(suffix string) { + if ptr.Pointer() != nil { + C.QDoubleSpinBox_SetSuffix(C.QtObjectPtr(ptr.Pointer()), C.CString(suffix)) + } +} + +func (ptr *QDoubleSpinBox) Suffix() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDoubleSpinBox_Suffix(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func NewQDoubleSpinBox(parent QWidgetITF) *QDoubleSpinBox { + return QDoubleSpinBoxFromPointer(unsafe.Pointer(C.QDoubleSpinBox_NewQDoubleSpinBox(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QDoubleSpinBox) DestroyQDoubleSpinBox() { + if ptr.Pointer() != nil { + C.QDoubleSpinBox_DestroyQDoubleSpinBox(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qdoublespinbox.h b/widgets/qdoublespinbox.h new file mode 100755 index 00000000..e1e267bf --- /dev/null +++ b/widgets/qdoublespinbox.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QDoubleSpinBox_CleanText(QtObjectPtr ptr); +int QDoubleSpinBox_Decimals(QtObjectPtr ptr); +char* QDoubleSpinBox_Prefix(QtObjectPtr ptr); +void QDoubleSpinBox_SetDecimals(QtObjectPtr ptr, int prec); +void QDoubleSpinBox_SetPrefix(QtObjectPtr ptr, char* prefix); +void QDoubleSpinBox_SetSuffix(QtObjectPtr ptr, char* suffix); +char* QDoubleSpinBox_Suffix(QtObjectPtr ptr); +QtObjectPtr QDoubleSpinBox_NewQDoubleSpinBox(QtObjectPtr parent); +void QDoubleSpinBox_DestroyQDoubleSpinBox(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qerrormessage.cpp b/widgets/qerrormessage.cpp new file mode 100755 index 00000000..a6913bb9 --- /dev/null +++ b/widgets/qerrormessage.cpp @@ -0,0 +1,34 @@ +#include "qerrormessage.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQErrorMessage: public QErrorMessage { +public: +}; + +QtObjectPtr QErrorMessage_NewQErrorMessage(QtObjectPtr parent){ + return new QErrorMessage(static_cast(parent)); +} + +QtObjectPtr QErrorMessage_QErrorMessage_QtHandler(){ + return QErrorMessage::qtHandler(); +} + +void QErrorMessage_ShowMessage(QtObjectPtr ptr, char* message){ + QMetaObject::invokeMethod(static_cast(ptr), "showMessage", Q_ARG(QString, QString(message))); +} + +void QErrorMessage_ShowMessage2(QtObjectPtr ptr, char* message, char* ty){ + QMetaObject::invokeMethod(static_cast(ptr), "showMessage", Q_ARG(QString, QString(message)), Q_ARG(QString, QString(ty))); +} + +void QErrorMessage_DestroyQErrorMessage(QtObjectPtr ptr){ + static_cast(ptr)->~QErrorMessage(); +} + diff --git a/widgets/qerrormessage.go b/widgets/qerrormessage.go new file mode 100755 index 00000000..5e154981 --- /dev/null +++ b/widgets/qerrormessage.go @@ -0,0 +1,64 @@ +package widgets + +//#include "qerrormessage.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QErrorMessage struct { + QDialog +} + +type QErrorMessageITF interface { + QDialogITF + QErrorMessagePTR() *QErrorMessage +} + +func PointerFromQErrorMessage(ptr QErrorMessageITF) unsafe.Pointer { + if ptr != nil { + return ptr.QErrorMessagePTR().Pointer() + } + return nil +} + +func QErrorMessageFromPointer(ptr unsafe.Pointer) *QErrorMessage { + var n = new(QErrorMessage) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QErrorMessage_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QErrorMessage) QErrorMessagePTR() *QErrorMessage { + return ptr +} + +func NewQErrorMessage(parent QWidgetITF) *QErrorMessage { + return QErrorMessageFromPointer(unsafe.Pointer(C.QErrorMessage_NewQErrorMessage(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func QErrorMessage_QtHandler() *QErrorMessage { + return QErrorMessageFromPointer(unsafe.Pointer(C.QErrorMessage_QErrorMessage_QtHandler())) +} + +func (ptr *QErrorMessage) ShowMessage(message string) { + if ptr.Pointer() != nil { + C.QErrorMessage_ShowMessage(C.QtObjectPtr(ptr.Pointer()), C.CString(message)) + } +} + +func (ptr *QErrorMessage) ShowMessage2(message string, ty string) { + if ptr.Pointer() != nil { + C.QErrorMessage_ShowMessage2(C.QtObjectPtr(ptr.Pointer()), C.CString(message), C.CString(ty)) + } +} + +func (ptr *QErrorMessage) DestroyQErrorMessage() { + if ptr.Pointer() != nil { + C.QErrorMessage_DestroyQErrorMessage(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qerrormessage.h b/widgets/qerrormessage.h new file mode 100755 index 00000000..1a53b766 --- /dev/null +++ b/widgets/qerrormessage.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QErrorMessage_NewQErrorMessage(QtObjectPtr parent); +QtObjectPtr QErrorMessage_QErrorMessage_QtHandler(); +void QErrorMessage_ShowMessage(QtObjectPtr ptr, char* message); +void QErrorMessage_ShowMessage2(QtObjectPtr ptr, char* message, char* ty); +void QErrorMessage_DestroyQErrorMessage(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qfiledialog.cpp b/widgets/qfiledialog.cpp new file mode 100755 index 00000000..a39e152c --- /dev/null +++ b/widgets/qfiledialog.cpp @@ -0,0 +1,333 @@ +#include "qfiledialog.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQFileDialog: public QFileDialog { +public: +void Signal_CurrentChanged(const QString & path){callbackQFileDialogCurrentChanged(this->objectName().toUtf8().data(), path.toUtf8().data());}; +void Signal_CurrentUrlChanged(const QUrl & url){callbackQFileDialogCurrentUrlChanged(this->objectName().toUtf8().data(), url.toString().toUtf8().data());}; +void Signal_DirectoryEntered(const QString & directory){callbackQFileDialogDirectoryEntered(this->objectName().toUtf8().data(), directory.toUtf8().data());}; +void Signal_DirectoryUrlEntered(const QUrl & directory){callbackQFileDialogDirectoryUrlEntered(this->objectName().toUtf8().data(), directory.toString().toUtf8().data());}; +void Signal_FileSelected(const QString & file){callbackQFileDialogFileSelected(this->objectName().toUtf8().data(), file.toUtf8().data());}; +void Signal_FilesSelected(const QStringList & selected){callbackQFileDialogFilesSelected(this->objectName().toUtf8().data(), selected.join("|").toUtf8().data());}; +void Signal_FilterSelected(const QString & filter){callbackQFileDialogFilterSelected(this->objectName().toUtf8().data(), filter.toUtf8().data());}; +void Signal_UrlSelected(const QUrl & url){callbackQFileDialogUrlSelected(this->objectName().toUtf8().data(), url.toString().toUtf8().data());}; +}; + +QtObjectPtr QFileDialog_NewQFileDialog(QtObjectPtr parent, int flags){ + return new QFileDialog(static_cast(parent), static_cast(flags)); +} + +int QFileDialog_AcceptMode(QtObjectPtr ptr){ + return static_cast(ptr)->acceptMode(); +} + +int QFileDialog_ConfirmOverwrite(QtObjectPtr ptr){ + return static_cast(ptr)->confirmOverwrite(); +} + +char* QFileDialog_DefaultSuffix(QtObjectPtr ptr){ + return static_cast(ptr)->defaultSuffix().toUtf8().data(); +} + +int QFileDialog_FileMode(QtObjectPtr ptr){ + return static_cast(ptr)->fileMode(); +} + +int QFileDialog_IsNameFilterDetailsVisible(QtObjectPtr ptr){ + return static_cast(ptr)->isNameFilterDetailsVisible(); +} + +int QFileDialog_IsReadOnly(QtObjectPtr ptr){ + return static_cast(ptr)->isReadOnly(); +} + +int QFileDialog_Options(QtObjectPtr ptr){ + return static_cast(ptr)->options(); +} + +int QFileDialog_ResolveSymlinks(QtObjectPtr ptr){ + return static_cast(ptr)->resolveSymlinks(); +} + +void QFileDialog_SetAcceptMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setAcceptMode(static_cast(mode)); +} + +void QFileDialog_SetConfirmOverwrite(QtObjectPtr ptr, int enabled){ + static_cast(ptr)->setConfirmOverwrite(enabled != 0); +} + +void QFileDialog_SetDefaultSuffix(QtObjectPtr ptr, char* suffix){ + static_cast(ptr)->setDefaultSuffix(QString(suffix)); +} + +void QFileDialog_SetFileMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setFileMode(static_cast(mode)); +} + +void QFileDialog_SetNameFilterDetailsVisible(QtObjectPtr ptr, int enabled){ + static_cast(ptr)->setNameFilterDetailsVisible(enabled != 0); +} + +void QFileDialog_SetOptions(QtObjectPtr ptr, int options){ + static_cast(ptr)->setOptions(static_cast(options)); +} + +void QFileDialog_SetReadOnly(QtObjectPtr ptr, int enabled){ + static_cast(ptr)->setReadOnly(enabled != 0); +} + +void QFileDialog_SetResolveSymlinks(QtObjectPtr ptr, int enabled){ + static_cast(ptr)->setResolveSymlinks(enabled != 0); +} + +void QFileDialog_SetViewMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setViewMode(static_cast(mode)); +} + +int QFileDialog_ViewMode(QtObjectPtr ptr){ + return static_cast(ptr)->viewMode(); +} + +QtObjectPtr QFileDialog_NewQFileDialog2(QtObjectPtr parent, char* caption, char* directory, char* filter){ + return new QFileDialog(static_cast(parent), QString(caption), QString(directory), QString(filter)); +} + +void QFileDialog_ConnectCurrentChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QFileDialog::currentChanged), static_cast(ptr), static_cast(&MyQFileDialog::Signal_CurrentChanged));; +} + +void QFileDialog_DisconnectCurrentChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QFileDialog::currentChanged), static_cast(ptr), static_cast(&MyQFileDialog::Signal_CurrentChanged));; +} + +void QFileDialog_ConnectCurrentUrlChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QFileDialog::currentUrlChanged), static_cast(ptr), static_cast(&MyQFileDialog::Signal_CurrentUrlChanged));; +} + +void QFileDialog_DisconnectCurrentUrlChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QFileDialog::currentUrlChanged), static_cast(ptr), static_cast(&MyQFileDialog::Signal_CurrentUrlChanged));; +} + +void QFileDialog_ConnectDirectoryEntered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QFileDialog::directoryEntered), static_cast(ptr), static_cast(&MyQFileDialog::Signal_DirectoryEntered));; +} + +void QFileDialog_DisconnectDirectoryEntered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QFileDialog::directoryEntered), static_cast(ptr), static_cast(&MyQFileDialog::Signal_DirectoryEntered));; +} + +char* QFileDialog_DirectoryUrl(QtObjectPtr ptr){ + return static_cast(ptr)->directoryUrl().toString().toUtf8().data(); +} + +void QFileDialog_ConnectDirectoryUrlEntered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QFileDialog::directoryUrlEntered), static_cast(ptr), static_cast(&MyQFileDialog::Signal_DirectoryUrlEntered));; +} + +void QFileDialog_DisconnectDirectoryUrlEntered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QFileDialog::directoryUrlEntered), static_cast(ptr), static_cast(&MyQFileDialog::Signal_DirectoryUrlEntered));; +} + +void QFileDialog_ConnectFileSelected(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QFileDialog::fileSelected), static_cast(ptr), static_cast(&MyQFileDialog::Signal_FileSelected));; +} + +void QFileDialog_DisconnectFileSelected(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QFileDialog::fileSelected), static_cast(ptr), static_cast(&MyQFileDialog::Signal_FileSelected));; +} + +void QFileDialog_ConnectFilesSelected(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QFileDialog::filesSelected), static_cast(ptr), static_cast(&MyQFileDialog::Signal_FilesSelected));; +} + +void QFileDialog_DisconnectFilesSelected(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QFileDialog::filesSelected), static_cast(ptr), static_cast(&MyQFileDialog::Signal_FilesSelected));; +} + +int QFileDialog_Filter(QtObjectPtr ptr){ + return static_cast(ptr)->filter(); +} + +void QFileDialog_ConnectFilterSelected(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QFileDialog::filterSelected), static_cast(ptr), static_cast(&MyQFileDialog::Signal_FilterSelected));; +} + +void QFileDialog_DisconnectFilterSelected(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QFileDialog::filterSelected), static_cast(ptr), static_cast(&MyQFileDialog::Signal_FilterSelected));; +} + +char* QFileDialog_QFileDialog_GetExistingDirectory(QtObjectPtr parent, char* caption, char* dir, int options){ + return QFileDialog::getExistingDirectory(static_cast(parent), QString(caption), QString(dir), static_cast(options)).toUtf8().data(); +} + +char* QFileDialog_QFileDialog_GetExistingDirectoryUrl(QtObjectPtr parent, char* caption, char* dir, int options, char* supportedSchemes){ + return QFileDialog::getExistingDirectoryUrl(static_cast(parent), QString(caption), QUrl(QString(dir)), static_cast(options), QString(supportedSchemes).split("|", QString::SkipEmptyParts)).toString().toUtf8().data(); +} + +char* QFileDialog_QFileDialog_GetOpenFileName(QtObjectPtr parent, char* caption, char* dir, char* filter, char* selectedFilter, int options){ + return QFileDialog::getOpenFileName(static_cast(parent), QString(caption), QString(dir), QString(filter), new QString(selectedFilter), static_cast(options)).toUtf8().data(); +} + +char* QFileDialog_QFileDialog_GetOpenFileNames(QtObjectPtr parent, char* caption, char* dir, char* filter, char* selectedFilter, int options){ + return QFileDialog::getOpenFileNames(static_cast(parent), QString(caption), QString(dir), QString(filter), new QString(selectedFilter), static_cast(options)).join("|").toUtf8().data(); +} + +char* QFileDialog_QFileDialog_GetOpenFileUrl(QtObjectPtr parent, char* caption, char* dir, char* filter, char* selectedFilter, int options, char* supportedSchemes){ + return QFileDialog::getOpenFileUrl(static_cast(parent), QString(caption), QUrl(QString(dir)), QString(filter), new QString(selectedFilter), static_cast(options), QString(supportedSchemes).split("|", QString::SkipEmptyParts)).toString().toUtf8().data(); +} + +char* QFileDialog_QFileDialog_GetSaveFileName(QtObjectPtr parent, char* caption, char* dir, char* filter, char* selectedFilter, int options){ + return QFileDialog::getSaveFileName(static_cast(parent), QString(caption), QString(dir), QString(filter), new QString(selectedFilter), static_cast(options)).toUtf8().data(); +} + +char* QFileDialog_QFileDialog_GetSaveFileUrl(QtObjectPtr parent, char* caption, char* dir, char* filter, char* selectedFilter, int options, char* supportedSchemes){ + return QFileDialog::getSaveFileUrl(static_cast(parent), QString(caption), QUrl(QString(dir)), QString(filter), new QString(selectedFilter), static_cast(options), QString(supportedSchemes).split("|", QString::SkipEmptyParts)).toString().toUtf8().data(); +} + +char* QFileDialog_History(QtObjectPtr ptr){ + return static_cast(ptr)->history().join("|").toUtf8().data(); +} + +QtObjectPtr QFileDialog_IconProvider(QtObjectPtr ptr){ + return static_cast(ptr)->iconProvider(); +} + +QtObjectPtr QFileDialog_ItemDelegate(QtObjectPtr ptr){ + return static_cast(ptr)->itemDelegate(); +} + +char* QFileDialog_LabelText(QtObjectPtr ptr, int label){ + return static_cast(ptr)->labelText(static_cast(label)).toUtf8().data(); +} + +char* QFileDialog_MimeTypeFilters(QtObjectPtr ptr){ + return static_cast(ptr)->mimeTypeFilters().join("|").toUtf8().data(); +} + +char* QFileDialog_NameFilters(QtObjectPtr ptr){ + return static_cast(ptr)->nameFilters().join("|").toUtf8().data(); +} + +void QFileDialog_Open(QtObjectPtr ptr, QtObjectPtr receiver, char* member){ + static_cast(ptr)->open(static_cast(receiver), const_cast(member)); +} + +QtObjectPtr QFileDialog_ProxyModel(QtObjectPtr ptr){ + return static_cast(ptr)->proxyModel(); +} + +int QFileDialog_RestoreState(QtObjectPtr ptr, QtObjectPtr state){ + return static_cast(ptr)->restoreState(*static_cast(state)); +} + +void QFileDialog_SelectFile(QtObjectPtr ptr, char* filename){ + static_cast(ptr)->selectFile(QString(filename)); +} + +void QFileDialog_SelectMimeTypeFilter(QtObjectPtr ptr, char* filter){ + static_cast(ptr)->selectMimeTypeFilter(QString(filter)); +} + +void QFileDialog_SelectNameFilter(QtObjectPtr ptr, char* filter){ + static_cast(ptr)->selectNameFilter(QString(filter)); +} + +void QFileDialog_SelectUrl(QtObjectPtr ptr, char* url){ + static_cast(ptr)->selectUrl(QUrl(QString(url))); +} + +char* QFileDialog_SelectedFiles(QtObjectPtr ptr){ + return static_cast(ptr)->selectedFiles().join("|").toUtf8().data(); +} + +char* QFileDialog_SelectedNameFilter(QtObjectPtr ptr){ + return static_cast(ptr)->selectedNameFilter().toUtf8().data(); +} + +void QFileDialog_SetDirectory2(QtObjectPtr ptr, QtObjectPtr directory){ + static_cast(ptr)->setDirectory(*static_cast(directory)); +} + +void QFileDialog_SetDirectory(QtObjectPtr ptr, char* directory){ + static_cast(ptr)->setDirectory(QString(directory)); +} + +void QFileDialog_SetDirectoryUrl(QtObjectPtr ptr, char* directory){ + static_cast(ptr)->setDirectoryUrl(QUrl(QString(directory))); +} + +void QFileDialog_SetFilter(QtObjectPtr ptr, int filters){ + static_cast(ptr)->setFilter(static_cast(filters)); +} + +void QFileDialog_SetHistory(QtObjectPtr ptr, char* paths){ + static_cast(ptr)->setHistory(QString(paths).split("|", QString::SkipEmptyParts)); +} + +void QFileDialog_SetIconProvider(QtObjectPtr ptr, QtObjectPtr provider){ + static_cast(ptr)->setIconProvider(static_cast(provider)); +} + +void QFileDialog_SetItemDelegate(QtObjectPtr ptr, QtObjectPtr delegate){ + static_cast(ptr)->setItemDelegate(static_cast(delegate)); +} + +void QFileDialog_SetLabelText(QtObjectPtr ptr, int label, char* text){ + static_cast(ptr)->setLabelText(static_cast(label), QString(text)); +} + +void QFileDialog_SetMimeTypeFilters(QtObjectPtr ptr, char* filters){ + static_cast(ptr)->setMimeTypeFilters(QString(filters).split("|", QString::SkipEmptyParts)); +} + +void QFileDialog_SetNameFilter(QtObjectPtr ptr, char* filter){ + static_cast(ptr)->setNameFilter(QString(filter)); +} + +void QFileDialog_SetNameFilters(QtObjectPtr ptr, char* filters){ + static_cast(ptr)->setNameFilters(QString(filters).split("|", QString::SkipEmptyParts)); +} + +void QFileDialog_SetOption(QtObjectPtr ptr, int option, int on){ + static_cast(ptr)->setOption(static_cast(option), on != 0); +} + +void QFileDialog_SetProxyModel(QtObjectPtr ptr, QtObjectPtr proxyModel){ + static_cast(ptr)->setProxyModel(static_cast(proxyModel)); +} + +void QFileDialog_SetVisible(QtObjectPtr ptr, int visible){ + static_cast(ptr)->setVisible(visible != 0); +} + +int QFileDialog_TestOption(QtObjectPtr ptr, int option){ + return static_cast(ptr)->testOption(static_cast(option)); +} + +void QFileDialog_ConnectUrlSelected(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QFileDialog::urlSelected), static_cast(ptr), static_cast(&MyQFileDialog::Signal_UrlSelected));; +} + +void QFileDialog_DisconnectUrlSelected(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QFileDialog::urlSelected), static_cast(ptr), static_cast(&MyQFileDialog::Signal_UrlSelected));; +} + +void QFileDialog_DestroyQFileDialog(QtObjectPtr ptr){ + static_cast(ptr)->~QFileDialog(); +} + diff --git a/widgets/qfiledialog.go b/widgets/qfiledialog.go new file mode 100755 index 00000000..93d6c5a8 --- /dev/null +++ b/widgets/qfiledialog.go @@ -0,0 +1,608 @@ +package widgets + +//#include "qfiledialog.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QFileDialog struct { + QDialog +} + +type QFileDialogITF interface { + QDialogITF + QFileDialogPTR() *QFileDialog +} + +func PointerFromQFileDialog(ptr QFileDialogITF) unsafe.Pointer { + if ptr != nil { + return ptr.QFileDialogPTR().Pointer() + } + return nil +} + +func QFileDialogFromPointer(ptr unsafe.Pointer) *QFileDialog { + var n = new(QFileDialog) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QFileDialog_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QFileDialog) QFileDialogPTR() *QFileDialog { + return ptr +} + +//QFileDialog::AcceptMode +type QFileDialog__AcceptMode int + +var ( + QFileDialog__AcceptOpen = QFileDialog__AcceptMode(0) + QFileDialog__AcceptSave = QFileDialog__AcceptMode(1) +) + +//QFileDialog::DialogLabel +type QFileDialog__DialogLabel int + +var ( + QFileDialog__LookIn = QFileDialog__DialogLabel(0) + QFileDialog__FileName = QFileDialog__DialogLabel(1) + QFileDialog__FileType = QFileDialog__DialogLabel(2) + QFileDialog__Accept = QFileDialog__DialogLabel(3) + QFileDialog__Reject = QFileDialog__DialogLabel(4) +) + +//QFileDialog::FileMode +type QFileDialog__FileMode int + +var ( + QFileDialog__AnyFile = QFileDialog__FileMode(0) + QFileDialog__ExistingFile = QFileDialog__FileMode(1) + QFileDialog__Directory = QFileDialog__FileMode(2) + QFileDialog__ExistingFiles = QFileDialog__FileMode(3) + QFileDialog__DirectoryOnly = QFileDialog__FileMode(4) +) + +//QFileDialog::Option +type QFileDialog__Option int + +var ( + QFileDialog__ShowDirsOnly = QFileDialog__Option(0x00000001) + QFileDialog__DontResolveSymlinks = QFileDialog__Option(0x00000002) + QFileDialog__DontConfirmOverwrite = QFileDialog__Option(0x00000004) + QFileDialog__DontUseSheet = QFileDialog__Option(0x00000008) + QFileDialog__DontUseNativeDialog = QFileDialog__Option(0x00000010) + QFileDialog__ReadOnly = QFileDialog__Option(0x00000020) + QFileDialog__HideNameFilterDetails = QFileDialog__Option(0x00000040) + QFileDialog__DontUseCustomDirectoryIcons = QFileDialog__Option(0x00000080) +) + +//QFileDialog::ViewMode +type QFileDialog__ViewMode int + +var ( + QFileDialog__Detail = QFileDialog__ViewMode(0) + QFileDialog__List = QFileDialog__ViewMode(1) +) + +func NewQFileDialog(parent QWidgetITF, flags core.Qt__WindowType) *QFileDialog { + return QFileDialogFromPointer(unsafe.Pointer(C.QFileDialog_NewQFileDialog(C.QtObjectPtr(PointerFromQWidget(parent)), C.int(flags)))) +} + +func (ptr *QFileDialog) AcceptMode() QFileDialog__AcceptMode { + if ptr.Pointer() != nil { + return QFileDialog__AcceptMode(C.QFileDialog_AcceptMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFileDialog) ConfirmOverwrite() bool { + if ptr.Pointer() != nil { + return C.QFileDialog_ConfirmOverwrite(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFileDialog) DefaultSuffix() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileDialog_DefaultSuffix(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFileDialog) FileMode() QFileDialog__FileMode { + if ptr.Pointer() != nil { + return QFileDialog__FileMode(C.QFileDialog_FileMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFileDialog) IsNameFilterDetailsVisible() bool { + if ptr.Pointer() != nil { + return C.QFileDialog_IsNameFilterDetailsVisible(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFileDialog) IsReadOnly() bool { + if ptr.Pointer() != nil { + return C.QFileDialog_IsReadOnly(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFileDialog) Options() QFileDialog__Option { + if ptr.Pointer() != nil { + return QFileDialog__Option(C.QFileDialog_Options(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFileDialog) ResolveSymlinks() bool { + if ptr.Pointer() != nil { + return C.QFileDialog_ResolveSymlinks(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFileDialog) SetAcceptMode(mode QFileDialog__AcceptMode) { + if ptr.Pointer() != nil { + C.QFileDialog_SetAcceptMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QFileDialog) SetConfirmOverwrite(enabled bool) { + if ptr.Pointer() != nil { + C.QFileDialog_SetConfirmOverwrite(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QFileDialog) SetDefaultSuffix(suffix string) { + if ptr.Pointer() != nil { + C.QFileDialog_SetDefaultSuffix(C.QtObjectPtr(ptr.Pointer()), C.CString(suffix)) + } +} + +func (ptr *QFileDialog) SetFileMode(mode QFileDialog__FileMode) { + if ptr.Pointer() != nil { + C.QFileDialog_SetFileMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QFileDialog) SetNameFilterDetailsVisible(enabled bool) { + if ptr.Pointer() != nil { + C.QFileDialog_SetNameFilterDetailsVisible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QFileDialog) SetOptions(options QFileDialog__Option) { + if ptr.Pointer() != nil { + C.QFileDialog_SetOptions(C.QtObjectPtr(ptr.Pointer()), C.int(options)) + } +} + +func (ptr *QFileDialog) SetReadOnly(enabled bool) { + if ptr.Pointer() != nil { + C.QFileDialog_SetReadOnly(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QFileDialog) SetResolveSymlinks(enabled bool) { + if ptr.Pointer() != nil { + C.QFileDialog_SetResolveSymlinks(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QFileDialog) SetViewMode(mode QFileDialog__ViewMode) { + if ptr.Pointer() != nil { + C.QFileDialog_SetViewMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QFileDialog) ViewMode() QFileDialog__ViewMode { + if ptr.Pointer() != nil { + return QFileDialog__ViewMode(C.QFileDialog_ViewMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQFileDialog2(parent QWidgetITF, caption string, directory string, filter string) *QFileDialog { + return QFileDialogFromPointer(unsafe.Pointer(C.QFileDialog_NewQFileDialog2(C.QtObjectPtr(PointerFromQWidget(parent)), C.CString(caption), C.CString(directory), C.CString(filter)))) +} + +func (ptr *QFileDialog) ConnectCurrentChanged(f func(path string)) { + if ptr.Pointer() != nil { + C.QFileDialog_ConnectCurrentChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "currentChanged", f) + } +} + +func (ptr *QFileDialog) DisconnectCurrentChanged() { + if ptr.Pointer() != nil { + C.QFileDialog_DisconnectCurrentChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "currentChanged") + } +} + +//export callbackQFileDialogCurrentChanged +func callbackQFileDialogCurrentChanged(ptrName *C.char, path *C.char) { + qt.GetSignal(C.GoString(ptrName), "currentChanged").(func(string))(C.GoString(path)) +} + +func (ptr *QFileDialog) ConnectCurrentUrlChanged(f func(url string)) { + if ptr.Pointer() != nil { + C.QFileDialog_ConnectCurrentUrlChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "currentUrlChanged", f) + } +} + +func (ptr *QFileDialog) DisconnectCurrentUrlChanged() { + if ptr.Pointer() != nil { + C.QFileDialog_DisconnectCurrentUrlChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "currentUrlChanged") + } +} + +//export callbackQFileDialogCurrentUrlChanged +func callbackQFileDialogCurrentUrlChanged(ptrName *C.char, url *C.char) { + qt.GetSignal(C.GoString(ptrName), "currentUrlChanged").(func(string))(C.GoString(url)) +} + +func (ptr *QFileDialog) ConnectDirectoryEntered(f func(directory string)) { + if ptr.Pointer() != nil { + C.QFileDialog_ConnectDirectoryEntered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "directoryEntered", f) + } +} + +func (ptr *QFileDialog) DisconnectDirectoryEntered() { + if ptr.Pointer() != nil { + C.QFileDialog_DisconnectDirectoryEntered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "directoryEntered") + } +} + +//export callbackQFileDialogDirectoryEntered +func callbackQFileDialogDirectoryEntered(ptrName *C.char, directory *C.char) { + qt.GetSignal(C.GoString(ptrName), "directoryEntered").(func(string))(C.GoString(directory)) +} + +func (ptr *QFileDialog) DirectoryUrl() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileDialog_DirectoryUrl(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFileDialog) ConnectDirectoryUrlEntered(f func(directory string)) { + if ptr.Pointer() != nil { + C.QFileDialog_ConnectDirectoryUrlEntered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "directoryUrlEntered", f) + } +} + +func (ptr *QFileDialog) DisconnectDirectoryUrlEntered() { + if ptr.Pointer() != nil { + C.QFileDialog_DisconnectDirectoryUrlEntered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "directoryUrlEntered") + } +} + +//export callbackQFileDialogDirectoryUrlEntered +func callbackQFileDialogDirectoryUrlEntered(ptrName *C.char, directory *C.char) { + qt.GetSignal(C.GoString(ptrName), "directoryUrlEntered").(func(string))(C.GoString(directory)) +} + +func (ptr *QFileDialog) ConnectFileSelected(f func(file string)) { + if ptr.Pointer() != nil { + C.QFileDialog_ConnectFileSelected(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "fileSelected", f) + } +} + +func (ptr *QFileDialog) DisconnectFileSelected() { + if ptr.Pointer() != nil { + C.QFileDialog_DisconnectFileSelected(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "fileSelected") + } +} + +//export callbackQFileDialogFileSelected +func callbackQFileDialogFileSelected(ptrName *C.char, file *C.char) { + qt.GetSignal(C.GoString(ptrName), "fileSelected").(func(string))(C.GoString(file)) +} + +func (ptr *QFileDialog) ConnectFilesSelected(f func(selected []string)) { + if ptr.Pointer() != nil { + C.QFileDialog_ConnectFilesSelected(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "filesSelected", f) + } +} + +func (ptr *QFileDialog) DisconnectFilesSelected() { + if ptr.Pointer() != nil { + C.QFileDialog_DisconnectFilesSelected(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "filesSelected") + } +} + +//export callbackQFileDialogFilesSelected +func callbackQFileDialogFilesSelected(ptrName *C.char, selected *C.char) { + qt.GetSignal(C.GoString(ptrName), "filesSelected").(func([]string))(strings.Split(C.GoString(selected), "|")) +} + +func (ptr *QFileDialog) Filter() core.QDir__Filter { + if ptr.Pointer() != nil { + return core.QDir__Filter(C.QFileDialog_Filter(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFileDialog) ConnectFilterSelected(f func(filter string)) { + if ptr.Pointer() != nil { + C.QFileDialog_ConnectFilterSelected(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "filterSelected", f) + } +} + +func (ptr *QFileDialog) DisconnectFilterSelected() { + if ptr.Pointer() != nil { + C.QFileDialog_DisconnectFilterSelected(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "filterSelected") + } +} + +//export callbackQFileDialogFilterSelected +func callbackQFileDialogFilterSelected(ptrName *C.char, filter *C.char) { + qt.GetSignal(C.GoString(ptrName), "filterSelected").(func(string))(C.GoString(filter)) +} + +func QFileDialog_GetExistingDirectory(parent QWidgetITF, caption string, dir string, options QFileDialog__Option) string { + return C.GoString(C.QFileDialog_QFileDialog_GetExistingDirectory(C.QtObjectPtr(PointerFromQWidget(parent)), C.CString(caption), C.CString(dir), C.int(options))) +} + +func QFileDialog_GetExistingDirectoryUrl(parent QWidgetITF, caption string, dir string, options QFileDialog__Option, supportedSchemes []string) string { + return C.GoString(C.QFileDialog_QFileDialog_GetExistingDirectoryUrl(C.QtObjectPtr(PointerFromQWidget(parent)), C.CString(caption), C.CString(dir), C.int(options), C.CString(strings.Join(supportedSchemes, "|")))) +} + +func QFileDialog_GetOpenFileName(parent QWidgetITF, caption string, dir string, filter string, selectedFilter string, options QFileDialog__Option) string { + return C.GoString(C.QFileDialog_QFileDialog_GetOpenFileName(C.QtObjectPtr(PointerFromQWidget(parent)), C.CString(caption), C.CString(dir), C.CString(filter), C.CString(selectedFilter), C.int(options))) +} + +func QFileDialog_GetOpenFileNames(parent QWidgetITF, caption string, dir string, filter string, selectedFilter string, options QFileDialog__Option) []string { + return strings.Split(C.GoString(C.QFileDialog_QFileDialog_GetOpenFileNames(C.QtObjectPtr(PointerFromQWidget(parent)), C.CString(caption), C.CString(dir), C.CString(filter), C.CString(selectedFilter), C.int(options))), "|") +} + +func QFileDialog_GetOpenFileUrl(parent QWidgetITF, caption string, dir string, filter string, selectedFilter string, options QFileDialog__Option, supportedSchemes []string) string { + return C.GoString(C.QFileDialog_QFileDialog_GetOpenFileUrl(C.QtObjectPtr(PointerFromQWidget(parent)), C.CString(caption), C.CString(dir), C.CString(filter), C.CString(selectedFilter), C.int(options), C.CString(strings.Join(supportedSchemes, "|")))) +} + +func QFileDialog_GetSaveFileName(parent QWidgetITF, caption string, dir string, filter string, selectedFilter string, options QFileDialog__Option) string { + return C.GoString(C.QFileDialog_QFileDialog_GetSaveFileName(C.QtObjectPtr(PointerFromQWidget(parent)), C.CString(caption), C.CString(dir), C.CString(filter), C.CString(selectedFilter), C.int(options))) +} + +func QFileDialog_GetSaveFileUrl(parent QWidgetITF, caption string, dir string, filter string, selectedFilter string, options QFileDialog__Option, supportedSchemes []string) string { + return C.GoString(C.QFileDialog_QFileDialog_GetSaveFileUrl(C.QtObjectPtr(PointerFromQWidget(parent)), C.CString(caption), C.CString(dir), C.CString(filter), C.CString(selectedFilter), C.int(options), C.CString(strings.Join(supportedSchemes, "|")))) +} + +func (ptr *QFileDialog) History() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QFileDialog_History(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QFileDialog) IconProvider() *QFileIconProvider { + if ptr.Pointer() != nil { + return QFileIconProviderFromPointer(unsafe.Pointer(C.QFileDialog_IconProvider(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QFileDialog) ItemDelegate() *QAbstractItemDelegate { + if ptr.Pointer() != nil { + return QAbstractItemDelegateFromPointer(unsafe.Pointer(C.QFileDialog_ItemDelegate(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QFileDialog) LabelText(label QFileDialog__DialogLabel) string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileDialog_LabelText(C.QtObjectPtr(ptr.Pointer()), C.int(label))) + } + return "" +} + +func (ptr *QFileDialog) MimeTypeFilters() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QFileDialog_MimeTypeFilters(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QFileDialog) NameFilters() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QFileDialog_NameFilters(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QFileDialog) Open(receiver core.QObjectITF, member string) { + if ptr.Pointer() != nil { + C.QFileDialog_Open(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(receiver)), C.CString(member)) + } +} + +func (ptr *QFileDialog) ProxyModel() *core.QAbstractProxyModel { + if ptr.Pointer() != nil { + return core.QAbstractProxyModelFromPointer(unsafe.Pointer(C.QFileDialog_ProxyModel(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QFileDialog) RestoreState(state core.QByteArrayITF) bool { + if ptr.Pointer() != nil { + return C.QFileDialog_RestoreState(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(state))) != 0 + } + return false +} + +func (ptr *QFileDialog) SelectFile(filename string) { + if ptr.Pointer() != nil { + C.QFileDialog_SelectFile(C.QtObjectPtr(ptr.Pointer()), C.CString(filename)) + } +} + +func (ptr *QFileDialog) SelectMimeTypeFilter(filter string) { + if ptr.Pointer() != nil { + C.QFileDialog_SelectMimeTypeFilter(C.QtObjectPtr(ptr.Pointer()), C.CString(filter)) + } +} + +func (ptr *QFileDialog) SelectNameFilter(filter string) { + if ptr.Pointer() != nil { + C.QFileDialog_SelectNameFilter(C.QtObjectPtr(ptr.Pointer()), C.CString(filter)) + } +} + +func (ptr *QFileDialog) SelectUrl(url string) { + if ptr.Pointer() != nil { + C.QFileDialog_SelectUrl(C.QtObjectPtr(ptr.Pointer()), C.CString(url)) + } +} + +func (ptr *QFileDialog) SelectedFiles() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QFileDialog_SelectedFiles(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QFileDialog) SelectedNameFilter() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileDialog_SelectedNameFilter(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFileDialog) SetDirectory2(directory core.QDirITF) { + if ptr.Pointer() != nil { + C.QFileDialog_SetDirectory2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDir(directory))) + } +} + +func (ptr *QFileDialog) SetDirectory(directory string) { + if ptr.Pointer() != nil { + C.QFileDialog_SetDirectory(C.QtObjectPtr(ptr.Pointer()), C.CString(directory)) + } +} + +func (ptr *QFileDialog) SetDirectoryUrl(directory string) { + if ptr.Pointer() != nil { + C.QFileDialog_SetDirectoryUrl(C.QtObjectPtr(ptr.Pointer()), C.CString(directory)) + } +} + +func (ptr *QFileDialog) SetFilter(filters core.QDir__Filter) { + if ptr.Pointer() != nil { + C.QFileDialog_SetFilter(C.QtObjectPtr(ptr.Pointer()), C.int(filters)) + } +} + +func (ptr *QFileDialog) SetHistory(paths []string) { + if ptr.Pointer() != nil { + C.QFileDialog_SetHistory(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(paths, "|"))) + } +} + +func (ptr *QFileDialog) SetIconProvider(provider QFileIconProviderITF) { + if ptr.Pointer() != nil { + C.QFileDialog_SetIconProvider(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQFileIconProvider(provider))) + } +} + +func (ptr *QFileDialog) SetItemDelegate(delegate QAbstractItemDelegateITF) { + if ptr.Pointer() != nil { + C.QFileDialog_SetItemDelegate(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractItemDelegate(delegate))) + } +} + +func (ptr *QFileDialog) SetLabelText(label QFileDialog__DialogLabel, text string) { + if ptr.Pointer() != nil { + C.QFileDialog_SetLabelText(C.QtObjectPtr(ptr.Pointer()), C.int(label), C.CString(text)) + } +} + +func (ptr *QFileDialog) SetMimeTypeFilters(filters []string) { + if ptr.Pointer() != nil { + C.QFileDialog_SetMimeTypeFilters(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(filters, "|"))) + } +} + +func (ptr *QFileDialog) SetNameFilter(filter string) { + if ptr.Pointer() != nil { + C.QFileDialog_SetNameFilter(C.QtObjectPtr(ptr.Pointer()), C.CString(filter)) + } +} + +func (ptr *QFileDialog) SetNameFilters(filters []string) { + if ptr.Pointer() != nil { + C.QFileDialog_SetNameFilters(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(filters, "|"))) + } +} + +func (ptr *QFileDialog) SetOption(option QFileDialog__Option, on bool) { + if ptr.Pointer() != nil { + C.QFileDialog_SetOption(C.QtObjectPtr(ptr.Pointer()), C.int(option), C.int(qt.GoBoolToInt(on))) + } +} + +func (ptr *QFileDialog) SetProxyModel(proxyModel core.QAbstractProxyModelITF) { + if ptr.Pointer() != nil { + C.QFileDialog_SetProxyModel(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQAbstractProxyModel(proxyModel))) + } +} + +func (ptr *QFileDialog) SetVisible(visible bool) { + if ptr.Pointer() != nil { + C.QFileDialog_SetVisible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(visible))) + } +} + +func (ptr *QFileDialog) TestOption(option QFileDialog__Option) bool { + if ptr.Pointer() != nil { + return C.QFileDialog_TestOption(C.QtObjectPtr(ptr.Pointer()), C.int(option)) != 0 + } + return false +} + +func (ptr *QFileDialog) ConnectUrlSelected(f func(url string)) { + if ptr.Pointer() != nil { + C.QFileDialog_ConnectUrlSelected(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "urlSelected", f) + } +} + +func (ptr *QFileDialog) DisconnectUrlSelected() { + if ptr.Pointer() != nil { + C.QFileDialog_DisconnectUrlSelected(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "urlSelected") + } +} + +//export callbackQFileDialogUrlSelected +func callbackQFileDialogUrlSelected(ptrName *C.char, url *C.char) { + qt.GetSignal(C.GoString(ptrName), "urlSelected").(func(string))(C.GoString(url)) +} + +func (ptr *QFileDialog) DestroyQFileDialog() { + if ptr.Pointer() != nil { + C.QFileDialog_DestroyQFileDialog(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qfiledialog.h b/widgets/qfiledialog.h new file mode 100755 index 00000000..cf140c77 --- /dev/null +++ b/widgets/qfiledialog.h @@ -0,0 +1,85 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QFileDialog_NewQFileDialog(QtObjectPtr parent, int flags); +int QFileDialog_AcceptMode(QtObjectPtr ptr); +int QFileDialog_ConfirmOverwrite(QtObjectPtr ptr); +char* QFileDialog_DefaultSuffix(QtObjectPtr ptr); +int QFileDialog_FileMode(QtObjectPtr ptr); +int QFileDialog_IsNameFilterDetailsVisible(QtObjectPtr ptr); +int QFileDialog_IsReadOnly(QtObjectPtr ptr); +int QFileDialog_Options(QtObjectPtr ptr); +int QFileDialog_ResolveSymlinks(QtObjectPtr ptr); +void QFileDialog_SetAcceptMode(QtObjectPtr ptr, int mode); +void QFileDialog_SetConfirmOverwrite(QtObjectPtr ptr, int enabled); +void QFileDialog_SetDefaultSuffix(QtObjectPtr ptr, char* suffix); +void QFileDialog_SetFileMode(QtObjectPtr ptr, int mode); +void QFileDialog_SetNameFilterDetailsVisible(QtObjectPtr ptr, int enabled); +void QFileDialog_SetOptions(QtObjectPtr ptr, int options); +void QFileDialog_SetReadOnly(QtObjectPtr ptr, int enabled); +void QFileDialog_SetResolveSymlinks(QtObjectPtr ptr, int enabled); +void QFileDialog_SetViewMode(QtObjectPtr ptr, int mode); +int QFileDialog_ViewMode(QtObjectPtr ptr); +QtObjectPtr QFileDialog_NewQFileDialog2(QtObjectPtr parent, char* caption, char* directory, char* filter); +void QFileDialog_ConnectCurrentChanged(QtObjectPtr ptr); +void QFileDialog_DisconnectCurrentChanged(QtObjectPtr ptr); +void QFileDialog_ConnectCurrentUrlChanged(QtObjectPtr ptr); +void QFileDialog_DisconnectCurrentUrlChanged(QtObjectPtr ptr); +void QFileDialog_ConnectDirectoryEntered(QtObjectPtr ptr); +void QFileDialog_DisconnectDirectoryEntered(QtObjectPtr ptr); +char* QFileDialog_DirectoryUrl(QtObjectPtr ptr); +void QFileDialog_ConnectDirectoryUrlEntered(QtObjectPtr ptr); +void QFileDialog_DisconnectDirectoryUrlEntered(QtObjectPtr ptr); +void QFileDialog_ConnectFileSelected(QtObjectPtr ptr); +void QFileDialog_DisconnectFileSelected(QtObjectPtr ptr); +void QFileDialog_ConnectFilesSelected(QtObjectPtr ptr); +void QFileDialog_DisconnectFilesSelected(QtObjectPtr ptr); +int QFileDialog_Filter(QtObjectPtr ptr); +void QFileDialog_ConnectFilterSelected(QtObjectPtr ptr); +void QFileDialog_DisconnectFilterSelected(QtObjectPtr ptr); +char* QFileDialog_QFileDialog_GetExistingDirectory(QtObjectPtr parent, char* caption, char* dir, int options); +char* QFileDialog_QFileDialog_GetExistingDirectoryUrl(QtObjectPtr parent, char* caption, char* dir, int options, char* supportedSchemes); +char* QFileDialog_QFileDialog_GetOpenFileName(QtObjectPtr parent, char* caption, char* dir, char* filter, char* selectedFilter, int options); +char* QFileDialog_QFileDialog_GetOpenFileNames(QtObjectPtr parent, char* caption, char* dir, char* filter, char* selectedFilter, int options); +char* QFileDialog_QFileDialog_GetOpenFileUrl(QtObjectPtr parent, char* caption, char* dir, char* filter, char* selectedFilter, int options, char* supportedSchemes); +char* QFileDialog_QFileDialog_GetSaveFileName(QtObjectPtr parent, char* caption, char* dir, char* filter, char* selectedFilter, int options); +char* QFileDialog_QFileDialog_GetSaveFileUrl(QtObjectPtr parent, char* caption, char* dir, char* filter, char* selectedFilter, int options, char* supportedSchemes); +char* QFileDialog_History(QtObjectPtr ptr); +QtObjectPtr QFileDialog_IconProvider(QtObjectPtr ptr); +QtObjectPtr QFileDialog_ItemDelegate(QtObjectPtr ptr); +char* QFileDialog_LabelText(QtObjectPtr ptr, int label); +char* QFileDialog_MimeTypeFilters(QtObjectPtr ptr); +char* QFileDialog_NameFilters(QtObjectPtr ptr); +void QFileDialog_Open(QtObjectPtr ptr, QtObjectPtr receiver, char* member); +QtObjectPtr QFileDialog_ProxyModel(QtObjectPtr ptr); +int QFileDialog_RestoreState(QtObjectPtr ptr, QtObjectPtr state); +void QFileDialog_SelectFile(QtObjectPtr ptr, char* filename); +void QFileDialog_SelectMimeTypeFilter(QtObjectPtr ptr, char* filter); +void QFileDialog_SelectNameFilter(QtObjectPtr ptr, char* filter); +void QFileDialog_SelectUrl(QtObjectPtr ptr, char* url); +char* QFileDialog_SelectedFiles(QtObjectPtr ptr); +char* QFileDialog_SelectedNameFilter(QtObjectPtr ptr); +void QFileDialog_SetDirectory2(QtObjectPtr ptr, QtObjectPtr directory); +void QFileDialog_SetDirectory(QtObjectPtr ptr, char* directory); +void QFileDialog_SetDirectoryUrl(QtObjectPtr ptr, char* directory); +void QFileDialog_SetFilter(QtObjectPtr ptr, int filters); +void QFileDialog_SetHistory(QtObjectPtr ptr, char* paths); +void QFileDialog_SetIconProvider(QtObjectPtr ptr, QtObjectPtr provider); +void QFileDialog_SetItemDelegate(QtObjectPtr ptr, QtObjectPtr delegate); +void QFileDialog_SetLabelText(QtObjectPtr ptr, int label, char* text); +void QFileDialog_SetMimeTypeFilters(QtObjectPtr ptr, char* filters); +void QFileDialog_SetNameFilter(QtObjectPtr ptr, char* filter); +void QFileDialog_SetNameFilters(QtObjectPtr ptr, char* filters); +void QFileDialog_SetOption(QtObjectPtr ptr, int option, int on); +void QFileDialog_SetProxyModel(QtObjectPtr ptr, QtObjectPtr proxyModel); +void QFileDialog_SetVisible(QtObjectPtr ptr, int visible); +int QFileDialog_TestOption(QtObjectPtr ptr, int option); +void QFileDialog_ConnectUrlSelected(QtObjectPtr ptr); +void QFileDialog_DisconnectUrlSelected(QtObjectPtr ptr); +void QFileDialog_DestroyQFileDialog(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qfileiconprovider.cpp b/widgets/qfileiconprovider.cpp new file mode 100755 index 00000000..fb3aa5e5 --- /dev/null +++ b/widgets/qfileiconprovider.cpp @@ -0,0 +1,34 @@ +#include "qfileiconprovider.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQFileIconProvider: public QFileIconProvider { +public: +}; + +QtObjectPtr QFileIconProvider_NewQFileIconProvider(){ + return new QFileIconProvider(); +} + +int QFileIconProvider_Options(QtObjectPtr ptr){ + return static_cast(ptr)->options(); +} + +void QFileIconProvider_SetOptions(QtObjectPtr ptr, int options){ + static_cast(ptr)->setOptions(static_cast(options)); +} + +char* QFileIconProvider_Type(QtObjectPtr ptr, QtObjectPtr info){ + return static_cast(ptr)->type(*static_cast(info)).toUtf8().data(); +} + +void QFileIconProvider_DestroyQFileIconProvider(QtObjectPtr ptr){ + static_cast(ptr)->~QFileIconProvider(); +} + diff --git a/widgets/qfileiconprovider.go b/widgets/qfileiconprovider.go new file mode 100755 index 00000000..f524929c --- /dev/null +++ b/widgets/qfileiconprovider.go @@ -0,0 +1,91 @@ +package widgets + +//#include "qfileiconprovider.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QFileIconProvider struct { + ptr unsafe.Pointer +} + +type QFileIconProviderITF interface { + QFileIconProviderPTR() *QFileIconProvider +} + +func (p *QFileIconProvider) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QFileIconProvider) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQFileIconProvider(ptr QFileIconProviderITF) unsafe.Pointer { + if ptr != nil { + return ptr.QFileIconProviderPTR().Pointer() + } + return nil +} + +func QFileIconProviderFromPointer(ptr unsafe.Pointer) *QFileIconProvider { + var n = new(QFileIconProvider) + n.SetPointer(ptr) + return n +} + +func (ptr *QFileIconProvider) QFileIconProviderPTR() *QFileIconProvider { + return ptr +} + +//QFileIconProvider::IconType +type QFileIconProvider__IconType int + +var ( + QFileIconProvider__Computer = QFileIconProvider__IconType(0) + QFileIconProvider__Desktop = QFileIconProvider__IconType(1) + QFileIconProvider__Trashcan = QFileIconProvider__IconType(2) + QFileIconProvider__Network = QFileIconProvider__IconType(3) + QFileIconProvider__Drive = QFileIconProvider__IconType(4) + QFileIconProvider__Folder = QFileIconProvider__IconType(5) + QFileIconProvider__File = QFileIconProvider__IconType(6) +) + +//QFileIconProvider::Option +type QFileIconProvider__Option int + +var ( + QFileIconProvider__DontUseCustomDirectoryIcons = QFileIconProvider__Option(0x00000001) +) + +func NewQFileIconProvider() *QFileIconProvider { + return QFileIconProviderFromPointer(unsafe.Pointer(C.QFileIconProvider_NewQFileIconProvider())) +} + +func (ptr *QFileIconProvider) Options() QFileIconProvider__Option { + if ptr.Pointer() != nil { + return QFileIconProvider__Option(C.QFileIconProvider_Options(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFileIconProvider) SetOptions(options QFileIconProvider__Option) { + if ptr.Pointer() != nil { + C.QFileIconProvider_SetOptions(C.QtObjectPtr(ptr.Pointer()), C.int(options)) + } +} + +func (ptr *QFileIconProvider) Type(info core.QFileInfoITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileIconProvider_Type(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQFileInfo(info)))) + } + return "" +} + +func (ptr *QFileIconProvider) DestroyQFileIconProvider() { + if ptr.Pointer() != nil { + C.QFileIconProvider_DestroyQFileIconProvider(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qfileiconprovider.h b/widgets/qfileiconprovider.h new file mode 100755 index 00000000..6489a8e0 --- /dev/null +++ b/widgets/qfileiconprovider.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QFileIconProvider_NewQFileIconProvider(); +int QFileIconProvider_Options(QtObjectPtr ptr); +void QFileIconProvider_SetOptions(QtObjectPtr ptr, int options); +char* QFileIconProvider_Type(QtObjectPtr ptr, QtObjectPtr info); +void QFileIconProvider_DestroyQFileIconProvider(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qfilesystemmodel.cpp b/widgets/qfilesystemmodel.cpp new file mode 100755 index 00000000..99ca316a --- /dev/null +++ b/widgets/qfilesystemmodel.cpp @@ -0,0 +1,212 @@ +#include "qfilesystemmodel.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQFileSystemModel: public QFileSystemModel { +public: +void Signal_DirectoryLoaded(const QString & path){callbackQFileSystemModelDirectoryLoaded(this->objectName().toUtf8().data(), path.toUtf8().data());}; +void Signal_FileRenamed(const QString & path, const QString & oldName, const QString & newName){callbackQFileSystemModelFileRenamed(this->objectName().toUtf8().data(), path.toUtf8().data(), oldName.toUtf8().data(), newName.toUtf8().data());}; +void Signal_RootPathChanged(const QString & newPath){callbackQFileSystemModelRootPathChanged(this->objectName().toUtf8().data(), newPath.toUtf8().data());}; +}; + +int QFileSystemModel_FilePathRole_Type(){ + return QFileSystemModel::FilePathRole; +} + +int QFileSystemModel_FileNameRole_Type(){ + return QFileSystemModel::FileNameRole; +} + +int QFileSystemModel_FilePermissions_Type(){ + return QFileSystemModel::FilePermissions; +} + +int QFileSystemModel_IsReadOnly(QtObjectPtr ptr){ + return static_cast(ptr)->isReadOnly(); +} + +int QFileSystemModel_NameFilterDisables(QtObjectPtr ptr){ + return static_cast(ptr)->nameFilterDisables(); +} + +int QFileSystemModel_ResolveSymlinks(QtObjectPtr ptr){ + return static_cast(ptr)->resolveSymlinks(); +} + +int QFileSystemModel_Rmdir(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->rmdir(*static_cast(index)); +} + +void QFileSystemModel_SetNameFilterDisables(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setNameFilterDisables(enable != 0); +} + +void QFileSystemModel_SetReadOnly(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setReadOnly(enable != 0); +} + +void QFileSystemModel_SetResolveSymlinks(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setResolveSymlinks(enable != 0); +} + +QtObjectPtr QFileSystemModel_NewQFileSystemModel(QtObjectPtr parent){ + return new QFileSystemModel(static_cast(parent)); +} + +int QFileSystemModel_CanFetchMore(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->canFetchMore(*static_cast(parent)); +} + +int QFileSystemModel_ColumnCount(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->columnCount(*static_cast(parent)); +} + +char* QFileSystemModel_Data(QtObjectPtr ptr, QtObjectPtr index, int role){ + return static_cast(ptr)->data(*static_cast(index), role).toString().toUtf8().data(); +} + +void QFileSystemModel_ConnectDirectoryLoaded(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QFileSystemModel::directoryLoaded), static_cast(ptr), static_cast(&MyQFileSystemModel::Signal_DirectoryLoaded));; +} + +void QFileSystemModel_DisconnectDirectoryLoaded(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QFileSystemModel::directoryLoaded), static_cast(ptr), static_cast(&MyQFileSystemModel::Signal_DirectoryLoaded));; +} + +int QFileSystemModel_DropMimeData(QtObjectPtr ptr, QtObjectPtr data, int action, int row, int column, QtObjectPtr parent){ + return static_cast(ptr)->dropMimeData(static_cast(data), static_cast(action), row, column, *static_cast(parent)); +} + +void QFileSystemModel_FetchMore(QtObjectPtr ptr, QtObjectPtr parent){ + static_cast(ptr)->fetchMore(*static_cast(parent)); +} + +char* QFileSystemModel_FileName(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->fileName(*static_cast(index)).toUtf8().data(); +} + +char* QFileSystemModel_FilePath(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->filePath(*static_cast(index)).toUtf8().data(); +} + +void QFileSystemModel_ConnectFileRenamed(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QFileSystemModel::fileRenamed), static_cast(ptr), static_cast(&MyQFileSystemModel::Signal_FileRenamed));; +} + +void QFileSystemModel_DisconnectFileRenamed(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QFileSystemModel::fileRenamed), static_cast(ptr), static_cast(&MyQFileSystemModel::Signal_FileRenamed));; +} + +int QFileSystemModel_Filter(QtObjectPtr ptr){ + return static_cast(ptr)->filter(); +} + +int QFileSystemModel_Flags(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->flags(*static_cast(index)); +} + +int QFileSystemModel_HasChildren(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->hasChildren(*static_cast(parent)); +} + +char* QFileSystemModel_HeaderData(QtObjectPtr ptr, int section, int orientation, int role){ + return static_cast(ptr)->headerData(section, static_cast(orientation), role).toString().toUtf8().data(); +} + +QtObjectPtr QFileSystemModel_IconProvider(QtObjectPtr ptr){ + return static_cast(ptr)->iconProvider(); +} + +QtObjectPtr QFileSystemModel_Index2(QtObjectPtr ptr, char* path, int column){ + return static_cast(ptr)->index(QString(path), column).internalPointer(); +} + +QtObjectPtr QFileSystemModel_Index(QtObjectPtr ptr, int row, int column, QtObjectPtr parent){ + return static_cast(ptr)->index(row, column, *static_cast(parent)).internalPointer(); +} + +int QFileSystemModel_IsDir(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->isDir(*static_cast(index)); +} + +char* QFileSystemModel_MimeTypes(QtObjectPtr ptr){ + return static_cast(ptr)->mimeTypes().join("|").toUtf8().data(); +} + +QtObjectPtr QFileSystemModel_Mkdir(QtObjectPtr ptr, QtObjectPtr parent, char* name){ + return static_cast(ptr)->mkdir(*static_cast(parent), QString(name)).internalPointer(); +} + +char* QFileSystemModel_MyComputer(QtObjectPtr ptr, int role){ + return static_cast(ptr)->myComputer(role).toString().toUtf8().data(); +} + +char* QFileSystemModel_NameFilters(QtObjectPtr ptr){ + return static_cast(ptr)->nameFilters().join("|").toUtf8().data(); +} + +QtObjectPtr QFileSystemModel_Parent(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->parent(*static_cast(index)).internalPointer(); +} + +char* QFileSystemModel_RootPath(QtObjectPtr ptr){ + return static_cast(ptr)->rootPath().toUtf8().data(); +} + +void QFileSystemModel_ConnectRootPathChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QFileSystemModel::rootPathChanged), static_cast(ptr), static_cast(&MyQFileSystemModel::Signal_RootPathChanged));; +} + +void QFileSystemModel_DisconnectRootPathChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QFileSystemModel::rootPathChanged), static_cast(ptr), static_cast(&MyQFileSystemModel::Signal_RootPathChanged));; +} + +int QFileSystemModel_RowCount(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->rowCount(*static_cast(parent)); +} + +int QFileSystemModel_SetData(QtObjectPtr ptr, QtObjectPtr idx, char* value, int role){ + return static_cast(ptr)->setData(*static_cast(idx), QVariant(value), role); +} + +void QFileSystemModel_SetFilter(QtObjectPtr ptr, int filters){ + static_cast(ptr)->setFilter(static_cast(filters)); +} + +void QFileSystemModel_SetIconProvider(QtObjectPtr ptr, QtObjectPtr provider){ + static_cast(ptr)->setIconProvider(static_cast(provider)); +} + +void QFileSystemModel_SetNameFilters(QtObjectPtr ptr, char* filters){ + static_cast(ptr)->setNameFilters(QString(filters).split("|", QString::SkipEmptyParts)); +} + +QtObjectPtr QFileSystemModel_SetRootPath(QtObjectPtr ptr, char* newPath){ + return static_cast(ptr)->setRootPath(QString(newPath)).internalPointer(); +} + +void QFileSystemModel_Sort(QtObjectPtr ptr, int column, int order){ + static_cast(ptr)->sort(column, static_cast(order)); +} + +int QFileSystemModel_SupportedDropActions(QtObjectPtr ptr){ + return static_cast(ptr)->supportedDropActions(); +} + +char* QFileSystemModel_Type(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->type(*static_cast(index)).toUtf8().data(); +} + +void QFileSystemModel_DestroyQFileSystemModel(QtObjectPtr ptr){ + static_cast(ptr)->~QFileSystemModel(); +} + diff --git a/widgets/qfilesystemmodel.go b/widgets/qfilesystemmodel.go new file mode 100755 index 00000000..bbd53ca3 --- /dev/null +++ b/widgets/qfilesystemmodel.go @@ -0,0 +1,368 @@ +package widgets + +//#include "qfilesystemmodel.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QFileSystemModel struct { + core.QAbstractItemModel +} + +type QFileSystemModelITF interface { + core.QAbstractItemModelITF + QFileSystemModelPTR() *QFileSystemModel +} + +func PointerFromQFileSystemModel(ptr QFileSystemModelITF) unsafe.Pointer { + if ptr != nil { + return ptr.QFileSystemModelPTR().Pointer() + } + return nil +} + +func QFileSystemModelFromPointer(ptr unsafe.Pointer) *QFileSystemModel { + var n = new(QFileSystemModel) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QFileSystemModel_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QFileSystemModel) QFileSystemModelPTR() *QFileSystemModel { + return ptr +} + +//QFileSystemModel::Roles +type QFileSystemModel__Roles int + +var ( + QFileSystemModel__FileIconRole = QFileSystemModel__Roles(core.Qt__DecorationRole) + QFileSystemModel__FilePathRole = QFileSystemModel__Roles(C.QFileSystemModel_FilePathRole_Type()) + QFileSystemModel__FileNameRole = QFileSystemModel__Roles(C.QFileSystemModel_FileNameRole_Type()) + QFileSystemModel__FilePermissions = QFileSystemModel__Roles(C.QFileSystemModel_FilePermissions_Type()) +) + +func (ptr *QFileSystemModel) IsReadOnly() bool { + if ptr.Pointer() != nil { + return C.QFileSystemModel_IsReadOnly(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFileSystemModel) NameFilterDisables() bool { + if ptr.Pointer() != nil { + return C.QFileSystemModel_NameFilterDisables(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFileSystemModel) ResolveSymlinks() bool { + if ptr.Pointer() != nil { + return C.QFileSystemModel_ResolveSymlinks(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFileSystemModel) Rmdir(index core.QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QFileSystemModel_Rmdir(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index))) != 0 + } + return false +} + +func (ptr *QFileSystemModel) SetNameFilterDisables(enable bool) { + if ptr.Pointer() != nil { + C.QFileSystemModel_SetNameFilterDisables(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QFileSystemModel) SetReadOnly(enable bool) { + if ptr.Pointer() != nil { + C.QFileSystemModel_SetReadOnly(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QFileSystemModel) SetResolveSymlinks(enable bool) { + if ptr.Pointer() != nil { + C.QFileSystemModel_SetResolveSymlinks(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func NewQFileSystemModel(parent core.QObjectITF) *QFileSystemModel { + return QFileSystemModelFromPointer(unsafe.Pointer(C.QFileSystemModel_NewQFileSystemModel(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QFileSystemModel) CanFetchMore(parent core.QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QFileSystemModel_CanFetchMore(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QFileSystemModel) ColumnCount(parent core.QModelIndexITF) int { + if ptr.Pointer() != nil { + return int(C.QFileSystemModel_ColumnCount(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(parent)))) + } + return 0 +} + +func (ptr *QFileSystemModel) Data(index core.QModelIndexITF, role int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileSystemModel_Data(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index)), C.int(role))) + } + return "" +} + +func (ptr *QFileSystemModel) ConnectDirectoryLoaded(f func(path string)) { + if ptr.Pointer() != nil { + C.QFileSystemModel_ConnectDirectoryLoaded(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "directoryLoaded", f) + } +} + +func (ptr *QFileSystemModel) DisconnectDirectoryLoaded() { + if ptr.Pointer() != nil { + C.QFileSystemModel_DisconnectDirectoryLoaded(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "directoryLoaded") + } +} + +//export callbackQFileSystemModelDirectoryLoaded +func callbackQFileSystemModelDirectoryLoaded(ptrName *C.char, path *C.char) { + qt.GetSignal(C.GoString(ptrName), "directoryLoaded").(func(string))(C.GoString(path)) +} + +func (ptr *QFileSystemModel) DropMimeData(data core.QMimeDataITF, action core.Qt__DropAction, row int, column int, parent core.QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QFileSystemModel_DropMimeData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQMimeData(data)), C.int(action), C.int(row), C.int(column), C.QtObjectPtr(core.PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QFileSystemModel) FetchMore(parent core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QFileSystemModel_FetchMore(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(parent))) + } +} + +func (ptr *QFileSystemModel) FileName(index core.QModelIndexITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileSystemModel_FileName(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index)))) + } + return "" +} + +func (ptr *QFileSystemModel) FilePath(index core.QModelIndexITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileSystemModel_FilePath(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index)))) + } + return "" +} + +func (ptr *QFileSystemModel) ConnectFileRenamed(f func(path string, oldName string, newName string)) { + if ptr.Pointer() != nil { + C.QFileSystemModel_ConnectFileRenamed(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "fileRenamed", f) + } +} + +func (ptr *QFileSystemModel) DisconnectFileRenamed() { + if ptr.Pointer() != nil { + C.QFileSystemModel_DisconnectFileRenamed(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "fileRenamed") + } +} + +//export callbackQFileSystemModelFileRenamed +func callbackQFileSystemModelFileRenamed(ptrName *C.char, path *C.char, oldName *C.char, newName *C.char) { + qt.GetSignal(C.GoString(ptrName), "fileRenamed").(func(string, string, string))(C.GoString(path), C.GoString(oldName), C.GoString(newName)) +} + +func (ptr *QFileSystemModel) Filter() core.QDir__Filter { + if ptr.Pointer() != nil { + return core.QDir__Filter(C.QFileSystemModel_Filter(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFileSystemModel) Flags(index core.QModelIndexITF) core.Qt__ItemFlag { + if ptr.Pointer() != nil { + return core.Qt__ItemFlag(C.QFileSystemModel_Flags(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index)))) + } + return 0 +} + +func (ptr *QFileSystemModel) HasChildren(parent core.QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QFileSystemModel_HasChildren(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QFileSystemModel) HeaderData(section int, orientation core.Qt__Orientation, role int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileSystemModel_HeaderData(C.QtObjectPtr(ptr.Pointer()), C.int(section), C.int(orientation), C.int(role))) + } + return "" +} + +func (ptr *QFileSystemModel) IconProvider() *QFileIconProvider { + if ptr.Pointer() != nil { + return QFileIconProviderFromPointer(unsafe.Pointer(C.QFileSystemModel_IconProvider(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QFileSystemModel) Index2(path string, column int) *core.QModelIndex { + if ptr.Pointer() != nil { + return core.QModelIndexFromPointer(unsafe.Pointer(C.QFileSystemModel_Index2(C.QtObjectPtr(ptr.Pointer()), C.CString(path), C.int(column)))) + } + return nil +} + +func (ptr *QFileSystemModel) Index(row int, column int, parent core.QModelIndexITF) *core.QModelIndex { + if ptr.Pointer() != nil { + return core.QModelIndexFromPointer(unsafe.Pointer(C.QFileSystemModel_Index(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column), C.QtObjectPtr(core.PointerFromQModelIndex(parent))))) + } + return nil +} + +func (ptr *QFileSystemModel) IsDir(index core.QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QFileSystemModel_IsDir(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index))) != 0 + } + return false +} + +func (ptr *QFileSystemModel) MimeTypes() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QFileSystemModel_MimeTypes(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QFileSystemModel) Mkdir(parent core.QModelIndexITF, name string) *core.QModelIndex { + if ptr.Pointer() != nil { + return core.QModelIndexFromPointer(unsafe.Pointer(C.QFileSystemModel_Mkdir(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(parent)), C.CString(name)))) + } + return nil +} + +func (ptr *QFileSystemModel) MyComputer(role int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileSystemModel_MyComputer(C.QtObjectPtr(ptr.Pointer()), C.int(role))) + } + return "" +} + +func (ptr *QFileSystemModel) NameFilters() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QFileSystemModel_NameFilters(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QFileSystemModel) Parent(index core.QModelIndexITF) *core.QModelIndex { + if ptr.Pointer() != nil { + return core.QModelIndexFromPointer(unsafe.Pointer(C.QFileSystemModel_Parent(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index))))) + } + return nil +} + +func (ptr *QFileSystemModel) RootPath() string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileSystemModel_RootPath(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QFileSystemModel) ConnectRootPathChanged(f func(newPath string)) { + if ptr.Pointer() != nil { + C.QFileSystemModel_ConnectRootPathChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "rootPathChanged", f) + } +} + +func (ptr *QFileSystemModel) DisconnectRootPathChanged() { + if ptr.Pointer() != nil { + C.QFileSystemModel_DisconnectRootPathChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "rootPathChanged") + } +} + +//export callbackQFileSystemModelRootPathChanged +func callbackQFileSystemModelRootPathChanged(ptrName *C.char, newPath *C.char) { + qt.GetSignal(C.GoString(ptrName), "rootPathChanged").(func(string))(C.GoString(newPath)) +} + +func (ptr *QFileSystemModel) RowCount(parent core.QModelIndexITF) int { + if ptr.Pointer() != nil { + return int(C.QFileSystemModel_RowCount(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(parent)))) + } + return 0 +} + +func (ptr *QFileSystemModel) SetData(idx core.QModelIndexITF, value string, role int) bool { + if ptr.Pointer() != nil { + return C.QFileSystemModel_SetData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(idx)), C.CString(value), C.int(role)) != 0 + } + return false +} + +func (ptr *QFileSystemModel) SetFilter(filters core.QDir__Filter) { + if ptr.Pointer() != nil { + C.QFileSystemModel_SetFilter(C.QtObjectPtr(ptr.Pointer()), C.int(filters)) + } +} + +func (ptr *QFileSystemModel) SetIconProvider(provider QFileIconProviderITF) { + if ptr.Pointer() != nil { + C.QFileSystemModel_SetIconProvider(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQFileIconProvider(provider))) + } +} + +func (ptr *QFileSystemModel) SetNameFilters(filters []string) { + if ptr.Pointer() != nil { + C.QFileSystemModel_SetNameFilters(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(filters, "|"))) + } +} + +func (ptr *QFileSystemModel) SetRootPath(newPath string) *core.QModelIndex { + if ptr.Pointer() != nil { + return core.QModelIndexFromPointer(unsafe.Pointer(C.QFileSystemModel_SetRootPath(C.QtObjectPtr(ptr.Pointer()), C.CString(newPath)))) + } + return nil +} + +func (ptr *QFileSystemModel) Sort(column int, order core.Qt__SortOrder) { + if ptr.Pointer() != nil { + C.QFileSystemModel_Sort(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(order)) + } +} + +func (ptr *QFileSystemModel) SupportedDropActions() core.Qt__DropAction { + if ptr.Pointer() != nil { + return core.Qt__DropAction(C.QFileSystemModel_SupportedDropActions(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFileSystemModel) Type(index core.QModelIndexITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QFileSystemModel_Type(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index)))) + } + return "" +} + +func (ptr *QFileSystemModel) DestroyQFileSystemModel() { + if ptr.Pointer() != nil { + C.QFileSystemModel_DestroyQFileSystemModel(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qfilesystemmodel.h b/widgets/qfilesystemmodel.h new file mode 100755 index 00000000..7ee97b86 --- /dev/null +++ b/widgets/qfilesystemmodel.h @@ -0,0 +1,57 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QFileSystemModel_FilePathRole_Type(); +int QFileSystemModel_FileNameRole_Type(); +int QFileSystemModel_FilePermissions_Type(); +int QFileSystemModel_IsReadOnly(QtObjectPtr ptr); +int QFileSystemModel_NameFilterDisables(QtObjectPtr ptr); +int QFileSystemModel_ResolveSymlinks(QtObjectPtr ptr); +int QFileSystemModel_Rmdir(QtObjectPtr ptr, QtObjectPtr index); +void QFileSystemModel_SetNameFilterDisables(QtObjectPtr ptr, int enable); +void QFileSystemModel_SetReadOnly(QtObjectPtr ptr, int enable); +void QFileSystemModel_SetResolveSymlinks(QtObjectPtr ptr, int enable); +QtObjectPtr QFileSystemModel_NewQFileSystemModel(QtObjectPtr parent); +int QFileSystemModel_CanFetchMore(QtObjectPtr ptr, QtObjectPtr parent); +int QFileSystemModel_ColumnCount(QtObjectPtr ptr, QtObjectPtr parent); +char* QFileSystemModel_Data(QtObjectPtr ptr, QtObjectPtr index, int role); +void QFileSystemModel_ConnectDirectoryLoaded(QtObjectPtr ptr); +void QFileSystemModel_DisconnectDirectoryLoaded(QtObjectPtr ptr); +int QFileSystemModel_DropMimeData(QtObjectPtr ptr, QtObjectPtr data, int action, int row, int column, QtObjectPtr parent); +void QFileSystemModel_FetchMore(QtObjectPtr ptr, QtObjectPtr parent); +char* QFileSystemModel_FileName(QtObjectPtr ptr, QtObjectPtr index); +char* QFileSystemModel_FilePath(QtObjectPtr ptr, QtObjectPtr index); +void QFileSystemModel_ConnectFileRenamed(QtObjectPtr ptr); +void QFileSystemModel_DisconnectFileRenamed(QtObjectPtr ptr); +int QFileSystemModel_Filter(QtObjectPtr ptr); +int QFileSystemModel_Flags(QtObjectPtr ptr, QtObjectPtr index); +int QFileSystemModel_HasChildren(QtObjectPtr ptr, QtObjectPtr parent); +char* QFileSystemModel_HeaderData(QtObjectPtr ptr, int section, int orientation, int role); +QtObjectPtr QFileSystemModel_IconProvider(QtObjectPtr ptr); +QtObjectPtr QFileSystemModel_Index2(QtObjectPtr ptr, char* path, int column); +QtObjectPtr QFileSystemModel_Index(QtObjectPtr ptr, int row, int column, QtObjectPtr parent); +int QFileSystemModel_IsDir(QtObjectPtr ptr, QtObjectPtr index); +char* QFileSystemModel_MimeTypes(QtObjectPtr ptr); +QtObjectPtr QFileSystemModel_Mkdir(QtObjectPtr ptr, QtObjectPtr parent, char* name); +char* QFileSystemModel_MyComputer(QtObjectPtr ptr, int role); +char* QFileSystemModel_NameFilters(QtObjectPtr ptr); +QtObjectPtr QFileSystemModel_Parent(QtObjectPtr ptr, QtObjectPtr index); +char* QFileSystemModel_RootPath(QtObjectPtr ptr); +void QFileSystemModel_ConnectRootPathChanged(QtObjectPtr ptr); +void QFileSystemModel_DisconnectRootPathChanged(QtObjectPtr ptr); +int QFileSystemModel_RowCount(QtObjectPtr ptr, QtObjectPtr parent); +int QFileSystemModel_SetData(QtObjectPtr ptr, QtObjectPtr idx, char* value, int role); +void QFileSystemModel_SetFilter(QtObjectPtr ptr, int filters); +void QFileSystemModel_SetIconProvider(QtObjectPtr ptr, QtObjectPtr provider); +void QFileSystemModel_SetNameFilters(QtObjectPtr ptr, char* filters); +QtObjectPtr QFileSystemModel_SetRootPath(QtObjectPtr ptr, char* newPath); +void QFileSystemModel_Sort(QtObjectPtr ptr, int column, int order); +int QFileSystemModel_SupportedDropActions(QtObjectPtr ptr); +char* QFileSystemModel_Type(QtObjectPtr ptr, QtObjectPtr index); +void QFileSystemModel_DestroyQFileSystemModel(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qfocusframe.cpp b/widgets/qfocusframe.cpp new file mode 100755 index 00000000..c51773c3 --- /dev/null +++ b/widgets/qfocusframe.cpp @@ -0,0 +1,29 @@ +#include "qfocusframe.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQFocusFrame: public QFocusFrame { +public: +}; + +QtObjectPtr QFocusFrame_NewQFocusFrame(QtObjectPtr parent){ + return new QFocusFrame(static_cast(parent)); +} + +void QFocusFrame_SetWidget(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->setWidget(static_cast(widget)); +} + +QtObjectPtr QFocusFrame_Widget(QtObjectPtr ptr){ + return static_cast(ptr)->widget(); +} + +void QFocusFrame_DestroyQFocusFrame(QtObjectPtr ptr){ + static_cast(ptr)->~QFocusFrame(); +} + diff --git a/widgets/qfocusframe.go b/widgets/qfocusframe.go new file mode 100755 index 00000000..3ad459b2 --- /dev/null +++ b/widgets/qfocusframe.go @@ -0,0 +1,61 @@ +package widgets + +//#include "qfocusframe.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QFocusFrame struct { + QWidget +} + +type QFocusFrameITF interface { + QWidgetITF + QFocusFramePTR() *QFocusFrame +} + +func PointerFromQFocusFrame(ptr QFocusFrameITF) unsafe.Pointer { + if ptr != nil { + return ptr.QFocusFramePTR().Pointer() + } + return nil +} + +func QFocusFrameFromPointer(ptr unsafe.Pointer) *QFocusFrame { + var n = new(QFocusFrame) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QFocusFrame_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QFocusFrame) QFocusFramePTR() *QFocusFrame { + return ptr +} + +func NewQFocusFrame(parent QWidgetITF) *QFocusFrame { + return QFocusFrameFromPointer(unsafe.Pointer(C.QFocusFrame_NewQFocusFrame(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QFocusFrame) SetWidget(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QFocusFrame_SetWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QFocusFrame) Widget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QFocusFrame_Widget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QFocusFrame) DestroyQFocusFrame() { + if ptr.Pointer() != nil { + C.QFocusFrame_DestroyQFocusFrame(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qfocusframe.h b/widgets/qfocusframe.h new file mode 100755 index 00000000..b52213ea --- /dev/null +++ b/widgets/qfocusframe.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QFocusFrame_NewQFocusFrame(QtObjectPtr parent); +void QFocusFrame_SetWidget(QtObjectPtr ptr, QtObjectPtr widget); +QtObjectPtr QFocusFrame_Widget(QtObjectPtr ptr); +void QFocusFrame_DestroyQFocusFrame(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qfontcombobox.cpp b/widgets/qfontcombobox.cpp new file mode 100755 index 00000000..a06ded61 --- /dev/null +++ b/widgets/qfontcombobox.cpp @@ -0,0 +1,44 @@ +#include "qfontcombobox.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQFontComboBox: public QFontComboBox { +public: +}; + +int QFontComboBox_FontFilters(QtObjectPtr ptr){ + return static_cast(ptr)->fontFilters(); +} + +void QFontComboBox_SetCurrentFont(QtObjectPtr ptr, QtObjectPtr font){ + QMetaObject::invokeMethod(static_cast(ptr), "setCurrentFont", Q_ARG(QFont, *static_cast(font))); +} + +void QFontComboBox_SetFontFilters(QtObjectPtr ptr, int filters){ + static_cast(ptr)->setFontFilters(static_cast(filters)); +} + +void QFontComboBox_SetWritingSystem(QtObjectPtr ptr, int script){ + static_cast(ptr)->setWritingSystem(static_cast(script)); +} + +int QFontComboBox_WritingSystem(QtObjectPtr ptr){ + return static_cast(ptr)->writingSystem(); +} + +QtObjectPtr QFontComboBox_NewQFontComboBox(QtObjectPtr parent){ + return new QFontComboBox(static_cast(parent)); +} + +void QFontComboBox_DestroyQFontComboBox(QtObjectPtr ptr){ + static_cast(ptr)->~QFontComboBox(); +} + diff --git a/widgets/qfontcombobox.go b/widgets/qfontcombobox.go new file mode 100755 index 00000000..0be73e25 --- /dev/null +++ b/widgets/qfontcombobox.go @@ -0,0 +1,92 @@ +package widgets + +//#include "qfontcombobox.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QFontComboBox struct { + QComboBox +} + +type QFontComboBoxITF interface { + QComboBoxITF + QFontComboBoxPTR() *QFontComboBox +} + +func PointerFromQFontComboBox(ptr QFontComboBoxITF) unsafe.Pointer { + if ptr != nil { + return ptr.QFontComboBoxPTR().Pointer() + } + return nil +} + +func QFontComboBoxFromPointer(ptr unsafe.Pointer) *QFontComboBox { + var n = new(QFontComboBox) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QFontComboBox_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QFontComboBox) QFontComboBoxPTR() *QFontComboBox { + return ptr +} + +//QFontComboBox::FontFilter +type QFontComboBox__FontFilter int + +var ( + QFontComboBox__AllFonts = QFontComboBox__FontFilter(0) + QFontComboBox__ScalableFonts = QFontComboBox__FontFilter(0x1) + QFontComboBox__NonScalableFonts = QFontComboBox__FontFilter(0x2) + QFontComboBox__MonospacedFonts = QFontComboBox__FontFilter(0x4) + QFontComboBox__ProportionalFonts = QFontComboBox__FontFilter(0x8) +) + +func (ptr *QFontComboBox) FontFilters() QFontComboBox__FontFilter { + if ptr.Pointer() != nil { + return QFontComboBox__FontFilter(C.QFontComboBox_FontFilters(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFontComboBox) SetCurrentFont(font gui.QFontITF) { + if ptr.Pointer() != nil { + C.QFontComboBox_SetCurrentFont(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQFont(font))) + } +} + +func (ptr *QFontComboBox) SetFontFilters(filters QFontComboBox__FontFilter) { + if ptr.Pointer() != nil { + C.QFontComboBox_SetFontFilters(C.QtObjectPtr(ptr.Pointer()), C.int(filters)) + } +} + +func (ptr *QFontComboBox) SetWritingSystem(script gui.QFontDatabase__WritingSystem) { + if ptr.Pointer() != nil { + C.QFontComboBox_SetWritingSystem(C.QtObjectPtr(ptr.Pointer()), C.int(script)) + } +} + +func (ptr *QFontComboBox) WritingSystem() gui.QFontDatabase__WritingSystem { + if ptr.Pointer() != nil { + return gui.QFontDatabase__WritingSystem(C.QFontComboBox_WritingSystem(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQFontComboBox(parent QWidgetITF) *QFontComboBox { + return QFontComboBoxFromPointer(unsafe.Pointer(C.QFontComboBox_NewQFontComboBox(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QFontComboBox) DestroyQFontComboBox() { + if ptr.Pointer() != nil { + C.QFontComboBox_DestroyQFontComboBox(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qfontcombobox.h b/widgets/qfontcombobox.h new file mode 100755 index 00000000..aa416b21 --- /dev/null +++ b/widgets/qfontcombobox.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QFontComboBox_FontFilters(QtObjectPtr ptr); +void QFontComboBox_SetCurrentFont(QtObjectPtr ptr, QtObjectPtr font); +void QFontComboBox_SetFontFilters(QtObjectPtr ptr, int filters); +void QFontComboBox_SetWritingSystem(QtObjectPtr ptr, int script); +int QFontComboBox_WritingSystem(QtObjectPtr ptr); +QtObjectPtr QFontComboBox_NewQFontComboBox(QtObjectPtr parent); +void QFontComboBox_DestroyQFontComboBox(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qfontdialog.cpp b/widgets/qfontdialog.cpp new file mode 100755 index 00000000..52ba8feb --- /dev/null +++ b/widgets/qfontdialog.cpp @@ -0,0 +1,51 @@ +#include "qfontdialog.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQFontDialog: public QFontDialog { +public: +}; + +int QFontDialog_Options(QtObjectPtr ptr){ + return static_cast(ptr)->options(); +} + +void QFontDialog_SetOptions(QtObjectPtr ptr, int options){ + static_cast(ptr)->setOptions(static_cast(options)); +} + +QtObjectPtr QFontDialog_NewQFontDialog(QtObjectPtr parent){ + return new QFontDialog(static_cast(parent)); +} + +QtObjectPtr QFontDialog_NewQFontDialog2(QtObjectPtr initial, QtObjectPtr parent){ + return new QFontDialog(*static_cast(initial), static_cast(parent)); +} + +void QFontDialog_Open(QtObjectPtr ptr, QtObjectPtr receiver, char* member){ + static_cast(ptr)->open(static_cast(receiver), const_cast(member)); +} + +void QFontDialog_SetCurrentFont(QtObjectPtr ptr, QtObjectPtr font){ + static_cast(ptr)->setCurrentFont(*static_cast(font)); +} + +void QFontDialog_SetOption(QtObjectPtr ptr, int option, int on){ + static_cast(ptr)->setOption(static_cast(option), on != 0); +} + +void QFontDialog_SetVisible(QtObjectPtr ptr, int visible){ + static_cast(ptr)->setVisible(visible != 0); +} + +int QFontDialog_TestOption(QtObjectPtr ptr, int option){ + return static_cast(ptr)->testOption(static_cast(option)); +} + diff --git a/widgets/qfontdialog.go b/widgets/qfontdialog.go new file mode 100755 index 00000000..22200f45 --- /dev/null +++ b/widgets/qfontdialog.go @@ -0,0 +1,103 @@ +package widgets + +//#include "qfontdialog.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QFontDialog struct { + QDialog +} + +type QFontDialogITF interface { + QDialogITF + QFontDialogPTR() *QFontDialog +} + +func PointerFromQFontDialog(ptr QFontDialogITF) unsafe.Pointer { + if ptr != nil { + return ptr.QFontDialogPTR().Pointer() + } + return nil +} + +func QFontDialogFromPointer(ptr unsafe.Pointer) *QFontDialog { + var n = new(QFontDialog) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QFontDialog_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QFontDialog) QFontDialogPTR() *QFontDialog { + return ptr +} + +//QFontDialog::FontDialogOption +type QFontDialog__FontDialogOption int + +var ( + QFontDialog__NoButtons = QFontDialog__FontDialogOption(0x00000001) + QFontDialog__DontUseNativeDialog = QFontDialog__FontDialogOption(0x00000002) + QFontDialog__ScalableFonts = QFontDialog__FontDialogOption(0x00000004) + QFontDialog__NonScalableFonts = QFontDialog__FontDialogOption(0x00000008) + QFontDialog__MonospacedFonts = QFontDialog__FontDialogOption(0x00000010) + QFontDialog__ProportionalFonts = QFontDialog__FontDialogOption(0x00000020) +) + +func (ptr *QFontDialog) Options() QFontDialog__FontDialogOption { + if ptr.Pointer() != nil { + return QFontDialog__FontDialogOption(C.QFontDialog_Options(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFontDialog) SetOptions(options QFontDialog__FontDialogOption) { + if ptr.Pointer() != nil { + C.QFontDialog_SetOptions(C.QtObjectPtr(ptr.Pointer()), C.int(options)) + } +} + +func NewQFontDialog(parent QWidgetITF) *QFontDialog { + return QFontDialogFromPointer(unsafe.Pointer(C.QFontDialog_NewQFontDialog(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQFontDialog2(initial gui.QFontITF, parent QWidgetITF) *QFontDialog { + return QFontDialogFromPointer(unsafe.Pointer(C.QFontDialog_NewQFontDialog2(C.QtObjectPtr(gui.PointerFromQFont(initial)), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QFontDialog) Open(receiver core.QObjectITF, member string) { + if ptr.Pointer() != nil { + C.QFontDialog_Open(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(receiver)), C.CString(member)) + } +} + +func (ptr *QFontDialog) SetCurrentFont(font gui.QFontITF) { + if ptr.Pointer() != nil { + C.QFontDialog_SetCurrentFont(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQFont(font))) + } +} + +func (ptr *QFontDialog) SetOption(option QFontDialog__FontDialogOption, on bool) { + if ptr.Pointer() != nil { + C.QFontDialog_SetOption(C.QtObjectPtr(ptr.Pointer()), C.int(option), C.int(qt.GoBoolToInt(on))) + } +} + +func (ptr *QFontDialog) SetVisible(visible bool) { + if ptr.Pointer() != nil { + C.QFontDialog_SetVisible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(visible))) + } +} + +func (ptr *QFontDialog) TestOption(option QFontDialog__FontDialogOption) bool { + if ptr.Pointer() != nil { + return C.QFontDialog_TestOption(C.QtObjectPtr(ptr.Pointer()), C.int(option)) != 0 + } + return false +} diff --git a/widgets/qfontdialog.h b/widgets/qfontdialog.h new file mode 100755 index 00000000..2193e1c8 --- /dev/null +++ b/widgets/qfontdialog.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QFontDialog_Options(QtObjectPtr ptr); +void QFontDialog_SetOptions(QtObjectPtr ptr, int options); +QtObjectPtr QFontDialog_NewQFontDialog(QtObjectPtr parent); +QtObjectPtr QFontDialog_NewQFontDialog2(QtObjectPtr initial, QtObjectPtr parent); +void QFontDialog_Open(QtObjectPtr ptr, QtObjectPtr receiver, char* member); +void QFontDialog_SetCurrentFont(QtObjectPtr ptr, QtObjectPtr font); +void QFontDialog_SetOption(QtObjectPtr ptr, int option, int on); +void QFontDialog_SetVisible(QtObjectPtr ptr, int visible); +int QFontDialog_TestOption(QtObjectPtr ptr, int option); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qformlayout.cpp b/widgets/qformlayout.cpp new file mode 100755 index 00000000..0228da41 --- /dev/null +++ b/widgets/qformlayout.cpp @@ -0,0 +1,192 @@ +#include "qformlayout.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQFormLayout: public QFormLayout { +public: +}; + +int QFormLayout_FieldGrowthPolicy(QtObjectPtr ptr){ + return static_cast(ptr)->fieldGrowthPolicy(); +} + +int QFormLayout_FormAlignment(QtObjectPtr ptr){ + return static_cast(ptr)->formAlignment(); +} + +int QFormLayout_HorizontalSpacing(QtObjectPtr ptr){ + return static_cast(ptr)->horizontalSpacing(); +} + +int QFormLayout_LabelAlignment(QtObjectPtr ptr){ + return static_cast(ptr)->labelAlignment(); +} + +int QFormLayout_RowWrapPolicy(QtObjectPtr ptr){ + return static_cast(ptr)->rowWrapPolicy(); +} + +void QFormLayout_SetFieldGrowthPolicy(QtObjectPtr ptr, int policy){ + static_cast(ptr)->setFieldGrowthPolicy(static_cast(policy)); +} + +void QFormLayout_SetFormAlignment(QtObjectPtr ptr, int alignment){ + static_cast(ptr)->setFormAlignment(static_cast(alignment)); +} + +void QFormLayout_SetHorizontalSpacing(QtObjectPtr ptr, int spacing){ + static_cast(ptr)->setHorizontalSpacing(spacing); +} + +void QFormLayout_SetLabelAlignment(QtObjectPtr ptr, int alignment){ + static_cast(ptr)->setLabelAlignment(static_cast(alignment)); +} + +void QFormLayout_SetRowWrapPolicy(QtObjectPtr ptr, int policy){ + static_cast(ptr)->setRowWrapPolicy(static_cast(policy)); +} + +void QFormLayout_SetVerticalSpacing(QtObjectPtr ptr, int spacing){ + static_cast(ptr)->setVerticalSpacing(spacing); +} + +int QFormLayout_VerticalSpacing(QtObjectPtr ptr){ + return static_cast(ptr)->verticalSpacing(); +} + +QtObjectPtr QFormLayout_NewQFormLayout(QtObjectPtr parent){ + return new QFormLayout(static_cast(parent)); +} + +void QFormLayout_AddItem(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->addItem(static_cast(item)); +} + +void QFormLayout_AddRow6(QtObjectPtr ptr, QtObjectPtr layout){ + static_cast(ptr)->addRow(static_cast(layout)); +} + +void QFormLayout_AddRow2(QtObjectPtr ptr, QtObjectPtr label, QtObjectPtr field){ + static_cast(ptr)->addRow(static_cast(label), static_cast(field)); +} + +void QFormLayout_AddRow(QtObjectPtr ptr, QtObjectPtr label, QtObjectPtr field){ + static_cast(ptr)->addRow(static_cast(label), static_cast(field)); +} + +void QFormLayout_AddRow5(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->addRow(static_cast(widget)); +} + +void QFormLayout_AddRow4(QtObjectPtr ptr, char* labelText, QtObjectPtr field){ + static_cast(ptr)->addRow(QString(labelText), static_cast(field)); +} + +void QFormLayout_AddRow3(QtObjectPtr ptr, char* labelText, QtObjectPtr field){ + static_cast(ptr)->addRow(QString(labelText), static_cast(field)); +} + +int QFormLayout_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +int QFormLayout_ExpandingDirections(QtObjectPtr ptr){ + return static_cast(ptr)->expandingDirections(); +} + +int QFormLayout_HasHeightForWidth(QtObjectPtr ptr){ + return static_cast(ptr)->hasHeightForWidth(); +} + +int QFormLayout_HeightForWidth(QtObjectPtr ptr, int width){ + return static_cast(ptr)->heightForWidth(width); +} + +void QFormLayout_InsertRow6(QtObjectPtr ptr, int row, QtObjectPtr layout){ + static_cast(ptr)->insertRow(row, static_cast(layout)); +} + +void QFormLayout_InsertRow2(QtObjectPtr ptr, int row, QtObjectPtr label, QtObjectPtr field){ + static_cast(ptr)->insertRow(row, static_cast(label), static_cast(field)); +} + +void QFormLayout_InsertRow(QtObjectPtr ptr, int row, QtObjectPtr label, QtObjectPtr field){ + static_cast(ptr)->insertRow(row, static_cast(label), static_cast(field)); +} + +void QFormLayout_InsertRow5(QtObjectPtr ptr, int row, QtObjectPtr widget){ + static_cast(ptr)->insertRow(row, static_cast(widget)); +} + +void QFormLayout_InsertRow4(QtObjectPtr ptr, int row, char* labelText, QtObjectPtr field){ + static_cast(ptr)->insertRow(row, QString(labelText), static_cast(field)); +} + +void QFormLayout_InsertRow3(QtObjectPtr ptr, int row, char* labelText, QtObjectPtr field){ + static_cast(ptr)->insertRow(row, QString(labelText), static_cast(field)); +} + +void QFormLayout_Invalidate(QtObjectPtr ptr){ + static_cast(ptr)->invalidate(); +} + +QtObjectPtr QFormLayout_ItemAt2(QtObjectPtr ptr, int index){ + return static_cast(ptr)->itemAt(index); +} + +QtObjectPtr QFormLayout_ItemAt(QtObjectPtr ptr, int row, int role){ + return static_cast(ptr)->itemAt(row, static_cast(role)); +} + +QtObjectPtr QFormLayout_LabelForField2(QtObjectPtr ptr, QtObjectPtr field){ + return static_cast(ptr)->labelForField(static_cast(field)); +} + +QtObjectPtr QFormLayout_LabelForField(QtObjectPtr ptr, QtObjectPtr field){ + return static_cast(ptr)->labelForField(static_cast(field)); +} + +int QFormLayout_RowCount(QtObjectPtr ptr){ + return static_cast(ptr)->rowCount(); +} + +void QFormLayout_SetGeometry(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->setGeometry(*static_cast(rect)); +} + +void QFormLayout_SetItem(QtObjectPtr ptr, int row, int role, QtObjectPtr item){ + static_cast(ptr)->setItem(row, static_cast(role), static_cast(item)); +} + +void QFormLayout_SetLayout(QtObjectPtr ptr, int row, int role, QtObjectPtr layout){ + static_cast(ptr)->setLayout(row, static_cast(role), static_cast(layout)); +} + +void QFormLayout_SetSpacing(QtObjectPtr ptr, int spacing){ + static_cast(ptr)->setSpacing(spacing); +} + +void QFormLayout_SetWidget(QtObjectPtr ptr, int row, int role, QtObjectPtr widget){ + static_cast(ptr)->setWidget(row, static_cast(role), static_cast(widget)); +} + +int QFormLayout_Spacing(QtObjectPtr ptr){ + return static_cast(ptr)->spacing(); +} + +QtObjectPtr QFormLayout_TakeAt(QtObjectPtr ptr, int index){ + return static_cast(ptr)->takeAt(index); +} + +void QFormLayout_DestroyQFormLayout(QtObjectPtr ptr){ + static_cast(ptr)->~QFormLayout(); +} + diff --git a/widgets/qformlayout.go b/widgets/qformlayout.go new file mode 100755 index 00000000..d25d342e --- /dev/null +++ b/widgets/qformlayout.go @@ -0,0 +1,345 @@ +package widgets + +//#include "qformlayout.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QFormLayout struct { + QLayout +} + +type QFormLayoutITF interface { + QLayoutITF + QFormLayoutPTR() *QFormLayout +} + +func PointerFromQFormLayout(ptr QFormLayoutITF) unsafe.Pointer { + if ptr != nil { + return ptr.QFormLayoutPTR().Pointer() + } + return nil +} + +func QFormLayoutFromPointer(ptr unsafe.Pointer) *QFormLayout { + var n = new(QFormLayout) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QFormLayout_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QFormLayout) QFormLayoutPTR() *QFormLayout { + return ptr +} + +//QFormLayout::FieldGrowthPolicy +type QFormLayout__FieldGrowthPolicy int + +var ( + QFormLayout__FieldsStayAtSizeHint = QFormLayout__FieldGrowthPolicy(0) + QFormLayout__ExpandingFieldsGrow = QFormLayout__FieldGrowthPolicy(1) + QFormLayout__AllNonFixedFieldsGrow = QFormLayout__FieldGrowthPolicy(2) +) + +//QFormLayout::ItemRole +type QFormLayout__ItemRole int + +var ( + QFormLayout__LabelRole = QFormLayout__ItemRole(0) + QFormLayout__FieldRole = QFormLayout__ItemRole(1) + QFormLayout__SpanningRole = QFormLayout__ItemRole(2) +) + +//QFormLayout::RowWrapPolicy +type QFormLayout__RowWrapPolicy int + +var ( + QFormLayout__DontWrapRows = QFormLayout__RowWrapPolicy(0) + QFormLayout__WrapLongRows = QFormLayout__RowWrapPolicy(1) + QFormLayout__WrapAllRows = QFormLayout__RowWrapPolicy(2) +) + +func (ptr *QFormLayout) FieldGrowthPolicy() QFormLayout__FieldGrowthPolicy { + if ptr.Pointer() != nil { + return QFormLayout__FieldGrowthPolicy(C.QFormLayout_FieldGrowthPolicy(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFormLayout) FormAlignment() core.Qt__AlignmentFlag { + if ptr.Pointer() != nil { + return core.Qt__AlignmentFlag(C.QFormLayout_FormAlignment(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFormLayout) HorizontalSpacing() int { + if ptr.Pointer() != nil { + return int(C.QFormLayout_HorizontalSpacing(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFormLayout) LabelAlignment() core.Qt__AlignmentFlag { + if ptr.Pointer() != nil { + return core.Qt__AlignmentFlag(C.QFormLayout_LabelAlignment(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFormLayout) RowWrapPolicy() QFormLayout__RowWrapPolicy { + if ptr.Pointer() != nil { + return QFormLayout__RowWrapPolicy(C.QFormLayout_RowWrapPolicy(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFormLayout) SetFieldGrowthPolicy(policy QFormLayout__FieldGrowthPolicy) { + if ptr.Pointer() != nil { + C.QFormLayout_SetFieldGrowthPolicy(C.QtObjectPtr(ptr.Pointer()), C.int(policy)) + } +} + +func (ptr *QFormLayout) SetFormAlignment(alignment core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QFormLayout_SetFormAlignment(C.QtObjectPtr(ptr.Pointer()), C.int(alignment)) + } +} + +func (ptr *QFormLayout) SetHorizontalSpacing(spacing int) { + if ptr.Pointer() != nil { + C.QFormLayout_SetHorizontalSpacing(C.QtObjectPtr(ptr.Pointer()), C.int(spacing)) + } +} + +func (ptr *QFormLayout) SetLabelAlignment(alignment core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QFormLayout_SetLabelAlignment(C.QtObjectPtr(ptr.Pointer()), C.int(alignment)) + } +} + +func (ptr *QFormLayout) SetRowWrapPolicy(policy QFormLayout__RowWrapPolicy) { + if ptr.Pointer() != nil { + C.QFormLayout_SetRowWrapPolicy(C.QtObjectPtr(ptr.Pointer()), C.int(policy)) + } +} + +func (ptr *QFormLayout) SetVerticalSpacing(spacing int) { + if ptr.Pointer() != nil { + C.QFormLayout_SetVerticalSpacing(C.QtObjectPtr(ptr.Pointer()), C.int(spacing)) + } +} + +func (ptr *QFormLayout) VerticalSpacing() int { + if ptr.Pointer() != nil { + return int(C.QFormLayout_VerticalSpacing(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQFormLayout(parent QWidgetITF) *QFormLayout { + return QFormLayoutFromPointer(unsafe.Pointer(C.QFormLayout_NewQFormLayout(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QFormLayout) AddItem(item QLayoutItemITF) { + if ptr.Pointer() != nil { + C.QFormLayout_AddItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLayoutItem(item))) + } +} + +func (ptr *QFormLayout) AddRow6(layout QLayoutITF) { + if ptr.Pointer() != nil { + C.QFormLayout_AddRow6(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLayout(layout))) + } +} + +func (ptr *QFormLayout) AddRow2(label QWidgetITF, field QLayoutITF) { + if ptr.Pointer() != nil { + C.QFormLayout_AddRow2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(label)), C.QtObjectPtr(PointerFromQLayout(field))) + } +} + +func (ptr *QFormLayout) AddRow(label QWidgetITF, field QWidgetITF) { + if ptr.Pointer() != nil { + C.QFormLayout_AddRow(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(label)), C.QtObjectPtr(PointerFromQWidget(field))) + } +} + +func (ptr *QFormLayout) AddRow5(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QFormLayout_AddRow5(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QFormLayout) AddRow4(labelText string, field QLayoutITF) { + if ptr.Pointer() != nil { + C.QFormLayout_AddRow4(C.QtObjectPtr(ptr.Pointer()), C.CString(labelText), C.QtObjectPtr(PointerFromQLayout(field))) + } +} + +func (ptr *QFormLayout) AddRow3(labelText string, field QWidgetITF) { + if ptr.Pointer() != nil { + C.QFormLayout_AddRow3(C.QtObjectPtr(ptr.Pointer()), C.CString(labelText), C.QtObjectPtr(PointerFromQWidget(field))) + } +} + +func (ptr *QFormLayout) Count() int { + if ptr.Pointer() != nil { + return int(C.QFormLayout_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFormLayout) ExpandingDirections() core.Qt__Orientation { + if ptr.Pointer() != nil { + return core.Qt__Orientation(C.QFormLayout_ExpandingDirections(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFormLayout) HasHeightForWidth() bool { + if ptr.Pointer() != nil { + return C.QFormLayout_HasHeightForWidth(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QFormLayout) HeightForWidth(width int) int { + if ptr.Pointer() != nil { + return int(C.QFormLayout_HeightForWidth(C.QtObjectPtr(ptr.Pointer()), C.int(width))) + } + return 0 +} + +func (ptr *QFormLayout) InsertRow6(row int, layout QLayoutITF) { + if ptr.Pointer() != nil { + C.QFormLayout_InsertRow6(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.QtObjectPtr(PointerFromQLayout(layout))) + } +} + +func (ptr *QFormLayout) InsertRow2(row int, label QWidgetITF, field QLayoutITF) { + if ptr.Pointer() != nil { + C.QFormLayout_InsertRow2(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.QtObjectPtr(PointerFromQWidget(label)), C.QtObjectPtr(PointerFromQLayout(field))) + } +} + +func (ptr *QFormLayout) InsertRow(row int, label QWidgetITF, field QWidgetITF) { + if ptr.Pointer() != nil { + C.QFormLayout_InsertRow(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.QtObjectPtr(PointerFromQWidget(label)), C.QtObjectPtr(PointerFromQWidget(field))) + } +} + +func (ptr *QFormLayout) InsertRow5(row int, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QFormLayout_InsertRow5(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QFormLayout) InsertRow4(row int, labelText string, field QLayoutITF) { + if ptr.Pointer() != nil { + C.QFormLayout_InsertRow4(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.CString(labelText), C.QtObjectPtr(PointerFromQLayout(field))) + } +} + +func (ptr *QFormLayout) InsertRow3(row int, labelText string, field QWidgetITF) { + if ptr.Pointer() != nil { + C.QFormLayout_InsertRow3(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.CString(labelText), C.QtObjectPtr(PointerFromQWidget(field))) + } +} + +func (ptr *QFormLayout) Invalidate() { + if ptr.Pointer() != nil { + C.QFormLayout_Invalidate(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QFormLayout) ItemAt2(index int) *QLayoutItem { + if ptr.Pointer() != nil { + return QLayoutItemFromPointer(unsafe.Pointer(C.QFormLayout_ItemAt2(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QFormLayout) ItemAt(row int, role QFormLayout__ItemRole) *QLayoutItem { + if ptr.Pointer() != nil { + return QLayoutItemFromPointer(unsafe.Pointer(C.QFormLayout_ItemAt(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(role)))) + } + return nil +} + +func (ptr *QFormLayout) LabelForField2(field QLayoutITF) *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QFormLayout_LabelForField2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLayout(field))))) + } + return nil +} + +func (ptr *QFormLayout) LabelForField(field QWidgetITF) *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QFormLayout_LabelForField(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(field))))) + } + return nil +} + +func (ptr *QFormLayout) RowCount() int { + if ptr.Pointer() != nil { + return int(C.QFormLayout_RowCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFormLayout) SetGeometry(rect core.QRectITF) { + if ptr.Pointer() != nil { + C.QFormLayout_SetGeometry(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rect))) + } +} + +func (ptr *QFormLayout) SetItem(row int, role QFormLayout__ItemRole, item QLayoutItemITF) { + if ptr.Pointer() != nil { + C.QFormLayout_SetItem(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(role), C.QtObjectPtr(PointerFromQLayoutItem(item))) + } +} + +func (ptr *QFormLayout) SetLayout(row int, role QFormLayout__ItemRole, layout QLayoutITF) { + if ptr.Pointer() != nil { + C.QFormLayout_SetLayout(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(role), C.QtObjectPtr(PointerFromQLayout(layout))) + } +} + +func (ptr *QFormLayout) SetSpacing(spacing int) { + if ptr.Pointer() != nil { + C.QFormLayout_SetSpacing(C.QtObjectPtr(ptr.Pointer()), C.int(spacing)) + } +} + +func (ptr *QFormLayout) SetWidget(row int, role QFormLayout__ItemRole, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QFormLayout_SetWidget(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(role), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QFormLayout) Spacing() int { + if ptr.Pointer() != nil { + return int(C.QFormLayout_Spacing(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFormLayout) TakeAt(index int) *QLayoutItem { + if ptr.Pointer() != nil { + return QLayoutItemFromPointer(unsafe.Pointer(C.QFormLayout_TakeAt(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QFormLayout) DestroyQFormLayout() { + if ptr.Pointer() != nil { + C.QFormLayout_DestroyQFormLayout(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qformlayout.h b/widgets/qformlayout.h new file mode 100755 index 00000000..bc7e0892 --- /dev/null +++ b/widgets/qformlayout.h @@ -0,0 +1,53 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QFormLayout_FieldGrowthPolicy(QtObjectPtr ptr); +int QFormLayout_FormAlignment(QtObjectPtr ptr); +int QFormLayout_HorizontalSpacing(QtObjectPtr ptr); +int QFormLayout_LabelAlignment(QtObjectPtr ptr); +int QFormLayout_RowWrapPolicy(QtObjectPtr ptr); +void QFormLayout_SetFieldGrowthPolicy(QtObjectPtr ptr, int policy); +void QFormLayout_SetFormAlignment(QtObjectPtr ptr, int alignment); +void QFormLayout_SetHorizontalSpacing(QtObjectPtr ptr, int spacing); +void QFormLayout_SetLabelAlignment(QtObjectPtr ptr, int alignment); +void QFormLayout_SetRowWrapPolicy(QtObjectPtr ptr, int policy); +void QFormLayout_SetVerticalSpacing(QtObjectPtr ptr, int spacing); +int QFormLayout_VerticalSpacing(QtObjectPtr ptr); +QtObjectPtr QFormLayout_NewQFormLayout(QtObjectPtr parent); +void QFormLayout_AddItem(QtObjectPtr ptr, QtObjectPtr item); +void QFormLayout_AddRow6(QtObjectPtr ptr, QtObjectPtr layout); +void QFormLayout_AddRow2(QtObjectPtr ptr, QtObjectPtr label, QtObjectPtr field); +void QFormLayout_AddRow(QtObjectPtr ptr, QtObjectPtr label, QtObjectPtr field); +void QFormLayout_AddRow5(QtObjectPtr ptr, QtObjectPtr widget); +void QFormLayout_AddRow4(QtObjectPtr ptr, char* labelText, QtObjectPtr field); +void QFormLayout_AddRow3(QtObjectPtr ptr, char* labelText, QtObjectPtr field); +int QFormLayout_Count(QtObjectPtr ptr); +int QFormLayout_ExpandingDirections(QtObjectPtr ptr); +int QFormLayout_HasHeightForWidth(QtObjectPtr ptr); +int QFormLayout_HeightForWidth(QtObjectPtr ptr, int width); +void QFormLayout_InsertRow6(QtObjectPtr ptr, int row, QtObjectPtr layout); +void QFormLayout_InsertRow2(QtObjectPtr ptr, int row, QtObjectPtr label, QtObjectPtr field); +void QFormLayout_InsertRow(QtObjectPtr ptr, int row, QtObjectPtr label, QtObjectPtr field); +void QFormLayout_InsertRow5(QtObjectPtr ptr, int row, QtObjectPtr widget); +void QFormLayout_InsertRow4(QtObjectPtr ptr, int row, char* labelText, QtObjectPtr field); +void QFormLayout_InsertRow3(QtObjectPtr ptr, int row, char* labelText, QtObjectPtr field); +void QFormLayout_Invalidate(QtObjectPtr ptr); +QtObjectPtr QFormLayout_ItemAt2(QtObjectPtr ptr, int index); +QtObjectPtr QFormLayout_ItemAt(QtObjectPtr ptr, int row, int role); +QtObjectPtr QFormLayout_LabelForField2(QtObjectPtr ptr, QtObjectPtr field); +QtObjectPtr QFormLayout_LabelForField(QtObjectPtr ptr, QtObjectPtr field); +int QFormLayout_RowCount(QtObjectPtr ptr); +void QFormLayout_SetGeometry(QtObjectPtr ptr, QtObjectPtr rect); +void QFormLayout_SetItem(QtObjectPtr ptr, int row, int role, QtObjectPtr item); +void QFormLayout_SetLayout(QtObjectPtr ptr, int row, int role, QtObjectPtr layout); +void QFormLayout_SetSpacing(QtObjectPtr ptr, int spacing); +void QFormLayout_SetWidget(QtObjectPtr ptr, int row, int role, QtObjectPtr widget); +int QFormLayout_Spacing(QtObjectPtr ptr); +QtObjectPtr QFormLayout_TakeAt(QtObjectPtr ptr, int index); +void QFormLayout_DestroyQFormLayout(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qframe.cpp b/widgets/qframe.cpp new file mode 100755 index 00000000..62c7d1f0 --- /dev/null +++ b/widgets/qframe.cpp @@ -0,0 +1,70 @@ +#include "qframe.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQFrame: public QFrame { +public: +}; + +int QFrame_FrameShadow(QtObjectPtr ptr){ + return static_cast(ptr)->frameShadow(); +} + +int QFrame_FrameShape(QtObjectPtr ptr){ + return static_cast(ptr)->frameShape(); +} + +int QFrame_FrameWidth(QtObjectPtr ptr){ + return static_cast(ptr)->frameWidth(); +} + +int QFrame_LineWidth(QtObjectPtr ptr){ + return static_cast(ptr)->lineWidth(); +} + +int QFrame_MidLineWidth(QtObjectPtr ptr){ + return static_cast(ptr)->midLineWidth(); +} + +void QFrame_SetFrameRect(QtObjectPtr ptr, QtObjectPtr v){ + static_cast(ptr)->setFrameRect(*static_cast(v)); +} + +void QFrame_SetFrameShadow(QtObjectPtr ptr, int v){ + static_cast(ptr)->setFrameShadow(static_cast(v)); +} + +void QFrame_SetFrameShape(QtObjectPtr ptr, int v){ + static_cast(ptr)->setFrameShape(static_cast(v)); +} + +void QFrame_SetLineWidth(QtObjectPtr ptr, int v){ + static_cast(ptr)->setLineWidth(v); +} + +void QFrame_SetMidLineWidth(QtObjectPtr ptr, int v){ + static_cast(ptr)->setMidLineWidth(v); +} + +QtObjectPtr QFrame_NewQFrame(QtObjectPtr parent, int f){ + return new QFrame(static_cast(parent), static_cast(f)); +} + +int QFrame_FrameStyle(QtObjectPtr ptr){ + return static_cast(ptr)->frameStyle(); +} + +void QFrame_SetFrameStyle(QtObjectPtr ptr, int style){ + static_cast(ptr)->setFrameStyle(style); +} + +void QFrame_DestroyQFrame(QtObjectPtr ptr){ + static_cast(ptr)->~QFrame(); +} + diff --git a/widgets/qframe.go b/widgets/qframe.go new file mode 100755 index 00000000..b15158b9 --- /dev/null +++ b/widgets/qframe.go @@ -0,0 +1,157 @@ +package widgets + +//#include "qframe.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QFrame struct { + QWidget +} + +type QFrameITF interface { + QWidgetITF + QFramePTR() *QFrame +} + +func PointerFromQFrame(ptr QFrameITF) unsafe.Pointer { + if ptr != nil { + return ptr.QFramePTR().Pointer() + } + return nil +} + +func QFrameFromPointer(ptr unsafe.Pointer) *QFrame { + var n = new(QFrame) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QFrame_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QFrame) QFramePTR() *QFrame { + return ptr +} + +//QFrame::Shadow +type QFrame__Shadow int + +var ( + QFrame__Plain = QFrame__Shadow(0x0010) + QFrame__Raised = QFrame__Shadow(0x0020) + QFrame__Sunken = QFrame__Shadow(0x0030) +) + +//QFrame::Shape +type QFrame__Shape int + +var ( + QFrame__NoFrame = QFrame__Shape(0) + QFrame__Box = QFrame__Shape(0x0001) + QFrame__Panel = QFrame__Shape(0x0002) + QFrame__WinPanel = QFrame__Shape(0x0003) + QFrame__HLine = QFrame__Shape(0x0004) + QFrame__VLine = QFrame__Shape(0x0005) + QFrame__StyledPanel = QFrame__Shape(0x0006) +) + +//QFrame::StyleMask +type QFrame__StyleMask int + +var ( + QFrame__Shadow_Mask = QFrame__StyleMask(0x00f0) + QFrame__Shape_Mask = QFrame__StyleMask(0x000f) +) + +func (ptr *QFrame) FrameShadow() QFrame__Shadow { + if ptr.Pointer() != nil { + return QFrame__Shadow(C.QFrame_FrameShadow(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFrame) FrameShape() QFrame__Shape { + if ptr.Pointer() != nil { + return QFrame__Shape(C.QFrame_FrameShape(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFrame) FrameWidth() int { + if ptr.Pointer() != nil { + return int(C.QFrame_FrameWidth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFrame) LineWidth() int { + if ptr.Pointer() != nil { + return int(C.QFrame_LineWidth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFrame) MidLineWidth() int { + if ptr.Pointer() != nil { + return int(C.QFrame_MidLineWidth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFrame) SetFrameRect(v core.QRectITF) { + if ptr.Pointer() != nil { + C.QFrame_SetFrameRect(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(v))) + } +} + +func (ptr *QFrame) SetFrameShadow(v QFrame__Shadow) { + if ptr.Pointer() != nil { + C.QFrame_SetFrameShadow(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QFrame) SetFrameShape(v QFrame__Shape) { + if ptr.Pointer() != nil { + C.QFrame_SetFrameShape(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QFrame) SetLineWidth(v int) { + if ptr.Pointer() != nil { + C.QFrame_SetLineWidth(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QFrame) SetMidLineWidth(v int) { + if ptr.Pointer() != nil { + C.QFrame_SetMidLineWidth(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func NewQFrame(parent QWidgetITF, f core.Qt__WindowType) *QFrame { + return QFrameFromPointer(unsafe.Pointer(C.QFrame_NewQFrame(C.QtObjectPtr(PointerFromQWidget(parent)), C.int(f)))) +} + +func (ptr *QFrame) FrameStyle() int { + if ptr.Pointer() != nil { + return int(C.QFrame_FrameStyle(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QFrame) SetFrameStyle(style int) { + if ptr.Pointer() != nil { + C.QFrame_SetFrameStyle(C.QtObjectPtr(ptr.Pointer()), C.int(style)) + } +} + +func (ptr *QFrame) DestroyQFrame() { + if ptr.Pointer() != nil { + C.QFrame_DestroyQFrame(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qframe.h b/widgets/qframe.h new file mode 100755 index 00000000..e6c6df0b --- /dev/null +++ b/widgets/qframe.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QFrame_FrameShadow(QtObjectPtr ptr); +int QFrame_FrameShape(QtObjectPtr ptr); +int QFrame_FrameWidth(QtObjectPtr ptr); +int QFrame_LineWidth(QtObjectPtr ptr); +int QFrame_MidLineWidth(QtObjectPtr ptr); +void QFrame_SetFrameRect(QtObjectPtr ptr, QtObjectPtr v); +void QFrame_SetFrameShadow(QtObjectPtr ptr, int v); +void QFrame_SetFrameShape(QtObjectPtr ptr, int v); +void QFrame_SetLineWidth(QtObjectPtr ptr, int v); +void QFrame_SetMidLineWidth(QtObjectPtr ptr, int v); +QtObjectPtr QFrame_NewQFrame(QtObjectPtr parent, int f); +int QFrame_FrameStyle(QtObjectPtr ptr); +void QFrame_SetFrameStyle(QtObjectPtr ptr, int style); +void QFrame_DestroyQFrame(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgesture.cpp b/widgets/qgesture.cpp new file mode 100755 index 00000000..f69909ae --- /dev/null +++ b/widgets/qgesture.cpp @@ -0,0 +1,47 @@ +#include "qgesture.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGesture: public QGesture { +public: +}; + +int QGesture_GestureCancelPolicy(QtObjectPtr ptr){ + return static_cast(ptr)->gestureCancelPolicy(); +} + +int QGesture_GestureType(QtObjectPtr ptr){ + return static_cast(ptr)->gestureType(); +} + +int QGesture_HasHotSpot(QtObjectPtr ptr){ + return static_cast(ptr)->hasHotSpot(); +} + +void QGesture_SetGestureCancelPolicy(QtObjectPtr ptr, int policy){ + static_cast(ptr)->setGestureCancelPolicy(static_cast(policy)); +} + +void QGesture_SetHotSpot(QtObjectPtr ptr, QtObjectPtr value){ + static_cast(ptr)->setHotSpot(*static_cast(value)); +} + +void QGesture_UnsetHotSpot(QtObjectPtr ptr){ + static_cast(ptr)->unsetHotSpot(); +} + +QtObjectPtr QGesture_NewQGesture(QtObjectPtr parent){ + return new QGesture(static_cast(parent)); +} + +void QGesture_DestroyQGesture(QtObjectPtr ptr){ + static_cast(ptr)->~QGesture(); +} + diff --git a/widgets/qgesture.go b/widgets/qgesture.go new file mode 100755 index 00000000..a997cffe --- /dev/null +++ b/widgets/qgesture.go @@ -0,0 +1,96 @@ +package widgets + +//#include "qgesture.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGesture struct { + core.QObject +} + +type QGestureITF interface { + core.QObjectITF + QGesturePTR() *QGesture +} + +func PointerFromQGesture(ptr QGestureITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGesturePTR().Pointer() + } + return nil +} + +func QGestureFromPointer(ptr unsafe.Pointer) *QGesture { + var n = new(QGesture) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGesture_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGesture) QGesturePTR() *QGesture { + return ptr +} + +//QGesture::GestureCancelPolicy +type QGesture__GestureCancelPolicy int + +var ( + QGesture__CancelNone = QGesture__GestureCancelPolicy(0) + QGesture__CancelAllInContext = QGesture__GestureCancelPolicy(1) +) + +func (ptr *QGesture) GestureCancelPolicy() QGesture__GestureCancelPolicy { + if ptr.Pointer() != nil { + return QGesture__GestureCancelPolicy(C.QGesture_GestureCancelPolicy(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGesture) GestureType() core.Qt__GestureType { + if ptr.Pointer() != nil { + return core.Qt__GestureType(C.QGesture_GestureType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGesture) HasHotSpot() bool { + if ptr.Pointer() != nil { + return C.QGesture_HasHotSpot(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGesture) SetGestureCancelPolicy(policy QGesture__GestureCancelPolicy) { + if ptr.Pointer() != nil { + C.QGesture_SetGestureCancelPolicy(C.QtObjectPtr(ptr.Pointer()), C.int(policy)) + } +} + +func (ptr *QGesture) SetHotSpot(value core.QPointFITF) { + if ptr.Pointer() != nil { + C.QGesture_SetHotSpot(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(value))) + } +} + +func (ptr *QGesture) UnsetHotSpot() { + if ptr.Pointer() != nil { + C.QGesture_UnsetHotSpot(C.QtObjectPtr(ptr.Pointer())) + } +} + +func NewQGesture(parent core.QObjectITF) *QGesture { + return QGestureFromPointer(unsafe.Pointer(C.QGesture_NewQGesture(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QGesture) DestroyQGesture() { + if ptr.Pointer() != nil { + C.QGesture_DestroyQGesture(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qgesture.h b/widgets/qgesture.h new file mode 100755 index 00000000..1470d8ce --- /dev/null +++ b/widgets/qgesture.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QGesture_GestureCancelPolicy(QtObjectPtr ptr); +int QGesture_GestureType(QtObjectPtr ptr); +int QGesture_HasHotSpot(QtObjectPtr ptr); +void QGesture_SetGestureCancelPolicy(QtObjectPtr ptr, int policy); +void QGesture_SetHotSpot(QtObjectPtr ptr, QtObjectPtr value); +void QGesture_UnsetHotSpot(QtObjectPtr ptr); +QtObjectPtr QGesture_NewQGesture(QtObjectPtr parent); +void QGesture_DestroyQGesture(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgestureevent.cpp b/widgets/qgestureevent.cpp new file mode 100755 index 00000000..555c6bc9 --- /dev/null +++ b/widgets/qgestureevent.cpp @@ -0,0 +1,57 @@ +#include "qgestureevent.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGestureEvent: public QGestureEvent { +public: +}; + +void QGestureEvent_Accept(QtObjectPtr ptr, QtObjectPtr gesture){ + static_cast(ptr)->accept(static_cast(gesture)); +} + +void QGestureEvent_Accept2(QtObjectPtr ptr, int gestureType){ + static_cast(ptr)->accept(static_cast(gestureType)); +} + +QtObjectPtr QGestureEvent_Gesture(QtObjectPtr ptr, int ty){ + return static_cast(ptr)->gesture(static_cast(ty)); +} + +void QGestureEvent_Ignore(QtObjectPtr ptr, QtObjectPtr gesture){ + static_cast(ptr)->ignore(static_cast(gesture)); +} + +void QGestureEvent_Ignore2(QtObjectPtr ptr, int gestureType){ + static_cast(ptr)->ignore(static_cast(gestureType)); +} + +int QGestureEvent_IsAccepted(QtObjectPtr ptr, QtObjectPtr gesture){ + return static_cast(ptr)->isAccepted(static_cast(gesture)); +} + +int QGestureEvent_IsAccepted2(QtObjectPtr ptr, int gestureType){ + return static_cast(ptr)->isAccepted(static_cast(gestureType)); +} + +void QGestureEvent_SetAccepted(QtObjectPtr ptr, QtObjectPtr gesture, int value){ + static_cast(ptr)->setAccepted(static_cast(gesture), value != 0); +} + +void QGestureEvent_SetAccepted2(QtObjectPtr ptr, int gestureType, int value){ + static_cast(ptr)->setAccepted(static_cast(gestureType), value != 0); +} + +QtObjectPtr QGestureEvent_Widget(QtObjectPtr ptr){ + return static_cast(ptr)->widget(); +} + +void QGestureEvent_DestroyQGestureEvent(QtObjectPtr ptr){ + static_cast(ptr)->~QGestureEvent(); +} + diff --git a/widgets/qgestureevent.go b/widgets/qgestureevent.go new file mode 100755 index 00000000..19085fad --- /dev/null +++ b/widgets/qgestureevent.go @@ -0,0 +1,105 @@ +package widgets + +//#include "qgestureevent.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGestureEvent struct { + core.QEvent +} + +type QGestureEventITF interface { + core.QEventITF + QGestureEventPTR() *QGestureEvent +} + +func PointerFromQGestureEvent(ptr QGestureEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGestureEventPTR().Pointer() + } + return nil +} + +func QGestureEventFromPointer(ptr unsafe.Pointer) *QGestureEvent { + var n = new(QGestureEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QGestureEvent) QGestureEventPTR() *QGestureEvent { + return ptr +} + +func (ptr *QGestureEvent) Accept(gesture QGestureITF) { + if ptr.Pointer() != nil { + C.QGestureEvent_Accept(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGesture(gesture))) + } +} + +func (ptr *QGestureEvent) Accept2(gestureType core.Qt__GestureType) { + if ptr.Pointer() != nil { + C.QGestureEvent_Accept2(C.QtObjectPtr(ptr.Pointer()), C.int(gestureType)) + } +} + +func (ptr *QGestureEvent) Gesture(ty core.Qt__GestureType) *QGesture { + if ptr.Pointer() != nil { + return QGestureFromPointer(unsafe.Pointer(C.QGestureEvent_Gesture(C.QtObjectPtr(ptr.Pointer()), C.int(ty)))) + } + return nil +} + +func (ptr *QGestureEvent) Ignore(gesture QGestureITF) { + if ptr.Pointer() != nil { + C.QGestureEvent_Ignore(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGesture(gesture))) + } +} + +func (ptr *QGestureEvent) Ignore2(gestureType core.Qt__GestureType) { + if ptr.Pointer() != nil { + C.QGestureEvent_Ignore2(C.QtObjectPtr(ptr.Pointer()), C.int(gestureType)) + } +} + +func (ptr *QGestureEvent) IsAccepted(gesture QGestureITF) bool { + if ptr.Pointer() != nil { + return C.QGestureEvent_IsAccepted(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGesture(gesture))) != 0 + } + return false +} + +func (ptr *QGestureEvent) IsAccepted2(gestureType core.Qt__GestureType) bool { + if ptr.Pointer() != nil { + return C.QGestureEvent_IsAccepted2(C.QtObjectPtr(ptr.Pointer()), C.int(gestureType)) != 0 + } + return false +} + +func (ptr *QGestureEvent) SetAccepted(gesture QGestureITF, value bool) { + if ptr.Pointer() != nil { + C.QGestureEvent_SetAccepted(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGesture(gesture)), C.int(qt.GoBoolToInt(value))) + } +} + +func (ptr *QGestureEvent) SetAccepted2(gestureType core.Qt__GestureType, value bool) { + if ptr.Pointer() != nil { + C.QGestureEvent_SetAccepted2(C.QtObjectPtr(ptr.Pointer()), C.int(gestureType), C.int(qt.GoBoolToInt(value))) + } +} + +func (ptr *QGestureEvent) Widget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QGestureEvent_Widget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QGestureEvent) DestroyQGestureEvent() { + if ptr.Pointer() != nil { + C.QGestureEvent_DestroyQGestureEvent(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qgestureevent.h b/widgets/qgestureevent.h new file mode 100755 index 00000000..4454f3d0 --- /dev/null +++ b/widgets/qgestureevent.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QGestureEvent_Accept(QtObjectPtr ptr, QtObjectPtr gesture); +void QGestureEvent_Accept2(QtObjectPtr ptr, int gestureType); +QtObjectPtr QGestureEvent_Gesture(QtObjectPtr ptr, int ty); +void QGestureEvent_Ignore(QtObjectPtr ptr, QtObjectPtr gesture); +void QGestureEvent_Ignore2(QtObjectPtr ptr, int gestureType); +int QGestureEvent_IsAccepted(QtObjectPtr ptr, QtObjectPtr gesture); +int QGestureEvent_IsAccepted2(QtObjectPtr ptr, int gestureType); +void QGestureEvent_SetAccepted(QtObjectPtr ptr, QtObjectPtr gesture, int value); +void QGestureEvent_SetAccepted2(QtObjectPtr ptr, int gestureType, int value); +QtObjectPtr QGestureEvent_Widget(QtObjectPtr ptr); +void QGestureEvent_DestroyQGestureEvent(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgesturerecognizer.cpp b/widgets/qgesturerecognizer.cpp new file mode 100755 index 00000000..a6b8e29a --- /dev/null +++ b/widgets/qgesturerecognizer.cpp @@ -0,0 +1,9 @@ +#include "qgesturerecognizer.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/widgets/qgesturerecognizer.go b/widgets/qgesturerecognizer.go new file mode 100755 index 00000000..79807f9b --- /dev/null +++ b/widgets/qgesturerecognizer.go @@ -0,0 +1,54 @@ +package widgets + +//#include "qgesturerecognizer.h" +import "C" +import ( + "unsafe" +) + +type QGestureRecognizer struct { + ptr unsafe.Pointer +} + +type QGestureRecognizerITF interface { + QGestureRecognizerPTR() *QGestureRecognizer +} + +func (p *QGestureRecognizer) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QGestureRecognizer) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQGestureRecognizer(ptr QGestureRecognizerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGestureRecognizerPTR().Pointer() + } + return nil +} + +func QGestureRecognizerFromPointer(ptr unsafe.Pointer) *QGestureRecognizer { + var n = new(QGestureRecognizer) + n.SetPointer(ptr) + return n +} + +func (ptr *QGestureRecognizer) QGestureRecognizerPTR() *QGestureRecognizer { + return ptr +} + +//QGestureRecognizer::ResultFlag +type QGestureRecognizer__ResultFlag int + +var ( + QGestureRecognizer__Ignore = QGestureRecognizer__ResultFlag(0x0001) + QGestureRecognizer__MayBeGesture = QGestureRecognizer__ResultFlag(0x0002) + QGestureRecognizer__TriggerGesture = QGestureRecognizer__ResultFlag(0x0004) + QGestureRecognizer__FinishGesture = QGestureRecognizer__ResultFlag(0x0008) + QGestureRecognizer__CancelGesture = QGestureRecognizer__ResultFlag(0x0010) + QGestureRecognizer__ResultState_Mask = QGestureRecognizer__ResultFlag(0x00ff) + QGestureRecognizer__ConsumeEventHint = QGestureRecognizer__ResultFlag(0x0100) + QGestureRecognizer__ResultHint_Mask = QGestureRecognizer__ResultFlag(0xff00) +) diff --git a/widgets/qgesturerecognizer.h b/widgets/qgesturerecognizer.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/widgets/qgesturerecognizer.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicsanchor.cpp b/widgets/qgraphicsanchor.cpp new file mode 100755 index 00000000..d7e027c4 --- /dev/null +++ b/widgets/qgraphicsanchor.cpp @@ -0,0 +1,30 @@ +#include "qgraphicsanchor.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsAnchor: public QGraphicsAnchor { +public: +}; + +void QGraphicsAnchor_SetSizePolicy(QtObjectPtr ptr, int policy){ + static_cast(ptr)->setSizePolicy(static_cast(policy)); +} + +int QGraphicsAnchor_SizePolicy(QtObjectPtr ptr){ + return static_cast(ptr)->sizePolicy(); +} + +void QGraphicsAnchor_UnsetSpacing(QtObjectPtr ptr){ + static_cast(ptr)->unsetSpacing(); +} + +void QGraphicsAnchor_DestroyQGraphicsAnchor(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsAnchor(); +} + diff --git a/widgets/qgraphicsanchor.go b/widgets/qgraphicsanchor.go new file mode 100755 index 00000000..247d09ac --- /dev/null +++ b/widgets/qgraphicsanchor.go @@ -0,0 +1,64 @@ +package widgets + +//#include "qgraphicsanchor.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGraphicsAnchor struct { + core.QObject +} + +type QGraphicsAnchorITF interface { + core.QObjectITF + QGraphicsAnchorPTR() *QGraphicsAnchor +} + +func PointerFromQGraphicsAnchor(ptr QGraphicsAnchorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsAnchorPTR().Pointer() + } + return nil +} + +func QGraphicsAnchorFromPointer(ptr unsafe.Pointer) *QGraphicsAnchor { + var n = new(QGraphicsAnchor) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGraphicsAnchor_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGraphicsAnchor) QGraphicsAnchorPTR() *QGraphicsAnchor { + return ptr +} + +func (ptr *QGraphicsAnchor) SetSizePolicy(policy QSizePolicy__Policy) { + if ptr.Pointer() != nil { + C.QGraphicsAnchor_SetSizePolicy(C.QtObjectPtr(ptr.Pointer()), C.int(policy)) + } +} + +func (ptr *QGraphicsAnchor) SizePolicy() QSizePolicy__Policy { + if ptr.Pointer() != nil { + return QSizePolicy__Policy(C.QGraphicsAnchor_SizePolicy(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsAnchor) UnsetSpacing() { + if ptr.Pointer() != nil { + C.QGraphicsAnchor_UnsetSpacing(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QGraphicsAnchor) DestroyQGraphicsAnchor() { + if ptr.Pointer() != nil { + C.QGraphicsAnchor_DestroyQGraphicsAnchor(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qgraphicsanchor.h b/widgets/qgraphicsanchor.h new file mode 100755 index 00000000..f20960a6 --- /dev/null +++ b/widgets/qgraphicsanchor.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QGraphicsAnchor_SetSizePolicy(QtObjectPtr ptr, int policy); +int QGraphicsAnchor_SizePolicy(QtObjectPtr ptr); +void QGraphicsAnchor_UnsetSpacing(QtObjectPtr ptr); +void QGraphicsAnchor_DestroyQGraphicsAnchor(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicsanchorlayout.cpp b/widgets/qgraphicsanchorlayout.cpp new file mode 100755 index 00000000..c4ecc8a0 --- /dev/null +++ b/widgets/qgraphicsanchorlayout.cpp @@ -0,0 +1,61 @@ +#include "qgraphicsanchorlayout.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsAnchorLayout: public QGraphicsAnchorLayout { +public: +}; + +QtObjectPtr QGraphicsAnchorLayout_NewQGraphicsAnchorLayout(QtObjectPtr parent){ + return new QGraphicsAnchorLayout(static_cast(parent)); +} + +QtObjectPtr QGraphicsAnchorLayout_AddAnchor(QtObjectPtr ptr, QtObjectPtr firstItem, int firstEdge, QtObjectPtr secondItem, int secondEdge){ + return static_cast(ptr)->addAnchor(static_cast(firstItem), static_cast(firstEdge), static_cast(secondItem), static_cast(secondEdge)); +} + +void QGraphicsAnchorLayout_AddAnchors(QtObjectPtr ptr, QtObjectPtr firstItem, QtObjectPtr secondItem, int orientations){ + static_cast(ptr)->addAnchors(static_cast(firstItem), static_cast(secondItem), static_cast(orientations)); +} + +void QGraphicsAnchorLayout_AddCornerAnchors(QtObjectPtr ptr, QtObjectPtr firstItem, int firstCorner, QtObjectPtr secondItem, int secondCorner){ + static_cast(ptr)->addCornerAnchors(static_cast(firstItem), static_cast(firstCorner), static_cast(secondItem), static_cast(secondCorner)); +} + +QtObjectPtr QGraphicsAnchorLayout_Anchor(QtObjectPtr ptr, QtObjectPtr firstItem, int firstEdge, QtObjectPtr secondItem, int secondEdge){ + return static_cast(ptr)->anchor(static_cast(firstItem), static_cast(firstEdge), static_cast(secondItem), static_cast(secondEdge)); +} + +int QGraphicsAnchorLayout_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +void QGraphicsAnchorLayout_Invalidate(QtObjectPtr ptr){ + static_cast(ptr)->invalidate(); +} + +QtObjectPtr QGraphicsAnchorLayout_ItemAt(QtObjectPtr ptr, int index){ + return static_cast(ptr)->itemAt(index); +} + +void QGraphicsAnchorLayout_RemoveAt(QtObjectPtr ptr, int index){ + static_cast(ptr)->removeAt(index); +} + +void QGraphicsAnchorLayout_SetGeometry(QtObjectPtr ptr, QtObjectPtr geom){ + static_cast(ptr)->setGeometry(*static_cast(geom)); +} + +void QGraphicsAnchorLayout_DestroyQGraphicsAnchorLayout(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsAnchorLayout(); +} + diff --git a/widgets/qgraphicsanchorlayout.go b/widgets/qgraphicsanchorlayout.go new file mode 100755 index 00000000..cae668cb --- /dev/null +++ b/widgets/qgraphicsanchorlayout.go @@ -0,0 +1,102 @@ +package widgets + +//#include "qgraphicsanchorlayout.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGraphicsAnchorLayout struct { + QGraphicsLayout +} + +type QGraphicsAnchorLayoutITF interface { + QGraphicsLayoutITF + QGraphicsAnchorLayoutPTR() *QGraphicsAnchorLayout +} + +func PointerFromQGraphicsAnchorLayout(ptr QGraphicsAnchorLayoutITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsAnchorLayoutPTR().Pointer() + } + return nil +} + +func QGraphicsAnchorLayoutFromPointer(ptr unsafe.Pointer) *QGraphicsAnchorLayout { + var n = new(QGraphicsAnchorLayout) + n.SetPointer(ptr) + return n +} + +func (ptr *QGraphicsAnchorLayout) QGraphicsAnchorLayoutPTR() *QGraphicsAnchorLayout { + return ptr +} + +func NewQGraphicsAnchorLayout(parent QGraphicsLayoutItemITF) *QGraphicsAnchorLayout { + return QGraphicsAnchorLayoutFromPointer(unsafe.Pointer(C.QGraphicsAnchorLayout_NewQGraphicsAnchorLayout(C.QtObjectPtr(PointerFromQGraphicsLayoutItem(parent))))) +} + +func (ptr *QGraphicsAnchorLayout) AddAnchor(firstItem QGraphicsLayoutItemITF, firstEdge core.Qt__AnchorPoint, secondItem QGraphicsLayoutItemITF, secondEdge core.Qt__AnchorPoint) *QGraphicsAnchor { + if ptr.Pointer() != nil { + return QGraphicsAnchorFromPointer(unsafe.Pointer(C.QGraphicsAnchorLayout_AddAnchor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsLayoutItem(firstItem)), C.int(firstEdge), C.QtObjectPtr(PointerFromQGraphicsLayoutItem(secondItem)), C.int(secondEdge)))) + } + return nil +} + +func (ptr *QGraphicsAnchorLayout) AddAnchors(firstItem QGraphicsLayoutItemITF, secondItem QGraphicsLayoutItemITF, orientations core.Qt__Orientation) { + if ptr.Pointer() != nil { + C.QGraphicsAnchorLayout_AddAnchors(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsLayoutItem(firstItem)), C.QtObjectPtr(PointerFromQGraphicsLayoutItem(secondItem)), C.int(orientations)) + } +} + +func (ptr *QGraphicsAnchorLayout) AddCornerAnchors(firstItem QGraphicsLayoutItemITF, firstCorner core.Qt__Corner, secondItem QGraphicsLayoutItemITF, secondCorner core.Qt__Corner) { + if ptr.Pointer() != nil { + C.QGraphicsAnchorLayout_AddCornerAnchors(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsLayoutItem(firstItem)), C.int(firstCorner), C.QtObjectPtr(PointerFromQGraphicsLayoutItem(secondItem)), C.int(secondCorner)) + } +} + +func (ptr *QGraphicsAnchorLayout) Anchor(firstItem QGraphicsLayoutItemITF, firstEdge core.Qt__AnchorPoint, secondItem QGraphicsLayoutItemITF, secondEdge core.Qt__AnchorPoint) *QGraphicsAnchor { + if ptr.Pointer() != nil { + return QGraphicsAnchorFromPointer(unsafe.Pointer(C.QGraphicsAnchorLayout_Anchor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsLayoutItem(firstItem)), C.int(firstEdge), C.QtObjectPtr(PointerFromQGraphicsLayoutItem(secondItem)), C.int(secondEdge)))) + } + return nil +} + +func (ptr *QGraphicsAnchorLayout) Count() int { + if ptr.Pointer() != nil { + return int(C.QGraphicsAnchorLayout_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsAnchorLayout) Invalidate() { + if ptr.Pointer() != nil { + C.QGraphicsAnchorLayout_Invalidate(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QGraphicsAnchorLayout) ItemAt(index int) *QGraphicsLayoutItem { + if ptr.Pointer() != nil { + return QGraphicsLayoutItemFromPointer(unsafe.Pointer(C.QGraphicsAnchorLayout_ItemAt(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QGraphicsAnchorLayout) RemoveAt(index int) { + if ptr.Pointer() != nil { + C.QGraphicsAnchorLayout_RemoveAt(C.QtObjectPtr(ptr.Pointer()), C.int(index)) + } +} + +func (ptr *QGraphicsAnchorLayout) SetGeometry(geom core.QRectFITF) { + if ptr.Pointer() != nil { + C.QGraphicsAnchorLayout_SetGeometry(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(geom))) + } +} + +func (ptr *QGraphicsAnchorLayout) DestroyQGraphicsAnchorLayout() { + if ptr.Pointer() != nil { + C.QGraphicsAnchorLayout_DestroyQGraphicsAnchorLayout(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qgraphicsanchorlayout.h b/widgets/qgraphicsanchorlayout.h new file mode 100755 index 00000000..f8d33b19 --- /dev/null +++ b/widgets/qgraphicsanchorlayout.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGraphicsAnchorLayout_NewQGraphicsAnchorLayout(QtObjectPtr parent); +QtObjectPtr QGraphicsAnchorLayout_AddAnchor(QtObjectPtr ptr, QtObjectPtr firstItem, int firstEdge, QtObjectPtr secondItem, int secondEdge); +void QGraphicsAnchorLayout_AddAnchors(QtObjectPtr ptr, QtObjectPtr firstItem, QtObjectPtr secondItem, int orientations); +void QGraphicsAnchorLayout_AddCornerAnchors(QtObjectPtr ptr, QtObjectPtr firstItem, int firstCorner, QtObjectPtr secondItem, int secondCorner); +QtObjectPtr QGraphicsAnchorLayout_Anchor(QtObjectPtr ptr, QtObjectPtr firstItem, int firstEdge, QtObjectPtr secondItem, int secondEdge); +int QGraphicsAnchorLayout_Count(QtObjectPtr ptr); +void QGraphicsAnchorLayout_Invalidate(QtObjectPtr ptr); +QtObjectPtr QGraphicsAnchorLayout_ItemAt(QtObjectPtr ptr, int index); +void QGraphicsAnchorLayout_RemoveAt(QtObjectPtr ptr, int index); +void QGraphicsAnchorLayout_SetGeometry(QtObjectPtr ptr, QtObjectPtr geom); +void QGraphicsAnchorLayout_DestroyQGraphicsAnchorLayout(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicsblureffect.cpp b/widgets/qgraphicsblureffect.cpp new file mode 100755 index 00000000..dc429372 --- /dev/null +++ b/widgets/qgraphicsblureffect.cpp @@ -0,0 +1,39 @@ +#include "qgraphicsblureffect.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsBlurEffect: public QGraphicsBlurEffect { +public: +void Signal_BlurHintsChanged(QGraphicsBlurEffect::BlurHints hints){callbackQGraphicsBlurEffectBlurHintsChanged(this->objectName().toUtf8().data(), hints);}; +}; + +int QGraphicsBlurEffect_BlurHints(QtObjectPtr ptr){ + return static_cast(ptr)->blurHints(); +} + +void QGraphicsBlurEffect_SetBlurHints(QtObjectPtr ptr, int hints){ + QMetaObject::invokeMethod(static_cast(ptr), "setBlurHints", Q_ARG(QGraphicsBlurEffect::BlurHint, static_cast(hints))); +} + +QtObjectPtr QGraphicsBlurEffect_NewQGraphicsBlurEffect(QtObjectPtr parent){ + return new QGraphicsBlurEffect(static_cast(parent)); +} + +void QGraphicsBlurEffect_ConnectBlurHintsChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGraphicsBlurEffect::blurHintsChanged), static_cast(ptr), static_cast(&MyQGraphicsBlurEffect::Signal_BlurHintsChanged));; +} + +void QGraphicsBlurEffect_DisconnectBlurHintsChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGraphicsBlurEffect::blurHintsChanged), static_cast(ptr), static_cast(&MyQGraphicsBlurEffect::Signal_BlurHintsChanged));; +} + +void QGraphicsBlurEffect_DestroyQGraphicsBlurEffect(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsBlurEffect(); +} + diff --git a/widgets/qgraphicsblureffect.go b/widgets/qgraphicsblureffect.go new file mode 100755 index 00000000..7d4f2fe0 --- /dev/null +++ b/widgets/qgraphicsblureffect.go @@ -0,0 +1,90 @@ +package widgets + +//#include "qgraphicsblureffect.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGraphicsBlurEffect struct { + QGraphicsEffect +} + +type QGraphicsBlurEffectITF interface { + QGraphicsEffectITF + QGraphicsBlurEffectPTR() *QGraphicsBlurEffect +} + +func PointerFromQGraphicsBlurEffect(ptr QGraphicsBlurEffectITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsBlurEffectPTR().Pointer() + } + return nil +} + +func QGraphicsBlurEffectFromPointer(ptr unsafe.Pointer) *QGraphicsBlurEffect { + var n = new(QGraphicsBlurEffect) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGraphicsBlurEffect_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGraphicsBlurEffect) QGraphicsBlurEffectPTR() *QGraphicsBlurEffect { + return ptr +} + +//QGraphicsBlurEffect::BlurHint +type QGraphicsBlurEffect__BlurHint int + +var ( + QGraphicsBlurEffect__PerformanceHint = QGraphicsBlurEffect__BlurHint(0x00) + QGraphicsBlurEffect__QualityHint = QGraphicsBlurEffect__BlurHint(0x01) + QGraphicsBlurEffect__AnimationHint = QGraphicsBlurEffect__BlurHint(0x02) +) + +func (ptr *QGraphicsBlurEffect) BlurHints() QGraphicsBlurEffect__BlurHint { + if ptr.Pointer() != nil { + return QGraphicsBlurEffect__BlurHint(C.QGraphicsBlurEffect_BlurHints(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsBlurEffect) SetBlurHints(hints QGraphicsBlurEffect__BlurHint) { + if ptr.Pointer() != nil { + C.QGraphicsBlurEffect_SetBlurHints(C.QtObjectPtr(ptr.Pointer()), C.int(hints)) + } +} + +func NewQGraphicsBlurEffect(parent core.QObjectITF) *QGraphicsBlurEffect { + return QGraphicsBlurEffectFromPointer(unsafe.Pointer(C.QGraphicsBlurEffect_NewQGraphicsBlurEffect(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QGraphicsBlurEffect) ConnectBlurHintsChanged(f func(hints QGraphicsBlurEffect__BlurHint)) { + if ptr.Pointer() != nil { + C.QGraphicsBlurEffect_ConnectBlurHintsChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "blurHintsChanged", f) + } +} + +func (ptr *QGraphicsBlurEffect) DisconnectBlurHintsChanged() { + if ptr.Pointer() != nil { + C.QGraphicsBlurEffect_DisconnectBlurHintsChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "blurHintsChanged") + } +} + +//export callbackQGraphicsBlurEffectBlurHintsChanged +func callbackQGraphicsBlurEffectBlurHintsChanged(ptrName *C.char, hints C.int) { + qt.GetSignal(C.GoString(ptrName), "blurHintsChanged").(func(QGraphicsBlurEffect__BlurHint))(QGraphicsBlurEffect__BlurHint(hints)) +} + +func (ptr *QGraphicsBlurEffect) DestroyQGraphicsBlurEffect() { + if ptr.Pointer() != nil { + C.QGraphicsBlurEffect_DestroyQGraphicsBlurEffect(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qgraphicsblureffect.h b/widgets/qgraphicsblureffect.h new file mode 100755 index 00000000..8eb21b6e --- /dev/null +++ b/widgets/qgraphicsblureffect.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QGraphicsBlurEffect_BlurHints(QtObjectPtr ptr); +void QGraphicsBlurEffect_SetBlurHints(QtObjectPtr ptr, int hints); +QtObjectPtr QGraphicsBlurEffect_NewQGraphicsBlurEffect(QtObjectPtr parent); +void QGraphicsBlurEffect_ConnectBlurHintsChanged(QtObjectPtr ptr); +void QGraphicsBlurEffect_DisconnectBlurHintsChanged(QtObjectPtr ptr); +void QGraphicsBlurEffect_DestroyQGraphicsBlurEffect(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicscolorizeeffect.cpp b/widgets/qgraphicscolorizeeffect.cpp new file mode 100755 index 00000000..37684809 --- /dev/null +++ b/widgets/qgraphicscolorizeeffect.cpp @@ -0,0 +1,27 @@ +#include "qgraphicscolorizeeffect.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsColorizeEffect: public QGraphicsColorizeEffect { +public: +}; + +void QGraphicsColorizeEffect_SetColor(QtObjectPtr ptr, QtObjectPtr c){ + QMetaObject::invokeMethod(static_cast(ptr), "setColor", Q_ARG(QColor, *static_cast(c))); +} + +QtObjectPtr QGraphicsColorizeEffect_NewQGraphicsColorizeEffect(QtObjectPtr parent){ + return new QGraphicsColorizeEffect(static_cast(parent)); +} + +void QGraphicsColorizeEffect_DestroyQGraphicsColorizeEffect(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsColorizeEffect(); +} + diff --git a/widgets/qgraphicscolorizeeffect.go b/widgets/qgraphicscolorizeeffect.go new file mode 100755 index 00000000..409a15da --- /dev/null +++ b/widgets/qgraphicscolorizeeffect.go @@ -0,0 +1,56 @@ +package widgets + +//#include "qgraphicscolorizeeffect.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QGraphicsColorizeEffect struct { + QGraphicsEffect +} + +type QGraphicsColorizeEffectITF interface { + QGraphicsEffectITF + QGraphicsColorizeEffectPTR() *QGraphicsColorizeEffect +} + +func PointerFromQGraphicsColorizeEffect(ptr QGraphicsColorizeEffectITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsColorizeEffectPTR().Pointer() + } + return nil +} + +func QGraphicsColorizeEffectFromPointer(ptr unsafe.Pointer) *QGraphicsColorizeEffect { + var n = new(QGraphicsColorizeEffect) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGraphicsColorizeEffect_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGraphicsColorizeEffect) QGraphicsColorizeEffectPTR() *QGraphicsColorizeEffect { + return ptr +} + +func (ptr *QGraphicsColorizeEffect) SetColor(c gui.QColorITF) { + if ptr.Pointer() != nil { + C.QGraphicsColorizeEffect_SetColor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQColor(c))) + } +} + +func NewQGraphicsColorizeEffect(parent core.QObjectITF) *QGraphicsColorizeEffect { + return QGraphicsColorizeEffectFromPointer(unsafe.Pointer(C.QGraphicsColorizeEffect_NewQGraphicsColorizeEffect(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QGraphicsColorizeEffect) DestroyQGraphicsColorizeEffect() { + if ptr.Pointer() != nil { + C.QGraphicsColorizeEffect_DestroyQGraphicsColorizeEffect(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qgraphicscolorizeeffect.h b/widgets/qgraphicscolorizeeffect.h new file mode 100755 index 00000000..fdc87877 --- /dev/null +++ b/widgets/qgraphicscolorizeeffect.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QGraphicsColorizeEffect_SetColor(QtObjectPtr ptr, QtObjectPtr c); +QtObjectPtr QGraphicsColorizeEffect_NewQGraphicsColorizeEffect(QtObjectPtr parent); +void QGraphicsColorizeEffect_DestroyQGraphicsColorizeEffect(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicsdropshadoweffect.cpp b/widgets/qgraphicsdropshadoweffect.cpp new file mode 100755 index 00000000..8073844a --- /dev/null +++ b/widgets/qgraphicsdropshadoweffect.cpp @@ -0,0 +1,33 @@ +#include "qgraphicsdropshadoweffect.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsDropShadowEffect: public QGraphicsDropShadowEffect { +public: +}; + +void QGraphicsDropShadowEffect_SetColor(QtObjectPtr ptr, QtObjectPtr color){ + QMetaObject::invokeMethod(static_cast(ptr), "setColor", Q_ARG(QColor, *static_cast(color))); +} + +void QGraphicsDropShadowEffect_SetOffset(QtObjectPtr ptr, QtObjectPtr ofs){ + QMetaObject::invokeMethod(static_cast(ptr), "setOffset", Q_ARG(QPointF, *static_cast(ofs))); +} + +QtObjectPtr QGraphicsDropShadowEffect_NewQGraphicsDropShadowEffect(QtObjectPtr parent){ + return new QGraphicsDropShadowEffect(static_cast(parent)); +} + +void QGraphicsDropShadowEffect_DestroyQGraphicsDropShadowEffect(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsDropShadowEffect(); +} + diff --git a/widgets/qgraphicsdropshadoweffect.go b/widgets/qgraphicsdropshadoweffect.go new file mode 100755 index 00000000..c0f63e3c --- /dev/null +++ b/widgets/qgraphicsdropshadoweffect.go @@ -0,0 +1,62 @@ +package widgets + +//#include "qgraphicsdropshadoweffect.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QGraphicsDropShadowEffect struct { + QGraphicsEffect +} + +type QGraphicsDropShadowEffectITF interface { + QGraphicsEffectITF + QGraphicsDropShadowEffectPTR() *QGraphicsDropShadowEffect +} + +func PointerFromQGraphicsDropShadowEffect(ptr QGraphicsDropShadowEffectITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsDropShadowEffectPTR().Pointer() + } + return nil +} + +func QGraphicsDropShadowEffectFromPointer(ptr unsafe.Pointer) *QGraphicsDropShadowEffect { + var n = new(QGraphicsDropShadowEffect) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGraphicsDropShadowEffect_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGraphicsDropShadowEffect) QGraphicsDropShadowEffectPTR() *QGraphicsDropShadowEffect { + return ptr +} + +func (ptr *QGraphicsDropShadowEffect) SetColor(color gui.QColorITF) { + if ptr.Pointer() != nil { + C.QGraphicsDropShadowEffect_SetColor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQColor(color))) + } +} + +func (ptr *QGraphicsDropShadowEffect) SetOffset(ofs core.QPointFITF) { + if ptr.Pointer() != nil { + C.QGraphicsDropShadowEffect_SetOffset(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(ofs))) + } +} + +func NewQGraphicsDropShadowEffect(parent core.QObjectITF) *QGraphicsDropShadowEffect { + return QGraphicsDropShadowEffectFromPointer(unsafe.Pointer(C.QGraphicsDropShadowEffect_NewQGraphicsDropShadowEffect(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QGraphicsDropShadowEffect) DestroyQGraphicsDropShadowEffect() { + if ptr.Pointer() != nil { + C.QGraphicsDropShadowEffect_DestroyQGraphicsDropShadowEffect(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qgraphicsdropshadoweffect.h b/widgets/qgraphicsdropshadoweffect.h new file mode 100755 index 00000000..c33d8227 --- /dev/null +++ b/widgets/qgraphicsdropshadoweffect.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QGraphicsDropShadowEffect_SetColor(QtObjectPtr ptr, QtObjectPtr color); +void QGraphicsDropShadowEffect_SetOffset(QtObjectPtr ptr, QtObjectPtr ofs); +QtObjectPtr QGraphicsDropShadowEffect_NewQGraphicsDropShadowEffect(QtObjectPtr parent); +void QGraphicsDropShadowEffect_DestroyQGraphicsDropShadowEffect(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicseffect.cpp b/widgets/qgraphicseffect.cpp new file mode 100755 index 00000000..a7dbe92c --- /dev/null +++ b/widgets/qgraphicseffect.cpp @@ -0,0 +1,8 @@ +#include "qgraphicseffect.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/widgets/qgraphicseffect.go b/widgets/qgraphicseffect.go new file mode 100755 index 00000000..d104b7f1 --- /dev/null +++ b/widgets/qgraphicseffect.go @@ -0,0 +1,57 @@ +package widgets + +//#include "qgraphicseffect.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGraphicsEffect struct { + core.QObject +} + +type QGraphicsEffectITF interface { + core.QObjectITF + QGraphicsEffectPTR() *QGraphicsEffect +} + +func PointerFromQGraphicsEffect(ptr QGraphicsEffectITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsEffectPTR().Pointer() + } + return nil +} + +func QGraphicsEffectFromPointer(ptr unsafe.Pointer) *QGraphicsEffect { + var n = new(QGraphicsEffect) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGraphicsEffect_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGraphicsEffect) QGraphicsEffectPTR() *QGraphicsEffect { + return ptr +} + +//QGraphicsEffect::ChangeFlag +type QGraphicsEffect__ChangeFlag int + +var ( + QGraphicsEffect__SourceAttached = QGraphicsEffect__ChangeFlag(0x1) + QGraphicsEffect__SourceDetached = QGraphicsEffect__ChangeFlag(0x2) + QGraphicsEffect__SourceBoundingRectChanged = QGraphicsEffect__ChangeFlag(0x4) + QGraphicsEffect__SourceInvalidated = QGraphicsEffect__ChangeFlag(0x8) +) + +//QGraphicsEffect::PixmapPadMode +type QGraphicsEffect__PixmapPadMode int + +var ( + QGraphicsEffect__NoPad = QGraphicsEffect__PixmapPadMode(0) + QGraphicsEffect__PadToTransparentBorder = QGraphicsEffect__PixmapPadMode(1) + QGraphicsEffect__PadToEffectiveBoundingRect = QGraphicsEffect__PixmapPadMode(2) +) diff --git a/widgets/qgraphicseffect.h b/widgets/qgraphicseffect.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/widgets/qgraphicseffect.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicsellipseitem.cpp b/widgets/qgraphicsellipseitem.cpp new file mode 100755 index 00000000..697471c7 --- /dev/null +++ b/widgets/qgraphicsellipseitem.cpp @@ -0,0 +1,62 @@ +#include "qgraphicsellipseitem.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsEllipseItem: public QGraphicsEllipseItem { +public: +}; + +int QGraphicsEllipseItem_Contains(QtObjectPtr ptr, QtObjectPtr point){ + return static_cast(ptr)->contains(*static_cast(point)); +} + +int QGraphicsEllipseItem_IsObscuredBy(QtObjectPtr ptr, QtObjectPtr item){ + return static_cast(ptr)->isObscuredBy(static_cast(item)); +} + +void QGraphicsEllipseItem_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget){ + static_cast(ptr)->paint(static_cast(painter), static_cast(option), static_cast(widget)); +} + +void QGraphicsEllipseItem_SetRect(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->setRect(*static_cast(rect)); +} + +void QGraphicsEllipseItem_SetSpanAngle(QtObjectPtr ptr, int angle){ + static_cast(ptr)->setSpanAngle(angle); +} + +void QGraphicsEllipseItem_SetStartAngle(QtObjectPtr ptr, int angle){ + static_cast(ptr)->setStartAngle(angle); +} + +int QGraphicsEllipseItem_SpanAngle(QtObjectPtr ptr){ + return static_cast(ptr)->spanAngle(); +} + +int QGraphicsEllipseItem_StartAngle(QtObjectPtr ptr){ + return static_cast(ptr)->startAngle(); +} + +int QGraphicsEllipseItem_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QGraphicsEllipseItem_DestroyQGraphicsEllipseItem(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsEllipseItem(); +} + diff --git a/widgets/qgraphicsellipseitem.go b/widgets/qgraphicsellipseitem.go new file mode 100755 index 00000000..1da9760c --- /dev/null +++ b/widgets/qgraphicsellipseitem.go @@ -0,0 +1,100 @@ +package widgets + +//#include "qgraphicsellipseitem.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QGraphicsEllipseItem struct { + QAbstractGraphicsShapeItem +} + +type QGraphicsEllipseItemITF interface { + QAbstractGraphicsShapeItemITF + QGraphicsEllipseItemPTR() *QGraphicsEllipseItem +} + +func PointerFromQGraphicsEllipseItem(ptr QGraphicsEllipseItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsEllipseItemPTR().Pointer() + } + return nil +} + +func QGraphicsEllipseItemFromPointer(ptr unsafe.Pointer) *QGraphicsEllipseItem { + var n = new(QGraphicsEllipseItem) + n.SetPointer(ptr) + return n +} + +func (ptr *QGraphicsEllipseItem) QGraphicsEllipseItemPTR() *QGraphicsEllipseItem { + return ptr +} + +func (ptr *QGraphicsEllipseItem) Contains(point core.QPointFITF) bool { + if ptr.Pointer() != nil { + return C.QGraphicsEllipseItem_Contains(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(point))) != 0 + } + return false +} + +func (ptr *QGraphicsEllipseItem) IsObscuredBy(item QGraphicsItemITF) bool { + if ptr.Pointer() != nil { + return C.QGraphicsEllipseItem_IsObscuredBy(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsItem(item))) != 0 + } + return false +} + +func (ptr *QGraphicsEllipseItem) Paint(painter gui.QPainterITF, option QStyleOptionGraphicsItemITF, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QGraphicsEllipseItem_Paint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(PointerFromQStyleOptionGraphicsItem(option)), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QGraphicsEllipseItem) SetRect(rect core.QRectFITF) { + if ptr.Pointer() != nil { + C.QGraphicsEllipseItem_SetRect(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rect))) + } +} + +func (ptr *QGraphicsEllipseItem) SetSpanAngle(angle int) { + if ptr.Pointer() != nil { + C.QGraphicsEllipseItem_SetSpanAngle(C.QtObjectPtr(ptr.Pointer()), C.int(angle)) + } +} + +func (ptr *QGraphicsEllipseItem) SetStartAngle(angle int) { + if ptr.Pointer() != nil { + C.QGraphicsEllipseItem_SetStartAngle(C.QtObjectPtr(ptr.Pointer()), C.int(angle)) + } +} + +func (ptr *QGraphicsEllipseItem) SpanAngle() int { + if ptr.Pointer() != nil { + return int(C.QGraphicsEllipseItem_SpanAngle(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsEllipseItem) StartAngle() int { + if ptr.Pointer() != nil { + return int(C.QGraphicsEllipseItem_StartAngle(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsEllipseItem) Type() int { + if ptr.Pointer() != nil { + return int(C.QGraphicsEllipseItem_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsEllipseItem) DestroyQGraphicsEllipseItem() { + if ptr.Pointer() != nil { + C.QGraphicsEllipseItem_DestroyQGraphicsEllipseItem(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qgraphicsellipseitem.h b/widgets/qgraphicsellipseitem.h new file mode 100755 index 00000000..30e0bb11 --- /dev/null +++ b/widgets/qgraphicsellipseitem.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QGraphicsEllipseItem_Contains(QtObjectPtr ptr, QtObjectPtr point); +int QGraphicsEllipseItem_IsObscuredBy(QtObjectPtr ptr, QtObjectPtr item); +void QGraphicsEllipseItem_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget); +void QGraphicsEllipseItem_SetRect(QtObjectPtr ptr, QtObjectPtr rect); +void QGraphicsEllipseItem_SetSpanAngle(QtObjectPtr ptr, int angle); +void QGraphicsEllipseItem_SetStartAngle(QtObjectPtr ptr, int angle); +int QGraphicsEllipseItem_SpanAngle(QtObjectPtr ptr); +int QGraphicsEllipseItem_StartAngle(QtObjectPtr ptr); +int QGraphicsEllipseItem_Type(QtObjectPtr ptr); +void QGraphicsEllipseItem_DestroyQGraphicsEllipseItem(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicsgridlayout.cpp b/widgets/qgraphicsgridlayout.cpp new file mode 100755 index 00000000..1d936d44 --- /dev/null +++ b/widgets/qgraphicsgridlayout.cpp @@ -0,0 +1,108 @@ +#include "qgraphicsgridlayout.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsGridLayout: public QGraphicsGridLayout { +public: +}; + +QtObjectPtr QGraphicsGridLayout_NewQGraphicsGridLayout(QtObjectPtr parent){ + return new QGraphicsGridLayout(static_cast(parent)); +} + +void QGraphicsGridLayout_AddItem2(QtObjectPtr ptr, QtObjectPtr item, int row, int column, int alignment){ + static_cast(ptr)->addItem(static_cast(item), row, column, static_cast(alignment)); +} + +void QGraphicsGridLayout_AddItem(QtObjectPtr ptr, QtObjectPtr item, int row, int column, int rowSpan, int columnSpan, int alignment){ + static_cast(ptr)->addItem(static_cast(item), row, column, rowSpan, columnSpan, static_cast(alignment)); +} + +int QGraphicsGridLayout_Alignment(QtObjectPtr ptr, QtObjectPtr item){ + return static_cast(ptr)->alignment(static_cast(item)); +} + +int QGraphicsGridLayout_ColumnAlignment(QtObjectPtr ptr, int column){ + return static_cast(ptr)->columnAlignment(column); +} + +int QGraphicsGridLayout_ColumnCount(QtObjectPtr ptr){ + return static_cast(ptr)->columnCount(); +} + +int QGraphicsGridLayout_ColumnStretchFactor(QtObjectPtr ptr, int column){ + return static_cast(ptr)->columnStretchFactor(column); +} + +int QGraphicsGridLayout_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +void QGraphicsGridLayout_Invalidate(QtObjectPtr ptr){ + static_cast(ptr)->invalidate(); +} + +QtObjectPtr QGraphicsGridLayout_ItemAt2(QtObjectPtr ptr, int index){ + return static_cast(ptr)->itemAt(index); +} + +QtObjectPtr QGraphicsGridLayout_ItemAt(QtObjectPtr ptr, int row, int column){ + return static_cast(ptr)->itemAt(row, column); +} + +void QGraphicsGridLayout_RemoveAt(QtObjectPtr ptr, int index){ + static_cast(ptr)->removeAt(index); +} + +void QGraphicsGridLayout_RemoveItem(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->removeItem(static_cast(item)); +} + +int QGraphicsGridLayout_RowAlignment(QtObjectPtr ptr, int row){ + return static_cast(ptr)->rowAlignment(row); +} + +int QGraphicsGridLayout_RowCount(QtObjectPtr ptr){ + return static_cast(ptr)->rowCount(); +} + +int QGraphicsGridLayout_RowStretchFactor(QtObjectPtr ptr, int row){ + return static_cast(ptr)->rowStretchFactor(row); +} + +void QGraphicsGridLayout_SetAlignment(QtObjectPtr ptr, QtObjectPtr item, int alignment){ + static_cast(ptr)->setAlignment(static_cast(item), static_cast(alignment)); +} + +void QGraphicsGridLayout_SetColumnAlignment(QtObjectPtr ptr, int column, int alignment){ + static_cast(ptr)->setColumnAlignment(column, static_cast(alignment)); +} + +void QGraphicsGridLayout_SetColumnStretchFactor(QtObjectPtr ptr, int column, int stretch){ + static_cast(ptr)->setColumnStretchFactor(column, stretch); +} + +void QGraphicsGridLayout_SetGeometry(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->setGeometry(*static_cast(rect)); +} + +void QGraphicsGridLayout_SetRowAlignment(QtObjectPtr ptr, int row, int alignment){ + static_cast(ptr)->setRowAlignment(row, static_cast(alignment)); +} + +void QGraphicsGridLayout_SetRowStretchFactor(QtObjectPtr ptr, int row, int stretch){ + static_cast(ptr)->setRowStretchFactor(row, stretch); +} + +void QGraphicsGridLayout_DestroyQGraphicsGridLayout(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsGridLayout(); +} + diff --git a/widgets/qgraphicsgridlayout.go b/widgets/qgraphicsgridlayout.go new file mode 100755 index 00000000..84ffd067 --- /dev/null +++ b/widgets/qgraphicsgridlayout.go @@ -0,0 +1,180 @@ +package widgets + +//#include "qgraphicsgridlayout.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGraphicsGridLayout struct { + QGraphicsLayout +} + +type QGraphicsGridLayoutITF interface { + QGraphicsLayoutITF + QGraphicsGridLayoutPTR() *QGraphicsGridLayout +} + +func PointerFromQGraphicsGridLayout(ptr QGraphicsGridLayoutITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsGridLayoutPTR().Pointer() + } + return nil +} + +func QGraphicsGridLayoutFromPointer(ptr unsafe.Pointer) *QGraphicsGridLayout { + var n = new(QGraphicsGridLayout) + n.SetPointer(ptr) + return n +} + +func (ptr *QGraphicsGridLayout) QGraphicsGridLayoutPTR() *QGraphicsGridLayout { + return ptr +} + +func NewQGraphicsGridLayout(parent QGraphicsLayoutItemITF) *QGraphicsGridLayout { + return QGraphicsGridLayoutFromPointer(unsafe.Pointer(C.QGraphicsGridLayout_NewQGraphicsGridLayout(C.QtObjectPtr(PointerFromQGraphicsLayoutItem(parent))))) +} + +func (ptr *QGraphicsGridLayout) AddItem2(item QGraphicsLayoutItemITF, row int, column int, alignment core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QGraphicsGridLayout_AddItem2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsLayoutItem(item)), C.int(row), C.int(column), C.int(alignment)) + } +} + +func (ptr *QGraphicsGridLayout) AddItem(item QGraphicsLayoutItemITF, row int, column int, rowSpan int, columnSpan int, alignment core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QGraphicsGridLayout_AddItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsLayoutItem(item)), C.int(row), C.int(column), C.int(rowSpan), C.int(columnSpan), C.int(alignment)) + } +} + +func (ptr *QGraphicsGridLayout) Alignment(item QGraphicsLayoutItemITF) core.Qt__AlignmentFlag { + if ptr.Pointer() != nil { + return core.Qt__AlignmentFlag(C.QGraphicsGridLayout_Alignment(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsLayoutItem(item)))) + } + return 0 +} + +func (ptr *QGraphicsGridLayout) ColumnAlignment(column int) core.Qt__AlignmentFlag { + if ptr.Pointer() != nil { + return core.Qt__AlignmentFlag(C.QGraphicsGridLayout_ColumnAlignment(C.QtObjectPtr(ptr.Pointer()), C.int(column))) + } + return 0 +} + +func (ptr *QGraphicsGridLayout) ColumnCount() int { + if ptr.Pointer() != nil { + return int(C.QGraphicsGridLayout_ColumnCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsGridLayout) ColumnStretchFactor(column int) int { + if ptr.Pointer() != nil { + return int(C.QGraphicsGridLayout_ColumnStretchFactor(C.QtObjectPtr(ptr.Pointer()), C.int(column))) + } + return 0 +} + +func (ptr *QGraphicsGridLayout) Count() int { + if ptr.Pointer() != nil { + return int(C.QGraphicsGridLayout_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsGridLayout) Invalidate() { + if ptr.Pointer() != nil { + C.QGraphicsGridLayout_Invalidate(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QGraphicsGridLayout) ItemAt2(index int) *QGraphicsLayoutItem { + if ptr.Pointer() != nil { + return QGraphicsLayoutItemFromPointer(unsafe.Pointer(C.QGraphicsGridLayout_ItemAt2(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QGraphicsGridLayout) ItemAt(row int, column int) *QGraphicsLayoutItem { + if ptr.Pointer() != nil { + return QGraphicsLayoutItemFromPointer(unsafe.Pointer(C.QGraphicsGridLayout_ItemAt(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column)))) + } + return nil +} + +func (ptr *QGraphicsGridLayout) RemoveAt(index int) { + if ptr.Pointer() != nil { + C.QGraphicsGridLayout_RemoveAt(C.QtObjectPtr(ptr.Pointer()), C.int(index)) + } +} + +func (ptr *QGraphicsGridLayout) RemoveItem(item QGraphicsLayoutItemITF) { + if ptr.Pointer() != nil { + C.QGraphicsGridLayout_RemoveItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsLayoutItem(item))) + } +} + +func (ptr *QGraphicsGridLayout) RowAlignment(row int) core.Qt__AlignmentFlag { + if ptr.Pointer() != nil { + return core.Qt__AlignmentFlag(C.QGraphicsGridLayout_RowAlignment(C.QtObjectPtr(ptr.Pointer()), C.int(row))) + } + return 0 +} + +func (ptr *QGraphicsGridLayout) RowCount() int { + if ptr.Pointer() != nil { + return int(C.QGraphicsGridLayout_RowCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsGridLayout) RowStretchFactor(row int) int { + if ptr.Pointer() != nil { + return int(C.QGraphicsGridLayout_RowStretchFactor(C.QtObjectPtr(ptr.Pointer()), C.int(row))) + } + return 0 +} + +func (ptr *QGraphicsGridLayout) SetAlignment(item QGraphicsLayoutItemITF, alignment core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QGraphicsGridLayout_SetAlignment(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsLayoutItem(item)), C.int(alignment)) + } +} + +func (ptr *QGraphicsGridLayout) SetColumnAlignment(column int, alignment core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QGraphicsGridLayout_SetColumnAlignment(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(alignment)) + } +} + +func (ptr *QGraphicsGridLayout) SetColumnStretchFactor(column int, stretch int) { + if ptr.Pointer() != nil { + C.QGraphicsGridLayout_SetColumnStretchFactor(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(stretch)) + } +} + +func (ptr *QGraphicsGridLayout) SetGeometry(rect core.QRectFITF) { + if ptr.Pointer() != nil { + C.QGraphicsGridLayout_SetGeometry(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rect))) + } +} + +func (ptr *QGraphicsGridLayout) SetRowAlignment(row int, alignment core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QGraphicsGridLayout_SetRowAlignment(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(alignment)) + } +} + +func (ptr *QGraphicsGridLayout) SetRowStretchFactor(row int, stretch int) { + if ptr.Pointer() != nil { + C.QGraphicsGridLayout_SetRowStretchFactor(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(stretch)) + } +} + +func (ptr *QGraphicsGridLayout) DestroyQGraphicsGridLayout() { + if ptr.Pointer() != nil { + C.QGraphicsGridLayout_DestroyQGraphicsGridLayout(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qgraphicsgridlayout.h b/widgets/qgraphicsgridlayout.h new file mode 100755 index 00000000..016e4ee6 --- /dev/null +++ b/widgets/qgraphicsgridlayout.h @@ -0,0 +1,32 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGraphicsGridLayout_NewQGraphicsGridLayout(QtObjectPtr parent); +void QGraphicsGridLayout_AddItem2(QtObjectPtr ptr, QtObjectPtr item, int row, int column, int alignment); +void QGraphicsGridLayout_AddItem(QtObjectPtr ptr, QtObjectPtr item, int row, int column, int rowSpan, int columnSpan, int alignment); +int QGraphicsGridLayout_Alignment(QtObjectPtr ptr, QtObjectPtr item); +int QGraphicsGridLayout_ColumnAlignment(QtObjectPtr ptr, int column); +int QGraphicsGridLayout_ColumnCount(QtObjectPtr ptr); +int QGraphicsGridLayout_ColumnStretchFactor(QtObjectPtr ptr, int column); +int QGraphicsGridLayout_Count(QtObjectPtr ptr); +void QGraphicsGridLayout_Invalidate(QtObjectPtr ptr); +QtObjectPtr QGraphicsGridLayout_ItemAt2(QtObjectPtr ptr, int index); +QtObjectPtr QGraphicsGridLayout_ItemAt(QtObjectPtr ptr, int row, int column); +void QGraphicsGridLayout_RemoveAt(QtObjectPtr ptr, int index); +void QGraphicsGridLayout_RemoveItem(QtObjectPtr ptr, QtObjectPtr item); +int QGraphicsGridLayout_RowAlignment(QtObjectPtr ptr, int row); +int QGraphicsGridLayout_RowCount(QtObjectPtr ptr); +int QGraphicsGridLayout_RowStretchFactor(QtObjectPtr ptr, int row); +void QGraphicsGridLayout_SetAlignment(QtObjectPtr ptr, QtObjectPtr item, int alignment); +void QGraphicsGridLayout_SetColumnAlignment(QtObjectPtr ptr, int column, int alignment); +void QGraphicsGridLayout_SetColumnStretchFactor(QtObjectPtr ptr, int column, int stretch); +void QGraphicsGridLayout_SetGeometry(QtObjectPtr ptr, QtObjectPtr rect); +void QGraphicsGridLayout_SetRowAlignment(QtObjectPtr ptr, int row, int alignment); +void QGraphicsGridLayout_SetRowStretchFactor(QtObjectPtr ptr, int row, int stretch); +void QGraphicsGridLayout_DestroyQGraphicsGridLayout(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicsitem.cpp b/widgets/qgraphicsitem.cpp new file mode 100755 index 00000000..270fe1f6 --- /dev/null +++ b/widgets/qgraphicsitem.cpp @@ -0,0 +1,8 @@ +#include "qgraphicsitem.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/widgets/qgraphicsitem.go b/widgets/qgraphicsitem.go new file mode 100755 index 00000000..1659d0c4 --- /dev/null +++ b/widgets/qgraphicsitem.go @@ -0,0 +1,124 @@ +package widgets + +//#include "qgraphicsitem.h" +import "C" +import ( + "unsafe" +) + +type QGraphicsItem struct { + ptr unsafe.Pointer +} + +type QGraphicsItemITF interface { + QGraphicsItemPTR() *QGraphicsItem +} + +func (p *QGraphicsItem) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QGraphicsItem) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQGraphicsItem(ptr QGraphicsItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsItemPTR().Pointer() + } + return nil +} + +func QGraphicsItemFromPointer(ptr unsafe.Pointer) *QGraphicsItem { + var n = new(QGraphicsItem) + n.SetPointer(ptr) + return n +} + +func (ptr *QGraphicsItem) QGraphicsItemPTR() *QGraphicsItem { + return ptr +} + +//QGraphicsItem::CacheMode +type QGraphicsItem__CacheMode int + +var ( + QGraphicsItem__NoCache = QGraphicsItem__CacheMode(0) + QGraphicsItem__ItemCoordinateCache = QGraphicsItem__CacheMode(1) + QGraphicsItem__DeviceCoordinateCache = QGraphicsItem__CacheMode(2) +) + +//QGraphicsItem::GraphicsItemChange +type QGraphicsItem__GraphicsItemChange int + +var ( + QGraphicsItem__ItemPositionChange = QGraphicsItem__GraphicsItemChange(0) + QGraphicsItem__ItemMatrixChange = QGraphicsItem__GraphicsItemChange(1) + QGraphicsItem__ItemVisibleChange = QGraphicsItem__GraphicsItemChange(2) + QGraphicsItem__ItemEnabledChange = QGraphicsItem__GraphicsItemChange(3) + QGraphicsItem__ItemSelectedChange = QGraphicsItem__GraphicsItemChange(4) + QGraphicsItem__ItemParentChange = QGraphicsItem__GraphicsItemChange(5) + QGraphicsItem__ItemChildAddedChange = QGraphicsItem__GraphicsItemChange(6) + QGraphicsItem__ItemChildRemovedChange = QGraphicsItem__GraphicsItemChange(7) + QGraphicsItem__ItemTransformChange = QGraphicsItem__GraphicsItemChange(8) + QGraphicsItem__ItemPositionHasChanged = QGraphicsItem__GraphicsItemChange(9) + QGraphicsItem__ItemTransformHasChanged = QGraphicsItem__GraphicsItemChange(10) + QGraphicsItem__ItemSceneChange = QGraphicsItem__GraphicsItemChange(11) + QGraphicsItem__ItemVisibleHasChanged = QGraphicsItem__GraphicsItemChange(12) + QGraphicsItem__ItemEnabledHasChanged = QGraphicsItem__GraphicsItemChange(13) + QGraphicsItem__ItemSelectedHasChanged = QGraphicsItem__GraphicsItemChange(14) + QGraphicsItem__ItemParentHasChanged = QGraphicsItem__GraphicsItemChange(15) + QGraphicsItem__ItemSceneHasChanged = QGraphicsItem__GraphicsItemChange(16) + QGraphicsItem__ItemCursorChange = QGraphicsItem__GraphicsItemChange(17) + QGraphicsItem__ItemCursorHasChanged = QGraphicsItem__GraphicsItemChange(18) + QGraphicsItem__ItemToolTipChange = QGraphicsItem__GraphicsItemChange(19) + QGraphicsItem__ItemToolTipHasChanged = QGraphicsItem__GraphicsItemChange(20) + QGraphicsItem__ItemFlagsChange = QGraphicsItem__GraphicsItemChange(21) + QGraphicsItem__ItemFlagsHaveChanged = QGraphicsItem__GraphicsItemChange(22) + QGraphicsItem__ItemZValueChange = QGraphicsItem__GraphicsItemChange(23) + QGraphicsItem__ItemZValueHasChanged = QGraphicsItem__GraphicsItemChange(24) + QGraphicsItem__ItemOpacityChange = QGraphicsItem__GraphicsItemChange(25) + QGraphicsItem__ItemOpacityHasChanged = QGraphicsItem__GraphicsItemChange(26) + QGraphicsItem__ItemScenePositionHasChanged = QGraphicsItem__GraphicsItemChange(27) + QGraphicsItem__ItemRotationChange = QGraphicsItem__GraphicsItemChange(28) + QGraphicsItem__ItemRotationHasChanged = QGraphicsItem__GraphicsItemChange(29) + QGraphicsItem__ItemScaleChange = QGraphicsItem__GraphicsItemChange(30) + QGraphicsItem__ItemScaleHasChanged = QGraphicsItem__GraphicsItemChange(31) + QGraphicsItem__ItemTransformOriginPointChange = QGraphicsItem__GraphicsItemChange(32) + QGraphicsItem__ItemTransformOriginPointHasChanged = QGraphicsItem__GraphicsItemChange(33) +) + +//QGraphicsItem::GraphicsItemFlag +type QGraphicsItem__GraphicsItemFlag int + +var ( + QGraphicsItem__ItemIsMovable = QGraphicsItem__GraphicsItemFlag(0x1) + QGraphicsItem__ItemIsSelectable = QGraphicsItem__GraphicsItemFlag(0x2) + QGraphicsItem__ItemIsFocusable = QGraphicsItem__GraphicsItemFlag(0x4) + QGraphicsItem__ItemClipsToShape = QGraphicsItem__GraphicsItemFlag(0x8) + QGraphicsItem__ItemClipsChildrenToShape = QGraphicsItem__GraphicsItemFlag(0x10) + QGraphicsItem__ItemIgnoresTransformations = QGraphicsItem__GraphicsItemFlag(0x20) + QGraphicsItem__ItemIgnoresParentOpacity = QGraphicsItem__GraphicsItemFlag(0x40) + QGraphicsItem__ItemDoesntPropagateOpacityToChildren = QGraphicsItem__GraphicsItemFlag(0x80) + QGraphicsItem__ItemStacksBehindParent = QGraphicsItem__GraphicsItemFlag(0x100) + QGraphicsItem__ItemUsesExtendedStyleOption = QGraphicsItem__GraphicsItemFlag(0x200) + QGraphicsItem__ItemHasNoContents = QGraphicsItem__GraphicsItemFlag(0x400) + QGraphicsItem__ItemSendsGeometryChanges = QGraphicsItem__GraphicsItemFlag(0x800) + QGraphicsItem__ItemAcceptsInputMethod = QGraphicsItem__GraphicsItemFlag(0x1000) + QGraphicsItem__ItemNegativeZStacksBehindParent = QGraphicsItem__GraphicsItemFlag(0x2000) + QGraphicsItem__ItemIsPanel = QGraphicsItem__GraphicsItemFlag(0x4000) + QGraphicsItem__ItemIsFocusScope = QGraphicsItem__GraphicsItemFlag(0x8000) + QGraphicsItem__ItemSendsScenePositionChanges = QGraphicsItem__GraphicsItemFlag(0x10000) + QGraphicsItem__ItemStopsClickFocusPropagation = QGraphicsItem__GraphicsItemFlag(0x20000) + QGraphicsItem__ItemStopsFocusHandling = QGraphicsItem__GraphicsItemFlag(0x40000) + QGraphicsItem__ItemContainsChildrenInShape = QGraphicsItem__GraphicsItemFlag(0x80000) +) + +//QGraphicsItem::PanelModality +type QGraphicsItem__PanelModality int + +var ( + QGraphicsItem__NonModal = QGraphicsItem__PanelModality(0) + QGraphicsItem__PanelModal = QGraphicsItem__PanelModality(1) + QGraphicsItem__SceneModal = QGraphicsItem__PanelModality(2) +) diff --git a/widgets/qgraphicsitem.h b/widgets/qgraphicsitem.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/widgets/qgraphicsitem.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicsitemgroup.cpp b/widgets/qgraphicsitemgroup.cpp new file mode 100755 index 00000000..ff13fb3d --- /dev/null +++ b/widgets/qgraphicsitemgroup.cpp @@ -0,0 +1,46 @@ +#include "qgraphicsitemgroup.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsItemGroup: public QGraphicsItemGroup { +public: +}; + +QtObjectPtr QGraphicsItemGroup_NewQGraphicsItemGroup(QtObjectPtr parent){ + return new QGraphicsItemGroup(static_cast(parent)); +} + +void QGraphicsItemGroup_AddToGroup(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->addToGroup(static_cast(item)); +} + +int QGraphicsItemGroup_IsObscuredBy(QtObjectPtr ptr, QtObjectPtr item){ + return static_cast(ptr)->isObscuredBy(static_cast(item)); +} + +void QGraphicsItemGroup_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget){ + static_cast(ptr)->paint(static_cast(painter), static_cast(option), static_cast(widget)); +} + +void QGraphicsItemGroup_RemoveFromGroup(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->removeFromGroup(static_cast(item)); +} + +int QGraphicsItemGroup_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QGraphicsItemGroup_DestroyQGraphicsItemGroup(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsItemGroup(); +} + diff --git a/widgets/qgraphicsitemgroup.go b/widgets/qgraphicsitemgroup.go new file mode 100755 index 00000000..014e1b9b --- /dev/null +++ b/widgets/qgraphicsitemgroup.go @@ -0,0 +1,76 @@ +package widgets + +//#include "qgraphicsitemgroup.h" +import "C" +import ( + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QGraphicsItemGroup struct { + QGraphicsItem +} + +type QGraphicsItemGroupITF interface { + QGraphicsItemITF + QGraphicsItemGroupPTR() *QGraphicsItemGroup +} + +func PointerFromQGraphicsItemGroup(ptr QGraphicsItemGroupITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsItemGroupPTR().Pointer() + } + return nil +} + +func QGraphicsItemGroupFromPointer(ptr unsafe.Pointer) *QGraphicsItemGroup { + var n = new(QGraphicsItemGroup) + n.SetPointer(ptr) + return n +} + +func (ptr *QGraphicsItemGroup) QGraphicsItemGroupPTR() *QGraphicsItemGroup { + return ptr +} + +func NewQGraphicsItemGroup(parent QGraphicsItemITF) *QGraphicsItemGroup { + return QGraphicsItemGroupFromPointer(unsafe.Pointer(C.QGraphicsItemGroup_NewQGraphicsItemGroup(C.QtObjectPtr(PointerFromQGraphicsItem(parent))))) +} + +func (ptr *QGraphicsItemGroup) AddToGroup(item QGraphicsItemITF) { + if ptr.Pointer() != nil { + C.QGraphicsItemGroup_AddToGroup(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsItem(item))) + } +} + +func (ptr *QGraphicsItemGroup) IsObscuredBy(item QGraphicsItemITF) bool { + if ptr.Pointer() != nil { + return C.QGraphicsItemGroup_IsObscuredBy(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsItem(item))) != 0 + } + return false +} + +func (ptr *QGraphicsItemGroup) Paint(painter gui.QPainterITF, option QStyleOptionGraphicsItemITF, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QGraphicsItemGroup_Paint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(PointerFromQStyleOptionGraphicsItem(option)), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QGraphicsItemGroup) RemoveFromGroup(item QGraphicsItemITF) { + if ptr.Pointer() != nil { + C.QGraphicsItemGroup_RemoveFromGroup(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsItem(item))) + } +} + +func (ptr *QGraphicsItemGroup) Type() int { + if ptr.Pointer() != nil { + return int(C.QGraphicsItemGroup_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsItemGroup) DestroyQGraphicsItemGroup() { + if ptr.Pointer() != nil { + C.QGraphicsItemGroup_DestroyQGraphicsItemGroup(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qgraphicsitemgroup.h b/widgets/qgraphicsitemgroup.h new file mode 100755 index 00000000..b5737bd9 --- /dev/null +++ b/widgets/qgraphicsitemgroup.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGraphicsItemGroup_NewQGraphicsItemGroup(QtObjectPtr parent); +void QGraphicsItemGroup_AddToGroup(QtObjectPtr ptr, QtObjectPtr item); +int QGraphicsItemGroup_IsObscuredBy(QtObjectPtr ptr, QtObjectPtr item); +void QGraphicsItemGroup_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget); +void QGraphicsItemGroup_RemoveFromGroup(QtObjectPtr ptr, QtObjectPtr item); +int QGraphicsItemGroup_Type(QtObjectPtr ptr); +void QGraphicsItemGroup_DestroyQGraphicsItemGroup(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicslayout.cpp b/widgets/qgraphicslayout.cpp new file mode 100755 index 00000000..3621617f --- /dev/null +++ b/widgets/qgraphicslayout.cpp @@ -0,0 +1,8 @@ +#include "qgraphicslayout.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/widgets/qgraphicslayout.go b/widgets/qgraphicslayout.go new file mode 100755 index 00000000..591e9d75 --- /dev/null +++ b/widgets/qgraphicslayout.go @@ -0,0 +1,33 @@ +package widgets + +//#include "qgraphicslayout.h" +import "C" +import ( + "unsafe" +) + +type QGraphicsLayout struct { + QGraphicsLayoutItem +} + +type QGraphicsLayoutITF interface { + QGraphicsLayoutItemITF + QGraphicsLayoutPTR() *QGraphicsLayout +} + +func PointerFromQGraphicsLayout(ptr QGraphicsLayoutITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsLayoutPTR().Pointer() + } + return nil +} + +func QGraphicsLayoutFromPointer(ptr unsafe.Pointer) *QGraphicsLayout { + var n = new(QGraphicsLayout) + n.SetPointer(ptr) + return n +} + +func (ptr *QGraphicsLayout) QGraphicsLayoutPTR() *QGraphicsLayout { + return ptr +} diff --git a/widgets/qgraphicslayout.h b/widgets/qgraphicslayout.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/widgets/qgraphicslayout.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicslayoutitem.cpp b/widgets/qgraphicslayoutitem.cpp new file mode 100755 index 00000000..a165e1a2 --- /dev/null +++ b/widgets/qgraphicslayoutitem.cpp @@ -0,0 +1,9 @@ +#include "qgraphicslayoutitem.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/widgets/qgraphicslayoutitem.go b/widgets/qgraphicslayoutitem.go new file mode 100755 index 00000000..341f33fd --- /dev/null +++ b/widgets/qgraphicslayoutitem.go @@ -0,0 +1,40 @@ +package widgets + +//#include "qgraphicslayoutitem.h" +import "C" +import ( + "unsafe" +) + +type QGraphicsLayoutItem struct { + ptr unsafe.Pointer +} + +type QGraphicsLayoutItemITF interface { + QGraphicsLayoutItemPTR() *QGraphicsLayoutItem +} + +func (p *QGraphicsLayoutItem) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QGraphicsLayoutItem) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQGraphicsLayoutItem(ptr QGraphicsLayoutItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsLayoutItemPTR().Pointer() + } + return nil +} + +func QGraphicsLayoutItemFromPointer(ptr unsafe.Pointer) *QGraphicsLayoutItem { + var n = new(QGraphicsLayoutItem) + n.SetPointer(ptr) + return n +} + +func (ptr *QGraphicsLayoutItem) QGraphicsLayoutItemPTR() *QGraphicsLayoutItem { + return ptr +} diff --git a/widgets/qgraphicslayoutitem.h b/widgets/qgraphicslayoutitem.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/widgets/qgraphicslayoutitem.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicslinearlayout.cpp b/widgets/qgraphicslinearlayout.cpp new file mode 100755 index 00000000..9fac7a07 --- /dev/null +++ b/widgets/qgraphicslinearlayout.cpp @@ -0,0 +1,92 @@ +#include "qgraphicslinearlayout.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsLinearLayout: public QGraphicsLinearLayout { +public: +}; + +QtObjectPtr QGraphicsLinearLayout_NewQGraphicsLinearLayout(QtObjectPtr parent){ + return new QGraphicsLinearLayout(static_cast(parent)); +} + +QtObjectPtr QGraphicsLinearLayout_NewQGraphicsLinearLayout2(int orientation, QtObjectPtr parent){ + return new QGraphicsLinearLayout(static_cast(orientation), static_cast(parent)); +} + +void QGraphicsLinearLayout_AddItem(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->addItem(static_cast(item)); +} + +void QGraphicsLinearLayout_AddStretch(QtObjectPtr ptr, int stretch){ + static_cast(ptr)->addStretch(stretch); +} + +int QGraphicsLinearLayout_Alignment(QtObjectPtr ptr, QtObjectPtr item){ + return static_cast(ptr)->alignment(static_cast(item)); +} + +int QGraphicsLinearLayout_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +void QGraphicsLinearLayout_InsertItem(QtObjectPtr ptr, int index, QtObjectPtr item){ + static_cast(ptr)->insertItem(index, static_cast(item)); +} + +void QGraphicsLinearLayout_InsertStretch(QtObjectPtr ptr, int index, int stretch){ + static_cast(ptr)->insertStretch(index, stretch); +} + +void QGraphicsLinearLayout_Invalidate(QtObjectPtr ptr){ + static_cast(ptr)->invalidate(); +} + +QtObjectPtr QGraphicsLinearLayout_ItemAt(QtObjectPtr ptr, int index){ + return static_cast(ptr)->itemAt(index); +} + +int QGraphicsLinearLayout_Orientation(QtObjectPtr ptr){ + return static_cast(ptr)->orientation(); +} + +void QGraphicsLinearLayout_RemoveAt(QtObjectPtr ptr, int index){ + static_cast(ptr)->removeAt(index); +} + +void QGraphicsLinearLayout_RemoveItem(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->removeItem(static_cast(item)); +} + +void QGraphicsLinearLayout_SetAlignment(QtObjectPtr ptr, QtObjectPtr item, int alignment){ + static_cast(ptr)->setAlignment(static_cast(item), static_cast(alignment)); +} + +void QGraphicsLinearLayout_SetGeometry(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->setGeometry(*static_cast(rect)); +} + +void QGraphicsLinearLayout_SetOrientation(QtObjectPtr ptr, int orientation){ + static_cast(ptr)->setOrientation(static_cast(orientation)); +} + +void QGraphicsLinearLayout_SetStretchFactor(QtObjectPtr ptr, QtObjectPtr item, int stretch){ + static_cast(ptr)->setStretchFactor(static_cast(item), stretch); +} + +int QGraphicsLinearLayout_StretchFactor(QtObjectPtr ptr, QtObjectPtr item){ + return static_cast(ptr)->stretchFactor(static_cast(item)); +} + +void QGraphicsLinearLayout_DestroyQGraphicsLinearLayout(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsLinearLayout(); +} + diff --git a/widgets/qgraphicslinearlayout.go b/widgets/qgraphicslinearlayout.go new file mode 100755 index 00000000..a59334eb --- /dev/null +++ b/widgets/qgraphicslinearlayout.go @@ -0,0 +1,149 @@ +package widgets + +//#include "qgraphicslinearlayout.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGraphicsLinearLayout struct { + QGraphicsLayout +} + +type QGraphicsLinearLayoutITF interface { + QGraphicsLayoutITF + QGraphicsLinearLayoutPTR() *QGraphicsLinearLayout +} + +func PointerFromQGraphicsLinearLayout(ptr QGraphicsLinearLayoutITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsLinearLayoutPTR().Pointer() + } + return nil +} + +func QGraphicsLinearLayoutFromPointer(ptr unsafe.Pointer) *QGraphicsLinearLayout { + var n = new(QGraphicsLinearLayout) + n.SetPointer(ptr) + return n +} + +func (ptr *QGraphicsLinearLayout) QGraphicsLinearLayoutPTR() *QGraphicsLinearLayout { + return ptr +} + +func NewQGraphicsLinearLayout(parent QGraphicsLayoutItemITF) *QGraphicsLinearLayout { + return QGraphicsLinearLayoutFromPointer(unsafe.Pointer(C.QGraphicsLinearLayout_NewQGraphicsLinearLayout(C.QtObjectPtr(PointerFromQGraphicsLayoutItem(parent))))) +} + +func NewQGraphicsLinearLayout2(orientation core.Qt__Orientation, parent QGraphicsLayoutItemITF) *QGraphicsLinearLayout { + return QGraphicsLinearLayoutFromPointer(unsafe.Pointer(C.QGraphicsLinearLayout_NewQGraphicsLinearLayout2(C.int(orientation), C.QtObjectPtr(PointerFromQGraphicsLayoutItem(parent))))) +} + +func (ptr *QGraphicsLinearLayout) AddItem(item QGraphicsLayoutItemITF) { + if ptr.Pointer() != nil { + C.QGraphicsLinearLayout_AddItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsLayoutItem(item))) + } +} + +func (ptr *QGraphicsLinearLayout) AddStretch(stretch int) { + if ptr.Pointer() != nil { + C.QGraphicsLinearLayout_AddStretch(C.QtObjectPtr(ptr.Pointer()), C.int(stretch)) + } +} + +func (ptr *QGraphicsLinearLayout) Alignment(item QGraphicsLayoutItemITF) core.Qt__AlignmentFlag { + if ptr.Pointer() != nil { + return core.Qt__AlignmentFlag(C.QGraphicsLinearLayout_Alignment(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsLayoutItem(item)))) + } + return 0 +} + +func (ptr *QGraphicsLinearLayout) Count() int { + if ptr.Pointer() != nil { + return int(C.QGraphicsLinearLayout_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsLinearLayout) InsertItem(index int, item QGraphicsLayoutItemITF) { + if ptr.Pointer() != nil { + C.QGraphicsLinearLayout_InsertItem(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.QtObjectPtr(PointerFromQGraphicsLayoutItem(item))) + } +} + +func (ptr *QGraphicsLinearLayout) InsertStretch(index int, stretch int) { + if ptr.Pointer() != nil { + C.QGraphicsLinearLayout_InsertStretch(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.int(stretch)) + } +} + +func (ptr *QGraphicsLinearLayout) Invalidate() { + if ptr.Pointer() != nil { + C.QGraphicsLinearLayout_Invalidate(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QGraphicsLinearLayout) ItemAt(index int) *QGraphicsLayoutItem { + if ptr.Pointer() != nil { + return QGraphicsLayoutItemFromPointer(unsafe.Pointer(C.QGraphicsLinearLayout_ItemAt(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QGraphicsLinearLayout) Orientation() core.Qt__Orientation { + if ptr.Pointer() != nil { + return core.Qt__Orientation(C.QGraphicsLinearLayout_Orientation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsLinearLayout) RemoveAt(index int) { + if ptr.Pointer() != nil { + C.QGraphicsLinearLayout_RemoveAt(C.QtObjectPtr(ptr.Pointer()), C.int(index)) + } +} + +func (ptr *QGraphicsLinearLayout) RemoveItem(item QGraphicsLayoutItemITF) { + if ptr.Pointer() != nil { + C.QGraphicsLinearLayout_RemoveItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsLayoutItem(item))) + } +} + +func (ptr *QGraphicsLinearLayout) SetAlignment(item QGraphicsLayoutItemITF, alignment core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QGraphicsLinearLayout_SetAlignment(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsLayoutItem(item)), C.int(alignment)) + } +} + +func (ptr *QGraphicsLinearLayout) SetGeometry(rect core.QRectFITF) { + if ptr.Pointer() != nil { + C.QGraphicsLinearLayout_SetGeometry(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rect))) + } +} + +func (ptr *QGraphicsLinearLayout) SetOrientation(orientation core.Qt__Orientation) { + if ptr.Pointer() != nil { + C.QGraphicsLinearLayout_SetOrientation(C.QtObjectPtr(ptr.Pointer()), C.int(orientation)) + } +} + +func (ptr *QGraphicsLinearLayout) SetStretchFactor(item QGraphicsLayoutItemITF, stretch int) { + if ptr.Pointer() != nil { + C.QGraphicsLinearLayout_SetStretchFactor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsLayoutItem(item)), C.int(stretch)) + } +} + +func (ptr *QGraphicsLinearLayout) StretchFactor(item QGraphicsLayoutItemITF) int { + if ptr.Pointer() != nil { + return int(C.QGraphicsLinearLayout_StretchFactor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsLayoutItem(item)))) + } + return 0 +} + +func (ptr *QGraphicsLinearLayout) DestroyQGraphicsLinearLayout() { + if ptr.Pointer() != nil { + C.QGraphicsLinearLayout_DestroyQGraphicsLinearLayout(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qgraphicslinearlayout.h b/widgets/qgraphicslinearlayout.h new file mode 100755 index 00000000..c84f83d8 --- /dev/null +++ b/widgets/qgraphicslinearlayout.h @@ -0,0 +1,28 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGraphicsLinearLayout_NewQGraphicsLinearLayout(QtObjectPtr parent); +QtObjectPtr QGraphicsLinearLayout_NewQGraphicsLinearLayout2(int orientation, QtObjectPtr parent); +void QGraphicsLinearLayout_AddItem(QtObjectPtr ptr, QtObjectPtr item); +void QGraphicsLinearLayout_AddStretch(QtObjectPtr ptr, int stretch); +int QGraphicsLinearLayout_Alignment(QtObjectPtr ptr, QtObjectPtr item); +int QGraphicsLinearLayout_Count(QtObjectPtr ptr); +void QGraphicsLinearLayout_InsertItem(QtObjectPtr ptr, int index, QtObjectPtr item); +void QGraphicsLinearLayout_InsertStretch(QtObjectPtr ptr, int index, int stretch); +void QGraphicsLinearLayout_Invalidate(QtObjectPtr ptr); +QtObjectPtr QGraphicsLinearLayout_ItemAt(QtObjectPtr ptr, int index); +int QGraphicsLinearLayout_Orientation(QtObjectPtr ptr); +void QGraphicsLinearLayout_RemoveAt(QtObjectPtr ptr, int index); +void QGraphicsLinearLayout_RemoveItem(QtObjectPtr ptr, QtObjectPtr item); +void QGraphicsLinearLayout_SetAlignment(QtObjectPtr ptr, QtObjectPtr item, int alignment); +void QGraphicsLinearLayout_SetGeometry(QtObjectPtr ptr, QtObjectPtr rect); +void QGraphicsLinearLayout_SetOrientation(QtObjectPtr ptr, int orientation); +void QGraphicsLinearLayout_SetStretchFactor(QtObjectPtr ptr, QtObjectPtr item, int stretch); +int QGraphicsLinearLayout_StretchFactor(QtObjectPtr ptr, QtObjectPtr item); +void QGraphicsLinearLayout_DestroyQGraphicsLinearLayout(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicslineitem.cpp b/widgets/qgraphicslineitem.cpp new file mode 100755 index 00000000..eaaad464 --- /dev/null +++ b/widgets/qgraphicslineitem.cpp @@ -0,0 +1,59 @@ +#include "qgraphicslineitem.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsLineItem: public QGraphicsLineItem { +public: +}; + +QtObjectPtr QGraphicsLineItem_NewQGraphicsLineItem(QtObjectPtr parent){ + return new QGraphicsLineItem(static_cast(parent)); +} + +QtObjectPtr QGraphicsLineItem_NewQGraphicsLineItem2(QtObjectPtr line, QtObjectPtr parent){ + return new QGraphicsLineItem(*static_cast(line), static_cast(parent)); +} + +int QGraphicsLineItem_Contains(QtObjectPtr ptr, QtObjectPtr point){ + return static_cast(ptr)->contains(*static_cast(point)); +} + +int QGraphicsLineItem_IsObscuredBy(QtObjectPtr ptr, QtObjectPtr item){ + return static_cast(ptr)->isObscuredBy(static_cast(item)); +} + +void QGraphicsLineItem_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget){ + static_cast(ptr)->paint(static_cast(painter), static_cast(option), static_cast(widget)); +} + +void QGraphicsLineItem_SetLine(QtObjectPtr ptr, QtObjectPtr line){ + static_cast(ptr)->setLine(*static_cast(line)); +} + +void QGraphicsLineItem_SetPen(QtObjectPtr ptr, QtObjectPtr pen){ + static_cast(ptr)->setPen(*static_cast(pen)); +} + +int QGraphicsLineItem_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QGraphicsLineItem_DestroyQGraphicsLineItem(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsLineItem(); +} + diff --git a/widgets/qgraphicslineitem.go b/widgets/qgraphicslineitem.go new file mode 100755 index 00000000..8f231c8b --- /dev/null +++ b/widgets/qgraphicslineitem.go @@ -0,0 +1,88 @@ +package widgets + +//#include "qgraphicslineitem.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QGraphicsLineItem struct { + QGraphicsItem +} + +type QGraphicsLineItemITF interface { + QGraphicsItemITF + QGraphicsLineItemPTR() *QGraphicsLineItem +} + +func PointerFromQGraphicsLineItem(ptr QGraphicsLineItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsLineItemPTR().Pointer() + } + return nil +} + +func QGraphicsLineItemFromPointer(ptr unsafe.Pointer) *QGraphicsLineItem { + var n = new(QGraphicsLineItem) + n.SetPointer(ptr) + return n +} + +func (ptr *QGraphicsLineItem) QGraphicsLineItemPTR() *QGraphicsLineItem { + return ptr +} + +func NewQGraphicsLineItem(parent QGraphicsItemITF) *QGraphicsLineItem { + return QGraphicsLineItemFromPointer(unsafe.Pointer(C.QGraphicsLineItem_NewQGraphicsLineItem(C.QtObjectPtr(PointerFromQGraphicsItem(parent))))) +} + +func NewQGraphicsLineItem2(line core.QLineFITF, parent QGraphicsItemITF) *QGraphicsLineItem { + return QGraphicsLineItemFromPointer(unsafe.Pointer(C.QGraphicsLineItem_NewQGraphicsLineItem2(C.QtObjectPtr(core.PointerFromQLineF(line)), C.QtObjectPtr(PointerFromQGraphicsItem(parent))))) +} + +func (ptr *QGraphicsLineItem) Contains(point core.QPointFITF) bool { + if ptr.Pointer() != nil { + return C.QGraphicsLineItem_Contains(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(point))) != 0 + } + return false +} + +func (ptr *QGraphicsLineItem) IsObscuredBy(item QGraphicsItemITF) bool { + if ptr.Pointer() != nil { + return C.QGraphicsLineItem_IsObscuredBy(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsItem(item))) != 0 + } + return false +} + +func (ptr *QGraphicsLineItem) Paint(painter gui.QPainterITF, option QStyleOptionGraphicsItemITF, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QGraphicsLineItem_Paint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(PointerFromQStyleOptionGraphicsItem(option)), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QGraphicsLineItem) SetLine(line core.QLineFITF) { + if ptr.Pointer() != nil { + C.QGraphicsLineItem_SetLine(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQLineF(line))) + } +} + +func (ptr *QGraphicsLineItem) SetPen(pen gui.QPenITF) { + if ptr.Pointer() != nil { + C.QGraphicsLineItem_SetPen(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPen(pen))) + } +} + +func (ptr *QGraphicsLineItem) Type() int { + if ptr.Pointer() != nil { + return int(C.QGraphicsLineItem_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsLineItem) DestroyQGraphicsLineItem() { + if ptr.Pointer() != nil { + C.QGraphicsLineItem_DestroyQGraphicsLineItem(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qgraphicslineitem.h b/widgets/qgraphicslineitem.h new file mode 100755 index 00000000..9a3aa0f2 --- /dev/null +++ b/widgets/qgraphicslineitem.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGraphicsLineItem_NewQGraphicsLineItem(QtObjectPtr parent); +QtObjectPtr QGraphicsLineItem_NewQGraphicsLineItem2(QtObjectPtr line, QtObjectPtr parent); +int QGraphicsLineItem_Contains(QtObjectPtr ptr, QtObjectPtr point); +int QGraphicsLineItem_IsObscuredBy(QtObjectPtr ptr, QtObjectPtr item); +void QGraphicsLineItem_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget); +void QGraphicsLineItem_SetLine(QtObjectPtr ptr, QtObjectPtr line); +void QGraphicsLineItem_SetPen(QtObjectPtr ptr, QtObjectPtr pen); +int QGraphicsLineItem_Type(QtObjectPtr ptr); +void QGraphicsLineItem_DestroyQGraphicsLineItem(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicsobject.cpp b/widgets/qgraphicsobject.cpp new file mode 100755 index 00000000..9f0a3789 --- /dev/null +++ b/widgets/qgraphicsobject.cpp @@ -0,0 +1,8 @@ +#include "qgraphicsobject.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/widgets/qgraphicsobject.go b/widgets/qgraphicsobject.go new file mode 100755 index 00000000..91f9c2cf --- /dev/null +++ b/widgets/qgraphicsobject.go @@ -0,0 +1,49 @@ +package widgets + +//#include "qgraphicsobject.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGraphicsObject struct { + QGraphicsItem + core.QObject +} + +type QGraphicsObjectITF interface { + QGraphicsItemITF + core.QObjectITF + QGraphicsObjectPTR() *QGraphicsObject +} + +func (p *QGraphicsObject) Pointer() unsafe.Pointer { + return p.QGraphicsItemPTR().Pointer() +} + +func (p *QGraphicsObject) SetPointer(ptr unsafe.Pointer) { + p.QGraphicsItemPTR().SetPointer(ptr) + p.QObjectPTR().SetPointer(ptr) +} + +func PointerFromQGraphicsObject(ptr QGraphicsObjectITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsObjectPTR().Pointer() + } + return nil +} + +func QGraphicsObjectFromPointer(ptr unsafe.Pointer) *QGraphicsObject { + var n = new(QGraphicsObject) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGraphicsObject_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGraphicsObject) QGraphicsObjectPTR() *QGraphicsObject { + return ptr +} diff --git a/widgets/qgraphicsobject.h b/widgets/qgraphicsobject.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/widgets/qgraphicsobject.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicsopacityeffect.cpp b/widgets/qgraphicsopacityeffect.cpp new file mode 100755 index 00000000..29482958 --- /dev/null +++ b/widgets/qgraphicsopacityeffect.cpp @@ -0,0 +1,27 @@ +#include "qgraphicsopacityeffect.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsOpacityEffect: public QGraphicsOpacityEffect { +public: +}; + +void QGraphicsOpacityEffect_SetOpacityMask(QtObjectPtr ptr, QtObjectPtr mask){ + QMetaObject::invokeMethod(static_cast(ptr), "setOpacityMask", Q_ARG(QBrush, *static_cast(mask))); +} + +QtObjectPtr QGraphicsOpacityEffect_NewQGraphicsOpacityEffect(QtObjectPtr parent){ + return new QGraphicsOpacityEffect(static_cast(parent)); +} + +void QGraphicsOpacityEffect_DestroyQGraphicsOpacityEffect(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsOpacityEffect(); +} + diff --git a/widgets/qgraphicsopacityeffect.go b/widgets/qgraphicsopacityeffect.go new file mode 100755 index 00000000..cc4fcaae --- /dev/null +++ b/widgets/qgraphicsopacityeffect.go @@ -0,0 +1,56 @@ +package widgets + +//#include "qgraphicsopacityeffect.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QGraphicsOpacityEffect struct { + QGraphicsEffect +} + +type QGraphicsOpacityEffectITF interface { + QGraphicsEffectITF + QGraphicsOpacityEffectPTR() *QGraphicsOpacityEffect +} + +func PointerFromQGraphicsOpacityEffect(ptr QGraphicsOpacityEffectITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsOpacityEffectPTR().Pointer() + } + return nil +} + +func QGraphicsOpacityEffectFromPointer(ptr unsafe.Pointer) *QGraphicsOpacityEffect { + var n = new(QGraphicsOpacityEffect) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGraphicsOpacityEffect_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGraphicsOpacityEffect) QGraphicsOpacityEffectPTR() *QGraphicsOpacityEffect { + return ptr +} + +func (ptr *QGraphicsOpacityEffect) SetOpacityMask(mask gui.QBrushITF) { + if ptr.Pointer() != nil { + C.QGraphicsOpacityEffect_SetOpacityMask(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQBrush(mask))) + } +} + +func NewQGraphicsOpacityEffect(parent core.QObjectITF) *QGraphicsOpacityEffect { + return QGraphicsOpacityEffectFromPointer(unsafe.Pointer(C.QGraphicsOpacityEffect_NewQGraphicsOpacityEffect(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QGraphicsOpacityEffect) DestroyQGraphicsOpacityEffect() { + if ptr.Pointer() != nil { + C.QGraphicsOpacityEffect_DestroyQGraphicsOpacityEffect(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qgraphicsopacityeffect.h b/widgets/qgraphicsopacityeffect.h new file mode 100755 index 00000000..06fdd5e2 --- /dev/null +++ b/widgets/qgraphicsopacityeffect.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QGraphicsOpacityEffect_SetOpacityMask(QtObjectPtr ptr, QtObjectPtr mask); +QtObjectPtr QGraphicsOpacityEffect_NewQGraphicsOpacityEffect(QtObjectPtr parent); +void QGraphicsOpacityEffect_DestroyQGraphicsOpacityEffect(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicspathitem.cpp b/widgets/qgraphicspathitem.cpp new file mode 100755 index 00000000..a2260ea8 --- /dev/null +++ b/widgets/qgraphicspathitem.cpp @@ -0,0 +1,45 @@ +#include "qgraphicspathitem.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsPathItem: public QGraphicsPathItem { +public: +}; + +int QGraphicsPathItem_Contains(QtObjectPtr ptr, QtObjectPtr point){ + return static_cast(ptr)->contains(*static_cast(point)); +} + +int QGraphicsPathItem_IsObscuredBy(QtObjectPtr ptr, QtObjectPtr item){ + return static_cast(ptr)->isObscuredBy(static_cast(item)); +} + +void QGraphicsPathItem_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget){ + static_cast(ptr)->paint(static_cast(painter), static_cast(option), static_cast(widget)); +} + +void QGraphicsPathItem_SetPath(QtObjectPtr ptr, QtObjectPtr path){ + static_cast(ptr)->setPath(*static_cast(path)); +} + +int QGraphicsPathItem_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QGraphicsPathItem_DestroyQGraphicsPathItem(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsPathItem(); +} + diff --git a/widgets/qgraphicspathitem.go b/widgets/qgraphicspathitem.go new file mode 100755 index 00000000..5d822a11 --- /dev/null +++ b/widgets/qgraphicspathitem.go @@ -0,0 +1,74 @@ +package widgets + +//#include "qgraphicspathitem.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QGraphicsPathItem struct { + QAbstractGraphicsShapeItem +} + +type QGraphicsPathItemITF interface { + QAbstractGraphicsShapeItemITF + QGraphicsPathItemPTR() *QGraphicsPathItem +} + +func PointerFromQGraphicsPathItem(ptr QGraphicsPathItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsPathItemPTR().Pointer() + } + return nil +} + +func QGraphicsPathItemFromPointer(ptr unsafe.Pointer) *QGraphicsPathItem { + var n = new(QGraphicsPathItem) + n.SetPointer(ptr) + return n +} + +func (ptr *QGraphicsPathItem) QGraphicsPathItemPTR() *QGraphicsPathItem { + return ptr +} + +func (ptr *QGraphicsPathItem) Contains(point core.QPointFITF) bool { + if ptr.Pointer() != nil { + return C.QGraphicsPathItem_Contains(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(point))) != 0 + } + return false +} + +func (ptr *QGraphicsPathItem) IsObscuredBy(item QGraphicsItemITF) bool { + if ptr.Pointer() != nil { + return C.QGraphicsPathItem_IsObscuredBy(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsItem(item))) != 0 + } + return false +} + +func (ptr *QGraphicsPathItem) Paint(painter gui.QPainterITF, option QStyleOptionGraphicsItemITF, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QGraphicsPathItem_Paint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(PointerFromQStyleOptionGraphicsItem(option)), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QGraphicsPathItem) SetPath(path gui.QPainterPathITF) { + if ptr.Pointer() != nil { + C.QGraphicsPathItem_SetPath(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainterPath(path))) + } +} + +func (ptr *QGraphicsPathItem) Type() int { + if ptr.Pointer() != nil { + return int(C.QGraphicsPathItem_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsPathItem) DestroyQGraphicsPathItem() { + if ptr.Pointer() != nil { + C.QGraphicsPathItem_DestroyQGraphicsPathItem(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qgraphicspathitem.h b/widgets/qgraphicspathitem.h new file mode 100755 index 00000000..d92ccdf1 --- /dev/null +++ b/widgets/qgraphicspathitem.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QGraphicsPathItem_Contains(QtObjectPtr ptr, QtObjectPtr point); +int QGraphicsPathItem_IsObscuredBy(QtObjectPtr ptr, QtObjectPtr item); +void QGraphicsPathItem_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget); +void QGraphicsPathItem_SetPath(QtObjectPtr ptr, QtObjectPtr path); +int QGraphicsPathItem_Type(QtObjectPtr ptr); +void QGraphicsPathItem_DestroyQGraphicsPathItem(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicspixmapitem.cpp b/widgets/qgraphicspixmapitem.cpp new file mode 100755 index 00000000..03954bfb --- /dev/null +++ b/widgets/qgraphicspixmapitem.cpp @@ -0,0 +1,73 @@ +#include "qgraphicspixmapitem.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsPixmapItem: public QGraphicsPixmapItem { +public: +}; + +QtObjectPtr QGraphicsPixmapItem_NewQGraphicsPixmapItem(QtObjectPtr parent){ + return new QGraphicsPixmapItem(static_cast(parent)); +} + +QtObjectPtr QGraphicsPixmapItem_NewQGraphicsPixmapItem2(QtObjectPtr pixmap, QtObjectPtr parent){ + return new QGraphicsPixmapItem(*static_cast(pixmap), static_cast(parent)); +} + +int QGraphicsPixmapItem_Contains(QtObjectPtr ptr, QtObjectPtr point){ + return static_cast(ptr)->contains(*static_cast(point)); +} + +int QGraphicsPixmapItem_IsObscuredBy(QtObjectPtr ptr, QtObjectPtr item){ + return static_cast(ptr)->isObscuredBy(static_cast(item)); +} + +void QGraphicsPixmapItem_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget){ + static_cast(ptr)->paint(static_cast(painter), static_cast(option), static_cast(widget)); +} + +void QGraphicsPixmapItem_SetOffset(QtObjectPtr ptr, QtObjectPtr offset){ + static_cast(ptr)->setOffset(*static_cast(offset)); +} + +void QGraphicsPixmapItem_SetPixmap(QtObjectPtr ptr, QtObjectPtr pixmap){ + static_cast(ptr)->setPixmap(*static_cast(pixmap)); +} + +void QGraphicsPixmapItem_SetShapeMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setShapeMode(static_cast(mode)); +} + +void QGraphicsPixmapItem_SetTransformationMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setTransformationMode(static_cast(mode)); +} + +int QGraphicsPixmapItem_ShapeMode(QtObjectPtr ptr){ + return static_cast(ptr)->shapeMode(); +} + +int QGraphicsPixmapItem_TransformationMode(QtObjectPtr ptr){ + return static_cast(ptr)->transformationMode(); +} + +int QGraphicsPixmapItem_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QGraphicsPixmapItem_DestroyQGraphicsPixmapItem(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsPixmapItem(); +} + diff --git a/widgets/qgraphicspixmapitem.go b/widgets/qgraphicspixmapitem.go new file mode 100755 index 00000000..c5eb9f7e --- /dev/null +++ b/widgets/qgraphicspixmapitem.go @@ -0,0 +1,123 @@ +package widgets + +//#include "qgraphicspixmapitem.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QGraphicsPixmapItem struct { + QGraphicsItem +} + +type QGraphicsPixmapItemITF interface { + QGraphicsItemITF + QGraphicsPixmapItemPTR() *QGraphicsPixmapItem +} + +func PointerFromQGraphicsPixmapItem(ptr QGraphicsPixmapItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsPixmapItemPTR().Pointer() + } + return nil +} + +func QGraphicsPixmapItemFromPointer(ptr unsafe.Pointer) *QGraphicsPixmapItem { + var n = new(QGraphicsPixmapItem) + n.SetPointer(ptr) + return n +} + +func (ptr *QGraphicsPixmapItem) QGraphicsPixmapItemPTR() *QGraphicsPixmapItem { + return ptr +} + +//QGraphicsPixmapItem::ShapeMode +type QGraphicsPixmapItem__ShapeMode int + +var ( + QGraphicsPixmapItem__MaskShape = QGraphicsPixmapItem__ShapeMode(0) + QGraphicsPixmapItem__BoundingRectShape = QGraphicsPixmapItem__ShapeMode(1) + QGraphicsPixmapItem__HeuristicMaskShape = QGraphicsPixmapItem__ShapeMode(2) +) + +func NewQGraphicsPixmapItem(parent QGraphicsItemITF) *QGraphicsPixmapItem { + return QGraphicsPixmapItemFromPointer(unsafe.Pointer(C.QGraphicsPixmapItem_NewQGraphicsPixmapItem(C.QtObjectPtr(PointerFromQGraphicsItem(parent))))) +} + +func NewQGraphicsPixmapItem2(pixmap gui.QPixmapITF, parent QGraphicsItemITF) *QGraphicsPixmapItem { + return QGraphicsPixmapItemFromPointer(unsafe.Pointer(C.QGraphicsPixmapItem_NewQGraphicsPixmapItem2(C.QtObjectPtr(gui.PointerFromQPixmap(pixmap)), C.QtObjectPtr(PointerFromQGraphicsItem(parent))))) +} + +func (ptr *QGraphicsPixmapItem) Contains(point core.QPointFITF) bool { + if ptr.Pointer() != nil { + return C.QGraphicsPixmapItem_Contains(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(point))) != 0 + } + return false +} + +func (ptr *QGraphicsPixmapItem) IsObscuredBy(item QGraphicsItemITF) bool { + if ptr.Pointer() != nil { + return C.QGraphicsPixmapItem_IsObscuredBy(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsItem(item))) != 0 + } + return false +} + +func (ptr *QGraphicsPixmapItem) Paint(painter gui.QPainterITF, option QStyleOptionGraphicsItemITF, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QGraphicsPixmapItem_Paint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(PointerFromQStyleOptionGraphicsItem(option)), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QGraphicsPixmapItem) SetOffset(offset core.QPointFITF) { + if ptr.Pointer() != nil { + C.QGraphicsPixmapItem_SetOffset(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(offset))) + } +} + +func (ptr *QGraphicsPixmapItem) SetPixmap(pixmap gui.QPixmapITF) { + if ptr.Pointer() != nil { + C.QGraphicsPixmapItem_SetPixmap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPixmap(pixmap))) + } +} + +func (ptr *QGraphicsPixmapItem) SetShapeMode(mode QGraphicsPixmapItem__ShapeMode) { + if ptr.Pointer() != nil { + C.QGraphicsPixmapItem_SetShapeMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QGraphicsPixmapItem) SetTransformationMode(mode core.Qt__TransformationMode) { + if ptr.Pointer() != nil { + C.QGraphicsPixmapItem_SetTransformationMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QGraphicsPixmapItem) ShapeMode() QGraphicsPixmapItem__ShapeMode { + if ptr.Pointer() != nil { + return QGraphicsPixmapItem__ShapeMode(C.QGraphicsPixmapItem_ShapeMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsPixmapItem) TransformationMode() core.Qt__TransformationMode { + if ptr.Pointer() != nil { + return core.Qt__TransformationMode(C.QGraphicsPixmapItem_TransformationMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsPixmapItem) Type() int { + if ptr.Pointer() != nil { + return int(C.QGraphicsPixmapItem_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsPixmapItem) DestroyQGraphicsPixmapItem() { + if ptr.Pointer() != nil { + C.QGraphicsPixmapItem_DestroyQGraphicsPixmapItem(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qgraphicspixmapitem.h b/widgets/qgraphicspixmapitem.h new file mode 100755 index 00000000..aa501316 --- /dev/null +++ b/widgets/qgraphicspixmapitem.h @@ -0,0 +1,22 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGraphicsPixmapItem_NewQGraphicsPixmapItem(QtObjectPtr parent); +QtObjectPtr QGraphicsPixmapItem_NewQGraphicsPixmapItem2(QtObjectPtr pixmap, QtObjectPtr parent); +int QGraphicsPixmapItem_Contains(QtObjectPtr ptr, QtObjectPtr point); +int QGraphicsPixmapItem_IsObscuredBy(QtObjectPtr ptr, QtObjectPtr item); +void QGraphicsPixmapItem_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget); +void QGraphicsPixmapItem_SetOffset(QtObjectPtr ptr, QtObjectPtr offset); +void QGraphicsPixmapItem_SetPixmap(QtObjectPtr ptr, QtObjectPtr pixmap); +void QGraphicsPixmapItem_SetShapeMode(QtObjectPtr ptr, int mode); +void QGraphicsPixmapItem_SetTransformationMode(QtObjectPtr ptr, int mode); +int QGraphicsPixmapItem_ShapeMode(QtObjectPtr ptr); +int QGraphicsPixmapItem_TransformationMode(QtObjectPtr ptr); +int QGraphicsPixmapItem_Type(QtObjectPtr ptr); +void QGraphicsPixmapItem_DestroyQGraphicsPixmapItem(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicspolygonitem.cpp b/widgets/qgraphicspolygonitem.cpp new file mode 100755 index 00000000..6f888435 --- /dev/null +++ b/widgets/qgraphicspolygonitem.cpp @@ -0,0 +1,54 @@ +#include "qgraphicspolygonitem.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsPolygonItem: public QGraphicsPolygonItem { +public: +}; + +int QGraphicsPolygonItem_Contains(QtObjectPtr ptr, QtObjectPtr point){ + return static_cast(ptr)->contains(*static_cast(point)); +} + +int QGraphicsPolygonItem_FillRule(QtObjectPtr ptr){ + return static_cast(ptr)->fillRule(); +} + +int QGraphicsPolygonItem_IsObscuredBy(QtObjectPtr ptr, QtObjectPtr item){ + return static_cast(ptr)->isObscuredBy(static_cast(item)); +} + +void QGraphicsPolygonItem_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget){ + static_cast(ptr)->paint(static_cast(painter), static_cast(option), static_cast(widget)); +} + +void QGraphicsPolygonItem_SetFillRule(QtObjectPtr ptr, int rule){ + static_cast(ptr)->setFillRule(static_cast(rule)); +} + +void QGraphicsPolygonItem_SetPolygon(QtObjectPtr ptr, QtObjectPtr polygon){ + static_cast(ptr)->setPolygon(*static_cast(polygon)); +} + +int QGraphicsPolygonItem_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QGraphicsPolygonItem_DestroyQGraphicsPolygonItem(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsPolygonItem(); +} + diff --git a/widgets/qgraphicspolygonitem.go b/widgets/qgraphicspolygonitem.go new file mode 100755 index 00000000..0cf80ed1 --- /dev/null +++ b/widgets/qgraphicspolygonitem.go @@ -0,0 +1,87 @@ +package widgets + +//#include "qgraphicspolygonitem.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QGraphicsPolygonItem struct { + QAbstractGraphicsShapeItem +} + +type QGraphicsPolygonItemITF interface { + QAbstractGraphicsShapeItemITF + QGraphicsPolygonItemPTR() *QGraphicsPolygonItem +} + +func PointerFromQGraphicsPolygonItem(ptr QGraphicsPolygonItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsPolygonItemPTR().Pointer() + } + return nil +} + +func QGraphicsPolygonItemFromPointer(ptr unsafe.Pointer) *QGraphicsPolygonItem { + var n = new(QGraphicsPolygonItem) + n.SetPointer(ptr) + return n +} + +func (ptr *QGraphicsPolygonItem) QGraphicsPolygonItemPTR() *QGraphicsPolygonItem { + return ptr +} + +func (ptr *QGraphicsPolygonItem) Contains(point core.QPointFITF) bool { + if ptr.Pointer() != nil { + return C.QGraphicsPolygonItem_Contains(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(point))) != 0 + } + return false +} + +func (ptr *QGraphicsPolygonItem) FillRule() core.Qt__FillRule { + if ptr.Pointer() != nil { + return core.Qt__FillRule(C.QGraphicsPolygonItem_FillRule(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsPolygonItem) IsObscuredBy(item QGraphicsItemITF) bool { + if ptr.Pointer() != nil { + return C.QGraphicsPolygonItem_IsObscuredBy(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsItem(item))) != 0 + } + return false +} + +func (ptr *QGraphicsPolygonItem) Paint(painter gui.QPainterITF, option QStyleOptionGraphicsItemITF, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QGraphicsPolygonItem_Paint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(PointerFromQStyleOptionGraphicsItem(option)), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QGraphicsPolygonItem) SetFillRule(rule core.Qt__FillRule) { + if ptr.Pointer() != nil { + C.QGraphicsPolygonItem_SetFillRule(C.QtObjectPtr(ptr.Pointer()), C.int(rule)) + } +} + +func (ptr *QGraphicsPolygonItem) SetPolygon(polygon gui.QPolygonFITF) { + if ptr.Pointer() != nil { + C.QGraphicsPolygonItem_SetPolygon(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPolygonF(polygon))) + } +} + +func (ptr *QGraphicsPolygonItem) Type() int { + if ptr.Pointer() != nil { + return int(C.QGraphicsPolygonItem_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsPolygonItem) DestroyQGraphicsPolygonItem() { + if ptr.Pointer() != nil { + C.QGraphicsPolygonItem_DestroyQGraphicsPolygonItem(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qgraphicspolygonitem.h b/widgets/qgraphicspolygonitem.h new file mode 100755 index 00000000..32840577 --- /dev/null +++ b/widgets/qgraphicspolygonitem.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QGraphicsPolygonItem_Contains(QtObjectPtr ptr, QtObjectPtr point); +int QGraphicsPolygonItem_FillRule(QtObjectPtr ptr); +int QGraphicsPolygonItem_IsObscuredBy(QtObjectPtr ptr, QtObjectPtr item); +void QGraphicsPolygonItem_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget); +void QGraphicsPolygonItem_SetFillRule(QtObjectPtr ptr, int rule); +void QGraphicsPolygonItem_SetPolygon(QtObjectPtr ptr, QtObjectPtr polygon); +int QGraphicsPolygonItem_Type(QtObjectPtr ptr); +void QGraphicsPolygonItem_DestroyQGraphicsPolygonItem(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicsproxywidget.cpp b/widgets/qgraphicsproxywidget.cpp new file mode 100755 index 00000000..60cf72c3 --- /dev/null +++ b/widgets/qgraphicsproxywidget.cpp @@ -0,0 +1,52 @@ +#include "qgraphicsproxywidget.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsProxyWidget: public QGraphicsProxyWidget { +public: +}; + +QtObjectPtr QGraphicsProxyWidget_NewQGraphicsProxyWidget(QtObjectPtr parent, int wFlags){ + return new QGraphicsProxyWidget(static_cast(parent), static_cast(wFlags)); +} + +QtObjectPtr QGraphicsProxyWidget_CreateProxyForChildWidget(QtObjectPtr ptr, QtObjectPtr child){ + return static_cast(ptr)->createProxyForChildWidget(static_cast(child)); +} + +void QGraphicsProxyWidget_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget){ + static_cast(ptr)->paint(static_cast(painter), static_cast(option), static_cast(widget)); +} + +void QGraphicsProxyWidget_SetGeometry(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->setGeometry(*static_cast(rect)); +} + +void QGraphicsProxyWidget_SetWidget(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->setWidget(static_cast(widget)); +} + +int QGraphicsProxyWidget_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +QtObjectPtr QGraphicsProxyWidget_Widget(QtObjectPtr ptr){ + return static_cast(ptr)->widget(); +} + +void QGraphicsProxyWidget_DestroyQGraphicsProxyWidget(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsProxyWidget(); +} + diff --git a/widgets/qgraphicsproxywidget.go b/widgets/qgraphicsproxywidget.go new file mode 100755 index 00000000..2735856b --- /dev/null +++ b/widgets/qgraphicsproxywidget.go @@ -0,0 +1,89 @@ +package widgets + +//#include "qgraphicsproxywidget.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QGraphicsProxyWidget struct { + QGraphicsWidget +} + +type QGraphicsProxyWidgetITF interface { + QGraphicsWidgetITF + QGraphicsProxyWidgetPTR() *QGraphicsProxyWidget +} + +func PointerFromQGraphicsProxyWidget(ptr QGraphicsProxyWidgetITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsProxyWidgetPTR().Pointer() + } + return nil +} + +func QGraphicsProxyWidgetFromPointer(ptr unsafe.Pointer) *QGraphicsProxyWidget { + var n = new(QGraphicsProxyWidget) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGraphicsProxyWidget_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGraphicsProxyWidget) QGraphicsProxyWidgetPTR() *QGraphicsProxyWidget { + return ptr +} + +func NewQGraphicsProxyWidget(parent QGraphicsItemITF, wFlags core.Qt__WindowType) *QGraphicsProxyWidget { + return QGraphicsProxyWidgetFromPointer(unsafe.Pointer(C.QGraphicsProxyWidget_NewQGraphicsProxyWidget(C.QtObjectPtr(PointerFromQGraphicsItem(parent)), C.int(wFlags)))) +} + +func (ptr *QGraphicsProxyWidget) CreateProxyForChildWidget(child QWidgetITF) *QGraphicsProxyWidget { + if ptr.Pointer() != nil { + return QGraphicsProxyWidgetFromPointer(unsafe.Pointer(C.QGraphicsProxyWidget_CreateProxyForChildWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(child))))) + } + return nil +} + +func (ptr *QGraphicsProxyWidget) Paint(painter gui.QPainterITF, option QStyleOptionGraphicsItemITF, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QGraphicsProxyWidget_Paint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(PointerFromQStyleOptionGraphicsItem(option)), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QGraphicsProxyWidget) SetGeometry(rect core.QRectFITF) { + if ptr.Pointer() != nil { + C.QGraphicsProxyWidget_SetGeometry(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rect))) + } +} + +func (ptr *QGraphicsProxyWidget) SetWidget(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QGraphicsProxyWidget_SetWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QGraphicsProxyWidget) Type() int { + if ptr.Pointer() != nil { + return int(C.QGraphicsProxyWidget_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsProxyWidget) Widget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QGraphicsProxyWidget_Widget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QGraphicsProxyWidget) DestroyQGraphicsProxyWidget() { + if ptr.Pointer() != nil { + C.QGraphicsProxyWidget_DestroyQGraphicsProxyWidget(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qgraphicsproxywidget.h b/widgets/qgraphicsproxywidget.h new file mode 100755 index 00000000..34ce2874 --- /dev/null +++ b/widgets/qgraphicsproxywidget.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGraphicsProxyWidget_NewQGraphicsProxyWidget(QtObjectPtr parent, int wFlags); +QtObjectPtr QGraphicsProxyWidget_CreateProxyForChildWidget(QtObjectPtr ptr, QtObjectPtr child); +void QGraphicsProxyWidget_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget); +void QGraphicsProxyWidget_SetGeometry(QtObjectPtr ptr, QtObjectPtr rect); +void QGraphicsProxyWidget_SetWidget(QtObjectPtr ptr, QtObjectPtr widget); +int QGraphicsProxyWidget_Type(QtObjectPtr ptr); +QtObjectPtr QGraphicsProxyWidget_Widget(QtObjectPtr ptr); +void QGraphicsProxyWidget_DestroyQGraphicsProxyWidget(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicsrectitem.cpp b/widgets/qgraphicsrectitem.cpp new file mode 100755 index 00000000..71695ee0 --- /dev/null +++ b/widgets/qgraphicsrectitem.cpp @@ -0,0 +1,46 @@ +#include "qgraphicsrectitem.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsRectItem: public QGraphicsRectItem { +public: +}; + +void QGraphicsRectItem_SetRect(QtObjectPtr ptr, QtObjectPtr rectangle){ + static_cast(ptr)->setRect(*static_cast(rectangle)); +} + +int QGraphicsRectItem_Contains(QtObjectPtr ptr, QtObjectPtr point){ + return static_cast(ptr)->contains(*static_cast(point)); +} + +int QGraphicsRectItem_IsObscuredBy(QtObjectPtr ptr, QtObjectPtr item){ + return static_cast(ptr)->isObscuredBy(static_cast(item)); +} + +void QGraphicsRectItem_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget){ + static_cast(ptr)->paint(static_cast(painter), static_cast(option), static_cast(widget)); +} + +int QGraphicsRectItem_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QGraphicsRectItem_DestroyQGraphicsRectItem(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsRectItem(); +} + diff --git a/widgets/qgraphicsrectitem.go b/widgets/qgraphicsrectitem.go new file mode 100755 index 00000000..dc0fa41d --- /dev/null +++ b/widgets/qgraphicsrectitem.go @@ -0,0 +1,74 @@ +package widgets + +//#include "qgraphicsrectitem.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QGraphicsRectItem struct { + QAbstractGraphicsShapeItem +} + +type QGraphicsRectItemITF interface { + QAbstractGraphicsShapeItemITF + QGraphicsRectItemPTR() *QGraphicsRectItem +} + +func PointerFromQGraphicsRectItem(ptr QGraphicsRectItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsRectItemPTR().Pointer() + } + return nil +} + +func QGraphicsRectItemFromPointer(ptr unsafe.Pointer) *QGraphicsRectItem { + var n = new(QGraphicsRectItem) + n.SetPointer(ptr) + return n +} + +func (ptr *QGraphicsRectItem) QGraphicsRectItemPTR() *QGraphicsRectItem { + return ptr +} + +func (ptr *QGraphicsRectItem) SetRect(rectangle core.QRectFITF) { + if ptr.Pointer() != nil { + C.QGraphicsRectItem_SetRect(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rectangle))) + } +} + +func (ptr *QGraphicsRectItem) Contains(point core.QPointFITF) bool { + if ptr.Pointer() != nil { + return C.QGraphicsRectItem_Contains(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(point))) != 0 + } + return false +} + +func (ptr *QGraphicsRectItem) IsObscuredBy(item QGraphicsItemITF) bool { + if ptr.Pointer() != nil { + return C.QGraphicsRectItem_IsObscuredBy(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsItem(item))) != 0 + } + return false +} + +func (ptr *QGraphicsRectItem) Paint(painter gui.QPainterITF, option QStyleOptionGraphicsItemITF, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QGraphicsRectItem_Paint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(PointerFromQStyleOptionGraphicsItem(option)), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QGraphicsRectItem) Type() int { + if ptr.Pointer() != nil { + return int(C.QGraphicsRectItem_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsRectItem) DestroyQGraphicsRectItem() { + if ptr.Pointer() != nil { + C.QGraphicsRectItem_DestroyQGraphicsRectItem(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qgraphicsrectitem.h b/widgets/qgraphicsrectitem.h new file mode 100755 index 00000000..2e232e25 --- /dev/null +++ b/widgets/qgraphicsrectitem.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QGraphicsRectItem_SetRect(QtObjectPtr ptr, QtObjectPtr rectangle); +int QGraphicsRectItem_Contains(QtObjectPtr ptr, QtObjectPtr point); +int QGraphicsRectItem_IsObscuredBy(QtObjectPtr ptr, QtObjectPtr item); +void QGraphicsRectItem_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget); +int QGraphicsRectItem_Type(QtObjectPtr ptr); +void QGraphicsRectItem_DestroyQGraphicsRectItem(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicsrotation.cpp b/widgets/qgraphicsrotation.cpp new file mode 100755 index 00000000..0ccc52ff --- /dev/null +++ b/widgets/qgraphicsrotation.cpp @@ -0,0 +1,67 @@ +#include "qgraphicsrotation.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsRotation: public QGraphicsRotation { +public: +void Signal_AngleChanged(){callbackQGraphicsRotationAngleChanged(this->objectName().toUtf8().data());}; +void Signal_AxisChanged(){callbackQGraphicsRotationAxisChanged(this->objectName().toUtf8().data());}; +void Signal_OriginChanged(){callbackQGraphicsRotationOriginChanged(this->objectName().toUtf8().data());}; +}; + +void QGraphicsRotation_SetAxis2(QtObjectPtr ptr, int axis){ + static_cast(ptr)->setAxis(static_cast(axis)); +} + +void QGraphicsRotation_SetAxis(QtObjectPtr ptr, QtObjectPtr axis){ + static_cast(ptr)->setAxis(*static_cast(axis)); +} + +void QGraphicsRotation_SetOrigin(QtObjectPtr ptr, QtObjectPtr point){ + static_cast(ptr)->setOrigin(*static_cast(point)); +} + +QtObjectPtr QGraphicsRotation_NewQGraphicsRotation(QtObjectPtr parent){ + return new QGraphicsRotation(static_cast(parent)); +} + +void QGraphicsRotation_ConnectAngleChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGraphicsRotation::angleChanged), static_cast(ptr), static_cast(&MyQGraphicsRotation::Signal_AngleChanged));; +} + +void QGraphicsRotation_DisconnectAngleChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGraphicsRotation::angleChanged), static_cast(ptr), static_cast(&MyQGraphicsRotation::Signal_AngleChanged));; +} + +void QGraphicsRotation_ApplyTo(QtObjectPtr ptr, QtObjectPtr matrix){ + static_cast(ptr)->applyTo(static_cast(matrix)); +} + +void QGraphicsRotation_ConnectAxisChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGraphicsRotation::axisChanged), static_cast(ptr), static_cast(&MyQGraphicsRotation::Signal_AxisChanged));; +} + +void QGraphicsRotation_DisconnectAxisChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGraphicsRotation::axisChanged), static_cast(ptr), static_cast(&MyQGraphicsRotation::Signal_AxisChanged));; +} + +void QGraphicsRotation_ConnectOriginChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGraphicsRotation::originChanged), static_cast(ptr), static_cast(&MyQGraphicsRotation::Signal_OriginChanged));; +} + +void QGraphicsRotation_DisconnectOriginChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGraphicsRotation::originChanged), static_cast(ptr), static_cast(&MyQGraphicsRotation::Signal_OriginChanged));; +} + +void QGraphicsRotation_DestroyQGraphicsRotation(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsRotation(); +} + diff --git a/widgets/qgraphicsrotation.go b/widgets/qgraphicsrotation.go new file mode 100755 index 00000000..6b6b5f34 --- /dev/null +++ b/widgets/qgraphicsrotation.go @@ -0,0 +1,131 @@ +package widgets + +//#include "qgraphicsrotation.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QGraphicsRotation struct { + QGraphicsTransform +} + +type QGraphicsRotationITF interface { + QGraphicsTransformITF + QGraphicsRotationPTR() *QGraphicsRotation +} + +func PointerFromQGraphicsRotation(ptr QGraphicsRotationITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsRotationPTR().Pointer() + } + return nil +} + +func QGraphicsRotationFromPointer(ptr unsafe.Pointer) *QGraphicsRotation { + var n = new(QGraphicsRotation) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGraphicsRotation_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGraphicsRotation) QGraphicsRotationPTR() *QGraphicsRotation { + return ptr +} + +func (ptr *QGraphicsRotation) SetAxis2(axis core.Qt__Axis) { + if ptr.Pointer() != nil { + C.QGraphicsRotation_SetAxis2(C.QtObjectPtr(ptr.Pointer()), C.int(axis)) + } +} + +func (ptr *QGraphicsRotation) SetAxis(axis gui.QVector3DITF) { + if ptr.Pointer() != nil { + C.QGraphicsRotation_SetAxis(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQVector3D(axis))) + } +} + +func (ptr *QGraphicsRotation) SetOrigin(point gui.QVector3DITF) { + if ptr.Pointer() != nil { + C.QGraphicsRotation_SetOrigin(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQVector3D(point))) + } +} + +func NewQGraphicsRotation(parent core.QObjectITF) *QGraphicsRotation { + return QGraphicsRotationFromPointer(unsafe.Pointer(C.QGraphicsRotation_NewQGraphicsRotation(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QGraphicsRotation) ConnectAngleChanged(f func()) { + if ptr.Pointer() != nil { + C.QGraphicsRotation_ConnectAngleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "angleChanged", f) + } +} + +func (ptr *QGraphicsRotation) DisconnectAngleChanged() { + if ptr.Pointer() != nil { + C.QGraphicsRotation_DisconnectAngleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "angleChanged") + } +} + +//export callbackQGraphicsRotationAngleChanged +func callbackQGraphicsRotationAngleChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "angleChanged").(func())() +} + +func (ptr *QGraphicsRotation) ApplyTo(matrix gui.QMatrix4x4ITF) { + if ptr.Pointer() != nil { + C.QGraphicsRotation_ApplyTo(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQMatrix4x4(matrix))) + } +} + +func (ptr *QGraphicsRotation) ConnectAxisChanged(f func()) { + if ptr.Pointer() != nil { + C.QGraphicsRotation_ConnectAxisChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "axisChanged", f) + } +} + +func (ptr *QGraphicsRotation) DisconnectAxisChanged() { + if ptr.Pointer() != nil { + C.QGraphicsRotation_DisconnectAxisChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "axisChanged") + } +} + +//export callbackQGraphicsRotationAxisChanged +func callbackQGraphicsRotationAxisChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "axisChanged").(func())() +} + +func (ptr *QGraphicsRotation) ConnectOriginChanged(f func()) { + if ptr.Pointer() != nil { + C.QGraphicsRotation_ConnectOriginChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "originChanged", f) + } +} + +func (ptr *QGraphicsRotation) DisconnectOriginChanged() { + if ptr.Pointer() != nil { + C.QGraphicsRotation_DisconnectOriginChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "originChanged") + } +} + +//export callbackQGraphicsRotationOriginChanged +func callbackQGraphicsRotationOriginChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "originChanged").(func())() +} + +func (ptr *QGraphicsRotation) DestroyQGraphicsRotation() { + if ptr.Pointer() != nil { + C.QGraphicsRotation_DestroyQGraphicsRotation(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qgraphicsrotation.h b/widgets/qgraphicsrotation.h new file mode 100755 index 00000000..7dc3c01f --- /dev/null +++ b/widgets/qgraphicsrotation.h @@ -0,0 +1,21 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QGraphicsRotation_SetAxis2(QtObjectPtr ptr, int axis); +void QGraphicsRotation_SetAxis(QtObjectPtr ptr, QtObjectPtr axis); +void QGraphicsRotation_SetOrigin(QtObjectPtr ptr, QtObjectPtr point); +QtObjectPtr QGraphicsRotation_NewQGraphicsRotation(QtObjectPtr parent); +void QGraphicsRotation_ConnectAngleChanged(QtObjectPtr ptr); +void QGraphicsRotation_DisconnectAngleChanged(QtObjectPtr ptr); +void QGraphicsRotation_ApplyTo(QtObjectPtr ptr, QtObjectPtr matrix); +void QGraphicsRotation_ConnectAxisChanged(QtObjectPtr ptr); +void QGraphicsRotation_DisconnectAxisChanged(QtObjectPtr ptr); +void QGraphicsRotation_ConnectOriginChanged(QtObjectPtr ptr); +void QGraphicsRotation_DisconnectOriginChanged(QtObjectPtr ptr); +void QGraphicsRotation_DestroyQGraphicsRotation(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicsscale.cpp b/widgets/qgraphicsscale.cpp new file mode 100755 index 00000000..9149b5a8 --- /dev/null +++ b/widgets/qgraphicsscale.cpp @@ -0,0 +1,77 @@ +#include "qgraphicsscale.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsScale: public QGraphicsScale { +public: +void Signal_OriginChanged(){callbackQGraphicsScaleOriginChanged(this->objectName().toUtf8().data());}; +void Signal_ScaleChanged(){callbackQGraphicsScaleScaleChanged(this->objectName().toUtf8().data());}; +void Signal_XScaleChanged(){callbackQGraphicsScaleXScaleChanged(this->objectName().toUtf8().data());}; +void Signal_YScaleChanged(){callbackQGraphicsScaleYScaleChanged(this->objectName().toUtf8().data());}; +void Signal_ZScaleChanged(){callbackQGraphicsScaleZScaleChanged(this->objectName().toUtf8().data());}; +}; + +void QGraphicsScale_SetOrigin(QtObjectPtr ptr, QtObjectPtr point){ + static_cast(ptr)->setOrigin(*static_cast(point)); +} + +QtObjectPtr QGraphicsScale_NewQGraphicsScale(QtObjectPtr parent){ + return new QGraphicsScale(static_cast(parent)); +} + +void QGraphicsScale_ApplyTo(QtObjectPtr ptr, QtObjectPtr matrix){ + static_cast(ptr)->applyTo(static_cast(matrix)); +} + +void QGraphicsScale_ConnectOriginChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGraphicsScale::originChanged), static_cast(ptr), static_cast(&MyQGraphicsScale::Signal_OriginChanged));; +} + +void QGraphicsScale_DisconnectOriginChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGraphicsScale::originChanged), static_cast(ptr), static_cast(&MyQGraphicsScale::Signal_OriginChanged));; +} + +void QGraphicsScale_ConnectScaleChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGraphicsScale::scaleChanged), static_cast(ptr), static_cast(&MyQGraphicsScale::Signal_ScaleChanged));; +} + +void QGraphicsScale_DisconnectScaleChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGraphicsScale::scaleChanged), static_cast(ptr), static_cast(&MyQGraphicsScale::Signal_ScaleChanged));; +} + +void QGraphicsScale_ConnectXScaleChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGraphicsScale::xScaleChanged), static_cast(ptr), static_cast(&MyQGraphicsScale::Signal_XScaleChanged));; +} + +void QGraphicsScale_DisconnectXScaleChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGraphicsScale::xScaleChanged), static_cast(ptr), static_cast(&MyQGraphicsScale::Signal_XScaleChanged));; +} + +void QGraphicsScale_ConnectYScaleChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGraphicsScale::yScaleChanged), static_cast(ptr), static_cast(&MyQGraphicsScale::Signal_YScaleChanged));; +} + +void QGraphicsScale_DisconnectYScaleChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGraphicsScale::yScaleChanged), static_cast(ptr), static_cast(&MyQGraphicsScale::Signal_YScaleChanged));; +} + +void QGraphicsScale_ConnectZScaleChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGraphicsScale::zScaleChanged), static_cast(ptr), static_cast(&MyQGraphicsScale::Signal_ZScaleChanged));; +} + +void QGraphicsScale_DisconnectZScaleChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGraphicsScale::zScaleChanged), static_cast(ptr), static_cast(&MyQGraphicsScale::Signal_ZScaleChanged));; +} + +void QGraphicsScale_DestroyQGraphicsScale(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsScale(); +} + diff --git a/widgets/qgraphicsscale.go b/widgets/qgraphicsscale.go new file mode 100755 index 00000000..e3f2bbdb --- /dev/null +++ b/widgets/qgraphicsscale.go @@ -0,0 +1,157 @@ +package widgets + +//#include "qgraphicsscale.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QGraphicsScale struct { + QGraphicsTransform +} + +type QGraphicsScaleITF interface { + QGraphicsTransformITF + QGraphicsScalePTR() *QGraphicsScale +} + +func PointerFromQGraphicsScale(ptr QGraphicsScaleITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsScalePTR().Pointer() + } + return nil +} + +func QGraphicsScaleFromPointer(ptr unsafe.Pointer) *QGraphicsScale { + var n = new(QGraphicsScale) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGraphicsScale_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGraphicsScale) QGraphicsScalePTR() *QGraphicsScale { + return ptr +} + +func (ptr *QGraphicsScale) SetOrigin(point gui.QVector3DITF) { + if ptr.Pointer() != nil { + C.QGraphicsScale_SetOrigin(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQVector3D(point))) + } +} + +func NewQGraphicsScale(parent core.QObjectITF) *QGraphicsScale { + return QGraphicsScaleFromPointer(unsafe.Pointer(C.QGraphicsScale_NewQGraphicsScale(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QGraphicsScale) ApplyTo(matrix gui.QMatrix4x4ITF) { + if ptr.Pointer() != nil { + C.QGraphicsScale_ApplyTo(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQMatrix4x4(matrix))) + } +} + +func (ptr *QGraphicsScale) ConnectOriginChanged(f func()) { + if ptr.Pointer() != nil { + C.QGraphicsScale_ConnectOriginChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "originChanged", f) + } +} + +func (ptr *QGraphicsScale) DisconnectOriginChanged() { + if ptr.Pointer() != nil { + C.QGraphicsScale_DisconnectOriginChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "originChanged") + } +} + +//export callbackQGraphicsScaleOriginChanged +func callbackQGraphicsScaleOriginChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "originChanged").(func())() +} + +func (ptr *QGraphicsScale) ConnectScaleChanged(f func()) { + if ptr.Pointer() != nil { + C.QGraphicsScale_ConnectScaleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "scaleChanged", f) + } +} + +func (ptr *QGraphicsScale) DisconnectScaleChanged() { + if ptr.Pointer() != nil { + C.QGraphicsScale_DisconnectScaleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "scaleChanged") + } +} + +//export callbackQGraphicsScaleScaleChanged +func callbackQGraphicsScaleScaleChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "scaleChanged").(func())() +} + +func (ptr *QGraphicsScale) ConnectXScaleChanged(f func()) { + if ptr.Pointer() != nil { + C.QGraphicsScale_ConnectXScaleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "xScaleChanged", f) + } +} + +func (ptr *QGraphicsScale) DisconnectXScaleChanged() { + if ptr.Pointer() != nil { + C.QGraphicsScale_DisconnectXScaleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "xScaleChanged") + } +} + +//export callbackQGraphicsScaleXScaleChanged +func callbackQGraphicsScaleXScaleChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "xScaleChanged").(func())() +} + +func (ptr *QGraphicsScale) ConnectYScaleChanged(f func()) { + if ptr.Pointer() != nil { + C.QGraphicsScale_ConnectYScaleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "yScaleChanged", f) + } +} + +func (ptr *QGraphicsScale) DisconnectYScaleChanged() { + if ptr.Pointer() != nil { + C.QGraphicsScale_DisconnectYScaleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "yScaleChanged") + } +} + +//export callbackQGraphicsScaleYScaleChanged +func callbackQGraphicsScaleYScaleChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "yScaleChanged").(func())() +} + +func (ptr *QGraphicsScale) ConnectZScaleChanged(f func()) { + if ptr.Pointer() != nil { + C.QGraphicsScale_ConnectZScaleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "zScaleChanged", f) + } +} + +func (ptr *QGraphicsScale) DisconnectZScaleChanged() { + if ptr.Pointer() != nil { + C.QGraphicsScale_DisconnectZScaleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "zScaleChanged") + } +} + +//export callbackQGraphicsScaleZScaleChanged +func callbackQGraphicsScaleZScaleChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "zScaleChanged").(func())() +} + +func (ptr *QGraphicsScale) DestroyQGraphicsScale() { + if ptr.Pointer() != nil { + C.QGraphicsScale_DestroyQGraphicsScale(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qgraphicsscale.h b/widgets/qgraphicsscale.h new file mode 100755 index 00000000..e219db84 --- /dev/null +++ b/widgets/qgraphicsscale.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QGraphicsScale_SetOrigin(QtObjectPtr ptr, QtObjectPtr point); +QtObjectPtr QGraphicsScale_NewQGraphicsScale(QtObjectPtr parent); +void QGraphicsScale_ApplyTo(QtObjectPtr ptr, QtObjectPtr matrix); +void QGraphicsScale_ConnectOriginChanged(QtObjectPtr ptr); +void QGraphicsScale_DisconnectOriginChanged(QtObjectPtr ptr); +void QGraphicsScale_ConnectScaleChanged(QtObjectPtr ptr); +void QGraphicsScale_DisconnectScaleChanged(QtObjectPtr ptr); +void QGraphicsScale_ConnectXScaleChanged(QtObjectPtr ptr); +void QGraphicsScale_DisconnectXScaleChanged(QtObjectPtr ptr); +void QGraphicsScale_ConnectYScaleChanged(QtObjectPtr ptr); +void QGraphicsScale_DisconnectYScaleChanged(QtObjectPtr ptr); +void QGraphicsScale_ConnectZScaleChanged(QtObjectPtr ptr); +void QGraphicsScale_DisconnectZScaleChanged(QtObjectPtr ptr); +void QGraphicsScale_DestroyQGraphicsScale(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicsscene.cpp b/widgets/qgraphicsscene.cpp new file mode 100755 index 00000000..020a7b51 --- /dev/null +++ b/widgets/qgraphicsscene.cpp @@ -0,0 +1,266 @@ +#include "qgraphicsscene.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsScene: public QGraphicsScene { +public: +void Signal_FocusItemChanged(QGraphicsItem * newFocusItem, QGraphicsItem * oldFocusItem, Qt::FocusReason reason){callbackQGraphicsSceneFocusItemChanged(this->objectName().toUtf8().data(), newFocusItem, oldFocusItem, reason);}; +void Signal_SelectionChanged(){callbackQGraphicsSceneSelectionChanged(this->objectName().toUtf8().data());}; +}; + +int QGraphicsScene_BspTreeDepth(QtObjectPtr ptr){ + return static_cast(ptr)->bspTreeDepth(); +} + +int QGraphicsScene_IsSortCacheEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isSortCacheEnabled(); +} + +int QGraphicsScene_ItemIndexMethod(QtObjectPtr ptr){ + return static_cast(ptr)->itemIndexMethod(); +} + +void QGraphicsScene_SetBackgroundBrush(QtObjectPtr ptr, QtObjectPtr brush){ + static_cast(ptr)->setBackgroundBrush(*static_cast(brush)); +} + +void QGraphicsScene_SetBspTreeDepth(QtObjectPtr ptr, int depth){ + static_cast(ptr)->setBspTreeDepth(depth); +} + +void QGraphicsScene_SetFont(QtObjectPtr ptr, QtObjectPtr font){ + static_cast(ptr)->setFont(*static_cast(font)); +} + +void QGraphicsScene_SetForegroundBrush(QtObjectPtr ptr, QtObjectPtr brush){ + static_cast(ptr)->setForegroundBrush(*static_cast(brush)); +} + +void QGraphicsScene_SetItemIndexMethod(QtObjectPtr ptr, int method){ + static_cast(ptr)->setItemIndexMethod(static_cast(method)); +} + +void QGraphicsScene_SetPalette(QtObjectPtr ptr, QtObjectPtr palette){ + static_cast(ptr)->setPalette(*static_cast(palette)); +} + +void QGraphicsScene_SetSceneRect(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->setSceneRect(*static_cast(rect)); +} + +void QGraphicsScene_SetSortCacheEnabled(QtObjectPtr ptr, int enabled){ + static_cast(ptr)->setSortCacheEnabled(enabled != 0); +} + +void QGraphicsScene_SetStickyFocus(QtObjectPtr ptr, int enabled){ + static_cast(ptr)->setStickyFocus(enabled != 0); +} + +int QGraphicsScene_StickyFocus(QtObjectPtr ptr){ + return static_cast(ptr)->stickyFocus(); +} + +void QGraphicsScene_Update(QtObjectPtr ptr, QtObjectPtr rect){ + QMetaObject::invokeMethod(static_cast(ptr), "update", Q_ARG(QRectF, *static_cast(rect))); +} + +QtObjectPtr QGraphicsScene_NewQGraphicsScene(QtObjectPtr parent){ + return new QGraphicsScene(static_cast(parent)); +} + +QtObjectPtr QGraphicsScene_NewQGraphicsScene2(QtObjectPtr sceneRect, QtObjectPtr parent){ + return new QGraphicsScene(*static_cast(sceneRect), static_cast(parent)); +} + +QtObjectPtr QGraphicsScene_ActivePanel(QtObjectPtr ptr){ + return static_cast(ptr)->activePanel(); +} + +QtObjectPtr QGraphicsScene_ActiveWindow(QtObjectPtr ptr){ + return static_cast(ptr)->activeWindow(); +} + +QtObjectPtr QGraphicsScene_AddEllipse(QtObjectPtr ptr, QtObjectPtr rect, QtObjectPtr pen, QtObjectPtr brush){ + return static_cast(ptr)->addEllipse(*static_cast(rect), *static_cast(pen), *static_cast(brush)); +} + +void QGraphicsScene_AddItem(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->addItem(static_cast(item)); +} + +QtObjectPtr QGraphicsScene_AddLine(QtObjectPtr ptr, QtObjectPtr line, QtObjectPtr pen){ + return static_cast(ptr)->addLine(*static_cast(line), *static_cast(pen)); +} + +QtObjectPtr QGraphicsScene_AddPath(QtObjectPtr ptr, QtObjectPtr path, QtObjectPtr pen, QtObjectPtr brush){ + return static_cast(ptr)->addPath(*static_cast(path), *static_cast(pen), *static_cast(brush)); +} + +QtObjectPtr QGraphicsScene_AddPixmap(QtObjectPtr ptr, QtObjectPtr pixmap){ + return static_cast(ptr)->addPixmap(*static_cast(pixmap)); +} + +QtObjectPtr QGraphicsScene_AddPolygon(QtObjectPtr ptr, QtObjectPtr polygon, QtObjectPtr pen, QtObjectPtr brush){ + return static_cast(ptr)->addPolygon(*static_cast(polygon), *static_cast(pen), *static_cast(brush)); +} + +QtObjectPtr QGraphicsScene_AddRect(QtObjectPtr ptr, QtObjectPtr rect, QtObjectPtr pen, QtObjectPtr brush){ + return static_cast(ptr)->addRect(*static_cast(rect), *static_cast(pen), *static_cast(brush)); +} + +QtObjectPtr QGraphicsScene_AddSimpleText(QtObjectPtr ptr, char* text, QtObjectPtr font){ + return static_cast(ptr)->addSimpleText(QString(text), *static_cast(font)); +} + +QtObjectPtr QGraphicsScene_AddText(QtObjectPtr ptr, char* text, QtObjectPtr font){ + return static_cast(ptr)->addText(QString(text), *static_cast(font)); +} + +QtObjectPtr QGraphicsScene_AddWidget(QtObjectPtr ptr, QtObjectPtr widget, int wFlags){ + return static_cast(ptr)->addWidget(static_cast(widget), static_cast(wFlags)); +} + +void QGraphicsScene_Advance(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "advance"); +} + +void QGraphicsScene_Clear(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "clear"); +} + +void QGraphicsScene_ClearFocus(QtObjectPtr ptr){ + static_cast(ptr)->clearFocus(); +} + +void QGraphicsScene_ClearSelection(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "clearSelection"); +} + +void QGraphicsScene_DestroyItemGroup(QtObjectPtr ptr, QtObjectPtr group){ + static_cast(ptr)->destroyItemGroup(static_cast(group)); +} + +QtObjectPtr QGraphicsScene_FocusItem(QtObjectPtr ptr){ + return static_cast(ptr)->focusItem(); +} + +void QGraphicsScene_ConnectFocusItemChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGraphicsScene::focusItemChanged), static_cast(ptr), static_cast(&MyQGraphicsScene::Signal_FocusItemChanged));; +} + +void QGraphicsScene_DisconnectFocusItemChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGraphicsScene::focusItemChanged), static_cast(ptr), static_cast(&MyQGraphicsScene::Signal_FocusItemChanged));; +} + +int QGraphicsScene_HasFocus(QtObjectPtr ptr){ + return static_cast(ptr)->hasFocus(); +} + +char* QGraphicsScene_InputMethodQuery(QtObjectPtr ptr, int query){ + return static_cast(ptr)->inputMethodQuery(static_cast(query)).toString().toUtf8().data(); +} + +void QGraphicsScene_Invalidate(QtObjectPtr ptr, QtObjectPtr rect, int layers){ + QMetaObject::invokeMethod(static_cast(ptr), "invalidate", Q_ARG(QRectF, *static_cast(rect)), Q_ARG(QGraphicsScene::SceneLayer, static_cast(layers))); +} + +int QGraphicsScene_IsActive(QtObjectPtr ptr){ + return static_cast(ptr)->isActive(); +} + +QtObjectPtr QGraphicsScene_ItemAt(QtObjectPtr ptr, QtObjectPtr position, QtObjectPtr deviceTransform){ + return static_cast(ptr)->itemAt(*static_cast(position), *static_cast(deviceTransform)); +} + +QtObjectPtr QGraphicsScene_MouseGrabberItem(QtObjectPtr ptr){ + return static_cast(ptr)->mouseGrabberItem(); +} + +void QGraphicsScene_RemoveItem(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->removeItem(static_cast(item)); +} + +void QGraphicsScene_Render(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr target, QtObjectPtr source, int aspectRatioMode){ + static_cast(ptr)->render(static_cast(painter), *static_cast(target), *static_cast(source), static_cast(aspectRatioMode)); +} + +void QGraphicsScene_ConnectSelectionChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGraphicsScene::selectionChanged), static_cast(ptr), static_cast(&MyQGraphicsScene::Signal_SelectionChanged));; +} + +void QGraphicsScene_DisconnectSelectionChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGraphicsScene::selectionChanged), static_cast(ptr), static_cast(&MyQGraphicsScene::Signal_SelectionChanged));; +} + +int QGraphicsScene_SendEvent(QtObjectPtr ptr, QtObjectPtr item, QtObjectPtr event){ + return static_cast(ptr)->sendEvent(static_cast(item), static_cast(event)); +} + +void QGraphicsScene_SetActivePanel(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->setActivePanel(static_cast(item)); +} + +void QGraphicsScene_SetActiveWindow(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->setActiveWindow(static_cast(widget)); +} + +void QGraphicsScene_SetFocus(QtObjectPtr ptr, int focusReason){ + static_cast(ptr)->setFocus(static_cast(focusReason)); +} + +void QGraphicsScene_SetFocusItem(QtObjectPtr ptr, QtObjectPtr item, int focusReason){ + static_cast(ptr)->setFocusItem(static_cast(item), static_cast(focusReason)); +} + +void QGraphicsScene_SetSelectionArea2(QtObjectPtr ptr, QtObjectPtr path, int mode, QtObjectPtr deviceTransform){ + static_cast(ptr)->setSelectionArea(*static_cast(path), static_cast(mode), *static_cast(deviceTransform)); +} + +void QGraphicsScene_SetSelectionArea3(QtObjectPtr ptr, QtObjectPtr path, int selectionOperation, int mode, QtObjectPtr deviceTransform){ + static_cast(ptr)->setSelectionArea(*static_cast(path), static_cast(selectionOperation), static_cast(mode), *static_cast(deviceTransform)); +} + +void QGraphicsScene_SetSelectionArea(QtObjectPtr ptr, QtObjectPtr path, QtObjectPtr deviceTransform){ + static_cast(ptr)->setSelectionArea(*static_cast(path), *static_cast(deviceTransform)); +} + +void QGraphicsScene_SetStyle(QtObjectPtr ptr, QtObjectPtr style){ + static_cast(ptr)->setStyle(static_cast(style)); +} + +QtObjectPtr QGraphicsScene_Style(QtObjectPtr ptr){ + return static_cast(ptr)->style(); +} + +void QGraphicsScene_DestroyQGraphicsScene(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsScene(); +} + diff --git a/widgets/qgraphicsscene.go b/widgets/qgraphicsscene.go new file mode 100755 index 00000000..7a88eef3 --- /dev/null +++ b/widgets/qgraphicsscene.go @@ -0,0 +1,433 @@ +package widgets + +//#include "qgraphicsscene.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QGraphicsScene struct { + core.QObject +} + +type QGraphicsSceneITF interface { + core.QObjectITF + QGraphicsScenePTR() *QGraphicsScene +} + +func PointerFromQGraphicsScene(ptr QGraphicsSceneITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsScenePTR().Pointer() + } + return nil +} + +func QGraphicsSceneFromPointer(ptr unsafe.Pointer) *QGraphicsScene { + var n = new(QGraphicsScene) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGraphicsScene_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGraphicsScene) QGraphicsScenePTR() *QGraphicsScene { + return ptr +} + +//QGraphicsScene::ItemIndexMethod +type QGraphicsScene__ItemIndexMethod int + +var ( + QGraphicsScene__BspTreeIndex = QGraphicsScene__ItemIndexMethod(0) + QGraphicsScene__NoIndex = QGraphicsScene__ItemIndexMethod(-1) +) + +//QGraphicsScene::SceneLayer +type QGraphicsScene__SceneLayer int + +var ( + QGraphicsScene__ItemLayer = QGraphicsScene__SceneLayer(0x1) + QGraphicsScene__BackgroundLayer = QGraphicsScene__SceneLayer(0x2) + QGraphicsScene__ForegroundLayer = QGraphicsScene__SceneLayer(0x4) + QGraphicsScene__AllLayers = QGraphicsScene__SceneLayer(0xffff) +) + +func (ptr *QGraphicsScene) BspTreeDepth() int { + if ptr.Pointer() != nil { + return int(C.QGraphicsScene_BspTreeDepth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsScene) IsSortCacheEnabled() bool { + if ptr.Pointer() != nil { + return C.QGraphicsScene_IsSortCacheEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGraphicsScene) ItemIndexMethod() QGraphicsScene__ItemIndexMethod { + if ptr.Pointer() != nil { + return QGraphicsScene__ItemIndexMethod(C.QGraphicsScene_ItemIndexMethod(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsScene) SetBackgroundBrush(brush gui.QBrushITF) { + if ptr.Pointer() != nil { + C.QGraphicsScene_SetBackgroundBrush(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQBrush(brush))) + } +} + +func (ptr *QGraphicsScene) SetBspTreeDepth(depth int) { + if ptr.Pointer() != nil { + C.QGraphicsScene_SetBspTreeDepth(C.QtObjectPtr(ptr.Pointer()), C.int(depth)) + } +} + +func (ptr *QGraphicsScene) SetFont(font gui.QFontITF) { + if ptr.Pointer() != nil { + C.QGraphicsScene_SetFont(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQFont(font))) + } +} + +func (ptr *QGraphicsScene) SetForegroundBrush(brush gui.QBrushITF) { + if ptr.Pointer() != nil { + C.QGraphicsScene_SetForegroundBrush(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQBrush(brush))) + } +} + +func (ptr *QGraphicsScene) SetItemIndexMethod(method QGraphicsScene__ItemIndexMethod) { + if ptr.Pointer() != nil { + C.QGraphicsScene_SetItemIndexMethod(C.QtObjectPtr(ptr.Pointer()), C.int(method)) + } +} + +func (ptr *QGraphicsScene) SetPalette(palette gui.QPaletteITF) { + if ptr.Pointer() != nil { + C.QGraphicsScene_SetPalette(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPalette(palette))) + } +} + +func (ptr *QGraphicsScene) SetSceneRect(rect core.QRectFITF) { + if ptr.Pointer() != nil { + C.QGraphicsScene_SetSceneRect(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rect))) + } +} + +func (ptr *QGraphicsScene) SetSortCacheEnabled(enabled bool) { + if ptr.Pointer() != nil { + C.QGraphicsScene_SetSortCacheEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QGraphicsScene) SetStickyFocus(enabled bool) { + if ptr.Pointer() != nil { + C.QGraphicsScene_SetStickyFocus(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QGraphicsScene) StickyFocus() bool { + if ptr.Pointer() != nil { + return C.QGraphicsScene_StickyFocus(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGraphicsScene) Update(rect core.QRectFITF) { + if ptr.Pointer() != nil { + C.QGraphicsScene_Update(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rect))) + } +} + +func NewQGraphicsScene(parent core.QObjectITF) *QGraphicsScene { + return QGraphicsSceneFromPointer(unsafe.Pointer(C.QGraphicsScene_NewQGraphicsScene(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQGraphicsScene2(sceneRect core.QRectFITF, parent core.QObjectITF) *QGraphicsScene { + return QGraphicsSceneFromPointer(unsafe.Pointer(C.QGraphicsScene_NewQGraphicsScene2(C.QtObjectPtr(core.PointerFromQRectF(sceneRect)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QGraphicsScene) ActivePanel() *QGraphicsItem { + if ptr.Pointer() != nil { + return QGraphicsItemFromPointer(unsafe.Pointer(C.QGraphicsScene_ActivePanel(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QGraphicsScene) ActiveWindow() *QGraphicsWidget { + if ptr.Pointer() != nil { + return QGraphicsWidgetFromPointer(unsafe.Pointer(C.QGraphicsScene_ActiveWindow(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QGraphicsScene) AddEllipse(rect core.QRectFITF, pen gui.QPenITF, brush gui.QBrushITF) *QGraphicsEllipseItem { + if ptr.Pointer() != nil { + return QGraphicsEllipseItemFromPointer(unsafe.Pointer(C.QGraphicsScene_AddEllipse(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rect)), C.QtObjectPtr(gui.PointerFromQPen(pen)), C.QtObjectPtr(gui.PointerFromQBrush(brush))))) + } + return nil +} + +func (ptr *QGraphicsScene) AddItem(item QGraphicsItemITF) { + if ptr.Pointer() != nil { + C.QGraphicsScene_AddItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsItem(item))) + } +} + +func (ptr *QGraphicsScene) AddLine(line core.QLineFITF, pen gui.QPenITF) *QGraphicsLineItem { + if ptr.Pointer() != nil { + return QGraphicsLineItemFromPointer(unsafe.Pointer(C.QGraphicsScene_AddLine(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQLineF(line)), C.QtObjectPtr(gui.PointerFromQPen(pen))))) + } + return nil +} + +func (ptr *QGraphicsScene) AddPath(path gui.QPainterPathITF, pen gui.QPenITF, brush gui.QBrushITF) *QGraphicsPathItem { + if ptr.Pointer() != nil { + return QGraphicsPathItemFromPointer(unsafe.Pointer(C.QGraphicsScene_AddPath(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainterPath(path)), C.QtObjectPtr(gui.PointerFromQPen(pen)), C.QtObjectPtr(gui.PointerFromQBrush(brush))))) + } + return nil +} + +func (ptr *QGraphicsScene) AddPixmap(pixmap gui.QPixmapITF) *QGraphicsPixmapItem { + if ptr.Pointer() != nil { + return QGraphicsPixmapItemFromPointer(unsafe.Pointer(C.QGraphicsScene_AddPixmap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPixmap(pixmap))))) + } + return nil +} + +func (ptr *QGraphicsScene) AddPolygon(polygon gui.QPolygonFITF, pen gui.QPenITF, brush gui.QBrushITF) *QGraphicsPolygonItem { + if ptr.Pointer() != nil { + return QGraphicsPolygonItemFromPointer(unsafe.Pointer(C.QGraphicsScene_AddPolygon(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPolygonF(polygon)), C.QtObjectPtr(gui.PointerFromQPen(pen)), C.QtObjectPtr(gui.PointerFromQBrush(brush))))) + } + return nil +} + +func (ptr *QGraphicsScene) AddRect(rect core.QRectFITF, pen gui.QPenITF, brush gui.QBrushITF) *QGraphicsRectItem { + if ptr.Pointer() != nil { + return QGraphicsRectItemFromPointer(unsafe.Pointer(C.QGraphicsScene_AddRect(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rect)), C.QtObjectPtr(gui.PointerFromQPen(pen)), C.QtObjectPtr(gui.PointerFromQBrush(brush))))) + } + return nil +} + +func (ptr *QGraphicsScene) AddSimpleText(text string, font gui.QFontITF) *QGraphicsSimpleTextItem { + if ptr.Pointer() != nil { + return QGraphicsSimpleTextItemFromPointer(unsafe.Pointer(C.QGraphicsScene_AddSimpleText(C.QtObjectPtr(ptr.Pointer()), C.CString(text), C.QtObjectPtr(gui.PointerFromQFont(font))))) + } + return nil +} + +func (ptr *QGraphicsScene) AddText(text string, font gui.QFontITF) *QGraphicsTextItem { + if ptr.Pointer() != nil { + return QGraphicsTextItemFromPointer(unsafe.Pointer(C.QGraphicsScene_AddText(C.QtObjectPtr(ptr.Pointer()), C.CString(text), C.QtObjectPtr(gui.PointerFromQFont(font))))) + } + return nil +} + +func (ptr *QGraphicsScene) AddWidget(widget QWidgetITF, wFlags core.Qt__WindowType) *QGraphicsProxyWidget { + if ptr.Pointer() != nil { + return QGraphicsProxyWidgetFromPointer(unsafe.Pointer(C.QGraphicsScene_AddWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget)), C.int(wFlags)))) + } + return nil +} + +func (ptr *QGraphicsScene) Advance() { + if ptr.Pointer() != nil { + C.QGraphicsScene_Advance(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QGraphicsScene) Clear() { + if ptr.Pointer() != nil { + C.QGraphicsScene_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QGraphicsScene) ClearFocus() { + if ptr.Pointer() != nil { + C.QGraphicsScene_ClearFocus(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QGraphicsScene) ClearSelection() { + if ptr.Pointer() != nil { + C.QGraphicsScene_ClearSelection(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QGraphicsScene) DestroyItemGroup(group QGraphicsItemGroupITF) { + if ptr.Pointer() != nil { + C.QGraphicsScene_DestroyItemGroup(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsItemGroup(group))) + } +} + +func (ptr *QGraphicsScene) FocusItem() *QGraphicsItem { + if ptr.Pointer() != nil { + return QGraphicsItemFromPointer(unsafe.Pointer(C.QGraphicsScene_FocusItem(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QGraphicsScene) ConnectFocusItemChanged(f func(newFocusItem QGraphicsItemITF, oldFocusItem QGraphicsItemITF, reason core.Qt__FocusReason)) { + if ptr.Pointer() != nil { + C.QGraphicsScene_ConnectFocusItemChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "focusItemChanged", f) + } +} + +func (ptr *QGraphicsScene) DisconnectFocusItemChanged() { + if ptr.Pointer() != nil { + C.QGraphicsScene_DisconnectFocusItemChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "focusItemChanged") + } +} + +//export callbackQGraphicsSceneFocusItemChanged +func callbackQGraphicsSceneFocusItemChanged(ptrName *C.char, newFocusItem unsafe.Pointer, oldFocusItem unsafe.Pointer, reason C.int) { + qt.GetSignal(C.GoString(ptrName), "focusItemChanged").(func(*QGraphicsItem, *QGraphicsItem, core.Qt__FocusReason))(QGraphicsItemFromPointer(newFocusItem), QGraphicsItemFromPointer(oldFocusItem), core.Qt__FocusReason(reason)) +} + +func (ptr *QGraphicsScene) HasFocus() bool { + if ptr.Pointer() != nil { + return C.QGraphicsScene_HasFocus(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGraphicsScene) InputMethodQuery(query core.Qt__InputMethodQuery) string { + if ptr.Pointer() != nil { + return C.GoString(C.QGraphicsScene_InputMethodQuery(C.QtObjectPtr(ptr.Pointer()), C.int(query))) + } + return "" +} + +func (ptr *QGraphicsScene) Invalidate(rect core.QRectFITF, layers QGraphicsScene__SceneLayer) { + if ptr.Pointer() != nil { + C.QGraphicsScene_Invalidate(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rect)), C.int(layers)) + } +} + +func (ptr *QGraphicsScene) IsActive() bool { + if ptr.Pointer() != nil { + return C.QGraphicsScene_IsActive(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGraphicsScene) ItemAt(position core.QPointFITF, deviceTransform gui.QTransformITF) *QGraphicsItem { + if ptr.Pointer() != nil { + return QGraphicsItemFromPointer(unsafe.Pointer(C.QGraphicsScene_ItemAt(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(position)), C.QtObjectPtr(gui.PointerFromQTransform(deviceTransform))))) + } + return nil +} + +func (ptr *QGraphicsScene) MouseGrabberItem() *QGraphicsItem { + if ptr.Pointer() != nil { + return QGraphicsItemFromPointer(unsafe.Pointer(C.QGraphicsScene_MouseGrabberItem(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QGraphicsScene) RemoveItem(item QGraphicsItemITF) { + if ptr.Pointer() != nil { + C.QGraphicsScene_RemoveItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsItem(item))) + } +} + +func (ptr *QGraphicsScene) Render(painter gui.QPainterITF, target core.QRectFITF, source core.QRectFITF, aspectRatioMode core.Qt__AspectRatioMode) { + if ptr.Pointer() != nil { + C.QGraphicsScene_Render(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(core.PointerFromQRectF(target)), C.QtObjectPtr(core.PointerFromQRectF(source)), C.int(aspectRatioMode)) + } +} + +func (ptr *QGraphicsScene) ConnectSelectionChanged(f func()) { + if ptr.Pointer() != nil { + C.QGraphicsScene_ConnectSelectionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "selectionChanged", f) + } +} + +func (ptr *QGraphicsScene) DisconnectSelectionChanged() { + if ptr.Pointer() != nil { + C.QGraphicsScene_DisconnectSelectionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "selectionChanged") + } +} + +//export callbackQGraphicsSceneSelectionChanged +func callbackQGraphicsSceneSelectionChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "selectionChanged").(func())() +} + +func (ptr *QGraphicsScene) SendEvent(item QGraphicsItemITF, event core.QEventITF) bool { + if ptr.Pointer() != nil { + return C.QGraphicsScene_SendEvent(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsItem(item)), C.QtObjectPtr(core.PointerFromQEvent(event))) != 0 + } + return false +} + +func (ptr *QGraphicsScene) SetActivePanel(item QGraphicsItemITF) { + if ptr.Pointer() != nil { + C.QGraphicsScene_SetActivePanel(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsItem(item))) + } +} + +func (ptr *QGraphicsScene) SetActiveWindow(widget QGraphicsWidgetITF) { + if ptr.Pointer() != nil { + C.QGraphicsScene_SetActiveWindow(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsWidget(widget))) + } +} + +func (ptr *QGraphicsScene) SetFocus(focusReason core.Qt__FocusReason) { + if ptr.Pointer() != nil { + C.QGraphicsScene_SetFocus(C.QtObjectPtr(ptr.Pointer()), C.int(focusReason)) + } +} + +func (ptr *QGraphicsScene) SetFocusItem(item QGraphicsItemITF, focusReason core.Qt__FocusReason) { + if ptr.Pointer() != nil { + C.QGraphicsScene_SetFocusItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsItem(item)), C.int(focusReason)) + } +} + +func (ptr *QGraphicsScene) SetSelectionArea2(path gui.QPainterPathITF, mode core.Qt__ItemSelectionMode, deviceTransform gui.QTransformITF) { + if ptr.Pointer() != nil { + C.QGraphicsScene_SetSelectionArea2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainterPath(path)), C.int(mode), C.QtObjectPtr(gui.PointerFromQTransform(deviceTransform))) + } +} + +func (ptr *QGraphicsScene) SetSelectionArea3(path gui.QPainterPathITF, selectionOperation core.Qt__ItemSelectionOperation, mode core.Qt__ItemSelectionMode, deviceTransform gui.QTransformITF) { + if ptr.Pointer() != nil { + C.QGraphicsScene_SetSelectionArea3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainterPath(path)), C.int(selectionOperation), C.int(mode), C.QtObjectPtr(gui.PointerFromQTransform(deviceTransform))) + } +} + +func (ptr *QGraphicsScene) SetSelectionArea(path gui.QPainterPathITF, deviceTransform gui.QTransformITF) { + if ptr.Pointer() != nil { + C.QGraphicsScene_SetSelectionArea(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainterPath(path)), C.QtObjectPtr(gui.PointerFromQTransform(deviceTransform))) + } +} + +func (ptr *QGraphicsScene) SetStyle(style QStyleITF) { + if ptr.Pointer() != nil { + C.QGraphicsScene_SetStyle(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQStyle(style))) + } +} + +func (ptr *QGraphicsScene) Style() *QStyle { + if ptr.Pointer() != nil { + return QStyleFromPointer(unsafe.Pointer(C.QGraphicsScene_Style(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QGraphicsScene) DestroyQGraphicsScene() { + if ptr.Pointer() != nil { + C.QGraphicsScene_DestroyQGraphicsScene(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qgraphicsscene.h b/widgets/qgraphicsscene.h new file mode 100755 index 00000000..70418729 --- /dev/null +++ b/widgets/qgraphicsscene.h @@ -0,0 +1,66 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QGraphicsScene_BspTreeDepth(QtObjectPtr ptr); +int QGraphicsScene_IsSortCacheEnabled(QtObjectPtr ptr); +int QGraphicsScene_ItemIndexMethod(QtObjectPtr ptr); +void QGraphicsScene_SetBackgroundBrush(QtObjectPtr ptr, QtObjectPtr brush); +void QGraphicsScene_SetBspTreeDepth(QtObjectPtr ptr, int depth); +void QGraphicsScene_SetFont(QtObjectPtr ptr, QtObjectPtr font); +void QGraphicsScene_SetForegroundBrush(QtObjectPtr ptr, QtObjectPtr brush); +void QGraphicsScene_SetItemIndexMethod(QtObjectPtr ptr, int method); +void QGraphicsScene_SetPalette(QtObjectPtr ptr, QtObjectPtr palette); +void QGraphicsScene_SetSceneRect(QtObjectPtr ptr, QtObjectPtr rect); +void QGraphicsScene_SetSortCacheEnabled(QtObjectPtr ptr, int enabled); +void QGraphicsScene_SetStickyFocus(QtObjectPtr ptr, int enabled); +int QGraphicsScene_StickyFocus(QtObjectPtr ptr); +void QGraphicsScene_Update(QtObjectPtr ptr, QtObjectPtr rect); +QtObjectPtr QGraphicsScene_NewQGraphicsScene(QtObjectPtr parent); +QtObjectPtr QGraphicsScene_NewQGraphicsScene2(QtObjectPtr sceneRect, QtObjectPtr parent); +QtObjectPtr QGraphicsScene_ActivePanel(QtObjectPtr ptr); +QtObjectPtr QGraphicsScene_ActiveWindow(QtObjectPtr ptr); +QtObjectPtr QGraphicsScene_AddEllipse(QtObjectPtr ptr, QtObjectPtr rect, QtObjectPtr pen, QtObjectPtr brush); +void QGraphicsScene_AddItem(QtObjectPtr ptr, QtObjectPtr item); +QtObjectPtr QGraphicsScene_AddLine(QtObjectPtr ptr, QtObjectPtr line, QtObjectPtr pen); +QtObjectPtr QGraphicsScene_AddPath(QtObjectPtr ptr, QtObjectPtr path, QtObjectPtr pen, QtObjectPtr brush); +QtObjectPtr QGraphicsScene_AddPixmap(QtObjectPtr ptr, QtObjectPtr pixmap); +QtObjectPtr QGraphicsScene_AddPolygon(QtObjectPtr ptr, QtObjectPtr polygon, QtObjectPtr pen, QtObjectPtr brush); +QtObjectPtr QGraphicsScene_AddRect(QtObjectPtr ptr, QtObjectPtr rect, QtObjectPtr pen, QtObjectPtr brush); +QtObjectPtr QGraphicsScene_AddSimpleText(QtObjectPtr ptr, char* text, QtObjectPtr font); +QtObjectPtr QGraphicsScene_AddText(QtObjectPtr ptr, char* text, QtObjectPtr font); +QtObjectPtr QGraphicsScene_AddWidget(QtObjectPtr ptr, QtObjectPtr widget, int wFlags); +void QGraphicsScene_Advance(QtObjectPtr ptr); +void QGraphicsScene_Clear(QtObjectPtr ptr); +void QGraphicsScene_ClearFocus(QtObjectPtr ptr); +void QGraphicsScene_ClearSelection(QtObjectPtr ptr); +void QGraphicsScene_DestroyItemGroup(QtObjectPtr ptr, QtObjectPtr group); +QtObjectPtr QGraphicsScene_FocusItem(QtObjectPtr ptr); +void QGraphicsScene_ConnectFocusItemChanged(QtObjectPtr ptr); +void QGraphicsScene_DisconnectFocusItemChanged(QtObjectPtr ptr); +int QGraphicsScene_HasFocus(QtObjectPtr ptr); +char* QGraphicsScene_InputMethodQuery(QtObjectPtr ptr, int query); +void QGraphicsScene_Invalidate(QtObjectPtr ptr, QtObjectPtr rect, int layers); +int QGraphicsScene_IsActive(QtObjectPtr ptr); +QtObjectPtr QGraphicsScene_ItemAt(QtObjectPtr ptr, QtObjectPtr position, QtObjectPtr deviceTransform); +QtObjectPtr QGraphicsScene_MouseGrabberItem(QtObjectPtr ptr); +void QGraphicsScene_RemoveItem(QtObjectPtr ptr, QtObjectPtr item); +void QGraphicsScene_Render(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr target, QtObjectPtr source, int aspectRatioMode); +void QGraphicsScene_ConnectSelectionChanged(QtObjectPtr ptr); +void QGraphicsScene_DisconnectSelectionChanged(QtObjectPtr ptr); +int QGraphicsScene_SendEvent(QtObjectPtr ptr, QtObjectPtr item, QtObjectPtr event); +void QGraphicsScene_SetActivePanel(QtObjectPtr ptr, QtObjectPtr item); +void QGraphicsScene_SetActiveWindow(QtObjectPtr ptr, QtObjectPtr widget); +void QGraphicsScene_SetFocus(QtObjectPtr ptr, int focusReason); +void QGraphicsScene_SetFocusItem(QtObjectPtr ptr, QtObjectPtr item, int focusReason); +void QGraphicsScene_SetSelectionArea2(QtObjectPtr ptr, QtObjectPtr path, int mode, QtObjectPtr deviceTransform); +void QGraphicsScene_SetSelectionArea3(QtObjectPtr ptr, QtObjectPtr path, int selectionOperation, int mode, QtObjectPtr deviceTransform); +void QGraphicsScene_SetSelectionArea(QtObjectPtr ptr, QtObjectPtr path, QtObjectPtr deviceTransform); +void QGraphicsScene_SetStyle(QtObjectPtr ptr, QtObjectPtr style); +QtObjectPtr QGraphicsScene_Style(QtObjectPtr ptr); +void QGraphicsScene_DestroyQGraphicsScene(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicsscenecontextmenuevent.cpp b/widgets/qgraphicsscenecontextmenuevent.cpp new file mode 100755 index 00000000..9d32277a --- /dev/null +++ b/widgets/qgraphicsscenecontextmenuevent.cpp @@ -0,0 +1,25 @@ +#include "qgraphicsscenecontextmenuevent.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsSceneContextMenuEvent: public QGraphicsSceneContextMenuEvent { +public: +}; + +int QGraphicsSceneContextMenuEvent_Modifiers(QtObjectPtr ptr){ + return static_cast(ptr)->modifiers(); +} + +int QGraphicsSceneContextMenuEvent_Reason(QtObjectPtr ptr){ + return static_cast(ptr)->reason(); +} + +void QGraphicsSceneContextMenuEvent_DestroyQGraphicsSceneContextMenuEvent(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsSceneContextMenuEvent(); +} + diff --git a/widgets/qgraphicsscenecontextmenuevent.go b/widgets/qgraphicsscenecontextmenuevent.go new file mode 100755 index 00000000..6d3099fa --- /dev/null +++ b/widgets/qgraphicsscenecontextmenuevent.go @@ -0,0 +1,63 @@ +package widgets + +//#include "qgraphicsscenecontextmenuevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGraphicsSceneContextMenuEvent struct { + QGraphicsSceneEvent +} + +type QGraphicsSceneContextMenuEventITF interface { + QGraphicsSceneEventITF + QGraphicsSceneContextMenuEventPTR() *QGraphicsSceneContextMenuEvent +} + +func PointerFromQGraphicsSceneContextMenuEvent(ptr QGraphicsSceneContextMenuEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsSceneContextMenuEventPTR().Pointer() + } + return nil +} + +func QGraphicsSceneContextMenuEventFromPointer(ptr unsafe.Pointer) *QGraphicsSceneContextMenuEvent { + var n = new(QGraphicsSceneContextMenuEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QGraphicsSceneContextMenuEvent) QGraphicsSceneContextMenuEventPTR() *QGraphicsSceneContextMenuEvent { + return ptr +} + +//QGraphicsSceneContextMenuEvent::Reason +type QGraphicsSceneContextMenuEvent__Reason int + +var ( + QGraphicsSceneContextMenuEvent__Mouse = QGraphicsSceneContextMenuEvent__Reason(0) + QGraphicsSceneContextMenuEvent__Keyboard = QGraphicsSceneContextMenuEvent__Reason(1) + QGraphicsSceneContextMenuEvent__Other = QGraphicsSceneContextMenuEvent__Reason(2) +) + +func (ptr *QGraphicsSceneContextMenuEvent) Modifiers() core.Qt__KeyboardModifier { + if ptr.Pointer() != nil { + return core.Qt__KeyboardModifier(C.QGraphicsSceneContextMenuEvent_Modifiers(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsSceneContextMenuEvent) Reason() QGraphicsSceneContextMenuEvent__Reason { + if ptr.Pointer() != nil { + return QGraphicsSceneContextMenuEvent__Reason(C.QGraphicsSceneContextMenuEvent_Reason(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsSceneContextMenuEvent) DestroyQGraphicsSceneContextMenuEvent() { + if ptr.Pointer() != nil { + C.QGraphicsSceneContextMenuEvent_DestroyQGraphicsSceneContextMenuEvent(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qgraphicsscenecontextmenuevent.h b/widgets/qgraphicsscenecontextmenuevent.h new file mode 100755 index 00000000..c01989f9 --- /dev/null +++ b/widgets/qgraphicsscenecontextmenuevent.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QGraphicsSceneContextMenuEvent_Modifiers(QtObjectPtr ptr); +int QGraphicsSceneContextMenuEvent_Reason(QtObjectPtr ptr); +void QGraphicsSceneContextMenuEvent_DestroyQGraphicsSceneContextMenuEvent(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicsscenedragdropevent.cpp b/widgets/qgraphicsscenedragdropevent.cpp new file mode 100755 index 00000000..c83880f3 --- /dev/null +++ b/widgets/qgraphicsscenedragdropevent.cpp @@ -0,0 +1,54 @@ +#include "qgraphicsscenedragdropevent.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsSceneDragDropEvent: public QGraphicsSceneDragDropEvent { +public: +}; + +void QGraphicsSceneDragDropEvent_AcceptProposedAction(QtObjectPtr ptr){ + static_cast(ptr)->acceptProposedAction(); +} + +int QGraphicsSceneDragDropEvent_Buttons(QtObjectPtr ptr){ + return static_cast(ptr)->buttons(); +} + +int QGraphicsSceneDragDropEvent_DropAction(QtObjectPtr ptr){ + return static_cast(ptr)->dropAction(); +} + +QtObjectPtr QGraphicsSceneDragDropEvent_MimeData(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->mimeData()); +} + +int QGraphicsSceneDragDropEvent_Modifiers(QtObjectPtr ptr){ + return static_cast(ptr)->modifiers(); +} + +int QGraphicsSceneDragDropEvent_PossibleActions(QtObjectPtr ptr){ + return static_cast(ptr)->possibleActions(); +} + +int QGraphicsSceneDragDropEvent_ProposedAction(QtObjectPtr ptr){ + return static_cast(ptr)->proposedAction(); +} + +void QGraphicsSceneDragDropEvent_SetDropAction(QtObjectPtr ptr, int action){ + static_cast(ptr)->setDropAction(static_cast(action)); +} + +QtObjectPtr QGraphicsSceneDragDropEvent_Source(QtObjectPtr ptr){ + return static_cast(ptr)->source(); +} + +void QGraphicsSceneDragDropEvent_DestroyQGraphicsSceneDragDropEvent(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsSceneDragDropEvent(); +} + diff --git a/widgets/qgraphicsscenedragdropevent.go b/widgets/qgraphicsscenedragdropevent.go new file mode 100755 index 00000000..57e5eab4 --- /dev/null +++ b/widgets/qgraphicsscenedragdropevent.go @@ -0,0 +1,101 @@ +package widgets + +//#include "qgraphicsscenedragdropevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGraphicsSceneDragDropEvent struct { + QGraphicsSceneEvent +} + +type QGraphicsSceneDragDropEventITF interface { + QGraphicsSceneEventITF + QGraphicsSceneDragDropEventPTR() *QGraphicsSceneDragDropEvent +} + +func PointerFromQGraphicsSceneDragDropEvent(ptr QGraphicsSceneDragDropEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsSceneDragDropEventPTR().Pointer() + } + return nil +} + +func QGraphicsSceneDragDropEventFromPointer(ptr unsafe.Pointer) *QGraphicsSceneDragDropEvent { + var n = new(QGraphicsSceneDragDropEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QGraphicsSceneDragDropEvent) QGraphicsSceneDragDropEventPTR() *QGraphicsSceneDragDropEvent { + return ptr +} + +func (ptr *QGraphicsSceneDragDropEvent) AcceptProposedAction() { + if ptr.Pointer() != nil { + C.QGraphicsSceneDragDropEvent_AcceptProposedAction(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QGraphicsSceneDragDropEvent) Buttons() core.Qt__MouseButton { + if ptr.Pointer() != nil { + return core.Qt__MouseButton(C.QGraphicsSceneDragDropEvent_Buttons(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsSceneDragDropEvent) DropAction() core.Qt__DropAction { + if ptr.Pointer() != nil { + return core.Qt__DropAction(C.QGraphicsSceneDragDropEvent_DropAction(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsSceneDragDropEvent) MimeData() *core.QMimeData { + if ptr.Pointer() != nil { + return core.QMimeDataFromPointer(unsafe.Pointer(C.QGraphicsSceneDragDropEvent_MimeData(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QGraphicsSceneDragDropEvent) Modifiers() core.Qt__KeyboardModifier { + if ptr.Pointer() != nil { + return core.Qt__KeyboardModifier(C.QGraphicsSceneDragDropEvent_Modifiers(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsSceneDragDropEvent) PossibleActions() core.Qt__DropAction { + if ptr.Pointer() != nil { + return core.Qt__DropAction(C.QGraphicsSceneDragDropEvent_PossibleActions(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsSceneDragDropEvent) ProposedAction() core.Qt__DropAction { + if ptr.Pointer() != nil { + return core.Qt__DropAction(C.QGraphicsSceneDragDropEvent_ProposedAction(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsSceneDragDropEvent) SetDropAction(action core.Qt__DropAction) { + if ptr.Pointer() != nil { + C.QGraphicsSceneDragDropEvent_SetDropAction(C.QtObjectPtr(ptr.Pointer()), C.int(action)) + } +} + +func (ptr *QGraphicsSceneDragDropEvent) Source() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QGraphicsSceneDragDropEvent_Source(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QGraphicsSceneDragDropEvent) DestroyQGraphicsSceneDragDropEvent() { + if ptr.Pointer() != nil { + C.QGraphicsSceneDragDropEvent_DestroyQGraphicsSceneDragDropEvent(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qgraphicsscenedragdropevent.h b/widgets/qgraphicsscenedragdropevent.h new file mode 100755 index 00000000..655ba539 --- /dev/null +++ b/widgets/qgraphicsscenedragdropevent.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QGraphicsSceneDragDropEvent_AcceptProposedAction(QtObjectPtr ptr); +int QGraphicsSceneDragDropEvent_Buttons(QtObjectPtr ptr); +int QGraphicsSceneDragDropEvent_DropAction(QtObjectPtr ptr); +QtObjectPtr QGraphicsSceneDragDropEvent_MimeData(QtObjectPtr ptr); +int QGraphicsSceneDragDropEvent_Modifiers(QtObjectPtr ptr); +int QGraphicsSceneDragDropEvent_PossibleActions(QtObjectPtr ptr); +int QGraphicsSceneDragDropEvent_ProposedAction(QtObjectPtr ptr); +void QGraphicsSceneDragDropEvent_SetDropAction(QtObjectPtr ptr, int action); +QtObjectPtr QGraphicsSceneDragDropEvent_Source(QtObjectPtr ptr); +void QGraphicsSceneDragDropEvent_DestroyQGraphicsSceneDragDropEvent(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicssceneevent.cpp b/widgets/qgraphicssceneevent.cpp new file mode 100755 index 00000000..5bc75f00 --- /dev/null +++ b/widgets/qgraphicssceneevent.cpp @@ -0,0 +1,21 @@ +#include "qgraphicssceneevent.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsSceneEvent: public QGraphicsSceneEvent { +public: +}; + +QtObjectPtr QGraphicsSceneEvent_Widget(QtObjectPtr ptr){ + return static_cast(ptr)->widget(); +} + +void QGraphicsSceneEvent_DestroyQGraphicsSceneEvent(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsSceneEvent(); +} + diff --git a/widgets/qgraphicssceneevent.go b/widgets/qgraphicssceneevent.go new file mode 100755 index 00000000..7f62c272 --- /dev/null +++ b/widgets/qgraphicssceneevent.go @@ -0,0 +1,47 @@ +package widgets + +//#include "qgraphicssceneevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGraphicsSceneEvent struct { + core.QEvent +} + +type QGraphicsSceneEventITF interface { + core.QEventITF + QGraphicsSceneEventPTR() *QGraphicsSceneEvent +} + +func PointerFromQGraphicsSceneEvent(ptr QGraphicsSceneEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsSceneEventPTR().Pointer() + } + return nil +} + +func QGraphicsSceneEventFromPointer(ptr unsafe.Pointer) *QGraphicsSceneEvent { + var n = new(QGraphicsSceneEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QGraphicsSceneEvent) QGraphicsSceneEventPTR() *QGraphicsSceneEvent { + return ptr +} + +func (ptr *QGraphicsSceneEvent) Widget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QGraphicsSceneEvent_Widget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QGraphicsSceneEvent) DestroyQGraphicsSceneEvent() { + if ptr.Pointer() != nil { + C.QGraphicsSceneEvent_DestroyQGraphicsSceneEvent(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qgraphicssceneevent.h b/widgets/qgraphicssceneevent.h new file mode 100755 index 00000000..5454795a --- /dev/null +++ b/widgets/qgraphicssceneevent.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGraphicsSceneEvent_Widget(QtObjectPtr ptr); +void QGraphicsSceneEvent_DestroyQGraphicsSceneEvent(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicsscenehelpevent.cpp b/widgets/qgraphicsscenehelpevent.cpp new file mode 100755 index 00000000..585c5ec0 --- /dev/null +++ b/widgets/qgraphicsscenehelpevent.cpp @@ -0,0 +1,17 @@ +#include "qgraphicsscenehelpevent.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsSceneHelpEvent: public QGraphicsSceneHelpEvent { +public: +}; + +void QGraphicsSceneHelpEvent_DestroyQGraphicsSceneHelpEvent(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsSceneHelpEvent(); +} + diff --git a/widgets/qgraphicsscenehelpevent.go b/widgets/qgraphicsscenehelpevent.go new file mode 100755 index 00000000..99befc95 --- /dev/null +++ b/widgets/qgraphicsscenehelpevent.go @@ -0,0 +1,39 @@ +package widgets + +//#include "qgraphicsscenehelpevent.h" +import "C" +import ( + "unsafe" +) + +type QGraphicsSceneHelpEvent struct { + QGraphicsSceneEvent +} + +type QGraphicsSceneHelpEventITF interface { + QGraphicsSceneEventITF + QGraphicsSceneHelpEventPTR() *QGraphicsSceneHelpEvent +} + +func PointerFromQGraphicsSceneHelpEvent(ptr QGraphicsSceneHelpEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsSceneHelpEventPTR().Pointer() + } + return nil +} + +func QGraphicsSceneHelpEventFromPointer(ptr unsafe.Pointer) *QGraphicsSceneHelpEvent { + var n = new(QGraphicsSceneHelpEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QGraphicsSceneHelpEvent) QGraphicsSceneHelpEventPTR() *QGraphicsSceneHelpEvent { + return ptr +} + +func (ptr *QGraphicsSceneHelpEvent) DestroyQGraphicsSceneHelpEvent() { + if ptr.Pointer() != nil { + C.QGraphicsSceneHelpEvent_DestroyQGraphicsSceneHelpEvent(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qgraphicsscenehelpevent.h b/widgets/qgraphicsscenehelpevent.h new file mode 100755 index 00000000..d881640e --- /dev/null +++ b/widgets/qgraphicsscenehelpevent.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QGraphicsSceneHelpEvent_DestroyQGraphicsSceneHelpEvent(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicsscenehoverevent.cpp b/widgets/qgraphicsscenehoverevent.cpp new file mode 100755 index 00000000..3ff6b0c9 --- /dev/null +++ b/widgets/qgraphicsscenehoverevent.cpp @@ -0,0 +1,21 @@ +#include "qgraphicsscenehoverevent.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsSceneHoverEvent: public QGraphicsSceneHoverEvent { +public: +}; + +int QGraphicsSceneHoverEvent_Modifiers(QtObjectPtr ptr){ + return static_cast(ptr)->modifiers(); +} + +void QGraphicsSceneHoverEvent_DestroyQGraphicsSceneHoverEvent(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsSceneHoverEvent(); +} + diff --git a/widgets/qgraphicsscenehoverevent.go b/widgets/qgraphicsscenehoverevent.go new file mode 100755 index 00000000..3fcfc859 --- /dev/null +++ b/widgets/qgraphicsscenehoverevent.go @@ -0,0 +1,47 @@ +package widgets + +//#include "qgraphicsscenehoverevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGraphicsSceneHoverEvent struct { + QGraphicsSceneEvent +} + +type QGraphicsSceneHoverEventITF interface { + QGraphicsSceneEventITF + QGraphicsSceneHoverEventPTR() *QGraphicsSceneHoverEvent +} + +func PointerFromQGraphicsSceneHoverEvent(ptr QGraphicsSceneHoverEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsSceneHoverEventPTR().Pointer() + } + return nil +} + +func QGraphicsSceneHoverEventFromPointer(ptr unsafe.Pointer) *QGraphicsSceneHoverEvent { + var n = new(QGraphicsSceneHoverEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QGraphicsSceneHoverEvent) QGraphicsSceneHoverEventPTR() *QGraphicsSceneHoverEvent { + return ptr +} + +func (ptr *QGraphicsSceneHoverEvent) Modifiers() core.Qt__KeyboardModifier { + if ptr.Pointer() != nil { + return core.Qt__KeyboardModifier(C.QGraphicsSceneHoverEvent_Modifiers(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsSceneHoverEvent) DestroyQGraphicsSceneHoverEvent() { + if ptr.Pointer() != nil { + C.QGraphicsSceneHoverEvent_DestroyQGraphicsSceneHoverEvent(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qgraphicsscenehoverevent.h b/widgets/qgraphicsscenehoverevent.h new file mode 100755 index 00000000..31d46acd --- /dev/null +++ b/widgets/qgraphicsscenehoverevent.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QGraphicsSceneHoverEvent_Modifiers(QtObjectPtr ptr); +void QGraphicsSceneHoverEvent_DestroyQGraphicsSceneHoverEvent(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicsscenemouseevent.cpp b/widgets/qgraphicsscenemouseevent.cpp new file mode 100755 index 00000000..b2b71320 --- /dev/null +++ b/widgets/qgraphicsscenemouseevent.cpp @@ -0,0 +1,37 @@ +#include "qgraphicsscenemouseevent.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsSceneMouseEvent: public QGraphicsSceneMouseEvent { +public: +}; + +int QGraphicsSceneMouseEvent_Button(QtObjectPtr ptr){ + return static_cast(ptr)->button(); +} + +int QGraphicsSceneMouseEvent_Buttons(QtObjectPtr ptr){ + return static_cast(ptr)->buttons(); +} + +int QGraphicsSceneMouseEvent_Flags(QtObjectPtr ptr){ + return static_cast(ptr)->flags(); +} + +int QGraphicsSceneMouseEvent_Modifiers(QtObjectPtr ptr){ + return static_cast(ptr)->modifiers(); +} + +int QGraphicsSceneMouseEvent_Source(QtObjectPtr ptr){ + return static_cast(ptr)->source(); +} + +void QGraphicsSceneMouseEvent_DestroyQGraphicsSceneMouseEvent(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsSceneMouseEvent(); +} + diff --git a/widgets/qgraphicsscenemouseevent.go b/widgets/qgraphicsscenemouseevent.go new file mode 100755 index 00000000..37811ce4 --- /dev/null +++ b/widgets/qgraphicsscenemouseevent.go @@ -0,0 +1,75 @@ +package widgets + +//#include "qgraphicsscenemouseevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGraphicsSceneMouseEvent struct { + QGraphicsSceneEvent +} + +type QGraphicsSceneMouseEventITF interface { + QGraphicsSceneEventITF + QGraphicsSceneMouseEventPTR() *QGraphicsSceneMouseEvent +} + +func PointerFromQGraphicsSceneMouseEvent(ptr QGraphicsSceneMouseEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsSceneMouseEventPTR().Pointer() + } + return nil +} + +func QGraphicsSceneMouseEventFromPointer(ptr unsafe.Pointer) *QGraphicsSceneMouseEvent { + var n = new(QGraphicsSceneMouseEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QGraphicsSceneMouseEvent) QGraphicsSceneMouseEventPTR() *QGraphicsSceneMouseEvent { + return ptr +} + +func (ptr *QGraphicsSceneMouseEvent) Button() core.Qt__MouseButton { + if ptr.Pointer() != nil { + return core.Qt__MouseButton(C.QGraphicsSceneMouseEvent_Button(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsSceneMouseEvent) Buttons() core.Qt__MouseButton { + if ptr.Pointer() != nil { + return core.Qt__MouseButton(C.QGraphicsSceneMouseEvent_Buttons(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsSceneMouseEvent) Flags() core.Qt__MouseEventFlag { + if ptr.Pointer() != nil { + return core.Qt__MouseEventFlag(C.QGraphicsSceneMouseEvent_Flags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsSceneMouseEvent) Modifiers() core.Qt__KeyboardModifier { + if ptr.Pointer() != nil { + return core.Qt__KeyboardModifier(C.QGraphicsSceneMouseEvent_Modifiers(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsSceneMouseEvent) Source() core.Qt__MouseEventSource { + if ptr.Pointer() != nil { + return core.Qt__MouseEventSource(C.QGraphicsSceneMouseEvent_Source(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsSceneMouseEvent) DestroyQGraphicsSceneMouseEvent() { + if ptr.Pointer() != nil { + C.QGraphicsSceneMouseEvent_DestroyQGraphicsSceneMouseEvent(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qgraphicsscenemouseevent.h b/widgets/qgraphicsscenemouseevent.h new file mode 100755 index 00000000..e48a5b78 --- /dev/null +++ b/widgets/qgraphicsscenemouseevent.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QGraphicsSceneMouseEvent_Button(QtObjectPtr ptr); +int QGraphicsSceneMouseEvent_Buttons(QtObjectPtr ptr); +int QGraphicsSceneMouseEvent_Flags(QtObjectPtr ptr); +int QGraphicsSceneMouseEvent_Modifiers(QtObjectPtr ptr); +int QGraphicsSceneMouseEvent_Source(QtObjectPtr ptr); +void QGraphicsSceneMouseEvent_DestroyQGraphicsSceneMouseEvent(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicsscenemoveevent.cpp b/widgets/qgraphicsscenemoveevent.cpp new file mode 100755 index 00000000..0fde16c7 --- /dev/null +++ b/widgets/qgraphicsscenemoveevent.cpp @@ -0,0 +1,21 @@ +#include "qgraphicsscenemoveevent.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsSceneMoveEvent: public QGraphicsSceneMoveEvent { +public: +}; + +QtObjectPtr QGraphicsSceneMoveEvent_NewQGraphicsSceneMoveEvent(){ + return new QGraphicsSceneMoveEvent(); +} + +void QGraphicsSceneMoveEvent_DestroyQGraphicsSceneMoveEvent(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsSceneMoveEvent(); +} + diff --git a/widgets/qgraphicsscenemoveevent.go b/widgets/qgraphicsscenemoveevent.go new file mode 100755 index 00000000..a875656b --- /dev/null +++ b/widgets/qgraphicsscenemoveevent.go @@ -0,0 +1,43 @@ +package widgets + +//#include "qgraphicsscenemoveevent.h" +import "C" +import ( + "unsafe" +) + +type QGraphicsSceneMoveEvent struct { + QGraphicsSceneEvent +} + +type QGraphicsSceneMoveEventITF interface { + QGraphicsSceneEventITF + QGraphicsSceneMoveEventPTR() *QGraphicsSceneMoveEvent +} + +func PointerFromQGraphicsSceneMoveEvent(ptr QGraphicsSceneMoveEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsSceneMoveEventPTR().Pointer() + } + return nil +} + +func QGraphicsSceneMoveEventFromPointer(ptr unsafe.Pointer) *QGraphicsSceneMoveEvent { + var n = new(QGraphicsSceneMoveEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QGraphicsSceneMoveEvent) QGraphicsSceneMoveEventPTR() *QGraphicsSceneMoveEvent { + return ptr +} + +func NewQGraphicsSceneMoveEvent() *QGraphicsSceneMoveEvent { + return QGraphicsSceneMoveEventFromPointer(unsafe.Pointer(C.QGraphicsSceneMoveEvent_NewQGraphicsSceneMoveEvent())) +} + +func (ptr *QGraphicsSceneMoveEvent) DestroyQGraphicsSceneMoveEvent() { + if ptr.Pointer() != nil { + C.QGraphicsSceneMoveEvent_DestroyQGraphicsSceneMoveEvent(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qgraphicsscenemoveevent.h b/widgets/qgraphicsscenemoveevent.h new file mode 100755 index 00000000..def3db93 --- /dev/null +++ b/widgets/qgraphicsscenemoveevent.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGraphicsSceneMoveEvent_NewQGraphicsSceneMoveEvent(); +void QGraphicsSceneMoveEvent_DestroyQGraphicsSceneMoveEvent(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicssceneresizeevent.cpp b/widgets/qgraphicssceneresizeevent.cpp new file mode 100755 index 00000000..c5c68805 --- /dev/null +++ b/widgets/qgraphicssceneresizeevent.cpp @@ -0,0 +1,21 @@ +#include "qgraphicssceneresizeevent.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsSceneResizeEvent: public QGraphicsSceneResizeEvent { +public: +}; + +QtObjectPtr QGraphicsSceneResizeEvent_NewQGraphicsSceneResizeEvent(){ + return new QGraphicsSceneResizeEvent(); +} + +void QGraphicsSceneResizeEvent_DestroyQGraphicsSceneResizeEvent(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsSceneResizeEvent(); +} + diff --git a/widgets/qgraphicssceneresizeevent.go b/widgets/qgraphicssceneresizeevent.go new file mode 100755 index 00000000..1947a3b5 --- /dev/null +++ b/widgets/qgraphicssceneresizeevent.go @@ -0,0 +1,43 @@ +package widgets + +//#include "qgraphicssceneresizeevent.h" +import "C" +import ( + "unsafe" +) + +type QGraphicsSceneResizeEvent struct { + QGraphicsSceneEvent +} + +type QGraphicsSceneResizeEventITF interface { + QGraphicsSceneEventITF + QGraphicsSceneResizeEventPTR() *QGraphicsSceneResizeEvent +} + +func PointerFromQGraphicsSceneResizeEvent(ptr QGraphicsSceneResizeEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsSceneResizeEventPTR().Pointer() + } + return nil +} + +func QGraphicsSceneResizeEventFromPointer(ptr unsafe.Pointer) *QGraphicsSceneResizeEvent { + var n = new(QGraphicsSceneResizeEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QGraphicsSceneResizeEvent) QGraphicsSceneResizeEventPTR() *QGraphicsSceneResizeEvent { + return ptr +} + +func NewQGraphicsSceneResizeEvent() *QGraphicsSceneResizeEvent { + return QGraphicsSceneResizeEventFromPointer(unsafe.Pointer(C.QGraphicsSceneResizeEvent_NewQGraphicsSceneResizeEvent())) +} + +func (ptr *QGraphicsSceneResizeEvent) DestroyQGraphicsSceneResizeEvent() { + if ptr.Pointer() != nil { + C.QGraphicsSceneResizeEvent_DestroyQGraphicsSceneResizeEvent(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qgraphicssceneresizeevent.h b/widgets/qgraphicssceneresizeevent.h new file mode 100755 index 00000000..f45d5e3e --- /dev/null +++ b/widgets/qgraphicssceneresizeevent.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QGraphicsSceneResizeEvent_NewQGraphicsSceneResizeEvent(); +void QGraphicsSceneResizeEvent_DestroyQGraphicsSceneResizeEvent(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicsscenewheelevent.cpp b/widgets/qgraphicsscenewheelevent.cpp new file mode 100755 index 00000000..6e254f7f --- /dev/null +++ b/widgets/qgraphicsscenewheelevent.cpp @@ -0,0 +1,33 @@ +#include "qgraphicsscenewheelevent.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsSceneWheelEvent: public QGraphicsSceneWheelEvent { +public: +}; + +int QGraphicsSceneWheelEvent_Buttons(QtObjectPtr ptr){ + return static_cast(ptr)->buttons(); +} + +int QGraphicsSceneWheelEvent_Delta(QtObjectPtr ptr){ + return static_cast(ptr)->delta(); +} + +int QGraphicsSceneWheelEvent_Modifiers(QtObjectPtr ptr){ + return static_cast(ptr)->modifiers(); +} + +int QGraphicsSceneWheelEvent_Orientation(QtObjectPtr ptr){ + return static_cast(ptr)->orientation(); +} + +void QGraphicsSceneWheelEvent_DestroyQGraphicsSceneWheelEvent(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsSceneWheelEvent(); +} + diff --git a/widgets/qgraphicsscenewheelevent.go b/widgets/qgraphicsscenewheelevent.go new file mode 100755 index 00000000..933a118c --- /dev/null +++ b/widgets/qgraphicsscenewheelevent.go @@ -0,0 +1,68 @@ +package widgets + +//#include "qgraphicsscenewheelevent.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGraphicsSceneWheelEvent struct { + QGraphicsSceneEvent +} + +type QGraphicsSceneWheelEventITF interface { + QGraphicsSceneEventITF + QGraphicsSceneWheelEventPTR() *QGraphicsSceneWheelEvent +} + +func PointerFromQGraphicsSceneWheelEvent(ptr QGraphicsSceneWheelEventITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsSceneWheelEventPTR().Pointer() + } + return nil +} + +func QGraphicsSceneWheelEventFromPointer(ptr unsafe.Pointer) *QGraphicsSceneWheelEvent { + var n = new(QGraphicsSceneWheelEvent) + n.SetPointer(ptr) + return n +} + +func (ptr *QGraphicsSceneWheelEvent) QGraphicsSceneWheelEventPTR() *QGraphicsSceneWheelEvent { + return ptr +} + +func (ptr *QGraphicsSceneWheelEvent) Buttons() core.Qt__MouseButton { + if ptr.Pointer() != nil { + return core.Qt__MouseButton(C.QGraphicsSceneWheelEvent_Buttons(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsSceneWheelEvent) Delta() int { + if ptr.Pointer() != nil { + return int(C.QGraphicsSceneWheelEvent_Delta(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsSceneWheelEvent) Modifiers() core.Qt__KeyboardModifier { + if ptr.Pointer() != nil { + return core.Qt__KeyboardModifier(C.QGraphicsSceneWheelEvent_Modifiers(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsSceneWheelEvent) Orientation() core.Qt__Orientation { + if ptr.Pointer() != nil { + return core.Qt__Orientation(C.QGraphicsSceneWheelEvent_Orientation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsSceneWheelEvent) DestroyQGraphicsSceneWheelEvent() { + if ptr.Pointer() != nil { + C.QGraphicsSceneWheelEvent_DestroyQGraphicsSceneWheelEvent(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qgraphicsscenewheelevent.h b/widgets/qgraphicsscenewheelevent.h new file mode 100755 index 00000000..ed5f5030 --- /dev/null +++ b/widgets/qgraphicsscenewheelevent.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QGraphicsSceneWheelEvent_Buttons(QtObjectPtr ptr); +int QGraphicsSceneWheelEvent_Delta(QtObjectPtr ptr); +int QGraphicsSceneWheelEvent_Modifiers(QtObjectPtr ptr); +int QGraphicsSceneWheelEvent_Orientation(QtObjectPtr ptr); +void QGraphicsSceneWheelEvent_DestroyQGraphicsSceneWheelEvent(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicssimpletextitem.cpp b/widgets/qgraphicssimpletextitem.cpp new file mode 100755 index 00000000..14b96519 --- /dev/null +++ b/widgets/qgraphicssimpletextitem.cpp @@ -0,0 +1,53 @@ +#include "qgraphicssimpletextitem.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsSimpleTextItem: public QGraphicsSimpleTextItem { +public: +}; + +int QGraphicsSimpleTextItem_Contains(QtObjectPtr ptr, QtObjectPtr point){ + return static_cast(ptr)->contains(*static_cast(point)); +} + +int QGraphicsSimpleTextItem_IsObscuredBy(QtObjectPtr ptr, QtObjectPtr item){ + return static_cast(ptr)->isObscuredBy(static_cast(item)); +} + +void QGraphicsSimpleTextItem_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget){ + static_cast(ptr)->paint(static_cast(painter), static_cast(option), static_cast(widget)); +} + +void QGraphicsSimpleTextItem_SetFont(QtObjectPtr ptr, QtObjectPtr font){ + static_cast(ptr)->setFont(*static_cast(font)); +} + +void QGraphicsSimpleTextItem_SetText(QtObjectPtr ptr, char* text){ + static_cast(ptr)->setText(QString(text)); +} + +char* QGraphicsSimpleTextItem_Text(QtObjectPtr ptr){ + return static_cast(ptr)->text().toUtf8().data(); +} + +int QGraphicsSimpleTextItem_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QGraphicsSimpleTextItem_DestroyQGraphicsSimpleTextItem(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsSimpleTextItem(); +} + diff --git a/widgets/qgraphicssimpletextitem.go b/widgets/qgraphicssimpletextitem.go new file mode 100755 index 00000000..01028d59 --- /dev/null +++ b/widgets/qgraphicssimpletextitem.go @@ -0,0 +1,87 @@ +package widgets + +//#include "qgraphicssimpletextitem.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QGraphicsSimpleTextItem struct { + QAbstractGraphicsShapeItem +} + +type QGraphicsSimpleTextItemITF interface { + QAbstractGraphicsShapeItemITF + QGraphicsSimpleTextItemPTR() *QGraphicsSimpleTextItem +} + +func PointerFromQGraphicsSimpleTextItem(ptr QGraphicsSimpleTextItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsSimpleTextItemPTR().Pointer() + } + return nil +} + +func QGraphicsSimpleTextItemFromPointer(ptr unsafe.Pointer) *QGraphicsSimpleTextItem { + var n = new(QGraphicsSimpleTextItem) + n.SetPointer(ptr) + return n +} + +func (ptr *QGraphicsSimpleTextItem) QGraphicsSimpleTextItemPTR() *QGraphicsSimpleTextItem { + return ptr +} + +func (ptr *QGraphicsSimpleTextItem) Contains(point core.QPointFITF) bool { + if ptr.Pointer() != nil { + return C.QGraphicsSimpleTextItem_Contains(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(point))) != 0 + } + return false +} + +func (ptr *QGraphicsSimpleTextItem) IsObscuredBy(item QGraphicsItemITF) bool { + if ptr.Pointer() != nil { + return C.QGraphicsSimpleTextItem_IsObscuredBy(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsItem(item))) != 0 + } + return false +} + +func (ptr *QGraphicsSimpleTextItem) Paint(painter gui.QPainterITF, option QStyleOptionGraphicsItemITF, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QGraphicsSimpleTextItem_Paint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(PointerFromQStyleOptionGraphicsItem(option)), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QGraphicsSimpleTextItem) SetFont(font gui.QFontITF) { + if ptr.Pointer() != nil { + C.QGraphicsSimpleTextItem_SetFont(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQFont(font))) + } +} + +func (ptr *QGraphicsSimpleTextItem) SetText(text string) { + if ptr.Pointer() != nil { + C.QGraphicsSimpleTextItem_SetText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QGraphicsSimpleTextItem) Text() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGraphicsSimpleTextItem_Text(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QGraphicsSimpleTextItem) Type() int { + if ptr.Pointer() != nil { + return int(C.QGraphicsSimpleTextItem_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsSimpleTextItem) DestroyQGraphicsSimpleTextItem() { + if ptr.Pointer() != nil { + C.QGraphicsSimpleTextItem_DestroyQGraphicsSimpleTextItem(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qgraphicssimpletextitem.h b/widgets/qgraphicssimpletextitem.h new file mode 100755 index 00000000..c463133f --- /dev/null +++ b/widgets/qgraphicssimpletextitem.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QGraphicsSimpleTextItem_Contains(QtObjectPtr ptr, QtObjectPtr point); +int QGraphicsSimpleTextItem_IsObscuredBy(QtObjectPtr ptr, QtObjectPtr item); +void QGraphicsSimpleTextItem_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget); +void QGraphicsSimpleTextItem_SetFont(QtObjectPtr ptr, QtObjectPtr font); +void QGraphicsSimpleTextItem_SetText(QtObjectPtr ptr, char* text); +char* QGraphicsSimpleTextItem_Text(QtObjectPtr ptr); +int QGraphicsSimpleTextItem_Type(QtObjectPtr ptr); +void QGraphicsSimpleTextItem_DestroyQGraphicsSimpleTextItem(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicstextitem.cpp b/widgets/qgraphicstextitem.cpp new file mode 100755 index 00000000..61cc3113 --- /dev/null +++ b/widgets/qgraphicstextitem.cpp @@ -0,0 +1,135 @@ +#include "qgraphicstextitem.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsTextItem: public QGraphicsTextItem { +public: +void Signal_LinkActivated(const QString & link){callbackQGraphicsTextItemLinkActivated(this->objectName().toUtf8().data(), link.toUtf8().data());}; +void Signal_LinkHovered(const QString & link){callbackQGraphicsTextItemLinkHovered(this->objectName().toUtf8().data(), link.toUtf8().data());}; +}; + +int QGraphicsTextItem_OpenExternalLinks(QtObjectPtr ptr){ + return static_cast(ptr)->openExternalLinks(); +} + +void QGraphicsTextItem_SetOpenExternalLinks(QtObjectPtr ptr, int open){ + static_cast(ptr)->setOpenExternalLinks(open != 0); +} + +void QGraphicsTextItem_SetTextCursor(QtObjectPtr ptr, QtObjectPtr cursor){ + static_cast(ptr)->setTextCursor(*static_cast(cursor)); +} + +QtObjectPtr QGraphicsTextItem_NewQGraphicsTextItem(QtObjectPtr parent){ + return new QGraphicsTextItem(static_cast(parent)); +} + +QtObjectPtr QGraphicsTextItem_NewQGraphicsTextItem2(char* text, QtObjectPtr parent){ + return new QGraphicsTextItem(QString(text), static_cast(parent)); +} + +void QGraphicsTextItem_AdjustSize(QtObjectPtr ptr){ + static_cast(ptr)->adjustSize(); +} + +int QGraphicsTextItem_Contains(QtObjectPtr ptr, QtObjectPtr point){ + return static_cast(ptr)->contains(*static_cast(point)); +} + +QtObjectPtr QGraphicsTextItem_Document(QtObjectPtr ptr){ + return static_cast(ptr)->document(); +} + +int QGraphicsTextItem_IsObscuredBy(QtObjectPtr ptr, QtObjectPtr item){ + return static_cast(ptr)->isObscuredBy(static_cast(item)); +} + +void QGraphicsTextItem_ConnectLinkActivated(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGraphicsTextItem::linkActivated), static_cast(ptr), static_cast(&MyQGraphicsTextItem::Signal_LinkActivated));; +} + +void QGraphicsTextItem_DisconnectLinkActivated(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGraphicsTextItem::linkActivated), static_cast(ptr), static_cast(&MyQGraphicsTextItem::Signal_LinkActivated));; +} + +void QGraphicsTextItem_ConnectLinkHovered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGraphicsTextItem::linkHovered), static_cast(ptr), static_cast(&MyQGraphicsTextItem::Signal_LinkHovered));; +} + +void QGraphicsTextItem_DisconnectLinkHovered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGraphicsTextItem::linkHovered), static_cast(ptr), static_cast(&MyQGraphicsTextItem::Signal_LinkHovered));; +} + +void QGraphicsTextItem_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget){ + static_cast(ptr)->paint(static_cast(painter), static_cast(option), static_cast(widget)); +} + +void QGraphicsTextItem_SetDefaultTextColor(QtObjectPtr ptr, QtObjectPtr col){ + static_cast(ptr)->setDefaultTextColor(*static_cast(col)); +} + +void QGraphicsTextItem_SetDocument(QtObjectPtr ptr, QtObjectPtr document){ + static_cast(ptr)->setDocument(static_cast(document)); +} + +void QGraphicsTextItem_SetFont(QtObjectPtr ptr, QtObjectPtr font){ + static_cast(ptr)->setFont(*static_cast(font)); +} + +void QGraphicsTextItem_SetHtml(QtObjectPtr ptr, char* text){ + static_cast(ptr)->setHtml(QString(text)); +} + +void QGraphicsTextItem_SetPlainText(QtObjectPtr ptr, char* text){ + static_cast(ptr)->setPlainText(QString(text)); +} + +void QGraphicsTextItem_SetTabChangesFocus(QtObjectPtr ptr, int b){ + static_cast(ptr)->setTabChangesFocus(b != 0); +} + +void QGraphicsTextItem_SetTextInteractionFlags(QtObjectPtr ptr, int flags){ + static_cast(ptr)->setTextInteractionFlags(static_cast(flags)); +} + +int QGraphicsTextItem_TabChangesFocus(QtObjectPtr ptr){ + return static_cast(ptr)->tabChangesFocus(); +} + +int QGraphicsTextItem_TextInteractionFlags(QtObjectPtr ptr){ + return static_cast(ptr)->textInteractionFlags(); +} + +char* QGraphicsTextItem_ToHtml(QtObjectPtr ptr){ + return static_cast(ptr)->toHtml().toUtf8().data(); +} + +char* QGraphicsTextItem_ToPlainText(QtObjectPtr ptr){ + return static_cast(ptr)->toPlainText().toUtf8().data(); +} + +int QGraphicsTextItem_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QGraphicsTextItem_DestroyQGraphicsTextItem(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsTextItem(); +} + diff --git a/widgets/qgraphicstextitem.go b/widgets/qgraphicstextitem.go new file mode 100755 index 00000000..df8e60d6 --- /dev/null +++ b/widgets/qgraphicstextitem.go @@ -0,0 +1,221 @@ +package widgets + +//#include "qgraphicstextitem.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QGraphicsTextItem struct { + QGraphicsObject +} + +type QGraphicsTextItemITF interface { + QGraphicsObjectITF + QGraphicsTextItemPTR() *QGraphicsTextItem +} + +func PointerFromQGraphicsTextItem(ptr QGraphicsTextItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsTextItemPTR().Pointer() + } + return nil +} + +func QGraphicsTextItemFromPointer(ptr unsafe.Pointer) *QGraphicsTextItem { + var n = new(QGraphicsTextItem) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGraphicsTextItem_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGraphicsTextItem) QGraphicsTextItemPTR() *QGraphicsTextItem { + return ptr +} + +func (ptr *QGraphicsTextItem) OpenExternalLinks() bool { + if ptr.Pointer() != nil { + return C.QGraphicsTextItem_OpenExternalLinks(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGraphicsTextItem) SetOpenExternalLinks(open bool) { + if ptr.Pointer() != nil { + C.QGraphicsTextItem_SetOpenExternalLinks(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(open))) + } +} + +func (ptr *QGraphicsTextItem) SetTextCursor(cursor gui.QTextCursorITF) { + if ptr.Pointer() != nil { + C.QGraphicsTextItem_SetTextCursor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQTextCursor(cursor))) + } +} + +func NewQGraphicsTextItem(parent QGraphicsItemITF) *QGraphicsTextItem { + return QGraphicsTextItemFromPointer(unsafe.Pointer(C.QGraphicsTextItem_NewQGraphicsTextItem(C.QtObjectPtr(PointerFromQGraphicsItem(parent))))) +} + +func NewQGraphicsTextItem2(text string, parent QGraphicsItemITF) *QGraphicsTextItem { + return QGraphicsTextItemFromPointer(unsafe.Pointer(C.QGraphicsTextItem_NewQGraphicsTextItem2(C.CString(text), C.QtObjectPtr(PointerFromQGraphicsItem(parent))))) +} + +func (ptr *QGraphicsTextItem) AdjustSize() { + if ptr.Pointer() != nil { + C.QGraphicsTextItem_AdjustSize(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QGraphicsTextItem) Contains(point core.QPointFITF) bool { + if ptr.Pointer() != nil { + return C.QGraphicsTextItem_Contains(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(point))) != 0 + } + return false +} + +func (ptr *QGraphicsTextItem) Document() *gui.QTextDocument { + if ptr.Pointer() != nil { + return gui.QTextDocumentFromPointer(unsafe.Pointer(C.QGraphicsTextItem_Document(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QGraphicsTextItem) IsObscuredBy(item QGraphicsItemITF) bool { + if ptr.Pointer() != nil { + return C.QGraphicsTextItem_IsObscuredBy(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsItem(item))) != 0 + } + return false +} + +func (ptr *QGraphicsTextItem) ConnectLinkActivated(f func(link string)) { + if ptr.Pointer() != nil { + C.QGraphicsTextItem_ConnectLinkActivated(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "linkActivated", f) + } +} + +func (ptr *QGraphicsTextItem) DisconnectLinkActivated() { + if ptr.Pointer() != nil { + C.QGraphicsTextItem_DisconnectLinkActivated(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "linkActivated") + } +} + +//export callbackQGraphicsTextItemLinkActivated +func callbackQGraphicsTextItemLinkActivated(ptrName *C.char, link *C.char) { + qt.GetSignal(C.GoString(ptrName), "linkActivated").(func(string))(C.GoString(link)) +} + +func (ptr *QGraphicsTextItem) ConnectLinkHovered(f func(link string)) { + if ptr.Pointer() != nil { + C.QGraphicsTextItem_ConnectLinkHovered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "linkHovered", f) + } +} + +func (ptr *QGraphicsTextItem) DisconnectLinkHovered() { + if ptr.Pointer() != nil { + C.QGraphicsTextItem_DisconnectLinkHovered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "linkHovered") + } +} + +//export callbackQGraphicsTextItemLinkHovered +func callbackQGraphicsTextItemLinkHovered(ptrName *C.char, link *C.char) { + qt.GetSignal(C.GoString(ptrName), "linkHovered").(func(string))(C.GoString(link)) +} + +func (ptr *QGraphicsTextItem) Paint(painter gui.QPainterITF, option QStyleOptionGraphicsItemITF, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QGraphicsTextItem_Paint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(PointerFromQStyleOptionGraphicsItem(option)), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QGraphicsTextItem) SetDefaultTextColor(col gui.QColorITF) { + if ptr.Pointer() != nil { + C.QGraphicsTextItem_SetDefaultTextColor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQColor(col))) + } +} + +func (ptr *QGraphicsTextItem) SetDocument(document gui.QTextDocumentITF) { + if ptr.Pointer() != nil { + C.QGraphicsTextItem_SetDocument(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQTextDocument(document))) + } +} + +func (ptr *QGraphicsTextItem) SetFont(font gui.QFontITF) { + if ptr.Pointer() != nil { + C.QGraphicsTextItem_SetFont(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQFont(font))) + } +} + +func (ptr *QGraphicsTextItem) SetHtml(text string) { + if ptr.Pointer() != nil { + C.QGraphicsTextItem_SetHtml(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QGraphicsTextItem) SetPlainText(text string) { + if ptr.Pointer() != nil { + C.QGraphicsTextItem_SetPlainText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QGraphicsTextItem) SetTabChangesFocus(b bool) { + if ptr.Pointer() != nil { + C.QGraphicsTextItem_SetTabChangesFocus(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(b))) + } +} + +func (ptr *QGraphicsTextItem) SetTextInteractionFlags(flags core.Qt__TextInteractionFlag) { + if ptr.Pointer() != nil { + C.QGraphicsTextItem_SetTextInteractionFlags(C.QtObjectPtr(ptr.Pointer()), C.int(flags)) + } +} + +func (ptr *QGraphicsTextItem) TabChangesFocus() bool { + if ptr.Pointer() != nil { + return C.QGraphicsTextItem_TabChangesFocus(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGraphicsTextItem) TextInteractionFlags() core.Qt__TextInteractionFlag { + if ptr.Pointer() != nil { + return core.Qt__TextInteractionFlag(C.QGraphicsTextItem_TextInteractionFlags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsTextItem) ToHtml() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGraphicsTextItem_ToHtml(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QGraphicsTextItem) ToPlainText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGraphicsTextItem_ToPlainText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QGraphicsTextItem) Type() int { + if ptr.Pointer() != nil { + return int(C.QGraphicsTextItem_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsTextItem) DestroyQGraphicsTextItem() { + if ptr.Pointer() != nil { + C.QGraphicsTextItem_DestroyQGraphicsTextItem(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qgraphicstextitem.h b/widgets/qgraphicstextitem.h new file mode 100755 index 00000000..d5c8df9e --- /dev/null +++ b/widgets/qgraphicstextitem.h @@ -0,0 +1,36 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QGraphicsTextItem_OpenExternalLinks(QtObjectPtr ptr); +void QGraphicsTextItem_SetOpenExternalLinks(QtObjectPtr ptr, int open); +void QGraphicsTextItem_SetTextCursor(QtObjectPtr ptr, QtObjectPtr cursor); +QtObjectPtr QGraphicsTextItem_NewQGraphicsTextItem(QtObjectPtr parent); +QtObjectPtr QGraphicsTextItem_NewQGraphicsTextItem2(char* text, QtObjectPtr parent); +void QGraphicsTextItem_AdjustSize(QtObjectPtr ptr); +int QGraphicsTextItem_Contains(QtObjectPtr ptr, QtObjectPtr point); +QtObjectPtr QGraphicsTextItem_Document(QtObjectPtr ptr); +int QGraphicsTextItem_IsObscuredBy(QtObjectPtr ptr, QtObjectPtr item); +void QGraphicsTextItem_ConnectLinkActivated(QtObjectPtr ptr); +void QGraphicsTextItem_DisconnectLinkActivated(QtObjectPtr ptr); +void QGraphicsTextItem_ConnectLinkHovered(QtObjectPtr ptr); +void QGraphicsTextItem_DisconnectLinkHovered(QtObjectPtr ptr); +void QGraphicsTextItem_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget); +void QGraphicsTextItem_SetDefaultTextColor(QtObjectPtr ptr, QtObjectPtr col); +void QGraphicsTextItem_SetDocument(QtObjectPtr ptr, QtObjectPtr document); +void QGraphicsTextItem_SetFont(QtObjectPtr ptr, QtObjectPtr font); +void QGraphicsTextItem_SetHtml(QtObjectPtr ptr, char* text); +void QGraphicsTextItem_SetPlainText(QtObjectPtr ptr, char* text); +void QGraphicsTextItem_SetTabChangesFocus(QtObjectPtr ptr, int b); +void QGraphicsTextItem_SetTextInteractionFlags(QtObjectPtr ptr, int flags); +int QGraphicsTextItem_TabChangesFocus(QtObjectPtr ptr); +int QGraphicsTextItem_TextInteractionFlags(QtObjectPtr ptr); +char* QGraphicsTextItem_ToHtml(QtObjectPtr ptr); +char* QGraphicsTextItem_ToPlainText(QtObjectPtr ptr); +int QGraphicsTextItem_Type(QtObjectPtr ptr); +void QGraphicsTextItem_DestroyQGraphicsTextItem(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicstransform.cpp b/widgets/qgraphicstransform.cpp new file mode 100755 index 00000000..cbb2c346 --- /dev/null +++ b/widgets/qgraphicstransform.cpp @@ -0,0 +1,8 @@ +#include "qgraphicstransform.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/widgets/qgraphicstransform.go b/widgets/qgraphicstransform.go new file mode 100755 index 00000000..54c4afc5 --- /dev/null +++ b/widgets/qgraphicstransform.go @@ -0,0 +1,38 @@ +package widgets + +//#include "qgraphicstransform.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGraphicsTransform struct { + core.QObject +} + +type QGraphicsTransformITF interface { + core.QObjectITF + QGraphicsTransformPTR() *QGraphicsTransform +} + +func PointerFromQGraphicsTransform(ptr QGraphicsTransformITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsTransformPTR().Pointer() + } + return nil +} + +func QGraphicsTransformFromPointer(ptr unsafe.Pointer) *QGraphicsTransform { + var n = new(QGraphicsTransform) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGraphicsTransform_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGraphicsTransform) QGraphicsTransformPTR() *QGraphicsTransform { + return ptr +} diff --git a/widgets/qgraphicstransform.h b/widgets/qgraphicstransform.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/widgets/qgraphicstransform.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicsview.cpp b/widgets/qgraphicsview.cpp new file mode 100755 index 00000000..c1ffee9a --- /dev/null +++ b/widgets/qgraphicsview.cpp @@ -0,0 +1,211 @@ +#include "qgraphicsview.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsView: public QGraphicsView { +public: +}; + +int QGraphicsView_Alignment(QtObjectPtr ptr){ + return static_cast(ptr)->alignment(); +} + +int QGraphicsView_CacheMode(QtObjectPtr ptr){ + return static_cast(ptr)->cacheMode(); +} + +int QGraphicsView_DragMode(QtObjectPtr ptr){ + return static_cast(ptr)->dragMode(); +} + +int QGraphicsView_IsInteractive(QtObjectPtr ptr){ + return static_cast(ptr)->isInteractive(); +} + +int QGraphicsView_OptimizationFlags(QtObjectPtr ptr){ + return static_cast(ptr)->optimizationFlags(); +} + +int QGraphicsView_RenderHints(QtObjectPtr ptr){ + return static_cast(ptr)->renderHints(); +} + +int QGraphicsView_ResizeAnchor(QtObjectPtr ptr){ + return static_cast(ptr)->resizeAnchor(); +} + +int QGraphicsView_RubberBandSelectionMode(QtObjectPtr ptr){ + return static_cast(ptr)->rubberBandSelectionMode(); +} + +void QGraphicsView_SetAlignment(QtObjectPtr ptr, int alignment){ + static_cast(ptr)->setAlignment(static_cast(alignment)); +} + +void QGraphicsView_SetBackgroundBrush(QtObjectPtr ptr, QtObjectPtr brush){ + static_cast(ptr)->setBackgroundBrush(*static_cast(brush)); +} + +void QGraphicsView_SetCacheMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setCacheMode(static_cast(mode)); +} + +void QGraphicsView_SetDragMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setDragMode(static_cast(mode)); +} + +void QGraphicsView_SetForegroundBrush(QtObjectPtr ptr, QtObjectPtr brush){ + static_cast(ptr)->setForegroundBrush(*static_cast(brush)); +} + +void QGraphicsView_SetInteractive(QtObjectPtr ptr, int allowed){ + static_cast(ptr)->setInteractive(allowed != 0); +} + +void QGraphicsView_SetOptimizationFlags(QtObjectPtr ptr, int flags){ + static_cast(ptr)->setOptimizationFlags(static_cast(flags)); +} + +void QGraphicsView_SetRenderHints(QtObjectPtr ptr, int hints){ + static_cast(ptr)->setRenderHints(static_cast(hints)); +} + +void QGraphicsView_SetResizeAnchor(QtObjectPtr ptr, int anchor){ + static_cast(ptr)->setResizeAnchor(static_cast(anchor)); +} + +void QGraphicsView_SetRubberBandSelectionMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setRubberBandSelectionMode(static_cast(mode)); +} + +void QGraphicsView_SetSceneRect(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->setSceneRect(*static_cast(rect)); +} + +void QGraphicsView_SetTransformationAnchor(QtObjectPtr ptr, int anchor){ + static_cast(ptr)->setTransformationAnchor(static_cast(anchor)); +} + +void QGraphicsView_SetViewportUpdateMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setViewportUpdateMode(static_cast(mode)); +} + +int QGraphicsView_TransformationAnchor(QtObjectPtr ptr){ + return static_cast(ptr)->transformationAnchor(); +} + +int QGraphicsView_ViewportUpdateMode(QtObjectPtr ptr){ + return static_cast(ptr)->viewportUpdateMode(); +} + +QtObjectPtr QGraphicsView_NewQGraphicsView2(QtObjectPtr scene, QtObjectPtr parent){ + return new QGraphicsView(static_cast(scene), static_cast(parent)); +} + +QtObjectPtr QGraphicsView_NewQGraphicsView(QtObjectPtr parent){ + return new QGraphicsView(static_cast(parent)); +} + +void QGraphicsView_CenterOn3(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->centerOn(static_cast(item)); +} + +void QGraphicsView_CenterOn(QtObjectPtr ptr, QtObjectPtr pos){ + static_cast(ptr)->centerOn(*static_cast(pos)); +} + +void QGraphicsView_EnsureVisible3(QtObjectPtr ptr, QtObjectPtr item, int xmargin, int ymargin){ + static_cast(ptr)->ensureVisible(static_cast(item), xmargin, ymargin); +} + +void QGraphicsView_EnsureVisible(QtObjectPtr ptr, QtObjectPtr rect, int xmargin, int ymargin){ + static_cast(ptr)->ensureVisible(*static_cast(rect), xmargin, ymargin); +} + +void QGraphicsView_FitInView3(QtObjectPtr ptr, QtObjectPtr item, int aspectRatioMode){ + static_cast(ptr)->fitInView(static_cast(item), static_cast(aspectRatioMode)); +} + +void QGraphicsView_FitInView(QtObjectPtr ptr, QtObjectPtr rect, int aspectRatioMode){ + static_cast(ptr)->fitInView(*static_cast(rect), static_cast(aspectRatioMode)); +} + +char* QGraphicsView_InputMethodQuery(QtObjectPtr ptr, int query){ + return static_cast(ptr)->inputMethodQuery(static_cast(query)).toString().toUtf8().data(); +} + +void QGraphicsView_InvalidateScene(QtObjectPtr ptr, QtObjectPtr rect, int layers){ + QMetaObject::invokeMethod(static_cast(ptr), "invalidateScene", Q_ARG(QRectF, *static_cast(rect)), Q_ARG(QGraphicsScene::SceneLayer, static_cast(layers))); +} + +int QGraphicsView_IsTransformed(QtObjectPtr ptr){ + return static_cast(ptr)->isTransformed(); +} + +QtObjectPtr QGraphicsView_ItemAt(QtObjectPtr ptr, QtObjectPtr pos){ + return static_cast(ptr)->itemAt(*static_cast(pos)); +} + +QtObjectPtr QGraphicsView_ItemAt2(QtObjectPtr ptr, int x, int y){ + return static_cast(ptr)->itemAt(x, y); +} + +void QGraphicsView_Render(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr target, QtObjectPtr source, int aspectRatioMode){ + static_cast(ptr)->render(static_cast(painter), *static_cast(target), *static_cast(source), static_cast(aspectRatioMode)); +} + +void QGraphicsView_ResetCachedContent(QtObjectPtr ptr){ + static_cast(ptr)->resetCachedContent(); +} + +void QGraphicsView_ResetMatrix(QtObjectPtr ptr){ + static_cast(ptr)->resetMatrix(); +} + +void QGraphicsView_ResetTransform(QtObjectPtr ptr){ + static_cast(ptr)->resetTransform(); +} + +QtObjectPtr QGraphicsView_Scene(QtObjectPtr ptr){ + return static_cast(ptr)->scene(); +} + +void QGraphicsView_SetOptimizationFlag(QtObjectPtr ptr, int flag, int enabled){ + static_cast(ptr)->setOptimizationFlag(static_cast(flag), enabled != 0); +} + +void QGraphicsView_SetRenderHint(QtObjectPtr ptr, int hint, int enabled){ + static_cast(ptr)->setRenderHint(static_cast(hint), enabled != 0); +} + +void QGraphicsView_SetScene(QtObjectPtr ptr, QtObjectPtr scene){ + static_cast(ptr)->setScene(static_cast(scene)); +} + +void QGraphicsView_SetTransform(QtObjectPtr ptr, QtObjectPtr matrix, int combine){ + static_cast(ptr)->setTransform(*static_cast(matrix), combine != 0); +} + +void QGraphicsView_UpdateSceneRect(QtObjectPtr ptr, QtObjectPtr rect){ + QMetaObject::invokeMethod(static_cast(ptr), "updateSceneRect", Q_ARG(QRectF, *static_cast(rect))); +} + +void QGraphicsView_DestroyQGraphicsView(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsView(); +} + diff --git a/widgets/qgraphicsview.go b/widgets/qgraphicsview.go new file mode 100755 index 00000000..c56b1afc --- /dev/null +++ b/widgets/qgraphicsview.go @@ -0,0 +1,380 @@ +package widgets + +//#include "qgraphicsview.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QGraphicsView struct { + QAbstractScrollArea +} + +type QGraphicsViewITF interface { + QAbstractScrollAreaITF + QGraphicsViewPTR() *QGraphicsView +} + +func PointerFromQGraphicsView(ptr QGraphicsViewITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsViewPTR().Pointer() + } + return nil +} + +func QGraphicsViewFromPointer(ptr unsafe.Pointer) *QGraphicsView { + var n = new(QGraphicsView) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGraphicsView_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGraphicsView) QGraphicsViewPTR() *QGraphicsView { + return ptr +} + +//QGraphicsView::CacheModeFlag +type QGraphicsView__CacheModeFlag int + +var ( + QGraphicsView__CacheNone = QGraphicsView__CacheModeFlag(0x0) + QGraphicsView__CacheBackground = QGraphicsView__CacheModeFlag(0x1) +) + +//QGraphicsView::DragMode +type QGraphicsView__DragMode int + +var ( + QGraphicsView__NoDrag = QGraphicsView__DragMode(0) + QGraphicsView__ScrollHandDrag = QGraphicsView__DragMode(1) + QGraphicsView__RubberBandDrag = QGraphicsView__DragMode(2) +) + +//QGraphicsView::OptimizationFlag +type QGraphicsView__OptimizationFlag int + +var ( + QGraphicsView__DontClipPainter = QGraphicsView__OptimizationFlag(0x1) + QGraphicsView__DontSavePainterState = QGraphicsView__OptimizationFlag(0x2) + QGraphicsView__DontAdjustForAntialiasing = QGraphicsView__OptimizationFlag(0x4) + QGraphicsView__IndirectPainting = QGraphicsView__OptimizationFlag(0x8) +) + +//QGraphicsView::ViewportAnchor +type QGraphicsView__ViewportAnchor int + +var ( + QGraphicsView__NoAnchor = QGraphicsView__ViewportAnchor(0) + QGraphicsView__AnchorViewCenter = QGraphicsView__ViewportAnchor(1) + QGraphicsView__AnchorUnderMouse = QGraphicsView__ViewportAnchor(2) +) + +//QGraphicsView::ViewportUpdateMode +type QGraphicsView__ViewportUpdateMode int + +var ( + QGraphicsView__FullViewportUpdate = QGraphicsView__ViewportUpdateMode(0) + QGraphicsView__MinimalViewportUpdate = QGraphicsView__ViewportUpdateMode(1) + QGraphicsView__SmartViewportUpdate = QGraphicsView__ViewportUpdateMode(2) + QGraphicsView__NoViewportUpdate = QGraphicsView__ViewportUpdateMode(3) + QGraphicsView__BoundingRectViewportUpdate = QGraphicsView__ViewportUpdateMode(4) +) + +func (ptr *QGraphicsView) Alignment() core.Qt__AlignmentFlag { + if ptr.Pointer() != nil { + return core.Qt__AlignmentFlag(C.QGraphicsView_Alignment(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsView) CacheMode() QGraphicsView__CacheModeFlag { + if ptr.Pointer() != nil { + return QGraphicsView__CacheModeFlag(C.QGraphicsView_CacheMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsView) DragMode() QGraphicsView__DragMode { + if ptr.Pointer() != nil { + return QGraphicsView__DragMode(C.QGraphicsView_DragMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsView) IsInteractive() bool { + if ptr.Pointer() != nil { + return C.QGraphicsView_IsInteractive(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGraphicsView) OptimizationFlags() QGraphicsView__OptimizationFlag { + if ptr.Pointer() != nil { + return QGraphicsView__OptimizationFlag(C.QGraphicsView_OptimizationFlags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsView) RenderHints() gui.QPainter__RenderHint { + if ptr.Pointer() != nil { + return gui.QPainter__RenderHint(C.QGraphicsView_RenderHints(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsView) ResizeAnchor() QGraphicsView__ViewportAnchor { + if ptr.Pointer() != nil { + return QGraphicsView__ViewportAnchor(C.QGraphicsView_ResizeAnchor(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsView) RubberBandSelectionMode() core.Qt__ItemSelectionMode { + if ptr.Pointer() != nil { + return core.Qt__ItemSelectionMode(C.QGraphicsView_RubberBandSelectionMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsView) SetAlignment(alignment core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QGraphicsView_SetAlignment(C.QtObjectPtr(ptr.Pointer()), C.int(alignment)) + } +} + +func (ptr *QGraphicsView) SetBackgroundBrush(brush gui.QBrushITF) { + if ptr.Pointer() != nil { + C.QGraphicsView_SetBackgroundBrush(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQBrush(brush))) + } +} + +func (ptr *QGraphicsView) SetCacheMode(mode QGraphicsView__CacheModeFlag) { + if ptr.Pointer() != nil { + C.QGraphicsView_SetCacheMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QGraphicsView) SetDragMode(mode QGraphicsView__DragMode) { + if ptr.Pointer() != nil { + C.QGraphicsView_SetDragMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QGraphicsView) SetForegroundBrush(brush gui.QBrushITF) { + if ptr.Pointer() != nil { + C.QGraphicsView_SetForegroundBrush(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQBrush(brush))) + } +} + +func (ptr *QGraphicsView) SetInteractive(allowed bool) { + if ptr.Pointer() != nil { + C.QGraphicsView_SetInteractive(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(allowed))) + } +} + +func (ptr *QGraphicsView) SetOptimizationFlags(flags QGraphicsView__OptimizationFlag) { + if ptr.Pointer() != nil { + C.QGraphicsView_SetOptimizationFlags(C.QtObjectPtr(ptr.Pointer()), C.int(flags)) + } +} + +func (ptr *QGraphicsView) SetRenderHints(hints gui.QPainter__RenderHint) { + if ptr.Pointer() != nil { + C.QGraphicsView_SetRenderHints(C.QtObjectPtr(ptr.Pointer()), C.int(hints)) + } +} + +func (ptr *QGraphicsView) SetResizeAnchor(anchor QGraphicsView__ViewportAnchor) { + if ptr.Pointer() != nil { + C.QGraphicsView_SetResizeAnchor(C.QtObjectPtr(ptr.Pointer()), C.int(anchor)) + } +} + +func (ptr *QGraphicsView) SetRubberBandSelectionMode(mode core.Qt__ItemSelectionMode) { + if ptr.Pointer() != nil { + C.QGraphicsView_SetRubberBandSelectionMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QGraphicsView) SetSceneRect(rect core.QRectFITF) { + if ptr.Pointer() != nil { + C.QGraphicsView_SetSceneRect(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rect))) + } +} + +func (ptr *QGraphicsView) SetTransformationAnchor(anchor QGraphicsView__ViewportAnchor) { + if ptr.Pointer() != nil { + C.QGraphicsView_SetTransformationAnchor(C.QtObjectPtr(ptr.Pointer()), C.int(anchor)) + } +} + +func (ptr *QGraphicsView) SetViewportUpdateMode(mode QGraphicsView__ViewportUpdateMode) { + if ptr.Pointer() != nil { + C.QGraphicsView_SetViewportUpdateMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QGraphicsView) TransformationAnchor() QGraphicsView__ViewportAnchor { + if ptr.Pointer() != nil { + return QGraphicsView__ViewportAnchor(C.QGraphicsView_TransformationAnchor(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsView) ViewportUpdateMode() QGraphicsView__ViewportUpdateMode { + if ptr.Pointer() != nil { + return QGraphicsView__ViewportUpdateMode(C.QGraphicsView_ViewportUpdateMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQGraphicsView2(scene QGraphicsSceneITF, parent QWidgetITF) *QGraphicsView { + return QGraphicsViewFromPointer(unsafe.Pointer(C.QGraphicsView_NewQGraphicsView2(C.QtObjectPtr(PointerFromQGraphicsScene(scene)), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQGraphicsView(parent QWidgetITF) *QGraphicsView { + return QGraphicsViewFromPointer(unsafe.Pointer(C.QGraphicsView_NewQGraphicsView(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QGraphicsView) CenterOn3(item QGraphicsItemITF) { + if ptr.Pointer() != nil { + C.QGraphicsView_CenterOn3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsItem(item))) + } +} + +func (ptr *QGraphicsView) CenterOn(pos core.QPointFITF) { + if ptr.Pointer() != nil { + C.QGraphicsView_CenterOn(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(pos))) + } +} + +func (ptr *QGraphicsView) EnsureVisible3(item QGraphicsItemITF, xmargin int, ymargin int) { + if ptr.Pointer() != nil { + C.QGraphicsView_EnsureVisible3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsItem(item)), C.int(xmargin), C.int(ymargin)) + } +} + +func (ptr *QGraphicsView) EnsureVisible(rect core.QRectFITF, xmargin int, ymargin int) { + if ptr.Pointer() != nil { + C.QGraphicsView_EnsureVisible(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rect)), C.int(xmargin), C.int(ymargin)) + } +} + +func (ptr *QGraphicsView) FitInView3(item QGraphicsItemITF, aspectRatioMode core.Qt__AspectRatioMode) { + if ptr.Pointer() != nil { + C.QGraphicsView_FitInView3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsItem(item)), C.int(aspectRatioMode)) + } +} + +func (ptr *QGraphicsView) FitInView(rect core.QRectFITF, aspectRatioMode core.Qt__AspectRatioMode) { + if ptr.Pointer() != nil { + C.QGraphicsView_FitInView(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rect)), C.int(aspectRatioMode)) + } +} + +func (ptr *QGraphicsView) InputMethodQuery(query core.Qt__InputMethodQuery) string { + if ptr.Pointer() != nil { + return C.GoString(C.QGraphicsView_InputMethodQuery(C.QtObjectPtr(ptr.Pointer()), C.int(query))) + } + return "" +} + +func (ptr *QGraphicsView) InvalidateScene(rect core.QRectFITF, layers QGraphicsScene__SceneLayer) { + if ptr.Pointer() != nil { + C.QGraphicsView_InvalidateScene(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rect)), C.int(layers)) + } +} + +func (ptr *QGraphicsView) IsTransformed() bool { + if ptr.Pointer() != nil { + return C.QGraphicsView_IsTransformed(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGraphicsView) ItemAt(pos core.QPointITF) *QGraphicsItem { + if ptr.Pointer() != nil { + return QGraphicsItemFromPointer(unsafe.Pointer(C.QGraphicsView_ItemAt(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(pos))))) + } + return nil +} + +func (ptr *QGraphicsView) ItemAt2(x int, y int) *QGraphicsItem { + if ptr.Pointer() != nil { + return QGraphicsItemFromPointer(unsafe.Pointer(C.QGraphicsView_ItemAt2(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y)))) + } + return nil +} + +func (ptr *QGraphicsView) Render(painter gui.QPainterITF, target core.QRectFITF, source core.QRectITF, aspectRatioMode core.Qt__AspectRatioMode) { + if ptr.Pointer() != nil { + C.QGraphicsView_Render(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(core.PointerFromQRectF(target)), C.QtObjectPtr(core.PointerFromQRect(source)), C.int(aspectRatioMode)) + } +} + +func (ptr *QGraphicsView) ResetCachedContent() { + if ptr.Pointer() != nil { + C.QGraphicsView_ResetCachedContent(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QGraphicsView) ResetMatrix() { + if ptr.Pointer() != nil { + C.QGraphicsView_ResetMatrix(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QGraphicsView) ResetTransform() { + if ptr.Pointer() != nil { + C.QGraphicsView_ResetTransform(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QGraphicsView) Scene() *QGraphicsScene { + if ptr.Pointer() != nil { + return QGraphicsSceneFromPointer(unsafe.Pointer(C.QGraphicsView_Scene(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QGraphicsView) SetOptimizationFlag(flag QGraphicsView__OptimizationFlag, enabled bool) { + if ptr.Pointer() != nil { + C.QGraphicsView_SetOptimizationFlag(C.QtObjectPtr(ptr.Pointer()), C.int(flag), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QGraphicsView) SetRenderHint(hint gui.QPainter__RenderHint, enabled bool) { + if ptr.Pointer() != nil { + C.QGraphicsView_SetRenderHint(C.QtObjectPtr(ptr.Pointer()), C.int(hint), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QGraphicsView) SetScene(scene QGraphicsSceneITF) { + if ptr.Pointer() != nil { + C.QGraphicsView_SetScene(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsScene(scene))) + } +} + +func (ptr *QGraphicsView) SetTransform(matrix gui.QTransformITF, combine bool) { + if ptr.Pointer() != nil { + C.QGraphicsView_SetTransform(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQTransform(matrix)), C.int(qt.GoBoolToInt(combine))) + } +} + +func (ptr *QGraphicsView) UpdateSceneRect(rect core.QRectFITF) { + if ptr.Pointer() != nil { + C.QGraphicsView_UpdateSceneRect(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rect))) + } +} + +func (ptr *QGraphicsView) DestroyQGraphicsView() { + if ptr.Pointer() != nil { + C.QGraphicsView_DestroyQGraphicsView(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qgraphicsview.h b/widgets/qgraphicsview.h new file mode 100755 index 00000000..1fffc2d3 --- /dev/null +++ b/widgets/qgraphicsview.h @@ -0,0 +1,56 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QGraphicsView_Alignment(QtObjectPtr ptr); +int QGraphicsView_CacheMode(QtObjectPtr ptr); +int QGraphicsView_DragMode(QtObjectPtr ptr); +int QGraphicsView_IsInteractive(QtObjectPtr ptr); +int QGraphicsView_OptimizationFlags(QtObjectPtr ptr); +int QGraphicsView_RenderHints(QtObjectPtr ptr); +int QGraphicsView_ResizeAnchor(QtObjectPtr ptr); +int QGraphicsView_RubberBandSelectionMode(QtObjectPtr ptr); +void QGraphicsView_SetAlignment(QtObjectPtr ptr, int alignment); +void QGraphicsView_SetBackgroundBrush(QtObjectPtr ptr, QtObjectPtr brush); +void QGraphicsView_SetCacheMode(QtObjectPtr ptr, int mode); +void QGraphicsView_SetDragMode(QtObjectPtr ptr, int mode); +void QGraphicsView_SetForegroundBrush(QtObjectPtr ptr, QtObjectPtr brush); +void QGraphicsView_SetInteractive(QtObjectPtr ptr, int allowed); +void QGraphicsView_SetOptimizationFlags(QtObjectPtr ptr, int flags); +void QGraphicsView_SetRenderHints(QtObjectPtr ptr, int hints); +void QGraphicsView_SetResizeAnchor(QtObjectPtr ptr, int anchor); +void QGraphicsView_SetRubberBandSelectionMode(QtObjectPtr ptr, int mode); +void QGraphicsView_SetSceneRect(QtObjectPtr ptr, QtObjectPtr rect); +void QGraphicsView_SetTransformationAnchor(QtObjectPtr ptr, int anchor); +void QGraphicsView_SetViewportUpdateMode(QtObjectPtr ptr, int mode); +int QGraphicsView_TransformationAnchor(QtObjectPtr ptr); +int QGraphicsView_ViewportUpdateMode(QtObjectPtr ptr); +QtObjectPtr QGraphicsView_NewQGraphicsView2(QtObjectPtr scene, QtObjectPtr parent); +QtObjectPtr QGraphicsView_NewQGraphicsView(QtObjectPtr parent); +void QGraphicsView_CenterOn3(QtObjectPtr ptr, QtObjectPtr item); +void QGraphicsView_CenterOn(QtObjectPtr ptr, QtObjectPtr pos); +void QGraphicsView_EnsureVisible3(QtObjectPtr ptr, QtObjectPtr item, int xmargin, int ymargin); +void QGraphicsView_EnsureVisible(QtObjectPtr ptr, QtObjectPtr rect, int xmargin, int ymargin); +void QGraphicsView_FitInView3(QtObjectPtr ptr, QtObjectPtr item, int aspectRatioMode); +void QGraphicsView_FitInView(QtObjectPtr ptr, QtObjectPtr rect, int aspectRatioMode); +char* QGraphicsView_InputMethodQuery(QtObjectPtr ptr, int query); +void QGraphicsView_InvalidateScene(QtObjectPtr ptr, QtObjectPtr rect, int layers); +int QGraphicsView_IsTransformed(QtObjectPtr ptr); +QtObjectPtr QGraphicsView_ItemAt(QtObjectPtr ptr, QtObjectPtr pos); +QtObjectPtr QGraphicsView_ItemAt2(QtObjectPtr ptr, int x, int y); +void QGraphicsView_Render(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr target, QtObjectPtr source, int aspectRatioMode); +void QGraphicsView_ResetCachedContent(QtObjectPtr ptr); +void QGraphicsView_ResetMatrix(QtObjectPtr ptr); +void QGraphicsView_ResetTransform(QtObjectPtr ptr); +QtObjectPtr QGraphicsView_Scene(QtObjectPtr ptr); +void QGraphicsView_SetOptimizationFlag(QtObjectPtr ptr, int flag, int enabled); +void QGraphicsView_SetRenderHint(QtObjectPtr ptr, int hint, int enabled); +void QGraphicsView_SetScene(QtObjectPtr ptr, QtObjectPtr scene); +void QGraphicsView_SetTransform(QtObjectPtr ptr, QtObjectPtr matrix, int combine); +void QGraphicsView_UpdateSceneRect(QtObjectPtr ptr, QtObjectPtr rect); +void QGraphicsView_DestroyQGraphicsView(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgraphicswidget.cpp b/widgets/qgraphicswidget.cpp new file mode 100755 index 00000000..1e2fc1df --- /dev/null +++ b/widgets/qgraphicswidget.cpp @@ -0,0 +1,198 @@ +#include "qgraphicswidget.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGraphicsWidget: public QGraphicsWidget { +public: +void Signal_GeometryChanged(){callbackQGraphicsWidgetGeometryChanged(this->objectName().toUtf8().data());}; +}; + +int QGraphicsWidget_AutoFillBackground(QtObjectPtr ptr){ + return static_cast(ptr)->autoFillBackground(); +} + +int QGraphicsWidget_FocusPolicy(QtObjectPtr ptr){ + return static_cast(ptr)->focusPolicy(); +} + +int QGraphicsWidget_LayoutDirection(QtObjectPtr ptr){ + return static_cast(ptr)->layoutDirection(); +} + +void QGraphicsWidget_Resize(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->resize(*static_cast(size)); +} + +void QGraphicsWidget_SetAutoFillBackground(QtObjectPtr ptr, int enabled){ + static_cast(ptr)->setAutoFillBackground(enabled != 0); +} + +void QGraphicsWidget_SetFocusPolicy(QtObjectPtr ptr, int policy){ + static_cast(ptr)->setFocusPolicy(static_cast(policy)); +} + +void QGraphicsWidget_SetFont(QtObjectPtr ptr, QtObjectPtr font){ + static_cast(ptr)->setFont(*static_cast(font)); +} + +void QGraphicsWidget_SetGeometry(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->setGeometry(*static_cast(rect)); +} + +void QGraphicsWidget_SetLayout(QtObjectPtr ptr, QtObjectPtr layout){ + static_cast(ptr)->setLayout(static_cast(layout)); +} + +void QGraphicsWidget_SetLayoutDirection(QtObjectPtr ptr, int direction){ + static_cast(ptr)->setLayoutDirection(static_cast(direction)); +} + +void QGraphicsWidget_SetPalette(QtObjectPtr ptr, QtObjectPtr palette){ + static_cast(ptr)->setPalette(*static_cast(palette)); +} + +void QGraphicsWidget_SetWindowFlags(QtObjectPtr ptr, int wFlags){ + static_cast(ptr)->setWindowFlags(static_cast(wFlags)); +} + +void QGraphicsWidget_SetWindowTitle(QtObjectPtr ptr, char* title){ + static_cast(ptr)->setWindowTitle(QString(title)); +} + +void QGraphicsWidget_UnsetLayoutDirection(QtObjectPtr ptr){ + static_cast(ptr)->unsetLayoutDirection(); +} + +int QGraphicsWidget_WindowFlags(QtObjectPtr ptr){ + return static_cast(ptr)->windowFlags(); +} + +char* QGraphicsWidget_WindowTitle(QtObjectPtr ptr){ + return static_cast(ptr)->windowTitle().toUtf8().data(); +} + +QtObjectPtr QGraphicsWidget_NewQGraphicsWidget(QtObjectPtr parent, int wFlags){ + return new QGraphicsWidget(static_cast(parent), static_cast(wFlags)); +} + +void QGraphicsWidget_AddAction(QtObjectPtr ptr, QtObjectPtr action){ + static_cast(ptr)->addAction(static_cast(action)); +} + +void QGraphicsWidget_AdjustSize(QtObjectPtr ptr){ + static_cast(ptr)->adjustSize(); +} + +int QGraphicsWidget_Close(QtObjectPtr ptr){ + return QMetaObject::invokeMethod(static_cast(ptr), "close"); +} + +QtObjectPtr QGraphicsWidget_FocusWidget(QtObjectPtr ptr){ + return static_cast(ptr)->focusWidget(); +} + +void QGraphicsWidget_ConnectGeometryChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGraphicsWidget::geometryChanged), static_cast(ptr), static_cast(&MyQGraphicsWidget::Signal_GeometryChanged));; +} + +void QGraphicsWidget_DisconnectGeometryChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGraphicsWidget::geometryChanged), static_cast(ptr), static_cast(&MyQGraphicsWidget::Signal_GeometryChanged));; +} + +int QGraphicsWidget_GrabShortcut(QtObjectPtr ptr, QtObjectPtr sequence, int context){ + return static_cast(ptr)->grabShortcut(*static_cast(sequence), static_cast(context)); +} + +void QGraphicsWidget_InsertAction(QtObjectPtr ptr, QtObjectPtr before, QtObjectPtr action){ + static_cast(ptr)->insertAction(static_cast(before), static_cast(action)); +} + +int QGraphicsWidget_IsActiveWindow(QtObjectPtr ptr){ + return static_cast(ptr)->isActiveWindow(); +} + +QtObjectPtr QGraphicsWidget_Layout(QtObjectPtr ptr){ + return static_cast(ptr)->layout(); +} + +void QGraphicsWidget_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget){ + static_cast(ptr)->paint(static_cast(painter), static_cast(option), static_cast(widget)); +} + +void QGraphicsWidget_PaintWindowFrame(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget){ + static_cast(ptr)->paintWindowFrame(static_cast(painter), static_cast(option), static_cast(widget)); +} + +void QGraphicsWidget_ReleaseShortcut(QtObjectPtr ptr, int id){ + static_cast(ptr)->releaseShortcut(id); +} + +void QGraphicsWidget_RemoveAction(QtObjectPtr ptr, QtObjectPtr action){ + static_cast(ptr)->removeAction(static_cast(action)); +} + +void QGraphicsWidget_SetAttribute(QtObjectPtr ptr, int attribute, int on){ + static_cast(ptr)->setAttribute(static_cast(attribute), on != 0); +} + +void QGraphicsWidget_SetShortcutAutoRepeat(QtObjectPtr ptr, int id, int enabled){ + static_cast(ptr)->setShortcutAutoRepeat(id, enabled != 0); +} + +void QGraphicsWidget_SetShortcutEnabled(QtObjectPtr ptr, int id, int enabled){ + static_cast(ptr)->setShortcutEnabled(id, enabled != 0); +} + +void QGraphicsWidget_SetStyle(QtObjectPtr ptr, QtObjectPtr style){ + static_cast(ptr)->setStyle(static_cast(style)); +} + +void QGraphicsWidget_QGraphicsWidget_SetTabOrder(QtObjectPtr first, QtObjectPtr second){ + QGraphicsWidget::setTabOrder(static_cast(first), static_cast(second)); +} + +QtObjectPtr QGraphicsWidget_Style(QtObjectPtr ptr){ + return static_cast(ptr)->style(); +} + +int QGraphicsWidget_TestAttribute(QtObjectPtr ptr, int attribute){ + return static_cast(ptr)->testAttribute(static_cast(attribute)); +} + +int QGraphicsWidget_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +void QGraphicsWidget_UnsetWindowFrameMargins(QtObjectPtr ptr){ + static_cast(ptr)->unsetWindowFrameMargins(); +} + +int QGraphicsWidget_WindowType(QtObjectPtr ptr){ + return static_cast(ptr)->windowType(); +} + +void QGraphicsWidget_DestroyQGraphicsWidget(QtObjectPtr ptr){ + static_cast(ptr)->~QGraphicsWidget(); +} + diff --git a/widgets/qgraphicswidget.go b/widgets/qgraphicswidget.go new file mode 100755 index 00000000..f8cb2c4f --- /dev/null +++ b/widgets/qgraphicswidget.go @@ -0,0 +1,320 @@ +package widgets + +//#include "qgraphicswidget.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QGraphicsWidget struct { + QGraphicsObject + QGraphicsLayoutItem +} + +type QGraphicsWidgetITF interface { + QGraphicsObjectITF + QGraphicsLayoutItemITF + QGraphicsWidgetPTR() *QGraphicsWidget +} + +func (p *QGraphicsWidget) Pointer() unsafe.Pointer { + return p.QGraphicsObjectPTR().Pointer() +} + +func (p *QGraphicsWidget) SetPointer(ptr unsafe.Pointer) { + p.QGraphicsObjectPTR().SetPointer(ptr) + p.QGraphicsLayoutItemPTR().SetPointer(ptr) +} + +func PointerFromQGraphicsWidget(ptr QGraphicsWidgetITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGraphicsWidgetPTR().Pointer() + } + return nil +} + +func QGraphicsWidgetFromPointer(ptr unsafe.Pointer) *QGraphicsWidget { + var n = new(QGraphicsWidget) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGraphicsWidget_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGraphicsWidget) QGraphicsWidgetPTR() *QGraphicsWidget { + return ptr +} + +func (ptr *QGraphicsWidget) AutoFillBackground() bool { + if ptr.Pointer() != nil { + return C.QGraphicsWidget_AutoFillBackground(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGraphicsWidget) FocusPolicy() core.Qt__FocusPolicy { + if ptr.Pointer() != nil { + return core.Qt__FocusPolicy(C.QGraphicsWidget_FocusPolicy(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsWidget) LayoutDirection() core.Qt__LayoutDirection { + if ptr.Pointer() != nil { + return core.Qt__LayoutDirection(C.QGraphicsWidget_LayoutDirection(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsWidget) Resize(size core.QSizeFITF) { + if ptr.Pointer() != nil { + C.QGraphicsWidget_Resize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSizeF(size))) + } +} + +func (ptr *QGraphicsWidget) SetAutoFillBackground(enabled bool) { + if ptr.Pointer() != nil { + C.QGraphicsWidget_SetAutoFillBackground(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QGraphicsWidget) SetFocusPolicy(policy core.Qt__FocusPolicy) { + if ptr.Pointer() != nil { + C.QGraphicsWidget_SetFocusPolicy(C.QtObjectPtr(ptr.Pointer()), C.int(policy)) + } +} + +func (ptr *QGraphicsWidget) SetFont(font gui.QFontITF) { + if ptr.Pointer() != nil { + C.QGraphicsWidget_SetFont(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQFont(font))) + } +} + +func (ptr *QGraphicsWidget) SetGeometry(rect core.QRectFITF) { + if ptr.Pointer() != nil { + C.QGraphicsWidget_SetGeometry(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRectF(rect))) + } +} + +func (ptr *QGraphicsWidget) SetLayout(layout QGraphicsLayoutITF) { + if ptr.Pointer() != nil { + C.QGraphicsWidget_SetLayout(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsLayout(layout))) + } +} + +func (ptr *QGraphicsWidget) SetLayoutDirection(direction core.Qt__LayoutDirection) { + if ptr.Pointer() != nil { + C.QGraphicsWidget_SetLayoutDirection(C.QtObjectPtr(ptr.Pointer()), C.int(direction)) + } +} + +func (ptr *QGraphicsWidget) SetPalette(palette gui.QPaletteITF) { + if ptr.Pointer() != nil { + C.QGraphicsWidget_SetPalette(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPalette(palette))) + } +} + +func (ptr *QGraphicsWidget) SetWindowFlags(wFlags core.Qt__WindowType) { + if ptr.Pointer() != nil { + C.QGraphicsWidget_SetWindowFlags(C.QtObjectPtr(ptr.Pointer()), C.int(wFlags)) + } +} + +func (ptr *QGraphicsWidget) SetWindowTitle(title string) { + if ptr.Pointer() != nil { + C.QGraphicsWidget_SetWindowTitle(C.QtObjectPtr(ptr.Pointer()), C.CString(title)) + } +} + +func (ptr *QGraphicsWidget) UnsetLayoutDirection() { + if ptr.Pointer() != nil { + C.QGraphicsWidget_UnsetLayoutDirection(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QGraphicsWidget) WindowFlags() core.Qt__WindowType { + if ptr.Pointer() != nil { + return core.Qt__WindowType(C.QGraphicsWidget_WindowFlags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsWidget) WindowTitle() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGraphicsWidget_WindowTitle(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func NewQGraphicsWidget(parent QGraphicsItemITF, wFlags core.Qt__WindowType) *QGraphicsWidget { + return QGraphicsWidgetFromPointer(unsafe.Pointer(C.QGraphicsWidget_NewQGraphicsWidget(C.QtObjectPtr(PointerFromQGraphicsItem(parent)), C.int(wFlags)))) +} + +func (ptr *QGraphicsWidget) AddAction(action QActionITF) { + if ptr.Pointer() != nil { + C.QGraphicsWidget_AddAction(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAction(action))) + } +} + +func (ptr *QGraphicsWidget) AdjustSize() { + if ptr.Pointer() != nil { + C.QGraphicsWidget_AdjustSize(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QGraphicsWidget) Close() bool { + if ptr.Pointer() != nil { + return C.QGraphicsWidget_Close(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGraphicsWidget) FocusWidget() *QGraphicsWidget { + if ptr.Pointer() != nil { + return QGraphicsWidgetFromPointer(unsafe.Pointer(C.QGraphicsWidget_FocusWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QGraphicsWidget) ConnectGeometryChanged(f func()) { + if ptr.Pointer() != nil { + C.QGraphicsWidget_ConnectGeometryChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "geometryChanged", f) + } +} + +func (ptr *QGraphicsWidget) DisconnectGeometryChanged() { + if ptr.Pointer() != nil { + C.QGraphicsWidget_DisconnectGeometryChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "geometryChanged") + } +} + +//export callbackQGraphicsWidgetGeometryChanged +func callbackQGraphicsWidgetGeometryChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "geometryChanged").(func())() +} + +func (ptr *QGraphicsWidget) GrabShortcut(sequence gui.QKeySequenceITF, context core.Qt__ShortcutContext) int { + if ptr.Pointer() != nil { + return int(C.QGraphicsWidget_GrabShortcut(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQKeySequence(sequence)), C.int(context))) + } + return 0 +} + +func (ptr *QGraphicsWidget) InsertAction(before QActionITF, action QActionITF) { + if ptr.Pointer() != nil { + C.QGraphicsWidget_InsertAction(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAction(before)), C.QtObjectPtr(PointerFromQAction(action))) + } +} + +func (ptr *QGraphicsWidget) IsActiveWindow() bool { + if ptr.Pointer() != nil { + return C.QGraphicsWidget_IsActiveWindow(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGraphicsWidget) Layout() *QGraphicsLayout { + if ptr.Pointer() != nil { + return QGraphicsLayoutFromPointer(unsafe.Pointer(C.QGraphicsWidget_Layout(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QGraphicsWidget) Paint(painter gui.QPainterITF, option QStyleOptionGraphicsItemITF, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QGraphicsWidget_Paint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(PointerFromQStyleOptionGraphicsItem(option)), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QGraphicsWidget) PaintWindowFrame(painter gui.QPainterITF, option QStyleOptionGraphicsItemITF, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QGraphicsWidget_PaintWindowFrame(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(PointerFromQStyleOptionGraphicsItem(option)), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QGraphicsWidget) ReleaseShortcut(id int) { + if ptr.Pointer() != nil { + C.QGraphicsWidget_ReleaseShortcut(C.QtObjectPtr(ptr.Pointer()), C.int(id)) + } +} + +func (ptr *QGraphicsWidget) RemoveAction(action QActionITF) { + if ptr.Pointer() != nil { + C.QGraphicsWidget_RemoveAction(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAction(action))) + } +} + +func (ptr *QGraphicsWidget) SetAttribute(attribute core.Qt__WidgetAttribute, on bool) { + if ptr.Pointer() != nil { + C.QGraphicsWidget_SetAttribute(C.QtObjectPtr(ptr.Pointer()), C.int(attribute), C.int(qt.GoBoolToInt(on))) + } +} + +func (ptr *QGraphicsWidget) SetShortcutAutoRepeat(id int, enabled bool) { + if ptr.Pointer() != nil { + C.QGraphicsWidget_SetShortcutAutoRepeat(C.QtObjectPtr(ptr.Pointer()), C.int(id), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QGraphicsWidget) SetShortcutEnabled(id int, enabled bool) { + if ptr.Pointer() != nil { + C.QGraphicsWidget_SetShortcutEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(id), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QGraphicsWidget) SetStyle(style QStyleITF) { + if ptr.Pointer() != nil { + C.QGraphicsWidget_SetStyle(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQStyle(style))) + } +} + +func QGraphicsWidget_SetTabOrder(first QGraphicsWidgetITF, second QGraphicsWidgetITF) { + C.QGraphicsWidget_QGraphicsWidget_SetTabOrder(C.QtObjectPtr(PointerFromQGraphicsWidget(first)), C.QtObjectPtr(PointerFromQGraphicsWidget(second))) +} + +func (ptr *QGraphicsWidget) Style() *QStyle { + if ptr.Pointer() != nil { + return QStyleFromPointer(unsafe.Pointer(C.QGraphicsWidget_Style(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QGraphicsWidget) TestAttribute(attribute core.Qt__WidgetAttribute) bool { + if ptr.Pointer() != nil { + return C.QGraphicsWidget_TestAttribute(C.QtObjectPtr(ptr.Pointer()), C.int(attribute)) != 0 + } + return false +} + +func (ptr *QGraphicsWidget) Type() int { + if ptr.Pointer() != nil { + return int(C.QGraphicsWidget_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsWidget) UnsetWindowFrameMargins() { + if ptr.Pointer() != nil { + C.QGraphicsWidget_UnsetWindowFrameMargins(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QGraphicsWidget) WindowType() core.Qt__WindowType { + if ptr.Pointer() != nil { + return core.Qt__WindowType(C.QGraphicsWidget_WindowType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGraphicsWidget) DestroyQGraphicsWidget() { + if ptr.Pointer() != nil { + C.QGraphicsWidget_DestroyQGraphicsWidget(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qgraphicswidget.h b/widgets/qgraphicswidget.h new file mode 100755 index 00000000..8d96b141 --- /dev/null +++ b/widgets/qgraphicswidget.h @@ -0,0 +1,51 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QGraphicsWidget_AutoFillBackground(QtObjectPtr ptr); +int QGraphicsWidget_FocusPolicy(QtObjectPtr ptr); +int QGraphicsWidget_LayoutDirection(QtObjectPtr ptr); +void QGraphicsWidget_Resize(QtObjectPtr ptr, QtObjectPtr size); +void QGraphicsWidget_SetAutoFillBackground(QtObjectPtr ptr, int enabled); +void QGraphicsWidget_SetFocusPolicy(QtObjectPtr ptr, int policy); +void QGraphicsWidget_SetFont(QtObjectPtr ptr, QtObjectPtr font); +void QGraphicsWidget_SetGeometry(QtObjectPtr ptr, QtObjectPtr rect); +void QGraphicsWidget_SetLayout(QtObjectPtr ptr, QtObjectPtr layout); +void QGraphicsWidget_SetLayoutDirection(QtObjectPtr ptr, int direction); +void QGraphicsWidget_SetPalette(QtObjectPtr ptr, QtObjectPtr palette); +void QGraphicsWidget_SetWindowFlags(QtObjectPtr ptr, int wFlags); +void QGraphicsWidget_SetWindowTitle(QtObjectPtr ptr, char* title); +void QGraphicsWidget_UnsetLayoutDirection(QtObjectPtr ptr); +int QGraphicsWidget_WindowFlags(QtObjectPtr ptr); +char* QGraphicsWidget_WindowTitle(QtObjectPtr ptr); +QtObjectPtr QGraphicsWidget_NewQGraphicsWidget(QtObjectPtr parent, int wFlags); +void QGraphicsWidget_AddAction(QtObjectPtr ptr, QtObjectPtr action); +void QGraphicsWidget_AdjustSize(QtObjectPtr ptr); +int QGraphicsWidget_Close(QtObjectPtr ptr); +QtObjectPtr QGraphicsWidget_FocusWidget(QtObjectPtr ptr); +void QGraphicsWidget_ConnectGeometryChanged(QtObjectPtr ptr); +void QGraphicsWidget_DisconnectGeometryChanged(QtObjectPtr ptr); +int QGraphicsWidget_GrabShortcut(QtObjectPtr ptr, QtObjectPtr sequence, int context); +void QGraphicsWidget_InsertAction(QtObjectPtr ptr, QtObjectPtr before, QtObjectPtr action); +int QGraphicsWidget_IsActiveWindow(QtObjectPtr ptr); +QtObjectPtr QGraphicsWidget_Layout(QtObjectPtr ptr); +void QGraphicsWidget_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget); +void QGraphicsWidget_PaintWindowFrame(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr widget); +void QGraphicsWidget_ReleaseShortcut(QtObjectPtr ptr, int id); +void QGraphicsWidget_RemoveAction(QtObjectPtr ptr, QtObjectPtr action); +void QGraphicsWidget_SetAttribute(QtObjectPtr ptr, int attribute, int on); +void QGraphicsWidget_SetShortcutAutoRepeat(QtObjectPtr ptr, int id, int enabled); +void QGraphicsWidget_SetShortcutEnabled(QtObjectPtr ptr, int id, int enabled); +void QGraphicsWidget_SetStyle(QtObjectPtr ptr, QtObjectPtr style); +void QGraphicsWidget_QGraphicsWidget_SetTabOrder(QtObjectPtr first, QtObjectPtr second); +QtObjectPtr QGraphicsWidget_Style(QtObjectPtr ptr); +int QGraphicsWidget_TestAttribute(QtObjectPtr ptr, int attribute); +int QGraphicsWidget_Type(QtObjectPtr ptr); +void QGraphicsWidget_UnsetWindowFrameMargins(QtObjectPtr ptr); +int QGraphicsWidget_WindowType(QtObjectPtr ptr); +void QGraphicsWidget_DestroyQGraphicsWidget(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgridlayout.cpp b/widgets/qgridlayout.cpp new file mode 100755 index 00000000..9f13f2c0 --- /dev/null +++ b/widgets/qgridlayout.cpp @@ -0,0 +1,164 @@ +#include "qgridlayout.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGridLayout: public QGridLayout { +public: +}; + +int QGridLayout_HorizontalSpacing(QtObjectPtr ptr){ + return static_cast(ptr)->horizontalSpacing(); +} + +void QGridLayout_SetHorizontalSpacing(QtObjectPtr ptr, int spacing){ + static_cast(ptr)->setHorizontalSpacing(spacing); +} + +void QGridLayout_SetVerticalSpacing(QtObjectPtr ptr, int spacing){ + static_cast(ptr)->setVerticalSpacing(spacing); +} + +int QGridLayout_VerticalSpacing(QtObjectPtr ptr){ + return static_cast(ptr)->verticalSpacing(); +} + +QtObjectPtr QGridLayout_NewQGridLayout2(){ + return new QGridLayout(); +} + +QtObjectPtr QGridLayout_NewQGridLayout(QtObjectPtr parent){ + return new QGridLayout(static_cast(parent)); +} + +void QGridLayout_AddItem(QtObjectPtr ptr, QtObjectPtr item, int row, int column, int rowSpan, int columnSpan, int alignment){ + static_cast(ptr)->addItem(static_cast(item), row, column, rowSpan, columnSpan, static_cast(alignment)); +} + +void QGridLayout_AddLayout(QtObjectPtr ptr, QtObjectPtr layout, int row, int column, int alignment){ + static_cast(ptr)->addLayout(static_cast(layout), row, column, static_cast(alignment)); +} + +void QGridLayout_AddLayout2(QtObjectPtr ptr, QtObjectPtr layout, int row, int column, int rowSpan, int columnSpan, int alignment){ + static_cast(ptr)->addLayout(static_cast(layout), row, column, rowSpan, columnSpan, static_cast(alignment)); +} + +void QGridLayout_AddWidget2(QtObjectPtr ptr, QtObjectPtr widget, int fromRow, int fromColumn, int rowSpan, int columnSpan, int alignment){ + static_cast(ptr)->addWidget(static_cast(widget), fromRow, fromColumn, rowSpan, columnSpan, static_cast(alignment)); +} + +void QGridLayout_AddWidget(QtObjectPtr ptr, QtObjectPtr widget, int row, int column, int alignment){ + static_cast(ptr)->addWidget(static_cast(widget), row, column, static_cast(alignment)); +} + +int QGridLayout_ColumnCount(QtObjectPtr ptr){ + return static_cast(ptr)->columnCount(); +} + +int QGridLayout_ColumnMinimumWidth(QtObjectPtr ptr, int column){ + return static_cast(ptr)->columnMinimumWidth(column); +} + +int QGridLayout_ColumnStretch(QtObjectPtr ptr, int column){ + return static_cast(ptr)->columnStretch(column); +} + +int QGridLayout_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +int QGridLayout_ExpandingDirections(QtObjectPtr ptr){ + return static_cast(ptr)->expandingDirections(); +} + +void QGridLayout_GetItemPosition(QtObjectPtr ptr, int index, int row, int column, int rowSpan, int columnSpan){ + static_cast(ptr)->getItemPosition(index, &row, &column, &rowSpan, &columnSpan); +} + +int QGridLayout_HasHeightForWidth(QtObjectPtr ptr){ + return static_cast(ptr)->hasHeightForWidth(); +} + +int QGridLayout_HeightForWidth(QtObjectPtr ptr, int w){ + return static_cast(ptr)->heightForWidth(w); +} + +void QGridLayout_Invalidate(QtObjectPtr ptr){ + static_cast(ptr)->invalidate(); +} + +QtObjectPtr QGridLayout_ItemAt(QtObjectPtr ptr, int index){ + return static_cast(ptr)->itemAt(index); +} + +QtObjectPtr QGridLayout_ItemAtPosition(QtObjectPtr ptr, int row, int column){ + return static_cast(ptr)->itemAtPosition(row, column); +} + +int QGridLayout_MinimumHeightForWidth(QtObjectPtr ptr, int w){ + return static_cast(ptr)->minimumHeightForWidth(w); +} + +int QGridLayout_OriginCorner(QtObjectPtr ptr){ + return static_cast(ptr)->originCorner(); +} + +int QGridLayout_RowCount(QtObjectPtr ptr){ + return static_cast(ptr)->rowCount(); +} + +int QGridLayout_RowMinimumHeight(QtObjectPtr ptr, int row){ + return static_cast(ptr)->rowMinimumHeight(row); +} + +int QGridLayout_RowStretch(QtObjectPtr ptr, int row){ + return static_cast(ptr)->rowStretch(row); +} + +void QGridLayout_SetColumnMinimumWidth(QtObjectPtr ptr, int column, int minSize){ + static_cast(ptr)->setColumnMinimumWidth(column, minSize); +} + +void QGridLayout_SetColumnStretch(QtObjectPtr ptr, int column, int stretch){ + static_cast(ptr)->setColumnStretch(column, stretch); +} + +void QGridLayout_SetGeometry(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->setGeometry(*static_cast(rect)); +} + +void QGridLayout_SetOriginCorner(QtObjectPtr ptr, int corner){ + static_cast(ptr)->setOriginCorner(static_cast(corner)); +} + +void QGridLayout_SetRowMinimumHeight(QtObjectPtr ptr, int row, int minSize){ + static_cast(ptr)->setRowMinimumHeight(row, minSize); +} + +void QGridLayout_SetRowStretch(QtObjectPtr ptr, int row, int stretch){ + static_cast(ptr)->setRowStretch(row, stretch); +} + +void QGridLayout_SetSpacing(QtObjectPtr ptr, int spacing){ + static_cast(ptr)->setSpacing(spacing); +} + +int QGridLayout_Spacing(QtObjectPtr ptr){ + return static_cast(ptr)->spacing(); +} + +QtObjectPtr QGridLayout_TakeAt(QtObjectPtr ptr, int index){ + return static_cast(ptr)->takeAt(index); +} + +void QGridLayout_DestroyQGridLayout(QtObjectPtr ptr){ + static_cast(ptr)->~QGridLayout(); +} + diff --git a/widgets/qgridlayout.go b/widgets/qgridlayout.go new file mode 100755 index 00000000..cb8765c8 --- /dev/null +++ b/widgets/qgridlayout.go @@ -0,0 +1,275 @@ +package widgets + +//#include "qgridlayout.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGridLayout struct { + QLayout +} + +type QGridLayoutITF interface { + QLayoutITF + QGridLayoutPTR() *QGridLayout +} + +func PointerFromQGridLayout(ptr QGridLayoutITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGridLayoutPTR().Pointer() + } + return nil +} + +func QGridLayoutFromPointer(ptr unsafe.Pointer) *QGridLayout { + var n = new(QGridLayout) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGridLayout_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGridLayout) QGridLayoutPTR() *QGridLayout { + return ptr +} + +func (ptr *QGridLayout) HorizontalSpacing() int { + if ptr.Pointer() != nil { + return int(C.QGridLayout_HorizontalSpacing(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGridLayout) SetHorizontalSpacing(spacing int) { + if ptr.Pointer() != nil { + C.QGridLayout_SetHorizontalSpacing(C.QtObjectPtr(ptr.Pointer()), C.int(spacing)) + } +} + +func (ptr *QGridLayout) SetVerticalSpacing(spacing int) { + if ptr.Pointer() != nil { + C.QGridLayout_SetVerticalSpacing(C.QtObjectPtr(ptr.Pointer()), C.int(spacing)) + } +} + +func (ptr *QGridLayout) VerticalSpacing() int { + if ptr.Pointer() != nil { + return int(C.QGridLayout_VerticalSpacing(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQGridLayout2() *QGridLayout { + return QGridLayoutFromPointer(unsafe.Pointer(C.QGridLayout_NewQGridLayout2())) +} + +func NewQGridLayout(parent QWidgetITF) *QGridLayout { + return QGridLayoutFromPointer(unsafe.Pointer(C.QGridLayout_NewQGridLayout(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QGridLayout) AddItem(item QLayoutItemITF, row int, column int, rowSpan int, columnSpan int, alignment core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QGridLayout_AddItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLayoutItem(item)), C.int(row), C.int(column), C.int(rowSpan), C.int(columnSpan), C.int(alignment)) + } +} + +func (ptr *QGridLayout) AddLayout(layout QLayoutITF, row int, column int, alignment core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QGridLayout_AddLayout(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLayout(layout)), C.int(row), C.int(column), C.int(alignment)) + } +} + +func (ptr *QGridLayout) AddLayout2(layout QLayoutITF, row int, column int, rowSpan int, columnSpan int, alignment core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QGridLayout_AddLayout2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLayout(layout)), C.int(row), C.int(column), C.int(rowSpan), C.int(columnSpan), C.int(alignment)) + } +} + +func (ptr *QGridLayout) AddWidget2(widget QWidgetITF, fromRow int, fromColumn int, rowSpan int, columnSpan int, alignment core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QGridLayout_AddWidget2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget)), C.int(fromRow), C.int(fromColumn), C.int(rowSpan), C.int(columnSpan), C.int(alignment)) + } +} + +func (ptr *QGridLayout) AddWidget(widget QWidgetITF, row int, column int, alignment core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QGridLayout_AddWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget)), C.int(row), C.int(column), C.int(alignment)) + } +} + +func (ptr *QGridLayout) ColumnCount() int { + if ptr.Pointer() != nil { + return int(C.QGridLayout_ColumnCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGridLayout) ColumnMinimumWidth(column int) int { + if ptr.Pointer() != nil { + return int(C.QGridLayout_ColumnMinimumWidth(C.QtObjectPtr(ptr.Pointer()), C.int(column))) + } + return 0 +} + +func (ptr *QGridLayout) ColumnStretch(column int) int { + if ptr.Pointer() != nil { + return int(C.QGridLayout_ColumnStretch(C.QtObjectPtr(ptr.Pointer()), C.int(column))) + } + return 0 +} + +func (ptr *QGridLayout) Count() int { + if ptr.Pointer() != nil { + return int(C.QGridLayout_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGridLayout) ExpandingDirections() core.Qt__Orientation { + if ptr.Pointer() != nil { + return core.Qt__Orientation(C.QGridLayout_ExpandingDirections(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGridLayout) GetItemPosition(index int, row int, column int, rowSpan int, columnSpan int) { + if ptr.Pointer() != nil { + C.QGridLayout_GetItemPosition(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.int(row), C.int(column), C.int(rowSpan), C.int(columnSpan)) + } +} + +func (ptr *QGridLayout) HasHeightForWidth() bool { + if ptr.Pointer() != nil { + return C.QGridLayout_HasHeightForWidth(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGridLayout) HeightForWidth(w int) int { + if ptr.Pointer() != nil { + return int(C.QGridLayout_HeightForWidth(C.QtObjectPtr(ptr.Pointer()), C.int(w))) + } + return 0 +} + +func (ptr *QGridLayout) Invalidate() { + if ptr.Pointer() != nil { + C.QGridLayout_Invalidate(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QGridLayout) ItemAt(index int) *QLayoutItem { + if ptr.Pointer() != nil { + return QLayoutItemFromPointer(unsafe.Pointer(C.QGridLayout_ItemAt(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QGridLayout) ItemAtPosition(row int, column int) *QLayoutItem { + if ptr.Pointer() != nil { + return QLayoutItemFromPointer(unsafe.Pointer(C.QGridLayout_ItemAtPosition(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column)))) + } + return nil +} + +func (ptr *QGridLayout) MinimumHeightForWidth(w int) int { + if ptr.Pointer() != nil { + return int(C.QGridLayout_MinimumHeightForWidth(C.QtObjectPtr(ptr.Pointer()), C.int(w))) + } + return 0 +} + +func (ptr *QGridLayout) OriginCorner() core.Qt__Corner { + if ptr.Pointer() != nil { + return core.Qt__Corner(C.QGridLayout_OriginCorner(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGridLayout) RowCount() int { + if ptr.Pointer() != nil { + return int(C.QGridLayout_RowCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGridLayout) RowMinimumHeight(row int) int { + if ptr.Pointer() != nil { + return int(C.QGridLayout_RowMinimumHeight(C.QtObjectPtr(ptr.Pointer()), C.int(row))) + } + return 0 +} + +func (ptr *QGridLayout) RowStretch(row int) int { + if ptr.Pointer() != nil { + return int(C.QGridLayout_RowStretch(C.QtObjectPtr(ptr.Pointer()), C.int(row))) + } + return 0 +} + +func (ptr *QGridLayout) SetColumnMinimumWidth(column int, minSize int) { + if ptr.Pointer() != nil { + C.QGridLayout_SetColumnMinimumWidth(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(minSize)) + } +} + +func (ptr *QGridLayout) SetColumnStretch(column int, stretch int) { + if ptr.Pointer() != nil { + C.QGridLayout_SetColumnStretch(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(stretch)) + } +} + +func (ptr *QGridLayout) SetGeometry(rect core.QRectITF) { + if ptr.Pointer() != nil { + C.QGridLayout_SetGeometry(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rect))) + } +} + +func (ptr *QGridLayout) SetOriginCorner(corner core.Qt__Corner) { + if ptr.Pointer() != nil { + C.QGridLayout_SetOriginCorner(C.QtObjectPtr(ptr.Pointer()), C.int(corner)) + } +} + +func (ptr *QGridLayout) SetRowMinimumHeight(row int, minSize int) { + if ptr.Pointer() != nil { + C.QGridLayout_SetRowMinimumHeight(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(minSize)) + } +} + +func (ptr *QGridLayout) SetRowStretch(row int, stretch int) { + if ptr.Pointer() != nil { + C.QGridLayout_SetRowStretch(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(stretch)) + } +} + +func (ptr *QGridLayout) SetSpacing(spacing int) { + if ptr.Pointer() != nil { + C.QGridLayout_SetSpacing(C.QtObjectPtr(ptr.Pointer()), C.int(spacing)) + } +} + +func (ptr *QGridLayout) Spacing() int { + if ptr.Pointer() != nil { + return int(C.QGridLayout_Spacing(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGridLayout) TakeAt(index int) *QLayoutItem { + if ptr.Pointer() != nil { + return QLayoutItemFromPointer(unsafe.Pointer(C.QGridLayout_TakeAt(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QGridLayout) DestroyQGridLayout() { + if ptr.Pointer() != nil { + C.QGridLayout_DestroyQGridLayout(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qgridlayout.h b/widgets/qgridlayout.h new file mode 100755 index 00000000..89803bef --- /dev/null +++ b/widgets/qgridlayout.h @@ -0,0 +1,46 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QGridLayout_HorizontalSpacing(QtObjectPtr ptr); +void QGridLayout_SetHorizontalSpacing(QtObjectPtr ptr, int spacing); +void QGridLayout_SetVerticalSpacing(QtObjectPtr ptr, int spacing); +int QGridLayout_VerticalSpacing(QtObjectPtr ptr); +QtObjectPtr QGridLayout_NewQGridLayout2(); +QtObjectPtr QGridLayout_NewQGridLayout(QtObjectPtr parent); +void QGridLayout_AddItem(QtObjectPtr ptr, QtObjectPtr item, int row, int column, int rowSpan, int columnSpan, int alignment); +void QGridLayout_AddLayout(QtObjectPtr ptr, QtObjectPtr layout, int row, int column, int alignment); +void QGridLayout_AddLayout2(QtObjectPtr ptr, QtObjectPtr layout, int row, int column, int rowSpan, int columnSpan, int alignment); +void QGridLayout_AddWidget2(QtObjectPtr ptr, QtObjectPtr widget, int fromRow, int fromColumn, int rowSpan, int columnSpan, int alignment); +void QGridLayout_AddWidget(QtObjectPtr ptr, QtObjectPtr widget, int row, int column, int alignment); +int QGridLayout_ColumnCount(QtObjectPtr ptr); +int QGridLayout_ColumnMinimumWidth(QtObjectPtr ptr, int column); +int QGridLayout_ColumnStretch(QtObjectPtr ptr, int column); +int QGridLayout_Count(QtObjectPtr ptr); +int QGridLayout_ExpandingDirections(QtObjectPtr ptr); +void QGridLayout_GetItemPosition(QtObjectPtr ptr, int index, int row, int column, int rowSpan, int columnSpan); +int QGridLayout_HasHeightForWidth(QtObjectPtr ptr); +int QGridLayout_HeightForWidth(QtObjectPtr ptr, int w); +void QGridLayout_Invalidate(QtObjectPtr ptr); +QtObjectPtr QGridLayout_ItemAt(QtObjectPtr ptr, int index); +QtObjectPtr QGridLayout_ItemAtPosition(QtObjectPtr ptr, int row, int column); +int QGridLayout_MinimumHeightForWidth(QtObjectPtr ptr, int w); +int QGridLayout_OriginCorner(QtObjectPtr ptr); +int QGridLayout_RowCount(QtObjectPtr ptr); +int QGridLayout_RowMinimumHeight(QtObjectPtr ptr, int row); +int QGridLayout_RowStretch(QtObjectPtr ptr, int row); +void QGridLayout_SetColumnMinimumWidth(QtObjectPtr ptr, int column, int minSize); +void QGridLayout_SetColumnStretch(QtObjectPtr ptr, int column, int stretch); +void QGridLayout_SetGeometry(QtObjectPtr ptr, QtObjectPtr rect); +void QGridLayout_SetOriginCorner(QtObjectPtr ptr, int corner); +void QGridLayout_SetRowMinimumHeight(QtObjectPtr ptr, int row, int minSize); +void QGridLayout_SetRowStretch(QtObjectPtr ptr, int row, int stretch); +void QGridLayout_SetSpacing(QtObjectPtr ptr, int spacing); +int QGridLayout_Spacing(QtObjectPtr ptr); +QtObjectPtr QGridLayout_TakeAt(QtObjectPtr ptr, int index); +void QGridLayout_DestroyQGridLayout(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qgroupbox.cpp b/widgets/qgroupbox.cpp new file mode 100755 index 00000000..44c2b7c6 --- /dev/null +++ b/widgets/qgroupbox.cpp @@ -0,0 +1,85 @@ +#include "qgroupbox.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQGroupBox: public QGroupBox { +public: +void Signal_Clicked(bool checked){callbackQGroupBoxClicked(this->objectName().toUtf8().data(), checked);}; +void Signal_Toggled(bool on){callbackQGroupBoxToggled(this->objectName().toUtf8().data(), on);}; +}; + +int QGroupBox_Alignment(QtObjectPtr ptr){ + return static_cast(ptr)->alignment(); +} + +int QGroupBox_IsCheckable(QtObjectPtr ptr){ + return static_cast(ptr)->isCheckable(); +} + +int QGroupBox_IsChecked(QtObjectPtr ptr){ + return static_cast(ptr)->isChecked(); +} + +int QGroupBox_IsFlat(QtObjectPtr ptr){ + return static_cast(ptr)->isFlat(); +} + +void QGroupBox_SetAlignment(QtObjectPtr ptr, int alignment){ + static_cast(ptr)->setAlignment(alignment); +} + +void QGroupBox_SetCheckable(QtObjectPtr ptr, int checkable){ + static_cast(ptr)->setCheckable(checkable != 0); +} + +void QGroupBox_SetChecked(QtObjectPtr ptr, int checked){ + QMetaObject::invokeMethod(static_cast(ptr), "setChecked", Q_ARG(bool, checked != 0)); +} + +void QGroupBox_SetFlat(QtObjectPtr ptr, int flat){ + static_cast(ptr)->setFlat(flat != 0); +} + +void QGroupBox_SetTitle(QtObjectPtr ptr, char* title){ + static_cast(ptr)->setTitle(QString(title)); +} + +char* QGroupBox_Title(QtObjectPtr ptr){ + return static_cast(ptr)->title().toUtf8().data(); +} + +QtObjectPtr QGroupBox_NewQGroupBox(QtObjectPtr parent){ + return new QGroupBox(static_cast(parent)); +} + +QtObjectPtr QGroupBox_NewQGroupBox2(char* title, QtObjectPtr parent){ + return new QGroupBox(QString(title), static_cast(parent)); +} + +void QGroupBox_ConnectClicked(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGroupBox::clicked), static_cast(ptr), static_cast(&MyQGroupBox::Signal_Clicked));; +} + +void QGroupBox_DisconnectClicked(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGroupBox::clicked), static_cast(ptr), static_cast(&MyQGroupBox::Signal_Clicked));; +} + +void QGroupBox_ConnectToggled(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QGroupBox::toggled), static_cast(ptr), static_cast(&MyQGroupBox::Signal_Toggled));; +} + +void QGroupBox_DisconnectToggled(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QGroupBox::toggled), static_cast(ptr), static_cast(&MyQGroupBox::Signal_Toggled));; +} + +void QGroupBox_DestroyQGroupBox(QtObjectPtr ptr){ + static_cast(ptr)->~QGroupBox(); +} + diff --git a/widgets/qgroupbox.go b/widgets/qgroupbox.go new file mode 100755 index 00000000..6a874783 --- /dev/null +++ b/widgets/qgroupbox.go @@ -0,0 +1,156 @@ +package widgets + +//#include "qgroupbox.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QGroupBox struct { + QWidget +} + +type QGroupBoxITF interface { + QWidgetITF + QGroupBoxPTR() *QGroupBox +} + +func PointerFromQGroupBox(ptr QGroupBoxITF) unsafe.Pointer { + if ptr != nil { + return ptr.QGroupBoxPTR().Pointer() + } + return nil +} + +func QGroupBoxFromPointer(ptr unsafe.Pointer) *QGroupBox { + var n = new(QGroupBox) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QGroupBox_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QGroupBox) QGroupBoxPTR() *QGroupBox { + return ptr +} + +func (ptr *QGroupBox) Alignment() core.Qt__AlignmentFlag { + if ptr.Pointer() != nil { + return core.Qt__AlignmentFlag(C.QGroupBox_Alignment(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QGroupBox) IsCheckable() bool { + if ptr.Pointer() != nil { + return C.QGroupBox_IsCheckable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGroupBox) IsChecked() bool { + if ptr.Pointer() != nil { + return C.QGroupBox_IsChecked(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGroupBox) IsFlat() bool { + if ptr.Pointer() != nil { + return C.QGroupBox_IsFlat(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QGroupBox) SetAlignment(alignment int) { + if ptr.Pointer() != nil { + C.QGroupBox_SetAlignment(C.QtObjectPtr(ptr.Pointer()), C.int(alignment)) + } +} + +func (ptr *QGroupBox) SetCheckable(checkable bool) { + if ptr.Pointer() != nil { + C.QGroupBox_SetCheckable(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(checkable))) + } +} + +func (ptr *QGroupBox) SetChecked(checked bool) { + if ptr.Pointer() != nil { + C.QGroupBox_SetChecked(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(checked))) + } +} + +func (ptr *QGroupBox) SetFlat(flat bool) { + if ptr.Pointer() != nil { + C.QGroupBox_SetFlat(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(flat))) + } +} + +func (ptr *QGroupBox) SetTitle(title string) { + if ptr.Pointer() != nil { + C.QGroupBox_SetTitle(C.QtObjectPtr(ptr.Pointer()), C.CString(title)) + } +} + +func (ptr *QGroupBox) Title() string { + if ptr.Pointer() != nil { + return C.GoString(C.QGroupBox_Title(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func NewQGroupBox(parent QWidgetITF) *QGroupBox { + return QGroupBoxFromPointer(unsafe.Pointer(C.QGroupBox_NewQGroupBox(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQGroupBox2(title string, parent QWidgetITF) *QGroupBox { + return QGroupBoxFromPointer(unsafe.Pointer(C.QGroupBox_NewQGroupBox2(C.CString(title), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QGroupBox) ConnectClicked(f func(checked bool)) { + if ptr.Pointer() != nil { + C.QGroupBox_ConnectClicked(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "clicked", f) + } +} + +func (ptr *QGroupBox) DisconnectClicked() { + if ptr.Pointer() != nil { + C.QGroupBox_DisconnectClicked(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "clicked") + } +} + +//export callbackQGroupBoxClicked +func callbackQGroupBoxClicked(ptrName *C.char, checked C.int) { + qt.GetSignal(C.GoString(ptrName), "clicked").(func(bool))(int(checked) != 0) +} + +func (ptr *QGroupBox) ConnectToggled(f func(on bool)) { + if ptr.Pointer() != nil { + C.QGroupBox_ConnectToggled(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "toggled", f) + } +} + +func (ptr *QGroupBox) DisconnectToggled() { + if ptr.Pointer() != nil { + C.QGroupBox_DisconnectToggled(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "toggled") + } +} + +//export callbackQGroupBoxToggled +func callbackQGroupBoxToggled(ptrName *C.char, on C.int) { + qt.GetSignal(C.GoString(ptrName), "toggled").(func(bool))(int(on) != 0) +} + +func (ptr *QGroupBox) DestroyQGroupBox() { + if ptr.Pointer() != nil { + C.QGroupBox_DestroyQGroupBox(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qgroupbox.h b/widgets/qgroupbox.h new file mode 100755 index 00000000..5d09aee2 --- /dev/null +++ b/widgets/qgroupbox.h @@ -0,0 +1,26 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QGroupBox_Alignment(QtObjectPtr ptr); +int QGroupBox_IsCheckable(QtObjectPtr ptr); +int QGroupBox_IsChecked(QtObjectPtr ptr); +int QGroupBox_IsFlat(QtObjectPtr ptr); +void QGroupBox_SetAlignment(QtObjectPtr ptr, int alignment); +void QGroupBox_SetCheckable(QtObjectPtr ptr, int checkable); +void QGroupBox_SetChecked(QtObjectPtr ptr, int checked); +void QGroupBox_SetFlat(QtObjectPtr ptr, int flat); +void QGroupBox_SetTitle(QtObjectPtr ptr, char* title); +char* QGroupBox_Title(QtObjectPtr ptr); +QtObjectPtr QGroupBox_NewQGroupBox(QtObjectPtr parent); +QtObjectPtr QGroupBox_NewQGroupBox2(char* title, QtObjectPtr parent); +void QGroupBox_ConnectClicked(QtObjectPtr ptr); +void QGroupBox_DisconnectClicked(QtObjectPtr ptr); +void QGroupBox_ConnectToggled(QtObjectPtr ptr); +void QGroupBox_DisconnectToggled(QtObjectPtr ptr); +void QGroupBox_DestroyQGroupBox(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qhboxlayout.cpp b/widgets/qhboxlayout.cpp new file mode 100755 index 00000000..01e524e3 --- /dev/null +++ b/widgets/qhboxlayout.cpp @@ -0,0 +1,25 @@ +#include "qhboxlayout.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQHBoxLayout: public QHBoxLayout { +public: +}; + +QtObjectPtr QHBoxLayout_NewQHBoxLayout(){ + return new QHBoxLayout(); +} + +QtObjectPtr QHBoxLayout_NewQHBoxLayout2(QtObjectPtr parent){ + return new QHBoxLayout(static_cast(parent)); +} + +void QHBoxLayout_DestroyQHBoxLayout(QtObjectPtr ptr){ + static_cast(ptr)->~QHBoxLayout(); +} + diff --git a/widgets/qhboxlayout.go b/widgets/qhboxlayout.go new file mode 100755 index 00000000..9a9cb1b2 --- /dev/null +++ b/widgets/qhboxlayout.go @@ -0,0 +1,52 @@ +package widgets + +//#include "qhboxlayout.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QHBoxLayout struct { + QBoxLayout +} + +type QHBoxLayoutITF interface { + QBoxLayoutITF + QHBoxLayoutPTR() *QHBoxLayout +} + +func PointerFromQHBoxLayout(ptr QHBoxLayoutITF) unsafe.Pointer { + if ptr != nil { + return ptr.QHBoxLayoutPTR().Pointer() + } + return nil +} + +func QHBoxLayoutFromPointer(ptr unsafe.Pointer) *QHBoxLayout { + var n = new(QHBoxLayout) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QHBoxLayout_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QHBoxLayout) QHBoxLayoutPTR() *QHBoxLayout { + return ptr +} + +func NewQHBoxLayout() *QHBoxLayout { + return QHBoxLayoutFromPointer(unsafe.Pointer(C.QHBoxLayout_NewQHBoxLayout())) +} + +func NewQHBoxLayout2(parent QWidgetITF) *QHBoxLayout { + return QHBoxLayoutFromPointer(unsafe.Pointer(C.QHBoxLayout_NewQHBoxLayout2(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QHBoxLayout) DestroyQHBoxLayout() { + if ptr.Pointer() != nil { + C.QHBoxLayout_DestroyQHBoxLayout(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qhboxlayout.h b/widgets/qhboxlayout.h new file mode 100755 index 00000000..3b7497f4 --- /dev/null +++ b/widgets/qhboxlayout.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QHBoxLayout_NewQHBoxLayout(); +QtObjectPtr QHBoxLayout_NewQHBoxLayout2(QtObjectPtr parent); +void QHBoxLayout_DestroyQHBoxLayout(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qheaderview.cpp b/widgets/qheaderview.cpp new file mode 100755 index 00000000..76d17de2 --- /dev/null +++ b/widgets/qheaderview.cpp @@ -0,0 +1,363 @@ +#include "qheaderview.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQHeaderView: public QHeaderView { +public: +void Signal_GeometriesChanged(){callbackQHeaderViewGeometriesChanged(this->objectName().toUtf8().data());}; +void Signal_SectionClicked(int logicalIndex){callbackQHeaderViewSectionClicked(this->objectName().toUtf8().data(), logicalIndex);}; +void Signal_SectionCountChanged(int oldCount, int newCount){callbackQHeaderViewSectionCountChanged(this->objectName().toUtf8().data(), oldCount, newCount);}; +void Signal_SectionDoubleClicked(int logicalIndex){callbackQHeaderViewSectionDoubleClicked(this->objectName().toUtf8().data(), logicalIndex);}; +void Signal_SectionEntered(int logicalIndex){callbackQHeaderViewSectionEntered(this->objectName().toUtf8().data(), logicalIndex);}; +void Signal_SectionHandleDoubleClicked(int logicalIndex){callbackQHeaderViewSectionHandleDoubleClicked(this->objectName().toUtf8().data(), logicalIndex);}; +void Signal_SectionMoved(int logicalIndex, int oldVisualIndex, int newVisualIndex){callbackQHeaderViewSectionMoved(this->objectName().toUtf8().data(), logicalIndex, oldVisualIndex, newVisualIndex);}; +void Signal_SectionPressed(int logicalIndex){callbackQHeaderViewSectionPressed(this->objectName().toUtf8().data(), logicalIndex);}; +void Signal_SectionResized(int logicalIndex, int oldSize, int newSize){callbackQHeaderViewSectionResized(this->objectName().toUtf8().data(), logicalIndex, oldSize, newSize);}; +void Signal_SortIndicatorChanged(int logicalIndex, Qt::SortOrder order){callbackQHeaderViewSortIndicatorChanged(this->objectName().toUtf8().data(), logicalIndex, order);}; +}; + +int QHeaderView_CascadingSectionResizes(QtObjectPtr ptr){ + return static_cast(ptr)->cascadingSectionResizes(); +} + +int QHeaderView_DefaultAlignment(QtObjectPtr ptr){ + return static_cast(ptr)->defaultAlignment(); +} + +int QHeaderView_DefaultSectionSize(QtObjectPtr ptr){ + return static_cast(ptr)->defaultSectionSize(); +} + +int QHeaderView_HighlightSections(QtObjectPtr ptr){ + return static_cast(ptr)->highlightSections(); +} + +int QHeaderView_IsSortIndicatorShown(QtObjectPtr ptr){ + return static_cast(ptr)->isSortIndicatorShown(); +} + +int QHeaderView_MaximumSectionSize(QtObjectPtr ptr){ + return static_cast(ptr)->maximumSectionSize(); +} + +int QHeaderView_MinimumSectionSize(QtObjectPtr ptr){ + return static_cast(ptr)->minimumSectionSize(); +} + +void QHeaderView_ResetDefaultSectionSize(QtObjectPtr ptr){ + static_cast(ptr)->resetDefaultSectionSize(); +} + +void QHeaderView_ResizeSection(QtObjectPtr ptr, int logicalIndex, int size){ + static_cast(ptr)->resizeSection(logicalIndex, size); +} + +void QHeaderView_SetCascadingSectionResizes(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setCascadingSectionResizes(enable != 0); +} + +void QHeaderView_SetDefaultAlignment(QtObjectPtr ptr, int alignment){ + static_cast(ptr)->setDefaultAlignment(static_cast(alignment)); +} + +void QHeaderView_SetDefaultSectionSize(QtObjectPtr ptr, int size){ + static_cast(ptr)->setDefaultSectionSize(size); +} + +void QHeaderView_SetHighlightSections(QtObjectPtr ptr, int highlight){ + static_cast(ptr)->setHighlightSections(highlight != 0); +} + +void QHeaderView_SetMaximumSectionSize(QtObjectPtr ptr, int size){ + static_cast(ptr)->setMaximumSectionSize(size); +} + +void QHeaderView_SetMinimumSectionSize(QtObjectPtr ptr, int size){ + static_cast(ptr)->setMinimumSectionSize(size); +} + +void QHeaderView_SetOffset(QtObjectPtr ptr, int offset){ + QMetaObject::invokeMethod(static_cast(ptr), "setOffset", Q_ARG(int, offset)); +} + +void QHeaderView_SetSortIndicatorShown(QtObjectPtr ptr, int show){ + static_cast(ptr)->setSortIndicatorShown(show != 0); +} + +void QHeaderView_SetStretchLastSection(QtObjectPtr ptr, int stretch){ + static_cast(ptr)->setStretchLastSection(stretch != 0); +} + +int QHeaderView_StretchLastSection(QtObjectPtr ptr){ + return static_cast(ptr)->stretchLastSection(); +} + +int QHeaderView_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +void QHeaderView_ConnectGeometriesChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QHeaderView::geometriesChanged), static_cast(ptr), static_cast(&MyQHeaderView::Signal_GeometriesChanged));; +} + +void QHeaderView_DisconnectGeometriesChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QHeaderView::geometriesChanged), static_cast(ptr), static_cast(&MyQHeaderView::Signal_GeometriesChanged));; +} + +void QHeaderView_HeaderDataChanged(QtObjectPtr ptr, int orientation, int logicalFirst, int logicalLast){ + QMetaObject::invokeMethod(static_cast(ptr), "headerDataChanged", Q_ARG(Qt::Orientation, static_cast(orientation)), Q_ARG(int, logicalFirst), Q_ARG(int, logicalLast)); +} + +int QHeaderView_HiddenSectionCount(QtObjectPtr ptr){ + return static_cast(ptr)->hiddenSectionCount(); +} + +void QHeaderView_HideSection(QtObjectPtr ptr, int logicalIndex){ + static_cast(ptr)->hideSection(logicalIndex); +} + +int QHeaderView_IsSectionHidden(QtObjectPtr ptr, int logicalIndex){ + return static_cast(ptr)->isSectionHidden(logicalIndex); +} + +int QHeaderView_Length(QtObjectPtr ptr){ + return static_cast(ptr)->length(); +} + +int QHeaderView_LogicalIndex(QtObjectPtr ptr, int visualIndex){ + return static_cast(ptr)->logicalIndex(visualIndex); +} + +int QHeaderView_LogicalIndexAt3(QtObjectPtr ptr, QtObjectPtr pos){ + return static_cast(ptr)->logicalIndexAt(*static_cast(pos)); +} + +int QHeaderView_LogicalIndexAt(QtObjectPtr ptr, int position){ + return static_cast(ptr)->logicalIndexAt(position); +} + +int QHeaderView_LogicalIndexAt2(QtObjectPtr ptr, int x, int y){ + return static_cast(ptr)->logicalIndexAt(x, y); +} + +void QHeaderView_MoveSection(QtObjectPtr ptr, int from, int to){ + static_cast(ptr)->moveSection(from, to); +} + +int QHeaderView_Offset(QtObjectPtr ptr){ + return static_cast(ptr)->offset(); +} + +int QHeaderView_Orientation(QtObjectPtr ptr){ + return static_cast(ptr)->orientation(); +} + +void QHeaderView_Reset(QtObjectPtr ptr){ + static_cast(ptr)->reset(); +} + +int QHeaderView_ResizeContentsPrecision(QtObjectPtr ptr){ + return static_cast(ptr)->resizeContentsPrecision(); +} + +void QHeaderView_ResizeSections(QtObjectPtr ptr, int mode){ + static_cast(ptr)->resizeSections(static_cast(mode)); +} + +int QHeaderView_RestoreState(QtObjectPtr ptr, QtObjectPtr state){ + return static_cast(ptr)->restoreState(*static_cast(state)); +} + +void QHeaderView_ConnectSectionClicked(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QHeaderView::sectionClicked), static_cast(ptr), static_cast(&MyQHeaderView::Signal_SectionClicked));; +} + +void QHeaderView_DisconnectSectionClicked(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QHeaderView::sectionClicked), static_cast(ptr), static_cast(&MyQHeaderView::Signal_SectionClicked));; +} + +void QHeaderView_ConnectSectionCountChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QHeaderView::sectionCountChanged), static_cast(ptr), static_cast(&MyQHeaderView::Signal_SectionCountChanged));; +} + +void QHeaderView_DisconnectSectionCountChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QHeaderView::sectionCountChanged), static_cast(ptr), static_cast(&MyQHeaderView::Signal_SectionCountChanged));; +} + +void QHeaderView_ConnectSectionDoubleClicked(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QHeaderView::sectionDoubleClicked), static_cast(ptr), static_cast(&MyQHeaderView::Signal_SectionDoubleClicked));; +} + +void QHeaderView_DisconnectSectionDoubleClicked(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QHeaderView::sectionDoubleClicked), static_cast(ptr), static_cast(&MyQHeaderView::Signal_SectionDoubleClicked));; +} + +void QHeaderView_ConnectSectionEntered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QHeaderView::sectionEntered), static_cast(ptr), static_cast(&MyQHeaderView::Signal_SectionEntered));; +} + +void QHeaderView_DisconnectSectionEntered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QHeaderView::sectionEntered), static_cast(ptr), static_cast(&MyQHeaderView::Signal_SectionEntered));; +} + +void QHeaderView_ConnectSectionHandleDoubleClicked(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QHeaderView::sectionHandleDoubleClicked), static_cast(ptr), static_cast(&MyQHeaderView::Signal_SectionHandleDoubleClicked));; +} + +void QHeaderView_DisconnectSectionHandleDoubleClicked(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QHeaderView::sectionHandleDoubleClicked), static_cast(ptr), static_cast(&MyQHeaderView::Signal_SectionHandleDoubleClicked));; +} + +void QHeaderView_ConnectSectionMoved(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QHeaderView::sectionMoved), static_cast(ptr), static_cast(&MyQHeaderView::Signal_SectionMoved));; +} + +void QHeaderView_DisconnectSectionMoved(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QHeaderView::sectionMoved), static_cast(ptr), static_cast(&MyQHeaderView::Signal_SectionMoved));; +} + +int QHeaderView_SectionPosition(QtObjectPtr ptr, int logicalIndex){ + return static_cast(ptr)->sectionPosition(logicalIndex); +} + +void QHeaderView_ConnectSectionPressed(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QHeaderView::sectionPressed), static_cast(ptr), static_cast(&MyQHeaderView::Signal_SectionPressed));; +} + +void QHeaderView_DisconnectSectionPressed(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QHeaderView::sectionPressed), static_cast(ptr), static_cast(&MyQHeaderView::Signal_SectionPressed));; +} + +int QHeaderView_SectionResizeMode(QtObjectPtr ptr, int logicalIndex){ + return static_cast(ptr)->sectionResizeMode(logicalIndex); +} + +void QHeaderView_ConnectSectionResized(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QHeaderView::sectionResized), static_cast(ptr), static_cast(&MyQHeaderView::Signal_SectionResized));; +} + +void QHeaderView_DisconnectSectionResized(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QHeaderView::sectionResized), static_cast(ptr), static_cast(&MyQHeaderView::Signal_SectionResized));; +} + +int QHeaderView_SectionSize(QtObjectPtr ptr, int logicalIndex){ + return static_cast(ptr)->sectionSize(logicalIndex); +} + +int QHeaderView_SectionSizeHint(QtObjectPtr ptr, int logicalIndex){ + return static_cast(ptr)->sectionSizeHint(logicalIndex); +} + +int QHeaderView_SectionViewportPosition(QtObjectPtr ptr, int logicalIndex){ + return static_cast(ptr)->sectionViewportPosition(logicalIndex); +} + +int QHeaderView_SectionsClickable(QtObjectPtr ptr){ + return static_cast(ptr)->sectionsClickable(); +} + +int QHeaderView_SectionsHidden(QtObjectPtr ptr){ + return static_cast(ptr)->sectionsHidden(); +} + +int QHeaderView_SectionsMovable(QtObjectPtr ptr){ + return static_cast(ptr)->sectionsMovable(); +} + +int QHeaderView_SectionsMoved(QtObjectPtr ptr){ + return static_cast(ptr)->sectionsMoved(); +} + +void QHeaderView_SetModel(QtObjectPtr ptr, QtObjectPtr model){ + static_cast(ptr)->setModel(static_cast(model)); +} + +void QHeaderView_SetOffsetToLastSection(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "setOffsetToLastSection"); +} + +void QHeaderView_SetOffsetToSectionPosition(QtObjectPtr ptr, int visualSectionNumber){ + QMetaObject::invokeMethod(static_cast(ptr), "setOffsetToSectionPosition", Q_ARG(int, visualSectionNumber)); +} + +void QHeaderView_SetResizeContentsPrecision(QtObjectPtr ptr, int precision){ + static_cast(ptr)->setResizeContentsPrecision(precision); +} + +void QHeaderView_SetSectionHidden(QtObjectPtr ptr, int logicalIndex, int hide){ + static_cast(ptr)->setSectionHidden(logicalIndex, hide != 0); +} + +void QHeaderView_SetSectionResizeMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setSectionResizeMode(static_cast(mode)); +} + +void QHeaderView_SetSectionResizeMode2(QtObjectPtr ptr, int logicalIndex, int mode){ + static_cast(ptr)->setSectionResizeMode(logicalIndex, static_cast(mode)); +} + +void QHeaderView_SetSectionsClickable(QtObjectPtr ptr, int clickable){ + static_cast(ptr)->setSectionsClickable(clickable != 0); +} + +void QHeaderView_SetSectionsMovable(QtObjectPtr ptr, int movable){ + static_cast(ptr)->setSectionsMovable(movable != 0); +} + +void QHeaderView_SetSortIndicator(QtObjectPtr ptr, int logicalIndex, int order){ + static_cast(ptr)->setSortIndicator(logicalIndex, static_cast(order)); +} + +void QHeaderView_SetVisible(QtObjectPtr ptr, int v){ + static_cast(ptr)->setVisible(v != 0); +} + +void QHeaderView_ShowSection(QtObjectPtr ptr, int logicalIndex){ + static_cast(ptr)->showSection(logicalIndex); +} + +void QHeaderView_ConnectSortIndicatorChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QHeaderView::sortIndicatorChanged), static_cast(ptr), static_cast(&MyQHeaderView::Signal_SortIndicatorChanged));; +} + +void QHeaderView_DisconnectSortIndicatorChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QHeaderView::sortIndicatorChanged), static_cast(ptr), static_cast(&MyQHeaderView::Signal_SortIndicatorChanged));; +} + +int QHeaderView_SortIndicatorOrder(QtObjectPtr ptr){ + return static_cast(ptr)->sortIndicatorOrder(); +} + +int QHeaderView_SortIndicatorSection(QtObjectPtr ptr){ + return static_cast(ptr)->sortIndicatorSection(); +} + +int QHeaderView_StretchSectionCount(QtObjectPtr ptr){ + return static_cast(ptr)->stretchSectionCount(); +} + +void QHeaderView_SwapSections(QtObjectPtr ptr, int first, int second){ + static_cast(ptr)->swapSections(first, second); +} + +int QHeaderView_VisualIndex(QtObjectPtr ptr, int logicalIndex){ + return static_cast(ptr)->visualIndex(logicalIndex); +} + +int QHeaderView_VisualIndexAt(QtObjectPtr ptr, int position){ + return static_cast(ptr)->visualIndexAt(position); +} + +void QHeaderView_DestroyQHeaderView(QtObjectPtr ptr){ + static_cast(ptr)->~QHeaderView(); +} + diff --git a/widgets/qheaderview.go b/widgets/qheaderview.go new file mode 100755 index 00000000..4ea20613 --- /dev/null +++ b/widgets/qheaderview.go @@ -0,0 +1,658 @@ +package widgets + +//#include "qheaderview.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QHeaderView struct { + QAbstractItemView +} + +type QHeaderViewITF interface { + QAbstractItemViewITF + QHeaderViewPTR() *QHeaderView +} + +func PointerFromQHeaderView(ptr QHeaderViewITF) unsafe.Pointer { + if ptr != nil { + return ptr.QHeaderViewPTR().Pointer() + } + return nil +} + +func QHeaderViewFromPointer(ptr unsafe.Pointer) *QHeaderView { + var n = new(QHeaderView) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QHeaderView_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QHeaderView) QHeaderViewPTR() *QHeaderView { + return ptr +} + +//QHeaderView::ResizeMode +type QHeaderView__ResizeMode int + +var ( + QHeaderView__Interactive = QHeaderView__ResizeMode(0) + QHeaderView__Stretch = QHeaderView__ResizeMode(1) + QHeaderView__Fixed = QHeaderView__ResizeMode(2) + QHeaderView__ResizeToContents = QHeaderView__ResizeMode(3) + QHeaderView__Custom = QHeaderView__ResizeMode(QHeaderView__Fixed) +) + +func (ptr *QHeaderView) CascadingSectionResizes() bool { + if ptr.Pointer() != nil { + return C.QHeaderView_CascadingSectionResizes(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QHeaderView) DefaultAlignment() core.Qt__AlignmentFlag { + if ptr.Pointer() != nil { + return core.Qt__AlignmentFlag(C.QHeaderView_DefaultAlignment(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QHeaderView) DefaultSectionSize() int { + if ptr.Pointer() != nil { + return int(C.QHeaderView_DefaultSectionSize(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QHeaderView) HighlightSections() bool { + if ptr.Pointer() != nil { + return C.QHeaderView_HighlightSections(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QHeaderView) IsSortIndicatorShown() bool { + if ptr.Pointer() != nil { + return C.QHeaderView_IsSortIndicatorShown(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QHeaderView) MaximumSectionSize() int { + if ptr.Pointer() != nil { + return int(C.QHeaderView_MaximumSectionSize(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QHeaderView) MinimumSectionSize() int { + if ptr.Pointer() != nil { + return int(C.QHeaderView_MinimumSectionSize(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QHeaderView) ResetDefaultSectionSize() { + if ptr.Pointer() != nil { + C.QHeaderView_ResetDefaultSectionSize(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QHeaderView) ResizeSection(logicalIndex int, size int) { + if ptr.Pointer() != nil { + C.QHeaderView_ResizeSection(C.QtObjectPtr(ptr.Pointer()), C.int(logicalIndex), C.int(size)) + } +} + +func (ptr *QHeaderView) SetCascadingSectionResizes(enable bool) { + if ptr.Pointer() != nil { + C.QHeaderView_SetCascadingSectionResizes(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QHeaderView) SetDefaultAlignment(alignment core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QHeaderView_SetDefaultAlignment(C.QtObjectPtr(ptr.Pointer()), C.int(alignment)) + } +} + +func (ptr *QHeaderView) SetDefaultSectionSize(size int) { + if ptr.Pointer() != nil { + C.QHeaderView_SetDefaultSectionSize(C.QtObjectPtr(ptr.Pointer()), C.int(size)) + } +} + +func (ptr *QHeaderView) SetHighlightSections(highlight bool) { + if ptr.Pointer() != nil { + C.QHeaderView_SetHighlightSections(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(highlight))) + } +} + +func (ptr *QHeaderView) SetMaximumSectionSize(size int) { + if ptr.Pointer() != nil { + C.QHeaderView_SetMaximumSectionSize(C.QtObjectPtr(ptr.Pointer()), C.int(size)) + } +} + +func (ptr *QHeaderView) SetMinimumSectionSize(size int) { + if ptr.Pointer() != nil { + C.QHeaderView_SetMinimumSectionSize(C.QtObjectPtr(ptr.Pointer()), C.int(size)) + } +} + +func (ptr *QHeaderView) SetOffset(offset int) { + if ptr.Pointer() != nil { + C.QHeaderView_SetOffset(C.QtObjectPtr(ptr.Pointer()), C.int(offset)) + } +} + +func (ptr *QHeaderView) SetSortIndicatorShown(show bool) { + if ptr.Pointer() != nil { + C.QHeaderView_SetSortIndicatorShown(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(show))) + } +} + +func (ptr *QHeaderView) SetStretchLastSection(stretch bool) { + if ptr.Pointer() != nil { + C.QHeaderView_SetStretchLastSection(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(stretch))) + } +} + +func (ptr *QHeaderView) StretchLastSection() bool { + if ptr.Pointer() != nil { + return C.QHeaderView_StretchLastSection(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QHeaderView) Count() int { + if ptr.Pointer() != nil { + return int(C.QHeaderView_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QHeaderView) ConnectGeometriesChanged(f func()) { + if ptr.Pointer() != nil { + C.QHeaderView_ConnectGeometriesChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "geometriesChanged", f) + } +} + +func (ptr *QHeaderView) DisconnectGeometriesChanged() { + if ptr.Pointer() != nil { + C.QHeaderView_DisconnectGeometriesChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "geometriesChanged") + } +} + +//export callbackQHeaderViewGeometriesChanged +func callbackQHeaderViewGeometriesChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "geometriesChanged").(func())() +} + +func (ptr *QHeaderView) HeaderDataChanged(orientation core.Qt__Orientation, logicalFirst int, logicalLast int) { + if ptr.Pointer() != nil { + C.QHeaderView_HeaderDataChanged(C.QtObjectPtr(ptr.Pointer()), C.int(orientation), C.int(logicalFirst), C.int(logicalLast)) + } +} + +func (ptr *QHeaderView) HiddenSectionCount() int { + if ptr.Pointer() != nil { + return int(C.QHeaderView_HiddenSectionCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QHeaderView) HideSection(logicalIndex int) { + if ptr.Pointer() != nil { + C.QHeaderView_HideSection(C.QtObjectPtr(ptr.Pointer()), C.int(logicalIndex)) + } +} + +func (ptr *QHeaderView) IsSectionHidden(logicalIndex int) bool { + if ptr.Pointer() != nil { + return C.QHeaderView_IsSectionHidden(C.QtObjectPtr(ptr.Pointer()), C.int(logicalIndex)) != 0 + } + return false +} + +func (ptr *QHeaderView) Length() int { + if ptr.Pointer() != nil { + return int(C.QHeaderView_Length(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QHeaderView) LogicalIndex(visualIndex int) int { + if ptr.Pointer() != nil { + return int(C.QHeaderView_LogicalIndex(C.QtObjectPtr(ptr.Pointer()), C.int(visualIndex))) + } + return 0 +} + +func (ptr *QHeaderView) LogicalIndexAt3(pos core.QPointITF) int { + if ptr.Pointer() != nil { + return int(C.QHeaderView_LogicalIndexAt3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(pos)))) + } + return 0 +} + +func (ptr *QHeaderView) LogicalIndexAt(position int) int { + if ptr.Pointer() != nil { + return int(C.QHeaderView_LogicalIndexAt(C.QtObjectPtr(ptr.Pointer()), C.int(position))) + } + return 0 +} + +func (ptr *QHeaderView) LogicalIndexAt2(x int, y int) int { + if ptr.Pointer() != nil { + return int(C.QHeaderView_LogicalIndexAt2(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y))) + } + return 0 +} + +func (ptr *QHeaderView) MoveSection(from int, to int) { + if ptr.Pointer() != nil { + C.QHeaderView_MoveSection(C.QtObjectPtr(ptr.Pointer()), C.int(from), C.int(to)) + } +} + +func (ptr *QHeaderView) Offset() int { + if ptr.Pointer() != nil { + return int(C.QHeaderView_Offset(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QHeaderView) Orientation() core.Qt__Orientation { + if ptr.Pointer() != nil { + return core.Qt__Orientation(C.QHeaderView_Orientation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QHeaderView) Reset() { + if ptr.Pointer() != nil { + C.QHeaderView_Reset(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QHeaderView) ResizeContentsPrecision() int { + if ptr.Pointer() != nil { + return int(C.QHeaderView_ResizeContentsPrecision(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QHeaderView) ResizeSections(mode QHeaderView__ResizeMode) { + if ptr.Pointer() != nil { + C.QHeaderView_ResizeSections(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QHeaderView) RestoreState(state core.QByteArrayITF) bool { + if ptr.Pointer() != nil { + return C.QHeaderView_RestoreState(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(state))) != 0 + } + return false +} + +func (ptr *QHeaderView) ConnectSectionClicked(f func(logicalIndex int)) { + if ptr.Pointer() != nil { + C.QHeaderView_ConnectSectionClicked(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "sectionClicked", f) + } +} + +func (ptr *QHeaderView) DisconnectSectionClicked() { + if ptr.Pointer() != nil { + C.QHeaderView_DisconnectSectionClicked(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "sectionClicked") + } +} + +//export callbackQHeaderViewSectionClicked +func callbackQHeaderViewSectionClicked(ptrName *C.char, logicalIndex C.int) { + qt.GetSignal(C.GoString(ptrName), "sectionClicked").(func(int))(int(logicalIndex)) +} + +func (ptr *QHeaderView) ConnectSectionCountChanged(f func(oldCount int, newCount int)) { + if ptr.Pointer() != nil { + C.QHeaderView_ConnectSectionCountChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "sectionCountChanged", f) + } +} + +func (ptr *QHeaderView) DisconnectSectionCountChanged() { + if ptr.Pointer() != nil { + C.QHeaderView_DisconnectSectionCountChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "sectionCountChanged") + } +} + +//export callbackQHeaderViewSectionCountChanged +func callbackQHeaderViewSectionCountChanged(ptrName *C.char, oldCount C.int, newCount C.int) { + qt.GetSignal(C.GoString(ptrName), "sectionCountChanged").(func(int, int))(int(oldCount), int(newCount)) +} + +func (ptr *QHeaderView) ConnectSectionDoubleClicked(f func(logicalIndex int)) { + if ptr.Pointer() != nil { + C.QHeaderView_ConnectSectionDoubleClicked(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "sectionDoubleClicked", f) + } +} + +func (ptr *QHeaderView) DisconnectSectionDoubleClicked() { + if ptr.Pointer() != nil { + C.QHeaderView_DisconnectSectionDoubleClicked(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "sectionDoubleClicked") + } +} + +//export callbackQHeaderViewSectionDoubleClicked +func callbackQHeaderViewSectionDoubleClicked(ptrName *C.char, logicalIndex C.int) { + qt.GetSignal(C.GoString(ptrName), "sectionDoubleClicked").(func(int))(int(logicalIndex)) +} + +func (ptr *QHeaderView) ConnectSectionEntered(f func(logicalIndex int)) { + if ptr.Pointer() != nil { + C.QHeaderView_ConnectSectionEntered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "sectionEntered", f) + } +} + +func (ptr *QHeaderView) DisconnectSectionEntered() { + if ptr.Pointer() != nil { + C.QHeaderView_DisconnectSectionEntered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "sectionEntered") + } +} + +//export callbackQHeaderViewSectionEntered +func callbackQHeaderViewSectionEntered(ptrName *C.char, logicalIndex C.int) { + qt.GetSignal(C.GoString(ptrName), "sectionEntered").(func(int))(int(logicalIndex)) +} + +func (ptr *QHeaderView) ConnectSectionHandleDoubleClicked(f func(logicalIndex int)) { + if ptr.Pointer() != nil { + C.QHeaderView_ConnectSectionHandleDoubleClicked(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "sectionHandleDoubleClicked", f) + } +} + +func (ptr *QHeaderView) DisconnectSectionHandleDoubleClicked() { + if ptr.Pointer() != nil { + C.QHeaderView_DisconnectSectionHandleDoubleClicked(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "sectionHandleDoubleClicked") + } +} + +//export callbackQHeaderViewSectionHandleDoubleClicked +func callbackQHeaderViewSectionHandleDoubleClicked(ptrName *C.char, logicalIndex C.int) { + qt.GetSignal(C.GoString(ptrName), "sectionHandleDoubleClicked").(func(int))(int(logicalIndex)) +} + +func (ptr *QHeaderView) ConnectSectionMoved(f func(logicalIndex int, oldVisualIndex int, newVisualIndex int)) { + if ptr.Pointer() != nil { + C.QHeaderView_ConnectSectionMoved(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "sectionMoved", f) + } +} + +func (ptr *QHeaderView) DisconnectSectionMoved() { + if ptr.Pointer() != nil { + C.QHeaderView_DisconnectSectionMoved(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "sectionMoved") + } +} + +//export callbackQHeaderViewSectionMoved +func callbackQHeaderViewSectionMoved(ptrName *C.char, logicalIndex C.int, oldVisualIndex C.int, newVisualIndex C.int) { + qt.GetSignal(C.GoString(ptrName), "sectionMoved").(func(int, int, int))(int(logicalIndex), int(oldVisualIndex), int(newVisualIndex)) +} + +func (ptr *QHeaderView) SectionPosition(logicalIndex int) int { + if ptr.Pointer() != nil { + return int(C.QHeaderView_SectionPosition(C.QtObjectPtr(ptr.Pointer()), C.int(logicalIndex))) + } + return 0 +} + +func (ptr *QHeaderView) ConnectSectionPressed(f func(logicalIndex int)) { + if ptr.Pointer() != nil { + C.QHeaderView_ConnectSectionPressed(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "sectionPressed", f) + } +} + +func (ptr *QHeaderView) DisconnectSectionPressed() { + if ptr.Pointer() != nil { + C.QHeaderView_DisconnectSectionPressed(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "sectionPressed") + } +} + +//export callbackQHeaderViewSectionPressed +func callbackQHeaderViewSectionPressed(ptrName *C.char, logicalIndex C.int) { + qt.GetSignal(C.GoString(ptrName), "sectionPressed").(func(int))(int(logicalIndex)) +} + +func (ptr *QHeaderView) SectionResizeMode(logicalIndex int) QHeaderView__ResizeMode { + if ptr.Pointer() != nil { + return QHeaderView__ResizeMode(C.QHeaderView_SectionResizeMode(C.QtObjectPtr(ptr.Pointer()), C.int(logicalIndex))) + } + return 0 +} + +func (ptr *QHeaderView) ConnectSectionResized(f func(logicalIndex int, oldSize int, newSize int)) { + if ptr.Pointer() != nil { + C.QHeaderView_ConnectSectionResized(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "sectionResized", f) + } +} + +func (ptr *QHeaderView) DisconnectSectionResized() { + if ptr.Pointer() != nil { + C.QHeaderView_DisconnectSectionResized(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "sectionResized") + } +} + +//export callbackQHeaderViewSectionResized +func callbackQHeaderViewSectionResized(ptrName *C.char, logicalIndex C.int, oldSize C.int, newSize C.int) { + qt.GetSignal(C.GoString(ptrName), "sectionResized").(func(int, int, int))(int(logicalIndex), int(oldSize), int(newSize)) +} + +func (ptr *QHeaderView) SectionSize(logicalIndex int) int { + if ptr.Pointer() != nil { + return int(C.QHeaderView_SectionSize(C.QtObjectPtr(ptr.Pointer()), C.int(logicalIndex))) + } + return 0 +} + +func (ptr *QHeaderView) SectionSizeHint(logicalIndex int) int { + if ptr.Pointer() != nil { + return int(C.QHeaderView_SectionSizeHint(C.QtObjectPtr(ptr.Pointer()), C.int(logicalIndex))) + } + return 0 +} + +func (ptr *QHeaderView) SectionViewportPosition(logicalIndex int) int { + if ptr.Pointer() != nil { + return int(C.QHeaderView_SectionViewportPosition(C.QtObjectPtr(ptr.Pointer()), C.int(logicalIndex))) + } + return 0 +} + +func (ptr *QHeaderView) SectionsClickable() bool { + if ptr.Pointer() != nil { + return C.QHeaderView_SectionsClickable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QHeaderView) SectionsHidden() bool { + if ptr.Pointer() != nil { + return C.QHeaderView_SectionsHidden(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QHeaderView) SectionsMovable() bool { + if ptr.Pointer() != nil { + return C.QHeaderView_SectionsMovable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QHeaderView) SectionsMoved() bool { + if ptr.Pointer() != nil { + return C.QHeaderView_SectionsMoved(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QHeaderView) SetModel(model core.QAbstractItemModelITF) { + if ptr.Pointer() != nil { + C.QHeaderView_SetModel(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQAbstractItemModel(model))) + } +} + +func (ptr *QHeaderView) SetOffsetToLastSection() { + if ptr.Pointer() != nil { + C.QHeaderView_SetOffsetToLastSection(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QHeaderView) SetOffsetToSectionPosition(visualSectionNumber int) { + if ptr.Pointer() != nil { + C.QHeaderView_SetOffsetToSectionPosition(C.QtObjectPtr(ptr.Pointer()), C.int(visualSectionNumber)) + } +} + +func (ptr *QHeaderView) SetResizeContentsPrecision(precision int) { + if ptr.Pointer() != nil { + C.QHeaderView_SetResizeContentsPrecision(C.QtObjectPtr(ptr.Pointer()), C.int(precision)) + } +} + +func (ptr *QHeaderView) SetSectionHidden(logicalIndex int, hide bool) { + if ptr.Pointer() != nil { + C.QHeaderView_SetSectionHidden(C.QtObjectPtr(ptr.Pointer()), C.int(logicalIndex), C.int(qt.GoBoolToInt(hide))) + } +} + +func (ptr *QHeaderView) SetSectionResizeMode(mode QHeaderView__ResizeMode) { + if ptr.Pointer() != nil { + C.QHeaderView_SetSectionResizeMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QHeaderView) SetSectionResizeMode2(logicalIndex int, mode QHeaderView__ResizeMode) { + if ptr.Pointer() != nil { + C.QHeaderView_SetSectionResizeMode2(C.QtObjectPtr(ptr.Pointer()), C.int(logicalIndex), C.int(mode)) + } +} + +func (ptr *QHeaderView) SetSectionsClickable(clickable bool) { + if ptr.Pointer() != nil { + C.QHeaderView_SetSectionsClickable(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(clickable))) + } +} + +func (ptr *QHeaderView) SetSectionsMovable(movable bool) { + if ptr.Pointer() != nil { + C.QHeaderView_SetSectionsMovable(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(movable))) + } +} + +func (ptr *QHeaderView) SetSortIndicator(logicalIndex int, order core.Qt__SortOrder) { + if ptr.Pointer() != nil { + C.QHeaderView_SetSortIndicator(C.QtObjectPtr(ptr.Pointer()), C.int(logicalIndex), C.int(order)) + } +} + +func (ptr *QHeaderView) SetVisible(v bool) { + if ptr.Pointer() != nil { + C.QHeaderView_SetVisible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QHeaderView) ShowSection(logicalIndex int) { + if ptr.Pointer() != nil { + C.QHeaderView_ShowSection(C.QtObjectPtr(ptr.Pointer()), C.int(logicalIndex)) + } +} + +func (ptr *QHeaderView) ConnectSortIndicatorChanged(f func(logicalIndex int, order core.Qt__SortOrder)) { + if ptr.Pointer() != nil { + C.QHeaderView_ConnectSortIndicatorChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "sortIndicatorChanged", f) + } +} + +func (ptr *QHeaderView) DisconnectSortIndicatorChanged() { + if ptr.Pointer() != nil { + C.QHeaderView_DisconnectSortIndicatorChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "sortIndicatorChanged") + } +} + +//export callbackQHeaderViewSortIndicatorChanged +func callbackQHeaderViewSortIndicatorChanged(ptrName *C.char, logicalIndex C.int, order C.int) { + qt.GetSignal(C.GoString(ptrName), "sortIndicatorChanged").(func(int, core.Qt__SortOrder))(int(logicalIndex), core.Qt__SortOrder(order)) +} + +func (ptr *QHeaderView) SortIndicatorOrder() core.Qt__SortOrder { + if ptr.Pointer() != nil { + return core.Qt__SortOrder(C.QHeaderView_SortIndicatorOrder(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QHeaderView) SortIndicatorSection() int { + if ptr.Pointer() != nil { + return int(C.QHeaderView_SortIndicatorSection(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QHeaderView) StretchSectionCount() int { + if ptr.Pointer() != nil { + return int(C.QHeaderView_StretchSectionCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QHeaderView) SwapSections(first int, second int) { + if ptr.Pointer() != nil { + C.QHeaderView_SwapSections(C.QtObjectPtr(ptr.Pointer()), C.int(first), C.int(second)) + } +} + +func (ptr *QHeaderView) VisualIndex(logicalIndex int) int { + if ptr.Pointer() != nil { + return int(C.QHeaderView_VisualIndex(C.QtObjectPtr(ptr.Pointer()), C.int(logicalIndex))) + } + return 0 +} + +func (ptr *QHeaderView) VisualIndexAt(position int) int { + if ptr.Pointer() != nil { + return int(C.QHeaderView_VisualIndexAt(C.QtObjectPtr(ptr.Pointer()), C.int(position))) + } + return 0 +} + +func (ptr *QHeaderView) DestroyQHeaderView() { + if ptr.Pointer() != nil { + C.QHeaderView_DestroyQHeaderView(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qheaderview.h b/widgets/qheaderview.h new file mode 100755 index 00000000..52e61e68 --- /dev/null +++ b/widgets/qheaderview.h @@ -0,0 +1,93 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QHeaderView_CascadingSectionResizes(QtObjectPtr ptr); +int QHeaderView_DefaultAlignment(QtObjectPtr ptr); +int QHeaderView_DefaultSectionSize(QtObjectPtr ptr); +int QHeaderView_HighlightSections(QtObjectPtr ptr); +int QHeaderView_IsSortIndicatorShown(QtObjectPtr ptr); +int QHeaderView_MaximumSectionSize(QtObjectPtr ptr); +int QHeaderView_MinimumSectionSize(QtObjectPtr ptr); +void QHeaderView_ResetDefaultSectionSize(QtObjectPtr ptr); +void QHeaderView_ResizeSection(QtObjectPtr ptr, int logicalIndex, int size); +void QHeaderView_SetCascadingSectionResizes(QtObjectPtr ptr, int enable); +void QHeaderView_SetDefaultAlignment(QtObjectPtr ptr, int alignment); +void QHeaderView_SetDefaultSectionSize(QtObjectPtr ptr, int size); +void QHeaderView_SetHighlightSections(QtObjectPtr ptr, int highlight); +void QHeaderView_SetMaximumSectionSize(QtObjectPtr ptr, int size); +void QHeaderView_SetMinimumSectionSize(QtObjectPtr ptr, int size); +void QHeaderView_SetOffset(QtObjectPtr ptr, int offset); +void QHeaderView_SetSortIndicatorShown(QtObjectPtr ptr, int show); +void QHeaderView_SetStretchLastSection(QtObjectPtr ptr, int stretch); +int QHeaderView_StretchLastSection(QtObjectPtr ptr); +int QHeaderView_Count(QtObjectPtr ptr); +void QHeaderView_ConnectGeometriesChanged(QtObjectPtr ptr); +void QHeaderView_DisconnectGeometriesChanged(QtObjectPtr ptr); +void QHeaderView_HeaderDataChanged(QtObjectPtr ptr, int orientation, int logicalFirst, int logicalLast); +int QHeaderView_HiddenSectionCount(QtObjectPtr ptr); +void QHeaderView_HideSection(QtObjectPtr ptr, int logicalIndex); +int QHeaderView_IsSectionHidden(QtObjectPtr ptr, int logicalIndex); +int QHeaderView_Length(QtObjectPtr ptr); +int QHeaderView_LogicalIndex(QtObjectPtr ptr, int visualIndex); +int QHeaderView_LogicalIndexAt3(QtObjectPtr ptr, QtObjectPtr pos); +int QHeaderView_LogicalIndexAt(QtObjectPtr ptr, int position); +int QHeaderView_LogicalIndexAt2(QtObjectPtr ptr, int x, int y); +void QHeaderView_MoveSection(QtObjectPtr ptr, int from, int to); +int QHeaderView_Offset(QtObjectPtr ptr); +int QHeaderView_Orientation(QtObjectPtr ptr); +void QHeaderView_Reset(QtObjectPtr ptr); +int QHeaderView_ResizeContentsPrecision(QtObjectPtr ptr); +void QHeaderView_ResizeSections(QtObjectPtr ptr, int mode); +int QHeaderView_RestoreState(QtObjectPtr ptr, QtObjectPtr state); +void QHeaderView_ConnectSectionClicked(QtObjectPtr ptr); +void QHeaderView_DisconnectSectionClicked(QtObjectPtr ptr); +void QHeaderView_ConnectSectionCountChanged(QtObjectPtr ptr); +void QHeaderView_DisconnectSectionCountChanged(QtObjectPtr ptr); +void QHeaderView_ConnectSectionDoubleClicked(QtObjectPtr ptr); +void QHeaderView_DisconnectSectionDoubleClicked(QtObjectPtr ptr); +void QHeaderView_ConnectSectionEntered(QtObjectPtr ptr); +void QHeaderView_DisconnectSectionEntered(QtObjectPtr ptr); +void QHeaderView_ConnectSectionHandleDoubleClicked(QtObjectPtr ptr); +void QHeaderView_DisconnectSectionHandleDoubleClicked(QtObjectPtr ptr); +void QHeaderView_ConnectSectionMoved(QtObjectPtr ptr); +void QHeaderView_DisconnectSectionMoved(QtObjectPtr ptr); +int QHeaderView_SectionPosition(QtObjectPtr ptr, int logicalIndex); +void QHeaderView_ConnectSectionPressed(QtObjectPtr ptr); +void QHeaderView_DisconnectSectionPressed(QtObjectPtr ptr); +int QHeaderView_SectionResizeMode(QtObjectPtr ptr, int logicalIndex); +void QHeaderView_ConnectSectionResized(QtObjectPtr ptr); +void QHeaderView_DisconnectSectionResized(QtObjectPtr ptr); +int QHeaderView_SectionSize(QtObjectPtr ptr, int logicalIndex); +int QHeaderView_SectionSizeHint(QtObjectPtr ptr, int logicalIndex); +int QHeaderView_SectionViewportPosition(QtObjectPtr ptr, int logicalIndex); +int QHeaderView_SectionsClickable(QtObjectPtr ptr); +int QHeaderView_SectionsHidden(QtObjectPtr ptr); +int QHeaderView_SectionsMovable(QtObjectPtr ptr); +int QHeaderView_SectionsMoved(QtObjectPtr ptr); +void QHeaderView_SetModel(QtObjectPtr ptr, QtObjectPtr model); +void QHeaderView_SetOffsetToLastSection(QtObjectPtr ptr); +void QHeaderView_SetOffsetToSectionPosition(QtObjectPtr ptr, int visualSectionNumber); +void QHeaderView_SetResizeContentsPrecision(QtObjectPtr ptr, int precision); +void QHeaderView_SetSectionHidden(QtObjectPtr ptr, int logicalIndex, int hide); +void QHeaderView_SetSectionResizeMode(QtObjectPtr ptr, int mode); +void QHeaderView_SetSectionResizeMode2(QtObjectPtr ptr, int logicalIndex, int mode); +void QHeaderView_SetSectionsClickable(QtObjectPtr ptr, int clickable); +void QHeaderView_SetSectionsMovable(QtObjectPtr ptr, int movable); +void QHeaderView_SetSortIndicator(QtObjectPtr ptr, int logicalIndex, int order); +void QHeaderView_SetVisible(QtObjectPtr ptr, int v); +void QHeaderView_ShowSection(QtObjectPtr ptr, int logicalIndex); +void QHeaderView_ConnectSortIndicatorChanged(QtObjectPtr ptr); +void QHeaderView_DisconnectSortIndicatorChanged(QtObjectPtr ptr); +int QHeaderView_SortIndicatorOrder(QtObjectPtr ptr); +int QHeaderView_SortIndicatorSection(QtObjectPtr ptr); +int QHeaderView_StretchSectionCount(QtObjectPtr ptr); +void QHeaderView_SwapSections(QtObjectPtr ptr, int first, int second); +int QHeaderView_VisualIndex(QtObjectPtr ptr, int logicalIndex); +int QHeaderView_VisualIndexAt(QtObjectPtr ptr, int position); +void QHeaderView_DestroyQHeaderView(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qinputdialog.cpp b/widgets/qinputdialog.cpp new file mode 100755 index 00000000..d1e594e2 --- /dev/null +++ b/widgets/qinputdialog.cpp @@ -0,0 +1,212 @@ +#include "qinputdialog.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQInputDialog: public QInputDialog { +public: +void Signal_IntValueChanged(int value){callbackQInputDialogIntValueChanged(this->objectName().toUtf8().data(), value);}; +void Signal_IntValueSelected(int value){callbackQInputDialogIntValueSelected(this->objectName().toUtf8().data(), value);}; +void Signal_TextValueChanged(const QString & text){callbackQInputDialogTextValueChanged(this->objectName().toUtf8().data(), text.toUtf8().data());}; +void Signal_TextValueSelected(const QString & text){callbackQInputDialogTextValueSelected(this->objectName().toUtf8().data(), text.toUtf8().data());}; +}; + +char* QInputDialog_CancelButtonText(QtObjectPtr ptr){ + return static_cast(ptr)->cancelButtonText().toUtf8().data(); +} + +char* QInputDialog_ComboBoxItems(QtObjectPtr ptr){ + return static_cast(ptr)->comboBoxItems().join("|").toUtf8().data(); +} + +int QInputDialog_DoubleDecimals(QtObjectPtr ptr){ + return static_cast(ptr)->doubleDecimals(); +} + +int QInputDialog_InputMode(QtObjectPtr ptr){ + return static_cast(ptr)->inputMode(); +} + +int QInputDialog_IntMaximum(QtObjectPtr ptr){ + return static_cast(ptr)->intMaximum(); +} + +int QInputDialog_IntMinimum(QtObjectPtr ptr){ + return static_cast(ptr)->intMinimum(); +} + +int QInputDialog_IntStep(QtObjectPtr ptr){ + return static_cast(ptr)->intStep(); +} + +int QInputDialog_IntValue(QtObjectPtr ptr){ + return static_cast(ptr)->intValue(); +} + +int QInputDialog_IsComboBoxEditable(QtObjectPtr ptr){ + return static_cast(ptr)->isComboBoxEditable(); +} + +char* QInputDialog_LabelText(QtObjectPtr ptr){ + return static_cast(ptr)->labelText().toUtf8().data(); +} + +char* QInputDialog_OkButtonText(QtObjectPtr ptr){ + return static_cast(ptr)->okButtonText().toUtf8().data(); +} + +int QInputDialog_Options(QtObjectPtr ptr){ + return static_cast(ptr)->options(); +} + +void QInputDialog_SetCancelButtonText(QtObjectPtr ptr, char* text){ + static_cast(ptr)->setCancelButtonText(QString(text)); +} + +void QInputDialog_SetComboBoxEditable(QtObjectPtr ptr, int editable){ + static_cast(ptr)->setComboBoxEditable(editable != 0); +} + +void QInputDialog_SetComboBoxItems(QtObjectPtr ptr, char* items){ + static_cast(ptr)->setComboBoxItems(QString(items).split("|", QString::SkipEmptyParts)); +} + +void QInputDialog_SetDoubleDecimals(QtObjectPtr ptr, int decimals){ + static_cast(ptr)->setDoubleDecimals(decimals); +} + +void QInputDialog_SetInputMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setInputMode(static_cast(mode)); +} + +void QInputDialog_SetIntMaximum(QtObjectPtr ptr, int max){ + static_cast(ptr)->setIntMaximum(max); +} + +void QInputDialog_SetIntMinimum(QtObjectPtr ptr, int min){ + static_cast(ptr)->setIntMinimum(min); +} + +void QInputDialog_SetIntStep(QtObjectPtr ptr, int step){ + static_cast(ptr)->setIntStep(step); +} + +void QInputDialog_SetIntValue(QtObjectPtr ptr, int value){ + static_cast(ptr)->setIntValue(value); +} + +void QInputDialog_SetLabelText(QtObjectPtr ptr, char* text){ + static_cast(ptr)->setLabelText(QString(text)); +} + +void QInputDialog_SetOkButtonText(QtObjectPtr ptr, char* text){ + static_cast(ptr)->setOkButtonText(QString(text)); +} + +void QInputDialog_SetOptions(QtObjectPtr ptr, int options){ + static_cast(ptr)->setOptions(static_cast(options)); +} + +void QInputDialog_SetTextEchoMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setTextEchoMode(static_cast(mode)); +} + +void QInputDialog_SetTextValue(QtObjectPtr ptr, char* text){ + static_cast(ptr)->setTextValue(QString(text)); +} + +int QInputDialog_TextEchoMode(QtObjectPtr ptr){ + return static_cast(ptr)->textEchoMode(); +} + +char* QInputDialog_TextValue(QtObjectPtr ptr){ + return static_cast(ptr)->textValue().toUtf8().data(); +} + +QtObjectPtr QInputDialog_NewQInputDialog(QtObjectPtr parent, int flags){ + return new QInputDialog(static_cast(parent), static_cast(flags)); +} + +void QInputDialog_Done(QtObjectPtr ptr, int result){ + static_cast(ptr)->done(result); +} + +int QInputDialog_QInputDialog_GetInt(QtObjectPtr parent, char* title, char* label, int value, int min, int max, int step, int ok, int flags){ + return QInputDialog::getInt(static_cast(parent), QString(title), QString(label), value, min, max, step, NULL, static_cast(flags)); +} + +char* QInputDialog_QInputDialog_GetItem(QtObjectPtr parent, char* title, char* label, char* items, int current, int editable, int ok, int flags, int inputMethodHints){ + return QInputDialog::getItem(static_cast(parent), QString(title), QString(label), QString(items).split("|", QString::SkipEmptyParts), current, editable != 0, NULL, static_cast(flags), static_cast(inputMethodHints)).toUtf8().data(); +} + +char* QInputDialog_QInputDialog_GetMultiLineText(QtObjectPtr parent, char* title, char* label, char* text, int ok, int flags, int inputMethodHints){ + return QInputDialog::getMultiLineText(static_cast(parent), QString(title), QString(label), QString(text), NULL, static_cast(flags), static_cast(inputMethodHints)).toUtf8().data(); +} + +char* QInputDialog_QInputDialog_GetText(QtObjectPtr parent, char* title, char* label, int mode, char* text, int ok, int flags, int inputMethodHints){ + return QInputDialog::getText(static_cast(parent), QString(title), QString(label), static_cast(mode), QString(text), NULL, static_cast(flags), static_cast(inputMethodHints)).toUtf8().data(); +} + +void QInputDialog_ConnectIntValueChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QInputDialog::intValueChanged), static_cast(ptr), static_cast(&MyQInputDialog::Signal_IntValueChanged));; +} + +void QInputDialog_DisconnectIntValueChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QInputDialog::intValueChanged), static_cast(ptr), static_cast(&MyQInputDialog::Signal_IntValueChanged));; +} + +void QInputDialog_ConnectIntValueSelected(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QInputDialog::intValueSelected), static_cast(ptr), static_cast(&MyQInputDialog::Signal_IntValueSelected));; +} + +void QInputDialog_DisconnectIntValueSelected(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QInputDialog::intValueSelected), static_cast(ptr), static_cast(&MyQInputDialog::Signal_IntValueSelected));; +} + +void QInputDialog_Open(QtObjectPtr ptr, QtObjectPtr receiver, char* member){ + static_cast(ptr)->open(static_cast(receiver), const_cast(member)); +} + +void QInputDialog_SetIntRange(QtObjectPtr ptr, int min, int max){ + static_cast(ptr)->setIntRange(min, max); +} + +void QInputDialog_SetOption(QtObjectPtr ptr, int option, int on){ + static_cast(ptr)->setOption(static_cast(option), on != 0); +} + +void QInputDialog_SetVisible(QtObjectPtr ptr, int visible){ + static_cast(ptr)->setVisible(visible != 0); +} + +int QInputDialog_TestOption(QtObjectPtr ptr, int option){ + return static_cast(ptr)->testOption(static_cast(option)); +} + +void QInputDialog_ConnectTextValueChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QInputDialog::textValueChanged), static_cast(ptr), static_cast(&MyQInputDialog::Signal_TextValueChanged));; +} + +void QInputDialog_DisconnectTextValueChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QInputDialog::textValueChanged), static_cast(ptr), static_cast(&MyQInputDialog::Signal_TextValueChanged));; +} + +void QInputDialog_ConnectTextValueSelected(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QInputDialog::textValueSelected), static_cast(ptr), static_cast(&MyQInputDialog::Signal_TextValueSelected));; +} + +void QInputDialog_DisconnectTextValueSelected(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QInputDialog::textValueSelected), static_cast(ptr), static_cast(&MyQInputDialog::Signal_TextValueSelected));; +} + +void QInputDialog_DestroyQInputDialog(QtObjectPtr ptr){ + static_cast(ptr)->~QInputDialog(); +} + diff --git a/widgets/qinputdialog.go b/widgets/qinputdialog.go new file mode 100755 index 00000000..a0d6f28b --- /dev/null +++ b/widgets/qinputdialog.go @@ -0,0 +1,379 @@ +package widgets + +//#include "qinputdialog.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QInputDialog struct { + QDialog +} + +type QInputDialogITF interface { + QDialogITF + QInputDialogPTR() *QInputDialog +} + +func PointerFromQInputDialog(ptr QInputDialogITF) unsafe.Pointer { + if ptr != nil { + return ptr.QInputDialogPTR().Pointer() + } + return nil +} + +func QInputDialogFromPointer(ptr unsafe.Pointer) *QInputDialog { + var n = new(QInputDialog) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QInputDialog_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QInputDialog) QInputDialogPTR() *QInputDialog { + return ptr +} + +//QInputDialog::InputDialogOption +type QInputDialog__InputDialogOption int + +var ( + QInputDialog__NoButtons = QInputDialog__InputDialogOption(0x00000001) + QInputDialog__UseListViewForComboBoxItems = QInputDialog__InputDialogOption(0x00000002) + QInputDialog__UsePlainTextEditForTextInput = QInputDialog__InputDialogOption(0x00000004) +) + +//QInputDialog::InputMode +type QInputDialog__InputMode int + +var ( + QInputDialog__TextInput = QInputDialog__InputMode(0) + QInputDialog__IntInput = QInputDialog__InputMode(1) + QInputDialog__DoubleInput = QInputDialog__InputMode(2) +) + +func (ptr *QInputDialog) CancelButtonText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QInputDialog_CancelButtonText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QInputDialog) ComboBoxItems() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QInputDialog_ComboBoxItems(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QInputDialog) DoubleDecimals() int { + if ptr.Pointer() != nil { + return int(C.QInputDialog_DoubleDecimals(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QInputDialog) InputMode() QInputDialog__InputMode { + if ptr.Pointer() != nil { + return QInputDialog__InputMode(C.QInputDialog_InputMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QInputDialog) IntMaximum() int { + if ptr.Pointer() != nil { + return int(C.QInputDialog_IntMaximum(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QInputDialog) IntMinimum() int { + if ptr.Pointer() != nil { + return int(C.QInputDialog_IntMinimum(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QInputDialog) IntStep() int { + if ptr.Pointer() != nil { + return int(C.QInputDialog_IntStep(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QInputDialog) IntValue() int { + if ptr.Pointer() != nil { + return int(C.QInputDialog_IntValue(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QInputDialog) IsComboBoxEditable() bool { + if ptr.Pointer() != nil { + return C.QInputDialog_IsComboBoxEditable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QInputDialog) LabelText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QInputDialog_LabelText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QInputDialog) OkButtonText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QInputDialog_OkButtonText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QInputDialog) Options() QInputDialog__InputDialogOption { + if ptr.Pointer() != nil { + return QInputDialog__InputDialogOption(C.QInputDialog_Options(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QInputDialog) SetCancelButtonText(text string) { + if ptr.Pointer() != nil { + C.QInputDialog_SetCancelButtonText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QInputDialog) SetComboBoxEditable(editable bool) { + if ptr.Pointer() != nil { + C.QInputDialog_SetComboBoxEditable(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(editable))) + } +} + +func (ptr *QInputDialog) SetComboBoxItems(items []string) { + if ptr.Pointer() != nil { + C.QInputDialog_SetComboBoxItems(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(items, "|"))) + } +} + +func (ptr *QInputDialog) SetDoubleDecimals(decimals int) { + if ptr.Pointer() != nil { + C.QInputDialog_SetDoubleDecimals(C.QtObjectPtr(ptr.Pointer()), C.int(decimals)) + } +} + +func (ptr *QInputDialog) SetInputMode(mode QInputDialog__InputMode) { + if ptr.Pointer() != nil { + C.QInputDialog_SetInputMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QInputDialog) SetIntMaximum(max int) { + if ptr.Pointer() != nil { + C.QInputDialog_SetIntMaximum(C.QtObjectPtr(ptr.Pointer()), C.int(max)) + } +} + +func (ptr *QInputDialog) SetIntMinimum(min int) { + if ptr.Pointer() != nil { + C.QInputDialog_SetIntMinimum(C.QtObjectPtr(ptr.Pointer()), C.int(min)) + } +} + +func (ptr *QInputDialog) SetIntStep(step int) { + if ptr.Pointer() != nil { + C.QInputDialog_SetIntStep(C.QtObjectPtr(ptr.Pointer()), C.int(step)) + } +} + +func (ptr *QInputDialog) SetIntValue(value int) { + if ptr.Pointer() != nil { + C.QInputDialog_SetIntValue(C.QtObjectPtr(ptr.Pointer()), C.int(value)) + } +} + +func (ptr *QInputDialog) SetLabelText(text string) { + if ptr.Pointer() != nil { + C.QInputDialog_SetLabelText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QInputDialog) SetOkButtonText(text string) { + if ptr.Pointer() != nil { + C.QInputDialog_SetOkButtonText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QInputDialog) SetOptions(options QInputDialog__InputDialogOption) { + if ptr.Pointer() != nil { + C.QInputDialog_SetOptions(C.QtObjectPtr(ptr.Pointer()), C.int(options)) + } +} + +func (ptr *QInputDialog) SetTextEchoMode(mode QLineEdit__EchoMode) { + if ptr.Pointer() != nil { + C.QInputDialog_SetTextEchoMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QInputDialog) SetTextValue(text string) { + if ptr.Pointer() != nil { + C.QInputDialog_SetTextValue(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QInputDialog) TextEchoMode() QLineEdit__EchoMode { + if ptr.Pointer() != nil { + return QLineEdit__EchoMode(C.QInputDialog_TextEchoMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QInputDialog) TextValue() string { + if ptr.Pointer() != nil { + return C.GoString(C.QInputDialog_TextValue(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func NewQInputDialog(parent QWidgetITF, flags core.Qt__WindowType) *QInputDialog { + return QInputDialogFromPointer(unsafe.Pointer(C.QInputDialog_NewQInputDialog(C.QtObjectPtr(PointerFromQWidget(parent)), C.int(flags)))) +} + +func (ptr *QInputDialog) Done(result int) { + if ptr.Pointer() != nil { + C.QInputDialog_Done(C.QtObjectPtr(ptr.Pointer()), C.int(result)) + } +} + +func QInputDialog_GetInt(parent QWidgetITF, title string, label string, value int, min int, max int, step int, ok bool, flags core.Qt__WindowType) int { + return int(C.QInputDialog_QInputDialog_GetInt(C.QtObjectPtr(PointerFromQWidget(parent)), C.CString(title), C.CString(label), C.int(value), C.int(min), C.int(max), C.int(step), C.int(qt.GoBoolToInt(ok)), C.int(flags))) +} + +func QInputDialog_GetItem(parent QWidgetITF, title string, label string, items []string, current int, editable bool, ok bool, flags core.Qt__WindowType, inputMethodHints core.Qt__InputMethodHint) string { + return C.GoString(C.QInputDialog_QInputDialog_GetItem(C.QtObjectPtr(PointerFromQWidget(parent)), C.CString(title), C.CString(label), C.CString(strings.Join(items, "|")), C.int(current), C.int(qt.GoBoolToInt(editable)), C.int(qt.GoBoolToInt(ok)), C.int(flags), C.int(inputMethodHints))) +} + +func QInputDialog_GetMultiLineText(parent QWidgetITF, title string, label string, text string, ok bool, flags core.Qt__WindowType, inputMethodHints core.Qt__InputMethodHint) string { + return C.GoString(C.QInputDialog_QInputDialog_GetMultiLineText(C.QtObjectPtr(PointerFromQWidget(parent)), C.CString(title), C.CString(label), C.CString(text), C.int(qt.GoBoolToInt(ok)), C.int(flags), C.int(inputMethodHints))) +} + +func QInputDialog_GetText(parent QWidgetITF, title string, label string, mode QLineEdit__EchoMode, text string, ok bool, flags core.Qt__WindowType, inputMethodHints core.Qt__InputMethodHint) string { + return C.GoString(C.QInputDialog_QInputDialog_GetText(C.QtObjectPtr(PointerFromQWidget(parent)), C.CString(title), C.CString(label), C.int(mode), C.CString(text), C.int(qt.GoBoolToInt(ok)), C.int(flags), C.int(inputMethodHints))) +} + +func (ptr *QInputDialog) ConnectIntValueChanged(f func(value int)) { + if ptr.Pointer() != nil { + C.QInputDialog_ConnectIntValueChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "intValueChanged", f) + } +} + +func (ptr *QInputDialog) DisconnectIntValueChanged() { + if ptr.Pointer() != nil { + C.QInputDialog_DisconnectIntValueChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "intValueChanged") + } +} + +//export callbackQInputDialogIntValueChanged +func callbackQInputDialogIntValueChanged(ptrName *C.char, value C.int) { + qt.GetSignal(C.GoString(ptrName), "intValueChanged").(func(int))(int(value)) +} + +func (ptr *QInputDialog) ConnectIntValueSelected(f func(value int)) { + if ptr.Pointer() != nil { + C.QInputDialog_ConnectIntValueSelected(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "intValueSelected", f) + } +} + +func (ptr *QInputDialog) DisconnectIntValueSelected() { + if ptr.Pointer() != nil { + C.QInputDialog_DisconnectIntValueSelected(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "intValueSelected") + } +} + +//export callbackQInputDialogIntValueSelected +func callbackQInputDialogIntValueSelected(ptrName *C.char, value C.int) { + qt.GetSignal(C.GoString(ptrName), "intValueSelected").(func(int))(int(value)) +} + +func (ptr *QInputDialog) Open(receiver core.QObjectITF, member string) { + if ptr.Pointer() != nil { + C.QInputDialog_Open(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(receiver)), C.CString(member)) + } +} + +func (ptr *QInputDialog) SetIntRange(min int, max int) { + if ptr.Pointer() != nil { + C.QInputDialog_SetIntRange(C.QtObjectPtr(ptr.Pointer()), C.int(min), C.int(max)) + } +} + +func (ptr *QInputDialog) SetOption(option QInputDialog__InputDialogOption, on bool) { + if ptr.Pointer() != nil { + C.QInputDialog_SetOption(C.QtObjectPtr(ptr.Pointer()), C.int(option), C.int(qt.GoBoolToInt(on))) + } +} + +func (ptr *QInputDialog) SetVisible(visible bool) { + if ptr.Pointer() != nil { + C.QInputDialog_SetVisible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(visible))) + } +} + +func (ptr *QInputDialog) TestOption(option QInputDialog__InputDialogOption) bool { + if ptr.Pointer() != nil { + return C.QInputDialog_TestOption(C.QtObjectPtr(ptr.Pointer()), C.int(option)) != 0 + } + return false +} + +func (ptr *QInputDialog) ConnectTextValueChanged(f func(text string)) { + if ptr.Pointer() != nil { + C.QInputDialog_ConnectTextValueChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "textValueChanged", f) + } +} + +func (ptr *QInputDialog) DisconnectTextValueChanged() { + if ptr.Pointer() != nil { + C.QInputDialog_DisconnectTextValueChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "textValueChanged") + } +} + +//export callbackQInputDialogTextValueChanged +func callbackQInputDialogTextValueChanged(ptrName *C.char, text *C.char) { + qt.GetSignal(C.GoString(ptrName), "textValueChanged").(func(string))(C.GoString(text)) +} + +func (ptr *QInputDialog) ConnectTextValueSelected(f func(text string)) { + if ptr.Pointer() != nil { + C.QInputDialog_ConnectTextValueSelected(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "textValueSelected", f) + } +} + +func (ptr *QInputDialog) DisconnectTextValueSelected() { + if ptr.Pointer() != nil { + C.QInputDialog_DisconnectTextValueSelected(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "textValueSelected") + } +} + +//export callbackQInputDialogTextValueSelected +func callbackQInputDialogTextValueSelected(ptrName *C.char, text *C.char) { + qt.GetSignal(C.GoString(ptrName), "textValueSelected").(func(string))(C.GoString(text)) +} + +func (ptr *QInputDialog) DestroyQInputDialog() { + if ptr.Pointer() != nil { + C.QInputDialog_DestroyQInputDialog(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qinputdialog.h b/widgets/qinputdialog.h new file mode 100755 index 00000000..870119fc --- /dev/null +++ b/widgets/qinputdialog.h @@ -0,0 +1,57 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QInputDialog_CancelButtonText(QtObjectPtr ptr); +char* QInputDialog_ComboBoxItems(QtObjectPtr ptr); +int QInputDialog_DoubleDecimals(QtObjectPtr ptr); +int QInputDialog_InputMode(QtObjectPtr ptr); +int QInputDialog_IntMaximum(QtObjectPtr ptr); +int QInputDialog_IntMinimum(QtObjectPtr ptr); +int QInputDialog_IntStep(QtObjectPtr ptr); +int QInputDialog_IntValue(QtObjectPtr ptr); +int QInputDialog_IsComboBoxEditable(QtObjectPtr ptr); +char* QInputDialog_LabelText(QtObjectPtr ptr); +char* QInputDialog_OkButtonText(QtObjectPtr ptr); +int QInputDialog_Options(QtObjectPtr ptr); +void QInputDialog_SetCancelButtonText(QtObjectPtr ptr, char* text); +void QInputDialog_SetComboBoxEditable(QtObjectPtr ptr, int editable); +void QInputDialog_SetComboBoxItems(QtObjectPtr ptr, char* items); +void QInputDialog_SetDoubleDecimals(QtObjectPtr ptr, int decimals); +void QInputDialog_SetInputMode(QtObjectPtr ptr, int mode); +void QInputDialog_SetIntMaximum(QtObjectPtr ptr, int max); +void QInputDialog_SetIntMinimum(QtObjectPtr ptr, int min); +void QInputDialog_SetIntStep(QtObjectPtr ptr, int step); +void QInputDialog_SetIntValue(QtObjectPtr ptr, int value); +void QInputDialog_SetLabelText(QtObjectPtr ptr, char* text); +void QInputDialog_SetOkButtonText(QtObjectPtr ptr, char* text); +void QInputDialog_SetOptions(QtObjectPtr ptr, int options); +void QInputDialog_SetTextEchoMode(QtObjectPtr ptr, int mode); +void QInputDialog_SetTextValue(QtObjectPtr ptr, char* text); +int QInputDialog_TextEchoMode(QtObjectPtr ptr); +char* QInputDialog_TextValue(QtObjectPtr ptr); +QtObjectPtr QInputDialog_NewQInputDialog(QtObjectPtr parent, int flags); +void QInputDialog_Done(QtObjectPtr ptr, int result); +int QInputDialog_QInputDialog_GetInt(QtObjectPtr parent, char* title, char* label, int value, int min, int max, int step, int ok, int flags); +char* QInputDialog_QInputDialog_GetItem(QtObjectPtr parent, char* title, char* label, char* items, int current, int editable, int ok, int flags, int inputMethodHints); +char* QInputDialog_QInputDialog_GetMultiLineText(QtObjectPtr parent, char* title, char* label, char* text, int ok, int flags, int inputMethodHints); +char* QInputDialog_QInputDialog_GetText(QtObjectPtr parent, char* title, char* label, int mode, char* text, int ok, int flags, int inputMethodHints); +void QInputDialog_ConnectIntValueChanged(QtObjectPtr ptr); +void QInputDialog_DisconnectIntValueChanged(QtObjectPtr ptr); +void QInputDialog_ConnectIntValueSelected(QtObjectPtr ptr); +void QInputDialog_DisconnectIntValueSelected(QtObjectPtr ptr); +void QInputDialog_Open(QtObjectPtr ptr, QtObjectPtr receiver, char* member); +void QInputDialog_SetIntRange(QtObjectPtr ptr, int min, int max); +void QInputDialog_SetOption(QtObjectPtr ptr, int option, int on); +void QInputDialog_SetVisible(QtObjectPtr ptr, int visible); +int QInputDialog_TestOption(QtObjectPtr ptr, int option); +void QInputDialog_ConnectTextValueChanged(QtObjectPtr ptr); +void QInputDialog_DisconnectTextValueChanged(QtObjectPtr ptr); +void QInputDialog_ConnectTextValueSelected(QtObjectPtr ptr); +void QInputDialog_DisconnectTextValueSelected(QtObjectPtr ptr); +void QInputDialog_DestroyQInputDialog(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qitemdelegate.cpp b/widgets/qitemdelegate.cpp new file mode 100755 index 00000000..25f1d25d --- /dev/null +++ b/widgets/qitemdelegate.cpp @@ -0,0 +1,64 @@ +#include "qitemdelegate.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQItemDelegate: public QItemDelegate { +public: +}; + +int QItemDelegate_HasClipping(QtObjectPtr ptr){ + return static_cast(ptr)->hasClipping(); +} + +void QItemDelegate_SetClipping(QtObjectPtr ptr, int clip){ + static_cast(ptr)->setClipping(clip != 0); +} + +QtObjectPtr QItemDelegate_NewQItemDelegate(QtObjectPtr parent){ + return new QItemDelegate(static_cast(parent)); +} + +QtObjectPtr QItemDelegate_CreateEditor(QtObjectPtr ptr, QtObjectPtr parent, QtObjectPtr option, QtObjectPtr index){ + return static_cast(ptr)->createEditor(static_cast(parent), *static_cast(option), *static_cast(index)); +} + +QtObjectPtr QItemDelegate_ItemEditorFactory(QtObjectPtr ptr){ + return static_cast(ptr)->itemEditorFactory(); +} + +void QItemDelegate_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr index){ + static_cast(ptr)->paint(static_cast(painter), *static_cast(option), *static_cast(index)); +} + +void QItemDelegate_SetEditorData(QtObjectPtr ptr, QtObjectPtr editor, QtObjectPtr index){ + static_cast(ptr)->setEditorData(static_cast(editor), *static_cast(index)); +} + +void QItemDelegate_SetItemEditorFactory(QtObjectPtr ptr, QtObjectPtr factory){ + static_cast(ptr)->setItemEditorFactory(static_cast(factory)); +} + +void QItemDelegate_SetModelData(QtObjectPtr ptr, QtObjectPtr editor, QtObjectPtr model, QtObjectPtr index){ + static_cast(ptr)->setModelData(static_cast(editor), static_cast(model), *static_cast(index)); +} + +void QItemDelegate_UpdateEditorGeometry(QtObjectPtr ptr, QtObjectPtr editor, QtObjectPtr option, QtObjectPtr index){ + static_cast(ptr)->updateEditorGeometry(static_cast(editor), *static_cast(option), *static_cast(index)); +} + +void QItemDelegate_DestroyQItemDelegate(QtObjectPtr ptr){ + static_cast(ptr)->~QItemDelegate(); +} + diff --git a/widgets/qitemdelegate.go b/widgets/qitemdelegate.go new file mode 100755 index 00000000..a32c7737 --- /dev/null +++ b/widgets/qitemdelegate.go @@ -0,0 +1,107 @@ +package widgets + +//#include "qitemdelegate.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QItemDelegate struct { + QAbstractItemDelegate +} + +type QItemDelegateITF interface { + QAbstractItemDelegateITF + QItemDelegatePTR() *QItemDelegate +} + +func PointerFromQItemDelegate(ptr QItemDelegateITF) unsafe.Pointer { + if ptr != nil { + return ptr.QItemDelegatePTR().Pointer() + } + return nil +} + +func QItemDelegateFromPointer(ptr unsafe.Pointer) *QItemDelegate { + var n = new(QItemDelegate) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QItemDelegate_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QItemDelegate) QItemDelegatePTR() *QItemDelegate { + return ptr +} + +func (ptr *QItemDelegate) HasClipping() bool { + if ptr.Pointer() != nil { + return C.QItemDelegate_HasClipping(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QItemDelegate) SetClipping(clip bool) { + if ptr.Pointer() != nil { + C.QItemDelegate_SetClipping(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(clip))) + } +} + +func NewQItemDelegate(parent core.QObjectITF) *QItemDelegate { + return QItemDelegateFromPointer(unsafe.Pointer(C.QItemDelegate_NewQItemDelegate(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QItemDelegate) CreateEditor(parent QWidgetITF, option QStyleOptionViewItemITF, index core.QModelIndexITF) *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QItemDelegate_CreateEditor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(parent)), C.QtObjectPtr(PointerFromQStyleOptionViewItem(option)), C.QtObjectPtr(core.PointerFromQModelIndex(index))))) + } + return nil +} + +func (ptr *QItemDelegate) ItemEditorFactory() *QItemEditorFactory { + if ptr.Pointer() != nil { + return QItemEditorFactoryFromPointer(unsafe.Pointer(C.QItemDelegate_ItemEditorFactory(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QItemDelegate) Paint(painter gui.QPainterITF, option QStyleOptionViewItemITF, index core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QItemDelegate_Paint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(PointerFromQStyleOptionViewItem(option)), C.QtObjectPtr(core.PointerFromQModelIndex(index))) + } +} + +func (ptr *QItemDelegate) SetEditorData(editor QWidgetITF, index core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QItemDelegate_SetEditorData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(editor)), C.QtObjectPtr(core.PointerFromQModelIndex(index))) + } +} + +func (ptr *QItemDelegate) SetItemEditorFactory(factory QItemEditorFactoryITF) { + if ptr.Pointer() != nil { + C.QItemDelegate_SetItemEditorFactory(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQItemEditorFactory(factory))) + } +} + +func (ptr *QItemDelegate) SetModelData(editor QWidgetITF, model core.QAbstractItemModelITF, index core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QItemDelegate_SetModelData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(editor)), C.QtObjectPtr(core.PointerFromQAbstractItemModel(model)), C.QtObjectPtr(core.PointerFromQModelIndex(index))) + } +} + +func (ptr *QItemDelegate) UpdateEditorGeometry(editor QWidgetITF, option QStyleOptionViewItemITF, index core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QItemDelegate_UpdateEditorGeometry(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(editor)), C.QtObjectPtr(PointerFromQStyleOptionViewItem(option)), C.QtObjectPtr(core.PointerFromQModelIndex(index))) + } +} + +func (ptr *QItemDelegate) DestroyQItemDelegate() { + if ptr.Pointer() != nil { + C.QItemDelegate_DestroyQItemDelegate(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qitemdelegate.h b/widgets/qitemdelegate.h new file mode 100755 index 00000000..e64131cb --- /dev/null +++ b/widgets/qitemdelegate.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QItemDelegate_HasClipping(QtObjectPtr ptr); +void QItemDelegate_SetClipping(QtObjectPtr ptr, int clip); +QtObjectPtr QItemDelegate_NewQItemDelegate(QtObjectPtr parent); +QtObjectPtr QItemDelegate_CreateEditor(QtObjectPtr ptr, QtObjectPtr parent, QtObjectPtr option, QtObjectPtr index); +QtObjectPtr QItemDelegate_ItemEditorFactory(QtObjectPtr ptr); +void QItemDelegate_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr index); +void QItemDelegate_SetEditorData(QtObjectPtr ptr, QtObjectPtr editor, QtObjectPtr index); +void QItemDelegate_SetItemEditorFactory(QtObjectPtr ptr, QtObjectPtr factory); +void QItemDelegate_SetModelData(QtObjectPtr ptr, QtObjectPtr editor, QtObjectPtr model, QtObjectPtr index); +void QItemDelegate_UpdateEditorGeometry(QtObjectPtr ptr, QtObjectPtr editor, QtObjectPtr option, QtObjectPtr index); +void QItemDelegate_DestroyQItemDelegate(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qitemeditorcreator.cpp b/widgets/qitemeditorcreator.cpp new file mode 100755 index 00000000..b5ae5ae3 --- /dev/null +++ b/widgets/qitemeditorcreator.cpp @@ -0,0 +1,8 @@ +#include "qitemeditorcreator.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/widgets/qitemeditorcreator.go b/widgets/qitemeditorcreator.go new file mode 100755 index 00000000..151fff86 --- /dev/null +++ b/widgets/qitemeditorcreator.go @@ -0,0 +1,33 @@ +package widgets + +//#include "qitemeditorcreator.h" +import "C" +import ( + "unsafe" +) + +type QItemEditorCreator struct { + QItemEditorCreatorBase +} + +type QItemEditorCreatorITF interface { + QItemEditorCreatorBaseITF + QItemEditorCreatorPTR() *QItemEditorCreator +} + +func PointerFromQItemEditorCreator(ptr QItemEditorCreatorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QItemEditorCreatorPTR().Pointer() + } + return nil +} + +func QItemEditorCreatorFromPointer(ptr unsafe.Pointer) *QItemEditorCreator { + var n = new(QItemEditorCreator) + n.SetPointer(ptr) + return n +} + +func (ptr *QItemEditorCreator) QItemEditorCreatorPTR() *QItemEditorCreator { + return ptr +} diff --git a/widgets/qitemeditorcreator.h b/widgets/qitemeditorcreator.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/widgets/qitemeditorcreator.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qitemeditorcreatorbase.cpp b/widgets/qitemeditorcreatorbase.cpp new file mode 100755 index 00000000..cb553647 --- /dev/null +++ b/widgets/qitemeditorcreatorbase.cpp @@ -0,0 +1,22 @@ +#include "qitemeditorcreatorbase.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQItemEditorCreatorBase: public QItemEditorCreatorBase { +public: +}; + +void QItemEditorCreatorBase_DestroyQItemEditorCreatorBase(QtObjectPtr ptr){ + static_cast(ptr)->~QItemEditorCreatorBase(); +} + +QtObjectPtr QItemEditorCreatorBase_CreateWidget(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->createWidget(static_cast(parent)); +} + diff --git a/widgets/qitemeditorcreatorbase.go b/widgets/qitemeditorcreatorbase.go new file mode 100755 index 00000000..98396456 --- /dev/null +++ b/widgets/qitemeditorcreatorbase.go @@ -0,0 +1,53 @@ +package widgets + +//#include "qitemeditorcreatorbase.h" +import "C" +import ( + "unsafe" +) + +type QItemEditorCreatorBase struct { + ptr unsafe.Pointer +} + +type QItemEditorCreatorBaseITF interface { + QItemEditorCreatorBasePTR() *QItemEditorCreatorBase +} + +func (p *QItemEditorCreatorBase) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QItemEditorCreatorBase) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQItemEditorCreatorBase(ptr QItemEditorCreatorBaseITF) unsafe.Pointer { + if ptr != nil { + return ptr.QItemEditorCreatorBasePTR().Pointer() + } + return nil +} + +func QItemEditorCreatorBaseFromPointer(ptr unsafe.Pointer) *QItemEditorCreatorBase { + var n = new(QItemEditorCreatorBase) + n.SetPointer(ptr) + return n +} + +func (ptr *QItemEditorCreatorBase) QItemEditorCreatorBasePTR() *QItemEditorCreatorBase { + return ptr +} + +func (ptr *QItemEditorCreatorBase) DestroyQItemEditorCreatorBase() { + if ptr.Pointer() != nil { + C.QItemEditorCreatorBase_DestroyQItemEditorCreatorBase(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QItemEditorCreatorBase) CreateWidget(parent QWidgetITF) *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QItemEditorCreatorBase_CreateWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(parent))))) + } + return nil +} diff --git a/widgets/qitemeditorcreatorbase.h b/widgets/qitemeditorcreatorbase.h new file mode 100755 index 00000000..b231deb4 --- /dev/null +++ b/widgets/qitemeditorcreatorbase.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QItemEditorCreatorBase_DestroyQItemEditorCreatorBase(QtObjectPtr ptr); +QtObjectPtr QItemEditorCreatorBase_CreateWidget(QtObjectPtr ptr, QtObjectPtr parent); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qitemeditorfactory.cpp b/widgets/qitemeditorfactory.cpp new file mode 100755 index 00000000..14522ec4 --- /dev/null +++ b/widgets/qitemeditorfactory.cpp @@ -0,0 +1,39 @@ +#include "qitemeditorfactory.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQItemEditorFactory: public QItemEditorFactory { +public: +}; + +QtObjectPtr QItemEditorFactory_NewQItemEditorFactory(){ + return new QItemEditorFactory(); +} + +QtObjectPtr QItemEditorFactory_CreateEditor(QtObjectPtr ptr, int userType, QtObjectPtr parent){ + return static_cast(ptr)->createEditor(userType, static_cast(parent)); +} + +QtObjectPtr QItemEditorFactory_QItemEditorFactory_DefaultFactory(){ + return const_cast(QItemEditorFactory::defaultFactory()); +} + +void QItemEditorFactory_RegisterEditor(QtObjectPtr ptr, int userType, QtObjectPtr creator){ + static_cast(ptr)->registerEditor(userType, static_cast(creator)); +} + +void QItemEditorFactory_QItemEditorFactory_SetDefaultFactory(QtObjectPtr factory){ + QItemEditorFactory::setDefaultFactory(static_cast(factory)); +} + +void QItemEditorFactory_DestroyQItemEditorFactory(QtObjectPtr ptr){ + static_cast(ptr)->~QItemEditorFactory(); +} + diff --git a/widgets/qitemeditorfactory.go b/widgets/qitemeditorfactory.go new file mode 100755 index 00000000..c444545c --- /dev/null +++ b/widgets/qitemeditorfactory.go @@ -0,0 +1,71 @@ +package widgets + +//#include "qitemeditorfactory.h" +import "C" +import ( + "unsafe" +) + +type QItemEditorFactory struct { + ptr unsafe.Pointer +} + +type QItemEditorFactoryITF interface { + QItemEditorFactoryPTR() *QItemEditorFactory +} + +func (p *QItemEditorFactory) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QItemEditorFactory) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQItemEditorFactory(ptr QItemEditorFactoryITF) unsafe.Pointer { + if ptr != nil { + return ptr.QItemEditorFactoryPTR().Pointer() + } + return nil +} + +func QItemEditorFactoryFromPointer(ptr unsafe.Pointer) *QItemEditorFactory { + var n = new(QItemEditorFactory) + n.SetPointer(ptr) + return n +} + +func (ptr *QItemEditorFactory) QItemEditorFactoryPTR() *QItemEditorFactory { + return ptr +} + +func NewQItemEditorFactory() *QItemEditorFactory { + return QItemEditorFactoryFromPointer(unsafe.Pointer(C.QItemEditorFactory_NewQItemEditorFactory())) +} + +func (ptr *QItemEditorFactory) CreateEditor(userType int, parent QWidgetITF) *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QItemEditorFactory_CreateEditor(C.QtObjectPtr(ptr.Pointer()), C.int(userType), C.QtObjectPtr(PointerFromQWidget(parent))))) + } + return nil +} + +func QItemEditorFactory_DefaultFactory() *QItemEditorFactory { + return QItemEditorFactoryFromPointer(unsafe.Pointer(C.QItemEditorFactory_QItemEditorFactory_DefaultFactory())) +} + +func (ptr *QItemEditorFactory) RegisterEditor(userType int, creator QItemEditorCreatorBaseITF) { + if ptr.Pointer() != nil { + C.QItemEditorFactory_RegisterEditor(C.QtObjectPtr(ptr.Pointer()), C.int(userType), C.QtObjectPtr(PointerFromQItemEditorCreatorBase(creator))) + } +} + +func QItemEditorFactory_SetDefaultFactory(factory QItemEditorFactoryITF) { + C.QItemEditorFactory_QItemEditorFactory_SetDefaultFactory(C.QtObjectPtr(PointerFromQItemEditorFactory(factory))) +} + +func (ptr *QItemEditorFactory) DestroyQItemEditorFactory() { + if ptr.Pointer() != nil { + C.QItemEditorFactory_DestroyQItemEditorFactory(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qitemeditorfactory.h b/widgets/qitemeditorfactory.h new file mode 100755 index 00000000..73b4c678 --- /dev/null +++ b/widgets/qitemeditorfactory.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QItemEditorFactory_NewQItemEditorFactory(); +QtObjectPtr QItemEditorFactory_CreateEditor(QtObjectPtr ptr, int userType, QtObjectPtr parent); +QtObjectPtr QItemEditorFactory_QItemEditorFactory_DefaultFactory(); +void QItemEditorFactory_RegisterEditor(QtObjectPtr ptr, int userType, QtObjectPtr creator); +void QItemEditorFactory_QItemEditorFactory_SetDefaultFactory(QtObjectPtr factory); +void QItemEditorFactory_DestroyQItemEditorFactory(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qkeyeventtransition.cpp b/widgets/qkeyeventtransition.cpp new file mode 100755 index 00000000..30bdbf61 --- /dev/null +++ b/widgets/qkeyeventtransition.cpp @@ -0,0 +1,44 @@ +#include "qkeyeventtransition.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQKeyEventTransition: public QKeyEventTransition { +public: +}; + +QtObjectPtr QKeyEventTransition_NewQKeyEventTransition2(QtObjectPtr object, int ty, int key, QtObjectPtr sourceState){ + return new QKeyEventTransition(static_cast(object), static_cast(ty), key, static_cast(sourceState)); +} + +QtObjectPtr QKeyEventTransition_NewQKeyEventTransition(QtObjectPtr sourceState){ + return new QKeyEventTransition(static_cast(sourceState)); +} + +int QKeyEventTransition_Key(QtObjectPtr ptr){ + return static_cast(ptr)->key(); +} + +int QKeyEventTransition_ModifierMask(QtObjectPtr ptr){ + return static_cast(ptr)->modifierMask(); +} + +void QKeyEventTransition_SetKey(QtObjectPtr ptr, int key){ + static_cast(ptr)->setKey(key); +} + +void QKeyEventTransition_SetModifierMask(QtObjectPtr ptr, int modifierMask){ + static_cast(ptr)->setModifierMask(static_cast(modifierMask)); +} + +void QKeyEventTransition_DestroyQKeyEventTransition(QtObjectPtr ptr){ + static_cast(ptr)->~QKeyEventTransition(); +} + diff --git a/widgets/qkeyeventtransition.go b/widgets/qkeyeventtransition.go new file mode 100755 index 00000000..66a464a3 --- /dev/null +++ b/widgets/qkeyeventtransition.go @@ -0,0 +1,79 @@ +package widgets + +//#include "qkeyeventtransition.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QKeyEventTransition struct { + core.QEventTransition +} + +type QKeyEventTransitionITF interface { + core.QEventTransitionITF + QKeyEventTransitionPTR() *QKeyEventTransition +} + +func PointerFromQKeyEventTransition(ptr QKeyEventTransitionITF) unsafe.Pointer { + if ptr != nil { + return ptr.QKeyEventTransitionPTR().Pointer() + } + return nil +} + +func QKeyEventTransitionFromPointer(ptr unsafe.Pointer) *QKeyEventTransition { + var n = new(QKeyEventTransition) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QKeyEventTransition_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QKeyEventTransition) QKeyEventTransitionPTR() *QKeyEventTransition { + return ptr +} + +func NewQKeyEventTransition2(object core.QObjectITF, ty core.QEvent__Type, key int, sourceState core.QStateITF) *QKeyEventTransition { + return QKeyEventTransitionFromPointer(unsafe.Pointer(C.QKeyEventTransition_NewQKeyEventTransition2(C.QtObjectPtr(core.PointerFromQObject(object)), C.int(ty), C.int(key), C.QtObjectPtr(core.PointerFromQState(sourceState))))) +} + +func NewQKeyEventTransition(sourceState core.QStateITF) *QKeyEventTransition { + return QKeyEventTransitionFromPointer(unsafe.Pointer(C.QKeyEventTransition_NewQKeyEventTransition(C.QtObjectPtr(core.PointerFromQState(sourceState))))) +} + +func (ptr *QKeyEventTransition) Key() int { + if ptr.Pointer() != nil { + return int(C.QKeyEventTransition_Key(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QKeyEventTransition) ModifierMask() core.Qt__KeyboardModifier { + if ptr.Pointer() != nil { + return core.Qt__KeyboardModifier(C.QKeyEventTransition_ModifierMask(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QKeyEventTransition) SetKey(key int) { + if ptr.Pointer() != nil { + C.QKeyEventTransition_SetKey(C.QtObjectPtr(ptr.Pointer()), C.int(key)) + } +} + +func (ptr *QKeyEventTransition) SetModifierMask(modifierMask core.Qt__KeyboardModifier) { + if ptr.Pointer() != nil { + C.QKeyEventTransition_SetModifierMask(C.QtObjectPtr(ptr.Pointer()), C.int(modifierMask)) + } +} + +func (ptr *QKeyEventTransition) DestroyQKeyEventTransition() { + if ptr.Pointer() != nil { + C.QKeyEventTransition_DestroyQKeyEventTransition(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qkeyeventtransition.h b/widgets/qkeyeventtransition.h new file mode 100755 index 00000000..f5451651 --- /dev/null +++ b/widgets/qkeyeventtransition.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QKeyEventTransition_NewQKeyEventTransition2(QtObjectPtr object, int ty, int key, QtObjectPtr sourceState); +QtObjectPtr QKeyEventTransition_NewQKeyEventTransition(QtObjectPtr sourceState); +int QKeyEventTransition_Key(QtObjectPtr ptr); +int QKeyEventTransition_ModifierMask(QtObjectPtr ptr); +void QKeyEventTransition_SetKey(QtObjectPtr ptr, int key); +void QKeyEventTransition_SetModifierMask(QtObjectPtr ptr, int modifierMask); +void QKeyEventTransition_DestroyQKeyEventTransition(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qkeysequenceedit.cpp b/widgets/qkeysequenceedit.cpp new file mode 100755 index 00000000..7a7e00b4 --- /dev/null +++ b/widgets/qkeysequenceedit.cpp @@ -0,0 +1,45 @@ +#include "qkeysequenceedit.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQKeySequenceEdit: public QKeySequenceEdit { +public: +void Signal_EditingFinished(){callbackQKeySequenceEditEditingFinished(this->objectName().toUtf8().data());}; +}; + +void QKeySequenceEdit_SetKeySequence(QtObjectPtr ptr, QtObjectPtr keySequence){ + QMetaObject::invokeMethod(static_cast(ptr), "setKeySequence", Q_ARG(QKeySequence, *static_cast(keySequence))); +} + +QtObjectPtr QKeySequenceEdit_NewQKeySequenceEdit(QtObjectPtr parent){ + return new QKeySequenceEdit(static_cast(parent)); +} + +QtObjectPtr QKeySequenceEdit_NewQKeySequenceEdit2(QtObjectPtr keySequence, QtObjectPtr parent){ + return new QKeySequenceEdit(*static_cast(keySequence), static_cast(parent)); +} + +void QKeySequenceEdit_Clear(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "clear"); +} + +void QKeySequenceEdit_ConnectEditingFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QKeySequenceEdit::editingFinished), static_cast(ptr), static_cast(&MyQKeySequenceEdit::Signal_EditingFinished));; +} + +void QKeySequenceEdit_DisconnectEditingFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QKeySequenceEdit::editingFinished), static_cast(ptr), static_cast(&MyQKeySequenceEdit::Signal_EditingFinished));; +} + +void QKeySequenceEdit_DestroyQKeySequenceEdit(QtObjectPtr ptr){ + static_cast(ptr)->~QKeySequenceEdit(); +} + diff --git a/widgets/qkeysequenceedit.go b/widgets/qkeysequenceedit.go new file mode 100755 index 00000000..d1809643 --- /dev/null +++ b/widgets/qkeysequenceedit.go @@ -0,0 +1,84 @@ +package widgets + +//#include "qkeysequenceedit.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QKeySequenceEdit struct { + QWidget +} + +type QKeySequenceEditITF interface { + QWidgetITF + QKeySequenceEditPTR() *QKeySequenceEdit +} + +func PointerFromQKeySequenceEdit(ptr QKeySequenceEditITF) unsafe.Pointer { + if ptr != nil { + return ptr.QKeySequenceEditPTR().Pointer() + } + return nil +} + +func QKeySequenceEditFromPointer(ptr unsafe.Pointer) *QKeySequenceEdit { + var n = new(QKeySequenceEdit) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QKeySequenceEdit_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QKeySequenceEdit) QKeySequenceEditPTR() *QKeySequenceEdit { + return ptr +} + +func (ptr *QKeySequenceEdit) SetKeySequence(keySequence gui.QKeySequenceITF) { + if ptr.Pointer() != nil { + C.QKeySequenceEdit_SetKeySequence(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQKeySequence(keySequence))) + } +} + +func NewQKeySequenceEdit(parent QWidgetITF) *QKeySequenceEdit { + return QKeySequenceEditFromPointer(unsafe.Pointer(C.QKeySequenceEdit_NewQKeySequenceEdit(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQKeySequenceEdit2(keySequence gui.QKeySequenceITF, parent QWidgetITF) *QKeySequenceEdit { + return QKeySequenceEditFromPointer(unsafe.Pointer(C.QKeySequenceEdit_NewQKeySequenceEdit2(C.QtObjectPtr(gui.PointerFromQKeySequence(keySequence)), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QKeySequenceEdit) Clear() { + if ptr.Pointer() != nil { + C.QKeySequenceEdit_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QKeySequenceEdit) ConnectEditingFinished(f func()) { + if ptr.Pointer() != nil { + C.QKeySequenceEdit_ConnectEditingFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "editingFinished", f) + } +} + +func (ptr *QKeySequenceEdit) DisconnectEditingFinished() { + if ptr.Pointer() != nil { + C.QKeySequenceEdit_DisconnectEditingFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "editingFinished") + } +} + +//export callbackQKeySequenceEditEditingFinished +func callbackQKeySequenceEditEditingFinished(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "editingFinished").(func())() +} + +func (ptr *QKeySequenceEdit) DestroyQKeySequenceEdit() { + if ptr.Pointer() != nil { + C.QKeySequenceEdit_DestroyQKeySequenceEdit(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qkeysequenceedit.h b/widgets/qkeysequenceedit.h new file mode 100755 index 00000000..28017cd6 --- /dev/null +++ b/widgets/qkeysequenceedit.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QKeySequenceEdit_SetKeySequence(QtObjectPtr ptr, QtObjectPtr keySequence); +QtObjectPtr QKeySequenceEdit_NewQKeySequenceEdit(QtObjectPtr parent); +QtObjectPtr QKeySequenceEdit_NewQKeySequenceEdit2(QtObjectPtr keySequence, QtObjectPtr parent); +void QKeySequenceEdit_Clear(QtObjectPtr ptr); +void QKeySequenceEdit_ConnectEditingFinished(QtObjectPtr ptr); +void QKeySequenceEdit_DisconnectEditingFinished(QtObjectPtr ptr); +void QKeySequenceEdit_DestroyQKeySequenceEdit(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qlabel.cpp b/widgets/qlabel.cpp new file mode 100755 index 00000000..9b42df6a --- /dev/null +++ b/widgets/qlabel.cpp @@ -0,0 +1,180 @@ +#include "qlabel.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQLabel: public QLabel { +public: +void Signal_LinkActivated(const QString & link){callbackQLabelLinkActivated(this->objectName().toUtf8().data(), link.toUtf8().data());}; +void Signal_LinkHovered(const QString & link){callbackQLabelLinkHovered(this->objectName().toUtf8().data(), link.toUtf8().data());}; +}; + +int QLabel_Alignment(QtObjectPtr ptr){ + return static_cast(ptr)->alignment(); +} + +int QLabel_HasScaledContents(QtObjectPtr ptr){ + return static_cast(ptr)->hasScaledContents(); +} + +int QLabel_HasSelectedText(QtObjectPtr ptr){ + return static_cast(ptr)->hasSelectedText(); +} + +int QLabel_Indent(QtObjectPtr ptr){ + return static_cast(ptr)->indent(); +} + +int QLabel_Margin(QtObjectPtr ptr){ + return static_cast(ptr)->margin(); +} + +int QLabel_OpenExternalLinks(QtObjectPtr ptr){ + return static_cast(ptr)->openExternalLinks(); +} + +QtObjectPtr QLabel_Pixmap(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->pixmap()); +} + +char* QLabel_SelectedText(QtObjectPtr ptr){ + return static_cast(ptr)->selectedText().toUtf8().data(); +} + +void QLabel_SetAlignment(QtObjectPtr ptr, int v){ + static_cast(ptr)->setAlignment(static_cast(v)); +} + +void QLabel_SetIndent(QtObjectPtr ptr, int v){ + static_cast(ptr)->setIndent(v); +} + +void QLabel_SetMargin(QtObjectPtr ptr, int v){ + static_cast(ptr)->setMargin(v); +} + +void QLabel_SetOpenExternalLinks(QtObjectPtr ptr, int open){ + static_cast(ptr)->setOpenExternalLinks(open != 0); +} + +void QLabel_SetPixmap(QtObjectPtr ptr, QtObjectPtr v){ + QMetaObject::invokeMethod(static_cast(ptr), "setPixmap", Q_ARG(QPixmap, *static_cast(v))); +} + +void QLabel_SetScaledContents(QtObjectPtr ptr, int v){ + static_cast(ptr)->setScaledContents(v != 0); +} + +void QLabel_SetText(QtObjectPtr ptr, char* v){ + QMetaObject::invokeMethod(static_cast(ptr), "setText", Q_ARG(QString, QString(v))); +} + +void QLabel_SetTextFormat(QtObjectPtr ptr, int v){ + static_cast(ptr)->setTextFormat(static_cast(v)); +} + +void QLabel_SetTextInteractionFlags(QtObjectPtr ptr, int flags){ + static_cast(ptr)->setTextInteractionFlags(static_cast(flags)); +} + +void QLabel_SetWordWrap(QtObjectPtr ptr, int on){ + static_cast(ptr)->setWordWrap(on != 0); +} + +char* QLabel_Text(QtObjectPtr ptr){ + return static_cast(ptr)->text().toUtf8().data(); +} + +int QLabel_TextFormat(QtObjectPtr ptr){ + return static_cast(ptr)->textFormat(); +} + +int QLabel_TextInteractionFlags(QtObjectPtr ptr){ + return static_cast(ptr)->textInteractionFlags(); +} + +int QLabel_WordWrap(QtObjectPtr ptr){ + return static_cast(ptr)->wordWrap(); +} + +QtObjectPtr QLabel_NewQLabel(QtObjectPtr parent, int f){ + return new QLabel(static_cast(parent), static_cast(f)); +} + +QtObjectPtr QLabel_NewQLabel2(char* text, QtObjectPtr parent, int f){ + return new QLabel(QString(text), static_cast(parent), static_cast(f)); +} + +QtObjectPtr QLabel_Buddy(QtObjectPtr ptr){ + return static_cast(ptr)->buddy(); +} + +void QLabel_Clear(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "clear"); +} + +int QLabel_HeightForWidth(QtObjectPtr ptr, int w){ + return static_cast(ptr)->heightForWidth(w); +} + +void QLabel_ConnectLinkActivated(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QLabel::linkActivated), static_cast(ptr), static_cast(&MyQLabel::Signal_LinkActivated));; +} + +void QLabel_DisconnectLinkActivated(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QLabel::linkActivated), static_cast(ptr), static_cast(&MyQLabel::Signal_LinkActivated));; +} + +void QLabel_ConnectLinkHovered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QLabel::linkHovered), static_cast(ptr), static_cast(&MyQLabel::Signal_LinkHovered));; +} + +void QLabel_DisconnectLinkHovered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QLabel::linkHovered), static_cast(ptr), static_cast(&MyQLabel::Signal_LinkHovered));; +} + +QtObjectPtr QLabel_Movie(QtObjectPtr ptr){ + return static_cast(ptr)->movie(); +} + +QtObjectPtr QLabel_Picture(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->picture()); +} + +int QLabel_SelectionStart(QtObjectPtr ptr){ + return static_cast(ptr)->selectionStart(); +} + +void QLabel_SetBuddy(QtObjectPtr ptr, QtObjectPtr buddy){ + static_cast(ptr)->setBuddy(static_cast(buddy)); +} + +void QLabel_SetMovie(QtObjectPtr ptr, QtObjectPtr movie){ + QMetaObject::invokeMethod(static_cast(ptr), "setMovie", Q_ARG(QMovie*, static_cast(movie))); +} + +void QLabel_SetNum(QtObjectPtr ptr, int num){ + QMetaObject::invokeMethod(static_cast(ptr), "setNum", Q_ARG(int, num)); +} + +void QLabel_SetPicture(QtObjectPtr ptr, QtObjectPtr picture){ + QMetaObject::invokeMethod(static_cast(ptr), "setPicture", Q_ARG(QPicture, *static_cast(picture))); +} + +void QLabel_SetSelection(QtObjectPtr ptr, int start, int length){ + static_cast(ptr)->setSelection(start, length); +} + +void QLabel_DestroyQLabel(QtObjectPtr ptr){ + static_cast(ptr)->~QLabel(); +} + diff --git a/widgets/qlabel.go b/widgets/qlabel.go new file mode 100755 index 00000000..9aa1c876 --- /dev/null +++ b/widgets/qlabel.go @@ -0,0 +1,307 @@ +package widgets + +//#include "qlabel.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QLabel struct { + QFrame +} + +type QLabelITF interface { + QFrameITF + QLabelPTR() *QLabel +} + +func PointerFromQLabel(ptr QLabelITF) unsafe.Pointer { + if ptr != nil { + return ptr.QLabelPTR().Pointer() + } + return nil +} + +func QLabelFromPointer(ptr unsafe.Pointer) *QLabel { + var n = new(QLabel) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QLabel_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QLabel) QLabelPTR() *QLabel { + return ptr +} + +func (ptr *QLabel) Alignment() core.Qt__AlignmentFlag { + if ptr.Pointer() != nil { + return core.Qt__AlignmentFlag(C.QLabel_Alignment(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLabel) HasScaledContents() bool { + if ptr.Pointer() != nil { + return C.QLabel_HasScaledContents(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLabel) HasSelectedText() bool { + if ptr.Pointer() != nil { + return C.QLabel_HasSelectedText(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLabel) Indent() int { + if ptr.Pointer() != nil { + return int(C.QLabel_Indent(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLabel) Margin() int { + if ptr.Pointer() != nil { + return int(C.QLabel_Margin(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLabel) OpenExternalLinks() bool { + if ptr.Pointer() != nil { + return C.QLabel_OpenExternalLinks(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLabel) Pixmap() *gui.QPixmap { + if ptr.Pointer() != nil { + return gui.QPixmapFromPointer(unsafe.Pointer(C.QLabel_Pixmap(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QLabel) SelectedText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QLabel_SelectedText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QLabel) SetAlignment(v core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QLabel_SetAlignment(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QLabel) SetIndent(v int) { + if ptr.Pointer() != nil { + C.QLabel_SetIndent(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QLabel) SetMargin(v int) { + if ptr.Pointer() != nil { + C.QLabel_SetMargin(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QLabel) SetOpenExternalLinks(open bool) { + if ptr.Pointer() != nil { + C.QLabel_SetOpenExternalLinks(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(open))) + } +} + +func (ptr *QLabel) SetPixmap(v gui.QPixmapITF) { + if ptr.Pointer() != nil { + C.QLabel_SetPixmap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPixmap(v))) + } +} + +func (ptr *QLabel) SetScaledContents(v bool) { + if ptr.Pointer() != nil { + C.QLabel_SetScaledContents(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QLabel) SetText(v string) { + if ptr.Pointer() != nil { + C.QLabel_SetText(C.QtObjectPtr(ptr.Pointer()), C.CString(v)) + } +} + +func (ptr *QLabel) SetTextFormat(v core.Qt__TextFormat) { + if ptr.Pointer() != nil { + C.QLabel_SetTextFormat(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QLabel) SetTextInteractionFlags(flags core.Qt__TextInteractionFlag) { + if ptr.Pointer() != nil { + C.QLabel_SetTextInteractionFlags(C.QtObjectPtr(ptr.Pointer()), C.int(flags)) + } +} + +func (ptr *QLabel) SetWordWrap(on bool) { + if ptr.Pointer() != nil { + C.QLabel_SetWordWrap(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(on))) + } +} + +func (ptr *QLabel) Text() string { + if ptr.Pointer() != nil { + return C.GoString(C.QLabel_Text(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QLabel) TextFormat() core.Qt__TextFormat { + if ptr.Pointer() != nil { + return core.Qt__TextFormat(C.QLabel_TextFormat(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLabel) TextInteractionFlags() core.Qt__TextInteractionFlag { + if ptr.Pointer() != nil { + return core.Qt__TextInteractionFlag(C.QLabel_TextInteractionFlags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLabel) WordWrap() bool { + if ptr.Pointer() != nil { + return C.QLabel_WordWrap(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func NewQLabel(parent QWidgetITF, f core.Qt__WindowType) *QLabel { + return QLabelFromPointer(unsafe.Pointer(C.QLabel_NewQLabel(C.QtObjectPtr(PointerFromQWidget(parent)), C.int(f)))) +} + +func NewQLabel2(text string, parent QWidgetITF, f core.Qt__WindowType) *QLabel { + return QLabelFromPointer(unsafe.Pointer(C.QLabel_NewQLabel2(C.CString(text), C.QtObjectPtr(PointerFromQWidget(parent)), C.int(f)))) +} + +func (ptr *QLabel) Buddy() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QLabel_Buddy(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QLabel) Clear() { + if ptr.Pointer() != nil { + C.QLabel_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QLabel) HeightForWidth(w int) int { + if ptr.Pointer() != nil { + return int(C.QLabel_HeightForWidth(C.QtObjectPtr(ptr.Pointer()), C.int(w))) + } + return 0 +} + +func (ptr *QLabel) ConnectLinkActivated(f func(link string)) { + if ptr.Pointer() != nil { + C.QLabel_ConnectLinkActivated(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "linkActivated", f) + } +} + +func (ptr *QLabel) DisconnectLinkActivated() { + if ptr.Pointer() != nil { + C.QLabel_DisconnectLinkActivated(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "linkActivated") + } +} + +//export callbackQLabelLinkActivated +func callbackQLabelLinkActivated(ptrName *C.char, link *C.char) { + qt.GetSignal(C.GoString(ptrName), "linkActivated").(func(string))(C.GoString(link)) +} + +func (ptr *QLabel) ConnectLinkHovered(f func(link string)) { + if ptr.Pointer() != nil { + C.QLabel_ConnectLinkHovered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "linkHovered", f) + } +} + +func (ptr *QLabel) DisconnectLinkHovered() { + if ptr.Pointer() != nil { + C.QLabel_DisconnectLinkHovered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "linkHovered") + } +} + +//export callbackQLabelLinkHovered +func callbackQLabelLinkHovered(ptrName *C.char, link *C.char) { + qt.GetSignal(C.GoString(ptrName), "linkHovered").(func(string))(C.GoString(link)) +} + +func (ptr *QLabel) Movie() *gui.QMovie { + if ptr.Pointer() != nil { + return gui.QMovieFromPointer(unsafe.Pointer(C.QLabel_Movie(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QLabel) Picture() *gui.QPicture { + if ptr.Pointer() != nil { + return gui.QPictureFromPointer(unsafe.Pointer(C.QLabel_Picture(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QLabel) SelectionStart() int { + if ptr.Pointer() != nil { + return int(C.QLabel_SelectionStart(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLabel) SetBuddy(buddy QWidgetITF) { + if ptr.Pointer() != nil { + C.QLabel_SetBuddy(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(buddy))) + } +} + +func (ptr *QLabel) SetMovie(movie gui.QMovieITF) { + if ptr.Pointer() != nil { + C.QLabel_SetMovie(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQMovie(movie))) + } +} + +func (ptr *QLabel) SetNum(num int) { + if ptr.Pointer() != nil { + C.QLabel_SetNum(C.QtObjectPtr(ptr.Pointer()), C.int(num)) + } +} + +func (ptr *QLabel) SetPicture(picture gui.QPictureITF) { + if ptr.Pointer() != nil { + C.QLabel_SetPicture(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPicture(picture))) + } +} + +func (ptr *QLabel) SetSelection(start int, length int) { + if ptr.Pointer() != nil { + C.QLabel_SetSelection(C.QtObjectPtr(ptr.Pointer()), C.int(start), C.int(length)) + } +} + +func (ptr *QLabel) DestroyQLabel() { + if ptr.Pointer() != nil { + C.QLabel_DestroyQLabel(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qlabel.h b/widgets/qlabel.h new file mode 100755 index 00000000..92c1fdcb --- /dev/null +++ b/widgets/qlabel.h @@ -0,0 +1,49 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QLabel_Alignment(QtObjectPtr ptr); +int QLabel_HasScaledContents(QtObjectPtr ptr); +int QLabel_HasSelectedText(QtObjectPtr ptr); +int QLabel_Indent(QtObjectPtr ptr); +int QLabel_Margin(QtObjectPtr ptr); +int QLabel_OpenExternalLinks(QtObjectPtr ptr); +QtObjectPtr QLabel_Pixmap(QtObjectPtr ptr); +char* QLabel_SelectedText(QtObjectPtr ptr); +void QLabel_SetAlignment(QtObjectPtr ptr, int v); +void QLabel_SetIndent(QtObjectPtr ptr, int v); +void QLabel_SetMargin(QtObjectPtr ptr, int v); +void QLabel_SetOpenExternalLinks(QtObjectPtr ptr, int open); +void QLabel_SetPixmap(QtObjectPtr ptr, QtObjectPtr v); +void QLabel_SetScaledContents(QtObjectPtr ptr, int v); +void QLabel_SetText(QtObjectPtr ptr, char* v); +void QLabel_SetTextFormat(QtObjectPtr ptr, int v); +void QLabel_SetTextInteractionFlags(QtObjectPtr ptr, int flags); +void QLabel_SetWordWrap(QtObjectPtr ptr, int on); +char* QLabel_Text(QtObjectPtr ptr); +int QLabel_TextFormat(QtObjectPtr ptr); +int QLabel_TextInteractionFlags(QtObjectPtr ptr); +int QLabel_WordWrap(QtObjectPtr ptr); +QtObjectPtr QLabel_NewQLabel(QtObjectPtr parent, int f); +QtObjectPtr QLabel_NewQLabel2(char* text, QtObjectPtr parent, int f); +QtObjectPtr QLabel_Buddy(QtObjectPtr ptr); +void QLabel_Clear(QtObjectPtr ptr); +int QLabel_HeightForWidth(QtObjectPtr ptr, int w); +void QLabel_ConnectLinkActivated(QtObjectPtr ptr); +void QLabel_DisconnectLinkActivated(QtObjectPtr ptr); +void QLabel_ConnectLinkHovered(QtObjectPtr ptr); +void QLabel_DisconnectLinkHovered(QtObjectPtr ptr); +QtObjectPtr QLabel_Movie(QtObjectPtr ptr); +QtObjectPtr QLabel_Picture(QtObjectPtr ptr); +int QLabel_SelectionStart(QtObjectPtr ptr); +void QLabel_SetBuddy(QtObjectPtr ptr, QtObjectPtr buddy); +void QLabel_SetMovie(QtObjectPtr ptr, QtObjectPtr movie); +void QLabel_SetNum(QtObjectPtr ptr, int num); +void QLabel_SetPicture(QtObjectPtr ptr, QtObjectPtr picture); +void QLabel_SetSelection(QtObjectPtr ptr, int start, int length); +void QLabel_DestroyQLabel(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qlayout.cpp b/widgets/qlayout.cpp new file mode 100755 index 00000000..f4f2876f --- /dev/null +++ b/widgets/qlayout.cpp @@ -0,0 +1,140 @@ +#include "qlayout.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQLayout: public QLayout { +public: +}; + +void QLayout_SetSizeConstraint(QtObjectPtr ptr, int v){ + static_cast(ptr)->setSizeConstraint(static_cast(v)); +} + +void QLayout_SetSpacing(QtObjectPtr ptr, int v){ + static_cast(ptr)->setSpacing(v); +} + +int QLayout_SizeConstraint(QtObjectPtr ptr){ + return static_cast(ptr)->sizeConstraint(); +} + +int QLayout_Spacing(QtObjectPtr ptr){ + return static_cast(ptr)->spacing(); +} + +int QLayout_Activate(QtObjectPtr ptr){ + return static_cast(ptr)->activate(); +} + +void QLayout_AddItem(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->addItem(static_cast(item)); +} + +void QLayout_AddWidget(QtObjectPtr ptr, QtObjectPtr w){ + static_cast(ptr)->addWidget(static_cast(w)); +} + +int QLayout_ControlTypes(QtObjectPtr ptr){ + return static_cast(ptr)->controlTypes(); +} + +int QLayout_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +int QLayout_ExpandingDirections(QtObjectPtr ptr){ + return static_cast(ptr)->expandingDirections(); +} + +void QLayout_GetContentsMargins(QtObjectPtr ptr, int left, int top, int right, int bottom){ + static_cast(ptr)->getContentsMargins(&left, &top, &right, &bottom); +} + +int QLayout_IndexOf(QtObjectPtr ptr, QtObjectPtr widget){ + return static_cast(ptr)->indexOf(static_cast(widget)); +} + +void QLayout_Invalidate(QtObjectPtr ptr){ + static_cast(ptr)->invalidate(); +} + +int QLayout_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +int QLayout_IsEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isEnabled(); +} + +QtObjectPtr QLayout_ItemAt(QtObjectPtr ptr, int index){ + return static_cast(ptr)->itemAt(index); +} + +QtObjectPtr QLayout_Layout(QtObjectPtr ptr){ + return static_cast(ptr)->layout(); +} + +QtObjectPtr QLayout_MenuBar(QtObjectPtr ptr){ + return static_cast(ptr)->menuBar(); +} + +QtObjectPtr QLayout_ParentWidget(QtObjectPtr ptr){ + return static_cast(ptr)->parentWidget(); +} + +void QLayout_RemoveItem(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->removeItem(static_cast(item)); +} + +void QLayout_RemoveWidget(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->removeWidget(static_cast(widget)); +} + +QtObjectPtr QLayout_ReplaceWidget(QtObjectPtr ptr, QtObjectPtr from, QtObjectPtr to, int options){ + return static_cast(ptr)->replaceWidget(static_cast(from), static_cast(to), static_cast(options)); +} + +int QLayout_SetAlignment2(QtObjectPtr ptr, QtObjectPtr l, int alignment){ + return static_cast(ptr)->setAlignment(static_cast(l), static_cast(alignment)); +} + +int QLayout_SetAlignment(QtObjectPtr ptr, QtObjectPtr w, int alignment){ + return static_cast(ptr)->setAlignment(static_cast(w), static_cast(alignment)); +} + +void QLayout_SetContentsMargins2(QtObjectPtr ptr, QtObjectPtr margins){ + static_cast(ptr)->setContentsMargins(*static_cast(margins)); +} + +void QLayout_SetContentsMargins(QtObjectPtr ptr, int left, int top, int right, int bottom){ + static_cast(ptr)->setContentsMargins(left, top, right, bottom); +} + +void QLayout_SetEnabled(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setEnabled(enable != 0); +} + +void QLayout_SetGeometry(QtObjectPtr ptr, QtObjectPtr r){ + static_cast(ptr)->setGeometry(*static_cast(r)); +} + +void QLayout_SetMenuBar(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->setMenuBar(static_cast(widget)); +} + +QtObjectPtr QLayout_TakeAt(QtObjectPtr ptr, int index){ + return static_cast(ptr)->takeAt(index); +} + +void QLayout_Update(QtObjectPtr ptr){ + static_cast(ptr)->update(); +} + diff --git a/widgets/qlayout.go b/widgets/qlayout.go new file mode 100755 index 00000000..bb71f11e --- /dev/null +++ b/widgets/qlayout.go @@ -0,0 +1,264 @@ +package widgets + +//#include "qlayout.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QLayout struct { + QLayoutItem + core.QObject +} + +type QLayoutITF interface { + QLayoutItemITF + core.QObjectITF + QLayoutPTR() *QLayout +} + +func (p *QLayout) Pointer() unsafe.Pointer { + return p.QLayoutItemPTR().Pointer() +} + +func (p *QLayout) SetPointer(ptr unsafe.Pointer) { + p.QLayoutItemPTR().SetPointer(ptr) + p.QObjectPTR().SetPointer(ptr) +} + +func PointerFromQLayout(ptr QLayoutITF) unsafe.Pointer { + if ptr != nil { + return ptr.QLayoutPTR().Pointer() + } + return nil +} + +func QLayoutFromPointer(ptr unsafe.Pointer) *QLayout { + var n = new(QLayout) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QLayout_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QLayout) QLayoutPTR() *QLayout { + return ptr +} + +//QLayout::SizeConstraint +type QLayout__SizeConstraint int + +var ( + QLayout__SetDefaultConstraint = QLayout__SizeConstraint(0) + QLayout__SetNoConstraint = QLayout__SizeConstraint(1) + QLayout__SetMinimumSize = QLayout__SizeConstraint(2) + QLayout__SetFixedSize = QLayout__SizeConstraint(3) + QLayout__SetMaximumSize = QLayout__SizeConstraint(4) + QLayout__SetMinAndMaxSize = QLayout__SizeConstraint(5) +) + +func (ptr *QLayout) SetSizeConstraint(v QLayout__SizeConstraint) { + if ptr.Pointer() != nil { + C.QLayout_SetSizeConstraint(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QLayout) SetSpacing(v int) { + if ptr.Pointer() != nil { + C.QLayout_SetSpacing(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QLayout) SizeConstraint() QLayout__SizeConstraint { + if ptr.Pointer() != nil { + return QLayout__SizeConstraint(C.QLayout_SizeConstraint(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLayout) Spacing() int { + if ptr.Pointer() != nil { + return int(C.QLayout_Spacing(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLayout) Activate() bool { + if ptr.Pointer() != nil { + return C.QLayout_Activate(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLayout) AddItem(item QLayoutItemITF) { + if ptr.Pointer() != nil { + C.QLayout_AddItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLayoutItem(item))) + } +} + +func (ptr *QLayout) AddWidget(w QWidgetITF) { + if ptr.Pointer() != nil { + C.QLayout_AddWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(w))) + } +} + +func (ptr *QLayout) ControlTypes() QSizePolicy__ControlType { + if ptr.Pointer() != nil { + return QSizePolicy__ControlType(C.QLayout_ControlTypes(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLayout) Count() int { + if ptr.Pointer() != nil { + return int(C.QLayout_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLayout) ExpandingDirections() core.Qt__Orientation { + if ptr.Pointer() != nil { + return core.Qt__Orientation(C.QLayout_ExpandingDirections(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLayout) GetContentsMargins(left int, top int, right int, bottom int) { + if ptr.Pointer() != nil { + C.QLayout_GetContentsMargins(C.QtObjectPtr(ptr.Pointer()), C.int(left), C.int(top), C.int(right), C.int(bottom)) + } +} + +func (ptr *QLayout) IndexOf(widget QWidgetITF) int { + if ptr.Pointer() != nil { + return int(C.QLayout_IndexOf(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget)))) + } + return 0 +} + +func (ptr *QLayout) Invalidate() { + if ptr.Pointer() != nil { + C.QLayout_Invalidate(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QLayout) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QLayout_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLayout) IsEnabled() bool { + if ptr.Pointer() != nil { + return C.QLayout_IsEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLayout) ItemAt(index int) *QLayoutItem { + if ptr.Pointer() != nil { + return QLayoutItemFromPointer(unsafe.Pointer(C.QLayout_ItemAt(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QLayout) Layout() *QLayout { + if ptr.Pointer() != nil { + return QLayoutFromPointer(unsafe.Pointer(C.QLayout_Layout(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QLayout) MenuBar() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QLayout_MenuBar(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QLayout) ParentWidget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QLayout_ParentWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QLayout) RemoveItem(item QLayoutItemITF) { + if ptr.Pointer() != nil { + C.QLayout_RemoveItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLayoutItem(item))) + } +} + +func (ptr *QLayout) RemoveWidget(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QLayout_RemoveWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QLayout) ReplaceWidget(from QWidgetITF, to QWidgetITF, options core.Qt__FindChildOption) *QLayoutItem { + if ptr.Pointer() != nil { + return QLayoutItemFromPointer(unsafe.Pointer(C.QLayout_ReplaceWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(from)), C.QtObjectPtr(PointerFromQWidget(to)), C.int(options)))) + } + return nil +} + +func (ptr *QLayout) SetAlignment2(l QLayoutITF, alignment core.Qt__AlignmentFlag) bool { + if ptr.Pointer() != nil { + return C.QLayout_SetAlignment2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLayout(l)), C.int(alignment)) != 0 + } + return false +} + +func (ptr *QLayout) SetAlignment(w QWidgetITF, alignment core.Qt__AlignmentFlag) bool { + if ptr.Pointer() != nil { + return C.QLayout_SetAlignment(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(w)), C.int(alignment)) != 0 + } + return false +} + +func (ptr *QLayout) SetContentsMargins2(margins core.QMarginsITF) { + if ptr.Pointer() != nil { + C.QLayout_SetContentsMargins2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQMargins(margins))) + } +} + +func (ptr *QLayout) SetContentsMargins(left int, top int, right int, bottom int) { + if ptr.Pointer() != nil { + C.QLayout_SetContentsMargins(C.QtObjectPtr(ptr.Pointer()), C.int(left), C.int(top), C.int(right), C.int(bottom)) + } +} + +func (ptr *QLayout) SetEnabled(enable bool) { + if ptr.Pointer() != nil { + C.QLayout_SetEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QLayout) SetGeometry(r core.QRectITF) { + if ptr.Pointer() != nil { + C.QLayout_SetGeometry(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(r))) + } +} + +func (ptr *QLayout) SetMenuBar(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QLayout_SetMenuBar(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QLayout) TakeAt(index int) *QLayoutItem { + if ptr.Pointer() != nil { + return QLayoutItemFromPointer(unsafe.Pointer(C.QLayout_TakeAt(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QLayout) Update() { + if ptr.Pointer() != nil { + C.QLayout_Update(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qlayout.h b/widgets/qlayout.h new file mode 100755 index 00000000..25259574 --- /dev/null +++ b/widgets/qlayout.h @@ -0,0 +1,40 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QLayout_SetSizeConstraint(QtObjectPtr ptr, int v); +void QLayout_SetSpacing(QtObjectPtr ptr, int v); +int QLayout_SizeConstraint(QtObjectPtr ptr); +int QLayout_Spacing(QtObjectPtr ptr); +int QLayout_Activate(QtObjectPtr ptr); +void QLayout_AddItem(QtObjectPtr ptr, QtObjectPtr item); +void QLayout_AddWidget(QtObjectPtr ptr, QtObjectPtr w); +int QLayout_ControlTypes(QtObjectPtr ptr); +int QLayout_Count(QtObjectPtr ptr); +int QLayout_ExpandingDirections(QtObjectPtr ptr); +void QLayout_GetContentsMargins(QtObjectPtr ptr, int left, int top, int right, int bottom); +int QLayout_IndexOf(QtObjectPtr ptr, QtObjectPtr widget); +void QLayout_Invalidate(QtObjectPtr ptr); +int QLayout_IsEmpty(QtObjectPtr ptr); +int QLayout_IsEnabled(QtObjectPtr ptr); +QtObjectPtr QLayout_ItemAt(QtObjectPtr ptr, int index); +QtObjectPtr QLayout_Layout(QtObjectPtr ptr); +QtObjectPtr QLayout_MenuBar(QtObjectPtr ptr); +QtObjectPtr QLayout_ParentWidget(QtObjectPtr ptr); +void QLayout_RemoveItem(QtObjectPtr ptr, QtObjectPtr item); +void QLayout_RemoveWidget(QtObjectPtr ptr, QtObjectPtr widget); +QtObjectPtr QLayout_ReplaceWidget(QtObjectPtr ptr, QtObjectPtr from, QtObjectPtr to, int options); +int QLayout_SetAlignment2(QtObjectPtr ptr, QtObjectPtr l, int alignment); +int QLayout_SetAlignment(QtObjectPtr ptr, QtObjectPtr w, int alignment); +void QLayout_SetContentsMargins2(QtObjectPtr ptr, QtObjectPtr margins); +void QLayout_SetContentsMargins(QtObjectPtr ptr, int left, int top, int right, int bottom); +void QLayout_SetEnabled(QtObjectPtr ptr, int enable); +void QLayout_SetGeometry(QtObjectPtr ptr, QtObjectPtr r); +void QLayout_SetMenuBar(QtObjectPtr ptr, QtObjectPtr widget); +QtObjectPtr QLayout_TakeAt(QtObjectPtr ptr, int index); +void QLayout_Update(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qlayoutitem.cpp b/widgets/qlayoutitem.cpp new file mode 100755 index 00000000..df7c341b --- /dev/null +++ b/widgets/qlayoutitem.cpp @@ -0,0 +1,70 @@ +#include "qlayoutitem.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQLayoutItem: public QLayoutItem { +public: +}; + +int QLayoutItem_Alignment(QtObjectPtr ptr){ + return static_cast(ptr)->alignment(); +} + +int QLayoutItem_ControlTypes(QtObjectPtr ptr){ + return static_cast(ptr)->controlTypes(); +} + +int QLayoutItem_ExpandingDirections(QtObjectPtr ptr){ + return static_cast(ptr)->expandingDirections(); +} + +int QLayoutItem_HasHeightForWidth(QtObjectPtr ptr){ + return static_cast(ptr)->hasHeightForWidth(); +} + +int QLayoutItem_HeightForWidth(QtObjectPtr ptr, int w){ + return static_cast(ptr)->heightForWidth(w); +} + +void QLayoutItem_Invalidate(QtObjectPtr ptr){ + static_cast(ptr)->invalidate(); +} + +int QLayoutItem_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +QtObjectPtr QLayoutItem_Layout(QtObjectPtr ptr){ + return static_cast(ptr)->layout(); +} + +int QLayoutItem_MinimumHeightForWidth(QtObjectPtr ptr, int w){ + return static_cast(ptr)->minimumHeightForWidth(w); +} + +void QLayoutItem_SetAlignment(QtObjectPtr ptr, int alignment){ + static_cast(ptr)->setAlignment(static_cast(alignment)); +} + +void QLayoutItem_SetGeometry(QtObjectPtr ptr, QtObjectPtr r){ + static_cast(ptr)->setGeometry(*static_cast(r)); +} + +QtObjectPtr QLayoutItem_SpacerItem(QtObjectPtr ptr){ + return static_cast(ptr)->spacerItem(); +} + +QtObjectPtr QLayoutItem_Widget(QtObjectPtr ptr){ + return static_cast(ptr)->widget(); +} + +void QLayoutItem_DestroyQLayoutItem(QtObjectPtr ptr){ + static_cast(ptr)->~QLayoutItem(); +} + diff --git a/widgets/qlayoutitem.go b/widgets/qlayoutitem.go new file mode 100755 index 00000000..a5b60760 --- /dev/null +++ b/widgets/qlayoutitem.go @@ -0,0 +1,135 @@ +package widgets + +//#include "qlayoutitem.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QLayoutItem struct { + ptr unsafe.Pointer +} + +type QLayoutItemITF interface { + QLayoutItemPTR() *QLayoutItem +} + +func (p *QLayoutItem) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QLayoutItem) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQLayoutItem(ptr QLayoutItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QLayoutItemPTR().Pointer() + } + return nil +} + +func QLayoutItemFromPointer(ptr unsafe.Pointer) *QLayoutItem { + var n = new(QLayoutItem) + n.SetPointer(ptr) + return n +} + +func (ptr *QLayoutItem) QLayoutItemPTR() *QLayoutItem { + return ptr +} + +func (ptr *QLayoutItem) Alignment() core.Qt__AlignmentFlag { + if ptr.Pointer() != nil { + return core.Qt__AlignmentFlag(C.QLayoutItem_Alignment(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLayoutItem) ControlTypes() QSizePolicy__ControlType { + if ptr.Pointer() != nil { + return QSizePolicy__ControlType(C.QLayoutItem_ControlTypes(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLayoutItem) ExpandingDirections() core.Qt__Orientation { + if ptr.Pointer() != nil { + return core.Qt__Orientation(C.QLayoutItem_ExpandingDirections(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLayoutItem) HasHeightForWidth() bool { + if ptr.Pointer() != nil { + return C.QLayoutItem_HasHeightForWidth(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLayoutItem) HeightForWidth(w int) int { + if ptr.Pointer() != nil { + return int(C.QLayoutItem_HeightForWidth(C.QtObjectPtr(ptr.Pointer()), C.int(w))) + } + return 0 +} + +func (ptr *QLayoutItem) Invalidate() { + if ptr.Pointer() != nil { + C.QLayoutItem_Invalidate(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QLayoutItem) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QLayoutItem_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLayoutItem) Layout() *QLayout { + if ptr.Pointer() != nil { + return QLayoutFromPointer(unsafe.Pointer(C.QLayoutItem_Layout(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QLayoutItem) MinimumHeightForWidth(w int) int { + if ptr.Pointer() != nil { + return int(C.QLayoutItem_MinimumHeightForWidth(C.QtObjectPtr(ptr.Pointer()), C.int(w))) + } + return 0 +} + +func (ptr *QLayoutItem) SetAlignment(alignment core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QLayoutItem_SetAlignment(C.QtObjectPtr(ptr.Pointer()), C.int(alignment)) + } +} + +func (ptr *QLayoutItem) SetGeometry(r core.QRectITF) { + if ptr.Pointer() != nil { + C.QLayoutItem_SetGeometry(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(r))) + } +} + +func (ptr *QLayoutItem) SpacerItem() *QSpacerItem { + if ptr.Pointer() != nil { + return QSpacerItemFromPointer(unsafe.Pointer(C.QLayoutItem_SpacerItem(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QLayoutItem) Widget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QLayoutItem_Widget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QLayoutItem) DestroyQLayoutItem() { + if ptr.Pointer() != nil { + C.QLayoutItem_DestroyQLayoutItem(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qlayoutitem.h b/widgets/qlayoutitem.h new file mode 100755 index 00000000..a6074a12 --- /dev/null +++ b/widgets/qlayoutitem.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QLayoutItem_Alignment(QtObjectPtr ptr); +int QLayoutItem_ControlTypes(QtObjectPtr ptr); +int QLayoutItem_ExpandingDirections(QtObjectPtr ptr); +int QLayoutItem_HasHeightForWidth(QtObjectPtr ptr); +int QLayoutItem_HeightForWidth(QtObjectPtr ptr, int w); +void QLayoutItem_Invalidate(QtObjectPtr ptr); +int QLayoutItem_IsEmpty(QtObjectPtr ptr); +QtObjectPtr QLayoutItem_Layout(QtObjectPtr ptr); +int QLayoutItem_MinimumHeightForWidth(QtObjectPtr ptr, int w); +void QLayoutItem_SetAlignment(QtObjectPtr ptr, int alignment); +void QLayoutItem_SetGeometry(QtObjectPtr ptr, QtObjectPtr r); +QtObjectPtr QLayoutItem_SpacerItem(QtObjectPtr ptr); +QtObjectPtr QLayoutItem_Widget(QtObjectPtr ptr); +void QLayoutItem_DestroyQLayoutItem(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qlcdnumber.cpp b/widgets/qlcdnumber.cpp new file mode 100755 index 00000000..2892d5bc --- /dev/null +++ b/widgets/qlcdnumber.cpp @@ -0,0 +1,96 @@ +#include "qlcdnumber.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQLCDNumber: public QLCDNumber { +public: +void Signal_Overflow(){callbackQLCDNumberOverflow(this->objectName().toUtf8().data());}; +}; + +int QLCDNumber_IntValue(QtObjectPtr ptr){ + return static_cast(ptr)->intValue(); +} + +int QLCDNumber_Mode(QtObjectPtr ptr){ + return static_cast(ptr)->mode(); +} + +int QLCDNumber_SegmentStyle(QtObjectPtr ptr){ + return static_cast(ptr)->segmentStyle(); +} + +void QLCDNumber_SetMode(QtObjectPtr ptr, int v){ + static_cast(ptr)->setMode(static_cast(v)); +} + +void QLCDNumber_SetSegmentStyle(QtObjectPtr ptr, int v){ + static_cast(ptr)->setSegmentStyle(static_cast(v)); +} + +void QLCDNumber_SetSmallDecimalPoint(QtObjectPtr ptr, int v){ + QMetaObject::invokeMethod(static_cast(ptr), "setSmallDecimalPoint", Q_ARG(bool, v != 0)); +} + +int QLCDNumber_SmallDecimalPoint(QtObjectPtr ptr){ + return static_cast(ptr)->smallDecimalPoint(); +} + +QtObjectPtr QLCDNumber_NewQLCDNumber(QtObjectPtr parent){ + return new QLCDNumber(static_cast(parent)); +} + +int QLCDNumber_CheckOverflow2(QtObjectPtr ptr, int num){ + return static_cast(ptr)->checkOverflow(num); +} + +int QLCDNumber_DigitCount(QtObjectPtr ptr){ + return static_cast(ptr)->digitCount(); +} + +void QLCDNumber_Display(QtObjectPtr ptr, char* s){ + QMetaObject::invokeMethod(static_cast(ptr), "display", Q_ARG(QString, QString(s))); +} + +void QLCDNumber_Display3(QtObjectPtr ptr, int num){ + QMetaObject::invokeMethod(static_cast(ptr), "display", Q_ARG(int, num)); +} + +void QLCDNumber_ConnectOverflow(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QLCDNumber::overflow), static_cast(ptr), static_cast(&MyQLCDNumber::Signal_Overflow));; +} + +void QLCDNumber_DisconnectOverflow(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QLCDNumber::overflow), static_cast(ptr), static_cast(&MyQLCDNumber::Signal_Overflow));; +} + +void QLCDNumber_SetBinMode(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "setBinMode"); +} + +void QLCDNumber_SetDecMode(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "setDecMode"); +} + +void QLCDNumber_SetDigitCount(QtObjectPtr ptr, int numDigits){ + static_cast(ptr)->setDigitCount(numDigits); +} + +void QLCDNumber_SetHexMode(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "setHexMode"); +} + +void QLCDNumber_SetOctMode(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "setOctMode"); +} + +void QLCDNumber_DestroyQLCDNumber(QtObjectPtr ptr){ + static_cast(ptr)->~QLCDNumber(); +} + diff --git a/widgets/qlcdnumber.go b/widgets/qlcdnumber.go new file mode 100755 index 00000000..4ba5e3d0 --- /dev/null +++ b/widgets/qlcdnumber.go @@ -0,0 +1,188 @@ +package widgets + +//#include "qlcdnumber.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QLCDNumber struct { + QFrame +} + +type QLCDNumberITF interface { + QFrameITF + QLCDNumberPTR() *QLCDNumber +} + +func PointerFromQLCDNumber(ptr QLCDNumberITF) unsafe.Pointer { + if ptr != nil { + return ptr.QLCDNumberPTR().Pointer() + } + return nil +} + +func QLCDNumberFromPointer(ptr unsafe.Pointer) *QLCDNumber { + var n = new(QLCDNumber) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QLCDNumber_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QLCDNumber) QLCDNumberPTR() *QLCDNumber { + return ptr +} + +//QLCDNumber::Mode +type QLCDNumber__Mode int + +var ( + QLCDNumber__Hex = QLCDNumber__Mode(0) + QLCDNumber__Dec = QLCDNumber__Mode(1) + QLCDNumber__Oct = QLCDNumber__Mode(2) + QLCDNumber__Bin = QLCDNumber__Mode(3) +) + +//QLCDNumber::SegmentStyle +type QLCDNumber__SegmentStyle int + +var ( + QLCDNumber__Outline = QLCDNumber__SegmentStyle(0) + QLCDNumber__Filled = QLCDNumber__SegmentStyle(1) + QLCDNumber__Flat = QLCDNumber__SegmentStyle(2) +) + +func (ptr *QLCDNumber) IntValue() int { + if ptr.Pointer() != nil { + return int(C.QLCDNumber_IntValue(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLCDNumber) Mode() QLCDNumber__Mode { + if ptr.Pointer() != nil { + return QLCDNumber__Mode(C.QLCDNumber_Mode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLCDNumber) SegmentStyle() QLCDNumber__SegmentStyle { + if ptr.Pointer() != nil { + return QLCDNumber__SegmentStyle(C.QLCDNumber_SegmentStyle(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLCDNumber) SetMode(v QLCDNumber__Mode) { + if ptr.Pointer() != nil { + C.QLCDNumber_SetMode(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QLCDNumber) SetSegmentStyle(v QLCDNumber__SegmentStyle) { + if ptr.Pointer() != nil { + C.QLCDNumber_SetSegmentStyle(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QLCDNumber) SetSmallDecimalPoint(v bool) { + if ptr.Pointer() != nil { + C.QLCDNumber_SetSmallDecimalPoint(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QLCDNumber) SmallDecimalPoint() bool { + if ptr.Pointer() != nil { + return C.QLCDNumber_SmallDecimalPoint(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func NewQLCDNumber(parent QWidgetITF) *QLCDNumber { + return QLCDNumberFromPointer(unsafe.Pointer(C.QLCDNumber_NewQLCDNumber(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QLCDNumber) CheckOverflow2(num int) bool { + if ptr.Pointer() != nil { + return C.QLCDNumber_CheckOverflow2(C.QtObjectPtr(ptr.Pointer()), C.int(num)) != 0 + } + return false +} + +func (ptr *QLCDNumber) DigitCount() int { + if ptr.Pointer() != nil { + return int(C.QLCDNumber_DigitCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLCDNumber) Display(s string) { + if ptr.Pointer() != nil { + C.QLCDNumber_Display(C.QtObjectPtr(ptr.Pointer()), C.CString(s)) + } +} + +func (ptr *QLCDNumber) Display3(num int) { + if ptr.Pointer() != nil { + C.QLCDNumber_Display3(C.QtObjectPtr(ptr.Pointer()), C.int(num)) + } +} + +func (ptr *QLCDNumber) ConnectOverflow(f func()) { + if ptr.Pointer() != nil { + C.QLCDNumber_ConnectOverflow(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "overflow", f) + } +} + +func (ptr *QLCDNumber) DisconnectOverflow() { + if ptr.Pointer() != nil { + C.QLCDNumber_DisconnectOverflow(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "overflow") + } +} + +//export callbackQLCDNumberOverflow +func callbackQLCDNumberOverflow(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "overflow").(func())() +} + +func (ptr *QLCDNumber) SetBinMode() { + if ptr.Pointer() != nil { + C.QLCDNumber_SetBinMode(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QLCDNumber) SetDecMode() { + if ptr.Pointer() != nil { + C.QLCDNumber_SetDecMode(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QLCDNumber) SetDigitCount(numDigits int) { + if ptr.Pointer() != nil { + C.QLCDNumber_SetDigitCount(C.QtObjectPtr(ptr.Pointer()), C.int(numDigits)) + } +} + +func (ptr *QLCDNumber) SetHexMode() { + if ptr.Pointer() != nil { + C.QLCDNumber_SetHexMode(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QLCDNumber) SetOctMode() { + if ptr.Pointer() != nil { + C.QLCDNumber_SetOctMode(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QLCDNumber) DestroyQLCDNumber() { + if ptr.Pointer() != nil { + C.QLCDNumber_DestroyQLCDNumber(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qlcdnumber.h b/widgets/qlcdnumber.h new file mode 100755 index 00000000..96a5a7ee --- /dev/null +++ b/widgets/qlcdnumber.h @@ -0,0 +1,29 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QLCDNumber_IntValue(QtObjectPtr ptr); +int QLCDNumber_Mode(QtObjectPtr ptr); +int QLCDNumber_SegmentStyle(QtObjectPtr ptr); +void QLCDNumber_SetMode(QtObjectPtr ptr, int v); +void QLCDNumber_SetSegmentStyle(QtObjectPtr ptr, int v); +void QLCDNumber_SetSmallDecimalPoint(QtObjectPtr ptr, int v); +int QLCDNumber_SmallDecimalPoint(QtObjectPtr ptr); +QtObjectPtr QLCDNumber_NewQLCDNumber(QtObjectPtr parent); +int QLCDNumber_CheckOverflow2(QtObjectPtr ptr, int num); +int QLCDNumber_DigitCount(QtObjectPtr ptr); +void QLCDNumber_Display(QtObjectPtr ptr, char* s); +void QLCDNumber_Display3(QtObjectPtr ptr, int num); +void QLCDNumber_ConnectOverflow(QtObjectPtr ptr); +void QLCDNumber_DisconnectOverflow(QtObjectPtr ptr); +void QLCDNumber_SetBinMode(QtObjectPtr ptr); +void QLCDNumber_SetDecMode(QtObjectPtr ptr); +void QLCDNumber_SetDigitCount(QtObjectPtr ptr, int numDigits); +void QLCDNumber_SetHexMode(QtObjectPtr ptr); +void QLCDNumber_SetOctMode(QtObjectPtr ptr); +void QLCDNumber_DestroyQLCDNumber(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qlineedit.cpp b/widgets/qlineedit.cpp new file mode 100755 index 00000000..fff7d28d --- /dev/null +++ b/widgets/qlineedit.cpp @@ -0,0 +1,341 @@ +#include "qlineedit.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQLineEdit: public QLineEdit { +public: +void Signal_CursorPositionChanged(int old, int n){callbackQLineEditCursorPositionChanged(this->objectName().toUtf8().data(), old, n);}; +void Signal_EditingFinished(){callbackQLineEditEditingFinished(this->objectName().toUtf8().data());}; +void Signal_ReturnPressed(){callbackQLineEditReturnPressed(this->objectName().toUtf8().data());}; +void Signal_SelectionChanged(){callbackQLineEditSelectionChanged(this->objectName().toUtf8().data());}; +void Signal_TextChanged(const QString & text){callbackQLineEditTextChanged(this->objectName().toUtf8().data(), text.toUtf8().data());}; +void Signal_TextEdited(const QString & text){callbackQLineEditTextEdited(this->objectName().toUtf8().data(), text.toUtf8().data());}; +}; + +int QLineEdit_Alignment(QtObjectPtr ptr){ + return static_cast(ptr)->alignment(); +} + +int QLineEdit_CursorMoveStyle(QtObjectPtr ptr){ + return static_cast(ptr)->cursorMoveStyle(); +} + +int QLineEdit_CursorPosition(QtObjectPtr ptr){ + return static_cast(ptr)->cursorPosition(); +} + +char* QLineEdit_DisplayText(QtObjectPtr ptr){ + return static_cast(ptr)->displayText().toUtf8().data(); +} + +int QLineEdit_DragEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->dragEnabled(); +} + +int QLineEdit_EchoMode(QtObjectPtr ptr){ + return static_cast(ptr)->echoMode(); +} + +int QLineEdit_HasAcceptableInput(QtObjectPtr ptr){ + return static_cast(ptr)->hasAcceptableInput(); +} + +int QLineEdit_HasFrame(QtObjectPtr ptr){ + return static_cast(ptr)->hasFrame(); +} + +int QLineEdit_HasSelectedText(QtObjectPtr ptr){ + return static_cast(ptr)->hasSelectedText(); +} + +char* QLineEdit_InputMask(QtObjectPtr ptr){ + return static_cast(ptr)->inputMask().toUtf8().data(); +} + +int QLineEdit_IsClearButtonEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isClearButtonEnabled(); +} + +int QLineEdit_IsModified(QtObjectPtr ptr){ + return static_cast(ptr)->isModified(); +} + +int QLineEdit_IsReadOnly(QtObjectPtr ptr){ + return static_cast(ptr)->isReadOnly(); +} + +int QLineEdit_IsRedoAvailable(QtObjectPtr ptr){ + return static_cast(ptr)->isRedoAvailable(); +} + +int QLineEdit_IsUndoAvailable(QtObjectPtr ptr){ + return static_cast(ptr)->isUndoAvailable(); +} + +int QLineEdit_MaxLength(QtObjectPtr ptr){ + return static_cast(ptr)->maxLength(); +} + +char* QLineEdit_PlaceholderText(QtObjectPtr ptr){ + return static_cast(ptr)->placeholderText().toUtf8().data(); +} + +char* QLineEdit_SelectedText(QtObjectPtr ptr){ + return static_cast(ptr)->selectedText().toUtf8().data(); +} + +void QLineEdit_SetAlignment(QtObjectPtr ptr, int flag){ + static_cast(ptr)->setAlignment(static_cast(flag)); +} + +void QLineEdit_SetClearButtonEnabled(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setClearButtonEnabled(enable != 0); +} + +void QLineEdit_SetCursorMoveStyle(QtObjectPtr ptr, int style){ + static_cast(ptr)->setCursorMoveStyle(static_cast(style)); +} + +void QLineEdit_SetCursorPosition(QtObjectPtr ptr, int v){ + static_cast(ptr)->setCursorPosition(v); +} + +void QLineEdit_SetDragEnabled(QtObjectPtr ptr, int b){ + static_cast(ptr)->setDragEnabled(b != 0); +} + +void QLineEdit_SetEchoMode(QtObjectPtr ptr, int v){ + static_cast(ptr)->setEchoMode(static_cast(v)); +} + +void QLineEdit_SetFrame(QtObjectPtr ptr, int v){ + static_cast(ptr)->setFrame(v != 0); +} + +void QLineEdit_SetInputMask(QtObjectPtr ptr, char* inputMask){ + static_cast(ptr)->setInputMask(QString(inputMask)); +} + +void QLineEdit_SetMaxLength(QtObjectPtr ptr, int v){ + static_cast(ptr)->setMaxLength(v); +} + +void QLineEdit_SetModified(QtObjectPtr ptr, int v){ + static_cast(ptr)->setModified(v != 0); +} + +void QLineEdit_SetPlaceholderText(QtObjectPtr ptr, char* v){ + static_cast(ptr)->setPlaceholderText(QString(v)); +} + +void QLineEdit_SetReadOnly(QtObjectPtr ptr, int v){ + static_cast(ptr)->setReadOnly(v != 0); +} + +void QLineEdit_SetText(QtObjectPtr ptr, char* v){ + QMetaObject::invokeMethod(static_cast(ptr), "setText", Q_ARG(QString, QString(v))); +} + +char* QLineEdit_Text(QtObjectPtr ptr){ + return static_cast(ptr)->text().toUtf8().data(); +} + +QtObjectPtr QLineEdit_NewQLineEdit(QtObjectPtr parent){ + return new QLineEdit(static_cast(parent)); +} + +QtObjectPtr QLineEdit_NewQLineEdit2(char* contents, QtObjectPtr parent){ + return new QLineEdit(QString(contents), static_cast(parent)); +} + +QtObjectPtr QLineEdit_AddAction2(QtObjectPtr ptr, QtObjectPtr icon, int position){ + return static_cast(ptr)->addAction(*static_cast(icon), static_cast(position)); +} + +void QLineEdit_AddAction(QtObjectPtr ptr, QtObjectPtr action, int position){ + static_cast(ptr)->addAction(static_cast(action), static_cast(position)); +} + +void QLineEdit_Backspace(QtObjectPtr ptr){ + static_cast(ptr)->backspace(); +} + +void QLineEdit_Clear(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "clear"); +} + +QtObjectPtr QLineEdit_Completer(QtObjectPtr ptr){ + return static_cast(ptr)->completer(); +} + +void QLineEdit_Copy(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "copy"); +} + +QtObjectPtr QLineEdit_CreateStandardContextMenu(QtObjectPtr ptr){ + return static_cast(ptr)->createStandardContextMenu(); +} + +void QLineEdit_CursorBackward(QtObjectPtr ptr, int mark, int steps){ + static_cast(ptr)->cursorBackward(mark != 0, steps); +} + +void QLineEdit_CursorForward(QtObjectPtr ptr, int mark, int steps){ + static_cast(ptr)->cursorForward(mark != 0, steps); +} + +int QLineEdit_CursorPositionAt(QtObjectPtr ptr, QtObjectPtr pos){ + return static_cast(ptr)->cursorPositionAt(*static_cast(pos)); +} + +void QLineEdit_ConnectCursorPositionChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QLineEdit::cursorPositionChanged), static_cast(ptr), static_cast(&MyQLineEdit::Signal_CursorPositionChanged));; +} + +void QLineEdit_DisconnectCursorPositionChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QLineEdit::cursorPositionChanged), static_cast(ptr), static_cast(&MyQLineEdit::Signal_CursorPositionChanged));; +} + +void QLineEdit_CursorWordBackward(QtObjectPtr ptr, int mark){ + static_cast(ptr)->cursorWordBackward(mark != 0); +} + +void QLineEdit_CursorWordForward(QtObjectPtr ptr, int mark){ + static_cast(ptr)->cursorWordForward(mark != 0); +} + +void QLineEdit_Cut(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "cut"); +} + +void QLineEdit_Del(QtObjectPtr ptr){ + static_cast(ptr)->del(); +} + +void QLineEdit_Deselect(QtObjectPtr ptr){ + static_cast(ptr)->deselect(); +} + +void QLineEdit_ConnectEditingFinished(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QLineEdit::editingFinished), static_cast(ptr), static_cast(&MyQLineEdit::Signal_EditingFinished));; +} + +void QLineEdit_DisconnectEditingFinished(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QLineEdit::editingFinished), static_cast(ptr), static_cast(&MyQLineEdit::Signal_EditingFinished));; +} + +void QLineEdit_End(QtObjectPtr ptr, int mark){ + static_cast(ptr)->end(mark != 0); +} + +int QLineEdit_Event(QtObjectPtr ptr, QtObjectPtr e){ + return static_cast(ptr)->event(static_cast(e)); +} + +void QLineEdit_GetTextMargins(QtObjectPtr ptr, int left, int top, int right, int bottom){ + static_cast(ptr)->getTextMargins(&left, &top, &right, &bottom); +} + +void QLineEdit_Home(QtObjectPtr ptr, int mark){ + static_cast(ptr)->home(mark != 0); +} + +char* QLineEdit_InputMethodQuery(QtObjectPtr ptr, int property){ + return static_cast(ptr)->inputMethodQuery(static_cast(property)).toString().toUtf8().data(); +} + +void QLineEdit_Paste(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "paste"); +} + +void QLineEdit_Redo(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "redo"); +} + +void QLineEdit_ConnectReturnPressed(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QLineEdit::returnPressed), static_cast(ptr), static_cast(&MyQLineEdit::Signal_ReturnPressed));; +} + +void QLineEdit_DisconnectReturnPressed(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QLineEdit::returnPressed), static_cast(ptr), static_cast(&MyQLineEdit::Signal_ReturnPressed));; +} + +void QLineEdit_SelectAll(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "selectAll"); +} + +void QLineEdit_ConnectSelectionChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QLineEdit::selectionChanged), static_cast(ptr), static_cast(&MyQLineEdit::Signal_SelectionChanged));; +} + +void QLineEdit_DisconnectSelectionChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QLineEdit::selectionChanged), static_cast(ptr), static_cast(&MyQLineEdit::Signal_SelectionChanged));; +} + +int QLineEdit_SelectionStart(QtObjectPtr ptr){ + return static_cast(ptr)->selectionStart(); +} + +void QLineEdit_SetCompleter(QtObjectPtr ptr, QtObjectPtr c){ + static_cast(ptr)->setCompleter(static_cast(c)); +} + +void QLineEdit_SetSelection(QtObjectPtr ptr, int start, int length){ + static_cast(ptr)->setSelection(start, length); +} + +void QLineEdit_SetTextMargins2(QtObjectPtr ptr, QtObjectPtr margins){ + static_cast(ptr)->setTextMargins(*static_cast(margins)); +} + +void QLineEdit_SetTextMargins(QtObjectPtr ptr, int left, int top, int right, int bottom){ + static_cast(ptr)->setTextMargins(left, top, right, bottom); +} + +void QLineEdit_SetValidator(QtObjectPtr ptr, QtObjectPtr v){ + static_cast(ptr)->setValidator(static_cast(v)); +} + +void QLineEdit_ConnectTextChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QLineEdit::textChanged), static_cast(ptr), static_cast(&MyQLineEdit::Signal_TextChanged));; +} + +void QLineEdit_DisconnectTextChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QLineEdit::textChanged), static_cast(ptr), static_cast(&MyQLineEdit::Signal_TextChanged));; +} + +void QLineEdit_ConnectTextEdited(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QLineEdit::textEdited), static_cast(ptr), static_cast(&MyQLineEdit::Signal_TextEdited));; +} + +void QLineEdit_DisconnectTextEdited(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QLineEdit::textEdited), static_cast(ptr), static_cast(&MyQLineEdit::Signal_TextEdited));; +} + +void QLineEdit_Undo(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "undo"); +} + +QtObjectPtr QLineEdit_Validator(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->validator()); +} + +void QLineEdit_DestroyQLineEdit(QtObjectPtr ptr){ + static_cast(ptr)->~QLineEdit(); +} + diff --git a/widgets/qlineedit.go b/widgets/qlineedit.go new file mode 100755 index 00000000..4de816b2 --- /dev/null +++ b/widgets/qlineedit.go @@ -0,0 +1,591 @@ +package widgets + +//#include "qlineedit.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QLineEdit struct { + QWidget +} + +type QLineEditITF interface { + QWidgetITF + QLineEditPTR() *QLineEdit +} + +func PointerFromQLineEdit(ptr QLineEditITF) unsafe.Pointer { + if ptr != nil { + return ptr.QLineEditPTR().Pointer() + } + return nil +} + +func QLineEditFromPointer(ptr unsafe.Pointer) *QLineEdit { + var n = new(QLineEdit) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QLineEdit_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QLineEdit) QLineEditPTR() *QLineEdit { + return ptr +} + +//QLineEdit::ActionPosition +type QLineEdit__ActionPosition int + +var ( + QLineEdit__LeadingPosition = QLineEdit__ActionPosition(0) + QLineEdit__TrailingPosition = QLineEdit__ActionPosition(1) +) + +//QLineEdit::EchoMode +type QLineEdit__EchoMode int + +var ( + QLineEdit__Normal = QLineEdit__EchoMode(0) + QLineEdit__NoEcho = QLineEdit__EchoMode(1) + QLineEdit__Password = QLineEdit__EchoMode(2) + QLineEdit__PasswordEchoOnEdit = QLineEdit__EchoMode(3) +) + +func (ptr *QLineEdit) Alignment() core.Qt__AlignmentFlag { + if ptr.Pointer() != nil { + return core.Qt__AlignmentFlag(C.QLineEdit_Alignment(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLineEdit) CursorMoveStyle() core.Qt__CursorMoveStyle { + if ptr.Pointer() != nil { + return core.Qt__CursorMoveStyle(C.QLineEdit_CursorMoveStyle(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLineEdit) CursorPosition() int { + if ptr.Pointer() != nil { + return int(C.QLineEdit_CursorPosition(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLineEdit) DisplayText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QLineEdit_DisplayText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QLineEdit) DragEnabled() bool { + if ptr.Pointer() != nil { + return C.QLineEdit_DragEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLineEdit) EchoMode() QLineEdit__EchoMode { + if ptr.Pointer() != nil { + return QLineEdit__EchoMode(C.QLineEdit_EchoMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLineEdit) HasAcceptableInput() bool { + if ptr.Pointer() != nil { + return C.QLineEdit_HasAcceptableInput(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLineEdit) HasFrame() bool { + if ptr.Pointer() != nil { + return C.QLineEdit_HasFrame(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLineEdit) HasSelectedText() bool { + if ptr.Pointer() != nil { + return C.QLineEdit_HasSelectedText(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLineEdit) InputMask() string { + if ptr.Pointer() != nil { + return C.GoString(C.QLineEdit_InputMask(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QLineEdit) IsClearButtonEnabled() bool { + if ptr.Pointer() != nil { + return C.QLineEdit_IsClearButtonEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLineEdit) IsModified() bool { + if ptr.Pointer() != nil { + return C.QLineEdit_IsModified(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLineEdit) IsReadOnly() bool { + if ptr.Pointer() != nil { + return C.QLineEdit_IsReadOnly(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLineEdit) IsRedoAvailable() bool { + if ptr.Pointer() != nil { + return C.QLineEdit_IsRedoAvailable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLineEdit) IsUndoAvailable() bool { + if ptr.Pointer() != nil { + return C.QLineEdit_IsUndoAvailable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QLineEdit) MaxLength() int { + if ptr.Pointer() != nil { + return int(C.QLineEdit_MaxLength(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLineEdit) PlaceholderText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QLineEdit_PlaceholderText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QLineEdit) SelectedText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QLineEdit_SelectedText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QLineEdit) SetAlignment(flag core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QLineEdit_SetAlignment(C.QtObjectPtr(ptr.Pointer()), C.int(flag)) + } +} + +func (ptr *QLineEdit) SetClearButtonEnabled(enable bool) { + if ptr.Pointer() != nil { + C.QLineEdit_SetClearButtonEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QLineEdit) SetCursorMoveStyle(style core.Qt__CursorMoveStyle) { + if ptr.Pointer() != nil { + C.QLineEdit_SetCursorMoveStyle(C.QtObjectPtr(ptr.Pointer()), C.int(style)) + } +} + +func (ptr *QLineEdit) SetCursorPosition(v int) { + if ptr.Pointer() != nil { + C.QLineEdit_SetCursorPosition(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QLineEdit) SetDragEnabled(b bool) { + if ptr.Pointer() != nil { + C.QLineEdit_SetDragEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(b))) + } +} + +func (ptr *QLineEdit) SetEchoMode(v QLineEdit__EchoMode) { + if ptr.Pointer() != nil { + C.QLineEdit_SetEchoMode(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QLineEdit) SetFrame(v bool) { + if ptr.Pointer() != nil { + C.QLineEdit_SetFrame(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QLineEdit) SetInputMask(inputMask string) { + if ptr.Pointer() != nil { + C.QLineEdit_SetInputMask(C.QtObjectPtr(ptr.Pointer()), C.CString(inputMask)) + } +} + +func (ptr *QLineEdit) SetMaxLength(v int) { + if ptr.Pointer() != nil { + C.QLineEdit_SetMaxLength(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QLineEdit) SetModified(v bool) { + if ptr.Pointer() != nil { + C.QLineEdit_SetModified(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QLineEdit) SetPlaceholderText(v string) { + if ptr.Pointer() != nil { + C.QLineEdit_SetPlaceholderText(C.QtObjectPtr(ptr.Pointer()), C.CString(v)) + } +} + +func (ptr *QLineEdit) SetReadOnly(v bool) { + if ptr.Pointer() != nil { + C.QLineEdit_SetReadOnly(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QLineEdit) SetText(v string) { + if ptr.Pointer() != nil { + C.QLineEdit_SetText(C.QtObjectPtr(ptr.Pointer()), C.CString(v)) + } +} + +func (ptr *QLineEdit) Text() string { + if ptr.Pointer() != nil { + return C.GoString(C.QLineEdit_Text(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func NewQLineEdit(parent QWidgetITF) *QLineEdit { + return QLineEditFromPointer(unsafe.Pointer(C.QLineEdit_NewQLineEdit(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQLineEdit2(contents string, parent QWidgetITF) *QLineEdit { + return QLineEditFromPointer(unsafe.Pointer(C.QLineEdit_NewQLineEdit2(C.CString(contents), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QLineEdit) AddAction2(icon gui.QIconITF, position QLineEdit__ActionPosition) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QLineEdit_AddAction2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQIcon(icon)), C.int(position)))) + } + return nil +} + +func (ptr *QLineEdit) AddAction(action QActionITF, position QLineEdit__ActionPosition) { + if ptr.Pointer() != nil { + C.QLineEdit_AddAction(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAction(action)), C.int(position)) + } +} + +func (ptr *QLineEdit) Backspace() { + if ptr.Pointer() != nil { + C.QLineEdit_Backspace(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QLineEdit) Clear() { + if ptr.Pointer() != nil { + C.QLineEdit_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QLineEdit) Completer() *QCompleter { + if ptr.Pointer() != nil { + return QCompleterFromPointer(unsafe.Pointer(C.QLineEdit_Completer(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QLineEdit) Copy() { + if ptr.Pointer() != nil { + C.QLineEdit_Copy(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QLineEdit) CreateStandardContextMenu() *QMenu { + if ptr.Pointer() != nil { + return QMenuFromPointer(unsafe.Pointer(C.QLineEdit_CreateStandardContextMenu(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QLineEdit) CursorBackward(mark bool, steps int) { + if ptr.Pointer() != nil { + C.QLineEdit_CursorBackward(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(mark)), C.int(steps)) + } +} + +func (ptr *QLineEdit) CursorForward(mark bool, steps int) { + if ptr.Pointer() != nil { + C.QLineEdit_CursorForward(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(mark)), C.int(steps)) + } +} + +func (ptr *QLineEdit) CursorPositionAt(pos core.QPointITF) int { + if ptr.Pointer() != nil { + return int(C.QLineEdit_CursorPositionAt(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(pos)))) + } + return 0 +} + +func (ptr *QLineEdit) ConnectCursorPositionChanged(f func(old int, n int)) { + if ptr.Pointer() != nil { + C.QLineEdit_ConnectCursorPositionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "cursorPositionChanged", f) + } +} + +func (ptr *QLineEdit) DisconnectCursorPositionChanged() { + if ptr.Pointer() != nil { + C.QLineEdit_DisconnectCursorPositionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "cursorPositionChanged") + } +} + +//export callbackQLineEditCursorPositionChanged +func callbackQLineEditCursorPositionChanged(ptrName *C.char, old C.int, n C.int) { + qt.GetSignal(C.GoString(ptrName), "cursorPositionChanged").(func(int, int))(int(old), int(n)) +} + +func (ptr *QLineEdit) CursorWordBackward(mark bool) { + if ptr.Pointer() != nil { + C.QLineEdit_CursorWordBackward(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(mark))) + } +} + +func (ptr *QLineEdit) CursorWordForward(mark bool) { + if ptr.Pointer() != nil { + C.QLineEdit_CursorWordForward(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(mark))) + } +} + +func (ptr *QLineEdit) Cut() { + if ptr.Pointer() != nil { + C.QLineEdit_Cut(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QLineEdit) Del() { + if ptr.Pointer() != nil { + C.QLineEdit_Del(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QLineEdit) Deselect() { + if ptr.Pointer() != nil { + C.QLineEdit_Deselect(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QLineEdit) ConnectEditingFinished(f func()) { + if ptr.Pointer() != nil { + C.QLineEdit_ConnectEditingFinished(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "editingFinished", f) + } +} + +func (ptr *QLineEdit) DisconnectEditingFinished() { + if ptr.Pointer() != nil { + C.QLineEdit_DisconnectEditingFinished(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "editingFinished") + } +} + +//export callbackQLineEditEditingFinished +func callbackQLineEditEditingFinished(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "editingFinished").(func())() +} + +func (ptr *QLineEdit) End(mark bool) { + if ptr.Pointer() != nil { + C.QLineEdit_End(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(mark))) + } +} + +func (ptr *QLineEdit) Event(e core.QEventITF) bool { + if ptr.Pointer() != nil { + return C.QLineEdit_Event(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQEvent(e))) != 0 + } + return false +} + +func (ptr *QLineEdit) GetTextMargins(left int, top int, right int, bottom int) { + if ptr.Pointer() != nil { + C.QLineEdit_GetTextMargins(C.QtObjectPtr(ptr.Pointer()), C.int(left), C.int(top), C.int(right), C.int(bottom)) + } +} + +func (ptr *QLineEdit) Home(mark bool) { + if ptr.Pointer() != nil { + C.QLineEdit_Home(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(mark))) + } +} + +func (ptr *QLineEdit) InputMethodQuery(property core.Qt__InputMethodQuery) string { + if ptr.Pointer() != nil { + return C.GoString(C.QLineEdit_InputMethodQuery(C.QtObjectPtr(ptr.Pointer()), C.int(property))) + } + return "" +} + +func (ptr *QLineEdit) Paste() { + if ptr.Pointer() != nil { + C.QLineEdit_Paste(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QLineEdit) Redo() { + if ptr.Pointer() != nil { + C.QLineEdit_Redo(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QLineEdit) ConnectReturnPressed(f func()) { + if ptr.Pointer() != nil { + C.QLineEdit_ConnectReturnPressed(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "returnPressed", f) + } +} + +func (ptr *QLineEdit) DisconnectReturnPressed() { + if ptr.Pointer() != nil { + C.QLineEdit_DisconnectReturnPressed(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "returnPressed") + } +} + +//export callbackQLineEditReturnPressed +func callbackQLineEditReturnPressed(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "returnPressed").(func())() +} + +func (ptr *QLineEdit) SelectAll() { + if ptr.Pointer() != nil { + C.QLineEdit_SelectAll(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QLineEdit) ConnectSelectionChanged(f func()) { + if ptr.Pointer() != nil { + C.QLineEdit_ConnectSelectionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "selectionChanged", f) + } +} + +func (ptr *QLineEdit) DisconnectSelectionChanged() { + if ptr.Pointer() != nil { + C.QLineEdit_DisconnectSelectionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "selectionChanged") + } +} + +//export callbackQLineEditSelectionChanged +func callbackQLineEditSelectionChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "selectionChanged").(func())() +} + +func (ptr *QLineEdit) SelectionStart() int { + if ptr.Pointer() != nil { + return int(C.QLineEdit_SelectionStart(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QLineEdit) SetCompleter(c QCompleterITF) { + if ptr.Pointer() != nil { + C.QLineEdit_SetCompleter(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQCompleter(c))) + } +} + +func (ptr *QLineEdit) SetSelection(start int, length int) { + if ptr.Pointer() != nil { + C.QLineEdit_SetSelection(C.QtObjectPtr(ptr.Pointer()), C.int(start), C.int(length)) + } +} + +func (ptr *QLineEdit) SetTextMargins2(margins core.QMarginsITF) { + if ptr.Pointer() != nil { + C.QLineEdit_SetTextMargins2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQMargins(margins))) + } +} + +func (ptr *QLineEdit) SetTextMargins(left int, top int, right int, bottom int) { + if ptr.Pointer() != nil { + C.QLineEdit_SetTextMargins(C.QtObjectPtr(ptr.Pointer()), C.int(left), C.int(top), C.int(right), C.int(bottom)) + } +} + +func (ptr *QLineEdit) SetValidator(v gui.QValidatorITF) { + if ptr.Pointer() != nil { + C.QLineEdit_SetValidator(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQValidator(v))) + } +} + +func (ptr *QLineEdit) ConnectTextChanged(f func(text string)) { + if ptr.Pointer() != nil { + C.QLineEdit_ConnectTextChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "textChanged", f) + } +} + +func (ptr *QLineEdit) DisconnectTextChanged() { + if ptr.Pointer() != nil { + C.QLineEdit_DisconnectTextChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "textChanged") + } +} + +//export callbackQLineEditTextChanged +func callbackQLineEditTextChanged(ptrName *C.char, text *C.char) { + qt.GetSignal(C.GoString(ptrName), "textChanged").(func(string))(C.GoString(text)) +} + +func (ptr *QLineEdit) ConnectTextEdited(f func(text string)) { + if ptr.Pointer() != nil { + C.QLineEdit_ConnectTextEdited(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "textEdited", f) + } +} + +func (ptr *QLineEdit) DisconnectTextEdited() { + if ptr.Pointer() != nil { + C.QLineEdit_DisconnectTextEdited(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "textEdited") + } +} + +//export callbackQLineEditTextEdited +func callbackQLineEditTextEdited(ptrName *C.char, text *C.char) { + qt.GetSignal(C.GoString(ptrName), "textEdited").(func(string))(C.GoString(text)) +} + +func (ptr *QLineEdit) Undo() { + if ptr.Pointer() != nil { + C.QLineEdit_Undo(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QLineEdit) Validator() *gui.QValidator { + if ptr.Pointer() != nil { + return gui.QValidatorFromPointer(unsafe.Pointer(C.QLineEdit_Validator(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QLineEdit) DestroyQLineEdit() { + if ptr.Pointer() != nil { + C.QLineEdit_DestroyQLineEdit(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qlineedit.h b/widgets/qlineedit.h new file mode 100755 index 00000000..80c84cfa --- /dev/null +++ b/widgets/qlineedit.h @@ -0,0 +1,87 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QLineEdit_Alignment(QtObjectPtr ptr); +int QLineEdit_CursorMoveStyle(QtObjectPtr ptr); +int QLineEdit_CursorPosition(QtObjectPtr ptr); +char* QLineEdit_DisplayText(QtObjectPtr ptr); +int QLineEdit_DragEnabled(QtObjectPtr ptr); +int QLineEdit_EchoMode(QtObjectPtr ptr); +int QLineEdit_HasAcceptableInput(QtObjectPtr ptr); +int QLineEdit_HasFrame(QtObjectPtr ptr); +int QLineEdit_HasSelectedText(QtObjectPtr ptr); +char* QLineEdit_InputMask(QtObjectPtr ptr); +int QLineEdit_IsClearButtonEnabled(QtObjectPtr ptr); +int QLineEdit_IsModified(QtObjectPtr ptr); +int QLineEdit_IsReadOnly(QtObjectPtr ptr); +int QLineEdit_IsRedoAvailable(QtObjectPtr ptr); +int QLineEdit_IsUndoAvailable(QtObjectPtr ptr); +int QLineEdit_MaxLength(QtObjectPtr ptr); +char* QLineEdit_PlaceholderText(QtObjectPtr ptr); +char* QLineEdit_SelectedText(QtObjectPtr ptr); +void QLineEdit_SetAlignment(QtObjectPtr ptr, int flag); +void QLineEdit_SetClearButtonEnabled(QtObjectPtr ptr, int enable); +void QLineEdit_SetCursorMoveStyle(QtObjectPtr ptr, int style); +void QLineEdit_SetCursorPosition(QtObjectPtr ptr, int v); +void QLineEdit_SetDragEnabled(QtObjectPtr ptr, int b); +void QLineEdit_SetEchoMode(QtObjectPtr ptr, int v); +void QLineEdit_SetFrame(QtObjectPtr ptr, int v); +void QLineEdit_SetInputMask(QtObjectPtr ptr, char* inputMask); +void QLineEdit_SetMaxLength(QtObjectPtr ptr, int v); +void QLineEdit_SetModified(QtObjectPtr ptr, int v); +void QLineEdit_SetPlaceholderText(QtObjectPtr ptr, char* v); +void QLineEdit_SetReadOnly(QtObjectPtr ptr, int v); +void QLineEdit_SetText(QtObjectPtr ptr, char* v); +char* QLineEdit_Text(QtObjectPtr ptr); +QtObjectPtr QLineEdit_NewQLineEdit(QtObjectPtr parent); +QtObjectPtr QLineEdit_NewQLineEdit2(char* contents, QtObjectPtr parent); +QtObjectPtr QLineEdit_AddAction2(QtObjectPtr ptr, QtObjectPtr icon, int position); +void QLineEdit_AddAction(QtObjectPtr ptr, QtObjectPtr action, int position); +void QLineEdit_Backspace(QtObjectPtr ptr); +void QLineEdit_Clear(QtObjectPtr ptr); +QtObjectPtr QLineEdit_Completer(QtObjectPtr ptr); +void QLineEdit_Copy(QtObjectPtr ptr); +QtObjectPtr QLineEdit_CreateStandardContextMenu(QtObjectPtr ptr); +void QLineEdit_CursorBackward(QtObjectPtr ptr, int mark, int steps); +void QLineEdit_CursorForward(QtObjectPtr ptr, int mark, int steps); +int QLineEdit_CursorPositionAt(QtObjectPtr ptr, QtObjectPtr pos); +void QLineEdit_ConnectCursorPositionChanged(QtObjectPtr ptr); +void QLineEdit_DisconnectCursorPositionChanged(QtObjectPtr ptr); +void QLineEdit_CursorWordBackward(QtObjectPtr ptr, int mark); +void QLineEdit_CursorWordForward(QtObjectPtr ptr, int mark); +void QLineEdit_Cut(QtObjectPtr ptr); +void QLineEdit_Del(QtObjectPtr ptr); +void QLineEdit_Deselect(QtObjectPtr ptr); +void QLineEdit_ConnectEditingFinished(QtObjectPtr ptr); +void QLineEdit_DisconnectEditingFinished(QtObjectPtr ptr); +void QLineEdit_End(QtObjectPtr ptr, int mark); +int QLineEdit_Event(QtObjectPtr ptr, QtObjectPtr e); +void QLineEdit_GetTextMargins(QtObjectPtr ptr, int left, int top, int right, int bottom); +void QLineEdit_Home(QtObjectPtr ptr, int mark); +char* QLineEdit_InputMethodQuery(QtObjectPtr ptr, int property); +void QLineEdit_Paste(QtObjectPtr ptr); +void QLineEdit_Redo(QtObjectPtr ptr); +void QLineEdit_ConnectReturnPressed(QtObjectPtr ptr); +void QLineEdit_DisconnectReturnPressed(QtObjectPtr ptr); +void QLineEdit_SelectAll(QtObjectPtr ptr); +void QLineEdit_ConnectSelectionChanged(QtObjectPtr ptr); +void QLineEdit_DisconnectSelectionChanged(QtObjectPtr ptr); +int QLineEdit_SelectionStart(QtObjectPtr ptr); +void QLineEdit_SetCompleter(QtObjectPtr ptr, QtObjectPtr c); +void QLineEdit_SetSelection(QtObjectPtr ptr, int start, int length); +void QLineEdit_SetTextMargins2(QtObjectPtr ptr, QtObjectPtr margins); +void QLineEdit_SetTextMargins(QtObjectPtr ptr, int left, int top, int right, int bottom); +void QLineEdit_SetValidator(QtObjectPtr ptr, QtObjectPtr v); +void QLineEdit_ConnectTextChanged(QtObjectPtr ptr); +void QLineEdit_DisconnectTextChanged(QtObjectPtr ptr); +void QLineEdit_ConnectTextEdited(QtObjectPtr ptr); +void QLineEdit_DisconnectTextEdited(QtObjectPtr ptr); +void QLineEdit_Undo(QtObjectPtr ptr); +QtObjectPtr QLineEdit_Validator(QtObjectPtr ptr); +void QLineEdit_DestroyQLineEdit(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qlistview.cpp b/widgets/qlistview.cpp new file mode 100755 index 00000000..32c5283d --- /dev/null +++ b/widgets/qlistview.cpp @@ -0,0 +1,146 @@ +#include "qlistview.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQListView: public QListView { +public: +}; + +int QListView_BatchSize(QtObjectPtr ptr){ + return static_cast(ptr)->batchSize(); +} + +int QListView_Flow(QtObjectPtr ptr){ + return static_cast(ptr)->flow(); +} + +int QListView_IsSelectionRectVisible(QtObjectPtr ptr){ + return static_cast(ptr)->isSelectionRectVisible(); +} + +int QListView_IsWrapping(QtObjectPtr ptr){ + return static_cast(ptr)->isWrapping(); +} + +int QListView_LayoutMode(QtObjectPtr ptr){ + return static_cast(ptr)->layoutMode(); +} + +int QListView_ModelColumn(QtObjectPtr ptr){ + return static_cast(ptr)->modelColumn(); +} + +int QListView_Movement(QtObjectPtr ptr){ + return static_cast(ptr)->movement(); +} + +int QListView_ResizeMode(QtObjectPtr ptr){ + return static_cast(ptr)->resizeMode(); +} + +void QListView_SetBatchSize(QtObjectPtr ptr, int batchSize){ + static_cast(ptr)->setBatchSize(batchSize); +} + +void QListView_SetFlow(QtObjectPtr ptr, int flow){ + static_cast(ptr)->setFlow(static_cast(flow)); +} + +void QListView_SetGridSize(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->setGridSize(*static_cast(size)); +} + +void QListView_SetLayoutMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setLayoutMode(static_cast(mode)); +} + +void QListView_SetModelColumn(QtObjectPtr ptr, int column){ + static_cast(ptr)->setModelColumn(column); +} + +void QListView_SetMovement(QtObjectPtr ptr, int movement){ + static_cast(ptr)->setMovement(static_cast(movement)); +} + +void QListView_SetResizeMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setResizeMode(static_cast(mode)); +} + +void QListView_SetSelectionRectVisible(QtObjectPtr ptr, int show){ + static_cast(ptr)->setSelectionRectVisible(show != 0); +} + +void QListView_SetSpacing(QtObjectPtr ptr, int space){ + static_cast(ptr)->setSpacing(space); +} + +void QListView_SetUniformItemSizes(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setUniformItemSizes(enable != 0); +} + +void QListView_SetViewMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setViewMode(static_cast(mode)); +} + +void QListView_SetWordWrap(QtObjectPtr ptr, int on){ + static_cast(ptr)->setWordWrap(on != 0); +} + +void QListView_SetWrapping(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setWrapping(enable != 0); +} + +int QListView_Spacing(QtObjectPtr ptr){ + return static_cast(ptr)->spacing(); +} + +int QListView_UniformItemSizes(QtObjectPtr ptr){ + return static_cast(ptr)->uniformItemSizes(); +} + +int QListView_ViewMode(QtObjectPtr ptr){ + return static_cast(ptr)->viewMode(); +} + +int QListView_WordWrap(QtObjectPtr ptr){ + return static_cast(ptr)->wordWrap(); +} + +QtObjectPtr QListView_NewQListView(QtObjectPtr parent){ + return new QListView(static_cast(parent)); +} + +void QListView_ClearPropertyFlags(QtObjectPtr ptr){ + static_cast(ptr)->clearPropertyFlags(); +} + +QtObjectPtr QListView_IndexAt(QtObjectPtr ptr, QtObjectPtr p){ + return static_cast(ptr)->indexAt(*static_cast(p)).internalPointer(); +} + +int QListView_IsRowHidden(QtObjectPtr ptr, int row){ + return static_cast(ptr)->isRowHidden(row); +} + +void QListView_ScrollTo(QtObjectPtr ptr, QtObjectPtr index, int hint){ + static_cast(ptr)->scrollTo(*static_cast(index), static_cast(hint)); +} + +void QListView_SetRowHidden(QtObjectPtr ptr, int row, int hide){ + static_cast(ptr)->setRowHidden(row, hide != 0); +} + +void QListView_DestroyQListView(QtObjectPtr ptr){ + static_cast(ptr)->~QListView(); +} + diff --git a/widgets/qlistview.go b/widgets/qlistview.go new file mode 100755 index 00000000..a96467b7 --- /dev/null +++ b/widgets/qlistview.go @@ -0,0 +1,284 @@ +package widgets + +//#include "qlistview.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QListView struct { + QAbstractItemView +} + +type QListViewITF interface { + QAbstractItemViewITF + QListViewPTR() *QListView +} + +func PointerFromQListView(ptr QListViewITF) unsafe.Pointer { + if ptr != nil { + return ptr.QListViewPTR().Pointer() + } + return nil +} + +func QListViewFromPointer(ptr unsafe.Pointer) *QListView { + var n = new(QListView) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QListView_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QListView) QListViewPTR() *QListView { + return ptr +} + +//QListView::Flow +type QListView__Flow int + +var ( + QListView__LeftToRight = QListView__Flow(0) + QListView__TopToBottom = QListView__Flow(1) +) + +//QListView::LayoutMode +type QListView__LayoutMode int + +var ( + QListView__SinglePass = QListView__LayoutMode(0) + QListView__Batched = QListView__LayoutMode(1) +) + +//QListView::Movement +type QListView__Movement int + +var ( + QListView__Static = QListView__Movement(0) + QListView__Free = QListView__Movement(1) + QListView__Snap = QListView__Movement(2) +) + +//QListView::ResizeMode +type QListView__ResizeMode int + +var ( + QListView__Fixed = QListView__ResizeMode(0) + QListView__Adjust = QListView__ResizeMode(1) +) + +//QListView::ViewMode +type QListView__ViewMode int + +var ( + QListView__ListMode = QListView__ViewMode(0) + QListView__IconMode = QListView__ViewMode(1) +) + +func (ptr *QListView) BatchSize() int { + if ptr.Pointer() != nil { + return int(C.QListView_BatchSize(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QListView) Flow() QListView__Flow { + if ptr.Pointer() != nil { + return QListView__Flow(C.QListView_Flow(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QListView) IsSelectionRectVisible() bool { + if ptr.Pointer() != nil { + return C.QListView_IsSelectionRectVisible(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QListView) IsWrapping() bool { + if ptr.Pointer() != nil { + return C.QListView_IsWrapping(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QListView) LayoutMode() QListView__LayoutMode { + if ptr.Pointer() != nil { + return QListView__LayoutMode(C.QListView_LayoutMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QListView) ModelColumn() int { + if ptr.Pointer() != nil { + return int(C.QListView_ModelColumn(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QListView) Movement() QListView__Movement { + if ptr.Pointer() != nil { + return QListView__Movement(C.QListView_Movement(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QListView) ResizeMode() QListView__ResizeMode { + if ptr.Pointer() != nil { + return QListView__ResizeMode(C.QListView_ResizeMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QListView) SetBatchSize(batchSize int) { + if ptr.Pointer() != nil { + C.QListView_SetBatchSize(C.QtObjectPtr(ptr.Pointer()), C.int(batchSize)) + } +} + +func (ptr *QListView) SetFlow(flow QListView__Flow) { + if ptr.Pointer() != nil { + C.QListView_SetFlow(C.QtObjectPtr(ptr.Pointer()), C.int(flow)) + } +} + +func (ptr *QListView) SetGridSize(size core.QSizeITF) { + if ptr.Pointer() != nil { + C.QListView_SetGridSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(size))) + } +} + +func (ptr *QListView) SetLayoutMode(mode QListView__LayoutMode) { + if ptr.Pointer() != nil { + C.QListView_SetLayoutMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QListView) SetModelColumn(column int) { + if ptr.Pointer() != nil { + C.QListView_SetModelColumn(C.QtObjectPtr(ptr.Pointer()), C.int(column)) + } +} + +func (ptr *QListView) SetMovement(movement QListView__Movement) { + if ptr.Pointer() != nil { + C.QListView_SetMovement(C.QtObjectPtr(ptr.Pointer()), C.int(movement)) + } +} + +func (ptr *QListView) SetResizeMode(mode QListView__ResizeMode) { + if ptr.Pointer() != nil { + C.QListView_SetResizeMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QListView) SetSelectionRectVisible(show bool) { + if ptr.Pointer() != nil { + C.QListView_SetSelectionRectVisible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(show))) + } +} + +func (ptr *QListView) SetSpacing(space int) { + if ptr.Pointer() != nil { + C.QListView_SetSpacing(C.QtObjectPtr(ptr.Pointer()), C.int(space)) + } +} + +func (ptr *QListView) SetUniformItemSizes(enable bool) { + if ptr.Pointer() != nil { + C.QListView_SetUniformItemSizes(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QListView) SetViewMode(mode QListView__ViewMode) { + if ptr.Pointer() != nil { + C.QListView_SetViewMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QListView) SetWordWrap(on bool) { + if ptr.Pointer() != nil { + C.QListView_SetWordWrap(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(on))) + } +} + +func (ptr *QListView) SetWrapping(enable bool) { + if ptr.Pointer() != nil { + C.QListView_SetWrapping(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QListView) Spacing() int { + if ptr.Pointer() != nil { + return int(C.QListView_Spacing(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QListView) UniformItemSizes() bool { + if ptr.Pointer() != nil { + return C.QListView_UniformItemSizes(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QListView) ViewMode() QListView__ViewMode { + if ptr.Pointer() != nil { + return QListView__ViewMode(C.QListView_ViewMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QListView) WordWrap() bool { + if ptr.Pointer() != nil { + return C.QListView_WordWrap(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func NewQListView(parent QWidgetITF) *QListView { + return QListViewFromPointer(unsafe.Pointer(C.QListView_NewQListView(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QListView) ClearPropertyFlags() { + if ptr.Pointer() != nil { + C.QListView_ClearPropertyFlags(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QListView) IndexAt(p core.QPointITF) *core.QModelIndex { + if ptr.Pointer() != nil { + return core.QModelIndexFromPointer(unsafe.Pointer(C.QListView_IndexAt(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(p))))) + } + return nil +} + +func (ptr *QListView) IsRowHidden(row int) bool { + if ptr.Pointer() != nil { + return C.QListView_IsRowHidden(C.QtObjectPtr(ptr.Pointer()), C.int(row)) != 0 + } + return false +} + +func (ptr *QListView) ScrollTo(index core.QModelIndexITF, hint QAbstractItemView__ScrollHint) { + if ptr.Pointer() != nil { + C.QListView_ScrollTo(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index)), C.int(hint)) + } +} + +func (ptr *QListView) SetRowHidden(row int, hide bool) { + if ptr.Pointer() != nil { + C.QListView_SetRowHidden(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(qt.GoBoolToInt(hide))) + } +} + +func (ptr *QListView) DestroyQListView() { + if ptr.Pointer() != nil { + C.QListView_DestroyQListView(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qlistview.h b/widgets/qlistview.h new file mode 100755 index 00000000..2eefab1c --- /dev/null +++ b/widgets/qlistview.h @@ -0,0 +1,41 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QListView_BatchSize(QtObjectPtr ptr); +int QListView_Flow(QtObjectPtr ptr); +int QListView_IsSelectionRectVisible(QtObjectPtr ptr); +int QListView_IsWrapping(QtObjectPtr ptr); +int QListView_LayoutMode(QtObjectPtr ptr); +int QListView_ModelColumn(QtObjectPtr ptr); +int QListView_Movement(QtObjectPtr ptr); +int QListView_ResizeMode(QtObjectPtr ptr); +void QListView_SetBatchSize(QtObjectPtr ptr, int batchSize); +void QListView_SetFlow(QtObjectPtr ptr, int flow); +void QListView_SetGridSize(QtObjectPtr ptr, QtObjectPtr size); +void QListView_SetLayoutMode(QtObjectPtr ptr, int mode); +void QListView_SetModelColumn(QtObjectPtr ptr, int column); +void QListView_SetMovement(QtObjectPtr ptr, int movement); +void QListView_SetResizeMode(QtObjectPtr ptr, int mode); +void QListView_SetSelectionRectVisible(QtObjectPtr ptr, int show); +void QListView_SetSpacing(QtObjectPtr ptr, int space); +void QListView_SetUniformItemSizes(QtObjectPtr ptr, int enable); +void QListView_SetViewMode(QtObjectPtr ptr, int mode); +void QListView_SetWordWrap(QtObjectPtr ptr, int on); +void QListView_SetWrapping(QtObjectPtr ptr, int enable); +int QListView_Spacing(QtObjectPtr ptr); +int QListView_UniformItemSizes(QtObjectPtr ptr); +int QListView_ViewMode(QtObjectPtr ptr); +int QListView_WordWrap(QtObjectPtr ptr); +QtObjectPtr QListView_NewQListView(QtObjectPtr parent); +void QListView_ClearPropertyFlags(QtObjectPtr ptr); +QtObjectPtr QListView_IndexAt(QtObjectPtr ptr, QtObjectPtr p); +int QListView_IsRowHidden(QtObjectPtr ptr, int row); +void QListView_ScrollTo(QtObjectPtr ptr, QtObjectPtr index, int hint); +void QListView_SetRowHidden(QtObjectPtr ptr, int row, int hide); +void QListView_DestroyQListView(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qlistwidget.cpp b/widgets/qlistwidget.cpp new file mode 100755 index 00000000..262f424f --- /dev/null +++ b/widgets/qlistwidget.cpp @@ -0,0 +1,241 @@ +#include "qlistwidget.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQListWidget: public QListWidget { +public: +void Signal_CurrentItemChanged(QListWidgetItem * current, QListWidgetItem * previous){callbackQListWidgetCurrentItemChanged(this->objectName().toUtf8().data(), current, previous);}; +void Signal_CurrentRowChanged(int currentRow){callbackQListWidgetCurrentRowChanged(this->objectName().toUtf8().data(), currentRow);}; +void Signal_CurrentTextChanged(const QString & currentText){callbackQListWidgetCurrentTextChanged(this->objectName().toUtf8().data(), currentText.toUtf8().data());}; +void Signal_ItemActivated(QListWidgetItem * item){callbackQListWidgetItemActivated(this->objectName().toUtf8().data(), item);}; +void Signal_ItemChanged(QListWidgetItem * item){callbackQListWidgetItemChanged(this->objectName().toUtf8().data(), item);}; +void Signal_ItemClicked(QListWidgetItem * item){callbackQListWidgetItemClicked(this->objectName().toUtf8().data(), item);}; +void Signal_ItemDoubleClicked(QListWidgetItem * item){callbackQListWidgetItemDoubleClicked(this->objectName().toUtf8().data(), item);}; +void Signal_ItemEntered(QListWidgetItem * item){callbackQListWidgetItemEntered(this->objectName().toUtf8().data(), item);}; +void Signal_ItemPressed(QListWidgetItem * item){callbackQListWidgetItemPressed(this->objectName().toUtf8().data(), item);}; +void Signal_ItemSelectionChanged(){callbackQListWidgetItemSelectionChanged(this->objectName().toUtf8().data());}; +}; + +int QListWidget_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +int QListWidget_CurrentRow(QtObjectPtr ptr){ + return static_cast(ptr)->currentRow(); +} + +int QListWidget_IsSortingEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isSortingEnabled(); +} + +void QListWidget_SetCurrentRow(QtObjectPtr ptr, int row){ + static_cast(ptr)->setCurrentRow(row); +} + +void QListWidget_SetSortingEnabled(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setSortingEnabled(enable != 0); +} + +QtObjectPtr QListWidget_NewQListWidget(QtObjectPtr parent){ + return new QListWidget(static_cast(parent)); +} + +void QListWidget_AddItem2(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->addItem(static_cast(item)); +} + +void QListWidget_AddItem(QtObjectPtr ptr, char* label){ + static_cast(ptr)->addItem(QString(label)); +} + +void QListWidget_AddItems(QtObjectPtr ptr, char* labels){ + static_cast(ptr)->addItems(QString(labels).split("|", QString::SkipEmptyParts)); +} + +void QListWidget_Clear(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "clear"); +} + +void QListWidget_ClosePersistentEditor(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->closePersistentEditor(static_cast(item)); +} + +QtObjectPtr QListWidget_CurrentItem(QtObjectPtr ptr){ + return static_cast(ptr)->currentItem(); +} + +void QListWidget_ConnectCurrentItemChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QListWidget::currentItemChanged), static_cast(ptr), static_cast(&MyQListWidget::Signal_CurrentItemChanged));; +} + +void QListWidget_DisconnectCurrentItemChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QListWidget::currentItemChanged), static_cast(ptr), static_cast(&MyQListWidget::Signal_CurrentItemChanged));; +} + +void QListWidget_ConnectCurrentRowChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QListWidget::currentRowChanged), static_cast(ptr), static_cast(&MyQListWidget::Signal_CurrentRowChanged));; +} + +void QListWidget_DisconnectCurrentRowChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QListWidget::currentRowChanged), static_cast(ptr), static_cast(&MyQListWidget::Signal_CurrentRowChanged));; +} + +void QListWidget_ConnectCurrentTextChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QListWidget::currentTextChanged), static_cast(ptr), static_cast(&MyQListWidget::Signal_CurrentTextChanged));; +} + +void QListWidget_DisconnectCurrentTextChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QListWidget::currentTextChanged), static_cast(ptr), static_cast(&MyQListWidget::Signal_CurrentTextChanged));; +} + +void QListWidget_DropEvent(QtObjectPtr ptr, QtObjectPtr event){ + static_cast(ptr)->dropEvent(static_cast(event)); +} + +void QListWidget_EditItem(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->editItem(static_cast(item)); +} + +void QListWidget_InsertItem(QtObjectPtr ptr, int row, QtObjectPtr item){ + static_cast(ptr)->insertItem(row, static_cast(item)); +} + +void QListWidget_InsertItem2(QtObjectPtr ptr, int row, char* label){ + static_cast(ptr)->insertItem(row, QString(label)); +} + +void QListWidget_InsertItems(QtObjectPtr ptr, int row, char* labels){ + static_cast(ptr)->insertItems(row, QString(labels).split("|", QString::SkipEmptyParts)); +} + +QtObjectPtr QListWidget_Item(QtObjectPtr ptr, int row){ + return static_cast(ptr)->item(row); +} + +void QListWidget_ConnectItemActivated(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QListWidget::itemActivated), static_cast(ptr), static_cast(&MyQListWidget::Signal_ItemActivated));; +} + +void QListWidget_DisconnectItemActivated(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QListWidget::itemActivated), static_cast(ptr), static_cast(&MyQListWidget::Signal_ItemActivated));; +} + +QtObjectPtr QListWidget_ItemAt(QtObjectPtr ptr, QtObjectPtr p){ + return static_cast(ptr)->itemAt(*static_cast(p)); +} + +QtObjectPtr QListWidget_ItemAt2(QtObjectPtr ptr, int x, int y){ + return static_cast(ptr)->itemAt(x, y); +} + +void QListWidget_ConnectItemChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QListWidget::itemChanged), static_cast(ptr), static_cast(&MyQListWidget::Signal_ItemChanged));; +} + +void QListWidget_DisconnectItemChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QListWidget::itemChanged), static_cast(ptr), static_cast(&MyQListWidget::Signal_ItemChanged));; +} + +void QListWidget_ConnectItemClicked(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QListWidget::itemClicked), static_cast(ptr), static_cast(&MyQListWidget::Signal_ItemClicked));; +} + +void QListWidget_DisconnectItemClicked(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QListWidget::itemClicked), static_cast(ptr), static_cast(&MyQListWidget::Signal_ItemClicked));; +} + +void QListWidget_ConnectItemDoubleClicked(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QListWidget::itemDoubleClicked), static_cast(ptr), static_cast(&MyQListWidget::Signal_ItemDoubleClicked));; +} + +void QListWidget_DisconnectItemDoubleClicked(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QListWidget::itemDoubleClicked), static_cast(ptr), static_cast(&MyQListWidget::Signal_ItemDoubleClicked));; +} + +void QListWidget_ConnectItemEntered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QListWidget::itemEntered), static_cast(ptr), static_cast(&MyQListWidget::Signal_ItemEntered));; +} + +void QListWidget_DisconnectItemEntered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QListWidget::itemEntered), static_cast(ptr), static_cast(&MyQListWidget::Signal_ItemEntered));; +} + +void QListWidget_ConnectItemPressed(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QListWidget::itemPressed), static_cast(ptr), static_cast(&MyQListWidget::Signal_ItemPressed));; +} + +void QListWidget_DisconnectItemPressed(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QListWidget::itemPressed), static_cast(ptr), static_cast(&MyQListWidget::Signal_ItemPressed));; +} + +void QListWidget_ConnectItemSelectionChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QListWidget::itemSelectionChanged), static_cast(ptr), static_cast(&MyQListWidget::Signal_ItemSelectionChanged));; +} + +void QListWidget_DisconnectItemSelectionChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QListWidget::itemSelectionChanged), static_cast(ptr), static_cast(&MyQListWidget::Signal_ItemSelectionChanged));; +} + +QtObjectPtr QListWidget_ItemWidget(QtObjectPtr ptr, QtObjectPtr item){ + return static_cast(ptr)->itemWidget(static_cast(item)); +} + +void QListWidget_OpenPersistentEditor(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->openPersistentEditor(static_cast(item)); +} + +void QListWidget_RemoveItemWidget(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->removeItemWidget(static_cast(item)); +} + +int QListWidget_Row(QtObjectPtr ptr, QtObjectPtr item){ + return static_cast(ptr)->row(static_cast(item)); +} + +void QListWidget_ScrollToItem(QtObjectPtr ptr, QtObjectPtr item, int hint){ + QMetaObject::invokeMethod(static_cast(ptr), "scrollToItem", Q_ARG(QListWidgetItem*, static_cast(item)), Q_ARG(QAbstractItemView::ScrollHint, static_cast(hint))); +} + +void QListWidget_SetCurrentItem(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->setCurrentItem(static_cast(item)); +} + +void QListWidget_SetCurrentItem2(QtObjectPtr ptr, QtObjectPtr item, int command){ + static_cast(ptr)->setCurrentItem(static_cast(item), static_cast(command)); +} + +void QListWidget_SetCurrentRow2(QtObjectPtr ptr, int row, int command){ + static_cast(ptr)->setCurrentRow(row, static_cast(command)); +} + +void QListWidget_SetItemWidget(QtObjectPtr ptr, QtObjectPtr item, QtObjectPtr widget){ + static_cast(ptr)->setItemWidget(static_cast(item), static_cast(widget)); +} + +void QListWidget_SortItems(QtObjectPtr ptr, int order){ + static_cast(ptr)->sortItems(static_cast(order)); +} + +QtObjectPtr QListWidget_TakeItem(QtObjectPtr ptr, int row){ + return static_cast(ptr)->takeItem(row); +} + +void QListWidget_DestroyQListWidget(QtObjectPtr ptr){ + static_cast(ptr)->~QListWidget(); +} + diff --git a/widgets/qlistwidget.go b/widgets/qlistwidget.go new file mode 100755 index 00000000..403db449 --- /dev/null +++ b/widgets/qlistwidget.go @@ -0,0 +1,431 @@ +package widgets + +//#include "qlistwidget.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "strings" + "unsafe" +) + +type QListWidget struct { + QListView +} + +type QListWidgetITF interface { + QListViewITF + QListWidgetPTR() *QListWidget +} + +func PointerFromQListWidget(ptr QListWidgetITF) unsafe.Pointer { + if ptr != nil { + return ptr.QListWidgetPTR().Pointer() + } + return nil +} + +func QListWidgetFromPointer(ptr unsafe.Pointer) *QListWidget { + var n = new(QListWidget) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QListWidget_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QListWidget) QListWidgetPTR() *QListWidget { + return ptr +} + +func (ptr *QListWidget) Count() int { + if ptr.Pointer() != nil { + return int(C.QListWidget_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QListWidget) CurrentRow() int { + if ptr.Pointer() != nil { + return int(C.QListWidget_CurrentRow(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QListWidget) IsSortingEnabled() bool { + if ptr.Pointer() != nil { + return C.QListWidget_IsSortingEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QListWidget) SetCurrentRow(row int) { + if ptr.Pointer() != nil { + C.QListWidget_SetCurrentRow(C.QtObjectPtr(ptr.Pointer()), C.int(row)) + } +} + +func (ptr *QListWidget) SetSortingEnabled(enable bool) { + if ptr.Pointer() != nil { + C.QListWidget_SetSortingEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func NewQListWidget(parent QWidgetITF) *QListWidget { + return QListWidgetFromPointer(unsafe.Pointer(C.QListWidget_NewQListWidget(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QListWidget) AddItem2(item QListWidgetItemITF) { + if ptr.Pointer() != nil { + C.QListWidget_AddItem2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQListWidgetItem(item))) + } +} + +func (ptr *QListWidget) AddItem(label string) { + if ptr.Pointer() != nil { + C.QListWidget_AddItem(C.QtObjectPtr(ptr.Pointer()), C.CString(label)) + } +} + +func (ptr *QListWidget) AddItems(labels []string) { + if ptr.Pointer() != nil { + C.QListWidget_AddItems(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(labels, "|"))) + } +} + +func (ptr *QListWidget) Clear() { + if ptr.Pointer() != nil { + C.QListWidget_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QListWidget) ClosePersistentEditor(item QListWidgetItemITF) { + if ptr.Pointer() != nil { + C.QListWidget_ClosePersistentEditor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQListWidgetItem(item))) + } +} + +func (ptr *QListWidget) CurrentItem() *QListWidgetItem { + if ptr.Pointer() != nil { + return QListWidgetItemFromPointer(unsafe.Pointer(C.QListWidget_CurrentItem(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QListWidget) ConnectCurrentItemChanged(f func(current QListWidgetItemITF, previous QListWidgetItemITF)) { + if ptr.Pointer() != nil { + C.QListWidget_ConnectCurrentItemChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "currentItemChanged", f) + } +} + +func (ptr *QListWidget) DisconnectCurrentItemChanged() { + if ptr.Pointer() != nil { + C.QListWidget_DisconnectCurrentItemChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "currentItemChanged") + } +} + +//export callbackQListWidgetCurrentItemChanged +func callbackQListWidgetCurrentItemChanged(ptrName *C.char, current unsafe.Pointer, previous unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "currentItemChanged").(func(*QListWidgetItem, *QListWidgetItem))(QListWidgetItemFromPointer(current), QListWidgetItemFromPointer(previous)) +} + +func (ptr *QListWidget) ConnectCurrentRowChanged(f func(currentRow int)) { + if ptr.Pointer() != nil { + C.QListWidget_ConnectCurrentRowChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "currentRowChanged", f) + } +} + +func (ptr *QListWidget) DisconnectCurrentRowChanged() { + if ptr.Pointer() != nil { + C.QListWidget_DisconnectCurrentRowChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "currentRowChanged") + } +} + +//export callbackQListWidgetCurrentRowChanged +func callbackQListWidgetCurrentRowChanged(ptrName *C.char, currentRow C.int) { + qt.GetSignal(C.GoString(ptrName), "currentRowChanged").(func(int))(int(currentRow)) +} + +func (ptr *QListWidget) ConnectCurrentTextChanged(f func(currentText string)) { + if ptr.Pointer() != nil { + C.QListWidget_ConnectCurrentTextChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "currentTextChanged", f) + } +} + +func (ptr *QListWidget) DisconnectCurrentTextChanged() { + if ptr.Pointer() != nil { + C.QListWidget_DisconnectCurrentTextChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "currentTextChanged") + } +} + +//export callbackQListWidgetCurrentTextChanged +func callbackQListWidgetCurrentTextChanged(ptrName *C.char, currentText *C.char) { + qt.GetSignal(C.GoString(ptrName), "currentTextChanged").(func(string))(C.GoString(currentText)) +} + +func (ptr *QListWidget) DropEvent(event gui.QDropEventITF) { + if ptr.Pointer() != nil { + C.QListWidget_DropEvent(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQDropEvent(event))) + } +} + +func (ptr *QListWidget) EditItem(item QListWidgetItemITF) { + if ptr.Pointer() != nil { + C.QListWidget_EditItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQListWidgetItem(item))) + } +} + +func (ptr *QListWidget) InsertItem(row int, item QListWidgetItemITF) { + if ptr.Pointer() != nil { + C.QListWidget_InsertItem(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.QtObjectPtr(PointerFromQListWidgetItem(item))) + } +} + +func (ptr *QListWidget) InsertItem2(row int, label string) { + if ptr.Pointer() != nil { + C.QListWidget_InsertItem2(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.CString(label)) + } +} + +func (ptr *QListWidget) InsertItems(row int, labels []string) { + if ptr.Pointer() != nil { + C.QListWidget_InsertItems(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.CString(strings.Join(labels, "|"))) + } +} + +func (ptr *QListWidget) Item(row int) *QListWidgetItem { + if ptr.Pointer() != nil { + return QListWidgetItemFromPointer(unsafe.Pointer(C.QListWidget_Item(C.QtObjectPtr(ptr.Pointer()), C.int(row)))) + } + return nil +} + +func (ptr *QListWidget) ConnectItemActivated(f func(item QListWidgetItemITF)) { + if ptr.Pointer() != nil { + C.QListWidget_ConnectItemActivated(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "itemActivated", f) + } +} + +func (ptr *QListWidget) DisconnectItemActivated() { + if ptr.Pointer() != nil { + C.QListWidget_DisconnectItemActivated(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "itemActivated") + } +} + +//export callbackQListWidgetItemActivated +func callbackQListWidgetItemActivated(ptrName *C.char, item unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "itemActivated").(func(*QListWidgetItem))(QListWidgetItemFromPointer(item)) +} + +func (ptr *QListWidget) ItemAt(p core.QPointITF) *QListWidgetItem { + if ptr.Pointer() != nil { + return QListWidgetItemFromPointer(unsafe.Pointer(C.QListWidget_ItemAt(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(p))))) + } + return nil +} + +func (ptr *QListWidget) ItemAt2(x int, y int) *QListWidgetItem { + if ptr.Pointer() != nil { + return QListWidgetItemFromPointer(unsafe.Pointer(C.QListWidget_ItemAt2(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y)))) + } + return nil +} + +func (ptr *QListWidget) ConnectItemChanged(f func(item QListWidgetItemITF)) { + if ptr.Pointer() != nil { + C.QListWidget_ConnectItemChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "itemChanged", f) + } +} + +func (ptr *QListWidget) DisconnectItemChanged() { + if ptr.Pointer() != nil { + C.QListWidget_DisconnectItemChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "itemChanged") + } +} + +//export callbackQListWidgetItemChanged +func callbackQListWidgetItemChanged(ptrName *C.char, item unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "itemChanged").(func(*QListWidgetItem))(QListWidgetItemFromPointer(item)) +} + +func (ptr *QListWidget) ConnectItemClicked(f func(item QListWidgetItemITF)) { + if ptr.Pointer() != nil { + C.QListWidget_ConnectItemClicked(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "itemClicked", f) + } +} + +func (ptr *QListWidget) DisconnectItemClicked() { + if ptr.Pointer() != nil { + C.QListWidget_DisconnectItemClicked(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "itemClicked") + } +} + +//export callbackQListWidgetItemClicked +func callbackQListWidgetItemClicked(ptrName *C.char, item unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "itemClicked").(func(*QListWidgetItem))(QListWidgetItemFromPointer(item)) +} + +func (ptr *QListWidget) ConnectItemDoubleClicked(f func(item QListWidgetItemITF)) { + if ptr.Pointer() != nil { + C.QListWidget_ConnectItemDoubleClicked(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "itemDoubleClicked", f) + } +} + +func (ptr *QListWidget) DisconnectItemDoubleClicked() { + if ptr.Pointer() != nil { + C.QListWidget_DisconnectItemDoubleClicked(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "itemDoubleClicked") + } +} + +//export callbackQListWidgetItemDoubleClicked +func callbackQListWidgetItemDoubleClicked(ptrName *C.char, item unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "itemDoubleClicked").(func(*QListWidgetItem))(QListWidgetItemFromPointer(item)) +} + +func (ptr *QListWidget) ConnectItemEntered(f func(item QListWidgetItemITF)) { + if ptr.Pointer() != nil { + C.QListWidget_ConnectItemEntered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "itemEntered", f) + } +} + +func (ptr *QListWidget) DisconnectItemEntered() { + if ptr.Pointer() != nil { + C.QListWidget_DisconnectItemEntered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "itemEntered") + } +} + +//export callbackQListWidgetItemEntered +func callbackQListWidgetItemEntered(ptrName *C.char, item unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "itemEntered").(func(*QListWidgetItem))(QListWidgetItemFromPointer(item)) +} + +func (ptr *QListWidget) ConnectItemPressed(f func(item QListWidgetItemITF)) { + if ptr.Pointer() != nil { + C.QListWidget_ConnectItemPressed(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "itemPressed", f) + } +} + +func (ptr *QListWidget) DisconnectItemPressed() { + if ptr.Pointer() != nil { + C.QListWidget_DisconnectItemPressed(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "itemPressed") + } +} + +//export callbackQListWidgetItemPressed +func callbackQListWidgetItemPressed(ptrName *C.char, item unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "itemPressed").(func(*QListWidgetItem))(QListWidgetItemFromPointer(item)) +} + +func (ptr *QListWidget) ConnectItemSelectionChanged(f func()) { + if ptr.Pointer() != nil { + C.QListWidget_ConnectItemSelectionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "itemSelectionChanged", f) + } +} + +func (ptr *QListWidget) DisconnectItemSelectionChanged() { + if ptr.Pointer() != nil { + C.QListWidget_DisconnectItemSelectionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "itemSelectionChanged") + } +} + +//export callbackQListWidgetItemSelectionChanged +func callbackQListWidgetItemSelectionChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "itemSelectionChanged").(func())() +} + +func (ptr *QListWidget) ItemWidget(item QListWidgetItemITF) *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QListWidget_ItemWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQListWidgetItem(item))))) + } + return nil +} + +func (ptr *QListWidget) OpenPersistentEditor(item QListWidgetItemITF) { + if ptr.Pointer() != nil { + C.QListWidget_OpenPersistentEditor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQListWidgetItem(item))) + } +} + +func (ptr *QListWidget) RemoveItemWidget(item QListWidgetItemITF) { + if ptr.Pointer() != nil { + C.QListWidget_RemoveItemWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQListWidgetItem(item))) + } +} + +func (ptr *QListWidget) Row(item QListWidgetItemITF) int { + if ptr.Pointer() != nil { + return int(C.QListWidget_Row(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQListWidgetItem(item)))) + } + return 0 +} + +func (ptr *QListWidget) ScrollToItem(item QListWidgetItemITF, hint QAbstractItemView__ScrollHint) { + if ptr.Pointer() != nil { + C.QListWidget_ScrollToItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQListWidgetItem(item)), C.int(hint)) + } +} + +func (ptr *QListWidget) SetCurrentItem(item QListWidgetItemITF) { + if ptr.Pointer() != nil { + C.QListWidget_SetCurrentItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQListWidgetItem(item))) + } +} + +func (ptr *QListWidget) SetCurrentItem2(item QListWidgetItemITF, command core.QItemSelectionModel__SelectionFlag) { + if ptr.Pointer() != nil { + C.QListWidget_SetCurrentItem2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQListWidgetItem(item)), C.int(command)) + } +} + +func (ptr *QListWidget) SetCurrentRow2(row int, command core.QItemSelectionModel__SelectionFlag) { + if ptr.Pointer() != nil { + C.QListWidget_SetCurrentRow2(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(command)) + } +} + +func (ptr *QListWidget) SetItemWidget(item QListWidgetItemITF, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QListWidget_SetItemWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQListWidgetItem(item)), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QListWidget) SortItems(order core.Qt__SortOrder) { + if ptr.Pointer() != nil { + C.QListWidget_SortItems(C.QtObjectPtr(ptr.Pointer()), C.int(order)) + } +} + +func (ptr *QListWidget) TakeItem(row int) *QListWidgetItem { + if ptr.Pointer() != nil { + return QListWidgetItemFromPointer(unsafe.Pointer(C.QListWidget_TakeItem(C.QtObjectPtr(ptr.Pointer()), C.int(row)))) + } + return nil +} + +func (ptr *QListWidget) DestroyQListWidget() { + if ptr.Pointer() != nil { + C.QListWidget_DestroyQListWidget(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qlistwidget.h b/widgets/qlistwidget.h new file mode 100755 index 00000000..46d56721 --- /dev/null +++ b/widgets/qlistwidget.h @@ -0,0 +1,61 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QListWidget_Count(QtObjectPtr ptr); +int QListWidget_CurrentRow(QtObjectPtr ptr); +int QListWidget_IsSortingEnabled(QtObjectPtr ptr); +void QListWidget_SetCurrentRow(QtObjectPtr ptr, int row); +void QListWidget_SetSortingEnabled(QtObjectPtr ptr, int enable); +QtObjectPtr QListWidget_NewQListWidget(QtObjectPtr parent); +void QListWidget_AddItem2(QtObjectPtr ptr, QtObjectPtr item); +void QListWidget_AddItem(QtObjectPtr ptr, char* label); +void QListWidget_AddItems(QtObjectPtr ptr, char* labels); +void QListWidget_Clear(QtObjectPtr ptr); +void QListWidget_ClosePersistentEditor(QtObjectPtr ptr, QtObjectPtr item); +QtObjectPtr QListWidget_CurrentItem(QtObjectPtr ptr); +void QListWidget_ConnectCurrentItemChanged(QtObjectPtr ptr); +void QListWidget_DisconnectCurrentItemChanged(QtObjectPtr ptr); +void QListWidget_ConnectCurrentRowChanged(QtObjectPtr ptr); +void QListWidget_DisconnectCurrentRowChanged(QtObjectPtr ptr); +void QListWidget_ConnectCurrentTextChanged(QtObjectPtr ptr); +void QListWidget_DisconnectCurrentTextChanged(QtObjectPtr ptr); +void QListWidget_DropEvent(QtObjectPtr ptr, QtObjectPtr event); +void QListWidget_EditItem(QtObjectPtr ptr, QtObjectPtr item); +void QListWidget_InsertItem(QtObjectPtr ptr, int row, QtObjectPtr item); +void QListWidget_InsertItem2(QtObjectPtr ptr, int row, char* label); +void QListWidget_InsertItems(QtObjectPtr ptr, int row, char* labels); +QtObjectPtr QListWidget_Item(QtObjectPtr ptr, int row); +void QListWidget_ConnectItemActivated(QtObjectPtr ptr); +void QListWidget_DisconnectItemActivated(QtObjectPtr ptr); +QtObjectPtr QListWidget_ItemAt(QtObjectPtr ptr, QtObjectPtr p); +QtObjectPtr QListWidget_ItemAt2(QtObjectPtr ptr, int x, int y); +void QListWidget_ConnectItemChanged(QtObjectPtr ptr); +void QListWidget_DisconnectItemChanged(QtObjectPtr ptr); +void QListWidget_ConnectItemClicked(QtObjectPtr ptr); +void QListWidget_DisconnectItemClicked(QtObjectPtr ptr); +void QListWidget_ConnectItemDoubleClicked(QtObjectPtr ptr); +void QListWidget_DisconnectItemDoubleClicked(QtObjectPtr ptr); +void QListWidget_ConnectItemEntered(QtObjectPtr ptr); +void QListWidget_DisconnectItemEntered(QtObjectPtr ptr); +void QListWidget_ConnectItemPressed(QtObjectPtr ptr); +void QListWidget_DisconnectItemPressed(QtObjectPtr ptr); +void QListWidget_ConnectItemSelectionChanged(QtObjectPtr ptr); +void QListWidget_DisconnectItemSelectionChanged(QtObjectPtr ptr); +QtObjectPtr QListWidget_ItemWidget(QtObjectPtr ptr, QtObjectPtr item); +void QListWidget_OpenPersistentEditor(QtObjectPtr ptr, QtObjectPtr item); +void QListWidget_RemoveItemWidget(QtObjectPtr ptr, QtObjectPtr item); +int QListWidget_Row(QtObjectPtr ptr, QtObjectPtr item); +void QListWidget_ScrollToItem(QtObjectPtr ptr, QtObjectPtr item, int hint); +void QListWidget_SetCurrentItem(QtObjectPtr ptr, QtObjectPtr item); +void QListWidget_SetCurrentItem2(QtObjectPtr ptr, QtObjectPtr item, int command); +void QListWidget_SetCurrentRow2(QtObjectPtr ptr, int row, int command); +void QListWidget_SetItemWidget(QtObjectPtr ptr, QtObjectPtr item, QtObjectPtr widget); +void QListWidget_SortItems(QtObjectPtr ptr, int order); +QtObjectPtr QListWidget_TakeItem(QtObjectPtr ptr, int row); +void QListWidget_DestroyQListWidget(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qlistwidgetitem.cpp b/widgets/qlistwidgetitem.cpp new file mode 100755 index 00000000..f179884d --- /dev/null +++ b/widgets/qlistwidgetitem.cpp @@ -0,0 +1,160 @@ +#include "qlistwidgetitem.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQListWidgetItem: public QListWidgetItem { +public: +}; + +QtObjectPtr QListWidgetItem_NewQListWidgetItem(QtObjectPtr parent, int ty){ + return new QListWidgetItem(static_cast(parent), ty); +} + +QtObjectPtr QListWidgetItem_NewQListWidgetItem3(QtObjectPtr icon, char* text, QtObjectPtr parent, int ty){ + return new QListWidgetItem(*static_cast(icon), QString(text), static_cast(parent), ty); +} + +QtObjectPtr QListWidgetItem_NewQListWidgetItem2(char* text, QtObjectPtr parent, int ty){ + return new QListWidgetItem(QString(text), static_cast(parent), ty); +} + +void QListWidgetItem_SetFlags(QtObjectPtr ptr, int flags){ + static_cast(ptr)->setFlags(static_cast(flags)); +} + +QtObjectPtr QListWidgetItem_NewQListWidgetItem4(QtObjectPtr other){ + return new QListWidgetItem(*static_cast(other)); +} + +int QListWidgetItem_CheckState(QtObjectPtr ptr){ + return static_cast(ptr)->checkState(); +} + +QtObjectPtr QListWidgetItem_Clone(QtObjectPtr ptr){ + return static_cast(ptr)->clone(); +} + +char* QListWidgetItem_Data(QtObjectPtr ptr, int role){ + return static_cast(ptr)->data(role).toString().toUtf8().data(); +} + +int QListWidgetItem_Flags(QtObjectPtr ptr){ + return static_cast(ptr)->flags(); +} + +int QListWidgetItem_IsHidden(QtObjectPtr ptr){ + return static_cast(ptr)->isHidden(); +} + +int QListWidgetItem_IsSelected(QtObjectPtr ptr){ + return static_cast(ptr)->isSelected(); +} + +QtObjectPtr QListWidgetItem_ListWidget(QtObjectPtr ptr){ + return static_cast(ptr)->listWidget(); +} + +void QListWidgetItem_Read(QtObjectPtr ptr, QtObjectPtr in){ + static_cast(ptr)->read(*static_cast(in)); +} + +void QListWidgetItem_SetBackground(QtObjectPtr ptr, QtObjectPtr brush){ + static_cast(ptr)->setBackground(*static_cast(brush)); +} + +void QListWidgetItem_SetCheckState(QtObjectPtr ptr, int state){ + static_cast(ptr)->setCheckState(static_cast(state)); +} + +void QListWidgetItem_SetData(QtObjectPtr ptr, int role, char* value){ + static_cast(ptr)->setData(role, QVariant(value)); +} + +void QListWidgetItem_SetFont(QtObjectPtr ptr, QtObjectPtr font){ + static_cast(ptr)->setFont(*static_cast(font)); +} + +void QListWidgetItem_SetForeground(QtObjectPtr ptr, QtObjectPtr brush){ + static_cast(ptr)->setForeground(*static_cast(brush)); +} + +void QListWidgetItem_SetHidden(QtObjectPtr ptr, int hide){ + static_cast(ptr)->setHidden(hide != 0); +} + +void QListWidgetItem_SetIcon(QtObjectPtr ptr, QtObjectPtr icon){ + static_cast(ptr)->setIcon(*static_cast(icon)); +} + +void QListWidgetItem_SetSelected(QtObjectPtr ptr, int sele){ + static_cast(ptr)->setSelected(sele != 0); +} + +void QListWidgetItem_SetSizeHint(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->setSizeHint(*static_cast(size)); +} + +void QListWidgetItem_SetStatusTip(QtObjectPtr ptr, char* statusTip){ + static_cast(ptr)->setStatusTip(QString(statusTip)); +} + +void QListWidgetItem_SetText(QtObjectPtr ptr, char* text){ + static_cast(ptr)->setText(QString(text)); +} + +void QListWidgetItem_SetTextAlignment(QtObjectPtr ptr, int alignment){ + static_cast(ptr)->setTextAlignment(alignment); +} + +void QListWidgetItem_SetToolTip(QtObjectPtr ptr, char* toolTip){ + static_cast(ptr)->setToolTip(QString(toolTip)); +} + +void QListWidgetItem_SetWhatsThis(QtObjectPtr ptr, char* whatsThis){ + static_cast(ptr)->setWhatsThis(QString(whatsThis)); +} + +char* QListWidgetItem_StatusTip(QtObjectPtr ptr){ + return static_cast(ptr)->statusTip().toUtf8().data(); +} + +char* QListWidgetItem_Text(QtObjectPtr ptr){ + return static_cast(ptr)->text().toUtf8().data(); +} + +int QListWidgetItem_TextAlignment(QtObjectPtr ptr){ + return static_cast(ptr)->textAlignment(); +} + +char* QListWidgetItem_ToolTip(QtObjectPtr ptr){ + return static_cast(ptr)->toolTip().toUtf8().data(); +} + +int QListWidgetItem_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +char* QListWidgetItem_WhatsThis(QtObjectPtr ptr){ + return static_cast(ptr)->whatsThis().toUtf8().data(); +} + +void QListWidgetItem_Write(QtObjectPtr ptr, QtObjectPtr out){ + static_cast(ptr)->write(*static_cast(out)); +} + +void QListWidgetItem_DestroyQListWidgetItem(QtObjectPtr ptr){ + static_cast(ptr)->~QListWidgetItem(); +} + diff --git a/widgets/qlistwidgetitem.go b/widgets/qlistwidgetitem.go new file mode 100755 index 00000000..3a4a10c7 --- /dev/null +++ b/widgets/qlistwidgetitem.go @@ -0,0 +1,266 @@ +package widgets + +//#include "qlistwidgetitem.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QListWidgetItem struct { + ptr unsafe.Pointer +} + +type QListWidgetItemITF interface { + QListWidgetItemPTR() *QListWidgetItem +} + +func (p *QListWidgetItem) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QListWidgetItem) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQListWidgetItem(ptr QListWidgetItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QListWidgetItemPTR().Pointer() + } + return nil +} + +func QListWidgetItemFromPointer(ptr unsafe.Pointer) *QListWidgetItem { + var n = new(QListWidgetItem) + n.SetPointer(ptr) + return n +} + +func (ptr *QListWidgetItem) QListWidgetItemPTR() *QListWidgetItem { + return ptr +} + +//QListWidgetItem::ItemType +type QListWidgetItem__ItemType int + +var ( + QListWidgetItem__Type = QListWidgetItem__ItemType(0) + QListWidgetItem__UserType = QListWidgetItem__ItemType(1000) +) + +func NewQListWidgetItem(parent QListWidgetITF, ty int) *QListWidgetItem { + return QListWidgetItemFromPointer(unsafe.Pointer(C.QListWidgetItem_NewQListWidgetItem(C.QtObjectPtr(PointerFromQListWidget(parent)), C.int(ty)))) +} + +func NewQListWidgetItem3(icon gui.QIconITF, text string, parent QListWidgetITF, ty int) *QListWidgetItem { + return QListWidgetItemFromPointer(unsafe.Pointer(C.QListWidgetItem_NewQListWidgetItem3(C.QtObjectPtr(gui.PointerFromQIcon(icon)), C.CString(text), C.QtObjectPtr(PointerFromQListWidget(parent)), C.int(ty)))) +} + +func NewQListWidgetItem2(text string, parent QListWidgetITF, ty int) *QListWidgetItem { + return QListWidgetItemFromPointer(unsafe.Pointer(C.QListWidgetItem_NewQListWidgetItem2(C.CString(text), C.QtObjectPtr(PointerFromQListWidget(parent)), C.int(ty)))) +} + +func (ptr *QListWidgetItem) SetFlags(flags core.Qt__ItemFlag) { + if ptr.Pointer() != nil { + C.QListWidgetItem_SetFlags(C.QtObjectPtr(ptr.Pointer()), C.int(flags)) + } +} + +func NewQListWidgetItem4(other QListWidgetItemITF) *QListWidgetItem { + return QListWidgetItemFromPointer(unsafe.Pointer(C.QListWidgetItem_NewQListWidgetItem4(C.QtObjectPtr(PointerFromQListWidgetItem(other))))) +} + +func (ptr *QListWidgetItem) CheckState() core.Qt__CheckState { + if ptr.Pointer() != nil { + return core.Qt__CheckState(C.QListWidgetItem_CheckState(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QListWidgetItem) Clone() *QListWidgetItem { + if ptr.Pointer() != nil { + return QListWidgetItemFromPointer(unsafe.Pointer(C.QListWidgetItem_Clone(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QListWidgetItem) Data(role int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QListWidgetItem_Data(C.QtObjectPtr(ptr.Pointer()), C.int(role))) + } + return "" +} + +func (ptr *QListWidgetItem) Flags() core.Qt__ItemFlag { + if ptr.Pointer() != nil { + return core.Qt__ItemFlag(C.QListWidgetItem_Flags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QListWidgetItem) IsHidden() bool { + if ptr.Pointer() != nil { + return C.QListWidgetItem_IsHidden(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QListWidgetItem) IsSelected() bool { + if ptr.Pointer() != nil { + return C.QListWidgetItem_IsSelected(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QListWidgetItem) ListWidget() *QListWidget { + if ptr.Pointer() != nil { + return QListWidgetFromPointer(unsafe.Pointer(C.QListWidgetItem_ListWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QListWidgetItem) Read(in core.QDataStreamITF) { + if ptr.Pointer() != nil { + C.QListWidgetItem_Read(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDataStream(in))) + } +} + +func (ptr *QListWidgetItem) SetBackground(brush gui.QBrushITF) { + if ptr.Pointer() != nil { + C.QListWidgetItem_SetBackground(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQBrush(brush))) + } +} + +func (ptr *QListWidgetItem) SetCheckState(state core.Qt__CheckState) { + if ptr.Pointer() != nil { + C.QListWidgetItem_SetCheckState(C.QtObjectPtr(ptr.Pointer()), C.int(state)) + } +} + +func (ptr *QListWidgetItem) SetData(role int, value string) { + if ptr.Pointer() != nil { + C.QListWidgetItem_SetData(C.QtObjectPtr(ptr.Pointer()), C.int(role), C.CString(value)) + } +} + +func (ptr *QListWidgetItem) SetFont(font gui.QFontITF) { + if ptr.Pointer() != nil { + C.QListWidgetItem_SetFont(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQFont(font))) + } +} + +func (ptr *QListWidgetItem) SetForeground(brush gui.QBrushITF) { + if ptr.Pointer() != nil { + C.QListWidgetItem_SetForeground(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQBrush(brush))) + } +} + +func (ptr *QListWidgetItem) SetHidden(hide bool) { + if ptr.Pointer() != nil { + C.QListWidgetItem_SetHidden(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(hide))) + } +} + +func (ptr *QListWidgetItem) SetIcon(icon gui.QIconITF) { + if ptr.Pointer() != nil { + C.QListWidgetItem_SetIcon(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQIcon(icon))) + } +} + +func (ptr *QListWidgetItem) SetSelected(sele bool) { + if ptr.Pointer() != nil { + C.QListWidgetItem_SetSelected(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(sele))) + } +} + +func (ptr *QListWidgetItem) SetSizeHint(size core.QSizeITF) { + if ptr.Pointer() != nil { + C.QListWidgetItem_SetSizeHint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(size))) + } +} + +func (ptr *QListWidgetItem) SetStatusTip(statusTip string) { + if ptr.Pointer() != nil { + C.QListWidgetItem_SetStatusTip(C.QtObjectPtr(ptr.Pointer()), C.CString(statusTip)) + } +} + +func (ptr *QListWidgetItem) SetText(text string) { + if ptr.Pointer() != nil { + C.QListWidgetItem_SetText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QListWidgetItem) SetTextAlignment(alignment int) { + if ptr.Pointer() != nil { + C.QListWidgetItem_SetTextAlignment(C.QtObjectPtr(ptr.Pointer()), C.int(alignment)) + } +} + +func (ptr *QListWidgetItem) SetToolTip(toolTip string) { + if ptr.Pointer() != nil { + C.QListWidgetItem_SetToolTip(C.QtObjectPtr(ptr.Pointer()), C.CString(toolTip)) + } +} + +func (ptr *QListWidgetItem) SetWhatsThis(whatsThis string) { + if ptr.Pointer() != nil { + C.QListWidgetItem_SetWhatsThis(C.QtObjectPtr(ptr.Pointer()), C.CString(whatsThis)) + } +} + +func (ptr *QListWidgetItem) StatusTip() string { + if ptr.Pointer() != nil { + return C.GoString(C.QListWidgetItem_StatusTip(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QListWidgetItem) Text() string { + if ptr.Pointer() != nil { + return C.GoString(C.QListWidgetItem_Text(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QListWidgetItem) TextAlignment() int { + if ptr.Pointer() != nil { + return int(C.QListWidgetItem_TextAlignment(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QListWidgetItem) ToolTip() string { + if ptr.Pointer() != nil { + return C.GoString(C.QListWidgetItem_ToolTip(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QListWidgetItem) Type() int { + if ptr.Pointer() != nil { + return int(C.QListWidgetItem_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QListWidgetItem) WhatsThis() string { + if ptr.Pointer() != nil { + return C.GoString(C.QListWidgetItem_WhatsThis(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QListWidgetItem) Write(out core.QDataStreamITF) { + if ptr.Pointer() != nil { + C.QListWidgetItem_Write(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDataStream(out))) + } +} + +func (ptr *QListWidgetItem) DestroyQListWidgetItem() { + if ptr.Pointer() != nil { + C.QListWidgetItem_DestroyQListWidgetItem(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qlistwidgetitem.h b/widgets/qlistwidgetitem.h new file mode 100755 index 00000000..2d284c5d --- /dev/null +++ b/widgets/qlistwidgetitem.h @@ -0,0 +1,44 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QListWidgetItem_NewQListWidgetItem(QtObjectPtr parent, int ty); +QtObjectPtr QListWidgetItem_NewQListWidgetItem3(QtObjectPtr icon, char* text, QtObjectPtr parent, int ty); +QtObjectPtr QListWidgetItem_NewQListWidgetItem2(char* text, QtObjectPtr parent, int ty); +void QListWidgetItem_SetFlags(QtObjectPtr ptr, int flags); +QtObjectPtr QListWidgetItem_NewQListWidgetItem4(QtObjectPtr other); +int QListWidgetItem_CheckState(QtObjectPtr ptr); +QtObjectPtr QListWidgetItem_Clone(QtObjectPtr ptr); +char* QListWidgetItem_Data(QtObjectPtr ptr, int role); +int QListWidgetItem_Flags(QtObjectPtr ptr); +int QListWidgetItem_IsHidden(QtObjectPtr ptr); +int QListWidgetItem_IsSelected(QtObjectPtr ptr); +QtObjectPtr QListWidgetItem_ListWidget(QtObjectPtr ptr); +void QListWidgetItem_Read(QtObjectPtr ptr, QtObjectPtr in); +void QListWidgetItem_SetBackground(QtObjectPtr ptr, QtObjectPtr brush); +void QListWidgetItem_SetCheckState(QtObjectPtr ptr, int state); +void QListWidgetItem_SetData(QtObjectPtr ptr, int role, char* value); +void QListWidgetItem_SetFont(QtObjectPtr ptr, QtObjectPtr font); +void QListWidgetItem_SetForeground(QtObjectPtr ptr, QtObjectPtr brush); +void QListWidgetItem_SetHidden(QtObjectPtr ptr, int hide); +void QListWidgetItem_SetIcon(QtObjectPtr ptr, QtObjectPtr icon); +void QListWidgetItem_SetSelected(QtObjectPtr ptr, int sele); +void QListWidgetItem_SetSizeHint(QtObjectPtr ptr, QtObjectPtr size); +void QListWidgetItem_SetStatusTip(QtObjectPtr ptr, char* statusTip); +void QListWidgetItem_SetText(QtObjectPtr ptr, char* text); +void QListWidgetItem_SetTextAlignment(QtObjectPtr ptr, int alignment); +void QListWidgetItem_SetToolTip(QtObjectPtr ptr, char* toolTip); +void QListWidgetItem_SetWhatsThis(QtObjectPtr ptr, char* whatsThis); +char* QListWidgetItem_StatusTip(QtObjectPtr ptr); +char* QListWidgetItem_Text(QtObjectPtr ptr); +int QListWidgetItem_TextAlignment(QtObjectPtr ptr); +char* QListWidgetItem_ToolTip(QtObjectPtr ptr); +int QListWidgetItem_Type(QtObjectPtr ptr); +char* QListWidgetItem_WhatsThis(QtObjectPtr ptr); +void QListWidgetItem_Write(QtObjectPtr ptr, QtObjectPtr out); +void QListWidgetItem_DestroyQListWidgetItem(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qmaccocoaviewcontainer.cpp b/widgets/qmaccocoaviewcontainer.cpp new file mode 100755 index 00000000..a02f91e5 --- /dev/null +++ b/widgets/qmaccocoaviewcontainer.cpp @@ -0,0 +1,16 @@ +#include "qmaccocoaviewcontainer.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMacCocoaViewContainer: public QMacCocoaViewContainer { +public: +}; + +void QMacCocoaViewContainer_DestroyQMacCocoaViewContainer(QtObjectPtr ptr){ + static_cast(ptr)->~QMacCocoaViewContainer(); +} + diff --git a/widgets/qmaccocoaviewcontainer.go b/widgets/qmaccocoaviewcontainer.go new file mode 100755 index 00000000..088fcc98 --- /dev/null +++ b/widgets/qmaccocoaviewcontainer.go @@ -0,0 +1,44 @@ +package widgets + +//#include "qmaccocoaviewcontainer.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QMacCocoaViewContainer struct { + QWidget +} + +type QMacCocoaViewContainerITF interface { + QWidgetITF + QMacCocoaViewContainerPTR() *QMacCocoaViewContainer +} + +func PointerFromQMacCocoaViewContainer(ptr QMacCocoaViewContainerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMacCocoaViewContainerPTR().Pointer() + } + return nil +} + +func QMacCocoaViewContainerFromPointer(ptr unsafe.Pointer) *QMacCocoaViewContainer { + var n = new(QMacCocoaViewContainer) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMacCocoaViewContainer_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMacCocoaViewContainer) QMacCocoaViewContainerPTR() *QMacCocoaViewContainer { + return ptr +} + +func (ptr *QMacCocoaViewContainer) DestroyQMacCocoaViewContainer() { + if ptr.Pointer() != nil { + C.QMacCocoaViewContainer_DestroyQMacCocoaViewContainer(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qmaccocoaviewcontainer.h b/widgets/qmaccocoaviewcontainer.h new file mode 100755 index 00000000..a73bba3a --- /dev/null +++ b/widgets/qmaccocoaviewcontainer.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QMacCocoaViewContainer_DestroyQMacCocoaViewContainer(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qmacnativewidget.cpp b/widgets/qmacnativewidget.cpp new file mode 100755 index 00000000..2fd4b5d2 --- /dev/null +++ b/widgets/qmacnativewidget.cpp @@ -0,0 +1,16 @@ +#include "qmacnativewidget.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMacNativeWidget: public QMacNativeWidget { +public: +}; + +void QMacNativeWidget_DestroyQMacNativeWidget(QtObjectPtr ptr){ + static_cast(ptr)->~QMacNativeWidget(); +} + diff --git a/widgets/qmacnativewidget.go b/widgets/qmacnativewidget.go new file mode 100755 index 00000000..8c872829 --- /dev/null +++ b/widgets/qmacnativewidget.go @@ -0,0 +1,44 @@ +package widgets + +//#include "qmacnativewidget.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QMacNativeWidget struct { + QWidget +} + +type QMacNativeWidgetITF interface { + QWidgetITF + QMacNativeWidgetPTR() *QMacNativeWidget +} + +func PointerFromQMacNativeWidget(ptr QMacNativeWidgetITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMacNativeWidgetPTR().Pointer() + } + return nil +} + +func QMacNativeWidgetFromPointer(ptr unsafe.Pointer) *QMacNativeWidget { + var n = new(QMacNativeWidget) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMacNativeWidget_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMacNativeWidget) QMacNativeWidgetPTR() *QMacNativeWidget { + return ptr +} + +func (ptr *QMacNativeWidget) DestroyQMacNativeWidget() { + if ptr.Pointer() != nil { + C.QMacNativeWidget_DestroyQMacNativeWidget(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qmacnativewidget.h b/widgets/qmacnativewidget.h new file mode 100755 index 00000000..3f569be3 --- /dev/null +++ b/widgets/qmacnativewidget.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QMacNativeWidget_DestroyQMacNativeWidget(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qmainwindow.cpp b/widgets/qmainwindow.cpp new file mode 100755 index 00000000..dde55690 --- /dev/null +++ b/widgets/qmainwindow.cpp @@ -0,0 +1,228 @@ +#include "qmainwindow.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMainWindow: public QMainWindow { +public: +void Signal_ToolButtonStyleChanged(Qt::ToolButtonStyle toolButtonStyle){callbackQMainWindowToolButtonStyleChanged(this->objectName().toUtf8().data(), toolButtonStyle);}; +}; + +int QMainWindow_DockOptions(QtObjectPtr ptr){ + return static_cast(ptr)->dockOptions(); +} + +int QMainWindow_DocumentMode(QtObjectPtr ptr){ + return static_cast(ptr)->documentMode(); +} + +int QMainWindow_IsAnimated(QtObjectPtr ptr){ + return static_cast(ptr)->isAnimated(); +} + +int QMainWindow_IsDockNestingEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isDockNestingEnabled(); +} + +void QMainWindow_SetAnimated(QtObjectPtr ptr, int enabled){ + QMetaObject::invokeMethod(static_cast(ptr), "setAnimated", Q_ARG(bool, enabled != 0)); +} + +void QMainWindow_SetDockNestingEnabled(QtObjectPtr ptr, int enabled){ + QMetaObject::invokeMethod(static_cast(ptr), "setDockNestingEnabled", Q_ARG(bool, enabled != 0)); +} + +void QMainWindow_SetDockOptions(QtObjectPtr ptr, int options){ + static_cast(ptr)->setDockOptions(static_cast(options)); +} + +void QMainWindow_SetDocumentMode(QtObjectPtr ptr, int enabled){ + static_cast(ptr)->setDocumentMode(enabled != 0); +} + +void QMainWindow_SetIconSize(QtObjectPtr ptr, QtObjectPtr iconSize){ + static_cast(ptr)->setIconSize(*static_cast(iconSize)); +} + +void QMainWindow_SetTabShape(QtObjectPtr ptr, int tabShape){ + static_cast(ptr)->setTabShape(static_cast(tabShape)); +} + +void QMainWindow_SetToolButtonStyle(QtObjectPtr ptr, int toolButtonStyle){ + static_cast(ptr)->setToolButtonStyle(static_cast(toolButtonStyle)); +} + +void QMainWindow_SetUnifiedTitleAndToolBarOnMac(QtObjectPtr ptr, int set){ + QMetaObject::invokeMethod(static_cast(ptr), "setUnifiedTitleAndToolBarOnMac", Q_ARG(bool, set != 0)); +} + +void QMainWindow_SplitDockWidget(QtObjectPtr ptr, QtObjectPtr first, QtObjectPtr second, int orientation){ + static_cast(ptr)->splitDockWidget(static_cast(first), static_cast(second), static_cast(orientation)); +} + +int QMainWindow_TabShape(QtObjectPtr ptr){ + return static_cast(ptr)->tabShape(); +} + +void QMainWindow_TabifyDockWidget(QtObjectPtr ptr, QtObjectPtr first, QtObjectPtr second){ + static_cast(ptr)->tabifyDockWidget(static_cast(first), static_cast(second)); +} + +int QMainWindow_ToolButtonStyle(QtObjectPtr ptr){ + return static_cast(ptr)->toolButtonStyle(); +} + +int QMainWindow_UnifiedTitleAndToolBarOnMac(QtObjectPtr ptr){ + return static_cast(ptr)->unifiedTitleAndToolBarOnMac(); +} + +QtObjectPtr QMainWindow_NewQMainWindow(QtObjectPtr parent, int flags){ + return new QMainWindow(static_cast(parent), static_cast(flags)); +} + +void QMainWindow_AddDockWidget(QtObjectPtr ptr, int area, QtObjectPtr dockwidget){ + static_cast(ptr)->addDockWidget(static_cast(area), static_cast(dockwidget)); +} + +void QMainWindow_AddDockWidget2(QtObjectPtr ptr, int area, QtObjectPtr dockwidget, int orientation){ + static_cast(ptr)->addDockWidget(static_cast(area), static_cast(dockwidget), static_cast(orientation)); +} + +QtObjectPtr QMainWindow_AddToolBar3(QtObjectPtr ptr, char* title){ + return static_cast(ptr)->addToolBar(QString(title)); +} + +void QMainWindow_AddToolBar2(QtObjectPtr ptr, QtObjectPtr toolbar){ + static_cast(ptr)->addToolBar(static_cast(toolbar)); +} + +void QMainWindow_AddToolBar(QtObjectPtr ptr, int area, QtObjectPtr toolbar){ + static_cast(ptr)->addToolBar(static_cast(area), static_cast(toolbar)); +} + +void QMainWindow_AddToolBarBreak(QtObjectPtr ptr, int area){ + static_cast(ptr)->addToolBarBreak(static_cast(area)); +} + +QtObjectPtr QMainWindow_CentralWidget(QtObjectPtr ptr){ + return static_cast(ptr)->centralWidget(); +} + +int QMainWindow_Corner(QtObjectPtr ptr, int corner){ + return static_cast(ptr)->corner(static_cast(corner)); +} + +QtObjectPtr QMainWindow_CreatePopupMenu(QtObjectPtr ptr){ + return static_cast(ptr)->createPopupMenu(); +} + +int QMainWindow_DockWidgetArea(QtObjectPtr ptr, QtObjectPtr dockwidget){ + return static_cast(ptr)->dockWidgetArea(static_cast(dockwidget)); +} + +void QMainWindow_InsertToolBar(QtObjectPtr ptr, QtObjectPtr before, QtObjectPtr toolbar){ + static_cast(ptr)->insertToolBar(static_cast(before), static_cast(toolbar)); +} + +void QMainWindow_InsertToolBarBreak(QtObjectPtr ptr, QtObjectPtr before){ + static_cast(ptr)->insertToolBarBreak(static_cast(before)); +} + +QtObjectPtr QMainWindow_MenuBar(QtObjectPtr ptr){ + return static_cast(ptr)->menuBar(); +} + +QtObjectPtr QMainWindow_MenuWidget(QtObjectPtr ptr){ + return static_cast(ptr)->menuWidget(); +} + +void QMainWindow_RemoveDockWidget(QtObjectPtr ptr, QtObjectPtr dockwidget){ + static_cast(ptr)->removeDockWidget(static_cast(dockwidget)); +} + +void QMainWindow_RemoveToolBar(QtObjectPtr ptr, QtObjectPtr toolbar){ + static_cast(ptr)->removeToolBar(static_cast(toolbar)); +} + +void QMainWindow_RemoveToolBarBreak(QtObjectPtr ptr, QtObjectPtr before){ + static_cast(ptr)->removeToolBarBreak(static_cast(before)); +} + +int QMainWindow_RestoreDockWidget(QtObjectPtr ptr, QtObjectPtr dockwidget){ + return static_cast(ptr)->restoreDockWidget(static_cast(dockwidget)); +} + +int QMainWindow_RestoreState(QtObjectPtr ptr, QtObjectPtr state, int version){ + return static_cast(ptr)->restoreState(*static_cast(state), version); +} + +void QMainWindow_SetCentralWidget(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->setCentralWidget(static_cast(widget)); +} + +void QMainWindow_SetCorner(QtObjectPtr ptr, int corner, int area){ + static_cast(ptr)->setCorner(static_cast(corner), static_cast(area)); +} + +void QMainWindow_SetMenuBar(QtObjectPtr ptr, QtObjectPtr menuBar){ + static_cast(ptr)->setMenuBar(static_cast(menuBar)); +} + +void QMainWindow_SetMenuWidget(QtObjectPtr ptr, QtObjectPtr menuBar){ + static_cast(ptr)->setMenuWidget(static_cast(menuBar)); +} + +void QMainWindow_SetStatusBar(QtObjectPtr ptr, QtObjectPtr statusbar){ + static_cast(ptr)->setStatusBar(static_cast(statusbar)); +} + +void QMainWindow_SetTabPosition(QtObjectPtr ptr, int areas, int tabPosition){ + static_cast(ptr)->setTabPosition(static_cast(areas), static_cast(tabPosition)); +} + +QtObjectPtr QMainWindow_StatusBar(QtObjectPtr ptr){ + return static_cast(ptr)->statusBar(); +} + +int QMainWindow_TabPosition(QtObjectPtr ptr, int area){ + return static_cast(ptr)->tabPosition(static_cast(area)); +} + +QtObjectPtr QMainWindow_TakeCentralWidget(QtObjectPtr ptr){ + return static_cast(ptr)->takeCentralWidget(); +} + +int QMainWindow_ToolBarArea(QtObjectPtr ptr, QtObjectPtr toolbar){ + return static_cast(ptr)->toolBarArea(static_cast(toolbar)); +} + +int QMainWindow_ToolBarBreak(QtObjectPtr ptr, QtObjectPtr toolbar){ + return static_cast(ptr)->toolBarBreak(static_cast(toolbar)); +} + +void QMainWindow_ConnectToolButtonStyleChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMainWindow::toolButtonStyleChanged), static_cast(ptr), static_cast(&MyQMainWindow::Signal_ToolButtonStyleChanged));; +} + +void QMainWindow_DisconnectToolButtonStyleChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMainWindow::toolButtonStyleChanged), static_cast(ptr), static_cast(&MyQMainWindow::Signal_ToolButtonStyleChanged));; +} + +void QMainWindow_DestroyQMainWindow(QtObjectPtr ptr){ + static_cast(ptr)->~QMainWindow(); +} + diff --git a/widgets/qmainwindow.go b/widgets/qmainwindow.go new file mode 100755 index 00000000..f5abd516 --- /dev/null +++ b/widgets/qmainwindow.go @@ -0,0 +1,382 @@ +package widgets + +//#include "qmainwindow.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QMainWindow struct { + QWidget +} + +type QMainWindowITF interface { + QWidgetITF + QMainWindowPTR() *QMainWindow +} + +func PointerFromQMainWindow(ptr QMainWindowITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMainWindowPTR().Pointer() + } + return nil +} + +func QMainWindowFromPointer(ptr unsafe.Pointer) *QMainWindow { + var n = new(QMainWindow) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMainWindow_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMainWindow) QMainWindowPTR() *QMainWindow { + return ptr +} + +//QMainWindow::DockOption +type QMainWindow__DockOption int + +var ( + QMainWindow__AnimatedDocks = QMainWindow__DockOption(0x01) + QMainWindow__AllowNestedDocks = QMainWindow__DockOption(0x02) + QMainWindow__AllowTabbedDocks = QMainWindow__DockOption(0x04) + QMainWindow__ForceTabbedDocks = QMainWindow__DockOption(0x08) + QMainWindow__VerticalTabs = QMainWindow__DockOption(0x10) +) + +func (ptr *QMainWindow) DockOptions() QMainWindow__DockOption { + if ptr.Pointer() != nil { + return QMainWindow__DockOption(C.QMainWindow_DockOptions(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMainWindow) DocumentMode() bool { + if ptr.Pointer() != nil { + return C.QMainWindow_DocumentMode(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMainWindow) IsAnimated() bool { + if ptr.Pointer() != nil { + return C.QMainWindow_IsAnimated(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMainWindow) IsDockNestingEnabled() bool { + if ptr.Pointer() != nil { + return C.QMainWindow_IsDockNestingEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMainWindow) SetAnimated(enabled bool) { + if ptr.Pointer() != nil { + C.QMainWindow_SetAnimated(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QMainWindow) SetDockNestingEnabled(enabled bool) { + if ptr.Pointer() != nil { + C.QMainWindow_SetDockNestingEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QMainWindow) SetDockOptions(options QMainWindow__DockOption) { + if ptr.Pointer() != nil { + C.QMainWindow_SetDockOptions(C.QtObjectPtr(ptr.Pointer()), C.int(options)) + } +} + +func (ptr *QMainWindow) SetDocumentMode(enabled bool) { + if ptr.Pointer() != nil { + C.QMainWindow_SetDocumentMode(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QMainWindow) SetIconSize(iconSize core.QSizeITF) { + if ptr.Pointer() != nil { + C.QMainWindow_SetIconSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(iconSize))) + } +} + +func (ptr *QMainWindow) SetTabShape(tabShape QTabWidget__TabShape) { + if ptr.Pointer() != nil { + C.QMainWindow_SetTabShape(C.QtObjectPtr(ptr.Pointer()), C.int(tabShape)) + } +} + +func (ptr *QMainWindow) SetToolButtonStyle(toolButtonStyle core.Qt__ToolButtonStyle) { + if ptr.Pointer() != nil { + C.QMainWindow_SetToolButtonStyle(C.QtObjectPtr(ptr.Pointer()), C.int(toolButtonStyle)) + } +} + +func (ptr *QMainWindow) SetUnifiedTitleAndToolBarOnMac(set bool) { + if ptr.Pointer() != nil { + C.QMainWindow_SetUnifiedTitleAndToolBarOnMac(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(set))) + } +} + +func (ptr *QMainWindow) SplitDockWidget(first QDockWidgetITF, second QDockWidgetITF, orientation core.Qt__Orientation) { + if ptr.Pointer() != nil { + C.QMainWindow_SplitDockWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDockWidget(first)), C.QtObjectPtr(PointerFromQDockWidget(second)), C.int(orientation)) + } +} + +func (ptr *QMainWindow) TabShape() QTabWidget__TabShape { + if ptr.Pointer() != nil { + return QTabWidget__TabShape(C.QMainWindow_TabShape(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMainWindow) TabifyDockWidget(first QDockWidgetITF, second QDockWidgetITF) { + if ptr.Pointer() != nil { + C.QMainWindow_TabifyDockWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDockWidget(first)), C.QtObjectPtr(PointerFromQDockWidget(second))) + } +} + +func (ptr *QMainWindow) ToolButtonStyle() core.Qt__ToolButtonStyle { + if ptr.Pointer() != nil { + return core.Qt__ToolButtonStyle(C.QMainWindow_ToolButtonStyle(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMainWindow) UnifiedTitleAndToolBarOnMac() bool { + if ptr.Pointer() != nil { + return C.QMainWindow_UnifiedTitleAndToolBarOnMac(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func NewQMainWindow(parent QWidgetITF, flags core.Qt__WindowType) *QMainWindow { + return QMainWindowFromPointer(unsafe.Pointer(C.QMainWindow_NewQMainWindow(C.QtObjectPtr(PointerFromQWidget(parent)), C.int(flags)))) +} + +func (ptr *QMainWindow) AddDockWidget(area core.Qt__DockWidgetArea, dockwidget QDockWidgetITF) { + if ptr.Pointer() != nil { + C.QMainWindow_AddDockWidget(C.QtObjectPtr(ptr.Pointer()), C.int(area), C.QtObjectPtr(PointerFromQDockWidget(dockwidget))) + } +} + +func (ptr *QMainWindow) AddDockWidget2(area core.Qt__DockWidgetArea, dockwidget QDockWidgetITF, orientation core.Qt__Orientation) { + if ptr.Pointer() != nil { + C.QMainWindow_AddDockWidget2(C.QtObjectPtr(ptr.Pointer()), C.int(area), C.QtObjectPtr(PointerFromQDockWidget(dockwidget)), C.int(orientation)) + } +} + +func (ptr *QMainWindow) AddToolBar3(title string) *QToolBar { + if ptr.Pointer() != nil { + return QToolBarFromPointer(unsafe.Pointer(C.QMainWindow_AddToolBar3(C.QtObjectPtr(ptr.Pointer()), C.CString(title)))) + } + return nil +} + +func (ptr *QMainWindow) AddToolBar2(toolbar QToolBarITF) { + if ptr.Pointer() != nil { + C.QMainWindow_AddToolBar2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQToolBar(toolbar))) + } +} + +func (ptr *QMainWindow) AddToolBar(area core.Qt__ToolBarArea, toolbar QToolBarITF) { + if ptr.Pointer() != nil { + C.QMainWindow_AddToolBar(C.QtObjectPtr(ptr.Pointer()), C.int(area), C.QtObjectPtr(PointerFromQToolBar(toolbar))) + } +} + +func (ptr *QMainWindow) AddToolBarBreak(area core.Qt__ToolBarArea) { + if ptr.Pointer() != nil { + C.QMainWindow_AddToolBarBreak(C.QtObjectPtr(ptr.Pointer()), C.int(area)) + } +} + +func (ptr *QMainWindow) CentralWidget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QMainWindow_CentralWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMainWindow) Corner(corner core.Qt__Corner) core.Qt__DockWidgetArea { + if ptr.Pointer() != nil { + return core.Qt__DockWidgetArea(C.QMainWindow_Corner(C.QtObjectPtr(ptr.Pointer()), C.int(corner))) + } + return 0 +} + +func (ptr *QMainWindow) CreatePopupMenu() *QMenu { + if ptr.Pointer() != nil { + return QMenuFromPointer(unsafe.Pointer(C.QMainWindow_CreatePopupMenu(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMainWindow) DockWidgetArea(dockwidget QDockWidgetITF) core.Qt__DockWidgetArea { + if ptr.Pointer() != nil { + return core.Qt__DockWidgetArea(C.QMainWindow_DockWidgetArea(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDockWidget(dockwidget)))) + } + return 0 +} + +func (ptr *QMainWindow) InsertToolBar(before QToolBarITF, toolbar QToolBarITF) { + if ptr.Pointer() != nil { + C.QMainWindow_InsertToolBar(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQToolBar(before)), C.QtObjectPtr(PointerFromQToolBar(toolbar))) + } +} + +func (ptr *QMainWindow) InsertToolBarBreak(before QToolBarITF) { + if ptr.Pointer() != nil { + C.QMainWindow_InsertToolBarBreak(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQToolBar(before))) + } +} + +func (ptr *QMainWindow) MenuBar() *QMenuBar { + if ptr.Pointer() != nil { + return QMenuBarFromPointer(unsafe.Pointer(C.QMainWindow_MenuBar(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMainWindow) MenuWidget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QMainWindow_MenuWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMainWindow) RemoveDockWidget(dockwidget QDockWidgetITF) { + if ptr.Pointer() != nil { + C.QMainWindow_RemoveDockWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDockWidget(dockwidget))) + } +} + +func (ptr *QMainWindow) RemoveToolBar(toolbar QToolBarITF) { + if ptr.Pointer() != nil { + C.QMainWindow_RemoveToolBar(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQToolBar(toolbar))) + } +} + +func (ptr *QMainWindow) RemoveToolBarBreak(before QToolBarITF) { + if ptr.Pointer() != nil { + C.QMainWindow_RemoveToolBarBreak(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQToolBar(before))) + } +} + +func (ptr *QMainWindow) RestoreDockWidget(dockwidget QDockWidgetITF) bool { + if ptr.Pointer() != nil { + return C.QMainWindow_RestoreDockWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQDockWidget(dockwidget))) != 0 + } + return false +} + +func (ptr *QMainWindow) RestoreState(state core.QByteArrayITF, version int) bool { + if ptr.Pointer() != nil { + return C.QMainWindow_RestoreState(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(state)), C.int(version)) != 0 + } + return false +} + +func (ptr *QMainWindow) SetCentralWidget(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QMainWindow_SetCentralWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QMainWindow) SetCorner(corner core.Qt__Corner, area core.Qt__DockWidgetArea) { + if ptr.Pointer() != nil { + C.QMainWindow_SetCorner(C.QtObjectPtr(ptr.Pointer()), C.int(corner), C.int(area)) + } +} + +func (ptr *QMainWindow) SetMenuBar(menuBar QMenuBarITF) { + if ptr.Pointer() != nil { + C.QMainWindow_SetMenuBar(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMenuBar(menuBar))) + } +} + +func (ptr *QMainWindow) SetMenuWidget(menuBar QWidgetITF) { + if ptr.Pointer() != nil { + C.QMainWindow_SetMenuWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(menuBar))) + } +} + +func (ptr *QMainWindow) SetStatusBar(statusbar QStatusBarITF) { + if ptr.Pointer() != nil { + C.QMainWindow_SetStatusBar(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQStatusBar(statusbar))) + } +} + +func (ptr *QMainWindow) SetTabPosition(areas core.Qt__DockWidgetArea, tabPosition QTabWidget__TabPosition) { + if ptr.Pointer() != nil { + C.QMainWindow_SetTabPosition(C.QtObjectPtr(ptr.Pointer()), C.int(areas), C.int(tabPosition)) + } +} + +func (ptr *QMainWindow) StatusBar() *QStatusBar { + if ptr.Pointer() != nil { + return QStatusBarFromPointer(unsafe.Pointer(C.QMainWindow_StatusBar(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMainWindow) TabPosition(area core.Qt__DockWidgetArea) QTabWidget__TabPosition { + if ptr.Pointer() != nil { + return QTabWidget__TabPosition(C.QMainWindow_TabPosition(C.QtObjectPtr(ptr.Pointer()), C.int(area))) + } + return 0 +} + +func (ptr *QMainWindow) TakeCentralWidget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QMainWindow_TakeCentralWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMainWindow) ToolBarArea(toolbar QToolBarITF) core.Qt__ToolBarArea { + if ptr.Pointer() != nil { + return core.Qt__ToolBarArea(C.QMainWindow_ToolBarArea(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQToolBar(toolbar)))) + } + return 0 +} + +func (ptr *QMainWindow) ToolBarBreak(toolbar QToolBarITF) bool { + if ptr.Pointer() != nil { + return C.QMainWindow_ToolBarBreak(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQToolBar(toolbar))) != 0 + } + return false +} + +func (ptr *QMainWindow) ConnectToolButtonStyleChanged(f func(toolButtonStyle core.Qt__ToolButtonStyle)) { + if ptr.Pointer() != nil { + C.QMainWindow_ConnectToolButtonStyleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "toolButtonStyleChanged", f) + } +} + +func (ptr *QMainWindow) DisconnectToolButtonStyleChanged() { + if ptr.Pointer() != nil { + C.QMainWindow_DisconnectToolButtonStyleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "toolButtonStyleChanged") + } +} + +//export callbackQMainWindowToolButtonStyleChanged +func callbackQMainWindowToolButtonStyleChanged(ptrName *C.char, toolButtonStyle C.int) { + qt.GetSignal(C.GoString(ptrName), "toolButtonStyleChanged").(func(core.Qt__ToolButtonStyle))(core.Qt__ToolButtonStyle(toolButtonStyle)) +} + +func (ptr *QMainWindow) DestroyQMainWindow() { + if ptr.Pointer() != nil { + C.QMainWindow_DestroyQMainWindow(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qmainwindow.h b/widgets/qmainwindow.h new file mode 100755 index 00000000..7ecef9f3 --- /dev/null +++ b/widgets/qmainwindow.h @@ -0,0 +1,60 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QMainWindow_DockOptions(QtObjectPtr ptr); +int QMainWindow_DocumentMode(QtObjectPtr ptr); +int QMainWindow_IsAnimated(QtObjectPtr ptr); +int QMainWindow_IsDockNestingEnabled(QtObjectPtr ptr); +void QMainWindow_SetAnimated(QtObjectPtr ptr, int enabled); +void QMainWindow_SetDockNestingEnabled(QtObjectPtr ptr, int enabled); +void QMainWindow_SetDockOptions(QtObjectPtr ptr, int options); +void QMainWindow_SetDocumentMode(QtObjectPtr ptr, int enabled); +void QMainWindow_SetIconSize(QtObjectPtr ptr, QtObjectPtr iconSize); +void QMainWindow_SetTabShape(QtObjectPtr ptr, int tabShape); +void QMainWindow_SetToolButtonStyle(QtObjectPtr ptr, int toolButtonStyle); +void QMainWindow_SetUnifiedTitleAndToolBarOnMac(QtObjectPtr ptr, int set); +void QMainWindow_SplitDockWidget(QtObjectPtr ptr, QtObjectPtr first, QtObjectPtr second, int orientation); +int QMainWindow_TabShape(QtObjectPtr ptr); +void QMainWindow_TabifyDockWidget(QtObjectPtr ptr, QtObjectPtr first, QtObjectPtr second); +int QMainWindow_ToolButtonStyle(QtObjectPtr ptr); +int QMainWindow_UnifiedTitleAndToolBarOnMac(QtObjectPtr ptr); +QtObjectPtr QMainWindow_NewQMainWindow(QtObjectPtr parent, int flags); +void QMainWindow_AddDockWidget(QtObjectPtr ptr, int area, QtObjectPtr dockwidget); +void QMainWindow_AddDockWidget2(QtObjectPtr ptr, int area, QtObjectPtr dockwidget, int orientation); +QtObjectPtr QMainWindow_AddToolBar3(QtObjectPtr ptr, char* title); +void QMainWindow_AddToolBar2(QtObjectPtr ptr, QtObjectPtr toolbar); +void QMainWindow_AddToolBar(QtObjectPtr ptr, int area, QtObjectPtr toolbar); +void QMainWindow_AddToolBarBreak(QtObjectPtr ptr, int area); +QtObjectPtr QMainWindow_CentralWidget(QtObjectPtr ptr); +int QMainWindow_Corner(QtObjectPtr ptr, int corner); +QtObjectPtr QMainWindow_CreatePopupMenu(QtObjectPtr ptr); +int QMainWindow_DockWidgetArea(QtObjectPtr ptr, QtObjectPtr dockwidget); +void QMainWindow_InsertToolBar(QtObjectPtr ptr, QtObjectPtr before, QtObjectPtr toolbar); +void QMainWindow_InsertToolBarBreak(QtObjectPtr ptr, QtObjectPtr before); +QtObjectPtr QMainWindow_MenuBar(QtObjectPtr ptr); +QtObjectPtr QMainWindow_MenuWidget(QtObjectPtr ptr); +void QMainWindow_RemoveDockWidget(QtObjectPtr ptr, QtObjectPtr dockwidget); +void QMainWindow_RemoveToolBar(QtObjectPtr ptr, QtObjectPtr toolbar); +void QMainWindow_RemoveToolBarBreak(QtObjectPtr ptr, QtObjectPtr before); +int QMainWindow_RestoreDockWidget(QtObjectPtr ptr, QtObjectPtr dockwidget); +int QMainWindow_RestoreState(QtObjectPtr ptr, QtObjectPtr state, int version); +void QMainWindow_SetCentralWidget(QtObjectPtr ptr, QtObjectPtr widget); +void QMainWindow_SetCorner(QtObjectPtr ptr, int corner, int area); +void QMainWindow_SetMenuBar(QtObjectPtr ptr, QtObjectPtr menuBar); +void QMainWindow_SetMenuWidget(QtObjectPtr ptr, QtObjectPtr menuBar); +void QMainWindow_SetStatusBar(QtObjectPtr ptr, QtObjectPtr statusbar); +void QMainWindow_SetTabPosition(QtObjectPtr ptr, int areas, int tabPosition); +QtObjectPtr QMainWindow_StatusBar(QtObjectPtr ptr); +int QMainWindow_TabPosition(QtObjectPtr ptr, int area); +QtObjectPtr QMainWindow_TakeCentralWidget(QtObjectPtr ptr); +int QMainWindow_ToolBarArea(QtObjectPtr ptr, QtObjectPtr toolbar); +int QMainWindow_ToolBarBreak(QtObjectPtr ptr, QtObjectPtr toolbar); +void QMainWindow_ConnectToolButtonStyleChanged(QtObjectPtr ptr); +void QMainWindow_DisconnectToolButtonStyleChanged(QtObjectPtr ptr); +void QMainWindow_DestroyQMainWindow(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qmdiarea.cpp b/widgets/qmdiarea.cpp new file mode 100755 index 00000000..6fcb3c7e --- /dev/null +++ b/widgets/qmdiarea.cpp @@ -0,0 +1,147 @@ +#include "qmdiarea.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMdiArea: public QMdiArea { +public: +void Signal_SubWindowActivated(QMdiSubWindow * window){callbackQMdiAreaSubWindowActivated(this->objectName().toUtf8().data(), window);}; +}; + +int QMdiArea_ActivationOrder(QtObjectPtr ptr){ + return static_cast(ptr)->activationOrder(); +} + +int QMdiArea_DocumentMode(QtObjectPtr ptr){ + return static_cast(ptr)->documentMode(); +} + +void QMdiArea_SetActivationOrder(QtObjectPtr ptr, int order){ + static_cast(ptr)->setActivationOrder(static_cast(order)); +} + +void QMdiArea_SetBackground(QtObjectPtr ptr, QtObjectPtr background){ + static_cast(ptr)->setBackground(*static_cast(background)); +} + +void QMdiArea_SetDocumentMode(QtObjectPtr ptr, int enabled){ + static_cast(ptr)->setDocumentMode(enabled != 0); +} + +void QMdiArea_SetTabPosition(QtObjectPtr ptr, int position){ + static_cast(ptr)->setTabPosition(static_cast(position)); +} + +void QMdiArea_SetTabShape(QtObjectPtr ptr, int shape){ + static_cast(ptr)->setTabShape(static_cast(shape)); +} + +void QMdiArea_SetTabsClosable(QtObjectPtr ptr, int closable){ + static_cast(ptr)->setTabsClosable(closable != 0); +} + +void QMdiArea_SetTabsMovable(QtObjectPtr ptr, int movable){ + static_cast(ptr)->setTabsMovable(movable != 0); +} + +void QMdiArea_SetViewMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setViewMode(static_cast(mode)); +} + +int QMdiArea_TabPosition(QtObjectPtr ptr){ + return static_cast(ptr)->tabPosition(); +} + +int QMdiArea_TabShape(QtObjectPtr ptr){ + return static_cast(ptr)->tabShape(); +} + +int QMdiArea_TabsClosable(QtObjectPtr ptr){ + return static_cast(ptr)->tabsClosable(); +} + +int QMdiArea_TabsMovable(QtObjectPtr ptr){ + return static_cast(ptr)->tabsMovable(); +} + +int QMdiArea_ViewMode(QtObjectPtr ptr){ + return static_cast(ptr)->viewMode(); +} + +QtObjectPtr QMdiArea_NewQMdiArea(QtObjectPtr parent){ + return new QMdiArea(static_cast(parent)); +} + +void QMdiArea_ActivateNextSubWindow(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "activateNextSubWindow"); +} + +void QMdiArea_ActivatePreviousSubWindow(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "activatePreviousSubWindow"); +} + +QtObjectPtr QMdiArea_ActiveSubWindow(QtObjectPtr ptr){ + return static_cast(ptr)->activeSubWindow(); +} + +QtObjectPtr QMdiArea_AddSubWindow(QtObjectPtr ptr, QtObjectPtr widget, int windowFlags){ + return static_cast(ptr)->addSubWindow(static_cast(widget), static_cast(windowFlags)); +} + +void QMdiArea_CascadeSubWindows(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "cascadeSubWindows"); +} + +void QMdiArea_CloseActiveSubWindow(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "closeActiveSubWindow"); +} + +void QMdiArea_CloseAllSubWindows(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "closeAllSubWindows"); +} + +QtObjectPtr QMdiArea_CurrentSubWindow(QtObjectPtr ptr){ + return static_cast(ptr)->currentSubWindow(); +} + +void QMdiArea_RemoveSubWindow(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->removeSubWindow(static_cast(widget)); +} + +void QMdiArea_SetActiveSubWindow(QtObjectPtr ptr, QtObjectPtr window){ + QMetaObject::invokeMethod(static_cast(ptr), "setActiveSubWindow", Q_ARG(QMdiSubWindow*, static_cast(window))); +} + +void QMdiArea_SetOption(QtObjectPtr ptr, int option, int on){ + static_cast(ptr)->setOption(static_cast(option), on != 0); +} + +void QMdiArea_ConnectSubWindowActivated(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMdiArea::subWindowActivated), static_cast(ptr), static_cast(&MyQMdiArea::Signal_SubWindowActivated));; +} + +void QMdiArea_DisconnectSubWindowActivated(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMdiArea::subWindowActivated), static_cast(ptr), static_cast(&MyQMdiArea::Signal_SubWindowActivated));; +} + +int QMdiArea_TestOption(QtObjectPtr ptr, int option){ + return static_cast(ptr)->testOption(static_cast(option)); +} + +void QMdiArea_TileSubWindows(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "tileSubWindows"); +} + +void QMdiArea_DestroyQMdiArea(QtObjectPtr ptr){ + static_cast(ptr)->~QMdiArea(); +} + diff --git a/widgets/qmdiarea.go b/widgets/qmdiarea.go new file mode 100755 index 00000000..535e96cb --- /dev/null +++ b/widgets/qmdiarea.go @@ -0,0 +1,272 @@ +package widgets + +//#include "qmdiarea.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QMdiArea struct { + QAbstractScrollArea +} + +type QMdiAreaITF interface { + QAbstractScrollAreaITF + QMdiAreaPTR() *QMdiArea +} + +func PointerFromQMdiArea(ptr QMdiAreaITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMdiAreaPTR().Pointer() + } + return nil +} + +func QMdiAreaFromPointer(ptr unsafe.Pointer) *QMdiArea { + var n = new(QMdiArea) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMdiArea_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMdiArea) QMdiAreaPTR() *QMdiArea { + return ptr +} + +//QMdiArea::AreaOption +type QMdiArea__AreaOption int + +var ( + QMdiArea__DontMaximizeSubWindowOnActivation = QMdiArea__AreaOption(0x1) +) + +//QMdiArea::ViewMode +type QMdiArea__ViewMode int + +var ( + QMdiArea__SubWindowView = QMdiArea__ViewMode(0) + QMdiArea__TabbedView = QMdiArea__ViewMode(1) +) + +//QMdiArea::WindowOrder +type QMdiArea__WindowOrder int + +var ( + QMdiArea__CreationOrder = QMdiArea__WindowOrder(0) + QMdiArea__StackingOrder = QMdiArea__WindowOrder(1) + QMdiArea__ActivationHistoryOrder = QMdiArea__WindowOrder(2) +) + +func (ptr *QMdiArea) ActivationOrder() QMdiArea__WindowOrder { + if ptr.Pointer() != nil { + return QMdiArea__WindowOrder(C.QMdiArea_ActivationOrder(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMdiArea) DocumentMode() bool { + if ptr.Pointer() != nil { + return C.QMdiArea_DocumentMode(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMdiArea) SetActivationOrder(order QMdiArea__WindowOrder) { + if ptr.Pointer() != nil { + C.QMdiArea_SetActivationOrder(C.QtObjectPtr(ptr.Pointer()), C.int(order)) + } +} + +func (ptr *QMdiArea) SetBackground(background gui.QBrushITF) { + if ptr.Pointer() != nil { + C.QMdiArea_SetBackground(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQBrush(background))) + } +} + +func (ptr *QMdiArea) SetDocumentMode(enabled bool) { + if ptr.Pointer() != nil { + C.QMdiArea_SetDocumentMode(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QMdiArea) SetTabPosition(position QTabWidget__TabPosition) { + if ptr.Pointer() != nil { + C.QMdiArea_SetTabPosition(C.QtObjectPtr(ptr.Pointer()), C.int(position)) + } +} + +func (ptr *QMdiArea) SetTabShape(shape QTabWidget__TabShape) { + if ptr.Pointer() != nil { + C.QMdiArea_SetTabShape(C.QtObjectPtr(ptr.Pointer()), C.int(shape)) + } +} + +func (ptr *QMdiArea) SetTabsClosable(closable bool) { + if ptr.Pointer() != nil { + C.QMdiArea_SetTabsClosable(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(closable))) + } +} + +func (ptr *QMdiArea) SetTabsMovable(movable bool) { + if ptr.Pointer() != nil { + C.QMdiArea_SetTabsMovable(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(movable))) + } +} + +func (ptr *QMdiArea) SetViewMode(mode QMdiArea__ViewMode) { + if ptr.Pointer() != nil { + C.QMdiArea_SetViewMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QMdiArea) TabPosition() QTabWidget__TabPosition { + if ptr.Pointer() != nil { + return QTabWidget__TabPosition(C.QMdiArea_TabPosition(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMdiArea) TabShape() QTabWidget__TabShape { + if ptr.Pointer() != nil { + return QTabWidget__TabShape(C.QMdiArea_TabShape(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMdiArea) TabsClosable() bool { + if ptr.Pointer() != nil { + return C.QMdiArea_TabsClosable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMdiArea) TabsMovable() bool { + if ptr.Pointer() != nil { + return C.QMdiArea_TabsMovable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMdiArea) ViewMode() QMdiArea__ViewMode { + if ptr.Pointer() != nil { + return QMdiArea__ViewMode(C.QMdiArea_ViewMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQMdiArea(parent QWidgetITF) *QMdiArea { + return QMdiAreaFromPointer(unsafe.Pointer(C.QMdiArea_NewQMdiArea(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QMdiArea) ActivateNextSubWindow() { + if ptr.Pointer() != nil { + C.QMdiArea_ActivateNextSubWindow(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMdiArea) ActivatePreviousSubWindow() { + if ptr.Pointer() != nil { + C.QMdiArea_ActivatePreviousSubWindow(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMdiArea) ActiveSubWindow() *QMdiSubWindow { + if ptr.Pointer() != nil { + return QMdiSubWindowFromPointer(unsafe.Pointer(C.QMdiArea_ActiveSubWindow(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMdiArea) AddSubWindow(widget QWidgetITF, windowFlags core.Qt__WindowType) *QMdiSubWindow { + if ptr.Pointer() != nil { + return QMdiSubWindowFromPointer(unsafe.Pointer(C.QMdiArea_AddSubWindow(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget)), C.int(windowFlags)))) + } + return nil +} + +func (ptr *QMdiArea) CascadeSubWindows() { + if ptr.Pointer() != nil { + C.QMdiArea_CascadeSubWindows(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMdiArea) CloseActiveSubWindow() { + if ptr.Pointer() != nil { + C.QMdiArea_CloseActiveSubWindow(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMdiArea) CloseAllSubWindows() { + if ptr.Pointer() != nil { + C.QMdiArea_CloseAllSubWindows(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMdiArea) CurrentSubWindow() *QMdiSubWindow { + if ptr.Pointer() != nil { + return QMdiSubWindowFromPointer(unsafe.Pointer(C.QMdiArea_CurrentSubWindow(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMdiArea) RemoveSubWindow(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QMdiArea_RemoveSubWindow(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QMdiArea) SetActiveSubWindow(window QMdiSubWindowITF) { + if ptr.Pointer() != nil { + C.QMdiArea_SetActiveSubWindow(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMdiSubWindow(window))) + } +} + +func (ptr *QMdiArea) SetOption(option QMdiArea__AreaOption, on bool) { + if ptr.Pointer() != nil { + C.QMdiArea_SetOption(C.QtObjectPtr(ptr.Pointer()), C.int(option), C.int(qt.GoBoolToInt(on))) + } +} + +func (ptr *QMdiArea) ConnectSubWindowActivated(f func(window QMdiSubWindowITF)) { + if ptr.Pointer() != nil { + C.QMdiArea_ConnectSubWindowActivated(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "subWindowActivated", f) + } +} + +func (ptr *QMdiArea) DisconnectSubWindowActivated() { + if ptr.Pointer() != nil { + C.QMdiArea_DisconnectSubWindowActivated(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "subWindowActivated") + } +} + +//export callbackQMdiAreaSubWindowActivated +func callbackQMdiAreaSubWindowActivated(ptrName *C.char, window unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "subWindowActivated").(func(*QMdiSubWindow))(QMdiSubWindowFromPointer(window)) +} + +func (ptr *QMdiArea) TestOption(option QMdiArea__AreaOption) bool { + if ptr.Pointer() != nil { + return C.QMdiArea_TestOption(C.QtObjectPtr(ptr.Pointer()), C.int(option)) != 0 + } + return false +} + +func (ptr *QMdiArea) TileSubWindows() { + if ptr.Pointer() != nil { + C.QMdiArea_TileSubWindows(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMdiArea) DestroyQMdiArea() { + if ptr.Pointer() != nil { + C.QMdiArea_DestroyQMdiArea(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qmdiarea.h b/widgets/qmdiarea.h new file mode 100755 index 00000000..3e30166d --- /dev/null +++ b/widgets/qmdiarea.h @@ -0,0 +1,41 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QMdiArea_ActivationOrder(QtObjectPtr ptr); +int QMdiArea_DocumentMode(QtObjectPtr ptr); +void QMdiArea_SetActivationOrder(QtObjectPtr ptr, int order); +void QMdiArea_SetBackground(QtObjectPtr ptr, QtObjectPtr background); +void QMdiArea_SetDocumentMode(QtObjectPtr ptr, int enabled); +void QMdiArea_SetTabPosition(QtObjectPtr ptr, int position); +void QMdiArea_SetTabShape(QtObjectPtr ptr, int shape); +void QMdiArea_SetTabsClosable(QtObjectPtr ptr, int closable); +void QMdiArea_SetTabsMovable(QtObjectPtr ptr, int movable); +void QMdiArea_SetViewMode(QtObjectPtr ptr, int mode); +int QMdiArea_TabPosition(QtObjectPtr ptr); +int QMdiArea_TabShape(QtObjectPtr ptr); +int QMdiArea_TabsClosable(QtObjectPtr ptr); +int QMdiArea_TabsMovable(QtObjectPtr ptr); +int QMdiArea_ViewMode(QtObjectPtr ptr); +QtObjectPtr QMdiArea_NewQMdiArea(QtObjectPtr parent); +void QMdiArea_ActivateNextSubWindow(QtObjectPtr ptr); +void QMdiArea_ActivatePreviousSubWindow(QtObjectPtr ptr); +QtObjectPtr QMdiArea_ActiveSubWindow(QtObjectPtr ptr); +QtObjectPtr QMdiArea_AddSubWindow(QtObjectPtr ptr, QtObjectPtr widget, int windowFlags); +void QMdiArea_CascadeSubWindows(QtObjectPtr ptr); +void QMdiArea_CloseActiveSubWindow(QtObjectPtr ptr); +void QMdiArea_CloseAllSubWindows(QtObjectPtr ptr); +QtObjectPtr QMdiArea_CurrentSubWindow(QtObjectPtr ptr); +void QMdiArea_RemoveSubWindow(QtObjectPtr ptr, QtObjectPtr widget); +void QMdiArea_SetActiveSubWindow(QtObjectPtr ptr, QtObjectPtr window); +void QMdiArea_SetOption(QtObjectPtr ptr, int option, int on); +void QMdiArea_ConnectSubWindowActivated(QtObjectPtr ptr); +void QMdiArea_DisconnectSubWindowActivated(QtObjectPtr ptr); +int QMdiArea_TestOption(QtObjectPtr ptr, int option); +void QMdiArea_TileSubWindows(QtObjectPtr ptr); +void QMdiArea_DestroyQMdiArea(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qmdisubwindow.cpp b/widgets/qmdisubwindow.cpp new file mode 100755 index 00000000..b3dc30e7 --- /dev/null +++ b/widgets/qmdisubwindow.cpp @@ -0,0 +1,98 @@ +#include "qmdisubwindow.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMdiSubWindow: public QMdiSubWindow { +public: +void Signal_AboutToActivate(){callbackQMdiSubWindowAboutToActivate(this->objectName().toUtf8().data());}; +void Signal_WindowStateChanged(Qt::WindowStates oldState, Qt::WindowStates newState){callbackQMdiSubWindowWindowStateChanged(this->objectName().toUtf8().data(), oldState, newState);}; +}; + +int QMdiSubWindow_KeyboardPageStep(QtObjectPtr ptr){ + return static_cast(ptr)->keyboardPageStep(); +} + +int QMdiSubWindow_KeyboardSingleStep(QtObjectPtr ptr){ + return static_cast(ptr)->keyboardSingleStep(); +} + +void QMdiSubWindow_SetKeyboardPageStep(QtObjectPtr ptr, int step){ + static_cast(ptr)->setKeyboardPageStep(step); +} + +void QMdiSubWindow_SetKeyboardSingleStep(QtObjectPtr ptr, int step){ + static_cast(ptr)->setKeyboardSingleStep(step); +} + +QtObjectPtr QMdiSubWindow_NewQMdiSubWindow(QtObjectPtr parent, int flags){ + return new QMdiSubWindow(static_cast(parent), static_cast(flags)); +} + +void QMdiSubWindow_ConnectAboutToActivate(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMdiSubWindow::aboutToActivate), static_cast(ptr), static_cast(&MyQMdiSubWindow::Signal_AboutToActivate));; +} + +void QMdiSubWindow_DisconnectAboutToActivate(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMdiSubWindow::aboutToActivate), static_cast(ptr), static_cast(&MyQMdiSubWindow::Signal_AboutToActivate));; +} + +int QMdiSubWindow_IsShaded(QtObjectPtr ptr){ + return static_cast(ptr)->isShaded(); +} + +QtObjectPtr QMdiSubWindow_MdiArea(QtObjectPtr ptr){ + return static_cast(ptr)->mdiArea(); +} + +void QMdiSubWindow_SetOption(QtObjectPtr ptr, int option, int on){ + static_cast(ptr)->setOption(static_cast(option), on != 0); +} + +void QMdiSubWindow_SetSystemMenu(QtObjectPtr ptr, QtObjectPtr systemMenu){ + static_cast(ptr)->setSystemMenu(static_cast(systemMenu)); +} + +void QMdiSubWindow_SetWidget(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->setWidget(static_cast(widget)); +} + +void QMdiSubWindow_ShowShaded(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "showShaded"); +} + +void QMdiSubWindow_ShowSystemMenu(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "showSystemMenu"); +} + +QtObjectPtr QMdiSubWindow_SystemMenu(QtObjectPtr ptr){ + return static_cast(ptr)->systemMenu(); +} + +int QMdiSubWindow_TestOption(QtObjectPtr ptr, int option){ + return static_cast(ptr)->testOption(static_cast(option)); +} + +QtObjectPtr QMdiSubWindow_Widget(QtObjectPtr ptr){ + return static_cast(ptr)->widget(); +} + +void QMdiSubWindow_ConnectWindowStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMdiSubWindow::windowStateChanged), static_cast(ptr), static_cast(&MyQMdiSubWindow::Signal_WindowStateChanged));; +} + +void QMdiSubWindow_DisconnectWindowStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMdiSubWindow::windowStateChanged), static_cast(ptr), static_cast(&MyQMdiSubWindow::Signal_WindowStateChanged));; +} + +void QMdiSubWindow_DestroyQMdiSubWindow(QtObjectPtr ptr){ + static_cast(ptr)->~QMdiSubWindow(); +} + diff --git a/widgets/qmdisubwindow.go b/widgets/qmdisubwindow.go new file mode 100755 index 00000000..335d77ba --- /dev/null +++ b/widgets/qmdisubwindow.go @@ -0,0 +1,188 @@ +package widgets + +//#include "qmdisubwindow.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QMdiSubWindow struct { + QWidget +} + +type QMdiSubWindowITF interface { + QWidgetITF + QMdiSubWindowPTR() *QMdiSubWindow +} + +func PointerFromQMdiSubWindow(ptr QMdiSubWindowITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMdiSubWindowPTR().Pointer() + } + return nil +} + +func QMdiSubWindowFromPointer(ptr unsafe.Pointer) *QMdiSubWindow { + var n = new(QMdiSubWindow) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMdiSubWindow_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMdiSubWindow) QMdiSubWindowPTR() *QMdiSubWindow { + return ptr +} + +//QMdiSubWindow::SubWindowOption +type QMdiSubWindow__SubWindowOption int + +var ( + QMdiSubWindow__AllowOutsideAreaHorizontally = QMdiSubWindow__SubWindowOption(0x1) + QMdiSubWindow__AllowOutsideAreaVertically = QMdiSubWindow__SubWindowOption(0x2) + QMdiSubWindow__RubberBandResize = QMdiSubWindow__SubWindowOption(0x4) + QMdiSubWindow__RubberBandMove = QMdiSubWindow__SubWindowOption(0x8) +) + +func (ptr *QMdiSubWindow) KeyboardPageStep() int { + if ptr.Pointer() != nil { + return int(C.QMdiSubWindow_KeyboardPageStep(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMdiSubWindow) KeyboardSingleStep() int { + if ptr.Pointer() != nil { + return int(C.QMdiSubWindow_KeyboardSingleStep(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMdiSubWindow) SetKeyboardPageStep(step int) { + if ptr.Pointer() != nil { + C.QMdiSubWindow_SetKeyboardPageStep(C.QtObjectPtr(ptr.Pointer()), C.int(step)) + } +} + +func (ptr *QMdiSubWindow) SetKeyboardSingleStep(step int) { + if ptr.Pointer() != nil { + C.QMdiSubWindow_SetKeyboardSingleStep(C.QtObjectPtr(ptr.Pointer()), C.int(step)) + } +} + +func NewQMdiSubWindow(parent QWidgetITF, flags core.Qt__WindowType) *QMdiSubWindow { + return QMdiSubWindowFromPointer(unsafe.Pointer(C.QMdiSubWindow_NewQMdiSubWindow(C.QtObjectPtr(PointerFromQWidget(parent)), C.int(flags)))) +} + +func (ptr *QMdiSubWindow) ConnectAboutToActivate(f func()) { + if ptr.Pointer() != nil { + C.QMdiSubWindow_ConnectAboutToActivate(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "aboutToActivate", f) + } +} + +func (ptr *QMdiSubWindow) DisconnectAboutToActivate() { + if ptr.Pointer() != nil { + C.QMdiSubWindow_DisconnectAboutToActivate(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "aboutToActivate") + } +} + +//export callbackQMdiSubWindowAboutToActivate +func callbackQMdiSubWindowAboutToActivate(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "aboutToActivate").(func())() +} + +func (ptr *QMdiSubWindow) IsShaded() bool { + if ptr.Pointer() != nil { + return C.QMdiSubWindow_IsShaded(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMdiSubWindow) MdiArea() *QMdiArea { + if ptr.Pointer() != nil { + return QMdiAreaFromPointer(unsafe.Pointer(C.QMdiSubWindow_MdiArea(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMdiSubWindow) SetOption(option QMdiSubWindow__SubWindowOption, on bool) { + if ptr.Pointer() != nil { + C.QMdiSubWindow_SetOption(C.QtObjectPtr(ptr.Pointer()), C.int(option), C.int(qt.GoBoolToInt(on))) + } +} + +func (ptr *QMdiSubWindow) SetSystemMenu(systemMenu QMenuITF) { + if ptr.Pointer() != nil { + C.QMdiSubWindow_SetSystemMenu(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMenu(systemMenu))) + } +} + +func (ptr *QMdiSubWindow) SetWidget(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QMdiSubWindow_SetWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QMdiSubWindow) ShowShaded() { + if ptr.Pointer() != nil { + C.QMdiSubWindow_ShowShaded(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMdiSubWindow) ShowSystemMenu() { + if ptr.Pointer() != nil { + C.QMdiSubWindow_ShowSystemMenu(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMdiSubWindow) SystemMenu() *QMenu { + if ptr.Pointer() != nil { + return QMenuFromPointer(unsafe.Pointer(C.QMdiSubWindow_SystemMenu(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMdiSubWindow) TestOption(option QMdiSubWindow__SubWindowOption) bool { + if ptr.Pointer() != nil { + return C.QMdiSubWindow_TestOption(C.QtObjectPtr(ptr.Pointer()), C.int(option)) != 0 + } + return false +} + +func (ptr *QMdiSubWindow) Widget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QMdiSubWindow_Widget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMdiSubWindow) ConnectWindowStateChanged(f func(oldState core.Qt__WindowState, newState core.Qt__WindowState)) { + if ptr.Pointer() != nil { + C.QMdiSubWindow_ConnectWindowStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "windowStateChanged", f) + } +} + +func (ptr *QMdiSubWindow) DisconnectWindowStateChanged() { + if ptr.Pointer() != nil { + C.QMdiSubWindow_DisconnectWindowStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "windowStateChanged") + } +} + +//export callbackQMdiSubWindowWindowStateChanged +func callbackQMdiSubWindowWindowStateChanged(ptrName *C.char, oldState C.int, newState C.int) { + qt.GetSignal(C.GoString(ptrName), "windowStateChanged").(func(core.Qt__WindowState, core.Qt__WindowState))(core.Qt__WindowState(oldState), core.Qt__WindowState(newState)) +} + +func (ptr *QMdiSubWindow) DestroyQMdiSubWindow() { + if ptr.Pointer() != nil { + C.QMdiSubWindow_DestroyQMdiSubWindow(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qmdisubwindow.h b/widgets/qmdisubwindow.h new file mode 100755 index 00000000..c977388a --- /dev/null +++ b/widgets/qmdisubwindow.h @@ -0,0 +1,29 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QMdiSubWindow_KeyboardPageStep(QtObjectPtr ptr); +int QMdiSubWindow_KeyboardSingleStep(QtObjectPtr ptr); +void QMdiSubWindow_SetKeyboardPageStep(QtObjectPtr ptr, int step); +void QMdiSubWindow_SetKeyboardSingleStep(QtObjectPtr ptr, int step); +QtObjectPtr QMdiSubWindow_NewQMdiSubWindow(QtObjectPtr parent, int flags); +void QMdiSubWindow_ConnectAboutToActivate(QtObjectPtr ptr); +void QMdiSubWindow_DisconnectAboutToActivate(QtObjectPtr ptr); +int QMdiSubWindow_IsShaded(QtObjectPtr ptr); +QtObjectPtr QMdiSubWindow_MdiArea(QtObjectPtr ptr); +void QMdiSubWindow_SetOption(QtObjectPtr ptr, int option, int on); +void QMdiSubWindow_SetSystemMenu(QtObjectPtr ptr, QtObjectPtr systemMenu); +void QMdiSubWindow_SetWidget(QtObjectPtr ptr, QtObjectPtr widget); +void QMdiSubWindow_ShowShaded(QtObjectPtr ptr); +void QMdiSubWindow_ShowSystemMenu(QtObjectPtr ptr); +QtObjectPtr QMdiSubWindow_SystemMenu(QtObjectPtr ptr); +int QMdiSubWindow_TestOption(QtObjectPtr ptr, int option); +QtObjectPtr QMdiSubWindow_Widget(QtObjectPtr ptr); +void QMdiSubWindow_ConnectWindowStateChanged(QtObjectPtr ptr); +void QMdiSubWindow_DisconnectWindowStateChanged(QtObjectPtr ptr); +void QMdiSubWindow_DestroyQMdiSubWindow(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qmenu.cpp b/widgets/qmenu.cpp new file mode 100755 index 00000000..4da6d895 --- /dev/null +++ b/widgets/qmenu.cpp @@ -0,0 +1,202 @@ +#include "qmenu.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMenu: public QMenu { +public: +void Signal_AboutToHide(){callbackQMenuAboutToHide(this->objectName().toUtf8().data());}; +void Signal_AboutToShow(){callbackQMenuAboutToShow(this->objectName().toUtf8().data());}; +void Signal_Hovered(QAction * action){callbackQMenuHovered(this->objectName().toUtf8().data(), action);}; +void Signal_Triggered(QAction * action){callbackQMenuTriggered(this->objectName().toUtf8().data(), action);}; +}; + +int QMenu_IsTearOffEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isTearOffEnabled(); +} + +int QMenu_SeparatorsCollapsible(QtObjectPtr ptr){ + return static_cast(ptr)->separatorsCollapsible(); +} + +void QMenu_SetIcon(QtObjectPtr ptr, QtObjectPtr icon){ + static_cast(ptr)->setIcon(*static_cast(icon)); +} + +void QMenu_SetSeparatorsCollapsible(QtObjectPtr ptr, int collapse){ + static_cast(ptr)->setSeparatorsCollapsible(collapse != 0); +} + +void QMenu_SetTearOffEnabled(QtObjectPtr ptr, int v){ + static_cast(ptr)->setTearOffEnabled(v != 0); +} + +void QMenu_SetTitle(QtObjectPtr ptr, char* title){ + static_cast(ptr)->setTitle(QString(title)); +} + +void QMenu_SetToolTipsVisible(QtObjectPtr ptr, int visible){ + static_cast(ptr)->setToolTipsVisible(visible != 0); +} + +char* QMenu_Title(QtObjectPtr ptr){ + return static_cast(ptr)->title().toUtf8().data(); +} + +int QMenu_ToolTipsVisible(QtObjectPtr ptr){ + return static_cast(ptr)->toolTipsVisible(); +} + +QtObjectPtr QMenu_NewQMenu(QtObjectPtr parent){ + return new QMenu(static_cast(parent)); +} + +QtObjectPtr QMenu_NewQMenu2(char* title, QtObjectPtr parent){ + return new QMenu(QString(title), static_cast(parent)); +} + +void QMenu_ConnectAboutToHide(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMenu::aboutToHide), static_cast(ptr), static_cast(&MyQMenu::Signal_AboutToHide));; +} + +void QMenu_DisconnectAboutToHide(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMenu::aboutToHide), static_cast(ptr), static_cast(&MyQMenu::Signal_AboutToHide));; +} + +void QMenu_ConnectAboutToShow(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMenu::aboutToShow), static_cast(ptr), static_cast(&MyQMenu::Signal_AboutToShow));; +} + +void QMenu_DisconnectAboutToShow(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMenu::aboutToShow), static_cast(ptr), static_cast(&MyQMenu::Signal_AboutToShow));; +} + +QtObjectPtr QMenu_ActionAt(QtObjectPtr ptr, QtObjectPtr pt){ + return static_cast(ptr)->actionAt(*static_cast(pt)); +} + +QtObjectPtr QMenu_ActiveAction(QtObjectPtr ptr){ + return static_cast(ptr)->activeAction(); +} + +QtObjectPtr QMenu_AddAction2(QtObjectPtr ptr, QtObjectPtr icon, char* text){ + return static_cast(ptr)->addAction(*static_cast(icon), QString(text)); +} + +QtObjectPtr QMenu_AddAction4(QtObjectPtr ptr, QtObjectPtr icon, char* text, QtObjectPtr receiver, char* member, QtObjectPtr shortcut){ + return static_cast(ptr)->addAction(*static_cast(icon), QString(text), static_cast(receiver), const_cast(member), *static_cast(shortcut)); +} + +QtObjectPtr QMenu_AddAction(QtObjectPtr ptr, char* text){ + return static_cast(ptr)->addAction(QString(text)); +} + +QtObjectPtr QMenu_AddAction3(QtObjectPtr ptr, char* text, QtObjectPtr receiver, char* member, QtObjectPtr shortcut){ + return static_cast(ptr)->addAction(QString(text), static_cast(receiver), const_cast(member), *static_cast(shortcut)); +} + +QtObjectPtr QMenu_AddMenu(QtObjectPtr ptr, QtObjectPtr menu){ + return static_cast(ptr)->addMenu(static_cast(menu)); +} + +QtObjectPtr QMenu_AddMenu3(QtObjectPtr ptr, QtObjectPtr icon, char* title){ + return static_cast(ptr)->addMenu(*static_cast(icon), QString(title)); +} + +QtObjectPtr QMenu_AddMenu2(QtObjectPtr ptr, char* title){ + return static_cast(ptr)->addMenu(QString(title)); +} + +QtObjectPtr QMenu_AddSection2(QtObjectPtr ptr, QtObjectPtr icon, char* text){ + return static_cast(ptr)->addSection(*static_cast(icon), QString(text)); +} + +QtObjectPtr QMenu_AddSection(QtObjectPtr ptr, char* text){ + return static_cast(ptr)->addSection(QString(text)); +} + +QtObjectPtr QMenu_AddSeparator(QtObjectPtr ptr){ + return static_cast(ptr)->addSeparator(); +} + +void QMenu_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +QtObjectPtr QMenu_Exec(QtObjectPtr ptr){ + return static_cast(ptr)->exec(); +} + +QtObjectPtr QMenu_Exec2(QtObjectPtr ptr, QtObjectPtr p, QtObjectPtr action){ + return static_cast(ptr)->exec(*static_cast(p), static_cast(action)); +} + +void QMenu_HideTearOffMenu(QtObjectPtr ptr){ + static_cast(ptr)->hideTearOffMenu(); +} + +void QMenu_ConnectHovered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMenu::hovered), static_cast(ptr), static_cast(&MyQMenu::Signal_Hovered));; +} + +void QMenu_DisconnectHovered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMenu::hovered), static_cast(ptr), static_cast(&MyQMenu::Signal_Hovered));; +} + +QtObjectPtr QMenu_InsertMenu(QtObjectPtr ptr, QtObjectPtr before, QtObjectPtr menu){ + return static_cast(ptr)->insertMenu(static_cast(before), static_cast(menu)); +} + +QtObjectPtr QMenu_InsertSection2(QtObjectPtr ptr, QtObjectPtr before, QtObjectPtr icon, char* text){ + return static_cast(ptr)->insertSection(static_cast(before), *static_cast(icon), QString(text)); +} + +QtObjectPtr QMenu_InsertSection(QtObjectPtr ptr, QtObjectPtr before, char* text){ + return static_cast(ptr)->insertSection(static_cast(before), QString(text)); +} + +QtObjectPtr QMenu_InsertSeparator(QtObjectPtr ptr, QtObjectPtr before){ + return static_cast(ptr)->insertSeparator(static_cast(before)); +} + +int QMenu_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +int QMenu_IsTearOffMenuVisible(QtObjectPtr ptr){ + return static_cast(ptr)->isTearOffMenuVisible(); +} + +QtObjectPtr QMenu_MenuAction(QtObjectPtr ptr){ + return static_cast(ptr)->menuAction(); +} + +void QMenu_Popup(QtObjectPtr ptr, QtObjectPtr p, QtObjectPtr atAction){ + static_cast(ptr)->popup(*static_cast(p), static_cast(atAction)); +} + +void QMenu_SetActiveAction(QtObjectPtr ptr, QtObjectPtr act){ + static_cast(ptr)->setActiveAction(static_cast(act)); +} + +void QMenu_ConnectTriggered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMenu::triggered), static_cast(ptr), static_cast(&MyQMenu::Signal_Triggered));; +} + +void QMenu_DisconnectTriggered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMenu::triggered), static_cast(ptr), static_cast(&MyQMenu::Signal_Triggered));; +} + +void QMenu_DestroyQMenu(QtObjectPtr ptr){ + static_cast(ptr)->~QMenu(); +} + diff --git a/widgets/qmenu.go b/widgets/qmenu.go new file mode 100755 index 00000000..165b9370 --- /dev/null +++ b/widgets/qmenu.go @@ -0,0 +1,359 @@ +package widgets + +//#include "qmenu.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QMenu struct { + QWidget +} + +type QMenuITF interface { + QWidgetITF + QMenuPTR() *QMenu +} + +func PointerFromQMenu(ptr QMenuITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMenuPTR().Pointer() + } + return nil +} + +func QMenuFromPointer(ptr unsafe.Pointer) *QMenu { + var n = new(QMenu) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMenu_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMenu) QMenuPTR() *QMenu { + return ptr +} + +func (ptr *QMenu) IsTearOffEnabled() bool { + if ptr.Pointer() != nil { + return C.QMenu_IsTearOffEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMenu) SeparatorsCollapsible() bool { + if ptr.Pointer() != nil { + return C.QMenu_SeparatorsCollapsible(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMenu) SetIcon(icon gui.QIconITF) { + if ptr.Pointer() != nil { + C.QMenu_SetIcon(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQIcon(icon))) + } +} + +func (ptr *QMenu) SetSeparatorsCollapsible(collapse bool) { + if ptr.Pointer() != nil { + C.QMenu_SetSeparatorsCollapsible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(collapse))) + } +} + +func (ptr *QMenu) SetTearOffEnabled(v bool) { + if ptr.Pointer() != nil { + C.QMenu_SetTearOffEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QMenu) SetTitle(title string) { + if ptr.Pointer() != nil { + C.QMenu_SetTitle(C.QtObjectPtr(ptr.Pointer()), C.CString(title)) + } +} + +func (ptr *QMenu) SetToolTipsVisible(visible bool) { + if ptr.Pointer() != nil { + C.QMenu_SetToolTipsVisible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(visible))) + } +} + +func (ptr *QMenu) Title() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMenu_Title(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMenu) ToolTipsVisible() bool { + if ptr.Pointer() != nil { + return C.QMenu_ToolTipsVisible(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func NewQMenu(parent QWidgetITF) *QMenu { + return QMenuFromPointer(unsafe.Pointer(C.QMenu_NewQMenu(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQMenu2(title string, parent QWidgetITF) *QMenu { + return QMenuFromPointer(unsafe.Pointer(C.QMenu_NewQMenu2(C.CString(title), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QMenu) ConnectAboutToHide(f func()) { + if ptr.Pointer() != nil { + C.QMenu_ConnectAboutToHide(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "aboutToHide", f) + } +} + +func (ptr *QMenu) DisconnectAboutToHide() { + if ptr.Pointer() != nil { + C.QMenu_DisconnectAboutToHide(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "aboutToHide") + } +} + +//export callbackQMenuAboutToHide +func callbackQMenuAboutToHide(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "aboutToHide").(func())() +} + +func (ptr *QMenu) ConnectAboutToShow(f func()) { + if ptr.Pointer() != nil { + C.QMenu_ConnectAboutToShow(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "aboutToShow", f) + } +} + +func (ptr *QMenu) DisconnectAboutToShow() { + if ptr.Pointer() != nil { + C.QMenu_DisconnectAboutToShow(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "aboutToShow") + } +} + +//export callbackQMenuAboutToShow +func callbackQMenuAboutToShow(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "aboutToShow").(func())() +} + +func (ptr *QMenu) ActionAt(pt core.QPointITF) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QMenu_ActionAt(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(pt))))) + } + return nil +} + +func (ptr *QMenu) ActiveAction() *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QMenu_ActiveAction(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMenu) AddAction2(icon gui.QIconITF, text string) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QMenu_AddAction2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQIcon(icon)), C.CString(text)))) + } + return nil +} + +func (ptr *QMenu) AddAction4(icon gui.QIconITF, text string, receiver core.QObjectITF, member string, shortcut gui.QKeySequenceITF) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QMenu_AddAction4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQIcon(icon)), C.CString(text), C.QtObjectPtr(core.PointerFromQObject(receiver)), C.CString(member), C.QtObjectPtr(gui.PointerFromQKeySequence(shortcut))))) + } + return nil +} + +func (ptr *QMenu) AddAction(text string) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QMenu_AddAction(C.QtObjectPtr(ptr.Pointer()), C.CString(text)))) + } + return nil +} + +func (ptr *QMenu) AddAction3(text string, receiver core.QObjectITF, member string, shortcut gui.QKeySequenceITF) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QMenu_AddAction3(C.QtObjectPtr(ptr.Pointer()), C.CString(text), C.QtObjectPtr(core.PointerFromQObject(receiver)), C.CString(member), C.QtObjectPtr(gui.PointerFromQKeySequence(shortcut))))) + } + return nil +} + +func (ptr *QMenu) AddMenu(menu QMenuITF) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QMenu_AddMenu(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMenu(menu))))) + } + return nil +} + +func (ptr *QMenu) AddMenu3(icon gui.QIconITF, title string) *QMenu { + if ptr.Pointer() != nil { + return QMenuFromPointer(unsafe.Pointer(C.QMenu_AddMenu3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQIcon(icon)), C.CString(title)))) + } + return nil +} + +func (ptr *QMenu) AddMenu2(title string) *QMenu { + if ptr.Pointer() != nil { + return QMenuFromPointer(unsafe.Pointer(C.QMenu_AddMenu2(C.QtObjectPtr(ptr.Pointer()), C.CString(title)))) + } + return nil +} + +func (ptr *QMenu) AddSection2(icon gui.QIconITF, text string) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QMenu_AddSection2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQIcon(icon)), C.CString(text)))) + } + return nil +} + +func (ptr *QMenu) AddSection(text string) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QMenu_AddSection(C.QtObjectPtr(ptr.Pointer()), C.CString(text)))) + } + return nil +} + +func (ptr *QMenu) AddSeparator() *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QMenu_AddSeparator(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMenu) Clear() { + if ptr.Pointer() != nil { + C.QMenu_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMenu) Exec() *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QMenu_Exec(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMenu) Exec2(p core.QPointITF, action QActionITF) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QMenu_Exec2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(p)), C.QtObjectPtr(PointerFromQAction(action))))) + } + return nil +} + +func (ptr *QMenu) HideTearOffMenu() { + if ptr.Pointer() != nil { + C.QMenu_HideTearOffMenu(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMenu) ConnectHovered(f func(action QActionITF)) { + if ptr.Pointer() != nil { + C.QMenu_ConnectHovered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "hovered", f) + } +} + +func (ptr *QMenu) DisconnectHovered() { + if ptr.Pointer() != nil { + C.QMenu_DisconnectHovered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "hovered") + } +} + +//export callbackQMenuHovered +func callbackQMenuHovered(ptrName *C.char, action unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "hovered").(func(*QAction))(QActionFromPointer(action)) +} + +func (ptr *QMenu) InsertMenu(before QActionITF, menu QMenuITF) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QMenu_InsertMenu(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAction(before)), C.QtObjectPtr(PointerFromQMenu(menu))))) + } + return nil +} + +func (ptr *QMenu) InsertSection2(before QActionITF, icon gui.QIconITF, text string) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QMenu_InsertSection2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAction(before)), C.QtObjectPtr(gui.PointerFromQIcon(icon)), C.CString(text)))) + } + return nil +} + +func (ptr *QMenu) InsertSection(before QActionITF, text string) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QMenu_InsertSection(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAction(before)), C.CString(text)))) + } + return nil +} + +func (ptr *QMenu) InsertSeparator(before QActionITF) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QMenu_InsertSeparator(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAction(before))))) + } + return nil +} + +func (ptr *QMenu) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QMenu_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMenu) IsTearOffMenuVisible() bool { + if ptr.Pointer() != nil { + return C.QMenu_IsTearOffMenuVisible(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMenu) MenuAction() *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QMenu_MenuAction(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMenu) Popup(p core.QPointITF, atAction QActionITF) { + if ptr.Pointer() != nil { + C.QMenu_Popup(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(p)), C.QtObjectPtr(PointerFromQAction(atAction))) + } +} + +func (ptr *QMenu) SetActiveAction(act QActionITF) { + if ptr.Pointer() != nil { + C.QMenu_SetActiveAction(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAction(act))) + } +} + +func (ptr *QMenu) ConnectTriggered(f func(action QActionITF)) { + if ptr.Pointer() != nil { + C.QMenu_ConnectTriggered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "triggered", f) + } +} + +func (ptr *QMenu) DisconnectTriggered() { + if ptr.Pointer() != nil { + C.QMenu_DisconnectTriggered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "triggered") + } +} + +//export callbackQMenuTriggered +func callbackQMenuTriggered(ptrName *C.char, action unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "triggered").(func(*QAction))(QActionFromPointer(action)) +} + +func (ptr *QMenu) DestroyQMenu() { + if ptr.Pointer() != nil { + C.QMenu_DestroyQMenu(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qmenu.h b/widgets/qmenu.h new file mode 100755 index 00000000..61e8946e --- /dev/null +++ b/widgets/qmenu.h @@ -0,0 +1,54 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QMenu_IsTearOffEnabled(QtObjectPtr ptr); +int QMenu_SeparatorsCollapsible(QtObjectPtr ptr); +void QMenu_SetIcon(QtObjectPtr ptr, QtObjectPtr icon); +void QMenu_SetSeparatorsCollapsible(QtObjectPtr ptr, int collapse); +void QMenu_SetTearOffEnabled(QtObjectPtr ptr, int v); +void QMenu_SetTitle(QtObjectPtr ptr, char* title); +void QMenu_SetToolTipsVisible(QtObjectPtr ptr, int visible); +char* QMenu_Title(QtObjectPtr ptr); +int QMenu_ToolTipsVisible(QtObjectPtr ptr); +QtObjectPtr QMenu_NewQMenu(QtObjectPtr parent); +QtObjectPtr QMenu_NewQMenu2(char* title, QtObjectPtr parent); +void QMenu_ConnectAboutToHide(QtObjectPtr ptr); +void QMenu_DisconnectAboutToHide(QtObjectPtr ptr); +void QMenu_ConnectAboutToShow(QtObjectPtr ptr); +void QMenu_DisconnectAboutToShow(QtObjectPtr ptr); +QtObjectPtr QMenu_ActionAt(QtObjectPtr ptr, QtObjectPtr pt); +QtObjectPtr QMenu_ActiveAction(QtObjectPtr ptr); +QtObjectPtr QMenu_AddAction2(QtObjectPtr ptr, QtObjectPtr icon, char* text); +QtObjectPtr QMenu_AddAction4(QtObjectPtr ptr, QtObjectPtr icon, char* text, QtObjectPtr receiver, char* member, QtObjectPtr shortcut); +QtObjectPtr QMenu_AddAction(QtObjectPtr ptr, char* text); +QtObjectPtr QMenu_AddAction3(QtObjectPtr ptr, char* text, QtObjectPtr receiver, char* member, QtObjectPtr shortcut); +QtObjectPtr QMenu_AddMenu(QtObjectPtr ptr, QtObjectPtr menu); +QtObjectPtr QMenu_AddMenu3(QtObjectPtr ptr, QtObjectPtr icon, char* title); +QtObjectPtr QMenu_AddMenu2(QtObjectPtr ptr, char* title); +QtObjectPtr QMenu_AddSection2(QtObjectPtr ptr, QtObjectPtr icon, char* text); +QtObjectPtr QMenu_AddSection(QtObjectPtr ptr, char* text); +QtObjectPtr QMenu_AddSeparator(QtObjectPtr ptr); +void QMenu_Clear(QtObjectPtr ptr); +QtObjectPtr QMenu_Exec(QtObjectPtr ptr); +QtObjectPtr QMenu_Exec2(QtObjectPtr ptr, QtObjectPtr p, QtObjectPtr action); +void QMenu_HideTearOffMenu(QtObjectPtr ptr); +void QMenu_ConnectHovered(QtObjectPtr ptr); +void QMenu_DisconnectHovered(QtObjectPtr ptr); +QtObjectPtr QMenu_InsertMenu(QtObjectPtr ptr, QtObjectPtr before, QtObjectPtr menu); +QtObjectPtr QMenu_InsertSection2(QtObjectPtr ptr, QtObjectPtr before, QtObjectPtr icon, char* text); +QtObjectPtr QMenu_InsertSection(QtObjectPtr ptr, QtObjectPtr before, char* text); +QtObjectPtr QMenu_InsertSeparator(QtObjectPtr ptr, QtObjectPtr before); +int QMenu_IsEmpty(QtObjectPtr ptr); +int QMenu_IsTearOffMenuVisible(QtObjectPtr ptr); +QtObjectPtr QMenu_MenuAction(QtObjectPtr ptr); +void QMenu_Popup(QtObjectPtr ptr, QtObjectPtr p, QtObjectPtr atAction); +void QMenu_SetActiveAction(QtObjectPtr ptr, QtObjectPtr act); +void QMenu_ConnectTriggered(QtObjectPtr ptr); +void QMenu_DisconnectTriggered(QtObjectPtr ptr); +void QMenu_DestroyQMenu(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qmenubar.cpp b/widgets/qmenubar.cpp new file mode 100755 index 00000000..84335c8a --- /dev/null +++ b/widgets/qmenubar.cpp @@ -0,0 +1,125 @@ +#include "qmenubar.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMenuBar: public QMenuBar { +public: +void Signal_Hovered(QAction * action){callbackQMenuBarHovered(this->objectName().toUtf8().data(), action);}; +void Signal_Triggered(QAction * action){callbackQMenuBarTriggered(this->objectName().toUtf8().data(), action);}; +}; + +int QMenuBar_IsDefaultUp(QtObjectPtr ptr){ + return static_cast(ptr)->isDefaultUp(); +} + +int QMenuBar_IsNativeMenuBar(QtObjectPtr ptr){ + return static_cast(ptr)->isNativeMenuBar(); +} + +void QMenuBar_SetCornerWidget(QtObjectPtr ptr, QtObjectPtr widget, int corner){ + static_cast(ptr)->setCornerWidget(static_cast(widget), static_cast(corner)); +} + +void QMenuBar_SetDefaultUp(QtObjectPtr ptr, int v){ + static_cast(ptr)->setDefaultUp(v != 0); +} + +void QMenuBar_SetNativeMenuBar(QtObjectPtr ptr, int nativeMenuBar){ + static_cast(ptr)->setNativeMenuBar(nativeMenuBar != 0); +} + +QtObjectPtr QMenuBar_NewQMenuBar(QtObjectPtr parent){ + return new QMenuBar(static_cast(parent)); +} + +QtObjectPtr QMenuBar_ActionAt(QtObjectPtr ptr, QtObjectPtr pt){ + return static_cast(ptr)->actionAt(*static_cast(pt)); +} + +QtObjectPtr QMenuBar_ActiveAction(QtObjectPtr ptr){ + return static_cast(ptr)->activeAction(); +} + +QtObjectPtr QMenuBar_AddAction(QtObjectPtr ptr, char* text){ + return static_cast(ptr)->addAction(QString(text)); +} + +QtObjectPtr QMenuBar_AddAction2(QtObjectPtr ptr, char* text, QtObjectPtr receiver, char* member){ + return static_cast(ptr)->addAction(QString(text), static_cast(receiver), const_cast(member)); +} + +QtObjectPtr QMenuBar_AddMenu(QtObjectPtr ptr, QtObjectPtr menu){ + return static_cast(ptr)->addMenu(static_cast(menu)); +} + +QtObjectPtr QMenuBar_AddMenu3(QtObjectPtr ptr, QtObjectPtr icon, char* title){ + return static_cast(ptr)->addMenu(*static_cast(icon), QString(title)); +} + +QtObjectPtr QMenuBar_AddMenu2(QtObjectPtr ptr, char* title){ + return static_cast(ptr)->addMenu(QString(title)); +} + +QtObjectPtr QMenuBar_AddSeparator(QtObjectPtr ptr){ + return static_cast(ptr)->addSeparator(); +} + +void QMenuBar_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +QtObjectPtr QMenuBar_CornerWidget(QtObjectPtr ptr, int corner){ + return static_cast(ptr)->cornerWidget(static_cast(corner)); +} + +int QMenuBar_HeightForWidth(QtObjectPtr ptr, int v){ + return static_cast(ptr)->heightForWidth(v); +} + +void QMenuBar_ConnectHovered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMenuBar::hovered), static_cast(ptr), static_cast(&MyQMenuBar::Signal_Hovered));; +} + +void QMenuBar_DisconnectHovered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMenuBar::hovered), static_cast(ptr), static_cast(&MyQMenuBar::Signal_Hovered));; +} + +QtObjectPtr QMenuBar_InsertMenu(QtObjectPtr ptr, QtObjectPtr before, QtObjectPtr menu){ + return static_cast(ptr)->insertMenu(static_cast(before), static_cast(menu)); +} + +QtObjectPtr QMenuBar_InsertSeparator(QtObjectPtr ptr, QtObjectPtr before){ + return static_cast(ptr)->insertSeparator(static_cast(before)); +} + +void QMenuBar_SetActiveAction(QtObjectPtr ptr, QtObjectPtr act){ + static_cast(ptr)->setActiveAction(static_cast(act)); +} + +void QMenuBar_SetVisible(QtObjectPtr ptr, int visible){ + QMetaObject::invokeMethod(static_cast(ptr), "setVisible", Q_ARG(bool, visible != 0)); +} + +void QMenuBar_ConnectTriggered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMenuBar::triggered), static_cast(ptr), static_cast(&MyQMenuBar::Signal_Triggered));; +} + +void QMenuBar_DisconnectTriggered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMenuBar::triggered), static_cast(ptr), static_cast(&MyQMenuBar::Signal_Triggered));; +} + +void QMenuBar_DestroyQMenuBar(QtObjectPtr ptr){ + static_cast(ptr)->~QMenuBar(); +} + diff --git a/widgets/qmenubar.go b/widgets/qmenubar.go new file mode 100755 index 00000000..c8143da5 --- /dev/null +++ b/widgets/qmenubar.go @@ -0,0 +1,222 @@ +package widgets + +//#include "qmenubar.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QMenuBar struct { + QWidget +} + +type QMenuBarITF interface { + QWidgetITF + QMenuBarPTR() *QMenuBar +} + +func PointerFromQMenuBar(ptr QMenuBarITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMenuBarPTR().Pointer() + } + return nil +} + +func QMenuBarFromPointer(ptr unsafe.Pointer) *QMenuBar { + var n = new(QMenuBar) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMenuBar_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMenuBar) QMenuBarPTR() *QMenuBar { + return ptr +} + +func (ptr *QMenuBar) IsDefaultUp() bool { + if ptr.Pointer() != nil { + return C.QMenuBar_IsDefaultUp(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMenuBar) IsNativeMenuBar() bool { + if ptr.Pointer() != nil { + return C.QMenuBar_IsNativeMenuBar(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QMenuBar) SetCornerWidget(widget QWidgetITF, corner core.Qt__Corner) { + if ptr.Pointer() != nil { + C.QMenuBar_SetCornerWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget)), C.int(corner)) + } +} + +func (ptr *QMenuBar) SetDefaultUp(v bool) { + if ptr.Pointer() != nil { + C.QMenuBar_SetDefaultUp(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QMenuBar) SetNativeMenuBar(nativeMenuBar bool) { + if ptr.Pointer() != nil { + C.QMenuBar_SetNativeMenuBar(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(nativeMenuBar))) + } +} + +func NewQMenuBar(parent QWidgetITF) *QMenuBar { + return QMenuBarFromPointer(unsafe.Pointer(C.QMenuBar_NewQMenuBar(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QMenuBar) ActionAt(pt core.QPointITF) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QMenuBar_ActionAt(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(pt))))) + } + return nil +} + +func (ptr *QMenuBar) ActiveAction() *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QMenuBar_ActiveAction(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMenuBar) AddAction(text string) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QMenuBar_AddAction(C.QtObjectPtr(ptr.Pointer()), C.CString(text)))) + } + return nil +} + +func (ptr *QMenuBar) AddAction2(text string, receiver core.QObjectITF, member string) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QMenuBar_AddAction2(C.QtObjectPtr(ptr.Pointer()), C.CString(text), C.QtObjectPtr(core.PointerFromQObject(receiver)), C.CString(member)))) + } + return nil +} + +func (ptr *QMenuBar) AddMenu(menu QMenuITF) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QMenuBar_AddMenu(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMenu(menu))))) + } + return nil +} + +func (ptr *QMenuBar) AddMenu3(icon gui.QIconITF, title string) *QMenu { + if ptr.Pointer() != nil { + return QMenuFromPointer(unsafe.Pointer(C.QMenuBar_AddMenu3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQIcon(icon)), C.CString(title)))) + } + return nil +} + +func (ptr *QMenuBar) AddMenu2(title string) *QMenu { + if ptr.Pointer() != nil { + return QMenuFromPointer(unsafe.Pointer(C.QMenuBar_AddMenu2(C.QtObjectPtr(ptr.Pointer()), C.CString(title)))) + } + return nil +} + +func (ptr *QMenuBar) AddSeparator() *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QMenuBar_AddSeparator(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMenuBar) Clear() { + if ptr.Pointer() != nil { + C.QMenuBar_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QMenuBar) CornerWidget(corner core.Qt__Corner) *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QMenuBar_CornerWidget(C.QtObjectPtr(ptr.Pointer()), C.int(corner)))) + } + return nil +} + +func (ptr *QMenuBar) HeightForWidth(v int) int { + if ptr.Pointer() != nil { + return int(C.QMenuBar_HeightForWidth(C.QtObjectPtr(ptr.Pointer()), C.int(v))) + } + return 0 +} + +func (ptr *QMenuBar) ConnectHovered(f func(action QActionITF)) { + if ptr.Pointer() != nil { + C.QMenuBar_ConnectHovered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "hovered", f) + } +} + +func (ptr *QMenuBar) DisconnectHovered() { + if ptr.Pointer() != nil { + C.QMenuBar_DisconnectHovered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "hovered") + } +} + +//export callbackQMenuBarHovered +func callbackQMenuBarHovered(ptrName *C.char, action unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "hovered").(func(*QAction))(QActionFromPointer(action)) +} + +func (ptr *QMenuBar) InsertMenu(before QActionITF, menu QMenuITF) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QMenuBar_InsertMenu(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAction(before)), C.QtObjectPtr(PointerFromQMenu(menu))))) + } + return nil +} + +func (ptr *QMenuBar) InsertSeparator(before QActionITF) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QMenuBar_InsertSeparator(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAction(before))))) + } + return nil +} + +func (ptr *QMenuBar) SetActiveAction(act QActionITF) { + if ptr.Pointer() != nil { + C.QMenuBar_SetActiveAction(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAction(act))) + } +} + +func (ptr *QMenuBar) SetVisible(visible bool) { + if ptr.Pointer() != nil { + C.QMenuBar_SetVisible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(visible))) + } +} + +func (ptr *QMenuBar) ConnectTriggered(f func(action QActionITF)) { + if ptr.Pointer() != nil { + C.QMenuBar_ConnectTriggered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "triggered", f) + } +} + +func (ptr *QMenuBar) DisconnectTriggered() { + if ptr.Pointer() != nil { + C.QMenuBar_DisconnectTriggered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "triggered") + } +} + +//export callbackQMenuBarTriggered +func callbackQMenuBarTriggered(ptrName *C.char, action unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "triggered").(func(*QAction))(QActionFromPointer(action)) +} + +func (ptr *QMenuBar) DestroyQMenuBar() { + if ptr.Pointer() != nil { + C.QMenuBar_DestroyQMenuBar(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qmenubar.h b/widgets/qmenubar.h new file mode 100755 index 00000000..e029281d --- /dev/null +++ b/widgets/qmenubar.h @@ -0,0 +1,35 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QMenuBar_IsDefaultUp(QtObjectPtr ptr); +int QMenuBar_IsNativeMenuBar(QtObjectPtr ptr); +void QMenuBar_SetCornerWidget(QtObjectPtr ptr, QtObjectPtr widget, int corner); +void QMenuBar_SetDefaultUp(QtObjectPtr ptr, int v); +void QMenuBar_SetNativeMenuBar(QtObjectPtr ptr, int nativeMenuBar); +QtObjectPtr QMenuBar_NewQMenuBar(QtObjectPtr parent); +QtObjectPtr QMenuBar_ActionAt(QtObjectPtr ptr, QtObjectPtr pt); +QtObjectPtr QMenuBar_ActiveAction(QtObjectPtr ptr); +QtObjectPtr QMenuBar_AddAction(QtObjectPtr ptr, char* text); +QtObjectPtr QMenuBar_AddAction2(QtObjectPtr ptr, char* text, QtObjectPtr receiver, char* member); +QtObjectPtr QMenuBar_AddMenu(QtObjectPtr ptr, QtObjectPtr menu); +QtObjectPtr QMenuBar_AddMenu3(QtObjectPtr ptr, QtObjectPtr icon, char* title); +QtObjectPtr QMenuBar_AddMenu2(QtObjectPtr ptr, char* title); +QtObjectPtr QMenuBar_AddSeparator(QtObjectPtr ptr); +void QMenuBar_Clear(QtObjectPtr ptr); +QtObjectPtr QMenuBar_CornerWidget(QtObjectPtr ptr, int corner); +int QMenuBar_HeightForWidth(QtObjectPtr ptr, int v); +void QMenuBar_ConnectHovered(QtObjectPtr ptr); +void QMenuBar_DisconnectHovered(QtObjectPtr ptr); +QtObjectPtr QMenuBar_InsertMenu(QtObjectPtr ptr, QtObjectPtr before, QtObjectPtr menu); +QtObjectPtr QMenuBar_InsertSeparator(QtObjectPtr ptr, QtObjectPtr before); +void QMenuBar_SetActiveAction(QtObjectPtr ptr, QtObjectPtr act); +void QMenuBar_SetVisible(QtObjectPtr ptr, int visible); +void QMenuBar_ConnectTriggered(QtObjectPtr ptr); +void QMenuBar_DisconnectTriggered(QtObjectPtr ptr); +void QMenuBar_DestroyQMenuBar(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qmessagebox.cpp b/widgets/qmessagebox.cpp new file mode 100755 index 00000000..09918033 --- /dev/null +++ b/widgets/qmessagebox.cpp @@ -0,0 +1,212 @@ +#include "qmessagebox.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMessageBox: public QMessageBox { +public: +void Signal_ButtonClicked(QAbstractButton * button){callbackQMessageBoxButtonClicked(this->objectName().toUtf8().data(), button);}; +}; + +int QMessageBox_ButtonMask_Type(){ + return QMessageBox::ButtonMask; +} + +char* QMessageBox_DetailedText(QtObjectPtr ptr){ + return static_cast(ptr)->detailedText().toUtf8().data(); +} + +int QMessageBox_Icon(QtObjectPtr ptr){ + return static_cast(ptr)->icon(); +} + +char* QMessageBox_InformativeText(QtObjectPtr ptr){ + return static_cast(ptr)->informativeText().toUtf8().data(); +} + +void QMessageBox_SetDetailedText(QtObjectPtr ptr, char* text){ + static_cast(ptr)->setDetailedText(QString(text)); +} + +void QMessageBox_SetIcon(QtObjectPtr ptr, int v){ + static_cast(ptr)->setIcon(static_cast(v)); +} + +void QMessageBox_SetIconPixmap(QtObjectPtr ptr, QtObjectPtr pixmap){ + static_cast(ptr)->setIconPixmap(*static_cast(pixmap)); +} + +void QMessageBox_SetInformativeText(QtObjectPtr ptr, char* text){ + static_cast(ptr)->setInformativeText(QString(text)); +} + +void QMessageBox_SetStandardButtons(QtObjectPtr ptr, int buttons){ + static_cast(ptr)->setStandardButtons(static_cast(buttons)); +} + +void QMessageBox_SetText(QtObjectPtr ptr, char* text){ + static_cast(ptr)->setText(QString(text)); +} + +void QMessageBox_SetTextFormat(QtObjectPtr ptr, int format){ + static_cast(ptr)->setTextFormat(static_cast(format)); +} + +void QMessageBox_SetTextInteractionFlags(QtObjectPtr ptr, int flags){ + static_cast(ptr)->setTextInteractionFlags(static_cast(flags)); +} + +int QMessageBox_StandardButtons(QtObjectPtr ptr){ + return static_cast(ptr)->standardButtons(); +} + +char* QMessageBox_Text(QtObjectPtr ptr){ + return static_cast(ptr)->text().toUtf8().data(); +} + +int QMessageBox_TextFormat(QtObjectPtr ptr){ + return static_cast(ptr)->textFormat(); +} + +int QMessageBox_TextInteractionFlags(QtObjectPtr ptr){ + return static_cast(ptr)->textInteractionFlags(); +} + +QtObjectPtr QMessageBox_NewQMessageBox2(int icon, char* title, char* text, int buttons, QtObjectPtr parent, int f){ + return new QMessageBox(static_cast(icon), QString(title), QString(text), static_cast(buttons), static_cast(parent), static_cast(f)); +} + +QtObjectPtr QMessageBox_NewQMessageBox(QtObjectPtr parent){ + return new QMessageBox(static_cast(parent)); +} + +void QMessageBox_QMessageBox_About(QtObjectPtr parent, char* title, char* text){ + QMessageBox::about(static_cast(parent), QString(title), QString(text)); +} + +void QMessageBox_QMessageBox_AboutQt(QtObjectPtr parent, char* title){ + QMessageBox::aboutQt(static_cast(parent), QString(title)); +} + +QtObjectPtr QMessageBox_AddButton3(QtObjectPtr ptr, int button){ + return static_cast(ptr)->addButton(static_cast(button)); +} + +QtObjectPtr QMessageBox_AddButton2(QtObjectPtr ptr, char* text, int role){ + return static_cast(ptr)->addButton(QString(text), static_cast(role)); +} + +void QMessageBox_AddButton(QtObjectPtr ptr, QtObjectPtr button, int role){ + static_cast(ptr)->addButton(static_cast(button), static_cast(role)); +} + +QtObjectPtr QMessageBox_Button(QtObjectPtr ptr, int which){ + return static_cast(ptr)->button(static_cast(which)); +} + +void QMessageBox_ConnectButtonClicked(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QMessageBox::buttonClicked), static_cast(ptr), static_cast(&MyQMessageBox::Signal_ButtonClicked));; +} + +void QMessageBox_DisconnectButtonClicked(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QMessageBox::buttonClicked), static_cast(ptr), static_cast(&MyQMessageBox::Signal_ButtonClicked));; +} + +int QMessageBox_ButtonRole(QtObjectPtr ptr, QtObjectPtr button){ + return static_cast(ptr)->buttonRole(static_cast(button)); +} + +QtObjectPtr QMessageBox_CheckBox(QtObjectPtr ptr){ + return static_cast(ptr)->checkBox(); +} + +QtObjectPtr QMessageBox_ClickedButton(QtObjectPtr ptr){ + return static_cast(ptr)->clickedButton(); +} + +int QMessageBox_QMessageBox_Critical(QtObjectPtr parent, char* title, char* text, int buttons, int defaultButton){ + return QMessageBox::critical(static_cast(parent), QString(title), QString(text), static_cast(buttons), static_cast(defaultButton)); +} + +QtObjectPtr QMessageBox_DefaultButton(QtObjectPtr ptr){ + return static_cast(ptr)->defaultButton(); +} + +QtObjectPtr QMessageBox_EscapeButton(QtObjectPtr ptr){ + return static_cast(ptr)->escapeButton(); +} + +int QMessageBox_Exec(QtObjectPtr ptr){ + return QMetaObject::invokeMethod(static_cast(ptr), "exec"); +} + +int QMessageBox_QMessageBox_Information(QtObjectPtr parent, char* title, char* text, int buttons, int defaultButton){ + return QMessageBox::information(static_cast(parent), QString(title), QString(text), static_cast(buttons), static_cast(defaultButton)); +} + +void QMessageBox_Open(QtObjectPtr ptr, QtObjectPtr receiver, char* member){ + static_cast(ptr)->open(static_cast(receiver), const_cast(member)); +} + +int QMessageBox_QMessageBox_Question(QtObjectPtr parent, char* title, char* text, int buttons, int defaultButton){ + return QMessageBox::question(static_cast(parent), QString(title), QString(text), static_cast(buttons), static_cast(defaultButton)); +} + +void QMessageBox_RemoveButton(QtObjectPtr ptr, QtObjectPtr button){ + static_cast(ptr)->removeButton(static_cast(button)); +} + +void QMessageBox_SetCheckBox(QtObjectPtr ptr, QtObjectPtr cb){ + static_cast(ptr)->setCheckBox(static_cast(cb)); +} + +void QMessageBox_SetDefaultButton(QtObjectPtr ptr, QtObjectPtr button){ + static_cast(ptr)->setDefaultButton(static_cast(button)); +} + +void QMessageBox_SetDefaultButton2(QtObjectPtr ptr, int button){ + static_cast(ptr)->setDefaultButton(static_cast(button)); +} + +void QMessageBox_SetEscapeButton(QtObjectPtr ptr, QtObjectPtr button){ + static_cast(ptr)->setEscapeButton(static_cast(button)); +} + +void QMessageBox_SetEscapeButton2(QtObjectPtr ptr, int button){ + static_cast(ptr)->setEscapeButton(static_cast(button)); +} + +void QMessageBox_SetVisible(QtObjectPtr ptr, int visible){ + static_cast(ptr)->setVisible(visible != 0); +} + +void QMessageBox_SetWindowModality(QtObjectPtr ptr, int windowModality){ + static_cast(ptr)->setWindowModality(static_cast(windowModality)); +} + +void QMessageBox_SetWindowTitle(QtObjectPtr ptr, char* title){ + static_cast(ptr)->setWindowTitle(QString(title)); +} + +int QMessageBox_StandardButton(QtObjectPtr ptr, QtObjectPtr button){ + return static_cast(ptr)->standardButton(static_cast(button)); +} + +int QMessageBox_QMessageBox_Warning(QtObjectPtr parent, char* title, char* text, int buttons, int defaultButton){ + return QMessageBox::warning(static_cast(parent), QString(title), QString(text), static_cast(buttons), static_cast(defaultButton)); +} + +void QMessageBox_DestroyQMessageBox(QtObjectPtr ptr){ + static_cast(ptr)->~QMessageBox(); +} + diff --git a/widgets/qmessagebox.go b/widgets/qmessagebox.go new file mode 100755 index 00000000..69e9377b --- /dev/null +++ b/widgets/qmessagebox.go @@ -0,0 +1,391 @@ +package widgets + +//#include "qmessagebox.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QMessageBox struct { + QDialog +} + +type QMessageBoxITF interface { + QDialogITF + QMessageBoxPTR() *QMessageBox +} + +func PointerFromQMessageBox(ptr QMessageBoxITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMessageBoxPTR().Pointer() + } + return nil +} + +func QMessageBoxFromPointer(ptr unsafe.Pointer) *QMessageBox { + var n = new(QMessageBox) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMessageBox_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMessageBox) QMessageBoxPTR() *QMessageBox { + return ptr +} + +//QMessageBox::ButtonRole +type QMessageBox__ButtonRole int + +var ( + QMessageBox__InvalidRole = QMessageBox__ButtonRole(-1) + QMessageBox__AcceptRole = QMessageBox__ButtonRole(0) + QMessageBox__RejectRole = QMessageBox__ButtonRole(1) + QMessageBox__DestructiveRole = QMessageBox__ButtonRole(2) + QMessageBox__ActionRole = QMessageBox__ButtonRole(3) + QMessageBox__HelpRole = QMessageBox__ButtonRole(4) + QMessageBox__YesRole = QMessageBox__ButtonRole(5) + QMessageBox__NoRole = QMessageBox__ButtonRole(6) + QMessageBox__ResetRole = QMessageBox__ButtonRole(7) + QMessageBox__ApplyRole = QMessageBox__ButtonRole(8) + QMessageBox__NRoles = QMessageBox__ButtonRole(9) +) + +//QMessageBox::Icon +type QMessageBox__Icon int + +var ( + QMessageBox__NoIcon = QMessageBox__Icon(0) + QMessageBox__Information = QMessageBox__Icon(1) + QMessageBox__Warning = QMessageBox__Icon(2) + QMessageBox__Critical = QMessageBox__Icon(3) + QMessageBox__Question = QMessageBox__Icon(4) +) + +//QMessageBox::StandardButton +type QMessageBox__StandardButton int + +var ( + QMessageBox__NoButton = QMessageBox__StandardButton(0x00000000) + QMessageBox__Ok = QMessageBox__StandardButton(0x00000400) + QMessageBox__Save = QMessageBox__StandardButton(0x00000800) + QMessageBox__SaveAll = QMessageBox__StandardButton(0x00001000) + QMessageBox__Open = QMessageBox__StandardButton(0x00002000) + QMessageBox__Yes = QMessageBox__StandardButton(0x00004000) + QMessageBox__YesToAll = QMessageBox__StandardButton(0x00008000) + QMessageBox__No = QMessageBox__StandardButton(0x00010000) + QMessageBox__NoToAll = QMessageBox__StandardButton(0x00020000) + QMessageBox__Abort = QMessageBox__StandardButton(0x00040000) + QMessageBox__Retry = QMessageBox__StandardButton(0x00080000) + QMessageBox__Ignore = QMessageBox__StandardButton(0x00100000) + QMessageBox__Close = QMessageBox__StandardButton(0x00200000) + QMessageBox__Cancel = QMessageBox__StandardButton(0x00400000) + QMessageBox__Discard = QMessageBox__StandardButton(0x00800000) + QMessageBox__Help = QMessageBox__StandardButton(0x01000000) + QMessageBox__Apply = QMessageBox__StandardButton(0x02000000) + QMessageBox__Reset = QMessageBox__StandardButton(0x04000000) + QMessageBox__RestoreDefaults = QMessageBox__StandardButton(0x08000000) + QMessageBox__FirstButton = QMessageBox__StandardButton(QMessageBox__Ok) + QMessageBox__LastButton = QMessageBox__StandardButton(QMessageBox__RestoreDefaults) + QMessageBox__YesAll = QMessageBox__StandardButton(QMessageBox__YesToAll) + QMessageBox__NoAll = QMessageBox__StandardButton(QMessageBox__NoToAll) + QMessageBox__Default = QMessageBox__StandardButton(0x00000100) + QMessageBox__Escape = QMessageBox__StandardButton(0x00000200) + QMessageBox__FlagMask = QMessageBox__StandardButton(0x00000300) + QMessageBox__ButtonMask = QMessageBox__StandardButton(C.QMessageBox_ButtonMask_Type()) +) + +func (ptr *QMessageBox) DetailedText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMessageBox_DetailedText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMessageBox) Icon() QMessageBox__Icon { + if ptr.Pointer() != nil { + return QMessageBox__Icon(C.QMessageBox_Icon(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMessageBox) InformativeText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMessageBox_InformativeText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMessageBox) SetDetailedText(text string) { + if ptr.Pointer() != nil { + C.QMessageBox_SetDetailedText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QMessageBox) SetIcon(v QMessageBox__Icon) { + if ptr.Pointer() != nil { + C.QMessageBox_SetIcon(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QMessageBox) SetIconPixmap(pixmap gui.QPixmapITF) { + if ptr.Pointer() != nil { + C.QMessageBox_SetIconPixmap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPixmap(pixmap))) + } +} + +func (ptr *QMessageBox) SetInformativeText(text string) { + if ptr.Pointer() != nil { + C.QMessageBox_SetInformativeText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QMessageBox) SetStandardButtons(buttons QMessageBox__StandardButton) { + if ptr.Pointer() != nil { + C.QMessageBox_SetStandardButtons(C.QtObjectPtr(ptr.Pointer()), C.int(buttons)) + } +} + +func (ptr *QMessageBox) SetText(text string) { + if ptr.Pointer() != nil { + C.QMessageBox_SetText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QMessageBox) SetTextFormat(format core.Qt__TextFormat) { + if ptr.Pointer() != nil { + C.QMessageBox_SetTextFormat(C.QtObjectPtr(ptr.Pointer()), C.int(format)) + } +} + +func (ptr *QMessageBox) SetTextInteractionFlags(flags core.Qt__TextInteractionFlag) { + if ptr.Pointer() != nil { + C.QMessageBox_SetTextInteractionFlags(C.QtObjectPtr(ptr.Pointer()), C.int(flags)) + } +} + +func (ptr *QMessageBox) StandardButtons() QMessageBox__StandardButton { + if ptr.Pointer() != nil { + return QMessageBox__StandardButton(C.QMessageBox_StandardButtons(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMessageBox) Text() string { + if ptr.Pointer() != nil { + return C.GoString(C.QMessageBox_Text(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QMessageBox) TextFormat() core.Qt__TextFormat { + if ptr.Pointer() != nil { + return core.Qt__TextFormat(C.QMessageBox_TextFormat(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMessageBox) TextInteractionFlags() core.Qt__TextInteractionFlag { + if ptr.Pointer() != nil { + return core.Qt__TextInteractionFlag(C.QMessageBox_TextInteractionFlags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQMessageBox2(icon QMessageBox__Icon, title string, text string, buttons QMessageBox__StandardButton, parent QWidgetITF, f core.Qt__WindowType) *QMessageBox { + return QMessageBoxFromPointer(unsafe.Pointer(C.QMessageBox_NewQMessageBox2(C.int(icon), C.CString(title), C.CString(text), C.int(buttons), C.QtObjectPtr(PointerFromQWidget(parent)), C.int(f)))) +} + +func NewQMessageBox(parent QWidgetITF) *QMessageBox { + return QMessageBoxFromPointer(unsafe.Pointer(C.QMessageBox_NewQMessageBox(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func QMessageBox_About(parent QWidgetITF, title string, text string) { + C.QMessageBox_QMessageBox_About(C.QtObjectPtr(PointerFromQWidget(parent)), C.CString(title), C.CString(text)) +} + +func QMessageBox_AboutQt(parent QWidgetITF, title string) { + C.QMessageBox_QMessageBox_AboutQt(C.QtObjectPtr(PointerFromQWidget(parent)), C.CString(title)) +} + +func (ptr *QMessageBox) AddButton3(button QMessageBox__StandardButton) *QPushButton { + if ptr.Pointer() != nil { + return QPushButtonFromPointer(unsafe.Pointer(C.QMessageBox_AddButton3(C.QtObjectPtr(ptr.Pointer()), C.int(button)))) + } + return nil +} + +func (ptr *QMessageBox) AddButton2(text string, role QMessageBox__ButtonRole) *QPushButton { + if ptr.Pointer() != nil { + return QPushButtonFromPointer(unsafe.Pointer(C.QMessageBox_AddButton2(C.QtObjectPtr(ptr.Pointer()), C.CString(text), C.int(role)))) + } + return nil +} + +func (ptr *QMessageBox) AddButton(button QAbstractButtonITF, role QMessageBox__ButtonRole) { + if ptr.Pointer() != nil { + C.QMessageBox_AddButton(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractButton(button)), C.int(role)) + } +} + +func (ptr *QMessageBox) Button(which QMessageBox__StandardButton) *QAbstractButton { + if ptr.Pointer() != nil { + return QAbstractButtonFromPointer(unsafe.Pointer(C.QMessageBox_Button(C.QtObjectPtr(ptr.Pointer()), C.int(which)))) + } + return nil +} + +func (ptr *QMessageBox) ConnectButtonClicked(f func(button QAbstractButtonITF)) { + if ptr.Pointer() != nil { + C.QMessageBox_ConnectButtonClicked(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "buttonClicked", f) + } +} + +func (ptr *QMessageBox) DisconnectButtonClicked() { + if ptr.Pointer() != nil { + C.QMessageBox_DisconnectButtonClicked(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "buttonClicked") + } +} + +//export callbackQMessageBoxButtonClicked +func callbackQMessageBoxButtonClicked(ptrName *C.char, button unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "buttonClicked").(func(*QAbstractButton))(QAbstractButtonFromPointer(button)) +} + +func (ptr *QMessageBox) ButtonRole(button QAbstractButtonITF) QMessageBox__ButtonRole { + if ptr.Pointer() != nil { + return QMessageBox__ButtonRole(C.QMessageBox_ButtonRole(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractButton(button)))) + } + return 0 +} + +func (ptr *QMessageBox) CheckBox() *QCheckBox { + if ptr.Pointer() != nil { + return QCheckBoxFromPointer(unsafe.Pointer(C.QMessageBox_CheckBox(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMessageBox) ClickedButton() *QAbstractButton { + if ptr.Pointer() != nil { + return QAbstractButtonFromPointer(unsafe.Pointer(C.QMessageBox_ClickedButton(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func QMessageBox_Critical(parent QWidgetITF, title string, text string, buttons QMessageBox__StandardButton, defaultButton QMessageBox__StandardButton) QMessageBox__StandardButton { + return QMessageBox__StandardButton(C.QMessageBox_QMessageBox_Critical(C.QtObjectPtr(PointerFromQWidget(parent)), C.CString(title), C.CString(text), C.int(buttons), C.int(defaultButton))) +} + +func (ptr *QMessageBox) DefaultButton() *QPushButton { + if ptr.Pointer() != nil { + return QPushButtonFromPointer(unsafe.Pointer(C.QMessageBox_DefaultButton(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMessageBox) EscapeButton() *QAbstractButton { + if ptr.Pointer() != nil { + return QAbstractButtonFromPointer(unsafe.Pointer(C.QMessageBox_EscapeButton(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QMessageBox) Exec() int { + if ptr.Pointer() != nil { + return int(C.QMessageBox_Exec(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QMessageBox_Information(parent QWidgetITF, title string, text string, buttons QMessageBox__StandardButton, defaultButton QMessageBox__StandardButton) QMessageBox__StandardButton { + return QMessageBox__StandardButton(C.QMessageBox_QMessageBox_Information(C.QtObjectPtr(PointerFromQWidget(parent)), C.CString(title), C.CString(text), C.int(buttons), C.int(defaultButton))) +} + +func (ptr *QMessageBox) Open(receiver core.QObjectITF, member string) { + if ptr.Pointer() != nil { + C.QMessageBox_Open(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(receiver)), C.CString(member)) + } +} + +func QMessageBox_Question(parent QWidgetITF, title string, text string, buttons QMessageBox__StandardButton, defaultButton QMessageBox__StandardButton) QMessageBox__StandardButton { + return QMessageBox__StandardButton(C.QMessageBox_QMessageBox_Question(C.QtObjectPtr(PointerFromQWidget(parent)), C.CString(title), C.CString(text), C.int(buttons), C.int(defaultButton))) +} + +func (ptr *QMessageBox) RemoveButton(button QAbstractButtonITF) { + if ptr.Pointer() != nil { + C.QMessageBox_RemoveButton(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractButton(button))) + } +} + +func (ptr *QMessageBox) SetCheckBox(cb QCheckBoxITF) { + if ptr.Pointer() != nil { + C.QMessageBox_SetCheckBox(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQCheckBox(cb))) + } +} + +func (ptr *QMessageBox) SetDefaultButton(button QPushButtonITF) { + if ptr.Pointer() != nil { + C.QMessageBox_SetDefaultButton(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPushButton(button))) + } +} + +func (ptr *QMessageBox) SetDefaultButton2(button QMessageBox__StandardButton) { + if ptr.Pointer() != nil { + C.QMessageBox_SetDefaultButton2(C.QtObjectPtr(ptr.Pointer()), C.int(button)) + } +} + +func (ptr *QMessageBox) SetEscapeButton(button QAbstractButtonITF) { + if ptr.Pointer() != nil { + C.QMessageBox_SetEscapeButton(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractButton(button))) + } +} + +func (ptr *QMessageBox) SetEscapeButton2(button QMessageBox__StandardButton) { + if ptr.Pointer() != nil { + C.QMessageBox_SetEscapeButton2(C.QtObjectPtr(ptr.Pointer()), C.int(button)) + } +} + +func (ptr *QMessageBox) SetVisible(visible bool) { + if ptr.Pointer() != nil { + C.QMessageBox_SetVisible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(visible))) + } +} + +func (ptr *QMessageBox) SetWindowModality(windowModality core.Qt__WindowModality) { + if ptr.Pointer() != nil { + C.QMessageBox_SetWindowModality(C.QtObjectPtr(ptr.Pointer()), C.int(windowModality)) + } +} + +func (ptr *QMessageBox) SetWindowTitle(title string) { + if ptr.Pointer() != nil { + C.QMessageBox_SetWindowTitle(C.QtObjectPtr(ptr.Pointer()), C.CString(title)) + } +} + +func (ptr *QMessageBox) StandardButton(button QAbstractButtonITF) QMessageBox__StandardButton { + if ptr.Pointer() != nil { + return QMessageBox__StandardButton(C.QMessageBox_StandardButton(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractButton(button)))) + } + return 0 +} + +func QMessageBox_Warning(parent QWidgetITF, title string, text string, buttons QMessageBox__StandardButton, defaultButton QMessageBox__StandardButton) QMessageBox__StandardButton { + return QMessageBox__StandardButton(C.QMessageBox_QMessageBox_Warning(C.QtObjectPtr(PointerFromQWidget(parent)), C.CString(title), C.CString(text), C.int(buttons), C.int(defaultButton))) +} + +func (ptr *QMessageBox) DestroyQMessageBox() { + if ptr.Pointer() != nil { + C.QMessageBox_DestroyQMessageBox(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qmessagebox.h b/widgets/qmessagebox.h new file mode 100755 index 00000000..aa237b1f --- /dev/null +++ b/widgets/qmessagebox.h @@ -0,0 +1,57 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QMessageBox_ButtonMask_Type(); +char* QMessageBox_DetailedText(QtObjectPtr ptr); +int QMessageBox_Icon(QtObjectPtr ptr); +char* QMessageBox_InformativeText(QtObjectPtr ptr); +void QMessageBox_SetDetailedText(QtObjectPtr ptr, char* text); +void QMessageBox_SetIcon(QtObjectPtr ptr, int v); +void QMessageBox_SetIconPixmap(QtObjectPtr ptr, QtObjectPtr pixmap); +void QMessageBox_SetInformativeText(QtObjectPtr ptr, char* text); +void QMessageBox_SetStandardButtons(QtObjectPtr ptr, int buttons); +void QMessageBox_SetText(QtObjectPtr ptr, char* text); +void QMessageBox_SetTextFormat(QtObjectPtr ptr, int format); +void QMessageBox_SetTextInteractionFlags(QtObjectPtr ptr, int flags); +int QMessageBox_StandardButtons(QtObjectPtr ptr); +char* QMessageBox_Text(QtObjectPtr ptr); +int QMessageBox_TextFormat(QtObjectPtr ptr); +int QMessageBox_TextInteractionFlags(QtObjectPtr ptr); +QtObjectPtr QMessageBox_NewQMessageBox2(int icon, char* title, char* text, int buttons, QtObjectPtr parent, int f); +QtObjectPtr QMessageBox_NewQMessageBox(QtObjectPtr parent); +void QMessageBox_QMessageBox_About(QtObjectPtr parent, char* title, char* text); +void QMessageBox_QMessageBox_AboutQt(QtObjectPtr parent, char* title); +QtObjectPtr QMessageBox_AddButton3(QtObjectPtr ptr, int button); +QtObjectPtr QMessageBox_AddButton2(QtObjectPtr ptr, char* text, int role); +void QMessageBox_AddButton(QtObjectPtr ptr, QtObjectPtr button, int role); +QtObjectPtr QMessageBox_Button(QtObjectPtr ptr, int which); +void QMessageBox_ConnectButtonClicked(QtObjectPtr ptr); +void QMessageBox_DisconnectButtonClicked(QtObjectPtr ptr); +int QMessageBox_ButtonRole(QtObjectPtr ptr, QtObjectPtr button); +QtObjectPtr QMessageBox_CheckBox(QtObjectPtr ptr); +QtObjectPtr QMessageBox_ClickedButton(QtObjectPtr ptr); +int QMessageBox_QMessageBox_Critical(QtObjectPtr parent, char* title, char* text, int buttons, int defaultButton); +QtObjectPtr QMessageBox_DefaultButton(QtObjectPtr ptr); +QtObjectPtr QMessageBox_EscapeButton(QtObjectPtr ptr); +int QMessageBox_Exec(QtObjectPtr ptr); +int QMessageBox_QMessageBox_Information(QtObjectPtr parent, char* title, char* text, int buttons, int defaultButton); +void QMessageBox_Open(QtObjectPtr ptr, QtObjectPtr receiver, char* member); +int QMessageBox_QMessageBox_Question(QtObjectPtr parent, char* title, char* text, int buttons, int defaultButton); +void QMessageBox_RemoveButton(QtObjectPtr ptr, QtObjectPtr button); +void QMessageBox_SetCheckBox(QtObjectPtr ptr, QtObjectPtr cb); +void QMessageBox_SetDefaultButton(QtObjectPtr ptr, QtObjectPtr button); +void QMessageBox_SetDefaultButton2(QtObjectPtr ptr, int button); +void QMessageBox_SetEscapeButton(QtObjectPtr ptr, QtObjectPtr button); +void QMessageBox_SetEscapeButton2(QtObjectPtr ptr, int button); +void QMessageBox_SetVisible(QtObjectPtr ptr, int visible); +void QMessageBox_SetWindowModality(QtObjectPtr ptr, int windowModality); +void QMessageBox_SetWindowTitle(QtObjectPtr ptr, char* title); +int QMessageBox_StandardButton(QtObjectPtr ptr, QtObjectPtr button); +int QMessageBox_QMessageBox_Warning(QtObjectPtr parent, char* title, char* text, int buttons, int defaultButton); +void QMessageBox_DestroyQMessageBox(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qmouseeventtransition.cpp b/widgets/qmouseeventtransition.cpp new file mode 100755 index 00000000..52483d91 --- /dev/null +++ b/widgets/qmouseeventtransition.cpp @@ -0,0 +1,50 @@ +#include "qmouseeventtransition.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQMouseEventTransition: public QMouseEventTransition { +public: +}; + +QtObjectPtr QMouseEventTransition_NewQMouseEventTransition2(QtObjectPtr object, int ty, int button, QtObjectPtr sourceState){ + return new QMouseEventTransition(static_cast(object), static_cast(ty), static_cast(button), static_cast(sourceState)); +} + +QtObjectPtr QMouseEventTransition_NewQMouseEventTransition(QtObjectPtr sourceState){ + return new QMouseEventTransition(static_cast(sourceState)); +} + +int QMouseEventTransition_Button(QtObjectPtr ptr){ + return static_cast(ptr)->button(); +} + +int QMouseEventTransition_ModifierMask(QtObjectPtr ptr){ + return static_cast(ptr)->modifierMask(); +} + +void QMouseEventTransition_SetButton(QtObjectPtr ptr, int button){ + static_cast(ptr)->setButton(static_cast(button)); +} + +void QMouseEventTransition_SetHitTestPath(QtObjectPtr ptr, QtObjectPtr path){ + static_cast(ptr)->setHitTestPath(*static_cast(path)); +} + +void QMouseEventTransition_SetModifierMask(QtObjectPtr ptr, int modifierMask){ + static_cast(ptr)->setModifierMask(static_cast(modifierMask)); +} + +void QMouseEventTransition_DestroyQMouseEventTransition(QtObjectPtr ptr){ + static_cast(ptr)->~QMouseEventTransition(); +} + diff --git a/widgets/qmouseeventtransition.go b/widgets/qmouseeventtransition.go new file mode 100755 index 00000000..3e1682d5 --- /dev/null +++ b/widgets/qmouseeventtransition.go @@ -0,0 +1,86 @@ +package widgets + +//#include "qmouseeventtransition.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QMouseEventTransition struct { + core.QEventTransition +} + +type QMouseEventTransitionITF interface { + core.QEventTransitionITF + QMouseEventTransitionPTR() *QMouseEventTransition +} + +func PointerFromQMouseEventTransition(ptr QMouseEventTransitionITF) unsafe.Pointer { + if ptr != nil { + return ptr.QMouseEventTransitionPTR().Pointer() + } + return nil +} + +func QMouseEventTransitionFromPointer(ptr unsafe.Pointer) *QMouseEventTransition { + var n = new(QMouseEventTransition) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QMouseEventTransition_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QMouseEventTransition) QMouseEventTransitionPTR() *QMouseEventTransition { + return ptr +} + +func NewQMouseEventTransition2(object core.QObjectITF, ty core.QEvent__Type, button core.Qt__MouseButton, sourceState core.QStateITF) *QMouseEventTransition { + return QMouseEventTransitionFromPointer(unsafe.Pointer(C.QMouseEventTransition_NewQMouseEventTransition2(C.QtObjectPtr(core.PointerFromQObject(object)), C.int(ty), C.int(button), C.QtObjectPtr(core.PointerFromQState(sourceState))))) +} + +func NewQMouseEventTransition(sourceState core.QStateITF) *QMouseEventTransition { + return QMouseEventTransitionFromPointer(unsafe.Pointer(C.QMouseEventTransition_NewQMouseEventTransition(C.QtObjectPtr(core.PointerFromQState(sourceState))))) +} + +func (ptr *QMouseEventTransition) Button() core.Qt__MouseButton { + if ptr.Pointer() != nil { + return core.Qt__MouseButton(C.QMouseEventTransition_Button(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMouseEventTransition) ModifierMask() core.Qt__KeyboardModifier { + if ptr.Pointer() != nil { + return core.Qt__KeyboardModifier(C.QMouseEventTransition_ModifierMask(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QMouseEventTransition) SetButton(button core.Qt__MouseButton) { + if ptr.Pointer() != nil { + C.QMouseEventTransition_SetButton(C.QtObjectPtr(ptr.Pointer()), C.int(button)) + } +} + +func (ptr *QMouseEventTransition) SetHitTestPath(path gui.QPainterPathITF) { + if ptr.Pointer() != nil { + C.QMouseEventTransition_SetHitTestPath(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainterPath(path))) + } +} + +func (ptr *QMouseEventTransition) SetModifierMask(modifierMask core.Qt__KeyboardModifier) { + if ptr.Pointer() != nil { + C.QMouseEventTransition_SetModifierMask(C.QtObjectPtr(ptr.Pointer()), C.int(modifierMask)) + } +} + +func (ptr *QMouseEventTransition) DestroyQMouseEventTransition() { + if ptr.Pointer() != nil { + C.QMouseEventTransition_DestroyQMouseEventTransition(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qmouseeventtransition.h b/widgets/qmouseeventtransition.h new file mode 100755 index 00000000..5927f0c8 --- /dev/null +++ b/widgets/qmouseeventtransition.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QMouseEventTransition_NewQMouseEventTransition2(QtObjectPtr object, int ty, int button, QtObjectPtr sourceState); +QtObjectPtr QMouseEventTransition_NewQMouseEventTransition(QtObjectPtr sourceState); +int QMouseEventTransition_Button(QtObjectPtr ptr); +int QMouseEventTransition_ModifierMask(QtObjectPtr ptr); +void QMouseEventTransition_SetButton(QtObjectPtr ptr, int button); +void QMouseEventTransition_SetHitTestPath(QtObjectPtr ptr, QtObjectPtr path); +void QMouseEventTransition_SetModifierMask(QtObjectPtr ptr, int modifierMask); +void QMouseEventTransition_DestroyQMouseEventTransition(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qopenglwidget.cpp b/widgets/qopenglwidget.cpp new file mode 100755 index 00000000..854bd3bb --- /dev/null +++ b/widgets/qopenglwidget.cpp @@ -0,0 +1,88 @@ +#include "qopenglwidget.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQOpenGLWidget: public QOpenGLWidget { +public: +void Signal_AboutToCompose(){callbackQOpenGLWidgetAboutToCompose(this->objectName().toUtf8().data());}; +void Signal_AboutToResize(){callbackQOpenGLWidgetAboutToResize(this->objectName().toUtf8().data());}; +void Signal_FrameSwapped(){callbackQOpenGLWidgetFrameSwapped(this->objectName().toUtf8().data());}; +void Signal_Resized(){callbackQOpenGLWidgetResized(this->objectName().toUtf8().data());}; +}; + +QtObjectPtr QOpenGLWidget_NewQOpenGLWidget(QtObjectPtr parent, int f){ + return new QOpenGLWidget(static_cast(parent), static_cast(f)); +} + +void QOpenGLWidget_ConnectAboutToCompose(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QOpenGLWidget::aboutToCompose), static_cast(ptr), static_cast(&MyQOpenGLWidget::Signal_AboutToCompose));; +} + +void QOpenGLWidget_DisconnectAboutToCompose(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QOpenGLWidget::aboutToCompose), static_cast(ptr), static_cast(&MyQOpenGLWidget::Signal_AboutToCompose));; +} + +void QOpenGLWidget_ConnectAboutToResize(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QOpenGLWidget::aboutToResize), static_cast(ptr), static_cast(&MyQOpenGLWidget::Signal_AboutToResize));; +} + +void QOpenGLWidget_DisconnectAboutToResize(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QOpenGLWidget::aboutToResize), static_cast(ptr), static_cast(&MyQOpenGLWidget::Signal_AboutToResize));; +} + +QtObjectPtr QOpenGLWidget_Context(QtObjectPtr ptr){ + return static_cast(ptr)->context(); +} + +void QOpenGLWidget_DoneCurrent(QtObjectPtr ptr){ + static_cast(ptr)->doneCurrent(); +} + +int QOpenGLWidget_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +void QOpenGLWidget_MakeCurrent(QtObjectPtr ptr){ + static_cast(ptr)->makeCurrent(); +} + +void QOpenGLWidget_ConnectFrameSwapped(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QOpenGLWidget::frameSwapped), static_cast(ptr), static_cast(&MyQOpenGLWidget::Signal_FrameSwapped));; +} + +void QOpenGLWidget_DisconnectFrameSwapped(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QOpenGLWidget::frameSwapped), static_cast(ptr), static_cast(&MyQOpenGLWidget::Signal_FrameSwapped));; +} + +void QOpenGLWidget_ConnectResized(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QOpenGLWidget::resized), static_cast(ptr), static_cast(&MyQOpenGLWidget::Signal_Resized));; +} + +void QOpenGLWidget_DisconnectResized(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QOpenGLWidget::resized), static_cast(ptr), static_cast(&MyQOpenGLWidget::Signal_Resized));; +} + +void QOpenGLWidget_SetFormat(QtObjectPtr ptr, QtObjectPtr format){ + static_cast(ptr)->setFormat(*static_cast(format)); +} + +void QOpenGLWidget_SetUpdateBehavior(QtObjectPtr ptr, int updateBehavior){ + static_cast(ptr)->setUpdateBehavior(static_cast(updateBehavior)); +} + +int QOpenGLWidget_UpdateBehavior(QtObjectPtr ptr){ + return static_cast(ptr)->updateBehavior(); +} + +void QOpenGLWidget_DestroyQOpenGLWidget(QtObjectPtr ptr){ + static_cast(ptr)->~QOpenGLWidget(); +} + diff --git a/widgets/qopenglwidget.go b/widgets/qopenglwidget.go new file mode 100755 index 00000000..8cfb66bc --- /dev/null +++ b/widgets/qopenglwidget.go @@ -0,0 +1,179 @@ +package widgets + +//#include "qopenglwidget.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QOpenGLWidget struct { + QWidget +} + +type QOpenGLWidgetITF interface { + QWidgetITF + QOpenGLWidgetPTR() *QOpenGLWidget +} + +func PointerFromQOpenGLWidget(ptr QOpenGLWidgetITF) unsafe.Pointer { + if ptr != nil { + return ptr.QOpenGLWidgetPTR().Pointer() + } + return nil +} + +func QOpenGLWidgetFromPointer(ptr unsafe.Pointer) *QOpenGLWidget { + var n = new(QOpenGLWidget) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QOpenGLWidget_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QOpenGLWidget) QOpenGLWidgetPTR() *QOpenGLWidget { + return ptr +} + +//QOpenGLWidget::UpdateBehavior +type QOpenGLWidget__UpdateBehavior int + +var ( + QOpenGLWidget__NoPartialUpdate = QOpenGLWidget__UpdateBehavior(0) + QOpenGLWidget__PartialUpdate = QOpenGLWidget__UpdateBehavior(1) +) + +func NewQOpenGLWidget(parent QWidgetITF, f core.Qt__WindowType) *QOpenGLWidget { + return QOpenGLWidgetFromPointer(unsafe.Pointer(C.QOpenGLWidget_NewQOpenGLWidget(C.QtObjectPtr(PointerFromQWidget(parent)), C.int(f)))) +} + +func (ptr *QOpenGLWidget) ConnectAboutToCompose(f func()) { + if ptr.Pointer() != nil { + C.QOpenGLWidget_ConnectAboutToCompose(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "aboutToCompose", f) + } +} + +func (ptr *QOpenGLWidget) DisconnectAboutToCompose() { + if ptr.Pointer() != nil { + C.QOpenGLWidget_DisconnectAboutToCompose(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "aboutToCompose") + } +} + +//export callbackQOpenGLWidgetAboutToCompose +func callbackQOpenGLWidgetAboutToCompose(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "aboutToCompose").(func())() +} + +func (ptr *QOpenGLWidget) ConnectAboutToResize(f func()) { + if ptr.Pointer() != nil { + C.QOpenGLWidget_ConnectAboutToResize(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "aboutToResize", f) + } +} + +func (ptr *QOpenGLWidget) DisconnectAboutToResize() { + if ptr.Pointer() != nil { + C.QOpenGLWidget_DisconnectAboutToResize(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "aboutToResize") + } +} + +//export callbackQOpenGLWidgetAboutToResize +func callbackQOpenGLWidgetAboutToResize(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "aboutToResize").(func())() +} + +func (ptr *QOpenGLWidget) Context() *gui.QOpenGLContext { + if ptr.Pointer() != nil { + return gui.QOpenGLContextFromPointer(unsafe.Pointer(C.QOpenGLWidget_Context(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QOpenGLWidget) DoneCurrent() { + if ptr.Pointer() != nil { + C.QOpenGLWidget_DoneCurrent(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLWidget) IsValid() bool { + if ptr.Pointer() != nil { + return C.QOpenGLWidget_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QOpenGLWidget) MakeCurrent() { + if ptr.Pointer() != nil { + C.QOpenGLWidget_MakeCurrent(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QOpenGLWidget) ConnectFrameSwapped(f func()) { + if ptr.Pointer() != nil { + C.QOpenGLWidget_ConnectFrameSwapped(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "frameSwapped", f) + } +} + +func (ptr *QOpenGLWidget) DisconnectFrameSwapped() { + if ptr.Pointer() != nil { + C.QOpenGLWidget_DisconnectFrameSwapped(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "frameSwapped") + } +} + +//export callbackQOpenGLWidgetFrameSwapped +func callbackQOpenGLWidgetFrameSwapped(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "frameSwapped").(func())() +} + +func (ptr *QOpenGLWidget) ConnectResized(f func()) { + if ptr.Pointer() != nil { + C.QOpenGLWidget_ConnectResized(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "resized", f) + } +} + +func (ptr *QOpenGLWidget) DisconnectResized() { + if ptr.Pointer() != nil { + C.QOpenGLWidget_DisconnectResized(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "resized") + } +} + +//export callbackQOpenGLWidgetResized +func callbackQOpenGLWidgetResized(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "resized").(func())() +} + +func (ptr *QOpenGLWidget) SetFormat(format gui.QSurfaceFormatITF) { + if ptr.Pointer() != nil { + C.QOpenGLWidget_SetFormat(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQSurfaceFormat(format))) + } +} + +func (ptr *QOpenGLWidget) SetUpdateBehavior(updateBehavior QOpenGLWidget__UpdateBehavior) { + if ptr.Pointer() != nil { + C.QOpenGLWidget_SetUpdateBehavior(C.QtObjectPtr(ptr.Pointer()), C.int(updateBehavior)) + } +} + +func (ptr *QOpenGLWidget) UpdateBehavior() QOpenGLWidget__UpdateBehavior { + if ptr.Pointer() != nil { + return QOpenGLWidget__UpdateBehavior(C.QOpenGLWidget_UpdateBehavior(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QOpenGLWidget) DestroyQOpenGLWidget() { + if ptr.Pointer() != nil { + C.QOpenGLWidget_DestroyQOpenGLWidget(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qopenglwidget.h b/widgets/qopenglwidget.h new file mode 100755 index 00000000..7f515699 --- /dev/null +++ b/widgets/qopenglwidget.h @@ -0,0 +1,26 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QOpenGLWidget_NewQOpenGLWidget(QtObjectPtr parent, int f); +void QOpenGLWidget_ConnectAboutToCompose(QtObjectPtr ptr); +void QOpenGLWidget_DisconnectAboutToCompose(QtObjectPtr ptr); +void QOpenGLWidget_ConnectAboutToResize(QtObjectPtr ptr); +void QOpenGLWidget_DisconnectAboutToResize(QtObjectPtr ptr); +QtObjectPtr QOpenGLWidget_Context(QtObjectPtr ptr); +void QOpenGLWidget_DoneCurrent(QtObjectPtr ptr); +int QOpenGLWidget_IsValid(QtObjectPtr ptr); +void QOpenGLWidget_MakeCurrent(QtObjectPtr ptr); +void QOpenGLWidget_ConnectFrameSwapped(QtObjectPtr ptr); +void QOpenGLWidget_DisconnectFrameSwapped(QtObjectPtr ptr); +void QOpenGLWidget_ConnectResized(QtObjectPtr ptr); +void QOpenGLWidget_DisconnectResized(QtObjectPtr ptr); +void QOpenGLWidget_SetFormat(QtObjectPtr ptr, QtObjectPtr format); +void QOpenGLWidget_SetUpdateBehavior(QtObjectPtr ptr, int updateBehavior); +int QOpenGLWidget_UpdateBehavior(QtObjectPtr ptr); +void QOpenGLWidget_DestroyQOpenGLWidget(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qpangesture.cpp b/widgets/qpangesture.cpp new file mode 100755 index 00000000..c0f41d1f --- /dev/null +++ b/widgets/qpangesture.cpp @@ -0,0 +1,26 @@ +#include "qpangesture.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPanGesture: public QPanGesture { +public: +}; + +void QPanGesture_SetLastOffset(QtObjectPtr ptr, QtObjectPtr value){ + static_cast(ptr)->setLastOffset(*static_cast(value)); +} + +void QPanGesture_SetOffset(QtObjectPtr ptr, QtObjectPtr value){ + static_cast(ptr)->setOffset(*static_cast(value)); +} + +void QPanGesture_DestroyQPanGesture(QtObjectPtr ptr){ + static_cast(ptr)->~QPanGesture(); +} + diff --git a/widgets/qpangesture.go b/widgets/qpangesture.go new file mode 100755 index 00000000..a556f9ad --- /dev/null +++ b/widgets/qpangesture.go @@ -0,0 +1,57 @@ +package widgets + +//#include "qpangesture.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QPanGesture struct { + QGesture +} + +type QPanGestureITF interface { + QGestureITF + QPanGesturePTR() *QPanGesture +} + +func PointerFromQPanGesture(ptr QPanGestureITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPanGesturePTR().Pointer() + } + return nil +} + +func QPanGestureFromPointer(ptr unsafe.Pointer) *QPanGesture { + var n = new(QPanGesture) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QPanGesture_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QPanGesture) QPanGesturePTR() *QPanGesture { + return ptr +} + +func (ptr *QPanGesture) SetLastOffset(value core.QPointFITF) { + if ptr.Pointer() != nil { + C.QPanGesture_SetLastOffset(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(value))) + } +} + +func (ptr *QPanGesture) SetOffset(value core.QPointFITF) { + if ptr.Pointer() != nil { + C.QPanGesture_SetOffset(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(value))) + } +} + +func (ptr *QPanGesture) DestroyQPanGesture() { + if ptr.Pointer() != nil { + C.QPanGesture_DestroyQPanGesture(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qpangesture.h b/widgets/qpangesture.h new file mode 100755 index 00000000..b0c3e8b2 --- /dev/null +++ b/widgets/qpangesture.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QPanGesture_SetLastOffset(QtObjectPtr ptr, QtObjectPtr value); +void QPanGesture_SetOffset(QtObjectPtr ptr, QtObjectPtr value); +void QPanGesture_DestroyQPanGesture(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qpinchgesture.cpp b/widgets/qpinchgesture.cpp new file mode 100755 index 00000000..ef14bb30 --- /dev/null +++ b/widgets/qpinchgesture.cpp @@ -0,0 +1,46 @@ +#include "qpinchgesture.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPinchGesture: public QPinchGesture { +public: +}; + +int QPinchGesture_ChangeFlags(QtObjectPtr ptr){ + return static_cast(ptr)->changeFlags(); +} + +void QPinchGesture_SetCenterPoint(QtObjectPtr ptr, QtObjectPtr value){ + static_cast(ptr)->setCenterPoint(*static_cast(value)); +} + +void QPinchGesture_SetChangeFlags(QtObjectPtr ptr, int value){ + static_cast(ptr)->setChangeFlags(static_cast(value)); +} + +void QPinchGesture_SetLastCenterPoint(QtObjectPtr ptr, QtObjectPtr value){ + static_cast(ptr)->setLastCenterPoint(*static_cast(value)); +} + +void QPinchGesture_SetStartCenterPoint(QtObjectPtr ptr, QtObjectPtr value){ + static_cast(ptr)->setStartCenterPoint(*static_cast(value)); +} + +void QPinchGesture_SetTotalChangeFlags(QtObjectPtr ptr, int value){ + static_cast(ptr)->setTotalChangeFlags(static_cast(value)); +} + +int QPinchGesture_TotalChangeFlags(QtObjectPtr ptr){ + return static_cast(ptr)->totalChangeFlags(); +} + +void QPinchGesture_DestroyQPinchGesture(QtObjectPtr ptr){ + static_cast(ptr)->~QPinchGesture(); +} + diff --git a/widgets/qpinchgesture.go b/widgets/qpinchgesture.go new file mode 100755 index 00000000..f6c53faa --- /dev/null +++ b/widgets/qpinchgesture.go @@ -0,0 +1,98 @@ +package widgets + +//#include "qpinchgesture.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QPinchGesture struct { + QGesture +} + +type QPinchGestureITF interface { + QGestureITF + QPinchGesturePTR() *QPinchGesture +} + +func PointerFromQPinchGesture(ptr QPinchGestureITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPinchGesturePTR().Pointer() + } + return nil +} + +func QPinchGestureFromPointer(ptr unsafe.Pointer) *QPinchGesture { + var n = new(QPinchGesture) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QPinchGesture_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QPinchGesture) QPinchGesturePTR() *QPinchGesture { + return ptr +} + +//QPinchGesture::ChangeFlag +type QPinchGesture__ChangeFlag int + +var ( + QPinchGesture__ScaleFactorChanged = QPinchGesture__ChangeFlag(0x1) + QPinchGesture__RotationAngleChanged = QPinchGesture__ChangeFlag(0x2) + QPinchGesture__CenterPointChanged = QPinchGesture__ChangeFlag(0x4) +) + +func (ptr *QPinchGesture) ChangeFlags() QPinchGesture__ChangeFlag { + if ptr.Pointer() != nil { + return QPinchGesture__ChangeFlag(C.QPinchGesture_ChangeFlags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPinchGesture) SetCenterPoint(value core.QPointFITF) { + if ptr.Pointer() != nil { + C.QPinchGesture_SetCenterPoint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(value))) + } +} + +func (ptr *QPinchGesture) SetChangeFlags(value QPinchGesture__ChangeFlag) { + if ptr.Pointer() != nil { + C.QPinchGesture_SetChangeFlags(C.QtObjectPtr(ptr.Pointer()), C.int(value)) + } +} + +func (ptr *QPinchGesture) SetLastCenterPoint(value core.QPointFITF) { + if ptr.Pointer() != nil { + C.QPinchGesture_SetLastCenterPoint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(value))) + } +} + +func (ptr *QPinchGesture) SetStartCenterPoint(value core.QPointFITF) { + if ptr.Pointer() != nil { + C.QPinchGesture_SetStartCenterPoint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(value))) + } +} + +func (ptr *QPinchGesture) SetTotalChangeFlags(value QPinchGesture__ChangeFlag) { + if ptr.Pointer() != nil { + C.QPinchGesture_SetTotalChangeFlags(C.QtObjectPtr(ptr.Pointer()), C.int(value)) + } +} + +func (ptr *QPinchGesture) TotalChangeFlags() QPinchGesture__ChangeFlag { + if ptr.Pointer() != nil { + return QPinchGesture__ChangeFlag(C.QPinchGesture_TotalChangeFlags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPinchGesture) DestroyQPinchGesture() { + if ptr.Pointer() != nil { + C.QPinchGesture_DestroyQPinchGesture(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qpinchgesture.h b/widgets/qpinchgesture.h new file mode 100755 index 00000000..469432e4 --- /dev/null +++ b/widgets/qpinchgesture.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QPinchGesture_ChangeFlags(QtObjectPtr ptr); +void QPinchGesture_SetCenterPoint(QtObjectPtr ptr, QtObjectPtr value); +void QPinchGesture_SetChangeFlags(QtObjectPtr ptr, int value); +void QPinchGesture_SetLastCenterPoint(QtObjectPtr ptr, QtObjectPtr value); +void QPinchGesture_SetStartCenterPoint(QtObjectPtr ptr, QtObjectPtr value); +void QPinchGesture_SetTotalChangeFlags(QtObjectPtr ptr, int value); +int QPinchGesture_TotalChangeFlags(QtObjectPtr ptr); +void QPinchGesture_DestroyQPinchGesture(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qplaintextdocumentlayout.cpp b/widgets/qplaintextdocumentlayout.cpp new file mode 100755 index 00000000..452a939c --- /dev/null +++ b/widgets/qplaintextdocumentlayout.cpp @@ -0,0 +1,42 @@ +#include "qplaintextdocumentlayout.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPlainTextDocumentLayout: public QPlainTextDocumentLayout { +public: +}; + +int QPlainTextDocumentLayout_CursorWidth(QtObjectPtr ptr){ + return static_cast(ptr)->cursorWidth(); +} + +void QPlainTextDocumentLayout_SetCursorWidth(QtObjectPtr ptr, int width){ + static_cast(ptr)->setCursorWidth(width); +} + +QtObjectPtr QPlainTextDocumentLayout_NewQPlainTextDocumentLayout(QtObjectPtr document){ + return new QPlainTextDocumentLayout(static_cast(document)); +} + +void QPlainTextDocumentLayout_EnsureBlockLayout(QtObjectPtr ptr, QtObjectPtr block){ + static_cast(ptr)->ensureBlockLayout(*static_cast(block)); +} + +int QPlainTextDocumentLayout_PageCount(QtObjectPtr ptr){ + return static_cast(ptr)->pageCount(); +} + +void QPlainTextDocumentLayout_RequestUpdate(QtObjectPtr ptr){ + static_cast(ptr)->requestUpdate(); +} + +void QPlainTextDocumentLayout_DestroyQPlainTextDocumentLayout(QtObjectPtr ptr){ + static_cast(ptr)->~QPlainTextDocumentLayout(); +} + diff --git a/widgets/qplaintextdocumentlayout.go b/widgets/qplaintextdocumentlayout.go new file mode 100755 index 00000000..59bdab9d --- /dev/null +++ b/widgets/qplaintextdocumentlayout.go @@ -0,0 +1,81 @@ +package widgets + +//#include "qplaintextdocumentlayout.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QPlainTextDocumentLayout struct { + gui.QAbstractTextDocumentLayout +} + +type QPlainTextDocumentLayoutITF interface { + gui.QAbstractTextDocumentLayoutITF + QPlainTextDocumentLayoutPTR() *QPlainTextDocumentLayout +} + +func PointerFromQPlainTextDocumentLayout(ptr QPlainTextDocumentLayoutITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlainTextDocumentLayoutPTR().Pointer() + } + return nil +} + +func QPlainTextDocumentLayoutFromPointer(ptr unsafe.Pointer) *QPlainTextDocumentLayout { + var n = new(QPlainTextDocumentLayout) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QPlainTextDocumentLayout_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QPlainTextDocumentLayout) QPlainTextDocumentLayoutPTR() *QPlainTextDocumentLayout { + return ptr +} + +func (ptr *QPlainTextDocumentLayout) CursorWidth() int { + if ptr.Pointer() != nil { + return int(C.QPlainTextDocumentLayout_CursorWidth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPlainTextDocumentLayout) SetCursorWidth(width int) { + if ptr.Pointer() != nil { + C.QPlainTextDocumentLayout_SetCursorWidth(C.QtObjectPtr(ptr.Pointer()), C.int(width)) + } +} + +func NewQPlainTextDocumentLayout(document gui.QTextDocumentITF) *QPlainTextDocumentLayout { + return QPlainTextDocumentLayoutFromPointer(unsafe.Pointer(C.QPlainTextDocumentLayout_NewQPlainTextDocumentLayout(C.QtObjectPtr(gui.PointerFromQTextDocument(document))))) +} + +func (ptr *QPlainTextDocumentLayout) EnsureBlockLayout(block gui.QTextBlockITF) { + if ptr.Pointer() != nil { + C.QPlainTextDocumentLayout_EnsureBlockLayout(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQTextBlock(block))) + } +} + +func (ptr *QPlainTextDocumentLayout) PageCount() int { + if ptr.Pointer() != nil { + return int(C.QPlainTextDocumentLayout_PageCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPlainTextDocumentLayout) RequestUpdate() { + if ptr.Pointer() != nil { + C.QPlainTextDocumentLayout_RequestUpdate(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QPlainTextDocumentLayout) DestroyQPlainTextDocumentLayout() { + if ptr.Pointer() != nil { + C.QPlainTextDocumentLayout_DestroyQPlainTextDocumentLayout(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qplaintextdocumentlayout.h b/widgets/qplaintextdocumentlayout.h new file mode 100755 index 00000000..5b792552 --- /dev/null +++ b/widgets/qplaintextdocumentlayout.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QPlainTextDocumentLayout_CursorWidth(QtObjectPtr ptr); +void QPlainTextDocumentLayout_SetCursorWidth(QtObjectPtr ptr, int width); +QtObjectPtr QPlainTextDocumentLayout_NewQPlainTextDocumentLayout(QtObjectPtr document); +void QPlainTextDocumentLayout_EnsureBlockLayout(QtObjectPtr ptr, QtObjectPtr block); +int QPlainTextDocumentLayout_PageCount(QtObjectPtr ptr); +void QPlainTextDocumentLayout_RequestUpdate(QtObjectPtr ptr); +void QPlainTextDocumentLayout_DestroyQPlainTextDocumentLayout(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qplaintextedit.cpp b/widgets/qplaintextedit.cpp new file mode 100755 index 00000000..11e91c19 --- /dev/null +++ b/widgets/qplaintextedit.cpp @@ -0,0 +1,337 @@ +#include "qplaintextedit.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPlainTextEdit: public QPlainTextEdit { +public: +void Signal_BlockCountChanged(int newBlockCount){callbackQPlainTextEditBlockCountChanged(this->objectName().toUtf8().data(), newBlockCount);}; +void Signal_CopyAvailable(bool yes){callbackQPlainTextEditCopyAvailable(this->objectName().toUtf8().data(), yes);}; +void Signal_CursorPositionChanged(){callbackQPlainTextEditCursorPositionChanged(this->objectName().toUtf8().data());}; +void Signal_ModificationChanged(bool changed){callbackQPlainTextEditModificationChanged(this->objectName().toUtf8().data(), changed);}; +void Signal_RedoAvailable(bool available){callbackQPlainTextEditRedoAvailable(this->objectName().toUtf8().data(), available);}; +void Signal_SelectionChanged(){callbackQPlainTextEditSelectionChanged(this->objectName().toUtf8().data());}; +void Signal_TextChanged(){callbackQPlainTextEditTextChanged(this->objectName().toUtf8().data());}; +void Signal_UndoAvailable(bool available){callbackQPlainTextEditUndoAvailable(this->objectName().toUtf8().data(), available);}; +}; + +int QPlainTextEdit_BackgroundVisible(QtObjectPtr ptr){ + return static_cast(ptr)->backgroundVisible(); +} + +int QPlainTextEdit_BlockCount(QtObjectPtr ptr){ + return static_cast(ptr)->blockCount(); +} + +int QPlainTextEdit_CenterOnScroll(QtObjectPtr ptr){ + return static_cast(ptr)->centerOnScroll(); +} + +int QPlainTextEdit_CursorWidth(QtObjectPtr ptr){ + return static_cast(ptr)->cursorWidth(); +} + +int QPlainTextEdit_IsReadOnly(QtObjectPtr ptr){ + return static_cast(ptr)->isReadOnly(); +} + +int QPlainTextEdit_LineWrapMode(QtObjectPtr ptr){ + return static_cast(ptr)->lineWrapMode(); +} + +int QPlainTextEdit_OverwriteMode(QtObjectPtr ptr){ + return static_cast(ptr)->overwriteMode(); +} + +char* QPlainTextEdit_PlaceholderText(QtObjectPtr ptr){ + return static_cast(ptr)->placeholderText().toUtf8().data(); +} + +void QPlainTextEdit_Redo(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "redo"); +} + +void QPlainTextEdit_SetBackgroundVisible(QtObjectPtr ptr, int visible){ + static_cast(ptr)->setBackgroundVisible(visible != 0); +} + +void QPlainTextEdit_SetCenterOnScroll(QtObjectPtr ptr, int enabled){ + static_cast(ptr)->setCenterOnScroll(enabled != 0); +} + +void QPlainTextEdit_SetCursorWidth(QtObjectPtr ptr, int width){ + static_cast(ptr)->setCursorWidth(width); +} + +void QPlainTextEdit_SetLineWrapMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setLineWrapMode(static_cast(mode)); +} + +void QPlainTextEdit_SetOverwriteMode(QtObjectPtr ptr, int overwrite){ + static_cast(ptr)->setOverwriteMode(overwrite != 0); +} + +void QPlainTextEdit_SetPlaceholderText(QtObjectPtr ptr, char* placeholderText){ + static_cast(ptr)->setPlaceholderText(QString(placeholderText)); +} + +void QPlainTextEdit_SetReadOnly(QtObjectPtr ptr, int ro){ + static_cast(ptr)->setReadOnly(ro != 0); +} + +void QPlainTextEdit_SetTabChangesFocus(QtObjectPtr ptr, int b){ + static_cast(ptr)->setTabChangesFocus(b != 0); +} + +void QPlainTextEdit_SetTabStopWidth(QtObjectPtr ptr, int width){ + static_cast(ptr)->setTabStopWidth(width); +} + +void QPlainTextEdit_SetTextInteractionFlags(QtObjectPtr ptr, int flags){ + static_cast(ptr)->setTextInteractionFlags(static_cast(flags)); +} + +void QPlainTextEdit_SetWordWrapMode(QtObjectPtr ptr, int policy){ + static_cast(ptr)->setWordWrapMode(static_cast(policy)); +} + +int QPlainTextEdit_TabChangesFocus(QtObjectPtr ptr){ + return static_cast(ptr)->tabChangesFocus(); +} + +int QPlainTextEdit_TabStopWidth(QtObjectPtr ptr){ + return static_cast(ptr)->tabStopWidth(); +} + +int QPlainTextEdit_TextInteractionFlags(QtObjectPtr ptr){ + return static_cast(ptr)->textInteractionFlags(); +} + +int QPlainTextEdit_WordWrapMode(QtObjectPtr ptr){ + return static_cast(ptr)->wordWrapMode(); +} + +void QPlainTextEdit_ZoomIn(QtObjectPtr ptr, int ran){ + QMetaObject::invokeMethod(static_cast(ptr), "zoomIn", Q_ARG(int, ran)); +} + +void QPlainTextEdit_ZoomOut(QtObjectPtr ptr, int ran){ + QMetaObject::invokeMethod(static_cast(ptr), "zoomOut", Q_ARG(int, ran)); +} + +QtObjectPtr QPlainTextEdit_NewQPlainTextEdit(QtObjectPtr parent){ + return new QPlainTextEdit(static_cast(parent)); +} + +QtObjectPtr QPlainTextEdit_NewQPlainTextEdit2(char* text, QtObjectPtr parent){ + return new QPlainTextEdit(QString(text), static_cast(parent)); +} + +char* QPlainTextEdit_AnchorAt(QtObjectPtr ptr, QtObjectPtr pos){ + return static_cast(ptr)->anchorAt(*static_cast(pos)).toUtf8().data(); +} + +void QPlainTextEdit_AppendPlainText(QtObjectPtr ptr, char* text){ + QMetaObject::invokeMethod(static_cast(ptr), "appendPlainText", Q_ARG(QString, QString(text))); +} + +void QPlainTextEdit_CenterCursor(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "centerCursor"); +} + +void QPlainTextEdit_AppendHtml(QtObjectPtr ptr, char* html){ + QMetaObject::invokeMethod(static_cast(ptr), "appendHtml", Q_ARG(QString, QString(html))); +} + +void QPlainTextEdit_ConnectBlockCountChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QPlainTextEdit::blockCountChanged), static_cast(ptr), static_cast(&MyQPlainTextEdit::Signal_BlockCountChanged));; +} + +void QPlainTextEdit_DisconnectBlockCountChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QPlainTextEdit::blockCountChanged), static_cast(ptr), static_cast(&MyQPlainTextEdit::Signal_BlockCountChanged));; +} + +int QPlainTextEdit_CanPaste(QtObjectPtr ptr){ + return static_cast(ptr)->canPaste(); +} + +void QPlainTextEdit_Clear(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "clear"); +} + +void QPlainTextEdit_Copy(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "copy"); +} + +void QPlainTextEdit_ConnectCopyAvailable(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QPlainTextEdit::copyAvailable), static_cast(ptr), static_cast(&MyQPlainTextEdit::Signal_CopyAvailable));; +} + +void QPlainTextEdit_DisconnectCopyAvailable(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QPlainTextEdit::copyAvailable), static_cast(ptr), static_cast(&MyQPlainTextEdit::Signal_CopyAvailable));; +} + +QtObjectPtr QPlainTextEdit_CreateStandardContextMenu(QtObjectPtr ptr){ + return static_cast(ptr)->createStandardContextMenu(); +} + +QtObjectPtr QPlainTextEdit_CreateStandardContextMenu2(QtObjectPtr ptr, QtObjectPtr position){ + return static_cast(ptr)->createStandardContextMenu(*static_cast(position)); +} + +void QPlainTextEdit_ConnectCursorPositionChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QPlainTextEdit::cursorPositionChanged), static_cast(ptr), static_cast(&MyQPlainTextEdit::Signal_CursorPositionChanged));; +} + +void QPlainTextEdit_DisconnectCursorPositionChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QPlainTextEdit::cursorPositionChanged), static_cast(ptr), static_cast(&MyQPlainTextEdit::Signal_CursorPositionChanged));; +} + +void QPlainTextEdit_Cut(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "cut"); +} + +QtObjectPtr QPlainTextEdit_Document(QtObjectPtr ptr){ + return static_cast(ptr)->document(); +} + +char* QPlainTextEdit_DocumentTitle(QtObjectPtr ptr){ + return static_cast(ptr)->documentTitle().toUtf8().data(); +} + +void QPlainTextEdit_EnsureCursorVisible(QtObjectPtr ptr){ + static_cast(ptr)->ensureCursorVisible(); +} + +char* QPlainTextEdit_InputMethodQuery(QtObjectPtr ptr, int property){ + return static_cast(ptr)->inputMethodQuery(static_cast(property)).toString().toUtf8().data(); +} + +void QPlainTextEdit_InsertPlainText(QtObjectPtr ptr, char* text){ + QMetaObject::invokeMethod(static_cast(ptr), "insertPlainText", Q_ARG(QString, QString(text))); +} + +int QPlainTextEdit_IsUndoRedoEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isUndoRedoEnabled(); +} + +char* QPlainTextEdit_LoadResource(QtObjectPtr ptr, int ty, char* name){ + return static_cast(ptr)->loadResource(ty, QUrl(QString(name))).toString().toUtf8().data(); +} + +int QPlainTextEdit_MaximumBlockCount(QtObjectPtr ptr){ + return static_cast(ptr)->maximumBlockCount(); +} + +void QPlainTextEdit_MergeCurrentCharFormat(QtObjectPtr ptr, QtObjectPtr modifier){ + static_cast(ptr)->mergeCurrentCharFormat(*static_cast(modifier)); +} + +void QPlainTextEdit_ConnectModificationChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QPlainTextEdit::modificationChanged), static_cast(ptr), static_cast(&MyQPlainTextEdit::Signal_ModificationChanged));; +} + +void QPlainTextEdit_DisconnectModificationChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QPlainTextEdit::modificationChanged), static_cast(ptr), static_cast(&MyQPlainTextEdit::Signal_ModificationChanged));; +} + +void QPlainTextEdit_MoveCursor(QtObjectPtr ptr, int operation, int mode){ + static_cast(ptr)->moveCursor(static_cast(operation), static_cast(mode)); +} + +void QPlainTextEdit_Paste(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "paste"); +} + +void QPlainTextEdit_Print(QtObjectPtr ptr, QtObjectPtr printer){ + static_cast(ptr)->print(static_cast(printer)); +} + +void QPlainTextEdit_ConnectRedoAvailable(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QPlainTextEdit::redoAvailable), static_cast(ptr), static_cast(&MyQPlainTextEdit::Signal_RedoAvailable));; +} + +void QPlainTextEdit_DisconnectRedoAvailable(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QPlainTextEdit::redoAvailable), static_cast(ptr), static_cast(&MyQPlainTextEdit::Signal_RedoAvailable));; +} + +void QPlainTextEdit_SelectAll(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "selectAll"); +} + +void QPlainTextEdit_ConnectSelectionChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QPlainTextEdit::selectionChanged), static_cast(ptr), static_cast(&MyQPlainTextEdit::Signal_SelectionChanged));; +} + +void QPlainTextEdit_DisconnectSelectionChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QPlainTextEdit::selectionChanged), static_cast(ptr), static_cast(&MyQPlainTextEdit::Signal_SelectionChanged));; +} + +void QPlainTextEdit_SetCurrentCharFormat(QtObjectPtr ptr, QtObjectPtr format){ + static_cast(ptr)->setCurrentCharFormat(*static_cast(format)); +} + +void QPlainTextEdit_SetDocument(QtObjectPtr ptr, QtObjectPtr document){ + static_cast(ptr)->setDocument(static_cast(document)); +} + +void QPlainTextEdit_SetDocumentTitle(QtObjectPtr ptr, char* title){ + static_cast(ptr)->setDocumentTitle(QString(title)); +} + +void QPlainTextEdit_SetMaximumBlockCount(QtObjectPtr ptr, int maximum){ + static_cast(ptr)->setMaximumBlockCount(maximum); +} + +void QPlainTextEdit_SetPlainText(QtObjectPtr ptr, char* text){ + QMetaObject::invokeMethod(static_cast(ptr), "setPlainText", Q_ARG(QString, QString(text))); +} + +void QPlainTextEdit_SetTextCursor(QtObjectPtr ptr, QtObjectPtr cursor){ + static_cast(ptr)->setTextCursor(*static_cast(cursor)); +} + +void QPlainTextEdit_SetUndoRedoEnabled(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setUndoRedoEnabled(enable != 0); +} + +void QPlainTextEdit_ConnectTextChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QPlainTextEdit::textChanged), static_cast(ptr), static_cast(&MyQPlainTextEdit::Signal_TextChanged));; +} + +void QPlainTextEdit_DisconnectTextChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QPlainTextEdit::textChanged), static_cast(ptr), static_cast(&MyQPlainTextEdit::Signal_TextChanged));; +} + +char* QPlainTextEdit_ToPlainText(QtObjectPtr ptr){ + return static_cast(ptr)->toPlainText().toUtf8().data(); +} + +void QPlainTextEdit_Undo(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "undo"); +} + +void QPlainTextEdit_ConnectUndoAvailable(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QPlainTextEdit::undoAvailable), static_cast(ptr), static_cast(&MyQPlainTextEdit::Signal_UndoAvailable));; +} + +void QPlainTextEdit_DisconnectUndoAvailable(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QPlainTextEdit::undoAvailable), static_cast(ptr), static_cast(&MyQPlainTextEdit::Signal_UndoAvailable));; +} + +void QPlainTextEdit_DestroyQPlainTextEdit(QtObjectPtr ptr){ + static_cast(ptr)->~QPlainTextEdit(); +} + diff --git a/widgets/qplaintextedit.go b/widgets/qplaintextedit.go new file mode 100755 index 00000000..3f75d287 --- /dev/null +++ b/widgets/qplaintextedit.go @@ -0,0 +1,585 @@ +package widgets + +//#include "qplaintextedit.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QPlainTextEdit struct { + QAbstractScrollArea +} + +type QPlainTextEditITF interface { + QAbstractScrollAreaITF + QPlainTextEditPTR() *QPlainTextEdit +} + +func PointerFromQPlainTextEdit(ptr QPlainTextEditITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPlainTextEditPTR().Pointer() + } + return nil +} + +func QPlainTextEditFromPointer(ptr unsafe.Pointer) *QPlainTextEdit { + var n = new(QPlainTextEdit) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QPlainTextEdit_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QPlainTextEdit) QPlainTextEditPTR() *QPlainTextEdit { + return ptr +} + +//QPlainTextEdit::LineWrapMode +type QPlainTextEdit__LineWrapMode int + +var ( + QPlainTextEdit__NoWrap = QPlainTextEdit__LineWrapMode(0) + QPlainTextEdit__WidgetWidth = QPlainTextEdit__LineWrapMode(1) +) + +func (ptr *QPlainTextEdit) BackgroundVisible() bool { + if ptr.Pointer() != nil { + return C.QPlainTextEdit_BackgroundVisible(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPlainTextEdit) BlockCount() int { + if ptr.Pointer() != nil { + return int(C.QPlainTextEdit_BlockCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPlainTextEdit) CenterOnScroll() bool { + if ptr.Pointer() != nil { + return C.QPlainTextEdit_CenterOnScroll(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPlainTextEdit) CursorWidth() int { + if ptr.Pointer() != nil { + return int(C.QPlainTextEdit_CursorWidth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPlainTextEdit) IsReadOnly() bool { + if ptr.Pointer() != nil { + return C.QPlainTextEdit_IsReadOnly(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPlainTextEdit) LineWrapMode() QPlainTextEdit__LineWrapMode { + if ptr.Pointer() != nil { + return QPlainTextEdit__LineWrapMode(C.QPlainTextEdit_LineWrapMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPlainTextEdit) OverwriteMode() bool { + if ptr.Pointer() != nil { + return C.QPlainTextEdit_OverwriteMode(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPlainTextEdit) PlaceholderText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QPlainTextEdit_PlaceholderText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QPlainTextEdit) Redo() { + if ptr.Pointer() != nil { + C.QPlainTextEdit_Redo(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QPlainTextEdit) SetBackgroundVisible(visible bool) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_SetBackgroundVisible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(visible))) + } +} + +func (ptr *QPlainTextEdit) SetCenterOnScroll(enabled bool) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_SetCenterOnScroll(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QPlainTextEdit) SetCursorWidth(width int) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_SetCursorWidth(C.QtObjectPtr(ptr.Pointer()), C.int(width)) + } +} + +func (ptr *QPlainTextEdit) SetLineWrapMode(mode QPlainTextEdit__LineWrapMode) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_SetLineWrapMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QPlainTextEdit) SetOverwriteMode(overwrite bool) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_SetOverwriteMode(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(overwrite))) + } +} + +func (ptr *QPlainTextEdit) SetPlaceholderText(placeholderText string) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_SetPlaceholderText(C.QtObjectPtr(ptr.Pointer()), C.CString(placeholderText)) + } +} + +func (ptr *QPlainTextEdit) SetReadOnly(ro bool) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_SetReadOnly(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(ro))) + } +} + +func (ptr *QPlainTextEdit) SetTabChangesFocus(b bool) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_SetTabChangesFocus(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(b))) + } +} + +func (ptr *QPlainTextEdit) SetTabStopWidth(width int) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_SetTabStopWidth(C.QtObjectPtr(ptr.Pointer()), C.int(width)) + } +} + +func (ptr *QPlainTextEdit) SetTextInteractionFlags(flags core.Qt__TextInteractionFlag) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_SetTextInteractionFlags(C.QtObjectPtr(ptr.Pointer()), C.int(flags)) + } +} + +func (ptr *QPlainTextEdit) SetWordWrapMode(policy gui.QTextOption__WrapMode) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_SetWordWrapMode(C.QtObjectPtr(ptr.Pointer()), C.int(policy)) + } +} + +func (ptr *QPlainTextEdit) TabChangesFocus() bool { + if ptr.Pointer() != nil { + return C.QPlainTextEdit_TabChangesFocus(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPlainTextEdit) TabStopWidth() int { + if ptr.Pointer() != nil { + return int(C.QPlainTextEdit_TabStopWidth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPlainTextEdit) TextInteractionFlags() core.Qt__TextInteractionFlag { + if ptr.Pointer() != nil { + return core.Qt__TextInteractionFlag(C.QPlainTextEdit_TextInteractionFlags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPlainTextEdit) WordWrapMode() gui.QTextOption__WrapMode { + if ptr.Pointer() != nil { + return gui.QTextOption__WrapMode(C.QPlainTextEdit_WordWrapMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPlainTextEdit) ZoomIn(ran int) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_ZoomIn(C.QtObjectPtr(ptr.Pointer()), C.int(ran)) + } +} + +func (ptr *QPlainTextEdit) ZoomOut(ran int) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_ZoomOut(C.QtObjectPtr(ptr.Pointer()), C.int(ran)) + } +} + +func NewQPlainTextEdit(parent QWidgetITF) *QPlainTextEdit { + return QPlainTextEditFromPointer(unsafe.Pointer(C.QPlainTextEdit_NewQPlainTextEdit(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQPlainTextEdit2(text string, parent QWidgetITF) *QPlainTextEdit { + return QPlainTextEditFromPointer(unsafe.Pointer(C.QPlainTextEdit_NewQPlainTextEdit2(C.CString(text), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QPlainTextEdit) AnchorAt(pos core.QPointITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QPlainTextEdit_AnchorAt(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(pos)))) + } + return "" +} + +func (ptr *QPlainTextEdit) AppendPlainText(text string) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_AppendPlainText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QPlainTextEdit) CenterCursor() { + if ptr.Pointer() != nil { + C.QPlainTextEdit_CenterCursor(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QPlainTextEdit) AppendHtml(html string) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_AppendHtml(C.QtObjectPtr(ptr.Pointer()), C.CString(html)) + } +} + +func (ptr *QPlainTextEdit) ConnectBlockCountChanged(f func(newBlockCount int)) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_ConnectBlockCountChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "blockCountChanged", f) + } +} + +func (ptr *QPlainTextEdit) DisconnectBlockCountChanged() { + if ptr.Pointer() != nil { + C.QPlainTextEdit_DisconnectBlockCountChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "blockCountChanged") + } +} + +//export callbackQPlainTextEditBlockCountChanged +func callbackQPlainTextEditBlockCountChanged(ptrName *C.char, newBlockCount C.int) { + qt.GetSignal(C.GoString(ptrName), "blockCountChanged").(func(int))(int(newBlockCount)) +} + +func (ptr *QPlainTextEdit) CanPaste() bool { + if ptr.Pointer() != nil { + return C.QPlainTextEdit_CanPaste(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPlainTextEdit) Clear() { + if ptr.Pointer() != nil { + C.QPlainTextEdit_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QPlainTextEdit) Copy() { + if ptr.Pointer() != nil { + C.QPlainTextEdit_Copy(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QPlainTextEdit) ConnectCopyAvailable(f func(yes bool)) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_ConnectCopyAvailable(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "copyAvailable", f) + } +} + +func (ptr *QPlainTextEdit) DisconnectCopyAvailable() { + if ptr.Pointer() != nil { + C.QPlainTextEdit_DisconnectCopyAvailable(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "copyAvailable") + } +} + +//export callbackQPlainTextEditCopyAvailable +func callbackQPlainTextEditCopyAvailable(ptrName *C.char, yes C.int) { + qt.GetSignal(C.GoString(ptrName), "copyAvailable").(func(bool))(int(yes) != 0) +} + +func (ptr *QPlainTextEdit) CreateStandardContextMenu() *QMenu { + if ptr.Pointer() != nil { + return QMenuFromPointer(unsafe.Pointer(C.QPlainTextEdit_CreateStandardContextMenu(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QPlainTextEdit) CreateStandardContextMenu2(position core.QPointITF) *QMenu { + if ptr.Pointer() != nil { + return QMenuFromPointer(unsafe.Pointer(C.QPlainTextEdit_CreateStandardContextMenu2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(position))))) + } + return nil +} + +func (ptr *QPlainTextEdit) ConnectCursorPositionChanged(f func()) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_ConnectCursorPositionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "cursorPositionChanged", f) + } +} + +func (ptr *QPlainTextEdit) DisconnectCursorPositionChanged() { + if ptr.Pointer() != nil { + C.QPlainTextEdit_DisconnectCursorPositionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "cursorPositionChanged") + } +} + +//export callbackQPlainTextEditCursorPositionChanged +func callbackQPlainTextEditCursorPositionChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "cursorPositionChanged").(func())() +} + +func (ptr *QPlainTextEdit) Cut() { + if ptr.Pointer() != nil { + C.QPlainTextEdit_Cut(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QPlainTextEdit) Document() *gui.QTextDocument { + if ptr.Pointer() != nil { + return gui.QTextDocumentFromPointer(unsafe.Pointer(C.QPlainTextEdit_Document(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QPlainTextEdit) DocumentTitle() string { + if ptr.Pointer() != nil { + return C.GoString(C.QPlainTextEdit_DocumentTitle(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QPlainTextEdit) EnsureCursorVisible() { + if ptr.Pointer() != nil { + C.QPlainTextEdit_EnsureCursorVisible(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QPlainTextEdit) InputMethodQuery(property core.Qt__InputMethodQuery) string { + if ptr.Pointer() != nil { + return C.GoString(C.QPlainTextEdit_InputMethodQuery(C.QtObjectPtr(ptr.Pointer()), C.int(property))) + } + return "" +} + +func (ptr *QPlainTextEdit) InsertPlainText(text string) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_InsertPlainText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QPlainTextEdit) IsUndoRedoEnabled() bool { + if ptr.Pointer() != nil { + return C.QPlainTextEdit_IsUndoRedoEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPlainTextEdit) LoadResource(ty int, name string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QPlainTextEdit_LoadResource(C.QtObjectPtr(ptr.Pointer()), C.int(ty), C.CString(name))) + } + return "" +} + +func (ptr *QPlainTextEdit) MaximumBlockCount() int { + if ptr.Pointer() != nil { + return int(C.QPlainTextEdit_MaximumBlockCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QPlainTextEdit) MergeCurrentCharFormat(modifier gui.QTextCharFormatITF) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_MergeCurrentCharFormat(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQTextCharFormat(modifier))) + } +} + +func (ptr *QPlainTextEdit) ConnectModificationChanged(f func(changed bool)) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_ConnectModificationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "modificationChanged", f) + } +} + +func (ptr *QPlainTextEdit) DisconnectModificationChanged() { + if ptr.Pointer() != nil { + C.QPlainTextEdit_DisconnectModificationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "modificationChanged") + } +} + +//export callbackQPlainTextEditModificationChanged +func callbackQPlainTextEditModificationChanged(ptrName *C.char, changed C.int) { + qt.GetSignal(C.GoString(ptrName), "modificationChanged").(func(bool))(int(changed) != 0) +} + +func (ptr *QPlainTextEdit) MoveCursor(operation gui.QTextCursor__MoveOperation, mode gui.QTextCursor__MoveMode) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_MoveCursor(C.QtObjectPtr(ptr.Pointer()), C.int(operation), C.int(mode)) + } +} + +func (ptr *QPlainTextEdit) Paste() { + if ptr.Pointer() != nil { + C.QPlainTextEdit_Paste(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QPlainTextEdit) Print(printer gui.QPagedPaintDeviceITF) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_Print(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPagedPaintDevice(printer))) + } +} + +func (ptr *QPlainTextEdit) ConnectRedoAvailable(f func(available bool)) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_ConnectRedoAvailable(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "redoAvailable", f) + } +} + +func (ptr *QPlainTextEdit) DisconnectRedoAvailable() { + if ptr.Pointer() != nil { + C.QPlainTextEdit_DisconnectRedoAvailable(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "redoAvailable") + } +} + +//export callbackQPlainTextEditRedoAvailable +func callbackQPlainTextEditRedoAvailable(ptrName *C.char, available C.int) { + qt.GetSignal(C.GoString(ptrName), "redoAvailable").(func(bool))(int(available) != 0) +} + +func (ptr *QPlainTextEdit) SelectAll() { + if ptr.Pointer() != nil { + C.QPlainTextEdit_SelectAll(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QPlainTextEdit) ConnectSelectionChanged(f func()) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_ConnectSelectionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "selectionChanged", f) + } +} + +func (ptr *QPlainTextEdit) DisconnectSelectionChanged() { + if ptr.Pointer() != nil { + C.QPlainTextEdit_DisconnectSelectionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "selectionChanged") + } +} + +//export callbackQPlainTextEditSelectionChanged +func callbackQPlainTextEditSelectionChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "selectionChanged").(func())() +} + +func (ptr *QPlainTextEdit) SetCurrentCharFormat(format gui.QTextCharFormatITF) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_SetCurrentCharFormat(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQTextCharFormat(format))) + } +} + +func (ptr *QPlainTextEdit) SetDocument(document gui.QTextDocumentITF) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_SetDocument(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQTextDocument(document))) + } +} + +func (ptr *QPlainTextEdit) SetDocumentTitle(title string) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_SetDocumentTitle(C.QtObjectPtr(ptr.Pointer()), C.CString(title)) + } +} + +func (ptr *QPlainTextEdit) SetMaximumBlockCount(maximum int) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_SetMaximumBlockCount(C.QtObjectPtr(ptr.Pointer()), C.int(maximum)) + } +} + +func (ptr *QPlainTextEdit) SetPlainText(text string) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_SetPlainText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QPlainTextEdit) SetTextCursor(cursor gui.QTextCursorITF) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_SetTextCursor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQTextCursor(cursor))) + } +} + +func (ptr *QPlainTextEdit) SetUndoRedoEnabled(enable bool) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_SetUndoRedoEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QPlainTextEdit) ConnectTextChanged(f func()) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_ConnectTextChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "textChanged", f) + } +} + +func (ptr *QPlainTextEdit) DisconnectTextChanged() { + if ptr.Pointer() != nil { + C.QPlainTextEdit_DisconnectTextChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "textChanged") + } +} + +//export callbackQPlainTextEditTextChanged +func callbackQPlainTextEditTextChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "textChanged").(func())() +} + +func (ptr *QPlainTextEdit) ToPlainText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QPlainTextEdit_ToPlainText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QPlainTextEdit) Undo() { + if ptr.Pointer() != nil { + C.QPlainTextEdit_Undo(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QPlainTextEdit) ConnectUndoAvailable(f func(available bool)) { + if ptr.Pointer() != nil { + C.QPlainTextEdit_ConnectUndoAvailable(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "undoAvailable", f) + } +} + +func (ptr *QPlainTextEdit) DisconnectUndoAvailable() { + if ptr.Pointer() != nil { + C.QPlainTextEdit_DisconnectUndoAvailable(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "undoAvailable") + } +} + +//export callbackQPlainTextEditUndoAvailable +func callbackQPlainTextEditUndoAvailable(ptrName *C.char, available C.int) { + qt.GetSignal(C.GoString(ptrName), "undoAvailable").(func(bool))(int(available) != 0) +} + +func (ptr *QPlainTextEdit) DestroyQPlainTextEdit() { + if ptr.Pointer() != nil { + C.QPlainTextEdit_DestroyQPlainTextEdit(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qplaintextedit.h b/widgets/qplaintextedit.h new file mode 100755 index 00000000..11d86e27 --- /dev/null +++ b/widgets/qplaintextedit.h @@ -0,0 +1,86 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QPlainTextEdit_BackgroundVisible(QtObjectPtr ptr); +int QPlainTextEdit_BlockCount(QtObjectPtr ptr); +int QPlainTextEdit_CenterOnScroll(QtObjectPtr ptr); +int QPlainTextEdit_CursorWidth(QtObjectPtr ptr); +int QPlainTextEdit_IsReadOnly(QtObjectPtr ptr); +int QPlainTextEdit_LineWrapMode(QtObjectPtr ptr); +int QPlainTextEdit_OverwriteMode(QtObjectPtr ptr); +char* QPlainTextEdit_PlaceholderText(QtObjectPtr ptr); +void QPlainTextEdit_Redo(QtObjectPtr ptr); +void QPlainTextEdit_SetBackgroundVisible(QtObjectPtr ptr, int visible); +void QPlainTextEdit_SetCenterOnScroll(QtObjectPtr ptr, int enabled); +void QPlainTextEdit_SetCursorWidth(QtObjectPtr ptr, int width); +void QPlainTextEdit_SetLineWrapMode(QtObjectPtr ptr, int mode); +void QPlainTextEdit_SetOverwriteMode(QtObjectPtr ptr, int overwrite); +void QPlainTextEdit_SetPlaceholderText(QtObjectPtr ptr, char* placeholderText); +void QPlainTextEdit_SetReadOnly(QtObjectPtr ptr, int ro); +void QPlainTextEdit_SetTabChangesFocus(QtObjectPtr ptr, int b); +void QPlainTextEdit_SetTabStopWidth(QtObjectPtr ptr, int width); +void QPlainTextEdit_SetTextInteractionFlags(QtObjectPtr ptr, int flags); +void QPlainTextEdit_SetWordWrapMode(QtObjectPtr ptr, int policy); +int QPlainTextEdit_TabChangesFocus(QtObjectPtr ptr); +int QPlainTextEdit_TabStopWidth(QtObjectPtr ptr); +int QPlainTextEdit_TextInteractionFlags(QtObjectPtr ptr); +int QPlainTextEdit_WordWrapMode(QtObjectPtr ptr); +void QPlainTextEdit_ZoomIn(QtObjectPtr ptr, int ran); +void QPlainTextEdit_ZoomOut(QtObjectPtr ptr, int ran); +QtObjectPtr QPlainTextEdit_NewQPlainTextEdit(QtObjectPtr parent); +QtObjectPtr QPlainTextEdit_NewQPlainTextEdit2(char* text, QtObjectPtr parent); +char* QPlainTextEdit_AnchorAt(QtObjectPtr ptr, QtObjectPtr pos); +void QPlainTextEdit_AppendPlainText(QtObjectPtr ptr, char* text); +void QPlainTextEdit_CenterCursor(QtObjectPtr ptr); +void QPlainTextEdit_AppendHtml(QtObjectPtr ptr, char* html); +void QPlainTextEdit_ConnectBlockCountChanged(QtObjectPtr ptr); +void QPlainTextEdit_DisconnectBlockCountChanged(QtObjectPtr ptr); +int QPlainTextEdit_CanPaste(QtObjectPtr ptr); +void QPlainTextEdit_Clear(QtObjectPtr ptr); +void QPlainTextEdit_Copy(QtObjectPtr ptr); +void QPlainTextEdit_ConnectCopyAvailable(QtObjectPtr ptr); +void QPlainTextEdit_DisconnectCopyAvailable(QtObjectPtr ptr); +QtObjectPtr QPlainTextEdit_CreateStandardContextMenu(QtObjectPtr ptr); +QtObjectPtr QPlainTextEdit_CreateStandardContextMenu2(QtObjectPtr ptr, QtObjectPtr position); +void QPlainTextEdit_ConnectCursorPositionChanged(QtObjectPtr ptr); +void QPlainTextEdit_DisconnectCursorPositionChanged(QtObjectPtr ptr); +void QPlainTextEdit_Cut(QtObjectPtr ptr); +QtObjectPtr QPlainTextEdit_Document(QtObjectPtr ptr); +char* QPlainTextEdit_DocumentTitle(QtObjectPtr ptr); +void QPlainTextEdit_EnsureCursorVisible(QtObjectPtr ptr); +char* QPlainTextEdit_InputMethodQuery(QtObjectPtr ptr, int property); +void QPlainTextEdit_InsertPlainText(QtObjectPtr ptr, char* text); +int QPlainTextEdit_IsUndoRedoEnabled(QtObjectPtr ptr); +char* QPlainTextEdit_LoadResource(QtObjectPtr ptr, int ty, char* name); +int QPlainTextEdit_MaximumBlockCount(QtObjectPtr ptr); +void QPlainTextEdit_MergeCurrentCharFormat(QtObjectPtr ptr, QtObjectPtr modifier); +void QPlainTextEdit_ConnectModificationChanged(QtObjectPtr ptr); +void QPlainTextEdit_DisconnectModificationChanged(QtObjectPtr ptr); +void QPlainTextEdit_MoveCursor(QtObjectPtr ptr, int operation, int mode); +void QPlainTextEdit_Paste(QtObjectPtr ptr); +void QPlainTextEdit_Print(QtObjectPtr ptr, QtObjectPtr printer); +void QPlainTextEdit_ConnectRedoAvailable(QtObjectPtr ptr); +void QPlainTextEdit_DisconnectRedoAvailable(QtObjectPtr ptr); +void QPlainTextEdit_SelectAll(QtObjectPtr ptr); +void QPlainTextEdit_ConnectSelectionChanged(QtObjectPtr ptr); +void QPlainTextEdit_DisconnectSelectionChanged(QtObjectPtr ptr); +void QPlainTextEdit_SetCurrentCharFormat(QtObjectPtr ptr, QtObjectPtr format); +void QPlainTextEdit_SetDocument(QtObjectPtr ptr, QtObjectPtr document); +void QPlainTextEdit_SetDocumentTitle(QtObjectPtr ptr, char* title); +void QPlainTextEdit_SetMaximumBlockCount(QtObjectPtr ptr, int maximum); +void QPlainTextEdit_SetPlainText(QtObjectPtr ptr, char* text); +void QPlainTextEdit_SetTextCursor(QtObjectPtr ptr, QtObjectPtr cursor); +void QPlainTextEdit_SetUndoRedoEnabled(QtObjectPtr ptr, int enable); +void QPlainTextEdit_ConnectTextChanged(QtObjectPtr ptr); +void QPlainTextEdit_DisconnectTextChanged(QtObjectPtr ptr); +char* QPlainTextEdit_ToPlainText(QtObjectPtr ptr); +void QPlainTextEdit_Undo(QtObjectPtr ptr); +void QPlainTextEdit_ConnectUndoAvailable(QtObjectPtr ptr); +void QPlainTextEdit_DisconnectUndoAvailable(QtObjectPtr ptr); +void QPlainTextEdit_DestroyQPlainTextEdit(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qprogressbar.cpp b/widgets/qprogressbar.cpp new file mode 100755 index 00000000..109b8a8f --- /dev/null +++ b/widgets/qprogressbar.cpp @@ -0,0 +1,120 @@ +#include "qprogressbar.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQProgressBar: public QProgressBar { +public: +void Signal_ValueChanged(int value){callbackQProgressBarValueChanged(this->objectName().toUtf8().data(), value);}; +}; + +int QProgressBar_Alignment(QtObjectPtr ptr){ + return static_cast(ptr)->alignment(); +} + +char* QProgressBar_Format(QtObjectPtr ptr){ + return static_cast(ptr)->format().toUtf8().data(); +} + +int QProgressBar_InvertedAppearance(QtObjectPtr ptr){ + return static_cast(ptr)->invertedAppearance(); +} + +int QProgressBar_IsTextVisible(QtObjectPtr ptr){ + return static_cast(ptr)->isTextVisible(); +} + +int QProgressBar_Maximum(QtObjectPtr ptr){ + return static_cast(ptr)->maximum(); +} + +int QProgressBar_Minimum(QtObjectPtr ptr){ + return static_cast(ptr)->minimum(); +} + +int QProgressBar_Orientation(QtObjectPtr ptr){ + return static_cast(ptr)->orientation(); +} + +void QProgressBar_ResetFormat(QtObjectPtr ptr){ + static_cast(ptr)->resetFormat(); +} + +void QProgressBar_SetAlignment(QtObjectPtr ptr, int alignment){ + static_cast(ptr)->setAlignment(static_cast(alignment)); +} + +void QProgressBar_SetFormat(QtObjectPtr ptr, char* format){ + static_cast(ptr)->setFormat(QString(format)); +} + +void QProgressBar_SetInvertedAppearance(QtObjectPtr ptr, int invert){ + static_cast(ptr)->setInvertedAppearance(invert != 0); +} + +void QProgressBar_SetMaximum(QtObjectPtr ptr, int maximum){ + QMetaObject::invokeMethod(static_cast(ptr), "setMaximum", Q_ARG(int, maximum)); +} + +void QProgressBar_SetMinimum(QtObjectPtr ptr, int minimum){ + QMetaObject::invokeMethod(static_cast(ptr), "setMinimum", Q_ARG(int, minimum)); +} + +void QProgressBar_SetOrientation(QtObjectPtr ptr, int v){ + QMetaObject::invokeMethod(static_cast(ptr), "setOrientation", Q_ARG(Qt::Orientation, static_cast(v))); +} + +void QProgressBar_SetTextDirection(QtObjectPtr ptr, int textDirection){ + static_cast(ptr)->setTextDirection(static_cast(textDirection)); +} + +void QProgressBar_SetTextVisible(QtObjectPtr ptr, int visible){ + static_cast(ptr)->setTextVisible(visible != 0); +} + +void QProgressBar_SetValue(QtObjectPtr ptr, int value){ + QMetaObject::invokeMethod(static_cast(ptr), "setValue", Q_ARG(int, value)); +} + +char* QProgressBar_Text(QtObjectPtr ptr){ + return static_cast(ptr)->text().toUtf8().data(); +} + +int QProgressBar_TextDirection(QtObjectPtr ptr){ + return static_cast(ptr)->textDirection(); +} + +int QProgressBar_Value(QtObjectPtr ptr){ + return static_cast(ptr)->value(); +} + +QtObjectPtr QProgressBar_NewQProgressBar(QtObjectPtr parent){ + return new QProgressBar(static_cast(parent)); +} + +void QProgressBar_Reset(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "reset"); +} + +void QProgressBar_SetRange(QtObjectPtr ptr, int minimum, int maximum){ + QMetaObject::invokeMethod(static_cast(ptr), "setRange", Q_ARG(int, minimum), Q_ARG(int, maximum)); +} + +void QProgressBar_ConnectValueChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QProgressBar::valueChanged), static_cast(ptr), static_cast(&MyQProgressBar::Signal_ValueChanged));; +} + +void QProgressBar_DisconnectValueChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QProgressBar::valueChanged), static_cast(ptr), static_cast(&MyQProgressBar::Signal_ValueChanged));; +} + +void QProgressBar_DestroyQProgressBar(QtObjectPtr ptr){ + static_cast(ptr)->~QProgressBar(); +} + diff --git a/widgets/qprogressbar.go b/widgets/qprogressbar.go new file mode 100755 index 00000000..005f78ac --- /dev/null +++ b/widgets/qprogressbar.go @@ -0,0 +1,218 @@ +package widgets + +//#include "qprogressbar.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QProgressBar struct { + QWidget +} + +type QProgressBarITF interface { + QWidgetITF + QProgressBarPTR() *QProgressBar +} + +func PointerFromQProgressBar(ptr QProgressBarITF) unsafe.Pointer { + if ptr != nil { + return ptr.QProgressBarPTR().Pointer() + } + return nil +} + +func QProgressBarFromPointer(ptr unsafe.Pointer) *QProgressBar { + var n = new(QProgressBar) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QProgressBar_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QProgressBar) QProgressBarPTR() *QProgressBar { + return ptr +} + +//QProgressBar::Direction +type QProgressBar__Direction int + +var ( + QProgressBar__TopToBottom = QProgressBar__Direction(0) + QProgressBar__BottomToTop = QProgressBar__Direction(1) +) + +func (ptr *QProgressBar) Alignment() core.Qt__AlignmentFlag { + if ptr.Pointer() != nil { + return core.Qt__AlignmentFlag(C.QProgressBar_Alignment(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QProgressBar) Format() string { + if ptr.Pointer() != nil { + return C.GoString(C.QProgressBar_Format(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QProgressBar) InvertedAppearance() bool { + if ptr.Pointer() != nil { + return C.QProgressBar_InvertedAppearance(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QProgressBar) IsTextVisible() bool { + if ptr.Pointer() != nil { + return C.QProgressBar_IsTextVisible(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QProgressBar) Maximum() int { + if ptr.Pointer() != nil { + return int(C.QProgressBar_Maximum(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QProgressBar) Minimum() int { + if ptr.Pointer() != nil { + return int(C.QProgressBar_Minimum(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QProgressBar) Orientation() core.Qt__Orientation { + if ptr.Pointer() != nil { + return core.Qt__Orientation(C.QProgressBar_Orientation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QProgressBar) ResetFormat() { + if ptr.Pointer() != nil { + C.QProgressBar_ResetFormat(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QProgressBar) SetAlignment(alignment core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QProgressBar_SetAlignment(C.QtObjectPtr(ptr.Pointer()), C.int(alignment)) + } +} + +func (ptr *QProgressBar) SetFormat(format string) { + if ptr.Pointer() != nil { + C.QProgressBar_SetFormat(C.QtObjectPtr(ptr.Pointer()), C.CString(format)) + } +} + +func (ptr *QProgressBar) SetInvertedAppearance(invert bool) { + if ptr.Pointer() != nil { + C.QProgressBar_SetInvertedAppearance(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(invert))) + } +} + +func (ptr *QProgressBar) SetMaximum(maximum int) { + if ptr.Pointer() != nil { + C.QProgressBar_SetMaximum(C.QtObjectPtr(ptr.Pointer()), C.int(maximum)) + } +} + +func (ptr *QProgressBar) SetMinimum(minimum int) { + if ptr.Pointer() != nil { + C.QProgressBar_SetMinimum(C.QtObjectPtr(ptr.Pointer()), C.int(minimum)) + } +} + +func (ptr *QProgressBar) SetOrientation(v core.Qt__Orientation) { + if ptr.Pointer() != nil { + C.QProgressBar_SetOrientation(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QProgressBar) SetTextDirection(textDirection QProgressBar__Direction) { + if ptr.Pointer() != nil { + C.QProgressBar_SetTextDirection(C.QtObjectPtr(ptr.Pointer()), C.int(textDirection)) + } +} + +func (ptr *QProgressBar) SetTextVisible(visible bool) { + if ptr.Pointer() != nil { + C.QProgressBar_SetTextVisible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(visible))) + } +} + +func (ptr *QProgressBar) SetValue(value int) { + if ptr.Pointer() != nil { + C.QProgressBar_SetValue(C.QtObjectPtr(ptr.Pointer()), C.int(value)) + } +} + +func (ptr *QProgressBar) Text() string { + if ptr.Pointer() != nil { + return C.GoString(C.QProgressBar_Text(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QProgressBar) TextDirection() QProgressBar__Direction { + if ptr.Pointer() != nil { + return QProgressBar__Direction(C.QProgressBar_TextDirection(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QProgressBar) Value() int { + if ptr.Pointer() != nil { + return int(C.QProgressBar_Value(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQProgressBar(parent QWidgetITF) *QProgressBar { + return QProgressBarFromPointer(unsafe.Pointer(C.QProgressBar_NewQProgressBar(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QProgressBar) Reset() { + if ptr.Pointer() != nil { + C.QProgressBar_Reset(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QProgressBar) SetRange(minimum int, maximum int) { + if ptr.Pointer() != nil { + C.QProgressBar_SetRange(C.QtObjectPtr(ptr.Pointer()), C.int(minimum), C.int(maximum)) + } +} + +func (ptr *QProgressBar) ConnectValueChanged(f func(value int)) { + if ptr.Pointer() != nil { + C.QProgressBar_ConnectValueChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "valueChanged", f) + } +} + +func (ptr *QProgressBar) DisconnectValueChanged() { + if ptr.Pointer() != nil { + C.QProgressBar_DisconnectValueChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "valueChanged") + } +} + +//export callbackQProgressBarValueChanged +func callbackQProgressBarValueChanged(ptrName *C.char, value C.int) { + qt.GetSignal(C.GoString(ptrName), "valueChanged").(func(int))(int(value)) +} + +func (ptr *QProgressBar) DestroyQProgressBar() { + if ptr.Pointer() != nil { + C.QProgressBar_DestroyQProgressBar(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qprogressbar.h b/widgets/qprogressbar.h new file mode 100755 index 00000000..de93a8cd --- /dev/null +++ b/widgets/qprogressbar.h @@ -0,0 +1,35 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QProgressBar_Alignment(QtObjectPtr ptr); +char* QProgressBar_Format(QtObjectPtr ptr); +int QProgressBar_InvertedAppearance(QtObjectPtr ptr); +int QProgressBar_IsTextVisible(QtObjectPtr ptr); +int QProgressBar_Maximum(QtObjectPtr ptr); +int QProgressBar_Minimum(QtObjectPtr ptr); +int QProgressBar_Orientation(QtObjectPtr ptr); +void QProgressBar_ResetFormat(QtObjectPtr ptr); +void QProgressBar_SetAlignment(QtObjectPtr ptr, int alignment); +void QProgressBar_SetFormat(QtObjectPtr ptr, char* format); +void QProgressBar_SetInvertedAppearance(QtObjectPtr ptr, int invert); +void QProgressBar_SetMaximum(QtObjectPtr ptr, int maximum); +void QProgressBar_SetMinimum(QtObjectPtr ptr, int minimum); +void QProgressBar_SetOrientation(QtObjectPtr ptr, int v); +void QProgressBar_SetTextDirection(QtObjectPtr ptr, int textDirection); +void QProgressBar_SetTextVisible(QtObjectPtr ptr, int visible); +void QProgressBar_SetValue(QtObjectPtr ptr, int value); +char* QProgressBar_Text(QtObjectPtr ptr); +int QProgressBar_TextDirection(QtObjectPtr ptr); +int QProgressBar_Value(QtObjectPtr ptr); +QtObjectPtr QProgressBar_NewQProgressBar(QtObjectPtr parent); +void QProgressBar_Reset(QtObjectPtr ptr); +void QProgressBar_SetRange(QtObjectPtr ptr, int minimum, int maximum); +void QProgressBar_ConnectValueChanged(QtObjectPtr ptr); +void QProgressBar_DisconnectValueChanged(QtObjectPtr ptr); +void QProgressBar_DestroyQProgressBar(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qprogressdialog.cpp b/widgets/qprogressdialog.cpp new file mode 100755 index 00000000..b9d39bce --- /dev/null +++ b/widgets/qprogressdialog.cpp @@ -0,0 +1,131 @@ +#include "qprogressdialog.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQProgressDialog: public QProgressDialog { +public: +void Signal_Canceled(){callbackQProgressDialogCanceled(this->objectName().toUtf8().data());}; +}; + +int QProgressDialog_AutoClose(QtObjectPtr ptr){ + return static_cast(ptr)->autoClose(); +} + +int QProgressDialog_AutoReset(QtObjectPtr ptr){ + return static_cast(ptr)->autoReset(); +} + +char* QProgressDialog_LabelText(QtObjectPtr ptr){ + return static_cast(ptr)->labelText().toUtf8().data(); +} + +int QProgressDialog_Maximum(QtObjectPtr ptr){ + return static_cast(ptr)->maximum(); +} + +int QProgressDialog_Minimum(QtObjectPtr ptr){ + return static_cast(ptr)->minimum(); +} + +int QProgressDialog_MinimumDuration(QtObjectPtr ptr){ + return static_cast(ptr)->minimumDuration(); +} + +void QProgressDialog_SetAutoClose(QtObjectPtr ptr, int close){ + static_cast(ptr)->setAutoClose(close != 0); +} + +void QProgressDialog_SetAutoReset(QtObjectPtr ptr, int reset){ + static_cast(ptr)->setAutoReset(reset != 0); +} + +void QProgressDialog_SetLabelText(QtObjectPtr ptr, char* text){ + QMetaObject::invokeMethod(static_cast(ptr), "setLabelText", Q_ARG(QString, QString(text))); +} + +void QProgressDialog_SetMaximum(QtObjectPtr ptr, int maximum){ + QMetaObject::invokeMethod(static_cast(ptr), "setMaximum", Q_ARG(int, maximum)); +} + +void QProgressDialog_SetMinimum(QtObjectPtr ptr, int minimum){ + QMetaObject::invokeMethod(static_cast(ptr), "setMinimum", Q_ARG(int, minimum)); +} + +void QProgressDialog_SetMinimumDuration(QtObjectPtr ptr, int ms){ + QMetaObject::invokeMethod(static_cast(ptr), "setMinimumDuration", Q_ARG(int, ms)); +} + +void QProgressDialog_SetValue(QtObjectPtr ptr, int progress){ + QMetaObject::invokeMethod(static_cast(ptr), "setValue", Q_ARG(int, progress)); +} + +int QProgressDialog_Value(QtObjectPtr ptr){ + return static_cast(ptr)->value(); +} + +int QProgressDialog_WasCanceled(QtObjectPtr ptr){ + return static_cast(ptr)->wasCanceled(); +} + +QtObjectPtr QProgressDialog_NewQProgressDialog(QtObjectPtr parent, int f){ + return new QProgressDialog(static_cast(parent), static_cast(f)); +} + +QtObjectPtr QProgressDialog_NewQProgressDialog2(char* labelText, char* cancelButtonText, int minimum, int maximum, QtObjectPtr parent, int f){ + return new QProgressDialog(QString(labelText), QString(cancelButtonText), minimum, maximum, static_cast(parent), static_cast(f)); +} + +void QProgressDialog_Cancel(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "cancel"); +} + +void QProgressDialog_ConnectCanceled(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QProgressDialog::canceled), static_cast(ptr), static_cast(&MyQProgressDialog::Signal_Canceled));; +} + +void QProgressDialog_DisconnectCanceled(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QProgressDialog::canceled), static_cast(ptr), static_cast(&MyQProgressDialog::Signal_Canceled));; +} + +void QProgressDialog_Open(QtObjectPtr ptr, QtObjectPtr receiver, char* member){ + static_cast(ptr)->open(static_cast(receiver), const_cast(member)); +} + +void QProgressDialog_Reset(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "reset"); +} + +void QProgressDialog_SetBar(QtObjectPtr ptr, QtObjectPtr bar){ + static_cast(ptr)->setBar(static_cast(bar)); +} + +void QProgressDialog_SetCancelButton(QtObjectPtr ptr, QtObjectPtr cancelButton){ + static_cast(ptr)->setCancelButton(static_cast(cancelButton)); +} + +void QProgressDialog_SetCancelButtonText(QtObjectPtr ptr, char* cancelButtonText){ + QMetaObject::invokeMethod(static_cast(ptr), "setCancelButtonText", Q_ARG(QString, QString(cancelButtonText))); +} + +void QProgressDialog_SetLabel(QtObjectPtr ptr, QtObjectPtr label){ + static_cast(ptr)->setLabel(static_cast(label)); +} + +void QProgressDialog_SetRange(QtObjectPtr ptr, int minimum, int maximum){ + QMetaObject::invokeMethod(static_cast(ptr), "setRange", Q_ARG(int, minimum), Q_ARG(int, maximum)); +} + +void QProgressDialog_DestroyQProgressDialog(QtObjectPtr ptr){ + static_cast(ptr)->~QProgressDialog(); +} + diff --git a/widgets/qprogressdialog.go b/widgets/qprogressdialog.go new file mode 100755 index 00000000..2cc9aa76 --- /dev/null +++ b/widgets/qprogressdialog.go @@ -0,0 +1,218 @@ +package widgets + +//#include "qprogressdialog.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QProgressDialog struct { + QDialog +} + +type QProgressDialogITF interface { + QDialogITF + QProgressDialogPTR() *QProgressDialog +} + +func PointerFromQProgressDialog(ptr QProgressDialogITF) unsafe.Pointer { + if ptr != nil { + return ptr.QProgressDialogPTR().Pointer() + } + return nil +} + +func QProgressDialogFromPointer(ptr unsafe.Pointer) *QProgressDialog { + var n = new(QProgressDialog) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QProgressDialog_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QProgressDialog) QProgressDialogPTR() *QProgressDialog { + return ptr +} + +func (ptr *QProgressDialog) AutoClose() bool { + if ptr.Pointer() != nil { + return C.QProgressDialog_AutoClose(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QProgressDialog) AutoReset() bool { + if ptr.Pointer() != nil { + return C.QProgressDialog_AutoReset(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QProgressDialog) LabelText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QProgressDialog_LabelText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QProgressDialog) Maximum() int { + if ptr.Pointer() != nil { + return int(C.QProgressDialog_Maximum(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QProgressDialog) Minimum() int { + if ptr.Pointer() != nil { + return int(C.QProgressDialog_Minimum(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QProgressDialog) MinimumDuration() int { + if ptr.Pointer() != nil { + return int(C.QProgressDialog_MinimumDuration(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QProgressDialog) SetAutoClose(close bool) { + if ptr.Pointer() != nil { + C.QProgressDialog_SetAutoClose(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(close))) + } +} + +func (ptr *QProgressDialog) SetAutoReset(reset bool) { + if ptr.Pointer() != nil { + C.QProgressDialog_SetAutoReset(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(reset))) + } +} + +func (ptr *QProgressDialog) SetLabelText(text string) { + if ptr.Pointer() != nil { + C.QProgressDialog_SetLabelText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QProgressDialog) SetMaximum(maximum int) { + if ptr.Pointer() != nil { + C.QProgressDialog_SetMaximum(C.QtObjectPtr(ptr.Pointer()), C.int(maximum)) + } +} + +func (ptr *QProgressDialog) SetMinimum(minimum int) { + if ptr.Pointer() != nil { + C.QProgressDialog_SetMinimum(C.QtObjectPtr(ptr.Pointer()), C.int(minimum)) + } +} + +func (ptr *QProgressDialog) SetMinimumDuration(ms int) { + if ptr.Pointer() != nil { + C.QProgressDialog_SetMinimumDuration(C.QtObjectPtr(ptr.Pointer()), C.int(ms)) + } +} + +func (ptr *QProgressDialog) SetValue(progress int) { + if ptr.Pointer() != nil { + C.QProgressDialog_SetValue(C.QtObjectPtr(ptr.Pointer()), C.int(progress)) + } +} + +func (ptr *QProgressDialog) Value() int { + if ptr.Pointer() != nil { + return int(C.QProgressDialog_Value(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QProgressDialog) WasCanceled() bool { + if ptr.Pointer() != nil { + return C.QProgressDialog_WasCanceled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func NewQProgressDialog(parent QWidgetITF, f core.Qt__WindowType) *QProgressDialog { + return QProgressDialogFromPointer(unsafe.Pointer(C.QProgressDialog_NewQProgressDialog(C.QtObjectPtr(PointerFromQWidget(parent)), C.int(f)))) +} + +func NewQProgressDialog2(labelText string, cancelButtonText string, minimum int, maximum int, parent QWidgetITF, f core.Qt__WindowType) *QProgressDialog { + return QProgressDialogFromPointer(unsafe.Pointer(C.QProgressDialog_NewQProgressDialog2(C.CString(labelText), C.CString(cancelButtonText), C.int(minimum), C.int(maximum), C.QtObjectPtr(PointerFromQWidget(parent)), C.int(f)))) +} + +func (ptr *QProgressDialog) Cancel() { + if ptr.Pointer() != nil { + C.QProgressDialog_Cancel(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QProgressDialog) ConnectCanceled(f func()) { + if ptr.Pointer() != nil { + C.QProgressDialog_ConnectCanceled(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "canceled", f) + } +} + +func (ptr *QProgressDialog) DisconnectCanceled() { + if ptr.Pointer() != nil { + C.QProgressDialog_DisconnectCanceled(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "canceled") + } +} + +//export callbackQProgressDialogCanceled +func callbackQProgressDialogCanceled(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "canceled").(func())() +} + +func (ptr *QProgressDialog) Open(receiver core.QObjectITF, member string) { + if ptr.Pointer() != nil { + C.QProgressDialog_Open(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(receiver)), C.CString(member)) + } +} + +func (ptr *QProgressDialog) Reset() { + if ptr.Pointer() != nil { + C.QProgressDialog_Reset(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QProgressDialog) SetBar(bar QProgressBarITF) { + if ptr.Pointer() != nil { + C.QProgressDialog_SetBar(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQProgressBar(bar))) + } +} + +func (ptr *QProgressDialog) SetCancelButton(cancelButton QPushButtonITF) { + if ptr.Pointer() != nil { + C.QProgressDialog_SetCancelButton(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQPushButton(cancelButton))) + } +} + +func (ptr *QProgressDialog) SetCancelButtonText(cancelButtonText string) { + if ptr.Pointer() != nil { + C.QProgressDialog_SetCancelButtonText(C.QtObjectPtr(ptr.Pointer()), C.CString(cancelButtonText)) + } +} + +func (ptr *QProgressDialog) SetLabel(label QLabelITF) { + if ptr.Pointer() != nil { + C.QProgressDialog_SetLabel(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLabel(label))) + } +} + +func (ptr *QProgressDialog) SetRange(minimum int, maximum int) { + if ptr.Pointer() != nil { + C.QProgressDialog_SetRange(C.QtObjectPtr(ptr.Pointer()), C.int(minimum), C.int(maximum)) + } +} + +func (ptr *QProgressDialog) DestroyQProgressDialog() { + if ptr.Pointer() != nil { + C.QProgressDialog_DestroyQProgressDialog(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qprogressdialog.h b/widgets/qprogressdialog.h new file mode 100755 index 00000000..11d31f6e --- /dev/null +++ b/widgets/qprogressdialog.h @@ -0,0 +1,37 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QProgressDialog_AutoClose(QtObjectPtr ptr); +int QProgressDialog_AutoReset(QtObjectPtr ptr); +char* QProgressDialog_LabelText(QtObjectPtr ptr); +int QProgressDialog_Maximum(QtObjectPtr ptr); +int QProgressDialog_Minimum(QtObjectPtr ptr); +int QProgressDialog_MinimumDuration(QtObjectPtr ptr); +void QProgressDialog_SetAutoClose(QtObjectPtr ptr, int close); +void QProgressDialog_SetAutoReset(QtObjectPtr ptr, int reset); +void QProgressDialog_SetLabelText(QtObjectPtr ptr, char* text); +void QProgressDialog_SetMaximum(QtObjectPtr ptr, int maximum); +void QProgressDialog_SetMinimum(QtObjectPtr ptr, int minimum); +void QProgressDialog_SetMinimumDuration(QtObjectPtr ptr, int ms); +void QProgressDialog_SetValue(QtObjectPtr ptr, int progress); +int QProgressDialog_Value(QtObjectPtr ptr); +int QProgressDialog_WasCanceled(QtObjectPtr ptr); +QtObjectPtr QProgressDialog_NewQProgressDialog(QtObjectPtr parent, int f); +QtObjectPtr QProgressDialog_NewQProgressDialog2(char* labelText, char* cancelButtonText, int minimum, int maximum, QtObjectPtr parent, int f); +void QProgressDialog_Cancel(QtObjectPtr ptr); +void QProgressDialog_ConnectCanceled(QtObjectPtr ptr); +void QProgressDialog_DisconnectCanceled(QtObjectPtr ptr); +void QProgressDialog_Open(QtObjectPtr ptr, QtObjectPtr receiver, char* member); +void QProgressDialog_Reset(QtObjectPtr ptr); +void QProgressDialog_SetBar(QtObjectPtr ptr, QtObjectPtr bar); +void QProgressDialog_SetCancelButton(QtObjectPtr ptr, QtObjectPtr cancelButton); +void QProgressDialog_SetCancelButtonText(QtObjectPtr ptr, char* cancelButtonText); +void QProgressDialog_SetLabel(QtObjectPtr ptr, QtObjectPtr label); +void QProgressDialog_SetRange(QtObjectPtr ptr, int minimum, int maximum); +void QProgressDialog_DestroyQProgressDialog(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qproxystyle.cpp b/widgets/qproxystyle.cpp new file mode 100755 index 00000000..ae74f3d2 --- /dev/null +++ b/widgets/qproxystyle.cpp @@ -0,0 +1,93 @@ +#include "qproxystyle.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQProxyStyle: public QProxyStyle { +public: +}; + +QtObjectPtr QProxyStyle_BaseStyle(QtObjectPtr ptr){ + return static_cast(ptr)->baseStyle(); +} + +void QProxyStyle_DrawComplexControl(QtObjectPtr ptr, int control, QtObjectPtr option, QtObjectPtr painter, QtObjectPtr widget){ + static_cast(ptr)->drawComplexControl(static_cast(control), static_cast(option), static_cast(painter), static_cast(widget)); +} + +void QProxyStyle_DrawControl(QtObjectPtr ptr, int element, QtObjectPtr option, QtObjectPtr painter, QtObjectPtr widget){ + static_cast(ptr)->drawControl(static_cast(element), static_cast(option), static_cast(painter), static_cast(widget)); +} + +void QProxyStyle_DrawItemPixmap(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr rect, int alignment, QtObjectPtr pixmap){ + static_cast(ptr)->drawItemPixmap(static_cast(painter), *static_cast(rect), alignment, *static_cast(pixmap)); +} + +void QProxyStyle_DrawItemText(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr rect, int flags, QtObjectPtr pal, int enabled, char* text, int textRole){ + static_cast(ptr)->drawItemText(static_cast(painter), *static_cast(rect), flags, *static_cast(pal), enabled != 0, QString(text), static_cast(textRole)); +} + +void QProxyStyle_DrawPrimitive(QtObjectPtr ptr, int element, QtObjectPtr option, QtObjectPtr painter, QtObjectPtr widget){ + static_cast(ptr)->drawPrimitive(static_cast(element), static_cast(option), static_cast(painter), static_cast(widget)); +} + +int QProxyStyle_HitTestComplexControl(QtObjectPtr ptr, int control, QtObjectPtr option, QtObjectPtr pos, QtObjectPtr widget){ + return static_cast(ptr)->hitTestComplexControl(static_cast(control), static_cast(option), *static_cast(pos), static_cast(widget)); +} + +int QProxyStyle_LayoutSpacing(QtObjectPtr ptr, int control1, int control2, int orientation, QtObjectPtr option, QtObjectPtr widget){ + return static_cast(ptr)->layoutSpacing(static_cast(control1), static_cast(control2), static_cast(orientation), static_cast(option), static_cast(widget)); +} + +int QProxyStyle_PixelMetric(QtObjectPtr ptr, int metric, QtObjectPtr option, QtObjectPtr widget){ + return static_cast(ptr)->pixelMetric(static_cast(metric), static_cast(option), static_cast(widget)); +} + +void QProxyStyle_Polish3(QtObjectPtr ptr, QtObjectPtr app){ + static_cast(ptr)->polish(static_cast(app)); +} + +void QProxyStyle_Polish2(QtObjectPtr ptr, QtObjectPtr pal){ + static_cast(ptr)->polish(*static_cast(pal)); +} + +void QProxyStyle_Polish(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->polish(static_cast(widget)); +} + +void QProxyStyle_SetBaseStyle(QtObjectPtr ptr, QtObjectPtr style){ + static_cast(ptr)->setBaseStyle(static_cast(style)); +} + +int QProxyStyle_StyleHint(QtObjectPtr ptr, int hint, QtObjectPtr option, QtObjectPtr widget, QtObjectPtr returnData){ + return static_cast(ptr)->styleHint(static_cast(hint), static_cast(option), static_cast(widget), static_cast(returnData)); +} + +void QProxyStyle_Unpolish2(QtObjectPtr ptr, QtObjectPtr app){ + static_cast(ptr)->unpolish(static_cast(app)); +} + +void QProxyStyle_Unpolish(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->unpolish(static_cast(widget)); +} + +void QProxyStyle_DestroyQProxyStyle(QtObjectPtr ptr){ + static_cast(ptr)->~QProxyStyle(); +} + diff --git a/widgets/qproxystyle.go b/widgets/qproxystyle.go new file mode 100755 index 00000000..7a090652 --- /dev/null +++ b/widgets/qproxystyle.go @@ -0,0 +1,147 @@ +package widgets + +//#include "qproxystyle.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QProxyStyle struct { + QCommonStyle +} + +type QProxyStyleITF interface { + QCommonStyleITF + QProxyStylePTR() *QProxyStyle +} + +func PointerFromQProxyStyle(ptr QProxyStyleITF) unsafe.Pointer { + if ptr != nil { + return ptr.QProxyStylePTR().Pointer() + } + return nil +} + +func QProxyStyleFromPointer(ptr unsafe.Pointer) *QProxyStyle { + var n = new(QProxyStyle) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QProxyStyle_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QProxyStyle) QProxyStylePTR() *QProxyStyle { + return ptr +} + +func (ptr *QProxyStyle) BaseStyle() *QStyle { + if ptr.Pointer() != nil { + return QStyleFromPointer(unsafe.Pointer(C.QProxyStyle_BaseStyle(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QProxyStyle) DrawComplexControl(control QStyle__ComplexControl, option QStyleOptionComplexITF, painter gui.QPainterITF, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QProxyStyle_DrawComplexControl(C.QtObjectPtr(ptr.Pointer()), C.int(control), C.QtObjectPtr(PointerFromQStyleOptionComplex(option)), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QProxyStyle) DrawControl(element QStyle__ControlElement, option QStyleOptionITF, painter gui.QPainterITF, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QProxyStyle_DrawControl(C.QtObjectPtr(ptr.Pointer()), C.int(element), C.QtObjectPtr(PointerFromQStyleOption(option)), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QProxyStyle) DrawItemPixmap(painter gui.QPainterITF, rect core.QRectITF, alignment int, pixmap gui.QPixmapITF) { + if ptr.Pointer() != nil { + C.QProxyStyle_DrawItemPixmap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(core.PointerFromQRect(rect)), C.int(alignment), C.QtObjectPtr(gui.PointerFromQPixmap(pixmap))) + } +} + +func (ptr *QProxyStyle) DrawItemText(painter gui.QPainterITF, rect core.QRectITF, flags int, pal gui.QPaletteITF, enabled bool, text string, textRole gui.QPalette__ColorRole) { + if ptr.Pointer() != nil { + C.QProxyStyle_DrawItemText(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(core.PointerFromQRect(rect)), C.int(flags), C.QtObjectPtr(gui.PointerFromQPalette(pal)), C.int(qt.GoBoolToInt(enabled)), C.CString(text), C.int(textRole)) + } +} + +func (ptr *QProxyStyle) DrawPrimitive(element QStyle__PrimitiveElement, option QStyleOptionITF, painter gui.QPainterITF, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QProxyStyle_DrawPrimitive(C.QtObjectPtr(ptr.Pointer()), C.int(element), C.QtObjectPtr(PointerFromQStyleOption(option)), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QProxyStyle) HitTestComplexControl(control QStyle__ComplexControl, option QStyleOptionComplexITF, pos core.QPointITF, widget QWidgetITF) QStyle__SubControl { + if ptr.Pointer() != nil { + return QStyle__SubControl(C.QProxyStyle_HitTestComplexControl(C.QtObjectPtr(ptr.Pointer()), C.int(control), C.QtObjectPtr(PointerFromQStyleOptionComplex(option)), C.QtObjectPtr(core.PointerFromQPoint(pos)), C.QtObjectPtr(PointerFromQWidget(widget)))) + } + return 0 +} + +func (ptr *QProxyStyle) LayoutSpacing(control1 QSizePolicy__ControlType, control2 QSizePolicy__ControlType, orientation core.Qt__Orientation, option QStyleOptionITF, widget QWidgetITF) int { + if ptr.Pointer() != nil { + return int(C.QProxyStyle_LayoutSpacing(C.QtObjectPtr(ptr.Pointer()), C.int(control1), C.int(control2), C.int(orientation), C.QtObjectPtr(PointerFromQStyleOption(option)), C.QtObjectPtr(PointerFromQWidget(widget)))) + } + return 0 +} + +func (ptr *QProxyStyle) PixelMetric(metric QStyle__PixelMetric, option QStyleOptionITF, widget QWidgetITF) int { + if ptr.Pointer() != nil { + return int(C.QProxyStyle_PixelMetric(C.QtObjectPtr(ptr.Pointer()), C.int(metric), C.QtObjectPtr(PointerFromQStyleOption(option)), C.QtObjectPtr(PointerFromQWidget(widget)))) + } + return 0 +} + +func (ptr *QProxyStyle) Polish3(app QApplicationITF) { + if ptr.Pointer() != nil { + C.QProxyStyle_Polish3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQApplication(app))) + } +} + +func (ptr *QProxyStyle) Polish2(pal gui.QPaletteITF) { + if ptr.Pointer() != nil { + C.QProxyStyle_Polish2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPalette(pal))) + } +} + +func (ptr *QProxyStyle) Polish(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QProxyStyle_Polish(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QProxyStyle) SetBaseStyle(style QStyleITF) { + if ptr.Pointer() != nil { + C.QProxyStyle_SetBaseStyle(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQStyle(style))) + } +} + +func (ptr *QProxyStyle) StyleHint(hint QStyle__StyleHint, option QStyleOptionITF, widget QWidgetITF, returnData QStyleHintReturnITF) int { + if ptr.Pointer() != nil { + return int(C.QProxyStyle_StyleHint(C.QtObjectPtr(ptr.Pointer()), C.int(hint), C.QtObjectPtr(PointerFromQStyleOption(option)), C.QtObjectPtr(PointerFromQWidget(widget)), C.QtObjectPtr(PointerFromQStyleHintReturn(returnData)))) + } + return 0 +} + +func (ptr *QProxyStyle) Unpolish2(app QApplicationITF) { + if ptr.Pointer() != nil { + C.QProxyStyle_Unpolish2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQApplication(app))) + } +} + +func (ptr *QProxyStyle) Unpolish(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QProxyStyle_Unpolish(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QProxyStyle) DestroyQProxyStyle() { + if ptr.Pointer() != nil { + C.QProxyStyle_DestroyQProxyStyle(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qproxystyle.h b/widgets/qproxystyle.h new file mode 100755 index 00000000..204b5625 --- /dev/null +++ b/widgets/qproxystyle.h @@ -0,0 +1,26 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QProxyStyle_BaseStyle(QtObjectPtr ptr); +void QProxyStyle_DrawComplexControl(QtObjectPtr ptr, int control, QtObjectPtr option, QtObjectPtr painter, QtObjectPtr widget); +void QProxyStyle_DrawControl(QtObjectPtr ptr, int element, QtObjectPtr option, QtObjectPtr painter, QtObjectPtr widget); +void QProxyStyle_DrawItemPixmap(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr rect, int alignment, QtObjectPtr pixmap); +void QProxyStyle_DrawItemText(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr rect, int flags, QtObjectPtr pal, int enabled, char* text, int textRole); +void QProxyStyle_DrawPrimitive(QtObjectPtr ptr, int element, QtObjectPtr option, QtObjectPtr painter, QtObjectPtr widget); +int QProxyStyle_HitTestComplexControl(QtObjectPtr ptr, int control, QtObjectPtr option, QtObjectPtr pos, QtObjectPtr widget); +int QProxyStyle_LayoutSpacing(QtObjectPtr ptr, int control1, int control2, int orientation, QtObjectPtr option, QtObjectPtr widget); +int QProxyStyle_PixelMetric(QtObjectPtr ptr, int metric, QtObjectPtr option, QtObjectPtr widget); +void QProxyStyle_Polish3(QtObjectPtr ptr, QtObjectPtr app); +void QProxyStyle_Polish2(QtObjectPtr ptr, QtObjectPtr pal); +void QProxyStyle_Polish(QtObjectPtr ptr, QtObjectPtr widget); +void QProxyStyle_SetBaseStyle(QtObjectPtr ptr, QtObjectPtr style); +int QProxyStyle_StyleHint(QtObjectPtr ptr, int hint, QtObjectPtr option, QtObjectPtr widget, QtObjectPtr returnData); +void QProxyStyle_Unpolish2(QtObjectPtr ptr, QtObjectPtr app); +void QProxyStyle_Unpolish(QtObjectPtr ptr, QtObjectPtr widget); +void QProxyStyle_DestroyQProxyStyle(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qpushbutton.cpp b/widgets/qpushbutton.cpp new file mode 100755 index 00000000..0b742414 --- /dev/null +++ b/widgets/qpushbutton.cpp @@ -0,0 +1,68 @@ +#include "qpushbutton.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQPushButton: public QPushButton { +public: +}; + +int QPushButton_AutoDefault(QtObjectPtr ptr){ + return static_cast(ptr)->autoDefault(); +} + +int QPushButton_IsDefault(QtObjectPtr ptr){ + return static_cast(ptr)->isDefault(); +} + +int QPushButton_IsFlat(QtObjectPtr ptr){ + return static_cast(ptr)->isFlat(); +} + +void QPushButton_SetAutoDefault(QtObjectPtr ptr, int v){ + static_cast(ptr)->setAutoDefault(v != 0); +} + +void QPushButton_SetDefault(QtObjectPtr ptr, int v){ + static_cast(ptr)->setDefault(v != 0); +} + +void QPushButton_SetFlat(QtObjectPtr ptr, int v){ + static_cast(ptr)->setFlat(v != 0); +} + +QtObjectPtr QPushButton_NewQPushButton(QtObjectPtr parent){ + return new QPushButton(static_cast(parent)); +} + +QtObjectPtr QPushButton_NewQPushButton3(QtObjectPtr icon, char* text, QtObjectPtr parent){ + return new QPushButton(*static_cast(icon), QString(text), static_cast(parent)); +} + +QtObjectPtr QPushButton_NewQPushButton2(char* text, QtObjectPtr parent){ + return new QPushButton(QString(text), static_cast(parent)); +} + +QtObjectPtr QPushButton_Menu(QtObjectPtr ptr){ + return static_cast(ptr)->menu(); +} + +void QPushButton_SetMenu(QtObjectPtr ptr, QtObjectPtr menu){ + static_cast(ptr)->setMenu(static_cast(menu)); +} + +void QPushButton_ShowMenu(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "showMenu"); +} + +void QPushButton_DestroyQPushButton(QtObjectPtr ptr){ + static_cast(ptr)->~QPushButton(); +} + diff --git a/widgets/qpushbutton.go b/widgets/qpushbutton.go new file mode 100755 index 00000000..0329671e --- /dev/null +++ b/widgets/qpushbutton.go @@ -0,0 +1,115 @@ +package widgets + +//#include "qpushbutton.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QPushButton struct { + QAbstractButton +} + +type QPushButtonITF interface { + QAbstractButtonITF + QPushButtonPTR() *QPushButton +} + +func PointerFromQPushButton(ptr QPushButtonITF) unsafe.Pointer { + if ptr != nil { + return ptr.QPushButtonPTR().Pointer() + } + return nil +} + +func QPushButtonFromPointer(ptr unsafe.Pointer) *QPushButton { + var n = new(QPushButton) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QPushButton_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QPushButton) QPushButtonPTR() *QPushButton { + return ptr +} + +func (ptr *QPushButton) AutoDefault() bool { + if ptr.Pointer() != nil { + return C.QPushButton_AutoDefault(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPushButton) IsDefault() bool { + if ptr.Pointer() != nil { + return C.QPushButton_IsDefault(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPushButton) IsFlat() bool { + if ptr.Pointer() != nil { + return C.QPushButton_IsFlat(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QPushButton) SetAutoDefault(v bool) { + if ptr.Pointer() != nil { + C.QPushButton_SetAutoDefault(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QPushButton) SetDefault(v bool) { + if ptr.Pointer() != nil { + C.QPushButton_SetDefault(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QPushButton) SetFlat(v bool) { + if ptr.Pointer() != nil { + C.QPushButton_SetFlat(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func NewQPushButton(parent QWidgetITF) *QPushButton { + return QPushButtonFromPointer(unsafe.Pointer(C.QPushButton_NewQPushButton(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQPushButton3(icon gui.QIconITF, text string, parent QWidgetITF) *QPushButton { + return QPushButtonFromPointer(unsafe.Pointer(C.QPushButton_NewQPushButton3(C.QtObjectPtr(gui.PointerFromQIcon(icon)), C.CString(text), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQPushButton2(text string, parent QWidgetITF) *QPushButton { + return QPushButtonFromPointer(unsafe.Pointer(C.QPushButton_NewQPushButton2(C.CString(text), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QPushButton) Menu() *QMenu { + if ptr.Pointer() != nil { + return QMenuFromPointer(unsafe.Pointer(C.QPushButton_Menu(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QPushButton) SetMenu(menu QMenuITF) { + if ptr.Pointer() != nil { + C.QPushButton_SetMenu(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMenu(menu))) + } +} + +func (ptr *QPushButton) ShowMenu() { + if ptr.Pointer() != nil { + C.QPushButton_ShowMenu(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QPushButton) DestroyQPushButton() { + if ptr.Pointer() != nil { + C.QPushButton_DestroyQPushButton(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qpushbutton.h b/widgets/qpushbutton.h new file mode 100755 index 00000000..eb8f7fef --- /dev/null +++ b/widgets/qpushbutton.h @@ -0,0 +1,22 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QPushButton_AutoDefault(QtObjectPtr ptr); +int QPushButton_IsDefault(QtObjectPtr ptr); +int QPushButton_IsFlat(QtObjectPtr ptr); +void QPushButton_SetAutoDefault(QtObjectPtr ptr, int v); +void QPushButton_SetDefault(QtObjectPtr ptr, int v); +void QPushButton_SetFlat(QtObjectPtr ptr, int v); +QtObjectPtr QPushButton_NewQPushButton(QtObjectPtr parent); +QtObjectPtr QPushButton_NewQPushButton3(QtObjectPtr icon, char* text, QtObjectPtr parent); +QtObjectPtr QPushButton_NewQPushButton2(char* text, QtObjectPtr parent); +QtObjectPtr QPushButton_Menu(QtObjectPtr ptr); +void QPushButton_SetMenu(QtObjectPtr ptr, QtObjectPtr menu); +void QPushButton_ShowMenu(QtObjectPtr ptr); +void QPushButton_DestroyQPushButton(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qradiobutton.cpp b/widgets/qradiobutton.cpp new file mode 100755 index 00000000..6662f830 --- /dev/null +++ b/widgets/qradiobutton.cpp @@ -0,0 +1,25 @@ +#include "qradiobutton.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQRadioButton: public QRadioButton { +public: +}; + +QtObjectPtr QRadioButton_NewQRadioButton(QtObjectPtr parent){ + return new QRadioButton(static_cast(parent)); +} + +QtObjectPtr QRadioButton_NewQRadioButton2(char* text, QtObjectPtr parent){ + return new QRadioButton(QString(text), static_cast(parent)); +} + +void QRadioButton_DestroyQRadioButton(QtObjectPtr ptr){ + static_cast(ptr)->~QRadioButton(); +} + diff --git a/widgets/qradiobutton.go b/widgets/qradiobutton.go new file mode 100755 index 00000000..6b687cc4 --- /dev/null +++ b/widgets/qradiobutton.go @@ -0,0 +1,52 @@ +package widgets + +//#include "qradiobutton.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QRadioButton struct { + QAbstractButton +} + +type QRadioButtonITF interface { + QAbstractButtonITF + QRadioButtonPTR() *QRadioButton +} + +func PointerFromQRadioButton(ptr QRadioButtonITF) unsafe.Pointer { + if ptr != nil { + return ptr.QRadioButtonPTR().Pointer() + } + return nil +} + +func QRadioButtonFromPointer(ptr unsafe.Pointer) *QRadioButton { + var n = new(QRadioButton) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QRadioButton_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QRadioButton) QRadioButtonPTR() *QRadioButton { + return ptr +} + +func NewQRadioButton(parent QWidgetITF) *QRadioButton { + return QRadioButtonFromPointer(unsafe.Pointer(C.QRadioButton_NewQRadioButton(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQRadioButton2(text string, parent QWidgetITF) *QRadioButton { + return QRadioButtonFromPointer(unsafe.Pointer(C.QRadioButton_NewQRadioButton2(C.CString(text), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QRadioButton) DestroyQRadioButton() { + if ptr.Pointer() != nil { + C.QRadioButton_DestroyQRadioButton(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qradiobutton.h b/widgets/qradiobutton.h new file mode 100755 index 00000000..644aea59 --- /dev/null +++ b/widgets/qradiobutton.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QRadioButton_NewQRadioButton(QtObjectPtr parent); +QtObjectPtr QRadioButton_NewQRadioButton2(char* text, QtObjectPtr parent); +void QRadioButton_DestroyQRadioButton(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qrubberband.cpp b/widgets/qrubberband.cpp new file mode 100755 index 00000000..a08ac668 --- /dev/null +++ b/widgets/qrubberband.cpp @@ -0,0 +1,52 @@ +#include "qrubberband.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQRubberBand: public QRubberBand { +public: +}; + +void QRubberBand_SetGeometry(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->setGeometry(*static_cast(rect)); +} + +QtObjectPtr QRubberBand_NewQRubberBand(int s, QtObjectPtr p){ + return new QRubberBand(static_cast(s), static_cast(p)); +} + +void QRubberBand_Move2(QtObjectPtr ptr, QtObjectPtr p){ + static_cast(ptr)->move(*static_cast(p)); +} + +void QRubberBand_Move(QtObjectPtr ptr, int x, int y){ + static_cast(ptr)->move(x, y); +} + +void QRubberBand_Resize2(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->resize(*static_cast(size)); +} + +void QRubberBand_Resize(QtObjectPtr ptr, int width, int height){ + static_cast(ptr)->resize(width, height); +} + +void QRubberBand_SetGeometry2(QtObjectPtr ptr, int x, int y, int width, int height){ + static_cast(ptr)->setGeometry(x, y, width, height); +} + +int QRubberBand_Shape(QtObjectPtr ptr){ + return static_cast(ptr)->shape(); +} + +void QRubberBand_DestroyQRubberBand(QtObjectPtr ptr){ + static_cast(ptr)->~QRubberBand(); +} + diff --git a/widgets/qrubberband.go b/widgets/qrubberband.go new file mode 100755 index 00000000..f3eb8719 --- /dev/null +++ b/widgets/qrubberband.go @@ -0,0 +1,100 @@ +package widgets + +//#include "qrubberband.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QRubberBand struct { + QWidget +} + +type QRubberBandITF interface { + QWidgetITF + QRubberBandPTR() *QRubberBand +} + +func PointerFromQRubberBand(ptr QRubberBandITF) unsafe.Pointer { + if ptr != nil { + return ptr.QRubberBandPTR().Pointer() + } + return nil +} + +func QRubberBandFromPointer(ptr unsafe.Pointer) *QRubberBand { + var n = new(QRubberBand) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QRubberBand_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QRubberBand) QRubberBandPTR() *QRubberBand { + return ptr +} + +//QRubberBand::Shape +type QRubberBand__Shape int + +var ( + QRubberBand__Line = QRubberBand__Shape(0) + QRubberBand__Rectangle = QRubberBand__Shape(1) +) + +func (ptr *QRubberBand) SetGeometry(rect core.QRectITF) { + if ptr.Pointer() != nil { + C.QRubberBand_SetGeometry(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rect))) + } +} + +func NewQRubberBand(s QRubberBand__Shape, p QWidgetITF) *QRubberBand { + return QRubberBandFromPointer(unsafe.Pointer(C.QRubberBand_NewQRubberBand(C.int(s), C.QtObjectPtr(PointerFromQWidget(p))))) +} + +func (ptr *QRubberBand) Move2(p core.QPointITF) { + if ptr.Pointer() != nil { + C.QRubberBand_Move2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(p))) + } +} + +func (ptr *QRubberBand) Move(x int, y int) { + if ptr.Pointer() != nil { + C.QRubberBand_Move(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y)) + } +} + +func (ptr *QRubberBand) Resize2(size core.QSizeITF) { + if ptr.Pointer() != nil { + C.QRubberBand_Resize2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(size))) + } +} + +func (ptr *QRubberBand) Resize(width int, height int) { + if ptr.Pointer() != nil { + C.QRubberBand_Resize(C.QtObjectPtr(ptr.Pointer()), C.int(width), C.int(height)) + } +} + +func (ptr *QRubberBand) SetGeometry2(x int, y int, width int, height int) { + if ptr.Pointer() != nil { + C.QRubberBand_SetGeometry2(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.int(width), C.int(height)) + } +} + +func (ptr *QRubberBand) Shape() QRubberBand__Shape { + if ptr.Pointer() != nil { + return QRubberBand__Shape(C.QRubberBand_Shape(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QRubberBand) DestroyQRubberBand() { + if ptr.Pointer() != nil { + C.QRubberBand_DestroyQRubberBand(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qrubberband.h b/widgets/qrubberband.h new file mode 100755 index 00000000..d2af441f --- /dev/null +++ b/widgets/qrubberband.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QRubberBand_SetGeometry(QtObjectPtr ptr, QtObjectPtr rect); +QtObjectPtr QRubberBand_NewQRubberBand(int s, QtObjectPtr p); +void QRubberBand_Move2(QtObjectPtr ptr, QtObjectPtr p); +void QRubberBand_Move(QtObjectPtr ptr, int x, int y); +void QRubberBand_Resize2(QtObjectPtr ptr, QtObjectPtr size); +void QRubberBand_Resize(QtObjectPtr ptr, int width, int height); +void QRubberBand_SetGeometry2(QtObjectPtr ptr, int x, int y, int width, int height); +int QRubberBand_Shape(QtObjectPtr ptr); +void QRubberBand_DestroyQRubberBand(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qscrollarea.cpp b/widgets/qscrollarea.cpp new file mode 100755 index 00000000..e87d4175 --- /dev/null +++ b/widgets/qscrollarea.cpp @@ -0,0 +1,61 @@ +#include "qscrollarea.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQScrollArea: public QScrollArea { +public: +}; + +int QScrollArea_Alignment(QtObjectPtr ptr){ + return static_cast(ptr)->alignment(); +} + +void QScrollArea_SetAlignment(QtObjectPtr ptr, int v){ + static_cast(ptr)->setAlignment(static_cast(v)); +} + +void QScrollArea_SetWidget(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->setWidget(static_cast(widget)); +} + +void QScrollArea_SetWidgetResizable(QtObjectPtr ptr, int resizable){ + static_cast(ptr)->setWidgetResizable(resizable != 0); +} + +int QScrollArea_WidgetResizable(QtObjectPtr ptr){ + return static_cast(ptr)->widgetResizable(); +} + +QtObjectPtr QScrollArea_NewQScrollArea(QtObjectPtr parent){ + return new QScrollArea(static_cast(parent)); +} + +void QScrollArea_EnsureVisible(QtObjectPtr ptr, int x, int y, int xmargin, int ymargin){ + static_cast(ptr)->ensureVisible(x, y, xmargin, ymargin); +} + +void QScrollArea_EnsureWidgetVisible(QtObjectPtr ptr, QtObjectPtr childWidget, int xmargin, int ymargin){ + static_cast(ptr)->ensureWidgetVisible(static_cast(childWidget), xmargin, ymargin); +} + +int QScrollArea_FocusNextPrevChild(QtObjectPtr ptr, int next){ + return static_cast(ptr)->focusNextPrevChild(next != 0); +} + +QtObjectPtr QScrollArea_TakeWidget(QtObjectPtr ptr){ + return static_cast(ptr)->takeWidget(); +} + +QtObjectPtr QScrollArea_Widget(QtObjectPtr ptr){ + return static_cast(ptr)->widget(); +} + +void QScrollArea_DestroyQScrollArea(QtObjectPtr ptr){ + static_cast(ptr)->~QScrollArea(); +} + diff --git a/widgets/qscrollarea.go b/widgets/qscrollarea.go new file mode 100755 index 00000000..ac54a803 --- /dev/null +++ b/widgets/qscrollarea.go @@ -0,0 +1,114 @@ +package widgets + +//#include "qscrollarea.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QScrollArea struct { + QAbstractScrollArea +} + +type QScrollAreaITF interface { + QAbstractScrollAreaITF + QScrollAreaPTR() *QScrollArea +} + +func PointerFromQScrollArea(ptr QScrollAreaITF) unsafe.Pointer { + if ptr != nil { + return ptr.QScrollAreaPTR().Pointer() + } + return nil +} + +func QScrollAreaFromPointer(ptr unsafe.Pointer) *QScrollArea { + var n = new(QScrollArea) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QScrollArea_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QScrollArea) QScrollAreaPTR() *QScrollArea { + return ptr +} + +func (ptr *QScrollArea) Alignment() core.Qt__AlignmentFlag { + if ptr.Pointer() != nil { + return core.Qt__AlignmentFlag(C.QScrollArea_Alignment(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QScrollArea) SetAlignment(v core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QScrollArea_SetAlignment(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QScrollArea) SetWidget(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QScrollArea_SetWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QScrollArea) SetWidgetResizable(resizable bool) { + if ptr.Pointer() != nil { + C.QScrollArea_SetWidgetResizable(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(resizable))) + } +} + +func (ptr *QScrollArea) WidgetResizable() bool { + if ptr.Pointer() != nil { + return C.QScrollArea_WidgetResizable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func NewQScrollArea(parent QWidgetITF) *QScrollArea { + return QScrollAreaFromPointer(unsafe.Pointer(C.QScrollArea_NewQScrollArea(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QScrollArea) EnsureVisible(x int, y int, xmargin int, ymargin int) { + if ptr.Pointer() != nil { + C.QScrollArea_EnsureVisible(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.int(xmargin), C.int(ymargin)) + } +} + +func (ptr *QScrollArea) EnsureWidgetVisible(childWidget QWidgetITF, xmargin int, ymargin int) { + if ptr.Pointer() != nil { + C.QScrollArea_EnsureWidgetVisible(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(childWidget)), C.int(xmargin), C.int(ymargin)) + } +} + +func (ptr *QScrollArea) FocusNextPrevChild(next bool) bool { + if ptr.Pointer() != nil { + return C.QScrollArea_FocusNextPrevChild(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(next))) != 0 + } + return false +} + +func (ptr *QScrollArea) TakeWidget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QScrollArea_TakeWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QScrollArea) Widget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QScrollArea_Widget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QScrollArea) DestroyQScrollArea() { + if ptr.Pointer() != nil { + C.QScrollArea_DestroyQScrollArea(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qscrollarea.h b/widgets/qscrollarea.h new file mode 100755 index 00000000..24624c14 --- /dev/null +++ b/widgets/qscrollarea.h @@ -0,0 +1,21 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QScrollArea_Alignment(QtObjectPtr ptr); +void QScrollArea_SetAlignment(QtObjectPtr ptr, int v); +void QScrollArea_SetWidget(QtObjectPtr ptr, QtObjectPtr widget); +void QScrollArea_SetWidgetResizable(QtObjectPtr ptr, int resizable); +int QScrollArea_WidgetResizable(QtObjectPtr ptr); +QtObjectPtr QScrollArea_NewQScrollArea(QtObjectPtr parent); +void QScrollArea_EnsureVisible(QtObjectPtr ptr, int x, int y, int xmargin, int ymargin); +void QScrollArea_EnsureWidgetVisible(QtObjectPtr ptr, QtObjectPtr childWidget, int xmargin, int ymargin); +int QScrollArea_FocusNextPrevChild(QtObjectPtr ptr, int next); +QtObjectPtr QScrollArea_TakeWidget(QtObjectPtr ptr); +QtObjectPtr QScrollArea_Widget(QtObjectPtr ptr); +void QScrollArea_DestroyQScrollArea(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qscrollbar.cpp b/widgets/qscrollbar.cpp new file mode 100755 index 00000000..defb186c --- /dev/null +++ b/widgets/qscrollbar.cpp @@ -0,0 +1,30 @@ +#include "qscrollbar.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQScrollBar: public QScrollBar { +public: +}; + +QtObjectPtr QScrollBar_NewQScrollBar(QtObjectPtr parent){ + return new QScrollBar(static_cast(parent)); +} + +QtObjectPtr QScrollBar_NewQScrollBar2(int orientation, QtObjectPtr parent){ + return new QScrollBar(static_cast(orientation), static_cast(parent)); +} + +int QScrollBar_Event(QtObjectPtr ptr, QtObjectPtr event){ + return static_cast(ptr)->event(static_cast(event)); +} + +void QScrollBar_DestroyQScrollBar(QtObjectPtr ptr){ + static_cast(ptr)->~QScrollBar(); +} + diff --git a/widgets/qscrollbar.go b/widgets/qscrollbar.go new file mode 100755 index 00000000..4b542991 --- /dev/null +++ b/widgets/qscrollbar.go @@ -0,0 +1,60 @@ +package widgets + +//#include "qscrollbar.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QScrollBar struct { + QAbstractSlider +} + +type QScrollBarITF interface { + QAbstractSliderITF + QScrollBarPTR() *QScrollBar +} + +func PointerFromQScrollBar(ptr QScrollBarITF) unsafe.Pointer { + if ptr != nil { + return ptr.QScrollBarPTR().Pointer() + } + return nil +} + +func QScrollBarFromPointer(ptr unsafe.Pointer) *QScrollBar { + var n = new(QScrollBar) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QScrollBar_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QScrollBar) QScrollBarPTR() *QScrollBar { + return ptr +} + +func NewQScrollBar(parent QWidgetITF) *QScrollBar { + return QScrollBarFromPointer(unsafe.Pointer(C.QScrollBar_NewQScrollBar(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQScrollBar2(orientation core.Qt__Orientation, parent QWidgetITF) *QScrollBar { + return QScrollBarFromPointer(unsafe.Pointer(C.QScrollBar_NewQScrollBar2(C.int(orientation), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QScrollBar) Event(event core.QEventITF) bool { + if ptr.Pointer() != nil { + return C.QScrollBar_Event(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQEvent(event))) != 0 + } + return false +} + +func (ptr *QScrollBar) DestroyQScrollBar() { + if ptr.Pointer() != nil { + C.QScrollBar_DestroyQScrollBar(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qscrollbar.h b/widgets/qscrollbar.h new file mode 100755 index 00000000..fcab0550 --- /dev/null +++ b/widgets/qscrollbar.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QScrollBar_NewQScrollBar(QtObjectPtr parent); +QtObjectPtr QScrollBar_NewQScrollBar2(int orientation, QtObjectPtr parent); +int QScrollBar_Event(QtObjectPtr ptr, QtObjectPtr event); +void QScrollBar_DestroyQScrollBar(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qscroller.cpp b/widgets/qscroller.cpp new file mode 100755 index 00000000..db6093d2 --- /dev/null +++ b/widgets/qscroller.cpp @@ -0,0 +1,74 @@ +#include "qscroller.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQScroller: public QScroller { +public: +void Signal_StateChanged(QScroller::State newState){callbackQScrollerStateChanged(this->objectName().toUtf8().data(), newState);}; +}; + +void QScroller_SetScrollerProperties(QtObjectPtr ptr, QtObjectPtr prop){ + QMetaObject::invokeMethod(static_cast(ptr), "setScrollerProperties", Q_ARG(QScrollerProperties, *static_cast(prop))); +} + +int QScroller_QScroller_GrabGesture(QtObjectPtr target, int scrollGestureType){ + return QScroller::grabGesture(static_cast(target), static_cast(scrollGestureType)); +} + +int QScroller_QScroller_GrabbedGesture(QtObjectPtr target){ + return QScroller::grabbedGesture(static_cast(target)); +} + +int QScroller_QScroller_HasScroller(QtObjectPtr target){ + return QScroller::hasScroller(static_cast(target)); +} + +void QScroller_ResendPrepareEvent(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "resendPrepareEvent"); +} + +void QScroller_ScrollTo(QtObjectPtr ptr, QtObjectPtr pos){ + QMetaObject::invokeMethod(static_cast(ptr), "scrollTo", Q_ARG(QPointF, *static_cast(pos))); +} + +void QScroller_ScrollTo2(QtObjectPtr ptr, QtObjectPtr pos, int scrollTime){ + QMetaObject::invokeMethod(static_cast(ptr), "scrollTo", Q_ARG(QPointF, *static_cast(pos)), Q_ARG(int, scrollTime)); +} + +QtObjectPtr QScroller_QScroller_Scroller(QtObjectPtr target){ + return QScroller::scroller(static_cast(target)); +} + +QtObjectPtr QScroller_QScroller_Scroller2(QtObjectPtr target){ + return const_cast(QScroller::scroller(static_cast(target))); +} + +void QScroller_ConnectStateChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QScroller::stateChanged), static_cast(ptr), static_cast(&MyQScroller::Signal_StateChanged));; +} + +void QScroller_DisconnectStateChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QScroller::stateChanged), static_cast(ptr), static_cast(&MyQScroller::Signal_StateChanged));; +} + +void QScroller_Stop(QtObjectPtr ptr){ + static_cast(ptr)->stop(); +} + +QtObjectPtr QScroller_Target(QtObjectPtr ptr){ + return static_cast(ptr)->target(); +} + +void QScroller_QScroller_UngrabGesture(QtObjectPtr target){ + QScroller::ungrabGesture(static_cast(target)); +} + diff --git a/widgets/qscroller.go b/widgets/qscroller.go new file mode 100755 index 00000000..a1165da8 --- /dev/null +++ b/widgets/qscroller.go @@ -0,0 +1,147 @@ +package widgets + +//#include "qscroller.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QScroller struct { + core.QObject +} + +type QScrollerITF interface { + core.QObjectITF + QScrollerPTR() *QScroller +} + +func PointerFromQScroller(ptr QScrollerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QScrollerPTR().Pointer() + } + return nil +} + +func QScrollerFromPointer(ptr unsafe.Pointer) *QScroller { + var n = new(QScroller) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QScroller_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QScroller) QScrollerPTR() *QScroller { + return ptr +} + +//QScroller::Input +type QScroller__Input int + +var ( + QScroller__InputPress = QScroller__Input(1) + QScroller__InputMove = QScroller__Input(2) + QScroller__InputRelease = QScroller__Input(3) +) + +//QScroller::ScrollerGestureType +type QScroller__ScrollerGestureType int + +var ( + QScroller__TouchGesture = QScroller__ScrollerGestureType(0) + QScroller__LeftMouseButtonGesture = QScroller__ScrollerGestureType(1) + QScroller__RightMouseButtonGesture = QScroller__ScrollerGestureType(2) + QScroller__MiddleMouseButtonGesture = QScroller__ScrollerGestureType(3) +) + +//QScroller::State +type QScroller__State int + +var ( + QScroller__Inactive = QScroller__State(0) + QScroller__Pressed = QScroller__State(1) + QScroller__Dragging = QScroller__State(2) + QScroller__Scrolling = QScroller__State(3) +) + +func (ptr *QScroller) SetScrollerProperties(prop QScrollerPropertiesITF) { + if ptr.Pointer() != nil { + C.QScroller_SetScrollerProperties(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQScrollerProperties(prop))) + } +} + +func QScroller_GrabGesture(target core.QObjectITF, scrollGestureType QScroller__ScrollerGestureType) core.Qt__GestureType { + return core.Qt__GestureType(C.QScroller_QScroller_GrabGesture(C.QtObjectPtr(core.PointerFromQObject(target)), C.int(scrollGestureType))) +} + +func QScroller_GrabbedGesture(target core.QObjectITF) core.Qt__GestureType { + return core.Qt__GestureType(C.QScroller_QScroller_GrabbedGesture(C.QtObjectPtr(core.PointerFromQObject(target)))) +} + +func QScroller_HasScroller(target core.QObjectITF) bool { + return C.QScroller_QScroller_HasScroller(C.QtObjectPtr(core.PointerFromQObject(target))) != 0 +} + +func (ptr *QScroller) ResendPrepareEvent() { + if ptr.Pointer() != nil { + C.QScroller_ResendPrepareEvent(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QScroller) ScrollTo(pos core.QPointFITF) { + if ptr.Pointer() != nil { + C.QScroller_ScrollTo(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(pos))) + } +} + +func (ptr *QScroller) ScrollTo2(pos core.QPointFITF, scrollTime int) { + if ptr.Pointer() != nil { + C.QScroller_ScrollTo2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(pos)), C.int(scrollTime)) + } +} + +func QScroller_Scroller(target core.QObjectITF) *QScroller { + return QScrollerFromPointer(unsafe.Pointer(C.QScroller_QScroller_Scroller(C.QtObjectPtr(core.PointerFromQObject(target))))) +} + +func QScroller_Scroller2(target core.QObjectITF) *QScroller { + return QScrollerFromPointer(unsafe.Pointer(C.QScroller_QScroller_Scroller2(C.QtObjectPtr(core.PointerFromQObject(target))))) +} + +func (ptr *QScroller) ConnectStateChanged(f func(newState QScroller__State)) { + if ptr.Pointer() != nil { + C.QScroller_ConnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "stateChanged", f) + } +} + +func (ptr *QScroller) DisconnectStateChanged() { + if ptr.Pointer() != nil { + C.QScroller_DisconnectStateChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "stateChanged") + } +} + +//export callbackQScrollerStateChanged +func callbackQScrollerStateChanged(ptrName *C.char, newState C.int) { + qt.GetSignal(C.GoString(ptrName), "stateChanged").(func(QScroller__State))(QScroller__State(newState)) +} + +func (ptr *QScroller) Stop() { + if ptr.Pointer() != nil { + C.QScroller_Stop(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QScroller) Target() *core.QObject { + if ptr.Pointer() != nil { + return core.QObjectFromPointer(unsafe.Pointer(C.QScroller_Target(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func QScroller_UngrabGesture(target core.QObjectITF) { + C.QScroller_QScroller_UngrabGesture(C.QtObjectPtr(core.PointerFromQObject(target))) +} diff --git a/widgets/qscroller.h b/widgets/qscroller.h new file mode 100755 index 00000000..3a330dad --- /dev/null +++ b/widgets/qscroller.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QScroller_SetScrollerProperties(QtObjectPtr ptr, QtObjectPtr prop); +int QScroller_QScroller_GrabGesture(QtObjectPtr target, int scrollGestureType); +int QScroller_QScroller_GrabbedGesture(QtObjectPtr target); +int QScroller_QScroller_HasScroller(QtObjectPtr target); +void QScroller_ResendPrepareEvent(QtObjectPtr ptr); +void QScroller_ScrollTo(QtObjectPtr ptr, QtObjectPtr pos); +void QScroller_ScrollTo2(QtObjectPtr ptr, QtObjectPtr pos, int scrollTime); +QtObjectPtr QScroller_QScroller_Scroller(QtObjectPtr target); +QtObjectPtr QScroller_QScroller_Scroller2(QtObjectPtr target); +void QScroller_ConnectStateChanged(QtObjectPtr ptr); +void QScroller_DisconnectStateChanged(QtObjectPtr ptr); +void QScroller_Stop(QtObjectPtr ptr); +QtObjectPtr QScroller_Target(QtObjectPtr ptr); +void QScroller_QScroller_UngrabGesture(QtObjectPtr target); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qscrollerproperties.cpp b/widgets/qscrollerproperties.cpp new file mode 100755 index 00000000..3c3c9997 --- /dev/null +++ b/widgets/qscrollerproperties.cpp @@ -0,0 +1,41 @@ +#include "qscrollerproperties.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQScrollerProperties: public QScrollerProperties { +public: +}; + +QtObjectPtr QScrollerProperties_NewQScrollerProperties(){ + return new QScrollerProperties(); +} + +QtObjectPtr QScrollerProperties_NewQScrollerProperties2(QtObjectPtr sp){ + return new QScrollerProperties(*static_cast(sp)); +} + +char* QScrollerProperties_ScrollMetric(QtObjectPtr ptr, int metric){ + return static_cast(ptr)->scrollMetric(static_cast(metric)).toString().toUtf8().data(); +} + +void QScrollerProperties_QScrollerProperties_SetDefaultScrollerProperties(QtObjectPtr sp){ + QScrollerProperties::setDefaultScrollerProperties(*static_cast(sp)); +} + +void QScrollerProperties_SetScrollMetric(QtObjectPtr ptr, int metric, char* value){ + static_cast(ptr)->setScrollMetric(static_cast(metric), QVariant(value)); +} + +void QScrollerProperties_QScrollerProperties_UnsetDefaultScrollerProperties(){ + QScrollerProperties::unsetDefaultScrollerProperties(); +} + +void QScrollerProperties_DestroyQScrollerProperties(QtObjectPtr ptr){ + static_cast(ptr)->~QScrollerProperties(); +} + diff --git a/widgets/qscrollerproperties.go b/widgets/qscrollerproperties.go new file mode 100755 index 00000000..a44dee98 --- /dev/null +++ b/widgets/qscrollerproperties.go @@ -0,0 +1,121 @@ +package widgets + +//#include "qscrollerproperties.h" +import "C" +import ( + "unsafe" +) + +type QScrollerProperties struct { + ptr unsafe.Pointer +} + +type QScrollerPropertiesITF interface { + QScrollerPropertiesPTR() *QScrollerProperties +} + +func (p *QScrollerProperties) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QScrollerProperties) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQScrollerProperties(ptr QScrollerPropertiesITF) unsafe.Pointer { + if ptr != nil { + return ptr.QScrollerPropertiesPTR().Pointer() + } + return nil +} + +func QScrollerPropertiesFromPointer(ptr unsafe.Pointer) *QScrollerProperties { + var n = new(QScrollerProperties) + n.SetPointer(ptr) + return n +} + +func (ptr *QScrollerProperties) QScrollerPropertiesPTR() *QScrollerProperties { + return ptr +} + +//QScrollerProperties::FrameRates +type QScrollerProperties__FrameRates int + +var ( + QScrollerProperties__Standard = QScrollerProperties__FrameRates(0) + QScrollerProperties__Fps60 = QScrollerProperties__FrameRates(1) + QScrollerProperties__Fps30 = QScrollerProperties__FrameRates(2) + QScrollerProperties__Fps20 = QScrollerProperties__FrameRates(3) +) + +//QScrollerProperties::OvershootPolicy +type QScrollerProperties__OvershootPolicy int + +var ( + QScrollerProperties__OvershootWhenScrollable = QScrollerProperties__OvershootPolicy(0) + QScrollerProperties__OvershootAlwaysOff = QScrollerProperties__OvershootPolicy(1) + QScrollerProperties__OvershootAlwaysOn = QScrollerProperties__OvershootPolicy(2) +) + +//QScrollerProperties::ScrollMetric +type QScrollerProperties__ScrollMetric int + +var ( + QScrollerProperties__MousePressEventDelay = QScrollerProperties__ScrollMetric(0) + QScrollerProperties__DragStartDistance = QScrollerProperties__ScrollMetric(1) + QScrollerProperties__DragVelocitySmoothingFactor = QScrollerProperties__ScrollMetric(2) + QScrollerProperties__AxisLockThreshold = QScrollerProperties__ScrollMetric(3) + QScrollerProperties__ScrollingCurve = QScrollerProperties__ScrollMetric(4) + QScrollerProperties__DecelerationFactor = QScrollerProperties__ScrollMetric(5) + QScrollerProperties__MinimumVelocity = QScrollerProperties__ScrollMetric(6) + QScrollerProperties__MaximumVelocity = QScrollerProperties__ScrollMetric(7) + QScrollerProperties__MaximumClickThroughVelocity = QScrollerProperties__ScrollMetric(8) + QScrollerProperties__AcceleratingFlickMaximumTime = QScrollerProperties__ScrollMetric(9) + QScrollerProperties__AcceleratingFlickSpeedupFactor = QScrollerProperties__ScrollMetric(10) + QScrollerProperties__SnapPositionRatio = QScrollerProperties__ScrollMetric(11) + QScrollerProperties__SnapTime = QScrollerProperties__ScrollMetric(12) + QScrollerProperties__OvershootDragResistanceFactor = QScrollerProperties__ScrollMetric(13) + QScrollerProperties__OvershootDragDistanceFactor = QScrollerProperties__ScrollMetric(14) + QScrollerProperties__OvershootScrollDistanceFactor = QScrollerProperties__ScrollMetric(15) + QScrollerProperties__OvershootScrollTime = QScrollerProperties__ScrollMetric(16) + QScrollerProperties__HorizontalOvershootPolicy = QScrollerProperties__ScrollMetric(17) + QScrollerProperties__VerticalOvershootPolicy = QScrollerProperties__ScrollMetric(18) + QScrollerProperties__FrameRate = QScrollerProperties__ScrollMetric(19) + QScrollerProperties__ScrollMetricCount = QScrollerProperties__ScrollMetric(20) +) + +func NewQScrollerProperties() *QScrollerProperties { + return QScrollerPropertiesFromPointer(unsafe.Pointer(C.QScrollerProperties_NewQScrollerProperties())) +} + +func NewQScrollerProperties2(sp QScrollerPropertiesITF) *QScrollerProperties { + return QScrollerPropertiesFromPointer(unsafe.Pointer(C.QScrollerProperties_NewQScrollerProperties2(C.QtObjectPtr(PointerFromQScrollerProperties(sp))))) +} + +func (ptr *QScrollerProperties) ScrollMetric(metric QScrollerProperties__ScrollMetric) string { + if ptr.Pointer() != nil { + return C.GoString(C.QScrollerProperties_ScrollMetric(C.QtObjectPtr(ptr.Pointer()), C.int(metric))) + } + return "" +} + +func QScrollerProperties_SetDefaultScrollerProperties(sp QScrollerPropertiesITF) { + C.QScrollerProperties_QScrollerProperties_SetDefaultScrollerProperties(C.QtObjectPtr(PointerFromQScrollerProperties(sp))) +} + +func (ptr *QScrollerProperties) SetScrollMetric(metric QScrollerProperties__ScrollMetric, value string) { + if ptr.Pointer() != nil { + C.QScrollerProperties_SetScrollMetric(C.QtObjectPtr(ptr.Pointer()), C.int(metric), C.CString(value)) + } +} + +func QScrollerProperties_UnsetDefaultScrollerProperties() { + C.QScrollerProperties_QScrollerProperties_UnsetDefaultScrollerProperties() +} + +func (ptr *QScrollerProperties) DestroyQScrollerProperties() { + if ptr.Pointer() != nil { + C.QScrollerProperties_DestroyQScrollerProperties(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qscrollerproperties.h b/widgets/qscrollerproperties.h new file mode 100755 index 00000000..7959c6b4 --- /dev/null +++ b/widgets/qscrollerproperties.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QScrollerProperties_NewQScrollerProperties(); +QtObjectPtr QScrollerProperties_NewQScrollerProperties2(QtObjectPtr sp); +char* QScrollerProperties_ScrollMetric(QtObjectPtr ptr, int metric); +void QScrollerProperties_QScrollerProperties_SetDefaultScrollerProperties(QtObjectPtr sp); +void QScrollerProperties_SetScrollMetric(QtObjectPtr ptr, int metric, char* value); +void QScrollerProperties_QScrollerProperties_UnsetDefaultScrollerProperties(); +void QScrollerProperties_DestroyQScrollerProperties(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qshortcut.cpp b/widgets/qshortcut.cpp new file mode 100755 index 00000000..0a9f3a36 --- /dev/null +++ b/widgets/qshortcut.cpp @@ -0,0 +1,89 @@ +#include "qshortcut.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQShortcut: public QShortcut { +public: +void Signal_Activated(){callbackQShortcutActivated(this->objectName().toUtf8().data());}; +void Signal_ActivatedAmbiguously(){callbackQShortcutActivatedAmbiguously(this->objectName().toUtf8().data());}; +}; + +int QShortcut_AutoRepeat(QtObjectPtr ptr){ + return static_cast(ptr)->autoRepeat(); +} + +int QShortcut_Context(QtObjectPtr ptr){ + return static_cast(ptr)->context(); +} + +int QShortcut_IsEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isEnabled(); +} + +void QShortcut_SetAutoRepeat(QtObjectPtr ptr, int on){ + static_cast(ptr)->setAutoRepeat(on != 0); +} + +void QShortcut_SetContext(QtObjectPtr ptr, int context){ + static_cast(ptr)->setContext(static_cast(context)); +} + +void QShortcut_SetEnabled(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setEnabled(enable != 0); +} + +void QShortcut_SetKey(QtObjectPtr ptr, QtObjectPtr key){ + static_cast(ptr)->setKey(*static_cast(key)); +} + +void QShortcut_SetWhatsThis(QtObjectPtr ptr, char* text){ + static_cast(ptr)->setWhatsThis(QString(text)); +} + +char* QShortcut_WhatsThis(QtObjectPtr ptr){ + return static_cast(ptr)->whatsThis().toUtf8().data(); +} + +QtObjectPtr QShortcut_NewQShortcut(QtObjectPtr parent){ + return new QShortcut(static_cast(parent)); +} + +QtObjectPtr QShortcut_NewQShortcut2(QtObjectPtr key, QtObjectPtr parent, char* member, char* ambiguousMember, int context){ + return new QShortcut(*static_cast(key), static_cast(parent), const_cast(member), const_cast(ambiguousMember), static_cast(context)); +} + +void QShortcut_ConnectActivated(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QShortcut::activated), static_cast(ptr), static_cast(&MyQShortcut::Signal_Activated));; +} + +void QShortcut_DisconnectActivated(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QShortcut::activated), static_cast(ptr), static_cast(&MyQShortcut::Signal_Activated));; +} + +void QShortcut_ConnectActivatedAmbiguously(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QShortcut::activatedAmbiguously), static_cast(ptr), static_cast(&MyQShortcut::Signal_ActivatedAmbiguously));; +} + +void QShortcut_DisconnectActivatedAmbiguously(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QShortcut::activatedAmbiguously), static_cast(ptr), static_cast(&MyQShortcut::Signal_ActivatedAmbiguously));; +} + +int QShortcut_Id(QtObjectPtr ptr){ + return static_cast(ptr)->id(); +} + +QtObjectPtr QShortcut_ParentWidget(QtObjectPtr ptr){ + return static_cast(ptr)->parentWidget(); +} + +void QShortcut_DestroyQShortcut(QtObjectPtr ptr){ + static_cast(ptr)->~QShortcut(); +} + diff --git a/widgets/qshortcut.go b/widgets/qshortcut.go new file mode 100755 index 00000000..0ab59b58 --- /dev/null +++ b/widgets/qshortcut.go @@ -0,0 +1,164 @@ +package widgets + +//#include "qshortcut.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QShortcut struct { + core.QObject +} + +type QShortcutITF interface { + core.QObjectITF + QShortcutPTR() *QShortcut +} + +func PointerFromQShortcut(ptr QShortcutITF) unsafe.Pointer { + if ptr != nil { + return ptr.QShortcutPTR().Pointer() + } + return nil +} + +func QShortcutFromPointer(ptr unsafe.Pointer) *QShortcut { + var n = new(QShortcut) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QShortcut_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QShortcut) QShortcutPTR() *QShortcut { + return ptr +} + +func (ptr *QShortcut) AutoRepeat() bool { + if ptr.Pointer() != nil { + return C.QShortcut_AutoRepeat(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QShortcut) Context() core.Qt__ShortcutContext { + if ptr.Pointer() != nil { + return core.Qt__ShortcutContext(C.QShortcut_Context(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QShortcut) IsEnabled() bool { + if ptr.Pointer() != nil { + return C.QShortcut_IsEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QShortcut) SetAutoRepeat(on bool) { + if ptr.Pointer() != nil { + C.QShortcut_SetAutoRepeat(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(on))) + } +} + +func (ptr *QShortcut) SetContext(context core.Qt__ShortcutContext) { + if ptr.Pointer() != nil { + C.QShortcut_SetContext(C.QtObjectPtr(ptr.Pointer()), C.int(context)) + } +} + +func (ptr *QShortcut) SetEnabled(enable bool) { + if ptr.Pointer() != nil { + C.QShortcut_SetEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QShortcut) SetKey(key gui.QKeySequenceITF) { + if ptr.Pointer() != nil { + C.QShortcut_SetKey(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQKeySequence(key))) + } +} + +func (ptr *QShortcut) SetWhatsThis(text string) { + if ptr.Pointer() != nil { + C.QShortcut_SetWhatsThis(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QShortcut) WhatsThis() string { + if ptr.Pointer() != nil { + return C.GoString(C.QShortcut_WhatsThis(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func NewQShortcut(parent QWidgetITF) *QShortcut { + return QShortcutFromPointer(unsafe.Pointer(C.QShortcut_NewQShortcut(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQShortcut2(key gui.QKeySequenceITF, parent QWidgetITF, member string, ambiguousMember string, context core.Qt__ShortcutContext) *QShortcut { + return QShortcutFromPointer(unsafe.Pointer(C.QShortcut_NewQShortcut2(C.QtObjectPtr(gui.PointerFromQKeySequence(key)), C.QtObjectPtr(PointerFromQWidget(parent)), C.CString(member), C.CString(ambiguousMember), C.int(context)))) +} + +func (ptr *QShortcut) ConnectActivated(f func()) { + if ptr.Pointer() != nil { + C.QShortcut_ConnectActivated(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "activated", f) + } +} + +func (ptr *QShortcut) DisconnectActivated() { + if ptr.Pointer() != nil { + C.QShortcut_DisconnectActivated(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "activated") + } +} + +//export callbackQShortcutActivated +func callbackQShortcutActivated(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "activated").(func())() +} + +func (ptr *QShortcut) ConnectActivatedAmbiguously(f func()) { + if ptr.Pointer() != nil { + C.QShortcut_ConnectActivatedAmbiguously(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "activatedAmbiguously", f) + } +} + +func (ptr *QShortcut) DisconnectActivatedAmbiguously() { + if ptr.Pointer() != nil { + C.QShortcut_DisconnectActivatedAmbiguously(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "activatedAmbiguously") + } +} + +//export callbackQShortcutActivatedAmbiguously +func callbackQShortcutActivatedAmbiguously(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "activatedAmbiguously").(func())() +} + +func (ptr *QShortcut) Id() int { + if ptr.Pointer() != nil { + return int(C.QShortcut_Id(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QShortcut) ParentWidget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QShortcut_ParentWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QShortcut) DestroyQShortcut() { + if ptr.Pointer() != nil { + C.QShortcut_DestroyQShortcut(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qshortcut.h b/widgets/qshortcut.h new file mode 100755 index 00000000..e8bb0740 --- /dev/null +++ b/widgets/qshortcut.h @@ -0,0 +1,27 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QShortcut_AutoRepeat(QtObjectPtr ptr); +int QShortcut_Context(QtObjectPtr ptr); +int QShortcut_IsEnabled(QtObjectPtr ptr); +void QShortcut_SetAutoRepeat(QtObjectPtr ptr, int on); +void QShortcut_SetContext(QtObjectPtr ptr, int context); +void QShortcut_SetEnabled(QtObjectPtr ptr, int enable); +void QShortcut_SetKey(QtObjectPtr ptr, QtObjectPtr key); +void QShortcut_SetWhatsThis(QtObjectPtr ptr, char* text); +char* QShortcut_WhatsThis(QtObjectPtr ptr); +QtObjectPtr QShortcut_NewQShortcut(QtObjectPtr parent); +QtObjectPtr QShortcut_NewQShortcut2(QtObjectPtr key, QtObjectPtr parent, char* member, char* ambiguousMember, int context); +void QShortcut_ConnectActivated(QtObjectPtr ptr); +void QShortcut_DisconnectActivated(QtObjectPtr ptr); +void QShortcut_ConnectActivatedAmbiguously(QtObjectPtr ptr); +void QShortcut_DisconnectActivatedAmbiguously(QtObjectPtr ptr); +int QShortcut_Id(QtObjectPtr ptr); +QtObjectPtr QShortcut_ParentWidget(QtObjectPtr ptr); +void QShortcut_DestroyQShortcut(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qsizegrip.cpp b/widgets/qsizegrip.cpp new file mode 100755 index 00000000..f192ae46 --- /dev/null +++ b/widgets/qsizegrip.cpp @@ -0,0 +1,26 @@ +#include "qsizegrip.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSizeGrip: public QSizeGrip { +public: +}; + +QtObjectPtr QSizeGrip_NewQSizeGrip(QtObjectPtr parent){ + return new QSizeGrip(static_cast(parent)); +} + +void QSizeGrip_SetVisible(QtObjectPtr ptr, int visible){ + static_cast(ptr)->setVisible(visible != 0); +} + +void QSizeGrip_DestroyQSizeGrip(QtObjectPtr ptr){ + static_cast(ptr)->~QSizeGrip(); +} + diff --git a/widgets/qsizegrip.go b/widgets/qsizegrip.go new file mode 100755 index 00000000..d9ca1b3a --- /dev/null +++ b/widgets/qsizegrip.go @@ -0,0 +1,54 @@ +package widgets + +//#include "qsizegrip.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QSizeGrip struct { + QWidget +} + +type QSizeGripITF interface { + QWidgetITF + QSizeGripPTR() *QSizeGrip +} + +func PointerFromQSizeGrip(ptr QSizeGripITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSizeGripPTR().Pointer() + } + return nil +} + +func QSizeGripFromPointer(ptr unsafe.Pointer) *QSizeGrip { + var n = new(QSizeGrip) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSizeGrip_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSizeGrip) QSizeGripPTR() *QSizeGrip { + return ptr +} + +func NewQSizeGrip(parent QWidgetITF) *QSizeGrip { + return QSizeGripFromPointer(unsafe.Pointer(C.QSizeGrip_NewQSizeGrip(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QSizeGrip) SetVisible(visible bool) { + if ptr.Pointer() != nil { + C.QSizeGrip_SetVisible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(visible))) + } +} + +func (ptr *QSizeGrip) DestroyQSizeGrip() { + if ptr.Pointer() != nil { + C.QSizeGrip_DestroyQSizeGrip(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qsizegrip.h b/widgets/qsizegrip.h new file mode 100755 index 00000000..92430c66 --- /dev/null +++ b/widgets/qsizegrip.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSizeGrip_NewQSizeGrip(QtObjectPtr parent); +void QSizeGrip_SetVisible(QtObjectPtr ptr, int visible); +void QSizeGrip_DestroyQSizeGrip(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qsizepolicy.cpp b/widgets/qsizepolicy.cpp new file mode 100755 index 00000000..f02ffb64 --- /dev/null +++ b/widgets/qsizepolicy.cpp @@ -0,0 +1,93 @@ +#include "qsizepolicy.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSizePolicy: public QSizePolicy { +public: +}; + +QtObjectPtr QSizePolicy_NewQSizePolicy(){ + return new QSizePolicy(); +} + +QtObjectPtr QSizePolicy_NewQSizePolicy2(int horizontal, int vertical, int ty){ + return new QSizePolicy(static_cast(horizontal), static_cast(vertical), static_cast(ty)); +} + +int QSizePolicy_ControlType(QtObjectPtr ptr){ + return static_cast(ptr)->controlType(); +} + +int QSizePolicy_ExpandingDirections(QtObjectPtr ptr){ + return static_cast(ptr)->expandingDirections(); +} + +int QSizePolicy_HasHeightForWidth(QtObjectPtr ptr){ + return static_cast(ptr)->hasHeightForWidth(); +} + +int QSizePolicy_HasWidthForHeight(QtObjectPtr ptr){ + return static_cast(ptr)->hasWidthForHeight(); +} + +int QSizePolicy_HorizontalPolicy(QtObjectPtr ptr){ + return static_cast(ptr)->horizontalPolicy(); +} + +int QSizePolicy_HorizontalStretch(QtObjectPtr ptr){ + return static_cast(ptr)->horizontalStretch(); +} + +int QSizePolicy_RetainSizeWhenHidden(QtObjectPtr ptr){ + return static_cast(ptr)->retainSizeWhenHidden(); +} + +void QSizePolicy_SetControlType(QtObjectPtr ptr, int ty){ + static_cast(ptr)->setControlType(static_cast(ty)); +} + +void QSizePolicy_SetHeightForWidth(QtObjectPtr ptr, int dependent){ + static_cast(ptr)->setHeightForWidth(dependent != 0); +} + +void QSizePolicy_SetHorizontalPolicy(QtObjectPtr ptr, int policy){ + static_cast(ptr)->setHorizontalPolicy(static_cast(policy)); +} + +void QSizePolicy_SetHorizontalStretch(QtObjectPtr ptr, int stretchFactor){ + static_cast(ptr)->setHorizontalStretch(stretchFactor); +} + +void QSizePolicy_SetRetainSizeWhenHidden(QtObjectPtr ptr, int retainSize){ + static_cast(ptr)->setRetainSizeWhenHidden(retainSize != 0); +} + +void QSizePolicy_SetVerticalPolicy(QtObjectPtr ptr, int policy){ + static_cast(ptr)->setVerticalPolicy(static_cast(policy)); +} + +void QSizePolicy_SetVerticalStretch(QtObjectPtr ptr, int stretchFactor){ + static_cast(ptr)->setVerticalStretch(stretchFactor); +} + +void QSizePolicy_SetWidthForHeight(QtObjectPtr ptr, int dependent){ + static_cast(ptr)->setWidthForHeight(dependent != 0); +} + +void QSizePolicy_Transpose(QtObjectPtr ptr){ + static_cast(ptr)->transpose(); +} + +int QSizePolicy_VerticalPolicy(QtObjectPtr ptr){ + return static_cast(ptr)->verticalPolicy(); +} + +int QSizePolicy_VerticalStretch(QtObjectPtr ptr){ + return static_cast(ptr)->verticalStretch(); +} + diff --git a/widgets/qsizepolicy.go b/widgets/qsizepolicy.go new file mode 100755 index 00000000..6e2410a9 --- /dev/null +++ b/widgets/qsizepolicy.go @@ -0,0 +1,211 @@ +package widgets + +//#include "qsizepolicy.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QSizePolicy struct { + ptr unsafe.Pointer +} + +type QSizePolicyITF interface { + QSizePolicyPTR() *QSizePolicy +} + +func (p *QSizePolicy) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSizePolicy) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSizePolicy(ptr QSizePolicyITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSizePolicyPTR().Pointer() + } + return nil +} + +func QSizePolicyFromPointer(ptr unsafe.Pointer) *QSizePolicy { + var n = new(QSizePolicy) + n.SetPointer(ptr) + return n +} + +func (ptr *QSizePolicy) QSizePolicyPTR() *QSizePolicy { + return ptr +} + +//QSizePolicy::ControlType +type QSizePolicy__ControlType int + +var ( + QSizePolicy__DefaultType = QSizePolicy__ControlType(0x00000001) + QSizePolicy__ButtonBox = QSizePolicy__ControlType(0x00000002) + QSizePolicy__CheckBox = QSizePolicy__ControlType(0x00000004) + QSizePolicy__ComboBox = QSizePolicy__ControlType(0x00000008) + QSizePolicy__Frame = QSizePolicy__ControlType(0x00000010) + QSizePolicy__GroupBox = QSizePolicy__ControlType(0x00000020) + QSizePolicy__Label = QSizePolicy__ControlType(0x00000040) + QSizePolicy__Line = QSizePolicy__ControlType(0x00000080) + QSizePolicy__LineEdit = QSizePolicy__ControlType(0x00000100) + QSizePolicy__PushButton = QSizePolicy__ControlType(0x00000200) + QSizePolicy__RadioButton = QSizePolicy__ControlType(0x00000400) + QSizePolicy__Slider = QSizePolicy__ControlType(0x00000800) + QSizePolicy__SpinBox = QSizePolicy__ControlType(0x00001000) + QSizePolicy__TabWidget = QSizePolicy__ControlType(0x00002000) + QSizePolicy__ToolButton = QSizePolicy__ControlType(0x00004000) +) + +//QSizePolicy::Policy +type QSizePolicy__Policy int + +var ( + QSizePolicy__Fixed = QSizePolicy__Policy(0) + QSizePolicy__Minimum = QSizePolicy__Policy(QSizePolicy__GrowFlag) + QSizePolicy__Maximum = QSizePolicy__Policy(QSizePolicy__ShrinkFlag) + QSizePolicy__Preferred = QSizePolicy__Policy(QSizePolicy__GrowFlag | QSizePolicy__ShrinkFlag) + QSizePolicy__MinimumExpanding = QSizePolicy__Policy(QSizePolicy__GrowFlag | QSizePolicy__ExpandFlag) + QSizePolicy__Expanding = QSizePolicy__Policy(QSizePolicy__GrowFlag | QSizePolicy__ShrinkFlag | QSizePolicy__ExpandFlag) + QSizePolicy__Ignored = QSizePolicy__Policy(QSizePolicy__ShrinkFlag | QSizePolicy__GrowFlag | QSizePolicy__IgnoreFlag) +) + +//QSizePolicy::PolicyFlag +type QSizePolicy__PolicyFlag int + +var ( + QSizePolicy__GrowFlag = QSizePolicy__PolicyFlag(1) + QSizePolicy__ExpandFlag = QSizePolicy__PolicyFlag(2) + QSizePolicy__ShrinkFlag = QSizePolicy__PolicyFlag(4) + QSizePolicy__IgnoreFlag = QSizePolicy__PolicyFlag(8) +) + +func NewQSizePolicy() *QSizePolicy { + return QSizePolicyFromPointer(unsafe.Pointer(C.QSizePolicy_NewQSizePolicy())) +} + +func NewQSizePolicy2(horizontal QSizePolicy__Policy, vertical QSizePolicy__Policy, ty QSizePolicy__ControlType) *QSizePolicy { + return QSizePolicyFromPointer(unsafe.Pointer(C.QSizePolicy_NewQSizePolicy2(C.int(horizontal), C.int(vertical), C.int(ty)))) +} + +func (ptr *QSizePolicy) ControlType() QSizePolicy__ControlType { + if ptr.Pointer() != nil { + return QSizePolicy__ControlType(C.QSizePolicy_ControlType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSizePolicy) ExpandingDirections() core.Qt__Orientation { + if ptr.Pointer() != nil { + return core.Qt__Orientation(C.QSizePolicy_ExpandingDirections(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSizePolicy) HasHeightForWidth() bool { + if ptr.Pointer() != nil { + return C.QSizePolicy_HasHeightForWidth(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSizePolicy) HasWidthForHeight() bool { + if ptr.Pointer() != nil { + return C.QSizePolicy_HasWidthForHeight(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSizePolicy) HorizontalPolicy() QSizePolicy__Policy { + if ptr.Pointer() != nil { + return QSizePolicy__Policy(C.QSizePolicy_HorizontalPolicy(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSizePolicy) HorizontalStretch() int { + if ptr.Pointer() != nil { + return int(C.QSizePolicy_HorizontalStretch(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSizePolicy) RetainSizeWhenHidden() bool { + if ptr.Pointer() != nil { + return C.QSizePolicy_RetainSizeWhenHidden(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSizePolicy) SetControlType(ty QSizePolicy__ControlType) { + if ptr.Pointer() != nil { + C.QSizePolicy_SetControlType(C.QtObjectPtr(ptr.Pointer()), C.int(ty)) + } +} + +func (ptr *QSizePolicy) SetHeightForWidth(dependent bool) { + if ptr.Pointer() != nil { + C.QSizePolicy_SetHeightForWidth(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(dependent))) + } +} + +func (ptr *QSizePolicy) SetHorizontalPolicy(policy QSizePolicy__Policy) { + if ptr.Pointer() != nil { + C.QSizePolicy_SetHorizontalPolicy(C.QtObjectPtr(ptr.Pointer()), C.int(policy)) + } +} + +func (ptr *QSizePolicy) SetHorizontalStretch(stretchFactor int) { + if ptr.Pointer() != nil { + C.QSizePolicy_SetHorizontalStretch(C.QtObjectPtr(ptr.Pointer()), C.int(stretchFactor)) + } +} + +func (ptr *QSizePolicy) SetRetainSizeWhenHidden(retainSize bool) { + if ptr.Pointer() != nil { + C.QSizePolicy_SetRetainSizeWhenHidden(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(retainSize))) + } +} + +func (ptr *QSizePolicy) SetVerticalPolicy(policy QSizePolicy__Policy) { + if ptr.Pointer() != nil { + C.QSizePolicy_SetVerticalPolicy(C.QtObjectPtr(ptr.Pointer()), C.int(policy)) + } +} + +func (ptr *QSizePolicy) SetVerticalStretch(stretchFactor int) { + if ptr.Pointer() != nil { + C.QSizePolicy_SetVerticalStretch(C.QtObjectPtr(ptr.Pointer()), C.int(stretchFactor)) + } +} + +func (ptr *QSizePolicy) SetWidthForHeight(dependent bool) { + if ptr.Pointer() != nil { + C.QSizePolicy_SetWidthForHeight(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(dependent))) + } +} + +func (ptr *QSizePolicy) Transpose() { + if ptr.Pointer() != nil { + C.QSizePolicy_Transpose(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSizePolicy) VerticalPolicy() QSizePolicy__Policy { + if ptr.Pointer() != nil { + return QSizePolicy__Policy(C.QSizePolicy_VerticalPolicy(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSizePolicy) VerticalStretch() int { + if ptr.Pointer() != nil { + return int(C.QSizePolicy_VerticalStretch(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/widgets/qsizepolicy.h b/widgets/qsizepolicy.h new file mode 100755 index 00000000..68da676a --- /dev/null +++ b/widgets/qsizepolicy.h @@ -0,0 +1,29 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSizePolicy_NewQSizePolicy(); +QtObjectPtr QSizePolicy_NewQSizePolicy2(int horizontal, int vertical, int ty); +int QSizePolicy_ControlType(QtObjectPtr ptr); +int QSizePolicy_ExpandingDirections(QtObjectPtr ptr); +int QSizePolicy_HasHeightForWidth(QtObjectPtr ptr); +int QSizePolicy_HasWidthForHeight(QtObjectPtr ptr); +int QSizePolicy_HorizontalPolicy(QtObjectPtr ptr); +int QSizePolicy_HorizontalStretch(QtObjectPtr ptr); +int QSizePolicy_RetainSizeWhenHidden(QtObjectPtr ptr); +void QSizePolicy_SetControlType(QtObjectPtr ptr, int ty); +void QSizePolicy_SetHeightForWidth(QtObjectPtr ptr, int dependent); +void QSizePolicy_SetHorizontalPolicy(QtObjectPtr ptr, int policy); +void QSizePolicy_SetHorizontalStretch(QtObjectPtr ptr, int stretchFactor); +void QSizePolicy_SetRetainSizeWhenHidden(QtObjectPtr ptr, int retainSize); +void QSizePolicy_SetVerticalPolicy(QtObjectPtr ptr, int policy); +void QSizePolicy_SetVerticalStretch(QtObjectPtr ptr, int stretchFactor); +void QSizePolicy_SetWidthForHeight(QtObjectPtr ptr, int dependent); +void QSizePolicy_Transpose(QtObjectPtr ptr); +int QSizePolicy_VerticalPolicy(QtObjectPtr ptr); +int QSizePolicy_VerticalStretch(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qslider.cpp b/widgets/qslider.cpp new file mode 100755 index 00000000..a05a214d --- /dev/null +++ b/widgets/qslider.cpp @@ -0,0 +1,46 @@ +#include "qslider.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSlider: public QSlider { +public: +}; + +void QSlider_SetTickInterval(QtObjectPtr ptr, int ti){ + static_cast(ptr)->setTickInterval(ti); +} + +void QSlider_SetTickPosition(QtObjectPtr ptr, int position){ + static_cast(ptr)->setTickPosition(static_cast(position)); +} + +int QSlider_TickInterval(QtObjectPtr ptr){ + return static_cast(ptr)->tickInterval(); +} + +int QSlider_TickPosition(QtObjectPtr ptr){ + return static_cast(ptr)->tickPosition(); +} + +QtObjectPtr QSlider_NewQSlider(QtObjectPtr parent){ + return new QSlider(static_cast(parent)); +} + +QtObjectPtr QSlider_NewQSlider2(int orientation, QtObjectPtr parent){ + return new QSlider(static_cast(orientation), static_cast(parent)); +} + +int QSlider_Event(QtObjectPtr ptr, QtObjectPtr event){ + return static_cast(ptr)->event(static_cast(event)); +} + +void QSlider_DestroyQSlider(QtObjectPtr ptr){ + static_cast(ptr)->~QSlider(); +} + diff --git a/widgets/qslider.go b/widgets/qslider.go new file mode 100755 index 00000000..84eccd32 --- /dev/null +++ b/widgets/qslider.go @@ -0,0 +1,98 @@ +package widgets + +//#include "qslider.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QSlider struct { + QAbstractSlider +} + +type QSliderITF interface { + QAbstractSliderITF + QSliderPTR() *QSlider +} + +func PointerFromQSlider(ptr QSliderITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSliderPTR().Pointer() + } + return nil +} + +func QSliderFromPointer(ptr unsafe.Pointer) *QSlider { + var n = new(QSlider) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSlider_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSlider) QSliderPTR() *QSlider { + return ptr +} + +//QSlider::TickPosition +type QSlider__TickPosition int + +var ( + QSlider__NoTicks = QSlider__TickPosition(0) + QSlider__TicksAbove = QSlider__TickPosition(1) + QSlider__TicksLeft = QSlider__TickPosition(QSlider__TicksAbove) + QSlider__TicksBelow = QSlider__TickPosition(2) + QSlider__TicksRight = QSlider__TickPosition(QSlider__TicksBelow) + QSlider__TicksBothSides = QSlider__TickPosition(3) +) + +func (ptr *QSlider) SetTickInterval(ti int) { + if ptr.Pointer() != nil { + C.QSlider_SetTickInterval(C.QtObjectPtr(ptr.Pointer()), C.int(ti)) + } +} + +func (ptr *QSlider) SetTickPosition(position QSlider__TickPosition) { + if ptr.Pointer() != nil { + C.QSlider_SetTickPosition(C.QtObjectPtr(ptr.Pointer()), C.int(position)) + } +} + +func (ptr *QSlider) TickInterval() int { + if ptr.Pointer() != nil { + return int(C.QSlider_TickInterval(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSlider) TickPosition() QSlider__TickPosition { + if ptr.Pointer() != nil { + return QSlider__TickPosition(C.QSlider_TickPosition(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQSlider(parent QWidgetITF) *QSlider { + return QSliderFromPointer(unsafe.Pointer(C.QSlider_NewQSlider(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQSlider2(orientation core.Qt__Orientation, parent QWidgetITF) *QSlider { + return QSliderFromPointer(unsafe.Pointer(C.QSlider_NewQSlider2(C.int(orientation), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QSlider) Event(event core.QEventITF) bool { + if ptr.Pointer() != nil { + return C.QSlider_Event(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQEvent(event))) != 0 + } + return false +} + +func (ptr *QSlider) DestroyQSlider() { + if ptr.Pointer() != nil { + C.QSlider_DestroyQSlider(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qslider.h b/widgets/qslider.h new file mode 100755 index 00000000..a5b4447c --- /dev/null +++ b/widgets/qslider.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QSlider_SetTickInterval(QtObjectPtr ptr, int ti); +void QSlider_SetTickPosition(QtObjectPtr ptr, int position); +int QSlider_TickInterval(QtObjectPtr ptr); +int QSlider_TickPosition(QtObjectPtr ptr); +QtObjectPtr QSlider_NewQSlider(QtObjectPtr parent); +QtObjectPtr QSlider_NewQSlider2(int orientation, QtObjectPtr parent); +int QSlider_Event(QtObjectPtr ptr, QtObjectPtr event); +void QSlider_DestroyQSlider(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qspaceritem.cpp b/widgets/qspaceritem.cpp new file mode 100755 index 00000000..11a6392f --- /dev/null +++ b/widgets/qspaceritem.cpp @@ -0,0 +1,43 @@ +#include "qspaceritem.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSpacerItem: public QSpacerItem { +public: +}; + +QtObjectPtr QSpacerItem_NewQSpacerItem(int w, int h, int hPolicy, int vPolicy){ + return new QSpacerItem(w, h, static_cast(hPolicy), static_cast(vPolicy)); +} + +void QSpacerItem_ChangeSize(QtObjectPtr ptr, int w, int h, int hPolicy, int vPolicy){ + static_cast(ptr)->changeSize(w, h, static_cast(hPolicy), static_cast(vPolicy)); +} + +int QSpacerItem_ExpandingDirections(QtObjectPtr ptr){ + return static_cast(ptr)->expandingDirections(); +} + +int QSpacerItem_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +void QSpacerItem_SetGeometry(QtObjectPtr ptr, QtObjectPtr r){ + static_cast(ptr)->setGeometry(*static_cast(r)); +} + +QtObjectPtr QSpacerItem_SpacerItem(QtObjectPtr ptr){ + return static_cast(ptr)->spacerItem(); +} + +void QSpacerItem_DestroyQSpacerItem(QtObjectPtr ptr){ + static_cast(ptr)->~QSpacerItem(); +} + diff --git a/widgets/qspaceritem.go b/widgets/qspaceritem.go new file mode 100755 index 00000000..df34a4ca --- /dev/null +++ b/widgets/qspaceritem.go @@ -0,0 +1,77 @@ +package widgets + +//#include "qspaceritem.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QSpacerItem struct { + QLayoutItem +} + +type QSpacerItemITF interface { + QLayoutItemITF + QSpacerItemPTR() *QSpacerItem +} + +func PointerFromQSpacerItem(ptr QSpacerItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSpacerItemPTR().Pointer() + } + return nil +} + +func QSpacerItemFromPointer(ptr unsafe.Pointer) *QSpacerItem { + var n = new(QSpacerItem) + n.SetPointer(ptr) + return n +} + +func (ptr *QSpacerItem) QSpacerItemPTR() *QSpacerItem { + return ptr +} + +func NewQSpacerItem(w int, h int, hPolicy QSizePolicy__Policy, vPolicy QSizePolicy__Policy) *QSpacerItem { + return QSpacerItemFromPointer(unsafe.Pointer(C.QSpacerItem_NewQSpacerItem(C.int(w), C.int(h), C.int(hPolicy), C.int(vPolicy)))) +} + +func (ptr *QSpacerItem) ChangeSize(w int, h int, hPolicy QSizePolicy__Policy, vPolicy QSizePolicy__Policy) { + if ptr.Pointer() != nil { + C.QSpacerItem_ChangeSize(C.QtObjectPtr(ptr.Pointer()), C.int(w), C.int(h), C.int(hPolicy), C.int(vPolicy)) + } +} + +func (ptr *QSpacerItem) ExpandingDirections() core.Qt__Orientation { + if ptr.Pointer() != nil { + return core.Qt__Orientation(C.QSpacerItem_ExpandingDirections(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSpacerItem) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QSpacerItem_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSpacerItem) SetGeometry(r core.QRectITF) { + if ptr.Pointer() != nil { + C.QSpacerItem_SetGeometry(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(r))) + } +} + +func (ptr *QSpacerItem) SpacerItem() *QSpacerItem { + if ptr.Pointer() != nil { + return QSpacerItemFromPointer(unsafe.Pointer(C.QSpacerItem_SpacerItem(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSpacerItem) DestroyQSpacerItem() { + if ptr.Pointer() != nil { + C.QSpacerItem_DestroyQSpacerItem(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qspaceritem.h b/widgets/qspaceritem.h new file mode 100755 index 00000000..2925b4ba --- /dev/null +++ b/widgets/qspaceritem.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSpacerItem_NewQSpacerItem(int w, int h, int hPolicy, int vPolicy); +void QSpacerItem_ChangeSize(QtObjectPtr ptr, int w, int h, int hPolicy, int vPolicy); +int QSpacerItem_ExpandingDirections(QtObjectPtr ptr); +int QSpacerItem_IsEmpty(QtObjectPtr ptr); +void QSpacerItem_SetGeometry(QtObjectPtr ptr, QtObjectPtr r); +QtObjectPtr QSpacerItem_SpacerItem(QtObjectPtr ptr); +void QSpacerItem_DestroyQSpacerItem(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qspinbox.cpp b/widgets/qspinbox.cpp new file mode 100755 index 00000000..a94b7616 --- /dev/null +++ b/widgets/qspinbox.cpp @@ -0,0 +1,96 @@ +#include "qspinbox.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSpinBox: public QSpinBox { +public: +void Signal_ValueChanged(int i){callbackQSpinBoxValueChanged(this->objectName().toUtf8().data(), i);}; +}; + +char* QSpinBox_CleanText(QtObjectPtr ptr){ + return static_cast(ptr)->cleanText().toUtf8().data(); +} + +int QSpinBox_DisplayIntegerBase(QtObjectPtr ptr){ + return static_cast(ptr)->displayIntegerBase(); +} + +int QSpinBox_Maximum(QtObjectPtr ptr){ + return static_cast(ptr)->maximum(); +} + +int QSpinBox_Minimum(QtObjectPtr ptr){ + return static_cast(ptr)->minimum(); +} + +char* QSpinBox_Prefix(QtObjectPtr ptr){ + return static_cast(ptr)->prefix().toUtf8().data(); +} + +void QSpinBox_SetDisplayIntegerBase(QtObjectPtr ptr, int base){ + static_cast(ptr)->setDisplayIntegerBase(base); +} + +void QSpinBox_SetMaximum(QtObjectPtr ptr, int max){ + static_cast(ptr)->setMaximum(max); +} + +void QSpinBox_SetMinimum(QtObjectPtr ptr, int min){ + static_cast(ptr)->setMinimum(min); +} + +void QSpinBox_SetPrefix(QtObjectPtr ptr, char* prefix){ + static_cast(ptr)->setPrefix(QString(prefix)); +} + +void QSpinBox_SetSingleStep(QtObjectPtr ptr, int val){ + static_cast(ptr)->setSingleStep(val); +} + +void QSpinBox_SetSuffix(QtObjectPtr ptr, char* suffix){ + static_cast(ptr)->setSuffix(QString(suffix)); +} + +void QSpinBox_SetValue(QtObjectPtr ptr, int val){ + QMetaObject::invokeMethod(static_cast(ptr), "setValue", Q_ARG(int, val)); +} + +int QSpinBox_SingleStep(QtObjectPtr ptr){ + return static_cast(ptr)->singleStep(); +} + +char* QSpinBox_Suffix(QtObjectPtr ptr){ + return static_cast(ptr)->suffix().toUtf8().data(); +} + +int QSpinBox_Value(QtObjectPtr ptr){ + return static_cast(ptr)->value(); +} + +QtObjectPtr QSpinBox_NewQSpinBox(QtObjectPtr parent){ + return new QSpinBox(static_cast(parent)); +} + +void QSpinBox_SetRange(QtObjectPtr ptr, int minimum, int maximum){ + static_cast(ptr)->setRange(minimum, maximum); +} + +void QSpinBox_ConnectValueChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSpinBox::valueChanged), static_cast(ptr), static_cast(&MyQSpinBox::Signal_ValueChanged));; +} + +void QSpinBox_DisconnectValueChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSpinBox::valueChanged), static_cast(ptr), static_cast(&MyQSpinBox::Signal_ValueChanged));; +} + +void QSpinBox_DestroyQSpinBox(QtObjectPtr ptr){ + static_cast(ptr)->~QSpinBox(); +} + diff --git a/widgets/qspinbox.go b/widgets/qspinbox.go new file mode 100755 index 00000000..9f37308c --- /dev/null +++ b/widgets/qspinbox.go @@ -0,0 +1,171 @@ +package widgets + +//#include "qspinbox.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QSpinBox struct { + QAbstractSpinBox +} + +type QSpinBoxITF interface { + QAbstractSpinBoxITF + QSpinBoxPTR() *QSpinBox +} + +func PointerFromQSpinBox(ptr QSpinBoxITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSpinBoxPTR().Pointer() + } + return nil +} + +func QSpinBoxFromPointer(ptr unsafe.Pointer) *QSpinBox { + var n = new(QSpinBox) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSpinBox_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSpinBox) QSpinBoxPTR() *QSpinBox { + return ptr +} + +func (ptr *QSpinBox) CleanText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSpinBox_CleanText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSpinBox) DisplayIntegerBase() int { + if ptr.Pointer() != nil { + return int(C.QSpinBox_DisplayIntegerBase(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSpinBox) Maximum() int { + if ptr.Pointer() != nil { + return int(C.QSpinBox_Maximum(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSpinBox) Minimum() int { + if ptr.Pointer() != nil { + return int(C.QSpinBox_Minimum(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSpinBox) Prefix() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSpinBox_Prefix(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSpinBox) SetDisplayIntegerBase(base int) { + if ptr.Pointer() != nil { + C.QSpinBox_SetDisplayIntegerBase(C.QtObjectPtr(ptr.Pointer()), C.int(base)) + } +} + +func (ptr *QSpinBox) SetMaximum(max int) { + if ptr.Pointer() != nil { + C.QSpinBox_SetMaximum(C.QtObjectPtr(ptr.Pointer()), C.int(max)) + } +} + +func (ptr *QSpinBox) SetMinimum(min int) { + if ptr.Pointer() != nil { + C.QSpinBox_SetMinimum(C.QtObjectPtr(ptr.Pointer()), C.int(min)) + } +} + +func (ptr *QSpinBox) SetPrefix(prefix string) { + if ptr.Pointer() != nil { + C.QSpinBox_SetPrefix(C.QtObjectPtr(ptr.Pointer()), C.CString(prefix)) + } +} + +func (ptr *QSpinBox) SetSingleStep(val int) { + if ptr.Pointer() != nil { + C.QSpinBox_SetSingleStep(C.QtObjectPtr(ptr.Pointer()), C.int(val)) + } +} + +func (ptr *QSpinBox) SetSuffix(suffix string) { + if ptr.Pointer() != nil { + C.QSpinBox_SetSuffix(C.QtObjectPtr(ptr.Pointer()), C.CString(suffix)) + } +} + +func (ptr *QSpinBox) SetValue(val int) { + if ptr.Pointer() != nil { + C.QSpinBox_SetValue(C.QtObjectPtr(ptr.Pointer()), C.int(val)) + } +} + +func (ptr *QSpinBox) SingleStep() int { + if ptr.Pointer() != nil { + return int(C.QSpinBox_SingleStep(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSpinBox) Suffix() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSpinBox_Suffix(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSpinBox) Value() int { + if ptr.Pointer() != nil { + return int(C.QSpinBox_Value(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQSpinBox(parent QWidgetITF) *QSpinBox { + return QSpinBoxFromPointer(unsafe.Pointer(C.QSpinBox_NewQSpinBox(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QSpinBox) SetRange(minimum int, maximum int) { + if ptr.Pointer() != nil { + C.QSpinBox_SetRange(C.QtObjectPtr(ptr.Pointer()), C.int(minimum), C.int(maximum)) + } +} + +func (ptr *QSpinBox) ConnectValueChanged(f func(i int)) { + if ptr.Pointer() != nil { + C.QSpinBox_ConnectValueChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "valueChanged", f) + } +} + +func (ptr *QSpinBox) DisconnectValueChanged() { + if ptr.Pointer() != nil { + C.QSpinBox_DisconnectValueChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "valueChanged") + } +} + +//export callbackQSpinBoxValueChanged +func callbackQSpinBoxValueChanged(ptrName *C.char, i C.int) { + qt.GetSignal(C.GoString(ptrName), "valueChanged").(func(int))(int(i)) +} + +func (ptr *QSpinBox) DestroyQSpinBox() { + if ptr.Pointer() != nil { + C.QSpinBox_DestroyQSpinBox(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qspinbox.h b/widgets/qspinbox.h new file mode 100755 index 00000000..29a3a609 --- /dev/null +++ b/widgets/qspinbox.h @@ -0,0 +1,29 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QSpinBox_CleanText(QtObjectPtr ptr); +int QSpinBox_DisplayIntegerBase(QtObjectPtr ptr); +int QSpinBox_Maximum(QtObjectPtr ptr); +int QSpinBox_Minimum(QtObjectPtr ptr); +char* QSpinBox_Prefix(QtObjectPtr ptr); +void QSpinBox_SetDisplayIntegerBase(QtObjectPtr ptr, int base); +void QSpinBox_SetMaximum(QtObjectPtr ptr, int max); +void QSpinBox_SetMinimum(QtObjectPtr ptr, int min); +void QSpinBox_SetPrefix(QtObjectPtr ptr, char* prefix); +void QSpinBox_SetSingleStep(QtObjectPtr ptr, int val); +void QSpinBox_SetSuffix(QtObjectPtr ptr, char* suffix); +void QSpinBox_SetValue(QtObjectPtr ptr, int val); +int QSpinBox_SingleStep(QtObjectPtr ptr); +char* QSpinBox_Suffix(QtObjectPtr ptr); +int QSpinBox_Value(QtObjectPtr ptr); +QtObjectPtr QSpinBox_NewQSpinBox(QtObjectPtr parent); +void QSpinBox_SetRange(QtObjectPtr ptr, int minimum, int maximum); +void QSpinBox_ConnectValueChanged(QtObjectPtr ptr); +void QSpinBox_DisconnectValueChanged(QtObjectPtr ptr); +void QSpinBox_DestroyQSpinBox(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qsplashscreen.cpp b/widgets/qsplashscreen.cpp new file mode 100755 index 00000000..f2b266a7 --- /dev/null +++ b/widgets/qsplashscreen.cpp @@ -0,0 +1,62 @@ +#include "qsplashscreen.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSplashScreen: public QSplashScreen { +public: +void Signal_MessageChanged(const QString & message){callbackQSplashScreenMessageChanged(this->objectName().toUtf8().data(), message.toUtf8().data());}; +}; + +QtObjectPtr QSplashScreen_NewQSplashScreen2(QtObjectPtr parent, QtObjectPtr pixmap, int f){ + return new QSplashScreen(static_cast(parent), *static_cast(pixmap), static_cast(f)); +} + +QtObjectPtr QSplashScreen_NewQSplashScreen(QtObjectPtr pixmap, int f){ + return new QSplashScreen(*static_cast(pixmap), static_cast(f)); +} + +void QSplashScreen_ClearMessage(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "clearMessage"); +} + +void QSplashScreen_Finish(QtObjectPtr ptr, QtObjectPtr mainWin){ + static_cast(ptr)->finish(static_cast(mainWin)); +} + +char* QSplashScreen_Message(QtObjectPtr ptr){ + return static_cast(ptr)->message().toUtf8().data(); +} + +void QSplashScreen_ConnectMessageChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSplashScreen::messageChanged), static_cast(ptr), static_cast(&MyQSplashScreen::Signal_MessageChanged));; +} + +void QSplashScreen_DisconnectMessageChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSplashScreen::messageChanged), static_cast(ptr), static_cast(&MyQSplashScreen::Signal_MessageChanged));; +} + +void QSplashScreen_Repaint(QtObjectPtr ptr){ + static_cast(ptr)->repaint(); +} + +void QSplashScreen_SetPixmap(QtObjectPtr ptr, QtObjectPtr pixmap){ + static_cast(ptr)->setPixmap(*static_cast(pixmap)); +} + +void QSplashScreen_ShowMessage(QtObjectPtr ptr, char* message, int alignment, QtObjectPtr color){ + QMetaObject::invokeMethod(static_cast(ptr), "showMessage", Q_ARG(QString, QString(message)), Q_ARG(int, alignment), Q_ARG(QColor, *static_cast(color))); +} + +void QSplashScreen_DestroyQSplashScreen(QtObjectPtr ptr){ + static_cast(ptr)->~QSplashScreen(); +} + diff --git a/widgets/qsplashscreen.go b/widgets/qsplashscreen.go new file mode 100755 index 00000000..3642f0bc --- /dev/null +++ b/widgets/qsplashscreen.go @@ -0,0 +1,110 @@ +package widgets + +//#include "qsplashscreen.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QSplashScreen struct { + QWidget +} + +type QSplashScreenITF interface { + QWidgetITF + QSplashScreenPTR() *QSplashScreen +} + +func PointerFromQSplashScreen(ptr QSplashScreenITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSplashScreenPTR().Pointer() + } + return nil +} + +func QSplashScreenFromPointer(ptr unsafe.Pointer) *QSplashScreen { + var n = new(QSplashScreen) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSplashScreen_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSplashScreen) QSplashScreenPTR() *QSplashScreen { + return ptr +} + +func NewQSplashScreen2(parent QWidgetITF, pixmap gui.QPixmapITF, f core.Qt__WindowType) *QSplashScreen { + return QSplashScreenFromPointer(unsafe.Pointer(C.QSplashScreen_NewQSplashScreen2(C.QtObjectPtr(PointerFromQWidget(parent)), C.QtObjectPtr(gui.PointerFromQPixmap(pixmap)), C.int(f)))) +} + +func NewQSplashScreen(pixmap gui.QPixmapITF, f core.Qt__WindowType) *QSplashScreen { + return QSplashScreenFromPointer(unsafe.Pointer(C.QSplashScreen_NewQSplashScreen(C.QtObjectPtr(gui.PointerFromQPixmap(pixmap)), C.int(f)))) +} + +func (ptr *QSplashScreen) ClearMessage() { + if ptr.Pointer() != nil { + C.QSplashScreen_ClearMessage(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSplashScreen) Finish(mainWin QWidgetITF) { + if ptr.Pointer() != nil { + C.QSplashScreen_Finish(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(mainWin))) + } +} + +func (ptr *QSplashScreen) Message() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSplashScreen_Message(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSplashScreen) ConnectMessageChanged(f func(message string)) { + if ptr.Pointer() != nil { + C.QSplashScreen_ConnectMessageChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "messageChanged", f) + } +} + +func (ptr *QSplashScreen) DisconnectMessageChanged() { + if ptr.Pointer() != nil { + C.QSplashScreen_DisconnectMessageChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "messageChanged") + } +} + +//export callbackQSplashScreenMessageChanged +func callbackQSplashScreenMessageChanged(ptrName *C.char, message *C.char) { + qt.GetSignal(C.GoString(ptrName), "messageChanged").(func(string))(C.GoString(message)) +} + +func (ptr *QSplashScreen) Repaint() { + if ptr.Pointer() != nil { + C.QSplashScreen_Repaint(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSplashScreen) SetPixmap(pixmap gui.QPixmapITF) { + if ptr.Pointer() != nil { + C.QSplashScreen_SetPixmap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPixmap(pixmap))) + } +} + +func (ptr *QSplashScreen) ShowMessage(message string, alignment int, color gui.QColorITF) { + if ptr.Pointer() != nil { + C.QSplashScreen_ShowMessage(C.QtObjectPtr(ptr.Pointer()), C.CString(message), C.int(alignment), C.QtObjectPtr(gui.PointerFromQColor(color))) + } +} + +func (ptr *QSplashScreen) DestroyQSplashScreen() { + if ptr.Pointer() != nil { + C.QSplashScreen_DestroyQSplashScreen(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qsplashscreen.h b/widgets/qsplashscreen.h new file mode 100755 index 00000000..462576f8 --- /dev/null +++ b/widgets/qsplashscreen.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSplashScreen_NewQSplashScreen2(QtObjectPtr parent, QtObjectPtr pixmap, int f); +QtObjectPtr QSplashScreen_NewQSplashScreen(QtObjectPtr pixmap, int f); +void QSplashScreen_ClearMessage(QtObjectPtr ptr); +void QSplashScreen_Finish(QtObjectPtr ptr, QtObjectPtr mainWin); +char* QSplashScreen_Message(QtObjectPtr ptr); +void QSplashScreen_ConnectMessageChanged(QtObjectPtr ptr); +void QSplashScreen_DisconnectMessageChanged(QtObjectPtr ptr); +void QSplashScreen_Repaint(QtObjectPtr ptr); +void QSplashScreen_SetPixmap(QtObjectPtr ptr, QtObjectPtr pixmap); +void QSplashScreen_ShowMessage(QtObjectPtr ptr, char* message, int alignment, QtObjectPtr color); +void QSplashScreen_DestroyQSplashScreen(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qsplitter.cpp b/widgets/qsplitter.cpp new file mode 100755 index 00000000..d182dffa --- /dev/null +++ b/widgets/qsplitter.cpp @@ -0,0 +1,116 @@ +#include "qsplitter.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSplitter: public QSplitter { +public: +void Signal_SplitterMoved(int pos, int index){callbackQSplitterSplitterMoved(this->objectName().toUtf8().data(), pos, index);}; +}; + +int QSplitter_ChildrenCollapsible(QtObjectPtr ptr){ + return static_cast(ptr)->childrenCollapsible(); +} + +int QSplitter_HandleWidth(QtObjectPtr ptr){ + return static_cast(ptr)->handleWidth(); +} + +int QSplitter_IndexOf(QtObjectPtr ptr, QtObjectPtr widget){ + return static_cast(ptr)->indexOf(static_cast(widget)); +} + +int QSplitter_OpaqueResize(QtObjectPtr ptr){ + return static_cast(ptr)->opaqueResize(); +} + +int QSplitter_Orientation(QtObjectPtr ptr){ + return static_cast(ptr)->orientation(); +} + +void QSplitter_SetChildrenCollapsible(QtObjectPtr ptr, int v){ + static_cast(ptr)->setChildrenCollapsible(v != 0); +} + +void QSplitter_SetHandleWidth(QtObjectPtr ptr, int v){ + static_cast(ptr)->setHandleWidth(v); +} + +void QSplitter_SetOpaqueResize(QtObjectPtr ptr, int opaque){ + static_cast(ptr)->setOpaqueResize(opaque != 0); +} + +void QSplitter_SetOrientation(QtObjectPtr ptr, int v){ + static_cast(ptr)->setOrientation(static_cast(v)); +} + +QtObjectPtr QSplitter_NewQSplitter(QtObjectPtr parent){ + return new QSplitter(static_cast(parent)); +} + +QtObjectPtr QSplitter_NewQSplitter2(int orientation, QtObjectPtr parent){ + return new QSplitter(static_cast(orientation), static_cast(parent)); +} + +void QSplitter_AddWidget(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->addWidget(static_cast(widget)); +} + +int QSplitter_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +void QSplitter_GetRange(QtObjectPtr ptr, int index, int min, int max){ + static_cast(ptr)->getRange(index, &min, &max); +} + +QtObjectPtr QSplitter_Handle(QtObjectPtr ptr, int index){ + return static_cast(ptr)->handle(index); +} + +void QSplitter_InsertWidget(QtObjectPtr ptr, int index, QtObjectPtr widget){ + static_cast(ptr)->insertWidget(index, static_cast(widget)); +} + +int QSplitter_IsCollapsible(QtObjectPtr ptr, int index){ + return static_cast(ptr)->isCollapsible(index); +} + +void QSplitter_Refresh(QtObjectPtr ptr){ + static_cast(ptr)->refresh(); +} + +int QSplitter_RestoreState(QtObjectPtr ptr, QtObjectPtr state){ + return static_cast(ptr)->restoreState(*static_cast(state)); +} + +void QSplitter_SetCollapsible(QtObjectPtr ptr, int index, int collapse){ + static_cast(ptr)->setCollapsible(index, collapse != 0); +} + +void QSplitter_SetStretchFactor(QtObjectPtr ptr, int index, int stretch){ + static_cast(ptr)->setStretchFactor(index, stretch); +} + +void QSplitter_ConnectSplitterMoved(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSplitter::splitterMoved), static_cast(ptr), static_cast(&MyQSplitter::Signal_SplitterMoved));; +} + +void QSplitter_DisconnectSplitterMoved(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSplitter::splitterMoved), static_cast(ptr), static_cast(&MyQSplitter::Signal_SplitterMoved));; +} + +QtObjectPtr QSplitter_Widget(QtObjectPtr ptr, int index){ + return static_cast(ptr)->widget(index); +} + +void QSplitter_DestroyQSplitter(QtObjectPtr ptr){ + static_cast(ptr)->~QSplitter(); +} + diff --git a/widgets/qsplitter.go b/widgets/qsplitter.go new file mode 100755 index 00000000..e8553181 --- /dev/null +++ b/widgets/qsplitter.go @@ -0,0 +1,202 @@ +package widgets + +//#include "qsplitter.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QSplitter struct { + QFrame +} + +type QSplitterITF interface { + QFrameITF + QSplitterPTR() *QSplitter +} + +func PointerFromQSplitter(ptr QSplitterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSplitterPTR().Pointer() + } + return nil +} + +func QSplitterFromPointer(ptr unsafe.Pointer) *QSplitter { + var n = new(QSplitter) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSplitter_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSplitter) QSplitterPTR() *QSplitter { + return ptr +} + +func (ptr *QSplitter) ChildrenCollapsible() bool { + if ptr.Pointer() != nil { + return C.QSplitter_ChildrenCollapsible(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSplitter) HandleWidth() int { + if ptr.Pointer() != nil { + return int(C.QSplitter_HandleWidth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSplitter) IndexOf(widget QWidgetITF) int { + if ptr.Pointer() != nil { + return int(C.QSplitter_IndexOf(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget)))) + } + return 0 +} + +func (ptr *QSplitter) OpaqueResize() bool { + if ptr.Pointer() != nil { + return C.QSplitter_OpaqueResize(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSplitter) Orientation() core.Qt__Orientation { + if ptr.Pointer() != nil { + return core.Qt__Orientation(C.QSplitter_Orientation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSplitter) SetChildrenCollapsible(v bool) { + if ptr.Pointer() != nil { + C.QSplitter_SetChildrenCollapsible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QSplitter) SetHandleWidth(v int) { + if ptr.Pointer() != nil { + C.QSplitter_SetHandleWidth(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QSplitter) SetOpaqueResize(opaque bool) { + if ptr.Pointer() != nil { + C.QSplitter_SetOpaqueResize(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(opaque))) + } +} + +func (ptr *QSplitter) SetOrientation(v core.Qt__Orientation) { + if ptr.Pointer() != nil { + C.QSplitter_SetOrientation(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func NewQSplitter(parent QWidgetITF) *QSplitter { + return QSplitterFromPointer(unsafe.Pointer(C.QSplitter_NewQSplitter(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQSplitter2(orientation core.Qt__Orientation, parent QWidgetITF) *QSplitter { + return QSplitterFromPointer(unsafe.Pointer(C.QSplitter_NewQSplitter2(C.int(orientation), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QSplitter) AddWidget(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QSplitter_AddWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QSplitter) Count() int { + if ptr.Pointer() != nil { + return int(C.QSplitter_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSplitter) GetRange(index int, min int, max int) { + if ptr.Pointer() != nil { + C.QSplitter_GetRange(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.int(min), C.int(max)) + } +} + +func (ptr *QSplitter) Handle(index int) *QSplitterHandle { + if ptr.Pointer() != nil { + return QSplitterHandleFromPointer(unsafe.Pointer(C.QSplitter_Handle(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QSplitter) InsertWidget(index int, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QSplitter_InsertWidget(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QSplitter) IsCollapsible(index int) bool { + if ptr.Pointer() != nil { + return C.QSplitter_IsCollapsible(C.QtObjectPtr(ptr.Pointer()), C.int(index)) != 0 + } + return false +} + +func (ptr *QSplitter) Refresh() { + if ptr.Pointer() != nil { + C.QSplitter_Refresh(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QSplitter) RestoreState(state core.QByteArrayITF) bool { + if ptr.Pointer() != nil { + return C.QSplitter_RestoreState(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(state))) != 0 + } + return false +} + +func (ptr *QSplitter) SetCollapsible(index int, collapse bool) { + if ptr.Pointer() != nil { + C.QSplitter_SetCollapsible(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.int(qt.GoBoolToInt(collapse))) + } +} + +func (ptr *QSplitter) SetStretchFactor(index int, stretch int) { + if ptr.Pointer() != nil { + C.QSplitter_SetStretchFactor(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.int(stretch)) + } +} + +func (ptr *QSplitter) ConnectSplitterMoved(f func(pos int, index int)) { + if ptr.Pointer() != nil { + C.QSplitter_ConnectSplitterMoved(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "splitterMoved", f) + } +} + +func (ptr *QSplitter) DisconnectSplitterMoved() { + if ptr.Pointer() != nil { + C.QSplitter_DisconnectSplitterMoved(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "splitterMoved") + } +} + +//export callbackQSplitterSplitterMoved +func callbackQSplitterSplitterMoved(ptrName *C.char, pos C.int, index C.int) { + qt.GetSignal(C.GoString(ptrName), "splitterMoved").(func(int, int))(int(pos), int(index)) +} + +func (ptr *QSplitter) Widget(index int) *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QSplitter_Widget(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QSplitter) DestroyQSplitter() { + if ptr.Pointer() != nil { + C.QSplitter_DestroyQSplitter(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qsplitter.h b/widgets/qsplitter.h new file mode 100755 index 00000000..641d3db3 --- /dev/null +++ b/widgets/qsplitter.h @@ -0,0 +1,34 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QSplitter_ChildrenCollapsible(QtObjectPtr ptr); +int QSplitter_HandleWidth(QtObjectPtr ptr); +int QSplitter_IndexOf(QtObjectPtr ptr, QtObjectPtr widget); +int QSplitter_OpaqueResize(QtObjectPtr ptr); +int QSplitter_Orientation(QtObjectPtr ptr); +void QSplitter_SetChildrenCollapsible(QtObjectPtr ptr, int v); +void QSplitter_SetHandleWidth(QtObjectPtr ptr, int v); +void QSplitter_SetOpaqueResize(QtObjectPtr ptr, int opaque); +void QSplitter_SetOrientation(QtObjectPtr ptr, int v); +QtObjectPtr QSplitter_NewQSplitter(QtObjectPtr parent); +QtObjectPtr QSplitter_NewQSplitter2(int orientation, QtObjectPtr parent); +void QSplitter_AddWidget(QtObjectPtr ptr, QtObjectPtr widget); +int QSplitter_Count(QtObjectPtr ptr); +void QSplitter_GetRange(QtObjectPtr ptr, int index, int min, int max); +QtObjectPtr QSplitter_Handle(QtObjectPtr ptr, int index); +void QSplitter_InsertWidget(QtObjectPtr ptr, int index, QtObjectPtr widget); +int QSplitter_IsCollapsible(QtObjectPtr ptr, int index); +void QSplitter_Refresh(QtObjectPtr ptr); +int QSplitter_RestoreState(QtObjectPtr ptr, QtObjectPtr state); +void QSplitter_SetCollapsible(QtObjectPtr ptr, int index, int collapse); +void QSplitter_SetStretchFactor(QtObjectPtr ptr, int index, int stretch); +void QSplitter_ConnectSplitterMoved(QtObjectPtr ptr); +void QSplitter_DisconnectSplitterMoved(QtObjectPtr ptr); +QtObjectPtr QSplitter_Widget(QtObjectPtr ptr, int index); +void QSplitter_DestroyQSplitter(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qsplitterhandle.cpp b/widgets/qsplitterhandle.cpp new file mode 100755 index 00000000..a0e834a7 --- /dev/null +++ b/widgets/qsplitterhandle.cpp @@ -0,0 +1,37 @@ +#include "qsplitterhandle.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSplitterHandle: public QSplitterHandle { +public: +}; + +QtObjectPtr QSplitterHandle_NewQSplitterHandle(int orientation, QtObjectPtr parent){ + return new QSplitterHandle(static_cast(orientation), static_cast(parent)); +} + +int QSplitterHandle_OpaqueResize(QtObjectPtr ptr){ + return static_cast(ptr)->opaqueResize(); +} + +int QSplitterHandle_Orientation(QtObjectPtr ptr){ + return static_cast(ptr)->orientation(); +} + +void QSplitterHandle_SetOrientation(QtObjectPtr ptr, int orientation){ + static_cast(ptr)->setOrientation(static_cast(orientation)); +} + +QtObjectPtr QSplitterHandle_Splitter(QtObjectPtr ptr){ + return static_cast(ptr)->splitter(); +} + +void QSplitterHandle_DestroyQSplitterHandle(QtObjectPtr ptr){ + static_cast(ptr)->~QSplitterHandle(); +} + diff --git a/widgets/qsplitterhandle.go b/widgets/qsplitterhandle.go new file mode 100755 index 00000000..56d31ba6 --- /dev/null +++ b/widgets/qsplitterhandle.go @@ -0,0 +1,76 @@ +package widgets + +//#include "qsplitterhandle.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QSplitterHandle struct { + QWidget +} + +type QSplitterHandleITF interface { + QWidgetITF + QSplitterHandlePTR() *QSplitterHandle +} + +func PointerFromQSplitterHandle(ptr QSplitterHandleITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSplitterHandlePTR().Pointer() + } + return nil +} + +func QSplitterHandleFromPointer(ptr unsafe.Pointer) *QSplitterHandle { + var n = new(QSplitterHandle) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSplitterHandle_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSplitterHandle) QSplitterHandlePTR() *QSplitterHandle { + return ptr +} + +func NewQSplitterHandle(orientation core.Qt__Orientation, parent QSplitterITF) *QSplitterHandle { + return QSplitterHandleFromPointer(unsafe.Pointer(C.QSplitterHandle_NewQSplitterHandle(C.int(orientation), C.QtObjectPtr(PointerFromQSplitter(parent))))) +} + +func (ptr *QSplitterHandle) OpaqueResize() bool { + if ptr.Pointer() != nil { + return C.QSplitterHandle_OpaqueResize(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSplitterHandle) Orientation() core.Qt__Orientation { + if ptr.Pointer() != nil { + return core.Qt__Orientation(C.QSplitterHandle_Orientation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSplitterHandle) SetOrientation(orientation core.Qt__Orientation) { + if ptr.Pointer() != nil { + C.QSplitterHandle_SetOrientation(C.QtObjectPtr(ptr.Pointer()), C.int(orientation)) + } +} + +func (ptr *QSplitterHandle) Splitter() *QSplitter { + if ptr.Pointer() != nil { + return QSplitterFromPointer(unsafe.Pointer(C.QSplitterHandle_Splitter(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSplitterHandle) DestroyQSplitterHandle() { + if ptr.Pointer() != nil { + C.QSplitterHandle_DestroyQSplitterHandle(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qsplitterhandle.h b/widgets/qsplitterhandle.h new file mode 100755 index 00000000..44ae685d --- /dev/null +++ b/widgets/qsplitterhandle.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSplitterHandle_NewQSplitterHandle(int orientation, QtObjectPtr parent); +int QSplitterHandle_OpaqueResize(QtObjectPtr ptr); +int QSplitterHandle_Orientation(QtObjectPtr ptr); +void QSplitterHandle_SetOrientation(QtObjectPtr ptr, int orientation); +QtObjectPtr QSplitterHandle_Splitter(QtObjectPtr ptr); +void QSplitterHandle_DestroyQSplitterHandle(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstackedlayout.cpp b/widgets/qstackedlayout.cpp new file mode 100755 index 00000000..de4891b8 --- /dev/null +++ b/widgets/qstackedlayout.cpp @@ -0,0 +1,117 @@ +#include "qstackedlayout.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStackedLayout: public QStackedLayout { +public: +void Signal_CurrentChanged(int index){callbackQStackedLayoutCurrentChanged(this->objectName().toUtf8().data(), index);}; +void Signal_WidgetRemoved(int index){callbackQStackedLayoutWidgetRemoved(this->objectName().toUtf8().data(), index);}; +}; + +int QStackedLayout_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +int QStackedLayout_CurrentIndex(QtObjectPtr ptr){ + return static_cast(ptr)->currentIndex(); +} + +void QStackedLayout_SetCurrentIndex(QtObjectPtr ptr, int index){ + QMetaObject::invokeMethod(static_cast(ptr), "setCurrentIndex", Q_ARG(int, index)); +} + +void QStackedLayout_SetCurrentWidget(QtObjectPtr ptr, QtObjectPtr widget){ + QMetaObject::invokeMethod(static_cast(ptr), "setCurrentWidget", Q_ARG(QWidget*, static_cast(widget))); +} + +void QStackedLayout_SetStackingMode(QtObjectPtr ptr, int stackingMode){ + static_cast(ptr)->setStackingMode(static_cast(stackingMode)); +} + +int QStackedLayout_StackingMode(QtObjectPtr ptr){ + return static_cast(ptr)->stackingMode(); +} + +QtObjectPtr QStackedLayout_NewQStackedLayout(){ + return new QStackedLayout(); +} + +QtObjectPtr QStackedLayout_NewQStackedLayout3(QtObjectPtr parentLayout){ + return new QStackedLayout(static_cast(parentLayout)); +} + +QtObjectPtr QStackedLayout_NewQStackedLayout2(QtObjectPtr parent){ + return new QStackedLayout(static_cast(parent)); +} + +void QStackedLayout_AddItem(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->addItem(static_cast(item)); +} + +int QStackedLayout_AddWidget(QtObjectPtr ptr, QtObjectPtr widget){ + return static_cast(ptr)->addWidget(static_cast(widget)); +} + +void QStackedLayout_ConnectCurrentChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QStackedLayout::currentChanged), static_cast(ptr), static_cast(&MyQStackedLayout::Signal_CurrentChanged));; +} + +void QStackedLayout_DisconnectCurrentChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QStackedLayout::currentChanged), static_cast(ptr), static_cast(&MyQStackedLayout::Signal_CurrentChanged));; +} + +QtObjectPtr QStackedLayout_CurrentWidget(QtObjectPtr ptr){ + return static_cast(ptr)->currentWidget(); +} + +int QStackedLayout_HasHeightForWidth(QtObjectPtr ptr){ + return static_cast(ptr)->hasHeightForWidth(); +} + +int QStackedLayout_HeightForWidth(QtObjectPtr ptr, int width){ + return static_cast(ptr)->heightForWidth(width); +} + +int QStackedLayout_InsertWidget(QtObjectPtr ptr, int index, QtObjectPtr widget){ + return static_cast(ptr)->insertWidget(index, static_cast(widget)); +} + +QtObjectPtr QStackedLayout_ItemAt(QtObjectPtr ptr, int index){ + return static_cast(ptr)->itemAt(index); +} + +void QStackedLayout_SetGeometry(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->setGeometry(*static_cast(rect)); +} + +QtObjectPtr QStackedLayout_TakeAt(QtObjectPtr ptr, int index){ + return static_cast(ptr)->takeAt(index); +} + +QtObjectPtr QStackedLayout_Widget(QtObjectPtr ptr, int index){ + return static_cast(ptr)->widget(index); +} + +void QStackedLayout_ConnectWidgetRemoved(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QStackedLayout::widgetRemoved), static_cast(ptr), static_cast(&MyQStackedLayout::Signal_WidgetRemoved));; +} + +void QStackedLayout_DisconnectWidgetRemoved(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QStackedLayout::widgetRemoved), static_cast(ptr), static_cast(&MyQStackedLayout::Signal_WidgetRemoved));; +} + +void QStackedLayout_DestroyQStackedLayout(QtObjectPtr ptr){ + static_cast(ptr)->~QStackedLayout(); +} + diff --git a/widgets/qstackedlayout.go b/widgets/qstackedlayout.go new file mode 100755 index 00000000..71cd9ed3 --- /dev/null +++ b/widgets/qstackedlayout.go @@ -0,0 +1,210 @@ +package widgets + +//#include "qstackedlayout.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QStackedLayout struct { + QLayout +} + +type QStackedLayoutITF interface { + QLayoutITF + QStackedLayoutPTR() *QStackedLayout +} + +func PointerFromQStackedLayout(ptr QStackedLayoutITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStackedLayoutPTR().Pointer() + } + return nil +} + +func QStackedLayoutFromPointer(ptr unsafe.Pointer) *QStackedLayout { + var n = new(QStackedLayout) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QStackedLayout_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QStackedLayout) QStackedLayoutPTR() *QStackedLayout { + return ptr +} + +//QStackedLayout::StackingMode +type QStackedLayout__StackingMode int + +var ( + QStackedLayout__StackOne = QStackedLayout__StackingMode(0) + QStackedLayout__StackAll = QStackedLayout__StackingMode(1) +) + +func (ptr *QStackedLayout) Count() int { + if ptr.Pointer() != nil { + return int(C.QStackedLayout_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStackedLayout) CurrentIndex() int { + if ptr.Pointer() != nil { + return int(C.QStackedLayout_CurrentIndex(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStackedLayout) SetCurrentIndex(index int) { + if ptr.Pointer() != nil { + C.QStackedLayout_SetCurrentIndex(C.QtObjectPtr(ptr.Pointer()), C.int(index)) + } +} + +func (ptr *QStackedLayout) SetCurrentWidget(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QStackedLayout_SetCurrentWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QStackedLayout) SetStackingMode(stackingMode QStackedLayout__StackingMode) { + if ptr.Pointer() != nil { + C.QStackedLayout_SetStackingMode(C.QtObjectPtr(ptr.Pointer()), C.int(stackingMode)) + } +} + +func (ptr *QStackedLayout) StackingMode() QStackedLayout__StackingMode { + if ptr.Pointer() != nil { + return QStackedLayout__StackingMode(C.QStackedLayout_StackingMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQStackedLayout() *QStackedLayout { + return QStackedLayoutFromPointer(unsafe.Pointer(C.QStackedLayout_NewQStackedLayout())) +} + +func NewQStackedLayout3(parentLayout QLayoutITF) *QStackedLayout { + return QStackedLayoutFromPointer(unsafe.Pointer(C.QStackedLayout_NewQStackedLayout3(C.QtObjectPtr(PointerFromQLayout(parentLayout))))) +} + +func NewQStackedLayout2(parent QWidgetITF) *QStackedLayout { + return QStackedLayoutFromPointer(unsafe.Pointer(C.QStackedLayout_NewQStackedLayout2(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QStackedLayout) AddItem(item QLayoutItemITF) { + if ptr.Pointer() != nil { + C.QStackedLayout_AddItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLayoutItem(item))) + } +} + +func (ptr *QStackedLayout) AddWidget(widget QWidgetITF) int { + if ptr.Pointer() != nil { + return int(C.QStackedLayout_AddWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget)))) + } + return 0 +} + +func (ptr *QStackedLayout) ConnectCurrentChanged(f func(index int)) { + if ptr.Pointer() != nil { + C.QStackedLayout_ConnectCurrentChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "currentChanged", f) + } +} + +func (ptr *QStackedLayout) DisconnectCurrentChanged() { + if ptr.Pointer() != nil { + C.QStackedLayout_DisconnectCurrentChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "currentChanged") + } +} + +//export callbackQStackedLayoutCurrentChanged +func callbackQStackedLayoutCurrentChanged(ptrName *C.char, index C.int) { + qt.GetSignal(C.GoString(ptrName), "currentChanged").(func(int))(int(index)) +} + +func (ptr *QStackedLayout) CurrentWidget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QStackedLayout_CurrentWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QStackedLayout) HasHeightForWidth() bool { + if ptr.Pointer() != nil { + return C.QStackedLayout_HasHeightForWidth(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QStackedLayout) HeightForWidth(width int) int { + if ptr.Pointer() != nil { + return int(C.QStackedLayout_HeightForWidth(C.QtObjectPtr(ptr.Pointer()), C.int(width))) + } + return 0 +} + +func (ptr *QStackedLayout) InsertWidget(index int, widget QWidgetITF) int { + if ptr.Pointer() != nil { + return int(C.QStackedLayout_InsertWidget(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.QtObjectPtr(PointerFromQWidget(widget)))) + } + return 0 +} + +func (ptr *QStackedLayout) ItemAt(index int) *QLayoutItem { + if ptr.Pointer() != nil { + return QLayoutItemFromPointer(unsafe.Pointer(C.QStackedLayout_ItemAt(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QStackedLayout) SetGeometry(rect core.QRectITF) { + if ptr.Pointer() != nil { + C.QStackedLayout_SetGeometry(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rect))) + } +} + +func (ptr *QStackedLayout) TakeAt(index int) *QLayoutItem { + if ptr.Pointer() != nil { + return QLayoutItemFromPointer(unsafe.Pointer(C.QStackedLayout_TakeAt(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QStackedLayout) Widget(index int) *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QStackedLayout_Widget(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QStackedLayout) ConnectWidgetRemoved(f func(index int)) { + if ptr.Pointer() != nil { + C.QStackedLayout_ConnectWidgetRemoved(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "widgetRemoved", f) + } +} + +func (ptr *QStackedLayout) DisconnectWidgetRemoved() { + if ptr.Pointer() != nil { + C.QStackedLayout_DisconnectWidgetRemoved(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "widgetRemoved") + } +} + +//export callbackQStackedLayoutWidgetRemoved +func callbackQStackedLayoutWidgetRemoved(ptrName *C.char, index C.int) { + qt.GetSignal(C.GoString(ptrName), "widgetRemoved").(func(int))(int(index)) +} + +func (ptr *QStackedLayout) DestroyQStackedLayout() { + if ptr.Pointer() != nil { + C.QStackedLayout_DestroyQStackedLayout(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qstackedlayout.h b/widgets/qstackedlayout.h new file mode 100755 index 00000000..aae24d5d --- /dev/null +++ b/widgets/qstackedlayout.h @@ -0,0 +1,33 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QStackedLayout_Count(QtObjectPtr ptr); +int QStackedLayout_CurrentIndex(QtObjectPtr ptr); +void QStackedLayout_SetCurrentIndex(QtObjectPtr ptr, int index); +void QStackedLayout_SetCurrentWidget(QtObjectPtr ptr, QtObjectPtr widget); +void QStackedLayout_SetStackingMode(QtObjectPtr ptr, int stackingMode); +int QStackedLayout_StackingMode(QtObjectPtr ptr); +QtObjectPtr QStackedLayout_NewQStackedLayout(); +QtObjectPtr QStackedLayout_NewQStackedLayout3(QtObjectPtr parentLayout); +QtObjectPtr QStackedLayout_NewQStackedLayout2(QtObjectPtr parent); +void QStackedLayout_AddItem(QtObjectPtr ptr, QtObjectPtr item); +int QStackedLayout_AddWidget(QtObjectPtr ptr, QtObjectPtr widget); +void QStackedLayout_ConnectCurrentChanged(QtObjectPtr ptr); +void QStackedLayout_DisconnectCurrentChanged(QtObjectPtr ptr); +QtObjectPtr QStackedLayout_CurrentWidget(QtObjectPtr ptr); +int QStackedLayout_HasHeightForWidth(QtObjectPtr ptr); +int QStackedLayout_HeightForWidth(QtObjectPtr ptr, int width); +int QStackedLayout_InsertWidget(QtObjectPtr ptr, int index, QtObjectPtr widget); +QtObjectPtr QStackedLayout_ItemAt(QtObjectPtr ptr, int index); +void QStackedLayout_SetGeometry(QtObjectPtr ptr, QtObjectPtr rect); +QtObjectPtr QStackedLayout_TakeAt(QtObjectPtr ptr, int index); +QtObjectPtr QStackedLayout_Widget(QtObjectPtr ptr, int index); +void QStackedLayout_ConnectWidgetRemoved(QtObjectPtr ptr); +void QStackedLayout_DisconnectWidgetRemoved(QtObjectPtr ptr); +void QStackedLayout_DestroyQStackedLayout(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstackedwidget.cpp b/widgets/qstackedwidget.cpp new file mode 100755 index 00000000..f07c204e --- /dev/null +++ b/widgets/qstackedwidget.cpp @@ -0,0 +1,82 @@ +#include "qstackedwidget.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStackedWidget: public QStackedWidget { +public: +void Signal_CurrentChanged(int index){callbackQStackedWidgetCurrentChanged(this->objectName().toUtf8().data(), index);}; +void Signal_WidgetRemoved(int index){callbackQStackedWidgetWidgetRemoved(this->objectName().toUtf8().data(), index);}; +}; + +int QStackedWidget_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +int QStackedWidget_CurrentIndex(QtObjectPtr ptr){ + return static_cast(ptr)->currentIndex(); +} + +void QStackedWidget_SetCurrentIndex(QtObjectPtr ptr, int index){ + QMetaObject::invokeMethod(static_cast(ptr), "setCurrentIndex", Q_ARG(int, index)); +} + +void QStackedWidget_SetCurrentWidget(QtObjectPtr ptr, QtObjectPtr widget){ + QMetaObject::invokeMethod(static_cast(ptr), "setCurrentWidget", Q_ARG(QWidget*, static_cast(widget))); +} + +QtObjectPtr QStackedWidget_NewQStackedWidget(QtObjectPtr parent){ + return new QStackedWidget(static_cast(parent)); +} + +int QStackedWidget_AddWidget(QtObjectPtr ptr, QtObjectPtr widget){ + return static_cast(ptr)->addWidget(static_cast(widget)); +} + +void QStackedWidget_ConnectCurrentChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QStackedWidget::currentChanged), static_cast(ptr), static_cast(&MyQStackedWidget::Signal_CurrentChanged));; +} + +void QStackedWidget_DisconnectCurrentChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QStackedWidget::currentChanged), static_cast(ptr), static_cast(&MyQStackedWidget::Signal_CurrentChanged));; +} + +QtObjectPtr QStackedWidget_CurrentWidget(QtObjectPtr ptr){ + return static_cast(ptr)->currentWidget(); +} + +int QStackedWidget_IndexOf(QtObjectPtr ptr, QtObjectPtr widget){ + return static_cast(ptr)->indexOf(static_cast(widget)); +} + +int QStackedWidget_InsertWidget(QtObjectPtr ptr, int index, QtObjectPtr widget){ + return static_cast(ptr)->insertWidget(index, static_cast(widget)); +} + +void QStackedWidget_RemoveWidget(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->removeWidget(static_cast(widget)); +} + +QtObjectPtr QStackedWidget_Widget(QtObjectPtr ptr, int index){ + return static_cast(ptr)->widget(index); +} + +void QStackedWidget_ConnectWidgetRemoved(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QStackedWidget::widgetRemoved), static_cast(ptr), static_cast(&MyQStackedWidget::Signal_WidgetRemoved));; +} + +void QStackedWidget_DisconnectWidgetRemoved(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QStackedWidget::widgetRemoved), static_cast(ptr), static_cast(&MyQStackedWidget::Signal_WidgetRemoved));; +} + +void QStackedWidget_DestroyQStackedWidget(QtObjectPtr ptr){ + static_cast(ptr)->~QStackedWidget(); +} + diff --git a/widgets/qstackedwidget.go b/widgets/qstackedwidget.go new file mode 100755 index 00000000..d7a3152e --- /dev/null +++ b/widgets/qstackedwidget.go @@ -0,0 +1,153 @@ +package widgets + +//#include "qstackedwidget.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QStackedWidget struct { + QFrame +} + +type QStackedWidgetITF interface { + QFrameITF + QStackedWidgetPTR() *QStackedWidget +} + +func PointerFromQStackedWidget(ptr QStackedWidgetITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStackedWidgetPTR().Pointer() + } + return nil +} + +func QStackedWidgetFromPointer(ptr unsafe.Pointer) *QStackedWidget { + var n = new(QStackedWidget) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QStackedWidget_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QStackedWidget) QStackedWidgetPTR() *QStackedWidget { + return ptr +} + +func (ptr *QStackedWidget) Count() int { + if ptr.Pointer() != nil { + return int(C.QStackedWidget_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStackedWidget) CurrentIndex() int { + if ptr.Pointer() != nil { + return int(C.QStackedWidget_CurrentIndex(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QStackedWidget) SetCurrentIndex(index int) { + if ptr.Pointer() != nil { + C.QStackedWidget_SetCurrentIndex(C.QtObjectPtr(ptr.Pointer()), C.int(index)) + } +} + +func (ptr *QStackedWidget) SetCurrentWidget(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QStackedWidget_SetCurrentWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func NewQStackedWidget(parent QWidgetITF) *QStackedWidget { + return QStackedWidgetFromPointer(unsafe.Pointer(C.QStackedWidget_NewQStackedWidget(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QStackedWidget) AddWidget(widget QWidgetITF) int { + if ptr.Pointer() != nil { + return int(C.QStackedWidget_AddWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget)))) + } + return 0 +} + +func (ptr *QStackedWidget) ConnectCurrentChanged(f func(index int)) { + if ptr.Pointer() != nil { + C.QStackedWidget_ConnectCurrentChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "currentChanged", f) + } +} + +func (ptr *QStackedWidget) DisconnectCurrentChanged() { + if ptr.Pointer() != nil { + C.QStackedWidget_DisconnectCurrentChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "currentChanged") + } +} + +//export callbackQStackedWidgetCurrentChanged +func callbackQStackedWidgetCurrentChanged(ptrName *C.char, index C.int) { + qt.GetSignal(C.GoString(ptrName), "currentChanged").(func(int))(int(index)) +} + +func (ptr *QStackedWidget) CurrentWidget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QStackedWidget_CurrentWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QStackedWidget) IndexOf(widget QWidgetITF) int { + if ptr.Pointer() != nil { + return int(C.QStackedWidget_IndexOf(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget)))) + } + return 0 +} + +func (ptr *QStackedWidget) InsertWidget(index int, widget QWidgetITF) int { + if ptr.Pointer() != nil { + return int(C.QStackedWidget_InsertWidget(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.QtObjectPtr(PointerFromQWidget(widget)))) + } + return 0 +} + +func (ptr *QStackedWidget) RemoveWidget(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QStackedWidget_RemoveWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QStackedWidget) Widget(index int) *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QStackedWidget_Widget(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QStackedWidget) ConnectWidgetRemoved(f func(index int)) { + if ptr.Pointer() != nil { + C.QStackedWidget_ConnectWidgetRemoved(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "widgetRemoved", f) + } +} + +func (ptr *QStackedWidget) DisconnectWidgetRemoved() { + if ptr.Pointer() != nil { + C.QStackedWidget_DisconnectWidgetRemoved(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "widgetRemoved") + } +} + +//export callbackQStackedWidgetWidgetRemoved +func callbackQStackedWidgetWidgetRemoved(ptrName *C.char, index C.int) { + qt.GetSignal(C.GoString(ptrName), "widgetRemoved").(func(int))(int(index)) +} + +func (ptr *QStackedWidget) DestroyQStackedWidget() { + if ptr.Pointer() != nil { + C.QStackedWidget_DestroyQStackedWidget(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qstackedwidget.h b/widgets/qstackedwidget.h new file mode 100755 index 00000000..7a7104fa --- /dev/null +++ b/widgets/qstackedwidget.h @@ -0,0 +1,25 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QStackedWidget_Count(QtObjectPtr ptr); +int QStackedWidget_CurrentIndex(QtObjectPtr ptr); +void QStackedWidget_SetCurrentIndex(QtObjectPtr ptr, int index); +void QStackedWidget_SetCurrentWidget(QtObjectPtr ptr, QtObjectPtr widget); +QtObjectPtr QStackedWidget_NewQStackedWidget(QtObjectPtr parent); +int QStackedWidget_AddWidget(QtObjectPtr ptr, QtObjectPtr widget); +void QStackedWidget_ConnectCurrentChanged(QtObjectPtr ptr); +void QStackedWidget_DisconnectCurrentChanged(QtObjectPtr ptr); +QtObjectPtr QStackedWidget_CurrentWidget(QtObjectPtr ptr); +int QStackedWidget_IndexOf(QtObjectPtr ptr, QtObjectPtr widget); +int QStackedWidget_InsertWidget(QtObjectPtr ptr, int index, QtObjectPtr widget); +void QStackedWidget_RemoveWidget(QtObjectPtr ptr, QtObjectPtr widget); +QtObjectPtr QStackedWidget_Widget(QtObjectPtr ptr, int index); +void QStackedWidget_ConnectWidgetRemoved(QtObjectPtr ptr); +void QStackedWidget_DisconnectWidgetRemoved(QtObjectPtr ptr); +void QStackedWidget_DestroyQStackedWidget(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstandarditemeditorcreator.cpp b/widgets/qstandarditemeditorcreator.cpp new file mode 100755 index 00000000..17408af1 --- /dev/null +++ b/widgets/qstandarditemeditorcreator.cpp @@ -0,0 +1,7 @@ +#include "qstandarditemeditorcreator.h" +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/widgets/qstandarditemeditorcreator.go b/widgets/qstandarditemeditorcreator.go new file mode 100755 index 00000000..34fe9dfa --- /dev/null +++ b/widgets/qstandarditemeditorcreator.go @@ -0,0 +1,33 @@ +package widgets + +//#include "qstandarditemeditorcreator.h" +import "C" +import ( + "unsafe" +) + +type QStandardItemEditorCreator struct { + QItemEditorCreatorBase +} + +type QStandardItemEditorCreatorITF interface { + QItemEditorCreatorBaseITF + QStandardItemEditorCreatorPTR() *QStandardItemEditorCreator +} + +func PointerFromQStandardItemEditorCreator(ptr QStandardItemEditorCreatorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStandardItemEditorCreatorPTR().Pointer() + } + return nil +} + +func QStandardItemEditorCreatorFromPointer(ptr unsafe.Pointer) *QStandardItemEditorCreator { + var n = new(QStandardItemEditorCreator) + n.SetPointer(ptr) + return n +} + +func (ptr *QStandardItemEditorCreator) QStandardItemEditorCreatorPTR() *QStandardItemEditorCreator { + return ptr +} diff --git a/widgets/qstandarditemeditorcreator.h b/widgets/qstandarditemeditorcreator.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/widgets/qstandarditemeditorcreator.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstatusbar.cpp b/widgets/qstatusbar.cpp new file mode 100755 index 00000000..c1e77b4e --- /dev/null +++ b/widgets/qstatusbar.cpp @@ -0,0 +1,72 @@ +#include "qstatusbar.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStatusBar: public QStatusBar { +public: +void Signal_MessageChanged(const QString & message){callbackQStatusBarMessageChanged(this->objectName().toUtf8().data(), message.toUtf8().data());}; +}; + +int QStatusBar_IsSizeGripEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isSizeGripEnabled(); +} + +void QStatusBar_SetSizeGripEnabled(QtObjectPtr ptr, int v){ + static_cast(ptr)->setSizeGripEnabled(v != 0); +} + +QtObjectPtr QStatusBar_NewQStatusBar(QtObjectPtr parent){ + return new QStatusBar(static_cast(parent)); +} + +void QStatusBar_AddPermanentWidget(QtObjectPtr ptr, QtObjectPtr widget, int stretch){ + static_cast(ptr)->addPermanentWidget(static_cast(widget), stretch); +} + +void QStatusBar_AddWidget(QtObjectPtr ptr, QtObjectPtr widget, int stretch){ + static_cast(ptr)->addWidget(static_cast(widget), stretch); +} + +void QStatusBar_ClearMessage(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "clearMessage"); +} + +char* QStatusBar_CurrentMessage(QtObjectPtr ptr){ + return static_cast(ptr)->currentMessage().toUtf8().data(); +} + +int QStatusBar_InsertPermanentWidget(QtObjectPtr ptr, int index, QtObjectPtr widget, int stretch){ + return static_cast(ptr)->insertPermanentWidget(index, static_cast(widget), stretch); +} + +int QStatusBar_InsertWidget(QtObjectPtr ptr, int index, QtObjectPtr widget, int stretch){ + return static_cast(ptr)->insertWidget(index, static_cast(widget), stretch); +} + +void QStatusBar_ConnectMessageChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QStatusBar::messageChanged), static_cast(ptr), static_cast(&MyQStatusBar::Signal_MessageChanged));; +} + +void QStatusBar_DisconnectMessageChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QStatusBar::messageChanged), static_cast(ptr), static_cast(&MyQStatusBar::Signal_MessageChanged));; +} + +void QStatusBar_RemoveWidget(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->removeWidget(static_cast(widget)); +} + +void QStatusBar_ShowMessage(QtObjectPtr ptr, char* message, int timeout){ + QMetaObject::invokeMethod(static_cast(ptr), "showMessage", Q_ARG(QString, QString(message)), Q_ARG(int, timeout)); +} + +void QStatusBar_DestroyQStatusBar(QtObjectPtr ptr){ + static_cast(ptr)->~QStatusBar(); +} + diff --git a/widgets/qstatusbar.go b/widgets/qstatusbar.go new file mode 100755 index 00000000..01fe0125 --- /dev/null +++ b/widgets/qstatusbar.go @@ -0,0 +1,131 @@ +package widgets + +//#include "qstatusbar.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QStatusBar struct { + QWidget +} + +type QStatusBarITF interface { + QWidgetITF + QStatusBarPTR() *QStatusBar +} + +func PointerFromQStatusBar(ptr QStatusBarITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStatusBarPTR().Pointer() + } + return nil +} + +func QStatusBarFromPointer(ptr unsafe.Pointer) *QStatusBar { + var n = new(QStatusBar) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QStatusBar_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QStatusBar) QStatusBarPTR() *QStatusBar { + return ptr +} + +func (ptr *QStatusBar) IsSizeGripEnabled() bool { + if ptr.Pointer() != nil { + return C.QStatusBar_IsSizeGripEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QStatusBar) SetSizeGripEnabled(v bool) { + if ptr.Pointer() != nil { + C.QStatusBar_SetSizeGripEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func NewQStatusBar(parent QWidgetITF) *QStatusBar { + return QStatusBarFromPointer(unsafe.Pointer(C.QStatusBar_NewQStatusBar(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QStatusBar) AddPermanentWidget(widget QWidgetITF, stretch int) { + if ptr.Pointer() != nil { + C.QStatusBar_AddPermanentWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget)), C.int(stretch)) + } +} + +func (ptr *QStatusBar) AddWidget(widget QWidgetITF, stretch int) { + if ptr.Pointer() != nil { + C.QStatusBar_AddWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget)), C.int(stretch)) + } +} + +func (ptr *QStatusBar) ClearMessage() { + if ptr.Pointer() != nil { + C.QStatusBar_ClearMessage(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QStatusBar) CurrentMessage() string { + if ptr.Pointer() != nil { + return C.GoString(C.QStatusBar_CurrentMessage(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QStatusBar) InsertPermanentWidget(index int, widget QWidgetITF, stretch int) int { + if ptr.Pointer() != nil { + return int(C.QStatusBar_InsertPermanentWidget(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.QtObjectPtr(PointerFromQWidget(widget)), C.int(stretch))) + } + return 0 +} + +func (ptr *QStatusBar) InsertWidget(index int, widget QWidgetITF, stretch int) int { + if ptr.Pointer() != nil { + return int(C.QStatusBar_InsertWidget(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.QtObjectPtr(PointerFromQWidget(widget)), C.int(stretch))) + } + return 0 +} + +func (ptr *QStatusBar) ConnectMessageChanged(f func(message string)) { + if ptr.Pointer() != nil { + C.QStatusBar_ConnectMessageChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "messageChanged", f) + } +} + +func (ptr *QStatusBar) DisconnectMessageChanged() { + if ptr.Pointer() != nil { + C.QStatusBar_DisconnectMessageChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "messageChanged") + } +} + +//export callbackQStatusBarMessageChanged +func callbackQStatusBarMessageChanged(ptrName *C.char, message *C.char) { + qt.GetSignal(C.GoString(ptrName), "messageChanged").(func(string))(C.GoString(message)) +} + +func (ptr *QStatusBar) RemoveWidget(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QStatusBar_RemoveWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QStatusBar) ShowMessage(message string, timeout int) { + if ptr.Pointer() != nil { + C.QStatusBar_ShowMessage(C.QtObjectPtr(ptr.Pointer()), C.CString(message), C.int(timeout)) + } +} + +func (ptr *QStatusBar) DestroyQStatusBar() { + if ptr.Pointer() != nil { + C.QStatusBar_DestroyQStatusBar(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qstatusbar.h b/widgets/qstatusbar.h new file mode 100755 index 00000000..a1cf453b --- /dev/null +++ b/widgets/qstatusbar.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QStatusBar_IsSizeGripEnabled(QtObjectPtr ptr); +void QStatusBar_SetSizeGripEnabled(QtObjectPtr ptr, int v); +QtObjectPtr QStatusBar_NewQStatusBar(QtObjectPtr parent); +void QStatusBar_AddPermanentWidget(QtObjectPtr ptr, QtObjectPtr widget, int stretch); +void QStatusBar_AddWidget(QtObjectPtr ptr, QtObjectPtr widget, int stretch); +void QStatusBar_ClearMessage(QtObjectPtr ptr); +char* QStatusBar_CurrentMessage(QtObjectPtr ptr); +int QStatusBar_InsertPermanentWidget(QtObjectPtr ptr, int index, QtObjectPtr widget, int stretch); +int QStatusBar_InsertWidget(QtObjectPtr ptr, int index, QtObjectPtr widget, int stretch); +void QStatusBar_ConnectMessageChanged(QtObjectPtr ptr); +void QStatusBar_DisconnectMessageChanged(QtObjectPtr ptr); +void QStatusBar_RemoveWidget(QtObjectPtr ptr, QtObjectPtr widget); +void QStatusBar_ShowMessage(QtObjectPtr ptr, char* message, int timeout); +void QStatusBar_DestroyQStatusBar(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstyle.cpp b/widgets/qstyle.cpp new file mode 100755 index 00000000..fd790bc0 --- /dev/null +++ b/widgets/qstyle.cpp @@ -0,0 +1,920 @@ +#include "qstyle.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyle: public QStyle { +public: +}; + +int QStyle_PM_MdiSubWindowMinimizedWidth_Type(){ + return QStyle::PM_MdiSubWindowMinimizedWidth; +} + +int QStyle_PM_HeaderMargin_Type(){ + return QStyle::PM_HeaderMargin; +} + +int QStyle_PM_HeaderMarkSize_Type(){ + return QStyle::PM_HeaderMarkSize; +} + +int QStyle_PM_HeaderGripMargin_Type(){ + return QStyle::PM_HeaderGripMargin; +} + +int QStyle_PM_TabBarTabShiftHorizontal_Type(){ + return QStyle::PM_TabBarTabShiftHorizontal; +} + +int QStyle_PM_TabBarTabShiftVertical_Type(){ + return QStyle::PM_TabBarTabShiftVertical; +} + +int QStyle_PM_TabBarScrollButtonWidth_Type(){ + return QStyle::PM_TabBarScrollButtonWidth; +} + +int QStyle_PM_ToolBarFrameWidth_Type(){ + return QStyle::PM_ToolBarFrameWidth; +} + +int QStyle_PM_ToolBarHandleExtent_Type(){ + return QStyle::PM_ToolBarHandleExtent; +} + +int QStyle_PM_ToolBarItemSpacing_Type(){ + return QStyle::PM_ToolBarItemSpacing; +} + +int QStyle_PM_ToolBarItemMargin_Type(){ + return QStyle::PM_ToolBarItemMargin; +} + +int QStyle_PM_ToolBarSeparatorExtent_Type(){ + return QStyle::PM_ToolBarSeparatorExtent; +} + +int QStyle_PM_ToolBarExtensionExtent_Type(){ + return QStyle::PM_ToolBarExtensionExtent; +} + +int QStyle_PM_SpinBoxSliderHeight_Type(){ + return QStyle::PM_SpinBoxSliderHeight; +} + +int QStyle_PM_DefaultTopLevelMargin_Type(){ + return QStyle::PM_DefaultTopLevelMargin; +} + +int QStyle_PM_DefaultChildMargin_Type(){ + return QStyle::PM_DefaultChildMargin; +} + +int QStyle_PM_DefaultLayoutSpacing_Type(){ + return QStyle::PM_DefaultLayoutSpacing; +} + +int QStyle_PM_ToolBarIconSize_Type(){ + return QStyle::PM_ToolBarIconSize; +} + +int QStyle_PM_ListViewIconSize_Type(){ + return QStyle::PM_ListViewIconSize; +} + +int QStyle_PM_IconViewIconSize_Type(){ + return QStyle::PM_IconViewIconSize; +} + +int QStyle_PM_SmallIconSize_Type(){ + return QStyle::PM_SmallIconSize; +} + +int QStyle_PM_LargeIconSize_Type(){ + return QStyle::PM_LargeIconSize; +} + +int QStyle_PM_FocusFrameVMargin_Type(){ + return QStyle::PM_FocusFrameVMargin; +} + +int QStyle_PM_FocusFrameHMargin_Type(){ + return QStyle::PM_FocusFrameHMargin; +} + +int QStyle_PM_ToolTipLabelFrameWidth_Type(){ + return QStyle::PM_ToolTipLabelFrameWidth; +} + +int QStyle_PM_CheckBoxLabelSpacing_Type(){ + return QStyle::PM_CheckBoxLabelSpacing; +} + +int QStyle_PM_TabBarIconSize_Type(){ + return QStyle::PM_TabBarIconSize; +} + +int QStyle_PM_SizeGripSize_Type(){ + return QStyle::PM_SizeGripSize; +} + +int QStyle_PM_DockWidgetTitleMargin_Type(){ + return QStyle::PM_DockWidgetTitleMargin; +} + +int QStyle_PM_MessageBoxIconSize_Type(){ + return QStyle::PM_MessageBoxIconSize; +} + +int QStyle_PM_ButtonIconSize_Type(){ + return QStyle::PM_ButtonIconSize; +} + +int QStyle_PM_DockWidgetTitleBarButtonMargin_Type(){ + return QStyle::PM_DockWidgetTitleBarButtonMargin; +} + +int QStyle_PM_RadioButtonLabelSpacing_Type(){ + return QStyle::PM_RadioButtonLabelSpacing; +} + +int QStyle_PM_LayoutLeftMargin_Type(){ + return QStyle::PM_LayoutLeftMargin; +} + +int QStyle_PM_LayoutTopMargin_Type(){ + return QStyle::PM_LayoutTopMargin; +} + +int QStyle_PM_LayoutRightMargin_Type(){ + return QStyle::PM_LayoutRightMargin; +} + +int QStyle_PM_LayoutBottomMargin_Type(){ + return QStyle::PM_LayoutBottomMargin; +} + +int QStyle_PM_LayoutHorizontalSpacing_Type(){ + return QStyle::PM_LayoutHorizontalSpacing; +} + +int QStyle_PM_LayoutVerticalSpacing_Type(){ + return QStyle::PM_LayoutVerticalSpacing; +} + +int QStyle_PM_TabBar_ScrollButtonOverlap_Type(){ + return QStyle::PM_TabBar_ScrollButtonOverlap; +} + +int QStyle_PM_TextCursorWidth_Type(){ + return QStyle::PM_TextCursorWidth; +} + +int QStyle_PM_TabCloseIndicatorWidth_Type(){ + return QStyle::PM_TabCloseIndicatorWidth; +} + +int QStyle_PM_TabCloseIndicatorHeight_Type(){ + return QStyle::PM_TabCloseIndicatorHeight; +} + +int QStyle_PM_ScrollView_ScrollBarSpacing_Type(){ + return QStyle::PM_ScrollView_ScrollBarSpacing; +} + +int QStyle_PM_ScrollView_ScrollBarOverlap_Type(){ + return QStyle::PM_ScrollView_ScrollBarOverlap; +} + +int QStyle_PM_SubMenuOverlap_Type(){ + return QStyle::PM_SubMenuOverlap; +} + +int QStyle_PM_TreeViewIndentation_Type(){ + return QStyle::PM_TreeViewIndentation; +} + +int QStyle_PM_HeaderDefaultSectionSizeHorizontal_Type(){ + return QStyle::PM_HeaderDefaultSectionSizeHorizontal; +} + +int QStyle_PM_HeaderDefaultSectionSizeVertical_Type(){ + return QStyle::PM_HeaderDefaultSectionSizeVertical; +} + +int QStyle_PE_FrameTabWidget_Type(){ + return QStyle::PE_FrameTabWidget; +} + +int QStyle_PE_FrameWindow_Type(){ + return QStyle::PE_FrameWindow; +} + +int QStyle_PE_FrameButtonBevel_Type(){ + return QStyle::PE_FrameButtonBevel; +} + +int QStyle_PE_FrameButtonTool_Type(){ + return QStyle::PE_FrameButtonTool; +} + +int QStyle_PE_FrameTabBarBase_Type(){ + return QStyle::PE_FrameTabBarBase; +} + +int QStyle_PE_PanelButtonCommand_Type(){ + return QStyle::PE_PanelButtonCommand; +} + +int QStyle_PE_PanelButtonBevel_Type(){ + return QStyle::PE_PanelButtonBevel; +} + +int QStyle_PE_PanelButtonTool_Type(){ + return QStyle::PE_PanelButtonTool; +} + +int QStyle_PE_PanelMenuBar_Type(){ + return QStyle::PE_PanelMenuBar; +} + +int QStyle_PE_PanelToolBar_Type(){ + return QStyle::PE_PanelToolBar; +} + +int QStyle_PE_PanelLineEdit_Type(){ + return QStyle::PE_PanelLineEdit; +} + +int QStyle_PE_IndicatorArrowDown_Type(){ + return QStyle::PE_IndicatorArrowDown; +} + +int QStyle_PE_IndicatorArrowLeft_Type(){ + return QStyle::PE_IndicatorArrowLeft; +} + +int QStyle_PE_IndicatorArrowRight_Type(){ + return QStyle::PE_IndicatorArrowRight; +} + +int QStyle_PE_IndicatorArrowUp_Type(){ + return QStyle::PE_IndicatorArrowUp; +} + +int QStyle_PE_IndicatorBranch_Type(){ + return QStyle::PE_IndicatorBranch; +} + +int QStyle_PE_IndicatorButtonDropDown_Type(){ + return QStyle::PE_IndicatorButtonDropDown; +} + +int QStyle_PE_IndicatorViewItemCheck_Type(){ + return QStyle::PE_IndicatorViewItemCheck; +} + +int QStyle_PE_IndicatorCheckBox_Type(){ + return QStyle::PE_IndicatorCheckBox; +} + +int QStyle_PE_IndicatorDockWidgetResizeHandle_Type(){ + return QStyle::PE_IndicatorDockWidgetResizeHandle; +} + +int QStyle_PE_IndicatorHeaderArrow_Type(){ + return QStyle::PE_IndicatorHeaderArrow; +} + +int QStyle_PE_IndicatorMenuCheckMark_Type(){ + return QStyle::PE_IndicatorMenuCheckMark; +} + +int QStyle_PE_IndicatorProgressChunk_Type(){ + return QStyle::PE_IndicatorProgressChunk; +} + +int QStyle_PE_IndicatorRadioButton_Type(){ + return QStyle::PE_IndicatorRadioButton; +} + +int QStyle_PE_IndicatorSpinDown_Type(){ + return QStyle::PE_IndicatorSpinDown; +} + +int QStyle_PE_IndicatorSpinMinus_Type(){ + return QStyle::PE_IndicatorSpinMinus; +} + +int QStyle_PE_IndicatorSpinPlus_Type(){ + return QStyle::PE_IndicatorSpinPlus; +} + +int QStyle_PE_IndicatorSpinUp_Type(){ + return QStyle::PE_IndicatorSpinUp; +} + +int QStyle_PE_IndicatorToolBarHandle_Type(){ + return QStyle::PE_IndicatorToolBarHandle; +} + +int QStyle_PE_IndicatorToolBarSeparator_Type(){ + return QStyle::PE_IndicatorToolBarSeparator; +} + +int QStyle_PE_PanelTipLabel_Type(){ + return QStyle::PE_PanelTipLabel; +} + +int QStyle_PE_IndicatorTabTear_Type(){ + return QStyle::PE_IndicatorTabTear; +} + +int QStyle_PE_PanelScrollAreaCorner_Type(){ + return QStyle::PE_PanelScrollAreaCorner; +} + +int QStyle_PE_Widget_Type(){ + return QStyle::PE_Widget; +} + +int QStyle_PE_IndicatorColumnViewArrow_Type(){ + return QStyle::PE_IndicatorColumnViewArrow; +} + +int QStyle_PE_IndicatorItemViewItemDrop_Type(){ + return QStyle::PE_IndicatorItemViewItemDrop; +} + +int QStyle_PE_PanelItemViewItem_Type(){ + return QStyle::PE_PanelItemViewItem; +} + +int QStyle_PE_PanelItemViewRow_Type(){ + return QStyle::PE_PanelItemViewRow; +} + +int QStyle_PE_PanelStatusBar_Type(){ + return QStyle::PE_PanelStatusBar; +} + +int QStyle_PE_IndicatorTabClose_Type(){ + return QStyle::PE_IndicatorTabClose; +} + +int QStyle_PE_PanelMenu_Type(){ + return QStyle::PE_PanelMenu; +} + +int QStyle_SH_BlinkCursorWhenTextSelected_Type(){ + return QStyle::SH_BlinkCursorWhenTextSelected; +} + +int QStyle_SH_RichText_FullWidthSelection_Type(){ + return QStyle::SH_RichText_FullWidthSelection; +} + +int QStyle_SH_Menu_Scrollable_Type(){ + return QStyle::SH_Menu_Scrollable; +} + +int QStyle_SH_GroupBox_TextLabelVerticalAlignment_Type(){ + return QStyle::SH_GroupBox_TextLabelVerticalAlignment; +} + +int QStyle_SH_GroupBox_TextLabelColor_Type(){ + return QStyle::SH_GroupBox_TextLabelColor; +} + +int QStyle_SH_Menu_SloppySubMenus_Type(){ + return QStyle::SH_Menu_SloppySubMenus; +} + +int QStyle_SH_Table_GridLineColor_Type(){ + return QStyle::SH_Table_GridLineColor; +} + +int QStyle_SH_LineEdit_PasswordCharacter_Type(){ + return QStyle::SH_LineEdit_PasswordCharacter; +} + +int QStyle_SH_DialogButtons_DefaultButton_Type(){ + return QStyle::SH_DialogButtons_DefaultButton; +} + +int QStyle_SH_ToolBox_SelectedPageTitleBold_Type(){ + return QStyle::SH_ToolBox_SelectedPageTitleBold; +} + +int QStyle_SH_TabBar_PreferNoArrows_Type(){ + return QStyle::SH_TabBar_PreferNoArrows; +} + +int QStyle_SH_ScrollBar_LeftClickAbsolutePosition_Type(){ + return QStyle::SH_ScrollBar_LeftClickAbsolutePosition; +} + +int QStyle_SH_ListViewExpand_SelectMouseType_Type(){ + return QStyle::SH_ListViewExpand_SelectMouseType; +} + +int QStyle_SH_UnderlineShortcut_Type(){ + return QStyle::SH_UnderlineShortcut; +} + +int QStyle_SH_SpinBox_AnimateButton_Type(){ + return QStyle::SH_SpinBox_AnimateButton; +} + +int QStyle_SH_SpinBox_KeyPressAutoRepeatRate_Type(){ + return QStyle::SH_SpinBox_KeyPressAutoRepeatRate; +} + +int QStyle_SH_SpinBox_ClickAutoRepeatRate_Type(){ + return QStyle::SH_SpinBox_ClickAutoRepeatRate; +} + +int QStyle_SH_Menu_FillScreenWithScroll_Type(){ + return QStyle::SH_Menu_FillScreenWithScroll; +} + +int QStyle_SH_ToolTipLabel_Opacity_Type(){ + return QStyle::SH_ToolTipLabel_Opacity; +} + +int QStyle_SH_DrawMenuBarSeparator_Type(){ + return QStyle::SH_DrawMenuBarSeparator; +} + +int QStyle_SH_TitleBar_ModifyNotification_Type(){ + return QStyle::SH_TitleBar_ModifyNotification; +} + +int QStyle_SH_Button_FocusPolicy_Type(){ + return QStyle::SH_Button_FocusPolicy; +} + +int QStyle_SH_MessageBox_UseBorderForButtonSpacing_Type(){ + return QStyle::SH_MessageBox_UseBorderForButtonSpacing; +} + +int QStyle_SH_TitleBar_AutoRaise_Type(){ + return QStyle::SH_TitleBar_AutoRaise; +} + +int QStyle_SH_ToolButton_PopupDelay_Type(){ + return QStyle::SH_ToolButton_PopupDelay; +} + +int QStyle_SH_FocusFrame_Mask_Type(){ + return QStyle::SH_FocusFrame_Mask; +} + +int QStyle_SH_RubberBand_Mask_Type(){ + return QStyle::SH_RubberBand_Mask; +} + +int QStyle_SH_WindowFrame_Mask_Type(){ + return QStyle::SH_WindowFrame_Mask; +} + +int QStyle_SH_SpinControls_DisableOnBounds_Type(){ + return QStyle::SH_SpinControls_DisableOnBounds; +} + +int QStyle_SH_Dial_BackgroundRole_Type(){ + return QStyle::SH_Dial_BackgroundRole; +} + +int QStyle_SH_ComboBox_LayoutDirection_Type(){ + return QStyle::SH_ComboBox_LayoutDirection; +} + +int QStyle_SH_ItemView_EllipsisLocation_Type(){ + return QStyle::SH_ItemView_EllipsisLocation; +} + +int QStyle_SH_ItemView_ShowDecorationSelected_Type(){ + return QStyle::SH_ItemView_ShowDecorationSelected; +} + +int QStyle_SH_ItemView_ActivateItemOnSingleClick_Type(){ + return QStyle::SH_ItemView_ActivateItemOnSingleClick; +} + +int QStyle_SH_ScrollBar_ContextMenu_Type(){ + return QStyle::SH_ScrollBar_ContextMenu; +} + +int QStyle_SH_ScrollBar_RollBetweenButtons_Type(){ + return QStyle::SH_ScrollBar_RollBetweenButtons; +} + +int QStyle_SH_Slider_AbsoluteSetButtons_Type(){ + return QStyle::SH_Slider_AbsoluteSetButtons; +} + +int QStyle_SH_Slider_PageSetButtons_Type(){ + return QStyle::SH_Slider_PageSetButtons; +} + +int QStyle_SH_Menu_KeyboardSearch_Type(){ + return QStyle::SH_Menu_KeyboardSearch; +} + +int QStyle_SH_TabBar_ElideMode_Type(){ + return QStyle::SH_TabBar_ElideMode; +} + +int QStyle_SH_DialogButtonLayout_Type(){ + return QStyle::SH_DialogButtonLayout; +} + +int QStyle_SH_ComboBox_PopupFrameStyle_Type(){ + return QStyle::SH_ComboBox_PopupFrameStyle; +} + +int QStyle_SH_MessageBox_TextInteractionFlags_Type(){ + return QStyle::SH_MessageBox_TextInteractionFlags; +} + +int QStyle_SH_DialogButtonBox_ButtonsHaveIcons_Type(){ + return QStyle::SH_DialogButtonBox_ButtonsHaveIcons; +} + +int QStyle_SH_SpellCheckUnderlineStyle_Type(){ + return QStyle::SH_SpellCheckUnderlineStyle; +} + +int QStyle_SH_MessageBox_CenterButtons_Type(){ + return QStyle::SH_MessageBox_CenterButtons; +} + +int QStyle_SH_Menu_SelectionWrap_Type(){ + return QStyle::SH_Menu_SelectionWrap; +} + +int QStyle_SH_ItemView_MovementWithoutUpdatingSelection_Type(){ + return QStyle::SH_ItemView_MovementWithoutUpdatingSelection; +} + +int QStyle_SH_ToolTip_Mask_Type(){ + return QStyle::SH_ToolTip_Mask; +} + +int QStyle_SH_FocusFrame_AboveWidget_Type(){ + return QStyle::SH_FocusFrame_AboveWidget; +} + +int QStyle_SH_TextControl_FocusIndicatorTextCharFormat_Type(){ + return QStyle::SH_TextControl_FocusIndicatorTextCharFormat; +} + +int QStyle_SH_WizardStyle_Type(){ + return QStyle::SH_WizardStyle; +} + +int QStyle_SH_ItemView_ArrowKeysNavigateIntoChildren_Type(){ + return QStyle::SH_ItemView_ArrowKeysNavigateIntoChildren; +} + +int QStyle_SH_Menu_Mask_Type(){ + return QStyle::SH_Menu_Mask; +} + +int QStyle_SH_Menu_FlashTriggeredItem_Type(){ + return QStyle::SH_Menu_FlashTriggeredItem; +} + +int QStyle_SH_Menu_FadeOutOnHide_Type(){ + return QStyle::SH_Menu_FadeOutOnHide; +} + +int QStyle_SH_SpinBox_ClickAutoRepeatThreshold_Type(){ + return QStyle::SH_SpinBox_ClickAutoRepeatThreshold; +} + +int QStyle_SH_ItemView_PaintAlternatingRowColorsForEmptyArea_Type(){ + return QStyle::SH_ItemView_PaintAlternatingRowColorsForEmptyArea; +} + +int QStyle_SH_FormLayoutWrapPolicy_Type(){ + return QStyle::SH_FormLayoutWrapPolicy; +} + +int QStyle_SH_TabWidget_DefaultTabPosition_Type(){ + return QStyle::SH_TabWidget_DefaultTabPosition; +} + +int QStyle_SH_ToolBar_Movable_Type(){ + return QStyle::SH_ToolBar_Movable; +} + +int QStyle_SH_FormLayoutFieldGrowthPolicy_Type(){ + return QStyle::SH_FormLayoutFieldGrowthPolicy; +} + +int QStyle_SH_FormLayoutFormAlignment_Type(){ + return QStyle::SH_FormLayoutFormAlignment; +} + +int QStyle_SH_FormLayoutLabelAlignment_Type(){ + return QStyle::SH_FormLayoutLabelAlignment; +} + +int QStyle_SH_ItemView_DrawDelegateFrame_Type(){ + return QStyle::SH_ItemView_DrawDelegateFrame; +} + +int QStyle_SH_TabBar_CloseButtonPosition_Type(){ + return QStyle::SH_TabBar_CloseButtonPosition; +} + +int QStyle_SH_DockWidget_ButtonsHaveFrame_Type(){ + return QStyle::SH_DockWidget_ButtonsHaveFrame; +} + +int QStyle_SH_ToolButtonStyle_Type(){ + return QStyle::SH_ToolButtonStyle; +} + +int QStyle_SH_RequestSoftwareInputPanel_Type(){ + return QStyle::SH_RequestSoftwareInputPanel; +} + +int QStyle_SH_ScrollBar_Transient_Type(){ + return QStyle::SH_ScrollBar_Transient; +} + +int QStyle_SH_Menu_SupportsSections_Type(){ + return QStyle::SH_Menu_SupportsSections; +} + +int QStyle_SH_ToolTip_WakeUpDelay_Type(){ + return QStyle::SH_ToolTip_WakeUpDelay; +} + +int QStyle_SH_ToolTip_FallAsleepDelay_Type(){ + return QStyle::SH_ToolTip_FallAsleepDelay; +} + +int QStyle_SH_Widget_Animate_Type(){ + return QStyle::SH_Widget_Animate; +} + +int QStyle_SH_Splitter_OpaqueResize_Type(){ + return QStyle::SH_Splitter_OpaqueResize; +} + +int QStyle_SH_ComboBox_UseNativePopup_Type(){ + return QStyle::SH_ComboBox_UseNativePopup; +} + +int QStyle_SH_LineEdit_PasswordMaskDelay_Type(){ + return QStyle::SH_LineEdit_PasswordMaskDelay; +} + +int QStyle_SH_TabBar_ChangeCurrentDelay_Type(){ + return QStyle::SH_TabBar_ChangeCurrentDelay; +} + +int QStyle_SH_Menu_SubMenuUniDirection_Type(){ + return QStyle::SH_Menu_SubMenuUniDirection; +} + +int QStyle_SH_Menu_SubMenuUniDirectionFailCount_Type(){ + return QStyle::SH_Menu_SubMenuUniDirectionFailCount; +} + +int QStyle_SH_Menu_SubMenuSloppySelectOtherActions_Type(){ + return QStyle::SH_Menu_SubMenuSloppySelectOtherActions; +} + +int QStyle_SH_Menu_SubMenuSloppyCloseTimeout_Type(){ + return QStyle::SH_Menu_SubMenuSloppyCloseTimeout; +} + +int QStyle_SH_Menu_SubMenuResetWhenReenteringParent_Type(){ + return QStyle::SH_Menu_SubMenuResetWhenReenteringParent; +} + +int QStyle_SH_Menu_SubMenuDontStartSloppyOnLeave_Type(){ + return QStyle::SH_Menu_SubMenuDontStartSloppyOnLeave; +} + +int QStyle_SE_TabBarTearIndicator_Type(){ + return QStyle::SE_TabBarTearIndicator; +} + +int QStyle_SE_TreeViewDisclosureItem_Type(){ + return QStyle::SE_TreeViewDisclosureItem; +} + +int QStyle_SE_LineEditContents_Type(){ + return QStyle::SE_LineEditContents; +} + +int QStyle_SE_FrameContents_Type(){ + return QStyle::SE_FrameContents; +} + +int QStyle_SE_DockWidgetCloseButton_Type(){ + return QStyle::SE_DockWidgetCloseButton; +} + +int QStyle_SE_DockWidgetFloatButton_Type(){ + return QStyle::SE_DockWidgetFloatButton; +} + +int QStyle_SE_DockWidgetTitleBarText_Type(){ + return QStyle::SE_DockWidgetTitleBarText; +} + +int QStyle_SE_DockWidgetIcon_Type(){ + return QStyle::SE_DockWidgetIcon; +} + +int QStyle_SE_CheckBoxLayoutItem_Type(){ + return QStyle::SE_CheckBoxLayoutItem; +} + +int QStyle_SE_ComboBoxLayoutItem_Type(){ + return QStyle::SE_ComboBoxLayoutItem; +} + +int QStyle_SE_DateTimeEditLayoutItem_Type(){ + return QStyle::SE_DateTimeEditLayoutItem; +} + +int QStyle_SE_DialogButtonBoxLayoutItem_Type(){ + return QStyle::SE_DialogButtonBoxLayoutItem; +} + +int QStyle_SE_LabelLayoutItem_Type(){ + return QStyle::SE_LabelLayoutItem; +} + +int QStyle_SE_ProgressBarLayoutItem_Type(){ + return QStyle::SE_ProgressBarLayoutItem; +} + +int QStyle_SE_PushButtonLayoutItem_Type(){ + return QStyle::SE_PushButtonLayoutItem; +} + +int QStyle_SE_RadioButtonLayoutItem_Type(){ + return QStyle::SE_RadioButtonLayoutItem; +} + +int QStyle_SE_SliderLayoutItem_Type(){ + return QStyle::SE_SliderLayoutItem; +} + +int QStyle_SE_SpinBoxLayoutItem_Type(){ + return QStyle::SE_SpinBoxLayoutItem; +} + +int QStyle_SE_ToolButtonLayoutItem_Type(){ + return QStyle::SE_ToolButtonLayoutItem; +} + +int QStyle_SE_FrameLayoutItem_Type(){ + return QStyle::SE_FrameLayoutItem; +} + +int QStyle_SE_GroupBoxLayoutItem_Type(){ + return QStyle::SE_GroupBoxLayoutItem; +} + +int QStyle_SE_TabWidgetLayoutItem_Type(){ + return QStyle::SE_TabWidgetLayoutItem; +} + +int QStyle_SE_ItemViewItemDecoration_Type(){ + return QStyle::SE_ItemViewItemDecoration; +} + +int QStyle_SE_ItemViewItemText_Type(){ + return QStyle::SE_ItemViewItemText; +} + +int QStyle_SE_ItemViewItemFocusRect_Type(){ + return QStyle::SE_ItemViewItemFocusRect; +} + +int QStyle_SE_TabBarTabLeftButton_Type(){ + return QStyle::SE_TabBarTabLeftButton; +} + +int QStyle_SE_TabBarTabRightButton_Type(){ + return QStyle::SE_TabBarTabRightButton; +} + +int QStyle_SE_TabBarTabText_Type(){ + return QStyle::SE_TabBarTabText; +} + +int QStyle_SE_ShapedFrameContents_Type(){ + return QStyle::SE_ShapedFrameContents; +} + +int QStyle_SE_ToolBarHandle_Type(){ + return QStyle::SE_ToolBarHandle; +} + +void QStyle_DrawItemPixmap(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr rectangle, int alignment, QtObjectPtr pixmap){ + static_cast(ptr)->drawItemPixmap(static_cast(painter), *static_cast(rectangle), alignment, *static_cast(pixmap)); +} + +void QStyle_DrawItemText(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr rectangle, int alignment, QtObjectPtr palette, int enabled, char* text, int textRole){ + static_cast(ptr)->drawItemText(static_cast(painter), *static_cast(rectangle), alignment, *static_cast(palette), enabled != 0, QString(text), static_cast(textRole)); +} + +void QStyle_Polish2(QtObjectPtr ptr, QtObjectPtr application){ + static_cast(ptr)->polish(static_cast(application)); +} + +void QStyle_Polish3(QtObjectPtr ptr, QtObjectPtr palette){ + static_cast(ptr)->polish(*static_cast(palette)); +} + +QtObjectPtr QStyle_Proxy(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->proxy()); +} + +int QStyle_QStyle_SliderValueFromPosition(int min, int max, int position, int span, int upsideDown){ + return QStyle::sliderValueFromPosition(min, max, position, span, upsideDown != 0); +} + +void QStyle_Unpolish2(QtObjectPtr ptr, QtObjectPtr application){ + static_cast(ptr)->unpolish(static_cast(application)); +} + +int QStyle_CombinedLayoutSpacing(QtObjectPtr ptr, int controls1, int controls2, int orientation, QtObjectPtr option, QtObjectPtr widget){ + return static_cast(ptr)->combinedLayoutSpacing(static_cast(controls1), static_cast(controls2), static_cast(orientation), static_cast(option), static_cast(widget)); +} + +void QStyle_DrawComplexControl(QtObjectPtr ptr, int control, QtObjectPtr option, QtObjectPtr painter, QtObjectPtr widget){ + static_cast(ptr)->drawComplexControl(static_cast(control), static_cast(option), static_cast(painter), static_cast(widget)); +} + +void QStyle_DrawControl(QtObjectPtr ptr, int element, QtObjectPtr option, QtObjectPtr painter, QtObjectPtr widget){ + static_cast(ptr)->drawControl(static_cast(element), static_cast(option), static_cast(painter), static_cast(widget)); +} + +void QStyle_DrawPrimitive(QtObjectPtr ptr, int element, QtObjectPtr option, QtObjectPtr painter, QtObjectPtr widget){ + static_cast(ptr)->drawPrimitive(static_cast(element), static_cast(option), static_cast(painter), static_cast(widget)); +} + +int QStyle_HitTestComplexControl(QtObjectPtr ptr, int control, QtObjectPtr option, QtObjectPtr position, QtObjectPtr widget){ + return static_cast(ptr)->hitTestComplexControl(static_cast(control), static_cast(option), *static_cast(position), static_cast(widget)); +} + +int QStyle_LayoutSpacing(QtObjectPtr ptr, int control1, int control2, int orientation, QtObjectPtr option, QtObjectPtr widget){ + return static_cast(ptr)->layoutSpacing(static_cast(control1), static_cast(control2), static_cast(orientation), static_cast(option), static_cast(widget)); +} + +int QStyle_PixelMetric(QtObjectPtr ptr, int metric, QtObjectPtr option, QtObjectPtr widget){ + return static_cast(ptr)->pixelMetric(static_cast(metric), static_cast(option), static_cast(widget)); +} + +void QStyle_Polish(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->polish(static_cast(widget)); +} + +int QStyle_QStyle_SliderPositionFromValue(int min, int max, int logicalValue, int span, int upsideDown){ + return QStyle::sliderPositionFromValue(min, max, logicalValue, span, upsideDown != 0); +} + +int QStyle_StyleHint(QtObjectPtr ptr, int hint, QtObjectPtr option, QtObjectPtr widget, QtObjectPtr returnData){ + return static_cast(ptr)->styleHint(static_cast(hint), static_cast(option), static_cast(widget), static_cast(returnData)); +} + +void QStyle_Unpolish(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->unpolish(static_cast(widget)); +} + +int QStyle_QStyle_VisualAlignment(int direction, int alignment){ + return QStyle::visualAlignment(static_cast(direction), static_cast(alignment)); +} + +void QStyle_DestroyQStyle(QtObjectPtr ptr){ + static_cast(ptr)->~QStyle(); +} + diff --git a/widgets/qstyle.go b/widgets/qstyle.go new file mode 100755 index 00000000..634a2f69 --- /dev/null +++ b/widgets/qstyle.go @@ -0,0 +1,773 @@ +package widgets + +//#include "qstyle.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QStyle struct { + core.QObject +} + +type QStyleITF interface { + core.QObjectITF + QStylePTR() *QStyle +} + +func PointerFromQStyle(ptr QStyleITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStylePTR().Pointer() + } + return nil +} + +func QStyleFromPointer(ptr unsafe.Pointer) *QStyle { + var n = new(QStyle) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QStyle_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QStyle) QStylePTR() *QStyle { + return ptr +} + +//QStyle::ComplexControl +type QStyle__ComplexControl int + +var ( + QStyle__CC_SpinBox = QStyle__ComplexControl(0) + QStyle__CC_ComboBox = QStyle__ComplexControl(1) + QStyle__CC_ScrollBar = QStyle__ComplexControl(2) + QStyle__CC_Slider = QStyle__ComplexControl(3) + QStyle__CC_ToolButton = QStyle__ComplexControl(4) + QStyle__CC_TitleBar = QStyle__ComplexControl(5) + QStyle__CC_Dial = QStyle__ComplexControl(6) + QStyle__CC_GroupBox = QStyle__ComplexControl(7) + QStyle__CC_MdiControls = QStyle__ComplexControl(8) + QStyle__CC_CustomBase = QStyle__ComplexControl(0xf0000000) +) + +//QStyle::ContentsType +type QStyle__ContentsType int + +var ( + QStyle__CT_PushButton = QStyle__ContentsType(0) + QStyle__CT_CheckBox = QStyle__ContentsType(1) + QStyle__CT_RadioButton = QStyle__ContentsType(2) + QStyle__CT_ToolButton = QStyle__ContentsType(3) + QStyle__CT_ComboBox = QStyle__ContentsType(4) + QStyle__CT_Splitter = QStyle__ContentsType(5) + QStyle__CT_ProgressBar = QStyle__ContentsType(6) + QStyle__CT_MenuItem = QStyle__ContentsType(7) + QStyle__CT_MenuBarItem = QStyle__ContentsType(8) + QStyle__CT_MenuBar = QStyle__ContentsType(9) + QStyle__CT_Menu = QStyle__ContentsType(10) + QStyle__CT_TabBarTab = QStyle__ContentsType(11) + QStyle__CT_Slider = QStyle__ContentsType(12) + QStyle__CT_ScrollBar = QStyle__ContentsType(13) + QStyle__CT_LineEdit = QStyle__ContentsType(14) + QStyle__CT_SpinBox = QStyle__ContentsType(15) + QStyle__CT_SizeGrip = QStyle__ContentsType(16) + QStyle__CT_TabWidget = QStyle__ContentsType(17) + QStyle__CT_DialogButtons = QStyle__ContentsType(18) + QStyle__CT_HeaderSection = QStyle__ContentsType(19) + QStyle__CT_GroupBox = QStyle__ContentsType(20) + QStyle__CT_MdiControls = QStyle__ContentsType(21) + QStyle__CT_ItemViewItem = QStyle__ContentsType(22) + QStyle__CT_CustomBase = QStyle__ContentsType(0xf0000000) +) + +//QStyle::ControlElement +type QStyle__ControlElement int + +var ( + QStyle__CE_PushButton = QStyle__ControlElement(0) + QStyle__CE_PushButtonBevel = QStyle__ControlElement(1) + QStyle__CE_PushButtonLabel = QStyle__ControlElement(2) + QStyle__CE_CheckBox = QStyle__ControlElement(3) + QStyle__CE_CheckBoxLabel = QStyle__ControlElement(4) + QStyle__CE_RadioButton = QStyle__ControlElement(5) + QStyle__CE_RadioButtonLabel = QStyle__ControlElement(6) + QStyle__CE_TabBarTab = QStyle__ControlElement(7) + QStyle__CE_TabBarTabShape = QStyle__ControlElement(8) + QStyle__CE_TabBarTabLabel = QStyle__ControlElement(9) + QStyle__CE_ProgressBar = QStyle__ControlElement(10) + QStyle__CE_ProgressBarGroove = QStyle__ControlElement(11) + QStyle__CE_ProgressBarContents = QStyle__ControlElement(12) + QStyle__CE_ProgressBarLabel = QStyle__ControlElement(13) + QStyle__CE_MenuItem = QStyle__ControlElement(14) + QStyle__CE_MenuScroller = QStyle__ControlElement(15) + QStyle__CE_MenuVMargin = QStyle__ControlElement(16) + QStyle__CE_MenuHMargin = QStyle__ControlElement(17) + QStyle__CE_MenuTearoff = QStyle__ControlElement(18) + QStyle__CE_MenuEmptyArea = QStyle__ControlElement(19) + QStyle__CE_MenuBarItem = QStyle__ControlElement(20) + QStyle__CE_MenuBarEmptyArea = QStyle__ControlElement(21) + QStyle__CE_ToolButtonLabel = QStyle__ControlElement(22) + QStyle__CE_Header = QStyle__ControlElement(23) + QStyle__CE_HeaderSection = QStyle__ControlElement(24) + QStyle__CE_HeaderLabel = QStyle__ControlElement(25) + QStyle__CE_ToolBoxTab = QStyle__ControlElement(26) + QStyle__CE_SizeGrip = QStyle__ControlElement(27) + QStyle__CE_Splitter = QStyle__ControlElement(28) + QStyle__CE_RubberBand = QStyle__ControlElement(29) + QStyle__CE_DockWidgetTitle = QStyle__ControlElement(30) + QStyle__CE_ScrollBarAddLine = QStyle__ControlElement(31) + QStyle__CE_ScrollBarSubLine = QStyle__ControlElement(32) + QStyle__CE_ScrollBarAddPage = QStyle__ControlElement(33) + QStyle__CE_ScrollBarSubPage = QStyle__ControlElement(34) + QStyle__CE_ScrollBarSlider = QStyle__ControlElement(35) + QStyle__CE_ScrollBarFirst = QStyle__ControlElement(36) + QStyle__CE_ScrollBarLast = QStyle__ControlElement(37) + QStyle__CE_FocusFrame = QStyle__ControlElement(38) + QStyle__CE_ComboBoxLabel = QStyle__ControlElement(39) + QStyle__CE_ToolBar = QStyle__ControlElement(40) + QStyle__CE_ToolBoxTabShape = QStyle__ControlElement(41) + QStyle__CE_ToolBoxTabLabel = QStyle__ControlElement(42) + QStyle__CE_HeaderEmptyArea = QStyle__ControlElement(43) + QStyle__CE_ColumnViewGrip = QStyle__ControlElement(44) + QStyle__CE_ItemViewItem = QStyle__ControlElement(45) + QStyle__CE_ShapedFrame = QStyle__ControlElement(46) + QStyle__CE_CustomBase = QStyle__ControlElement(0xf0000000) +) + +//QStyle::PixelMetric +type QStyle__PixelMetric int + +var ( + QStyle__PM_ButtonMargin = QStyle__PixelMetric(0) + QStyle__PM_ButtonDefaultIndicator = QStyle__PixelMetric(1) + QStyle__PM_MenuButtonIndicator = QStyle__PixelMetric(2) + QStyle__PM_ButtonShiftHorizontal = QStyle__PixelMetric(3) + QStyle__PM_ButtonShiftVertical = QStyle__PixelMetric(4) + QStyle__PM_DefaultFrameWidth = QStyle__PixelMetric(5) + QStyle__PM_SpinBoxFrameWidth = QStyle__PixelMetric(6) + QStyle__PM_ComboBoxFrameWidth = QStyle__PixelMetric(7) + QStyle__PM_MaximumDragDistance = QStyle__PixelMetric(8) + QStyle__PM_ScrollBarExtent = QStyle__PixelMetric(9) + QStyle__PM_ScrollBarSliderMin = QStyle__PixelMetric(10) + QStyle__PM_SliderThickness = QStyle__PixelMetric(11) + QStyle__PM_SliderControlThickness = QStyle__PixelMetric(12) + QStyle__PM_SliderLength = QStyle__PixelMetric(13) + QStyle__PM_SliderTickmarkOffset = QStyle__PixelMetric(14) + QStyle__PM_SliderSpaceAvailable = QStyle__PixelMetric(15) + QStyle__PM_DockWidgetSeparatorExtent = QStyle__PixelMetric(16) + QStyle__PM_DockWidgetHandleExtent = QStyle__PixelMetric(17) + QStyle__PM_DockWidgetFrameWidth = QStyle__PixelMetric(18) + QStyle__PM_TabBarTabOverlap = QStyle__PixelMetric(19) + QStyle__PM_TabBarTabHSpace = QStyle__PixelMetric(20) + QStyle__PM_TabBarTabVSpace = QStyle__PixelMetric(21) + QStyle__PM_TabBarBaseHeight = QStyle__PixelMetric(22) + QStyle__PM_TabBarBaseOverlap = QStyle__PixelMetric(23) + QStyle__PM_ProgressBarChunkWidth = QStyle__PixelMetric(24) + QStyle__PM_SplitterWidth = QStyle__PixelMetric(25) + QStyle__PM_TitleBarHeight = QStyle__PixelMetric(26) + QStyle__PM_MenuScrollerHeight = QStyle__PixelMetric(27) + QStyle__PM_MenuHMargin = QStyle__PixelMetric(28) + QStyle__PM_MenuVMargin = QStyle__PixelMetric(29) + QStyle__PM_MenuPanelWidth = QStyle__PixelMetric(30) + QStyle__PM_MenuTearoffHeight = QStyle__PixelMetric(31) + QStyle__PM_MenuDesktopFrameWidth = QStyle__PixelMetric(32) + QStyle__PM_MenuBarPanelWidth = QStyle__PixelMetric(33) + QStyle__PM_MenuBarItemSpacing = QStyle__PixelMetric(34) + QStyle__PM_MenuBarVMargin = QStyle__PixelMetric(35) + QStyle__PM_MenuBarHMargin = QStyle__PixelMetric(36) + QStyle__PM_IndicatorWidth = QStyle__PixelMetric(37) + QStyle__PM_IndicatorHeight = QStyle__PixelMetric(38) + QStyle__PM_ExclusiveIndicatorWidth = QStyle__PixelMetric(39) + QStyle__PM_ExclusiveIndicatorHeight = QStyle__PixelMetric(40) + QStyle__PM_DialogButtonsSeparator = QStyle__PixelMetric(41) + QStyle__PM_DialogButtonsButtonWidth = QStyle__PixelMetric(42) + QStyle__PM_DialogButtonsButtonHeight = QStyle__PixelMetric(43) + QStyle__PM_MdiSubWindowFrameWidth = QStyle__PixelMetric(44) + QStyle__PM_MDIFrameWidth = QStyle__PixelMetric(QStyle__PM_MdiSubWindowFrameWidth) + QStyle__PM_MdiSubWindowMinimizedWidth = QStyle__PixelMetric(C.QStyle_PM_MdiSubWindowMinimizedWidth_Type()) + QStyle__PM_MDIMinimizedWidth = QStyle__PixelMetric(QStyle__PM_MdiSubWindowMinimizedWidth) + QStyle__PM_HeaderMargin = QStyle__PixelMetric(C.QStyle_PM_HeaderMargin_Type()) + QStyle__PM_HeaderMarkSize = QStyle__PixelMetric(C.QStyle_PM_HeaderMarkSize_Type()) + QStyle__PM_HeaderGripMargin = QStyle__PixelMetric(C.QStyle_PM_HeaderGripMargin_Type()) + QStyle__PM_TabBarTabShiftHorizontal = QStyle__PixelMetric(C.QStyle_PM_TabBarTabShiftHorizontal_Type()) + QStyle__PM_TabBarTabShiftVertical = QStyle__PixelMetric(C.QStyle_PM_TabBarTabShiftVertical_Type()) + QStyle__PM_TabBarScrollButtonWidth = QStyle__PixelMetric(C.QStyle_PM_TabBarScrollButtonWidth_Type()) + QStyle__PM_ToolBarFrameWidth = QStyle__PixelMetric(C.QStyle_PM_ToolBarFrameWidth_Type()) + QStyle__PM_ToolBarHandleExtent = QStyle__PixelMetric(C.QStyle_PM_ToolBarHandleExtent_Type()) + QStyle__PM_ToolBarItemSpacing = QStyle__PixelMetric(C.QStyle_PM_ToolBarItemSpacing_Type()) + QStyle__PM_ToolBarItemMargin = QStyle__PixelMetric(C.QStyle_PM_ToolBarItemMargin_Type()) + QStyle__PM_ToolBarSeparatorExtent = QStyle__PixelMetric(C.QStyle_PM_ToolBarSeparatorExtent_Type()) + QStyle__PM_ToolBarExtensionExtent = QStyle__PixelMetric(C.QStyle_PM_ToolBarExtensionExtent_Type()) + QStyle__PM_SpinBoxSliderHeight = QStyle__PixelMetric(C.QStyle_PM_SpinBoxSliderHeight_Type()) + QStyle__PM_DefaultTopLevelMargin = QStyle__PixelMetric(C.QStyle_PM_DefaultTopLevelMargin_Type()) + QStyle__PM_DefaultChildMargin = QStyle__PixelMetric(C.QStyle_PM_DefaultChildMargin_Type()) + QStyle__PM_DefaultLayoutSpacing = QStyle__PixelMetric(C.QStyle_PM_DefaultLayoutSpacing_Type()) + QStyle__PM_ToolBarIconSize = QStyle__PixelMetric(C.QStyle_PM_ToolBarIconSize_Type()) + QStyle__PM_ListViewIconSize = QStyle__PixelMetric(C.QStyle_PM_ListViewIconSize_Type()) + QStyle__PM_IconViewIconSize = QStyle__PixelMetric(C.QStyle_PM_IconViewIconSize_Type()) + QStyle__PM_SmallIconSize = QStyle__PixelMetric(C.QStyle_PM_SmallIconSize_Type()) + QStyle__PM_LargeIconSize = QStyle__PixelMetric(C.QStyle_PM_LargeIconSize_Type()) + QStyle__PM_FocusFrameVMargin = QStyle__PixelMetric(C.QStyle_PM_FocusFrameVMargin_Type()) + QStyle__PM_FocusFrameHMargin = QStyle__PixelMetric(C.QStyle_PM_FocusFrameHMargin_Type()) + QStyle__PM_ToolTipLabelFrameWidth = QStyle__PixelMetric(C.QStyle_PM_ToolTipLabelFrameWidth_Type()) + QStyle__PM_CheckBoxLabelSpacing = QStyle__PixelMetric(C.QStyle_PM_CheckBoxLabelSpacing_Type()) + QStyle__PM_TabBarIconSize = QStyle__PixelMetric(C.QStyle_PM_TabBarIconSize_Type()) + QStyle__PM_SizeGripSize = QStyle__PixelMetric(C.QStyle_PM_SizeGripSize_Type()) + QStyle__PM_DockWidgetTitleMargin = QStyle__PixelMetric(C.QStyle_PM_DockWidgetTitleMargin_Type()) + QStyle__PM_MessageBoxIconSize = QStyle__PixelMetric(C.QStyle_PM_MessageBoxIconSize_Type()) + QStyle__PM_ButtonIconSize = QStyle__PixelMetric(C.QStyle_PM_ButtonIconSize_Type()) + QStyle__PM_DockWidgetTitleBarButtonMargin = QStyle__PixelMetric(C.QStyle_PM_DockWidgetTitleBarButtonMargin_Type()) + QStyle__PM_RadioButtonLabelSpacing = QStyle__PixelMetric(C.QStyle_PM_RadioButtonLabelSpacing_Type()) + QStyle__PM_LayoutLeftMargin = QStyle__PixelMetric(C.QStyle_PM_LayoutLeftMargin_Type()) + QStyle__PM_LayoutTopMargin = QStyle__PixelMetric(C.QStyle_PM_LayoutTopMargin_Type()) + QStyle__PM_LayoutRightMargin = QStyle__PixelMetric(C.QStyle_PM_LayoutRightMargin_Type()) + QStyle__PM_LayoutBottomMargin = QStyle__PixelMetric(C.QStyle_PM_LayoutBottomMargin_Type()) + QStyle__PM_LayoutHorizontalSpacing = QStyle__PixelMetric(C.QStyle_PM_LayoutHorizontalSpacing_Type()) + QStyle__PM_LayoutVerticalSpacing = QStyle__PixelMetric(C.QStyle_PM_LayoutVerticalSpacing_Type()) + QStyle__PM_TabBar_ScrollButtonOverlap = QStyle__PixelMetric(C.QStyle_PM_TabBar_ScrollButtonOverlap_Type()) + QStyle__PM_TextCursorWidth = QStyle__PixelMetric(C.QStyle_PM_TextCursorWidth_Type()) + QStyle__PM_TabCloseIndicatorWidth = QStyle__PixelMetric(C.QStyle_PM_TabCloseIndicatorWidth_Type()) + QStyle__PM_TabCloseIndicatorHeight = QStyle__PixelMetric(C.QStyle_PM_TabCloseIndicatorHeight_Type()) + QStyle__PM_ScrollView_ScrollBarSpacing = QStyle__PixelMetric(C.QStyle_PM_ScrollView_ScrollBarSpacing_Type()) + QStyle__PM_ScrollView_ScrollBarOverlap = QStyle__PixelMetric(C.QStyle_PM_ScrollView_ScrollBarOverlap_Type()) + QStyle__PM_SubMenuOverlap = QStyle__PixelMetric(C.QStyle_PM_SubMenuOverlap_Type()) + QStyle__PM_TreeViewIndentation = QStyle__PixelMetric(C.QStyle_PM_TreeViewIndentation_Type()) + QStyle__PM_HeaderDefaultSectionSizeHorizontal = QStyle__PixelMetric(C.QStyle_PM_HeaderDefaultSectionSizeHorizontal_Type()) + QStyle__PM_HeaderDefaultSectionSizeVertical = QStyle__PixelMetric(C.QStyle_PM_HeaderDefaultSectionSizeVertical_Type()) + QStyle__PM_CustomBase = QStyle__PixelMetric(0xf0000000) +) + +//QStyle::PrimitiveElement +type QStyle__PrimitiveElement int + +var ( + QStyle__PE_Frame = QStyle__PrimitiveElement(0) + QStyle__PE_FrameDefaultButton = QStyle__PrimitiveElement(1) + QStyle__PE_FrameDockWidget = QStyle__PrimitiveElement(2) + QStyle__PE_FrameFocusRect = QStyle__PrimitiveElement(3) + QStyle__PE_FrameGroupBox = QStyle__PrimitiveElement(4) + QStyle__PE_FrameLineEdit = QStyle__PrimitiveElement(5) + QStyle__PE_FrameMenu = QStyle__PrimitiveElement(6) + QStyle__PE_FrameStatusBar = QStyle__PrimitiveElement(7) + QStyle__PE_FrameStatusBarItem = QStyle__PrimitiveElement(QStyle__PE_FrameStatusBar) + QStyle__PE_FrameTabWidget = QStyle__PrimitiveElement(C.QStyle_PE_FrameTabWidget_Type()) + QStyle__PE_FrameWindow = QStyle__PrimitiveElement(C.QStyle_PE_FrameWindow_Type()) + QStyle__PE_FrameButtonBevel = QStyle__PrimitiveElement(C.QStyle_PE_FrameButtonBevel_Type()) + QStyle__PE_FrameButtonTool = QStyle__PrimitiveElement(C.QStyle_PE_FrameButtonTool_Type()) + QStyle__PE_FrameTabBarBase = QStyle__PrimitiveElement(C.QStyle_PE_FrameTabBarBase_Type()) + QStyle__PE_PanelButtonCommand = QStyle__PrimitiveElement(C.QStyle_PE_PanelButtonCommand_Type()) + QStyle__PE_PanelButtonBevel = QStyle__PrimitiveElement(C.QStyle_PE_PanelButtonBevel_Type()) + QStyle__PE_PanelButtonTool = QStyle__PrimitiveElement(C.QStyle_PE_PanelButtonTool_Type()) + QStyle__PE_PanelMenuBar = QStyle__PrimitiveElement(C.QStyle_PE_PanelMenuBar_Type()) + QStyle__PE_PanelToolBar = QStyle__PrimitiveElement(C.QStyle_PE_PanelToolBar_Type()) + QStyle__PE_PanelLineEdit = QStyle__PrimitiveElement(C.QStyle_PE_PanelLineEdit_Type()) + QStyle__PE_IndicatorArrowDown = QStyle__PrimitiveElement(C.QStyle_PE_IndicatorArrowDown_Type()) + QStyle__PE_IndicatorArrowLeft = QStyle__PrimitiveElement(C.QStyle_PE_IndicatorArrowLeft_Type()) + QStyle__PE_IndicatorArrowRight = QStyle__PrimitiveElement(C.QStyle_PE_IndicatorArrowRight_Type()) + QStyle__PE_IndicatorArrowUp = QStyle__PrimitiveElement(C.QStyle_PE_IndicatorArrowUp_Type()) + QStyle__PE_IndicatorBranch = QStyle__PrimitiveElement(C.QStyle_PE_IndicatorBranch_Type()) + QStyle__PE_IndicatorButtonDropDown = QStyle__PrimitiveElement(C.QStyle_PE_IndicatorButtonDropDown_Type()) + QStyle__PE_IndicatorViewItemCheck = QStyle__PrimitiveElement(C.QStyle_PE_IndicatorViewItemCheck_Type()) + QStyle__PE_IndicatorItemViewItemCheck = QStyle__PrimitiveElement(QStyle__PE_IndicatorViewItemCheck) + QStyle__PE_IndicatorCheckBox = QStyle__PrimitiveElement(C.QStyle_PE_IndicatorCheckBox_Type()) + QStyle__PE_IndicatorDockWidgetResizeHandle = QStyle__PrimitiveElement(C.QStyle_PE_IndicatorDockWidgetResizeHandle_Type()) + QStyle__PE_IndicatorHeaderArrow = QStyle__PrimitiveElement(C.QStyle_PE_IndicatorHeaderArrow_Type()) + QStyle__PE_IndicatorMenuCheckMark = QStyle__PrimitiveElement(C.QStyle_PE_IndicatorMenuCheckMark_Type()) + QStyle__PE_IndicatorProgressChunk = QStyle__PrimitiveElement(C.QStyle_PE_IndicatorProgressChunk_Type()) + QStyle__PE_IndicatorRadioButton = QStyle__PrimitiveElement(C.QStyle_PE_IndicatorRadioButton_Type()) + QStyle__PE_IndicatorSpinDown = QStyle__PrimitiveElement(C.QStyle_PE_IndicatorSpinDown_Type()) + QStyle__PE_IndicatorSpinMinus = QStyle__PrimitiveElement(C.QStyle_PE_IndicatorSpinMinus_Type()) + QStyle__PE_IndicatorSpinPlus = QStyle__PrimitiveElement(C.QStyle_PE_IndicatorSpinPlus_Type()) + QStyle__PE_IndicatorSpinUp = QStyle__PrimitiveElement(C.QStyle_PE_IndicatorSpinUp_Type()) + QStyle__PE_IndicatorToolBarHandle = QStyle__PrimitiveElement(C.QStyle_PE_IndicatorToolBarHandle_Type()) + QStyle__PE_IndicatorToolBarSeparator = QStyle__PrimitiveElement(C.QStyle_PE_IndicatorToolBarSeparator_Type()) + QStyle__PE_PanelTipLabel = QStyle__PrimitiveElement(C.QStyle_PE_PanelTipLabel_Type()) + QStyle__PE_IndicatorTabTear = QStyle__PrimitiveElement(C.QStyle_PE_IndicatorTabTear_Type()) + QStyle__PE_PanelScrollAreaCorner = QStyle__PrimitiveElement(C.QStyle_PE_PanelScrollAreaCorner_Type()) + QStyle__PE_Widget = QStyle__PrimitiveElement(C.QStyle_PE_Widget_Type()) + QStyle__PE_IndicatorColumnViewArrow = QStyle__PrimitiveElement(C.QStyle_PE_IndicatorColumnViewArrow_Type()) + QStyle__PE_IndicatorItemViewItemDrop = QStyle__PrimitiveElement(C.QStyle_PE_IndicatorItemViewItemDrop_Type()) + QStyle__PE_PanelItemViewItem = QStyle__PrimitiveElement(C.QStyle_PE_PanelItemViewItem_Type()) + QStyle__PE_PanelItemViewRow = QStyle__PrimitiveElement(C.QStyle_PE_PanelItemViewRow_Type()) + QStyle__PE_PanelStatusBar = QStyle__PrimitiveElement(C.QStyle_PE_PanelStatusBar_Type()) + QStyle__PE_IndicatorTabClose = QStyle__PrimitiveElement(C.QStyle_PE_IndicatorTabClose_Type()) + QStyle__PE_PanelMenu = QStyle__PrimitiveElement(C.QStyle_PE_PanelMenu_Type()) + QStyle__PE_CustomBase = QStyle__PrimitiveElement(0xf000000) +) + +//QStyle::RequestSoftwareInputPanel +type QStyle__RequestSoftwareInputPanel int + +var ( + QStyle__RSIP_OnMouseClickAndAlreadyFocused = QStyle__RequestSoftwareInputPanel(0) + QStyle__RSIP_OnMouseClick = QStyle__RequestSoftwareInputPanel(1) +) + +//QStyle::StandardPixmap +type QStyle__StandardPixmap int + +var ( + QStyle__SP_TitleBarMenuButton = QStyle__StandardPixmap(0) + QStyle__SP_TitleBarMinButton = QStyle__StandardPixmap(1) + QStyle__SP_TitleBarMaxButton = QStyle__StandardPixmap(2) + QStyle__SP_TitleBarCloseButton = QStyle__StandardPixmap(3) + QStyle__SP_TitleBarNormalButton = QStyle__StandardPixmap(4) + QStyle__SP_TitleBarShadeButton = QStyle__StandardPixmap(5) + QStyle__SP_TitleBarUnshadeButton = QStyle__StandardPixmap(6) + QStyle__SP_TitleBarContextHelpButton = QStyle__StandardPixmap(7) + QStyle__SP_DockWidgetCloseButton = QStyle__StandardPixmap(8) + QStyle__SP_MessageBoxInformation = QStyle__StandardPixmap(9) + QStyle__SP_MessageBoxWarning = QStyle__StandardPixmap(10) + QStyle__SP_MessageBoxCritical = QStyle__StandardPixmap(11) + QStyle__SP_MessageBoxQuestion = QStyle__StandardPixmap(12) + QStyle__SP_DesktopIcon = QStyle__StandardPixmap(13) + QStyle__SP_TrashIcon = QStyle__StandardPixmap(14) + QStyle__SP_ComputerIcon = QStyle__StandardPixmap(15) + QStyle__SP_DriveFDIcon = QStyle__StandardPixmap(16) + QStyle__SP_DriveHDIcon = QStyle__StandardPixmap(17) + QStyle__SP_DriveCDIcon = QStyle__StandardPixmap(18) + QStyle__SP_DriveDVDIcon = QStyle__StandardPixmap(19) + QStyle__SP_DriveNetIcon = QStyle__StandardPixmap(20) + QStyle__SP_DirOpenIcon = QStyle__StandardPixmap(21) + QStyle__SP_DirClosedIcon = QStyle__StandardPixmap(22) + QStyle__SP_DirLinkIcon = QStyle__StandardPixmap(23) + QStyle__SP_DirLinkOpenIcon = QStyle__StandardPixmap(24) + QStyle__SP_FileIcon = QStyle__StandardPixmap(25) + QStyle__SP_FileLinkIcon = QStyle__StandardPixmap(26) + QStyle__SP_ToolBarHorizontalExtensionButton = QStyle__StandardPixmap(27) + QStyle__SP_ToolBarVerticalExtensionButton = QStyle__StandardPixmap(28) + QStyle__SP_FileDialogStart = QStyle__StandardPixmap(29) + QStyle__SP_FileDialogEnd = QStyle__StandardPixmap(30) + QStyle__SP_FileDialogToParent = QStyle__StandardPixmap(31) + QStyle__SP_FileDialogNewFolder = QStyle__StandardPixmap(32) + QStyle__SP_FileDialogDetailedView = QStyle__StandardPixmap(33) + QStyle__SP_FileDialogInfoView = QStyle__StandardPixmap(34) + QStyle__SP_FileDialogContentsView = QStyle__StandardPixmap(35) + QStyle__SP_FileDialogListView = QStyle__StandardPixmap(36) + QStyle__SP_FileDialogBack = QStyle__StandardPixmap(37) + QStyle__SP_DirIcon = QStyle__StandardPixmap(38) + QStyle__SP_DialogOkButton = QStyle__StandardPixmap(39) + QStyle__SP_DialogCancelButton = QStyle__StandardPixmap(40) + QStyle__SP_DialogHelpButton = QStyle__StandardPixmap(41) + QStyle__SP_DialogOpenButton = QStyle__StandardPixmap(42) + QStyle__SP_DialogSaveButton = QStyle__StandardPixmap(43) + QStyle__SP_DialogCloseButton = QStyle__StandardPixmap(44) + QStyle__SP_DialogApplyButton = QStyle__StandardPixmap(45) + QStyle__SP_DialogResetButton = QStyle__StandardPixmap(46) + QStyle__SP_DialogDiscardButton = QStyle__StandardPixmap(47) + QStyle__SP_DialogYesButton = QStyle__StandardPixmap(48) + QStyle__SP_DialogNoButton = QStyle__StandardPixmap(49) + QStyle__SP_ArrowUp = QStyle__StandardPixmap(50) + QStyle__SP_ArrowDown = QStyle__StandardPixmap(51) + QStyle__SP_ArrowLeft = QStyle__StandardPixmap(52) + QStyle__SP_ArrowRight = QStyle__StandardPixmap(53) + QStyle__SP_ArrowBack = QStyle__StandardPixmap(54) + QStyle__SP_ArrowForward = QStyle__StandardPixmap(55) + QStyle__SP_DirHomeIcon = QStyle__StandardPixmap(56) + QStyle__SP_CommandLink = QStyle__StandardPixmap(57) + QStyle__SP_VistaShield = QStyle__StandardPixmap(58) + QStyle__SP_BrowserReload = QStyle__StandardPixmap(59) + QStyle__SP_BrowserStop = QStyle__StandardPixmap(60) + QStyle__SP_MediaPlay = QStyle__StandardPixmap(61) + QStyle__SP_MediaStop = QStyle__StandardPixmap(62) + QStyle__SP_MediaPause = QStyle__StandardPixmap(63) + QStyle__SP_MediaSkipForward = QStyle__StandardPixmap(64) + QStyle__SP_MediaSkipBackward = QStyle__StandardPixmap(65) + QStyle__SP_MediaSeekForward = QStyle__StandardPixmap(66) + QStyle__SP_MediaSeekBackward = QStyle__StandardPixmap(67) + QStyle__SP_MediaVolume = QStyle__StandardPixmap(68) + QStyle__SP_MediaVolumeMuted = QStyle__StandardPixmap(69) + QStyle__SP_LineEditClearButton = QStyle__StandardPixmap(70) + QStyle__SP_CustomBase = QStyle__StandardPixmap(0xf0000000) +) + +//QStyle::StateFlag +type QStyle__StateFlag int + +var ( + QStyle__State_None = QStyle__StateFlag(0x00000000) + QStyle__State_Enabled = QStyle__StateFlag(0x00000001) + QStyle__State_Raised = QStyle__StateFlag(0x00000002) + QStyle__State_Sunken = QStyle__StateFlag(0x00000004) + QStyle__State_Off = QStyle__StateFlag(0x00000008) + QStyle__State_NoChange = QStyle__StateFlag(0x00000010) + QStyle__State_On = QStyle__StateFlag(0x00000020) + QStyle__State_DownArrow = QStyle__StateFlag(0x00000040) + QStyle__State_Horizontal = QStyle__StateFlag(0x00000080) + QStyle__State_HasFocus = QStyle__StateFlag(0x00000100) + QStyle__State_Top = QStyle__StateFlag(0x00000200) + QStyle__State_Bottom = QStyle__StateFlag(0x00000400) + QStyle__State_FocusAtBorder = QStyle__StateFlag(0x00000800) + QStyle__State_AutoRaise = QStyle__StateFlag(0x00001000) + QStyle__State_MouseOver = QStyle__StateFlag(0x00002000) + QStyle__State_UpArrow = QStyle__StateFlag(0x00004000) + QStyle__State_Selected = QStyle__StateFlag(0x00008000) + QStyle__State_Active = QStyle__StateFlag(0x00010000) + QStyle__State_Window = QStyle__StateFlag(0x00020000) + QStyle__State_Open = QStyle__StateFlag(0x00040000) + QStyle__State_Children = QStyle__StateFlag(0x00080000) + QStyle__State_Item = QStyle__StateFlag(0x00100000) + QStyle__State_Sibling = QStyle__StateFlag(0x00200000) + QStyle__State_Editing = QStyle__StateFlag(0x00400000) + QStyle__State_KeyboardFocusChange = QStyle__StateFlag(0x00800000) + QStyle__State_HasEditFocus = QStyle__StateFlag(0x01000000) + QStyle__State_ReadOnly = QStyle__StateFlag(0x02000000) + QStyle__State_Small = QStyle__StateFlag(0x04000000) + QStyle__State_Mini = QStyle__StateFlag(0x08000000) +) + +//QStyle::StyleHint +type QStyle__StyleHint int + +var ( + QStyle__SH_EtchDisabledText = QStyle__StyleHint(0) + QStyle__SH_DitherDisabledText = QStyle__StyleHint(1) + QStyle__SH_ScrollBar_MiddleClickAbsolutePosition = QStyle__StyleHint(2) + QStyle__SH_ScrollBar_ScrollWhenPointerLeavesControl = QStyle__StyleHint(3) + QStyle__SH_TabBar_SelectMouseType = QStyle__StyleHint(4) + QStyle__SH_TabBar_Alignment = QStyle__StyleHint(5) + QStyle__SH_Header_ArrowAlignment = QStyle__StyleHint(6) + QStyle__SH_Slider_SnapToValue = QStyle__StyleHint(7) + QStyle__SH_Slider_SloppyKeyEvents = QStyle__StyleHint(8) + QStyle__SH_ProgressDialog_CenterCancelButton = QStyle__StyleHint(9) + QStyle__SH_ProgressDialog_TextLabelAlignment = QStyle__StyleHint(10) + QStyle__SH_PrintDialog_RightAlignButtons = QStyle__StyleHint(11) + QStyle__SH_MainWindow_SpaceBelowMenuBar = QStyle__StyleHint(12) + QStyle__SH_FontDialog_SelectAssociatedText = QStyle__StyleHint(13) + QStyle__SH_Menu_AllowActiveAndDisabled = QStyle__StyleHint(14) + QStyle__SH_Menu_SpaceActivatesItem = QStyle__StyleHint(15) + QStyle__SH_Menu_SubMenuPopupDelay = QStyle__StyleHint(16) + QStyle__SH_ScrollView_FrameOnlyAroundContents = QStyle__StyleHint(17) + QStyle__SH_MenuBar_AltKeyNavigation = QStyle__StyleHint(18) + QStyle__SH_ComboBox_ListMouseTracking = QStyle__StyleHint(19) + QStyle__SH_Menu_MouseTracking = QStyle__StyleHint(20) + QStyle__SH_MenuBar_MouseTracking = QStyle__StyleHint(21) + QStyle__SH_ItemView_ChangeHighlightOnFocus = QStyle__StyleHint(22) + QStyle__SH_Widget_ShareActivation = QStyle__StyleHint(23) + QStyle__SH_Workspace_FillSpaceOnMaximize = QStyle__StyleHint(24) + QStyle__SH_ComboBox_Popup = QStyle__StyleHint(25) + QStyle__SH_TitleBar_NoBorder = QStyle__StyleHint(26) + QStyle__SH_Slider_StopMouseOverSlider = QStyle__StyleHint(27) + QStyle__SH_ScrollBar_StopMouseOverSlider = QStyle__StyleHint(QStyle__SH_Slider_StopMouseOverSlider) + QStyle__SH_BlinkCursorWhenTextSelected = QStyle__StyleHint(C.QStyle_SH_BlinkCursorWhenTextSelected_Type()) + QStyle__SH_RichText_FullWidthSelection = QStyle__StyleHint(C.QStyle_SH_RichText_FullWidthSelection_Type()) + QStyle__SH_Menu_Scrollable = QStyle__StyleHint(C.QStyle_SH_Menu_Scrollable_Type()) + QStyle__SH_GroupBox_TextLabelVerticalAlignment = QStyle__StyleHint(C.QStyle_SH_GroupBox_TextLabelVerticalAlignment_Type()) + QStyle__SH_GroupBox_TextLabelColor = QStyle__StyleHint(C.QStyle_SH_GroupBox_TextLabelColor_Type()) + QStyle__SH_Menu_SloppySubMenus = QStyle__StyleHint(C.QStyle_SH_Menu_SloppySubMenus_Type()) + QStyle__SH_Table_GridLineColor = QStyle__StyleHint(C.QStyle_SH_Table_GridLineColor_Type()) + QStyle__SH_LineEdit_PasswordCharacter = QStyle__StyleHint(C.QStyle_SH_LineEdit_PasswordCharacter_Type()) + QStyle__SH_DialogButtons_DefaultButton = QStyle__StyleHint(C.QStyle_SH_DialogButtons_DefaultButton_Type()) + QStyle__SH_ToolBox_SelectedPageTitleBold = QStyle__StyleHint(C.QStyle_SH_ToolBox_SelectedPageTitleBold_Type()) + QStyle__SH_TabBar_PreferNoArrows = QStyle__StyleHint(C.QStyle_SH_TabBar_PreferNoArrows_Type()) + QStyle__SH_ScrollBar_LeftClickAbsolutePosition = QStyle__StyleHint(C.QStyle_SH_ScrollBar_LeftClickAbsolutePosition_Type()) + QStyle__SH_ListViewExpand_SelectMouseType = QStyle__StyleHint(C.QStyle_SH_ListViewExpand_SelectMouseType_Type()) + QStyle__SH_UnderlineShortcut = QStyle__StyleHint(C.QStyle_SH_UnderlineShortcut_Type()) + QStyle__SH_SpinBox_AnimateButton = QStyle__StyleHint(C.QStyle_SH_SpinBox_AnimateButton_Type()) + QStyle__SH_SpinBox_KeyPressAutoRepeatRate = QStyle__StyleHint(C.QStyle_SH_SpinBox_KeyPressAutoRepeatRate_Type()) + QStyle__SH_SpinBox_ClickAutoRepeatRate = QStyle__StyleHint(C.QStyle_SH_SpinBox_ClickAutoRepeatRate_Type()) + QStyle__SH_Menu_FillScreenWithScroll = QStyle__StyleHint(C.QStyle_SH_Menu_FillScreenWithScroll_Type()) + QStyle__SH_ToolTipLabel_Opacity = QStyle__StyleHint(C.QStyle_SH_ToolTipLabel_Opacity_Type()) + QStyle__SH_DrawMenuBarSeparator = QStyle__StyleHint(C.QStyle_SH_DrawMenuBarSeparator_Type()) + QStyle__SH_TitleBar_ModifyNotification = QStyle__StyleHint(C.QStyle_SH_TitleBar_ModifyNotification_Type()) + QStyle__SH_Button_FocusPolicy = QStyle__StyleHint(C.QStyle_SH_Button_FocusPolicy_Type()) + QStyle__SH_MessageBox_UseBorderForButtonSpacing = QStyle__StyleHint(C.QStyle_SH_MessageBox_UseBorderForButtonSpacing_Type()) + QStyle__SH_TitleBar_AutoRaise = QStyle__StyleHint(C.QStyle_SH_TitleBar_AutoRaise_Type()) + QStyle__SH_ToolButton_PopupDelay = QStyle__StyleHint(C.QStyle_SH_ToolButton_PopupDelay_Type()) + QStyle__SH_FocusFrame_Mask = QStyle__StyleHint(C.QStyle_SH_FocusFrame_Mask_Type()) + QStyle__SH_RubberBand_Mask = QStyle__StyleHint(C.QStyle_SH_RubberBand_Mask_Type()) + QStyle__SH_WindowFrame_Mask = QStyle__StyleHint(C.QStyle_SH_WindowFrame_Mask_Type()) + QStyle__SH_SpinControls_DisableOnBounds = QStyle__StyleHint(C.QStyle_SH_SpinControls_DisableOnBounds_Type()) + QStyle__SH_Dial_BackgroundRole = QStyle__StyleHint(C.QStyle_SH_Dial_BackgroundRole_Type()) + QStyle__SH_ComboBox_LayoutDirection = QStyle__StyleHint(C.QStyle_SH_ComboBox_LayoutDirection_Type()) + QStyle__SH_ItemView_EllipsisLocation = QStyle__StyleHint(C.QStyle_SH_ItemView_EllipsisLocation_Type()) + QStyle__SH_ItemView_ShowDecorationSelected = QStyle__StyleHint(C.QStyle_SH_ItemView_ShowDecorationSelected_Type()) + QStyle__SH_ItemView_ActivateItemOnSingleClick = QStyle__StyleHint(C.QStyle_SH_ItemView_ActivateItemOnSingleClick_Type()) + QStyle__SH_ScrollBar_ContextMenu = QStyle__StyleHint(C.QStyle_SH_ScrollBar_ContextMenu_Type()) + QStyle__SH_ScrollBar_RollBetweenButtons = QStyle__StyleHint(C.QStyle_SH_ScrollBar_RollBetweenButtons_Type()) + QStyle__SH_Slider_AbsoluteSetButtons = QStyle__StyleHint(C.QStyle_SH_Slider_AbsoluteSetButtons_Type()) + QStyle__SH_Slider_PageSetButtons = QStyle__StyleHint(C.QStyle_SH_Slider_PageSetButtons_Type()) + QStyle__SH_Menu_KeyboardSearch = QStyle__StyleHint(C.QStyle_SH_Menu_KeyboardSearch_Type()) + QStyle__SH_TabBar_ElideMode = QStyle__StyleHint(C.QStyle_SH_TabBar_ElideMode_Type()) + QStyle__SH_DialogButtonLayout = QStyle__StyleHint(C.QStyle_SH_DialogButtonLayout_Type()) + QStyle__SH_ComboBox_PopupFrameStyle = QStyle__StyleHint(C.QStyle_SH_ComboBox_PopupFrameStyle_Type()) + QStyle__SH_MessageBox_TextInteractionFlags = QStyle__StyleHint(C.QStyle_SH_MessageBox_TextInteractionFlags_Type()) + QStyle__SH_DialogButtonBox_ButtonsHaveIcons = QStyle__StyleHint(C.QStyle_SH_DialogButtonBox_ButtonsHaveIcons_Type()) + QStyle__SH_SpellCheckUnderlineStyle = QStyle__StyleHint(C.QStyle_SH_SpellCheckUnderlineStyle_Type()) + QStyle__SH_MessageBox_CenterButtons = QStyle__StyleHint(C.QStyle_SH_MessageBox_CenterButtons_Type()) + QStyle__SH_Menu_SelectionWrap = QStyle__StyleHint(C.QStyle_SH_Menu_SelectionWrap_Type()) + QStyle__SH_ItemView_MovementWithoutUpdatingSelection = QStyle__StyleHint(C.QStyle_SH_ItemView_MovementWithoutUpdatingSelection_Type()) + QStyle__SH_ToolTip_Mask = QStyle__StyleHint(C.QStyle_SH_ToolTip_Mask_Type()) + QStyle__SH_FocusFrame_AboveWidget = QStyle__StyleHint(C.QStyle_SH_FocusFrame_AboveWidget_Type()) + QStyle__SH_TextControl_FocusIndicatorTextCharFormat = QStyle__StyleHint(C.QStyle_SH_TextControl_FocusIndicatorTextCharFormat_Type()) + QStyle__SH_WizardStyle = QStyle__StyleHint(C.QStyle_SH_WizardStyle_Type()) + QStyle__SH_ItemView_ArrowKeysNavigateIntoChildren = QStyle__StyleHint(C.QStyle_SH_ItemView_ArrowKeysNavigateIntoChildren_Type()) + QStyle__SH_Menu_Mask = QStyle__StyleHint(C.QStyle_SH_Menu_Mask_Type()) + QStyle__SH_Menu_FlashTriggeredItem = QStyle__StyleHint(C.QStyle_SH_Menu_FlashTriggeredItem_Type()) + QStyle__SH_Menu_FadeOutOnHide = QStyle__StyleHint(C.QStyle_SH_Menu_FadeOutOnHide_Type()) + QStyle__SH_SpinBox_ClickAutoRepeatThreshold = QStyle__StyleHint(C.QStyle_SH_SpinBox_ClickAutoRepeatThreshold_Type()) + QStyle__SH_ItemView_PaintAlternatingRowColorsForEmptyArea = QStyle__StyleHint(C.QStyle_SH_ItemView_PaintAlternatingRowColorsForEmptyArea_Type()) + QStyle__SH_FormLayoutWrapPolicy = QStyle__StyleHint(C.QStyle_SH_FormLayoutWrapPolicy_Type()) + QStyle__SH_TabWidget_DefaultTabPosition = QStyle__StyleHint(C.QStyle_SH_TabWidget_DefaultTabPosition_Type()) + QStyle__SH_ToolBar_Movable = QStyle__StyleHint(C.QStyle_SH_ToolBar_Movable_Type()) + QStyle__SH_FormLayoutFieldGrowthPolicy = QStyle__StyleHint(C.QStyle_SH_FormLayoutFieldGrowthPolicy_Type()) + QStyle__SH_FormLayoutFormAlignment = QStyle__StyleHint(C.QStyle_SH_FormLayoutFormAlignment_Type()) + QStyle__SH_FormLayoutLabelAlignment = QStyle__StyleHint(C.QStyle_SH_FormLayoutLabelAlignment_Type()) + QStyle__SH_ItemView_DrawDelegateFrame = QStyle__StyleHint(C.QStyle_SH_ItemView_DrawDelegateFrame_Type()) + QStyle__SH_TabBar_CloseButtonPosition = QStyle__StyleHint(C.QStyle_SH_TabBar_CloseButtonPosition_Type()) + QStyle__SH_DockWidget_ButtonsHaveFrame = QStyle__StyleHint(C.QStyle_SH_DockWidget_ButtonsHaveFrame_Type()) + QStyle__SH_ToolButtonStyle = QStyle__StyleHint(C.QStyle_SH_ToolButtonStyle_Type()) + QStyle__SH_RequestSoftwareInputPanel = QStyle__StyleHint(C.QStyle_SH_RequestSoftwareInputPanel_Type()) + QStyle__SH_ScrollBar_Transient = QStyle__StyleHint(C.QStyle_SH_ScrollBar_Transient_Type()) + QStyle__SH_Menu_SupportsSections = QStyle__StyleHint(C.QStyle_SH_Menu_SupportsSections_Type()) + QStyle__SH_ToolTip_WakeUpDelay = QStyle__StyleHint(C.QStyle_SH_ToolTip_WakeUpDelay_Type()) + QStyle__SH_ToolTip_FallAsleepDelay = QStyle__StyleHint(C.QStyle_SH_ToolTip_FallAsleepDelay_Type()) + QStyle__SH_Widget_Animate = QStyle__StyleHint(C.QStyle_SH_Widget_Animate_Type()) + QStyle__SH_Splitter_OpaqueResize = QStyle__StyleHint(C.QStyle_SH_Splitter_OpaqueResize_Type()) + QStyle__SH_ComboBox_UseNativePopup = QStyle__StyleHint(C.QStyle_SH_ComboBox_UseNativePopup_Type()) + QStyle__SH_LineEdit_PasswordMaskDelay = QStyle__StyleHint(C.QStyle_SH_LineEdit_PasswordMaskDelay_Type()) + QStyle__SH_TabBar_ChangeCurrentDelay = QStyle__StyleHint(C.QStyle_SH_TabBar_ChangeCurrentDelay_Type()) + QStyle__SH_Menu_SubMenuUniDirection = QStyle__StyleHint(C.QStyle_SH_Menu_SubMenuUniDirection_Type()) + QStyle__SH_Menu_SubMenuUniDirectionFailCount = QStyle__StyleHint(C.QStyle_SH_Menu_SubMenuUniDirectionFailCount_Type()) + QStyle__SH_Menu_SubMenuSloppySelectOtherActions = QStyle__StyleHint(C.QStyle_SH_Menu_SubMenuSloppySelectOtherActions_Type()) + QStyle__SH_Menu_SubMenuSloppyCloseTimeout = QStyle__StyleHint(C.QStyle_SH_Menu_SubMenuSloppyCloseTimeout_Type()) + QStyle__SH_Menu_SubMenuResetWhenReenteringParent = QStyle__StyleHint(C.QStyle_SH_Menu_SubMenuResetWhenReenteringParent_Type()) + QStyle__SH_Menu_SubMenuDontStartSloppyOnLeave = QStyle__StyleHint(C.QStyle_SH_Menu_SubMenuDontStartSloppyOnLeave_Type()) + QStyle__SH_CustomBase = QStyle__StyleHint(0xf0000000) +) + +//QStyle::SubControl +type QStyle__SubControl int + +var ( + QStyle__SC_None = QStyle__SubControl(0x00000000) + QStyle__SC_ScrollBarAddLine = QStyle__SubControl(0x00000001) + QStyle__SC_ScrollBarSubLine = QStyle__SubControl(0x00000002) + QStyle__SC_ScrollBarAddPage = QStyle__SubControl(0x00000004) + QStyle__SC_ScrollBarSubPage = QStyle__SubControl(0x00000008) + QStyle__SC_ScrollBarFirst = QStyle__SubControl(0x00000010) + QStyle__SC_ScrollBarLast = QStyle__SubControl(0x00000020) + QStyle__SC_ScrollBarSlider = QStyle__SubControl(0x00000040) + QStyle__SC_ScrollBarGroove = QStyle__SubControl(0x00000080) + QStyle__SC_SpinBoxUp = QStyle__SubControl(0x00000001) + QStyle__SC_SpinBoxDown = QStyle__SubControl(0x00000002) + QStyle__SC_SpinBoxFrame = QStyle__SubControl(0x00000004) + QStyle__SC_SpinBoxEditField = QStyle__SubControl(0x00000008) + QStyle__SC_ComboBoxFrame = QStyle__SubControl(0x00000001) + QStyle__SC_ComboBoxEditField = QStyle__SubControl(0x00000002) + QStyle__SC_ComboBoxArrow = QStyle__SubControl(0x00000004) + QStyle__SC_ComboBoxListBoxPopup = QStyle__SubControl(0x00000008) + QStyle__SC_SliderGroove = QStyle__SubControl(0x00000001) + QStyle__SC_SliderHandle = QStyle__SubControl(0x00000002) + QStyle__SC_SliderTickmarks = QStyle__SubControl(0x00000004) + QStyle__SC_ToolButton = QStyle__SubControl(0x00000001) + QStyle__SC_ToolButtonMenu = QStyle__SubControl(0x00000002) + QStyle__SC_TitleBarSysMenu = QStyle__SubControl(0x00000001) + QStyle__SC_TitleBarMinButton = QStyle__SubControl(0x00000002) + QStyle__SC_TitleBarMaxButton = QStyle__SubControl(0x00000004) + QStyle__SC_TitleBarCloseButton = QStyle__SubControl(0x00000008) + QStyle__SC_TitleBarNormalButton = QStyle__SubControl(0x00000010) + QStyle__SC_TitleBarShadeButton = QStyle__SubControl(0x00000020) + QStyle__SC_TitleBarUnshadeButton = QStyle__SubControl(0x00000040) + QStyle__SC_TitleBarContextHelpButton = QStyle__SubControl(0x00000080) + QStyle__SC_TitleBarLabel = QStyle__SubControl(0x00000100) + QStyle__SC_DialGroove = QStyle__SubControl(0x00000001) + QStyle__SC_DialHandle = QStyle__SubControl(0x00000002) + QStyle__SC_DialTickmarks = QStyle__SubControl(0x00000004) + QStyle__SC_GroupBoxCheckBox = QStyle__SubControl(0x00000001) + QStyle__SC_GroupBoxLabel = QStyle__SubControl(0x00000002) + QStyle__SC_GroupBoxContents = QStyle__SubControl(0x00000004) + QStyle__SC_GroupBoxFrame = QStyle__SubControl(0x00000008) + QStyle__SC_MdiMinButton = QStyle__SubControl(0x00000001) + QStyle__SC_MdiNormalButton = QStyle__SubControl(0x00000002) + QStyle__SC_MdiCloseButton = QStyle__SubControl(0x00000004) + QStyle__SC_CustomBase = QStyle__SubControl(0xf0000000) + QStyle__SC_All = QStyle__SubControl(0xffffffff) +) + +//QStyle::SubElement +type QStyle__SubElement int + +var ( + QStyle__SE_PushButtonContents = QStyle__SubElement(0) + QStyle__SE_PushButtonFocusRect = QStyle__SubElement(1) + QStyle__SE_CheckBoxIndicator = QStyle__SubElement(2) + QStyle__SE_CheckBoxContents = QStyle__SubElement(3) + QStyle__SE_CheckBoxFocusRect = QStyle__SubElement(4) + QStyle__SE_CheckBoxClickRect = QStyle__SubElement(5) + QStyle__SE_RadioButtonIndicator = QStyle__SubElement(6) + QStyle__SE_RadioButtonContents = QStyle__SubElement(7) + QStyle__SE_RadioButtonFocusRect = QStyle__SubElement(8) + QStyle__SE_RadioButtonClickRect = QStyle__SubElement(9) + QStyle__SE_ComboBoxFocusRect = QStyle__SubElement(10) + QStyle__SE_SliderFocusRect = QStyle__SubElement(11) + QStyle__SE_ProgressBarGroove = QStyle__SubElement(12) + QStyle__SE_ProgressBarContents = QStyle__SubElement(13) + QStyle__SE_ProgressBarLabel = QStyle__SubElement(14) + QStyle__SE_ToolBoxTabContents = QStyle__SubElement(15) + QStyle__SE_HeaderLabel = QStyle__SubElement(16) + QStyle__SE_HeaderArrow = QStyle__SubElement(17) + QStyle__SE_TabWidgetTabBar = QStyle__SubElement(18) + QStyle__SE_TabWidgetTabPane = QStyle__SubElement(19) + QStyle__SE_TabWidgetTabContents = QStyle__SubElement(20) + QStyle__SE_TabWidgetLeftCorner = QStyle__SubElement(21) + QStyle__SE_TabWidgetRightCorner = QStyle__SubElement(22) + QStyle__SE_ViewItemCheckIndicator = QStyle__SubElement(23) + QStyle__SE_ItemViewItemCheckIndicator = QStyle__SubElement(QStyle__SE_ViewItemCheckIndicator) + QStyle__SE_TabBarTearIndicator = QStyle__SubElement(C.QStyle_SE_TabBarTearIndicator_Type()) + QStyle__SE_TreeViewDisclosureItem = QStyle__SubElement(C.QStyle_SE_TreeViewDisclosureItem_Type()) + QStyle__SE_LineEditContents = QStyle__SubElement(C.QStyle_SE_LineEditContents_Type()) + QStyle__SE_FrameContents = QStyle__SubElement(C.QStyle_SE_FrameContents_Type()) + QStyle__SE_DockWidgetCloseButton = QStyle__SubElement(C.QStyle_SE_DockWidgetCloseButton_Type()) + QStyle__SE_DockWidgetFloatButton = QStyle__SubElement(C.QStyle_SE_DockWidgetFloatButton_Type()) + QStyle__SE_DockWidgetTitleBarText = QStyle__SubElement(C.QStyle_SE_DockWidgetTitleBarText_Type()) + QStyle__SE_DockWidgetIcon = QStyle__SubElement(C.QStyle_SE_DockWidgetIcon_Type()) + QStyle__SE_CheckBoxLayoutItem = QStyle__SubElement(C.QStyle_SE_CheckBoxLayoutItem_Type()) + QStyle__SE_ComboBoxLayoutItem = QStyle__SubElement(C.QStyle_SE_ComboBoxLayoutItem_Type()) + QStyle__SE_DateTimeEditLayoutItem = QStyle__SubElement(C.QStyle_SE_DateTimeEditLayoutItem_Type()) + QStyle__SE_DialogButtonBoxLayoutItem = QStyle__SubElement(C.QStyle_SE_DialogButtonBoxLayoutItem_Type()) + QStyle__SE_LabelLayoutItem = QStyle__SubElement(C.QStyle_SE_LabelLayoutItem_Type()) + QStyle__SE_ProgressBarLayoutItem = QStyle__SubElement(C.QStyle_SE_ProgressBarLayoutItem_Type()) + QStyle__SE_PushButtonLayoutItem = QStyle__SubElement(C.QStyle_SE_PushButtonLayoutItem_Type()) + QStyle__SE_RadioButtonLayoutItem = QStyle__SubElement(C.QStyle_SE_RadioButtonLayoutItem_Type()) + QStyle__SE_SliderLayoutItem = QStyle__SubElement(C.QStyle_SE_SliderLayoutItem_Type()) + QStyle__SE_SpinBoxLayoutItem = QStyle__SubElement(C.QStyle_SE_SpinBoxLayoutItem_Type()) + QStyle__SE_ToolButtonLayoutItem = QStyle__SubElement(C.QStyle_SE_ToolButtonLayoutItem_Type()) + QStyle__SE_FrameLayoutItem = QStyle__SubElement(C.QStyle_SE_FrameLayoutItem_Type()) + QStyle__SE_GroupBoxLayoutItem = QStyle__SubElement(C.QStyle_SE_GroupBoxLayoutItem_Type()) + QStyle__SE_TabWidgetLayoutItem = QStyle__SubElement(C.QStyle_SE_TabWidgetLayoutItem_Type()) + QStyle__SE_ItemViewItemDecoration = QStyle__SubElement(C.QStyle_SE_ItemViewItemDecoration_Type()) + QStyle__SE_ItemViewItemText = QStyle__SubElement(C.QStyle_SE_ItemViewItemText_Type()) + QStyle__SE_ItemViewItemFocusRect = QStyle__SubElement(C.QStyle_SE_ItemViewItemFocusRect_Type()) + QStyle__SE_TabBarTabLeftButton = QStyle__SubElement(C.QStyle_SE_TabBarTabLeftButton_Type()) + QStyle__SE_TabBarTabRightButton = QStyle__SubElement(C.QStyle_SE_TabBarTabRightButton_Type()) + QStyle__SE_TabBarTabText = QStyle__SubElement(C.QStyle_SE_TabBarTabText_Type()) + QStyle__SE_ShapedFrameContents = QStyle__SubElement(C.QStyle_SE_ShapedFrameContents_Type()) + QStyle__SE_ToolBarHandle = QStyle__SubElement(C.QStyle_SE_ToolBarHandle_Type()) + QStyle__SE_CustomBase = QStyle__SubElement(0xf0000000) +) + +func (ptr *QStyle) DrawItemPixmap(painter gui.QPainterITF, rectangle core.QRectITF, alignment int, pixmap gui.QPixmapITF) { + if ptr.Pointer() != nil { + C.QStyle_DrawItemPixmap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(core.PointerFromQRect(rectangle)), C.int(alignment), C.QtObjectPtr(gui.PointerFromQPixmap(pixmap))) + } +} + +func (ptr *QStyle) DrawItemText(painter gui.QPainterITF, rectangle core.QRectITF, alignment int, palette gui.QPaletteITF, enabled bool, text string, textRole gui.QPalette__ColorRole) { + if ptr.Pointer() != nil { + C.QStyle_DrawItemText(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(core.PointerFromQRect(rectangle)), C.int(alignment), C.QtObjectPtr(gui.PointerFromQPalette(palette)), C.int(qt.GoBoolToInt(enabled)), C.CString(text), C.int(textRole)) + } +} + +func (ptr *QStyle) Polish2(application QApplicationITF) { + if ptr.Pointer() != nil { + C.QStyle_Polish2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQApplication(application))) + } +} + +func (ptr *QStyle) Polish3(palette gui.QPaletteITF) { + if ptr.Pointer() != nil { + C.QStyle_Polish3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPalette(palette))) + } +} + +func (ptr *QStyle) Proxy() *QStyle { + if ptr.Pointer() != nil { + return QStyleFromPointer(unsafe.Pointer(C.QStyle_Proxy(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func QStyle_SliderValueFromPosition(min int, max int, position int, span int, upsideDown bool) int { + return int(C.QStyle_QStyle_SliderValueFromPosition(C.int(min), C.int(max), C.int(position), C.int(span), C.int(qt.GoBoolToInt(upsideDown)))) +} + +func (ptr *QStyle) Unpolish2(application QApplicationITF) { + if ptr.Pointer() != nil { + C.QStyle_Unpolish2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQApplication(application))) + } +} + +func (ptr *QStyle) CombinedLayoutSpacing(controls1 QSizePolicy__ControlType, controls2 QSizePolicy__ControlType, orientation core.Qt__Orientation, option QStyleOptionITF, widget QWidgetITF) int { + if ptr.Pointer() != nil { + return int(C.QStyle_CombinedLayoutSpacing(C.QtObjectPtr(ptr.Pointer()), C.int(controls1), C.int(controls2), C.int(orientation), C.QtObjectPtr(PointerFromQStyleOption(option)), C.QtObjectPtr(PointerFromQWidget(widget)))) + } + return 0 +} + +func (ptr *QStyle) DrawComplexControl(control QStyle__ComplexControl, option QStyleOptionComplexITF, painter gui.QPainterITF, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QStyle_DrawComplexControl(C.QtObjectPtr(ptr.Pointer()), C.int(control), C.QtObjectPtr(PointerFromQStyleOptionComplex(option)), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QStyle) DrawControl(element QStyle__ControlElement, option QStyleOptionITF, painter gui.QPainterITF, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QStyle_DrawControl(C.QtObjectPtr(ptr.Pointer()), C.int(element), C.QtObjectPtr(PointerFromQStyleOption(option)), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QStyle) DrawPrimitive(element QStyle__PrimitiveElement, option QStyleOptionITF, painter gui.QPainterITF, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QStyle_DrawPrimitive(C.QtObjectPtr(ptr.Pointer()), C.int(element), C.QtObjectPtr(PointerFromQStyleOption(option)), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QStyle) HitTestComplexControl(control QStyle__ComplexControl, option QStyleOptionComplexITF, position core.QPointITF, widget QWidgetITF) QStyle__SubControl { + if ptr.Pointer() != nil { + return QStyle__SubControl(C.QStyle_HitTestComplexControl(C.QtObjectPtr(ptr.Pointer()), C.int(control), C.QtObjectPtr(PointerFromQStyleOptionComplex(option)), C.QtObjectPtr(core.PointerFromQPoint(position)), C.QtObjectPtr(PointerFromQWidget(widget)))) + } + return 0 +} + +func (ptr *QStyle) LayoutSpacing(control1 QSizePolicy__ControlType, control2 QSizePolicy__ControlType, orientation core.Qt__Orientation, option QStyleOptionITF, widget QWidgetITF) int { + if ptr.Pointer() != nil { + return int(C.QStyle_LayoutSpacing(C.QtObjectPtr(ptr.Pointer()), C.int(control1), C.int(control2), C.int(orientation), C.QtObjectPtr(PointerFromQStyleOption(option)), C.QtObjectPtr(PointerFromQWidget(widget)))) + } + return 0 +} + +func (ptr *QStyle) PixelMetric(metric QStyle__PixelMetric, option QStyleOptionITF, widget QWidgetITF) int { + if ptr.Pointer() != nil { + return int(C.QStyle_PixelMetric(C.QtObjectPtr(ptr.Pointer()), C.int(metric), C.QtObjectPtr(PointerFromQStyleOption(option)), C.QtObjectPtr(PointerFromQWidget(widget)))) + } + return 0 +} + +func (ptr *QStyle) Polish(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QStyle_Polish(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func QStyle_SliderPositionFromValue(min int, max int, logicalValue int, span int, upsideDown bool) int { + return int(C.QStyle_QStyle_SliderPositionFromValue(C.int(min), C.int(max), C.int(logicalValue), C.int(span), C.int(qt.GoBoolToInt(upsideDown)))) +} + +func (ptr *QStyle) StyleHint(hint QStyle__StyleHint, option QStyleOptionITF, widget QWidgetITF, returnData QStyleHintReturnITF) int { + if ptr.Pointer() != nil { + return int(C.QStyle_StyleHint(C.QtObjectPtr(ptr.Pointer()), C.int(hint), C.QtObjectPtr(PointerFromQStyleOption(option)), C.QtObjectPtr(PointerFromQWidget(widget)), C.QtObjectPtr(PointerFromQStyleHintReturn(returnData)))) + } + return 0 +} + +func (ptr *QStyle) Unpolish(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QStyle_Unpolish(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func QStyle_VisualAlignment(direction core.Qt__LayoutDirection, alignment core.Qt__AlignmentFlag) core.Qt__AlignmentFlag { + return core.Qt__AlignmentFlag(C.QStyle_QStyle_VisualAlignment(C.int(direction), C.int(alignment))) +} + +func (ptr *QStyle) DestroyQStyle() { + if ptr.Pointer() != nil { + C.QStyle_DestroyQStyle(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qstyle.h b/widgets/qstyle.h new file mode 100755 index 00000000..d52878df --- /dev/null +++ b/widgets/qstyle.h @@ -0,0 +1,233 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QStyle_PM_MdiSubWindowMinimizedWidth_Type(); +int QStyle_PM_HeaderMargin_Type(); +int QStyle_PM_HeaderMarkSize_Type(); +int QStyle_PM_HeaderGripMargin_Type(); +int QStyle_PM_TabBarTabShiftHorizontal_Type(); +int QStyle_PM_TabBarTabShiftVertical_Type(); +int QStyle_PM_TabBarScrollButtonWidth_Type(); +int QStyle_PM_ToolBarFrameWidth_Type(); +int QStyle_PM_ToolBarHandleExtent_Type(); +int QStyle_PM_ToolBarItemSpacing_Type(); +int QStyle_PM_ToolBarItemMargin_Type(); +int QStyle_PM_ToolBarSeparatorExtent_Type(); +int QStyle_PM_ToolBarExtensionExtent_Type(); +int QStyle_PM_SpinBoxSliderHeight_Type(); +int QStyle_PM_DefaultTopLevelMargin_Type(); +int QStyle_PM_DefaultChildMargin_Type(); +int QStyle_PM_DefaultLayoutSpacing_Type(); +int QStyle_PM_ToolBarIconSize_Type(); +int QStyle_PM_ListViewIconSize_Type(); +int QStyle_PM_IconViewIconSize_Type(); +int QStyle_PM_SmallIconSize_Type(); +int QStyle_PM_LargeIconSize_Type(); +int QStyle_PM_FocusFrameVMargin_Type(); +int QStyle_PM_FocusFrameHMargin_Type(); +int QStyle_PM_ToolTipLabelFrameWidth_Type(); +int QStyle_PM_CheckBoxLabelSpacing_Type(); +int QStyle_PM_TabBarIconSize_Type(); +int QStyle_PM_SizeGripSize_Type(); +int QStyle_PM_DockWidgetTitleMargin_Type(); +int QStyle_PM_MessageBoxIconSize_Type(); +int QStyle_PM_ButtonIconSize_Type(); +int QStyle_PM_DockWidgetTitleBarButtonMargin_Type(); +int QStyle_PM_RadioButtonLabelSpacing_Type(); +int QStyle_PM_LayoutLeftMargin_Type(); +int QStyle_PM_LayoutTopMargin_Type(); +int QStyle_PM_LayoutRightMargin_Type(); +int QStyle_PM_LayoutBottomMargin_Type(); +int QStyle_PM_LayoutHorizontalSpacing_Type(); +int QStyle_PM_LayoutVerticalSpacing_Type(); +int QStyle_PM_TabBar_ScrollButtonOverlap_Type(); +int QStyle_PM_TextCursorWidth_Type(); +int QStyle_PM_TabCloseIndicatorWidth_Type(); +int QStyle_PM_TabCloseIndicatorHeight_Type(); +int QStyle_PM_ScrollView_ScrollBarSpacing_Type(); +int QStyle_PM_ScrollView_ScrollBarOverlap_Type(); +int QStyle_PM_SubMenuOverlap_Type(); +int QStyle_PM_TreeViewIndentation_Type(); +int QStyle_PM_HeaderDefaultSectionSizeHorizontal_Type(); +int QStyle_PM_HeaderDefaultSectionSizeVertical_Type(); +int QStyle_PE_FrameTabWidget_Type(); +int QStyle_PE_FrameWindow_Type(); +int QStyle_PE_FrameButtonBevel_Type(); +int QStyle_PE_FrameButtonTool_Type(); +int QStyle_PE_FrameTabBarBase_Type(); +int QStyle_PE_PanelButtonCommand_Type(); +int QStyle_PE_PanelButtonBevel_Type(); +int QStyle_PE_PanelButtonTool_Type(); +int QStyle_PE_PanelMenuBar_Type(); +int QStyle_PE_PanelToolBar_Type(); +int QStyle_PE_PanelLineEdit_Type(); +int QStyle_PE_IndicatorArrowDown_Type(); +int QStyle_PE_IndicatorArrowLeft_Type(); +int QStyle_PE_IndicatorArrowRight_Type(); +int QStyle_PE_IndicatorArrowUp_Type(); +int QStyle_PE_IndicatorBranch_Type(); +int QStyle_PE_IndicatorButtonDropDown_Type(); +int QStyle_PE_IndicatorViewItemCheck_Type(); +int QStyle_PE_IndicatorCheckBox_Type(); +int QStyle_PE_IndicatorDockWidgetResizeHandle_Type(); +int QStyle_PE_IndicatorHeaderArrow_Type(); +int QStyle_PE_IndicatorMenuCheckMark_Type(); +int QStyle_PE_IndicatorProgressChunk_Type(); +int QStyle_PE_IndicatorRadioButton_Type(); +int QStyle_PE_IndicatorSpinDown_Type(); +int QStyle_PE_IndicatorSpinMinus_Type(); +int QStyle_PE_IndicatorSpinPlus_Type(); +int QStyle_PE_IndicatorSpinUp_Type(); +int QStyle_PE_IndicatorToolBarHandle_Type(); +int QStyle_PE_IndicatorToolBarSeparator_Type(); +int QStyle_PE_PanelTipLabel_Type(); +int QStyle_PE_IndicatorTabTear_Type(); +int QStyle_PE_PanelScrollAreaCorner_Type(); +int QStyle_PE_Widget_Type(); +int QStyle_PE_IndicatorColumnViewArrow_Type(); +int QStyle_PE_IndicatorItemViewItemDrop_Type(); +int QStyle_PE_PanelItemViewItem_Type(); +int QStyle_PE_PanelItemViewRow_Type(); +int QStyle_PE_PanelStatusBar_Type(); +int QStyle_PE_IndicatorTabClose_Type(); +int QStyle_PE_PanelMenu_Type(); +int QStyle_SH_BlinkCursorWhenTextSelected_Type(); +int QStyle_SH_RichText_FullWidthSelection_Type(); +int QStyle_SH_Menu_Scrollable_Type(); +int QStyle_SH_GroupBox_TextLabelVerticalAlignment_Type(); +int QStyle_SH_GroupBox_TextLabelColor_Type(); +int QStyle_SH_Menu_SloppySubMenus_Type(); +int QStyle_SH_Table_GridLineColor_Type(); +int QStyle_SH_LineEdit_PasswordCharacter_Type(); +int QStyle_SH_DialogButtons_DefaultButton_Type(); +int QStyle_SH_ToolBox_SelectedPageTitleBold_Type(); +int QStyle_SH_TabBar_PreferNoArrows_Type(); +int QStyle_SH_ScrollBar_LeftClickAbsolutePosition_Type(); +int QStyle_SH_ListViewExpand_SelectMouseType_Type(); +int QStyle_SH_UnderlineShortcut_Type(); +int QStyle_SH_SpinBox_AnimateButton_Type(); +int QStyle_SH_SpinBox_KeyPressAutoRepeatRate_Type(); +int QStyle_SH_SpinBox_ClickAutoRepeatRate_Type(); +int QStyle_SH_Menu_FillScreenWithScroll_Type(); +int QStyle_SH_ToolTipLabel_Opacity_Type(); +int QStyle_SH_DrawMenuBarSeparator_Type(); +int QStyle_SH_TitleBar_ModifyNotification_Type(); +int QStyle_SH_Button_FocusPolicy_Type(); +int QStyle_SH_MessageBox_UseBorderForButtonSpacing_Type(); +int QStyle_SH_TitleBar_AutoRaise_Type(); +int QStyle_SH_ToolButton_PopupDelay_Type(); +int QStyle_SH_FocusFrame_Mask_Type(); +int QStyle_SH_RubberBand_Mask_Type(); +int QStyle_SH_WindowFrame_Mask_Type(); +int QStyle_SH_SpinControls_DisableOnBounds_Type(); +int QStyle_SH_Dial_BackgroundRole_Type(); +int QStyle_SH_ComboBox_LayoutDirection_Type(); +int QStyle_SH_ItemView_EllipsisLocation_Type(); +int QStyle_SH_ItemView_ShowDecorationSelected_Type(); +int QStyle_SH_ItemView_ActivateItemOnSingleClick_Type(); +int QStyle_SH_ScrollBar_ContextMenu_Type(); +int QStyle_SH_ScrollBar_RollBetweenButtons_Type(); +int QStyle_SH_Slider_AbsoluteSetButtons_Type(); +int QStyle_SH_Slider_PageSetButtons_Type(); +int QStyle_SH_Menu_KeyboardSearch_Type(); +int QStyle_SH_TabBar_ElideMode_Type(); +int QStyle_SH_DialogButtonLayout_Type(); +int QStyle_SH_ComboBox_PopupFrameStyle_Type(); +int QStyle_SH_MessageBox_TextInteractionFlags_Type(); +int QStyle_SH_DialogButtonBox_ButtonsHaveIcons_Type(); +int QStyle_SH_SpellCheckUnderlineStyle_Type(); +int QStyle_SH_MessageBox_CenterButtons_Type(); +int QStyle_SH_Menu_SelectionWrap_Type(); +int QStyle_SH_ItemView_MovementWithoutUpdatingSelection_Type(); +int QStyle_SH_ToolTip_Mask_Type(); +int QStyle_SH_FocusFrame_AboveWidget_Type(); +int QStyle_SH_TextControl_FocusIndicatorTextCharFormat_Type(); +int QStyle_SH_WizardStyle_Type(); +int QStyle_SH_ItemView_ArrowKeysNavigateIntoChildren_Type(); +int QStyle_SH_Menu_Mask_Type(); +int QStyle_SH_Menu_FlashTriggeredItem_Type(); +int QStyle_SH_Menu_FadeOutOnHide_Type(); +int QStyle_SH_SpinBox_ClickAutoRepeatThreshold_Type(); +int QStyle_SH_ItemView_PaintAlternatingRowColorsForEmptyArea_Type(); +int QStyle_SH_FormLayoutWrapPolicy_Type(); +int QStyle_SH_TabWidget_DefaultTabPosition_Type(); +int QStyle_SH_ToolBar_Movable_Type(); +int QStyle_SH_FormLayoutFieldGrowthPolicy_Type(); +int QStyle_SH_FormLayoutFormAlignment_Type(); +int QStyle_SH_FormLayoutLabelAlignment_Type(); +int QStyle_SH_ItemView_DrawDelegateFrame_Type(); +int QStyle_SH_TabBar_CloseButtonPosition_Type(); +int QStyle_SH_DockWidget_ButtonsHaveFrame_Type(); +int QStyle_SH_ToolButtonStyle_Type(); +int QStyle_SH_RequestSoftwareInputPanel_Type(); +int QStyle_SH_ScrollBar_Transient_Type(); +int QStyle_SH_Menu_SupportsSections_Type(); +int QStyle_SH_ToolTip_WakeUpDelay_Type(); +int QStyle_SH_ToolTip_FallAsleepDelay_Type(); +int QStyle_SH_Widget_Animate_Type(); +int QStyle_SH_Splitter_OpaqueResize_Type(); +int QStyle_SH_ComboBox_UseNativePopup_Type(); +int QStyle_SH_LineEdit_PasswordMaskDelay_Type(); +int QStyle_SH_TabBar_ChangeCurrentDelay_Type(); +int QStyle_SH_Menu_SubMenuUniDirection_Type(); +int QStyle_SH_Menu_SubMenuUniDirectionFailCount_Type(); +int QStyle_SH_Menu_SubMenuSloppySelectOtherActions_Type(); +int QStyle_SH_Menu_SubMenuSloppyCloseTimeout_Type(); +int QStyle_SH_Menu_SubMenuResetWhenReenteringParent_Type(); +int QStyle_SH_Menu_SubMenuDontStartSloppyOnLeave_Type(); +int QStyle_SE_TabBarTearIndicator_Type(); +int QStyle_SE_TreeViewDisclosureItem_Type(); +int QStyle_SE_LineEditContents_Type(); +int QStyle_SE_FrameContents_Type(); +int QStyle_SE_DockWidgetCloseButton_Type(); +int QStyle_SE_DockWidgetFloatButton_Type(); +int QStyle_SE_DockWidgetTitleBarText_Type(); +int QStyle_SE_DockWidgetIcon_Type(); +int QStyle_SE_CheckBoxLayoutItem_Type(); +int QStyle_SE_ComboBoxLayoutItem_Type(); +int QStyle_SE_DateTimeEditLayoutItem_Type(); +int QStyle_SE_DialogButtonBoxLayoutItem_Type(); +int QStyle_SE_LabelLayoutItem_Type(); +int QStyle_SE_ProgressBarLayoutItem_Type(); +int QStyle_SE_PushButtonLayoutItem_Type(); +int QStyle_SE_RadioButtonLayoutItem_Type(); +int QStyle_SE_SliderLayoutItem_Type(); +int QStyle_SE_SpinBoxLayoutItem_Type(); +int QStyle_SE_ToolButtonLayoutItem_Type(); +int QStyle_SE_FrameLayoutItem_Type(); +int QStyle_SE_GroupBoxLayoutItem_Type(); +int QStyle_SE_TabWidgetLayoutItem_Type(); +int QStyle_SE_ItemViewItemDecoration_Type(); +int QStyle_SE_ItemViewItemText_Type(); +int QStyle_SE_ItemViewItemFocusRect_Type(); +int QStyle_SE_TabBarTabLeftButton_Type(); +int QStyle_SE_TabBarTabRightButton_Type(); +int QStyle_SE_TabBarTabText_Type(); +int QStyle_SE_ShapedFrameContents_Type(); +int QStyle_SE_ToolBarHandle_Type(); +void QStyle_DrawItemPixmap(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr rectangle, int alignment, QtObjectPtr pixmap); +void QStyle_DrawItemText(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr rectangle, int alignment, QtObjectPtr palette, int enabled, char* text, int textRole); +void QStyle_Polish2(QtObjectPtr ptr, QtObjectPtr application); +void QStyle_Polish3(QtObjectPtr ptr, QtObjectPtr palette); +QtObjectPtr QStyle_Proxy(QtObjectPtr ptr); +int QStyle_QStyle_SliderValueFromPosition(int min, int max, int position, int span, int upsideDown); +void QStyle_Unpolish2(QtObjectPtr ptr, QtObjectPtr application); +int QStyle_CombinedLayoutSpacing(QtObjectPtr ptr, int controls1, int controls2, int orientation, QtObjectPtr option, QtObjectPtr widget); +void QStyle_DrawComplexControl(QtObjectPtr ptr, int control, QtObjectPtr option, QtObjectPtr painter, QtObjectPtr widget); +void QStyle_DrawControl(QtObjectPtr ptr, int element, QtObjectPtr option, QtObjectPtr painter, QtObjectPtr widget); +void QStyle_DrawPrimitive(QtObjectPtr ptr, int element, QtObjectPtr option, QtObjectPtr painter, QtObjectPtr widget); +int QStyle_HitTestComplexControl(QtObjectPtr ptr, int control, QtObjectPtr option, QtObjectPtr position, QtObjectPtr widget); +int QStyle_LayoutSpacing(QtObjectPtr ptr, int control1, int control2, int orientation, QtObjectPtr option, QtObjectPtr widget); +int QStyle_PixelMetric(QtObjectPtr ptr, int metric, QtObjectPtr option, QtObjectPtr widget); +void QStyle_Polish(QtObjectPtr ptr, QtObjectPtr widget); +int QStyle_QStyle_SliderPositionFromValue(int min, int max, int logicalValue, int span, int upsideDown); +int QStyle_StyleHint(QtObjectPtr ptr, int hint, QtObjectPtr option, QtObjectPtr widget, QtObjectPtr returnData); +void QStyle_Unpolish(QtObjectPtr ptr, QtObjectPtr widget); +int QStyle_QStyle_VisualAlignment(int direction, int alignment); +void QStyle_DestroyQStyle(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstyleditemdelegate.cpp b/widgets/qstyleditemdelegate.cpp new file mode 100755 index 00000000..ba6f4aed --- /dev/null +++ b/widgets/qstyleditemdelegate.cpp @@ -0,0 +1,61 @@ +#include "qstyleditemdelegate.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyledItemDelegate: public QStyledItemDelegate { +public: +}; + +QtObjectPtr QStyledItemDelegate_NewQStyledItemDelegate(QtObjectPtr parent){ + return new QStyledItemDelegate(static_cast(parent)); +} + +QtObjectPtr QStyledItemDelegate_CreateEditor(QtObjectPtr ptr, QtObjectPtr parent, QtObjectPtr option, QtObjectPtr index){ + return static_cast(ptr)->createEditor(static_cast(parent), *static_cast(option), *static_cast(index)); +} + +char* QStyledItemDelegate_DisplayText(QtObjectPtr ptr, char* value, QtObjectPtr locale){ + return static_cast(ptr)->displayText(QVariant(value), *static_cast(locale)).toUtf8().data(); +} + +QtObjectPtr QStyledItemDelegate_ItemEditorFactory(QtObjectPtr ptr){ + return static_cast(ptr)->itemEditorFactory(); +} + +void QStyledItemDelegate_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr index){ + static_cast(ptr)->paint(static_cast(painter), *static_cast(option), *static_cast(index)); +} + +void QStyledItemDelegate_SetEditorData(QtObjectPtr ptr, QtObjectPtr editor, QtObjectPtr index){ + static_cast(ptr)->setEditorData(static_cast(editor), *static_cast(index)); +} + +void QStyledItemDelegate_SetItemEditorFactory(QtObjectPtr ptr, QtObjectPtr factory){ + static_cast(ptr)->setItemEditorFactory(static_cast(factory)); +} + +void QStyledItemDelegate_SetModelData(QtObjectPtr ptr, QtObjectPtr editor, QtObjectPtr model, QtObjectPtr index){ + static_cast(ptr)->setModelData(static_cast(editor), static_cast(model), *static_cast(index)); +} + +void QStyledItemDelegate_UpdateEditorGeometry(QtObjectPtr ptr, QtObjectPtr editor, QtObjectPtr option, QtObjectPtr index){ + static_cast(ptr)->updateEditorGeometry(static_cast(editor), *static_cast(option), *static_cast(index)); +} + +void QStyledItemDelegate_DestroyQStyledItemDelegate(QtObjectPtr ptr){ + static_cast(ptr)->~QStyledItemDelegate(); +} + diff --git a/widgets/qstyleditemdelegate.go b/widgets/qstyleditemdelegate.go new file mode 100755 index 00000000..002ecf13 --- /dev/null +++ b/widgets/qstyleditemdelegate.go @@ -0,0 +1,101 @@ +package widgets + +//#include "qstyleditemdelegate.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QStyledItemDelegate struct { + QAbstractItemDelegate +} + +type QStyledItemDelegateITF interface { + QAbstractItemDelegateITF + QStyledItemDelegatePTR() *QStyledItemDelegate +} + +func PointerFromQStyledItemDelegate(ptr QStyledItemDelegateITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyledItemDelegatePTR().Pointer() + } + return nil +} + +func QStyledItemDelegateFromPointer(ptr unsafe.Pointer) *QStyledItemDelegate { + var n = new(QStyledItemDelegate) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QStyledItemDelegate_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QStyledItemDelegate) QStyledItemDelegatePTR() *QStyledItemDelegate { + return ptr +} + +func NewQStyledItemDelegate(parent core.QObjectITF) *QStyledItemDelegate { + return QStyledItemDelegateFromPointer(unsafe.Pointer(C.QStyledItemDelegate_NewQStyledItemDelegate(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QStyledItemDelegate) CreateEditor(parent QWidgetITF, option QStyleOptionViewItemITF, index core.QModelIndexITF) *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QStyledItemDelegate_CreateEditor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(parent)), C.QtObjectPtr(PointerFromQStyleOptionViewItem(option)), C.QtObjectPtr(core.PointerFromQModelIndex(index))))) + } + return nil +} + +func (ptr *QStyledItemDelegate) DisplayText(value string, locale core.QLocaleITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QStyledItemDelegate_DisplayText(C.QtObjectPtr(ptr.Pointer()), C.CString(value), C.QtObjectPtr(core.PointerFromQLocale(locale)))) + } + return "" +} + +func (ptr *QStyledItemDelegate) ItemEditorFactory() *QItemEditorFactory { + if ptr.Pointer() != nil { + return QItemEditorFactoryFromPointer(unsafe.Pointer(C.QStyledItemDelegate_ItemEditorFactory(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QStyledItemDelegate) Paint(painter gui.QPainterITF, option QStyleOptionViewItemITF, index core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QStyledItemDelegate_Paint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(PointerFromQStyleOptionViewItem(option)), C.QtObjectPtr(core.PointerFromQModelIndex(index))) + } +} + +func (ptr *QStyledItemDelegate) SetEditorData(editor QWidgetITF, index core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QStyledItemDelegate_SetEditorData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(editor)), C.QtObjectPtr(core.PointerFromQModelIndex(index))) + } +} + +func (ptr *QStyledItemDelegate) SetItemEditorFactory(factory QItemEditorFactoryITF) { + if ptr.Pointer() != nil { + C.QStyledItemDelegate_SetItemEditorFactory(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQItemEditorFactory(factory))) + } +} + +func (ptr *QStyledItemDelegate) SetModelData(editor QWidgetITF, model core.QAbstractItemModelITF, index core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QStyledItemDelegate_SetModelData(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(editor)), C.QtObjectPtr(core.PointerFromQAbstractItemModel(model)), C.QtObjectPtr(core.PointerFromQModelIndex(index))) + } +} + +func (ptr *QStyledItemDelegate) UpdateEditorGeometry(editor QWidgetITF, option QStyleOptionViewItemITF, index core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QStyledItemDelegate_UpdateEditorGeometry(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(editor)), C.QtObjectPtr(PointerFromQStyleOptionViewItem(option)), C.QtObjectPtr(core.PointerFromQModelIndex(index))) + } +} + +func (ptr *QStyledItemDelegate) DestroyQStyledItemDelegate() { + if ptr.Pointer() != nil { + C.QStyledItemDelegate_DestroyQStyledItemDelegate(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qstyleditemdelegate.h b/widgets/qstyleditemdelegate.h new file mode 100755 index 00000000..f272ee26 --- /dev/null +++ b/widgets/qstyleditemdelegate.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStyledItemDelegate_NewQStyledItemDelegate(QtObjectPtr parent); +QtObjectPtr QStyledItemDelegate_CreateEditor(QtObjectPtr ptr, QtObjectPtr parent, QtObjectPtr option, QtObjectPtr index); +char* QStyledItemDelegate_DisplayText(QtObjectPtr ptr, char* value, QtObjectPtr locale); +QtObjectPtr QStyledItemDelegate_ItemEditorFactory(QtObjectPtr ptr); +void QStyledItemDelegate_Paint(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr option, QtObjectPtr index); +void QStyledItemDelegate_SetEditorData(QtObjectPtr ptr, QtObjectPtr editor, QtObjectPtr index); +void QStyledItemDelegate_SetItemEditorFactory(QtObjectPtr ptr, QtObjectPtr factory); +void QStyledItemDelegate_SetModelData(QtObjectPtr ptr, QtObjectPtr editor, QtObjectPtr model, QtObjectPtr index); +void QStyledItemDelegate_UpdateEditorGeometry(QtObjectPtr ptr, QtObjectPtr editor, QtObjectPtr option, QtObjectPtr index); +void QStyledItemDelegate_DestroyQStyledItemDelegate(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstylefactory.cpp b/widgets/qstylefactory.cpp new file mode 100755 index 00000000..5791cf82 --- /dev/null +++ b/widgets/qstylefactory.cpp @@ -0,0 +1,21 @@ +#include "qstylefactory.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleFactory: public QStyleFactory { +public: +}; + +QtObjectPtr QStyleFactory_QStyleFactory_Create(char* key){ + return QStyleFactory::create(QString(key)); +} + +char* QStyleFactory_QStyleFactory_Keys(){ + return QStyleFactory::keys().join("|").toUtf8().data(); +} + diff --git a/widgets/qstylefactory.go b/widgets/qstylefactory.go new file mode 100755 index 00000000..1f50e6fc --- /dev/null +++ b/widgets/qstylefactory.go @@ -0,0 +1,49 @@ +package widgets + +//#include "qstylefactory.h" +import "C" +import ( + "strings" + "unsafe" +) + +type QStyleFactory struct { + ptr unsafe.Pointer +} + +type QStyleFactoryITF interface { + QStyleFactoryPTR() *QStyleFactory +} + +func (p *QStyleFactory) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QStyleFactory) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQStyleFactory(ptr QStyleFactoryITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleFactoryPTR().Pointer() + } + return nil +} + +func QStyleFactoryFromPointer(ptr unsafe.Pointer) *QStyleFactory { + var n = new(QStyleFactory) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleFactory) QStyleFactoryPTR() *QStyleFactory { + return ptr +} + +func QStyleFactory_Create(key string) *QStyle { + return QStyleFromPointer(unsafe.Pointer(C.QStyleFactory_QStyleFactory_Create(C.CString(key)))) +} + +func QStyleFactory_Keys() []string { + return strings.Split(C.GoString(C.QStyleFactory_QStyleFactory_Keys()), "|") +} diff --git a/widgets/qstylefactory.h b/widgets/qstylefactory.h new file mode 100755 index 00000000..5dfb0f4e --- /dev/null +++ b/widgets/qstylefactory.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStyleFactory_QStyleFactory_Create(char* key); +char* QStyleFactory_QStyleFactory_Keys(); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstylehintreturn.cpp b/widgets/qstylehintreturn.cpp new file mode 100755 index 00000000..362960c9 --- /dev/null +++ b/widgets/qstylehintreturn.cpp @@ -0,0 +1,25 @@ +#include "qstylehintreturn.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleHintReturn: public QStyleHintReturn { +public: +}; + +int QStyleHintReturn_SH_Mask_Type(){ + return QStyleHintReturn::SH_Mask; +} + +int QStyleHintReturn_SH_Variant_Type(){ + return QStyleHintReturn::SH_Variant; +} + +QtObjectPtr QStyleHintReturn_NewQStyleHintReturn(int version, int ty){ + return new QStyleHintReturn(version, ty); +} + diff --git a/widgets/qstylehintreturn.go b/widgets/qstylehintreturn.go new file mode 100755 index 00000000..bdd59507 --- /dev/null +++ b/widgets/qstylehintreturn.go @@ -0,0 +1,67 @@ +package widgets + +//#include "qstylehintreturn.h" +import "C" +import ( + "unsafe" +) + +type QStyleHintReturn struct { + ptr unsafe.Pointer +} + +type QStyleHintReturnITF interface { + QStyleHintReturnPTR() *QStyleHintReturn +} + +func (p *QStyleHintReturn) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QStyleHintReturn) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQStyleHintReturn(ptr QStyleHintReturnITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleHintReturnPTR().Pointer() + } + return nil +} + +func QStyleHintReturnFromPointer(ptr unsafe.Pointer) *QStyleHintReturn { + var n = new(QStyleHintReturn) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleHintReturn) QStyleHintReturnPTR() *QStyleHintReturn { + return ptr +} + +//QStyleHintReturn::HintReturnType +type QStyleHintReturn__HintReturnType int + +var ( + QStyleHintReturn__SH_Default = QStyleHintReturn__HintReturnType(0xf000) + QStyleHintReturn__SH_Mask = QStyleHintReturn__HintReturnType(C.QStyleHintReturn_SH_Mask_Type()) + QStyleHintReturn__SH_Variant = QStyleHintReturn__HintReturnType(C.QStyleHintReturn_SH_Variant_Type()) +) + +//QStyleHintReturn::StyleOptionType +type QStyleHintReturn__StyleOptionType int + +var ( + QStyleHintReturn__Type = QStyleHintReturn__StyleOptionType(QStyleHintReturn__SH_Default) +) + +//QStyleHintReturn::StyleOptionVersion +type QStyleHintReturn__StyleOptionVersion int + +var ( + QStyleHintReturn__Version = QStyleHintReturn__StyleOptionVersion(1) +) + +func NewQStyleHintReturn(version int, ty int) *QStyleHintReturn { + return QStyleHintReturnFromPointer(unsafe.Pointer(C.QStyleHintReturn_NewQStyleHintReturn(C.int(version), C.int(ty)))) +} diff --git a/widgets/qstylehintreturn.h b/widgets/qstylehintreturn.h new file mode 100755 index 00000000..59d940a8 --- /dev/null +++ b/widgets/qstylehintreturn.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QStyleHintReturn_SH_Mask_Type(); +int QStyleHintReturn_SH_Variant_Type(); +QtObjectPtr QStyleHintReturn_NewQStyleHintReturn(int version, int ty); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstylehintreturnmask.cpp b/widgets/qstylehintreturnmask.cpp new file mode 100755 index 00000000..a87696f1 --- /dev/null +++ b/widgets/qstylehintreturnmask.cpp @@ -0,0 +1,22 @@ +#include "qstylehintreturnmask.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleHintReturnMask: public QStyleHintReturnMask { +public: +}; + +QtObjectPtr QStyleHintReturnMask_NewQStyleHintReturnMask(){ + return new QStyleHintReturnMask(); +} + +void QStyleHintReturnMask_DestroyQStyleHintReturnMask(QtObjectPtr ptr){ + static_cast(ptr)->~QStyleHintReturnMask(); +} + diff --git a/widgets/qstylehintreturnmask.go b/widgets/qstylehintreturnmask.go new file mode 100755 index 00000000..824db034 --- /dev/null +++ b/widgets/qstylehintreturnmask.go @@ -0,0 +1,57 @@ +package widgets + +//#include "qstylehintreturnmask.h" +import "C" +import ( + "unsafe" +) + +type QStyleHintReturnMask struct { + QStyleHintReturn +} + +type QStyleHintReturnMaskITF interface { + QStyleHintReturnITF + QStyleHintReturnMaskPTR() *QStyleHintReturnMask +} + +func PointerFromQStyleHintReturnMask(ptr QStyleHintReturnMaskITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleHintReturnMaskPTR().Pointer() + } + return nil +} + +func QStyleHintReturnMaskFromPointer(ptr unsafe.Pointer) *QStyleHintReturnMask { + var n = new(QStyleHintReturnMask) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleHintReturnMask) QStyleHintReturnMaskPTR() *QStyleHintReturnMask { + return ptr +} + +//QStyleHintReturnMask::StyleOptionType +type QStyleHintReturnMask__StyleOptionType int + +var ( + QStyleHintReturnMask__Type = QStyleHintReturnMask__StyleOptionType(QStyleHintReturn__SH_Mask) +) + +//QStyleHintReturnMask::StyleOptionVersion +type QStyleHintReturnMask__StyleOptionVersion int + +var ( + QStyleHintReturnMask__Version = QStyleHintReturnMask__StyleOptionVersion(1) +) + +func NewQStyleHintReturnMask() *QStyleHintReturnMask { + return QStyleHintReturnMaskFromPointer(unsafe.Pointer(C.QStyleHintReturnMask_NewQStyleHintReturnMask())) +} + +func (ptr *QStyleHintReturnMask) DestroyQStyleHintReturnMask() { + if ptr.Pointer() != nil { + C.QStyleHintReturnMask_DestroyQStyleHintReturnMask(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qstylehintreturnmask.h b/widgets/qstylehintreturnmask.h new file mode 100755 index 00000000..460ee286 --- /dev/null +++ b/widgets/qstylehintreturnmask.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStyleHintReturnMask_NewQStyleHintReturnMask(); +void QStyleHintReturnMask_DestroyQStyleHintReturnMask(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstylehintreturnvariant.cpp b/widgets/qstylehintreturnvariant.cpp new file mode 100755 index 00000000..b07013d9 --- /dev/null +++ b/widgets/qstylehintreturnvariant.cpp @@ -0,0 +1,22 @@ +#include "qstylehintreturnvariant.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleHintReturnVariant: public QStyleHintReturnVariant { +public: +}; + +QtObjectPtr QStyleHintReturnVariant_NewQStyleHintReturnVariant(){ + return new QStyleHintReturnVariant(); +} + +void QStyleHintReturnVariant_DestroyQStyleHintReturnVariant(QtObjectPtr ptr){ + static_cast(ptr)->~QStyleHintReturnVariant(); +} + diff --git a/widgets/qstylehintreturnvariant.go b/widgets/qstylehintreturnvariant.go new file mode 100755 index 00000000..d1c1f876 --- /dev/null +++ b/widgets/qstylehintreturnvariant.go @@ -0,0 +1,57 @@ +package widgets + +//#include "qstylehintreturnvariant.h" +import "C" +import ( + "unsafe" +) + +type QStyleHintReturnVariant struct { + QStyleHintReturn +} + +type QStyleHintReturnVariantITF interface { + QStyleHintReturnITF + QStyleHintReturnVariantPTR() *QStyleHintReturnVariant +} + +func PointerFromQStyleHintReturnVariant(ptr QStyleHintReturnVariantITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleHintReturnVariantPTR().Pointer() + } + return nil +} + +func QStyleHintReturnVariantFromPointer(ptr unsafe.Pointer) *QStyleHintReturnVariant { + var n = new(QStyleHintReturnVariant) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleHintReturnVariant) QStyleHintReturnVariantPTR() *QStyleHintReturnVariant { + return ptr +} + +//QStyleHintReturnVariant::StyleOptionType +type QStyleHintReturnVariant__StyleOptionType int + +var ( + QStyleHintReturnVariant__Type = QStyleHintReturnVariant__StyleOptionType(QStyleHintReturn__SH_Variant) +) + +//QStyleHintReturnVariant::StyleOptionVersion +type QStyleHintReturnVariant__StyleOptionVersion int + +var ( + QStyleHintReturnVariant__Version = QStyleHintReturnVariant__StyleOptionVersion(1) +) + +func NewQStyleHintReturnVariant() *QStyleHintReturnVariant { + return QStyleHintReturnVariantFromPointer(unsafe.Pointer(C.QStyleHintReturnVariant_NewQStyleHintReturnVariant())) +} + +func (ptr *QStyleHintReturnVariant) DestroyQStyleHintReturnVariant() { + if ptr.Pointer() != nil { + C.QStyleHintReturnVariant_DestroyQStyleHintReturnVariant(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qstylehintreturnvariant.h b/widgets/qstylehintreturnvariant.h new file mode 100755 index 00000000..8ce5f303 --- /dev/null +++ b/widgets/qstylehintreturnvariant.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStyleHintReturnVariant_NewQStyleHintReturnVariant(); +void QStyleHintReturnVariant_DestroyQStyleHintReturnVariant(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstyleoption.cpp b/widgets/qstyleoption.cpp new file mode 100755 index 00000000..cd9fe806 --- /dev/null +++ b/widgets/qstyleoption.cpp @@ -0,0 +1,58 @@ +#include "qstyleoption.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleOption: public QStyleOption { +public: +}; + +int QStyleOption_SO_Slider_Type(){ + return QStyleOption::SO_Slider; +} + +int QStyleOption_SO_SpinBox_Type(){ + return QStyleOption::SO_SpinBox; +} + +int QStyleOption_SO_ToolButton_Type(){ + return QStyleOption::SO_ToolButton; +} + +int QStyleOption_SO_ComboBox_Type(){ + return QStyleOption::SO_ComboBox; +} + +int QStyleOption_SO_TitleBar_Type(){ + return QStyleOption::SO_TitleBar; +} + +int QStyleOption_SO_GroupBox_Type(){ + return QStyleOption::SO_GroupBox; +} + +int QStyleOption_SO_SizeGrip_Type(){ + return QStyleOption::SO_SizeGrip; +} + +QtObjectPtr QStyleOption_NewQStyleOption2(QtObjectPtr other){ + return new QStyleOption(*static_cast(other)); +} + +QtObjectPtr QStyleOption_NewQStyleOption(int version, int ty){ + return new QStyleOption(version, ty); +} + +void QStyleOption_InitFrom(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->initFrom(static_cast(widget)); +} + +void QStyleOption_DestroyQStyleOption(QtObjectPtr ptr){ + static_cast(ptr)->~QStyleOption(); +} + diff --git a/widgets/qstyleoption.go b/widgets/qstyleoption.go new file mode 100755 index 00000000..03077337 --- /dev/null +++ b/widgets/qstyleoption.go @@ -0,0 +1,106 @@ +package widgets + +//#include "qstyleoption.h" +import "C" +import ( + "unsafe" +) + +type QStyleOption struct { + ptr unsafe.Pointer +} + +type QStyleOptionITF interface { + QStyleOptionPTR() *QStyleOption +} + +func (p *QStyleOption) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QStyleOption) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQStyleOption(ptr QStyleOptionITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleOptionPTR().Pointer() + } + return nil +} + +func QStyleOptionFromPointer(ptr unsafe.Pointer) *QStyleOption { + var n = new(QStyleOption) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleOption) QStyleOptionPTR() *QStyleOption { + return ptr +} + +//QStyleOption::OptionType +type QStyleOption__OptionType int + +var ( + QStyleOption__SO_Default = QStyleOption__OptionType(0) + QStyleOption__SO_FocusRect = QStyleOption__OptionType(1) + QStyleOption__SO_Button = QStyleOption__OptionType(2) + QStyleOption__SO_Tab = QStyleOption__OptionType(3) + QStyleOption__SO_MenuItem = QStyleOption__OptionType(4) + QStyleOption__SO_Frame = QStyleOption__OptionType(5) + QStyleOption__SO_ProgressBar = QStyleOption__OptionType(6) + QStyleOption__SO_ToolBox = QStyleOption__OptionType(7) + QStyleOption__SO_Header = QStyleOption__OptionType(8) + QStyleOption__SO_DockWidget = QStyleOption__OptionType(9) + QStyleOption__SO_ViewItem = QStyleOption__OptionType(10) + QStyleOption__SO_TabWidgetFrame = QStyleOption__OptionType(11) + QStyleOption__SO_TabBarBase = QStyleOption__OptionType(12) + QStyleOption__SO_RubberBand = QStyleOption__OptionType(13) + QStyleOption__SO_ToolBar = QStyleOption__OptionType(14) + QStyleOption__SO_GraphicsItem = QStyleOption__OptionType(15) + QStyleOption__SO_Complex = QStyleOption__OptionType(0xf0000) + QStyleOption__SO_Slider = QStyleOption__OptionType(C.QStyleOption_SO_Slider_Type()) + QStyleOption__SO_SpinBox = QStyleOption__OptionType(C.QStyleOption_SO_SpinBox_Type()) + QStyleOption__SO_ToolButton = QStyleOption__OptionType(C.QStyleOption_SO_ToolButton_Type()) + QStyleOption__SO_ComboBox = QStyleOption__OptionType(C.QStyleOption_SO_ComboBox_Type()) + QStyleOption__SO_TitleBar = QStyleOption__OptionType(C.QStyleOption_SO_TitleBar_Type()) + QStyleOption__SO_GroupBox = QStyleOption__OptionType(C.QStyleOption_SO_GroupBox_Type()) + QStyleOption__SO_SizeGrip = QStyleOption__OptionType(C.QStyleOption_SO_SizeGrip_Type()) + QStyleOption__SO_CustomBase = QStyleOption__OptionType(0xf00) + QStyleOption__SO_ComplexCustomBase = QStyleOption__OptionType(0xf000000) +) + +//QStyleOption::StyleOptionType +type QStyleOption__StyleOptionType int + +var ( + QStyleOption__Type = QStyleOption__StyleOptionType(QStyleOption__SO_Default) +) + +//QStyleOption::StyleOptionVersion +type QStyleOption__StyleOptionVersion int + +var ( + QStyleOption__Version = QStyleOption__StyleOptionVersion(1) +) + +func NewQStyleOption2(other QStyleOptionITF) *QStyleOption { + return QStyleOptionFromPointer(unsafe.Pointer(C.QStyleOption_NewQStyleOption2(C.QtObjectPtr(PointerFromQStyleOption(other))))) +} + +func NewQStyleOption(version int, ty int) *QStyleOption { + return QStyleOptionFromPointer(unsafe.Pointer(C.QStyleOption_NewQStyleOption(C.int(version), C.int(ty)))) +} + +func (ptr *QStyleOption) InitFrom(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QStyleOption_InitFrom(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QStyleOption) DestroyQStyleOption() { + if ptr.Pointer() != nil { + C.QStyleOption_DestroyQStyleOption(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qstyleoption.h b/widgets/qstyleoption.h new file mode 100755 index 00000000..af1a0f96 --- /dev/null +++ b/widgets/qstyleoption.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QStyleOption_SO_Slider_Type(); +int QStyleOption_SO_SpinBox_Type(); +int QStyleOption_SO_ToolButton_Type(); +int QStyleOption_SO_ComboBox_Type(); +int QStyleOption_SO_TitleBar_Type(); +int QStyleOption_SO_GroupBox_Type(); +int QStyleOption_SO_SizeGrip_Type(); +QtObjectPtr QStyleOption_NewQStyleOption2(QtObjectPtr other); +QtObjectPtr QStyleOption_NewQStyleOption(int version, int ty); +void QStyleOption_InitFrom(QtObjectPtr ptr, QtObjectPtr widget); +void QStyleOption_DestroyQStyleOption(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstyleoptionbutton.cpp b/widgets/qstyleoptionbutton.cpp new file mode 100755 index 00000000..3b2c6b0f --- /dev/null +++ b/widgets/qstyleoptionbutton.cpp @@ -0,0 +1,22 @@ +#include "qstyleoptionbutton.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleOptionButton: public QStyleOptionButton { +public: +}; + +QtObjectPtr QStyleOptionButton_NewQStyleOptionButton(){ + return new QStyleOptionButton(); +} + +QtObjectPtr QStyleOptionButton_NewQStyleOptionButton2(QtObjectPtr other){ + return new QStyleOptionButton(*static_cast(other)); +} + diff --git a/widgets/qstyleoptionbutton.go b/widgets/qstyleoptionbutton.go new file mode 100755 index 00000000..ca97fa5f --- /dev/null +++ b/widgets/qstyleoptionbutton.go @@ -0,0 +1,67 @@ +package widgets + +//#include "qstyleoptionbutton.h" +import "C" +import ( + "unsafe" +) + +type QStyleOptionButton struct { + QStyleOption +} + +type QStyleOptionButtonITF interface { + QStyleOptionITF + QStyleOptionButtonPTR() *QStyleOptionButton +} + +func PointerFromQStyleOptionButton(ptr QStyleOptionButtonITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleOptionButtonPTR().Pointer() + } + return nil +} + +func QStyleOptionButtonFromPointer(ptr unsafe.Pointer) *QStyleOptionButton { + var n = new(QStyleOptionButton) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleOptionButton) QStyleOptionButtonPTR() *QStyleOptionButton { + return ptr +} + +//QStyleOptionButton::ButtonFeature +type QStyleOptionButton__ButtonFeature int + +var ( + QStyleOptionButton__None = QStyleOptionButton__ButtonFeature(0x00) + QStyleOptionButton__Flat = QStyleOptionButton__ButtonFeature(0x01) + QStyleOptionButton__HasMenu = QStyleOptionButton__ButtonFeature(0x02) + QStyleOptionButton__DefaultButton = QStyleOptionButton__ButtonFeature(0x04) + QStyleOptionButton__AutoDefaultButton = QStyleOptionButton__ButtonFeature(0x08) + QStyleOptionButton__CommandLinkButton = QStyleOptionButton__ButtonFeature(0x10) +) + +//QStyleOptionButton::StyleOptionType +type QStyleOptionButton__StyleOptionType int + +var ( + QStyleOptionButton__Type = QStyleOptionButton__StyleOptionType(QStyleOption__SO_Button) +) + +//QStyleOptionButton::StyleOptionVersion +type QStyleOptionButton__StyleOptionVersion int + +var ( + QStyleOptionButton__Version = QStyleOptionButton__StyleOptionVersion(1) +) + +func NewQStyleOptionButton() *QStyleOptionButton { + return QStyleOptionButtonFromPointer(unsafe.Pointer(C.QStyleOptionButton_NewQStyleOptionButton())) +} + +func NewQStyleOptionButton2(other QStyleOptionButtonITF) *QStyleOptionButton { + return QStyleOptionButtonFromPointer(unsafe.Pointer(C.QStyleOptionButton_NewQStyleOptionButton2(C.QtObjectPtr(PointerFromQStyleOptionButton(other))))) +} diff --git a/widgets/qstyleoptionbutton.h b/widgets/qstyleoptionbutton.h new file mode 100755 index 00000000..96a1811e --- /dev/null +++ b/widgets/qstyleoptionbutton.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStyleOptionButton_NewQStyleOptionButton(); +QtObjectPtr QStyleOptionButton_NewQStyleOptionButton2(QtObjectPtr other); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstyleoptioncombobox.cpp b/widgets/qstyleoptioncombobox.cpp new file mode 100755 index 00000000..6d622f66 --- /dev/null +++ b/widgets/qstyleoptioncombobox.cpp @@ -0,0 +1,22 @@ +#include "qstyleoptioncombobox.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleOptionComboBox: public QStyleOptionComboBox { +public: +}; + +QtObjectPtr QStyleOptionComboBox_NewQStyleOptionComboBox(){ + return new QStyleOptionComboBox(); +} + +QtObjectPtr QStyleOptionComboBox_NewQStyleOptionComboBox2(QtObjectPtr other){ + return new QStyleOptionComboBox(*static_cast(other)); +} + diff --git a/widgets/qstyleoptioncombobox.go b/widgets/qstyleoptioncombobox.go new file mode 100755 index 00000000..5250ecac --- /dev/null +++ b/widgets/qstyleoptioncombobox.go @@ -0,0 +1,55 @@ +package widgets + +//#include "qstyleoptioncombobox.h" +import "C" +import ( + "unsafe" +) + +type QStyleOptionComboBox struct { + QStyleOptionComplex +} + +type QStyleOptionComboBoxITF interface { + QStyleOptionComplexITF + QStyleOptionComboBoxPTR() *QStyleOptionComboBox +} + +func PointerFromQStyleOptionComboBox(ptr QStyleOptionComboBoxITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleOptionComboBoxPTR().Pointer() + } + return nil +} + +func QStyleOptionComboBoxFromPointer(ptr unsafe.Pointer) *QStyleOptionComboBox { + var n = new(QStyleOptionComboBox) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleOptionComboBox) QStyleOptionComboBoxPTR() *QStyleOptionComboBox { + return ptr +} + +//QStyleOptionComboBox::StyleOptionType +type QStyleOptionComboBox__StyleOptionType int + +var ( + QStyleOptionComboBox__Type = QStyleOptionComboBox__StyleOptionType(QStyleOption__SO_ComboBox) +) + +//QStyleOptionComboBox::StyleOptionVersion +type QStyleOptionComboBox__StyleOptionVersion int + +var ( + QStyleOptionComboBox__Version = QStyleOptionComboBox__StyleOptionVersion(1) +) + +func NewQStyleOptionComboBox() *QStyleOptionComboBox { + return QStyleOptionComboBoxFromPointer(unsafe.Pointer(C.QStyleOptionComboBox_NewQStyleOptionComboBox())) +} + +func NewQStyleOptionComboBox2(other QStyleOptionComboBoxITF) *QStyleOptionComboBox { + return QStyleOptionComboBoxFromPointer(unsafe.Pointer(C.QStyleOptionComboBox_NewQStyleOptionComboBox2(C.QtObjectPtr(PointerFromQStyleOptionComboBox(other))))) +} diff --git a/widgets/qstyleoptioncombobox.h b/widgets/qstyleoptioncombobox.h new file mode 100755 index 00000000..f99fbbfd --- /dev/null +++ b/widgets/qstyleoptioncombobox.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStyleOptionComboBox_NewQStyleOptionComboBox(); +QtObjectPtr QStyleOptionComboBox_NewQStyleOptionComboBox2(QtObjectPtr other); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstyleoptioncomplex.cpp b/widgets/qstyleoptioncomplex.cpp new file mode 100755 index 00000000..d489f21e --- /dev/null +++ b/widgets/qstyleoptioncomplex.cpp @@ -0,0 +1,22 @@ +#include "qstyleoptioncomplex.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleOptionComplex: public QStyleOptionComplex { +public: +}; + +QtObjectPtr QStyleOptionComplex_NewQStyleOptionComplex2(QtObjectPtr other){ + return new QStyleOptionComplex(*static_cast(other)); +} + +QtObjectPtr QStyleOptionComplex_NewQStyleOptionComplex(int version, int ty){ + return new QStyleOptionComplex(version, ty); +} + diff --git a/widgets/qstyleoptioncomplex.go b/widgets/qstyleoptioncomplex.go new file mode 100755 index 00000000..ec5480b0 --- /dev/null +++ b/widgets/qstyleoptioncomplex.go @@ -0,0 +1,55 @@ +package widgets + +//#include "qstyleoptioncomplex.h" +import "C" +import ( + "unsafe" +) + +type QStyleOptionComplex struct { + QStyleOption +} + +type QStyleOptionComplexITF interface { + QStyleOptionITF + QStyleOptionComplexPTR() *QStyleOptionComplex +} + +func PointerFromQStyleOptionComplex(ptr QStyleOptionComplexITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleOptionComplexPTR().Pointer() + } + return nil +} + +func QStyleOptionComplexFromPointer(ptr unsafe.Pointer) *QStyleOptionComplex { + var n = new(QStyleOptionComplex) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleOptionComplex) QStyleOptionComplexPTR() *QStyleOptionComplex { + return ptr +} + +//QStyleOptionComplex::StyleOptionType +type QStyleOptionComplex__StyleOptionType int + +var ( + QStyleOptionComplex__Type = QStyleOptionComplex__StyleOptionType(QStyleOption__SO_Complex) +) + +//QStyleOptionComplex::StyleOptionVersion +type QStyleOptionComplex__StyleOptionVersion int + +var ( + QStyleOptionComplex__Version = QStyleOptionComplex__StyleOptionVersion(1) +) + +func NewQStyleOptionComplex2(other QStyleOptionComplexITF) *QStyleOptionComplex { + return QStyleOptionComplexFromPointer(unsafe.Pointer(C.QStyleOptionComplex_NewQStyleOptionComplex2(C.QtObjectPtr(PointerFromQStyleOptionComplex(other))))) +} + +func NewQStyleOptionComplex(version int, ty int) *QStyleOptionComplex { + return QStyleOptionComplexFromPointer(unsafe.Pointer(C.QStyleOptionComplex_NewQStyleOptionComplex(C.int(version), C.int(ty)))) +} diff --git a/widgets/qstyleoptioncomplex.h b/widgets/qstyleoptioncomplex.h new file mode 100755 index 00000000..96fb00f7 --- /dev/null +++ b/widgets/qstyleoptioncomplex.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStyleOptionComplex_NewQStyleOptionComplex2(QtObjectPtr other); +QtObjectPtr QStyleOptionComplex_NewQStyleOptionComplex(int version, int ty); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstyleoptiondockwidget.cpp b/widgets/qstyleoptiondockwidget.cpp new file mode 100755 index 00000000..cd16607c --- /dev/null +++ b/widgets/qstyleoptiondockwidget.cpp @@ -0,0 +1,22 @@ +#include "qstyleoptiondockwidget.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleOptionDockWidget: public QStyleOptionDockWidget { +public: +}; + +QtObjectPtr QStyleOptionDockWidget_NewQStyleOptionDockWidget(){ + return new QStyleOptionDockWidget(); +} + +QtObjectPtr QStyleOptionDockWidget_NewQStyleOptionDockWidget2(QtObjectPtr other){ + return new QStyleOptionDockWidget(*static_cast(other)); +} + diff --git a/widgets/qstyleoptiondockwidget.go b/widgets/qstyleoptiondockwidget.go new file mode 100755 index 00000000..e301a7d4 --- /dev/null +++ b/widgets/qstyleoptiondockwidget.go @@ -0,0 +1,55 @@ +package widgets + +//#include "qstyleoptiondockwidget.h" +import "C" +import ( + "unsafe" +) + +type QStyleOptionDockWidget struct { + QStyleOption +} + +type QStyleOptionDockWidgetITF interface { + QStyleOptionITF + QStyleOptionDockWidgetPTR() *QStyleOptionDockWidget +} + +func PointerFromQStyleOptionDockWidget(ptr QStyleOptionDockWidgetITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleOptionDockWidgetPTR().Pointer() + } + return nil +} + +func QStyleOptionDockWidgetFromPointer(ptr unsafe.Pointer) *QStyleOptionDockWidget { + var n = new(QStyleOptionDockWidget) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleOptionDockWidget) QStyleOptionDockWidgetPTR() *QStyleOptionDockWidget { + return ptr +} + +//QStyleOptionDockWidget::StyleOptionType +type QStyleOptionDockWidget__StyleOptionType int + +var ( + QStyleOptionDockWidget__Type = QStyleOptionDockWidget__StyleOptionType(QStyleOption__SO_DockWidget) +) + +//QStyleOptionDockWidget::StyleOptionVersion +type QStyleOptionDockWidget__StyleOptionVersion int + +var ( + QStyleOptionDockWidget__Version = QStyleOptionDockWidget__StyleOptionVersion(2) +) + +func NewQStyleOptionDockWidget() *QStyleOptionDockWidget { + return QStyleOptionDockWidgetFromPointer(unsafe.Pointer(C.QStyleOptionDockWidget_NewQStyleOptionDockWidget())) +} + +func NewQStyleOptionDockWidget2(other QStyleOptionDockWidgetITF) *QStyleOptionDockWidget { + return QStyleOptionDockWidgetFromPointer(unsafe.Pointer(C.QStyleOptionDockWidget_NewQStyleOptionDockWidget2(C.QtObjectPtr(PointerFromQStyleOptionDockWidget(other))))) +} diff --git a/widgets/qstyleoptiondockwidget.h b/widgets/qstyleoptiondockwidget.h new file mode 100755 index 00000000..0330006e --- /dev/null +++ b/widgets/qstyleoptiondockwidget.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStyleOptionDockWidget_NewQStyleOptionDockWidget(); +QtObjectPtr QStyleOptionDockWidget_NewQStyleOptionDockWidget2(QtObjectPtr other); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstyleoptionfocusrect.cpp b/widgets/qstyleoptionfocusrect.cpp new file mode 100755 index 00000000..8c6507ef --- /dev/null +++ b/widgets/qstyleoptionfocusrect.cpp @@ -0,0 +1,22 @@ +#include "qstyleoptionfocusrect.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleOptionFocusRect: public QStyleOptionFocusRect { +public: +}; + +QtObjectPtr QStyleOptionFocusRect_NewQStyleOptionFocusRect(){ + return new QStyleOptionFocusRect(); +} + +QtObjectPtr QStyleOptionFocusRect_NewQStyleOptionFocusRect2(QtObjectPtr other){ + return new QStyleOptionFocusRect(*static_cast(other)); +} + diff --git a/widgets/qstyleoptionfocusrect.go b/widgets/qstyleoptionfocusrect.go new file mode 100755 index 00000000..a6a9655a --- /dev/null +++ b/widgets/qstyleoptionfocusrect.go @@ -0,0 +1,55 @@ +package widgets + +//#include "qstyleoptionfocusrect.h" +import "C" +import ( + "unsafe" +) + +type QStyleOptionFocusRect struct { + QStyleOption +} + +type QStyleOptionFocusRectITF interface { + QStyleOptionITF + QStyleOptionFocusRectPTR() *QStyleOptionFocusRect +} + +func PointerFromQStyleOptionFocusRect(ptr QStyleOptionFocusRectITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleOptionFocusRectPTR().Pointer() + } + return nil +} + +func QStyleOptionFocusRectFromPointer(ptr unsafe.Pointer) *QStyleOptionFocusRect { + var n = new(QStyleOptionFocusRect) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleOptionFocusRect) QStyleOptionFocusRectPTR() *QStyleOptionFocusRect { + return ptr +} + +//QStyleOptionFocusRect::StyleOptionType +type QStyleOptionFocusRect__StyleOptionType int + +var ( + QStyleOptionFocusRect__Type = QStyleOptionFocusRect__StyleOptionType(QStyleOption__SO_FocusRect) +) + +//QStyleOptionFocusRect::StyleOptionVersion +type QStyleOptionFocusRect__StyleOptionVersion int + +var ( + QStyleOptionFocusRect__Version = QStyleOptionFocusRect__StyleOptionVersion(1) +) + +func NewQStyleOptionFocusRect() *QStyleOptionFocusRect { + return QStyleOptionFocusRectFromPointer(unsafe.Pointer(C.QStyleOptionFocusRect_NewQStyleOptionFocusRect())) +} + +func NewQStyleOptionFocusRect2(other QStyleOptionFocusRectITF) *QStyleOptionFocusRect { + return QStyleOptionFocusRectFromPointer(unsafe.Pointer(C.QStyleOptionFocusRect_NewQStyleOptionFocusRect2(C.QtObjectPtr(PointerFromQStyleOptionFocusRect(other))))) +} diff --git a/widgets/qstyleoptionfocusrect.h b/widgets/qstyleoptionfocusrect.h new file mode 100755 index 00000000..6e5bda12 --- /dev/null +++ b/widgets/qstyleoptionfocusrect.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStyleOptionFocusRect_NewQStyleOptionFocusRect(); +QtObjectPtr QStyleOptionFocusRect_NewQStyleOptionFocusRect2(QtObjectPtr other); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstyleoptionframe.cpp b/widgets/qstyleoptionframe.cpp new file mode 100755 index 00000000..d550945c --- /dev/null +++ b/widgets/qstyleoptionframe.cpp @@ -0,0 +1,22 @@ +#include "qstyleoptionframe.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleOptionFrame: public QStyleOptionFrame { +public: +}; + +QtObjectPtr QStyleOptionFrame_NewQStyleOptionFrame(){ + return new QStyleOptionFrame(); +} + +QtObjectPtr QStyleOptionFrame_NewQStyleOptionFrame2(QtObjectPtr other){ + return new QStyleOptionFrame(*static_cast(other)); +} + diff --git a/widgets/qstyleoptionframe.go b/widgets/qstyleoptionframe.go new file mode 100755 index 00000000..7ca82ec4 --- /dev/null +++ b/widgets/qstyleoptionframe.go @@ -0,0 +1,64 @@ +package widgets + +//#include "qstyleoptionframe.h" +import "C" +import ( + "unsafe" +) + +type QStyleOptionFrame struct { + QStyleOption +} + +type QStyleOptionFrameITF interface { + QStyleOptionITF + QStyleOptionFramePTR() *QStyleOptionFrame +} + +func PointerFromQStyleOptionFrame(ptr QStyleOptionFrameITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleOptionFramePTR().Pointer() + } + return nil +} + +func QStyleOptionFrameFromPointer(ptr unsafe.Pointer) *QStyleOptionFrame { + var n = new(QStyleOptionFrame) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleOptionFrame) QStyleOptionFramePTR() *QStyleOptionFrame { + return ptr +} + +//QStyleOptionFrame::FrameFeature +type QStyleOptionFrame__FrameFeature int + +var ( + QStyleOptionFrame__None = QStyleOptionFrame__FrameFeature(0x00) + QStyleOptionFrame__Flat = QStyleOptionFrame__FrameFeature(0x01) + QStyleOptionFrame__Rounded = QStyleOptionFrame__FrameFeature(0x02) +) + +//QStyleOptionFrame::StyleOptionType +type QStyleOptionFrame__StyleOptionType int + +var ( + QStyleOptionFrame__Type = QStyleOptionFrame__StyleOptionType(QStyleOption__SO_Frame) +) + +//QStyleOptionFrame::StyleOptionVersion +type QStyleOptionFrame__StyleOptionVersion int + +var ( + QStyleOptionFrame__Version = QStyleOptionFrame__StyleOptionVersion(3) +) + +func NewQStyleOptionFrame() *QStyleOptionFrame { + return QStyleOptionFrameFromPointer(unsafe.Pointer(C.QStyleOptionFrame_NewQStyleOptionFrame())) +} + +func NewQStyleOptionFrame2(other QStyleOptionFrameITF) *QStyleOptionFrame { + return QStyleOptionFrameFromPointer(unsafe.Pointer(C.QStyleOptionFrame_NewQStyleOptionFrame2(C.QtObjectPtr(PointerFromQStyleOptionFrame(other))))) +} diff --git a/widgets/qstyleoptionframe.h b/widgets/qstyleoptionframe.h new file mode 100755 index 00000000..aca65dd0 --- /dev/null +++ b/widgets/qstyleoptionframe.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStyleOptionFrame_NewQStyleOptionFrame(); +QtObjectPtr QStyleOptionFrame_NewQStyleOptionFrame2(QtObjectPtr other); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstyleoptiongraphicsitem.cpp b/widgets/qstyleoptiongraphicsitem.cpp new file mode 100755 index 00000000..7af7fd68 --- /dev/null +++ b/widgets/qstyleoptiongraphicsitem.cpp @@ -0,0 +1,22 @@ +#include "qstyleoptiongraphicsitem.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleOptionGraphicsItem: public QStyleOptionGraphicsItem { +public: +}; + +QtObjectPtr QStyleOptionGraphicsItem_NewQStyleOptionGraphicsItem(){ + return new QStyleOptionGraphicsItem(); +} + +QtObjectPtr QStyleOptionGraphicsItem_NewQStyleOptionGraphicsItem2(QtObjectPtr other){ + return new QStyleOptionGraphicsItem(*static_cast(other)); +} + diff --git a/widgets/qstyleoptiongraphicsitem.go b/widgets/qstyleoptiongraphicsitem.go new file mode 100755 index 00000000..13bdc19c --- /dev/null +++ b/widgets/qstyleoptiongraphicsitem.go @@ -0,0 +1,55 @@ +package widgets + +//#include "qstyleoptiongraphicsitem.h" +import "C" +import ( + "unsafe" +) + +type QStyleOptionGraphicsItem struct { + QStyleOption +} + +type QStyleOptionGraphicsItemITF interface { + QStyleOptionITF + QStyleOptionGraphicsItemPTR() *QStyleOptionGraphicsItem +} + +func PointerFromQStyleOptionGraphicsItem(ptr QStyleOptionGraphicsItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleOptionGraphicsItemPTR().Pointer() + } + return nil +} + +func QStyleOptionGraphicsItemFromPointer(ptr unsafe.Pointer) *QStyleOptionGraphicsItem { + var n = new(QStyleOptionGraphicsItem) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleOptionGraphicsItem) QStyleOptionGraphicsItemPTR() *QStyleOptionGraphicsItem { + return ptr +} + +//QStyleOptionGraphicsItem::StyleOptionType +type QStyleOptionGraphicsItem__StyleOptionType int + +var ( + QStyleOptionGraphicsItem__Type = QStyleOptionGraphicsItem__StyleOptionType(QStyleOption__SO_GraphicsItem) +) + +//QStyleOptionGraphicsItem::StyleOptionVersion +type QStyleOptionGraphicsItem__StyleOptionVersion int + +var ( + QStyleOptionGraphicsItem__Version = QStyleOptionGraphicsItem__StyleOptionVersion(1) +) + +func NewQStyleOptionGraphicsItem() *QStyleOptionGraphicsItem { + return QStyleOptionGraphicsItemFromPointer(unsafe.Pointer(C.QStyleOptionGraphicsItem_NewQStyleOptionGraphicsItem())) +} + +func NewQStyleOptionGraphicsItem2(other QStyleOptionGraphicsItemITF) *QStyleOptionGraphicsItem { + return QStyleOptionGraphicsItemFromPointer(unsafe.Pointer(C.QStyleOptionGraphicsItem_NewQStyleOptionGraphicsItem2(C.QtObjectPtr(PointerFromQStyleOptionGraphicsItem(other))))) +} diff --git a/widgets/qstyleoptiongraphicsitem.h b/widgets/qstyleoptiongraphicsitem.h new file mode 100755 index 00000000..6d3cce6c --- /dev/null +++ b/widgets/qstyleoptiongraphicsitem.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStyleOptionGraphicsItem_NewQStyleOptionGraphicsItem(); +QtObjectPtr QStyleOptionGraphicsItem_NewQStyleOptionGraphicsItem2(QtObjectPtr other); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstyleoptiongroupbox.cpp b/widgets/qstyleoptiongroupbox.cpp new file mode 100755 index 00000000..356bb0ae --- /dev/null +++ b/widgets/qstyleoptiongroupbox.cpp @@ -0,0 +1,22 @@ +#include "qstyleoptiongroupbox.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleOptionGroupBox: public QStyleOptionGroupBox { +public: +}; + +QtObjectPtr QStyleOptionGroupBox_NewQStyleOptionGroupBox(){ + return new QStyleOptionGroupBox(); +} + +QtObjectPtr QStyleOptionGroupBox_NewQStyleOptionGroupBox2(QtObjectPtr other){ + return new QStyleOptionGroupBox(*static_cast(other)); +} + diff --git a/widgets/qstyleoptiongroupbox.go b/widgets/qstyleoptiongroupbox.go new file mode 100755 index 00000000..d7ba5707 --- /dev/null +++ b/widgets/qstyleoptiongroupbox.go @@ -0,0 +1,55 @@ +package widgets + +//#include "qstyleoptiongroupbox.h" +import "C" +import ( + "unsafe" +) + +type QStyleOptionGroupBox struct { + QStyleOptionComplex +} + +type QStyleOptionGroupBoxITF interface { + QStyleOptionComplexITF + QStyleOptionGroupBoxPTR() *QStyleOptionGroupBox +} + +func PointerFromQStyleOptionGroupBox(ptr QStyleOptionGroupBoxITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleOptionGroupBoxPTR().Pointer() + } + return nil +} + +func QStyleOptionGroupBoxFromPointer(ptr unsafe.Pointer) *QStyleOptionGroupBox { + var n = new(QStyleOptionGroupBox) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleOptionGroupBox) QStyleOptionGroupBoxPTR() *QStyleOptionGroupBox { + return ptr +} + +//QStyleOptionGroupBox::StyleOptionType +type QStyleOptionGroupBox__StyleOptionType int + +var ( + QStyleOptionGroupBox__Type = QStyleOptionGroupBox__StyleOptionType(QStyleOption__SO_GroupBox) +) + +//QStyleOptionGroupBox::StyleOptionVersion +type QStyleOptionGroupBox__StyleOptionVersion int + +var ( + QStyleOptionGroupBox__Version = QStyleOptionGroupBox__StyleOptionVersion(1) +) + +func NewQStyleOptionGroupBox() *QStyleOptionGroupBox { + return QStyleOptionGroupBoxFromPointer(unsafe.Pointer(C.QStyleOptionGroupBox_NewQStyleOptionGroupBox())) +} + +func NewQStyleOptionGroupBox2(other QStyleOptionGroupBoxITF) *QStyleOptionGroupBox { + return QStyleOptionGroupBoxFromPointer(unsafe.Pointer(C.QStyleOptionGroupBox_NewQStyleOptionGroupBox2(C.QtObjectPtr(PointerFromQStyleOptionGroupBox(other))))) +} diff --git a/widgets/qstyleoptiongroupbox.h b/widgets/qstyleoptiongroupbox.h new file mode 100755 index 00000000..9bcc9ccb --- /dev/null +++ b/widgets/qstyleoptiongroupbox.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStyleOptionGroupBox_NewQStyleOptionGroupBox(); +QtObjectPtr QStyleOptionGroupBox_NewQStyleOptionGroupBox2(QtObjectPtr other); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstyleoptionheader.cpp b/widgets/qstyleoptionheader.cpp new file mode 100755 index 00000000..bad0d0b9 --- /dev/null +++ b/widgets/qstyleoptionheader.cpp @@ -0,0 +1,22 @@ +#include "qstyleoptionheader.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleOptionHeader: public QStyleOptionHeader { +public: +}; + +QtObjectPtr QStyleOptionHeader_NewQStyleOptionHeader(){ + return new QStyleOptionHeader(); +} + +QtObjectPtr QStyleOptionHeader_NewQStyleOptionHeader2(QtObjectPtr other){ + return new QStyleOptionHeader(*static_cast(other)); +} + diff --git a/widgets/qstyleoptionheader.go b/widgets/qstyleoptionheader.go new file mode 100755 index 00000000..8825f4b3 --- /dev/null +++ b/widgets/qstyleoptionheader.go @@ -0,0 +1,84 @@ +package widgets + +//#include "qstyleoptionheader.h" +import "C" +import ( + "unsafe" +) + +type QStyleOptionHeader struct { + QStyleOption +} + +type QStyleOptionHeaderITF interface { + QStyleOptionITF + QStyleOptionHeaderPTR() *QStyleOptionHeader +} + +func PointerFromQStyleOptionHeader(ptr QStyleOptionHeaderITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleOptionHeaderPTR().Pointer() + } + return nil +} + +func QStyleOptionHeaderFromPointer(ptr unsafe.Pointer) *QStyleOptionHeader { + var n = new(QStyleOptionHeader) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleOptionHeader) QStyleOptionHeaderPTR() *QStyleOptionHeader { + return ptr +} + +//QStyleOptionHeader::SectionPosition +type QStyleOptionHeader__SectionPosition int + +var ( + QStyleOptionHeader__Beginning = QStyleOptionHeader__SectionPosition(0) + QStyleOptionHeader__Middle = QStyleOptionHeader__SectionPosition(1) + QStyleOptionHeader__End = QStyleOptionHeader__SectionPosition(2) + QStyleOptionHeader__OnlyOneSection = QStyleOptionHeader__SectionPosition(3) +) + +//QStyleOptionHeader::SelectedPosition +type QStyleOptionHeader__SelectedPosition int + +var ( + QStyleOptionHeader__NotAdjacent = QStyleOptionHeader__SelectedPosition(0) + QStyleOptionHeader__NextIsSelected = QStyleOptionHeader__SelectedPosition(1) + QStyleOptionHeader__PreviousIsSelected = QStyleOptionHeader__SelectedPosition(2) + QStyleOptionHeader__NextAndPreviousAreSelected = QStyleOptionHeader__SelectedPosition(3) +) + +//QStyleOptionHeader::SortIndicator +type QStyleOptionHeader__SortIndicator int + +var ( + QStyleOptionHeader__None = QStyleOptionHeader__SortIndicator(0) + QStyleOptionHeader__SortUp = QStyleOptionHeader__SortIndicator(1) + QStyleOptionHeader__SortDown = QStyleOptionHeader__SortIndicator(2) +) + +//QStyleOptionHeader::StyleOptionType +type QStyleOptionHeader__StyleOptionType int + +var ( + QStyleOptionHeader__Type = QStyleOptionHeader__StyleOptionType(QStyleOption__SO_Header) +) + +//QStyleOptionHeader::StyleOptionVersion +type QStyleOptionHeader__StyleOptionVersion int + +var ( + QStyleOptionHeader__Version = QStyleOptionHeader__StyleOptionVersion(1) +) + +func NewQStyleOptionHeader() *QStyleOptionHeader { + return QStyleOptionHeaderFromPointer(unsafe.Pointer(C.QStyleOptionHeader_NewQStyleOptionHeader())) +} + +func NewQStyleOptionHeader2(other QStyleOptionHeaderITF) *QStyleOptionHeader { + return QStyleOptionHeaderFromPointer(unsafe.Pointer(C.QStyleOptionHeader_NewQStyleOptionHeader2(C.QtObjectPtr(PointerFromQStyleOptionHeader(other))))) +} diff --git a/widgets/qstyleoptionheader.h b/widgets/qstyleoptionheader.h new file mode 100755 index 00000000..edecaee8 --- /dev/null +++ b/widgets/qstyleoptionheader.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStyleOptionHeader_NewQStyleOptionHeader(); +QtObjectPtr QStyleOptionHeader_NewQStyleOptionHeader2(QtObjectPtr other); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstyleoptionmenuitem.cpp b/widgets/qstyleoptionmenuitem.cpp new file mode 100755 index 00000000..62221638 --- /dev/null +++ b/widgets/qstyleoptionmenuitem.cpp @@ -0,0 +1,22 @@ +#include "qstyleoptionmenuitem.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleOptionMenuItem: public QStyleOptionMenuItem { +public: +}; + +QtObjectPtr QStyleOptionMenuItem_NewQStyleOptionMenuItem(){ + return new QStyleOptionMenuItem(); +} + +QtObjectPtr QStyleOptionMenuItem_NewQStyleOptionMenuItem2(QtObjectPtr other){ + return new QStyleOptionMenuItem(*static_cast(other)); +} + diff --git a/widgets/qstyleoptionmenuitem.go b/widgets/qstyleoptionmenuitem.go new file mode 100755 index 00000000..364f6102 --- /dev/null +++ b/widgets/qstyleoptionmenuitem.go @@ -0,0 +1,78 @@ +package widgets + +//#include "qstyleoptionmenuitem.h" +import "C" +import ( + "unsafe" +) + +type QStyleOptionMenuItem struct { + QStyleOption +} + +type QStyleOptionMenuItemITF interface { + QStyleOptionITF + QStyleOptionMenuItemPTR() *QStyleOptionMenuItem +} + +func PointerFromQStyleOptionMenuItem(ptr QStyleOptionMenuItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleOptionMenuItemPTR().Pointer() + } + return nil +} + +func QStyleOptionMenuItemFromPointer(ptr unsafe.Pointer) *QStyleOptionMenuItem { + var n = new(QStyleOptionMenuItem) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleOptionMenuItem) QStyleOptionMenuItemPTR() *QStyleOptionMenuItem { + return ptr +} + +//QStyleOptionMenuItem::CheckType +type QStyleOptionMenuItem__CheckType int + +var ( + QStyleOptionMenuItem__NotCheckable = QStyleOptionMenuItem__CheckType(0) + QStyleOptionMenuItem__Exclusive = QStyleOptionMenuItem__CheckType(1) + QStyleOptionMenuItem__NonExclusive = QStyleOptionMenuItem__CheckType(2) +) + +//QStyleOptionMenuItem::MenuItemType +type QStyleOptionMenuItem__MenuItemType int + +var ( + QStyleOptionMenuItem__Normal = QStyleOptionMenuItem__MenuItemType(0) + QStyleOptionMenuItem__DefaultItem = QStyleOptionMenuItem__MenuItemType(1) + QStyleOptionMenuItem__Separator = QStyleOptionMenuItem__MenuItemType(2) + QStyleOptionMenuItem__SubMenu = QStyleOptionMenuItem__MenuItemType(3) + QStyleOptionMenuItem__Scroller = QStyleOptionMenuItem__MenuItemType(4) + QStyleOptionMenuItem__TearOff = QStyleOptionMenuItem__MenuItemType(5) + QStyleOptionMenuItem__Margin = QStyleOptionMenuItem__MenuItemType(6) + QStyleOptionMenuItem__EmptyArea = QStyleOptionMenuItem__MenuItemType(7) +) + +//QStyleOptionMenuItem::StyleOptionType +type QStyleOptionMenuItem__StyleOptionType int + +var ( + QStyleOptionMenuItem__Type = QStyleOptionMenuItem__StyleOptionType(QStyleOption__SO_MenuItem) +) + +//QStyleOptionMenuItem::StyleOptionVersion +type QStyleOptionMenuItem__StyleOptionVersion int + +var ( + QStyleOptionMenuItem__Version = QStyleOptionMenuItem__StyleOptionVersion(1) +) + +func NewQStyleOptionMenuItem() *QStyleOptionMenuItem { + return QStyleOptionMenuItemFromPointer(unsafe.Pointer(C.QStyleOptionMenuItem_NewQStyleOptionMenuItem())) +} + +func NewQStyleOptionMenuItem2(other QStyleOptionMenuItemITF) *QStyleOptionMenuItem { + return QStyleOptionMenuItemFromPointer(unsafe.Pointer(C.QStyleOptionMenuItem_NewQStyleOptionMenuItem2(C.QtObjectPtr(PointerFromQStyleOptionMenuItem(other))))) +} diff --git a/widgets/qstyleoptionmenuitem.h b/widgets/qstyleoptionmenuitem.h new file mode 100755 index 00000000..4ce5e73c --- /dev/null +++ b/widgets/qstyleoptionmenuitem.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStyleOptionMenuItem_NewQStyleOptionMenuItem(); +QtObjectPtr QStyleOptionMenuItem_NewQStyleOptionMenuItem2(QtObjectPtr other); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstyleoptionprogressbar.cpp b/widgets/qstyleoptionprogressbar.cpp new file mode 100755 index 00000000..69edbbf6 --- /dev/null +++ b/widgets/qstyleoptionprogressbar.cpp @@ -0,0 +1,22 @@ +#include "qstyleoptionprogressbar.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleOptionProgressBar: public QStyleOptionProgressBar { +public: +}; + +QtObjectPtr QStyleOptionProgressBar_NewQStyleOptionProgressBar(){ + return new QStyleOptionProgressBar(); +} + +QtObjectPtr QStyleOptionProgressBar_NewQStyleOptionProgressBar2(QtObjectPtr other){ + return new QStyleOptionProgressBar(*static_cast(other)); +} + diff --git a/widgets/qstyleoptionprogressbar.go b/widgets/qstyleoptionprogressbar.go new file mode 100755 index 00000000..4948b11b --- /dev/null +++ b/widgets/qstyleoptionprogressbar.go @@ -0,0 +1,55 @@ +package widgets + +//#include "qstyleoptionprogressbar.h" +import "C" +import ( + "unsafe" +) + +type QStyleOptionProgressBar struct { + QStyleOption +} + +type QStyleOptionProgressBarITF interface { + QStyleOptionITF + QStyleOptionProgressBarPTR() *QStyleOptionProgressBar +} + +func PointerFromQStyleOptionProgressBar(ptr QStyleOptionProgressBarITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleOptionProgressBarPTR().Pointer() + } + return nil +} + +func QStyleOptionProgressBarFromPointer(ptr unsafe.Pointer) *QStyleOptionProgressBar { + var n = new(QStyleOptionProgressBar) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleOptionProgressBar) QStyleOptionProgressBarPTR() *QStyleOptionProgressBar { + return ptr +} + +//QStyleOptionProgressBar::StyleOptionType +type QStyleOptionProgressBar__StyleOptionType int + +var ( + QStyleOptionProgressBar__Type = QStyleOptionProgressBar__StyleOptionType(QStyleOption__SO_ProgressBar) +) + +//QStyleOptionProgressBar::StyleOptionVersion +type QStyleOptionProgressBar__StyleOptionVersion int + +var ( + QStyleOptionProgressBar__Version = QStyleOptionProgressBar__StyleOptionVersion(2) +) + +func NewQStyleOptionProgressBar() *QStyleOptionProgressBar { + return QStyleOptionProgressBarFromPointer(unsafe.Pointer(C.QStyleOptionProgressBar_NewQStyleOptionProgressBar())) +} + +func NewQStyleOptionProgressBar2(other QStyleOptionProgressBarITF) *QStyleOptionProgressBar { + return QStyleOptionProgressBarFromPointer(unsafe.Pointer(C.QStyleOptionProgressBar_NewQStyleOptionProgressBar2(C.QtObjectPtr(PointerFromQStyleOptionProgressBar(other))))) +} diff --git a/widgets/qstyleoptionprogressbar.h b/widgets/qstyleoptionprogressbar.h new file mode 100755 index 00000000..f617414f --- /dev/null +++ b/widgets/qstyleoptionprogressbar.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStyleOptionProgressBar_NewQStyleOptionProgressBar(); +QtObjectPtr QStyleOptionProgressBar_NewQStyleOptionProgressBar2(QtObjectPtr other); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstyleoptionrubberband.cpp b/widgets/qstyleoptionrubberband.cpp new file mode 100755 index 00000000..8a4cb36e --- /dev/null +++ b/widgets/qstyleoptionrubberband.cpp @@ -0,0 +1,22 @@ +#include "qstyleoptionrubberband.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleOptionRubberBand: public QStyleOptionRubberBand { +public: +}; + +QtObjectPtr QStyleOptionRubberBand_NewQStyleOptionRubberBand(){ + return new QStyleOptionRubberBand(); +} + +QtObjectPtr QStyleOptionRubberBand_NewQStyleOptionRubberBand2(QtObjectPtr other){ + return new QStyleOptionRubberBand(*static_cast(other)); +} + diff --git a/widgets/qstyleoptionrubberband.go b/widgets/qstyleoptionrubberband.go new file mode 100755 index 00000000..bb60f8bd --- /dev/null +++ b/widgets/qstyleoptionrubberband.go @@ -0,0 +1,55 @@ +package widgets + +//#include "qstyleoptionrubberband.h" +import "C" +import ( + "unsafe" +) + +type QStyleOptionRubberBand struct { + QStyleOption +} + +type QStyleOptionRubberBandITF interface { + QStyleOptionITF + QStyleOptionRubberBandPTR() *QStyleOptionRubberBand +} + +func PointerFromQStyleOptionRubberBand(ptr QStyleOptionRubberBandITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleOptionRubberBandPTR().Pointer() + } + return nil +} + +func QStyleOptionRubberBandFromPointer(ptr unsafe.Pointer) *QStyleOptionRubberBand { + var n = new(QStyleOptionRubberBand) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleOptionRubberBand) QStyleOptionRubberBandPTR() *QStyleOptionRubberBand { + return ptr +} + +//QStyleOptionRubberBand::StyleOptionType +type QStyleOptionRubberBand__StyleOptionType int + +var ( + QStyleOptionRubberBand__Type = QStyleOptionRubberBand__StyleOptionType(QStyleOption__SO_RubberBand) +) + +//QStyleOptionRubberBand::StyleOptionVersion +type QStyleOptionRubberBand__StyleOptionVersion int + +var ( + QStyleOptionRubberBand__Version = QStyleOptionRubberBand__StyleOptionVersion(1) +) + +func NewQStyleOptionRubberBand() *QStyleOptionRubberBand { + return QStyleOptionRubberBandFromPointer(unsafe.Pointer(C.QStyleOptionRubberBand_NewQStyleOptionRubberBand())) +} + +func NewQStyleOptionRubberBand2(other QStyleOptionRubberBandITF) *QStyleOptionRubberBand { + return QStyleOptionRubberBandFromPointer(unsafe.Pointer(C.QStyleOptionRubberBand_NewQStyleOptionRubberBand2(C.QtObjectPtr(PointerFromQStyleOptionRubberBand(other))))) +} diff --git a/widgets/qstyleoptionrubberband.h b/widgets/qstyleoptionrubberband.h new file mode 100755 index 00000000..e4380ec3 --- /dev/null +++ b/widgets/qstyleoptionrubberband.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStyleOptionRubberBand_NewQStyleOptionRubberBand(); +QtObjectPtr QStyleOptionRubberBand_NewQStyleOptionRubberBand2(QtObjectPtr other); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstyleoptionsizegrip.cpp b/widgets/qstyleoptionsizegrip.cpp new file mode 100755 index 00000000..7b9da450 --- /dev/null +++ b/widgets/qstyleoptionsizegrip.cpp @@ -0,0 +1,22 @@ +#include "qstyleoptionsizegrip.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleOptionSizeGrip: public QStyleOptionSizeGrip { +public: +}; + +QtObjectPtr QStyleOptionSizeGrip_NewQStyleOptionSizeGrip(){ + return new QStyleOptionSizeGrip(); +} + +QtObjectPtr QStyleOptionSizeGrip_NewQStyleOptionSizeGrip2(QtObjectPtr other){ + return new QStyleOptionSizeGrip(*static_cast(other)); +} + diff --git a/widgets/qstyleoptionsizegrip.go b/widgets/qstyleoptionsizegrip.go new file mode 100755 index 00000000..e6a2a1db --- /dev/null +++ b/widgets/qstyleoptionsizegrip.go @@ -0,0 +1,55 @@ +package widgets + +//#include "qstyleoptionsizegrip.h" +import "C" +import ( + "unsafe" +) + +type QStyleOptionSizeGrip struct { + QStyleOptionComplex +} + +type QStyleOptionSizeGripITF interface { + QStyleOptionComplexITF + QStyleOptionSizeGripPTR() *QStyleOptionSizeGrip +} + +func PointerFromQStyleOptionSizeGrip(ptr QStyleOptionSizeGripITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleOptionSizeGripPTR().Pointer() + } + return nil +} + +func QStyleOptionSizeGripFromPointer(ptr unsafe.Pointer) *QStyleOptionSizeGrip { + var n = new(QStyleOptionSizeGrip) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleOptionSizeGrip) QStyleOptionSizeGripPTR() *QStyleOptionSizeGrip { + return ptr +} + +//QStyleOptionSizeGrip::StyleOptionType +type QStyleOptionSizeGrip__StyleOptionType int + +var ( + QStyleOptionSizeGrip__Type = QStyleOptionSizeGrip__StyleOptionType(QStyleOption__SO_SizeGrip) +) + +//QStyleOptionSizeGrip::StyleOptionVersion +type QStyleOptionSizeGrip__StyleOptionVersion int + +var ( + QStyleOptionSizeGrip__Version = QStyleOptionSizeGrip__StyleOptionVersion(1) +) + +func NewQStyleOptionSizeGrip() *QStyleOptionSizeGrip { + return QStyleOptionSizeGripFromPointer(unsafe.Pointer(C.QStyleOptionSizeGrip_NewQStyleOptionSizeGrip())) +} + +func NewQStyleOptionSizeGrip2(other QStyleOptionSizeGripITF) *QStyleOptionSizeGrip { + return QStyleOptionSizeGripFromPointer(unsafe.Pointer(C.QStyleOptionSizeGrip_NewQStyleOptionSizeGrip2(C.QtObjectPtr(PointerFromQStyleOptionSizeGrip(other))))) +} diff --git a/widgets/qstyleoptionsizegrip.h b/widgets/qstyleoptionsizegrip.h new file mode 100755 index 00000000..d4849cac --- /dev/null +++ b/widgets/qstyleoptionsizegrip.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStyleOptionSizeGrip_NewQStyleOptionSizeGrip(); +QtObjectPtr QStyleOptionSizeGrip_NewQStyleOptionSizeGrip2(QtObjectPtr other); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstyleoptionslider.cpp b/widgets/qstyleoptionslider.cpp new file mode 100755 index 00000000..19e1f052 --- /dev/null +++ b/widgets/qstyleoptionslider.cpp @@ -0,0 +1,22 @@ +#include "qstyleoptionslider.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleOptionSlider: public QStyleOptionSlider { +public: +}; + +QtObjectPtr QStyleOptionSlider_NewQStyleOptionSlider(){ + return new QStyleOptionSlider(); +} + +QtObjectPtr QStyleOptionSlider_NewQStyleOptionSlider2(QtObjectPtr other){ + return new QStyleOptionSlider(*static_cast(other)); +} + diff --git a/widgets/qstyleoptionslider.go b/widgets/qstyleoptionslider.go new file mode 100755 index 00000000..9321e406 --- /dev/null +++ b/widgets/qstyleoptionslider.go @@ -0,0 +1,55 @@ +package widgets + +//#include "qstyleoptionslider.h" +import "C" +import ( + "unsafe" +) + +type QStyleOptionSlider struct { + QStyleOptionComplex +} + +type QStyleOptionSliderITF interface { + QStyleOptionComplexITF + QStyleOptionSliderPTR() *QStyleOptionSlider +} + +func PointerFromQStyleOptionSlider(ptr QStyleOptionSliderITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleOptionSliderPTR().Pointer() + } + return nil +} + +func QStyleOptionSliderFromPointer(ptr unsafe.Pointer) *QStyleOptionSlider { + var n = new(QStyleOptionSlider) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleOptionSlider) QStyleOptionSliderPTR() *QStyleOptionSlider { + return ptr +} + +//QStyleOptionSlider::StyleOptionType +type QStyleOptionSlider__StyleOptionType int + +var ( + QStyleOptionSlider__Type = QStyleOptionSlider__StyleOptionType(QStyleOption__SO_Slider) +) + +//QStyleOptionSlider::StyleOptionVersion +type QStyleOptionSlider__StyleOptionVersion int + +var ( + QStyleOptionSlider__Version = QStyleOptionSlider__StyleOptionVersion(1) +) + +func NewQStyleOptionSlider() *QStyleOptionSlider { + return QStyleOptionSliderFromPointer(unsafe.Pointer(C.QStyleOptionSlider_NewQStyleOptionSlider())) +} + +func NewQStyleOptionSlider2(other QStyleOptionSliderITF) *QStyleOptionSlider { + return QStyleOptionSliderFromPointer(unsafe.Pointer(C.QStyleOptionSlider_NewQStyleOptionSlider2(C.QtObjectPtr(PointerFromQStyleOptionSlider(other))))) +} diff --git a/widgets/qstyleoptionslider.h b/widgets/qstyleoptionslider.h new file mode 100755 index 00000000..c96fae82 --- /dev/null +++ b/widgets/qstyleoptionslider.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStyleOptionSlider_NewQStyleOptionSlider(); +QtObjectPtr QStyleOptionSlider_NewQStyleOptionSlider2(QtObjectPtr other); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstyleoptionspinbox.cpp b/widgets/qstyleoptionspinbox.cpp new file mode 100755 index 00000000..ef7af76f --- /dev/null +++ b/widgets/qstyleoptionspinbox.cpp @@ -0,0 +1,22 @@ +#include "qstyleoptionspinbox.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleOptionSpinBox: public QStyleOptionSpinBox { +public: +}; + +QtObjectPtr QStyleOptionSpinBox_NewQStyleOptionSpinBox(){ + return new QStyleOptionSpinBox(); +} + +QtObjectPtr QStyleOptionSpinBox_NewQStyleOptionSpinBox2(QtObjectPtr other){ + return new QStyleOptionSpinBox(*static_cast(other)); +} + diff --git a/widgets/qstyleoptionspinbox.go b/widgets/qstyleoptionspinbox.go new file mode 100755 index 00000000..3368b77a --- /dev/null +++ b/widgets/qstyleoptionspinbox.go @@ -0,0 +1,55 @@ +package widgets + +//#include "qstyleoptionspinbox.h" +import "C" +import ( + "unsafe" +) + +type QStyleOptionSpinBox struct { + QStyleOptionComplex +} + +type QStyleOptionSpinBoxITF interface { + QStyleOptionComplexITF + QStyleOptionSpinBoxPTR() *QStyleOptionSpinBox +} + +func PointerFromQStyleOptionSpinBox(ptr QStyleOptionSpinBoxITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleOptionSpinBoxPTR().Pointer() + } + return nil +} + +func QStyleOptionSpinBoxFromPointer(ptr unsafe.Pointer) *QStyleOptionSpinBox { + var n = new(QStyleOptionSpinBox) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleOptionSpinBox) QStyleOptionSpinBoxPTR() *QStyleOptionSpinBox { + return ptr +} + +//QStyleOptionSpinBox::StyleOptionType +type QStyleOptionSpinBox__StyleOptionType int + +var ( + QStyleOptionSpinBox__Type = QStyleOptionSpinBox__StyleOptionType(QStyleOption__SO_SpinBox) +) + +//QStyleOptionSpinBox::StyleOptionVersion +type QStyleOptionSpinBox__StyleOptionVersion int + +var ( + QStyleOptionSpinBox__Version = QStyleOptionSpinBox__StyleOptionVersion(1) +) + +func NewQStyleOptionSpinBox() *QStyleOptionSpinBox { + return QStyleOptionSpinBoxFromPointer(unsafe.Pointer(C.QStyleOptionSpinBox_NewQStyleOptionSpinBox())) +} + +func NewQStyleOptionSpinBox2(other QStyleOptionSpinBoxITF) *QStyleOptionSpinBox { + return QStyleOptionSpinBoxFromPointer(unsafe.Pointer(C.QStyleOptionSpinBox_NewQStyleOptionSpinBox2(C.QtObjectPtr(PointerFromQStyleOptionSpinBox(other))))) +} diff --git a/widgets/qstyleoptionspinbox.h b/widgets/qstyleoptionspinbox.h new file mode 100755 index 00000000..43eb4400 --- /dev/null +++ b/widgets/qstyleoptionspinbox.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStyleOptionSpinBox_NewQStyleOptionSpinBox(); +QtObjectPtr QStyleOptionSpinBox_NewQStyleOptionSpinBox2(QtObjectPtr other); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstyleoptiontab.cpp b/widgets/qstyleoptiontab.cpp new file mode 100755 index 00000000..62590788 --- /dev/null +++ b/widgets/qstyleoptiontab.cpp @@ -0,0 +1,22 @@ +#include "qstyleoptiontab.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleOptionTab: public QStyleOptionTab { +public: +}; + +QtObjectPtr QStyleOptionTab_NewQStyleOptionTab(){ + return new QStyleOptionTab(); +} + +QtObjectPtr QStyleOptionTab_NewQStyleOptionTab2(QtObjectPtr other){ + return new QStyleOptionTab(*static_cast(other)); +} + diff --git a/widgets/qstyleoptiontab.go b/widgets/qstyleoptiontab.go new file mode 100755 index 00000000..8a85fc18 --- /dev/null +++ b/widgets/qstyleoptiontab.go @@ -0,0 +1,91 @@ +package widgets + +//#include "qstyleoptiontab.h" +import "C" +import ( + "unsafe" +) + +type QStyleOptionTab struct { + QStyleOption +} + +type QStyleOptionTabITF interface { + QStyleOptionITF + QStyleOptionTabPTR() *QStyleOptionTab +} + +func PointerFromQStyleOptionTab(ptr QStyleOptionTabITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleOptionTabPTR().Pointer() + } + return nil +} + +func QStyleOptionTabFromPointer(ptr unsafe.Pointer) *QStyleOptionTab { + var n = new(QStyleOptionTab) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleOptionTab) QStyleOptionTabPTR() *QStyleOptionTab { + return ptr +} + +//QStyleOptionTab::CornerWidget +type QStyleOptionTab__CornerWidget int + +var ( + QStyleOptionTab__NoCornerWidgets = QStyleOptionTab__CornerWidget(0x00) + QStyleOptionTab__LeftCornerWidget = QStyleOptionTab__CornerWidget(0x01) + QStyleOptionTab__RightCornerWidget = QStyleOptionTab__CornerWidget(0x02) +) + +//QStyleOptionTab::SelectedPosition +type QStyleOptionTab__SelectedPosition int + +var ( + QStyleOptionTab__NotAdjacent = QStyleOptionTab__SelectedPosition(0) + QStyleOptionTab__NextIsSelected = QStyleOptionTab__SelectedPosition(1) + QStyleOptionTab__PreviousIsSelected = QStyleOptionTab__SelectedPosition(2) +) + +//QStyleOptionTab::StyleOptionType +type QStyleOptionTab__StyleOptionType int + +var ( + QStyleOptionTab__Type = QStyleOptionTab__StyleOptionType(QStyleOption__SO_Tab) +) + +//QStyleOptionTab::StyleOptionVersion +type QStyleOptionTab__StyleOptionVersion int + +var ( + QStyleOptionTab__Version = QStyleOptionTab__StyleOptionVersion(3) +) + +//QStyleOptionTab::TabFeature +type QStyleOptionTab__TabFeature int + +var ( + QStyleOptionTab__None = QStyleOptionTab__TabFeature(0x00) + QStyleOptionTab__HasFrame = QStyleOptionTab__TabFeature(0x01) +) + +//QStyleOptionTab::TabPosition +type QStyleOptionTab__TabPosition int + +var ( + QStyleOptionTab__Beginning = QStyleOptionTab__TabPosition(0) + QStyleOptionTab__Middle = QStyleOptionTab__TabPosition(1) + QStyleOptionTab__End = QStyleOptionTab__TabPosition(2) + QStyleOptionTab__OnlyOneTab = QStyleOptionTab__TabPosition(3) +) + +func NewQStyleOptionTab() *QStyleOptionTab { + return QStyleOptionTabFromPointer(unsafe.Pointer(C.QStyleOptionTab_NewQStyleOptionTab())) +} + +func NewQStyleOptionTab2(other QStyleOptionTabITF) *QStyleOptionTab { + return QStyleOptionTabFromPointer(unsafe.Pointer(C.QStyleOptionTab_NewQStyleOptionTab2(C.QtObjectPtr(PointerFromQStyleOptionTab(other))))) +} diff --git a/widgets/qstyleoptiontab.h b/widgets/qstyleoptiontab.h new file mode 100755 index 00000000..d243558f --- /dev/null +++ b/widgets/qstyleoptiontab.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStyleOptionTab_NewQStyleOptionTab(); +QtObjectPtr QStyleOptionTab_NewQStyleOptionTab2(QtObjectPtr other); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstyleoptiontabbarbase.cpp b/widgets/qstyleoptiontabbarbase.cpp new file mode 100755 index 00000000..e574fd3e --- /dev/null +++ b/widgets/qstyleoptiontabbarbase.cpp @@ -0,0 +1,23 @@ +#include "qstyleoptiontabbarbase.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleOptionTabBarBase: public QStyleOptionTabBarBase { +public: +}; + +QtObjectPtr QStyleOptionTabBarBase_NewQStyleOptionTabBarBase(){ + return new QStyleOptionTabBarBase(); +} + +QtObjectPtr QStyleOptionTabBarBase_NewQStyleOptionTabBarBase2(QtObjectPtr other){ + return new QStyleOptionTabBarBase(*static_cast(other)); +} + diff --git a/widgets/qstyleoptiontabbarbase.go b/widgets/qstyleoptiontabbarbase.go new file mode 100755 index 00000000..d27f4942 --- /dev/null +++ b/widgets/qstyleoptiontabbarbase.go @@ -0,0 +1,55 @@ +package widgets + +//#include "qstyleoptiontabbarbase.h" +import "C" +import ( + "unsafe" +) + +type QStyleOptionTabBarBase struct { + QStyleOption +} + +type QStyleOptionTabBarBaseITF interface { + QStyleOptionITF + QStyleOptionTabBarBasePTR() *QStyleOptionTabBarBase +} + +func PointerFromQStyleOptionTabBarBase(ptr QStyleOptionTabBarBaseITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleOptionTabBarBasePTR().Pointer() + } + return nil +} + +func QStyleOptionTabBarBaseFromPointer(ptr unsafe.Pointer) *QStyleOptionTabBarBase { + var n = new(QStyleOptionTabBarBase) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleOptionTabBarBase) QStyleOptionTabBarBasePTR() *QStyleOptionTabBarBase { + return ptr +} + +//QStyleOptionTabBarBase::StyleOptionType +type QStyleOptionTabBarBase__StyleOptionType int + +var ( + QStyleOptionTabBarBase__Type = QStyleOptionTabBarBase__StyleOptionType(QStyleOption__SO_TabBarBase) +) + +//QStyleOptionTabBarBase::StyleOptionVersion +type QStyleOptionTabBarBase__StyleOptionVersion int + +var ( + QStyleOptionTabBarBase__Version = QStyleOptionTabBarBase__StyleOptionVersion(2) +) + +func NewQStyleOptionTabBarBase() *QStyleOptionTabBarBase { + return QStyleOptionTabBarBaseFromPointer(unsafe.Pointer(C.QStyleOptionTabBarBase_NewQStyleOptionTabBarBase())) +} + +func NewQStyleOptionTabBarBase2(other QStyleOptionTabBarBaseITF) *QStyleOptionTabBarBase { + return QStyleOptionTabBarBaseFromPointer(unsafe.Pointer(C.QStyleOptionTabBarBase_NewQStyleOptionTabBarBase2(C.QtObjectPtr(PointerFromQStyleOptionTabBarBase(other))))) +} diff --git a/widgets/qstyleoptiontabbarbase.h b/widgets/qstyleoptiontabbarbase.h new file mode 100755 index 00000000..be4ad135 --- /dev/null +++ b/widgets/qstyleoptiontabbarbase.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStyleOptionTabBarBase_NewQStyleOptionTabBarBase(); +QtObjectPtr QStyleOptionTabBarBase_NewQStyleOptionTabBarBase2(QtObjectPtr other); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstyleoptiontabwidgetframe.cpp b/widgets/qstyleoptiontabwidgetframe.cpp new file mode 100755 index 00000000..94c98f76 --- /dev/null +++ b/widgets/qstyleoptiontabwidgetframe.cpp @@ -0,0 +1,23 @@ +#include "qstyleoptiontabwidgetframe.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleOptionTabWidgetFrame: public QStyleOptionTabWidgetFrame { +public: +}; + +QtObjectPtr QStyleOptionTabWidgetFrame_NewQStyleOptionTabWidgetFrame(){ + return new QStyleOptionTabWidgetFrame(); +} + +QtObjectPtr QStyleOptionTabWidgetFrame_NewQStyleOptionTabWidgetFrame2(QtObjectPtr other){ + return new QStyleOptionTabWidgetFrame(*static_cast(other)); +} + diff --git a/widgets/qstyleoptiontabwidgetframe.go b/widgets/qstyleoptiontabwidgetframe.go new file mode 100755 index 00000000..683fc100 --- /dev/null +++ b/widgets/qstyleoptiontabwidgetframe.go @@ -0,0 +1,55 @@ +package widgets + +//#include "qstyleoptiontabwidgetframe.h" +import "C" +import ( + "unsafe" +) + +type QStyleOptionTabWidgetFrame struct { + QStyleOption +} + +type QStyleOptionTabWidgetFrameITF interface { + QStyleOptionITF + QStyleOptionTabWidgetFramePTR() *QStyleOptionTabWidgetFrame +} + +func PointerFromQStyleOptionTabWidgetFrame(ptr QStyleOptionTabWidgetFrameITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleOptionTabWidgetFramePTR().Pointer() + } + return nil +} + +func QStyleOptionTabWidgetFrameFromPointer(ptr unsafe.Pointer) *QStyleOptionTabWidgetFrame { + var n = new(QStyleOptionTabWidgetFrame) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleOptionTabWidgetFrame) QStyleOptionTabWidgetFramePTR() *QStyleOptionTabWidgetFrame { + return ptr +} + +//QStyleOptionTabWidgetFrame::StyleOptionType +type QStyleOptionTabWidgetFrame__StyleOptionType int + +var ( + QStyleOptionTabWidgetFrame__Type = QStyleOptionTabWidgetFrame__StyleOptionType(QStyleOption__SO_TabWidgetFrame) +) + +//QStyleOptionTabWidgetFrame::StyleOptionVersion +type QStyleOptionTabWidgetFrame__StyleOptionVersion int + +var ( + QStyleOptionTabWidgetFrame__Version = QStyleOptionTabWidgetFrame__StyleOptionVersion(2) +) + +func NewQStyleOptionTabWidgetFrame() *QStyleOptionTabWidgetFrame { + return QStyleOptionTabWidgetFrameFromPointer(unsafe.Pointer(C.QStyleOptionTabWidgetFrame_NewQStyleOptionTabWidgetFrame())) +} + +func NewQStyleOptionTabWidgetFrame2(other QStyleOptionTabWidgetFrameITF) *QStyleOptionTabWidgetFrame { + return QStyleOptionTabWidgetFrameFromPointer(unsafe.Pointer(C.QStyleOptionTabWidgetFrame_NewQStyleOptionTabWidgetFrame2(C.QtObjectPtr(PointerFromQStyleOptionTabWidgetFrame(other))))) +} diff --git a/widgets/qstyleoptiontabwidgetframe.h b/widgets/qstyleoptiontabwidgetframe.h new file mode 100755 index 00000000..04ade695 --- /dev/null +++ b/widgets/qstyleoptiontabwidgetframe.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStyleOptionTabWidgetFrame_NewQStyleOptionTabWidgetFrame(); +QtObjectPtr QStyleOptionTabWidgetFrame_NewQStyleOptionTabWidgetFrame2(QtObjectPtr other); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstyleoptiontitlebar.cpp b/widgets/qstyleoptiontitlebar.cpp new file mode 100755 index 00000000..e080b1df --- /dev/null +++ b/widgets/qstyleoptiontitlebar.cpp @@ -0,0 +1,22 @@ +#include "qstyleoptiontitlebar.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleOptionTitleBar: public QStyleOptionTitleBar { +public: +}; + +QtObjectPtr QStyleOptionTitleBar_NewQStyleOptionTitleBar(){ + return new QStyleOptionTitleBar(); +} + +QtObjectPtr QStyleOptionTitleBar_NewQStyleOptionTitleBar2(QtObjectPtr other){ + return new QStyleOptionTitleBar(*static_cast(other)); +} + diff --git a/widgets/qstyleoptiontitlebar.go b/widgets/qstyleoptiontitlebar.go new file mode 100755 index 00000000..062fa606 --- /dev/null +++ b/widgets/qstyleoptiontitlebar.go @@ -0,0 +1,55 @@ +package widgets + +//#include "qstyleoptiontitlebar.h" +import "C" +import ( + "unsafe" +) + +type QStyleOptionTitleBar struct { + QStyleOptionComplex +} + +type QStyleOptionTitleBarITF interface { + QStyleOptionComplexITF + QStyleOptionTitleBarPTR() *QStyleOptionTitleBar +} + +func PointerFromQStyleOptionTitleBar(ptr QStyleOptionTitleBarITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleOptionTitleBarPTR().Pointer() + } + return nil +} + +func QStyleOptionTitleBarFromPointer(ptr unsafe.Pointer) *QStyleOptionTitleBar { + var n = new(QStyleOptionTitleBar) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleOptionTitleBar) QStyleOptionTitleBarPTR() *QStyleOptionTitleBar { + return ptr +} + +//QStyleOptionTitleBar::StyleOptionType +type QStyleOptionTitleBar__StyleOptionType int + +var ( + QStyleOptionTitleBar__Type = QStyleOptionTitleBar__StyleOptionType(QStyleOption__SO_TitleBar) +) + +//QStyleOptionTitleBar::StyleOptionVersion +type QStyleOptionTitleBar__StyleOptionVersion int + +var ( + QStyleOptionTitleBar__Version = QStyleOptionTitleBar__StyleOptionVersion(1) +) + +func NewQStyleOptionTitleBar() *QStyleOptionTitleBar { + return QStyleOptionTitleBarFromPointer(unsafe.Pointer(C.QStyleOptionTitleBar_NewQStyleOptionTitleBar())) +} + +func NewQStyleOptionTitleBar2(other QStyleOptionTitleBarITF) *QStyleOptionTitleBar { + return QStyleOptionTitleBarFromPointer(unsafe.Pointer(C.QStyleOptionTitleBar_NewQStyleOptionTitleBar2(C.QtObjectPtr(PointerFromQStyleOptionTitleBar(other))))) +} diff --git a/widgets/qstyleoptiontitlebar.h b/widgets/qstyleoptiontitlebar.h new file mode 100755 index 00000000..5880b909 --- /dev/null +++ b/widgets/qstyleoptiontitlebar.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStyleOptionTitleBar_NewQStyleOptionTitleBar(); +QtObjectPtr QStyleOptionTitleBar_NewQStyleOptionTitleBar2(QtObjectPtr other); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstyleoptiontoolbar.cpp b/widgets/qstyleoptiontoolbar.cpp new file mode 100755 index 00000000..0e242986 --- /dev/null +++ b/widgets/qstyleoptiontoolbar.cpp @@ -0,0 +1,22 @@ +#include "qstyleoptiontoolbar.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleOptionToolBar: public QStyleOptionToolBar { +public: +}; + +QtObjectPtr QStyleOptionToolBar_NewQStyleOptionToolBar(){ + return new QStyleOptionToolBar(); +} + +QtObjectPtr QStyleOptionToolBar_NewQStyleOptionToolBar2(QtObjectPtr other){ + return new QStyleOptionToolBar(*static_cast(other)); +} + diff --git a/widgets/qstyleoptiontoolbar.go b/widgets/qstyleoptiontoolbar.go new file mode 100755 index 00000000..86133a1b --- /dev/null +++ b/widgets/qstyleoptiontoolbar.go @@ -0,0 +1,73 @@ +package widgets + +//#include "qstyleoptiontoolbar.h" +import "C" +import ( + "unsafe" +) + +type QStyleOptionToolBar struct { + QStyleOption +} + +type QStyleOptionToolBarITF interface { + QStyleOptionITF + QStyleOptionToolBarPTR() *QStyleOptionToolBar +} + +func PointerFromQStyleOptionToolBar(ptr QStyleOptionToolBarITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleOptionToolBarPTR().Pointer() + } + return nil +} + +func QStyleOptionToolBarFromPointer(ptr unsafe.Pointer) *QStyleOptionToolBar { + var n = new(QStyleOptionToolBar) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleOptionToolBar) QStyleOptionToolBarPTR() *QStyleOptionToolBar { + return ptr +} + +//QStyleOptionToolBar::StyleOptionType +type QStyleOptionToolBar__StyleOptionType int + +var ( + QStyleOptionToolBar__Type = QStyleOptionToolBar__StyleOptionType(QStyleOption__SO_ToolBar) +) + +//QStyleOptionToolBar::StyleOptionVersion +type QStyleOptionToolBar__StyleOptionVersion int + +var ( + QStyleOptionToolBar__Version = QStyleOptionToolBar__StyleOptionVersion(1) +) + +//QStyleOptionToolBar::ToolBarFeature +type QStyleOptionToolBar__ToolBarFeature int + +var ( + QStyleOptionToolBar__None = QStyleOptionToolBar__ToolBarFeature(0x0) + QStyleOptionToolBar__Movable = QStyleOptionToolBar__ToolBarFeature(0x1) +) + +//QStyleOptionToolBar::ToolBarPosition +type QStyleOptionToolBar__ToolBarPosition int + +var ( + QStyleOptionToolBar__Beginning = QStyleOptionToolBar__ToolBarPosition(0) + QStyleOptionToolBar__Middle = QStyleOptionToolBar__ToolBarPosition(1) + QStyleOptionToolBar__End = QStyleOptionToolBar__ToolBarPosition(2) + QStyleOptionToolBar__OnlyOne = QStyleOptionToolBar__ToolBarPosition(3) +) + +func NewQStyleOptionToolBar() *QStyleOptionToolBar { + return QStyleOptionToolBarFromPointer(unsafe.Pointer(C.QStyleOptionToolBar_NewQStyleOptionToolBar())) +} + +func NewQStyleOptionToolBar2(other QStyleOptionToolBarITF) *QStyleOptionToolBar { + return QStyleOptionToolBarFromPointer(unsafe.Pointer(C.QStyleOptionToolBar_NewQStyleOptionToolBar2(C.QtObjectPtr(PointerFromQStyleOptionToolBar(other))))) +} diff --git a/widgets/qstyleoptiontoolbar.h b/widgets/qstyleoptiontoolbar.h new file mode 100755 index 00000000..78eb0c31 --- /dev/null +++ b/widgets/qstyleoptiontoolbar.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStyleOptionToolBar_NewQStyleOptionToolBar(); +QtObjectPtr QStyleOptionToolBar_NewQStyleOptionToolBar2(QtObjectPtr other); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstyleoptiontoolbox.cpp b/widgets/qstyleoptiontoolbox.cpp new file mode 100755 index 00000000..5dc5d6cb --- /dev/null +++ b/widgets/qstyleoptiontoolbox.cpp @@ -0,0 +1,22 @@ +#include "qstyleoptiontoolbox.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleOptionToolBox: public QStyleOptionToolBox { +public: +}; + +QtObjectPtr QStyleOptionToolBox_NewQStyleOptionToolBox(){ + return new QStyleOptionToolBox(); +} + +QtObjectPtr QStyleOptionToolBox_NewQStyleOptionToolBox2(QtObjectPtr other){ + return new QStyleOptionToolBox(*static_cast(other)); +} + diff --git a/widgets/qstyleoptiontoolbox.go b/widgets/qstyleoptiontoolbox.go new file mode 100755 index 00000000..c2fda4fa --- /dev/null +++ b/widgets/qstyleoptiontoolbox.go @@ -0,0 +1,74 @@ +package widgets + +//#include "qstyleoptiontoolbox.h" +import "C" +import ( + "unsafe" +) + +type QStyleOptionToolBox struct { + QStyleOption +} + +type QStyleOptionToolBoxITF interface { + QStyleOptionITF + QStyleOptionToolBoxPTR() *QStyleOptionToolBox +} + +func PointerFromQStyleOptionToolBox(ptr QStyleOptionToolBoxITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleOptionToolBoxPTR().Pointer() + } + return nil +} + +func QStyleOptionToolBoxFromPointer(ptr unsafe.Pointer) *QStyleOptionToolBox { + var n = new(QStyleOptionToolBox) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleOptionToolBox) QStyleOptionToolBoxPTR() *QStyleOptionToolBox { + return ptr +} + +//QStyleOptionToolBox::SelectedPosition +type QStyleOptionToolBox__SelectedPosition int + +var ( + QStyleOptionToolBox__NotAdjacent = QStyleOptionToolBox__SelectedPosition(0) + QStyleOptionToolBox__NextIsSelected = QStyleOptionToolBox__SelectedPosition(1) + QStyleOptionToolBox__PreviousIsSelected = QStyleOptionToolBox__SelectedPosition(2) +) + +//QStyleOptionToolBox::StyleOptionType +type QStyleOptionToolBox__StyleOptionType int + +var ( + QStyleOptionToolBox__Type = QStyleOptionToolBox__StyleOptionType(QStyleOption__SO_ToolBox) +) + +//QStyleOptionToolBox::StyleOptionVersion +type QStyleOptionToolBox__StyleOptionVersion int + +var ( + QStyleOptionToolBox__Version = QStyleOptionToolBox__StyleOptionVersion(2) +) + +//QStyleOptionToolBox::TabPosition +type QStyleOptionToolBox__TabPosition int + +var ( + QStyleOptionToolBox__Beginning = QStyleOptionToolBox__TabPosition(0) + QStyleOptionToolBox__Middle = QStyleOptionToolBox__TabPosition(1) + QStyleOptionToolBox__End = QStyleOptionToolBox__TabPosition(2) + QStyleOptionToolBox__OnlyOneTab = QStyleOptionToolBox__TabPosition(3) +) + +func NewQStyleOptionToolBox() *QStyleOptionToolBox { + return QStyleOptionToolBoxFromPointer(unsafe.Pointer(C.QStyleOptionToolBox_NewQStyleOptionToolBox())) +} + +func NewQStyleOptionToolBox2(other QStyleOptionToolBoxITF) *QStyleOptionToolBox { + return QStyleOptionToolBoxFromPointer(unsafe.Pointer(C.QStyleOptionToolBox_NewQStyleOptionToolBox2(C.QtObjectPtr(PointerFromQStyleOptionToolBox(other))))) +} diff --git a/widgets/qstyleoptiontoolbox.h b/widgets/qstyleoptiontoolbox.h new file mode 100755 index 00000000..81ae1dcf --- /dev/null +++ b/widgets/qstyleoptiontoolbox.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStyleOptionToolBox_NewQStyleOptionToolBox(); +QtObjectPtr QStyleOptionToolBox_NewQStyleOptionToolBox2(QtObjectPtr other); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstyleoptiontoolbutton.cpp b/widgets/qstyleoptiontoolbutton.cpp new file mode 100755 index 00000000..de1b2a87 --- /dev/null +++ b/widgets/qstyleoptiontoolbutton.cpp @@ -0,0 +1,22 @@ +#include "qstyleoptiontoolbutton.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleOptionToolButton: public QStyleOptionToolButton { +public: +}; + +QtObjectPtr QStyleOptionToolButton_NewQStyleOptionToolButton(){ + return new QStyleOptionToolButton(); +} + +QtObjectPtr QStyleOptionToolButton_NewQStyleOptionToolButton2(QtObjectPtr other){ + return new QStyleOptionToolButton(*static_cast(other)); +} + diff --git a/widgets/qstyleoptiontoolbutton.go b/widgets/qstyleoptiontoolbutton.go new file mode 100755 index 00000000..12293dd5 --- /dev/null +++ b/widgets/qstyleoptiontoolbutton.go @@ -0,0 +1,67 @@ +package widgets + +//#include "qstyleoptiontoolbutton.h" +import "C" +import ( + "unsafe" +) + +type QStyleOptionToolButton struct { + QStyleOptionComplex +} + +type QStyleOptionToolButtonITF interface { + QStyleOptionComplexITF + QStyleOptionToolButtonPTR() *QStyleOptionToolButton +} + +func PointerFromQStyleOptionToolButton(ptr QStyleOptionToolButtonITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleOptionToolButtonPTR().Pointer() + } + return nil +} + +func QStyleOptionToolButtonFromPointer(ptr unsafe.Pointer) *QStyleOptionToolButton { + var n = new(QStyleOptionToolButton) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleOptionToolButton) QStyleOptionToolButtonPTR() *QStyleOptionToolButton { + return ptr +} + +//QStyleOptionToolButton::StyleOptionType +type QStyleOptionToolButton__StyleOptionType int + +var ( + QStyleOptionToolButton__Type = QStyleOptionToolButton__StyleOptionType(QStyleOption__SO_ToolButton) +) + +//QStyleOptionToolButton::StyleOptionVersion +type QStyleOptionToolButton__StyleOptionVersion int + +var ( + QStyleOptionToolButton__Version = QStyleOptionToolButton__StyleOptionVersion(1) +) + +//QStyleOptionToolButton::ToolButtonFeature +type QStyleOptionToolButton__ToolButtonFeature int + +var ( + QStyleOptionToolButton__None = QStyleOptionToolButton__ToolButtonFeature(0x00) + QStyleOptionToolButton__Arrow = QStyleOptionToolButton__ToolButtonFeature(0x01) + QStyleOptionToolButton__Menu = QStyleOptionToolButton__ToolButtonFeature(0x04) + QStyleOptionToolButton__MenuButtonPopup = QStyleOptionToolButton__ToolButtonFeature(QStyleOptionToolButton__Menu) + QStyleOptionToolButton__PopupDelay = QStyleOptionToolButton__ToolButtonFeature(0x08) + QStyleOptionToolButton__HasMenu = QStyleOptionToolButton__ToolButtonFeature(0x10) +) + +func NewQStyleOptionToolButton() *QStyleOptionToolButton { + return QStyleOptionToolButtonFromPointer(unsafe.Pointer(C.QStyleOptionToolButton_NewQStyleOptionToolButton())) +} + +func NewQStyleOptionToolButton2(other QStyleOptionToolButtonITF) *QStyleOptionToolButton { + return QStyleOptionToolButtonFromPointer(unsafe.Pointer(C.QStyleOptionToolButton_NewQStyleOptionToolButton2(C.QtObjectPtr(PointerFromQStyleOptionToolButton(other))))) +} diff --git a/widgets/qstyleoptiontoolbutton.h b/widgets/qstyleoptiontoolbutton.h new file mode 100755 index 00000000..09fa8813 --- /dev/null +++ b/widgets/qstyleoptiontoolbutton.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStyleOptionToolButton_NewQStyleOptionToolButton(); +QtObjectPtr QStyleOptionToolButton_NewQStyleOptionToolButton2(QtObjectPtr other); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstyleoptionviewitem.cpp b/widgets/qstyleoptionviewitem.cpp new file mode 100755 index 00000000..15d7d891 --- /dev/null +++ b/widgets/qstyleoptionviewitem.cpp @@ -0,0 +1,22 @@ +#include "qstyleoptionviewitem.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStyleOptionViewItem: public QStyleOptionViewItem { +public: +}; + +QtObjectPtr QStyleOptionViewItem_NewQStyleOptionViewItem(){ + return new QStyleOptionViewItem(); +} + +QtObjectPtr QStyleOptionViewItem_NewQStyleOptionViewItem2(QtObjectPtr other){ + return new QStyleOptionViewItem(*static_cast(other)); +} + diff --git a/widgets/qstyleoptionviewitem.go b/widgets/qstyleoptionviewitem.go new file mode 100755 index 00000000..927dd56b --- /dev/null +++ b/widgets/qstyleoptionviewitem.go @@ -0,0 +1,88 @@ +package widgets + +//#include "qstyleoptionviewitem.h" +import "C" +import ( + "unsafe" +) + +type QStyleOptionViewItem struct { + QStyleOption +} + +type QStyleOptionViewItemITF interface { + QStyleOptionITF + QStyleOptionViewItemPTR() *QStyleOptionViewItem +} + +func PointerFromQStyleOptionViewItem(ptr QStyleOptionViewItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStyleOptionViewItemPTR().Pointer() + } + return nil +} + +func QStyleOptionViewItemFromPointer(ptr unsafe.Pointer) *QStyleOptionViewItem { + var n = new(QStyleOptionViewItem) + n.SetPointer(ptr) + return n +} + +func (ptr *QStyleOptionViewItem) QStyleOptionViewItemPTR() *QStyleOptionViewItem { + return ptr +} + +//QStyleOptionViewItem::Position +type QStyleOptionViewItem__Position int + +var ( + QStyleOptionViewItem__Left = QStyleOptionViewItem__Position(0) + QStyleOptionViewItem__Right = QStyleOptionViewItem__Position(1) + QStyleOptionViewItem__Top = QStyleOptionViewItem__Position(2) + QStyleOptionViewItem__Bottom = QStyleOptionViewItem__Position(3) +) + +//QStyleOptionViewItem::StyleOptionType +type QStyleOptionViewItem__StyleOptionType int + +var ( + QStyleOptionViewItem__Type = QStyleOptionViewItem__StyleOptionType(QStyleOption__SO_ViewItem) +) + +//QStyleOptionViewItem::StyleOptionVersion +type QStyleOptionViewItem__StyleOptionVersion int + +var ( + QStyleOptionViewItem__Version = QStyleOptionViewItem__StyleOptionVersion(4) +) + +//QStyleOptionViewItem::ViewItemFeature +type QStyleOptionViewItem__ViewItemFeature int + +var ( + QStyleOptionViewItem__None = QStyleOptionViewItem__ViewItemFeature(0x00) + QStyleOptionViewItem__WrapText = QStyleOptionViewItem__ViewItemFeature(0x01) + QStyleOptionViewItem__Alternate = QStyleOptionViewItem__ViewItemFeature(0x02) + QStyleOptionViewItem__HasCheckIndicator = QStyleOptionViewItem__ViewItemFeature(0x04) + QStyleOptionViewItem__HasDisplay = QStyleOptionViewItem__ViewItemFeature(0x08) + QStyleOptionViewItem__HasDecoration = QStyleOptionViewItem__ViewItemFeature(0x10) +) + +//QStyleOptionViewItem::ViewItemPosition +type QStyleOptionViewItem__ViewItemPosition int + +var ( + QStyleOptionViewItem__Invalid = QStyleOptionViewItem__ViewItemPosition(0) + QStyleOptionViewItem__Beginning = QStyleOptionViewItem__ViewItemPosition(1) + QStyleOptionViewItem__Middle = QStyleOptionViewItem__ViewItemPosition(2) + QStyleOptionViewItem__End = QStyleOptionViewItem__ViewItemPosition(3) + QStyleOptionViewItem__OnlyOne = QStyleOptionViewItem__ViewItemPosition(4) +) + +func NewQStyleOptionViewItem() *QStyleOptionViewItem { + return QStyleOptionViewItemFromPointer(unsafe.Pointer(C.QStyleOptionViewItem_NewQStyleOptionViewItem())) +} + +func NewQStyleOptionViewItem2(other QStyleOptionViewItemITF) *QStyleOptionViewItem { + return QStyleOptionViewItemFromPointer(unsafe.Pointer(C.QStyleOptionViewItem_NewQStyleOptionViewItem2(C.QtObjectPtr(PointerFromQStyleOptionViewItem(other))))) +} diff --git a/widgets/qstyleoptionviewitem.h b/widgets/qstyleoptionviewitem.h new file mode 100755 index 00000000..25687883 --- /dev/null +++ b/widgets/qstyleoptionviewitem.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStyleOptionViewItem_NewQStyleOptionViewItem(); +QtObjectPtr QStyleOptionViewItem_NewQStyleOptionViewItem2(QtObjectPtr other); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstylepainter.cpp b/widgets/qstylepainter.cpp new file mode 100755 index 00000000..5b0948bb --- /dev/null +++ b/widgets/qstylepainter.cpp @@ -0,0 +1,64 @@ +#include "qstylepainter.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStylePainter: public QStylePainter { +public: +}; + +QtObjectPtr QStylePainter_NewQStylePainter(){ + return new QStylePainter(); +} + +QtObjectPtr QStylePainter_NewQStylePainter3(QtObjectPtr pd, QtObjectPtr widget){ + return new QStylePainter(static_cast(pd), static_cast(widget)); +} + +QtObjectPtr QStylePainter_NewQStylePainter2(QtObjectPtr widget){ + return new QStylePainter(static_cast(widget)); +} + +int QStylePainter_Begin2(QtObjectPtr ptr, QtObjectPtr pd, QtObjectPtr widget){ + return static_cast(ptr)->begin(static_cast(pd), static_cast(widget)); +} + +int QStylePainter_Begin(QtObjectPtr ptr, QtObjectPtr widget){ + return static_cast(ptr)->begin(static_cast(widget)); +} + +void QStylePainter_DrawComplexControl(QtObjectPtr ptr, int cc, QtObjectPtr option){ + static_cast(ptr)->drawComplexControl(static_cast(cc), *static_cast(option)); +} + +void QStylePainter_DrawControl(QtObjectPtr ptr, int ce, QtObjectPtr option){ + static_cast(ptr)->drawControl(static_cast(ce), *static_cast(option)); +} + +void QStylePainter_DrawItemPixmap(QtObjectPtr ptr, QtObjectPtr rect, int flags, QtObjectPtr pixmap){ + static_cast(ptr)->drawItemPixmap(*static_cast(rect), flags, *static_cast(pixmap)); +} + +void QStylePainter_DrawItemText(QtObjectPtr ptr, QtObjectPtr rect, int flags, QtObjectPtr pal, int enabled, char* text, int textRole){ + static_cast(ptr)->drawItemText(*static_cast(rect), flags, *static_cast(pal), enabled != 0, QString(text), static_cast(textRole)); +} + +void QStylePainter_DrawPrimitive(QtObjectPtr ptr, int pe, QtObjectPtr option){ + static_cast(ptr)->drawPrimitive(static_cast(pe), *static_cast(option)); +} + +QtObjectPtr QStylePainter_Style(QtObjectPtr ptr){ + return static_cast(ptr)->style(); +} + diff --git a/widgets/qstylepainter.go b/widgets/qstylepainter.go new file mode 100755 index 00000000..60fccbcf --- /dev/null +++ b/widgets/qstylepainter.go @@ -0,0 +1,99 @@ +package widgets + +//#include "qstylepainter.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QStylePainter struct { + gui.QPainter +} + +type QStylePainterITF interface { + gui.QPainterITF + QStylePainterPTR() *QStylePainter +} + +func PointerFromQStylePainter(ptr QStylePainterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStylePainterPTR().Pointer() + } + return nil +} + +func QStylePainterFromPointer(ptr unsafe.Pointer) *QStylePainter { + var n = new(QStylePainter) + n.SetPointer(ptr) + return n +} + +func (ptr *QStylePainter) QStylePainterPTR() *QStylePainter { + return ptr +} + +func NewQStylePainter() *QStylePainter { + return QStylePainterFromPointer(unsafe.Pointer(C.QStylePainter_NewQStylePainter())) +} + +func NewQStylePainter3(pd gui.QPaintDeviceITF, widget QWidgetITF) *QStylePainter { + return QStylePainterFromPointer(unsafe.Pointer(C.QStylePainter_NewQStylePainter3(C.QtObjectPtr(gui.PointerFromQPaintDevice(pd)), C.QtObjectPtr(PointerFromQWidget(widget))))) +} + +func NewQStylePainter2(widget QWidgetITF) *QStylePainter { + return QStylePainterFromPointer(unsafe.Pointer(C.QStylePainter_NewQStylePainter2(C.QtObjectPtr(PointerFromQWidget(widget))))) +} + +func (ptr *QStylePainter) Begin2(pd gui.QPaintDeviceITF, widget QWidgetITF) bool { + if ptr.Pointer() != nil { + return C.QStylePainter_Begin2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPaintDevice(pd)), C.QtObjectPtr(PointerFromQWidget(widget))) != 0 + } + return false +} + +func (ptr *QStylePainter) Begin(widget QWidgetITF) bool { + if ptr.Pointer() != nil { + return C.QStylePainter_Begin(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) != 0 + } + return false +} + +func (ptr *QStylePainter) DrawComplexControl(cc QStyle__ComplexControl, option QStyleOptionComplexITF) { + if ptr.Pointer() != nil { + C.QStylePainter_DrawComplexControl(C.QtObjectPtr(ptr.Pointer()), C.int(cc), C.QtObjectPtr(PointerFromQStyleOptionComplex(option))) + } +} + +func (ptr *QStylePainter) DrawControl(ce QStyle__ControlElement, option QStyleOptionITF) { + if ptr.Pointer() != nil { + C.QStylePainter_DrawControl(C.QtObjectPtr(ptr.Pointer()), C.int(ce), C.QtObjectPtr(PointerFromQStyleOption(option))) + } +} + +func (ptr *QStylePainter) DrawItemPixmap(rect core.QRectITF, flags int, pixmap gui.QPixmapITF) { + if ptr.Pointer() != nil { + C.QStylePainter_DrawItemPixmap(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rect)), C.int(flags), C.QtObjectPtr(gui.PointerFromQPixmap(pixmap))) + } +} + +func (ptr *QStylePainter) DrawItemText(rect core.QRectITF, flags int, pal gui.QPaletteITF, enabled bool, text string, textRole gui.QPalette__ColorRole) { + if ptr.Pointer() != nil { + C.QStylePainter_DrawItemText(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rect)), C.int(flags), C.QtObjectPtr(gui.PointerFromQPalette(pal)), C.int(qt.GoBoolToInt(enabled)), C.CString(text), C.int(textRole)) + } +} + +func (ptr *QStylePainter) DrawPrimitive(pe QStyle__PrimitiveElement, option QStyleOptionITF) { + if ptr.Pointer() != nil { + C.QStylePainter_DrawPrimitive(C.QtObjectPtr(ptr.Pointer()), C.int(pe), C.QtObjectPtr(PointerFromQStyleOption(option))) + } +} + +func (ptr *QStylePainter) Style() *QStyle { + if ptr.Pointer() != nil { + return QStyleFromPointer(unsafe.Pointer(C.QStylePainter_Style(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} diff --git a/widgets/qstylepainter.h b/widgets/qstylepainter.h new file mode 100755 index 00000000..757753b6 --- /dev/null +++ b/widgets/qstylepainter.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStylePainter_NewQStylePainter(); +QtObjectPtr QStylePainter_NewQStylePainter3(QtObjectPtr pd, QtObjectPtr widget); +QtObjectPtr QStylePainter_NewQStylePainter2(QtObjectPtr widget); +int QStylePainter_Begin2(QtObjectPtr ptr, QtObjectPtr pd, QtObjectPtr widget); +int QStylePainter_Begin(QtObjectPtr ptr, QtObjectPtr widget); +void QStylePainter_DrawComplexControl(QtObjectPtr ptr, int cc, QtObjectPtr option); +void QStylePainter_DrawControl(QtObjectPtr ptr, int ce, QtObjectPtr option); +void QStylePainter_DrawItemPixmap(QtObjectPtr ptr, QtObjectPtr rect, int flags, QtObjectPtr pixmap); +void QStylePainter_DrawItemText(QtObjectPtr ptr, QtObjectPtr rect, int flags, QtObjectPtr pal, int enabled, char* text, int textRole); +void QStylePainter_DrawPrimitive(QtObjectPtr ptr, int pe, QtObjectPtr option); +QtObjectPtr QStylePainter_Style(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qstyleplugin.cpp b/widgets/qstyleplugin.cpp new file mode 100755 index 00000000..a08430c1 --- /dev/null +++ b/widgets/qstyleplugin.cpp @@ -0,0 +1,21 @@ +#include "qstyleplugin.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQStylePlugin: public QStylePlugin { +public: +}; + +QtObjectPtr QStylePlugin_Create(QtObjectPtr ptr, char* key){ + return static_cast(ptr)->create(QString(key)); +} + +void QStylePlugin_DestroyQStylePlugin(QtObjectPtr ptr){ + static_cast(ptr)->~QStylePlugin(); +} + diff --git a/widgets/qstyleplugin.go b/widgets/qstyleplugin.go new file mode 100755 index 00000000..1bc764db --- /dev/null +++ b/widgets/qstyleplugin.go @@ -0,0 +1,52 @@ +package widgets + +//#include "qstyleplugin.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QStylePlugin struct { + core.QObject +} + +type QStylePluginITF interface { + core.QObjectITF + QStylePluginPTR() *QStylePlugin +} + +func PointerFromQStylePlugin(ptr QStylePluginITF) unsafe.Pointer { + if ptr != nil { + return ptr.QStylePluginPTR().Pointer() + } + return nil +} + +func QStylePluginFromPointer(ptr unsafe.Pointer) *QStylePlugin { + var n = new(QStylePlugin) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QStylePlugin_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QStylePlugin) QStylePluginPTR() *QStylePlugin { + return ptr +} + +func (ptr *QStylePlugin) Create(key string) *QStyle { + if ptr.Pointer() != nil { + return QStyleFromPointer(unsafe.Pointer(C.QStylePlugin_Create(C.QtObjectPtr(ptr.Pointer()), C.CString(key)))) + } + return nil +} + +func (ptr *QStylePlugin) DestroyQStylePlugin() { + if ptr.Pointer() != nil { + C.QStylePlugin_DestroyQStylePlugin(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qstyleplugin.h b/widgets/qstyleplugin.h new file mode 100755 index 00000000..bd055f40 --- /dev/null +++ b/widgets/qstyleplugin.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QStylePlugin_Create(QtObjectPtr ptr, char* key); +void QStylePlugin_DestroyQStylePlugin(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qswipegesture.cpp b/widgets/qswipegesture.cpp new file mode 100755 index 00000000..cf9bca38 --- /dev/null +++ b/widgets/qswipegesture.cpp @@ -0,0 +1,24 @@ +#include "qswipegesture.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSwipeGesture: public QSwipeGesture { +public: +}; + +int QSwipeGesture_HorizontalDirection(QtObjectPtr ptr){ + return static_cast(ptr)->horizontalDirection(); +} + +int QSwipeGesture_VerticalDirection(QtObjectPtr ptr){ + return static_cast(ptr)->verticalDirection(); +} + +void QSwipeGesture_DestroyQSwipeGesture(QtObjectPtr ptr){ + static_cast(ptr)->~QSwipeGesture(); +} + diff --git a/widgets/qswipegesture.go b/widgets/qswipegesture.go new file mode 100755 index 00000000..80d83aa4 --- /dev/null +++ b/widgets/qswipegesture.go @@ -0,0 +1,69 @@ +package widgets + +//#include "qswipegesture.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QSwipeGesture struct { + QGesture +} + +type QSwipeGestureITF interface { + QGestureITF + QSwipeGesturePTR() *QSwipeGesture +} + +func PointerFromQSwipeGesture(ptr QSwipeGestureITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSwipeGesturePTR().Pointer() + } + return nil +} + +func QSwipeGestureFromPointer(ptr unsafe.Pointer) *QSwipeGesture { + var n = new(QSwipeGesture) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSwipeGesture_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSwipeGesture) QSwipeGesturePTR() *QSwipeGesture { + return ptr +} + +//QSwipeGesture::SwipeDirection +type QSwipeGesture__SwipeDirection int + +var ( + QSwipeGesture__NoDirection = QSwipeGesture__SwipeDirection(0) + QSwipeGesture__Left = QSwipeGesture__SwipeDirection(1) + QSwipeGesture__Right = QSwipeGesture__SwipeDirection(2) + QSwipeGesture__Up = QSwipeGesture__SwipeDirection(3) + QSwipeGesture__Down = QSwipeGesture__SwipeDirection(4) +) + +func (ptr *QSwipeGesture) HorizontalDirection() QSwipeGesture__SwipeDirection { + if ptr.Pointer() != nil { + return QSwipeGesture__SwipeDirection(C.QSwipeGesture_HorizontalDirection(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSwipeGesture) VerticalDirection() QSwipeGesture__SwipeDirection { + if ptr.Pointer() != nil { + return QSwipeGesture__SwipeDirection(C.QSwipeGesture_VerticalDirection(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QSwipeGesture) DestroyQSwipeGesture() { + if ptr.Pointer() != nil { + C.QSwipeGesture_DestroyQSwipeGesture(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qswipegesture.h b/widgets/qswipegesture.h new file mode 100755 index 00000000..2be73a56 --- /dev/null +++ b/widgets/qswipegesture.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QSwipeGesture_HorizontalDirection(QtObjectPtr ptr); +int QSwipeGesture_VerticalDirection(QtObjectPtr ptr); +void QSwipeGesture_DestroyQSwipeGesture(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qsystemtrayicon.cpp b/widgets/qsystemtrayicon.cpp new file mode 100755 index 00000000..39e65ccb --- /dev/null +++ b/widgets/qsystemtrayicon.cpp @@ -0,0 +1,94 @@ +#include "qsystemtrayicon.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSystemTrayIcon: public QSystemTrayIcon { +public: +void Signal_Activated(QSystemTrayIcon::ActivationReason reason){callbackQSystemTrayIconActivated(this->objectName().toUtf8().data(), reason);}; +void Signal_MessageClicked(){callbackQSystemTrayIconMessageClicked(this->objectName().toUtf8().data());}; +}; + +int QSystemTrayIcon_IsVisible(QtObjectPtr ptr){ + return static_cast(ptr)->isVisible(); +} + +void QSystemTrayIcon_SetIcon(QtObjectPtr ptr, QtObjectPtr icon){ + static_cast(ptr)->setIcon(*static_cast(icon)); +} + +void QSystemTrayIcon_SetToolTip(QtObjectPtr ptr, char* tip){ + static_cast(ptr)->setToolTip(QString(tip)); +} + +void QSystemTrayIcon_SetVisible(QtObjectPtr ptr, int visible){ + QMetaObject::invokeMethod(static_cast(ptr), "setVisible", Q_ARG(bool, visible != 0)); +} + +void QSystemTrayIcon_ShowMessage(QtObjectPtr ptr, char* title, char* message, int icon, int millisecondsTimeoutHint){ + QMetaObject::invokeMethod(static_cast(ptr), "showMessage", Q_ARG(QString, QString(title)), Q_ARG(QString, QString(message)), Q_ARG(QSystemTrayIcon::MessageIcon, static_cast(icon)), Q_ARG(int, millisecondsTimeoutHint)); +} + +char* QSystemTrayIcon_ToolTip(QtObjectPtr ptr){ + return static_cast(ptr)->toolTip().toUtf8().data(); +} + +QtObjectPtr QSystemTrayIcon_NewQSystemTrayIcon(QtObjectPtr parent){ + return new QSystemTrayIcon(static_cast(parent)); +} + +QtObjectPtr QSystemTrayIcon_NewQSystemTrayIcon2(QtObjectPtr icon, QtObjectPtr parent){ + return new QSystemTrayIcon(*static_cast(icon), static_cast(parent)); +} + +void QSystemTrayIcon_ConnectActivated(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSystemTrayIcon::activated), static_cast(ptr), static_cast(&MyQSystemTrayIcon::Signal_Activated));; +} + +void QSystemTrayIcon_DisconnectActivated(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSystemTrayIcon::activated), static_cast(ptr), static_cast(&MyQSystemTrayIcon::Signal_Activated));; +} + +QtObjectPtr QSystemTrayIcon_ContextMenu(QtObjectPtr ptr){ + return static_cast(ptr)->contextMenu(); +} + +void QSystemTrayIcon_Hide(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "hide"); +} + +int QSystemTrayIcon_QSystemTrayIcon_IsSystemTrayAvailable(){ + return QSystemTrayIcon::isSystemTrayAvailable(); +} + +void QSystemTrayIcon_ConnectMessageClicked(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QSystemTrayIcon::messageClicked), static_cast(ptr), static_cast(&MyQSystemTrayIcon::Signal_MessageClicked));; +} + +void QSystemTrayIcon_DisconnectMessageClicked(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QSystemTrayIcon::messageClicked), static_cast(ptr), static_cast(&MyQSystemTrayIcon::Signal_MessageClicked));; +} + +void QSystemTrayIcon_SetContextMenu(QtObjectPtr ptr, QtObjectPtr menu){ + static_cast(ptr)->setContextMenu(static_cast(menu)); +} + +void QSystemTrayIcon_Show(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "show"); +} + +int QSystemTrayIcon_QSystemTrayIcon_SupportsMessages(){ + return QSystemTrayIcon::supportsMessages(); +} + +void QSystemTrayIcon_DestroyQSystemTrayIcon(QtObjectPtr ptr){ + static_cast(ptr)->~QSystemTrayIcon(); +} + diff --git a/widgets/qsystemtrayicon.go b/widgets/qsystemtrayicon.go new file mode 100755 index 00000000..de12a554 --- /dev/null +++ b/widgets/qsystemtrayicon.go @@ -0,0 +1,184 @@ +package widgets + +//#include "qsystemtrayicon.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QSystemTrayIcon struct { + core.QObject +} + +type QSystemTrayIconITF interface { + core.QObjectITF + QSystemTrayIconPTR() *QSystemTrayIcon +} + +func PointerFromQSystemTrayIcon(ptr QSystemTrayIconITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSystemTrayIconPTR().Pointer() + } + return nil +} + +func QSystemTrayIconFromPointer(ptr unsafe.Pointer) *QSystemTrayIcon { + var n = new(QSystemTrayIcon) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QSystemTrayIcon_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QSystemTrayIcon) QSystemTrayIconPTR() *QSystemTrayIcon { + return ptr +} + +//QSystemTrayIcon::ActivationReason +type QSystemTrayIcon__ActivationReason int + +var ( + QSystemTrayIcon__Unknown = QSystemTrayIcon__ActivationReason(0) + QSystemTrayIcon__Context = QSystemTrayIcon__ActivationReason(1) + QSystemTrayIcon__DoubleClick = QSystemTrayIcon__ActivationReason(2) + QSystemTrayIcon__Trigger = QSystemTrayIcon__ActivationReason(3) + QSystemTrayIcon__MiddleClick = QSystemTrayIcon__ActivationReason(4) +) + +//QSystemTrayIcon::MessageIcon +type QSystemTrayIcon__MessageIcon int + +var ( + QSystemTrayIcon__NoIcon = QSystemTrayIcon__MessageIcon(0) + QSystemTrayIcon__Information = QSystemTrayIcon__MessageIcon(1) + QSystemTrayIcon__Warning = QSystemTrayIcon__MessageIcon(2) + QSystemTrayIcon__Critical = QSystemTrayIcon__MessageIcon(3) +) + +func (ptr *QSystemTrayIcon) IsVisible() bool { + if ptr.Pointer() != nil { + return C.QSystemTrayIcon_IsVisible(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSystemTrayIcon) SetIcon(icon gui.QIconITF) { + if ptr.Pointer() != nil { + C.QSystemTrayIcon_SetIcon(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQIcon(icon))) + } +} + +func (ptr *QSystemTrayIcon) SetToolTip(tip string) { + if ptr.Pointer() != nil { + C.QSystemTrayIcon_SetToolTip(C.QtObjectPtr(ptr.Pointer()), C.CString(tip)) + } +} + +func (ptr *QSystemTrayIcon) SetVisible(visible bool) { + if ptr.Pointer() != nil { + C.QSystemTrayIcon_SetVisible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(visible))) + } +} + +func (ptr *QSystemTrayIcon) ShowMessage(title string, message string, icon QSystemTrayIcon__MessageIcon, millisecondsTimeoutHint int) { + if ptr.Pointer() != nil { + C.QSystemTrayIcon_ShowMessage(C.QtObjectPtr(ptr.Pointer()), C.CString(title), C.CString(message), C.int(icon), C.int(millisecondsTimeoutHint)) + } +} + +func (ptr *QSystemTrayIcon) ToolTip() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSystemTrayIcon_ToolTip(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func NewQSystemTrayIcon(parent core.QObjectITF) *QSystemTrayIcon { + return QSystemTrayIconFromPointer(unsafe.Pointer(C.QSystemTrayIcon_NewQSystemTrayIcon(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func NewQSystemTrayIcon2(icon gui.QIconITF, parent core.QObjectITF) *QSystemTrayIcon { + return QSystemTrayIconFromPointer(unsafe.Pointer(C.QSystemTrayIcon_NewQSystemTrayIcon2(C.QtObjectPtr(gui.PointerFromQIcon(icon)), C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QSystemTrayIcon) ConnectActivated(f func(reason QSystemTrayIcon__ActivationReason)) { + if ptr.Pointer() != nil { + C.QSystemTrayIcon_ConnectActivated(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "activated", f) + } +} + +func (ptr *QSystemTrayIcon) DisconnectActivated() { + if ptr.Pointer() != nil { + C.QSystemTrayIcon_DisconnectActivated(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "activated") + } +} + +//export callbackQSystemTrayIconActivated +func callbackQSystemTrayIconActivated(ptrName *C.char, reason C.int) { + qt.GetSignal(C.GoString(ptrName), "activated").(func(QSystemTrayIcon__ActivationReason))(QSystemTrayIcon__ActivationReason(reason)) +} + +func (ptr *QSystemTrayIcon) ContextMenu() *QMenu { + if ptr.Pointer() != nil { + return QMenuFromPointer(unsafe.Pointer(C.QSystemTrayIcon_ContextMenu(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QSystemTrayIcon) Hide() { + if ptr.Pointer() != nil { + C.QSystemTrayIcon_Hide(C.QtObjectPtr(ptr.Pointer())) + } +} + +func QSystemTrayIcon_IsSystemTrayAvailable() bool { + return C.QSystemTrayIcon_QSystemTrayIcon_IsSystemTrayAvailable() != 0 +} + +func (ptr *QSystemTrayIcon) ConnectMessageClicked(f func()) { + if ptr.Pointer() != nil { + C.QSystemTrayIcon_ConnectMessageClicked(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "messageClicked", f) + } +} + +func (ptr *QSystemTrayIcon) DisconnectMessageClicked() { + if ptr.Pointer() != nil { + C.QSystemTrayIcon_DisconnectMessageClicked(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "messageClicked") + } +} + +//export callbackQSystemTrayIconMessageClicked +func callbackQSystemTrayIconMessageClicked(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "messageClicked").(func())() +} + +func (ptr *QSystemTrayIcon) SetContextMenu(menu QMenuITF) { + if ptr.Pointer() != nil { + C.QSystemTrayIcon_SetContextMenu(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMenu(menu))) + } +} + +func (ptr *QSystemTrayIcon) Show() { + if ptr.Pointer() != nil { + C.QSystemTrayIcon_Show(C.QtObjectPtr(ptr.Pointer())) + } +} + +func QSystemTrayIcon_SupportsMessages() bool { + return C.QSystemTrayIcon_QSystemTrayIcon_SupportsMessages() != 0 +} + +func (ptr *QSystemTrayIcon) DestroyQSystemTrayIcon() { + if ptr.Pointer() != nil { + C.QSystemTrayIcon_DestroyQSystemTrayIcon(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qsystemtrayicon.h b/widgets/qsystemtrayicon.h new file mode 100755 index 00000000..539213dc --- /dev/null +++ b/widgets/qsystemtrayicon.h @@ -0,0 +1,28 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QSystemTrayIcon_IsVisible(QtObjectPtr ptr); +void QSystemTrayIcon_SetIcon(QtObjectPtr ptr, QtObjectPtr icon); +void QSystemTrayIcon_SetToolTip(QtObjectPtr ptr, char* tip); +void QSystemTrayIcon_SetVisible(QtObjectPtr ptr, int visible); +void QSystemTrayIcon_ShowMessage(QtObjectPtr ptr, char* title, char* message, int icon, int millisecondsTimeoutHint); +char* QSystemTrayIcon_ToolTip(QtObjectPtr ptr); +QtObjectPtr QSystemTrayIcon_NewQSystemTrayIcon(QtObjectPtr parent); +QtObjectPtr QSystemTrayIcon_NewQSystemTrayIcon2(QtObjectPtr icon, QtObjectPtr parent); +void QSystemTrayIcon_ConnectActivated(QtObjectPtr ptr); +void QSystemTrayIcon_DisconnectActivated(QtObjectPtr ptr); +QtObjectPtr QSystemTrayIcon_ContextMenu(QtObjectPtr ptr); +void QSystemTrayIcon_Hide(QtObjectPtr ptr); +int QSystemTrayIcon_QSystemTrayIcon_IsSystemTrayAvailable(); +void QSystemTrayIcon_ConnectMessageClicked(QtObjectPtr ptr); +void QSystemTrayIcon_DisconnectMessageClicked(QtObjectPtr ptr); +void QSystemTrayIcon_SetContextMenu(QtObjectPtr ptr, QtObjectPtr menu); +void QSystemTrayIcon_Show(QtObjectPtr ptr); +int QSystemTrayIcon_QSystemTrayIcon_SupportsMessages(); +void QSystemTrayIcon_DestroyQSystemTrayIcon(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qtabbar.cpp b/widgets/qtabbar.cpp new file mode 100755 index 00000000..594d46b8 --- /dev/null +++ b/widgets/qtabbar.cpp @@ -0,0 +1,260 @@ +#include "qtabbar.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTabBar: public QTabBar { +public: +void Signal_CurrentChanged(int index){callbackQTabBarCurrentChanged(this->objectName().toUtf8().data(), index);}; +void Signal_TabBarClicked(int index){callbackQTabBarTabBarClicked(this->objectName().toUtf8().data(), index);}; +void Signal_TabBarDoubleClicked(int index){callbackQTabBarTabBarDoubleClicked(this->objectName().toUtf8().data(), index);}; +void Signal_TabCloseRequested(int index){callbackQTabBarTabCloseRequested(this->objectName().toUtf8().data(), index);}; +void Signal_TabMoved(int from, int to){callbackQTabBarTabMoved(this->objectName().toUtf8().data(), from, to);}; +}; + +int QTabBar_AutoHide(QtObjectPtr ptr){ + return static_cast(ptr)->autoHide(); +} + +int QTabBar_ChangeCurrentOnDrag(QtObjectPtr ptr){ + return static_cast(ptr)->changeCurrentOnDrag(); +} + +int QTabBar_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +int QTabBar_CurrentIndex(QtObjectPtr ptr){ + return static_cast(ptr)->currentIndex(); +} + +int QTabBar_DocumentMode(QtObjectPtr ptr){ + return static_cast(ptr)->documentMode(); +} + +int QTabBar_DrawBase(QtObjectPtr ptr){ + return static_cast(ptr)->drawBase(); +} + +int QTabBar_ElideMode(QtObjectPtr ptr){ + return static_cast(ptr)->elideMode(); +} + +int QTabBar_Expanding(QtObjectPtr ptr){ + return static_cast(ptr)->expanding(); +} + +int QTabBar_IsMovable(QtObjectPtr ptr){ + return static_cast(ptr)->isMovable(); +} + +int QTabBar_SelectionBehaviorOnRemove(QtObjectPtr ptr){ + return static_cast(ptr)->selectionBehaviorOnRemove(); +} + +void QTabBar_SetAutoHide(QtObjectPtr ptr, int hide){ + static_cast(ptr)->setAutoHide(hide != 0); +} + +void QTabBar_SetChangeCurrentOnDrag(QtObjectPtr ptr, int change){ + static_cast(ptr)->setChangeCurrentOnDrag(change != 0); +} + +void QTabBar_SetCurrentIndex(QtObjectPtr ptr, int index){ + QMetaObject::invokeMethod(static_cast(ptr), "setCurrentIndex", Q_ARG(int, index)); +} + +void QTabBar_SetDocumentMode(QtObjectPtr ptr, int set){ + static_cast(ptr)->setDocumentMode(set != 0); +} + +void QTabBar_SetDrawBase(QtObjectPtr ptr, int drawTheBase){ + static_cast(ptr)->setDrawBase(drawTheBase != 0); +} + +void QTabBar_SetElideMode(QtObjectPtr ptr, int v){ + static_cast(ptr)->setElideMode(static_cast(v)); +} + +void QTabBar_SetExpanding(QtObjectPtr ptr, int enabled){ + static_cast(ptr)->setExpanding(enabled != 0); +} + +void QTabBar_SetIconSize(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->setIconSize(*static_cast(size)); +} + +void QTabBar_SetMovable(QtObjectPtr ptr, int movable){ + static_cast(ptr)->setMovable(movable != 0); +} + +void QTabBar_SetSelectionBehaviorOnRemove(QtObjectPtr ptr, int behavior){ + static_cast(ptr)->setSelectionBehaviorOnRemove(static_cast(behavior)); +} + +void QTabBar_SetShape(QtObjectPtr ptr, int shape){ + static_cast(ptr)->setShape(static_cast(shape)); +} + +void QTabBar_SetTabsClosable(QtObjectPtr ptr, int closable){ + static_cast(ptr)->setTabsClosable(closable != 0); +} + +void QTabBar_SetUsesScrollButtons(QtObjectPtr ptr, int useButtons){ + static_cast(ptr)->setUsesScrollButtons(useButtons != 0); +} + +int QTabBar_Shape(QtObjectPtr ptr){ + return static_cast(ptr)->shape(); +} + +int QTabBar_TabsClosable(QtObjectPtr ptr){ + return static_cast(ptr)->tabsClosable(); +} + +int QTabBar_UsesScrollButtons(QtObjectPtr ptr){ + return static_cast(ptr)->usesScrollButtons(); +} + +QtObjectPtr QTabBar_NewQTabBar(QtObjectPtr parent){ + return new QTabBar(static_cast(parent)); +} + +int QTabBar_AddTab2(QtObjectPtr ptr, QtObjectPtr icon, char* text){ + return static_cast(ptr)->addTab(*static_cast(icon), QString(text)); +} + +int QTabBar_AddTab(QtObjectPtr ptr, char* text){ + return static_cast(ptr)->addTab(QString(text)); +} + +void QTabBar_ConnectCurrentChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTabBar::currentChanged), static_cast(ptr), static_cast(&MyQTabBar::Signal_CurrentChanged));; +} + +void QTabBar_DisconnectCurrentChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTabBar::currentChanged), static_cast(ptr), static_cast(&MyQTabBar::Signal_CurrentChanged));; +} + +int QTabBar_InsertTab2(QtObjectPtr ptr, int index, QtObjectPtr icon, char* text){ + return static_cast(ptr)->insertTab(index, *static_cast(icon), QString(text)); +} + +int QTabBar_InsertTab(QtObjectPtr ptr, int index, char* text){ + return static_cast(ptr)->insertTab(index, QString(text)); +} + +int QTabBar_IsTabEnabled(QtObjectPtr ptr, int index){ + return static_cast(ptr)->isTabEnabled(index); +} + +void QTabBar_MoveTab(QtObjectPtr ptr, int from, int to){ + static_cast(ptr)->moveTab(from, to); +} + +void QTabBar_RemoveTab(QtObjectPtr ptr, int index){ + static_cast(ptr)->removeTab(index); +} + +void QTabBar_SetTabButton(QtObjectPtr ptr, int index, int position, QtObjectPtr widget){ + static_cast(ptr)->setTabButton(index, static_cast(position), static_cast(widget)); +} + +void QTabBar_SetTabData(QtObjectPtr ptr, int index, char* data){ + static_cast(ptr)->setTabData(index, QVariant(data)); +} + +void QTabBar_SetTabEnabled(QtObjectPtr ptr, int index, int enabled){ + static_cast(ptr)->setTabEnabled(index, enabled != 0); +} + +void QTabBar_SetTabIcon(QtObjectPtr ptr, int index, QtObjectPtr icon){ + static_cast(ptr)->setTabIcon(index, *static_cast(icon)); +} + +void QTabBar_SetTabText(QtObjectPtr ptr, int index, char* text){ + static_cast(ptr)->setTabText(index, QString(text)); +} + +void QTabBar_SetTabTextColor(QtObjectPtr ptr, int index, QtObjectPtr color){ + static_cast(ptr)->setTabTextColor(index, *static_cast(color)); +} + +void QTabBar_SetTabToolTip(QtObjectPtr ptr, int index, char* tip){ + static_cast(ptr)->setTabToolTip(index, QString(tip)); +} + +void QTabBar_SetTabWhatsThis(QtObjectPtr ptr, int index, char* text){ + static_cast(ptr)->setTabWhatsThis(index, QString(text)); +} + +int QTabBar_TabAt(QtObjectPtr ptr, QtObjectPtr position){ + return static_cast(ptr)->tabAt(*static_cast(position)); +} + +void QTabBar_ConnectTabBarClicked(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTabBar::tabBarClicked), static_cast(ptr), static_cast(&MyQTabBar::Signal_TabBarClicked));; +} + +void QTabBar_DisconnectTabBarClicked(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTabBar::tabBarClicked), static_cast(ptr), static_cast(&MyQTabBar::Signal_TabBarClicked));; +} + +void QTabBar_ConnectTabBarDoubleClicked(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTabBar::tabBarDoubleClicked), static_cast(ptr), static_cast(&MyQTabBar::Signal_TabBarDoubleClicked));; +} + +void QTabBar_DisconnectTabBarDoubleClicked(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTabBar::tabBarDoubleClicked), static_cast(ptr), static_cast(&MyQTabBar::Signal_TabBarDoubleClicked));; +} + +QtObjectPtr QTabBar_TabButton(QtObjectPtr ptr, int index, int position){ + return static_cast(ptr)->tabButton(index, static_cast(position)); +} + +void QTabBar_ConnectTabCloseRequested(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTabBar::tabCloseRequested), static_cast(ptr), static_cast(&MyQTabBar::Signal_TabCloseRequested));; +} + +void QTabBar_DisconnectTabCloseRequested(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTabBar::tabCloseRequested), static_cast(ptr), static_cast(&MyQTabBar::Signal_TabCloseRequested));; +} + +char* QTabBar_TabData(QtObjectPtr ptr, int index){ + return static_cast(ptr)->tabData(index).toString().toUtf8().data(); +} + +void QTabBar_ConnectTabMoved(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTabBar::tabMoved), static_cast(ptr), static_cast(&MyQTabBar::Signal_TabMoved));; +} + +void QTabBar_DisconnectTabMoved(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTabBar::tabMoved), static_cast(ptr), static_cast(&MyQTabBar::Signal_TabMoved));; +} + +char* QTabBar_TabText(QtObjectPtr ptr, int index){ + return static_cast(ptr)->tabText(index).toUtf8().data(); +} + +char* QTabBar_TabToolTip(QtObjectPtr ptr, int index){ + return static_cast(ptr)->tabToolTip(index).toUtf8().data(); +} + +char* QTabBar_TabWhatsThis(QtObjectPtr ptr, int index){ + return static_cast(ptr)->tabWhatsThis(index).toUtf8().data(); +} + +void QTabBar_DestroyQTabBar(QtObjectPtr ptr){ + static_cast(ptr)->~QTabBar(); +} + diff --git a/widgets/qtabbar.go b/widgets/qtabbar.go new file mode 100755 index 00000000..63d5700b --- /dev/null +++ b/widgets/qtabbar.go @@ -0,0 +1,482 @@ +package widgets + +//#include "qtabbar.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QTabBar struct { + QWidget +} + +type QTabBarITF interface { + QWidgetITF + QTabBarPTR() *QTabBar +} + +func PointerFromQTabBar(ptr QTabBarITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTabBarPTR().Pointer() + } + return nil +} + +func QTabBarFromPointer(ptr unsafe.Pointer) *QTabBar { + var n = new(QTabBar) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QTabBar_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QTabBar) QTabBarPTR() *QTabBar { + return ptr +} + +//QTabBar::ButtonPosition +type QTabBar__ButtonPosition int + +var ( + QTabBar__LeftSide = QTabBar__ButtonPosition(0) + QTabBar__RightSide = QTabBar__ButtonPosition(1) +) + +//QTabBar::SelectionBehavior +type QTabBar__SelectionBehavior int + +var ( + QTabBar__SelectLeftTab = QTabBar__SelectionBehavior(0) + QTabBar__SelectRightTab = QTabBar__SelectionBehavior(1) + QTabBar__SelectPreviousTab = QTabBar__SelectionBehavior(2) +) + +//QTabBar::Shape +type QTabBar__Shape int + +var ( + QTabBar__RoundedNorth = QTabBar__Shape(0) + QTabBar__RoundedSouth = QTabBar__Shape(1) + QTabBar__RoundedWest = QTabBar__Shape(2) + QTabBar__RoundedEast = QTabBar__Shape(3) + QTabBar__TriangularNorth = QTabBar__Shape(4) + QTabBar__TriangularSouth = QTabBar__Shape(5) + QTabBar__TriangularWest = QTabBar__Shape(6) + QTabBar__TriangularEast = QTabBar__Shape(7) +) + +func (ptr *QTabBar) AutoHide() bool { + if ptr.Pointer() != nil { + return C.QTabBar_AutoHide(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTabBar) ChangeCurrentOnDrag() bool { + if ptr.Pointer() != nil { + return C.QTabBar_ChangeCurrentOnDrag(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTabBar) Count() int { + if ptr.Pointer() != nil { + return int(C.QTabBar_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTabBar) CurrentIndex() int { + if ptr.Pointer() != nil { + return int(C.QTabBar_CurrentIndex(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTabBar) DocumentMode() bool { + if ptr.Pointer() != nil { + return C.QTabBar_DocumentMode(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTabBar) DrawBase() bool { + if ptr.Pointer() != nil { + return C.QTabBar_DrawBase(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTabBar) ElideMode() core.Qt__TextElideMode { + if ptr.Pointer() != nil { + return core.Qt__TextElideMode(C.QTabBar_ElideMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTabBar) Expanding() bool { + if ptr.Pointer() != nil { + return C.QTabBar_Expanding(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTabBar) IsMovable() bool { + if ptr.Pointer() != nil { + return C.QTabBar_IsMovable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTabBar) SelectionBehaviorOnRemove() QTabBar__SelectionBehavior { + if ptr.Pointer() != nil { + return QTabBar__SelectionBehavior(C.QTabBar_SelectionBehaviorOnRemove(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTabBar) SetAutoHide(hide bool) { + if ptr.Pointer() != nil { + C.QTabBar_SetAutoHide(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(hide))) + } +} + +func (ptr *QTabBar) SetChangeCurrentOnDrag(change bool) { + if ptr.Pointer() != nil { + C.QTabBar_SetChangeCurrentOnDrag(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(change))) + } +} + +func (ptr *QTabBar) SetCurrentIndex(index int) { + if ptr.Pointer() != nil { + C.QTabBar_SetCurrentIndex(C.QtObjectPtr(ptr.Pointer()), C.int(index)) + } +} + +func (ptr *QTabBar) SetDocumentMode(set bool) { + if ptr.Pointer() != nil { + C.QTabBar_SetDocumentMode(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(set))) + } +} + +func (ptr *QTabBar) SetDrawBase(drawTheBase bool) { + if ptr.Pointer() != nil { + C.QTabBar_SetDrawBase(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(drawTheBase))) + } +} + +func (ptr *QTabBar) SetElideMode(v core.Qt__TextElideMode) { + if ptr.Pointer() != nil { + C.QTabBar_SetElideMode(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QTabBar) SetExpanding(enabled bool) { + if ptr.Pointer() != nil { + C.QTabBar_SetExpanding(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QTabBar) SetIconSize(size core.QSizeITF) { + if ptr.Pointer() != nil { + C.QTabBar_SetIconSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(size))) + } +} + +func (ptr *QTabBar) SetMovable(movable bool) { + if ptr.Pointer() != nil { + C.QTabBar_SetMovable(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(movable))) + } +} + +func (ptr *QTabBar) SetSelectionBehaviorOnRemove(behavior QTabBar__SelectionBehavior) { + if ptr.Pointer() != nil { + C.QTabBar_SetSelectionBehaviorOnRemove(C.QtObjectPtr(ptr.Pointer()), C.int(behavior)) + } +} + +func (ptr *QTabBar) SetShape(shape QTabBar__Shape) { + if ptr.Pointer() != nil { + C.QTabBar_SetShape(C.QtObjectPtr(ptr.Pointer()), C.int(shape)) + } +} + +func (ptr *QTabBar) SetTabsClosable(closable bool) { + if ptr.Pointer() != nil { + C.QTabBar_SetTabsClosable(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(closable))) + } +} + +func (ptr *QTabBar) SetUsesScrollButtons(useButtons bool) { + if ptr.Pointer() != nil { + C.QTabBar_SetUsesScrollButtons(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(useButtons))) + } +} + +func (ptr *QTabBar) Shape() QTabBar__Shape { + if ptr.Pointer() != nil { + return QTabBar__Shape(C.QTabBar_Shape(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTabBar) TabsClosable() bool { + if ptr.Pointer() != nil { + return C.QTabBar_TabsClosable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTabBar) UsesScrollButtons() bool { + if ptr.Pointer() != nil { + return C.QTabBar_UsesScrollButtons(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func NewQTabBar(parent QWidgetITF) *QTabBar { + return QTabBarFromPointer(unsafe.Pointer(C.QTabBar_NewQTabBar(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QTabBar) AddTab2(icon gui.QIconITF, text string) int { + if ptr.Pointer() != nil { + return int(C.QTabBar_AddTab2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQIcon(icon)), C.CString(text))) + } + return 0 +} + +func (ptr *QTabBar) AddTab(text string) int { + if ptr.Pointer() != nil { + return int(C.QTabBar_AddTab(C.QtObjectPtr(ptr.Pointer()), C.CString(text))) + } + return 0 +} + +func (ptr *QTabBar) ConnectCurrentChanged(f func(index int)) { + if ptr.Pointer() != nil { + C.QTabBar_ConnectCurrentChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "currentChanged", f) + } +} + +func (ptr *QTabBar) DisconnectCurrentChanged() { + if ptr.Pointer() != nil { + C.QTabBar_DisconnectCurrentChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "currentChanged") + } +} + +//export callbackQTabBarCurrentChanged +func callbackQTabBarCurrentChanged(ptrName *C.char, index C.int) { + qt.GetSignal(C.GoString(ptrName), "currentChanged").(func(int))(int(index)) +} + +func (ptr *QTabBar) InsertTab2(index int, icon gui.QIconITF, text string) int { + if ptr.Pointer() != nil { + return int(C.QTabBar_InsertTab2(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.QtObjectPtr(gui.PointerFromQIcon(icon)), C.CString(text))) + } + return 0 +} + +func (ptr *QTabBar) InsertTab(index int, text string) int { + if ptr.Pointer() != nil { + return int(C.QTabBar_InsertTab(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.CString(text))) + } + return 0 +} + +func (ptr *QTabBar) IsTabEnabled(index int) bool { + if ptr.Pointer() != nil { + return C.QTabBar_IsTabEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(index)) != 0 + } + return false +} + +func (ptr *QTabBar) MoveTab(from int, to int) { + if ptr.Pointer() != nil { + C.QTabBar_MoveTab(C.QtObjectPtr(ptr.Pointer()), C.int(from), C.int(to)) + } +} + +func (ptr *QTabBar) RemoveTab(index int) { + if ptr.Pointer() != nil { + C.QTabBar_RemoveTab(C.QtObjectPtr(ptr.Pointer()), C.int(index)) + } +} + +func (ptr *QTabBar) SetTabButton(index int, position QTabBar__ButtonPosition, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QTabBar_SetTabButton(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.int(position), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QTabBar) SetTabData(index int, data string) { + if ptr.Pointer() != nil { + C.QTabBar_SetTabData(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.CString(data)) + } +} + +func (ptr *QTabBar) SetTabEnabled(index int, enabled bool) { + if ptr.Pointer() != nil { + C.QTabBar_SetTabEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QTabBar) SetTabIcon(index int, icon gui.QIconITF) { + if ptr.Pointer() != nil { + C.QTabBar_SetTabIcon(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.QtObjectPtr(gui.PointerFromQIcon(icon))) + } +} + +func (ptr *QTabBar) SetTabText(index int, text string) { + if ptr.Pointer() != nil { + C.QTabBar_SetTabText(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.CString(text)) + } +} + +func (ptr *QTabBar) SetTabTextColor(index int, color gui.QColorITF) { + if ptr.Pointer() != nil { + C.QTabBar_SetTabTextColor(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.QtObjectPtr(gui.PointerFromQColor(color))) + } +} + +func (ptr *QTabBar) SetTabToolTip(index int, tip string) { + if ptr.Pointer() != nil { + C.QTabBar_SetTabToolTip(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.CString(tip)) + } +} + +func (ptr *QTabBar) SetTabWhatsThis(index int, text string) { + if ptr.Pointer() != nil { + C.QTabBar_SetTabWhatsThis(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.CString(text)) + } +} + +func (ptr *QTabBar) TabAt(position core.QPointITF) int { + if ptr.Pointer() != nil { + return int(C.QTabBar_TabAt(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(position)))) + } + return 0 +} + +func (ptr *QTabBar) ConnectTabBarClicked(f func(index int)) { + if ptr.Pointer() != nil { + C.QTabBar_ConnectTabBarClicked(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "tabBarClicked", f) + } +} + +func (ptr *QTabBar) DisconnectTabBarClicked() { + if ptr.Pointer() != nil { + C.QTabBar_DisconnectTabBarClicked(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "tabBarClicked") + } +} + +//export callbackQTabBarTabBarClicked +func callbackQTabBarTabBarClicked(ptrName *C.char, index C.int) { + qt.GetSignal(C.GoString(ptrName), "tabBarClicked").(func(int))(int(index)) +} + +func (ptr *QTabBar) ConnectTabBarDoubleClicked(f func(index int)) { + if ptr.Pointer() != nil { + C.QTabBar_ConnectTabBarDoubleClicked(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "tabBarDoubleClicked", f) + } +} + +func (ptr *QTabBar) DisconnectTabBarDoubleClicked() { + if ptr.Pointer() != nil { + C.QTabBar_DisconnectTabBarDoubleClicked(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "tabBarDoubleClicked") + } +} + +//export callbackQTabBarTabBarDoubleClicked +func callbackQTabBarTabBarDoubleClicked(ptrName *C.char, index C.int) { + qt.GetSignal(C.GoString(ptrName), "tabBarDoubleClicked").(func(int))(int(index)) +} + +func (ptr *QTabBar) TabButton(index int, position QTabBar__ButtonPosition) *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QTabBar_TabButton(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.int(position)))) + } + return nil +} + +func (ptr *QTabBar) ConnectTabCloseRequested(f func(index int)) { + if ptr.Pointer() != nil { + C.QTabBar_ConnectTabCloseRequested(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "tabCloseRequested", f) + } +} + +func (ptr *QTabBar) DisconnectTabCloseRequested() { + if ptr.Pointer() != nil { + C.QTabBar_DisconnectTabCloseRequested(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "tabCloseRequested") + } +} + +//export callbackQTabBarTabCloseRequested +func callbackQTabBarTabCloseRequested(ptrName *C.char, index C.int) { + qt.GetSignal(C.GoString(ptrName), "tabCloseRequested").(func(int))(int(index)) +} + +func (ptr *QTabBar) TabData(index int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTabBar_TabData(C.QtObjectPtr(ptr.Pointer()), C.int(index))) + } + return "" +} + +func (ptr *QTabBar) ConnectTabMoved(f func(from int, to int)) { + if ptr.Pointer() != nil { + C.QTabBar_ConnectTabMoved(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "tabMoved", f) + } +} + +func (ptr *QTabBar) DisconnectTabMoved() { + if ptr.Pointer() != nil { + C.QTabBar_DisconnectTabMoved(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "tabMoved") + } +} + +//export callbackQTabBarTabMoved +func callbackQTabBarTabMoved(ptrName *C.char, from C.int, to C.int) { + qt.GetSignal(C.GoString(ptrName), "tabMoved").(func(int, int))(int(from), int(to)) +} + +func (ptr *QTabBar) TabText(index int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTabBar_TabText(C.QtObjectPtr(ptr.Pointer()), C.int(index))) + } + return "" +} + +func (ptr *QTabBar) TabToolTip(index int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTabBar_TabToolTip(C.QtObjectPtr(ptr.Pointer()), C.int(index))) + } + return "" +} + +func (ptr *QTabBar) TabWhatsThis(index int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTabBar_TabWhatsThis(C.QtObjectPtr(ptr.Pointer()), C.int(index))) + } + return "" +} + +func (ptr *QTabBar) DestroyQTabBar() { + if ptr.Pointer() != nil { + C.QTabBar_DestroyQTabBar(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qtabbar.h b/widgets/qtabbar.h new file mode 100755 index 00000000..4e80c04c --- /dev/null +++ b/widgets/qtabbar.h @@ -0,0 +1,68 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QTabBar_AutoHide(QtObjectPtr ptr); +int QTabBar_ChangeCurrentOnDrag(QtObjectPtr ptr); +int QTabBar_Count(QtObjectPtr ptr); +int QTabBar_CurrentIndex(QtObjectPtr ptr); +int QTabBar_DocumentMode(QtObjectPtr ptr); +int QTabBar_DrawBase(QtObjectPtr ptr); +int QTabBar_ElideMode(QtObjectPtr ptr); +int QTabBar_Expanding(QtObjectPtr ptr); +int QTabBar_IsMovable(QtObjectPtr ptr); +int QTabBar_SelectionBehaviorOnRemove(QtObjectPtr ptr); +void QTabBar_SetAutoHide(QtObjectPtr ptr, int hide); +void QTabBar_SetChangeCurrentOnDrag(QtObjectPtr ptr, int change); +void QTabBar_SetCurrentIndex(QtObjectPtr ptr, int index); +void QTabBar_SetDocumentMode(QtObjectPtr ptr, int set); +void QTabBar_SetDrawBase(QtObjectPtr ptr, int drawTheBase); +void QTabBar_SetElideMode(QtObjectPtr ptr, int v); +void QTabBar_SetExpanding(QtObjectPtr ptr, int enabled); +void QTabBar_SetIconSize(QtObjectPtr ptr, QtObjectPtr size); +void QTabBar_SetMovable(QtObjectPtr ptr, int movable); +void QTabBar_SetSelectionBehaviorOnRemove(QtObjectPtr ptr, int behavior); +void QTabBar_SetShape(QtObjectPtr ptr, int shape); +void QTabBar_SetTabsClosable(QtObjectPtr ptr, int closable); +void QTabBar_SetUsesScrollButtons(QtObjectPtr ptr, int useButtons); +int QTabBar_Shape(QtObjectPtr ptr); +int QTabBar_TabsClosable(QtObjectPtr ptr); +int QTabBar_UsesScrollButtons(QtObjectPtr ptr); +QtObjectPtr QTabBar_NewQTabBar(QtObjectPtr parent); +int QTabBar_AddTab2(QtObjectPtr ptr, QtObjectPtr icon, char* text); +int QTabBar_AddTab(QtObjectPtr ptr, char* text); +void QTabBar_ConnectCurrentChanged(QtObjectPtr ptr); +void QTabBar_DisconnectCurrentChanged(QtObjectPtr ptr); +int QTabBar_InsertTab2(QtObjectPtr ptr, int index, QtObjectPtr icon, char* text); +int QTabBar_InsertTab(QtObjectPtr ptr, int index, char* text); +int QTabBar_IsTabEnabled(QtObjectPtr ptr, int index); +void QTabBar_MoveTab(QtObjectPtr ptr, int from, int to); +void QTabBar_RemoveTab(QtObjectPtr ptr, int index); +void QTabBar_SetTabButton(QtObjectPtr ptr, int index, int position, QtObjectPtr widget); +void QTabBar_SetTabData(QtObjectPtr ptr, int index, char* data); +void QTabBar_SetTabEnabled(QtObjectPtr ptr, int index, int enabled); +void QTabBar_SetTabIcon(QtObjectPtr ptr, int index, QtObjectPtr icon); +void QTabBar_SetTabText(QtObjectPtr ptr, int index, char* text); +void QTabBar_SetTabTextColor(QtObjectPtr ptr, int index, QtObjectPtr color); +void QTabBar_SetTabToolTip(QtObjectPtr ptr, int index, char* tip); +void QTabBar_SetTabWhatsThis(QtObjectPtr ptr, int index, char* text); +int QTabBar_TabAt(QtObjectPtr ptr, QtObjectPtr position); +void QTabBar_ConnectTabBarClicked(QtObjectPtr ptr); +void QTabBar_DisconnectTabBarClicked(QtObjectPtr ptr); +void QTabBar_ConnectTabBarDoubleClicked(QtObjectPtr ptr); +void QTabBar_DisconnectTabBarDoubleClicked(QtObjectPtr ptr); +QtObjectPtr QTabBar_TabButton(QtObjectPtr ptr, int index, int position); +void QTabBar_ConnectTabCloseRequested(QtObjectPtr ptr); +void QTabBar_DisconnectTabCloseRequested(QtObjectPtr ptr); +char* QTabBar_TabData(QtObjectPtr ptr, int index); +void QTabBar_ConnectTabMoved(QtObjectPtr ptr); +void QTabBar_DisconnectTabMoved(QtObjectPtr ptr); +char* QTabBar_TabText(QtObjectPtr ptr, int index); +char* QTabBar_TabToolTip(QtObjectPtr ptr, int index); +char* QTabBar_TabWhatsThis(QtObjectPtr ptr, int index); +void QTabBar_DestroyQTabBar(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qtableview.cpp b/widgets/qtableview.cpp new file mode 100755 index 00000000..195b87ea --- /dev/null +++ b/widgets/qtableview.cpp @@ -0,0 +1,202 @@ +#include "qtableview.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTableView: public QTableView { +public: +}; + +int QTableView_GridStyle(QtObjectPtr ptr){ + return static_cast(ptr)->gridStyle(); +} + +int QTableView_IsCornerButtonEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isCornerButtonEnabled(); +} + +int QTableView_IsSortingEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isSortingEnabled(); +} + +void QTableView_SetCornerButtonEnabled(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setCornerButtonEnabled(enable != 0); +} + +void QTableView_SetGridStyle(QtObjectPtr ptr, int style){ + static_cast(ptr)->setGridStyle(static_cast(style)); +} + +void QTableView_SetShowGrid(QtObjectPtr ptr, int show){ + QMetaObject::invokeMethod(static_cast(ptr), "setShowGrid", Q_ARG(bool, show != 0)); +} + +void QTableView_SetSpan(QtObjectPtr ptr, int row, int column, int rowSpanCount, int columnSpanCount){ + static_cast(ptr)->setSpan(row, column, rowSpanCount, columnSpanCount); +} + +void QTableView_SetWordWrap(QtObjectPtr ptr, int on){ + static_cast(ptr)->setWordWrap(on != 0); +} + +int QTableView_ShowGrid(QtObjectPtr ptr){ + return static_cast(ptr)->showGrid(); +} + +int QTableView_WordWrap(QtObjectPtr ptr){ + return static_cast(ptr)->wordWrap(); +} + +void QTableView_ClearSpans(QtObjectPtr ptr){ + static_cast(ptr)->clearSpans(); +} + +int QTableView_ColumnAt(QtObjectPtr ptr, int x){ + return static_cast(ptr)->columnAt(x); +} + +int QTableView_ColumnSpan(QtObjectPtr ptr, int row, int column){ + return static_cast(ptr)->columnSpan(row, column); +} + +int QTableView_ColumnViewportPosition(QtObjectPtr ptr, int column){ + return static_cast(ptr)->columnViewportPosition(column); +} + +int QTableView_ColumnWidth(QtObjectPtr ptr, int column){ + return static_cast(ptr)->columnWidth(column); +} + +void QTableView_HideColumn(QtObjectPtr ptr, int column){ + QMetaObject::invokeMethod(static_cast(ptr), "hideColumn", Q_ARG(int, column)); +} + +void QTableView_HideRow(QtObjectPtr ptr, int row){ + QMetaObject::invokeMethod(static_cast(ptr), "hideRow", Q_ARG(int, row)); +} + +QtObjectPtr QTableView_HorizontalHeader(QtObjectPtr ptr){ + return static_cast(ptr)->horizontalHeader(); +} + +QtObjectPtr QTableView_IndexAt(QtObjectPtr ptr, QtObjectPtr pos){ + return static_cast(ptr)->indexAt(*static_cast(pos)).internalPointer(); +} + +int QTableView_IsColumnHidden(QtObjectPtr ptr, int column){ + return static_cast(ptr)->isColumnHidden(column); +} + +int QTableView_IsRowHidden(QtObjectPtr ptr, int row){ + return static_cast(ptr)->isRowHidden(row); +} + +void QTableView_ResizeColumnToContents(QtObjectPtr ptr, int column){ + QMetaObject::invokeMethod(static_cast(ptr), "resizeColumnToContents", Q_ARG(int, column)); +} + +void QTableView_ResizeColumnsToContents(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "resizeColumnsToContents"); +} + +void QTableView_ResizeRowToContents(QtObjectPtr ptr, int row){ + QMetaObject::invokeMethod(static_cast(ptr), "resizeRowToContents", Q_ARG(int, row)); +} + +void QTableView_ResizeRowsToContents(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "resizeRowsToContents"); +} + +int QTableView_RowAt(QtObjectPtr ptr, int y){ + return static_cast(ptr)->rowAt(y); +} + +int QTableView_RowHeight(QtObjectPtr ptr, int row){ + return static_cast(ptr)->rowHeight(row); +} + +int QTableView_RowSpan(QtObjectPtr ptr, int row, int column){ + return static_cast(ptr)->rowSpan(row, column); +} + +int QTableView_RowViewportPosition(QtObjectPtr ptr, int row){ + return static_cast(ptr)->rowViewportPosition(row); +} + +void QTableView_SelectColumn(QtObjectPtr ptr, int column){ + QMetaObject::invokeMethod(static_cast(ptr), "selectColumn", Q_ARG(int, column)); +} + +void QTableView_SelectRow(QtObjectPtr ptr, int row){ + QMetaObject::invokeMethod(static_cast(ptr), "selectRow", Q_ARG(int, row)); +} + +void QTableView_SetColumnHidden(QtObjectPtr ptr, int column, int hide){ + static_cast(ptr)->setColumnHidden(column, hide != 0); +} + +void QTableView_SetColumnWidth(QtObjectPtr ptr, int column, int width){ + static_cast(ptr)->setColumnWidth(column, width); +} + +void QTableView_SetHorizontalHeader(QtObjectPtr ptr, QtObjectPtr header){ + static_cast(ptr)->setHorizontalHeader(static_cast(header)); +} + +void QTableView_SetModel(QtObjectPtr ptr, QtObjectPtr model){ + static_cast(ptr)->setModel(static_cast(model)); +} + +void QTableView_SetRootIndex(QtObjectPtr ptr, QtObjectPtr index){ + static_cast(ptr)->setRootIndex(*static_cast(index)); +} + +void QTableView_SetRowHeight(QtObjectPtr ptr, int row, int height){ + static_cast(ptr)->setRowHeight(row, height); +} + +void QTableView_SetRowHidden(QtObjectPtr ptr, int row, int hide){ + static_cast(ptr)->setRowHidden(row, hide != 0); +} + +void QTableView_SetSelectionModel(QtObjectPtr ptr, QtObjectPtr selectionModel){ + static_cast(ptr)->setSelectionModel(static_cast(selectionModel)); +} + +void QTableView_SetSortingEnabled(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setSortingEnabled(enable != 0); +} + +void QTableView_SetVerticalHeader(QtObjectPtr ptr, QtObjectPtr header){ + static_cast(ptr)->setVerticalHeader(static_cast(header)); +} + +void QTableView_ShowColumn(QtObjectPtr ptr, int column){ + QMetaObject::invokeMethod(static_cast(ptr), "showColumn", Q_ARG(int, column)); +} + +void QTableView_ShowRow(QtObjectPtr ptr, int row){ + QMetaObject::invokeMethod(static_cast(ptr), "showRow", Q_ARG(int, row)); +} + +void QTableView_SortByColumn(QtObjectPtr ptr, int column, int order){ + static_cast(ptr)->sortByColumn(column, static_cast(order)); +} + +QtObjectPtr QTableView_VerticalHeader(QtObjectPtr ptr){ + return static_cast(ptr)->verticalHeader(); +} + +void QTableView_DestroyQTableView(QtObjectPtr ptr){ + static_cast(ptr)->~QTableView(); +} + diff --git a/widgets/qtableview.go b/widgets/qtableview.go new file mode 100755 index 00000000..bccd5271 --- /dev/null +++ b/widgets/qtableview.go @@ -0,0 +1,333 @@ +package widgets + +//#include "qtableview.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QTableView struct { + QAbstractItemView +} + +type QTableViewITF interface { + QAbstractItemViewITF + QTableViewPTR() *QTableView +} + +func PointerFromQTableView(ptr QTableViewITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTableViewPTR().Pointer() + } + return nil +} + +func QTableViewFromPointer(ptr unsafe.Pointer) *QTableView { + var n = new(QTableView) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QTableView_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QTableView) QTableViewPTR() *QTableView { + return ptr +} + +func (ptr *QTableView) GridStyle() core.Qt__PenStyle { + if ptr.Pointer() != nil { + return core.Qt__PenStyle(C.QTableView_GridStyle(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTableView) IsCornerButtonEnabled() bool { + if ptr.Pointer() != nil { + return C.QTableView_IsCornerButtonEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTableView) IsSortingEnabled() bool { + if ptr.Pointer() != nil { + return C.QTableView_IsSortingEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTableView) SetCornerButtonEnabled(enable bool) { + if ptr.Pointer() != nil { + C.QTableView_SetCornerButtonEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QTableView) SetGridStyle(style core.Qt__PenStyle) { + if ptr.Pointer() != nil { + C.QTableView_SetGridStyle(C.QtObjectPtr(ptr.Pointer()), C.int(style)) + } +} + +func (ptr *QTableView) SetShowGrid(show bool) { + if ptr.Pointer() != nil { + C.QTableView_SetShowGrid(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(show))) + } +} + +func (ptr *QTableView) SetSpan(row int, column int, rowSpanCount int, columnSpanCount int) { + if ptr.Pointer() != nil { + C.QTableView_SetSpan(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column), C.int(rowSpanCount), C.int(columnSpanCount)) + } +} + +func (ptr *QTableView) SetWordWrap(on bool) { + if ptr.Pointer() != nil { + C.QTableView_SetWordWrap(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(on))) + } +} + +func (ptr *QTableView) ShowGrid() bool { + if ptr.Pointer() != nil { + return C.QTableView_ShowGrid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTableView) WordWrap() bool { + if ptr.Pointer() != nil { + return C.QTableView_WordWrap(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTableView) ClearSpans() { + if ptr.Pointer() != nil { + C.QTableView_ClearSpans(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTableView) ColumnAt(x int) int { + if ptr.Pointer() != nil { + return int(C.QTableView_ColumnAt(C.QtObjectPtr(ptr.Pointer()), C.int(x))) + } + return 0 +} + +func (ptr *QTableView) ColumnSpan(row int, column int) int { + if ptr.Pointer() != nil { + return int(C.QTableView_ColumnSpan(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column))) + } + return 0 +} + +func (ptr *QTableView) ColumnViewportPosition(column int) int { + if ptr.Pointer() != nil { + return int(C.QTableView_ColumnViewportPosition(C.QtObjectPtr(ptr.Pointer()), C.int(column))) + } + return 0 +} + +func (ptr *QTableView) ColumnWidth(column int) int { + if ptr.Pointer() != nil { + return int(C.QTableView_ColumnWidth(C.QtObjectPtr(ptr.Pointer()), C.int(column))) + } + return 0 +} + +func (ptr *QTableView) HideColumn(column int) { + if ptr.Pointer() != nil { + C.QTableView_HideColumn(C.QtObjectPtr(ptr.Pointer()), C.int(column)) + } +} + +func (ptr *QTableView) HideRow(row int) { + if ptr.Pointer() != nil { + C.QTableView_HideRow(C.QtObjectPtr(ptr.Pointer()), C.int(row)) + } +} + +func (ptr *QTableView) HorizontalHeader() *QHeaderView { + if ptr.Pointer() != nil { + return QHeaderViewFromPointer(unsafe.Pointer(C.QTableView_HorizontalHeader(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTableView) IndexAt(pos core.QPointITF) *core.QModelIndex { + if ptr.Pointer() != nil { + return core.QModelIndexFromPointer(unsafe.Pointer(C.QTableView_IndexAt(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(pos))))) + } + return nil +} + +func (ptr *QTableView) IsColumnHidden(column int) bool { + if ptr.Pointer() != nil { + return C.QTableView_IsColumnHidden(C.QtObjectPtr(ptr.Pointer()), C.int(column)) != 0 + } + return false +} + +func (ptr *QTableView) IsRowHidden(row int) bool { + if ptr.Pointer() != nil { + return C.QTableView_IsRowHidden(C.QtObjectPtr(ptr.Pointer()), C.int(row)) != 0 + } + return false +} + +func (ptr *QTableView) ResizeColumnToContents(column int) { + if ptr.Pointer() != nil { + C.QTableView_ResizeColumnToContents(C.QtObjectPtr(ptr.Pointer()), C.int(column)) + } +} + +func (ptr *QTableView) ResizeColumnsToContents() { + if ptr.Pointer() != nil { + C.QTableView_ResizeColumnsToContents(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTableView) ResizeRowToContents(row int) { + if ptr.Pointer() != nil { + C.QTableView_ResizeRowToContents(C.QtObjectPtr(ptr.Pointer()), C.int(row)) + } +} + +func (ptr *QTableView) ResizeRowsToContents() { + if ptr.Pointer() != nil { + C.QTableView_ResizeRowsToContents(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTableView) RowAt(y int) int { + if ptr.Pointer() != nil { + return int(C.QTableView_RowAt(C.QtObjectPtr(ptr.Pointer()), C.int(y))) + } + return 0 +} + +func (ptr *QTableView) RowHeight(row int) int { + if ptr.Pointer() != nil { + return int(C.QTableView_RowHeight(C.QtObjectPtr(ptr.Pointer()), C.int(row))) + } + return 0 +} + +func (ptr *QTableView) RowSpan(row int, column int) int { + if ptr.Pointer() != nil { + return int(C.QTableView_RowSpan(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column))) + } + return 0 +} + +func (ptr *QTableView) RowViewportPosition(row int) int { + if ptr.Pointer() != nil { + return int(C.QTableView_RowViewportPosition(C.QtObjectPtr(ptr.Pointer()), C.int(row))) + } + return 0 +} + +func (ptr *QTableView) SelectColumn(column int) { + if ptr.Pointer() != nil { + C.QTableView_SelectColumn(C.QtObjectPtr(ptr.Pointer()), C.int(column)) + } +} + +func (ptr *QTableView) SelectRow(row int) { + if ptr.Pointer() != nil { + C.QTableView_SelectRow(C.QtObjectPtr(ptr.Pointer()), C.int(row)) + } +} + +func (ptr *QTableView) SetColumnHidden(column int, hide bool) { + if ptr.Pointer() != nil { + C.QTableView_SetColumnHidden(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(qt.GoBoolToInt(hide))) + } +} + +func (ptr *QTableView) SetColumnWidth(column int, width int) { + if ptr.Pointer() != nil { + C.QTableView_SetColumnWidth(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(width)) + } +} + +func (ptr *QTableView) SetHorizontalHeader(header QHeaderViewITF) { + if ptr.Pointer() != nil { + C.QTableView_SetHorizontalHeader(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQHeaderView(header))) + } +} + +func (ptr *QTableView) SetModel(model core.QAbstractItemModelITF) { + if ptr.Pointer() != nil { + C.QTableView_SetModel(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQAbstractItemModel(model))) + } +} + +func (ptr *QTableView) SetRootIndex(index core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QTableView_SetRootIndex(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index))) + } +} + +func (ptr *QTableView) SetRowHeight(row int, height int) { + if ptr.Pointer() != nil { + C.QTableView_SetRowHeight(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(height)) + } +} + +func (ptr *QTableView) SetRowHidden(row int, hide bool) { + if ptr.Pointer() != nil { + C.QTableView_SetRowHidden(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(qt.GoBoolToInt(hide))) + } +} + +func (ptr *QTableView) SetSelectionModel(selectionModel core.QItemSelectionModelITF) { + if ptr.Pointer() != nil { + C.QTableView_SetSelectionModel(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQItemSelectionModel(selectionModel))) + } +} + +func (ptr *QTableView) SetSortingEnabled(enable bool) { + if ptr.Pointer() != nil { + C.QTableView_SetSortingEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QTableView) SetVerticalHeader(header QHeaderViewITF) { + if ptr.Pointer() != nil { + C.QTableView_SetVerticalHeader(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQHeaderView(header))) + } +} + +func (ptr *QTableView) ShowColumn(column int) { + if ptr.Pointer() != nil { + C.QTableView_ShowColumn(C.QtObjectPtr(ptr.Pointer()), C.int(column)) + } +} + +func (ptr *QTableView) ShowRow(row int) { + if ptr.Pointer() != nil { + C.QTableView_ShowRow(C.QtObjectPtr(ptr.Pointer()), C.int(row)) + } +} + +func (ptr *QTableView) SortByColumn(column int, order core.Qt__SortOrder) { + if ptr.Pointer() != nil { + C.QTableView_SortByColumn(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(order)) + } +} + +func (ptr *QTableView) VerticalHeader() *QHeaderView { + if ptr.Pointer() != nil { + return QHeaderViewFromPointer(unsafe.Pointer(C.QTableView_VerticalHeader(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTableView) DestroyQTableView() { + if ptr.Pointer() != nil { + C.QTableView_DestroyQTableView(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qtableview.h b/widgets/qtableview.h new file mode 100755 index 00000000..55ea0f58 --- /dev/null +++ b/widgets/qtableview.h @@ -0,0 +1,55 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QTableView_GridStyle(QtObjectPtr ptr); +int QTableView_IsCornerButtonEnabled(QtObjectPtr ptr); +int QTableView_IsSortingEnabled(QtObjectPtr ptr); +void QTableView_SetCornerButtonEnabled(QtObjectPtr ptr, int enable); +void QTableView_SetGridStyle(QtObjectPtr ptr, int style); +void QTableView_SetShowGrid(QtObjectPtr ptr, int show); +void QTableView_SetSpan(QtObjectPtr ptr, int row, int column, int rowSpanCount, int columnSpanCount); +void QTableView_SetWordWrap(QtObjectPtr ptr, int on); +int QTableView_ShowGrid(QtObjectPtr ptr); +int QTableView_WordWrap(QtObjectPtr ptr); +void QTableView_ClearSpans(QtObjectPtr ptr); +int QTableView_ColumnAt(QtObjectPtr ptr, int x); +int QTableView_ColumnSpan(QtObjectPtr ptr, int row, int column); +int QTableView_ColumnViewportPosition(QtObjectPtr ptr, int column); +int QTableView_ColumnWidth(QtObjectPtr ptr, int column); +void QTableView_HideColumn(QtObjectPtr ptr, int column); +void QTableView_HideRow(QtObjectPtr ptr, int row); +QtObjectPtr QTableView_HorizontalHeader(QtObjectPtr ptr); +QtObjectPtr QTableView_IndexAt(QtObjectPtr ptr, QtObjectPtr pos); +int QTableView_IsColumnHidden(QtObjectPtr ptr, int column); +int QTableView_IsRowHidden(QtObjectPtr ptr, int row); +void QTableView_ResizeColumnToContents(QtObjectPtr ptr, int column); +void QTableView_ResizeColumnsToContents(QtObjectPtr ptr); +void QTableView_ResizeRowToContents(QtObjectPtr ptr, int row); +void QTableView_ResizeRowsToContents(QtObjectPtr ptr); +int QTableView_RowAt(QtObjectPtr ptr, int y); +int QTableView_RowHeight(QtObjectPtr ptr, int row); +int QTableView_RowSpan(QtObjectPtr ptr, int row, int column); +int QTableView_RowViewportPosition(QtObjectPtr ptr, int row); +void QTableView_SelectColumn(QtObjectPtr ptr, int column); +void QTableView_SelectRow(QtObjectPtr ptr, int row); +void QTableView_SetColumnHidden(QtObjectPtr ptr, int column, int hide); +void QTableView_SetColumnWidth(QtObjectPtr ptr, int column, int width); +void QTableView_SetHorizontalHeader(QtObjectPtr ptr, QtObjectPtr header); +void QTableView_SetModel(QtObjectPtr ptr, QtObjectPtr model); +void QTableView_SetRootIndex(QtObjectPtr ptr, QtObjectPtr index); +void QTableView_SetRowHeight(QtObjectPtr ptr, int row, int height); +void QTableView_SetRowHidden(QtObjectPtr ptr, int row, int hide); +void QTableView_SetSelectionModel(QtObjectPtr ptr, QtObjectPtr selectionModel); +void QTableView_SetSortingEnabled(QtObjectPtr ptr, int enable); +void QTableView_SetVerticalHeader(QtObjectPtr ptr, QtObjectPtr header); +void QTableView_ShowColumn(QtObjectPtr ptr, int column); +void QTableView_ShowRow(QtObjectPtr ptr, int row); +void QTableView_SortByColumn(QtObjectPtr ptr, int column, int order); +QtObjectPtr QTableView_VerticalHeader(QtObjectPtr ptr); +void QTableView_DestroyQTableView(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qtablewidget.cpp b/widgets/qtablewidget.cpp new file mode 100755 index 00000000..72acbf15 --- /dev/null +++ b/widgets/qtablewidget.cpp @@ -0,0 +1,340 @@ +#include "qtablewidget.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTableWidget: public QTableWidget { +public: +void Signal_CellActivated(int row, int column){callbackQTableWidgetCellActivated(this->objectName().toUtf8().data(), row, column);}; +void Signal_CellChanged(int row, int column){callbackQTableWidgetCellChanged(this->objectName().toUtf8().data(), row, column);}; +void Signal_CellClicked(int row, int column){callbackQTableWidgetCellClicked(this->objectName().toUtf8().data(), row, column);}; +void Signal_CellDoubleClicked(int row, int column){callbackQTableWidgetCellDoubleClicked(this->objectName().toUtf8().data(), row, column);}; +void Signal_CellEntered(int row, int column){callbackQTableWidgetCellEntered(this->objectName().toUtf8().data(), row, column);}; +void Signal_CellPressed(int row, int column){callbackQTableWidgetCellPressed(this->objectName().toUtf8().data(), row, column);}; +void Signal_CurrentCellChanged(int currentRow, int currentColumn, int previousRow, int previousColumn){callbackQTableWidgetCurrentCellChanged(this->objectName().toUtf8().data(), currentRow, currentColumn, previousRow, previousColumn);}; +void Signal_CurrentItemChanged(QTableWidgetItem * current, QTableWidgetItem * previous){callbackQTableWidgetCurrentItemChanged(this->objectName().toUtf8().data(), current, previous);}; +void Signal_ItemActivated(QTableWidgetItem * item){callbackQTableWidgetItemActivated(this->objectName().toUtf8().data(), item);}; +void Signal_ItemChanged(QTableWidgetItem * item){callbackQTableWidgetItemChanged(this->objectName().toUtf8().data(), item);}; +void Signal_ItemClicked(QTableWidgetItem * item){callbackQTableWidgetItemClicked(this->objectName().toUtf8().data(), item);}; +void Signal_ItemDoubleClicked(QTableWidgetItem * item){callbackQTableWidgetItemDoubleClicked(this->objectName().toUtf8().data(), item);}; +void Signal_ItemEntered(QTableWidgetItem * item){callbackQTableWidgetItemEntered(this->objectName().toUtf8().data(), item);}; +void Signal_ItemPressed(QTableWidgetItem * item){callbackQTableWidgetItemPressed(this->objectName().toUtf8().data(), item);}; +void Signal_ItemSelectionChanged(){callbackQTableWidgetItemSelectionChanged(this->objectName().toUtf8().data());}; +}; + +QtObjectPtr QTableWidget_ItemAt(QtObjectPtr ptr, QtObjectPtr point){ + return static_cast(ptr)->itemAt(*static_cast(point)); +} + +void QTableWidget_ConnectCellActivated(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTableWidget::cellActivated), static_cast(ptr), static_cast(&MyQTableWidget::Signal_CellActivated));; +} + +void QTableWidget_DisconnectCellActivated(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTableWidget::cellActivated), static_cast(ptr), static_cast(&MyQTableWidget::Signal_CellActivated));; +} + +void QTableWidget_ConnectCellChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTableWidget::cellChanged), static_cast(ptr), static_cast(&MyQTableWidget::Signal_CellChanged));; +} + +void QTableWidget_DisconnectCellChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTableWidget::cellChanged), static_cast(ptr), static_cast(&MyQTableWidget::Signal_CellChanged));; +} + +void QTableWidget_ConnectCellClicked(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTableWidget::cellClicked), static_cast(ptr), static_cast(&MyQTableWidget::Signal_CellClicked));; +} + +void QTableWidget_DisconnectCellClicked(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTableWidget::cellClicked), static_cast(ptr), static_cast(&MyQTableWidget::Signal_CellClicked));; +} + +void QTableWidget_ConnectCellDoubleClicked(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTableWidget::cellDoubleClicked), static_cast(ptr), static_cast(&MyQTableWidget::Signal_CellDoubleClicked));; +} + +void QTableWidget_DisconnectCellDoubleClicked(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTableWidget::cellDoubleClicked), static_cast(ptr), static_cast(&MyQTableWidget::Signal_CellDoubleClicked));; +} + +void QTableWidget_ConnectCellEntered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTableWidget::cellEntered), static_cast(ptr), static_cast(&MyQTableWidget::Signal_CellEntered));; +} + +void QTableWidget_DisconnectCellEntered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTableWidget::cellEntered), static_cast(ptr), static_cast(&MyQTableWidget::Signal_CellEntered));; +} + +void QTableWidget_ConnectCellPressed(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTableWidget::cellPressed), static_cast(ptr), static_cast(&MyQTableWidget::Signal_CellPressed));; +} + +void QTableWidget_DisconnectCellPressed(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTableWidget::cellPressed), static_cast(ptr), static_cast(&MyQTableWidget::Signal_CellPressed));; +} + +QtObjectPtr QTableWidget_CellWidget(QtObjectPtr ptr, int row, int column){ + return static_cast(ptr)->cellWidget(row, column); +} + +void QTableWidget_Clear(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "clear"); +} + +void QTableWidget_ClearContents(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "clearContents"); +} + +void QTableWidget_ClosePersistentEditor(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->closePersistentEditor(static_cast(item)); +} + +int QTableWidget_Column(QtObjectPtr ptr, QtObjectPtr item){ + return static_cast(ptr)->column(static_cast(item)); +} + +int QTableWidget_ColumnCount(QtObjectPtr ptr){ + return static_cast(ptr)->columnCount(); +} + +void QTableWidget_ConnectCurrentCellChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTableWidget::currentCellChanged), static_cast(ptr), static_cast(&MyQTableWidget::Signal_CurrentCellChanged));; +} + +void QTableWidget_DisconnectCurrentCellChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTableWidget::currentCellChanged), static_cast(ptr), static_cast(&MyQTableWidget::Signal_CurrentCellChanged));; +} + +int QTableWidget_CurrentColumn(QtObjectPtr ptr){ + return static_cast(ptr)->currentColumn(); +} + +QtObjectPtr QTableWidget_CurrentItem(QtObjectPtr ptr){ + return static_cast(ptr)->currentItem(); +} + +void QTableWidget_ConnectCurrentItemChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTableWidget::currentItemChanged), static_cast(ptr), static_cast(&MyQTableWidget::Signal_CurrentItemChanged));; +} + +void QTableWidget_DisconnectCurrentItemChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTableWidget::currentItemChanged), static_cast(ptr), static_cast(&MyQTableWidget::Signal_CurrentItemChanged));; +} + +int QTableWidget_CurrentRow(QtObjectPtr ptr){ + return static_cast(ptr)->currentRow(); +} + +void QTableWidget_EditItem(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->editItem(static_cast(item)); +} + +QtObjectPtr QTableWidget_HorizontalHeaderItem(QtObjectPtr ptr, int column){ + return static_cast(ptr)->horizontalHeaderItem(column); +} + +void QTableWidget_InsertColumn(QtObjectPtr ptr, int column){ + QMetaObject::invokeMethod(static_cast(ptr), "insertColumn", Q_ARG(int, column)); +} + +void QTableWidget_InsertRow(QtObjectPtr ptr, int row){ + QMetaObject::invokeMethod(static_cast(ptr), "insertRow", Q_ARG(int, row)); +} + +QtObjectPtr QTableWidget_Item(QtObjectPtr ptr, int row, int column){ + return static_cast(ptr)->item(row, column); +} + +void QTableWidget_ConnectItemActivated(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTableWidget::itemActivated), static_cast(ptr), static_cast(&MyQTableWidget::Signal_ItemActivated));; +} + +void QTableWidget_DisconnectItemActivated(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTableWidget::itemActivated), static_cast(ptr), static_cast(&MyQTableWidget::Signal_ItemActivated));; +} + +QtObjectPtr QTableWidget_ItemAt2(QtObjectPtr ptr, int ax, int ay){ + return static_cast(ptr)->itemAt(ax, ay); +} + +void QTableWidget_ConnectItemChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTableWidget::itemChanged), static_cast(ptr), static_cast(&MyQTableWidget::Signal_ItemChanged));; +} + +void QTableWidget_DisconnectItemChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTableWidget::itemChanged), static_cast(ptr), static_cast(&MyQTableWidget::Signal_ItemChanged));; +} + +void QTableWidget_ConnectItemClicked(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTableWidget::itemClicked), static_cast(ptr), static_cast(&MyQTableWidget::Signal_ItemClicked));; +} + +void QTableWidget_DisconnectItemClicked(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTableWidget::itemClicked), static_cast(ptr), static_cast(&MyQTableWidget::Signal_ItemClicked));; +} + +void QTableWidget_ConnectItemDoubleClicked(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTableWidget::itemDoubleClicked), static_cast(ptr), static_cast(&MyQTableWidget::Signal_ItemDoubleClicked));; +} + +void QTableWidget_DisconnectItemDoubleClicked(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTableWidget::itemDoubleClicked), static_cast(ptr), static_cast(&MyQTableWidget::Signal_ItemDoubleClicked));; +} + +void QTableWidget_ConnectItemEntered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTableWidget::itemEntered), static_cast(ptr), static_cast(&MyQTableWidget::Signal_ItemEntered));; +} + +void QTableWidget_DisconnectItemEntered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTableWidget::itemEntered), static_cast(ptr), static_cast(&MyQTableWidget::Signal_ItemEntered));; +} + +void QTableWidget_ConnectItemPressed(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTableWidget::itemPressed), static_cast(ptr), static_cast(&MyQTableWidget::Signal_ItemPressed));; +} + +void QTableWidget_DisconnectItemPressed(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTableWidget::itemPressed), static_cast(ptr), static_cast(&MyQTableWidget::Signal_ItemPressed));; +} + +QtObjectPtr QTableWidget_ItemPrototype(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->itemPrototype()); +} + +void QTableWidget_ConnectItemSelectionChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTableWidget::itemSelectionChanged), static_cast(ptr), static_cast(&MyQTableWidget::Signal_ItemSelectionChanged));; +} + +void QTableWidget_DisconnectItemSelectionChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTableWidget::itemSelectionChanged), static_cast(ptr), static_cast(&MyQTableWidget::Signal_ItemSelectionChanged));; +} + +void QTableWidget_OpenPersistentEditor(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->openPersistentEditor(static_cast(item)); +} + +void QTableWidget_RemoveCellWidget(QtObjectPtr ptr, int row, int column){ + static_cast(ptr)->removeCellWidget(row, column); +} + +void QTableWidget_RemoveColumn(QtObjectPtr ptr, int column){ + QMetaObject::invokeMethod(static_cast(ptr), "removeColumn", Q_ARG(int, column)); +} + +void QTableWidget_RemoveRow(QtObjectPtr ptr, int row){ + QMetaObject::invokeMethod(static_cast(ptr), "removeRow", Q_ARG(int, row)); +} + +int QTableWidget_Row(QtObjectPtr ptr, QtObjectPtr item){ + return static_cast(ptr)->row(static_cast(item)); +} + +int QTableWidget_RowCount(QtObjectPtr ptr){ + return static_cast(ptr)->rowCount(); +} + +void QTableWidget_ScrollToItem(QtObjectPtr ptr, QtObjectPtr item, int hint){ + QMetaObject::invokeMethod(static_cast(ptr), "scrollToItem", Q_ARG(QTableWidgetItem*, static_cast(item)), Q_ARG(QAbstractItemView::ScrollHint, static_cast(hint))); +} + +void QTableWidget_SetCellWidget(QtObjectPtr ptr, int row, int column, QtObjectPtr widget){ + static_cast(ptr)->setCellWidget(row, column, static_cast(widget)); +} + +void QTableWidget_SetColumnCount(QtObjectPtr ptr, int columns){ + static_cast(ptr)->setColumnCount(columns); +} + +void QTableWidget_SetCurrentCell(QtObjectPtr ptr, int row, int column){ + static_cast(ptr)->setCurrentCell(row, column); +} + +void QTableWidget_SetCurrentCell2(QtObjectPtr ptr, int row, int column, int command){ + static_cast(ptr)->setCurrentCell(row, column, static_cast(command)); +} + +void QTableWidget_SetCurrentItem(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->setCurrentItem(static_cast(item)); +} + +void QTableWidget_SetCurrentItem2(QtObjectPtr ptr, QtObjectPtr item, int command){ + static_cast(ptr)->setCurrentItem(static_cast(item), static_cast(command)); +} + +void QTableWidget_SetHorizontalHeaderItem(QtObjectPtr ptr, int column, QtObjectPtr item){ + static_cast(ptr)->setHorizontalHeaderItem(column, static_cast(item)); +} + +void QTableWidget_SetHorizontalHeaderLabels(QtObjectPtr ptr, char* labels){ + static_cast(ptr)->setHorizontalHeaderLabels(QString(labels).split("|", QString::SkipEmptyParts)); +} + +void QTableWidget_SetItem(QtObjectPtr ptr, int row, int column, QtObjectPtr item){ + static_cast(ptr)->setItem(row, column, static_cast(item)); +} + +void QTableWidget_SetItemPrototype(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->setItemPrototype(static_cast(item)); +} + +void QTableWidget_SetRangeSelected(QtObjectPtr ptr, QtObjectPtr ran, int sele){ + static_cast(ptr)->setRangeSelected(*static_cast(ran), sele != 0); +} + +void QTableWidget_SetRowCount(QtObjectPtr ptr, int rows){ + static_cast(ptr)->setRowCount(rows); +} + +void QTableWidget_SetVerticalHeaderItem(QtObjectPtr ptr, int row, QtObjectPtr item){ + static_cast(ptr)->setVerticalHeaderItem(row, static_cast(item)); +} + +void QTableWidget_SetVerticalHeaderLabels(QtObjectPtr ptr, char* labels){ + static_cast(ptr)->setVerticalHeaderLabels(QString(labels).split("|", QString::SkipEmptyParts)); +} + +void QTableWidget_SortItems(QtObjectPtr ptr, int column, int order){ + static_cast(ptr)->sortItems(column, static_cast(order)); +} + +QtObjectPtr QTableWidget_TakeHorizontalHeaderItem(QtObjectPtr ptr, int column){ + return static_cast(ptr)->takeHorizontalHeaderItem(column); +} + +QtObjectPtr QTableWidget_TakeItem(QtObjectPtr ptr, int row, int column){ + return static_cast(ptr)->takeItem(row, column); +} + +QtObjectPtr QTableWidget_TakeVerticalHeaderItem(QtObjectPtr ptr, int row){ + return static_cast(ptr)->takeVerticalHeaderItem(row); +} + +QtObjectPtr QTableWidget_VerticalHeaderItem(QtObjectPtr ptr, int row){ + return static_cast(ptr)->verticalHeaderItem(row); +} + +int QTableWidget_VisualColumn(QtObjectPtr ptr, int logicalColumn){ + return static_cast(ptr)->visualColumn(logicalColumn); +} + +int QTableWidget_VisualRow(QtObjectPtr ptr, int logicalRow){ + return static_cast(ptr)->visualRow(logicalRow); +} + +void QTableWidget_DestroyQTableWidget(QtObjectPtr ptr){ + static_cast(ptr)->~QTableWidget(); +} + diff --git a/widgets/qtablewidget.go b/widgets/qtablewidget.go new file mode 100755 index 00000000..cd566598 --- /dev/null +++ b/widgets/qtablewidget.go @@ -0,0 +1,620 @@ +package widgets + +//#include "qtablewidget.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QTableWidget struct { + QTableView +} + +type QTableWidgetITF interface { + QTableViewITF + QTableWidgetPTR() *QTableWidget +} + +func PointerFromQTableWidget(ptr QTableWidgetITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTableWidgetPTR().Pointer() + } + return nil +} + +func QTableWidgetFromPointer(ptr unsafe.Pointer) *QTableWidget { + var n = new(QTableWidget) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QTableWidget_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QTableWidget) QTableWidgetPTR() *QTableWidget { + return ptr +} + +func (ptr *QTableWidget) ItemAt(point core.QPointITF) *QTableWidgetItem { + if ptr.Pointer() != nil { + return QTableWidgetItemFromPointer(unsafe.Pointer(C.QTableWidget_ItemAt(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(point))))) + } + return nil +} + +func (ptr *QTableWidget) ConnectCellActivated(f func(row int, column int)) { + if ptr.Pointer() != nil { + C.QTableWidget_ConnectCellActivated(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "cellActivated", f) + } +} + +func (ptr *QTableWidget) DisconnectCellActivated() { + if ptr.Pointer() != nil { + C.QTableWidget_DisconnectCellActivated(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "cellActivated") + } +} + +//export callbackQTableWidgetCellActivated +func callbackQTableWidgetCellActivated(ptrName *C.char, row C.int, column C.int) { + qt.GetSignal(C.GoString(ptrName), "cellActivated").(func(int, int))(int(row), int(column)) +} + +func (ptr *QTableWidget) ConnectCellChanged(f func(row int, column int)) { + if ptr.Pointer() != nil { + C.QTableWidget_ConnectCellChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "cellChanged", f) + } +} + +func (ptr *QTableWidget) DisconnectCellChanged() { + if ptr.Pointer() != nil { + C.QTableWidget_DisconnectCellChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "cellChanged") + } +} + +//export callbackQTableWidgetCellChanged +func callbackQTableWidgetCellChanged(ptrName *C.char, row C.int, column C.int) { + qt.GetSignal(C.GoString(ptrName), "cellChanged").(func(int, int))(int(row), int(column)) +} + +func (ptr *QTableWidget) ConnectCellClicked(f func(row int, column int)) { + if ptr.Pointer() != nil { + C.QTableWidget_ConnectCellClicked(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "cellClicked", f) + } +} + +func (ptr *QTableWidget) DisconnectCellClicked() { + if ptr.Pointer() != nil { + C.QTableWidget_DisconnectCellClicked(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "cellClicked") + } +} + +//export callbackQTableWidgetCellClicked +func callbackQTableWidgetCellClicked(ptrName *C.char, row C.int, column C.int) { + qt.GetSignal(C.GoString(ptrName), "cellClicked").(func(int, int))(int(row), int(column)) +} + +func (ptr *QTableWidget) ConnectCellDoubleClicked(f func(row int, column int)) { + if ptr.Pointer() != nil { + C.QTableWidget_ConnectCellDoubleClicked(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "cellDoubleClicked", f) + } +} + +func (ptr *QTableWidget) DisconnectCellDoubleClicked() { + if ptr.Pointer() != nil { + C.QTableWidget_DisconnectCellDoubleClicked(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "cellDoubleClicked") + } +} + +//export callbackQTableWidgetCellDoubleClicked +func callbackQTableWidgetCellDoubleClicked(ptrName *C.char, row C.int, column C.int) { + qt.GetSignal(C.GoString(ptrName), "cellDoubleClicked").(func(int, int))(int(row), int(column)) +} + +func (ptr *QTableWidget) ConnectCellEntered(f func(row int, column int)) { + if ptr.Pointer() != nil { + C.QTableWidget_ConnectCellEntered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "cellEntered", f) + } +} + +func (ptr *QTableWidget) DisconnectCellEntered() { + if ptr.Pointer() != nil { + C.QTableWidget_DisconnectCellEntered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "cellEntered") + } +} + +//export callbackQTableWidgetCellEntered +func callbackQTableWidgetCellEntered(ptrName *C.char, row C.int, column C.int) { + qt.GetSignal(C.GoString(ptrName), "cellEntered").(func(int, int))(int(row), int(column)) +} + +func (ptr *QTableWidget) ConnectCellPressed(f func(row int, column int)) { + if ptr.Pointer() != nil { + C.QTableWidget_ConnectCellPressed(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "cellPressed", f) + } +} + +func (ptr *QTableWidget) DisconnectCellPressed() { + if ptr.Pointer() != nil { + C.QTableWidget_DisconnectCellPressed(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "cellPressed") + } +} + +//export callbackQTableWidgetCellPressed +func callbackQTableWidgetCellPressed(ptrName *C.char, row C.int, column C.int) { + qt.GetSignal(C.GoString(ptrName), "cellPressed").(func(int, int))(int(row), int(column)) +} + +func (ptr *QTableWidget) CellWidget(row int, column int) *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QTableWidget_CellWidget(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column)))) + } + return nil +} + +func (ptr *QTableWidget) Clear() { + if ptr.Pointer() != nil { + C.QTableWidget_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTableWidget) ClearContents() { + if ptr.Pointer() != nil { + C.QTableWidget_ClearContents(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTableWidget) ClosePersistentEditor(item QTableWidgetItemITF) { + if ptr.Pointer() != nil { + C.QTableWidget_ClosePersistentEditor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTableWidgetItem(item))) + } +} + +func (ptr *QTableWidget) Column(item QTableWidgetItemITF) int { + if ptr.Pointer() != nil { + return int(C.QTableWidget_Column(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTableWidgetItem(item)))) + } + return 0 +} + +func (ptr *QTableWidget) ColumnCount() int { + if ptr.Pointer() != nil { + return int(C.QTableWidget_ColumnCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTableWidget) ConnectCurrentCellChanged(f func(currentRow int, currentColumn int, previousRow int, previousColumn int)) { + if ptr.Pointer() != nil { + C.QTableWidget_ConnectCurrentCellChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "currentCellChanged", f) + } +} + +func (ptr *QTableWidget) DisconnectCurrentCellChanged() { + if ptr.Pointer() != nil { + C.QTableWidget_DisconnectCurrentCellChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "currentCellChanged") + } +} + +//export callbackQTableWidgetCurrentCellChanged +func callbackQTableWidgetCurrentCellChanged(ptrName *C.char, currentRow C.int, currentColumn C.int, previousRow C.int, previousColumn C.int) { + qt.GetSignal(C.GoString(ptrName), "currentCellChanged").(func(int, int, int, int))(int(currentRow), int(currentColumn), int(previousRow), int(previousColumn)) +} + +func (ptr *QTableWidget) CurrentColumn() int { + if ptr.Pointer() != nil { + return int(C.QTableWidget_CurrentColumn(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTableWidget) CurrentItem() *QTableWidgetItem { + if ptr.Pointer() != nil { + return QTableWidgetItemFromPointer(unsafe.Pointer(C.QTableWidget_CurrentItem(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTableWidget) ConnectCurrentItemChanged(f func(current QTableWidgetItemITF, previous QTableWidgetItemITF)) { + if ptr.Pointer() != nil { + C.QTableWidget_ConnectCurrentItemChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "currentItemChanged", f) + } +} + +func (ptr *QTableWidget) DisconnectCurrentItemChanged() { + if ptr.Pointer() != nil { + C.QTableWidget_DisconnectCurrentItemChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "currentItemChanged") + } +} + +//export callbackQTableWidgetCurrentItemChanged +func callbackQTableWidgetCurrentItemChanged(ptrName *C.char, current unsafe.Pointer, previous unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "currentItemChanged").(func(*QTableWidgetItem, *QTableWidgetItem))(QTableWidgetItemFromPointer(current), QTableWidgetItemFromPointer(previous)) +} + +func (ptr *QTableWidget) CurrentRow() int { + if ptr.Pointer() != nil { + return int(C.QTableWidget_CurrentRow(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTableWidget) EditItem(item QTableWidgetItemITF) { + if ptr.Pointer() != nil { + C.QTableWidget_EditItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTableWidgetItem(item))) + } +} + +func (ptr *QTableWidget) HorizontalHeaderItem(column int) *QTableWidgetItem { + if ptr.Pointer() != nil { + return QTableWidgetItemFromPointer(unsafe.Pointer(C.QTableWidget_HorizontalHeaderItem(C.QtObjectPtr(ptr.Pointer()), C.int(column)))) + } + return nil +} + +func (ptr *QTableWidget) InsertColumn(column int) { + if ptr.Pointer() != nil { + C.QTableWidget_InsertColumn(C.QtObjectPtr(ptr.Pointer()), C.int(column)) + } +} + +func (ptr *QTableWidget) InsertRow(row int) { + if ptr.Pointer() != nil { + C.QTableWidget_InsertRow(C.QtObjectPtr(ptr.Pointer()), C.int(row)) + } +} + +func (ptr *QTableWidget) Item(row int, column int) *QTableWidgetItem { + if ptr.Pointer() != nil { + return QTableWidgetItemFromPointer(unsafe.Pointer(C.QTableWidget_Item(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column)))) + } + return nil +} + +func (ptr *QTableWidget) ConnectItemActivated(f func(item QTableWidgetItemITF)) { + if ptr.Pointer() != nil { + C.QTableWidget_ConnectItemActivated(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "itemActivated", f) + } +} + +func (ptr *QTableWidget) DisconnectItemActivated() { + if ptr.Pointer() != nil { + C.QTableWidget_DisconnectItemActivated(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "itemActivated") + } +} + +//export callbackQTableWidgetItemActivated +func callbackQTableWidgetItemActivated(ptrName *C.char, item unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "itemActivated").(func(*QTableWidgetItem))(QTableWidgetItemFromPointer(item)) +} + +func (ptr *QTableWidget) ItemAt2(ax int, ay int) *QTableWidgetItem { + if ptr.Pointer() != nil { + return QTableWidgetItemFromPointer(unsafe.Pointer(C.QTableWidget_ItemAt2(C.QtObjectPtr(ptr.Pointer()), C.int(ax), C.int(ay)))) + } + return nil +} + +func (ptr *QTableWidget) ConnectItemChanged(f func(item QTableWidgetItemITF)) { + if ptr.Pointer() != nil { + C.QTableWidget_ConnectItemChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "itemChanged", f) + } +} + +func (ptr *QTableWidget) DisconnectItemChanged() { + if ptr.Pointer() != nil { + C.QTableWidget_DisconnectItemChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "itemChanged") + } +} + +//export callbackQTableWidgetItemChanged +func callbackQTableWidgetItemChanged(ptrName *C.char, item unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "itemChanged").(func(*QTableWidgetItem))(QTableWidgetItemFromPointer(item)) +} + +func (ptr *QTableWidget) ConnectItemClicked(f func(item QTableWidgetItemITF)) { + if ptr.Pointer() != nil { + C.QTableWidget_ConnectItemClicked(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "itemClicked", f) + } +} + +func (ptr *QTableWidget) DisconnectItemClicked() { + if ptr.Pointer() != nil { + C.QTableWidget_DisconnectItemClicked(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "itemClicked") + } +} + +//export callbackQTableWidgetItemClicked +func callbackQTableWidgetItemClicked(ptrName *C.char, item unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "itemClicked").(func(*QTableWidgetItem))(QTableWidgetItemFromPointer(item)) +} + +func (ptr *QTableWidget) ConnectItemDoubleClicked(f func(item QTableWidgetItemITF)) { + if ptr.Pointer() != nil { + C.QTableWidget_ConnectItemDoubleClicked(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "itemDoubleClicked", f) + } +} + +func (ptr *QTableWidget) DisconnectItemDoubleClicked() { + if ptr.Pointer() != nil { + C.QTableWidget_DisconnectItemDoubleClicked(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "itemDoubleClicked") + } +} + +//export callbackQTableWidgetItemDoubleClicked +func callbackQTableWidgetItemDoubleClicked(ptrName *C.char, item unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "itemDoubleClicked").(func(*QTableWidgetItem))(QTableWidgetItemFromPointer(item)) +} + +func (ptr *QTableWidget) ConnectItemEntered(f func(item QTableWidgetItemITF)) { + if ptr.Pointer() != nil { + C.QTableWidget_ConnectItemEntered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "itemEntered", f) + } +} + +func (ptr *QTableWidget) DisconnectItemEntered() { + if ptr.Pointer() != nil { + C.QTableWidget_DisconnectItemEntered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "itemEntered") + } +} + +//export callbackQTableWidgetItemEntered +func callbackQTableWidgetItemEntered(ptrName *C.char, item unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "itemEntered").(func(*QTableWidgetItem))(QTableWidgetItemFromPointer(item)) +} + +func (ptr *QTableWidget) ConnectItemPressed(f func(item QTableWidgetItemITF)) { + if ptr.Pointer() != nil { + C.QTableWidget_ConnectItemPressed(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "itemPressed", f) + } +} + +func (ptr *QTableWidget) DisconnectItemPressed() { + if ptr.Pointer() != nil { + C.QTableWidget_DisconnectItemPressed(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "itemPressed") + } +} + +//export callbackQTableWidgetItemPressed +func callbackQTableWidgetItemPressed(ptrName *C.char, item unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "itemPressed").(func(*QTableWidgetItem))(QTableWidgetItemFromPointer(item)) +} + +func (ptr *QTableWidget) ItemPrototype() *QTableWidgetItem { + if ptr.Pointer() != nil { + return QTableWidgetItemFromPointer(unsafe.Pointer(C.QTableWidget_ItemPrototype(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTableWidget) ConnectItemSelectionChanged(f func()) { + if ptr.Pointer() != nil { + C.QTableWidget_ConnectItemSelectionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "itemSelectionChanged", f) + } +} + +func (ptr *QTableWidget) DisconnectItemSelectionChanged() { + if ptr.Pointer() != nil { + C.QTableWidget_DisconnectItemSelectionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "itemSelectionChanged") + } +} + +//export callbackQTableWidgetItemSelectionChanged +func callbackQTableWidgetItemSelectionChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "itemSelectionChanged").(func())() +} + +func (ptr *QTableWidget) OpenPersistentEditor(item QTableWidgetItemITF) { + if ptr.Pointer() != nil { + C.QTableWidget_OpenPersistentEditor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTableWidgetItem(item))) + } +} + +func (ptr *QTableWidget) RemoveCellWidget(row int, column int) { + if ptr.Pointer() != nil { + C.QTableWidget_RemoveCellWidget(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column)) + } +} + +func (ptr *QTableWidget) RemoveColumn(column int) { + if ptr.Pointer() != nil { + C.QTableWidget_RemoveColumn(C.QtObjectPtr(ptr.Pointer()), C.int(column)) + } +} + +func (ptr *QTableWidget) RemoveRow(row int) { + if ptr.Pointer() != nil { + C.QTableWidget_RemoveRow(C.QtObjectPtr(ptr.Pointer()), C.int(row)) + } +} + +func (ptr *QTableWidget) Row(item QTableWidgetItemITF) int { + if ptr.Pointer() != nil { + return int(C.QTableWidget_Row(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTableWidgetItem(item)))) + } + return 0 +} + +func (ptr *QTableWidget) RowCount() int { + if ptr.Pointer() != nil { + return int(C.QTableWidget_RowCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTableWidget) ScrollToItem(item QTableWidgetItemITF, hint QAbstractItemView__ScrollHint) { + if ptr.Pointer() != nil { + C.QTableWidget_ScrollToItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTableWidgetItem(item)), C.int(hint)) + } +} + +func (ptr *QTableWidget) SetCellWidget(row int, column int, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QTableWidget_SetCellWidget(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QTableWidget) SetColumnCount(columns int) { + if ptr.Pointer() != nil { + C.QTableWidget_SetColumnCount(C.QtObjectPtr(ptr.Pointer()), C.int(columns)) + } +} + +func (ptr *QTableWidget) SetCurrentCell(row int, column int) { + if ptr.Pointer() != nil { + C.QTableWidget_SetCurrentCell(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column)) + } +} + +func (ptr *QTableWidget) SetCurrentCell2(row int, column int, command core.QItemSelectionModel__SelectionFlag) { + if ptr.Pointer() != nil { + C.QTableWidget_SetCurrentCell2(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column), C.int(command)) + } +} + +func (ptr *QTableWidget) SetCurrentItem(item QTableWidgetItemITF) { + if ptr.Pointer() != nil { + C.QTableWidget_SetCurrentItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTableWidgetItem(item))) + } +} + +func (ptr *QTableWidget) SetCurrentItem2(item QTableWidgetItemITF, command core.QItemSelectionModel__SelectionFlag) { + if ptr.Pointer() != nil { + C.QTableWidget_SetCurrentItem2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTableWidgetItem(item)), C.int(command)) + } +} + +func (ptr *QTableWidget) SetHorizontalHeaderItem(column int, item QTableWidgetItemITF) { + if ptr.Pointer() != nil { + C.QTableWidget_SetHorizontalHeaderItem(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.QtObjectPtr(PointerFromQTableWidgetItem(item))) + } +} + +func (ptr *QTableWidget) SetHorizontalHeaderLabels(labels []string) { + if ptr.Pointer() != nil { + C.QTableWidget_SetHorizontalHeaderLabels(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(labels, "|"))) + } +} + +func (ptr *QTableWidget) SetItem(row int, column int, item QTableWidgetItemITF) { + if ptr.Pointer() != nil { + C.QTableWidget_SetItem(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column), C.QtObjectPtr(PointerFromQTableWidgetItem(item))) + } +} + +func (ptr *QTableWidget) SetItemPrototype(item QTableWidgetItemITF) { + if ptr.Pointer() != nil { + C.QTableWidget_SetItemPrototype(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTableWidgetItem(item))) + } +} + +func (ptr *QTableWidget) SetRangeSelected(ran QTableWidgetSelectionRangeITF, sele bool) { + if ptr.Pointer() != nil { + C.QTableWidget_SetRangeSelected(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTableWidgetSelectionRange(ran)), C.int(qt.GoBoolToInt(sele))) + } +} + +func (ptr *QTableWidget) SetRowCount(rows int) { + if ptr.Pointer() != nil { + C.QTableWidget_SetRowCount(C.QtObjectPtr(ptr.Pointer()), C.int(rows)) + } +} + +func (ptr *QTableWidget) SetVerticalHeaderItem(row int, item QTableWidgetItemITF) { + if ptr.Pointer() != nil { + C.QTableWidget_SetVerticalHeaderItem(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.QtObjectPtr(PointerFromQTableWidgetItem(item))) + } +} + +func (ptr *QTableWidget) SetVerticalHeaderLabels(labels []string) { + if ptr.Pointer() != nil { + C.QTableWidget_SetVerticalHeaderLabels(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(labels, "|"))) + } +} + +func (ptr *QTableWidget) SortItems(column int, order core.Qt__SortOrder) { + if ptr.Pointer() != nil { + C.QTableWidget_SortItems(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(order)) + } +} + +func (ptr *QTableWidget) TakeHorizontalHeaderItem(column int) *QTableWidgetItem { + if ptr.Pointer() != nil { + return QTableWidgetItemFromPointer(unsafe.Pointer(C.QTableWidget_TakeHorizontalHeaderItem(C.QtObjectPtr(ptr.Pointer()), C.int(column)))) + } + return nil +} + +func (ptr *QTableWidget) TakeItem(row int, column int) *QTableWidgetItem { + if ptr.Pointer() != nil { + return QTableWidgetItemFromPointer(unsafe.Pointer(C.QTableWidget_TakeItem(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.int(column)))) + } + return nil +} + +func (ptr *QTableWidget) TakeVerticalHeaderItem(row int) *QTableWidgetItem { + if ptr.Pointer() != nil { + return QTableWidgetItemFromPointer(unsafe.Pointer(C.QTableWidget_TakeVerticalHeaderItem(C.QtObjectPtr(ptr.Pointer()), C.int(row)))) + } + return nil +} + +func (ptr *QTableWidget) VerticalHeaderItem(row int) *QTableWidgetItem { + if ptr.Pointer() != nil { + return QTableWidgetItemFromPointer(unsafe.Pointer(C.QTableWidget_VerticalHeaderItem(C.QtObjectPtr(ptr.Pointer()), C.int(row)))) + } + return nil +} + +func (ptr *QTableWidget) VisualColumn(logicalColumn int) int { + if ptr.Pointer() != nil { + return int(C.QTableWidget_VisualColumn(C.QtObjectPtr(ptr.Pointer()), C.int(logicalColumn))) + } + return 0 +} + +func (ptr *QTableWidget) VisualRow(logicalRow int) int { + if ptr.Pointer() != nil { + return int(C.QTableWidget_VisualRow(C.QtObjectPtr(ptr.Pointer()), C.int(logicalRow))) + } + return 0 +} + +func (ptr *QTableWidget) DestroyQTableWidget() { + if ptr.Pointer() != nil { + C.QTableWidget_DestroyQTableWidget(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qtablewidget.h b/widgets/qtablewidget.h new file mode 100755 index 00000000..299d1faf --- /dev/null +++ b/widgets/qtablewidget.h @@ -0,0 +1,85 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTableWidget_ItemAt(QtObjectPtr ptr, QtObjectPtr point); +void QTableWidget_ConnectCellActivated(QtObjectPtr ptr); +void QTableWidget_DisconnectCellActivated(QtObjectPtr ptr); +void QTableWidget_ConnectCellChanged(QtObjectPtr ptr); +void QTableWidget_DisconnectCellChanged(QtObjectPtr ptr); +void QTableWidget_ConnectCellClicked(QtObjectPtr ptr); +void QTableWidget_DisconnectCellClicked(QtObjectPtr ptr); +void QTableWidget_ConnectCellDoubleClicked(QtObjectPtr ptr); +void QTableWidget_DisconnectCellDoubleClicked(QtObjectPtr ptr); +void QTableWidget_ConnectCellEntered(QtObjectPtr ptr); +void QTableWidget_DisconnectCellEntered(QtObjectPtr ptr); +void QTableWidget_ConnectCellPressed(QtObjectPtr ptr); +void QTableWidget_DisconnectCellPressed(QtObjectPtr ptr); +QtObjectPtr QTableWidget_CellWidget(QtObjectPtr ptr, int row, int column); +void QTableWidget_Clear(QtObjectPtr ptr); +void QTableWidget_ClearContents(QtObjectPtr ptr); +void QTableWidget_ClosePersistentEditor(QtObjectPtr ptr, QtObjectPtr item); +int QTableWidget_Column(QtObjectPtr ptr, QtObjectPtr item); +int QTableWidget_ColumnCount(QtObjectPtr ptr); +void QTableWidget_ConnectCurrentCellChanged(QtObjectPtr ptr); +void QTableWidget_DisconnectCurrentCellChanged(QtObjectPtr ptr); +int QTableWidget_CurrentColumn(QtObjectPtr ptr); +QtObjectPtr QTableWidget_CurrentItem(QtObjectPtr ptr); +void QTableWidget_ConnectCurrentItemChanged(QtObjectPtr ptr); +void QTableWidget_DisconnectCurrentItemChanged(QtObjectPtr ptr); +int QTableWidget_CurrentRow(QtObjectPtr ptr); +void QTableWidget_EditItem(QtObjectPtr ptr, QtObjectPtr item); +QtObjectPtr QTableWidget_HorizontalHeaderItem(QtObjectPtr ptr, int column); +void QTableWidget_InsertColumn(QtObjectPtr ptr, int column); +void QTableWidget_InsertRow(QtObjectPtr ptr, int row); +QtObjectPtr QTableWidget_Item(QtObjectPtr ptr, int row, int column); +void QTableWidget_ConnectItemActivated(QtObjectPtr ptr); +void QTableWidget_DisconnectItemActivated(QtObjectPtr ptr); +QtObjectPtr QTableWidget_ItemAt2(QtObjectPtr ptr, int ax, int ay); +void QTableWidget_ConnectItemChanged(QtObjectPtr ptr); +void QTableWidget_DisconnectItemChanged(QtObjectPtr ptr); +void QTableWidget_ConnectItemClicked(QtObjectPtr ptr); +void QTableWidget_DisconnectItemClicked(QtObjectPtr ptr); +void QTableWidget_ConnectItemDoubleClicked(QtObjectPtr ptr); +void QTableWidget_DisconnectItemDoubleClicked(QtObjectPtr ptr); +void QTableWidget_ConnectItemEntered(QtObjectPtr ptr); +void QTableWidget_DisconnectItemEntered(QtObjectPtr ptr); +void QTableWidget_ConnectItemPressed(QtObjectPtr ptr); +void QTableWidget_DisconnectItemPressed(QtObjectPtr ptr); +QtObjectPtr QTableWidget_ItemPrototype(QtObjectPtr ptr); +void QTableWidget_ConnectItemSelectionChanged(QtObjectPtr ptr); +void QTableWidget_DisconnectItemSelectionChanged(QtObjectPtr ptr); +void QTableWidget_OpenPersistentEditor(QtObjectPtr ptr, QtObjectPtr item); +void QTableWidget_RemoveCellWidget(QtObjectPtr ptr, int row, int column); +void QTableWidget_RemoveColumn(QtObjectPtr ptr, int column); +void QTableWidget_RemoveRow(QtObjectPtr ptr, int row); +int QTableWidget_Row(QtObjectPtr ptr, QtObjectPtr item); +int QTableWidget_RowCount(QtObjectPtr ptr); +void QTableWidget_ScrollToItem(QtObjectPtr ptr, QtObjectPtr item, int hint); +void QTableWidget_SetCellWidget(QtObjectPtr ptr, int row, int column, QtObjectPtr widget); +void QTableWidget_SetColumnCount(QtObjectPtr ptr, int columns); +void QTableWidget_SetCurrentCell(QtObjectPtr ptr, int row, int column); +void QTableWidget_SetCurrentCell2(QtObjectPtr ptr, int row, int column, int command); +void QTableWidget_SetCurrentItem(QtObjectPtr ptr, QtObjectPtr item); +void QTableWidget_SetCurrentItem2(QtObjectPtr ptr, QtObjectPtr item, int command); +void QTableWidget_SetHorizontalHeaderItem(QtObjectPtr ptr, int column, QtObjectPtr item); +void QTableWidget_SetHorizontalHeaderLabels(QtObjectPtr ptr, char* labels); +void QTableWidget_SetItem(QtObjectPtr ptr, int row, int column, QtObjectPtr item); +void QTableWidget_SetItemPrototype(QtObjectPtr ptr, QtObjectPtr item); +void QTableWidget_SetRangeSelected(QtObjectPtr ptr, QtObjectPtr ran, int sele); +void QTableWidget_SetRowCount(QtObjectPtr ptr, int rows); +void QTableWidget_SetVerticalHeaderItem(QtObjectPtr ptr, int row, QtObjectPtr item); +void QTableWidget_SetVerticalHeaderLabels(QtObjectPtr ptr, char* labels); +void QTableWidget_SortItems(QtObjectPtr ptr, int column, int order); +QtObjectPtr QTableWidget_TakeHorizontalHeaderItem(QtObjectPtr ptr, int column); +QtObjectPtr QTableWidget_TakeItem(QtObjectPtr ptr, int row, int column); +QtObjectPtr QTableWidget_TakeVerticalHeaderItem(QtObjectPtr ptr, int row); +QtObjectPtr QTableWidget_VerticalHeaderItem(QtObjectPtr ptr, int row); +int QTableWidget_VisualColumn(QtObjectPtr ptr, int logicalColumn); +int QTableWidget_VisualRow(QtObjectPtr ptr, int logicalRow); +void QTableWidget_DestroyQTableWidget(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qtablewidgetitem.cpp b/widgets/qtablewidgetitem.cpp new file mode 100755 index 00000000..d60aaa62 --- /dev/null +++ b/widgets/qtablewidgetitem.cpp @@ -0,0 +1,158 @@ +#include "qtablewidgetitem.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTableWidgetItem: public QTableWidgetItem { +public: +}; + +void QTableWidgetItem_SetFlags(QtObjectPtr ptr, int flags){ + static_cast(ptr)->setFlags(static_cast(flags)); +} + +QtObjectPtr QTableWidgetItem_NewQTableWidgetItem3(QtObjectPtr icon, char* text, int ty){ + return new QTableWidgetItem(*static_cast(icon), QString(text), ty); +} + +QtObjectPtr QTableWidgetItem_NewQTableWidgetItem2(char* text, int ty){ + return new QTableWidgetItem(QString(text), ty); +} + +QtObjectPtr QTableWidgetItem_NewQTableWidgetItem4(QtObjectPtr other){ + return new QTableWidgetItem(*static_cast(other)); +} + +QtObjectPtr QTableWidgetItem_NewQTableWidgetItem(int ty){ + return new QTableWidgetItem(ty); +} + +int QTableWidgetItem_CheckState(QtObjectPtr ptr){ + return static_cast(ptr)->checkState(); +} + +QtObjectPtr QTableWidgetItem_Clone(QtObjectPtr ptr){ + return static_cast(ptr)->clone(); +} + +int QTableWidgetItem_Column(QtObjectPtr ptr){ + return static_cast(ptr)->column(); +} + +char* QTableWidgetItem_Data(QtObjectPtr ptr, int role){ + return static_cast(ptr)->data(role).toString().toUtf8().data(); +} + +int QTableWidgetItem_Flags(QtObjectPtr ptr){ + return static_cast(ptr)->flags(); +} + +int QTableWidgetItem_IsSelected(QtObjectPtr ptr){ + return static_cast(ptr)->isSelected(); +} + +void QTableWidgetItem_Read(QtObjectPtr ptr, QtObjectPtr in){ + static_cast(ptr)->read(*static_cast(in)); +} + +int QTableWidgetItem_Row(QtObjectPtr ptr){ + return static_cast(ptr)->row(); +} + +void QTableWidgetItem_SetBackground(QtObjectPtr ptr, QtObjectPtr brush){ + static_cast(ptr)->setBackground(*static_cast(brush)); +} + +void QTableWidgetItem_SetCheckState(QtObjectPtr ptr, int state){ + static_cast(ptr)->setCheckState(static_cast(state)); +} + +void QTableWidgetItem_SetData(QtObjectPtr ptr, int role, char* value){ + static_cast(ptr)->setData(role, QVariant(value)); +} + +void QTableWidgetItem_SetFont(QtObjectPtr ptr, QtObjectPtr font){ + static_cast(ptr)->setFont(*static_cast(font)); +} + +void QTableWidgetItem_SetForeground(QtObjectPtr ptr, QtObjectPtr brush){ + static_cast(ptr)->setForeground(*static_cast(brush)); +} + +void QTableWidgetItem_SetIcon(QtObjectPtr ptr, QtObjectPtr icon){ + static_cast(ptr)->setIcon(*static_cast(icon)); +} + +void QTableWidgetItem_SetSelected(QtObjectPtr ptr, int sele){ + static_cast(ptr)->setSelected(sele != 0); +} + +void QTableWidgetItem_SetSizeHint(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->setSizeHint(*static_cast(size)); +} + +void QTableWidgetItem_SetStatusTip(QtObjectPtr ptr, char* statusTip){ + static_cast(ptr)->setStatusTip(QString(statusTip)); +} + +void QTableWidgetItem_SetText(QtObjectPtr ptr, char* text){ + static_cast(ptr)->setText(QString(text)); +} + +void QTableWidgetItem_SetTextAlignment(QtObjectPtr ptr, int alignment){ + static_cast(ptr)->setTextAlignment(alignment); +} + +void QTableWidgetItem_SetToolTip(QtObjectPtr ptr, char* toolTip){ + static_cast(ptr)->setToolTip(QString(toolTip)); +} + +void QTableWidgetItem_SetWhatsThis(QtObjectPtr ptr, char* whatsThis){ + static_cast(ptr)->setWhatsThis(QString(whatsThis)); +} + +char* QTableWidgetItem_StatusTip(QtObjectPtr ptr){ + return static_cast(ptr)->statusTip().toUtf8().data(); +} + +QtObjectPtr QTableWidgetItem_TableWidget(QtObjectPtr ptr){ + return static_cast(ptr)->tableWidget(); +} + +char* QTableWidgetItem_Text(QtObjectPtr ptr){ + return static_cast(ptr)->text().toUtf8().data(); +} + +int QTableWidgetItem_TextAlignment(QtObjectPtr ptr){ + return static_cast(ptr)->textAlignment(); +} + +char* QTableWidgetItem_ToolTip(QtObjectPtr ptr){ + return static_cast(ptr)->toolTip().toUtf8().data(); +} + +int QTableWidgetItem_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +char* QTableWidgetItem_WhatsThis(QtObjectPtr ptr){ + return static_cast(ptr)->whatsThis().toUtf8().data(); +} + +void QTableWidgetItem_Write(QtObjectPtr ptr, QtObjectPtr out){ + static_cast(ptr)->write(*static_cast(out)); +} + +void QTableWidgetItem_DestroyQTableWidgetItem(QtObjectPtr ptr){ + static_cast(ptr)->~QTableWidgetItem(); +} + diff --git a/widgets/qtablewidgetitem.go b/widgets/qtablewidgetitem.go new file mode 100755 index 00000000..6ca5af5e --- /dev/null +++ b/widgets/qtablewidgetitem.go @@ -0,0 +1,267 @@ +package widgets + +//#include "qtablewidgetitem.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QTableWidgetItem struct { + ptr unsafe.Pointer +} + +type QTableWidgetItemITF interface { + QTableWidgetItemPTR() *QTableWidgetItem +} + +func (p *QTableWidgetItem) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTableWidgetItem) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTableWidgetItem(ptr QTableWidgetItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTableWidgetItemPTR().Pointer() + } + return nil +} + +func QTableWidgetItemFromPointer(ptr unsafe.Pointer) *QTableWidgetItem { + var n = new(QTableWidgetItem) + n.SetPointer(ptr) + return n +} + +func (ptr *QTableWidgetItem) QTableWidgetItemPTR() *QTableWidgetItem { + return ptr +} + +//QTableWidgetItem::ItemType +type QTableWidgetItem__ItemType int + +var ( + QTableWidgetItem__Type = QTableWidgetItem__ItemType(0) + QTableWidgetItem__UserType = QTableWidgetItem__ItemType(1000) +) + +func (ptr *QTableWidgetItem) SetFlags(flags core.Qt__ItemFlag) { + if ptr.Pointer() != nil { + C.QTableWidgetItem_SetFlags(C.QtObjectPtr(ptr.Pointer()), C.int(flags)) + } +} + +func NewQTableWidgetItem3(icon gui.QIconITF, text string, ty int) *QTableWidgetItem { + return QTableWidgetItemFromPointer(unsafe.Pointer(C.QTableWidgetItem_NewQTableWidgetItem3(C.QtObjectPtr(gui.PointerFromQIcon(icon)), C.CString(text), C.int(ty)))) +} + +func NewQTableWidgetItem2(text string, ty int) *QTableWidgetItem { + return QTableWidgetItemFromPointer(unsafe.Pointer(C.QTableWidgetItem_NewQTableWidgetItem2(C.CString(text), C.int(ty)))) +} + +func NewQTableWidgetItem4(other QTableWidgetItemITF) *QTableWidgetItem { + return QTableWidgetItemFromPointer(unsafe.Pointer(C.QTableWidgetItem_NewQTableWidgetItem4(C.QtObjectPtr(PointerFromQTableWidgetItem(other))))) +} + +func NewQTableWidgetItem(ty int) *QTableWidgetItem { + return QTableWidgetItemFromPointer(unsafe.Pointer(C.QTableWidgetItem_NewQTableWidgetItem(C.int(ty)))) +} + +func (ptr *QTableWidgetItem) CheckState() core.Qt__CheckState { + if ptr.Pointer() != nil { + return core.Qt__CheckState(C.QTableWidgetItem_CheckState(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTableWidgetItem) Clone() *QTableWidgetItem { + if ptr.Pointer() != nil { + return QTableWidgetItemFromPointer(unsafe.Pointer(C.QTableWidgetItem_Clone(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTableWidgetItem) Column() int { + if ptr.Pointer() != nil { + return int(C.QTableWidgetItem_Column(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTableWidgetItem) Data(role int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTableWidgetItem_Data(C.QtObjectPtr(ptr.Pointer()), C.int(role))) + } + return "" +} + +func (ptr *QTableWidgetItem) Flags() core.Qt__ItemFlag { + if ptr.Pointer() != nil { + return core.Qt__ItemFlag(C.QTableWidgetItem_Flags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTableWidgetItem) IsSelected() bool { + if ptr.Pointer() != nil { + return C.QTableWidgetItem_IsSelected(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTableWidgetItem) Read(in core.QDataStreamITF) { + if ptr.Pointer() != nil { + C.QTableWidgetItem_Read(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDataStream(in))) + } +} + +func (ptr *QTableWidgetItem) Row() int { + if ptr.Pointer() != nil { + return int(C.QTableWidgetItem_Row(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTableWidgetItem) SetBackground(brush gui.QBrushITF) { + if ptr.Pointer() != nil { + C.QTableWidgetItem_SetBackground(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQBrush(brush))) + } +} + +func (ptr *QTableWidgetItem) SetCheckState(state core.Qt__CheckState) { + if ptr.Pointer() != nil { + C.QTableWidgetItem_SetCheckState(C.QtObjectPtr(ptr.Pointer()), C.int(state)) + } +} + +func (ptr *QTableWidgetItem) SetData(role int, value string) { + if ptr.Pointer() != nil { + C.QTableWidgetItem_SetData(C.QtObjectPtr(ptr.Pointer()), C.int(role), C.CString(value)) + } +} + +func (ptr *QTableWidgetItem) SetFont(font gui.QFontITF) { + if ptr.Pointer() != nil { + C.QTableWidgetItem_SetFont(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQFont(font))) + } +} + +func (ptr *QTableWidgetItem) SetForeground(brush gui.QBrushITF) { + if ptr.Pointer() != nil { + C.QTableWidgetItem_SetForeground(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQBrush(brush))) + } +} + +func (ptr *QTableWidgetItem) SetIcon(icon gui.QIconITF) { + if ptr.Pointer() != nil { + C.QTableWidgetItem_SetIcon(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQIcon(icon))) + } +} + +func (ptr *QTableWidgetItem) SetSelected(sele bool) { + if ptr.Pointer() != nil { + C.QTableWidgetItem_SetSelected(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(sele))) + } +} + +func (ptr *QTableWidgetItem) SetSizeHint(size core.QSizeITF) { + if ptr.Pointer() != nil { + C.QTableWidgetItem_SetSizeHint(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(size))) + } +} + +func (ptr *QTableWidgetItem) SetStatusTip(statusTip string) { + if ptr.Pointer() != nil { + C.QTableWidgetItem_SetStatusTip(C.QtObjectPtr(ptr.Pointer()), C.CString(statusTip)) + } +} + +func (ptr *QTableWidgetItem) SetText(text string) { + if ptr.Pointer() != nil { + C.QTableWidgetItem_SetText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QTableWidgetItem) SetTextAlignment(alignment int) { + if ptr.Pointer() != nil { + C.QTableWidgetItem_SetTextAlignment(C.QtObjectPtr(ptr.Pointer()), C.int(alignment)) + } +} + +func (ptr *QTableWidgetItem) SetToolTip(toolTip string) { + if ptr.Pointer() != nil { + C.QTableWidgetItem_SetToolTip(C.QtObjectPtr(ptr.Pointer()), C.CString(toolTip)) + } +} + +func (ptr *QTableWidgetItem) SetWhatsThis(whatsThis string) { + if ptr.Pointer() != nil { + C.QTableWidgetItem_SetWhatsThis(C.QtObjectPtr(ptr.Pointer()), C.CString(whatsThis)) + } +} + +func (ptr *QTableWidgetItem) StatusTip() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTableWidgetItem_StatusTip(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTableWidgetItem) TableWidget() *QTableWidget { + if ptr.Pointer() != nil { + return QTableWidgetFromPointer(unsafe.Pointer(C.QTableWidgetItem_TableWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTableWidgetItem) Text() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTableWidgetItem_Text(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTableWidgetItem) TextAlignment() int { + if ptr.Pointer() != nil { + return int(C.QTableWidgetItem_TextAlignment(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTableWidgetItem) ToolTip() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTableWidgetItem_ToolTip(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTableWidgetItem) Type() int { + if ptr.Pointer() != nil { + return int(C.QTableWidgetItem_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTableWidgetItem) WhatsThis() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTableWidgetItem_WhatsThis(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTableWidgetItem) Write(out core.QDataStreamITF) { + if ptr.Pointer() != nil { + C.QTableWidgetItem_Write(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDataStream(out))) + } +} + +func (ptr *QTableWidgetItem) DestroyQTableWidgetItem() { + if ptr.Pointer() != nil { + C.QTableWidgetItem_DestroyQTableWidgetItem(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qtablewidgetitem.h b/widgets/qtablewidgetitem.h new file mode 100755 index 00000000..2358614d --- /dev/null +++ b/widgets/qtablewidgetitem.h @@ -0,0 +1,44 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QTableWidgetItem_SetFlags(QtObjectPtr ptr, int flags); +QtObjectPtr QTableWidgetItem_NewQTableWidgetItem3(QtObjectPtr icon, char* text, int ty); +QtObjectPtr QTableWidgetItem_NewQTableWidgetItem2(char* text, int ty); +QtObjectPtr QTableWidgetItem_NewQTableWidgetItem4(QtObjectPtr other); +QtObjectPtr QTableWidgetItem_NewQTableWidgetItem(int ty); +int QTableWidgetItem_CheckState(QtObjectPtr ptr); +QtObjectPtr QTableWidgetItem_Clone(QtObjectPtr ptr); +int QTableWidgetItem_Column(QtObjectPtr ptr); +char* QTableWidgetItem_Data(QtObjectPtr ptr, int role); +int QTableWidgetItem_Flags(QtObjectPtr ptr); +int QTableWidgetItem_IsSelected(QtObjectPtr ptr); +void QTableWidgetItem_Read(QtObjectPtr ptr, QtObjectPtr in); +int QTableWidgetItem_Row(QtObjectPtr ptr); +void QTableWidgetItem_SetBackground(QtObjectPtr ptr, QtObjectPtr brush); +void QTableWidgetItem_SetCheckState(QtObjectPtr ptr, int state); +void QTableWidgetItem_SetData(QtObjectPtr ptr, int role, char* value); +void QTableWidgetItem_SetFont(QtObjectPtr ptr, QtObjectPtr font); +void QTableWidgetItem_SetForeground(QtObjectPtr ptr, QtObjectPtr brush); +void QTableWidgetItem_SetIcon(QtObjectPtr ptr, QtObjectPtr icon); +void QTableWidgetItem_SetSelected(QtObjectPtr ptr, int sele); +void QTableWidgetItem_SetSizeHint(QtObjectPtr ptr, QtObjectPtr size); +void QTableWidgetItem_SetStatusTip(QtObjectPtr ptr, char* statusTip); +void QTableWidgetItem_SetText(QtObjectPtr ptr, char* text); +void QTableWidgetItem_SetTextAlignment(QtObjectPtr ptr, int alignment); +void QTableWidgetItem_SetToolTip(QtObjectPtr ptr, char* toolTip); +void QTableWidgetItem_SetWhatsThis(QtObjectPtr ptr, char* whatsThis); +char* QTableWidgetItem_StatusTip(QtObjectPtr ptr); +QtObjectPtr QTableWidgetItem_TableWidget(QtObjectPtr ptr); +char* QTableWidgetItem_Text(QtObjectPtr ptr); +int QTableWidgetItem_TextAlignment(QtObjectPtr ptr); +char* QTableWidgetItem_ToolTip(QtObjectPtr ptr); +int QTableWidgetItem_Type(QtObjectPtr ptr); +char* QTableWidgetItem_WhatsThis(QtObjectPtr ptr); +void QTableWidgetItem_Write(QtObjectPtr ptr, QtObjectPtr out); +void QTableWidgetItem_DestroyQTableWidgetItem(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qtablewidgetselectionrange.cpp b/widgets/qtablewidgetselectionrange.cpp new file mode 100755 index 00000000..9c40381c --- /dev/null +++ b/widgets/qtablewidgetselectionrange.cpp @@ -0,0 +1,53 @@ +#include "qtablewidgetselectionrange.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTableWidgetSelectionRange: public QTableWidgetSelectionRange { +public: +}; + +QtObjectPtr QTableWidgetSelectionRange_NewQTableWidgetSelectionRange(){ + return new QTableWidgetSelectionRange(); +} + +QtObjectPtr QTableWidgetSelectionRange_NewQTableWidgetSelectionRange3(QtObjectPtr other){ + return new QTableWidgetSelectionRange(*static_cast(other)); +} + +QtObjectPtr QTableWidgetSelectionRange_NewQTableWidgetSelectionRange2(int top, int left, int bottom, int right){ + return new QTableWidgetSelectionRange(top, left, bottom, right); +} + +int QTableWidgetSelectionRange_BottomRow(QtObjectPtr ptr){ + return static_cast(ptr)->bottomRow(); +} + +int QTableWidgetSelectionRange_ColumnCount(QtObjectPtr ptr){ + return static_cast(ptr)->columnCount(); +} + +int QTableWidgetSelectionRange_LeftColumn(QtObjectPtr ptr){ + return static_cast(ptr)->leftColumn(); +} + +int QTableWidgetSelectionRange_RightColumn(QtObjectPtr ptr){ + return static_cast(ptr)->rightColumn(); +} + +int QTableWidgetSelectionRange_RowCount(QtObjectPtr ptr){ + return static_cast(ptr)->rowCount(); +} + +int QTableWidgetSelectionRange_TopRow(QtObjectPtr ptr){ + return static_cast(ptr)->topRow(); +} + +void QTableWidgetSelectionRange_DestroyQTableWidgetSelectionRange(QtObjectPtr ptr){ + static_cast(ptr)->~QTableWidgetSelectionRange(); +} + diff --git a/widgets/qtablewidgetselectionrange.go b/widgets/qtablewidgetselectionrange.go new file mode 100755 index 00000000..5be0d522 --- /dev/null +++ b/widgets/qtablewidgetselectionrange.go @@ -0,0 +1,100 @@ +package widgets + +//#include "qtablewidgetselectionrange.h" +import "C" +import ( + "unsafe" +) + +type QTableWidgetSelectionRange struct { + ptr unsafe.Pointer +} + +type QTableWidgetSelectionRangeITF interface { + QTableWidgetSelectionRangePTR() *QTableWidgetSelectionRange +} + +func (p *QTableWidgetSelectionRange) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTableWidgetSelectionRange) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTableWidgetSelectionRange(ptr QTableWidgetSelectionRangeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTableWidgetSelectionRangePTR().Pointer() + } + return nil +} + +func QTableWidgetSelectionRangeFromPointer(ptr unsafe.Pointer) *QTableWidgetSelectionRange { + var n = new(QTableWidgetSelectionRange) + n.SetPointer(ptr) + return n +} + +func (ptr *QTableWidgetSelectionRange) QTableWidgetSelectionRangePTR() *QTableWidgetSelectionRange { + return ptr +} + +func NewQTableWidgetSelectionRange() *QTableWidgetSelectionRange { + return QTableWidgetSelectionRangeFromPointer(unsafe.Pointer(C.QTableWidgetSelectionRange_NewQTableWidgetSelectionRange())) +} + +func NewQTableWidgetSelectionRange3(other QTableWidgetSelectionRangeITF) *QTableWidgetSelectionRange { + return QTableWidgetSelectionRangeFromPointer(unsafe.Pointer(C.QTableWidgetSelectionRange_NewQTableWidgetSelectionRange3(C.QtObjectPtr(PointerFromQTableWidgetSelectionRange(other))))) +} + +func NewQTableWidgetSelectionRange2(top int, left int, bottom int, right int) *QTableWidgetSelectionRange { + return QTableWidgetSelectionRangeFromPointer(unsafe.Pointer(C.QTableWidgetSelectionRange_NewQTableWidgetSelectionRange2(C.int(top), C.int(left), C.int(bottom), C.int(right)))) +} + +func (ptr *QTableWidgetSelectionRange) BottomRow() int { + if ptr.Pointer() != nil { + return int(C.QTableWidgetSelectionRange_BottomRow(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTableWidgetSelectionRange) ColumnCount() int { + if ptr.Pointer() != nil { + return int(C.QTableWidgetSelectionRange_ColumnCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTableWidgetSelectionRange) LeftColumn() int { + if ptr.Pointer() != nil { + return int(C.QTableWidgetSelectionRange_LeftColumn(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTableWidgetSelectionRange) RightColumn() int { + if ptr.Pointer() != nil { + return int(C.QTableWidgetSelectionRange_RightColumn(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTableWidgetSelectionRange) RowCount() int { + if ptr.Pointer() != nil { + return int(C.QTableWidgetSelectionRange_RowCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTableWidgetSelectionRange) TopRow() int { + if ptr.Pointer() != nil { + return int(C.QTableWidgetSelectionRange_TopRow(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTableWidgetSelectionRange) DestroyQTableWidgetSelectionRange() { + if ptr.Pointer() != nil { + C.QTableWidgetSelectionRange_DestroyQTableWidgetSelectionRange(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qtablewidgetselectionrange.h b/widgets/qtablewidgetselectionrange.h new file mode 100755 index 00000000..3efd0f50 --- /dev/null +++ b/widgets/qtablewidgetselectionrange.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTableWidgetSelectionRange_NewQTableWidgetSelectionRange(); +QtObjectPtr QTableWidgetSelectionRange_NewQTableWidgetSelectionRange3(QtObjectPtr other); +QtObjectPtr QTableWidgetSelectionRange_NewQTableWidgetSelectionRange2(int top, int left, int bottom, int right); +int QTableWidgetSelectionRange_BottomRow(QtObjectPtr ptr); +int QTableWidgetSelectionRange_ColumnCount(QtObjectPtr ptr); +int QTableWidgetSelectionRange_LeftColumn(QtObjectPtr ptr); +int QTableWidgetSelectionRange_RightColumn(QtObjectPtr ptr); +int QTableWidgetSelectionRange_RowCount(QtObjectPtr ptr); +int QTableWidgetSelectionRange_TopRow(QtObjectPtr ptr); +void QTableWidgetSelectionRange_DestroyQTableWidgetSelectionRange(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qtabwidget.cpp b/widgets/qtabwidget.cpp new file mode 100755 index 00000000..b1285d12 --- /dev/null +++ b/widgets/qtabwidget.cpp @@ -0,0 +1,237 @@ +#include "qtabwidget.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTabWidget: public QTabWidget { +public: +void Signal_CurrentChanged(int index){callbackQTabWidgetCurrentChanged(this->objectName().toUtf8().data(), index);}; +void Signal_TabBarClicked(int index){callbackQTabWidgetTabBarClicked(this->objectName().toUtf8().data(), index);}; +void Signal_TabBarDoubleClicked(int index){callbackQTabWidgetTabBarDoubleClicked(this->objectName().toUtf8().data(), index);}; +void Signal_TabCloseRequested(int index){callbackQTabWidgetTabCloseRequested(this->objectName().toUtf8().data(), index);}; +}; + +int QTabWidget_AddTab2(QtObjectPtr ptr, QtObjectPtr page, QtObjectPtr icon, char* label){ + return static_cast(ptr)->addTab(static_cast(page), *static_cast(icon), QString(label)); +} + +int QTabWidget_AddTab(QtObjectPtr ptr, QtObjectPtr page, char* label){ + return static_cast(ptr)->addTab(static_cast(page), QString(label)); +} + +int QTabWidget_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +int QTabWidget_CurrentIndex(QtObjectPtr ptr){ + return static_cast(ptr)->currentIndex(); +} + +int QTabWidget_DocumentMode(QtObjectPtr ptr){ + return static_cast(ptr)->documentMode(); +} + +int QTabWidget_ElideMode(QtObjectPtr ptr){ + return static_cast(ptr)->elideMode(); +} + +int QTabWidget_InsertTab2(QtObjectPtr ptr, int index, QtObjectPtr page, QtObjectPtr icon, char* label){ + return static_cast(ptr)->insertTab(index, static_cast(page), *static_cast(icon), QString(label)); +} + +int QTabWidget_InsertTab(QtObjectPtr ptr, int index, QtObjectPtr page, char* label){ + return static_cast(ptr)->insertTab(index, static_cast(page), QString(label)); +} + +int QTabWidget_IsMovable(QtObjectPtr ptr){ + return static_cast(ptr)->isMovable(); +} + +void QTabWidget_SetCornerWidget(QtObjectPtr ptr, QtObjectPtr widget, int corner){ + static_cast(ptr)->setCornerWidget(static_cast(widget), static_cast(corner)); +} + +void QTabWidget_SetCurrentIndex(QtObjectPtr ptr, int index){ + QMetaObject::invokeMethod(static_cast(ptr), "setCurrentIndex", Q_ARG(int, index)); +} + +void QTabWidget_SetDocumentMode(QtObjectPtr ptr, int set){ + static_cast(ptr)->setDocumentMode(set != 0); +} + +void QTabWidget_SetElideMode(QtObjectPtr ptr, int v){ + static_cast(ptr)->setElideMode(static_cast(v)); +} + +void QTabWidget_SetIconSize(QtObjectPtr ptr, QtObjectPtr size){ + static_cast(ptr)->setIconSize(*static_cast(size)); +} + +void QTabWidget_SetMovable(QtObjectPtr ptr, int movable){ + static_cast(ptr)->setMovable(movable != 0); +} + +void QTabWidget_SetTabBarAutoHide(QtObjectPtr ptr, int enabled){ + static_cast(ptr)->setTabBarAutoHide(enabled != 0); +} + +void QTabWidget_SetTabPosition(QtObjectPtr ptr, int v){ + static_cast(ptr)->setTabPosition(static_cast(v)); +} + +void QTabWidget_SetTabShape(QtObjectPtr ptr, int s){ + static_cast(ptr)->setTabShape(static_cast(s)); +} + +void QTabWidget_SetTabsClosable(QtObjectPtr ptr, int closeable){ + static_cast(ptr)->setTabsClosable(closeable != 0); +} + +void QTabWidget_SetUsesScrollButtons(QtObjectPtr ptr, int useButtons){ + static_cast(ptr)->setUsesScrollButtons(useButtons != 0); +} + +int QTabWidget_TabBarAutoHide(QtObjectPtr ptr){ + return static_cast(ptr)->tabBarAutoHide(); +} + +int QTabWidget_TabPosition(QtObjectPtr ptr){ + return static_cast(ptr)->tabPosition(); +} + +int QTabWidget_TabShape(QtObjectPtr ptr){ + return static_cast(ptr)->tabShape(); +} + +int QTabWidget_TabsClosable(QtObjectPtr ptr){ + return static_cast(ptr)->tabsClosable(); +} + +int QTabWidget_UsesScrollButtons(QtObjectPtr ptr){ + return static_cast(ptr)->usesScrollButtons(); +} + +QtObjectPtr QTabWidget_NewQTabWidget(QtObjectPtr parent){ + return new QTabWidget(static_cast(parent)); +} + +void QTabWidget_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +QtObjectPtr QTabWidget_CornerWidget(QtObjectPtr ptr, int corner){ + return static_cast(ptr)->cornerWidget(static_cast(corner)); +} + +void QTabWidget_ConnectCurrentChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTabWidget::currentChanged), static_cast(ptr), static_cast(&MyQTabWidget::Signal_CurrentChanged));; +} + +void QTabWidget_DisconnectCurrentChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTabWidget::currentChanged), static_cast(ptr), static_cast(&MyQTabWidget::Signal_CurrentChanged));; +} + +QtObjectPtr QTabWidget_CurrentWidget(QtObjectPtr ptr){ + return static_cast(ptr)->currentWidget(); +} + +int QTabWidget_HasHeightForWidth(QtObjectPtr ptr){ + return static_cast(ptr)->hasHeightForWidth(); +} + +int QTabWidget_HeightForWidth(QtObjectPtr ptr, int width){ + return static_cast(ptr)->heightForWidth(width); +} + +int QTabWidget_IndexOf(QtObjectPtr ptr, QtObjectPtr w){ + return static_cast(ptr)->indexOf(static_cast(w)); +} + +int QTabWidget_IsTabEnabled(QtObjectPtr ptr, int index){ + return static_cast(ptr)->isTabEnabled(index); +} + +void QTabWidget_RemoveTab(QtObjectPtr ptr, int index){ + static_cast(ptr)->removeTab(index); +} + +void QTabWidget_SetCurrentWidget(QtObjectPtr ptr, QtObjectPtr widget){ + QMetaObject::invokeMethod(static_cast(ptr), "setCurrentWidget", Q_ARG(QWidget*, static_cast(widget))); +} + +void QTabWidget_SetTabEnabled(QtObjectPtr ptr, int index, int enable){ + static_cast(ptr)->setTabEnabled(index, enable != 0); +} + +void QTabWidget_SetTabIcon(QtObjectPtr ptr, int index, QtObjectPtr icon){ + static_cast(ptr)->setTabIcon(index, *static_cast(icon)); +} + +void QTabWidget_SetTabText(QtObjectPtr ptr, int index, char* label){ + static_cast(ptr)->setTabText(index, QString(label)); +} + +void QTabWidget_SetTabToolTip(QtObjectPtr ptr, int index, char* tip){ + static_cast(ptr)->setTabToolTip(index, QString(tip)); +} + +void QTabWidget_SetTabWhatsThis(QtObjectPtr ptr, int index, char* text){ + static_cast(ptr)->setTabWhatsThis(index, QString(text)); +} + +QtObjectPtr QTabWidget_TabBar(QtObjectPtr ptr){ + return static_cast(ptr)->tabBar(); +} + +void QTabWidget_ConnectTabBarClicked(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTabWidget::tabBarClicked), static_cast(ptr), static_cast(&MyQTabWidget::Signal_TabBarClicked));; +} + +void QTabWidget_DisconnectTabBarClicked(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTabWidget::tabBarClicked), static_cast(ptr), static_cast(&MyQTabWidget::Signal_TabBarClicked));; +} + +void QTabWidget_ConnectTabBarDoubleClicked(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTabWidget::tabBarDoubleClicked), static_cast(ptr), static_cast(&MyQTabWidget::Signal_TabBarDoubleClicked));; +} + +void QTabWidget_DisconnectTabBarDoubleClicked(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTabWidget::tabBarDoubleClicked), static_cast(ptr), static_cast(&MyQTabWidget::Signal_TabBarDoubleClicked));; +} + +void QTabWidget_ConnectTabCloseRequested(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTabWidget::tabCloseRequested), static_cast(ptr), static_cast(&MyQTabWidget::Signal_TabCloseRequested));; +} + +void QTabWidget_DisconnectTabCloseRequested(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTabWidget::tabCloseRequested), static_cast(ptr), static_cast(&MyQTabWidget::Signal_TabCloseRequested));; +} + +char* QTabWidget_TabText(QtObjectPtr ptr, int index){ + return static_cast(ptr)->tabText(index).toUtf8().data(); +} + +char* QTabWidget_TabToolTip(QtObjectPtr ptr, int index){ + return static_cast(ptr)->tabToolTip(index).toUtf8().data(); +} + +char* QTabWidget_TabWhatsThis(QtObjectPtr ptr, int index){ + return static_cast(ptr)->tabWhatsThis(index).toUtf8().data(); +} + +QtObjectPtr QTabWidget_Widget(QtObjectPtr ptr, int index){ + return static_cast(ptr)->widget(index); +} + +void QTabWidget_DestroyQTabWidget(QtObjectPtr ptr){ + static_cast(ptr)->~QTabWidget(); +} + diff --git a/widgets/qtabwidget.go b/widgets/qtabwidget.go new file mode 100755 index 00000000..47888924 --- /dev/null +++ b/widgets/qtabwidget.go @@ -0,0 +1,433 @@ +package widgets + +//#include "qtabwidget.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QTabWidget struct { + QWidget +} + +type QTabWidgetITF interface { + QWidgetITF + QTabWidgetPTR() *QTabWidget +} + +func PointerFromQTabWidget(ptr QTabWidgetITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTabWidgetPTR().Pointer() + } + return nil +} + +func QTabWidgetFromPointer(ptr unsafe.Pointer) *QTabWidget { + var n = new(QTabWidget) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QTabWidget_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QTabWidget) QTabWidgetPTR() *QTabWidget { + return ptr +} + +//QTabWidget::TabPosition +type QTabWidget__TabPosition int + +var ( + QTabWidget__North = QTabWidget__TabPosition(0) + QTabWidget__South = QTabWidget__TabPosition(1) + QTabWidget__West = QTabWidget__TabPosition(2) + QTabWidget__East = QTabWidget__TabPosition(3) +) + +//QTabWidget::TabShape +type QTabWidget__TabShape int + +var ( + QTabWidget__Rounded = QTabWidget__TabShape(0) + QTabWidget__Triangular = QTabWidget__TabShape(1) +) + +func (ptr *QTabWidget) AddTab2(page QWidgetITF, icon gui.QIconITF, label string) int { + if ptr.Pointer() != nil { + return int(C.QTabWidget_AddTab2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(page)), C.QtObjectPtr(gui.PointerFromQIcon(icon)), C.CString(label))) + } + return 0 +} + +func (ptr *QTabWidget) AddTab(page QWidgetITF, label string) int { + if ptr.Pointer() != nil { + return int(C.QTabWidget_AddTab(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(page)), C.CString(label))) + } + return 0 +} + +func (ptr *QTabWidget) Count() int { + if ptr.Pointer() != nil { + return int(C.QTabWidget_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTabWidget) CurrentIndex() int { + if ptr.Pointer() != nil { + return int(C.QTabWidget_CurrentIndex(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTabWidget) DocumentMode() bool { + if ptr.Pointer() != nil { + return C.QTabWidget_DocumentMode(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTabWidget) ElideMode() core.Qt__TextElideMode { + if ptr.Pointer() != nil { + return core.Qt__TextElideMode(C.QTabWidget_ElideMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTabWidget) InsertTab2(index int, page QWidgetITF, icon gui.QIconITF, label string) int { + if ptr.Pointer() != nil { + return int(C.QTabWidget_InsertTab2(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.QtObjectPtr(PointerFromQWidget(page)), C.QtObjectPtr(gui.PointerFromQIcon(icon)), C.CString(label))) + } + return 0 +} + +func (ptr *QTabWidget) InsertTab(index int, page QWidgetITF, label string) int { + if ptr.Pointer() != nil { + return int(C.QTabWidget_InsertTab(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.QtObjectPtr(PointerFromQWidget(page)), C.CString(label))) + } + return 0 +} + +func (ptr *QTabWidget) IsMovable() bool { + if ptr.Pointer() != nil { + return C.QTabWidget_IsMovable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTabWidget) SetCornerWidget(widget QWidgetITF, corner core.Qt__Corner) { + if ptr.Pointer() != nil { + C.QTabWidget_SetCornerWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget)), C.int(corner)) + } +} + +func (ptr *QTabWidget) SetCurrentIndex(index int) { + if ptr.Pointer() != nil { + C.QTabWidget_SetCurrentIndex(C.QtObjectPtr(ptr.Pointer()), C.int(index)) + } +} + +func (ptr *QTabWidget) SetDocumentMode(set bool) { + if ptr.Pointer() != nil { + C.QTabWidget_SetDocumentMode(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(set))) + } +} + +func (ptr *QTabWidget) SetElideMode(v core.Qt__TextElideMode) { + if ptr.Pointer() != nil { + C.QTabWidget_SetElideMode(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QTabWidget) SetIconSize(size core.QSizeITF) { + if ptr.Pointer() != nil { + C.QTabWidget_SetIconSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(size))) + } +} + +func (ptr *QTabWidget) SetMovable(movable bool) { + if ptr.Pointer() != nil { + C.QTabWidget_SetMovable(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(movable))) + } +} + +func (ptr *QTabWidget) SetTabBarAutoHide(enabled bool) { + if ptr.Pointer() != nil { + C.QTabWidget_SetTabBarAutoHide(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QTabWidget) SetTabPosition(v QTabWidget__TabPosition) { + if ptr.Pointer() != nil { + C.QTabWidget_SetTabPosition(C.QtObjectPtr(ptr.Pointer()), C.int(v)) + } +} + +func (ptr *QTabWidget) SetTabShape(s QTabWidget__TabShape) { + if ptr.Pointer() != nil { + C.QTabWidget_SetTabShape(C.QtObjectPtr(ptr.Pointer()), C.int(s)) + } +} + +func (ptr *QTabWidget) SetTabsClosable(closeable bool) { + if ptr.Pointer() != nil { + C.QTabWidget_SetTabsClosable(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(closeable))) + } +} + +func (ptr *QTabWidget) SetUsesScrollButtons(useButtons bool) { + if ptr.Pointer() != nil { + C.QTabWidget_SetUsesScrollButtons(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(useButtons))) + } +} + +func (ptr *QTabWidget) TabBarAutoHide() bool { + if ptr.Pointer() != nil { + return C.QTabWidget_TabBarAutoHide(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTabWidget) TabPosition() QTabWidget__TabPosition { + if ptr.Pointer() != nil { + return QTabWidget__TabPosition(C.QTabWidget_TabPosition(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTabWidget) TabShape() QTabWidget__TabShape { + if ptr.Pointer() != nil { + return QTabWidget__TabShape(C.QTabWidget_TabShape(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTabWidget) TabsClosable() bool { + if ptr.Pointer() != nil { + return C.QTabWidget_TabsClosable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTabWidget) UsesScrollButtons() bool { + if ptr.Pointer() != nil { + return C.QTabWidget_UsesScrollButtons(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func NewQTabWidget(parent QWidgetITF) *QTabWidget { + return QTabWidgetFromPointer(unsafe.Pointer(C.QTabWidget_NewQTabWidget(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QTabWidget) Clear() { + if ptr.Pointer() != nil { + C.QTabWidget_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTabWidget) CornerWidget(corner core.Qt__Corner) *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QTabWidget_CornerWidget(C.QtObjectPtr(ptr.Pointer()), C.int(corner)))) + } + return nil +} + +func (ptr *QTabWidget) ConnectCurrentChanged(f func(index int)) { + if ptr.Pointer() != nil { + C.QTabWidget_ConnectCurrentChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "currentChanged", f) + } +} + +func (ptr *QTabWidget) DisconnectCurrentChanged() { + if ptr.Pointer() != nil { + C.QTabWidget_DisconnectCurrentChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "currentChanged") + } +} + +//export callbackQTabWidgetCurrentChanged +func callbackQTabWidgetCurrentChanged(ptrName *C.char, index C.int) { + qt.GetSignal(C.GoString(ptrName), "currentChanged").(func(int))(int(index)) +} + +func (ptr *QTabWidget) CurrentWidget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QTabWidget_CurrentWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTabWidget) HasHeightForWidth() bool { + if ptr.Pointer() != nil { + return C.QTabWidget_HasHeightForWidth(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTabWidget) HeightForWidth(width int) int { + if ptr.Pointer() != nil { + return int(C.QTabWidget_HeightForWidth(C.QtObjectPtr(ptr.Pointer()), C.int(width))) + } + return 0 +} + +func (ptr *QTabWidget) IndexOf(w QWidgetITF) int { + if ptr.Pointer() != nil { + return int(C.QTabWidget_IndexOf(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(w)))) + } + return 0 +} + +func (ptr *QTabWidget) IsTabEnabled(index int) bool { + if ptr.Pointer() != nil { + return C.QTabWidget_IsTabEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(index)) != 0 + } + return false +} + +func (ptr *QTabWidget) RemoveTab(index int) { + if ptr.Pointer() != nil { + C.QTabWidget_RemoveTab(C.QtObjectPtr(ptr.Pointer()), C.int(index)) + } +} + +func (ptr *QTabWidget) SetCurrentWidget(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QTabWidget_SetCurrentWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QTabWidget) SetTabEnabled(index int, enable bool) { + if ptr.Pointer() != nil { + C.QTabWidget_SetTabEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QTabWidget) SetTabIcon(index int, icon gui.QIconITF) { + if ptr.Pointer() != nil { + C.QTabWidget_SetTabIcon(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.QtObjectPtr(gui.PointerFromQIcon(icon))) + } +} + +func (ptr *QTabWidget) SetTabText(index int, label string) { + if ptr.Pointer() != nil { + C.QTabWidget_SetTabText(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.CString(label)) + } +} + +func (ptr *QTabWidget) SetTabToolTip(index int, tip string) { + if ptr.Pointer() != nil { + C.QTabWidget_SetTabToolTip(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.CString(tip)) + } +} + +func (ptr *QTabWidget) SetTabWhatsThis(index int, text string) { + if ptr.Pointer() != nil { + C.QTabWidget_SetTabWhatsThis(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.CString(text)) + } +} + +func (ptr *QTabWidget) TabBar() *QTabBar { + if ptr.Pointer() != nil { + return QTabBarFromPointer(unsafe.Pointer(C.QTabWidget_TabBar(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTabWidget) ConnectTabBarClicked(f func(index int)) { + if ptr.Pointer() != nil { + C.QTabWidget_ConnectTabBarClicked(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "tabBarClicked", f) + } +} + +func (ptr *QTabWidget) DisconnectTabBarClicked() { + if ptr.Pointer() != nil { + C.QTabWidget_DisconnectTabBarClicked(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "tabBarClicked") + } +} + +//export callbackQTabWidgetTabBarClicked +func callbackQTabWidgetTabBarClicked(ptrName *C.char, index C.int) { + qt.GetSignal(C.GoString(ptrName), "tabBarClicked").(func(int))(int(index)) +} + +func (ptr *QTabWidget) ConnectTabBarDoubleClicked(f func(index int)) { + if ptr.Pointer() != nil { + C.QTabWidget_ConnectTabBarDoubleClicked(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "tabBarDoubleClicked", f) + } +} + +func (ptr *QTabWidget) DisconnectTabBarDoubleClicked() { + if ptr.Pointer() != nil { + C.QTabWidget_DisconnectTabBarDoubleClicked(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "tabBarDoubleClicked") + } +} + +//export callbackQTabWidgetTabBarDoubleClicked +func callbackQTabWidgetTabBarDoubleClicked(ptrName *C.char, index C.int) { + qt.GetSignal(C.GoString(ptrName), "tabBarDoubleClicked").(func(int))(int(index)) +} + +func (ptr *QTabWidget) ConnectTabCloseRequested(f func(index int)) { + if ptr.Pointer() != nil { + C.QTabWidget_ConnectTabCloseRequested(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "tabCloseRequested", f) + } +} + +func (ptr *QTabWidget) DisconnectTabCloseRequested() { + if ptr.Pointer() != nil { + C.QTabWidget_DisconnectTabCloseRequested(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "tabCloseRequested") + } +} + +//export callbackQTabWidgetTabCloseRequested +func callbackQTabWidgetTabCloseRequested(ptrName *C.char, index C.int) { + qt.GetSignal(C.GoString(ptrName), "tabCloseRequested").(func(int))(int(index)) +} + +func (ptr *QTabWidget) TabText(index int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTabWidget_TabText(C.QtObjectPtr(ptr.Pointer()), C.int(index))) + } + return "" +} + +func (ptr *QTabWidget) TabToolTip(index int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTabWidget_TabToolTip(C.QtObjectPtr(ptr.Pointer()), C.int(index))) + } + return "" +} + +func (ptr *QTabWidget) TabWhatsThis(index int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTabWidget_TabWhatsThis(C.QtObjectPtr(ptr.Pointer()), C.int(index))) + } + return "" +} + +func (ptr *QTabWidget) Widget(index int) *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QTabWidget_Widget(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QTabWidget) DestroyQTabWidget() { + if ptr.Pointer() != nil { + C.QTabWidget_DestroyQTabWidget(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qtabwidget.h b/widgets/qtabwidget.h new file mode 100755 index 00000000..7a0826bc --- /dev/null +++ b/widgets/qtabwidget.h @@ -0,0 +1,63 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QTabWidget_AddTab2(QtObjectPtr ptr, QtObjectPtr page, QtObjectPtr icon, char* label); +int QTabWidget_AddTab(QtObjectPtr ptr, QtObjectPtr page, char* label); +int QTabWidget_Count(QtObjectPtr ptr); +int QTabWidget_CurrentIndex(QtObjectPtr ptr); +int QTabWidget_DocumentMode(QtObjectPtr ptr); +int QTabWidget_ElideMode(QtObjectPtr ptr); +int QTabWidget_InsertTab2(QtObjectPtr ptr, int index, QtObjectPtr page, QtObjectPtr icon, char* label); +int QTabWidget_InsertTab(QtObjectPtr ptr, int index, QtObjectPtr page, char* label); +int QTabWidget_IsMovable(QtObjectPtr ptr); +void QTabWidget_SetCornerWidget(QtObjectPtr ptr, QtObjectPtr widget, int corner); +void QTabWidget_SetCurrentIndex(QtObjectPtr ptr, int index); +void QTabWidget_SetDocumentMode(QtObjectPtr ptr, int set); +void QTabWidget_SetElideMode(QtObjectPtr ptr, int v); +void QTabWidget_SetIconSize(QtObjectPtr ptr, QtObjectPtr size); +void QTabWidget_SetMovable(QtObjectPtr ptr, int movable); +void QTabWidget_SetTabBarAutoHide(QtObjectPtr ptr, int enabled); +void QTabWidget_SetTabPosition(QtObjectPtr ptr, int v); +void QTabWidget_SetTabShape(QtObjectPtr ptr, int s); +void QTabWidget_SetTabsClosable(QtObjectPtr ptr, int closeable); +void QTabWidget_SetUsesScrollButtons(QtObjectPtr ptr, int useButtons); +int QTabWidget_TabBarAutoHide(QtObjectPtr ptr); +int QTabWidget_TabPosition(QtObjectPtr ptr); +int QTabWidget_TabShape(QtObjectPtr ptr); +int QTabWidget_TabsClosable(QtObjectPtr ptr); +int QTabWidget_UsesScrollButtons(QtObjectPtr ptr); +QtObjectPtr QTabWidget_NewQTabWidget(QtObjectPtr parent); +void QTabWidget_Clear(QtObjectPtr ptr); +QtObjectPtr QTabWidget_CornerWidget(QtObjectPtr ptr, int corner); +void QTabWidget_ConnectCurrentChanged(QtObjectPtr ptr); +void QTabWidget_DisconnectCurrentChanged(QtObjectPtr ptr); +QtObjectPtr QTabWidget_CurrentWidget(QtObjectPtr ptr); +int QTabWidget_HasHeightForWidth(QtObjectPtr ptr); +int QTabWidget_HeightForWidth(QtObjectPtr ptr, int width); +int QTabWidget_IndexOf(QtObjectPtr ptr, QtObjectPtr w); +int QTabWidget_IsTabEnabled(QtObjectPtr ptr, int index); +void QTabWidget_RemoveTab(QtObjectPtr ptr, int index); +void QTabWidget_SetCurrentWidget(QtObjectPtr ptr, QtObjectPtr widget); +void QTabWidget_SetTabEnabled(QtObjectPtr ptr, int index, int enable); +void QTabWidget_SetTabIcon(QtObjectPtr ptr, int index, QtObjectPtr icon); +void QTabWidget_SetTabText(QtObjectPtr ptr, int index, char* label); +void QTabWidget_SetTabToolTip(QtObjectPtr ptr, int index, char* tip); +void QTabWidget_SetTabWhatsThis(QtObjectPtr ptr, int index, char* text); +QtObjectPtr QTabWidget_TabBar(QtObjectPtr ptr); +void QTabWidget_ConnectTabBarClicked(QtObjectPtr ptr); +void QTabWidget_DisconnectTabBarClicked(QtObjectPtr ptr); +void QTabWidget_ConnectTabBarDoubleClicked(QtObjectPtr ptr); +void QTabWidget_DisconnectTabBarDoubleClicked(QtObjectPtr ptr); +void QTabWidget_ConnectTabCloseRequested(QtObjectPtr ptr); +void QTabWidget_DisconnectTabCloseRequested(QtObjectPtr ptr); +char* QTabWidget_TabText(QtObjectPtr ptr, int index); +char* QTabWidget_TabToolTip(QtObjectPtr ptr, int index); +char* QTabWidget_TabWhatsThis(QtObjectPtr ptr, int index); +QtObjectPtr QTabWidget_Widget(QtObjectPtr ptr, int index); +void QTabWidget_DestroyQTabWidget(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qtapandholdgesture.cpp b/widgets/qtapandholdgesture.cpp new file mode 100755 index 00000000..72850615 --- /dev/null +++ b/widgets/qtapandholdgesture.cpp @@ -0,0 +1,30 @@ +#include "qtapandholdgesture.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTapAndHoldGesture: public QTapAndHoldGesture { +public: +}; + +void QTapAndHoldGesture_SetPosition(QtObjectPtr ptr, QtObjectPtr pos){ + static_cast(ptr)->setPosition(*static_cast(pos)); +} + +void QTapAndHoldGesture_QTapAndHoldGesture_SetTimeout(int msecs){ + QTapAndHoldGesture::setTimeout(msecs); +} + +int QTapAndHoldGesture_QTapAndHoldGesture_Timeout(){ + return QTapAndHoldGesture::timeout(); +} + +void QTapAndHoldGesture_DestroyQTapAndHoldGesture(QtObjectPtr ptr){ + static_cast(ptr)->~QTapAndHoldGesture(); +} + diff --git a/widgets/qtapandholdgesture.go b/widgets/qtapandholdgesture.go new file mode 100755 index 00000000..291ed6b8 --- /dev/null +++ b/widgets/qtapandholdgesture.go @@ -0,0 +1,59 @@ +package widgets + +//#include "qtapandholdgesture.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QTapAndHoldGesture struct { + QGesture +} + +type QTapAndHoldGestureITF interface { + QGestureITF + QTapAndHoldGesturePTR() *QTapAndHoldGesture +} + +func PointerFromQTapAndHoldGesture(ptr QTapAndHoldGestureITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTapAndHoldGesturePTR().Pointer() + } + return nil +} + +func QTapAndHoldGestureFromPointer(ptr unsafe.Pointer) *QTapAndHoldGesture { + var n = new(QTapAndHoldGesture) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QTapAndHoldGesture_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QTapAndHoldGesture) QTapAndHoldGesturePTR() *QTapAndHoldGesture { + return ptr +} + +func (ptr *QTapAndHoldGesture) SetPosition(pos core.QPointFITF) { + if ptr.Pointer() != nil { + C.QTapAndHoldGesture_SetPosition(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(pos))) + } +} + +func QTapAndHoldGesture_SetTimeout(msecs int) { + C.QTapAndHoldGesture_QTapAndHoldGesture_SetTimeout(C.int(msecs)) +} + +func QTapAndHoldGesture_Timeout() int { + return int(C.QTapAndHoldGesture_QTapAndHoldGesture_Timeout()) +} + +func (ptr *QTapAndHoldGesture) DestroyQTapAndHoldGesture() { + if ptr.Pointer() != nil { + C.QTapAndHoldGesture_DestroyQTapAndHoldGesture(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qtapandholdgesture.h b/widgets/qtapandholdgesture.h new file mode 100755 index 00000000..62ece7b5 --- /dev/null +++ b/widgets/qtapandholdgesture.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QTapAndHoldGesture_SetPosition(QtObjectPtr ptr, QtObjectPtr pos); +void QTapAndHoldGesture_QTapAndHoldGesture_SetTimeout(int msecs); +int QTapAndHoldGesture_QTapAndHoldGesture_Timeout(); +void QTapAndHoldGesture_DestroyQTapAndHoldGesture(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qtapgesture.cpp b/widgets/qtapgesture.cpp new file mode 100755 index 00000000..8643c5bd --- /dev/null +++ b/widgets/qtapgesture.cpp @@ -0,0 +1,22 @@ +#include "qtapgesture.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTapGesture: public QTapGesture { +public: +}; + +void QTapGesture_SetPosition(QtObjectPtr ptr, QtObjectPtr pos){ + static_cast(ptr)->setPosition(*static_cast(pos)); +} + +void QTapGesture_DestroyQTapGesture(QtObjectPtr ptr){ + static_cast(ptr)->~QTapGesture(); +} + diff --git a/widgets/qtapgesture.go b/widgets/qtapgesture.go new file mode 100755 index 00000000..f9f6fb00 --- /dev/null +++ b/widgets/qtapgesture.go @@ -0,0 +1,51 @@ +package widgets + +//#include "qtapgesture.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QTapGesture struct { + QGesture +} + +type QTapGestureITF interface { + QGestureITF + QTapGesturePTR() *QTapGesture +} + +func PointerFromQTapGesture(ptr QTapGestureITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTapGesturePTR().Pointer() + } + return nil +} + +func QTapGestureFromPointer(ptr unsafe.Pointer) *QTapGesture { + var n = new(QTapGesture) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QTapGesture_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QTapGesture) QTapGesturePTR() *QTapGesture { + return ptr +} + +func (ptr *QTapGesture) SetPosition(pos core.QPointFITF) { + if ptr.Pointer() != nil { + C.QTapGesture_SetPosition(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPointF(pos))) + } +} + +func (ptr *QTapGesture) DestroyQTapGesture() { + if ptr.Pointer() != nil { + C.QTapGesture_DestroyQTapGesture(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qtapgesture.h b/widgets/qtapgesture.h new file mode 100755 index 00000000..15d59b8a --- /dev/null +++ b/widgets/qtapgesture.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QTapGesture_SetPosition(QtObjectPtr ptr, QtObjectPtr pos); +void QTapGesture_DestroyQTapGesture(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qtextbrowser.cpp b/widgets/qtextbrowser.cpp new file mode 100755 index 00000000..e5ed5a85 --- /dev/null +++ b/widgets/qtextbrowser.cpp @@ -0,0 +1,153 @@ +#include "qtextbrowser.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextBrowser: public QTextBrowser { +public: +void Signal_AnchorClicked(const QUrl & link){callbackQTextBrowserAnchorClicked(this->objectName().toUtf8().data(), link.toString().toUtf8().data());}; +void Signal_BackwardAvailable(bool available){callbackQTextBrowserBackwardAvailable(this->objectName().toUtf8().data(), available);}; +void Signal_ForwardAvailable(bool available){callbackQTextBrowserForwardAvailable(this->objectName().toUtf8().data(), available);}; +void Signal_Highlighted(const QUrl & link){callbackQTextBrowserHighlighted(this->objectName().toUtf8().data(), link.toString().toUtf8().data());}; +void Signal_HistoryChanged(){callbackQTextBrowserHistoryChanged(this->objectName().toUtf8().data());}; +void Signal_SourceChanged(const QUrl & src){callbackQTextBrowserSourceChanged(this->objectName().toUtf8().data(), src.toString().toUtf8().data());}; +}; + +int QTextBrowser_OpenExternalLinks(QtObjectPtr ptr){ + return static_cast(ptr)->openExternalLinks(); +} + +int QTextBrowser_OpenLinks(QtObjectPtr ptr){ + return static_cast(ptr)->openLinks(); +} + +char* QTextBrowser_SearchPaths(QtObjectPtr ptr){ + return static_cast(ptr)->searchPaths().join("|").toUtf8().data(); +} + +void QTextBrowser_SetOpenExternalLinks(QtObjectPtr ptr, int open){ + static_cast(ptr)->setOpenExternalLinks(open != 0); +} + +void QTextBrowser_SetOpenLinks(QtObjectPtr ptr, int open){ + static_cast(ptr)->setOpenLinks(open != 0); +} + +void QTextBrowser_SetSearchPaths(QtObjectPtr ptr, char* paths){ + static_cast(ptr)->setSearchPaths(QString(paths).split("|", QString::SkipEmptyParts)); +} + +void QTextBrowser_SetSource(QtObjectPtr ptr, char* name){ + QMetaObject::invokeMethod(static_cast(ptr), "setSource", Q_ARG(QUrl, QUrl(QString(name)))); +} + +char* QTextBrowser_Source(QtObjectPtr ptr){ + return static_cast(ptr)->source().toString().toUtf8().data(); +} + +QtObjectPtr QTextBrowser_NewQTextBrowser(QtObjectPtr parent){ + return new QTextBrowser(static_cast(parent)); +} + +void QTextBrowser_ConnectAnchorClicked(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTextBrowser::anchorClicked), static_cast(ptr), static_cast(&MyQTextBrowser::Signal_AnchorClicked));; +} + +void QTextBrowser_DisconnectAnchorClicked(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTextBrowser::anchorClicked), static_cast(ptr), static_cast(&MyQTextBrowser::Signal_AnchorClicked));; +} + +void QTextBrowser_Backward(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "backward"); +} + +void QTextBrowser_ConnectBackwardAvailable(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTextBrowser::backwardAvailable), static_cast(ptr), static_cast(&MyQTextBrowser::Signal_BackwardAvailable));; +} + +void QTextBrowser_DisconnectBackwardAvailable(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTextBrowser::backwardAvailable), static_cast(ptr), static_cast(&MyQTextBrowser::Signal_BackwardAvailable));; +} + +int QTextBrowser_BackwardHistoryCount(QtObjectPtr ptr){ + return static_cast(ptr)->backwardHistoryCount(); +} + +void QTextBrowser_ClearHistory(QtObjectPtr ptr){ + static_cast(ptr)->clearHistory(); +} + +void QTextBrowser_Forward(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "forward"); +} + +void QTextBrowser_ConnectForwardAvailable(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTextBrowser::forwardAvailable), static_cast(ptr), static_cast(&MyQTextBrowser::Signal_ForwardAvailable));; +} + +void QTextBrowser_DisconnectForwardAvailable(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTextBrowser::forwardAvailable), static_cast(ptr), static_cast(&MyQTextBrowser::Signal_ForwardAvailable));; +} + +int QTextBrowser_ForwardHistoryCount(QtObjectPtr ptr){ + return static_cast(ptr)->forwardHistoryCount(); +} + +void QTextBrowser_ConnectHighlighted(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTextBrowser::highlighted), static_cast(ptr), static_cast(&MyQTextBrowser::Signal_Highlighted));; +} + +void QTextBrowser_DisconnectHighlighted(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTextBrowser::highlighted), static_cast(ptr), static_cast(&MyQTextBrowser::Signal_Highlighted));; +} + +void QTextBrowser_ConnectHistoryChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTextBrowser::historyChanged), static_cast(ptr), static_cast(&MyQTextBrowser::Signal_HistoryChanged));; +} + +void QTextBrowser_DisconnectHistoryChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTextBrowser::historyChanged), static_cast(ptr), static_cast(&MyQTextBrowser::Signal_HistoryChanged));; +} + +char* QTextBrowser_HistoryTitle(QtObjectPtr ptr, int i){ + return static_cast(ptr)->historyTitle(i).toUtf8().data(); +} + +char* QTextBrowser_HistoryUrl(QtObjectPtr ptr, int i){ + return static_cast(ptr)->historyUrl(i).toString().toUtf8().data(); +} + +void QTextBrowser_Home(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "home"); +} + +int QTextBrowser_IsBackwardAvailable(QtObjectPtr ptr){ + return static_cast(ptr)->isBackwardAvailable(); +} + +int QTextBrowser_IsForwardAvailable(QtObjectPtr ptr){ + return static_cast(ptr)->isForwardAvailable(); +} + +char* QTextBrowser_LoadResource(QtObjectPtr ptr, int ty, char* name){ + return static_cast(ptr)->loadResource(ty, QUrl(QString(name))).toString().toUtf8().data(); +} + +void QTextBrowser_Reload(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "reload"); +} + +void QTextBrowser_ConnectSourceChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTextBrowser::sourceChanged), static_cast(ptr), static_cast(&MyQTextBrowser::Signal_SourceChanged));; +} + +void QTextBrowser_DisconnectSourceChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTextBrowser::sourceChanged), static_cast(ptr), static_cast(&MyQTextBrowser::Signal_SourceChanged));; +} + diff --git a/widgets/qtextbrowser.go b/widgets/qtextbrowser.go new file mode 100755 index 00000000..984e8562 --- /dev/null +++ b/widgets/qtextbrowser.go @@ -0,0 +1,287 @@ +package widgets + +//#include "qtextbrowser.h" +import "C" +import ( + "github.com/therecipe/qt" + "strings" + "unsafe" +) + +type QTextBrowser struct { + QTextEdit +} + +type QTextBrowserITF interface { + QTextEditITF + QTextBrowserPTR() *QTextBrowser +} + +func PointerFromQTextBrowser(ptr QTextBrowserITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextBrowserPTR().Pointer() + } + return nil +} + +func QTextBrowserFromPointer(ptr unsafe.Pointer) *QTextBrowser { + var n = new(QTextBrowser) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QTextBrowser_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QTextBrowser) QTextBrowserPTR() *QTextBrowser { + return ptr +} + +func (ptr *QTextBrowser) OpenExternalLinks() bool { + if ptr.Pointer() != nil { + return C.QTextBrowser_OpenExternalLinks(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextBrowser) OpenLinks() bool { + if ptr.Pointer() != nil { + return C.QTextBrowser_OpenLinks(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextBrowser) SearchPaths() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QTextBrowser_SearchPaths(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QTextBrowser) SetOpenExternalLinks(open bool) { + if ptr.Pointer() != nil { + C.QTextBrowser_SetOpenExternalLinks(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(open))) + } +} + +func (ptr *QTextBrowser) SetOpenLinks(open bool) { + if ptr.Pointer() != nil { + C.QTextBrowser_SetOpenLinks(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(open))) + } +} + +func (ptr *QTextBrowser) SetSearchPaths(paths []string) { + if ptr.Pointer() != nil { + C.QTextBrowser_SetSearchPaths(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(paths, "|"))) + } +} + +func (ptr *QTextBrowser) SetSource(name string) { + if ptr.Pointer() != nil { + C.QTextBrowser_SetSource(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func (ptr *QTextBrowser) Source() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextBrowser_Source(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func NewQTextBrowser(parent QWidgetITF) *QTextBrowser { + return QTextBrowserFromPointer(unsafe.Pointer(C.QTextBrowser_NewQTextBrowser(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QTextBrowser) ConnectAnchorClicked(f func(link string)) { + if ptr.Pointer() != nil { + C.QTextBrowser_ConnectAnchorClicked(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "anchorClicked", f) + } +} + +func (ptr *QTextBrowser) DisconnectAnchorClicked() { + if ptr.Pointer() != nil { + C.QTextBrowser_DisconnectAnchorClicked(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "anchorClicked") + } +} + +//export callbackQTextBrowserAnchorClicked +func callbackQTextBrowserAnchorClicked(ptrName *C.char, link *C.char) { + qt.GetSignal(C.GoString(ptrName), "anchorClicked").(func(string))(C.GoString(link)) +} + +func (ptr *QTextBrowser) Backward() { + if ptr.Pointer() != nil { + C.QTextBrowser_Backward(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextBrowser) ConnectBackwardAvailable(f func(available bool)) { + if ptr.Pointer() != nil { + C.QTextBrowser_ConnectBackwardAvailable(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "backwardAvailable", f) + } +} + +func (ptr *QTextBrowser) DisconnectBackwardAvailable() { + if ptr.Pointer() != nil { + C.QTextBrowser_DisconnectBackwardAvailable(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "backwardAvailable") + } +} + +//export callbackQTextBrowserBackwardAvailable +func callbackQTextBrowserBackwardAvailable(ptrName *C.char, available C.int) { + qt.GetSignal(C.GoString(ptrName), "backwardAvailable").(func(bool))(int(available) != 0) +} + +func (ptr *QTextBrowser) BackwardHistoryCount() int { + if ptr.Pointer() != nil { + return int(C.QTextBrowser_BackwardHistoryCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextBrowser) ClearHistory() { + if ptr.Pointer() != nil { + C.QTextBrowser_ClearHistory(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextBrowser) Forward() { + if ptr.Pointer() != nil { + C.QTextBrowser_Forward(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextBrowser) ConnectForwardAvailable(f func(available bool)) { + if ptr.Pointer() != nil { + C.QTextBrowser_ConnectForwardAvailable(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "forwardAvailable", f) + } +} + +func (ptr *QTextBrowser) DisconnectForwardAvailable() { + if ptr.Pointer() != nil { + C.QTextBrowser_DisconnectForwardAvailable(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "forwardAvailable") + } +} + +//export callbackQTextBrowserForwardAvailable +func callbackQTextBrowserForwardAvailable(ptrName *C.char, available C.int) { + qt.GetSignal(C.GoString(ptrName), "forwardAvailable").(func(bool))(int(available) != 0) +} + +func (ptr *QTextBrowser) ForwardHistoryCount() int { + if ptr.Pointer() != nil { + return int(C.QTextBrowser_ForwardHistoryCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextBrowser) ConnectHighlighted(f func(link string)) { + if ptr.Pointer() != nil { + C.QTextBrowser_ConnectHighlighted(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "highlighted", f) + } +} + +func (ptr *QTextBrowser) DisconnectHighlighted() { + if ptr.Pointer() != nil { + C.QTextBrowser_DisconnectHighlighted(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "highlighted") + } +} + +//export callbackQTextBrowserHighlighted +func callbackQTextBrowserHighlighted(ptrName *C.char, link *C.char) { + qt.GetSignal(C.GoString(ptrName), "highlighted").(func(string))(C.GoString(link)) +} + +func (ptr *QTextBrowser) ConnectHistoryChanged(f func()) { + if ptr.Pointer() != nil { + C.QTextBrowser_ConnectHistoryChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "historyChanged", f) + } +} + +func (ptr *QTextBrowser) DisconnectHistoryChanged() { + if ptr.Pointer() != nil { + C.QTextBrowser_DisconnectHistoryChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "historyChanged") + } +} + +//export callbackQTextBrowserHistoryChanged +func callbackQTextBrowserHistoryChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "historyChanged").(func())() +} + +func (ptr *QTextBrowser) HistoryTitle(i int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextBrowser_HistoryTitle(C.QtObjectPtr(ptr.Pointer()), C.int(i))) + } + return "" +} + +func (ptr *QTextBrowser) HistoryUrl(i int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextBrowser_HistoryUrl(C.QtObjectPtr(ptr.Pointer()), C.int(i))) + } + return "" +} + +func (ptr *QTextBrowser) Home() { + if ptr.Pointer() != nil { + C.QTextBrowser_Home(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextBrowser) IsBackwardAvailable() bool { + if ptr.Pointer() != nil { + return C.QTextBrowser_IsBackwardAvailable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextBrowser) IsForwardAvailable() bool { + if ptr.Pointer() != nil { + return C.QTextBrowser_IsForwardAvailable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextBrowser) LoadResource(ty int, name string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextBrowser_LoadResource(C.QtObjectPtr(ptr.Pointer()), C.int(ty), C.CString(name))) + } + return "" +} + +func (ptr *QTextBrowser) Reload() { + if ptr.Pointer() != nil { + C.QTextBrowser_Reload(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextBrowser) ConnectSourceChanged(f func(src string)) { + if ptr.Pointer() != nil { + C.QTextBrowser_ConnectSourceChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "sourceChanged", f) + } +} + +func (ptr *QTextBrowser) DisconnectSourceChanged() { + if ptr.Pointer() != nil { + C.QTextBrowser_DisconnectSourceChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "sourceChanged") + } +} + +//export callbackQTextBrowserSourceChanged +func callbackQTextBrowserSourceChanged(ptrName *C.char, src *C.char) { + qt.GetSignal(C.GoString(ptrName), "sourceChanged").(func(string))(C.GoString(src)) +} diff --git a/widgets/qtextbrowser.h b/widgets/qtextbrowser.h new file mode 100755 index 00000000..193ed1c8 --- /dev/null +++ b/widgets/qtextbrowser.h @@ -0,0 +1,42 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QTextBrowser_OpenExternalLinks(QtObjectPtr ptr); +int QTextBrowser_OpenLinks(QtObjectPtr ptr); +char* QTextBrowser_SearchPaths(QtObjectPtr ptr); +void QTextBrowser_SetOpenExternalLinks(QtObjectPtr ptr, int open); +void QTextBrowser_SetOpenLinks(QtObjectPtr ptr, int open); +void QTextBrowser_SetSearchPaths(QtObjectPtr ptr, char* paths); +void QTextBrowser_SetSource(QtObjectPtr ptr, char* name); +char* QTextBrowser_Source(QtObjectPtr ptr); +QtObjectPtr QTextBrowser_NewQTextBrowser(QtObjectPtr parent); +void QTextBrowser_ConnectAnchorClicked(QtObjectPtr ptr); +void QTextBrowser_DisconnectAnchorClicked(QtObjectPtr ptr); +void QTextBrowser_Backward(QtObjectPtr ptr); +void QTextBrowser_ConnectBackwardAvailable(QtObjectPtr ptr); +void QTextBrowser_DisconnectBackwardAvailable(QtObjectPtr ptr); +int QTextBrowser_BackwardHistoryCount(QtObjectPtr ptr); +void QTextBrowser_ClearHistory(QtObjectPtr ptr); +void QTextBrowser_Forward(QtObjectPtr ptr); +void QTextBrowser_ConnectForwardAvailable(QtObjectPtr ptr); +void QTextBrowser_DisconnectForwardAvailable(QtObjectPtr ptr); +int QTextBrowser_ForwardHistoryCount(QtObjectPtr ptr); +void QTextBrowser_ConnectHighlighted(QtObjectPtr ptr); +void QTextBrowser_DisconnectHighlighted(QtObjectPtr ptr); +void QTextBrowser_ConnectHistoryChanged(QtObjectPtr ptr); +void QTextBrowser_DisconnectHistoryChanged(QtObjectPtr ptr); +char* QTextBrowser_HistoryTitle(QtObjectPtr ptr, int i); +char* QTextBrowser_HistoryUrl(QtObjectPtr ptr, int i); +void QTextBrowser_Home(QtObjectPtr ptr); +int QTextBrowser_IsBackwardAvailable(QtObjectPtr ptr); +int QTextBrowser_IsForwardAvailable(QtObjectPtr ptr); +char* QTextBrowser_LoadResource(QtObjectPtr ptr, int ty, char* name); +void QTextBrowser_Reload(QtObjectPtr ptr); +void QTextBrowser_ConnectSourceChanged(QtObjectPtr ptr); +void QTextBrowser_DisconnectSourceChanged(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qtextedit.cpp b/widgets/qtextedit.cpp new file mode 100755 index 00000000..1d09e14a --- /dev/null +++ b/widgets/qtextedit.cpp @@ -0,0 +1,381 @@ +#include "qtextedit.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTextEdit: public QTextEdit { +public: +void Signal_CopyAvailable(bool yes){callbackQTextEditCopyAvailable(this->objectName().toUtf8().data(), yes);}; +void Signal_CursorPositionChanged(){callbackQTextEditCursorPositionChanged(this->objectName().toUtf8().data());}; +void Signal_RedoAvailable(bool available){callbackQTextEditRedoAvailable(this->objectName().toUtf8().data(), available);}; +void Signal_SelectionChanged(){callbackQTextEditSelectionChanged(this->objectName().toUtf8().data());}; +void Signal_TextChanged(){callbackQTextEditTextChanged(this->objectName().toUtf8().data());}; +void Signal_UndoAvailable(bool available){callbackQTextEditUndoAvailable(this->objectName().toUtf8().data(), available);}; +}; + +int QTextEdit_AcceptRichText(QtObjectPtr ptr){ + return static_cast(ptr)->acceptRichText(); +} + +int QTextEdit_AutoFormatting(QtObjectPtr ptr){ + return static_cast(ptr)->autoFormatting(); +} + +int QTextEdit_CursorWidth(QtObjectPtr ptr){ + return static_cast(ptr)->cursorWidth(); +} + +QtObjectPtr QTextEdit_Document(QtObjectPtr ptr){ + return static_cast(ptr)->document(); +} + +int QTextEdit_IsReadOnly(QtObjectPtr ptr){ + return static_cast(ptr)->isReadOnly(); +} + +int QTextEdit_LineWrapColumnOrWidth(QtObjectPtr ptr){ + return static_cast(ptr)->lineWrapColumnOrWidth(); +} + +int QTextEdit_LineWrapMode(QtObjectPtr ptr){ + return static_cast(ptr)->lineWrapMode(); +} + +int QTextEdit_OverwriteMode(QtObjectPtr ptr){ + return static_cast(ptr)->overwriteMode(); +} + +char* QTextEdit_PlaceholderText(QtObjectPtr ptr){ + return static_cast(ptr)->placeholderText().toUtf8().data(); +} + +void QTextEdit_Redo(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "redo"); +} + +void QTextEdit_SetAcceptRichText(QtObjectPtr ptr, int accept){ + static_cast(ptr)->setAcceptRichText(accept != 0); +} + +void QTextEdit_SetAutoFormatting(QtObjectPtr ptr, int features){ + static_cast(ptr)->setAutoFormatting(static_cast(features)); +} + +void QTextEdit_SetCursorWidth(QtObjectPtr ptr, int width){ + static_cast(ptr)->setCursorWidth(width); +} + +void QTextEdit_SetDocument(QtObjectPtr ptr, QtObjectPtr document){ + static_cast(ptr)->setDocument(static_cast(document)); +} + +void QTextEdit_SetFontWeight(QtObjectPtr ptr, int weight){ + QMetaObject::invokeMethod(static_cast(ptr), "setFontWeight", Q_ARG(int, weight)); +} + +void QTextEdit_SetHtml(QtObjectPtr ptr, char* text){ + QMetaObject::invokeMethod(static_cast(ptr), "setHtml", Q_ARG(QString, QString(text))); +} + +void QTextEdit_SetLineWrapColumnOrWidth(QtObjectPtr ptr, int w){ + static_cast(ptr)->setLineWrapColumnOrWidth(w); +} + +void QTextEdit_SetLineWrapMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setLineWrapMode(static_cast(mode)); +} + +void QTextEdit_SetOverwriteMode(QtObjectPtr ptr, int overwrite){ + static_cast(ptr)->setOverwriteMode(overwrite != 0); +} + +void QTextEdit_SetPlaceholderText(QtObjectPtr ptr, char* placeholderText){ + static_cast(ptr)->setPlaceholderText(QString(placeholderText)); +} + +void QTextEdit_SetReadOnly(QtObjectPtr ptr, int ro){ + static_cast(ptr)->setReadOnly(ro != 0); +} + +void QTextEdit_SetTabChangesFocus(QtObjectPtr ptr, int b){ + static_cast(ptr)->setTabChangesFocus(b != 0); +} + +void QTextEdit_SetTabStopWidth(QtObjectPtr ptr, int width){ + static_cast(ptr)->setTabStopWidth(width); +} + +void QTextEdit_SetTextInteractionFlags(QtObjectPtr ptr, int flags){ + static_cast(ptr)->setTextInteractionFlags(static_cast(flags)); +} + +void QTextEdit_SetWordWrapMode(QtObjectPtr ptr, int policy){ + static_cast(ptr)->setWordWrapMode(static_cast(policy)); +} + +int QTextEdit_TabChangesFocus(QtObjectPtr ptr){ + return static_cast(ptr)->tabChangesFocus(); +} + +int QTextEdit_TabStopWidth(QtObjectPtr ptr){ + return static_cast(ptr)->tabStopWidth(); +} + +int QTextEdit_TextInteractionFlags(QtObjectPtr ptr){ + return static_cast(ptr)->textInteractionFlags(); +} + +char* QTextEdit_ToHtml(QtObjectPtr ptr){ + return static_cast(ptr)->toHtml().toUtf8().data(); +} + +int QTextEdit_WordWrapMode(QtObjectPtr ptr){ + return static_cast(ptr)->wordWrapMode(); +} + +void QTextEdit_ZoomIn(QtObjectPtr ptr, int ran){ + QMetaObject::invokeMethod(static_cast(ptr), "zoomIn", Q_ARG(int, ran)); +} + +void QTextEdit_ZoomOut(QtObjectPtr ptr, int ran){ + QMetaObject::invokeMethod(static_cast(ptr), "zoomOut", Q_ARG(int, ran)); +} + +QtObjectPtr QTextEdit_NewQTextEdit(QtObjectPtr parent){ + return new QTextEdit(static_cast(parent)); +} + +QtObjectPtr QTextEdit_NewQTextEdit2(char* text, QtObjectPtr parent){ + return new QTextEdit(QString(text), static_cast(parent)); +} + +int QTextEdit_Alignment(QtObjectPtr ptr){ + return static_cast(ptr)->alignment(); +} + +char* QTextEdit_AnchorAt(QtObjectPtr ptr, QtObjectPtr pos){ + return static_cast(ptr)->anchorAt(*static_cast(pos)).toUtf8().data(); +} + +void QTextEdit_Append(QtObjectPtr ptr, char* text){ + QMetaObject::invokeMethod(static_cast(ptr), "append", Q_ARG(QString, QString(text))); +} + +int QTextEdit_CanPaste(QtObjectPtr ptr){ + return static_cast(ptr)->canPaste(); +} + +void QTextEdit_Clear(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "clear"); +} + +void QTextEdit_Copy(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "copy"); +} + +void QTextEdit_ConnectCopyAvailable(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTextEdit::copyAvailable), static_cast(ptr), static_cast(&MyQTextEdit::Signal_CopyAvailable));; +} + +void QTextEdit_DisconnectCopyAvailable(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTextEdit::copyAvailable), static_cast(ptr), static_cast(&MyQTextEdit::Signal_CopyAvailable));; +} + +QtObjectPtr QTextEdit_CreateStandardContextMenu(QtObjectPtr ptr){ + return static_cast(ptr)->createStandardContextMenu(); +} + +QtObjectPtr QTextEdit_CreateStandardContextMenu2(QtObjectPtr ptr, QtObjectPtr position){ + return static_cast(ptr)->createStandardContextMenu(*static_cast(position)); +} + +void QTextEdit_ConnectCursorPositionChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTextEdit::cursorPositionChanged), static_cast(ptr), static_cast(&MyQTextEdit::Signal_CursorPositionChanged));; +} + +void QTextEdit_DisconnectCursorPositionChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTextEdit::cursorPositionChanged), static_cast(ptr), static_cast(&MyQTextEdit::Signal_CursorPositionChanged));; +} + +void QTextEdit_Cut(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "cut"); +} + +char* QTextEdit_DocumentTitle(QtObjectPtr ptr){ + return static_cast(ptr)->documentTitle().toUtf8().data(); +} + +void QTextEdit_EnsureCursorVisible(QtObjectPtr ptr){ + static_cast(ptr)->ensureCursorVisible(); +} + +char* QTextEdit_FontFamily(QtObjectPtr ptr){ + return static_cast(ptr)->fontFamily().toUtf8().data(); +} + +int QTextEdit_FontItalic(QtObjectPtr ptr){ + return static_cast(ptr)->fontItalic(); +} + +int QTextEdit_FontUnderline(QtObjectPtr ptr){ + return static_cast(ptr)->fontUnderline(); +} + +int QTextEdit_FontWeight(QtObjectPtr ptr){ + return static_cast(ptr)->fontWeight(); +} + +char* QTextEdit_InputMethodQuery(QtObjectPtr ptr, int property){ + return static_cast(ptr)->inputMethodQuery(static_cast(property)).toString().toUtf8().data(); +} + +void QTextEdit_InsertHtml(QtObjectPtr ptr, char* text){ + QMetaObject::invokeMethod(static_cast(ptr), "insertHtml", Q_ARG(QString, QString(text))); +} + +void QTextEdit_InsertPlainText(QtObjectPtr ptr, char* text){ + QMetaObject::invokeMethod(static_cast(ptr), "insertPlainText", Q_ARG(QString, QString(text))); +} + +int QTextEdit_IsUndoRedoEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isUndoRedoEnabled(); +} + +char* QTextEdit_LoadResource(QtObjectPtr ptr, int ty, char* name){ + return static_cast(ptr)->loadResource(ty, QUrl(QString(name))).toString().toUtf8().data(); +} + +void QTextEdit_MergeCurrentCharFormat(QtObjectPtr ptr, QtObjectPtr modifier){ + static_cast(ptr)->mergeCurrentCharFormat(*static_cast(modifier)); +} + +void QTextEdit_MoveCursor(QtObjectPtr ptr, int operation, int mode){ + static_cast(ptr)->moveCursor(static_cast(operation), static_cast(mode)); +} + +void QTextEdit_Paste(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "paste"); +} + +void QTextEdit_Print(QtObjectPtr ptr, QtObjectPtr printer){ + static_cast(ptr)->print(static_cast(printer)); +} + +void QTextEdit_ConnectRedoAvailable(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTextEdit::redoAvailable), static_cast(ptr), static_cast(&MyQTextEdit::Signal_RedoAvailable));; +} + +void QTextEdit_DisconnectRedoAvailable(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTextEdit::redoAvailable), static_cast(ptr), static_cast(&MyQTextEdit::Signal_RedoAvailable));; +} + +void QTextEdit_ScrollToAnchor(QtObjectPtr ptr, char* name){ + QMetaObject::invokeMethod(static_cast(ptr), "scrollToAnchor", Q_ARG(QString, QString(name))); +} + +void QTextEdit_SelectAll(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "selectAll"); +} + +void QTextEdit_ConnectSelectionChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTextEdit::selectionChanged), static_cast(ptr), static_cast(&MyQTextEdit::Signal_SelectionChanged));; +} + +void QTextEdit_DisconnectSelectionChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTextEdit::selectionChanged), static_cast(ptr), static_cast(&MyQTextEdit::Signal_SelectionChanged));; +} + +void QTextEdit_SetAlignment(QtObjectPtr ptr, int a){ + QMetaObject::invokeMethod(static_cast(ptr), "setAlignment", Q_ARG(Qt::AlignmentFlag, static_cast(a))); +} + +void QTextEdit_SetCurrentCharFormat(QtObjectPtr ptr, QtObjectPtr format){ + static_cast(ptr)->setCurrentCharFormat(*static_cast(format)); +} + +void QTextEdit_SetCurrentFont(QtObjectPtr ptr, QtObjectPtr f){ + QMetaObject::invokeMethod(static_cast(ptr), "setCurrentFont", Q_ARG(QFont, *static_cast(f))); +} + +void QTextEdit_SetDocumentTitle(QtObjectPtr ptr, char* title){ + static_cast(ptr)->setDocumentTitle(QString(title)); +} + +void QTextEdit_SetFontFamily(QtObjectPtr ptr, char* fontFamily){ + QMetaObject::invokeMethod(static_cast(ptr), "setFontFamily", Q_ARG(QString, QString(fontFamily))); +} + +void QTextEdit_SetFontItalic(QtObjectPtr ptr, int italic){ + QMetaObject::invokeMethod(static_cast(ptr), "setFontItalic", Q_ARG(bool, italic != 0)); +} + +void QTextEdit_SetFontUnderline(QtObjectPtr ptr, int underline){ + QMetaObject::invokeMethod(static_cast(ptr), "setFontUnderline", Q_ARG(bool, underline != 0)); +} + +void QTextEdit_SetPlainText(QtObjectPtr ptr, char* text){ + QMetaObject::invokeMethod(static_cast(ptr), "setPlainText", Q_ARG(QString, QString(text))); +} + +void QTextEdit_SetText(QtObjectPtr ptr, char* text){ + QMetaObject::invokeMethod(static_cast(ptr), "setText", Q_ARG(QString, QString(text))); +} + +void QTextEdit_SetTextBackgroundColor(QtObjectPtr ptr, QtObjectPtr c){ + QMetaObject::invokeMethod(static_cast(ptr), "setTextBackgroundColor", Q_ARG(QColor, *static_cast(c))); +} + +void QTextEdit_SetTextColor(QtObjectPtr ptr, QtObjectPtr c){ + QMetaObject::invokeMethod(static_cast(ptr), "setTextColor", Q_ARG(QColor, *static_cast(c))); +} + +void QTextEdit_SetTextCursor(QtObjectPtr ptr, QtObjectPtr cursor){ + static_cast(ptr)->setTextCursor(*static_cast(cursor)); +} + +void QTextEdit_SetUndoRedoEnabled(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setUndoRedoEnabled(enable != 0); +} + +void QTextEdit_ConnectTextChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTextEdit::textChanged), static_cast(ptr), static_cast(&MyQTextEdit::Signal_TextChanged));; +} + +void QTextEdit_DisconnectTextChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTextEdit::textChanged), static_cast(ptr), static_cast(&MyQTextEdit::Signal_TextChanged));; +} + +char* QTextEdit_ToPlainText(QtObjectPtr ptr){ + return static_cast(ptr)->toPlainText().toUtf8().data(); +} + +void QTextEdit_Undo(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "undo"); +} + +void QTextEdit_ConnectUndoAvailable(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTextEdit::undoAvailable), static_cast(ptr), static_cast(&MyQTextEdit::Signal_UndoAvailable));; +} + +void QTextEdit_DisconnectUndoAvailable(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTextEdit::undoAvailable), static_cast(ptr), static_cast(&MyQTextEdit::Signal_UndoAvailable));; +} + +void QTextEdit_DestroyQTextEdit(QtObjectPtr ptr){ + static_cast(ptr)->~QTextEdit(); +} + diff --git a/widgets/qtextedit.go b/widgets/qtextedit.go new file mode 100755 index 00000000..8eb772bf --- /dev/null +++ b/widgets/qtextedit.go @@ -0,0 +1,653 @@ +package widgets + +//#include "qtextedit.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QTextEdit struct { + QAbstractScrollArea +} + +type QTextEditITF interface { + QAbstractScrollAreaITF + QTextEditPTR() *QTextEdit +} + +func PointerFromQTextEdit(ptr QTextEditITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTextEditPTR().Pointer() + } + return nil +} + +func QTextEditFromPointer(ptr unsafe.Pointer) *QTextEdit { + var n = new(QTextEdit) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QTextEdit_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QTextEdit) QTextEditPTR() *QTextEdit { + return ptr +} + +//QTextEdit::AutoFormattingFlag +type QTextEdit__AutoFormattingFlag int + +var ( + QTextEdit__AutoNone = QTextEdit__AutoFormattingFlag(0) + QTextEdit__AutoBulletList = QTextEdit__AutoFormattingFlag(0x00000001) + QTextEdit__AutoAll = QTextEdit__AutoFormattingFlag(0xffffffff) +) + +//QTextEdit::LineWrapMode +type QTextEdit__LineWrapMode int + +var ( + QTextEdit__NoWrap = QTextEdit__LineWrapMode(0) + QTextEdit__WidgetWidth = QTextEdit__LineWrapMode(1) + QTextEdit__FixedPixelWidth = QTextEdit__LineWrapMode(2) + QTextEdit__FixedColumnWidth = QTextEdit__LineWrapMode(3) +) + +func (ptr *QTextEdit) AcceptRichText() bool { + if ptr.Pointer() != nil { + return C.QTextEdit_AcceptRichText(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextEdit) AutoFormatting() QTextEdit__AutoFormattingFlag { + if ptr.Pointer() != nil { + return QTextEdit__AutoFormattingFlag(C.QTextEdit_AutoFormatting(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextEdit) CursorWidth() int { + if ptr.Pointer() != nil { + return int(C.QTextEdit_CursorWidth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextEdit) Document() *gui.QTextDocument { + if ptr.Pointer() != nil { + return gui.QTextDocumentFromPointer(unsafe.Pointer(C.QTextEdit_Document(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTextEdit) IsReadOnly() bool { + if ptr.Pointer() != nil { + return C.QTextEdit_IsReadOnly(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextEdit) LineWrapColumnOrWidth() int { + if ptr.Pointer() != nil { + return int(C.QTextEdit_LineWrapColumnOrWidth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextEdit) LineWrapMode() QTextEdit__LineWrapMode { + if ptr.Pointer() != nil { + return QTextEdit__LineWrapMode(C.QTextEdit_LineWrapMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextEdit) OverwriteMode() bool { + if ptr.Pointer() != nil { + return C.QTextEdit_OverwriteMode(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextEdit) PlaceholderText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextEdit_PlaceholderText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTextEdit) Redo() { + if ptr.Pointer() != nil { + C.QTextEdit_Redo(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextEdit) SetAcceptRichText(accept bool) { + if ptr.Pointer() != nil { + C.QTextEdit_SetAcceptRichText(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(accept))) + } +} + +func (ptr *QTextEdit) SetAutoFormatting(features QTextEdit__AutoFormattingFlag) { + if ptr.Pointer() != nil { + C.QTextEdit_SetAutoFormatting(C.QtObjectPtr(ptr.Pointer()), C.int(features)) + } +} + +func (ptr *QTextEdit) SetCursorWidth(width int) { + if ptr.Pointer() != nil { + C.QTextEdit_SetCursorWidth(C.QtObjectPtr(ptr.Pointer()), C.int(width)) + } +} + +func (ptr *QTextEdit) SetDocument(document gui.QTextDocumentITF) { + if ptr.Pointer() != nil { + C.QTextEdit_SetDocument(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQTextDocument(document))) + } +} + +func (ptr *QTextEdit) SetFontWeight(weight int) { + if ptr.Pointer() != nil { + C.QTextEdit_SetFontWeight(C.QtObjectPtr(ptr.Pointer()), C.int(weight)) + } +} + +func (ptr *QTextEdit) SetHtml(text string) { + if ptr.Pointer() != nil { + C.QTextEdit_SetHtml(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QTextEdit) SetLineWrapColumnOrWidth(w int) { + if ptr.Pointer() != nil { + C.QTextEdit_SetLineWrapColumnOrWidth(C.QtObjectPtr(ptr.Pointer()), C.int(w)) + } +} + +func (ptr *QTextEdit) SetLineWrapMode(mode QTextEdit__LineWrapMode) { + if ptr.Pointer() != nil { + C.QTextEdit_SetLineWrapMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QTextEdit) SetOverwriteMode(overwrite bool) { + if ptr.Pointer() != nil { + C.QTextEdit_SetOverwriteMode(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(overwrite))) + } +} + +func (ptr *QTextEdit) SetPlaceholderText(placeholderText string) { + if ptr.Pointer() != nil { + C.QTextEdit_SetPlaceholderText(C.QtObjectPtr(ptr.Pointer()), C.CString(placeholderText)) + } +} + +func (ptr *QTextEdit) SetReadOnly(ro bool) { + if ptr.Pointer() != nil { + C.QTextEdit_SetReadOnly(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(ro))) + } +} + +func (ptr *QTextEdit) SetTabChangesFocus(b bool) { + if ptr.Pointer() != nil { + C.QTextEdit_SetTabChangesFocus(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(b))) + } +} + +func (ptr *QTextEdit) SetTabStopWidth(width int) { + if ptr.Pointer() != nil { + C.QTextEdit_SetTabStopWidth(C.QtObjectPtr(ptr.Pointer()), C.int(width)) + } +} + +func (ptr *QTextEdit) SetTextInteractionFlags(flags core.Qt__TextInteractionFlag) { + if ptr.Pointer() != nil { + C.QTextEdit_SetTextInteractionFlags(C.QtObjectPtr(ptr.Pointer()), C.int(flags)) + } +} + +func (ptr *QTextEdit) SetWordWrapMode(policy gui.QTextOption__WrapMode) { + if ptr.Pointer() != nil { + C.QTextEdit_SetWordWrapMode(C.QtObjectPtr(ptr.Pointer()), C.int(policy)) + } +} + +func (ptr *QTextEdit) TabChangesFocus() bool { + if ptr.Pointer() != nil { + return C.QTextEdit_TabChangesFocus(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextEdit) TabStopWidth() int { + if ptr.Pointer() != nil { + return int(C.QTextEdit_TabStopWidth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextEdit) TextInteractionFlags() core.Qt__TextInteractionFlag { + if ptr.Pointer() != nil { + return core.Qt__TextInteractionFlag(C.QTextEdit_TextInteractionFlags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextEdit) ToHtml() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextEdit_ToHtml(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTextEdit) WordWrapMode() gui.QTextOption__WrapMode { + if ptr.Pointer() != nil { + return gui.QTextOption__WrapMode(C.QTextEdit_WordWrapMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextEdit) ZoomIn(ran int) { + if ptr.Pointer() != nil { + C.QTextEdit_ZoomIn(C.QtObjectPtr(ptr.Pointer()), C.int(ran)) + } +} + +func (ptr *QTextEdit) ZoomOut(ran int) { + if ptr.Pointer() != nil { + C.QTextEdit_ZoomOut(C.QtObjectPtr(ptr.Pointer()), C.int(ran)) + } +} + +func NewQTextEdit(parent QWidgetITF) *QTextEdit { + return QTextEditFromPointer(unsafe.Pointer(C.QTextEdit_NewQTextEdit(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQTextEdit2(text string, parent QWidgetITF) *QTextEdit { + return QTextEditFromPointer(unsafe.Pointer(C.QTextEdit_NewQTextEdit2(C.CString(text), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QTextEdit) Alignment() core.Qt__AlignmentFlag { + if ptr.Pointer() != nil { + return core.Qt__AlignmentFlag(C.QTextEdit_Alignment(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextEdit) AnchorAt(pos core.QPointITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextEdit_AnchorAt(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(pos)))) + } + return "" +} + +func (ptr *QTextEdit) Append(text string) { + if ptr.Pointer() != nil { + C.QTextEdit_Append(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QTextEdit) CanPaste() bool { + if ptr.Pointer() != nil { + return C.QTextEdit_CanPaste(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextEdit) Clear() { + if ptr.Pointer() != nil { + C.QTextEdit_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextEdit) Copy() { + if ptr.Pointer() != nil { + C.QTextEdit_Copy(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextEdit) ConnectCopyAvailable(f func(yes bool)) { + if ptr.Pointer() != nil { + C.QTextEdit_ConnectCopyAvailable(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "copyAvailable", f) + } +} + +func (ptr *QTextEdit) DisconnectCopyAvailable() { + if ptr.Pointer() != nil { + C.QTextEdit_DisconnectCopyAvailable(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "copyAvailable") + } +} + +//export callbackQTextEditCopyAvailable +func callbackQTextEditCopyAvailable(ptrName *C.char, yes C.int) { + qt.GetSignal(C.GoString(ptrName), "copyAvailable").(func(bool))(int(yes) != 0) +} + +func (ptr *QTextEdit) CreateStandardContextMenu() *QMenu { + if ptr.Pointer() != nil { + return QMenuFromPointer(unsafe.Pointer(C.QTextEdit_CreateStandardContextMenu(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTextEdit) CreateStandardContextMenu2(position core.QPointITF) *QMenu { + if ptr.Pointer() != nil { + return QMenuFromPointer(unsafe.Pointer(C.QTextEdit_CreateStandardContextMenu2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(position))))) + } + return nil +} + +func (ptr *QTextEdit) ConnectCursorPositionChanged(f func()) { + if ptr.Pointer() != nil { + C.QTextEdit_ConnectCursorPositionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "cursorPositionChanged", f) + } +} + +func (ptr *QTextEdit) DisconnectCursorPositionChanged() { + if ptr.Pointer() != nil { + C.QTextEdit_DisconnectCursorPositionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "cursorPositionChanged") + } +} + +//export callbackQTextEditCursorPositionChanged +func callbackQTextEditCursorPositionChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "cursorPositionChanged").(func())() +} + +func (ptr *QTextEdit) Cut() { + if ptr.Pointer() != nil { + C.QTextEdit_Cut(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextEdit) DocumentTitle() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextEdit_DocumentTitle(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTextEdit) EnsureCursorVisible() { + if ptr.Pointer() != nil { + C.QTextEdit_EnsureCursorVisible(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextEdit) FontFamily() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextEdit_FontFamily(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTextEdit) FontItalic() bool { + if ptr.Pointer() != nil { + return C.QTextEdit_FontItalic(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextEdit) FontUnderline() bool { + if ptr.Pointer() != nil { + return C.QTextEdit_FontUnderline(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextEdit) FontWeight() int { + if ptr.Pointer() != nil { + return int(C.QTextEdit_FontWeight(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTextEdit) InputMethodQuery(property core.Qt__InputMethodQuery) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextEdit_InputMethodQuery(C.QtObjectPtr(ptr.Pointer()), C.int(property))) + } + return "" +} + +func (ptr *QTextEdit) InsertHtml(text string) { + if ptr.Pointer() != nil { + C.QTextEdit_InsertHtml(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QTextEdit) InsertPlainText(text string) { + if ptr.Pointer() != nil { + C.QTextEdit_InsertPlainText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QTextEdit) IsUndoRedoEnabled() bool { + if ptr.Pointer() != nil { + return C.QTextEdit_IsUndoRedoEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTextEdit) LoadResource(ty int, name string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextEdit_LoadResource(C.QtObjectPtr(ptr.Pointer()), C.int(ty), C.CString(name))) + } + return "" +} + +func (ptr *QTextEdit) MergeCurrentCharFormat(modifier gui.QTextCharFormatITF) { + if ptr.Pointer() != nil { + C.QTextEdit_MergeCurrentCharFormat(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQTextCharFormat(modifier))) + } +} + +func (ptr *QTextEdit) MoveCursor(operation gui.QTextCursor__MoveOperation, mode gui.QTextCursor__MoveMode) { + if ptr.Pointer() != nil { + C.QTextEdit_MoveCursor(C.QtObjectPtr(ptr.Pointer()), C.int(operation), C.int(mode)) + } +} + +func (ptr *QTextEdit) Paste() { + if ptr.Pointer() != nil { + C.QTextEdit_Paste(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextEdit) Print(printer gui.QPagedPaintDeviceITF) { + if ptr.Pointer() != nil { + C.QTextEdit_Print(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPagedPaintDevice(printer))) + } +} + +func (ptr *QTextEdit) ConnectRedoAvailable(f func(available bool)) { + if ptr.Pointer() != nil { + C.QTextEdit_ConnectRedoAvailable(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "redoAvailable", f) + } +} + +func (ptr *QTextEdit) DisconnectRedoAvailable() { + if ptr.Pointer() != nil { + C.QTextEdit_DisconnectRedoAvailable(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "redoAvailable") + } +} + +//export callbackQTextEditRedoAvailable +func callbackQTextEditRedoAvailable(ptrName *C.char, available C.int) { + qt.GetSignal(C.GoString(ptrName), "redoAvailable").(func(bool))(int(available) != 0) +} + +func (ptr *QTextEdit) ScrollToAnchor(name string) { + if ptr.Pointer() != nil { + C.QTextEdit_ScrollToAnchor(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func (ptr *QTextEdit) SelectAll() { + if ptr.Pointer() != nil { + C.QTextEdit_SelectAll(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextEdit) ConnectSelectionChanged(f func()) { + if ptr.Pointer() != nil { + C.QTextEdit_ConnectSelectionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "selectionChanged", f) + } +} + +func (ptr *QTextEdit) DisconnectSelectionChanged() { + if ptr.Pointer() != nil { + C.QTextEdit_DisconnectSelectionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "selectionChanged") + } +} + +//export callbackQTextEditSelectionChanged +func callbackQTextEditSelectionChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "selectionChanged").(func())() +} + +func (ptr *QTextEdit) SetAlignment(a core.Qt__AlignmentFlag) { + if ptr.Pointer() != nil { + C.QTextEdit_SetAlignment(C.QtObjectPtr(ptr.Pointer()), C.int(a)) + } +} + +func (ptr *QTextEdit) SetCurrentCharFormat(format gui.QTextCharFormatITF) { + if ptr.Pointer() != nil { + C.QTextEdit_SetCurrentCharFormat(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQTextCharFormat(format))) + } +} + +func (ptr *QTextEdit) SetCurrentFont(f gui.QFontITF) { + if ptr.Pointer() != nil { + C.QTextEdit_SetCurrentFont(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQFont(f))) + } +} + +func (ptr *QTextEdit) SetDocumentTitle(title string) { + if ptr.Pointer() != nil { + C.QTextEdit_SetDocumentTitle(C.QtObjectPtr(ptr.Pointer()), C.CString(title)) + } +} + +func (ptr *QTextEdit) SetFontFamily(fontFamily string) { + if ptr.Pointer() != nil { + C.QTextEdit_SetFontFamily(C.QtObjectPtr(ptr.Pointer()), C.CString(fontFamily)) + } +} + +func (ptr *QTextEdit) SetFontItalic(italic bool) { + if ptr.Pointer() != nil { + C.QTextEdit_SetFontItalic(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(italic))) + } +} + +func (ptr *QTextEdit) SetFontUnderline(underline bool) { + if ptr.Pointer() != nil { + C.QTextEdit_SetFontUnderline(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(underline))) + } +} + +func (ptr *QTextEdit) SetPlainText(text string) { + if ptr.Pointer() != nil { + C.QTextEdit_SetPlainText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QTextEdit) SetText(text string) { + if ptr.Pointer() != nil { + C.QTextEdit_SetText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QTextEdit) SetTextBackgroundColor(c gui.QColorITF) { + if ptr.Pointer() != nil { + C.QTextEdit_SetTextBackgroundColor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQColor(c))) + } +} + +func (ptr *QTextEdit) SetTextColor(c gui.QColorITF) { + if ptr.Pointer() != nil { + C.QTextEdit_SetTextColor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQColor(c))) + } +} + +func (ptr *QTextEdit) SetTextCursor(cursor gui.QTextCursorITF) { + if ptr.Pointer() != nil { + C.QTextEdit_SetTextCursor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQTextCursor(cursor))) + } +} + +func (ptr *QTextEdit) SetUndoRedoEnabled(enable bool) { + if ptr.Pointer() != nil { + C.QTextEdit_SetUndoRedoEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QTextEdit) ConnectTextChanged(f func()) { + if ptr.Pointer() != nil { + C.QTextEdit_ConnectTextChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "textChanged", f) + } +} + +func (ptr *QTextEdit) DisconnectTextChanged() { + if ptr.Pointer() != nil { + C.QTextEdit_DisconnectTextChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "textChanged") + } +} + +//export callbackQTextEditTextChanged +func callbackQTextEditTextChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "textChanged").(func())() +} + +func (ptr *QTextEdit) ToPlainText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QTextEdit_ToPlainText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QTextEdit) Undo() { + if ptr.Pointer() != nil { + C.QTextEdit_Undo(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTextEdit) ConnectUndoAvailable(f func(available bool)) { + if ptr.Pointer() != nil { + C.QTextEdit_ConnectUndoAvailable(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "undoAvailable", f) + } +} + +func (ptr *QTextEdit) DisconnectUndoAvailable() { + if ptr.Pointer() != nil { + C.QTextEdit_DisconnectUndoAvailable(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "undoAvailable") + } +} + +//export callbackQTextEditUndoAvailable +func callbackQTextEditUndoAvailable(ptrName *C.char, available C.int) { + qt.GetSignal(C.GoString(ptrName), "undoAvailable").(func(bool))(int(available) != 0) +} + +func (ptr *QTextEdit) DestroyQTextEdit() { + if ptr.Pointer() != nil { + C.QTextEdit_DestroyQTextEdit(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qtextedit.h b/widgets/qtextedit.h new file mode 100755 index 00000000..01b472cf --- /dev/null +++ b/widgets/qtextedit.h @@ -0,0 +1,97 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QTextEdit_AcceptRichText(QtObjectPtr ptr); +int QTextEdit_AutoFormatting(QtObjectPtr ptr); +int QTextEdit_CursorWidth(QtObjectPtr ptr); +QtObjectPtr QTextEdit_Document(QtObjectPtr ptr); +int QTextEdit_IsReadOnly(QtObjectPtr ptr); +int QTextEdit_LineWrapColumnOrWidth(QtObjectPtr ptr); +int QTextEdit_LineWrapMode(QtObjectPtr ptr); +int QTextEdit_OverwriteMode(QtObjectPtr ptr); +char* QTextEdit_PlaceholderText(QtObjectPtr ptr); +void QTextEdit_Redo(QtObjectPtr ptr); +void QTextEdit_SetAcceptRichText(QtObjectPtr ptr, int accept); +void QTextEdit_SetAutoFormatting(QtObjectPtr ptr, int features); +void QTextEdit_SetCursorWidth(QtObjectPtr ptr, int width); +void QTextEdit_SetDocument(QtObjectPtr ptr, QtObjectPtr document); +void QTextEdit_SetFontWeight(QtObjectPtr ptr, int weight); +void QTextEdit_SetHtml(QtObjectPtr ptr, char* text); +void QTextEdit_SetLineWrapColumnOrWidth(QtObjectPtr ptr, int w); +void QTextEdit_SetLineWrapMode(QtObjectPtr ptr, int mode); +void QTextEdit_SetOverwriteMode(QtObjectPtr ptr, int overwrite); +void QTextEdit_SetPlaceholderText(QtObjectPtr ptr, char* placeholderText); +void QTextEdit_SetReadOnly(QtObjectPtr ptr, int ro); +void QTextEdit_SetTabChangesFocus(QtObjectPtr ptr, int b); +void QTextEdit_SetTabStopWidth(QtObjectPtr ptr, int width); +void QTextEdit_SetTextInteractionFlags(QtObjectPtr ptr, int flags); +void QTextEdit_SetWordWrapMode(QtObjectPtr ptr, int policy); +int QTextEdit_TabChangesFocus(QtObjectPtr ptr); +int QTextEdit_TabStopWidth(QtObjectPtr ptr); +int QTextEdit_TextInteractionFlags(QtObjectPtr ptr); +char* QTextEdit_ToHtml(QtObjectPtr ptr); +int QTextEdit_WordWrapMode(QtObjectPtr ptr); +void QTextEdit_ZoomIn(QtObjectPtr ptr, int ran); +void QTextEdit_ZoomOut(QtObjectPtr ptr, int ran); +QtObjectPtr QTextEdit_NewQTextEdit(QtObjectPtr parent); +QtObjectPtr QTextEdit_NewQTextEdit2(char* text, QtObjectPtr parent); +int QTextEdit_Alignment(QtObjectPtr ptr); +char* QTextEdit_AnchorAt(QtObjectPtr ptr, QtObjectPtr pos); +void QTextEdit_Append(QtObjectPtr ptr, char* text); +int QTextEdit_CanPaste(QtObjectPtr ptr); +void QTextEdit_Clear(QtObjectPtr ptr); +void QTextEdit_Copy(QtObjectPtr ptr); +void QTextEdit_ConnectCopyAvailable(QtObjectPtr ptr); +void QTextEdit_DisconnectCopyAvailable(QtObjectPtr ptr); +QtObjectPtr QTextEdit_CreateStandardContextMenu(QtObjectPtr ptr); +QtObjectPtr QTextEdit_CreateStandardContextMenu2(QtObjectPtr ptr, QtObjectPtr position); +void QTextEdit_ConnectCursorPositionChanged(QtObjectPtr ptr); +void QTextEdit_DisconnectCursorPositionChanged(QtObjectPtr ptr); +void QTextEdit_Cut(QtObjectPtr ptr); +char* QTextEdit_DocumentTitle(QtObjectPtr ptr); +void QTextEdit_EnsureCursorVisible(QtObjectPtr ptr); +char* QTextEdit_FontFamily(QtObjectPtr ptr); +int QTextEdit_FontItalic(QtObjectPtr ptr); +int QTextEdit_FontUnderline(QtObjectPtr ptr); +int QTextEdit_FontWeight(QtObjectPtr ptr); +char* QTextEdit_InputMethodQuery(QtObjectPtr ptr, int property); +void QTextEdit_InsertHtml(QtObjectPtr ptr, char* text); +void QTextEdit_InsertPlainText(QtObjectPtr ptr, char* text); +int QTextEdit_IsUndoRedoEnabled(QtObjectPtr ptr); +char* QTextEdit_LoadResource(QtObjectPtr ptr, int ty, char* name); +void QTextEdit_MergeCurrentCharFormat(QtObjectPtr ptr, QtObjectPtr modifier); +void QTextEdit_MoveCursor(QtObjectPtr ptr, int operation, int mode); +void QTextEdit_Paste(QtObjectPtr ptr); +void QTextEdit_Print(QtObjectPtr ptr, QtObjectPtr printer); +void QTextEdit_ConnectRedoAvailable(QtObjectPtr ptr); +void QTextEdit_DisconnectRedoAvailable(QtObjectPtr ptr); +void QTextEdit_ScrollToAnchor(QtObjectPtr ptr, char* name); +void QTextEdit_SelectAll(QtObjectPtr ptr); +void QTextEdit_ConnectSelectionChanged(QtObjectPtr ptr); +void QTextEdit_DisconnectSelectionChanged(QtObjectPtr ptr); +void QTextEdit_SetAlignment(QtObjectPtr ptr, int a); +void QTextEdit_SetCurrentCharFormat(QtObjectPtr ptr, QtObjectPtr format); +void QTextEdit_SetCurrentFont(QtObjectPtr ptr, QtObjectPtr f); +void QTextEdit_SetDocumentTitle(QtObjectPtr ptr, char* title); +void QTextEdit_SetFontFamily(QtObjectPtr ptr, char* fontFamily); +void QTextEdit_SetFontItalic(QtObjectPtr ptr, int italic); +void QTextEdit_SetFontUnderline(QtObjectPtr ptr, int underline); +void QTextEdit_SetPlainText(QtObjectPtr ptr, char* text); +void QTextEdit_SetText(QtObjectPtr ptr, char* text); +void QTextEdit_SetTextBackgroundColor(QtObjectPtr ptr, QtObjectPtr c); +void QTextEdit_SetTextColor(QtObjectPtr ptr, QtObjectPtr c); +void QTextEdit_SetTextCursor(QtObjectPtr ptr, QtObjectPtr cursor); +void QTextEdit_SetUndoRedoEnabled(QtObjectPtr ptr, int enable); +void QTextEdit_ConnectTextChanged(QtObjectPtr ptr); +void QTextEdit_DisconnectTextChanged(QtObjectPtr ptr); +char* QTextEdit_ToPlainText(QtObjectPtr ptr); +void QTextEdit_Undo(QtObjectPtr ptr); +void QTextEdit_ConnectUndoAvailable(QtObjectPtr ptr); +void QTextEdit_DisconnectUndoAvailable(QtObjectPtr ptr); +void QTextEdit_DestroyQTextEdit(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qtilerules.cpp b/widgets/qtilerules.cpp new file mode 100755 index 00000000..a852593d --- /dev/null +++ b/widgets/qtilerules.cpp @@ -0,0 +1,20 @@ +#include "qtilerules.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTileRules: public QTileRules { +public: +}; + +QtObjectPtr QTileRules_NewQTileRules(int horizontalRule, int verticalRule){ + return new QTileRules(static_cast(horizontalRule), static_cast(verticalRule)); +} + +QtObjectPtr QTileRules_NewQTileRules2(int rule){ + return new QTileRules(static_cast(rule)); +} + diff --git a/widgets/qtilerules.go b/widgets/qtilerules.go new file mode 100755 index 00000000..f3277d23 --- /dev/null +++ b/widgets/qtilerules.go @@ -0,0 +1,49 @@ +package widgets + +//#include "qtilerules.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QTileRules struct { + ptr unsafe.Pointer +} + +type QTileRulesITF interface { + QTileRulesPTR() *QTileRules +} + +func (p *QTileRules) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTileRules) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTileRules(ptr QTileRulesITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTileRulesPTR().Pointer() + } + return nil +} + +func QTileRulesFromPointer(ptr unsafe.Pointer) *QTileRules { + var n = new(QTileRules) + n.SetPointer(ptr) + return n +} + +func (ptr *QTileRules) QTileRulesPTR() *QTileRules { + return ptr +} + +func NewQTileRules(horizontalRule core.Qt__TileRule, verticalRule core.Qt__TileRule) *QTileRules { + return QTileRulesFromPointer(unsafe.Pointer(C.QTileRules_NewQTileRules(C.int(horizontalRule), C.int(verticalRule)))) +} + +func NewQTileRules2(rule core.Qt__TileRule) *QTileRules { + return QTileRulesFromPointer(unsafe.Pointer(C.QTileRules_NewQTileRules2(C.int(rule)))) +} diff --git a/widgets/qtilerules.h b/widgets/qtilerules.h new file mode 100755 index 00000000..6a5b43b0 --- /dev/null +++ b/widgets/qtilerules.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTileRules_NewQTileRules(int horizontalRule, int verticalRule); +QtObjectPtr QTileRules_NewQTileRules2(int rule); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qtimeedit.cpp b/widgets/qtimeedit.cpp new file mode 100755 index 00000000..212683ed --- /dev/null +++ b/widgets/qtimeedit.cpp @@ -0,0 +1,26 @@ +#include "qtimeedit.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTimeEdit: public QTimeEdit { +public: +}; + +QtObjectPtr QTimeEdit_NewQTimeEdit(QtObjectPtr parent){ + return new QTimeEdit(static_cast(parent)); +} + +QtObjectPtr QTimeEdit_NewQTimeEdit2(QtObjectPtr time, QtObjectPtr parent){ + return new QTimeEdit(*static_cast(time), static_cast(parent)); +} + +void QTimeEdit_DestroyQTimeEdit(QtObjectPtr ptr){ + static_cast(ptr)->~QTimeEdit(); +} + diff --git a/widgets/qtimeedit.go b/widgets/qtimeedit.go new file mode 100755 index 00000000..db062394 --- /dev/null +++ b/widgets/qtimeedit.go @@ -0,0 +1,53 @@ +package widgets + +//#include "qtimeedit.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QTimeEdit struct { + QDateTimeEdit +} + +type QTimeEditITF interface { + QDateTimeEditITF + QTimeEditPTR() *QTimeEdit +} + +func PointerFromQTimeEdit(ptr QTimeEditITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTimeEditPTR().Pointer() + } + return nil +} + +func QTimeEditFromPointer(ptr unsafe.Pointer) *QTimeEdit { + var n = new(QTimeEdit) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QTimeEdit_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QTimeEdit) QTimeEditPTR() *QTimeEdit { + return ptr +} + +func NewQTimeEdit(parent QWidgetITF) *QTimeEdit { + return QTimeEditFromPointer(unsafe.Pointer(C.QTimeEdit_NewQTimeEdit(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQTimeEdit2(time core.QTimeITF, parent QWidgetITF) *QTimeEdit { + return QTimeEditFromPointer(unsafe.Pointer(C.QTimeEdit_NewQTimeEdit2(C.QtObjectPtr(core.PointerFromQTime(time)), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QTimeEdit) DestroyQTimeEdit() { + if ptr.Pointer() != nil { + C.QTimeEdit_DestroyQTimeEdit(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qtimeedit.h b/widgets/qtimeedit.h new file mode 100755 index 00000000..301295bf --- /dev/null +++ b/widgets/qtimeedit.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTimeEdit_NewQTimeEdit(QtObjectPtr parent); +QtObjectPtr QTimeEdit_NewQTimeEdit2(QtObjectPtr time, QtObjectPtr parent); +void QTimeEdit_DestroyQTimeEdit(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qtoolbar.cpp b/widgets/qtoolbar.cpp new file mode 100755 index 00000000..b1f16a3d --- /dev/null +++ b/widgets/qtoolbar.cpp @@ -0,0 +1,198 @@ +#include "qtoolbar.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQToolBar: public QToolBar { +public: +void Signal_ActionTriggered(QAction * action){callbackQToolBarActionTriggered(this->objectName().toUtf8().data(), action);}; +void Signal_AllowedAreasChanged(Qt::ToolBarAreas allowedAreas){callbackQToolBarAllowedAreasChanged(this->objectName().toUtf8().data(), allowedAreas);}; +void Signal_MovableChanged(bool movable){callbackQToolBarMovableChanged(this->objectName().toUtf8().data(), movable);}; +void Signal_OrientationChanged(Qt::Orientation orientation){callbackQToolBarOrientationChanged(this->objectName().toUtf8().data(), orientation);}; +void Signal_ToolButtonStyleChanged(Qt::ToolButtonStyle toolButtonStyle){callbackQToolBarToolButtonStyleChanged(this->objectName().toUtf8().data(), toolButtonStyle);}; +void Signal_TopLevelChanged(bool topLevel){callbackQToolBarTopLevelChanged(this->objectName().toUtf8().data(), topLevel);}; +void Signal_VisibilityChanged(bool visible){callbackQToolBarVisibilityChanged(this->objectName().toUtf8().data(), visible);}; +}; + +int QToolBar_AllowedAreas(QtObjectPtr ptr){ + return static_cast(ptr)->allowedAreas(); +} + +int QToolBar_IsFloatable(QtObjectPtr ptr){ + return static_cast(ptr)->isFloatable(); +} + +int QToolBar_IsFloating(QtObjectPtr ptr){ + return static_cast(ptr)->isFloating(); +} + +int QToolBar_IsMovable(QtObjectPtr ptr){ + return static_cast(ptr)->isMovable(); +} + +int QToolBar_Orientation(QtObjectPtr ptr){ + return static_cast(ptr)->orientation(); +} + +void QToolBar_SetAllowedAreas(QtObjectPtr ptr, int areas){ + static_cast(ptr)->setAllowedAreas(static_cast(areas)); +} + +void QToolBar_SetFloatable(QtObjectPtr ptr, int floatable){ + static_cast(ptr)->setFloatable(floatable != 0); +} + +void QToolBar_SetIconSize(QtObjectPtr ptr, QtObjectPtr iconSize){ + QMetaObject::invokeMethod(static_cast(ptr), "setIconSize", Q_ARG(QSize, *static_cast(iconSize))); +} + +void QToolBar_SetMovable(QtObjectPtr ptr, int movable){ + static_cast(ptr)->setMovable(movable != 0); +} + +void QToolBar_SetOrientation(QtObjectPtr ptr, int orientation){ + static_cast(ptr)->setOrientation(static_cast(orientation)); +} + +void QToolBar_SetToolButtonStyle(QtObjectPtr ptr, int toolButtonStyle){ + QMetaObject::invokeMethod(static_cast(ptr), "setToolButtonStyle", Q_ARG(Qt::ToolButtonStyle, static_cast(toolButtonStyle))); +} + +int QToolBar_ToolButtonStyle(QtObjectPtr ptr){ + return static_cast(ptr)->toolButtonStyle(); +} + +QtObjectPtr QToolBar_NewQToolBar2(QtObjectPtr parent){ + return new QToolBar(static_cast(parent)); +} + +QtObjectPtr QToolBar_NewQToolBar(char* title, QtObjectPtr parent){ + return new QToolBar(QString(title), static_cast(parent)); +} + +QtObjectPtr QToolBar_ActionAt(QtObjectPtr ptr, QtObjectPtr p){ + return static_cast(ptr)->actionAt(*static_cast(p)); +} + +QtObjectPtr QToolBar_ActionAt2(QtObjectPtr ptr, int x, int y){ + return static_cast(ptr)->actionAt(x, y); +} + +void QToolBar_ConnectActionTriggered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QToolBar::actionTriggered), static_cast(ptr), static_cast(&MyQToolBar::Signal_ActionTriggered));; +} + +void QToolBar_DisconnectActionTriggered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QToolBar::actionTriggered), static_cast(ptr), static_cast(&MyQToolBar::Signal_ActionTriggered));; +} + +QtObjectPtr QToolBar_AddAction2(QtObjectPtr ptr, QtObjectPtr icon, char* text){ + return static_cast(ptr)->addAction(*static_cast(icon), QString(text)); +} + +QtObjectPtr QToolBar_AddAction4(QtObjectPtr ptr, QtObjectPtr icon, char* text, QtObjectPtr receiver, char* member){ + return static_cast(ptr)->addAction(*static_cast(icon), QString(text), static_cast(receiver), const_cast(member)); +} + +QtObjectPtr QToolBar_AddAction(QtObjectPtr ptr, char* text){ + return static_cast(ptr)->addAction(QString(text)); +} + +QtObjectPtr QToolBar_AddAction3(QtObjectPtr ptr, char* text, QtObjectPtr receiver, char* member){ + return static_cast(ptr)->addAction(QString(text), static_cast(receiver), const_cast(member)); +} + +QtObjectPtr QToolBar_AddSeparator(QtObjectPtr ptr){ + return static_cast(ptr)->addSeparator(); +} + +QtObjectPtr QToolBar_AddWidget(QtObjectPtr ptr, QtObjectPtr widget){ + return static_cast(ptr)->addWidget(static_cast(widget)); +} + +void QToolBar_ConnectAllowedAreasChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QToolBar::allowedAreasChanged), static_cast(ptr), static_cast(&MyQToolBar::Signal_AllowedAreasChanged));; +} + +void QToolBar_DisconnectAllowedAreasChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QToolBar::allowedAreasChanged), static_cast(ptr), static_cast(&MyQToolBar::Signal_AllowedAreasChanged));; +} + +void QToolBar_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +QtObjectPtr QToolBar_InsertSeparator(QtObjectPtr ptr, QtObjectPtr before){ + return static_cast(ptr)->insertSeparator(static_cast(before)); +} + +QtObjectPtr QToolBar_InsertWidget(QtObjectPtr ptr, QtObjectPtr before, QtObjectPtr widget){ + return static_cast(ptr)->insertWidget(static_cast(before), static_cast(widget)); +} + +int QToolBar_IsAreaAllowed(QtObjectPtr ptr, int area){ + return static_cast(ptr)->isAreaAllowed(static_cast(area)); +} + +void QToolBar_ConnectMovableChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QToolBar::movableChanged), static_cast(ptr), static_cast(&MyQToolBar::Signal_MovableChanged));; +} + +void QToolBar_DisconnectMovableChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QToolBar::movableChanged), static_cast(ptr), static_cast(&MyQToolBar::Signal_MovableChanged));; +} + +void QToolBar_ConnectOrientationChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QToolBar::orientationChanged), static_cast(ptr), static_cast(&MyQToolBar::Signal_OrientationChanged));; +} + +void QToolBar_DisconnectOrientationChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QToolBar::orientationChanged), static_cast(ptr), static_cast(&MyQToolBar::Signal_OrientationChanged));; +} + +QtObjectPtr QToolBar_ToggleViewAction(QtObjectPtr ptr){ + return static_cast(ptr)->toggleViewAction(); +} + +void QToolBar_ConnectToolButtonStyleChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QToolBar::toolButtonStyleChanged), static_cast(ptr), static_cast(&MyQToolBar::Signal_ToolButtonStyleChanged));; +} + +void QToolBar_DisconnectToolButtonStyleChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QToolBar::toolButtonStyleChanged), static_cast(ptr), static_cast(&MyQToolBar::Signal_ToolButtonStyleChanged));; +} + +void QToolBar_ConnectTopLevelChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QToolBar::topLevelChanged), static_cast(ptr), static_cast(&MyQToolBar::Signal_TopLevelChanged));; +} + +void QToolBar_DisconnectTopLevelChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QToolBar::topLevelChanged), static_cast(ptr), static_cast(&MyQToolBar::Signal_TopLevelChanged));; +} + +void QToolBar_ConnectVisibilityChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QToolBar::visibilityChanged), static_cast(ptr), static_cast(&MyQToolBar::Signal_VisibilityChanged));; +} + +void QToolBar_DisconnectVisibilityChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QToolBar::visibilityChanged), static_cast(ptr), static_cast(&MyQToolBar::Signal_VisibilityChanged));; +} + +QtObjectPtr QToolBar_WidgetForAction(QtObjectPtr ptr, QtObjectPtr action){ + return static_cast(ptr)->widgetForAction(static_cast(action)); +} + +void QToolBar_DestroyQToolBar(QtObjectPtr ptr){ + static_cast(ptr)->~QToolBar(); +} + diff --git a/widgets/qtoolbar.go b/widgets/qtoolbar.go new file mode 100755 index 00000000..b35670ae --- /dev/null +++ b/widgets/qtoolbar.go @@ -0,0 +1,362 @@ +package widgets + +//#include "qtoolbar.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QToolBar struct { + QWidget +} + +type QToolBarITF interface { + QWidgetITF + QToolBarPTR() *QToolBar +} + +func PointerFromQToolBar(ptr QToolBarITF) unsafe.Pointer { + if ptr != nil { + return ptr.QToolBarPTR().Pointer() + } + return nil +} + +func QToolBarFromPointer(ptr unsafe.Pointer) *QToolBar { + var n = new(QToolBar) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QToolBar_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QToolBar) QToolBarPTR() *QToolBar { + return ptr +} + +func (ptr *QToolBar) AllowedAreas() core.Qt__ToolBarArea { + if ptr.Pointer() != nil { + return core.Qt__ToolBarArea(C.QToolBar_AllowedAreas(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QToolBar) IsFloatable() bool { + if ptr.Pointer() != nil { + return C.QToolBar_IsFloatable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QToolBar) IsFloating() bool { + if ptr.Pointer() != nil { + return C.QToolBar_IsFloating(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QToolBar) IsMovable() bool { + if ptr.Pointer() != nil { + return C.QToolBar_IsMovable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QToolBar) Orientation() core.Qt__Orientation { + if ptr.Pointer() != nil { + return core.Qt__Orientation(C.QToolBar_Orientation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QToolBar) SetAllowedAreas(areas core.Qt__ToolBarArea) { + if ptr.Pointer() != nil { + C.QToolBar_SetAllowedAreas(C.QtObjectPtr(ptr.Pointer()), C.int(areas)) + } +} + +func (ptr *QToolBar) SetFloatable(floatable bool) { + if ptr.Pointer() != nil { + C.QToolBar_SetFloatable(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(floatable))) + } +} + +func (ptr *QToolBar) SetIconSize(iconSize core.QSizeITF) { + if ptr.Pointer() != nil { + C.QToolBar_SetIconSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(iconSize))) + } +} + +func (ptr *QToolBar) SetMovable(movable bool) { + if ptr.Pointer() != nil { + C.QToolBar_SetMovable(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(movable))) + } +} + +func (ptr *QToolBar) SetOrientation(orientation core.Qt__Orientation) { + if ptr.Pointer() != nil { + C.QToolBar_SetOrientation(C.QtObjectPtr(ptr.Pointer()), C.int(orientation)) + } +} + +func (ptr *QToolBar) SetToolButtonStyle(toolButtonStyle core.Qt__ToolButtonStyle) { + if ptr.Pointer() != nil { + C.QToolBar_SetToolButtonStyle(C.QtObjectPtr(ptr.Pointer()), C.int(toolButtonStyle)) + } +} + +func (ptr *QToolBar) ToolButtonStyle() core.Qt__ToolButtonStyle { + if ptr.Pointer() != nil { + return core.Qt__ToolButtonStyle(C.QToolBar_ToolButtonStyle(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQToolBar2(parent QWidgetITF) *QToolBar { + return QToolBarFromPointer(unsafe.Pointer(C.QToolBar_NewQToolBar2(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQToolBar(title string, parent QWidgetITF) *QToolBar { + return QToolBarFromPointer(unsafe.Pointer(C.QToolBar_NewQToolBar(C.CString(title), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QToolBar) ActionAt(p core.QPointITF) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QToolBar_ActionAt(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(p))))) + } + return nil +} + +func (ptr *QToolBar) ActionAt2(x int, y int) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QToolBar_ActionAt2(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y)))) + } + return nil +} + +func (ptr *QToolBar) ConnectActionTriggered(f func(action QActionITF)) { + if ptr.Pointer() != nil { + C.QToolBar_ConnectActionTriggered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "actionTriggered", f) + } +} + +func (ptr *QToolBar) DisconnectActionTriggered() { + if ptr.Pointer() != nil { + C.QToolBar_DisconnectActionTriggered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "actionTriggered") + } +} + +//export callbackQToolBarActionTriggered +func callbackQToolBarActionTriggered(ptrName *C.char, action unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "actionTriggered").(func(*QAction))(QActionFromPointer(action)) +} + +func (ptr *QToolBar) AddAction2(icon gui.QIconITF, text string) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QToolBar_AddAction2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQIcon(icon)), C.CString(text)))) + } + return nil +} + +func (ptr *QToolBar) AddAction4(icon gui.QIconITF, text string, receiver core.QObjectITF, member string) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QToolBar_AddAction4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQIcon(icon)), C.CString(text), C.QtObjectPtr(core.PointerFromQObject(receiver)), C.CString(member)))) + } + return nil +} + +func (ptr *QToolBar) AddAction(text string) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QToolBar_AddAction(C.QtObjectPtr(ptr.Pointer()), C.CString(text)))) + } + return nil +} + +func (ptr *QToolBar) AddAction3(text string, receiver core.QObjectITF, member string) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QToolBar_AddAction3(C.QtObjectPtr(ptr.Pointer()), C.CString(text), C.QtObjectPtr(core.PointerFromQObject(receiver)), C.CString(member)))) + } + return nil +} + +func (ptr *QToolBar) AddSeparator() *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QToolBar_AddSeparator(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QToolBar) AddWidget(widget QWidgetITF) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QToolBar_AddWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))))) + } + return nil +} + +func (ptr *QToolBar) ConnectAllowedAreasChanged(f func(allowedAreas core.Qt__ToolBarArea)) { + if ptr.Pointer() != nil { + C.QToolBar_ConnectAllowedAreasChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "allowedAreasChanged", f) + } +} + +func (ptr *QToolBar) DisconnectAllowedAreasChanged() { + if ptr.Pointer() != nil { + C.QToolBar_DisconnectAllowedAreasChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "allowedAreasChanged") + } +} + +//export callbackQToolBarAllowedAreasChanged +func callbackQToolBarAllowedAreasChanged(ptrName *C.char, allowedAreas C.int) { + qt.GetSignal(C.GoString(ptrName), "allowedAreasChanged").(func(core.Qt__ToolBarArea))(core.Qt__ToolBarArea(allowedAreas)) +} + +func (ptr *QToolBar) Clear() { + if ptr.Pointer() != nil { + C.QToolBar_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QToolBar) InsertSeparator(before QActionITF) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QToolBar_InsertSeparator(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAction(before))))) + } + return nil +} + +func (ptr *QToolBar) InsertWidget(before QActionITF, widget QWidgetITF) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QToolBar_InsertWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAction(before)), C.QtObjectPtr(PointerFromQWidget(widget))))) + } + return nil +} + +func (ptr *QToolBar) IsAreaAllowed(area core.Qt__ToolBarArea) bool { + if ptr.Pointer() != nil { + return C.QToolBar_IsAreaAllowed(C.QtObjectPtr(ptr.Pointer()), C.int(area)) != 0 + } + return false +} + +func (ptr *QToolBar) ConnectMovableChanged(f func(movable bool)) { + if ptr.Pointer() != nil { + C.QToolBar_ConnectMovableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "movableChanged", f) + } +} + +func (ptr *QToolBar) DisconnectMovableChanged() { + if ptr.Pointer() != nil { + C.QToolBar_DisconnectMovableChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "movableChanged") + } +} + +//export callbackQToolBarMovableChanged +func callbackQToolBarMovableChanged(ptrName *C.char, movable C.int) { + qt.GetSignal(C.GoString(ptrName), "movableChanged").(func(bool))(int(movable) != 0) +} + +func (ptr *QToolBar) ConnectOrientationChanged(f func(orientation core.Qt__Orientation)) { + if ptr.Pointer() != nil { + C.QToolBar_ConnectOrientationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "orientationChanged", f) + } +} + +func (ptr *QToolBar) DisconnectOrientationChanged() { + if ptr.Pointer() != nil { + C.QToolBar_DisconnectOrientationChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "orientationChanged") + } +} + +//export callbackQToolBarOrientationChanged +func callbackQToolBarOrientationChanged(ptrName *C.char, orientation C.int) { + qt.GetSignal(C.GoString(ptrName), "orientationChanged").(func(core.Qt__Orientation))(core.Qt__Orientation(orientation)) +} + +func (ptr *QToolBar) ToggleViewAction() *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QToolBar_ToggleViewAction(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QToolBar) ConnectToolButtonStyleChanged(f func(toolButtonStyle core.Qt__ToolButtonStyle)) { + if ptr.Pointer() != nil { + C.QToolBar_ConnectToolButtonStyleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "toolButtonStyleChanged", f) + } +} + +func (ptr *QToolBar) DisconnectToolButtonStyleChanged() { + if ptr.Pointer() != nil { + C.QToolBar_DisconnectToolButtonStyleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "toolButtonStyleChanged") + } +} + +//export callbackQToolBarToolButtonStyleChanged +func callbackQToolBarToolButtonStyleChanged(ptrName *C.char, toolButtonStyle C.int) { + qt.GetSignal(C.GoString(ptrName), "toolButtonStyleChanged").(func(core.Qt__ToolButtonStyle))(core.Qt__ToolButtonStyle(toolButtonStyle)) +} + +func (ptr *QToolBar) ConnectTopLevelChanged(f func(topLevel bool)) { + if ptr.Pointer() != nil { + C.QToolBar_ConnectTopLevelChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "topLevelChanged", f) + } +} + +func (ptr *QToolBar) DisconnectTopLevelChanged() { + if ptr.Pointer() != nil { + C.QToolBar_DisconnectTopLevelChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "topLevelChanged") + } +} + +//export callbackQToolBarTopLevelChanged +func callbackQToolBarTopLevelChanged(ptrName *C.char, topLevel C.int) { + qt.GetSignal(C.GoString(ptrName), "topLevelChanged").(func(bool))(int(topLevel) != 0) +} + +func (ptr *QToolBar) ConnectVisibilityChanged(f func(visible bool)) { + if ptr.Pointer() != nil { + C.QToolBar_ConnectVisibilityChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "visibilityChanged", f) + } +} + +func (ptr *QToolBar) DisconnectVisibilityChanged() { + if ptr.Pointer() != nil { + C.QToolBar_DisconnectVisibilityChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "visibilityChanged") + } +} + +//export callbackQToolBarVisibilityChanged +func callbackQToolBarVisibilityChanged(ptrName *C.char, visible C.int) { + qt.GetSignal(C.GoString(ptrName), "visibilityChanged").(func(bool))(int(visible) != 0) +} + +func (ptr *QToolBar) WidgetForAction(action QActionITF) *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QToolBar_WidgetForAction(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAction(action))))) + } + return nil +} + +func (ptr *QToolBar) DestroyQToolBar() { + if ptr.Pointer() != nil { + C.QToolBar_DestroyQToolBar(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qtoolbar.h b/widgets/qtoolbar.h new file mode 100755 index 00000000..5456fa22 --- /dev/null +++ b/widgets/qtoolbar.h @@ -0,0 +1,52 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QToolBar_AllowedAreas(QtObjectPtr ptr); +int QToolBar_IsFloatable(QtObjectPtr ptr); +int QToolBar_IsFloating(QtObjectPtr ptr); +int QToolBar_IsMovable(QtObjectPtr ptr); +int QToolBar_Orientation(QtObjectPtr ptr); +void QToolBar_SetAllowedAreas(QtObjectPtr ptr, int areas); +void QToolBar_SetFloatable(QtObjectPtr ptr, int floatable); +void QToolBar_SetIconSize(QtObjectPtr ptr, QtObjectPtr iconSize); +void QToolBar_SetMovable(QtObjectPtr ptr, int movable); +void QToolBar_SetOrientation(QtObjectPtr ptr, int orientation); +void QToolBar_SetToolButtonStyle(QtObjectPtr ptr, int toolButtonStyle); +int QToolBar_ToolButtonStyle(QtObjectPtr ptr); +QtObjectPtr QToolBar_NewQToolBar2(QtObjectPtr parent); +QtObjectPtr QToolBar_NewQToolBar(char* title, QtObjectPtr parent); +QtObjectPtr QToolBar_ActionAt(QtObjectPtr ptr, QtObjectPtr p); +QtObjectPtr QToolBar_ActionAt2(QtObjectPtr ptr, int x, int y); +void QToolBar_ConnectActionTriggered(QtObjectPtr ptr); +void QToolBar_DisconnectActionTriggered(QtObjectPtr ptr); +QtObjectPtr QToolBar_AddAction2(QtObjectPtr ptr, QtObjectPtr icon, char* text); +QtObjectPtr QToolBar_AddAction4(QtObjectPtr ptr, QtObjectPtr icon, char* text, QtObjectPtr receiver, char* member); +QtObjectPtr QToolBar_AddAction(QtObjectPtr ptr, char* text); +QtObjectPtr QToolBar_AddAction3(QtObjectPtr ptr, char* text, QtObjectPtr receiver, char* member); +QtObjectPtr QToolBar_AddSeparator(QtObjectPtr ptr); +QtObjectPtr QToolBar_AddWidget(QtObjectPtr ptr, QtObjectPtr widget); +void QToolBar_ConnectAllowedAreasChanged(QtObjectPtr ptr); +void QToolBar_DisconnectAllowedAreasChanged(QtObjectPtr ptr); +void QToolBar_Clear(QtObjectPtr ptr); +QtObjectPtr QToolBar_InsertSeparator(QtObjectPtr ptr, QtObjectPtr before); +QtObjectPtr QToolBar_InsertWidget(QtObjectPtr ptr, QtObjectPtr before, QtObjectPtr widget); +int QToolBar_IsAreaAllowed(QtObjectPtr ptr, int area); +void QToolBar_ConnectMovableChanged(QtObjectPtr ptr); +void QToolBar_DisconnectMovableChanged(QtObjectPtr ptr); +void QToolBar_ConnectOrientationChanged(QtObjectPtr ptr); +void QToolBar_DisconnectOrientationChanged(QtObjectPtr ptr); +QtObjectPtr QToolBar_ToggleViewAction(QtObjectPtr ptr); +void QToolBar_ConnectToolButtonStyleChanged(QtObjectPtr ptr); +void QToolBar_DisconnectToolButtonStyleChanged(QtObjectPtr ptr); +void QToolBar_ConnectTopLevelChanged(QtObjectPtr ptr); +void QToolBar_DisconnectTopLevelChanged(QtObjectPtr ptr); +void QToolBar_ConnectVisibilityChanged(QtObjectPtr ptr); +void QToolBar_DisconnectVisibilityChanged(QtObjectPtr ptr); +QtObjectPtr QToolBar_WidgetForAction(QtObjectPtr ptr, QtObjectPtr action); +void QToolBar_DestroyQToolBar(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qtoolbox.cpp b/widgets/qtoolbox.cpp new file mode 100755 index 00000000..6d72aee2 --- /dev/null +++ b/widgets/qtoolbox.cpp @@ -0,0 +1,109 @@ +#include "qtoolbox.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQToolBox: public QToolBox { +public: +void Signal_CurrentChanged(int index){callbackQToolBoxCurrentChanged(this->objectName().toUtf8().data(), index);}; +}; + +int QToolBox_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +int QToolBox_CurrentIndex(QtObjectPtr ptr){ + return static_cast(ptr)->currentIndex(); +} + +void QToolBox_SetCurrentIndex(QtObjectPtr ptr, int index){ + QMetaObject::invokeMethod(static_cast(ptr), "setCurrentIndex", Q_ARG(int, index)); +} + +QtObjectPtr QToolBox_NewQToolBox(QtObjectPtr parent, int f){ + return new QToolBox(static_cast(parent), static_cast(f)); +} + +int QToolBox_AddItem2(QtObjectPtr ptr, QtObjectPtr w, char* text){ + return static_cast(ptr)->addItem(static_cast(w), QString(text)); +} + +int QToolBox_AddItem(QtObjectPtr ptr, QtObjectPtr widget, QtObjectPtr iconSet, char* text){ + return static_cast(ptr)->addItem(static_cast(widget), *static_cast(iconSet), QString(text)); +} + +void QToolBox_ConnectCurrentChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QToolBox::currentChanged), static_cast(ptr), static_cast(&MyQToolBox::Signal_CurrentChanged));; +} + +void QToolBox_DisconnectCurrentChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QToolBox::currentChanged), static_cast(ptr), static_cast(&MyQToolBox::Signal_CurrentChanged));; +} + +QtObjectPtr QToolBox_CurrentWidget(QtObjectPtr ptr){ + return static_cast(ptr)->currentWidget(); +} + +int QToolBox_IndexOf(QtObjectPtr ptr, QtObjectPtr widget){ + return static_cast(ptr)->indexOf(static_cast(widget)); +} + +int QToolBox_InsertItem(QtObjectPtr ptr, int index, QtObjectPtr widget, QtObjectPtr icon, char* text){ + return static_cast(ptr)->insertItem(index, static_cast(widget), *static_cast(icon), QString(text)); +} + +int QToolBox_InsertItem2(QtObjectPtr ptr, int index, QtObjectPtr widget, char* text){ + return static_cast(ptr)->insertItem(index, static_cast(widget), QString(text)); +} + +int QToolBox_IsItemEnabled(QtObjectPtr ptr, int index){ + return static_cast(ptr)->isItemEnabled(index); +} + +char* QToolBox_ItemText(QtObjectPtr ptr, int index){ + return static_cast(ptr)->itemText(index).toUtf8().data(); +} + +char* QToolBox_ItemToolTip(QtObjectPtr ptr, int index){ + return static_cast(ptr)->itemToolTip(index).toUtf8().data(); +} + +void QToolBox_RemoveItem(QtObjectPtr ptr, int index){ + static_cast(ptr)->removeItem(index); +} + +void QToolBox_SetCurrentWidget(QtObjectPtr ptr, QtObjectPtr widget){ + QMetaObject::invokeMethod(static_cast(ptr), "setCurrentWidget", Q_ARG(QWidget*, static_cast(widget))); +} + +void QToolBox_SetItemEnabled(QtObjectPtr ptr, int index, int enabled){ + static_cast(ptr)->setItemEnabled(index, enabled != 0); +} + +void QToolBox_SetItemIcon(QtObjectPtr ptr, int index, QtObjectPtr icon){ + static_cast(ptr)->setItemIcon(index, *static_cast(icon)); +} + +void QToolBox_SetItemText(QtObjectPtr ptr, int index, char* text){ + static_cast(ptr)->setItemText(index, QString(text)); +} + +void QToolBox_SetItemToolTip(QtObjectPtr ptr, int index, char* toolTip){ + static_cast(ptr)->setItemToolTip(index, QString(toolTip)); +} + +QtObjectPtr QToolBox_Widget(QtObjectPtr ptr, int index){ + return static_cast(ptr)->widget(index); +} + +void QToolBox_DestroyQToolBox(QtObjectPtr ptr){ + static_cast(ptr)->~QToolBox(); +} + diff --git a/widgets/qtoolbox.go b/widgets/qtoolbox.go new file mode 100755 index 00000000..7310e332 --- /dev/null +++ b/widgets/qtoolbox.go @@ -0,0 +1,195 @@ +package widgets + +//#include "qtoolbox.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QToolBox struct { + QFrame +} + +type QToolBoxITF interface { + QFrameITF + QToolBoxPTR() *QToolBox +} + +func PointerFromQToolBox(ptr QToolBoxITF) unsafe.Pointer { + if ptr != nil { + return ptr.QToolBoxPTR().Pointer() + } + return nil +} + +func QToolBoxFromPointer(ptr unsafe.Pointer) *QToolBox { + var n = new(QToolBox) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QToolBox_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QToolBox) QToolBoxPTR() *QToolBox { + return ptr +} + +func (ptr *QToolBox) Count() int { + if ptr.Pointer() != nil { + return int(C.QToolBox_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QToolBox) CurrentIndex() int { + if ptr.Pointer() != nil { + return int(C.QToolBox_CurrentIndex(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QToolBox) SetCurrentIndex(index int) { + if ptr.Pointer() != nil { + C.QToolBox_SetCurrentIndex(C.QtObjectPtr(ptr.Pointer()), C.int(index)) + } +} + +func NewQToolBox(parent QWidgetITF, f core.Qt__WindowType) *QToolBox { + return QToolBoxFromPointer(unsafe.Pointer(C.QToolBox_NewQToolBox(C.QtObjectPtr(PointerFromQWidget(parent)), C.int(f)))) +} + +func (ptr *QToolBox) AddItem2(w QWidgetITF, text string) int { + if ptr.Pointer() != nil { + return int(C.QToolBox_AddItem2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(w)), C.CString(text))) + } + return 0 +} + +func (ptr *QToolBox) AddItem(widget QWidgetITF, iconSet gui.QIconITF, text string) int { + if ptr.Pointer() != nil { + return int(C.QToolBox_AddItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget)), C.QtObjectPtr(gui.PointerFromQIcon(iconSet)), C.CString(text))) + } + return 0 +} + +func (ptr *QToolBox) ConnectCurrentChanged(f func(index int)) { + if ptr.Pointer() != nil { + C.QToolBox_ConnectCurrentChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "currentChanged", f) + } +} + +func (ptr *QToolBox) DisconnectCurrentChanged() { + if ptr.Pointer() != nil { + C.QToolBox_DisconnectCurrentChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "currentChanged") + } +} + +//export callbackQToolBoxCurrentChanged +func callbackQToolBoxCurrentChanged(ptrName *C.char, index C.int) { + qt.GetSignal(C.GoString(ptrName), "currentChanged").(func(int))(int(index)) +} + +func (ptr *QToolBox) CurrentWidget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QToolBox_CurrentWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QToolBox) IndexOf(widget QWidgetITF) int { + if ptr.Pointer() != nil { + return int(C.QToolBox_IndexOf(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget)))) + } + return 0 +} + +func (ptr *QToolBox) InsertItem(index int, widget QWidgetITF, icon gui.QIconITF, text string) int { + if ptr.Pointer() != nil { + return int(C.QToolBox_InsertItem(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.QtObjectPtr(PointerFromQWidget(widget)), C.QtObjectPtr(gui.PointerFromQIcon(icon)), C.CString(text))) + } + return 0 +} + +func (ptr *QToolBox) InsertItem2(index int, widget QWidgetITF, text string) int { + if ptr.Pointer() != nil { + return int(C.QToolBox_InsertItem2(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.QtObjectPtr(PointerFromQWidget(widget)), C.CString(text))) + } + return 0 +} + +func (ptr *QToolBox) IsItemEnabled(index int) bool { + if ptr.Pointer() != nil { + return C.QToolBox_IsItemEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(index)) != 0 + } + return false +} + +func (ptr *QToolBox) ItemText(index int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QToolBox_ItemText(C.QtObjectPtr(ptr.Pointer()), C.int(index))) + } + return "" +} + +func (ptr *QToolBox) ItemToolTip(index int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QToolBox_ItemToolTip(C.QtObjectPtr(ptr.Pointer()), C.int(index))) + } + return "" +} + +func (ptr *QToolBox) RemoveItem(index int) { + if ptr.Pointer() != nil { + C.QToolBox_RemoveItem(C.QtObjectPtr(ptr.Pointer()), C.int(index)) + } +} + +func (ptr *QToolBox) SetCurrentWidget(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QToolBox_SetCurrentWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QToolBox) SetItemEnabled(index int, enabled bool) { + if ptr.Pointer() != nil { + C.QToolBox_SetItemEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QToolBox) SetItemIcon(index int, icon gui.QIconITF) { + if ptr.Pointer() != nil { + C.QToolBox_SetItemIcon(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.QtObjectPtr(gui.PointerFromQIcon(icon))) + } +} + +func (ptr *QToolBox) SetItemText(index int, text string) { + if ptr.Pointer() != nil { + C.QToolBox_SetItemText(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.CString(text)) + } +} + +func (ptr *QToolBox) SetItemToolTip(index int, toolTip string) { + if ptr.Pointer() != nil { + C.QToolBox_SetItemToolTip(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.CString(toolTip)) + } +} + +func (ptr *QToolBox) Widget(index int) *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QToolBox_Widget(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QToolBox) DestroyQToolBox() { + if ptr.Pointer() != nil { + C.QToolBox_DestroyQToolBox(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qtoolbox.h b/widgets/qtoolbox.h new file mode 100755 index 00000000..9f44ab79 --- /dev/null +++ b/widgets/qtoolbox.h @@ -0,0 +1,32 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QToolBox_Count(QtObjectPtr ptr); +int QToolBox_CurrentIndex(QtObjectPtr ptr); +void QToolBox_SetCurrentIndex(QtObjectPtr ptr, int index); +QtObjectPtr QToolBox_NewQToolBox(QtObjectPtr parent, int f); +int QToolBox_AddItem2(QtObjectPtr ptr, QtObjectPtr w, char* text); +int QToolBox_AddItem(QtObjectPtr ptr, QtObjectPtr widget, QtObjectPtr iconSet, char* text); +void QToolBox_ConnectCurrentChanged(QtObjectPtr ptr); +void QToolBox_DisconnectCurrentChanged(QtObjectPtr ptr); +QtObjectPtr QToolBox_CurrentWidget(QtObjectPtr ptr); +int QToolBox_IndexOf(QtObjectPtr ptr, QtObjectPtr widget); +int QToolBox_InsertItem(QtObjectPtr ptr, int index, QtObjectPtr widget, QtObjectPtr icon, char* text); +int QToolBox_InsertItem2(QtObjectPtr ptr, int index, QtObjectPtr widget, char* text); +int QToolBox_IsItemEnabled(QtObjectPtr ptr, int index); +char* QToolBox_ItemText(QtObjectPtr ptr, int index); +char* QToolBox_ItemToolTip(QtObjectPtr ptr, int index); +void QToolBox_RemoveItem(QtObjectPtr ptr, int index); +void QToolBox_SetCurrentWidget(QtObjectPtr ptr, QtObjectPtr widget); +void QToolBox_SetItemEnabled(QtObjectPtr ptr, int index, int enabled); +void QToolBox_SetItemIcon(QtObjectPtr ptr, int index, QtObjectPtr icon); +void QToolBox_SetItemText(QtObjectPtr ptr, int index, char* text); +void QToolBox_SetItemToolTip(QtObjectPtr ptr, int index, char* toolTip); +QtObjectPtr QToolBox_Widget(QtObjectPtr ptr, int index); +void QToolBox_DestroyQToolBox(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qtoolbutton.cpp b/widgets/qtoolbutton.cpp new file mode 100755 index 00000000..244d2470 --- /dev/null +++ b/widgets/qtoolbutton.cpp @@ -0,0 +1,78 @@ +#include "qtoolbutton.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQToolButton: public QToolButton { +public: +void Signal_Triggered(QAction * action){callbackQToolButtonTriggered(this->objectName().toUtf8().data(), action);}; +}; + +int QToolButton_ArrowType(QtObjectPtr ptr){ + return static_cast(ptr)->arrowType(); +} + +int QToolButton_AutoRaise(QtObjectPtr ptr){ + return static_cast(ptr)->autoRaise(); +} + +int QToolButton_PopupMode(QtObjectPtr ptr){ + return static_cast(ptr)->popupMode(); +} + +void QToolButton_SetArrowType(QtObjectPtr ptr, int ty){ + static_cast(ptr)->setArrowType(static_cast(ty)); +} + +void QToolButton_SetAutoRaise(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setAutoRaise(enable != 0); +} + +void QToolButton_SetPopupMode(QtObjectPtr ptr, int mode){ + static_cast(ptr)->setPopupMode(static_cast(mode)); +} + +void QToolButton_SetToolButtonStyle(QtObjectPtr ptr, int style){ + QMetaObject::invokeMethod(static_cast(ptr), "setToolButtonStyle", Q_ARG(Qt::ToolButtonStyle, static_cast(style))); +} + +int QToolButton_ToolButtonStyle(QtObjectPtr ptr){ + return static_cast(ptr)->toolButtonStyle(); +} + +QtObjectPtr QToolButton_NewQToolButton(QtObjectPtr parent){ + return new QToolButton(static_cast(parent)); +} + +QtObjectPtr QToolButton_Menu(QtObjectPtr ptr){ + return static_cast(ptr)->menu(); +} + +void QToolButton_SetMenu(QtObjectPtr ptr, QtObjectPtr menu){ + static_cast(ptr)->setMenu(static_cast(menu)); +} + +void QToolButton_ShowMenu(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "showMenu"); +} + +void QToolButton_ConnectTriggered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QToolButton::triggered), static_cast(ptr), static_cast(&MyQToolButton::Signal_Triggered));; +} + +void QToolButton_DisconnectTriggered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QToolButton::triggered), static_cast(ptr), static_cast(&MyQToolButton::Signal_Triggered));; +} + +void QToolButton_DestroyQToolButton(QtObjectPtr ptr){ + static_cast(ptr)->~QToolButton(); +} + diff --git a/widgets/qtoolbutton.go b/widgets/qtoolbutton.go new file mode 100755 index 00000000..06667e45 --- /dev/null +++ b/widgets/qtoolbutton.go @@ -0,0 +1,148 @@ +package widgets + +//#include "qtoolbutton.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QToolButton struct { + QAbstractButton +} + +type QToolButtonITF interface { + QAbstractButtonITF + QToolButtonPTR() *QToolButton +} + +func PointerFromQToolButton(ptr QToolButtonITF) unsafe.Pointer { + if ptr != nil { + return ptr.QToolButtonPTR().Pointer() + } + return nil +} + +func QToolButtonFromPointer(ptr unsafe.Pointer) *QToolButton { + var n = new(QToolButton) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QToolButton_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QToolButton) QToolButtonPTR() *QToolButton { + return ptr +} + +//QToolButton::ToolButtonPopupMode +type QToolButton__ToolButtonPopupMode int + +var ( + QToolButton__DelayedPopup = QToolButton__ToolButtonPopupMode(0) + QToolButton__MenuButtonPopup = QToolButton__ToolButtonPopupMode(1) + QToolButton__InstantPopup = QToolButton__ToolButtonPopupMode(2) +) + +func (ptr *QToolButton) ArrowType() core.Qt__ArrowType { + if ptr.Pointer() != nil { + return core.Qt__ArrowType(C.QToolButton_ArrowType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QToolButton) AutoRaise() bool { + if ptr.Pointer() != nil { + return C.QToolButton_AutoRaise(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QToolButton) PopupMode() QToolButton__ToolButtonPopupMode { + if ptr.Pointer() != nil { + return QToolButton__ToolButtonPopupMode(C.QToolButton_PopupMode(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QToolButton) SetArrowType(ty core.Qt__ArrowType) { + if ptr.Pointer() != nil { + C.QToolButton_SetArrowType(C.QtObjectPtr(ptr.Pointer()), C.int(ty)) + } +} + +func (ptr *QToolButton) SetAutoRaise(enable bool) { + if ptr.Pointer() != nil { + C.QToolButton_SetAutoRaise(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QToolButton) SetPopupMode(mode QToolButton__ToolButtonPopupMode) { + if ptr.Pointer() != nil { + C.QToolButton_SetPopupMode(C.QtObjectPtr(ptr.Pointer()), C.int(mode)) + } +} + +func (ptr *QToolButton) SetToolButtonStyle(style core.Qt__ToolButtonStyle) { + if ptr.Pointer() != nil { + C.QToolButton_SetToolButtonStyle(C.QtObjectPtr(ptr.Pointer()), C.int(style)) + } +} + +func (ptr *QToolButton) ToolButtonStyle() core.Qt__ToolButtonStyle { + if ptr.Pointer() != nil { + return core.Qt__ToolButtonStyle(C.QToolButton_ToolButtonStyle(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQToolButton(parent QWidgetITF) *QToolButton { + return QToolButtonFromPointer(unsafe.Pointer(C.QToolButton_NewQToolButton(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QToolButton) Menu() *QMenu { + if ptr.Pointer() != nil { + return QMenuFromPointer(unsafe.Pointer(C.QToolButton_Menu(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QToolButton) SetMenu(menu QMenuITF) { + if ptr.Pointer() != nil { + C.QToolButton_SetMenu(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQMenu(menu))) + } +} + +func (ptr *QToolButton) ShowMenu() { + if ptr.Pointer() != nil { + C.QToolButton_ShowMenu(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QToolButton) ConnectTriggered(f func(action QActionITF)) { + if ptr.Pointer() != nil { + C.QToolButton_ConnectTriggered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "triggered", f) + } +} + +func (ptr *QToolButton) DisconnectTriggered() { + if ptr.Pointer() != nil { + C.QToolButton_DisconnectTriggered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "triggered") + } +} + +//export callbackQToolButtonTriggered +func callbackQToolButtonTriggered(ptrName *C.char, action unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "triggered").(func(*QAction))(QActionFromPointer(action)) +} + +func (ptr *QToolButton) DestroyQToolButton() { + if ptr.Pointer() != nil { + C.QToolButton_DestroyQToolButton(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qtoolbutton.h b/widgets/qtoolbutton.h new file mode 100755 index 00000000..8d51c894 --- /dev/null +++ b/widgets/qtoolbutton.h @@ -0,0 +1,24 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QToolButton_ArrowType(QtObjectPtr ptr); +int QToolButton_AutoRaise(QtObjectPtr ptr); +int QToolButton_PopupMode(QtObjectPtr ptr); +void QToolButton_SetArrowType(QtObjectPtr ptr, int ty); +void QToolButton_SetAutoRaise(QtObjectPtr ptr, int enable); +void QToolButton_SetPopupMode(QtObjectPtr ptr, int mode); +void QToolButton_SetToolButtonStyle(QtObjectPtr ptr, int style); +int QToolButton_ToolButtonStyle(QtObjectPtr ptr); +QtObjectPtr QToolButton_NewQToolButton(QtObjectPtr parent); +QtObjectPtr QToolButton_Menu(QtObjectPtr ptr); +void QToolButton_SetMenu(QtObjectPtr ptr, QtObjectPtr menu); +void QToolButton_ShowMenu(QtObjectPtr ptr); +void QToolButton_ConnectTriggered(QtObjectPtr ptr); +void QToolButton_DisconnectTriggered(QtObjectPtr ptr); +void QToolButton_DestroyQToolButton(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qtooltip.cpp b/widgets/qtooltip.cpp new file mode 100755 index 00000000..e2ee520b --- /dev/null +++ b/widgets/qtooltip.cpp @@ -0,0 +1,49 @@ +#include "qtooltip.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQToolTip: public QToolTip { +public: +}; + +void QToolTip_QToolTip_HideText(){ + QToolTip::hideText(); +} + +int QToolTip_QToolTip_IsVisible(){ + return QToolTip::isVisible(); +} + +void QToolTip_QToolTip_SetFont(QtObjectPtr font){ + QToolTip::setFont(*static_cast(font)); +} + +void QToolTip_QToolTip_SetPalette(QtObjectPtr palette){ + QToolTip::setPalette(*static_cast(palette)); +} + +void QToolTip_QToolTip_ShowText3(QtObjectPtr pos, char* text, QtObjectPtr w){ + QToolTip::showText(*static_cast(pos), QString(text), static_cast(w)); +} + +void QToolTip_QToolTip_ShowText(QtObjectPtr pos, char* text, QtObjectPtr w, QtObjectPtr rect){ + QToolTip::showText(*static_cast(pos), QString(text), static_cast(w), *static_cast(rect)); +} + +void QToolTip_QToolTip_ShowText2(QtObjectPtr pos, char* text, QtObjectPtr w, QtObjectPtr rect, int msecDisplayTime){ + QToolTip::showText(*static_cast(pos), QString(text), static_cast(w), *static_cast(rect), msecDisplayTime); +} + +char* QToolTip_QToolTip_Text(){ + return QToolTip::text().toUtf8().data(); +} + diff --git a/widgets/qtooltip.go b/widgets/qtooltip.go new file mode 100755 index 00000000..9d53be5b --- /dev/null +++ b/widgets/qtooltip.go @@ -0,0 +1,74 @@ +package widgets + +//#include "qtooltip.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QToolTip struct { + ptr unsafe.Pointer +} + +type QToolTipITF interface { + QToolTipPTR() *QToolTip +} + +func (p *QToolTip) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QToolTip) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQToolTip(ptr QToolTipITF) unsafe.Pointer { + if ptr != nil { + return ptr.QToolTipPTR().Pointer() + } + return nil +} + +func QToolTipFromPointer(ptr unsafe.Pointer) *QToolTip { + var n = new(QToolTip) + n.SetPointer(ptr) + return n +} + +func (ptr *QToolTip) QToolTipPTR() *QToolTip { + return ptr +} + +func QToolTip_HideText() { + C.QToolTip_QToolTip_HideText() +} + +func QToolTip_IsVisible() bool { + return C.QToolTip_QToolTip_IsVisible() != 0 +} + +func QToolTip_SetFont(font gui.QFontITF) { + C.QToolTip_QToolTip_SetFont(C.QtObjectPtr(gui.PointerFromQFont(font))) +} + +func QToolTip_SetPalette(palette gui.QPaletteITF) { + C.QToolTip_QToolTip_SetPalette(C.QtObjectPtr(gui.PointerFromQPalette(palette))) +} + +func QToolTip_ShowText3(pos core.QPointITF, text string, w QWidgetITF) { + C.QToolTip_QToolTip_ShowText3(C.QtObjectPtr(core.PointerFromQPoint(pos)), C.CString(text), C.QtObjectPtr(PointerFromQWidget(w))) +} + +func QToolTip_ShowText(pos core.QPointITF, text string, w QWidgetITF, rect core.QRectITF) { + C.QToolTip_QToolTip_ShowText(C.QtObjectPtr(core.PointerFromQPoint(pos)), C.CString(text), C.QtObjectPtr(PointerFromQWidget(w)), C.QtObjectPtr(core.PointerFromQRect(rect))) +} + +func QToolTip_ShowText2(pos core.QPointITF, text string, w QWidgetITF, rect core.QRectITF, msecDisplayTime int) { + C.QToolTip_QToolTip_ShowText2(C.QtObjectPtr(core.PointerFromQPoint(pos)), C.CString(text), C.QtObjectPtr(PointerFromQWidget(w)), C.QtObjectPtr(core.PointerFromQRect(rect)), C.int(msecDisplayTime)) +} + +func QToolTip_Text() string { + return C.GoString(C.QToolTip_QToolTip_Text()) +} diff --git a/widgets/qtooltip.h b/widgets/qtooltip.h new file mode 100755 index 00000000..0704b937 --- /dev/null +++ b/widgets/qtooltip.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QToolTip_QToolTip_HideText(); +int QToolTip_QToolTip_IsVisible(); +void QToolTip_QToolTip_SetFont(QtObjectPtr font); +void QToolTip_QToolTip_SetPalette(QtObjectPtr palette); +void QToolTip_QToolTip_ShowText3(QtObjectPtr pos, char* text, QtObjectPtr w); +void QToolTip_QToolTip_ShowText(QtObjectPtr pos, char* text, QtObjectPtr w, QtObjectPtr rect); +void QToolTip_QToolTip_ShowText2(QtObjectPtr pos, char* text, QtObjectPtr w, QtObjectPtr rect, int msecDisplayTime); +char* QToolTip_QToolTip_Text(); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qtreeview.cpp b/widgets/qtreeview.cpp new file mode 100755 index 00000000..d641a243 --- /dev/null +++ b/widgets/qtreeview.cpp @@ -0,0 +1,279 @@ +#include "qtreeview.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTreeView: public QTreeView { +public: +void Signal_Collapsed(const QModelIndex & index){callbackQTreeViewCollapsed(this->objectName().toUtf8().data(), index.internalPointer());}; +void Signal_Expanded(const QModelIndex & index){callbackQTreeViewExpanded(this->objectName().toUtf8().data(), index.internalPointer());}; +}; + +int QTreeView_AllColumnsShowFocus(QtObjectPtr ptr){ + return static_cast(ptr)->allColumnsShowFocus(); +} + +int QTreeView_AutoExpandDelay(QtObjectPtr ptr){ + return static_cast(ptr)->autoExpandDelay(); +} + +void QTreeView_Collapse(QtObjectPtr ptr, QtObjectPtr index){ + QMetaObject::invokeMethod(static_cast(ptr), "collapse", Q_ARG(QModelIndex, *static_cast(index))); +} + +void QTreeView_Expand(QtObjectPtr ptr, QtObjectPtr index){ + QMetaObject::invokeMethod(static_cast(ptr), "expand", Q_ARG(QModelIndex, *static_cast(index))); +} + +int QTreeView_ExpandsOnDoubleClick(QtObjectPtr ptr){ + return static_cast(ptr)->expandsOnDoubleClick(); +} + +int QTreeView_Indentation(QtObjectPtr ptr){ + return static_cast(ptr)->indentation(); +} + +int QTreeView_IsAnimated(QtObjectPtr ptr){ + return static_cast(ptr)->isAnimated(); +} + +int QTreeView_IsExpanded(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->isExpanded(*static_cast(index)); +} + +int QTreeView_IsHeaderHidden(QtObjectPtr ptr){ + return static_cast(ptr)->isHeaderHidden(); +} + +int QTreeView_IsSortingEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isSortingEnabled(); +} + +int QTreeView_ItemsExpandable(QtObjectPtr ptr){ + return static_cast(ptr)->itemsExpandable(); +} + +void QTreeView_ResetIndentation(QtObjectPtr ptr){ + static_cast(ptr)->resetIndentation(); +} + +int QTreeView_RootIsDecorated(QtObjectPtr ptr){ + return static_cast(ptr)->rootIsDecorated(); +} + +void QTreeView_SetAllColumnsShowFocus(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setAllColumnsShowFocus(enable != 0); +} + +void QTreeView_SetAnimated(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setAnimated(enable != 0); +} + +void QTreeView_SetAutoExpandDelay(QtObjectPtr ptr, int delay){ + static_cast(ptr)->setAutoExpandDelay(delay); +} + +void QTreeView_SetExpandsOnDoubleClick(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setExpandsOnDoubleClick(enable != 0); +} + +void QTreeView_SetHeaderHidden(QtObjectPtr ptr, int hide){ + static_cast(ptr)->setHeaderHidden(hide != 0); +} + +void QTreeView_SetIndentation(QtObjectPtr ptr, int i){ + static_cast(ptr)->setIndentation(i); +} + +void QTreeView_SetItemsExpandable(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setItemsExpandable(enable != 0); +} + +void QTreeView_SetRootIsDecorated(QtObjectPtr ptr, int show){ + static_cast(ptr)->setRootIsDecorated(show != 0); +} + +void QTreeView_SetSortingEnabled(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setSortingEnabled(enable != 0); +} + +void QTreeView_SetUniformRowHeights(QtObjectPtr ptr, int uniform){ + static_cast(ptr)->setUniformRowHeights(uniform != 0); +} + +void QTreeView_SetWordWrap(QtObjectPtr ptr, int on){ + static_cast(ptr)->setWordWrap(on != 0); +} + +int QTreeView_UniformRowHeights(QtObjectPtr ptr){ + return static_cast(ptr)->uniformRowHeights(); +} + +int QTreeView_WordWrap(QtObjectPtr ptr){ + return static_cast(ptr)->wordWrap(); +} + +QtObjectPtr QTreeView_NewQTreeView(QtObjectPtr parent){ + return new QTreeView(static_cast(parent)); +} + +void QTreeView_CollapseAll(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "collapseAll"); +} + +void QTreeView_ConnectCollapsed(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTreeView::collapsed), static_cast(ptr), static_cast(&MyQTreeView::Signal_Collapsed));; +} + +void QTreeView_DisconnectCollapsed(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTreeView::collapsed), static_cast(ptr), static_cast(&MyQTreeView::Signal_Collapsed));; +} + +int QTreeView_ColumnAt(QtObjectPtr ptr, int x){ + return static_cast(ptr)->columnAt(x); +} + +int QTreeView_ColumnViewportPosition(QtObjectPtr ptr, int column){ + return static_cast(ptr)->columnViewportPosition(column); +} + +int QTreeView_ColumnWidth(QtObjectPtr ptr, int column){ + return static_cast(ptr)->columnWidth(column); +} + +void QTreeView_ExpandAll(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "expandAll"); +} + +void QTreeView_ExpandToDepth(QtObjectPtr ptr, int depth){ + QMetaObject::invokeMethod(static_cast(ptr), "expandToDepth", Q_ARG(int, depth)); +} + +void QTreeView_ConnectExpanded(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTreeView::expanded), static_cast(ptr), static_cast(&MyQTreeView::Signal_Expanded));; +} + +void QTreeView_DisconnectExpanded(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTreeView::expanded), static_cast(ptr), static_cast(&MyQTreeView::Signal_Expanded));; +} + +QtObjectPtr QTreeView_Header(QtObjectPtr ptr){ + return static_cast(ptr)->header(); +} + +void QTreeView_HideColumn(QtObjectPtr ptr, int column){ + QMetaObject::invokeMethod(static_cast(ptr), "hideColumn", Q_ARG(int, column)); +} + +QtObjectPtr QTreeView_IndexAbove(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->indexAbove(*static_cast(index)).internalPointer(); +} + +QtObjectPtr QTreeView_IndexAt(QtObjectPtr ptr, QtObjectPtr point){ + return static_cast(ptr)->indexAt(*static_cast(point)).internalPointer(); +} + +QtObjectPtr QTreeView_IndexBelow(QtObjectPtr ptr, QtObjectPtr index){ + return static_cast(ptr)->indexBelow(*static_cast(index)).internalPointer(); +} + +int QTreeView_IsColumnHidden(QtObjectPtr ptr, int column){ + return static_cast(ptr)->isColumnHidden(column); +} + +int QTreeView_IsFirstColumnSpanned(QtObjectPtr ptr, int row, QtObjectPtr parent){ + return static_cast(ptr)->isFirstColumnSpanned(row, *static_cast(parent)); +} + +int QTreeView_IsRowHidden(QtObjectPtr ptr, int row, QtObjectPtr parent){ + return static_cast(ptr)->isRowHidden(row, *static_cast(parent)); +} + +void QTreeView_KeyboardSearch(QtObjectPtr ptr, char* search){ + static_cast(ptr)->keyboardSearch(QString(search)); +} + +void QTreeView_Reset(QtObjectPtr ptr){ + static_cast(ptr)->reset(); +} + +void QTreeView_ResizeColumnToContents(QtObjectPtr ptr, int column){ + QMetaObject::invokeMethod(static_cast(ptr), "resizeColumnToContents", Q_ARG(int, column)); +} + +void QTreeView_ScrollTo(QtObjectPtr ptr, QtObjectPtr index, int hint){ + static_cast(ptr)->scrollTo(*static_cast(index), static_cast(hint)); +} + +void QTreeView_SelectAll(QtObjectPtr ptr){ + static_cast(ptr)->selectAll(); +} + +void QTreeView_SetColumnHidden(QtObjectPtr ptr, int column, int hide){ + static_cast(ptr)->setColumnHidden(column, hide != 0); +} + +void QTreeView_SetColumnWidth(QtObjectPtr ptr, int column, int width){ + static_cast(ptr)->setColumnWidth(column, width); +} + +void QTreeView_SetExpanded(QtObjectPtr ptr, QtObjectPtr index, int expanded){ + static_cast(ptr)->setExpanded(*static_cast(index), expanded != 0); +} + +void QTreeView_SetFirstColumnSpanned(QtObjectPtr ptr, int row, QtObjectPtr parent, int span){ + static_cast(ptr)->setFirstColumnSpanned(row, *static_cast(parent), span != 0); +} + +void QTreeView_SetHeader(QtObjectPtr ptr, QtObjectPtr header){ + static_cast(ptr)->setHeader(static_cast(header)); +} + +void QTreeView_SetModel(QtObjectPtr ptr, QtObjectPtr model){ + static_cast(ptr)->setModel(static_cast(model)); +} + +void QTreeView_SetRootIndex(QtObjectPtr ptr, QtObjectPtr index){ + static_cast(ptr)->setRootIndex(*static_cast(index)); +} + +void QTreeView_SetRowHidden(QtObjectPtr ptr, int row, QtObjectPtr parent, int hide){ + static_cast(ptr)->setRowHidden(row, *static_cast(parent), hide != 0); +} + +void QTreeView_SetSelectionModel(QtObjectPtr ptr, QtObjectPtr selectionModel){ + static_cast(ptr)->setSelectionModel(static_cast(selectionModel)); +} + +void QTreeView_SetTreePosition(QtObjectPtr ptr, int index){ + static_cast(ptr)->setTreePosition(index); +} + +void QTreeView_ShowColumn(QtObjectPtr ptr, int column){ + QMetaObject::invokeMethod(static_cast(ptr), "showColumn", Q_ARG(int, column)); +} + +void QTreeView_SortByColumn(QtObjectPtr ptr, int column, int order){ + static_cast(ptr)->sortByColumn(column, static_cast(order)); +} + +int QTreeView_TreePosition(QtObjectPtr ptr){ + return static_cast(ptr)->treePosition(); +} + +void QTreeView_DestroyQTreeView(QtObjectPtr ptr){ + static_cast(ptr)->~QTreeView(); +} + diff --git a/widgets/qtreeview.go b/widgets/qtreeview.go new file mode 100755 index 00000000..d6fba70a --- /dev/null +++ b/widgets/qtreeview.go @@ -0,0 +1,458 @@ +package widgets + +//#include "qtreeview.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QTreeView struct { + QAbstractItemView +} + +type QTreeViewITF interface { + QAbstractItemViewITF + QTreeViewPTR() *QTreeView +} + +func PointerFromQTreeView(ptr QTreeViewITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTreeViewPTR().Pointer() + } + return nil +} + +func QTreeViewFromPointer(ptr unsafe.Pointer) *QTreeView { + var n = new(QTreeView) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QTreeView_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QTreeView) QTreeViewPTR() *QTreeView { + return ptr +} + +func (ptr *QTreeView) AllColumnsShowFocus() bool { + if ptr.Pointer() != nil { + return C.QTreeView_AllColumnsShowFocus(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTreeView) AutoExpandDelay() int { + if ptr.Pointer() != nil { + return int(C.QTreeView_AutoExpandDelay(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTreeView) Collapse(index core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QTreeView_Collapse(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index))) + } +} + +func (ptr *QTreeView) Expand(index core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QTreeView_Expand(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index))) + } +} + +func (ptr *QTreeView) ExpandsOnDoubleClick() bool { + if ptr.Pointer() != nil { + return C.QTreeView_ExpandsOnDoubleClick(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTreeView) Indentation() int { + if ptr.Pointer() != nil { + return int(C.QTreeView_Indentation(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTreeView) IsAnimated() bool { + if ptr.Pointer() != nil { + return C.QTreeView_IsAnimated(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTreeView) IsExpanded(index core.QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QTreeView_IsExpanded(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index))) != 0 + } + return false +} + +func (ptr *QTreeView) IsHeaderHidden() bool { + if ptr.Pointer() != nil { + return C.QTreeView_IsHeaderHidden(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTreeView) IsSortingEnabled() bool { + if ptr.Pointer() != nil { + return C.QTreeView_IsSortingEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTreeView) ItemsExpandable() bool { + if ptr.Pointer() != nil { + return C.QTreeView_ItemsExpandable(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTreeView) ResetIndentation() { + if ptr.Pointer() != nil { + C.QTreeView_ResetIndentation(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTreeView) RootIsDecorated() bool { + if ptr.Pointer() != nil { + return C.QTreeView_RootIsDecorated(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTreeView) SetAllColumnsShowFocus(enable bool) { + if ptr.Pointer() != nil { + C.QTreeView_SetAllColumnsShowFocus(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QTreeView) SetAnimated(enable bool) { + if ptr.Pointer() != nil { + C.QTreeView_SetAnimated(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QTreeView) SetAutoExpandDelay(delay int) { + if ptr.Pointer() != nil { + C.QTreeView_SetAutoExpandDelay(C.QtObjectPtr(ptr.Pointer()), C.int(delay)) + } +} + +func (ptr *QTreeView) SetExpandsOnDoubleClick(enable bool) { + if ptr.Pointer() != nil { + C.QTreeView_SetExpandsOnDoubleClick(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QTreeView) SetHeaderHidden(hide bool) { + if ptr.Pointer() != nil { + C.QTreeView_SetHeaderHidden(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(hide))) + } +} + +func (ptr *QTreeView) SetIndentation(i int) { + if ptr.Pointer() != nil { + C.QTreeView_SetIndentation(C.QtObjectPtr(ptr.Pointer()), C.int(i)) + } +} + +func (ptr *QTreeView) SetItemsExpandable(enable bool) { + if ptr.Pointer() != nil { + C.QTreeView_SetItemsExpandable(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QTreeView) SetRootIsDecorated(show bool) { + if ptr.Pointer() != nil { + C.QTreeView_SetRootIsDecorated(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(show))) + } +} + +func (ptr *QTreeView) SetSortingEnabled(enable bool) { + if ptr.Pointer() != nil { + C.QTreeView_SetSortingEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QTreeView) SetUniformRowHeights(uniform bool) { + if ptr.Pointer() != nil { + C.QTreeView_SetUniformRowHeights(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(uniform))) + } +} + +func (ptr *QTreeView) SetWordWrap(on bool) { + if ptr.Pointer() != nil { + C.QTreeView_SetWordWrap(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(on))) + } +} + +func (ptr *QTreeView) UniformRowHeights() bool { + if ptr.Pointer() != nil { + return C.QTreeView_UniformRowHeights(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTreeView) WordWrap() bool { + if ptr.Pointer() != nil { + return C.QTreeView_WordWrap(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func NewQTreeView(parent QWidgetITF) *QTreeView { + return QTreeViewFromPointer(unsafe.Pointer(C.QTreeView_NewQTreeView(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QTreeView) CollapseAll() { + if ptr.Pointer() != nil { + C.QTreeView_CollapseAll(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTreeView) ConnectCollapsed(f func(index core.QModelIndexITF)) { + if ptr.Pointer() != nil { + C.QTreeView_ConnectCollapsed(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "collapsed", f) + } +} + +func (ptr *QTreeView) DisconnectCollapsed() { + if ptr.Pointer() != nil { + C.QTreeView_DisconnectCollapsed(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "collapsed") + } +} + +//export callbackQTreeViewCollapsed +func callbackQTreeViewCollapsed(ptrName *C.char, index unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "collapsed").(func(*core.QModelIndex))(core.QModelIndexFromPointer(index)) +} + +func (ptr *QTreeView) ColumnAt(x int) int { + if ptr.Pointer() != nil { + return int(C.QTreeView_ColumnAt(C.QtObjectPtr(ptr.Pointer()), C.int(x))) + } + return 0 +} + +func (ptr *QTreeView) ColumnViewportPosition(column int) int { + if ptr.Pointer() != nil { + return int(C.QTreeView_ColumnViewportPosition(C.QtObjectPtr(ptr.Pointer()), C.int(column))) + } + return 0 +} + +func (ptr *QTreeView) ColumnWidth(column int) int { + if ptr.Pointer() != nil { + return int(C.QTreeView_ColumnWidth(C.QtObjectPtr(ptr.Pointer()), C.int(column))) + } + return 0 +} + +func (ptr *QTreeView) ExpandAll() { + if ptr.Pointer() != nil { + C.QTreeView_ExpandAll(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTreeView) ExpandToDepth(depth int) { + if ptr.Pointer() != nil { + C.QTreeView_ExpandToDepth(C.QtObjectPtr(ptr.Pointer()), C.int(depth)) + } +} + +func (ptr *QTreeView) ConnectExpanded(f func(index core.QModelIndexITF)) { + if ptr.Pointer() != nil { + C.QTreeView_ConnectExpanded(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "expanded", f) + } +} + +func (ptr *QTreeView) DisconnectExpanded() { + if ptr.Pointer() != nil { + C.QTreeView_DisconnectExpanded(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "expanded") + } +} + +//export callbackQTreeViewExpanded +func callbackQTreeViewExpanded(ptrName *C.char, index unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "expanded").(func(*core.QModelIndex))(core.QModelIndexFromPointer(index)) +} + +func (ptr *QTreeView) Header() *QHeaderView { + if ptr.Pointer() != nil { + return QHeaderViewFromPointer(unsafe.Pointer(C.QTreeView_Header(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTreeView) HideColumn(column int) { + if ptr.Pointer() != nil { + C.QTreeView_HideColumn(C.QtObjectPtr(ptr.Pointer()), C.int(column)) + } +} + +func (ptr *QTreeView) IndexAbove(index core.QModelIndexITF) *core.QModelIndex { + if ptr.Pointer() != nil { + return core.QModelIndexFromPointer(unsafe.Pointer(C.QTreeView_IndexAbove(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index))))) + } + return nil +} + +func (ptr *QTreeView) IndexAt(point core.QPointITF) *core.QModelIndex { + if ptr.Pointer() != nil { + return core.QModelIndexFromPointer(unsafe.Pointer(C.QTreeView_IndexAt(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(point))))) + } + return nil +} + +func (ptr *QTreeView) IndexBelow(index core.QModelIndexITF) *core.QModelIndex { + if ptr.Pointer() != nil { + return core.QModelIndexFromPointer(unsafe.Pointer(C.QTreeView_IndexBelow(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index))))) + } + return nil +} + +func (ptr *QTreeView) IsColumnHidden(column int) bool { + if ptr.Pointer() != nil { + return C.QTreeView_IsColumnHidden(C.QtObjectPtr(ptr.Pointer()), C.int(column)) != 0 + } + return false +} + +func (ptr *QTreeView) IsFirstColumnSpanned(row int, parent core.QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QTreeView_IsFirstColumnSpanned(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.QtObjectPtr(core.PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QTreeView) IsRowHidden(row int, parent core.QModelIndexITF) bool { + if ptr.Pointer() != nil { + return C.QTreeView_IsRowHidden(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.QtObjectPtr(core.PointerFromQModelIndex(parent))) != 0 + } + return false +} + +func (ptr *QTreeView) KeyboardSearch(search string) { + if ptr.Pointer() != nil { + C.QTreeView_KeyboardSearch(C.QtObjectPtr(ptr.Pointer()), C.CString(search)) + } +} + +func (ptr *QTreeView) Reset() { + if ptr.Pointer() != nil { + C.QTreeView_Reset(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTreeView) ResizeColumnToContents(column int) { + if ptr.Pointer() != nil { + C.QTreeView_ResizeColumnToContents(C.QtObjectPtr(ptr.Pointer()), C.int(column)) + } +} + +func (ptr *QTreeView) ScrollTo(index core.QModelIndexITF, hint QAbstractItemView__ScrollHint) { + if ptr.Pointer() != nil { + C.QTreeView_ScrollTo(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index)), C.int(hint)) + } +} + +func (ptr *QTreeView) SelectAll() { + if ptr.Pointer() != nil { + C.QTreeView_SelectAll(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTreeView) SetColumnHidden(column int, hide bool) { + if ptr.Pointer() != nil { + C.QTreeView_SetColumnHidden(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(qt.GoBoolToInt(hide))) + } +} + +func (ptr *QTreeView) SetColumnWidth(column int, width int) { + if ptr.Pointer() != nil { + C.QTreeView_SetColumnWidth(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(width)) + } +} + +func (ptr *QTreeView) SetExpanded(index core.QModelIndexITF, expanded bool) { + if ptr.Pointer() != nil { + C.QTreeView_SetExpanded(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index)), C.int(qt.GoBoolToInt(expanded))) + } +} + +func (ptr *QTreeView) SetFirstColumnSpanned(row int, parent core.QModelIndexITF, span bool) { + if ptr.Pointer() != nil { + C.QTreeView_SetFirstColumnSpanned(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.QtObjectPtr(core.PointerFromQModelIndex(parent)), C.int(qt.GoBoolToInt(span))) + } +} + +func (ptr *QTreeView) SetHeader(header QHeaderViewITF) { + if ptr.Pointer() != nil { + C.QTreeView_SetHeader(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQHeaderView(header))) + } +} + +func (ptr *QTreeView) SetModel(model core.QAbstractItemModelITF) { + if ptr.Pointer() != nil { + C.QTreeView_SetModel(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQAbstractItemModel(model))) + } +} + +func (ptr *QTreeView) SetRootIndex(index core.QModelIndexITF) { + if ptr.Pointer() != nil { + C.QTreeView_SetRootIndex(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQModelIndex(index))) + } +} + +func (ptr *QTreeView) SetRowHidden(row int, parent core.QModelIndexITF, hide bool) { + if ptr.Pointer() != nil { + C.QTreeView_SetRowHidden(C.QtObjectPtr(ptr.Pointer()), C.int(row), C.QtObjectPtr(core.PointerFromQModelIndex(parent)), C.int(qt.GoBoolToInt(hide))) + } +} + +func (ptr *QTreeView) SetSelectionModel(selectionModel core.QItemSelectionModelITF) { + if ptr.Pointer() != nil { + C.QTreeView_SetSelectionModel(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQItemSelectionModel(selectionModel))) + } +} + +func (ptr *QTreeView) SetTreePosition(index int) { + if ptr.Pointer() != nil { + C.QTreeView_SetTreePosition(C.QtObjectPtr(ptr.Pointer()), C.int(index)) + } +} + +func (ptr *QTreeView) ShowColumn(column int) { + if ptr.Pointer() != nil { + C.QTreeView_ShowColumn(C.QtObjectPtr(ptr.Pointer()), C.int(column)) + } +} + +func (ptr *QTreeView) SortByColumn(column int, order core.Qt__SortOrder) { + if ptr.Pointer() != nil { + C.QTreeView_SortByColumn(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(order)) + } +} + +func (ptr *QTreeView) TreePosition() int { + if ptr.Pointer() != nil { + return int(C.QTreeView_TreePosition(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTreeView) DestroyQTreeView() { + if ptr.Pointer() != nil { + C.QTreeView_DestroyQTreeView(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qtreeview.h b/widgets/qtreeview.h new file mode 100755 index 00000000..15789659 --- /dev/null +++ b/widgets/qtreeview.h @@ -0,0 +1,73 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QTreeView_AllColumnsShowFocus(QtObjectPtr ptr); +int QTreeView_AutoExpandDelay(QtObjectPtr ptr); +void QTreeView_Collapse(QtObjectPtr ptr, QtObjectPtr index); +void QTreeView_Expand(QtObjectPtr ptr, QtObjectPtr index); +int QTreeView_ExpandsOnDoubleClick(QtObjectPtr ptr); +int QTreeView_Indentation(QtObjectPtr ptr); +int QTreeView_IsAnimated(QtObjectPtr ptr); +int QTreeView_IsExpanded(QtObjectPtr ptr, QtObjectPtr index); +int QTreeView_IsHeaderHidden(QtObjectPtr ptr); +int QTreeView_IsSortingEnabled(QtObjectPtr ptr); +int QTreeView_ItemsExpandable(QtObjectPtr ptr); +void QTreeView_ResetIndentation(QtObjectPtr ptr); +int QTreeView_RootIsDecorated(QtObjectPtr ptr); +void QTreeView_SetAllColumnsShowFocus(QtObjectPtr ptr, int enable); +void QTreeView_SetAnimated(QtObjectPtr ptr, int enable); +void QTreeView_SetAutoExpandDelay(QtObjectPtr ptr, int delay); +void QTreeView_SetExpandsOnDoubleClick(QtObjectPtr ptr, int enable); +void QTreeView_SetHeaderHidden(QtObjectPtr ptr, int hide); +void QTreeView_SetIndentation(QtObjectPtr ptr, int i); +void QTreeView_SetItemsExpandable(QtObjectPtr ptr, int enable); +void QTreeView_SetRootIsDecorated(QtObjectPtr ptr, int show); +void QTreeView_SetSortingEnabled(QtObjectPtr ptr, int enable); +void QTreeView_SetUniformRowHeights(QtObjectPtr ptr, int uniform); +void QTreeView_SetWordWrap(QtObjectPtr ptr, int on); +int QTreeView_UniformRowHeights(QtObjectPtr ptr); +int QTreeView_WordWrap(QtObjectPtr ptr); +QtObjectPtr QTreeView_NewQTreeView(QtObjectPtr parent); +void QTreeView_CollapseAll(QtObjectPtr ptr); +void QTreeView_ConnectCollapsed(QtObjectPtr ptr); +void QTreeView_DisconnectCollapsed(QtObjectPtr ptr); +int QTreeView_ColumnAt(QtObjectPtr ptr, int x); +int QTreeView_ColumnViewportPosition(QtObjectPtr ptr, int column); +int QTreeView_ColumnWidth(QtObjectPtr ptr, int column); +void QTreeView_ExpandAll(QtObjectPtr ptr); +void QTreeView_ExpandToDepth(QtObjectPtr ptr, int depth); +void QTreeView_ConnectExpanded(QtObjectPtr ptr); +void QTreeView_DisconnectExpanded(QtObjectPtr ptr); +QtObjectPtr QTreeView_Header(QtObjectPtr ptr); +void QTreeView_HideColumn(QtObjectPtr ptr, int column); +QtObjectPtr QTreeView_IndexAbove(QtObjectPtr ptr, QtObjectPtr index); +QtObjectPtr QTreeView_IndexAt(QtObjectPtr ptr, QtObjectPtr point); +QtObjectPtr QTreeView_IndexBelow(QtObjectPtr ptr, QtObjectPtr index); +int QTreeView_IsColumnHidden(QtObjectPtr ptr, int column); +int QTreeView_IsFirstColumnSpanned(QtObjectPtr ptr, int row, QtObjectPtr parent); +int QTreeView_IsRowHidden(QtObjectPtr ptr, int row, QtObjectPtr parent); +void QTreeView_KeyboardSearch(QtObjectPtr ptr, char* search); +void QTreeView_Reset(QtObjectPtr ptr); +void QTreeView_ResizeColumnToContents(QtObjectPtr ptr, int column); +void QTreeView_ScrollTo(QtObjectPtr ptr, QtObjectPtr index, int hint); +void QTreeView_SelectAll(QtObjectPtr ptr); +void QTreeView_SetColumnHidden(QtObjectPtr ptr, int column, int hide); +void QTreeView_SetColumnWidth(QtObjectPtr ptr, int column, int width); +void QTreeView_SetExpanded(QtObjectPtr ptr, QtObjectPtr index, int expanded); +void QTreeView_SetFirstColumnSpanned(QtObjectPtr ptr, int row, QtObjectPtr parent, int span); +void QTreeView_SetHeader(QtObjectPtr ptr, QtObjectPtr header); +void QTreeView_SetModel(QtObjectPtr ptr, QtObjectPtr model); +void QTreeView_SetRootIndex(QtObjectPtr ptr, QtObjectPtr index); +void QTreeView_SetRowHidden(QtObjectPtr ptr, int row, QtObjectPtr parent, int hide); +void QTreeView_SetSelectionModel(QtObjectPtr ptr, QtObjectPtr selectionModel); +void QTreeView_SetTreePosition(QtObjectPtr ptr, int index); +void QTreeView_ShowColumn(QtObjectPtr ptr, int column); +void QTreeView_SortByColumn(QtObjectPtr ptr, int column, int order); +int QTreeView_TreePosition(QtObjectPtr ptr); +void QTreeView_DestroyQTreeView(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qtreewidget.cpp b/widgets/qtreewidget.cpp new file mode 100755 index 00000000..42174a81 --- /dev/null +++ b/widgets/qtreewidget.cpp @@ -0,0 +1,266 @@ +#include "qtreewidget.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTreeWidget: public QTreeWidget { +public: +void Signal_CurrentItemChanged(QTreeWidgetItem * current, QTreeWidgetItem * previous){callbackQTreeWidgetCurrentItemChanged(this->objectName().toUtf8().data(), current, previous);}; +void Signal_ItemActivated(QTreeWidgetItem * item, int column){callbackQTreeWidgetItemActivated(this->objectName().toUtf8().data(), item, column);}; +void Signal_ItemChanged(QTreeWidgetItem * item, int column){callbackQTreeWidgetItemChanged(this->objectName().toUtf8().data(), item, column);}; +void Signal_ItemClicked(QTreeWidgetItem * item, int column){callbackQTreeWidgetItemClicked(this->objectName().toUtf8().data(), item, column);}; +void Signal_ItemCollapsed(QTreeWidgetItem * item){callbackQTreeWidgetItemCollapsed(this->objectName().toUtf8().data(), item);}; +void Signal_ItemDoubleClicked(QTreeWidgetItem * item, int column){callbackQTreeWidgetItemDoubleClicked(this->objectName().toUtf8().data(), item, column);}; +void Signal_ItemEntered(QTreeWidgetItem * item, int column){callbackQTreeWidgetItemEntered(this->objectName().toUtf8().data(), item, column);}; +void Signal_ItemExpanded(QTreeWidgetItem * item){callbackQTreeWidgetItemExpanded(this->objectName().toUtf8().data(), item);}; +void Signal_ItemPressed(QTreeWidgetItem * item, int column){callbackQTreeWidgetItemPressed(this->objectName().toUtf8().data(), item, column);}; +void Signal_ItemSelectionChanged(){callbackQTreeWidgetItemSelectionChanged(this->objectName().toUtf8().data());}; +}; + +int QTreeWidget_ColumnCount(QtObjectPtr ptr){ + return static_cast(ptr)->columnCount(); +} + +void QTreeWidget_SetColumnCount(QtObjectPtr ptr, int columns){ + static_cast(ptr)->setColumnCount(columns); +} + +int QTreeWidget_TopLevelItemCount(QtObjectPtr ptr){ + return static_cast(ptr)->topLevelItemCount(); +} + +QtObjectPtr QTreeWidget_NewQTreeWidget(QtObjectPtr parent){ + return new QTreeWidget(static_cast(parent)); +} + +void QTreeWidget_AddTopLevelItem(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->addTopLevelItem(static_cast(item)); +} + +void QTreeWidget_Clear(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "clear"); +} + +void QTreeWidget_ClosePersistentEditor(QtObjectPtr ptr, QtObjectPtr item, int column){ + static_cast(ptr)->closePersistentEditor(static_cast(item), column); +} + +void QTreeWidget_CollapseItem(QtObjectPtr ptr, QtObjectPtr item){ + QMetaObject::invokeMethod(static_cast(ptr), "collapseItem", Q_ARG(QTreeWidgetItem*, static_cast(item))); +} + +int QTreeWidget_CurrentColumn(QtObjectPtr ptr){ + return static_cast(ptr)->currentColumn(); +} + +QtObjectPtr QTreeWidget_CurrentItem(QtObjectPtr ptr){ + return static_cast(ptr)->currentItem(); +} + +void QTreeWidget_ConnectCurrentItemChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTreeWidget::currentItemChanged), static_cast(ptr), static_cast(&MyQTreeWidget::Signal_CurrentItemChanged));; +} + +void QTreeWidget_DisconnectCurrentItemChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTreeWidget::currentItemChanged), static_cast(ptr), static_cast(&MyQTreeWidget::Signal_CurrentItemChanged));; +} + +void QTreeWidget_EditItem(QtObjectPtr ptr, QtObjectPtr item, int column){ + static_cast(ptr)->editItem(static_cast(item), column); +} + +void QTreeWidget_ExpandItem(QtObjectPtr ptr, QtObjectPtr item){ + QMetaObject::invokeMethod(static_cast(ptr), "expandItem", Q_ARG(QTreeWidgetItem*, static_cast(item))); +} + +QtObjectPtr QTreeWidget_HeaderItem(QtObjectPtr ptr){ + return static_cast(ptr)->headerItem(); +} + +int QTreeWidget_IndexOfTopLevelItem(QtObjectPtr ptr, QtObjectPtr item){ + return static_cast(ptr)->indexOfTopLevelItem(static_cast(item)); +} + +void QTreeWidget_InsertTopLevelItem(QtObjectPtr ptr, int index, QtObjectPtr item){ + static_cast(ptr)->insertTopLevelItem(index, static_cast(item)); +} + +QtObjectPtr QTreeWidget_InvisibleRootItem(QtObjectPtr ptr){ + return static_cast(ptr)->invisibleRootItem(); +} + +int QTreeWidget_IsFirstItemColumnSpanned(QtObjectPtr ptr, QtObjectPtr item){ + return static_cast(ptr)->isFirstItemColumnSpanned(static_cast(item)); +} + +QtObjectPtr QTreeWidget_ItemAbove(QtObjectPtr ptr, QtObjectPtr item){ + return static_cast(ptr)->itemAbove(static_cast(item)); +} + +void QTreeWidget_ConnectItemActivated(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTreeWidget::itemActivated), static_cast(ptr), static_cast(&MyQTreeWidget::Signal_ItemActivated));; +} + +void QTreeWidget_DisconnectItemActivated(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTreeWidget::itemActivated), static_cast(ptr), static_cast(&MyQTreeWidget::Signal_ItemActivated));; +} + +QtObjectPtr QTreeWidget_ItemAt(QtObjectPtr ptr, QtObjectPtr p){ + return static_cast(ptr)->itemAt(*static_cast(p)); +} + +QtObjectPtr QTreeWidget_ItemAt2(QtObjectPtr ptr, int x, int y){ + return static_cast(ptr)->itemAt(x, y); +} + +QtObjectPtr QTreeWidget_ItemBelow(QtObjectPtr ptr, QtObjectPtr item){ + return static_cast(ptr)->itemBelow(static_cast(item)); +} + +void QTreeWidget_ConnectItemChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTreeWidget::itemChanged), static_cast(ptr), static_cast(&MyQTreeWidget::Signal_ItemChanged));; +} + +void QTreeWidget_DisconnectItemChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTreeWidget::itemChanged), static_cast(ptr), static_cast(&MyQTreeWidget::Signal_ItemChanged));; +} + +void QTreeWidget_ConnectItemClicked(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTreeWidget::itemClicked), static_cast(ptr), static_cast(&MyQTreeWidget::Signal_ItemClicked));; +} + +void QTreeWidget_DisconnectItemClicked(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTreeWidget::itemClicked), static_cast(ptr), static_cast(&MyQTreeWidget::Signal_ItemClicked));; +} + +void QTreeWidget_ConnectItemCollapsed(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTreeWidget::itemCollapsed), static_cast(ptr), static_cast(&MyQTreeWidget::Signal_ItemCollapsed));; +} + +void QTreeWidget_DisconnectItemCollapsed(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTreeWidget::itemCollapsed), static_cast(ptr), static_cast(&MyQTreeWidget::Signal_ItemCollapsed));; +} + +void QTreeWidget_ConnectItemDoubleClicked(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTreeWidget::itemDoubleClicked), static_cast(ptr), static_cast(&MyQTreeWidget::Signal_ItemDoubleClicked));; +} + +void QTreeWidget_DisconnectItemDoubleClicked(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTreeWidget::itemDoubleClicked), static_cast(ptr), static_cast(&MyQTreeWidget::Signal_ItemDoubleClicked));; +} + +void QTreeWidget_ConnectItemEntered(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTreeWidget::itemEntered), static_cast(ptr), static_cast(&MyQTreeWidget::Signal_ItemEntered));; +} + +void QTreeWidget_DisconnectItemEntered(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTreeWidget::itemEntered), static_cast(ptr), static_cast(&MyQTreeWidget::Signal_ItemEntered));; +} + +void QTreeWidget_ConnectItemExpanded(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTreeWidget::itemExpanded), static_cast(ptr), static_cast(&MyQTreeWidget::Signal_ItemExpanded));; +} + +void QTreeWidget_DisconnectItemExpanded(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTreeWidget::itemExpanded), static_cast(ptr), static_cast(&MyQTreeWidget::Signal_ItemExpanded));; +} + +void QTreeWidget_ConnectItemPressed(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTreeWidget::itemPressed), static_cast(ptr), static_cast(&MyQTreeWidget::Signal_ItemPressed));; +} + +void QTreeWidget_DisconnectItemPressed(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTreeWidget::itemPressed), static_cast(ptr), static_cast(&MyQTreeWidget::Signal_ItemPressed));; +} + +void QTreeWidget_ConnectItemSelectionChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QTreeWidget::itemSelectionChanged), static_cast(ptr), static_cast(&MyQTreeWidget::Signal_ItemSelectionChanged));; +} + +void QTreeWidget_DisconnectItemSelectionChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QTreeWidget::itemSelectionChanged), static_cast(ptr), static_cast(&MyQTreeWidget::Signal_ItemSelectionChanged));; +} + +QtObjectPtr QTreeWidget_ItemWidget(QtObjectPtr ptr, QtObjectPtr item, int column){ + return static_cast(ptr)->itemWidget(static_cast(item), column); +} + +void QTreeWidget_OpenPersistentEditor(QtObjectPtr ptr, QtObjectPtr item, int column){ + static_cast(ptr)->openPersistentEditor(static_cast(item), column); +} + +void QTreeWidget_RemoveItemWidget(QtObjectPtr ptr, QtObjectPtr item, int column){ + static_cast(ptr)->removeItemWidget(static_cast(item), column); +} + +void QTreeWidget_ScrollToItem(QtObjectPtr ptr, QtObjectPtr item, int hint){ + QMetaObject::invokeMethod(static_cast(ptr), "scrollToItem", Q_ARG(QTreeWidgetItem*, static_cast(item)), Q_ARG(QAbstractItemView::ScrollHint, static_cast(hint))); +} + +void QTreeWidget_SetCurrentItem(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->setCurrentItem(static_cast(item)); +} + +void QTreeWidget_SetCurrentItem2(QtObjectPtr ptr, QtObjectPtr item, int column){ + static_cast(ptr)->setCurrentItem(static_cast(item), column); +} + +void QTreeWidget_SetCurrentItem3(QtObjectPtr ptr, QtObjectPtr item, int column, int command){ + static_cast(ptr)->setCurrentItem(static_cast(item), column, static_cast(command)); +} + +void QTreeWidget_SetFirstItemColumnSpanned(QtObjectPtr ptr, QtObjectPtr item, int span){ + static_cast(ptr)->setFirstItemColumnSpanned(static_cast(item), span != 0); +} + +void QTreeWidget_SetHeaderItem(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->setHeaderItem(static_cast(item)); +} + +void QTreeWidget_SetHeaderLabel(QtObjectPtr ptr, char* label){ + static_cast(ptr)->setHeaderLabel(QString(label)); +} + +void QTreeWidget_SetHeaderLabels(QtObjectPtr ptr, char* labels){ + static_cast(ptr)->setHeaderLabels(QString(labels).split("|", QString::SkipEmptyParts)); +} + +void QTreeWidget_SetItemWidget(QtObjectPtr ptr, QtObjectPtr item, int column, QtObjectPtr widget){ + static_cast(ptr)->setItemWidget(static_cast(item), column, static_cast(widget)); +} + +void QTreeWidget_SetSelectionModel(QtObjectPtr ptr, QtObjectPtr selectionModel){ + static_cast(ptr)->setSelectionModel(static_cast(selectionModel)); +} + +int QTreeWidget_SortColumn(QtObjectPtr ptr){ + return static_cast(ptr)->sortColumn(); +} + +void QTreeWidget_SortItems(QtObjectPtr ptr, int column, int order){ + static_cast(ptr)->sortItems(column, static_cast(order)); +} + +QtObjectPtr QTreeWidget_TakeTopLevelItem(QtObjectPtr ptr, int index){ + return static_cast(ptr)->takeTopLevelItem(index); +} + +QtObjectPtr QTreeWidget_TopLevelItem(QtObjectPtr ptr, int index){ + return static_cast(ptr)->topLevelItem(index); +} + +void QTreeWidget_DestroyQTreeWidget(QtObjectPtr ptr){ + static_cast(ptr)->~QTreeWidget(); +} + diff --git a/widgets/qtreewidget.go b/widgets/qtreewidget.go new file mode 100755 index 00000000..cf550460 --- /dev/null +++ b/widgets/qtreewidget.go @@ -0,0 +1,478 @@ +package widgets + +//#include "qtreewidget.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "strings" + "unsafe" +) + +type QTreeWidget struct { + QTreeView +} + +type QTreeWidgetITF interface { + QTreeViewITF + QTreeWidgetPTR() *QTreeWidget +} + +func PointerFromQTreeWidget(ptr QTreeWidgetITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTreeWidgetPTR().Pointer() + } + return nil +} + +func QTreeWidgetFromPointer(ptr unsafe.Pointer) *QTreeWidget { + var n = new(QTreeWidget) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QTreeWidget_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QTreeWidget) QTreeWidgetPTR() *QTreeWidget { + return ptr +} + +func (ptr *QTreeWidget) ColumnCount() int { + if ptr.Pointer() != nil { + return int(C.QTreeWidget_ColumnCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTreeWidget) SetColumnCount(columns int) { + if ptr.Pointer() != nil { + C.QTreeWidget_SetColumnCount(C.QtObjectPtr(ptr.Pointer()), C.int(columns)) + } +} + +func (ptr *QTreeWidget) TopLevelItemCount() int { + if ptr.Pointer() != nil { + return int(C.QTreeWidget_TopLevelItemCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQTreeWidget(parent QWidgetITF) *QTreeWidget { + return QTreeWidgetFromPointer(unsafe.Pointer(C.QTreeWidget_NewQTreeWidget(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QTreeWidget) AddTopLevelItem(item QTreeWidgetItemITF) { + if ptr.Pointer() != nil { + C.QTreeWidget_AddTopLevelItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTreeWidgetItem(item))) + } +} + +func (ptr *QTreeWidget) Clear() { + if ptr.Pointer() != nil { + C.QTreeWidget_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QTreeWidget) ClosePersistentEditor(item QTreeWidgetItemITF, column int) { + if ptr.Pointer() != nil { + C.QTreeWidget_ClosePersistentEditor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTreeWidgetItem(item)), C.int(column)) + } +} + +func (ptr *QTreeWidget) CollapseItem(item QTreeWidgetItemITF) { + if ptr.Pointer() != nil { + C.QTreeWidget_CollapseItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTreeWidgetItem(item))) + } +} + +func (ptr *QTreeWidget) CurrentColumn() int { + if ptr.Pointer() != nil { + return int(C.QTreeWidget_CurrentColumn(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTreeWidget) CurrentItem() *QTreeWidgetItem { + if ptr.Pointer() != nil { + return QTreeWidgetItemFromPointer(unsafe.Pointer(C.QTreeWidget_CurrentItem(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTreeWidget) ConnectCurrentItemChanged(f func(current QTreeWidgetItemITF, previous QTreeWidgetItemITF)) { + if ptr.Pointer() != nil { + C.QTreeWidget_ConnectCurrentItemChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "currentItemChanged", f) + } +} + +func (ptr *QTreeWidget) DisconnectCurrentItemChanged() { + if ptr.Pointer() != nil { + C.QTreeWidget_DisconnectCurrentItemChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "currentItemChanged") + } +} + +//export callbackQTreeWidgetCurrentItemChanged +func callbackQTreeWidgetCurrentItemChanged(ptrName *C.char, current unsafe.Pointer, previous unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "currentItemChanged").(func(*QTreeWidgetItem, *QTreeWidgetItem))(QTreeWidgetItemFromPointer(current), QTreeWidgetItemFromPointer(previous)) +} + +func (ptr *QTreeWidget) EditItem(item QTreeWidgetItemITF, column int) { + if ptr.Pointer() != nil { + C.QTreeWidget_EditItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTreeWidgetItem(item)), C.int(column)) + } +} + +func (ptr *QTreeWidget) ExpandItem(item QTreeWidgetItemITF) { + if ptr.Pointer() != nil { + C.QTreeWidget_ExpandItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTreeWidgetItem(item))) + } +} + +func (ptr *QTreeWidget) HeaderItem() *QTreeWidgetItem { + if ptr.Pointer() != nil { + return QTreeWidgetItemFromPointer(unsafe.Pointer(C.QTreeWidget_HeaderItem(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTreeWidget) IndexOfTopLevelItem(item QTreeWidgetItemITF) int { + if ptr.Pointer() != nil { + return int(C.QTreeWidget_IndexOfTopLevelItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTreeWidgetItem(item)))) + } + return 0 +} + +func (ptr *QTreeWidget) InsertTopLevelItem(index int, item QTreeWidgetItemITF) { + if ptr.Pointer() != nil { + C.QTreeWidget_InsertTopLevelItem(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.QtObjectPtr(PointerFromQTreeWidgetItem(item))) + } +} + +func (ptr *QTreeWidget) InvisibleRootItem() *QTreeWidgetItem { + if ptr.Pointer() != nil { + return QTreeWidgetItemFromPointer(unsafe.Pointer(C.QTreeWidget_InvisibleRootItem(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTreeWidget) IsFirstItemColumnSpanned(item QTreeWidgetItemITF) bool { + if ptr.Pointer() != nil { + return C.QTreeWidget_IsFirstItemColumnSpanned(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTreeWidgetItem(item))) != 0 + } + return false +} + +func (ptr *QTreeWidget) ItemAbove(item QTreeWidgetItemITF) *QTreeWidgetItem { + if ptr.Pointer() != nil { + return QTreeWidgetItemFromPointer(unsafe.Pointer(C.QTreeWidget_ItemAbove(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTreeWidgetItem(item))))) + } + return nil +} + +func (ptr *QTreeWidget) ConnectItemActivated(f func(item QTreeWidgetItemITF, column int)) { + if ptr.Pointer() != nil { + C.QTreeWidget_ConnectItemActivated(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "itemActivated", f) + } +} + +func (ptr *QTreeWidget) DisconnectItemActivated() { + if ptr.Pointer() != nil { + C.QTreeWidget_DisconnectItemActivated(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "itemActivated") + } +} + +//export callbackQTreeWidgetItemActivated +func callbackQTreeWidgetItemActivated(ptrName *C.char, item unsafe.Pointer, column C.int) { + qt.GetSignal(C.GoString(ptrName), "itemActivated").(func(*QTreeWidgetItem, int))(QTreeWidgetItemFromPointer(item), int(column)) +} + +func (ptr *QTreeWidget) ItemAt(p core.QPointITF) *QTreeWidgetItem { + if ptr.Pointer() != nil { + return QTreeWidgetItemFromPointer(unsafe.Pointer(C.QTreeWidget_ItemAt(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(p))))) + } + return nil +} + +func (ptr *QTreeWidget) ItemAt2(x int, y int) *QTreeWidgetItem { + if ptr.Pointer() != nil { + return QTreeWidgetItemFromPointer(unsafe.Pointer(C.QTreeWidget_ItemAt2(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y)))) + } + return nil +} + +func (ptr *QTreeWidget) ItemBelow(item QTreeWidgetItemITF) *QTreeWidgetItem { + if ptr.Pointer() != nil { + return QTreeWidgetItemFromPointer(unsafe.Pointer(C.QTreeWidget_ItemBelow(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTreeWidgetItem(item))))) + } + return nil +} + +func (ptr *QTreeWidget) ConnectItemChanged(f func(item QTreeWidgetItemITF, column int)) { + if ptr.Pointer() != nil { + C.QTreeWidget_ConnectItemChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "itemChanged", f) + } +} + +func (ptr *QTreeWidget) DisconnectItemChanged() { + if ptr.Pointer() != nil { + C.QTreeWidget_DisconnectItemChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "itemChanged") + } +} + +//export callbackQTreeWidgetItemChanged +func callbackQTreeWidgetItemChanged(ptrName *C.char, item unsafe.Pointer, column C.int) { + qt.GetSignal(C.GoString(ptrName), "itemChanged").(func(*QTreeWidgetItem, int))(QTreeWidgetItemFromPointer(item), int(column)) +} + +func (ptr *QTreeWidget) ConnectItemClicked(f func(item QTreeWidgetItemITF, column int)) { + if ptr.Pointer() != nil { + C.QTreeWidget_ConnectItemClicked(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "itemClicked", f) + } +} + +func (ptr *QTreeWidget) DisconnectItemClicked() { + if ptr.Pointer() != nil { + C.QTreeWidget_DisconnectItemClicked(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "itemClicked") + } +} + +//export callbackQTreeWidgetItemClicked +func callbackQTreeWidgetItemClicked(ptrName *C.char, item unsafe.Pointer, column C.int) { + qt.GetSignal(C.GoString(ptrName), "itemClicked").(func(*QTreeWidgetItem, int))(QTreeWidgetItemFromPointer(item), int(column)) +} + +func (ptr *QTreeWidget) ConnectItemCollapsed(f func(item QTreeWidgetItemITF)) { + if ptr.Pointer() != nil { + C.QTreeWidget_ConnectItemCollapsed(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "itemCollapsed", f) + } +} + +func (ptr *QTreeWidget) DisconnectItemCollapsed() { + if ptr.Pointer() != nil { + C.QTreeWidget_DisconnectItemCollapsed(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "itemCollapsed") + } +} + +//export callbackQTreeWidgetItemCollapsed +func callbackQTreeWidgetItemCollapsed(ptrName *C.char, item unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "itemCollapsed").(func(*QTreeWidgetItem))(QTreeWidgetItemFromPointer(item)) +} + +func (ptr *QTreeWidget) ConnectItemDoubleClicked(f func(item QTreeWidgetItemITF, column int)) { + if ptr.Pointer() != nil { + C.QTreeWidget_ConnectItemDoubleClicked(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "itemDoubleClicked", f) + } +} + +func (ptr *QTreeWidget) DisconnectItemDoubleClicked() { + if ptr.Pointer() != nil { + C.QTreeWidget_DisconnectItemDoubleClicked(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "itemDoubleClicked") + } +} + +//export callbackQTreeWidgetItemDoubleClicked +func callbackQTreeWidgetItemDoubleClicked(ptrName *C.char, item unsafe.Pointer, column C.int) { + qt.GetSignal(C.GoString(ptrName), "itemDoubleClicked").(func(*QTreeWidgetItem, int))(QTreeWidgetItemFromPointer(item), int(column)) +} + +func (ptr *QTreeWidget) ConnectItemEntered(f func(item QTreeWidgetItemITF, column int)) { + if ptr.Pointer() != nil { + C.QTreeWidget_ConnectItemEntered(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "itemEntered", f) + } +} + +func (ptr *QTreeWidget) DisconnectItemEntered() { + if ptr.Pointer() != nil { + C.QTreeWidget_DisconnectItemEntered(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "itemEntered") + } +} + +//export callbackQTreeWidgetItemEntered +func callbackQTreeWidgetItemEntered(ptrName *C.char, item unsafe.Pointer, column C.int) { + qt.GetSignal(C.GoString(ptrName), "itemEntered").(func(*QTreeWidgetItem, int))(QTreeWidgetItemFromPointer(item), int(column)) +} + +func (ptr *QTreeWidget) ConnectItemExpanded(f func(item QTreeWidgetItemITF)) { + if ptr.Pointer() != nil { + C.QTreeWidget_ConnectItemExpanded(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "itemExpanded", f) + } +} + +func (ptr *QTreeWidget) DisconnectItemExpanded() { + if ptr.Pointer() != nil { + C.QTreeWidget_DisconnectItemExpanded(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "itemExpanded") + } +} + +//export callbackQTreeWidgetItemExpanded +func callbackQTreeWidgetItemExpanded(ptrName *C.char, item unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "itemExpanded").(func(*QTreeWidgetItem))(QTreeWidgetItemFromPointer(item)) +} + +func (ptr *QTreeWidget) ConnectItemPressed(f func(item QTreeWidgetItemITF, column int)) { + if ptr.Pointer() != nil { + C.QTreeWidget_ConnectItemPressed(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "itemPressed", f) + } +} + +func (ptr *QTreeWidget) DisconnectItemPressed() { + if ptr.Pointer() != nil { + C.QTreeWidget_DisconnectItemPressed(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "itemPressed") + } +} + +//export callbackQTreeWidgetItemPressed +func callbackQTreeWidgetItemPressed(ptrName *C.char, item unsafe.Pointer, column C.int) { + qt.GetSignal(C.GoString(ptrName), "itemPressed").(func(*QTreeWidgetItem, int))(QTreeWidgetItemFromPointer(item), int(column)) +} + +func (ptr *QTreeWidget) ConnectItemSelectionChanged(f func()) { + if ptr.Pointer() != nil { + C.QTreeWidget_ConnectItemSelectionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "itemSelectionChanged", f) + } +} + +func (ptr *QTreeWidget) DisconnectItemSelectionChanged() { + if ptr.Pointer() != nil { + C.QTreeWidget_DisconnectItemSelectionChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "itemSelectionChanged") + } +} + +//export callbackQTreeWidgetItemSelectionChanged +func callbackQTreeWidgetItemSelectionChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "itemSelectionChanged").(func())() +} + +func (ptr *QTreeWidget) ItemWidget(item QTreeWidgetItemITF, column int) *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QTreeWidget_ItemWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTreeWidgetItem(item)), C.int(column)))) + } + return nil +} + +func (ptr *QTreeWidget) OpenPersistentEditor(item QTreeWidgetItemITF, column int) { + if ptr.Pointer() != nil { + C.QTreeWidget_OpenPersistentEditor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTreeWidgetItem(item)), C.int(column)) + } +} + +func (ptr *QTreeWidget) RemoveItemWidget(item QTreeWidgetItemITF, column int) { + if ptr.Pointer() != nil { + C.QTreeWidget_RemoveItemWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTreeWidgetItem(item)), C.int(column)) + } +} + +func (ptr *QTreeWidget) ScrollToItem(item QTreeWidgetItemITF, hint QAbstractItemView__ScrollHint) { + if ptr.Pointer() != nil { + C.QTreeWidget_ScrollToItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTreeWidgetItem(item)), C.int(hint)) + } +} + +func (ptr *QTreeWidget) SetCurrentItem(item QTreeWidgetItemITF) { + if ptr.Pointer() != nil { + C.QTreeWidget_SetCurrentItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTreeWidgetItem(item))) + } +} + +func (ptr *QTreeWidget) SetCurrentItem2(item QTreeWidgetItemITF, column int) { + if ptr.Pointer() != nil { + C.QTreeWidget_SetCurrentItem2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTreeWidgetItem(item)), C.int(column)) + } +} + +func (ptr *QTreeWidget) SetCurrentItem3(item QTreeWidgetItemITF, column int, command core.QItemSelectionModel__SelectionFlag) { + if ptr.Pointer() != nil { + C.QTreeWidget_SetCurrentItem3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTreeWidgetItem(item)), C.int(column), C.int(command)) + } +} + +func (ptr *QTreeWidget) SetFirstItemColumnSpanned(item QTreeWidgetItemITF, span bool) { + if ptr.Pointer() != nil { + C.QTreeWidget_SetFirstItemColumnSpanned(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTreeWidgetItem(item)), C.int(qt.GoBoolToInt(span))) + } +} + +func (ptr *QTreeWidget) SetHeaderItem(item QTreeWidgetItemITF) { + if ptr.Pointer() != nil { + C.QTreeWidget_SetHeaderItem(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTreeWidgetItem(item))) + } +} + +func (ptr *QTreeWidget) SetHeaderLabel(label string) { + if ptr.Pointer() != nil { + C.QTreeWidget_SetHeaderLabel(C.QtObjectPtr(ptr.Pointer()), C.CString(label)) + } +} + +func (ptr *QTreeWidget) SetHeaderLabels(labels []string) { + if ptr.Pointer() != nil { + C.QTreeWidget_SetHeaderLabels(C.QtObjectPtr(ptr.Pointer()), C.CString(strings.Join(labels, "|"))) + } +} + +func (ptr *QTreeWidget) SetItemWidget(item QTreeWidgetItemITF, column int, widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QTreeWidget_SetItemWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTreeWidgetItem(item)), C.int(column), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QTreeWidget) SetSelectionModel(selectionModel core.QItemSelectionModelITF) { + if ptr.Pointer() != nil { + C.QTreeWidget_SetSelectionModel(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQItemSelectionModel(selectionModel))) + } +} + +func (ptr *QTreeWidget) SortColumn() int { + if ptr.Pointer() != nil { + return int(C.QTreeWidget_SortColumn(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTreeWidget) SortItems(column int, order core.Qt__SortOrder) { + if ptr.Pointer() != nil { + C.QTreeWidget_SortItems(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(order)) + } +} + +func (ptr *QTreeWidget) TakeTopLevelItem(index int) *QTreeWidgetItem { + if ptr.Pointer() != nil { + return QTreeWidgetItemFromPointer(unsafe.Pointer(C.QTreeWidget_TakeTopLevelItem(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QTreeWidget) TopLevelItem(index int) *QTreeWidgetItem { + if ptr.Pointer() != nil { + return QTreeWidgetItemFromPointer(unsafe.Pointer(C.QTreeWidget_TopLevelItem(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QTreeWidget) DestroyQTreeWidget() { + if ptr.Pointer() != nil { + C.QTreeWidget_DestroyQTreeWidget(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qtreewidget.h b/widgets/qtreewidget.h new file mode 100755 index 00000000..f67215a4 --- /dev/null +++ b/widgets/qtreewidget.h @@ -0,0 +1,68 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QTreeWidget_ColumnCount(QtObjectPtr ptr); +void QTreeWidget_SetColumnCount(QtObjectPtr ptr, int columns); +int QTreeWidget_TopLevelItemCount(QtObjectPtr ptr); +QtObjectPtr QTreeWidget_NewQTreeWidget(QtObjectPtr parent); +void QTreeWidget_AddTopLevelItem(QtObjectPtr ptr, QtObjectPtr item); +void QTreeWidget_Clear(QtObjectPtr ptr); +void QTreeWidget_ClosePersistentEditor(QtObjectPtr ptr, QtObjectPtr item, int column); +void QTreeWidget_CollapseItem(QtObjectPtr ptr, QtObjectPtr item); +int QTreeWidget_CurrentColumn(QtObjectPtr ptr); +QtObjectPtr QTreeWidget_CurrentItem(QtObjectPtr ptr); +void QTreeWidget_ConnectCurrentItemChanged(QtObjectPtr ptr); +void QTreeWidget_DisconnectCurrentItemChanged(QtObjectPtr ptr); +void QTreeWidget_EditItem(QtObjectPtr ptr, QtObjectPtr item, int column); +void QTreeWidget_ExpandItem(QtObjectPtr ptr, QtObjectPtr item); +QtObjectPtr QTreeWidget_HeaderItem(QtObjectPtr ptr); +int QTreeWidget_IndexOfTopLevelItem(QtObjectPtr ptr, QtObjectPtr item); +void QTreeWidget_InsertTopLevelItem(QtObjectPtr ptr, int index, QtObjectPtr item); +QtObjectPtr QTreeWidget_InvisibleRootItem(QtObjectPtr ptr); +int QTreeWidget_IsFirstItemColumnSpanned(QtObjectPtr ptr, QtObjectPtr item); +QtObjectPtr QTreeWidget_ItemAbove(QtObjectPtr ptr, QtObjectPtr item); +void QTreeWidget_ConnectItemActivated(QtObjectPtr ptr); +void QTreeWidget_DisconnectItemActivated(QtObjectPtr ptr); +QtObjectPtr QTreeWidget_ItemAt(QtObjectPtr ptr, QtObjectPtr p); +QtObjectPtr QTreeWidget_ItemAt2(QtObjectPtr ptr, int x, int y); +QtObjectPtr QTreeWidget_ItemBelow(QtObjectPtr ptr, QtObjectPtr item); +void QTreeWidget_ConnectItemChanged(QtObjectPtr ptr); +void QTreeWidget_DisconnectItemChanged(QtObjectPtr ptr); +void QTreeWidget_ConnectItemClicked(QtObjectPtr ptr); +void QTreeWidget_DisconnectItemClicked(QtObjectPtr ptr); +void QTreeWidget_ConnectItemCollapsed(QtObjectPtr ptr); +void QTreeWidget_DisconnectItemCollapsed(QtObjectPtr ptr); +void QTreeWidget_ConnectItemDoubleClicked(QtObjectPtr ptr); +void QTreeWidget_DisconnectItemDoubleClicked(QtObjectPtr ptr); +void QTreeWidget_ConnectItemEntered(QtObjectPtr ptr); +void QTreeWidget_DisconnectItemEntered(QtObjectPtr ptr); +void QTreeWidget_ConnectItemExpanded(QtObjectPtr ptr); +void QTreeWidget_DisconnectItemExpanded(QtObjectPtr ptr); +void QTreeWidget_ConnectItemPressed(QtObjectPtr ptr); +void QTreeWidget_DisconnectItemPressed(QtObjectPtr ptr); +void QTreeWidget_ConnectItemSelectionChanged(QtObjectPtr ptr); +void QTreeWidget_DisconnectItemSelectionChanged(QtObjectPtr ptr); +QtObjectPtr QTreeWidget_ItemWidget(QtObjectPtr ptr, QtObjectPtr item, int column); +void QTreeWidget_OpenPersistentEditor(QtObjectPtr ptr, QtObjectPtr item, int column); +void QTreeWidget_RemoveItemWidget(QtObjectPtr ptr, QtObjectPtr item, int column); +void QTreeWidget_ScrollToItem(QtObjectPtr ptr, QtObjectPtr item, int hint); +void QTreeWidget_SetCurrentItem(QtObjectPtr ptr, QtObjectPtr item); +void QTreeWidget_SetCurrentItem2(QtObjectPtr ptr, QtObjectPtr item, int column); +void QTreeWidget_SetCurrentItem3(QtObjectPtr ptr, QtObjectPtr item, int column, int command); +void QTreeWidget_SetFirstItemColumnSpanned(QtObjectPtr ptr, QtObjectPtr item, int span); +void QTreeWidget_SetHeaderItem(QtObjectPtr ptr, QtObjectPtr item); +void QTreeWidget_SetHeaderLabel(QtObjectPtr ptr, char* label); +void QTreeWidget_SetHeaderLabels(QtObjectPtr ptr, char* labels); +void QTreeWidget_SetItemWidget(QtObjectPtr ptr, QtObjectPtr item, int column, QtObjectPtr widget); +void QTreeWidget_SetSelectionModel(QtObjectPtr ptr, QtObjectPtr selectionModel); +int QTreeWidget_SortColumn(QtObjectPtr ptr); +void QTreeWidget_SortItems(QtObjectPtr ptr, int column, int order); +QtObjectPtr QTreeWidget_TakeTopLevelItem(QtObjectPtr ptr, int index); +QtObjectPtr QTreeWidget_TopLevelItem(QtObjectPtr ptr, int index); +void QTreeWidget_DestroyQTreeWidget(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qtreewidgetitem.cpp b/widgets/qtreewidgetitem.cpp new file mode 100755 index 00000000..d1e416e8 --- /dev/null +++ b/widgets/qtreewidgetitem.cpp @@ -0,0 +1,250 @@ +#include "qtreewidgetitem.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQTreeWidgetItem: public QTreeWidgetItem { +public: +}; + +QtObjectPtr QTreeWidgetItem_NewQTreeWidgetItem5(QtObjectPtr parent, QtObjectPtr preceding, int ty){ + return new QTreeWidgetItem(static_cast(parent), static_cast(preceding), ty); +} + +QtObjectPtr QTreeWidgetItem_NewQTreeWidgetItem4(QtObjectPtr parent, char* strin, int ty){ + return new QTreeWidgetItem(static_cast(parent), QString(strin).split("|", QString::SkipEmptyParts), ty); +} + +QtObjectPtr QTreeWidgetItem_NewQTreeWidgetItem3(QtObjectPtr parent, int ty){ + return new QTreeWidgetItem(static_cast(parent), ty); +} + +QtObjectPtr QTreeWidgetItem_NewQTreeWidgetItem8(QtObjectPtr parent, QtObjectPtr preceding, int ty){ + return new QTreeWidgetItem(static_cast(parent), static_cast(preceding), ty); +} + +int QTreeWidgetItem_Flags(QtObjectPtr ptr){ + return static_cast(ptr)->flags(); +} + +void QTreeWidgetItem_SetFlags(QtObjectPtr ptr, int flags){ + static_cast(ptr)->setFlags(static_cast(flags)); +} + +QtObjectPtr QTreeWidgetItem_NewQTreeWidgetItem7(QtObjectPtr parent, char* strin, int ty){ + return new QTreeWidgetItem(static_cast(parent), QString(strin).split("|", QString::SkipEmptyParts), ty); +} + +QtObjectPtr QTreeWidgetItem_NewQTreeWidgetItem6(QtObjectPtr parent, int ty){ + return new QTreeWidgetItem(static_cast(parent), ty); +} + +QtObjectPtr QTreeWidgetItem_NewQTreeWidgetItem2(char* strin, int ty){ + return new QTreeWidgetItem(QString(strin).split("|", QString::SkipEmptyParts), ty); +} + +QtObjectPtr QTreeWidgetItem_NewQTreeWidgetItem9(QtObjectPtr other){ + return new QTreeWidgetItem(*static_cast(other)); +} + +QtObjectPtr QTreeWidgetItem_NewQTreeWidgetItem(int ty){ + return new QTreeWidgetItem(ty); +} + +void QTreeWidgetItem_AddChild(QtObjectPtr ptr, QtObjectPtr child){ + static_cast(ptr)->addChild(static_cast(child)); +} + +int QTreeWidgetItem_CheckState(QtObjectPtr ptr, int column){ + return static_cast(ptr)->checkState(column); +} + +QtObjectPtr QTreeWidgetItem_Child(QtObjectPtr ptr, int index){ + return static_cast(ptr)->child(index); +} + +int QTreeWidgetItem_ChildCount(QtObjectPtr ptr){ + return static_cast(ptr)->childCount(); +} + +int QTreeWidgetItem_ChildIndicatorPolicy(QtObjectPtr ptr){ + return static_cast(ptr)->childIndicatorPolicy(); +} + +int QTreeWidgetItem_ColumnCount(QtObjectPtr ptr){ + return static_cast(ptr)->columnCount(); +} + +char* QTreeWidgetItem_Data(QtObjectPtr ptr, int column, int role){ + return static_cast(ptr)->data(column, role).toString().toUtf8().data(); +} + +QtObjectPtr QTreeWidgetItem_Clone(QtObjectPtr ptr){ + return static_cast(ptr)->clone(); +} + +int QTreeWidgetItem_IndexOfChild(QtObjectPtr ptr, QtObjectPtr child){ + return static_cast(ptr)->indexOfChild(static_cast(child)); +} + +void QTreeWidgetItem_InsertChild(QtObjectPtr ptr, int index, QtObjectPtr child){ + static_cast(ptr)->insertChild(index, static_cast(child)); +} + +int QTreeWidgetItem_IsDisabled(QtObjectPtr ptr){ + return static_cast(ptr)->isDisabled(); +} + +int QTreeWidgetItem_IsExpanded(QtObjectPtr ptr){ + return static_cast(ptr)->isExpanded(); +} + +int QTreeWidgetItem_IsFirstColumnSpanned(QtObjectPtr ptr){ + return static_cast(ptr)->isFirstColumnSpanned(); +} + +int QTreeWidgetItem_IsHidden(QtObjectPtr ptr){ + return static_cast(ptr)->isHidden(); +} + +int QTreeWidgetItem_IsSelected(QtObjectPtr ptr){ + return static_cast(ptr)->isSelected(); +} + +QtObjectPtr QTreeWidgetItem_Parent(QtObjectPtr ptr){ + return static_cast(ptr)->parent(); +} + +void QTreeWidgetItem_Read(QtObjectPtr ptr, QtObjectPtr in){ + static_cast(ptr)->read(*static_cast(in)); +} + +void QTreeWidgetItem_RemoveChild(QtObjectPtr ptr, QtObjectPtr child){ + static_cast(ptr)->removeChild(static_cast(child)); +} + +void QTreeWidgetItem_SetBackground(QtObjectPtr ptr, int column, QtObjectPtr brush){ + static_cast(ptr)->setBackground(column, *static_cast(brush)); +} + +void QTreeWidgetItem_SetCheckState(QtObjectPtr ptr, int column, int state){ + static_cast(ptr)->setCheckState(column, static_cast(state)); +} + +void QTreeWidgetItem_SetChildIndicatorPolicy(QtObjectPtr ptr, int policy){ + static_cast(ptr)->setChildIndicatorPolicy(static_cast(policy)); +} + +void QTreeWidgetItem_SetData(QtObjectPtr ptr, int column, int role, char* value){ + static_cast(ptr)->setData(column, role, QVariant(value)); +} + +void QTreeWidgetItem_SetDisabled(QtObjectPtr ptr, int disabled){ + static_cast(ptr)->setDisabled(disabled != 0); +} + +void QTreeWidgetItem_SetExpanded(QtObjectPtr ptr, int expand){ + static_cast(ptr)->setExpanded(expand != 0); +} + +void QTreeWidgetItem_SetFirstColumnSpanned(QtObjectPtr ptr, int span){ + static_cast(ptr)->setFirstColumnSpanned(span != 0); +} + +void QTreeWidgetItem_SetFont(QtObjectPtr ptr, int column, QtObjectPtr font){ + static_cast(ptr)->setFont(column, *static_cast(font)); +} + +void QTreeWidgetItem_SetForeground(QtObjectPtr ptr, int column, QtObjectPtr brush){ + static_cast(ptr)->setForeground(column, *static_cast(brush)); +} + +void QTreeWidgetItem_SetHidden(QtObjectPtr ptr, int hide){ + static_cast(ptr)->setHidden(hide != 0); +} + +void QTreeWidgetItem_SetIcon(QtObjectPtr ptr, int column, QtObjectPtr icon){ + static_cast(ptr)->setIcon(column, *static_cast(icon)); +} + +void QTreeWidgetItem_SetSelected(QtObjectPtr ptr, int sele){ + static_cast(ptr)->setSelected(sele != 0); +} + +void QTreeWidgetItem_SetSizeHint(QtObjectPtr ptr, int column, QtObjectPtr size){ + static_cast(ptr)->setSizeHint(column, *static_cast(size)); +} + +void QTreeWidgetItem_SetStatusTip(QtObjectPtr ptr, int column, char* statusTip){ + static_cast(ptr)->setStatusTip(column, QString(statusTip)); +} + +void QTreeWidgetItem_SetText(QtObjectPtr ptr, int column, char* text){ + static_cast(ptr)->setText(column, QString(text)); +} + +void QTreeWidgetItem_SetTextAlignment(QtObjectPtr ptr, int column, int alignment){ + static_cast(ptr)->setTextAlignment(column, alignment); +} + +void QTreeWidgetItem_SetToolTip(QtObjectPtr ptr, int column, char* toolTip){ + static_cast(ptr)->setToolTip(column, QString(toolTip)); +} + +void QTreeWidgetItem_SetWhatsThis(QtObjectPtr ptr, int column, char* whatsThis){ + static_cast(ptr)->setWhatsThis(column, QString(whatsThis)); +} + +void QTreeWidgetItem_SortChildren(QtObjectPtr ptr, int column, int order){ + static_cast(ptr)->sortChildren(column, static_cast(order)); +} + +char* QTreeWidgetItem_StatusTip(QtObjectPtr ptr, int column){ + return static_cast(ptr)->statusTip(column).toUtf8().data(); +} + +QtObjectPtr QTreeWidgetItem_TakeChild(QtObjectPtr ptr, int index){ + return static_cast(ptr)->takeChild(index); +} + +char* QTreeWidgetItem_Text(QtObjectPtr ptr, int column){ + return static_cast(ptr)->text(column).toUtf8().data(); +} + +int QTreeWidgetItem_TextAlignment(QtObjectPtr ptr, int column){ + return static_cast(ptr)->textAlignment(column); +} + +char* QTreeWidgetItem_ToolTip(QtObjectPtr ptr, int column){ + return static_cast(ptr)->toolTip(column).toUtf8().data(); +} + +QtObjectPtr QTreeWidgetItem_TreeWidget(QtObjectPtr ptr){ + return static_cast(ptr)->treeWidget(); +} + +int QTreeWidgetItem_Type(QtObjectPtr ptr){ + return static_cast(ptr)->type(); +} + +char* QTreeWidgetItem_WhatsThis(QtObjectPtr ptr, int column){ + return static_cast(ptr)->whatsThis(column).toUtf8().data(); +} + +void QTreeWidgetItem_Write(QtObjectPtr ptr, QtObjectPtr out){ + static_cast(ptr)->write(*static_cast(out)); +} + +void QTreeWidgetItem_DestroyQTreeWidgetItem(QtObjectPtr ptr){ + static_cast(ptr)->~QTreeWidgetItem(); +} + diff --git a/widgets/qtreewidgetitem.go b/widgets/qtreewidgetitem.go new file mode 100755 index 00000000..8a42d2b0 --- /dev/null +++ b/widgets/qtreewidgetitem.go @@ -0,0 +1,414 @@ +package widgets + +//#include "qtreewidgetitem.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "strings" + "unsafe" +) + +type QTreeWidgetItem struct { + ptr unsafe.Pointer +} + +type QTreeWidgetItemITF interface { + QTreeWidgetItemPTR() *QTreeWidgetItem +} + +func (p *QTreeWidgetItem) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTreeWidgetItem) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTreeWidgetItem(ptr QTreeWidgetItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTreeWidgetItemPTR().Pointer() + } + return nil +} + +func QTreeWidgetItemFromPointer(ptr unsafe.Pointer) *QTreeWidgetItem { + var n = new(QTreeWidgetItem) + n.SetPointer(ptr) + return n +} + +func (ptr *QTreeWidgetItem) QTreeWidgetItemPTR() *QTreeWidgetItem { + return ptr +} + +//QTreeWidgetItem::ChildIndicatorPolicy +type QTreeWidgetItem__ChildIndicatorPolicy int + +var ( + QTreeWidgetItem__ShowIndicator = QTreeWidgetItem__ChildIndicatorPolicy(0) + QTreeWidgetItem__DontShowIndicator = QTreeWidgetItem__ChildIndicatorPolicy(1) + QTreeWidgetItem__DontShowIndicatorWhenChildless = QTreeWidgetItem__ChildIndicatorPolicy(2) +) + +//QTreeWidgetItem::ItemType +type QTreeWidgetItem__ItemType int + +var ( + QTreeWidgetItem__Type = QTreeWidgetItem__ItemType(0) + QTreeWidgetItem__UserType = QTreeWidgetItem__ItemType(1000) +) + +func NewQTreeWidgetItem5(parent QTreeWidgetITF, preceding QTreeWidgetItemITF, ty int) *QTreeWidgetItem { + return QTreeWidgetItemFromPointer(unsafe.Pointer(C.QTreeWidgetItem_NewQTreeWidgetItem5(C.QtObjectPtr(PointerFromQTreeWidget(parent)), C.QtObjectPtr(PointerFromQTreeWidgetItem(preceding)), C.int(ty)))) +} + +func NewQTreeWidgetItem4(parent QTreeWidgetITF, strin []string, ty int) *QTreeWidgetItem { + return QTreeWidgetItemFromPointer(unsafe.Pointer(C.QTreeWidgetItem_NewQTreeWidgetItem4(C.QtObjectPtr(PointerFromQTreeWidget(parent)), C.CString(strings.Join(strin, "|")), C.int(ty)))) +} + +func NewQTreeWidgetItem3(parent QTreeWidgetITF, ty int) *QTreeWidgetItem { + return QTreeWidgetItemFromPointer(unsafe.Pointer(C.QTreeWidgetItem_NewQTreeWidgetItem3(C.QtObjectPtr(PointerFromQTreeWidget(parent)), C.int(ty)))) +} + +func NewQTreeWidgetItem8(parent QTreeWidgetItemITF, preceding QTreeWidgetItemITF, ty int) *QTreeWidgetItem { + return QTreeWidgetItemFromPointer(unsafe.Pointer(C.QTreeWidgetItem_NewQTreeWidgetItem8(C.QtObjectPtr(PointerFromQTreeWidgetItem(parent)), C.QtObjectPtr(PointerFromQTreeWidgetItem(preceding)), C.int(ty)))) +} + +func (ptr *QTreeWidgetItem) Flags() core.Qt__ItemFlag { + if ptr.Pointer() != nil { + return core.Qt__ItemFlag(C.QTreeWidgetItem_Flags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTreeWidgetItem) SetFlags(flags core.Qt__ItemFlag) { + if ptr.Pointer() != nil { + C.QTreeWidgetItem_SetFlags(C.QtObjectPtr(ptr.Pointer()), C.int(flags)) + } +} + +func NewQTreeWidgetItem7(parent QTreeWidgetItemITF, strin []string, ty int) *QTreeWidgetItem { + return QTreeWidgetItemFromPointer(unsafe.Pointer(C.QTreeWidgetItem_NewQTreeWidgetItem7(C.QtObjectPtr(PointerFromQTreeWidgetItem(parent)), C.CString(strings.Join(strin, "|")), C.int(ty)))) +} + +func NewQTreeWidgetItem6(parent QTreeWidgetItemITF, ty int) *QTreeWidgetItem { + return QTreeWidgetItemFromPointer(unsafe.Pointer(C.QTreeWidgetItem_NewQTreeWidgetItem6(C.QtObjectPtr(PointerFromQTreeWidgetItem(parent)), C.int(ty)))) +} + +func NewQTreeWidgetItem2(strin []string, ty int) *QTreeWidgetItem { + return QTreeWidgetItemFromPointer(unsafe.Pointer(C.QTreeWidgetItem_NewQTreeWidgetItem2(C.CString(strings.Join(strin, "|")), C.int(ty)))) +} + +func NewQTreeWidgetItem9(other QTreeWidgetItemITF) *QTreeWidgetItem { + return QTreeWidgetItemFromPointer(unsafe.Pointer(C.QTreeWidgetItem_NewQTreeWidgetItem9(C.QtObjectPtr(PointerFromQTreeWidgetItem(other))))) +} + +func NewQTreeWidgetItem(ty int) *QTreeWidgetItem { + return QTreeWidgetItemFromPointer(unsafe.Pointer(C.QTreeWidgetItem_NewQTreeWidgetItem(C.int(ty)))) +} + +func (ptr *QTreeWidgetItem) AddChild(child QTreeWidgetItemITF) { + if ptr.Pointer() != nil { + C.QTreeWidgetItem_AddChild(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTreeWidgetItem(child))) + } +} + +func (ptr *QTreeWidgetItem) CheckState(column int) core.Qt__CheckState { + if ptr.Pointer() != nil { + return core.Qt__CheckState(C.QTreeWidgetItem_CheckState(C.QtObjectPtr(ptr.Pointer()), C.int(column))) + } + return 0 +} + +func (ptr *QTreeWidgetItem) Child(index int) *QTreeWidgetItem { + if ptr.Pointer() != nil { + return QTreeWidgetItemFromPointer(unsafe.Pointer(C.QTreeWidgetItem_Child(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QTreeWidgetItem) ChildCount() int { + if ptr.Pointer() != nil { + return int(C.QTreeWidgetItem_ChildCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTreeWidgetItem) ChildIndicatorPolicy() QTreeWidgetItem__ChildIndicatorPolicy { + if ptr.Pointer() != nil { + return QTreeWidgetItem__ChildIndicatorPolicy(C.QTreeWidgetItem_ChildIndicatorPolicy(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTreeWidgetItem) ColumnCount() int { + if ptr.Pointer() != nil { + return int(C.QTreeWidgetItem_ColumnCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTreeWidgetItem) Data(column int, role int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTreeWidgetItem_Data(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(role))) + } + return "" +} + +func (ptr *QTreeWidgetItem) Clone() *QTreeWidgetItem { + if ptr.Pointer() != nil { + return QTreeWidgetItemFromPointer(unsafe.Pointer(C.QTreeWidgetItem_Clone(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTreeWidgetItem) IndexOfChild(child QTreeWidgetItemITF) int { + if ptr.Pointer() != nil { + return int(C.QTreeWidgetItem_IndexOfChild(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTreeWidgetItem(child)))) + } + return 0 +} + +func (ptr *QTreeWidgetItem) InsertChild(index int, child QTreeWidgetItemITF) { + if ptr.Pointer() != nil { + C.QTreeWidgetItem_InsertChild(C.QtObjectPtr(ptr.Pointer()), C.int(index), C.QtObjectPtr(PointerFromQTreeWidgetItem(child))) + } +} + +func (ptr *QTreeWidgetItem) IsDisabled() bool { + if ptr.Pointer() != nil { + return C.QTreeWidgetItem_IsDisabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTreeWidgetItem) IsExpanded() bool { + if ptr.Pointer() != nil { + return C.QTreeWidgetItem_IsExpanded(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTreeWidgetItem) IsFirstColumnSpanned() bool { + if ptr.Pointer() != nil { + return C.QTreeWidgetItem_IsFirstColumnSpanned(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTreeWidgetItem) IsHidden() bool { + if ptr.Pointer() != nil { + return C.QTreeWidgetItem_IsHidden(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTreeWidgetItem) IsSelected() bool { + if ptr.Pointer() != nil { + return C.QTreeWidgetItem_IsSelected(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QTreeWidgetItem) Parent() *QTreeWidgetItem { + if ptr.Pointer() != nil { + return QTreeWidgetItemFromPointer(unsafe.Pointer(C.QTreeWidgetItem_Parent(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTreeWidgetItem) Read(in core.QDataStreamITF) { + if ptr.Pointer() != nil { + C.QTreeWidgetItem_Read(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDataStream(in))) + } +} + +func (ptr *QTreeWidgetItem) RemoveChild(child QTreeWidgetItemITF) { + if ptr.Pointer() != nil { + C.QTreeWidgetItem_RemoveChild(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQTreeWidgetItem(child))) + } +} + +func (ptr *QTreeWidgetItem) SetBackground(column int, brush gui.QBrushITF) { + if ptr.Pointer() != nil { + C.QTreeWidgetItem_SetBackground(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.QtObjectPtr(gui.PointerFromQBrush(brush))) + } +} + +func (ptr *QTreeWidgetItem) SetCheckState(column int, state core.Qt__CheckState) { + if ptr.Pointer() != nil { + C.QTreeWidgetItem_SetCheckState(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(state)) + } +} + +func (ptr *QTreeWidgetItem) SetChildIndicatorPolicy(policy QTreeWidgetItem__ChildIndicatorPolicy) { + if ptr.Pointer() != nil { + C.QTreeWidgetItem_SetChildIndicatorPolicy(C.QtObjectPtr(ptr.Pointer()), C.int(policy)) + } +} + +func (ptr *QTreeWidgetItem) SetData(column int, role int, value string) { + if ptr.Pointer() != nil { + C.QTreeWidgetItem_SetData(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(role), C.CString(value)) + } +} + +func (ptr *QTreeWidgetItem) SetDisabled(disabled bool) { + if ptr.Pointer() != nil { + C.QTreeWidgetItem_SetDisabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(disabled))) + } +} + +func (ptr *QTreeWidgetItem) SetExpanded(expand bool) { + if ptr.Pointer() != nil { + C.QTreeWidgetItem_SetExpanded(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(expand))) + } +} + +func (ptr *QTreeWidgetItem) SetFirstColumnSpanned(span bool) { + if ptr.Pointer() != nil { + C.QTreeWidgetItem_SetFirstColumnSpanned(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(span))) + } +} + +func (ptr *QTreeWidgetItem) SetFont(column int, font gui.QFontITF) { + if ptr.Pointer() != nil { + C.QTreeWidgetItem_SetFont(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.QtObjectPtr(gui.PointerFromQFont(font))) + } +} + +func (ptr *QTreeWidgetItem) SetForeground(column int, brush gui.QBrushITF) { + if ptr.Pointer() != nil { + C.QTreeWidgetItem_SetForeground(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.QtObjectPtr(gui.PointerFromQBrush(brush))) + } +} + +func (ptr *QTreeWidgetItem) SetHidden(hide bool) { + if ptr.Pointer() != nil { + C.QTreeWidgetItem_SetHidden(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(hide))) + } +} + +func (ptr *QTreeWidgetItem) SetIcon(column int, icon gui.QIconITF) { + if ptr.Pointer() != nil { + C.QTreeWidgetItem_SetIcon(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.QtObjectPtr(gui.PointerFromQIcon(icon))) + } +} + +func (ptr *QTreeWidgetItem) SetSelected(sele bool) { + if ptr.Pointer() != nil { + C.QTreeWidgetItem_SetSelected(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(sele))) + } +} + +func (ptr *QTreeWidgetItem) SetSizeHint(column int, size core.QSizeITF) { + if ptr.Pointer() != nil { + C.QTreeWidgetItem_SetSizeHint(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.QtObjectPtr(core.PointerFromQSize(size))) + } +} + +func (ptr *QTreeWidgetItem) SetStatusTip(column int, statusTip string) { + if ptr.Pointer() != nil { + C.QTreeWidgetItem_SetStatusTip(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.CString(statusTip)) + } +} + +func (ptr *QTreeWidgetItem) SetText(column int, text string) { + if ptr.Pointer() != nil { + C.QTreeWidgetItem_SetText(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.CString(text)) + } +} + +func (ptr *QTreeWidgetItem) SetTextAlignment(column int, alignment int) { + if ptr.Pointer() != nil { + C.QTreeWidgetItem_SetTextAlignment(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(alignment)) + } +} + +func (ptr *QTreeWidgetItem) SetToolTip(column int, toolTip string) { + if ptr.Pointer() != nil { + C.QTreeWidgetItem_SetToolTip(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.CString(toolTip)) + } +} + +func (ptr *QTreeWidgetItem) SetWhatsThis(column int, whatsThis string) { + if ptr.Pointer() != nil { + C.QTreeWidgetItem_SetWhatsThis(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.CString(whatsThis)) + } +} + +func (ptr *QTreeWidgetItem) SortChildren(column int, order core.Qt__SortOrder) { + if ptr.Pointer() != nil { + C.QTreeWidgetItem_SortChildren(C.QtObjectPtr(ptr.Pointer()), C.int(column), C.int(order)) + } +} + +func (ptr *QTreeWidgetItem) StatusTip(column int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTreeWidgetItem_StatusTip(C.QtObjectPtr(ptr.Pointer()), C.int(column))) + } + return "" +} + +func (ptr *QTreeWidgetItem) TakeChild(index int) *QTreeWidgetItem { + if ptr.Pointer() != nil { + return QTreeWidgetItemFromPointer(unsafe.Pointer(C.QTreeWidgetItem_TakeChild(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QTreeWidgetItem) Text(column int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTreeWidgetItem_Text(C.QtObjectPtr(ptr.Pointer()), C.int(column))) + } + return "" +} + +func (ptr *QTreeWidgetItem) TextAlignment(column int) int { + if ptr.Pointer() != nil { + return int(C.QTreeWidgetItem_TextAlignment(C.QtObjectPtr(ptr.Pointer()), C.int(column))) + } + return 0 +} + +func (ptr *QTreeWidgetItem) ToolTip(column int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTreeWidgetItem_ToolTip(C.QtObjectPtr(ptr.Pointer()), C.int(column))) + } + return "" +} + +func (ptr *QTreeWidgetItem) TreeWidget() *QTreeWidget { + if ptr.Pointer() != nil { + return QTreeWidgetFromPointer(unsafe.Pointer(C.QTreeWidgetItem_TreeWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QTreeWidgetItem) Type() int { + if ptr.Pointer() != nil { + return int(C.QTreeWidgetItem_Type(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QTreeWidgetItem) WhatsThis(column int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QTreeWidgetItem_WhatsThis(C.QtObjectPtr(ptr.Pointer()), C.int(column))) + } + return "" +} + +func (ptr *QTreeWidgetItem) Write(out core.QDataStreamITF) { + if ptr.Pointer() != nil { + C.QTreeWidgetItem_Write(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQDataStream(out))) + } +} + +func (ptr *QTreeWidgetItem) DestroyQTreeWidgetItem() { + if ptr.Pointer() != nil { + C.QTreeWidgetItem_DestroyQTreeWidgetItem(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qtreewidgetitem.h b/widgets/qtreewidgetitem.h new file mode 100755 index 00000000..3491674a --- /dev/null +++ b/widgets/qtreewidgetitem.h @@ -0,0 +1,67 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QTreeWidgetItem_NewQTreeWidgetItem5(QtObjectPtr parent, QtObjectPtr preceding, int ty); +QtObjectPtr QTreeWidgetItem_NewQTreeWidgetItem4(QtObjectPtr parent, char* strin, int ty); +QtObjectPtr QTreeWidgetItem_NewQTreeWidgetItem3(QtObjectPtr parent, int ty); +QtObjectPtr QTreeWidgetItem_NewQTreeWidgetItem8(QtObjectPtr parent, QtObjectPtr preceding, int ty); +int QTreeWidgetItem_Flags(QtObjectPtr ptr); +void QTreeWidgetItem_SetFlags(QtObjectPtr ptr, int flags); +QtObjectPtr QTreeWidgetItem_NewQTreeWidgetItem7(QtObjectPtr parent, char* strin, int ty); +QtObjectPtr QTreeWidgetItem_NewQTreeWidgetItem6(QtObjectPtr parent, int ty); +QtObjectPtr QTreeWidgetItem_NewQTreeWidgetItem2(char* strin, int ty); +QtObjectPtr QTreeWidgetItem_NewQTreeWidgetItem9(QtObjectPtr other); +QtObjectPtr QTreeWidgetItem_NewQTreeWidgetItem(int ty); +void QTreeWidgetItem_AddChild(QtObjectPtr ptr, QtObjectPtr child); +int QTreeWidgetItem_CheckState(QtObjectPtr ptr, int column); +QtObjectPtr QTreeWidgetItem_Child(QtObjectPtr ptr, int index); +int QTreeWidgetItem_ChildCount(QtObjectPtr ptr); +int QTreeWidgetItem_ChildIndicatorPolicy(QtObjectPtr ptr); +int QTreeWidgetItem_ColumnCount(QtObjectPtr ptr); +char* QTreeWidgetItem_Data(QtObjectPtr ptr, int column, int role); +QtObjectPtr QTreeWidgetItem_Clone(QtObjectPtr ptr); +int QTreeWidgetItem_IndexOfChild(QtObjectPtr ptr, QtObjectPtr child); +void QTreeWidgetItem_InsertChild(QtObjectPtr ptr, int index, QtObjectPtr child); +int QTreeWidgetItem_IsDisabled(QtObjectPtr ptr); +int QTreeWidgetItem_IsExpanded(QtObjectPtr ptr); +int QTreeWidgetItem_IsFirstColumnSpanned(QtObjectPtr ptr); +int QTreeWidgetItem_IsHidden(QtObjectPtr ptr); +int QTreeWidgetItem_IsSelected(QtObjectPtr ptr); +QtObjectPtr QTreeWidgetItem_Parent(QtObjectPtr ptr); +void QTreeWidgetItem_Read(QtObjectPtr ptr, QtObjectPtr in); +void QTreeWidgetItem_RemoveChild(QtObjectPtr ptr, QtObjectPtr child); +void QTreeWidgetItem_SetBackground(QtObjectPtr ptr, int column, QtObjectPtr brush); +void QTreeWidgetItem_SetCheckState(QtObjectPtr ptr, int column, int state); +void QTreeWidgetItem_SetChildIndicatorPolicy(QtObjectPtr ptr, int policy); +void QTreeWidgetItem_SetData(QtObjectPtr ptr, int column, int role, char* value); +void QTreeWidgetItem_SetDisabled(QtObjectPtr ptr, int disabled); +void QTreeWidgetItem_SetExpanded(QtObjectPtr ptr, int expand); +void QTreeWidgetItem_SetFirstColumnSpanned(QtObjectPtr ptr, int span); +void QTreeWidgetItem_SetFont(QtObjectPtr ptr, int column, QtObjectPtr font); +void QTreeWidgetItem_SetForeground(QtObjectPtr ptr, int column, QtObjectPtr brush); +void QTreeWidgetItem_SetHidden(QtObjectPtr ptr, int hide); +void QTreeWidgetItem_SetIcon(QtObjectPtr ptr, int column, QtObjectPtr icon); +void QTreeWidgetItem_SetSelected(QtObjectPtr ptr, int sele); +void QTreeWidgetItem_SetSizeHint(QtObjectPtr ptr, int column, QtObjectPtr size); +void QTreeWidgetItem_SetStatusTip(QtObjectPtr ptr, int column, char* statusTip); +void QTreeWidgetItem_SetText(QtObjectPtr ptr, int column, char* text); +void QTreeWidgetItem_SetTextAlignment(QtObjectPtr ptr, int column, int alignment); +void QTreeWidgetItem_SetToolTip(QtObjectPtr ptr, int column, char* toolTip); +void QTreeWidgetItem_SetWhatsThis(QtObjectPtr ptr, int column, char* whatsThis); +void QTreeWidgetItem_SortChildren(QtObjectPtr ptr, int column, int order); +char* QTreeWidgetItem_StatusTip(QtObjectPtr ptr, int column); +QtObjectPtr QTreeWidgetItem_TakeChild(QtObjectPtr ptr, int index); +char* QTreeWidgetItem_Text(QtObjectPtr ptr, int column); +int QTreeWidgetItem_TextAlignment(QtObjectPtr ptr, int column); +char* QTreeWidgetItem_ToolTip(QtObjectPtr ptr, int column); +QtObjectPtr QTreeWidgetItem_TreeWidget(QtObjectPtr ptr); +int QTreeWidgetItem_Type(QtObjectPtr ptr); +char* QTreeWidgetItem_WhatsThis(QtObjectPtr ptr, int column); +void QTreeWidgetItem_Write(QtObjectPtr ptr, QtObjectPtr out); +void QTreeWidgetItem_DestroyQTreeWidgetItem(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qtreewidgetitemiterator.cpp b/widgets/qtreewidgetitemiterator.cpp new file mode 100755 index 00000000..9f697438 --- /dev/null +++ b/widgets/qtreewidgetitemiterator.cpp @@ -0,0 +1,10 @@ +#include "qtreewidgetitemiterator.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + diff --git a/widgets/qtreewidgetitemiterator.go b/widgets/qtreewidgetitemiterator.go new file mode 100755 index 00000000..8b616d95 --- /dev/null +++ b/widgets/qtreewidgetitemiterator.go @@ -0,0 +1,66 @@ +package widgets + +//#include "qtreewidgetitemiterator.h" +import "C" +import ( + "unsafe" +) + +type QTreeWidgetItemIterator struct { + ptr unsafe.Pointer +} + +type QTreeWidgetItemIteratorITF interface { + QTreeWidgetItemIteratorPTR() *QTreeWidgetItemIterator +} + +func (p *QTreeWidgetItemIterator) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QTreeWidgetItemIterator) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQTreeWidgetItemIterator(ptr QTreeWidgetItemIteratorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QTreeWidgetItemIteratorPTR().Pointer() + } + return nil +} + +func QTreeWidgetItemIteratorFromPointer(ptr unsafe.Pointer) *QTreeWidgetItemIterator { + var n = new(QTreeWidgetItemIterator) + n.SetPointer(ptr) + return n +} + +func (ptr *QTreeWidgetItemIterator) QTreeWidgetItemIteratorPTR() *QTreeWidgetItemIterator { + return ptr +} + +//QTreeWidgetItemIterator::IteratorFlag +type QTreeWidgetItemIterator__IteratorFlag int + +var ( + QTreeWidgetItemIterator__All = QTreeWidgetItemIterator__IteratorFlag(0x00000000) + QTreeWidgetItemIterator__Hidden = QTreeWidgetItemIterator__IteratorFlag(0x00000001) + QTreeWidgetItemIterator__NotHidden = QTreeWidgetItemIterator__IteratorFlag(0x00000002) + QTreeWidgetItemIterator__Selected = QTreeWidgetItemIterator__IteratorFlag(0x00000004) + QTreeWidgetItemIterator__Unselected = QTreeWidgetItemIterator__IteratorFlag(0x00000008) + QTreeWidgetItemIterator__Selectable = QTreeWidgetItemIterator__IteratorFlag(0x00000010) + QTreeWidgetItemIterator__NotSelectable = QTreeWidgetItemIterator__IteratorFlag(0x00000020) + QTreeWidgetItemIterator__DragEnabled = QTreeWidgetItemIterator__IteratorFlag(0x00000040) + QTreeWidgetItemIterator__DragDisabled = QTreeWidgetItemIterator__IteratorFlag(0x00000080) + QTreeWidgetItemIterator__DropEnabled = QTreeWidgetItemIterator__IteratorFlag(0x00000100) + QTreeWidgetItemIterator__DropDisabled = QTreeWidgetItemIterator__IteratorFlag(0x00000200) + QTreeWidgetItemIterator__HasChildren = QTreeWidgetItemIterator__IteratorFlag(0x00000400) + QTreeWidgetItemIterator__NoChildren = QTreeWidgetItemIterator__IteratorFlag(0x00000800) + QTreeWidgetItemIterator__Checked = QTreeWidgetItemIterator__IteratorFlag(0x00001000) + QTreeWidgetItemIterator__NotChecked = QTreeWidgetItemIterator__IteratorFlag(0x00002000) + QTreeWidgetItemIterator__Enabled = QTreeWidgetItemIterator__IteratorFlag(0x00004000) + QTreeWidgetItemIterator__Disabled = QTreeWidgetItemIterator__IteratorFlag(0x00008000) + QTreeWidgetItemIterator__Editable = QTreeWidgetItemIterator__IteratorFlag(0x00010000) + QTreeWidgetItemIterator__NotEditable = QTreeWidgetItemIterator__IteratorFlag(0x00020000) + QTreeWidgetItemIterator__UserFlag = QTreeWidgetItemIterator__IteratorFlag(0x01000000) +) diff --git a/widgets/qtreewidgetitemiterator.h b/widgets/qtreewidgetitemiterator.h new file mode 100755 index 00000000..176308f3 --- /dev/null +++ b/widgets/qtreewidgetitemiterator.h @@ -0,0 +1,9 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qundocommand.cpp b/widgets/qundocommand.cpp new file mode 100755 index 00000000..55bd387d --- /dev/null +++ b/widgets/qundocommand.cpp @@ -0,0 +1,60 @@ +#include "qundocommand.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQUndoCommand: public QUndoCommand { +public: +}; + +QtObjectPtr QUndoCommand_NewQUndoCommand(QtObjectPtr parent){ + return new QUndoCommand(static_cast(parent)); +} + +QtObjectPtr QUndoCommand_NewQUndoCommand2(char* text, QtObjectPtr parent){ + return new QUndoCommand(QString(text), static_cast(parent)); +} + +char* QUndoCommand_ActionText(QtObjectPtr ptr){ + return static_cast(ptr)->actionText().toUtf8().data(); +} + +QtObjectPtr QUndoCommand_Child(QtObjectPtr ptr, int index){ + return const_cast(static_cast(ptr)->child(index)); +} + +int QUndoCommand_ChildCount(QtObjectPtr ptr){ + return static_cast(ptr)->childCount(); +} + +int QUndoCommand_Id(QtObjectPtr ptr){ + return static_cast(ptr)->id(); +} + +int QUndoCommand_MergeWith(QtObjectPtr ptr, QtObjectPtr command){ + return static_cast(ptr)->mergeWith(static_cast(command)); +} + +void QUndoCommand_Redo(QtObjectPtr ptr){ + static_cast(ptr)->redo(); +} + +void QUndoCommand_SetText(QtObjectPtr ptr, char* text){ + static_cast(ptr)->setText(QString(text)); +} + +char* QUndoCommand_Text(QtObjectPtr ptr){ + return static_cast(ptr)->text().toUtf8().data(); +} + +void QUndoCommand_Undo(QtObjectPtr ptr){ + static_cast(ptr)->undo(); +} + +void QUndoCommand_DestroyQUndoCommand(QtObjectPtr ptr){ + static_cast(ptr)->~QUndoCommand(); +} + diff --git a/widgets/qundocommand.go b/widgets/qundocommand.go new file mode 100755 index 00000000..4de9637c --- /dev/null +++ b/widgets/qundocommand.go @@ -0,0 +1,114 @@ +package widgets + +//#include "qundocommand.h" +import "C" +import ( + "unsafe" +) + +type QUndoCommand struct { + ptr unsafe.Pointer +} + +type QUndoCommandITF interface { + QUndoCommandPTR() *QUndoCommand +} + +func (p *QUndoCommand) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QUndoCommand) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQUndoCommand(ptr QUndoCommandITF) unsafe.Pointer { + if ptr != nil { + return ptr.QUndoCommandPTR().Pointer() + } + return nil +} + +func QUndoCommandFromPointer(ptr unsafe.Pointer) *QUndoCommand { + var n = new(QUndoCommand) + n.SetPointer(ptr) + return n +} + +func (ptr *QUndoCommand) QUndoCommandPTR() *QUndoCommand { + return ptr +} + +func NewQUndoCommand(parent QUndoCommandITF) *QUndoCommand { + return QUndoCommandFromPointer(unsafe.Pointer(C.QUndoCommand_NewQUndoCommand(C.QtObjectPtr(PointerFromQUndoCommand(parent))))) +} + +func NewQUndoCommand2(text string, parent QUndoCommandITF) *QUndoCommand { + return QUndoCommandFromPointer(unsafe.Pointer(C.QUndoCommand_NewQUndoCommand2(C.CString(text), C.QtObjectPtr(PointerFromQUndoCommand(parent))))) +} + +func (ptr *QUndoCommand) ActionText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QUndoCommand_ActionText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QUndoCommand) Child(index int) *QUndoCommand { + if ptr.Pointer() != nil { + return QUndoCommandFromPointer(unsafe.Pointer(C.QUndoCommand_Child(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QUndoCommand) ChildCount() int { + if ptr.Pointer() != nil { + return int(C.QUndoCommand_ChildCount(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QUndoCommand) Id() int { + if ptr.Pointer() != nil { + return int(C.QUndoCommand_Id(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QUndoCommand) MergeWith(command QUndoCommandITF) bool { + if ptr.Pointer() != nil { + return C.QUndoCommand_MergeWith(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQUndoCommand(command))) != 0 + } + return false +} + +func (ptr *QUndoCommand) Redo() { + if ptr.Pointer() != nil { + C.QUndoCommand_Redo(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QUndoCommand) SetText(text string) { + if ptr.Pointer() != nil { + C.QUndoCommand_SetText(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QUndoCommand) Text() string { + if ptr.Pointer() != nil { + return C.GoString(C.QUndoCommand_Text(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QUndoCommand) Undo() { + if ptr.Pointer() != nil { + C.QUndoCommand_Undo(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QUndoCommand) DestroyQUndoCommand() { + if ptr.Pointer() != nil { + C.QUndoCommand_DestroyQUndoCommand(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qundocommand.h b/widgets/qundocommand.h new file mode 100755 index 00000000..6276382c --- /dev/null +++ b/widgets/qundocommand.h @@ -0,0 +1,21 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QUndoCommand_NewQUndoCommand(QtObjectPtr parent); +QtObjectPtr QUndoCommand_NewQUndoCommand2(char* text, QtObjectPtr parent); +char* QUndoCommand_ActionText(QtObjectPtr ptr); +QtObjectPtr QUndoCommand_Child(QtObjectPtr ptr, int index); +int QUndoCommand_ChildCount(QtObjectPtr ptr); +int QUndoCommand_Id(QtObjectPtr ptr); +int QUndoCommand_MergeWith(QtObjectPtr ptr, QtObjectPtr command); +void QUndoCommand_Redo(QtObjectPtr ptr); +void QUndoCommand_SetText(QtObjectPtr ptr, char* text); +char* QUndoCommand_Text(QtObjectPtr ptr); +void QUndoCommand_Undo(QtObjectPtr ptr); +void QUndoCommand_DestroyQUndoCommand(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qundogroup.cpp b/widgets/qundogroup.cpp new file mode 100755 index 00000000..12f8c661 --- /dev/null +++ b/widgets/qundogroup.cpp @@ -0,0 +1,138 @@ +#include "qundogroup.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQUndoGroup: public QUndoGroup { +public: +void Signal_ActiveStackChanged(QUndoStack * stack){callbackQUndoGroupActiveStackChanged(this->objectName().toUtf8().data(), stack);}; +void Signal_CanRedoChanged(bool canRedo){callbackQUndoGroupCanRedoChanged(this->objectName().toUtf8().data(), canRedo);}; +void Signal_CanUndoChanged(bool canUndo){callbackQUndoGroupCanUndoChanged(this->objectName().toUtf8().data(), canUndo);}; +void Signal_CleanChanged(bool clean){callbackQUndoGroupCleanChanged(this->objectName().toUtf8().data(), clean);}; +void Signal_IndexChanged(int idx){callbackQUndoGroupIndexChanged(this->objectName().toUtf8().data(), idx);}; +void Signal_RedoTextChanged(const QString & redoText){callbackQUndoGroupRedoTextChanged(this->objectName().toUtf8().data(), redoText.toUtf8().data());}; +void Signal_UndoTextChanged(const QString & undoText){callbackQUndoGroupUndoTextChanged(this->objectName().toUtf8().data(), undoText.toUtf8().data());}; +}; + +QtObjectPtr QUndoGroup_NewQUndoGroup(QtObjectPtr parent){ + return new QUndoGroup(static_cast(parent)); +} + +QtObjectPtr QUndoGroup_ActiveStack(QtObjectPtr ptr){ + return static_cast(ptr)->activeStack(); +} + +void QUndoGroup_ConnectActiveStackChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QUndoGroup::activeStackChanged), static_cast(ptr), static_cast(&MyQUndoGroup::Signal_ActiveStackChanged));; +} + +void QUndoGroup_DisconnectActiveStackChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QUndoGroup::activeStackChanged), static_cast(ptr), static_cast(&MyQUndoGroup::Signal_ActiveStackChanged));; +} + +void QUndoGroup_AddStack(QtObjectPtr ptr, QtObjectPtr stack){ + static_cast(ptr)->addStack(static_cast(stack)); +} + +int QUndoGroup_CanRedo(QtObjectPtr ptr){ + return static_cast(ptr)->canRedo(); +} + +void QUndoGroup_ConnectCanRedoChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QUndoGroup::canRedoChanged), static_cast(ptr), static_cast(&MyQUndoGroup::Signal_CanRedoChanged));; +} + +void QUndoGroup_DisconnectCanRedoChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QUndoGroup::canRedoChanged), static_cast(ptr), static_cast(&MyQUndoGroup::Signal_CanRedoChanged));; +} + +int QUndoGroup_CanUndo(QtObjectPtr ptr){ + return static_cast(ptr)->canUndo(); +} + +void QUndoGroup_ConnectCanUndoChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QUndoGroup::canUndoChanged), static_cast(ptr), static_cast(&MyQUndoGroup::Signal_CanUndoChanged));; +} + +void QUndoGroup_DisconnectCanUndoChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QUndoGroup::canUndoChanged), static_cast(ptr), static_cast(&MyQUndoGroup::Signal_CanUndoChanged));; +} + +void QUndoGroup_ConnectCleanChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QUndoGroup::cleanChanged), static_cast(ptr), static_cast(&MyQUndoGroup::Signal_CleanChanged));; +} + +void QUndoGroup_DisconnectCleanChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QUndoGroup::cleanChanged), static_cast(ptr), static_cast(&MyQUndoGroup::Signal_CleanChanged));; +} + +QtObjectPtr QUndoGroup_CreateRedoAction(QtObjectPtr ptr, QtObjectPtr parent, char* prefix){ + return static_cast(ptr)->createRedoAction(static_cast(parent), QString(prefix)); +} + +QtObjectPtr QUndoGroup_CreateUndoAction(QtObjectPtr ptr, QtObjectPtr parent, char* prefix){ + return static_cast(ptr)->createUndoAction(static_cast(parent), QString(prefix)); +} + +void QUndoGroup_ConnectIndexChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QUndoGroup::indexChanged), static_cast(ptr), static_cast(&MyQUndoGroup::Signal_IndexChanged));; +} + +void QUndoGroup_DisconnectIndexChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QUndoGroup::indexChanged), static_cast(ptr), static_cast(&MyQUndoGroup::Signal_IndexChanged));; +} + +int QUndoGroup_IsClean(QtObjectPtr ptr){ + return static_cast(ptr)->isClean(); +} + +void QUndoGroup_Redo(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "redo"); +} + +char* QUndoGroup_RedoText(QtObjectPtr ptr){ + return static_cast(ptr)->redoText().toUtf8().data(); +} + +void QUndoGroup_ConnectRedoTextChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QUndoGroup::redoTextChanged), static_cast(ptr), static_cast(&MyQUndoGroup::Signal_RedoTextChanged));; +} + +void QUndoGroup_DisconnectRedoTextChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QUndoGroup::redoTextChanged), static_cast(ptr), static_cast(&MyQUndoGroup::Signal_RedoTextChanged));; +} + +void QUndoGroup_RemoveStack(QtObjectPtr ptr, QtObjectPtr stack){ + static_cast(ptr)->removeStack(static_cast(stack)); +} + +void QUndoGroup_SetActiveStack(QtObjectPtr ptr, QtObjectPtr stack){ + QMetaObject::invokeMethod(static_cast(ptr), "setActiveStack", Q_ARG(QUndoStack*, static_cast(stack))); +} + +void QUndoGroup_Undo(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "undo"); +} + +char* QUndoGroup_UndoText(QtObjectPtr ptr){ + return static_cast(ptr)->undoText().toUtf8().data(); +} + +void QUndoGroup_ConnectUndoTextChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QUndoGroup::undoTextChanged), static_cast(ptr), static_cast(&MyQUndoGroup::Signal_UndoTextChanged));; +} + +void QUndoGroup_DisconnectUndoTextChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QUndoGroup::undoTextChanged), static_cast(ptr), static_cast(&MyQUndoGroup::Signal_UndoTextChanged));; +} + +void QUndoGroup_DestroyQUndoGroup(QtObjectPtr ptr){ + static_cast(ptr)->~QUndoGroup(); +} + diff --git a/widgets/qundogroup.go b/widgets/qundogroup.go new file mode 100755 index 00000000..97a9f8ce --- /dev/null +++ b/widgets/qundogroup.go @@ -0,0 +1,268 @@ +package widgets + +//#include "qundogroup.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QUndoGroup struct { + core.QObject +} + +type QUndoGroupITF interface { + core.QObjectITF + QUndoGroupPTR() *QUndoGroup +} + +func PointerFromQUndoGroup(ptr QUndoGroupITF) unsafe.Pointer { + if ptr != nil { + return ptr.QUndoGroupPTR().Pointer() + } + return nil +} + +func QUndoGroupFromPointer(ptr unsafe.Pointer) *QUndoGroup { + var n = new(QUndoGroup) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QUndoGroup_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QUndoGroup) QUndoGroupPTR() *QUndoGroup { + return ptr +} + +func NewQUndoGroup(parent core.QObjectITF) *QUndoGroup { + return QUndoGroupFromPointer(unsafe.Pointer(C.QUndoGroup_NewQUndoGroup(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QUndoGroup) ActiveStack() *QUndoStack { + if ptr.Pointer() != nil { + return QUndoStackFromPointer(unsafe.Pointer(C.QUndoGroup_ActiveStack(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QUndoGroup) ConnectActiveStackChanged(f func(stack QUndoStackITF)) { + if ptr.Pointer() != nil { + C.QUndoGroup_ConnectActiveStackChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "activeStackChanged", f) + } +} + +func (ptr *QUndoGroup) DisconnectActiveStackChanged() { + if ptr.Pointer() != nil { + C.QUndoGroup_DisconnectActiveStackChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "activeStackChanged") + } +} + +//export callbackQUndoGroupActiveStackChanged +func callbackQUndoGroupActiveStackChanged(ptrName *C.char, stack unsafe.Pointer) { + qt.GetSignal(C.GoString(ptrName), "activeStackChanged").(func(*QUndoStack))(QUndoStackFromPointer(stack)) +} + +func (ptr *QUndoGroup) AddStack(stack QUndoStackITF) { + if ptr.Pointer() != nil { + C.QUndoGroup_AddStack(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQUndoStack(stack))) + } +} + +func (ptr *QUndoGroup) CanRedo() bool { + if ptr.Pointer() != nil { + return C.QUndoGroup_CanRedo(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QUndoGroup) ConnectCanRedoChanged(f func(canRedo bool)) { + if ptr.Pointer() != nil { + C.QUndoGroup_ConnectCanRedoChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "canRedoChanged", f) + } +} + +func (ptr *QUndoGroup) DisconnectCanRedoChanged() { + if ptr.Pointer() != nil { + C.QUndoGroup_DisconnectCanRedoChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "canRedoChanged") + } +} + +//export callbackQUndoGroupCanRedoChanged +func callbackQUndoGroupCanRedoChanged(ptrName *C.char, canRedo C.int) { + qt.GetSignal(C.GoString(ptrName), "canRedoChanged").(func(bool))(int(canRedo) != 0) +} + +func (ptr *QUndoGroup) CanUndo() bool { + if ptr.Pointer() != nil { + return C.QUndoGroup_CanUndo(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QUndoGroup) ConnectCanUndoChanged(f func(canUndo bool)) { + if ptr.Pointer() != nil { + C.QUndoGroup_ConnectCanUndoChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "canUndoChanged", f) + } +} + +func (ptr *QUndoGroup) DisconnectCanUndoChanged() { + if ptr.Pointer() != nil { + C.QUndoGroup_DisconnectCanUndoChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "canUndoChanged") + } +} + +//export callbackQUndoGroupCanUndoChanged +func callbackQUndoGroupCanUndoChanged(ptrName *C.char, canUndo C.int) { + qt.GetSignal(C.GoString(ptrName), "canUndoChanged").(func(bool))(int(canUndo) != 0) +} + +func (ptr *QUndoGroup) ConnectCleanChanged(f func(clean bool)) { + if ptr.Pointer() != nil { + C.QUndoGroup_ConnectCleanChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "cleanChanged", f) + } +} + +func (ptr *QUndoGroup) DisconnectCleanChanged() { + if ptr.Pointer() != nil { + C.QUndoGroup_DisconnectCleanChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "cleanChanged") + } +} + +//export callbackQUndoGroupCleanChanged +func callbackQUndoGroupCleanChanged(ptrName *C.char, clean C.int) { + qt.GetSignal(C.GoString(ptrName), "cleanChanged").(func(bool))(int(clean) != 0) +} + +func (ptr *QUndoGroup) CreateRedoAction(parent core.QObjectITF, prefix string) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QUndoGroup_CreateRedoAction(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(parent)), C.CString(prefix)))) + } + return nil +} + +func (ptr *QUndoGroup) CreateUndoAction(parent core.QObjectITF, prefix string) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QUndoGroup_CreateUndoAction(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(parent)), C.CString(prefix)))) + } + return nil +} + +func (ptr *QUndoGroup) ConnectIndexChanged(f func(idx int)) { + if ptr.Pointer() != nil { + C.QUndoGroup_ConnectIndexChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "indexChanged", f) + } +} + +func (ptr *QUndoGroup) DisconnectIndexChanged() { + if ptr.Pointer() != nil { + C.QUndoGroup_DisconnectIndexChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "indexChanged") + } +} + +//export callbackQUndoGroupIndexChanged +func callbackQUndoGroupIndexChanged(ptrName *C.char, idx C.int) { + qt.GetSignal(C.GoString(ptrName), "indexChanged").(func(int))(int(idx)) +} + +func (ptr *QUndoGroup) IsClean() bool { + if ptr.Pointer() != nil { + return C.QUndoGroup_IsClean(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QUndoGroup) Redo() { + if ptr.Pointer() != nil { + C.QUndoGroup_Redo(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QUndoGroup) RedoText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QUndoGroup_RedoText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QUndoGroup) ConnectRedoTextChanged(f func(redoText string)) { + if ptr.Pointer() != nil { + C.QUndoGroup_ConnectRedoTextChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "redoTextChanged", f) + } +} + +func (ptr *QUndoGroup) DisconnectRedoTextChanged() { + if ptr.Pointer() != nil { + C.QUndoGroup_DisconnectRedoTextChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "redoTextChanged") + } +} + +//export callbackQUndoGroupRedoTextChanged +func callbackQUndoGroupRedoTextChanged(ptrName *C.char, redoText *C.char) { + qt.GetSignal(C.GoString(ptrName), "redoTextChanged").(func(string))(C.GoString(redoText)) +} + +func (ptr *QUndoGroup) RemoveStack(stack QUndoStackITF) { + if ptr.Pointer() != nil { + C.QUndoGroup_RemoveStack(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQUndoStack(stack))) + } +} + +func (ptr *QUndoGroup) SetActiveStack(stack QUndoStackITF) { + if ptr.Pointer() != nil { + C.QUndoGroup_SetActiveStack(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQUndoStack(stack))) + } +} + +func (ptr *QUndoGroup) Undo() { + if ptr.Pointer() != nil { + C.QUndoGroup_Undo(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QUndoGroup) UndoText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QUndoGroup_UndoText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QUndoGroup) ConnectUndoTextChanged(f func(undoText string)) { + if ptr.Pointer() != nil { + C.QUndoGroup_ConnectUndoTextChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "undoTextChanged", f) + } +} + +func (ptr *QUndoGroup) DisconnectUndoTextChanged() { + if ptr.Pointer() != nil { + C.QUndoGroup_DisconnectUndoTextChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "undoTextChanged") + } +} + +//export callbackQUndoGroupUndoTextChanged +func callbackQUndoGroupUndoTextChanged(ptrName *C.char, undoText *C.char) { + qt.GetSignal(C.GoString(ptrName), "undoTextChanged").(func(string))(C.GoString(undoText)) +} + +func (ptr *QUndoGroup) DestroyQUndoGroup() { + if ptr.Pointer() != nil { + C.QUndoGroup_DestroyQUndoGroup(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qundogroup.h b/widgets/qundogroup.h new file mode 100755 index 00000000..b69be8c9 --- /dev/null +++ b/widgets/qundogroup.h @@ -0,0 +1,38 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QUndoGroup_NewQUndoGroup(QtObjectPtr parent); +QtObjectPtr QUndoGroup_ActiveStack(QtObjectPtr ptr); +void QUndoGroup_ConnectActiveStackChanged(QtObjectPtr ptr); +void QUndoGroup_DisconnectActiveStackChanged(QtObjectPtr ptr); +void QUndoGroup_AddStack(QtObjectPtr ptr, QtObjectPtr stack); +int QUndoGroup_CanRedo(QtObjectPtr ptr); +void QUndoGroup_ConnectCanRedoChanged(QtObjectPtr ptr); +void QUndoGroup_DisconnectCanRedoChanged(QtObjectPtr ptr); +int QUndoGroup_CanUndo(QtObjectPtr ptr); +void QUndoGroup_ConnectCanUndoChanged(QtObjectPtr ptr); +void QUndoGroup_DisconnectCanUndoChanged(QtObjectPtr ptr); +void QUndoGroup_ConnectCleanChanged(QtObjectPtr ptr); +void QUndoGroup_DisconnectCleanChanged(QtObjectPtr ptr); +QtObjectPtr QUndoGroup_CreateRedoAction(QtObjectPtr ptr, QtObjectPtr parent, char* prefix); +QtObjectPtr QUndoGroup_CreateUndoAction(QtObjectPtr ptr, QtObjectPtr parent, char* prefix); +void QUndoGroup_ConnectIndexChanged(QtObjectPtr ptr); +void QUndoGroup_DisconnectIndexChanged(QtObjectPtr ptr); +int QUndoGroup_IsClean(QtObjectPtr ptr); +void QUndoGroup_Redo(QtObjectPtr ptr); +char* QUndoGroup_RedoText(QtObjectPtr ptr); +void QUndoGroup_ConnectRedoTextChanged(QtObjectPtr ptr); +void QUndoGroup_DisconnectRedoTextChanged(QtObjectPtr ptr); +void QUndoGroup_RemoveStack(QtObjectPtr ptr, QtObjectPtr stack); +void QUndoGroup_SetActiveStack(QtObjectPtr ptr, QtObjectPtr stack); +void QUndoGroup_Undo(QtObjectPtr ptr); +char* QUndoGroup_UndoText(QtObjectPtr ptr); +void QUndoGroup_ConnectUndoTextChanged(QtObjectPtr ptr); +void QUndoGroup_DisconnectUndoTextChanged(QtObjectPtr ptr); +void QUndoGroup_DestroyQUndoGroup(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qundostack.cpp b/widgets/qundostack.cpp new file mode 100755 index 00000000..4d1f173a --- /dev/null +++ b/widgets/qundostack.cpp @@ -0,0 +1,173 @@ +#include "qundostack.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQUndoStack: public QUndoStack { +public: +void Signal_CanRedoChanged(bool canRedo){callbackQUndoStackCanRedoChanged(this->objectName().toUtf8().data(), canRedo);}; +void Signal_CanUndoChanged(bool canUndo){callbackQUndoStackCanUndoChanged(this->objectName().toUtf8().data(), canUndo);}; +void Signal_CleanChanged(bool clean){callbackQUndoStackCleanChanged(this->objectName().toUtf8().data(), clean);}; +void Signal_IndexChanged(int idx){callbackQUndoStackIndexChanged(this->objectName().toUtf8().data(), idx);}; +void Signal_RedoTextChanged(const QString & redoText){callbackQUndoStackRedoTextChanged(this->objectName().toUtf8().data(), redoText.toUtf8().data());}; +void Signal_UndoTextChanged(const QString & undoText){callbackQUndoStackUndoTextChanged(this->objectName().toUtf8().data(), undoText.toUtf8().data());}; +}; + +int QUndoStack_IsActive(QtObjectPtr ptr){ + return static_cast(ptr)->isActive(); +} + +void QUndoStack_SetActive(QtObjectPtr ptr, int active){ + QMetaObject::invokeMethod(static_cast(ptr), "setActive", Q_ARG(bool, active != 0)); +} + +void QUndoStack_SetUndoLimit(QtObjectPtr ptr, int limit){ + static_cast(ptr)->setUndoLimit(limit); +} + +int QUndoStack_UndoLimit(QtObjectPtr ptr){ + return static_cast(ptr)->undoLimit(); +} + +QtObjectPtr QUndoStack_NewQUndoStack(QtObjectPtr parent){ + return new QUndoStack(static_cast(parent)); +} + +void QUndoStack_BeginMacro(QtObjectPtr ptr, char* text){ + static_cast(ptr)->beginMacro(QString(text)); +} + +int QUndoStack_CanRedo(QtObjectPtr ptr){ + return static_cast(ptr)->canRedo(); +} + +void QUndoStack_ConnectCanRedoChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QUndoStack::canRedoChanged), static_cast(ptr), static_cast(&MyQUndoStack::Signal_CanRedoChanged));; +} + +void QUndoStack_DisconnectCanRedoChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QUndoStack::canRedoChanged), static_cast(ptr), static_cast(&MyQUndoStack::Signal_CanRedoChanged));; +} + +int QUndoStack_CanUndo(QtObjectPtr ptr){ + return static_cast(ptr)->canUndo(); +} + +void QUndoStack_ConnectCanUndoChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QUndoStack::canUndoChanged), static_cast(ptr), static_cast(&MyQUndoStack::Signal_CanUndoChanged));; +} + +void QUndoStack_DisconnectCanUndoChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QUndoStack::canUndoChanged), static_cast(ptr), static_cast(&MyQUndoStack::Signal_CanUndoChanged));; +} + +void QUndoStack_ConnectCleanChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QUndoStack::cleanChanged), static_cast(ptr), static_cast(&MyQUndoStack::Signal_CleanChanged));; +} + +void QUndoStack_DisconnectCleanChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QUndoStack::cleanChanged), static_cast(ptr), static_cast(&MyQUndoStack::Signal_CleanChanged));; +} + +int QUndoStack_CleanIndex(QtObjectPtr ptr){ + return static_cast(ptr)->cleanIndex(); +} + +void QUndoStack_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +QtObjectPtr QUndoStack_Command(QtObjectPtr ptr, int index){ + return const_cast(static_cast(ptr)->command(index)); +} + +int QUndoStack_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +QtObjectPtr QUndoStack_CreateRedoAction(QtObjectPtr ptr, QtObjectPtr parent, char* prefix){ + return static_cast(ptr)->createRedoAction(static_cast(parent), QString(prefix)); +} + +QtObjectPtr QUndoStack_CreateUndoAction(QtObjectPtr ptr, QtObjectPtr parent, char* prefix){ + return static_cast(ptr)->createUndoAction(static_cast(parent), QString(prefix)); +} + +void QUndoStack_EndMacro(QtObjectPtr ptr){ + static_cast(ptr)->endMacro(); +} + +int QUndoStack_Index(QtObjectPtr ptr){ + return static_cast(ptr)->index(); +} + +void QUndoStack_ConnectIndexChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QUndoStack::indexChanged), static_cast(ptr), static_cast(&MyQUndoStack::Signal_IndexChanged));; +} + +void QUndoStack_DisconnectIndexChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QUndoStack::indexChanged), static_cast(ptr), static_cast(&MyQUndoStack::Signal_IndexChanged));; +} + +int QUndoStack_IsClean(QtObjectPtr ptr){ + return static_cast(ptr)->isClean(); +} + +void QUndoStack_Push(QtObjectPtr ptr, QtObjectPtr cmd){ + static_cast(ptr)->push(static_cast(cmd)); +} + +void QUndoStack_Redo(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "redo"); +} + +char* QUndoStack_RedoText(QtObjectPtr ptr){ + return static_cast(ptr)->redoText().toUtf8().data(); +} + +void QUndoStack_ConnectRedoTextChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QUndoStack::redoTextChanged), static_cast(ptr), static_cast(&MyQUndoStack::Signal_RedoTextChanged));; +} + +void QUndoStack_DisconnectRedoTextChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QUndoStack::redoTextChanged), static_cast(ptr), static_cast(&MyQUndoStack::Signal_RedoTextChanged));; +} + +void QUndoStack_SetClean(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "setClean"); +} + +void QUndoStack_SetIndex(QtObjectPtr ptr, int idx){ + QMetaObject::invokeMethod(static_cast(ptr), "setIndex", Q_ARG(int, idx)); +} + +char* QUndoStack_Text(QtObjectPtr ptr, int idx){ + return static_cast(ptr)->text(idx).toUtf8().data(); +} + +void QUndoStack_Undo(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "undo"); +} + +char* QUndoStack_UndoText(QtObjectPtr ptr){ + return static_cast(ptr)->undoText().toUtf8().data(); +} + +void QUndoStack_ConnectUndoTextChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QUndoStack::undoTextChanged), static_cast(ptr), static_cast(&MyQUndoStack::Signal_UndoTextChanged));; +} + +void QUndoStack_DisconnectUndoTextChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QUndoStack::undoTextChanged), static_cast(ptr), static_cast(&MyQUndoStack::Signal_UndoTextChanged));; +} + +void QUndoStack_DestroyQUndoStack(QtObjectPtr ptr){ + static_cast(ptr)->~QUndoStack(); +} + diff --git a/widgets/qundostack.go b/widgets/qundostack.go new file mode 100755 index 00000000..ccac14aa --- /dev/null +++ b/widgets/qundostack.go @@ -0,0 +1,321 @@ +package widgets + +//#include "qundostack.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QUndoStack struct { + core.QObject +} + +type QUndoStackITF interface { + core.QObjectITF + QUndoStackPTR() *QUndoStack +} + +func PointerFromQUndoStack(ptr QUndoStackITF) unsafe.Pointer { + if ptr != nil { + return ptr.QUndoStackPTR().Pointer() + } + return nil +} + +func QUndoStackFromPointer(ptr unsafe.Pointer) *QUndoStack { + var n = new(QUndoStack) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QUndoStack_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QUndoStack) QUndoStackPTR() *QUndoStack { + return ptr +} + +func (ptr *QUndoStack) IsActive() bool { + if ptr.Pointer() != nil { + return C.QUndoStack_IsActive(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QUndoStack) SetActive(active bool) { + if ptr.Pointer() != nil { + C.QUndoStack_SetActive(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(active))) + } +} + +func (ptr *QUndoStack) SetUndoLimit(limit int) { + if ptr.Pointer() != nil { + C.QUndoStack_SetUndoLimit(C.QtObjectPtr(ptr.Pointer()), C.int(limit)) + } +} + +func (ptr *QUndoStack) UndoLimit() int { + if ptr.Pointer() != nil { + return int(C.QUndoStack_UndoLimit(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQUndoStack(parent core.QObjectITF) *QUndoStack { + return QUndoStackFromPointer(unsafe.Pointer(C.QUndoStack_NewQUndoStack(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QUndoStack) BeginMacro(text string) { + if ptr.Pointer() != nil { + C.QUndoStack_BeginMacro(C.QtObjectPtr(ptr.Pointer()), C.CString(text)) + } +} + +func (ptr *QUndoStack) CanRedo() bool { + if ptr.Pointer() != nil { + return C.QUndoStack_CanRedo(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QUndoStack) ConnectCanRedoChanged(f func(canRedo bool)) { + if ptr.Pointer() != nil { + C.QUndoStack_ConnectCanRedoChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "canRedoChanged", f) + } +} + +func (ptr *QUndoStack) DisconnectCanRedoChanged() { + if ptr.Pointer() != nil { + C.QUndoStack_DisconnectCanRedoChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "canRedoChanged") + } +} + +//export callbackQUndoStackCanRedoChanged +func callbackQUndoStackCanRedoChanged(ptrName *C.char, canRedo C.int) { + qt.GetSignal(C.GoString(ptrName), "canRedoChanged").(func(bool))(int(canRedo) != 0) +} + +func (ptr *QUndoStack) CanUndo() bool { + if ptr.Pointer() != nil { + return C.QUndoStack_CanUndo(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QUndoStack) ConnectCanUndoChanged(f func(canUndo bool)) { + if ptr.Pointer() != nil { + C.QUndoStack_ConnectCanUndoChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "canUndoChanged", f) + } +} + +func (ptr *QUndoStack) DisconnectCanUndoChanged() { + if ptr.Pointer() != nil { + C.QUndoStack_DisconnectCanUndoChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "canUndoChanged") + } +} + +//export callbackQUndoStackCanUndoChanged +func callbackQUndoStackCanUndoChanged(ptrName *C.char, canUndo C.int) { + qt.GetSignal(C.GoString(ptrName), "canUndoChanged").(func(bool))(int(canUndo) != 0) +} + +func (ptr *QUndoStack) ConnectCleanChanged(f func(clean bool)) { + if ptr.Pointer() != nil { + C.QUndoStack_ConnectCleanChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "cleanChanged", f) + } +} + +func (ptr *QUndoStack) DisconnectCleanChanged() { + if ptr.Pointer() != nil { + C.QUndoStack_DisconnectCleanChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "cleanChanged") + } +} + +//export callbackQUndoStackCleanChanged +func callbackQUndoStackCleanChanged(ptrName *C.char, clean C.int) { + qt.GetSignal(C.GoString(ptrName), "cleanChanged").(func(bool))(int(clean) != 0) +} + +func (ptr *QUndoStack) CleanIndex() int { + if ptr.Pointer() != nil { + return int(C.QUndoStack_CleanIndex(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QUndoStack) Clear() { + if ptr.Pointer() != nil { + C.QUndoStack_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QUndoStack) Command(index int) *QUndoCommand { + if ptr.Pointer() != nil { + return QUndoCommandFromPointer(unsafe.Pointer(C.QUndoStack_Command(C.QtObjectPtr(ptr.Pointer()), C.int(index)))) + } + return nil +} + +func (ptr *QUndoStack) Count() int { + if ptr.Pointer() != nil { + return int(C.QUndoStack_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QUndoStack) CreateRedoAction(parent core.QObjectITF, prefix string) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QUndoStack_CreateRedoAction(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(parent)), C.CString(prefix)))) + } + return nil +} + +func (ptr *QUndoStack) CreateUndoAction(parent core.QObjectITF, prefix string) *QAction { + if ptr.Pointer() != nil { + return QActionFromPointer(unsafe.Pointer(C.QUndoStack_CreateUndoAction(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQObject(parent)), C.CString(prefix)))) + } + return nil +} + +func (ptr *QUndoStack) EndMacro() { + if ptr.Pointer() != nil { + C.QUndoStack_EndMacro(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QUndoStack) Index() int { + if ptr.Pointer() != nil { + return int(C.QUndoStack_Index(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QUndoStack) ConnectIndexChanged(f func(idx int)) { + if ptr.Pointer() != nil { + C.QUndoStack_ConnectIndexChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "indexChanged", f) + } +} + +func (ptr *QUndoStack) DisconnectIndexChanged() { + if ptr.Pointer() != nil { + C.QUndoStack_DisconnectIndexChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "indexChanged") + } +} + +//export callbackQUndoStackIndexChanged +func callbackQUndoStackIndexChanged(ptrName *C.char, idx C.int) { + qt.GetSignal(C.GoString(ptrName), "indexChanged").(func(int))(int(idx)) +} + +func (ptr *QUndoStack) IsClean() bool { + if ptr.Pointer() != nil { + return C.QUndoStack_IsClean(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QUndoStack) Push(cmd QUndoCommandITF) { + if ptr.Pointer() != nil { + C.QUndoStack_Push(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQUndoCommand(cmd))) + } +} + +func (ptr *QUndoStack) Redo() { + if ptr.Pointer() != nil { + C.QUndoStack_Redo(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QUndoStack) RedoText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QUndoStack_RedoText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QUndoStack) ConnectRedoTextChanged(f func(redoText string)) { + if ptr.Pointer() != nil { + C.QUndoStack_ConnectRedoTextChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "redoTextChanged", f) + } +} + +func (ptr *QUndoStack) DisconnectRedoTextChanged() { + if ptr.Pointer() != nil { + C.QUndoStack_DisconnectRedoTextChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "redoTextChanged") + } +} + +//export callbackQUndoStackRedoTextChanged +func callbackQUndoStackRedoTextChanged(ptrName *C.char, redoText *C.char) { + qt.GetSignal(C.GoString(ptrName), "redoTextChanged").(func(string))(C.GoString(redoText)) +} + +func (ptr *QUndoStack) SetClean() { + if ptr.Pointer() != nil { + C.QUndoStack_SetClean(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QUndoStack) SetIndex(idx int) { + if ptr.Pointer() != nil { + C.QUndoStack_SetIndex(C.QtObjectPtr(ptr.Pointer()), C.int(idx)) + } +} + +func (ptr *QUndoStack) Text(idx int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QUndoStack_Text(C.QtObjectPtr(ptr.Pointer()), C.int(idx))) + } + return "" +} + +func (ptr *QUndoStack) Undo() { + if ptr.Pointer() != nil { + C.QUndoStack_Undo(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QUndoStack) UndoText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QUndoStack_UndoText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QUndoStack) ConnectUndoTextChanged(f func(undoText string)) { + if ptr.Pointer() != nil { + C.QUndoStack_ConnectUndoTextChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "undoTextChanged", f) + } +} + +func (ptr *QUndoStack) DisconnectUndoTextChanged() { + if ptr.Pointer() != nil { + C.QUndoStack_DisconnectUndoTextChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "undoTextChanged") + } +} + +//export callbackQUndoStackUndoTextChanged +func callbackQUndoStackUndoTextChanged(ptrName *C.char, undoText *C.char) { + qt.GetSignal(C.GoString(ptrName), "undoTextChanged").(func(string))(C.GoString(undoText)) +} + +func (ptr *QUndoStack) DestroyQUndoStack() { + if ptr.Pointer() != nil { + C.QUndoStack_DestroyQUndoStack(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qundostack.h b/widgets/qundostack.h new file mode 100755 index 00000000..679fb671 --- /dev/null +++ b/widgets/qundostack.h @@ -0,0 +1,47 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QUndoStack_IsActive(QtObjectPtr ptr); +void QUndoStack_SetActive(QtObjectPtr ptr, int active); +void QUndoStack_SetUndoLimit(QtObjectPtr ptr, int limit); +int QUndoStack_UndoLimit(QtObjectPtr ptr); +QtObjectPtr QUndoStack_NewQUndoStack(QtObjectPtr parent); +void QUndoStack_BeginMacro(QtObjectPtr ptr, char* text); +int QUndoStack_CanRedo(QtObjectPtr ptr); +void QUndoStack_ConnectCanRedoChanged(QtObjectPtr ptr); +void QUndoStack_DisconnectCanRedoChanged(QtObjectPtr ptr); +int QUndoStack_CanUndo(QtObjectPtr ptr); +void QUndoStack_ConnectCanUndoChanged(QtObjectPtr ptr); +void QUndoStack_DisconnectCanUndoChanged(QtObjectPtr ptr); +void QUndoStack_ConnectCleanChanged(QtObjectPtr ptr); +void QUndoStack_DisconnectCleanChanged(QtObjectPtr ptr); +int QUndoStack_CleanIndex(QtObjectPtr ptr); +void QUndoStack_Clear(QtObjectPtr ptr); +QtObjectPtr QUndoStack_Command(QtObjectPtr ptr, int index); +int QUndoStack_Count(QtObjectPtr ptr); +QtObjectPtr QUndoStack_CreateRedoAction(QtObjectPtr ptr, QtObjectPtr parent, char* prefix); +QtObjectPtr QUndoStack_CreateUndoAction(QtObjectPtr ptr, QtObjectPtr parent, char* prefix); +void QUndoStack_EndMacro(QtObjectPtr ptr); +int QUndoStack_Index(QtObjectPtr ptr); +void QUndoStack_ConnectIndexChanged(QtObjectPtr ptr); +void QUndoStack_DisconnectIndexChanged(QtObjectPtr ptr); +int QUndoStack_IsClean(QtObjectPtr ptr); +void QUndoStack_Push(QtObjectPtr ptr, QtObjectPtr cmd); +void QUndoStack_Redo(QtObjectPtr ptr); +char* QUndoStack_RedoText(QtObjectPtr ptr); +void QUndoStack_ConnectRedoTextChanged(QtObjectPtr ptr); +void QUndoStack_DisconnectRedoTextChanged(QtObjectPtr ptr); +void QUndoStack_SetClean(QtObjectPtr ptr); +void QUndoStack_SetIndex(QtObjectPtr ptr, int idx); +char* QUndoStack_Text(QtObjectPtr ptr, int idx); +void QUndoStack_Undo(QtObjectPtr ptr); +char* QUndoStack_UndoText(QtObjectPtr ptr); +void QUndoStack_ConnectUndoTextChanged(QtObjectPtr ptr); +void QUndoStack_DisconnectUndoTextChanged(QtObjectPtr ptr); +void QUndoStack_DestroyQUndoStack(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qundoview.cpp b/widgets/qundoview.cpp new file mode 100755 index 00000000..9053fb6a --- /dev/null +++ b/widgets/qundoview.cpp @@ -0,0 +1,61 @@ +#include "qundoview.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQUndoView: public QUndoView { +public: +}; + +char* QUndoView_EmptyLabel(QtObjectPtr ptr){ + return static_cast(ptr)->emptyLabel().toUtf8().data(); +} + +void QUndoView_SetCleanIcon(QtObjectPtr ptr, QtObjectPtr icon){ + static_cast(ptr)->setCleanIcon(*static_cast(icon)); +} + +void QUndoView_SetEmptyLabel(QtObjectPtr ptr, char* label){ + static_cast(ptr)->setEmptyLabel(QString(label)); +} + +QtObjectPtr QUndoView_NewQUndoView3(QtObjectPtr group, QtObjectPtr parent){ + return new QUndoView(static_cast(group), static_cast(parent)); +} + +QtObjectPtr QUndoView_NewQUndoView2(QtObjectPtr stack, QtObjectPtr parent){ + return new QUndoView(static_cast(stack), static_cast(parent)); +} + +QtObjectPtr QUndoView_NewQUndoView(QtObjectPtr parent){ + return new QUndoView(static_cast(parent)); +} + +QtObjectPtr QUndoView_Group(QtObjectPtr ptr){ + return static_cast(ptr)->group(); +} + +void QUndoView_SetGroup(QtObjectPtr ptr, QtObjectPtr group){ + QMetaObject::invokeMethod(static_cast(ptr), "setGroup", Q_ARG(QUndoGroup*, static_cast(group))); +} + +void QUndoView_SetStack(QtObjectPtr ptr, QtObjectPtr stack){ + QMetaObject::invokeMethod(static_cast(ptr), "setStack", Q_ARG(QUndoStack*, static_cast(stack))); +} + +QtObjectPtr QUndoView_Stack(QtObjectPtr ptr){ + return static_cast(ptr)->stack(); +} + +void QUndoView_DestroyQUndoView(QtObjectPtr ptr){ + static_cast(ptr)->~QUndoView(); +} + diff --git a/widgets/qundoview.go b/widgets/qundoview.go new file mode 100755 index 00000000..b3d45807 --- /dev/null +++ b/widgets/qundoview.go @@ -0,0 +1,102 @@ +package widgets + +//#include "qundoview.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QUndoView struct { + QListView +} + +type QUndoViewITF interface { + QListViewITF + QUndoViewPTR() *QUndoView +} + +func PointerFromQUndoView(ptr QUndoViewITF) unsafe.Pointer { + if ptr != nil { + return ptr.QUndoViewPTR().Pointer() + } + return nil +} + +func QUndoViewFromPointer(ptr unsafe.Pointer) *QUndoView { + var n = new(QUndoView) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QUndoView_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QUndoView) QUndoViewPTR() *QUndoView { + return ptr +} + +func (ptr *QUndoView) EmptyLabel() string { + if ptr.Pointer() != nil { + return C.GoString(C.QUndoView_EmptyLabel(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QUndoView) SetCleanIcon(icon gui.QIconITF) { + if ptr.Pointer() != nil { + C.QUndoView_SetCleanIcon(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQIcon(icon))) + } +} + +func (ptr *QUndoView) SetEmptyLabel(label string) { + if ptr.Pointer() != nil { + C.QUndoView_SetEmptyLabel(C.QtObjectPtr(ptr.Pointer()), C.CString(label)) + } +} + +func NewQUndoView3(group QUndoGroupITF, parent QWidgetITF) *QUndoView { + return QUndoViewFromPointer(unsafe.Pointer(C.QUndoView_NewQUndoView3(C.QtObjectPtr(PointerFromQUndoGroup(group)), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQUndoView2(stack QUndoStackITF, parent QWidgetITF) *QUndoView { + return QUndoViewFromPointer(unsafe.Pointer(C.QUndoView_NewQUndoView2(C.QtObjectPtr(PointerFromQUndoStack(stack)), C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func NewQUndoView(parent QWidgetITF) *QUndoView { + return QUndoViewFromPointer(unsafe.Pointer(C.QUndoView_NewQUndoView(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QUndoView) Group() *QUndoGroup { + if ptr.Pointer() != nil { + return QUndoGroupFromPointer(unsafe.Pointer(C.QUndoView_Group(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QUndoView) SetGroup(group QUndoGroupITF) { + if ptr.Pointer() != nil { + C.QUndoView_SetGroup(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQUndoGroup(group))) + } +} + +func (ptr *QUndoView) SetStack(stack QUndoStackITF) { + if ptr.Pointer() != nil { + C.QUndoView_SetStack(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQUndoStack(stack))) + } +} + +func (ptr *QUndoView) Stack() *QUndoStack { + if ptr.Pointer() != nil { + return QUndoStackFromPointer(unsafe.Pointer(C.QUndoView_Stack(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QUndoView) DestroyQUndoView() { + if ptr.Pointer() != nil { + C.QUndoView_DestroyQUndoView(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qundoview.h b/widgets/qundoview.h new file mode 100755 index 00000000..94d63820 --- /dev/null +++ b/widgets/qundoview.h @@ -0,0 +1,20 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QUndoView_EmptyLabel(QtObjectPtr ptr); +void QUndoView_SetCleanIcon(QtObjectPtr ptr, QtObjectPtr icon); +void QUndoView_SetEmptyLabel(QtObjectPtr ptr, char* label); +QtObjectPtr QUndoView_NewQUndoView3(QtObjectPtr group, QtObjectPtr parent); +QtObjectPtr QUndoView_NewQUndoView2(QtObjectPtr stack, QtObjectPtr parent); +QtObjectPtr QUndoView_NewQUndoView(QtObjectPtr parent); +QtObjectPtr QUndoView_Group(QtObjectPtr ptr); +void QUndoView_SetGroup(QtObjectPtr ptr, QtObjectPtr group); +void QUndoView_SetStack(QtObjectPtr ptr, QtObjectPtr stack); +QtObjectPtr QUndoView_Stack(QtObjectPtr ptr); +void QUndoView_DestroyQUndoView(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qvboxlayout.cpp b/widgets/qvboxlayout.cpp new file mode 100755 index 00000000..f21abb40 --- /dev/null +++ b/widgets/qvboxlayout.cpp @@ -0,0 +1,25 @@ +#include "qvboxlayout.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQVBoxLayout: public QVBoxLayout { +public: +}; + +QtObjectPtr QVBoxLayout_NewQVBoxLayout(){ + return new QVBoxLayout(); +} + +QtObjectPtr QVBoxLayout_NewQVBoxLayout2(QtObjectPtr parent){ + return new QVBoxLayout(static_cast(parent)); +} + +void QVBoxLayout_DestroyQVBoxLayout(QtObjectPtr ptr){ + static_cast(ptr)->~QVBoxLayout(); +} + diff --git a/widgets/qvboxlayout.go b/widgets/qvboxlayout.go new file mode 100755 index 00000000..adacc810 --- /dev/null +++ b/widgets/qvboxlayout.go @@ -0,0 +1,52 @@ +package widgets + +//#include "qvboxlayout.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QVBoxLayout struct { + QBoxLayout +} + +type QVBoxLayoutITF interface { + QBoxLayoutITF + QVBoxLayoutPTR() *QVBoxLayout +} + +func PointerFromQVBoxLayout(ptr QVBoxLayoutITF) unsafe.Pointer { + if ptr != nil { + return ptr.QVBoxLayoutPTR().Pointer() + } + return nil +} + +func QVBoxLayoutFromPointer(ptr unsafe.Pointer) *QVBoxLayout { + var n = new(QVBoxLayout) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QVBoxLayout_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QVBoxLayout) QVBoxLayoutPTR() *QVBoxLayout { + return ptr +} + +func NewQVBoxLayout() *QVBoxLayout { + return QVBoxLayoutFromPointer(unsafe.Pointer(C.QVBoxLayout_NewQVBoxLayout())) +} + +func NewQVBoxLayout2(parent QWidgetITF) *QVBoxLayout { + return QVBoxLayoutFromPointer(unsafe.Pointer(C.QVBoxLayout_NewQVBoxLayout2(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QVBoxLayout) DestroyQVBoxLayout() { + if ptr.Pointer() != nil { + C.QVBoxLayout_DestroyQVBoxLayout(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qvboxlayout.h b/widgets/qvboxlayout.h new file mode 100755 index 00000000..eb91fe2d --- /dev/null +++ b/widgets/qvboxlayout.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QVBoxLayout_NewQVBoxLayout(); +QtObjectPtr QVBoxLayout_NewQVBoxLayout2(QtObjectPtr parent); +void QVBoxLayout_DestroyQVBoxLayout(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qwhatsthis.cpp b/widgets/qwhatsthis.cpp new file mode 100755 index 00000000..3e1d84de --- /dev/null +++ b/widgets/qwhatsthis.cpp @@ -0,0 +1,39 @@ +#include "qwhatsthis.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQWhatsThis: public QWhatsThis { +public: +}; + +QtObjectPtr QWhatsThis_QWhatsThis_CreateAction(QtObjectPtr parent){ + return QWhatsThis::createAction(static_cast(parent)); +} + +void QWhatsThis_QWhatsThis_EnterWhatsThisMode(){ + QWhatsThis::enterWhatsThisMode(); +} + +void QWhatsThis_QWhatsThis_HideText(){ + QWhatsThis::hideText(); +} + +int QWhatsThis_QWhatsThis_InWhatsThisMode(){ + return QWhatsThis::inWhatsThisMode(); +} + +void QWhatsThis_QWhatsThis_LeaveWhatsThisMode(){ + QWhatsThis::leaveWhatsThisMode(); +} + +void QWhatsThis_QWhatsThis_ShowText(QtObjectPtr pos, char* text, QtObjectPtr w){ + QWhatsThis::showText(*static_cast(pos), QString(text), static_cast(w)); +} + diff --git a/widgets/qwhatsthis.go b/widgets/qwhatsthis.go new file mode 100755 index 00000000..96074b74 --- /dev/null +++ b/widgets/qwhatsthis.go @@ -0,0 +1,65 @@ +package widgets + +//#include "qwhatsthis.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QWhatsThis struct { + ptr unsafe.Pointer +} + +type QWhatsThisITF interface { + QWhatsThisPTR() *QWhatsThis +} + +func (p *QWhatsThis) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QWhatsThis) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQWhatsThis(ptr QWhatsThisITF) unsafe.Pointer { + if ptr != nil { + return ptr.QWhatsThisPTR().Pointer() + } + return nil +} + +func QWhatsThisFromPointer(ptr unsafe.Pointer) *QWhatsThis { + var n = new(QWhatsThis) + n.SetPointer(ptr) + return n +} + +func (ptr *QWhatsThis) QWhatsThisPTR() *QWhatsThis { + return ptr +} + +func QWhatsThis_CreateAction(parent core.QObjectITF) *QAction { + return QActionFromPointer(unsafe.Pointer(C.QWhatsThis_QWhatsThis_CreateAction(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func QWhatsThis_EnterWhatsThisMode() { + C.QWhatsThis_QWhatsThis_EnterWhatsThisMode() +} + +func QWhatsThis_HideText() { + C.QWhatsThis_QWhatsThis_HideText() +} + +func QWhatsThis_InWhatsThisMode() bool { + return C.QWhatsThis_QWhatsThis_InWhatsThisMode() != 0 +} + +func QWhatsThis_LeaveWhatsThisMode() { + C.QWhatsThis_QWhatsThis_LeaveWhatsThisMode() +} + +func QWhatsThis_ShowText(pos core.QPointITF, text string, w QWidgetITF) { + C.QWhatsThis_QWhatsThis_ShowText(C.QtObjectPtr(core.PointerFromQPoint(pos)), C.CString(text), C.QtObjectPtr(PointerFromQWidget(w))) +} diff --git a/widgets/qwhatsthis.h b/widgets/qwhatsthis.h new file mode 100755 index 00000000..54c9963e --- /dev/null +++ b/widgets/qwhatsthis.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QWhatsThis_QWhatsThis_CreateAction(QtObjectPtr parent); +void QWhatsThis_QWhatsThis_EnterWhatsThisMode(); +void QWhatsThis_QWhatsThis_HideText(); +int QWhatsThis_QWhatsThis_InWhatsThisMode(); +void QWhatsThis_QWhatsThis_LeaveWhatsThisMode(); +void QWhatsThis_QWhatsThis_ShowText(QtObjectPtr pos, char* text, QtObjectPtr w); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qwidget.cpp b/widgets/qwidget.cpp new file mode 100755 index 00000000..526c2144 --- /dev/null +++ b/widgets/qwidget.cpp @@ -0,0 +1,825 @@ +#include "qwidget.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQWidget: public QWidget { +public: +void Signal_WindowIconTextChanged(const QString & iconText){callbackQWidgetWindowIconTextChanged(this->objectName().toUtf8().data(), iconText.toUtf8().data());}; +void Signal_WindowTitleChanged(const QString & title){callbackQWidgetWindowTitleChanged(this->objectName().toUtf8().data(), title.toUtf8().data());}; +}; + +int QWidget_AcceptDrops(QtObjectPtr ptr){ + return static_cast(ptr)->acceptDrops(); +} + +char* QWidget_AccessibleDescription(QtObjectPtr ptr){ + return static_cast(ptr)->accessibleDescription().toUtf8().data(); +} + +char* QWidget_AccessibleName(QtObjectPtr ptr){ + return static_cast(ptr)->accessibleName().toUtf8().data(); +} + +void QWidget_ActivateWindow(QtObjectPtr ptr){ + static_cast(ptr)->activateWindow(); +} + +int QWidget_AutoFillBackground(QtObjectPtr ptr){ + return static_cast(ptr)->autoFillBackground(); +} + +void QWidget_ClearMask(QtObjectPtr ptr){ + static_cast(ptr)->clearMask(); +} + +int QWidget_ContextMenuPolicy(QtObjectPtr ptr){ + return static_cast(ptr)->contextMenuPolicy(); +} + +int QWidget_FocusPolicy(QtObjectPtr ptr){ + return static_cast(ptr)->focusPolicy(); +} + +void QWidget_GrabKeyboard(QtObjectPtr ptr){ + static_cast(ptr)->grabKeyboard(); +} + +void QWidget_GrabMouse(QtObjectPtr ptr){ + static_cast(ptr)->grabMouse(); +} + +void QWidget_GrabMouse2(QtObjectPtr ptr, QtObjectPtr cursor){ + static_cast(ptr)->grabMouse(*static_cast(cursor)); +} + +int QWidget_HasFocus(QtObjectPtr ptr){ + return static_cast(ptr)->hasFocus(); +} + +int QWidget_InputMethodHints(QtObjectPtr ptr){ + return static_cast(ptr)->inputMethodHints(); +} + +int QWidget_IsActiveWindow(QtObjectPtr ptr){ + return static_cast(ptr)->isActiveWindow(); +} + +int QWidget_IsFullScreen(QtObjectPtr ptr){ + return static_cast(ptr)->isFullScreen(); +} + +int QWidget_IsMaximized(QtObjectPtr ptr){ + return static_cast(ptr)->isMaximized(); +} + +int QWidget_IsMinimized(QtObjectPtr ptr){ + return static_cast(ptr)->isMinimized(); +} + +int QWidget_IsWindowModified(QtObjectPtr ptr){ + return static_cast(ptr)->isWindowModified(); +} + +QtObjectPtr QWidget_QWidget_KeyboardGrabber(){ + return QWidget::keyboardGrabber(); +} + +int QWidget_LayoutDirection(QtObjectPtr ptr){ + return static_cast(ptr)->layoutDirection(); +} + +QtObjectPtr QWidget_QWidget_MouseGrabber(){ + return QWidget::mouseGrabber(); +} + +void QWidget_Move(QtObjectPtr ptr, QtObjectPtr v){ + static_cast(ptr)->move(*static_cast(v)); +} + +QtObjectPtr QWidget_PaintEngine(QtObjectPtr ptr){ + return static_cast(ptr)->paintEngine(); +} + +void QWidget_ReleaseKeyboard(QtObjectPtr ptr){ + static_cast(ptr)->releaseKeyboard(); +} + +void QWidget_ReleaseMouse(QtObjectPtr ptr){ + static_cast(ptr)->releaseMouse(); +} + +void QWidget_Resize(QtObjectPtr ptr, QtObjectPtr v){ + static_cast(ptr)->resize(*static_cast(v)); +} + +void QWidget_SetAcceptDrops(QtObjectPtr ptr, int on){ + static_cast(ptr)->setAcceptDrops(on != 0); +} + +void QWidget_SetAccessibleDescription(QtObjectPtr ptr, char* description){ + static_cast(ptr)->setAccessibleDescription(QString(description)); +} + +void QWidget_SetAccessibleName(QtObjectPtr ptr, char* name){ + static_cast(ptr)->setAccessibleName(QString(name)); +} + +void QWidget_SetAutoFillBackground(QtObjectPtr ptr, int enabled){ + static_cast(ptr)->setAutoFillBackground(enabled != 0); +} + +void QWidget_SetContextMenuPolicy(QtObjectPtr ptr, int policy){ + static_cast(ptr)->setContextMenuPolicy(static_cast(policy)); +} + +void QWidget_SetCursor(QtObjectPtr ptr, QtObjectPtr v){ + static_cast(ptr)->setCursor(*static_cast(v)); +} + +void QWidget_SetEnabled(QtObjectPtr ptr, int v){ + QMetaObject::invokeMethod(static_cast(ptr), "setEnabled", Q_ARG(bool, v != 0)); +} + +void QWidget_SetFixedSize2(QtObjectPtr ptr, int w, int h){ + static_cast(ptr)->setFixedSize(w, h); +} + +void QWidget_SetFocusPolicy(QtObjectPtr ptr, int policy){ + static_cast(ptr)->setFocusPolicy(static_cast(policy)); +} + +void QWidget_SetFont(QtObjectPtr ptr, QtObjectPtr v){ + static_cast(ptr)->setFont(*static_cast(v)); +} + +void QWidget_SetGeometry(QtObjectPtr ptr, QtObjectPtr v){ + static_cast(ptr)->setGeometry(*static_cast(v)); +} + +void QWidget_SetInputMethodHints(QtObjectPtr ptr, int hints){ + static_cast(ptr)->setInputMethodHints(static_cast(hints)); +} + +void QWidget_SetLayout(QtObjectPtr ptr, QtObjectPtr layout){ + static_cast(ptr)->setLayout(static_cast(layout)); +} + +void QWidget_SetLayoutDirection(QtObjectPtr ptr, int direction){ + static_cast(ptr)->setLayoutDirection(static_cast(direction)); +} + +void QWidget_SetLocale(QtObjectPtr ptr, QtObjectPtr locale){ + static_cast(ptr)->setLocale(*static_cast(locale)); +} + +void QWidget_SetMask(QtObjectPtr ptr, QtObjectPtr bitmap){ + static_cast(ptr)->setMask(*static_cast(bitmap)); +} + +void QWidget_SetMask2(QtObjectPtr ptr, QtObjectPtr region){ + static_cast(ptr)->setMask(*static_cast(region)); +} + +void QWidget_SetMaximumHeight(QtObjectPtr ptr, int maxh){ + static_cast(ptr)->setMaximumHeight(maxh); +} + +void QWidget_SetMaximumWidth(QtObjectPtr ptr, int maxw){ + static_cast(ptr)->setMaximumWidth(maxw); +} + +void QWidget_SetMinimumHeight(QtObjectPtr ptr, int minh){ + static_cast(ptr)->setMinimumHeight(minh); +} + +void QWidget_SetMinimumWidth(QtObjectPtr ptr, int minw){ + static_cast(ptr)->setMinimumWidth(minw); +} + +void QWidget_SetPalette(QtObjectPtr ptr, QtObjectPtr v){ + static_cast(ptr)->setPalette(*static_cast(v)); +} + +void QWidget_SetSizePolicy(QtObjectPtr ptr, QtObjectPtr v){ + static_cast(ptr)->setSizePolicy(*static_cast(v)); +} + +void QWidget_SetStatusTip(QtObjectPtr ptr, char* v){ + static_cast(ptr)->setStatusTip(QString(v)); +} + +void QWidget_SetStyleSheet(QtObjectPtr ptr, char* styleSheet){ + QMetaObject::invokeMethod(static_cast(ptr), "setStyleSheet", Q_ARG(QString, QString(styleSheet))); +} + +void QWidget_SetToolTip(QtObjectPtr ptr, char* v){ + static_cast(ptr)->setToolTip(QString(v)); +} + +void QWidget_SetToolTipDuration(QtObjectPtr ptr, int msec){ + static_cast(ptr)->setToolTipDuration(msec); +} + +void QWidget_SetUpdatesEnabled(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setUpdatesEnabled(enable != 0); +} + +void QWidget_SetVisible(QtObjectPtr ptr, int visible){ + QMetaObject::invokeMethod(static_cast(ptr), "setVisible", Q_ARG(bool, visible != 0)); +} + +void QWidget_SetWhatsThis(QtObjectPtr ptr, char* v){ + static_cast(ptr)->setWhatsThis(QString(v)); +} + +void QWidget_SetWindowFilePath(QtObjectPtr ptr, char* filePath){ + static_cast(ptr)->setWindowFilePath(QString(filePath)); +} + +void QWidget_SetWindowFlags(QtObjectPtr ptr, int ty){ + static_cast(ptr)->setWindowFlags(static_cast(ty)); +} + +void QWidget_SetWindowIcon(QtObjectPtr ptr, QtObjectPtr icon){ + static_cast(ptr)->setWindowIcon(*static_cast(icon)); +} + +void QWidget_SetWindowIconText(QtObjectPtr ptr, char* v){ + static_cast(ptr)->setWindowIconText(QString(v)); +} + +void QWidget_SetWindowModality(QtObjectPtr ptr, int windowModality){ + static_cast(ptr)->setWindowModality(static_cast(windowModality)); +} + +void QWidget_SetWindowModified(QtObjectPtr ptr, int v){ + QMetaObject::invokeMethod(static_cast(ptr), "setWindowModified", Q_ARG(bool, v != 0)); +} + +void QWidget_SetWindowState(QtObjectPtr ptr, int windowState){ + static_cast(ptr)->setWindowState(static_cast(windowState)); +} + +void QWidget_SetWindowTitle(QtObjectPtr ptr, char* v){ + QMetaObject::invokeMethod(static_cast(ptr), "setWindowTitle", Q_ARG(QString, QString(v))); +} + +char* QWidget_StatusTip(QtObjectPtr ptr){ + return static_cast(ptr)->statusTip().toUtf8().data(); +} + +char* QWidget_StyleSheet(QtObjectPtr ptr){ + return static_cast(ptr)->styleSheet().toUtf8().data(); +} + +char* QWidget_ToolTip(QtObjectPtr ptr){ + return static_cast(ptr)->toolTip().toUtf8().data(); +} + +int QWidget_ToolTipDuration(QtObjectPtr ptr){ + return static_cast(ptr)->toolTipDuration(); +} + +void QWidget_UnsetCursor(QtObjectPtr ptr){ + static_cast(ptr)->unsetCursor(); +} + +void QWidget_UnsetLayoutDirection(QtObjectPtr ptr){ + static_cast(ptr)->unsetLayoutDirection(); +} + +void QWidget_UnsetLocale(QtObjectPtr ptr){ + static_cast(ptr)->unsetLocale(); +} + +char* QWidget_WhatsThis(QtObjectPtr ptr){ + return static_cast(ptr)->whatsThis().toUtf8().data(); +} + +char* QWidget_WindowFilePath(QtObjectPtr ptr){ + return static_cast(ptr)->windowFilePath().toUtf8().data(); +} + +char* QWidget_WindowIconText(QtObjectPtr ptr){ + return static_cast(ptr)->windowIconText().toUtf8().data(); +} + +int QWidget_WindowModality(QtObjectPtr ptr){ + return static_cast(ptr)->windowModality(); +} + +char* QWidget_WindowTitle(QtObjectPtr ptr){ + return static_cast(ptr)->windowTitle().toUtf8().data(); +} + +int QWidget_X(QtObjectPtr ptr){ + return static_cast(ptr)->x(); +} + +int QWidget_Y(QtObjectPtr ptr){ + return static_cast(ptr)->y(); +} + +QtObjectPtr QWidget_NewQWidget(QtObjectPtr parent, int f){ + return new QWidget(static_cast(parent), static_cast(f)); +} + +void QWidget_AddAction(QtObjectPtr ptr, QtObjectPtr action){ + static_cast(ptr)->addAction(static_cast(action)); +} + +void QWidget_AdjustSize(QtObjectPtr ptr){ + static_cast(ptr)->adjustSize(); +} + +int QWidget_BackgroundRole(QtObjectPtr ptr){ + return static_cast(ptr)->backgroundRole(); +} + +QtObjectPtr QWidget_BackingStore(QtObjectPtr ptr){ + return static_cast(ptr)->backingStore(); +} + +QtObjectPtr QWidget_ChildAt2(QtObjectPtr ptr, QtObjectPtr p){ + return static_cast(ptr)->childAt(*static_cast(p)); +} + +QtObjectPtr QWidget_ChildAt(QtObjectPtr ptr, int x, int y){ + return static_cast(ptr)->childAt(x, y); +} + +void QWidget_ClearFocus(QtObjectPtr ptr){ + static_cast(ptr)->clearFocus(); +} + +int QWidget_Close(QtObjectPtr ptr){ + return QMetaObject::invokeMethod(static_cast(ptr), "close"); +} + +void QWidget_EnsurePolished(QtObjectPtr ptr){ + static_cast(ptr)->ensurePolished(); +} + +QtObjectPtr QWidget_FocusProxy(QtObjectPtr ptr){ + return static_cast(ptr)->focusProxy(); +} + +QtObjectPtr QWidget_FocusWidget(QtObjectPtr ptr){ + return static_cast(ptr)->focusWidget(); +} + +int QWidget_ForegroundRole(QtObjectPtr ptr){ + return static_cast(ptr)->foregroundRole(); +} + +void QWidget_GetContentsMargins(QtObjectPtr ptr, int left, int top, int right, int bottom){ + static_cast(ptr)->getContentsMargins(&left, &top, &right, &bottom); +} + +void QWidget_GrabGesture(QtObjectPtr ptr, int gesture, int flags){ + static_cast(ptr)->grabGesture(static_cast(gesture), static_cast(flags)); +} + +int QWidget_GrabShortcut(QtObjectPtr ptr, QtObjectPtr key, int context){ + return static_cast(ptr)->grabShortcut(*static_cast(key), static_cast(context)); +} + +QtObjectPtr QWidget_GraphicsEffect(QtObjectPtr ptr){ + return static_cast(ptr)->graphicsEffect(); +} + +QtObjectPtr QWidget_GraphicsProxyWidget(QtObjectPtr ptr){ + return static_cast(ptr)->graphicsProxyWidget(); +} + +int QWidget_HasHeightForWidth(QtObjectPtr ptr){ + return static_cast(ptr)->hasHeightForWidth(); +} + +int QWidget_HasMouseTracking(QtObjectPtr ptr){ + return static_cast(ptr)->hasMouseTracking(); +} + +int QWidget_Height(QtObjectPtr ptr){ + return static_cast(ptr)->height(); +} + +int QWidget_HeightForWidth(QtObjectPtr ptr, int w){ + return static_cast(ptr)->heightForWidth(w); +} + +void QWidget_Hide(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "hide"); +} + +char* QWidget_InputMethodQuery(QtObjectPtr ptr, int query){ + return static_cast(ptr)->inputMethodQuery(static_cast(query)).toString().toUtf8().data(); +} + +void QWidget_InsertAction(QtObjectPtr ptr, QtObjectPtr before, QtObjectPtr action){ + static_cast(ptr)->insertAction(static_cast(before), static_cast(action)); +} + +int QWidget_IsAncestorOf(QtObjectPtr ptr, QtObjectPtr child){ + return static_cast(ptr)->isAncestorOf(static_cast(child)); +} + +int QWidget_IsEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->isEnabled(); +} + +int QWidget_IsEnabledTo(QtObjectPtr ptr, QtObjectPtr ancestor){ + return static_cast(ptr)->isEnabledTo(static_cast(ancestor)); +} + +int QWidget_IsHidden(QtObjectPtr ptr){ + return static_cast(ptr)->isHidden(); +} + +int QWidget_IsModal(QtObjectPtr ptr){ + return static_cast(ptr)->isModal(); +} + +int QWidget_IsVisible(QtObjectPtr ptr){ + return static_cast(ptr)->isVisible(); +} + +int QWidget_IsVisibleTo(QtObjectPtr ptr, QtObjectPtr ancestor){ + return static_cast(ptr)->isVisibleTo(static_cast(ancestor)); +} + +int QWidget_IsWindow(QtObjectPtr ptr){ + return static_cast(ptr)->isWindow(); +} + +QtObjectPtr QWidget_Layout(QtObjectPtr ptr){ + return static_cast(ptr)->layout(); +} + +void QWidget_Lower(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "lower"); +} + +int QWidget_MaximumHeight(QtObjectPtr ptr){ + return static_cast(ptr)->maximumHeight(); +} + +int QWidget_MaximumWidth(QtObjectPtr ptr){ + return static_cast(ptr)->maximumWidth(); +} + +int QWidget_MinimumHeight(QtObjectPtr ptr){ + return static_cast(ptr)->minimumHeight(); +} + +int QWidget_MinimumWidth(QtObjectPtr ptr){ + return static_cast(ptr)->minimumWidth(); +} + +void QWidget_Move2(QtObjectPtr ptr, int x, int y){ + static_cast(ptr)->move(x, y); +} + +QtObjectPtr QWidget_NativeParentWidget(QtObjectPtr ptr){ + return static_cast(ptr)->nativeParentWidget(); +} + +QtObjectPtr QWidget_NextInFocusChain(QtObjectPtr ptr){ + return static_cast(ptr)->nextInFocusChain(); +} + +void QWidget_OverrideWindowFlags(QtObjectPtr ptr, int flags){ + static_cast(ptr)->overrideWindowFlags(static_cast(flags)); +} + +QtObjectPtr QWidget_ParentWidget(QtObjectPtr ptr){ + return static_cast(ptr)->parentWidget(); +} + +QtObjectPtr QWidget_PreviousInFocusChain(QtObjectPtr ptr){ + return static_cast(ptr)->previousInFocusChain(); +} + +void QWidget_Raise(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "raise"); +} + +void QWidget_ReleaseShortcut(QtObjectPtr ptr, int id){ + static_cast(ptr)->releaseShortcut(id); +} + +void QWidget_RemoveAction(QtObjectPtr ptr, QtObjectPtr action){ + static_cast(ptr)->removeAction(static_cast(action)); +} + +void QWidget_Render(QtObjectPtr ptr, QtObjectPtr target, QtObjectPtr targetOffset, QtObjectPtr sourceRegion, int renderFlags){ + static_cast(ptr)->render(static_cast(target), *static_cast(targetOffset), *static_cast(sourceRegion), static_cast(renderFlags)); +} + +void QWidget_Render2(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr targetOffset, QtObjectPtr sourceRegion, int renderFlags){ + static_cast(ptr)->render(static_cast(painter), *static_cast(targetOffset), *static_cast(sourceRegion), static_cast(renderFlags)); +} + +void QWidget_Repaint(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "repaint"); +} + +void QWidget_Repaint3(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->repaint(*static_cast(rect)); +} + +void QWidget_Repaint4(QtObjectPtr ptr, QtObjectPtr rgn){ + static_cast(ptr)->repaint(*static_cast(rgn)); +} + +void QWidget_Repaint2(QtObjectPtr ptr, int x, int y, int w, int h){ + static_cast(ptr)->repaint(x, y, w, h); +} + +void QWidget_Resize2(QtObjectPtr ptr, int w, int h){ + static_cast(ptr)->resize(w, h); +} + +int QWidget_RestoreGeometry(QtObjectPtr ptr, QtObjectPtr geometry){ + return static_cast(ptr)->restoreGeometry(*static_cast(geometry)); +} + +void QWidget_Scroll(QtObjectPtr ptr, int dx, int dy){ + static_cast(ptr)->scroll(dx, dy); +} + +void QWidget_Scroll2(QtObjectPtr ptr, int dx, int dy, QtObjectPtr r){ + static_cast(ptr)->scroll(dx, dy, *static_cast(r)); +} + +void QWidget_SetAttribute(QtObjectPtr ptr, int attribute, int on){ + static_cast(ptr)->setAttribute(static_cast(attribute), on != 0); +} + +void QWidget_SetBackgroundRole(QtObjectPtr ptr, int role){ + static_cast(ptr)->setBackgroundRole(static_cast(role)); +} + +void QWidget_SetBaseSize(QtObjectPtr ptr, QtObjectPtr v){ + static_cast(ptr)->setBaseSize(*static_cast(v)); +} + +void QWidget_SetBaseSize2(QtObjectPtr ptr, int basew, int baseh){ + static_cast(ptr)->setBaseSize(basew, baseh); +} + +void QWidget_SetContentsMargins2(QtObjectPtr ptr, QtObjectPtr margins){ + static_cast(ptr)->setContentsMargins(*static_cast(margins)); +} + +void QWidget_SetContentsMargins(QtObjectPtr ptr, int left, int top, int right, int bottom){ + static_cast(ptr)->setContentsMargins(left, top, right, bottom); +} + +void QWidget_SetDisabled(QtObjectPtr ptr, int disable){ + QMetaObject::invokeMethod(static_cast(ptr), "setDisabled", Q_ARG(bool, disable != 0)); +} + +void QWidget_SetFixedHeight(QtObjectPtr ptr, int h){ + static_cast(ptr)->setFixedHeight(h); +} + +void QWidget_SetFixedSize(QtObjectPtr ptr, QtObjectPtr s){ + static_cast(ptr)->setFixedSize(*static_cast(s)); +} + +void QWidget_SetFixedWidth(QtObjectPtr ptr, int w){ + static_cast(ptr)->setFixedWidth(w); +} + +void QWidget_SetFocus2(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "setFocus"); +} + +void QWidget_SetFocus(QtObjectPtr ptr, int reason){ + static_cast(ptr)->setFocus(static_cast(reason)); +} + +void QWidget_SetFocusProxy(QtObjectPtr ptr, QtObjectPtr w){ + static_cast(ptr)->setFocusProxy(static_cast(w)); +} + +void QWidget_SetForegroundRole(QtObjectPtr ptr, int role){ + static_cast(ptr)->setForegroundRole(static_cast(role)); +} + +void QWidget_SetGeometry2(QtObjectPtr ptr, int x, int y, int w, int h){ + static_cast(ptr)->setGeometry(x, y, w, h); +} + +void QWidget_SetGraphicsEffect(QtObjectPtr ptr, QtObjectPtr effect){ + static_cast(ptr)->setGraphicsEffect(static_cast(effect)); +} + +void QWidget_SetHidden(QtObjectPtr ptr, int hidden){ + QMetaObject::invokeMethod(static_cast(ptr), "setHidden", Q_ARG(bool, hidden != 0)); +} + +void QWidget_SetMaximumSize(QtObjectPtr ptr, QtObjectPtr v){ + static_cast(ptr)->setMaximumSize(*static_cast(v)); +} + +void QWidget_SetMaximumSize2(QtObjectPtr ptr, int maxw, int maxh){ + static_cast(ptr)->setMaximumSize(maxw, maxh); +} + +void QWidget_SetMinimumSize(QtObjectPtr ptr, QtObjectPtr v){ + static_cast(ptr)->setMinimumSize(*static_cast(v)); +} + +void QWidget_SetMinimumSize2(QtObjectPtr ptr, int minw, int minh){ + static_cast(ptr)->setMinimumSize(minw, minh); +} + +void QWidget_SetMouseTracking(QtObjectPtr ptr, int enable){ + static_cast(ptr)->setMouseTracking(enable != 0); +} + +void QWidget_SetParent(QtObjectPtr ptr, QtObjectPtr parent){ + static_cast(ptr)->setParent(static_cast(parent)); +} + +void QWidget_SetParent2(QtObjectPtr ptr, QtObjectPtr parent, int f){ + static_cast(ptr)->setParent(static_cast(parent), static_cast(f)); +} + +void QWidget_SetShortcutAutoRepeat(QtObjectPtr ptr, int id, int enable){ + static_cast(ptr)->setShortcutAutoRepeat(id, enable != 0); +} + +void QWidget_SetShortcutEnabled(QtObjectPtr ptr, int id, int enable){ + static_cast(ptr)->setShortcutEnabled(id, enable != 0); +} + +void QWidget_SetSizeIncrement(QtObjectPtr ptr, QtObjectPtr v){ + static_cast(ptr)->setSizeIncrement(*static_cast(v)); +} + +void QWidget_SetSizeIncrement2(QtObjectPtr ptr, int w, int h){ + static_cast(ptr)->setSizeIncrement(w, h); +} + +void QWidget_SetSizePolicy2(QtObjectPtr ptr, int horizontal, int vertical){ + static_cast(ptr)->setSizePolicy(static_cast(horizontal), static_cast(vertical)); +} + +void QWidget_SetStyle(QtObjectPtr ptr, QtObjectPtr style){ + static_cast(ptr)->setStyle(static_cast(style)); +} + +void QWidget_QWidget_SetTabOrder(QtObjectPtr first, QtObjectPtr second){ + QWidget::setTabOrder(static_cast(first), static_cast(second)); +} + +void QWidget_SetWindowRole(QtObjectPtr ptr, char* role){ + static_cast(ptr)->setWindowRole(QString(role)); +} + +void QWidget_Show(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "show"); +} + +void QWidget_ShowFullScreen(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "showFullScreen"); +} + +void QWidget_ShowMaximized(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "showMaximized"); +} + +void QWidget_ShowMinimized(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "showMinimized"); +} + +void QWidget_ShowNormal(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "showNormal"); +} + +void QWidget_StackUnder(QtObjectPtr ptr, QtObjectPtr w){ + static_cast(ptr)->stackUnder(static_cast(w)); +} + +QtObjectPtr QWidget_Style(QtObjectPtr ptr){ + return static_cast(ptr)->style(); +} + +int QWidget_TestAttribute(QtObjectPtr ptr, int attribute){ + return static_cast(ptr)->testAttribute(static_cast(attribute)); +} + +int QWidget_UnderMouse(QtObjectPtr ptr){ + return static_cast(ptr)->underMouse(); +} + +void QWidget_UngrabGesture(QtObjectPtr ptr, int gesture){ + static_cast(ptr)->ungrabGesture(static_cast(gesture)); +} + +void QWidget_Update(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "update"); +} + +void QWidget_Update3(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->update(*static_cast(rect)); +} + +void QWidget_Update4(QtObjectPtr ptr, QtObjectPtr rgn){ + static_cast(ptr)->update(*static_cast(rgn)); +} + +void QWidget_Update2(QtObjectPtr ptr, int x, int y, int w, int h){ + static_cast(ptr)->update(x, y, w, h); +} + +void QWidget_UpdateGeometry(QtObjectPtr ptr){ + static_cast(ptr)->updateGeometry(); +} + +int QWidget_UpdatesEnabled(QtObjectPtr ptr){ + return static_cast(ptr)->updatesEnabled(); +} + +int QWidget_Width(QtObjectPtr ptr){ + return static_cast(ptr)->width(); +} + +QtObjectPtr QWidget_Window(QtObjectPtr ptr){ + return static_cast(ptr)->window(); +} + +int QWidget_WindowFlags(QtObjectPtr ptr){ + return static_cast(ptr)->windowFlags(); +} + +QtObjectPtr QWidget_WindowHandle(QtObjectPtr ptr){ + return static_cast(ptr)->windowHandle(); +} + +void QWidget_ConnectWindowIconTextChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWidget::windowIconTextChanged), static_cast(ptr), static_cast(&MyQWidget::Signal_WindowIconTextChanged));; +} + +void QWidget_DisconnectWindowIconTextChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWidget::windowIconTextChanged), static_cast(ptr), static_cast(&MyQWidget::Signal_WindowIconTextChanged));; +} + +char* QWidget_WindowRole(QtObjectPtr ptr){ + return static_cast(ptr)->windowRole().toUtf8().data(); +} + +int QWidget_WindowState(QtObjectPtr ptr){ + return static_cast(ptr)->windowState(); +} + +void QWidget_ConnectWindowTitleChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWidget::windowTitleChanged), static_cast(ptr), static_cast(&MyQWidget::Signal_WindowTitleChanged));; +} + +void QWidget_DisconnectWindowTitleChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWidget::windowTitleChanged), static_cast(ptr), static_cast(&MyQWidget::Signal_WindowTitleChanged));; +} + +int QWidget_WindowType(QtObjectPtr ptr){ + return static_cast(ptr)->windowType(); +} + +void QWidget_DestroyQWidget(QtObjectPtr ptr){ + static_cast(ptr)->~QWidget(); +} + +QtObjectPtr QWidget_QWidget_CreateWindowContainer(QtObjectPtr window, QtObjectPtr parent, int flags){ + return QWidget::createWindowContainer(static_cast(window), static_cast(parent), static_cast(flags)); +} + diff --git a/widgets/qwidget.go b/widgets/qwidget.go new file mode 100755 index 00000000..22fbccc9 --- /dev/null +++ b/widgets/qwidget.go @@ -0,0 +1,1317 @@ +package widgets + +//#include "qwidget.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QWidget struct { + gui.QPaintDevice + core.QObject +} + +type QWidgetITF interface { + gui.QPaintDeviceITF + core.QObjectITF + QWidgetPTR() *QWidget +} + +func (p *QWidget) Pointer() unsafe.Pointer { + return p.QPaintDevicePTR().Pointer() +} + +func (p *QWidget) SetPointer(ptr unsafe.Pointer) { + p.QPaintDevicePTR().SetPointer(ptr) + p.QObjectPTR().SetPointer(ptr) +} + +func PointerFromQWidget(ptr QWidgetITF) unsafe.Pointer { + if ptr != nil { + return ptr.QWidgetPTR().Pointer() + } + return nil +} + +func QWidgetFromPointer(ptr unsafe.Pointer) *QWidget { + var n = new(QWidget) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QWidget_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QWidget) QWidgetPTR() *QWidget { + return ptr +} + +//QWidget::RenderFlag +type QWidget__RenderFlag int + +var ( + QWidget__DrawWindowBackground = QWidget__RenderFlag(0x1) + QWidget__DrawChildren = QWidget__RenderFlag(0x2) + QWidget__IgnoreMask = QWidget__RenderFlag(0x4) +) + +func (ptr *QWidget) AcceptDrops() bool { + if ptr.Pointer() != nil { + return C.QWidget_AcceptDrops(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWidget) AccessibleDescription() string { + if ptr.Pointer() != nil { + return C.GoString(C.QWidget_AccessibleDescription(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QWidget) AccessibleName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QWidget_AccessibleName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QWidget) ActivateWindow() { + if ptr.Pointer() != nil { + C.QWidget_ActivateWindow(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWidget) AutoFillBackground() bool { + if ptr.Pointer() != nil { + return C.QWidget_AutoFillBackground(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWidget) ClearMask() { + if ptr.Pointer() != nil { + C.QWidget_ClearMask(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWidget) ContextMenuPolicy() core.Qt__ContextMenuPolicy { + if ptr.Pointer() != nil { + return core.Qt__ContextMenuPolicy(C.QWidget_ContextMenuPolicy(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWidget) FocusPolicy() core.Qt__FocusPolicy { + if ptr.Pointer() != nil { + return core.Qt__FocusPolicy(C.QWidget_FocusPolicy(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWidget) GrabKeyboard() { + if ptr.Pointer() != nil { + C.QWidget_GrabKeyboard(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWidget) GrabMouse() { + if ptr.Pointer() != nil { + C.QWidget_GrabMouse(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWidget) GrabMouse2(cursor gui.QCursorITF) { + if ptr.Pointer() != nil { + C.QWidget_GrabMouse2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQCursor(cursor))) + } +} + +func (ptr *QWidget) HasFocus() bool { + if ptr.Pointer() != nil { + return C.QWidget_HasFocus(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWidget) InputMethodHints() core.Qt__InputMethodHint { + if ptr.Pointer() != nil { + return core.Qt__InputMethodHint(C.QWidget_InputMethodHints(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWidget) IsActiveWindow() bool { + if ptr.Pointer() != nil { + return C.QWidget_IsActiveWindow(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWidget) IsFullScreen() bool { + if ptr.Pointer() != nil { + return C.QWidget_IsFullScreen(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWidget) IsMaximized() bool { + if ptr.Pointer() != nil { + return C.QWidget_IsMaximized(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWidget) IsMinimized() bool { + if ptr.Pointer() != nil { + return C.QWidget_IsMinimized(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWidget) IsWindowModified() bool { + if ptr.Pointer() != nil { + return C.QWidget_IsWindowModified(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func QWidget_KeyboardGrabber() *QWidget { + return QWidgetFromPointer(unsafe.Pointer(C.QWidget_QWidget_KeyboardGrabber())) +} + +func (ptr *QWidget) LayoutDirection() core.Qt__LayoutDirection { + if ptr.Pointer() != nil { + return core.Qt__LayoutDirection(C.QWidget_LayoutDirection(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func QWidget_MouseGrabber() *QWidget { + return QWidgetFromPointer(unsafe.Pointer(C.QWidget_QWidget_MouseGrabber())) +} + +func (ptr *QWidget) Move(v core.QPointITF) { + if ptr.Pointer() != nil { + C.QWidget_Move(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(v))) + } +} + +func (ptr *QWidget) PaintEngine() *gui.QPaintEngine { + if ptr.Pointer() != nil { + return gui.QPaintEngineFromPointer(unsafe.Pointer(C.QWidget_PaintEngine(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QWidget) ReleaseKeyboard() { + if ptr.Pointer() != nil { + C.QWidget_ReleaseKeyboard(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWidget) ReleaseMouse() { + if ptr.Pointer() != nil { + C.QWidget_ReleaseMouse(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWidget) Resize(v core.QSizeITF) { + if ptr.Pointer() != nil { + C.QWidget_Resize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(v))) + } +} + +func (ptr *QWidget) SetAcceptDrops(on bool) { + if ptr.Pointer() != nil { + C.QWidget_SetAcceptDrops(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(on))) + } +} + +func (ptr *QWidget) SetAccessibleDescription(description string) { + if ptr.Pointer() != nil { + C.QWidget_SetAccessibleDescription(C.QtObjectPtr(ptr.Pointer()), C.CString(description)) + } +} + +func (ptr *QWidget) SetAccessibleName(name string) { + if ptr.Pointer() != nil { + C.QWidget_SetAccessibleName(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func (ptr *QWidget) SetAutoFillBackground(enabled bool) { + if ptr.Pointer() != nil { + C.QWidget_SetAutoFillBackground(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enabled))) + } +} + +func (ptr *QWidget) SetContextMenuPolicy(policy core.Qt__ContextMenuPolicy) { + if ptr.Pointer() != nil { + C.QWidget_SetContextMenuPolicy(C.QtObjectPtr(ptr.Pointer()), C.int(policy)) + } +} + +func (ptr *QWidget) SetCursor(v gui.QCursorITF) { + if ptr.Pointer() != nil { + C.QWidget_SetCursor(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQCursor(v))) + } +} + +func (ptr *QWidget) SetEnabled(v bool) { + if ptr.Pointer() != nil { + C.QWidget_SetEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QWidget) SetFixedSize2(w int, h int) { + if ptr.Pointer() != nil { + C.QWidget_SetFixedSize2(C.QtObjectPtr(ptr.Pointer()), C.int(w), C.int(h)) + } +} + +func (ptr *QWidget) SetFocusPolicy(policy core.Qt__FocusPolicy) { + if ptr.Pointer() != nil { + C.QWidget_SetFocusPolicy(C.QtObjectPtr(ptr.Pointer()), C.int(policy)) + } +} + +func (ptr *QWidget) SetFont(v gui.QFontITF) { + if ptr.Pointer() != nil { + C.QWidget_SetFont(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQFont(v))) + } +} + +func (ptr *QWidget) SetGeometry(v core.QRectITF) { + if ptr.Pointer() != nil { + C.QWidget_SetGeometry(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(v))) + } +} + +func (ptr *QWidget) SetInputMethodHints(hints core.Qt__InputMethodHint) { + if ptr.Pointer() != nil { + C.QWidget_SetInputMethodHints(C.QtObjectPtr(ptr.Pointer()), C.int(hints)) + } +} + +func (ptr *QWidget) SetLayout(layout QLayoutITF) { + if ptr.Pointer() != nil { + C.QWidget_SetLayout(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQLayout(layout))) + } +} + +func (ptr *QWidget) SetLayoutDirection(direction core.Qt__LayoutDirection) { + if ptr.Pointer() != nil { + C.QWidget_SetLayoutDirection(C.QtObjectPtr(ptr.Pointer()), C.int(direction)) + } +} + +func (ptr *QWidget) SetLocale(locale core.QLocaleITF) { + if ptr.Pointer() != nil { + C.QWidget_SetLocale(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQLocale(locale))) + } +} + +func (ptr *QWidget) SetMask(bitmap gui.QBitmapITF) { + if ptr.Pointer() != nil { + C.QWidget_SetMask(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQBitmap(bitmap))) + } +} + +func (ptr *QWidget) SetMask2(region gui.QRegionITF) { + if ptr.Pointer() != nil { + C.QWidget_SetMask2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQRegion(region))) + } +} + +func (ptr *QWidget) SetMaximumHeight(maxh int) { + if ptr.Pointer() != nil { + C.QWidget_SetMaximumHeight(C.QtObjectPtr(ptr.Pointer()), C.int(maxh)) + } +} + +func (ptr *QWidget) SetMaximumWidth(maxw int) { + if ptr.Pointer() != nil { + C.QWidget_SetMaximumWidth(C.QtObjectPtr(ptr.Pointer()), C.int(maxw)) + } +} + +func (ptr *QWidget) SetMinimumHeight(minh int) { + if ptr.Pointer() != nil { + C.QWidget_SetMinimumHeight(C.QtObjectPtr(ptr.Pointer()), C.int(minh)) + } +} + +func (ptr *QWidget) SetMinimumWidth(minw int) { + if ptr.Pointer() != nil { + C.QWidget_SetMinimumWidth(C.QtObjectPtr(ptr.Pointer()), C.int(minw)) + } +} + +func (ptr *QWidget) SetPalette(v gui.QPaletteITF) { + if ptr.Pointer() != nil { + C.QWidget_SetPalette(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPalette(v))) + } +} + +func (ptr *QWidget) SetSizePolicy(v QSizePolicyITF) { + if ptr.Pointer() != nil { + C.QWidget_SetSizePolicy(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQSizePolicy(v))) + } +} + +func (ptr *QWidget) SetStatusTip(v string) { + if ptr.Pointer() != nil { + C.QWidget_SetStatusTip(C.QtObjectPtr(ptr.Pointer()), C.CString(v)) + } +} + +func (ptr *QWidget) SetStyleSheet(styleSheet string) { + if ptr.Pointer() != nil { + C.QWidget_SetStyleSheet(C.QtObjectPtr(ptr.Pointer()), C.CString(styleSheet)) + } +} + +func (ptr *QWidget) SetToolTip(v string) { + if ptr.Pointer() != nil { + C.QWidget_SetToolTip(C.QtObjectPtr(ptr.Pointer()), C.CString(v)) + } +} + +func (ptr *QWidget) SetToolTipDuration(msec int) { + if ptr.Pointer() != nil { + C.QWidget_SetToolTipDuration(C.QtObjectPtr(ptr.Pointer()), C.int(msec)) + } +} + +func (ptr *QWidget) SetUpdatesEnabled(enable bool) { + if ptr.Pointer() != nil { + C.QWidget_SetUpdatesEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QWidget) SetVisible(visible bool) { + if ptr.Pointer() != nil { + C.QWidget_SetVisible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(visible))) + } +} + +func (ptr *QWidget) SetWhatsThis(v string) { + if ptr.Pointer() != nil { + C.QWidget_SetWhatsThis(C.QtObjectPtr(ptr.Pointer()), C.CString(v)) + } +} + +func (ptr *QWidget) SetWindowFilePath(filePath string) { + if ptr.Pointer() != nil { + C.QWidget_SetWindowFilePath(C.QtObjectPtr(ptr.Pointer()), C.CString(filePath)) + } +} + +func (ptr *QWidget) SetWindowFlags(ty core.Qt__WindowType) { + if ptr.Pointer() != nil { + C.QWidget_SetWindowFlags(C.QtObjectPtr(ptr.Pointer()), C.int(ty)) + } +} + +func (ptr *QWidget) SetWindowIcon(icon gui.QIconITF) { + if ptr.Pointer() != nil { + C.QWidget_SetWindowIcon(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQIcon(icon))) + } +} + +func (ptr *QWidget) SetWindowIconText(v string) { + if ptr.Pointer() != nil { + C.QWidget_SetWindowIconText(C.QtObjectPtr(ptr.Pointer()), C.CString(v)) + } +} + +func (ptr *QWidget) SetWindowModality(windowModality core.Qt__WindowModality) { + if ptr.Pointer() != nil { + C.QWidget_SetWindowModality(C.QtObjectPtr(ptr.Pointer()), C.int(windowModality)) + } +} + +func (ptr *QWidget) SetWindowModified(v bool) { + if ptr.Pointer() != nil { + C.QWidget_SetWindowModified(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(v))) + } +} + +func (ptr *QWidget) SetWindowState(windowState core.Qt__WindowState) { + if ptr.Pointer() != nil { + C.QWidget_SetWindowState(C.QtObjectPtr(ptr.Pointer()), C.int(windowState)) + } +} + +func (ptr *QWidget) SetWindowTitle(v string) { + if ptr.Pointer() != nil { + C.QWidget_SetWindowTitle(C.QtObjectPtr(ptr.Pointer()), C.CString(v)) + } +} + +func (ptr *QWidget) StatusTip() string { + if ptr.Pointer() != nil { + return C.GoString(C.QWidget_StatusTip(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QWidget) StyleSheet() string { + if ptr.Pointer() != nil { + return C.GoString(C.QWidget_StyleSheet(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QWidget) ToolTip() string { + if ptr.Pointer() != nil { + return C.GoString(C.QWidget_ToolTip(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QWidget) ToolTipDuration() int { + if ptr.Pointer() != nil { + return int(C.QWidget_ToolTipDuration(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWidget) UnsetCursor() { + if ptr.Pointer() != nil { + C.QWidget_UnsetCursor(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWidget) UnsetLayoutDirection() { + if ptr.Pointer() != nil { + C.QWidget_UnsetLayoutDirection(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWidget) UnsetLocale() { + if ptr.Pointer() != nil { + C.QWidget_UnsetLocale(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWidget) WhatsThis() string { + if ptr.Pointer() != nil { + return C.GoString(C.QWidget_WhatsThis(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QWidget) WindowFilePath() string { + if ptr.Pointer() != nil { + return C.GoString(C.QWidget_WindowFilePath(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QWidget) WindowIconText() string { + if ptr.Pointer() != nil { + return C.GoString(C.QWidget_WindowIconText(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QWidget) WindowModality() core.Qt__WindowModality { + if ptr.Pointer() != nil { + return core.Qt__WindowModality(C.QWidget_WindowModality(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWidget) WindowTitle() string { + if ptr.Pointer() != nil { + return C.GoString(C.QWidget_WindowTitle(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QWidget) X() int { + if ptr.Pointer() != nil { + return int(C.QWidget_X(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWidget) Y() int { + if ptr.Pointer() != nil { + return int(C.QWidget_Y(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQWidget(parent QWidgetITF, f core.Qt__WindowType) *QWidget { + return QWidgetFromPointer(unsafe.Pointer(C.QWidget_NewQWidget(C.QtObjectPtr(PointerFromQWidget(parent)), C.int(f)))) +} + +func (ptr *QWidget) AddAction(action QActionITF) { + if ptr.Pointer() != nil { + C.QWidget_AddAction(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAction(action))) + } +} + +func (ptr *QWidget) AdjustSize() { + if ptr.Pointer() != nil { + C.QWidget_AdjustSize(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWidget) BackgroundRole() gui.QPalette__ColorRole { + if ptr.Pointer() != nil { + return gui.QPalette__ColorRole(C.QWidget_BackgroundRole(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWidget) BackingStore() *gui.QBackingStore { + if ptr.Pointer() != nil { + return gui.QBackingStoreFromPointer(unsafe.Pointer(C.QWidget_BackingStore(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QWidget) ChildAt2(p core.QPointITF) *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QWidget_ChildAt2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQPoint(p))))) + } + return nil +} + +func (ptr *QWidget) ChildAt(x int, y int) *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QWidget_ChildAt(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y)))) + } + return nil +} + +func (ptr *QWidget) ClearFocus() { + if ptr.Pointer() != nil { + C.QWidget_ClearFocus(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWidget) Close() bool { + if ptr.Pointer() != nil { + return C.QWidget_Close(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWidget) EnsurePolished() { + if ptr.Pointer() != nil { + C.QWidget_EnsurePolished(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWidget) FocusProxy() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QWidget_FocusProxy(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QWidget) FocusWidget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QWidget_FocusWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QWidget) ForegroundRole() gui.QPalette__ColorRole { + if ptr.Pointer() != nil { + return gui.QPalette__ColorRole(C.QWidget_ForegroundRole(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWidget) GetContentsMargins(left int, top int, right int, bottom int) { + if ptr.Pointer() != nil { + C.QWidget_GetContentsMargins(C.QtObjectPtr(ptr.Pointer()), C.int(left), C.int(top), C.int(right), C.int(bottom)) + } +} + +func (ptr *QWidget) GrabGesture(gesture core.Qt__GestureType, flags core.Qt__GestureFlag) { + if ptr.Pointer() != nil { + C.QWidget_GrabGesture(C.QtObjectPtr(ptr.Pointer()), C.int(gesture), C.int(flags)) + } +} + +func (ptr *QWidget) GrabShortcut(key gui.QKeySequenceITF, context core.Qt__ShortcutContext) int { + if ptr.Pointer() != nil { + return int(C.QWidget_GrabShortcut(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQKeySequence(key)), C.int(context))) + } + return 0 +} + +func (ptr *QWidget) GraphicsEffect() *QGraphicsEffect { + if ptr.Pointer() != nil { + return QGraphicsEffectFromPointer(unsafe.Pointer(C.QWidget_GraphicsEffect(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QWidget) GraphicsProxyWidget() *QGraphicsProxyWidget { + if ptr.Pointer() != nil { + return QGraphicsProxyWidgetFromPointer(unsafe.Pointer(C.QWidget_GraphicsProxyWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QWidget) HasHeightForWidth() bool { + if ptr.Pointer() != nil { + return C.QWidget_HasHeightForWidth(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWidget) HasMouseTracking() bool { + if ptr.Pointer() != nil { + return C.QWidget_HasMouseTracking(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWidget) Height() int { + if ptr.Pointer() != nil { + return int(C.QWidget_Height(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWidget) HeightForWidth(w int) int { + if ptr.Pointer() != nil { + return int(C.QWidget_HeightForWidth(C.QtObjectPtr(ptr.Pointer()), C.int(w))) + } + return 0 +} + +func (ptr *QWidget) Hide() { + if ptr.Pointer() != nil { + C.QWidget_Hide(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWidget) InputMethodQuery(query core.Qt__InputMethodQuery) string { + if ptr.Pointer() != nil { + return C.GoString(C.QWidget_InputMethodQuery(C.QtObjectPtr(ptr.Pointer()), C.int(query))) + } + return "" +} + +func (ptr *QWidget) InsertAction(before QActionITF, action QActionITF) { + if ptr.Pointer() != nil { + C.QWidget_InsertAction(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAction(before)), C.QtObjectPtr(PointerFromQAction(action))) + } +} + +func (ptr *QWidget) IsAncestorOf(child QWidgetITF) bool { + if ptr.Pointer() != nil { + return C.QWidget_IsAncestorOf(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(child))) != 0 + } + return false +} + +func (ptr *QWidget) IsEnabled() bool { + if ptr.Pointer() != nil { + return C.QWidget_IsEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWidget) IsEnabledTo(ancestor QWidgetITF) bool { + if ptr.Pointer() != nil { + return C.QWidget_IsEnabledTo(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(ancestor))) != 0 + } + return false +} + +func (ptr *QWidget) IsHidden() bool { + if ptr.Pointer() != nil { + return C.QWidget_IsHidden(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWidget) IsModal() bool { + if ptr.Pointer() != nil { + return C.QWidget_IsModal(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWidget) IsVisible() bool { + if ptr.Pointer() != nil { + return C.QWidget_IsVisible(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWidget) IsVisibleTo(ancestor QWidgetITF) bool { + if ptr.Pointer() != nil { + return C.QWidget_IsVisibleTo(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(ancestor))) != 0 + } + return false +} + +func (ptr *QWidget) IsWindow() bool { + if ptr.Pointer() != nil { + return C.QWidget_IsWindow(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWidget) Layout() *QLayout { + if ptr.Pointer() != nil { + return QLayoutFromPointer(unsafe.Pointer(C.QWidget_Layout(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QWidget) Lower() { + if ptr.Pointer() != nil { + C.QWidget_Lower(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWidget) MaximumHeight() int { + if ptr.Pointer() != nil { + return int(C.QWidget_MaximumHeight(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWidget) MaximumWidth() int { + if ptr.Pointer() != nil { + return int(C.QWidget_MaximumWidth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWidget) MinimumHeight() int { + if ptr.Pointer() != nil { + return int(C.QWidget_MinimumHeight(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWidget) MinimumWidth() int { + if ptr.Pointer() != nil { + return int(C.QWidget_MinimumWidth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWidget) Move2(x int, y int) { + if ptr.Pointer() != nil { + C.QWidget_Move2(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y)) + } +} + +func (ptr *QWidget) NativeParentWidget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QWidget_NativeParentWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QWidget) NextInFocusChain() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QWidget_NextInFocusChain(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QWidget) OverrideWindowFlags(flags core.Qt__WindowType) { + if ptr.Pointer() != nil { + C.QWidget_OverrideWindowFlags(C.QtObjectPtr(ptr.Pointer()), C.int(flags)) + } +} + +func (ptr *QWidget) ParentWidget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QWidget_ParentWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QWidget) PreviousInFocusChain() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QWidget_PreviousInFocusChain(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QWidget) Raise() { + if ptr.Pointer() != nil { + C.QWidget_Raise(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWidget) ReleaseShortcut(id int) { + if ptr.Pointer() != nil { + C.QWidget_ReleaseShortcut(C.QtObjectPtr(ptr.Pointer()), C.int(id)) + } +} + +func (ptr *QWidget) RemoveAction(action QActionITF) { + if ptr.Pointer() != nil { + C.QWidget_RemoveAction(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAction(action))) + } +} + +func (ptr *QWidget) Render(target gui.QPaintDeviceITF, targetOffset core.QPointITF, sourceRegion gui.QRegionITF, renderFlags QWidget__RenderFlag) { + if ptr.Pointer() != nil { + C.QWidget_Render(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPaintDevice(target)), C.QtObjectPtr(core.PointerFromQPoint(targetOffset)), C.QtObjectPtr(gui.PointerFromQRegion(sourceRegion)), C.int(renderFlags)) + } +} + +func (ptr *QWidget) Render2(painter gui.QPainterITF, targetOffset core.QPointITF, sourceRegion gui.QRegionITF, renderFlags QWidget__RenderFlag) { + if ptr.Pointer() != nil { + C.QWidget_Render2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQPainter(painter)), C.QtObjectPtr(core.PointerFromQPoint(targetOffset)), C.QtObjectPtr(gui.PointerFromQRegion(sourceRegion)), C.int(renderFlags)) + } +} + +func (ptr *QWidget) Repaint() { + if ptr.Pointer() != nil { + C.QWidget_Repaint(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWidget) Repaint3(rect core.QRectITF) { + if ptr.Pointer() != nil { + C.QWidget_Repaint3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rect))) + } +} + +func (ptr *QWidget) Repaint4(rgn gui.QRegionITF) { + if ptr.Pointer() != nil { + C.QWidget_Repaint4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQRegion(rgn))) + } +} + +func (ptr *QWidget) Repaint2(x int, y int, w int, h int) { + if ptr.Pointer() != nil { + C.QWidget_Repaint2(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.int(w), C.int(h)) + } +} + +func (ptr *QWidget) Resize2(w int, h int) { + if ptr.Pointer() != nil { + C.QWidget_Resize2(C.QtObjectPtr(ptr.Pointer()), C.int(w), C.int(h)) + } +} + +func (ptr *QWidget) RestoreGeometry(geometry core.QByteArrayITF) bool { + if ptr.Pointer() != nil { + return C.QWidget_RestoreGeometry(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(geometry))) != 0 + } + return false +} + +func (ptr *QWidget) Scroll(dx int, dy int) { + if ptr.Pointer() != nil { + C.QWidget_Scroll(C.QtObjectPtr(ptr.Pointer()), C.int(dx), C.int(dy)) + } +} + +func (ptr *QWidget) Scroll2(dx int, dy int, r core.QRectITF) { + if ptr.Pointer() != nil { + C.QWidget_Scroll2(C.QtObjectPtr(ptr.Pointer()), C.int(dx), C.int(dy), C.QtObjectPtr(core.PointerFromQRect(r))) + } +} + +func (ptr *QWidget) SetAttribute(attribute core.Qt__WidgetAttribute, on bool) { + if ptr.Pointer() != nil { + C.QWidget_SetAttribute(C.QtObjectPtr(ptr.Pointer()), C.int(attribute), C.int(qt.GoBoolToInt(on))) + } +} + +func (ptr *QWidget) SetBackgroundRole(role gui.QPalette__ColorRole) { + if ptr.Pointer() != nil { + C.QWidget_SetBackgroundRole(C.QtObjectPtr(ptr.Pointer()), C.int(role)) + } +} + +func (ptr *QWidget) SetBaseSize(v core.QSizeITF) { + if ptr.Pointer() != nil { + C.QWidget_SetBaseSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(v))) + } +} + +func (ptr *QWidget) SetBaseSize2(basew int, baseh int) { + if ptr.Pointer() != nil { + C.QWidget_SetBaseSize2(C.QtObjectPtr(ptr.Pointer()), C.int(basew), C.int(baseh)) + } +} + +func (ptr *QWidget) SetContentsMargins2(margins core.QMarginsITF) { + if ptr.Pointer() != nil { + C.QWidget_SetContentsMargins2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQMargins(margins))) + } +} + +func (ptr *QWidget) SetContentsMargins(left int, top int, right int, bottom int) { + if ptr.Pointer() != nil { + C.QWidget_SetContentsMargins(C.QtObjectPtr(ptr.Pointer()), C.int(left), C.int(top), C.int(right), C.int(bottom)) + } +} + +func (ptr *QWidget) SetDisabled(disable bool) { + if ptr.Pointer() != nil { + C.QWidget_SetDisabled(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(disable))) + } +} + +func (ptr *QWidget) SetFixedHeight(h int) { + if ptr.Pointer() != nil { + C.QWidget_SetFixedHeight(C.QtObjectPtr(ptr.Pointer()), C.int(h)) + } +} + +func (ptr *QWidget) SetFixedSize(s core.QSizeITF) { + if ptr.Pointer() != nil { + C.QWidget_SetFixedSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(s))) + } +} + +func (ptr *QWidget) SetFixedWidth(w int) { + if ptr.Pointer() != nil { + C.QWidget_SetFixedWidth(C.QtObjectPtr(ptr.Pointer()), C.int(w)) + } +} + +func (ptr *QWidget) SetFocus2() { + if ptr.Pointer() != nil { + C.QWidget_SetFocus2(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWidget) SetFocus(reason core.Qt__FocusReason) { + if ptr.Pointer() != nil { + C.QWidget_SetFocus(C.QtObjectPtr(ptr.Pointer()), C.int(reason)) + } +} + +func (ptr *QWidget) SetFocusProxy(w QWidgetITF) { + if ptr.Pointer() != nil { + C.QWidget_SetFocusProxy(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(w))) + } +} + +func (ptr *QWidget) SetForegroundRole(role gui.QPalette__ColorRole) { + if ptr.Pointer() != nil { + C.QWidget_SetForegroundRole(C.QtObjectPtr(ptr.Pointer()), C.int(role)) + } +} + +func (ptr *QWidget) SetGeometry2(x int, y int, w int, h int) { + if ptr.Pointer() != nil { + C.QWidget_SetGeometry2(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.int(w), C.int(h)) + } +} + +func (ptr *QWidget) SetGraphicsEffect(effect QGraphicsEffectITF) { + if ptr.Pointer() != nil { + C.QWidget_SetGraphicsEffect(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQGraphicsEffect(effect))) + } +} + +func (ptr *QWidget) SetHidden(hidden bool) { + if ptr.Pointer() != nil { + C.QWidget_SetHidden(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(hidden))) + } +} + +func (ptr *QWidget) SetMaximumSize(v core.QSizeITF) { + if ptr.Pointer() != nil { + C.QWidget_SetMaximumSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(v))) + } +} + +func (ptr *QWidget) SetMaximumSize2(maxw int, maxh int) { + if ptr.Pointer() != nil { + C.QWidget_SetMaximumSize2(C.QtObjectPtr(ptr.Pointer()), C.int(maxw), C.int(maxh)) + } +} + +func (ptr *QWidget) SetMinimumSize(v core.QSizeITF) { + if ptr.Pointer() != nil { + C.QWidget_SetMinimumSize(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(v))) + } +} + +func (ptr *QWidget) SetMinimumSize2(minw int, minh int) { + if ptr.Pointer() != nil { + C.QWidget_SetMinimumSize2(C.QtObjectPtr(ptr.Pointer()), C.int(minw), C.int(minh)) + } +} + +func (ptr *QWidget) SetMouseTracking(enable bool) { + if ptr.Pointer() != nil { + C.QWidget_SetMouseTracking(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QWidget) SetParent(parent QWidgetITF) { + if ptr.Pointer() != nil { + C.QWidget_SetParent(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(parent))) + } +} + +func (ptr *QWidget) SetParent2(parent QWidgetITF, f core.Qt__WindowType) { + if ptr.Pointer() != nil { + C.QWidget_SetParent2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(parent)), C.int(f)) + } +} + +func (ptr *QWidget) SetShortcutAutoRepeat(id int, enable bool) { + if ptr.Pointer() != nil { + C.QWidget_SetShortcutAutoRepeat(C.QtObjectPtr(ptr.Pointer()), C.int(id), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QWidget) SetShortcutEnabled(id int, enable bool) { + if ptr.Pointer() != nil { + C.QWidget_SetShortcutEnabled(C.QtObjectPtr(ptr.Pointer()), C.int(id), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QWidget) SetSizeIncrement(v core.QSizeITF) { + if ptr.Pointer() != nil { + C.QWidget_SetSizeIncrement(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQSize(v))) + } +} + +func (ptr *QWidget) SetSizeIncrement2(w int, h int) { + if ptr.Pointer() != nil { + C.QWidget_SetSizeIncrement2(C.QtObjectPtr(ptr.Pointer()), C.int(w), C.int(h)) + } +} + +func (ptr *QWidget) SetSizePolicy2(horizontal QSizePolicy__Policy, vertical QSizePolicy__Policy) { + if ptr.Pointer() != nil { + C.QWidget_SetSizePolicy2(C.QtObjectPtr(ptr.Pointer()), C.int(horizontal), C.int(vertical)) + } +} + +func (ptr *QWidget) SetStyle(style QStyleITF) { + if ptr.Pointer() != nil { + C.QWidget_SetStyle(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQStyle(style))) + } +} + +func QWidget_SetTabOrder(first QWidgetITF, second QWidgetITF) { + C.QWidget_QWidget_SetTabOrder(C.QtObjectPtr(PointerFromQWidget(first)), C.QtObjectPtr(PointerFromQWidget(second))) +} + +func (ptr *QWidget) SetWindowRole(role string) { + if ptr.Pointer() != nil { + C.QWidget_SetWindowRole(C.QtObjectPtr(ptr.Pointer()), C.CString(role)) + } +} + +func (ptr *QWidget) Show() { + if ptr.Pointer() != nil { + C.QWidget_Show(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWidget) ShowFullScreen() { + if ptr.Pointer() != nil { + C.QWidget_ShowFullScreen(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWidget) ShowMaximized() { + if ptr.Pointer() != nil { + C.QWidget_ShowMaximized(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWidget) ShowMinimized() { + if ptr.Pointer() != nil { + C.QWidget_ShowMinimized(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWidget) ShowNormal() { + if ptr.Pointer() != nil { + C.QWidget_ShowNormal(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWidget) StackUnder(w QWidgetITF) { + if ptr.Pointer() != nil { + C.QWidget_StackUnder(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(w))) + } +} + +func (ptr *QWidget) Style() *QStyle { + if ptr.Pointer() != nil { + return QStyleFromPointer(unsafe.Pointer(C.QWidget_Style(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QWidget) TestAttribute(attribute core.Qt__WidgetAttribute) bool { + if ptr.Pointer() != nil { + return C.QWidget_TestAttribute(C.QtObjectPtr(ptr.Pointer()), C.int(attribute)) != 0 + } + return false +} + +func (ptr *QWidget) UnderMouse() bool { + if ptr.Pointer() != nil { + return C.QWidget_UnderMouse(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWidget) UngrabGesture(gesture core.Qt__GestureType) { + if ptr.Pointer() != nil { + C.QWidget_UngrabGesture(C.QtObjectPtr(ptr.Pointer()), C.int(gesture)) + } +} + +func (ptr *QWidget) Update() { + if ptr.Pointer() != nil { + C.QWidget_Update(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWidget) Update3(rect core.QRectITF) { + if ptr.Pointer() != nil { + C.QWidget_Update3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rect))) + } +} + +func (ptr *QWidget) Update4(rgn gui.QRegionITF) { + if ptr.Pointer() != nil { + C.QWidget_Update4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(gui.PointerFromQRegion(rgn))) + } +} + +func (ptr *QWidget) Update2(x int, y int, w int, h int) { + if ptr.Pointer() != nil { + C.QWidget_Update2(C.QtObjectPtr(ptr.Pointer()), C.int(x), C.int(y), C.int(w), C.int(h)) + } +} + +func (ptr *QWidget) UpdateGeometry() { + if ptr.Pointer() != nil { + C.QWidget_UpdateGeometry(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWidget) UpdatesEnabled() bool { + if ptr.Pointer() != nil { + return C.QWidget_UpdatesEnabled(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWidget) Width() int { + if ptr.Pointer() != nil { + return int(C.QWidget_Width(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWidget) Window() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QWidget_Window(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QWidget) WindowFlags() core.Qt__WindowType { + if ptr.Pointer() != nil { + return core.Qt__WindowType(C.QWidget_WindowFlags(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWidget) WindowHandle() *gui.QWindow { + if ptr.Pointer() != nil { + return gui.QWindowFromPointer(unsafe.Pointer(C.QWidget_WindowHandle(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QWidget) ConnectWindowIconTextChanged(f func(iconText string)) { + if ptr.Pointer() != nil { + C.QWidget_ConnectWindowIconTextChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "windowIconTextChanged", f) + } +} + +func (ptr *QWidget) DisconnectWindowIconTextChanged() { + if ptr.Pointer() != nil { + C.QWidget_DisconnectWindowIconTextChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "windowIconTextChanged") + } +} + +//export callbackQWidgetWindowIconTextChanged +func callbackQWidgetWindowIconTextChanged(ptrName *C.char, iconText *C.char) { + qt.GetSignal(C.GoString(ptrName), "windowIconTextChanged").(func(string))(C.GoString(iconText)) +} + +func (ptr *QWidget) WindowRole() string { + if ptr.Pointer() != nil { + return C.GoString(C.QWidget_WindowRole(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QWidget) WindowState() core.Qt__WindowState { + if ptr.Pointer() != nil { + return core.Qt__WindowState(C.QWidget_WindowState(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWidget) ConnectWindowTitleChanged(f func(title string)) { + if ptr.Pointer() != nil { + C.QWidget_ConnectWindowTitleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "windowTitleChanged", f) + } +} + +func (ptr *QWidget) DisconnectWindowTitleChanged() { + if ptr.Pointer() != nil { + C.QWidget_DisconnectWindowTitleChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "windowTitleChanged") + } +} + +//export callbackQWidgetWindowTitleChanged +func callbackQWidgetWindowTitleChanged(ptrName *C.char, title *C.char) { + qt.GetSignal(C.GoString(ptrName), "windowTitleChanged").(func(string))(C.GoString(title)) +} + +func (ptr *QWidget) WindowType() core.Qt__WindowType { + if ptr.Pointer() != nil { + return core.Qt__WindowType(C.QWidget_WindowType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWidget) DestroyQWidget() { + if ptr.Pointer() != nil { + C.QWidget_DestroyQWidget(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} + +func QWidget_CreateWindowContainer(window gui.QWindowITF, parent QWidgetITF, flags core.Qt__WindowType) *QWidget { + return QWidgetFromPointer(unsafe.Pointer(C.QWidget_QWidget_CreateWindowContainer(C.QtObjectPtr(gui.PointerFromQWindow(window)), C.QtObjectPtr(PointerFromQWidget(parent)), C.int(flags)))) +} diff --git a/widgets/qwidget.h b/widgets/qwidget.h new file mode 100755 index 00000000..8291af69 --- /dev/null +++ b/widgets/qwidget.h @@ -0,0 +1,206 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QWidget_AcceptDrops(QtObjectPtr ptr); +char* QWidget_AccessibleDescription(QtObjectPtr ptr); +char* QWidget_AccessibleName(QtObjectPtr ptr); +void QWidget_ActivateWindow(QtObjectPtr ptr); +int QWidget_AutoFillBackground(QtObjectPtr ptr); +void QWidget_ClearMask(QtObjectPtr ptr); +int QWidget_ContextMenuPolicy(QtObjectPtr ptr); +int QWidget_FocusPolicy(QtObjectPtr ptr); +void QWidget_GrabKeyboard(QtObjectPtr ptr); +void QWidget_GrabMouse(QtObjectPtr ptr); +void QWidget_GrabMouse2(QtObjectPtr ptr, QtObjectPtr cursor); +int QWidget_HasFocus(QtObjectPtr ptr); +int QWidget_InputMethodHints(QtObjectPtr ptr); +int QWidget_IsActiveWindow(QtObjectPtr ptr); +int QWidget_IsFullScreen(QtObjectPtr ptr); +int QWidget_IsMaximized(QtObjectPtr ptr); +int QWidget_IsMinimized(QtObjectPtr ptr); +int QWidget_IsWindowModified(QtObjectPtr ptr); +QtObjectPtr QWidget_QWidget_KeyboardGrabber(); +int QWidget_LayoutDirection(QtObjectPtr ptr); +QtObjectPtr QWidget_QWidget_MouseGrabber(); +void QWidget_Move(QtObjectPtr ptr, QtObjectPtr v); +QtObjectPtr QWidget_PaintEngine(QtObjectPtr ptr); +void QWidget_ReleaseKeyboard(QtObjectPtr ptr); +void QWidget_ReleaseMouse(QtObjectPtr ptr); +void QWidget_Resize(QtObjectPtr ptr, QtObjectPtr v); +void QWidget_SetAcceptDrops(QtObjectPtr ptr, int on); +void QWidget_SetAccessibleDescription(QtObjectPtr ptr, char* description); +void QWidget_SetAccessibleName(QtObjectPtr ptr, char* name); +void QWidget_SetAutoFillBackground(QtObjectPtr ptr, int enabled); +void QWidget_SetContextMenuPolicy(QtObjectPtr ptr, int policy); +void QWidget_SetCursor(QtObjectPtr ptr, QtObjectPtr v); +void QWidget_SetEnabled(QtObjectPtr ptr, int v); +void QWidget_SetFixedSize2(QtObjectPtr ptr, int w, int h); +void QWidget_SetFocusPolicy(QtObjectPtr ptr, int policy); +void QWidget_SetFont(QtObjectPtr ptr, QtObjectPtr v); +void QWidget_SetGeometry(QtObjectPtr ptr, QtObjectPtr v); +void QWidget_SetInputMethodHints(QtObjectPtr ptr, int hints); +void QWidget_SetLayout(QtObjectPtr ptr, QtObjectPtr layout); +void QWidget_SetLayoutDirection(QtObjectPtr ptr, int direction); +void QWidget_SetLocale(QtObjectPtr ptr, QtObjectPtr locale); +void QWidget_SetMask(QtObjectPtr ptr, QtObjectPtr bitmap); +void QWidget_SetMask2(QtObjectPtr ptr, QtObjectPtr region); +void QWidget_SetMaximumHeight(QtObjectPtr ptr, int maxh); +void QWidget_SetMaximumWidth(QtObjectPtr ptr, int maxw); +void QWidget_SetMinimumHeight(QtObjectPtr ptr, int minh); +void QWidget_SetMinimumWidth(QtObjectPtr ptr, int minw); +void QWidget_SetPalette(QtObjectPtr ptr, QtObjectPtr v); +void QWidget_SetSizePolicy(QtObjectPtr ptr, QtObjectPtr v); +void QWidget_SetStatusTip(QtObjectPtr ptr, char* v); +void QWidget_SetStyleSheet(QtObjectPtr ptr, char* styleSheet); +void QWidget_SetToolTip(QtObjectPtr ptr, char* v); +void QWidget_SetToolTipDuration(QtObjectPtr ptr, int msec); +void QWidget_SetUpdatesEnabled(QtObjectPtr ptr, int enable); +void QWidget_SetVisible(QtObjectPtr ptr, int visible); +void QWidget_SetWhatsThis(QtObjectPtr ptr, char* v); +void QWidget_SetWindowFilePath(QtObjectPtr ptr, char* filePath); +void QWidget_SetWindowFlags(QtObjectPtr ptr, int ty); +void QWidget_SetWindowIcon(QtObjectPtr ptr, QtObjectPtr icon); +void QWidget_SetWindowIconText(QtObjectPtr ptr, char* v); +void QWidget_SetWindowModality(QtObjectPtr ptr, int windowModality); +void QWidget_SetWindowModified(QtObjectPtr ptr, int v); +void QWidget_SetWindowState(QtObjectPtr ptr, int windowState); +void QWidget_SetWindowTitle(QtObjectPtr ptr, char* v); +char* QWidget_StatusTip(QtObjectPtr ptr); +char* QWidget_StyleSheet(QtObjectPtr ptr); +char* QWidget_ToolTip(QtObjectPtr ptr); +int QWidget_ToolTipDuration(QtObjectPtr ptr); +void QWidget_UnsetCursor(QtObjectPtr ptr); +void QWidget_UnsetLayoutDirection(QtObjectPtr ptr); +void QWidget_UnsetLocale(QtObjectPtr ptr); +char* QWidget_WhatsThis(QtObjectPtr ptr); +char* QWidget_WindowFilePath(QtObjectPtr ptr); +char* QWidget_WindowIconText(QtObjectPtr ptr); +int QWidget_WindowModality(QtObjectPtr ptr); +char* QWidget_WindowTitle(QtObjectPtr ptr); +int QWidget_X(QtObjectPtr ptr); +int QWidget_Y(QtObjectPtr ptr); +QtObjectPtr QWidget_NewQWidget(QtObjectPtr parent, int f); +void QWidget_AddAction(QtObjectPtr ptr, QtObjectPtr action); +void QWidget_AdjustSize(QtObjectPtr ptr); +int QWidget_BackgroundRole(QtObjectPtr ptr); +QtObjectPtr QWidget_BackingStore(QtObjectPtr ptr); +QtObjectPtr QWidget_ChildAt2(QtObjectPtr ptr, QtObjectPtr p); +QtObjectPtr QWidget_ChildAt(QtObjectPtr ptr, int x, int y); +void QWidget_ClearFocus(QtObjectPtr ptr); +int QWidget_Close(QtObjectPtr ptr); +void QWidget_EnsurePolished(QtObjectPtr ptr); +QtObjectPtr QWidget_FocusProxy(QtObjectPtr ptr); +QtObjectPtr QWidget_FocusWidget(QtObjectPtr ptr); +int QWidget_ForegroundRole(QtObjectPtr ptr); +void QWidget_GetContentsMargins(QtObjectPtr ptr, int left, int top, int right, int bottom); +void QWidget_GrabGesture(QtObjectPtr ptr, int gesture, int flags); +int QWidget_GrabShortcut(QtObjectPtr ptr, QtObjectPtr key, int context); +QtObjectPtr QWidget_GraphicsEffect(QtObjectPtr ptr); +QtObjectPtr QWidget_GraphicsProxyWidget(QtObjectPtr ptr); +int QWidget_HasHeightForWidth(QtObjectPtr ptr); +int QWidget_HasMouseTracking(QtObjectPtr ptr); +int QWidget_Height(QtObjectPtr ptr); +int QWidget_HeightForWidth(QtObjectPtr ptr, int w); +void QWidget_Hide(QtObjectPtr ptr); +char* QWidget_InputMethodQuery(QtObjectPtr ptr, int query); +void QWidget_InsertAction(QtObjectPtr ptr, QtObjectPtr before, QtObjectPtr action); +int QWidget_IsAncestorOf(QtObjectPtr ptr, QtObjectPtr child); +int QWidget_IsEnabled(QtObjectPtr ptr); +int QWidget_IsEnabledTo(QtObjectPtr ptr, QtObjectPtr ancestor); +int QWidget_IsHidden(QtObjectPtr ptr); +int QWidget_IsModal(QtObjectPtr ptr); +int QWidget_IsVisible(QtObjectPtr ptr); +int QWidget_IsVisibleTo(QtObjectPtr ptr, QtObjectPtr ancestor); +int QWidget_IsWindow(QtObjectPtr ptr); +QtObjectPtr QWidget_Layout(QtObjectPtr ptr); +void QWidget_Lower(QtObjectPtr ptr); +int QWidget_MaximumHeight(QtObjectPtr ptr); +int QWidget_MaximumWidth(QtObjectPtr ptr); +int QWidget_MinimumHeight(QtObjectPtr ptr); +int QWidget_MinimumWidth(QtObjectPtr ptr); +void QWidget_Move2(QtObjectPtr ptr, int x, int y); +QtObjectPtr QWidget_NativeParentWidget(QtObjectPtr ptr); +QtObjectPtr QWidget_NextInFocusChain(QtObjectPtr ptr); +void QWidget_OverrideWindowFlags(QtObjectPtr ptr, int flags); +QtObjectPtr QWidget_ParentWidget(QtObjectPtr ptr); +QtObjectPtr QWidget_PreviousInFocusChain(QtObjectPtr ptr); +void QWidget_Raise(QtObjectPtr ptr); +void QWidget_ReleaseShortcut(QtObjectPtr ptr, int id); +void QWidget_RemoveAction(QtObjectPtr ptr, QtObjectPtr action); +void QWidget_Render(QtObjectPtr ptr, QtObjectPtr target, QtObjectPtr targetOffset, QtObjectPtr sourceRegion, int renderFlags); +void QWidget_Render2(QtObjectPtr ptr, QtObjectPtr painter, QtObjectPtr targetOffset, QtObjectPtr sourceRegion, int renderFlags); +void QWidget_Repaint(QtObjectPtr ptr); +void QWidget_Repaint3(QtObjectPtr ptr, QtObjectPtr rect); +void QWidget_Repaint4(QtObjectPtr ptr, QtObjectPtr rgn); +void QWidget_Repaint2(QtObjectPtr ptr, int x, int y, int w, int h); +void QWidget_Resize2(QtObjectPtr ptr, int w, int h); +int QWidget_RestoreGeometry(QtObjectPtr ptr, QtObjectPtr geometry); +void QWidget_Scroll(QtObjectPtr ptr, int dx, int dy); +void QWidget_Scroll2(QtObjectPtr ptr, int dx, int dy, QtObjectPtr r); +void QWidget_SetAttribute(QtObjectPtr ptr, int attribute, int on); +void QWidget_SetBackgroundRole(QtObjectPtr ptr, int role); +void QWidget_SetBaseSize(QtObjectPtr ptr, QtObjectPtr v); +void QWidget_SetBaseSize2(QtObjectPtr ptr, int basew, int baseh); +void QWidget_SetContentsMargins2(QtObjectPtr ptr, QtObjectPtr margins); +void QWidget_SetContentsMargins(QtObjectPtr ptr, int left, int top, int right, int bottom); +void QWidget_SetDisabled(QtObjectPtr ptr, int disable); +void QWidget_SetFixedHeight(QtObjectPtr ptr, int h); +void QWidget_SetFixedSize(QtObjectPtr ptr, QtObjectPtr s); +void QWidget_SetFixedWidth(QtObjectPtr ptr, int w); +void QWidget_SetFocus2(QtObjectPtr ptr); +void QWidget_SetFocus(QtObjectPtr ptr, int reason); +void QWidget_SetFocusProxy(QtObjectPtr ptr, QtObjectPtr w); +void QWidget_SetForegroundRole(QtObjectPtr ptr, int role); +void QWidget_SetGeometry2(QtObjectPtr ptr, int x, int y, int w, int h); +void QWidget_SetGraphicsEffect(QtObjectPtr ptr, QtObjectPtr effect); +void QWidget_SetHidden(QtObjectPtr ptr, int hidden); +void QWidget_SetMaximumSize(QtObjectPtr ptr, QtObjectPtr v); +void QWidget_SetMaximumSize2(QtObjectPtr ptr, int maxw, int maxh); +void QWidget_SetMinimumSize(QtObjectPtr ptr, QtObjectPtr v); +void QWidget_SetMinimumSize2(QtObjectPtr ptr, int minw, int minh); +void QWidget_SetMouseTracking(QtObjectPtr ptr, int enable); +void QWidget_SetParent(QtObjectPtr ptr, QtObjectPtr parent); +void QWidget_SetParent2(QtObjectPtr ptr, QtObjectPtr parent, int f); +void QWidget_SetShortcutAutoRepeat(QtObjectPtr ptr, int id, int enable); +void QWidget_SetShortcutEnabled(QtObjectPtr ptr, int id, int enable); +void QWidget_SetSizeIncrement(QtObjectPtr ptr, QtObjectPtr v); +void QWidget_SetSizeIncrement2(QtObjectPtr ptr, int w, int h); +void QWidget_SetSizePolicy2(QtObjectPtr ptr, int horizontal, int vertical); +void QWidget_SetStyle(QtObjectPtr ptr, QtObjectPtr style); +void QWidget_QWidget_SetTabOrder(QtObjectPtr first, QtObjectPtr second); +void QWidget_SetWindowRole(QtObjectPtr ptr, char* role); +void QWidget_Show(QtObjectPtr ptr); +void QWidget_ShowFullScreen(QtObjectPtr ptr); +void QWidget_ShowMaximized(QtObjectPtr ptr); +void QWidget_ShowMinimized(QtObjectPtr ptr); +void QWidget_ShowNormal(QtObjectPtr ptr); +void QWidget_StackUnder(QtObjectPtr ptr, QtObjectPtr w); +QtObjectPtr QWidget_Style(QtObjectPtr ptr); +int QWidget_TestAttribute(QtObjectPtr ptr, int attribute); +int QWidget_UnderMouse(QtObjectPtr ptr); +void QWidget_UngrabGesture(QtObjectPtr ptr, int gesture); +void QWidget_Update(QtObjectPtr ptr); +void QWidget_Update3(QtObjectPtr ptr, QtObjectPtr rect); +void QWidget_Update4(QtObjectPtr ptr, QtObjectPtr rgn); +void QWidget_Update2(QtObjectPtr ptr, int x, int y, int w, int h); +void QWidget_UpdateGeometry(QtObjectPtr ptr); +int QWidget_UpdatesEnabled(QtObjectPtr ptr); +int QWidget_Width(QtObjectPtr ptr); +QtObjectPtr QWidget_Window(QtObjectPtr ptr); +int QWidget_WindowFlags(QtObjectPtr ptr); +QtObjectPtr QWidget_WindowHandle(QtObjectPtr ptr); +void QWidget_ConnectWindowIconTextChanged(QtObjectPtr ptr); +void QWidget_DisconnectWindowIconTextChanged(QtObjectPtr ptr); +char* QWidget_WindowRole(QtObjectPtr ptr); +int QWidget_WindowState(QtObjectPtr ptr); +void QWidget_ConnectWindowTitleChanged(QtObjectPtr ptr); +void QWidget_DisconnectWindowTitleChanged(QtObjectPtr ptr); +int QWidget_WindowType(QtObjectPtr ptr); +void QWidget_DestroyQWidget(QtObjectPtr ptr); +QtObjectPtr QWidget_QWidget_CreateWindowContainer(QtObjectPtr window, QtObjectPtr parent, int flags); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qwidgetaction.cpp b/widgets/qwidgetaction.cpp new file mode 100755 index 00000000..f851b94b --- /dev/null +++ b/widgets/qwidgetaction.cpp @@ -0,0 +1,38 @@ +#include "qwidgetaction.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQWidgetAction: public QWidgetAction { +public: +}; + +QtObjectPtr QWidgetAction_NewQWidgetAction(QtObjectPtr parent){ + return new QWidgetAction(static_cast(parent)); +} + +QtObjectPtr QWidgetAction_DefaultWidget(QtObjectPtr ptr){ + return static_cast(ptr)->defaultWidget(); +} + +void QWidgetAction_ReleaseWidget(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->releaseWidget(static_cast(widget)); +} + +QtObjectPtr QWidgetAction_RequestWidget(QtObjectPtr ptr, QtObjectPtr parent){ + return static_cast(ptr)->requestWidget(static_cast(parent)); +} + +void QWidgetAction_SetDefaultWidget(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->setDefaultWidget(static_cast(widget)); +} + +void QWidgetAction_DestroyQWidgetAction(QtObjectPtr ptr){ + static_cast(ptr)->~QWidgetAction(); +} + diff --git a/widgets/qwidgetaction.go b/widgets/qwidgetaction.go new file mode 100755 index 00000000..9052577b --- /dev/null +++ b/widgets/qwidgetaction.go @@ -0,0 +1,75 @@ +package widgets + +//#include "qwidgetaction.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QWidgetAction struct { + QAction +} + +type QWidgetActionITF interface { + QActionITF + QWidgetActionPTR() *QWidgetAction +} + +func PointerFromQWidgetAction(ptr QWidgetActionITF) unsafe.Pointer { + if ptr != nil { + return ptr.QWidgetActionPTR().Pointer() + } + return nil +} + +func QWidgetActionFromPointer(ptr unsafe.Pointer) *QWidgetAction { + var n = new(QWidgetAction) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QWidgetAction_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QWidgetAction) QWidgetActionPTR() *QWidgetAction { + return ptr +} + +func NewQWidgetAction(parent core.QObjectITF) *QWidgetAction { + return QWidgetActionFromPointer(unsafe.Pointer(C.QWidgetAction_NewQWidgetAction(C.QtObjectPtr(core.PointerFromQObject(parent))))) +} + +func (ptr *QWidgetAction) DefaultWidget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QWidgetAction_DefaultWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QWidgetAction) ReleaseWidget(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QWidgetAction_ReleaseWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QWidgetAction) RequestWidget(parent QWidgetITF) *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QWidgetAction_RequestWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(parent))))) + } + return nil +} + +func (ptr *QWidgetAction) SetDefaultWidget(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QWidgetAction_SetDefaultWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QWidgetAction) DestroyQWidgetAction() { + if ptr.Pointer() != nil { + C.QWidgetAction_DestroyQWidgetAction(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qwidgetaction.h b/widgets/qwidgetaction.h new file mode 100755 index 00000000..24a2f0ef --- /dev/null +++ b/widgets/qwidgetaction.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QWidgetAction_NewQWidgetAction(QtObjectPtr parent); +QtObjectPtr QWidgetAction_DefaultWidget(QtObjectPtr ptr); +void QWidgetAction_ReleaseWidget(QtObjectPtr ptr, QtObjectPtr widget); +QtObjectPtr QWidgetAction_RequestWidget(QtObjectPtr ptr, QtObjectPtr parent); +void QWidgetAction_SetDefaultWidget(QtObjectPtr ptr, QtObjectPtr widget); +void QWidgetAction_DestroyQWidgetAction(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qwidgetitem.cpp b/widgets/qwidgetitem.cpp new file mode 100755 index 00000000..8498db61 --- /dev/null +++ b/widgets/qwidgetitem.cpp @@ -0,0 +1,50 @@ +#include "qwidgetitem.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQWidgetItem: public QWidgetItem { +public: +}; + +QtObjectPtr QWidgetItem_NewQWidgetItem(QtObjectPtr widget){ + return new QWidgetItem(static_cast(widget)); +} + +int QWidgetItem_ControlTypes(QtObjectPtr ptr){ + return static_cast(ptr)->controlTypes(); +} + +int QWidgetItem_ExpandingDirections(QtObjectPtr ptr){ + return static_cast(ptr)->expandingDirections(); +} + +int QWidgetItem_HasHeightForWidth(QtObjectPtr ptr){ + return static_cast(ptr)->hasHeightForWidth(); +} + +int QWidgetItem_HeightForWidth(QtObjectPtr ptr, int w){ + return static_cast(ptr)->heightForWidth(w); +} + +int QWidgetItem_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +void QWidgetItem_SetGeometry(QtObjectPtr ptr, QtObjectPtr rect){ + static_cast(ptr)->setGeometry(*static_cast(rect)); +} + +QtObjectPtr QWidgetItem_Widget(QtObjectPtr ptr){ + return static_cast(ptr)->widget(); +} + +void QWidgetItem_DestroyQWidgetItem(QtObjectPtr ptr){ + static_cast(ptr)->~QWidgetItem(); +} + diff --git a/widgets/qwidgetitem.go b/widgets/qwidgetitem.go new file mode 100755 index 00000000..a4a17827 --- /dev/null +++ b/widgets/qwidgetitem.go @@ -0,0 +1,92 @@ +package widgets + +//#include "qwidgetitem.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QWidgetItem struct { + QLayoutItem +} + +type QWidgetItemITF interface { + QLayoutItemITF + QWidgetItemPTR() *QWidgetItem +} + +func PointerFromQWidgetItem(ptr QWidgetItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QWidgetItemPTR().Pointer() + } + return nil +} + +func QWidgetItemFromPointer(ptr unsafe.Pointer) *QWidgetItem { + var n = new(QWidgetItem) + n.SetPointer(ptr) + return n +} + +func (ptr *QWidgetItem) QWidgetItemPTR() *QWidgetItem { + return ptr +} + +func NewQWidgetItem(widget QWidgetITF) *QWidgetItem { + return QWidgetItemFromPointer(unsafe.Pointer(C.QWidgetItem_NewQWidgetItem(C.QtObjectPtr(PointerFromQWidget(widget))))) +} + +func (ptr *QWidgetItem) ControlTypes() QSizePolicy__ControlType { + if ptr.Pointer() != nil { + return QSizePolicy__ControlType(C.QWidgetItem_ControlTypes(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWidgetItem) ExpandingDirections() core.Qt__Orientation { + if ptr.Pointer() != nil { + return core.Qt__Orientation(C.QWidgetItem_ExpandingDirections(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWidgetItem) HasHeightForWidth() bool { + if ptr.Pointer() != nil { + return C.QWidgetItem_HasHeightForWidth(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWidgetItem) HeightForWidth(w int) int { + if ptr.Pointer() != nil { + return int(C.QWidgetItem_HeightForWidth(C.QtObjectPtr(ptr.Pointer()), C.int(w))) + } + return 0 +} + +func (ptr *QWidgetItem) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QWidgetItem_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWidgetItem) SetGeometry(rect core.QRectITF) { + if ptr.Pointer() != nil { + C.QWidgetItem_SetGeometry(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQRect(rect))) + } +} + +func (ptr *QWidgetItem) Widget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QWidgetItem_Widget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QWidgetItem) DestroyQWidgetItem() { + if ptr.Pointer() != nil { + C.QWidgetItem_DestroyQWidgetItem(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/widgets/qwidgetitem.h b/widgets/qwidgetitem.h new file mode 100755 index 00000000..068f30b6 --- /dev/null +++ b/widgets/qwidgetitem.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QWidgetItem_NewQWidgetItem(QtObjectPtr widget); +int QWidgetItem_ControlTypes(QtObjectPtr ptr); +int QWidgetItem_ExpandingDirections(QtObjectPtr ptr); +int QWidgetItem_HasHeightForWidth(QtObjectPtr ptr); +int QWidgetItem_HeightForWidth(QtObjectPtr ptr, int w); +int QWidgetItem_IsEmpty(QtObjectPtr ptr); +void QWidgetItem_SetGeometry(QtObjectPtr ptr, QtObjectPtr rect); +QtObjectPtr QWidgetItem_Widget(QtObjectPtr ptr); +void QWidgetItem_DestroyQWidgetItem(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qwizard.cpp b/widgets/qwizard.cpp new file mode 100755 index 00000000..042ce773 --- /dev/null +++ b/widgets/qwizard.cpp @@ -0,0 +1,211 @@ +#include "qwizard.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQWizard: public QWizard { +public: +void Signal_CurrentIdChanged(int id){callbackQWizardCurrentIdChanged(this->objectName().toUtf8().data(), id);}; +void Signal_CustomButtonClicked(int which){callbackQWizardCustomButtonClicked(this->objectName().toUtf8().data(), which);}; +void Signal_HelpRequested(){callbackQWizardHelpRequested(this->objectName().toUtf8().data());}; +void Signal_PageAdded(int id){callbackQWizardPageAdded(this->objectName().toUtf8().data(), id);}; +void Signal_PageRemoved(int id){callbackQWizardPageRemoved(this->objectName().toUtf8().data(), id);}; +}; + +int QWizard_CurrentId(QtObjectPtr ptr){ + return static_cast(ptr)->currentId(); +} + +int QWizard_HasVisitedPage(QtObjectPtr ptr, int id){ + return static_cast(ptr)->hasVisitedPage(id); +} + +int QWizard_Options(QtObjectPtr ptr){ + return static_cast(ptr)->options(); +} + +QtObjectPtr QWizard_Page(QtObjectPtr ptr, int id){ + return static_cast(ptr)->page(id); +} + +void QWizard_SetOptions(QtObjectPtr ptr, int options){ + static_cast(ptr)->setOptions(static_cast(options)); +} + +void QWizard_SetPage(QtObjectPtr ptr, int id, QtObjectPtr page){ + static_cast(ptr)->setPage(id, static_cast(page)); +} + +void QWizard_SetStartId(QtObjectPtr ptr, int id){ + static_cast(ptr)->setStartId(id); +} + +void QWizard_SetSubTitleFormat(QtObjectPtr ptr, int format){ + static_cast(ptr)->setSubTitleFormat(static_cast(format)); +} + +void QWizard_SetTitleFormat(QtObjectPtr ptr, int format){ + static_cast(ptr)->setTitleFormat(static_cast(format)); +} + +void QWizard_SetWizardStyle(QtObjectPtr ptr, int style){ + static_cast(ptr)->setWizardStyle(static_cast(style)); +} + +int QWizard_StartId(QtObjectPtr ptr){ + return static_cast(ptr)->startId(); +} + +int QWizard_SubTitleFormat(QtObjectPtr ptr){ + return static_cast(ptr)->subTitleFormat(); +} + +int QWizard_TitleFormat(QtObjectPtr ptr){ + return static_cast(ptr)->titleFormat(); +} + +int QWizard_WizardStyle(QtObjectPtr ptr){ + return static_cast(ptr)->wizardStyle(); +} + +QtObjectPtr QWizard_NewQWizard(QtObjectPtr parent, int flags){ + return new QWizard(static_cast(parent), static_cast(flags)); +} + +int QWizard_AddPage(QtObjectPtr ptr, QtObjectPtr page){ + return static_cast(ptr)->addPage(static_cast(page)); +} + +void QWizard_Back(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "back"); +} + +QtObjectPtr QWizard_Button(QtObjectPtr ptr, int which){ + return static_cast(ptr)->button(static_cast(which)); +} + +char* QWizard_ButtonText(QtObjectPtr ptr, int which){ + return static_cast(ptr)->buttonText(static_cast(which)).toUtf8().data(); +} + +void QWizard_ConnectCurrentIdChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWizard::currentIdChanged), static_cast(ptr), static_cast(&MyQWizard::Signal_CurrentIdChanged));; +} + +void QWizard_DisconnectCurrentIdChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWizard::currentIdChanged), static_cast(ptr), static_cast(&MyQWizard::Signal_CurrentIdChanged));; +} + +QtObjectPtr QWizard_CurrentPage(QtObjectPtr ptr){ + return static_cast(ptr)->currentPage(); +} + +void QWizard_ConnectCustomButtonClicked(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWizard::customButtonClicked), static_cast(ptr), static_cast(&MyQWizard::Signal_CustomButtonClicked));; +} + +void QWizard_DisconnectCustomButtonClicked(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWizard::customButtonClicked), static_cast(ptr), static_cast(&MyQWizard::Signal_CustomButtonClicked));; +} + +char* QWizard_Field(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->field(QString(name)).toString().toUtf8().data(); +} + +void QWizard_ConnectHelpRequested(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWizard::helpRequested), static_cast(ptr), static_cast(&MyQWizard::Signal_HelpRequested));; +} + +void QWizard_DisconnectHelpRequested(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWizard::helpRequested), static_cast(ptr), static_cast(&MyQWizard::Signal_HelpRequested));; +} + +void QWizard_Next(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "next"); +} + +int QWizard_NextId(QtObjectPtr ptr){ + return static_cast(ptr)->nextId(); +} + +void QWizard_ConnectPageAdded(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWizard::pageAdded), static_cast(ptr), static_cast(&MyQWizard::Signal_PageAdded));; +} + +void QWizard_DisconnectPageAdded(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWizard::pageAdded), static_cast(ptr), static_cast(&MyQWizard::Signal_PageAdded));; +} + +void QWizard_ConnectPageRemoved(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWizard::pageRemoved), static_cast(ptr), static_cast(&MyQWizard::Signal_PageRemoved));; +} + +void QWizard_DisconnectPageRemoved(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWizard::pageRemoved), static_cast(ptr), static_cast(&MyQWizard::Signal_PageRemoved));; +} + +void QWizard_RemovePage(QtObjectPtr ptr, int id){ + static_cast(ptr)->removePage(id); +} + +void QWizard_Restart(QtObjectPtr ptr){ + QMetaObject::invokeMethod(static_cast(ptr), "restart"); +} + +void QWizard_SetButton(QtObjectPtr ptr, int which, QtObjectPtr button){ + static_cast(ptr)->setButton(static_cast(which), static_cast(button)); +} + +void QWizard_SetButtonText(QtObjectPtr ptr, int which, char* text){ + static_cast(ptr)->setButtonText(static_cast(which), QString(text)); +} + +void QWizard_SetDefaultProperty(QtObjectPtr ptr, char* className, char* property, char* changedSignal){ + static_cast(ptr)->setDefaultProperty(const_cast(className), const_cast(property), const_cast(changedSignal)); +} + +void QWizard_SetField(QtObjectPtr ptr, char* name, char* value){ + static_cast(ptr)->setField(QString(name), QVariant(value)); +} + +void QWizard_SetOption(QtObjectPtr ptr, int option, int on){ + static_cast(ptr)->setOption(static_cast(option), on != 0); +} + +void QWizard_SetPixmap(QtObjectPtr ptr, int which, QtObjectPtr pixmap){ + static_cast(ptr)->setPixmap(static_cast(which), *static_cast(pixmap)); +} + +void QWizard_SetSideWidget(QtObjectPtr ptr, QtObjectPtr widget){ + static_cast(ptr)->setSideWidget(static_cast(widget)); +} + +void QWizard_SetVisible(QtObjectPtr ptr, int visible){ + static_cast(ptr)->setVisible(visible != 0); +} + +QtObjectPtr QWizard_SideWidget(QtObjectPtr ptr){ + return static_cast(ptr)->sideWidget(); +} + +int QWizard_TestOption(QtObjectPtr ptr, int option){ + return static_cast(ptr)->testOption(static_cast(option)); +} + +int QWizard_ValidateCurrentPage(QtObjectPtr ptr){ + return static_cast(ptr)->validateCurrentPage(); +} + +void QWizard_DestroyQWizard(QtObjectPtr ptr){ + static_cast(ptr)->~QWizard(); +} + diff --git a/widgets/qwizard.go b/widgets/qwizard.go new file mode 100755 index 00000000..4dd95253 --- /dev/null +++ b/widgets/qwizard.go @@ -0,0 +1,436 @@ +package widgets + +//#include "qwizard.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QWizard struct { + QDialog +} + +type QWizardITF interface { + QDialogITF + QWizardPTR() *QWizard +} + +func PointerFromQWizard(ptr QWizardITF) unsafe.Pointer { + if ptr != nil { + return ptr.QWizardPTR().Pointer() + } + return nil +} + +func QWizardFromPointer(ptr unsafe.Pointer) *QWizard { + var n = new(QWizard) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QWizard_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QWizard) QWizardPTR() *QWizard { + return ptr +} + +//QWizard::WizardButton +type QWizard__WizardButton int + +var ( + QWizard__BackButton = QWizard__WizardButton(0) + QWizard__NextButton = QWizard__WizardButton(1) + QWizard__CommitButton = QWizard__WizardButton(2) + QWizard__FinishButton = QWizard__WizardButton(3) + QWizard__CancelButton = QWizard__WizardButton(4) + QWizard__HelpButton = QWizard__WizardButton(5) + QWizard__CustomButton1 = QWizard__WizardButton(6) + QWizard__CustomButton2 = QWizard__WizardButton(7) + QWizard__CustomButton3 = QWizard__WizardButton(8) + QWizard__Stretch = QWizard__WizardButton(9) + QWizard__NoButton = QWizard__WizardButton(-1) + QWizard__NStandardButtons = QWizard__WizardButton(6) + QWizard__NButtons = QWizard__WizardButton(9) +) + +//QWizard::WizardOption +type QWizard__WizardOption int + +var ( + QWizard__IndependentPages = QWizard__WizardOption(0x00000001) + QWizard__IgnoreSubTitles = QWizard__WizardOption(0x00000002) + QWizard__ExtendedWatermarkPixmap = QWizard__WizardOption(0x00000004) + QWizard__NoDefaultButton = QWizard__WizardOption(0x00000008) + QWizard__NoBackButtonOnStartPage = QWizard__WizardOption(0x00000010) + QWizard__NoBackButtonOnLastPage = QWizard__WizardOption(0x00000020) + QWizard__DisabledBackButtonOnLastPage = QWizard__WizardOption(0x00000040) + QWizard__HaveNextButtonOnLastPage = QWizard__WizardOption(0x00000080) + QWizard__HaveFinishButtonOnEarlyPages = QWizard__WizardOption(0x00000100) + QWizard__NoCancelButton = QWizard__WizardOption(0x00000200) + QWizard__CancelButtonOnLeft = QWizard__WizardOption(0x00000400) + QWizard__HaveHelpButton = QWizard__WizardOption(0x00000800) + QWizard__HelpButtonOnRight = QWizard__WizardOption(0x00001000) + QWizard__HaveCustomButton1 = QWizard__WizardOption(0x00002000) + QWizard__HaveCustomButton2 = QWizard__WizardOption(0x00004000) + QWizard__HaveCustomButton3 = QWizard__WizardOption(0x00008000) + QWizard__NoCancelButtonOnLastPage = QWizard__WizardOption(0x00010000) +) + +//QWizard::WizardPixmap +type QWizard__WizardPixmap int + +var ( + QWizard__WatermarkPixmap = QWizard__WizardPixmap(0) + QWizard__LogoPixmap = QWizard__WizardPixmap(1) + QWizard__BannerPixmap = QWizard__WizardPixmap(2) + QWizard__BackgroundPixmap = QWizard__WizardPixmap(3) + QWizard__NPixmaps = QWizard__WizardPixmap(4) +) + +//QWizard::WizardStyle +type QWizard__WizardStyle int + +var ( + QWizard__ClassicStyle = QWizard__WizardStyle(0) + QWizard__ModernStyle = QWizard__WizardStyle(1) + QWizard__MacStyle = QWizard__WizardStyle(2) + QWizard__AeroStyle = QWizard__WizardStyle(3) + QWizard__NStyles = QWizard__WizardStyle(4) +) + +func (ptr *QWizard) CurrentId() int { + if ptr.Pointer() != nil { + return int(C.QWizard_CurrentId(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWizard) HasVisitedPage(id int) bool { + if ptr.Pointer() != nil { + return C.QWizard_HasVisitedPage(C.QtObjectPtr(ptr.Pointer()), C.int(id)) != 0 + } + return false +} + +func (ptr *QWizard) Options() QWizard__WizardOption { + if ptr.Pointer() != nil { + return QWizard__WizardOption(C.QWizard_Options(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWizard) Page(id int) *QWizardPage { + if ptr.Pointer() != nil { + return QWizardPageFromPointer(unsafe.Pointer(C.QWizard_Page(C.QtObjectPtr(ptr.Pointer()), C.int(id)))) + } + return nil +} + +func (ptr *QWizard) SetOptions(options QWizard__WizardOption) { + if ptr.Pointer() != nil { + C.QWizard_SetOptions(C.QtObjectPtr(ptr.Pointer()), C.int(options)) + } +} + +func (ptr *QWizard) SetPage(id int, page QWizardPageITF) { + if ptr.Pointer() != nil { + C.QWizard_SetPage(C.QtObjectPtr(ptr.Pointer()), C.int(id), C.QtObjectPtr(PointerFromQWizardPage(page))) + } +} + +func (ptr *QWizard) SetStartId(id int) { + if ptr.Pointer() != nil { + C.QWizard_SetStartId(C.QtObjectPtr(ptr.Pointer()), C.int(id)) + } +} + +func (ptr *QWizard) SetSubTitleFormat(format core.Qt__TextFormat) { + if ptr.Pointer() != nil { + C.QWizard_SetSubTitleFormat(C.QtObjectPtr(ptr.Pointer()), C.int(format)) + } +} + +func (ptr *QWizard) SetTitleFormat(format core.Qt__TextFormat) { + if ptr.Pointer() != nil { + C.QWizard_SetTitleFormat(C.QtObjectPtr(ptr.Pointer()), C.int(format)) + } +} + +func (ptr *QWizard) SetWizardStyle(style QWizard__WizardStyle) { + if ptr.Pointer() != nil { + C.QWizard_SetWizardStyle(C.QtObjectPtr(ptr.Pointer()), C.int(style)) + } +} + +func (ptr *QWizard) StartId() int { + if ptr.Pointer() != nil { + return int(C.QWizard_StartId(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWizard) SubTitleFormat() core.Qt__TextFormat { + if ptr.Pointer() != nil { + return core.Qt__TextFormat(C.QWizard_SubTitleFormat(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWizard) TitleFormat() core.Qt__TextFormat { + if ptr.Pointer() != nil { + return core.Qt__TextFormat(C.QWizard_TitleFormat(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWizard) WizardStyle() QWizard__WizardStyle { + if ptr.Pointer() != nil { + return QWizard__WizardStyle(C.QWizard_WizardStyle(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func NewQWizard(parent QWidgetITF, flags core.Qt__WindowType) *QWizard { + return QWizardFromPointer(unsafe.Pointer(C.QWizard_NewQWizard(C.QtObjectPtr(PointerFromQWidget(parent)), C.int(flags)))) +} + +func (ptr *QWizard) AddPage(page QWizardPageITF) int { + if ptr.Pointer() != nil { + return int(C.QWizard_AddPage(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWizardPage(page)))) + } + return 0 +} + +func (ptr *QWizard) Back() { + if ptr.Pointer() != nil { + C.QWizard_Back(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWizard) Button(which QWizard__WizardButton) *QAbstractButton { + if ptr.Pointer() != nil { + return QAbstractButtonFromPointer(unsafe.Pointer(C.QWizard_Button(C.QtObjectPtr(ptr.Pointer()), C.int(which)))) + } + return nil +} + +func (ptr *QWizard) ButtonText(which QWizard__WizardButton) string { + if ptr.Pointer() != nil { + return C.GoString(C.QWizard_ButtonText(C.QtObjectPtr(ptr.Pointer()), C.int(which))) + } + return "" +} + +func (ptr *QWizard) ConnectCurrentIdChanged(f func(id int)) { + if ptr.Pointer() != nil { + C.QWizard_ConnectCurrentIdChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "currentIdChanged", f) + } +} + +func (ptr *QWizard) DisconnectCurrentIdChanged() { + if ptr.Pointer() != nil { + C.QWizard_DisconnectCurrentIdChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "currentIdChanged") + } +} + +//export callbackQWizardCurrentIdChanged +func callbackQWizardCurrentIdChanged(ptrName *C.char, id C.int) { + qt.GetSignal(C.GoString(ptrName), "currentIdChanged").(func(int))(int(id)) +} + +func (ptr *QWizard) CurrentPage() *QWizardPage { + if ptr.Pointer() != nil { + return QWizardPageFromPointer(unsafe.Pointer(C.QWizard_CurrentPage(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QWizard) ConnectCustomButtonClicked(f func(which int)) { + if ptr.Pointer() != nil { + C.QWizard_ConnectCustomButtonClicked(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "customButtonClicked", f) + } +} + +func (ptr *QWizard) DisconnectCustomButtonClicked() { + if ptr.Pointer() != nil { + C.QWizard_DisconnectCustomButtonClicked(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "customButtonClicked") + } +} + +//export callbackQWizardCustomButtonClicked +func callbackQWizardCustomButtonClicked(ptrName *C.char, which C.int) { + qt.GetSignal(C.GoString(ptrName), "customButtonClicked").(func(int))(int(which)) +} + +func (ptr *QWizard) Field(name string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QWizard_Field(C.QtObjectPtr(ptr.Pointer()), C.CString(name))) + } + return "" +} + +func (ptr *QWizard) ConnectHelpRequested(f func()) { + if ptr.Pointer() != nil { + C.QWizard_ConnectHelpRequested(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "helpRequested", f) + } +} + +func (ptr *QWizard) DisconnectHelpRequested() { + if ptr.Pointer() != nil { + C.QWizard_DisconnectHelpRequested(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "helpRequested") + } +} + +//export callbackQWizardHelpRequested +func callbackQWizardHelpRequested(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "helpRequested").(func())() +} + +func (ptr *QWizard) Next() { + if ptr.Pointer() != nil { + C.QWizard_Next(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWizard) NextId() int { + if ptr.Pointer() != nil { + return int(C.QWizard_NextId(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWizard) ConnectPageAdded(f func(id int)) { + if ptr.Pointer() != nil { + C.QWizard_ConnectPageAdded(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "pageAdded", f) + } +} + +func (ptr *QWizard) DisconnectPageAdded() { + if ptr.Pointer() != nil { + C.QWizard_DisconnectPageAdded(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "pageAdded") + } +} + +//export callbackQWizardPageAdded +func callbackQWizardPageAdded(ptrName *C.char, id C.int) { + qt.GetSignal(C.GoString(ptrName), "pageAdded").(func(int))(int(id)) +} + +func (ptr *QWizard) ConnectPageRemoved(f func(id int)) { + if ptr.Pointer() != nil { + C.QWizard_ConnectPageRemoved(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "pageRemoved", f) + } +} + +func (ptr *QWizard) DisconnectPageRemoved() { + if ptr.Pointer() != nil { + C.QWizard_DisconnectPageRemoved(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "pageRemoved") + } +} + +//export callbackQWizardPageRemoved +func callbackQWizardPageRemoved(ptrName *C.char, id C.int) { + qt.GetSignal(C.GoString(ptrName), "pageRemoved").(func(int))(int(id)) +} + +func (ptr *QWizard) RemovePage(id int) { + if ptr.Pointer() != nil { + C.QWizard_RemovePage(C.QtObjectPtr(ptr.Pointer()), C.int(id)) + } +} + +func (ptr *QWizard) Restart() { + if ptr.Pointer() != nil { + C.QWizard_Restart(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWizard) SetButton(which QWizard__WizardButton, button QAbstractButtonITF) { + if ptr.Pointer() != nil { + C.QWizard_SetButton(C.QtObjectPtr(ptr.Pointer()), C.int(which), C.QtObjectPtr(PointerFromQAbstractButton(button))) + } +} + +func (ptr *QWizard) SetButtonText(which QWizard__WizardButton, text string) { + if ptr.Pointer() != nil { + C.QWizard_SetButtonText(C.QtObjectPtr(ptr.Pointer()), C.int(which), C.CString(text)) + } +} + +func (ptr *QWizard) SetDefaultProperty(className string, property string, changedSignal string) { + if ptr.Pointer() != nil { + C.QWizard_SetDefaultProperty(C.QtObjectPtr(ptr.Pointer()), C.CString(className), C.CString(property), C.CString(changedSignal)) + } +} + +func (ptr *QWizard) SetField(name string, value string) { + if ptr.Pointer() != nil { + C.QWizard_SetField(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.CString(value)) + } +} + +func (ptr *QWizard) SetOption(option QWizard__WizardOption, on bool) { + if ptr.Pointer() != nil { + C.QWizard_SetOption(C.QtObjectPtr(ptr.Pointer()), C.int(option), C.int(qt.GoBoolToInt(on))) + } +} + +func (ptr *QWizard) SetPixmap(which QWizard__WizardPixmap, pixmap gui.QPixmapITF) { + if ptr.Pointer() != nil { + C.QWizard_SetPixmap(C.QtObjectPtr(ptr.Pointer()), C.int(which), C.QtObjectPtr(gui.PointerFromQPixmap(pixmap))) + } +} + +func (ptr *QWizard) SetSideWidget(widget QWidgetITF) { + if ptr.Pointer() != nil { + C.QWizard_SetSideWidget(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQWidget(widget))) + } +} + +func (ptr *QWizard) SetVisible(visible bool) { + if ptr.Pointer() != nil { + C.QWizard_SetVisible(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(visible))) + } +} + +func (ptr *QWizard) SideWidget() *QWidget { + if ptr.Pointer() != nil { + return QWidgetFromPointer(unsafe.Pointer(C.QWizard_SideWidget(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QWizard) TestOption(option QWizard__WizardOption) bool { + if ptr.Pointer() != nil { + return C.QWizard_TestOption(C.QtObjectPtr(ptr.Pointer()), C.int(option)) != 0 + } + return false +} + +func (ptr *QWizard) ValidateCurrentPage() bool { + if ptr.Pointer() != nil { + return C.QWizard_ValidateCurrentPage(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWizard) DestroyQWizard() { + if ptr.Pointer() != nil { + C.QWizard_DestroyQWizard(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qwizard.h b/widgets/qwizard.h new file mode 100755 index 00000000..7274fead --- /dev/null +++ b/widgets/qwizard.h @@ -0,0 +1,56 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QWizard_CurrentId(QtObjectPtr ptr); +int QWizard_HasVisitedPage(QtObjectPtr ptr, int id); +int QWizard_Options(QtObjectPtr ptr); +QtObjectPtr QWizard_Page(QtObjectPtr ptr, int id); +void QWizard_SetOptions(QtObjectPtr ptr, int options); +void QWizard_SetPage(QtObjectPtr ptr, int id, QtObjectPtr page); +void QWizard_SetStartId(QtObjectPtr ptr, int id); +void QWizard_SetSubTitleFormat(QtObjectPtr ptr, int format); +void QWizard_SetTitleFormat(QtObjectPtr ptr, int format); +void QWizard_SetWizardStyle(QtObjectPtr ptr, int style); +int QWizard_StartId(QtObjectPtr ptr); +int QWizard_SubTitleFormat(QtObjectPtr ptr); +int QWizard_TitleFormat(QtObjectPtr ptr); +int QWizard_WizardStyle(QtObjectPtr ptr); +QtObjectPtr QWizard_NewQWizard(QtObjectPtr parent, int flags); +int QWizard_AddPage(QtObjectPtr ptr, QtObjectPtr page); +void QWizard_Back(QtObjectPtr ptr); +QtObjectPtr QWizard_Button(QtObjectPtr ptr, int which); +char* QWizard_ButtonText(QtObjectPtr ptr, int which); +void QWizard_ConnectCurrentIdChanged(QtObjectPtr ptr); +void QWizard_DisconnectCurrentIdChanged(QtObjectPtr ptr); +QtObjectPtr QWizard_CurrentPage(QtObjectPtr ptr); +void QWizard_ConnectCustomButtonClicked(QtObjectPtr ptr); +void QWizard_DisconnectCustomButtonClicked(QtObjectPtr ptr); +char* QWizard_Field(QtObjectPtr ptr, char* name); +void QWizard_ConnectHelpRequested(QtObjectPtr ptr); +void QWizard_DisconnectHelpRequested(QtObjectPtr ptr); +void QWizard_Next(QtObjectPtr ptr); +int QWizard_NextId(QtObjectPtr ptr); +void QWizard_ConnectPageAdded(QtObjectPtr ptr); +void QWizard_DisconnectPageAdded(QtObjectPtr ptr); +void QWizard_ConnectPageRemoved(QtObjectPtr ptr); +void QWizard_DisconnectPageRemoved(QtObjectPtr ptr); +void QWizard_RemovePage(QtObjectPtr ptr, int id); +void QWizard_Restart(QtObjectPtr ptr); +void QWizard_SetButton(QtObjectPtr ptr, int which, QtObjectPtr button); +void QWizard_SetButtonText(QtObjectPtr ptr, int which, char* text); +void QWizard_SetDefaultProperty(QtObjectPtr ptr, char* className, char* property, char* changedSignal); +void QWizard_SetField(QtObjectPtr ptr, char* name, char* value); +void QWizard_SetOption(QtObjectPtr ptr, int option, int on); +void QWizard_SetPixmap(QtObjectPtr ptr, int which, QtObjectPtr pixmap); +void QWizard_SetSideWidget(QtObjectPtr ptr, QtObjectPtr widget); +void QWizard_SetVisible(QtObjectPtr ptr, int visible); +QtObjectPtr QWizard_SideWidget(QtObjectPtr ptr); +int QWizard_TestOption(QtObjectPtr ptr, int option); +int QWizard_ValidateCurrentPage(QtObjectPtr ptr); +void QWizard_DestroyQWizard(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/widgets/qwizardpage.cpp b/widgets/qwizardpage.cpp new file mode 100755 index 00000000..316d1a6b --- /dev/null +++ b/widgets/qwizardpage.cpp @@ -0,0 +1,97 @@ +#include "qwizardpage.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQWizardPage: public QWizardPage { +public: +void Signal_CompleteChanged(){callbackQWizardPageCompleteChanged(this->objectName().toUtf8().data());}; +}; + +void QWizardPage_SetSubTitle(QtObjectPtr ptr, char* subTitle){ + static_cast(ptr)->setSubTitle(QString(subTitle)); +} + +void QWizardPage_SetTitle(QtObjectPtr ptr, char* title){ + static_cast(ptr)->setTitle(QString(title)); +} + +char* QWizardPage_SubTitle(QtObjectPtr ptr){ + return static_cast(ptr)->subTitle().toUtf8().data(); +} + +char* QWizardPage_Title(QtObjectPtr ptr){ + return static_cast(ptr)->title().toUtf8().data(); +} + +QtObjectPtr QWizardPage_NewQWizardPage(QtObjectPtr parent){ + return new QWizardPage(static_cast(parent)); +} + +char* QWizardPage_ButtonText(QtObjectPtr ptr, int which){ + return static_cast(ptr)->buttonText(static_cast(which)).toUtf8().data(); +} + +void QWizardPage_CleanupPage(QtObjectPtr ptr){ + static_cast(ptr)->cleanupPage(); +} + +void QWizardPage_ConnectCompleteChanged(QtObjectPtr ptr){ + QObject::connect(static_cast(ptr), static_cast(&QWizardPage::completeChanged), static_cast(ptr), static_cast(&MyQWizardPage::Signal_CompleteChanged));; +} + +void QWizardPage_DisconnectCompleteChanged(QtObjectPtr ptr){ + QObject::disconnect(static_cast(ptr), static_cast(&QWizardPage::completeChanged), static_cast(ptr), static_cast(&MyQWizardPage::Signal_CompleteChanged));; +} + +void QWizardPage_InitializePage(QtObjectPtr ptr){ + static_cast(ptr)->initializePage(); +} + +int QWizardPage_IsCommitPage(QtObjectPtr ptr){ + return static_cast(ptr)->isCommitPage(); +} + +int QWizardPage_IsComplete(QtObjectPtr ptr){ + return static_cast(ptr)->isComplete(); +} + +int QWizardPage_IsFinalPage(QtObjectPtr ptr){ + return static_cast(ptr)->isFinalPage(); +} + +int QWizardPage_NextId(QtObjectPtr ptr){ + return static_cast(ptr)->nextId(); +} + +void QWizardPage_SetButtonText(QtObjectPtr ptr, int which, char* text){ + static_cast(ptr)->setButtonText(static_cast(which), QString(text)); +} + +void QWizardPage_SetCommitPage(QtObjectPtr ptr, int commitPage){ + static_cast(ptr)->setCommitPage(commitPage != 0); +} + +void QWizardPage_SetFinalPage(QtObjectPtr ptr, int finalPage){ + static_cast(ptr)->setFinalPage(finalPage != 0); +} + +void QWizardPage_SetPixmap(QtObjectPtr ptr, int which, QtObjectPtr pixmap){ + static_cast(ptr)->setPixmap(static_cast(which), *static_cast(pixmap)); +} + +int QWizardPage_ValidatePage(QtObjectPtr ptr){ + return static_cast(ptr)->validatePage(); +} + +void QWizardPage_DestroyQWizardPage(QtObjectPtr ptr){ + static_cast(ptr)->~QWizardPage(); +} + diff --git a/widgets/qwizardpage.go b/widgets/qwizardpage.go new file mode 100755 index 00000000..588f3ea9 --- /dev/null +++ b/widgets/qwizardpage.go @@ -0,0 +1,172 @@ +package widgets + +//#include "qwizardpage.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/gui" + "unsafe" +) + +type QWizardPage struct { + QWidget +} + +type QWizardPageITF interface { + QWidgetITF + QWizardPagePTR() *QWizardPage +} + +func PointerFromQWizardPage(ptr QWizardPageITF) unsafe.Pointer { + if ptr != nil { + return ptr.QWizardPagePTR().Pointer() + } + return nil +} + +func QWizardPageFromPointer(ptr unsafe.Pointer) *QWizardPage { + var n = new(QWizardPage) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QWizardPage_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QWizardPage) QWizardPagePTR() *QWizardPage { + return ptr +} + +func (ptr *QWizardPage) SetSubTitle(subTitle string) { + if ptr.Pointer() != nil { + C.QWizardPage_SetSubTitle(C.QtObjectPtr(ptr.Pointer()), C.CString(subTitle)) + } +} + +func (ptr *QWizardPage) SetTitle(title string) { + if ptr.Pointer() != nil { + C.QWizardPage_SetTitle(C.QtObjectPtr(ptr.Pointer()), C.CString(title)) + } +} + +func (ptr *QWizardPage) SubTitle() string { + if ptr.Pointer() != nil { + return C.GoString(C.QWizardPage_SubTitle(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QWizardPage) Title() string { + if ptr.Pointer() != nil { + return C.GoString(C.QWizardPage_Title(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func NewQWizardPage(parent QWidgetITF) *QWizardPage { + return QWizardPageFromPointer(unsafe.Pointer(C.QWizardPage_NewQWizardPage(C.QtObjectPtr(PointerFromQWidget(parent))))) +} + +func (ptr *QWizardPage) ButtonText(which QWizard__WizardButton) string { + if ptr.Pointer() != nil { + return C.GoString(C.QWizardPage_ButtonText(C.QtObjectPtr(ptr.Pointer()), C.int(which))) + } + return "" +} + +func (ptr *QWizardPage) CleanupPage() { + if ptr.Pointer() != nil { + C.QWizardPage_CleanupPage(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWizardPage) ConnectCompleteChanged(f func()) { + if ptr.Pointer() != nil { + C.QWizardPage_ConnectCompleteChanged(C.QtObjectPtr(ptr.Pointer())) + qt.ConnectSignal(ptr.ObjectName(), "completeChanged", f) + } +} + +func (ptr *QWizardPage) DisconnectCompleteChanged() { + if ptr.Pointer() != nil { + C.QWizardPage_DisconnectCompleteChanged(C.QtObjectPtr(ptr.Pointer())) + qt.DisconnectSignal(ptr.ObjectName(), "completeChanged") + } +} + +//export callbackQWizardPageCompleteChanged +func callbackQWizardPageCompleteChanged(ptrName *C.char) { + qt.GetSignal(C.GoString(ptrName), "completeChanged").(func())() +} + +func (ptr *QWizardPage) InitializePage() { + if ptr.Pointer() != nil { + C.QWizardPage_InitializePage(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QWizardPage) IsCommitPage() bool { + if ptr.Pointer() != nil { + return C.QWizardPage_IsCommitPage(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWizardPage) IsComplete() bool { + if ptr.Pointer() != nil { + return C.QWizardPage_IsComplete(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWizardPage) IsFinalPage() bool { + if ptr.Pointer() != nil { + return C.QWizardPage_IsFinalPage(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWizardPage) NextId() int { + if ptr.Pointer() != nil { + return int(C.QWizardPage_NextId(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QWizardPage) SetButtonText(which QWizard__WizardButton, text string) { + if ptr.Pointer() != nil { + C.QWizardPage_SetButtonText(C.QtObjectPtr(ptr.Pointer()), C.int(which), C.CString(text)) + } +} + +func (ptr *QWizardPage) SetCommitPage(commitPage bool) { + if ptr.Pointer() != nil { + C.QWizardPage_SetCommitPage(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(commitPage))) + } +} + +func (ptr *QWizardPage) SetFinalPage(finalPage bool) { + if ptr.Pointer() != nil { + C.QWizardPage_SetFinalPage(C.QtObjectPtr(ptr.Pointer()), C.int(qt.GoBoolToInt(finalPage))) + } +} + +func (ptr *QWizardPage) SetPixmap(which QWizard__WizardPixmap, pixmap gui.QPixmapITF) { + if ptr.Pointer() != nil { + C.QWizardPage_SetPixmap(C.QtObjectPtr(ptr.Pointer()), C.int(which), C.QtObjectPtr(gui.PointerFromQPixmap(pixmap))) + } +} + +func (ptr *QWizardPage) ValidatePage() bool { + if ptr.Pointer() != nil { + return C.QWizardPage_ValidatePage(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QWizardPage) DestroyQWizardPage() { + if ptr.Pointer() != nil { + C.QWizardPage_DestroyQWizardPage(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/widgets/qwizardpage.h b/widgets/qwizardpage.h new file mode 100755 index 00000000..23f14eb6 --- /dev/null +++ b/widgets/qwizardpage.h @@ -0,0 +1,29 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QWizardPage_SetSubTitle(QtObjectPtr ptr, char* subTitle); +void QWizardPage_SetTitle(QtObjectPtr ptr, char* title); +char* QWizardPage_SubTitle(QtObjectPtr ptr); +char* QWizardPage_Title(QtObjectPtr ptr); +QtObjectPtr QWizardPage_NewQWizardPage(QtObjectPtr parent); +char* QWizardPage_ButtonText(QtObjectPtr ptr, int which); +void QWizardPage_CleanupPage(QtObjectPtr ptr); +void QWizardPage_ConnectCompleteChanged(QtObjectPtr ptr); +void QWizardPage_DisconnectCompleteChanged(QtObjectPtr ptr); +void QWizardPage_InitializePage(QtObjectPtr ptr); +int QWizardPage_IsCommitPage(QtObjectPtr ptr); +int QWizardPage_IsComplete(QtObjectPtr ptr); +int QWizardPage_IsFinalPage(QtObjectPtr ptr); +int QWizardPage_NextId(QtObjectPtr ptr); +void QWizardPage_SetButtonText(QtObjectPtr ptr, int which, char* text); +void QWizardPage_SetCommitPage(QtObjectPtr ptr, int commitPage); +void QWizardPage_SetFinalPage(QtObjectPtr ptr, int finalPage); +void QWizardPage_SetPixmap(QtObjectPtr ptr, int which, QtObjectPtr pixmap); +int QWizardPage_ValidatePage(QtObjectPtr ptr); +void QWizardPage_DestroyQWizardPage(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/cgo_darwin_amd64.go b/xml/cgo_darwin_amd64.go new file mode 100755 index 00000000..dbd0d29b --- /dev/null +++ b/xml/cgo_darwin_amd64.go @@ -0,0 +1,13 @@ +package xml + +/* +#cgo CPPFLAGS: -pipe -O2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 -Wall -W +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_XML_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/mkspecs/macx-clang -F/usr/local/Qt5.5.1/5.5/clang_64/lib +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtCore.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtXml.framework/Headers +#cgo CPPFLAGS: -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.framework/Headers + +#cgo LDFLAGS: -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 +#cgo LDFLAGS: -F/usr/local/Qt5.5.1/5.5/clang_64/lib -framework QtCore -framework QtXml -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL +*/ +import "C" diff --git a/xml/cgo_linux_386.go b/xml/cgo_linux_386.go new file mode 100755 index 00000000..4865415c --- /dev/null +++ b/xml/cgo_linux_386.go @@ -0,0 +1,12 @@ +package xml + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_XML_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include -I/usr/local/Qt5.5.1/5.5/gcc/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc/include/QtXml + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc/lib -L/usr/lib -lQt5Core -lQt5Xml -lpthread +*/ +import "C" diff --git a/xml/cgo_linux_amd64.go b/xml/cgo_linux_amd64.go new file mode 100755 index 00000000..28a41c77 --- /dev/null +++ b/xml/cgo_linux_amd64.go @@ -0,0 +1,12 @@ +package xml + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_XML_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include -I/usr/local/Qt5.5.1/5.5/gcc_64/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtXml + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc_64/lib -L/usr/lib64 -lQt5Core -lQt5Xml -lpthread +*/ +import "C" diff --git a/xml/cgo_windows_386.go b/xml/cgo_windows_386.go new file mode 100755 index 00000000..d3825acc --- /dev/null +++ b/xml/cgo_windows_386.go @@ -0,0 +1,12 @@ +package xml + +/* +#cgo CPPFLAGS: -pipe -fno-keep-inline-dllexport -O2 -Wall -Wextra -fexceptions -mthreads +#cgo CPPFLAGS: -DUNICODE -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_XML_LIB +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include -IC:/Qt/Qt5.5.1/5.5/mingw492_32/mkspecs/win32-g++ +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtCore -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtXml + +#cgo LDFLAGS: -Wl,-s -Wl,-subsystem,windows -mthreads +#cgo LDFLAGS: -LC:/Qt/Qt5.5.1/5.5/mingw492_32/bin -lQt5Core -lQt5Xml +*/ +import "C" diff --git a/xml/qdomattr.cpp b/xml/qdomattr.cpp new file mode 100755 index 00000000..726e8898 --- /dev/null +++ b/xml/qdomattr.cpp @@ -0,0 +1,40 @@ +#include "qdomattr.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDomAttr: public QDomAttr { +public: +}; + +QtObjectPtr QDomAttr_NewQDomAttr(){ + return new QDomAttr(); +} + +QtObjectPtr QDomAttr_NewQDomAttr2(QtObjectPtr x){ + return new QDomAttr(*static_cast(x)); +} + +char* QDomAttr_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +int QDomAttr_NodeType(QtObjectPtr ptr){ + return static_cast(ptr)->nodeType(); +} + +void QDomAttr_SetValue(QtObjectPtr ptr, char* v){ + static_cast(ptr)->setValue(QString(v)); +} + +int QDomAttr_Specified(QtObjectPtr ptr){ + return static_cast(ptr)->specified(); +} + +char* QDomAttr_Value(QtObjectPtr ptr){ + return static_cast(ptr)->value().toUtf8().data(); +} + diff --git a/xml/qdomattr.go b/xml/qdomattr.go new file mode 100755 index 00000000..a30e5dc2 --- /dev/null +++ b/xml/qdomattr.go @@ -0,0 +1,75 @@ +package xml + +//#include "qdomattr.h" +import "C" +import ( + "unsafe" +) + +type QDomAttr struct { + QDomNode +} + +type QDomAttrITF interface { + QDomNodeITF + QDomAttrPTR() *QDomAttr +} + +func PointerFromQDomAttr(ptr QDomAttrITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDomAttrPTR().Pointer() + } + return nil +} + +func QDomAttrFromPointer(ptr unsafe.Pointer) *QDomAttr { + var n = new(QDomAttr) + n.SetPointer(ptr) + return n +} + +func (ptr *QDomAttr) QDomAttrPTR() *QDomAttr { + return ptr +} + +func NewQDomAttr() *QDomAttr { + return QDomAttrFromPointer(unsafe.Pointer(C.QDomAttr_NewQDomAttr())) +} + +func NewQDomAttr2(x QDomAttrITF) *QDomAttr { + return QDomAttrFromPointer(unsafe.Pointer(C.QDomAttr_NewQDomAttr2(C.QtObjectPtr(PointerFromQDomAttr(x))))) +} + +func (ptr *QDomAttr) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDomAttr_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDomAttr) NodeType() QDomNode__NodeType { + if ptr.Pointer() != nil { + return QDomNode__NodeType(C.QDomAttr_NodeType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDomAttr) SetValue(v string) { + if ptr.Pointer() != nil { + C.QDomAttr_SetValue(C.QtObjectPtr(ptr.Pointer()), C.CString(v)) + } +} + +func (ptr *QDomAttr) Specified() bool { + if ptr.Pointer() != nil { + return C.QDomAttr_Specified(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDomAttr) Value() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDomAttr_Value(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/xml/qdomattr.h b/xml/qdomattr.h new file mode 100755 index 00000000..7946f64d --- /dev/null +++ b/xml/qdomattr.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDomAttr_NewQDomAttr(); +QtObjectPtr QDomAttr_NewQDomAttr2(QtObjectPtr x); +char* QDomAttr_Name(QtObjectPtr ptr); +int QDomAttr_NodeType(QtObjectPtr ptr); +void QDomAttr_SetValue(QtObjectPtr ptr, char* v); +int QDomAttr_Specified(QtObjectPtr ptr); +char* QDomAttr_Value(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qdomcdatasection.cpp b/xml/qdomcdatasection.cpp new file mode 100755 index 00000000..ba870c5e --- /dev/null +++ b/xml/qdomcdatasection.cpp @@ -0,0 +1,24 @@ +#include "qdomcdatasection.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDomCDATASection: public QDomCDATASection { +public: +}; + +QtObjectPtr QDomCDATASection_NewQDomCDATASection(){ + return new QDomCDATASection(); +} + +QtObjectPtr QDomCDATASection_NewQDomCDATASection2(QtObjectPtr x){ + return new QDomCDATASection(*static_cast(x)); +} + +int QDomCDATASection_NodeType(QtObjectPtr ptr){ + return static_cast(ptr)->nodeType(); +} + diff --git a/xml/qdomcdatasection.go b/xml/qdomcdatasection.go new file mode 100755 index 00000000..b79a4ab0 --- /dev/null +++ b/xml/qdomcdatasection.go @@ -0,0 +1,48 @@ +package xml + +//#include "qdomcdatasection.h" +import "C" +import ( + "unsafe" +) + +type QDomCDATASection struct { + QDomText +} + +type QDomCDATASectionITF interface { + QDomTextITF + QDomCDATASectionPTR() *QDomCDATASection +} + +func PointerFromQDomCDATASection(ptr QDomCDATASectionITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDomCDATASectionPTR().Pointer() + } + return nil +} + +func QDomCDATASectionFromPointer(ptr unsafe.Pointer) *QDomCDATASection { + var n = new(QDomCDATASection) + n.SetPointer(ptr) + return n +} + +func (ptr *QDomCDATASection) QDomCDATASectionPTR() *QDomCDATASection { + return ptr +} + +func NewQDomCDATASection() *QDomCDATASection { + return QDomCDATASectionFromPointer(unsafe.Pointer(C.QDomCDATASection_NewQDomCDATASection())) +} + +func NewQDomCDATASection2(x QDomCDATASectionITF) *QDomCDATASection { + return QDomCDATASectionFromPointer(unsafe.Pointer(C.QDomCDATASection_NewQDomCDATASection2(C.QtObjectPtr(PointerFromQDomCDATASection(x))))) +} + +func (ptr *QDomCDATASection) NodeType() QDomNode__NodeType { + if ptr.Pointer() != nil { + return QDomNode__NodeType(C.QDomCDATASection_NodeType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/xml/qdomcdatasection.h b/xml/qdomcdatasection.h new file mode 100755 index 00000000..74e1945a --- /dev/null +++ b/xml/qdomcdatasection.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDomCDATASection_NewQDomCDATASection(); +QtObjectPtr QDomCDATASection_NewQDomCDATASection2(QtObjectPtr x); +int QDomCDATASection_NodeType(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qdomcharacterdata.cpp b/xml/qdomcharacterdata.cpp new file mode 100755 index 00000000..3b7c3443 --- /dev/null +++ b/xml/qdomcharacterdata.cpp @@ -0,0 +1,40 @@ +#include "qdomcharacterdata.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDomCharacterData: public QDomCharacterData { +public: +}; + +QtObjectPtr QDomCharacterData_NewQDomCharacterData(){ + return new QDomCharacterData(); +} + +QtObjectPtr QDomCharacterData_NewQDomCharacterData2(QtObjectPtr x){ + return new QDomCharacterData(*static_cast(x)); +} + +void QDomCharacterData_AppendData(QtObjectPtr ptr, char* arg){ + static_cast(ptr)->appendData(QString(arg)); +} + +char* QDomCharacterData_Data(QtObjectPtr ptr){ + return static_cast(ptr)->data().toUtf8().data(); +} + +int QDomCharacterData_Length(QtObjectPtr ptr){ + return static_cast(ptr)->length(); +} + +int QDomCharacterData_NodeType(QtObjectPtr ptr){ + return static_cast(ptr)->nodeType(); +} + +void QDomCharacterData_SetData(QtObjectPtr ptr, char* v){ + static_cast(ptr)->setData(QString(v)); +} + diff --git a/xml/qdomcharacterdata.go b/xml/qdomcharacterdata.go new file mode 100755 index 00000000..cc18b053 --- /dev/null +++ b/xml/qdomcharacterdata.go @@ -0,0 +1,74 @@ +package xml + +//#include "qdomcharacterdata.h" +import "C" +import ( + "unsafe" +) + +type QDomCharacterData struct { + QDomNode +} + +type QDomCharacterDataITF interface { + QDomNodeITF + QDomCharacterDataPTR() *QDomCharacterData +} + +func PointerFromQDomCharacterData(ptr QDomCharacterDataITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDomCharacterDataPTR().Pointer() + } + return nil +} + +func QDomCharacterDataFromPointer(ptr unsafe.Pointer) *QDomCharacterData { + var n = new(QDomCharacterData) + n.SetPointer(ptr) + return n +} + +func (ptr *QDomCharacterData) QDomCharacterDataPTR() *QDomCharacterData { + return ptr +} + +func NewQDomCharacterData() *QDomCharacterData { + return QDomCharacterDataFromPointer(unsafe.Pointer(C.QDomCharacterData_NewQDomCharacterData())) +} + +func NewQDomCharacterData2(x QDomCharacterDataITF) *QDomCharacterData { + return QDomCharacterDataFromPointer(unsafe.Pointer(C.QDomCharacterData_NewQDomCharacterData2(C.QtObjectPtr(PointerFromQDomCharacterData(x))))) +} + +func (ptr *QDomCharacterData) AppendData(arg string) { + if ptr.Pointer() != nil { + C.QDomCharacterData_AppendData(C.QtObjectPtr(ptr.Pointer()), C.CString(arg)) + } +} + +func (ptr *QDomCharacterData) Data() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDomCharacterData_Data(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDomCharacterData) Length() int { + if ptr.Pointer() != nil { + return int(C.QDomCharacterData_Length(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDomCharacterData) NodeType() QDomNode__NodeType { + if ptr.Pointer() != nil { + return QDomNode__NodeType(C.QDomCharacterData_NodeType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDomCharacterData) SetData(v string) { + if ptr.Pointer() != nil { + C.QDomCharacterData_SetData(C.QtObjectPtr(ptr.Pointer()), C.CString(v)) + } +} diff --git a/xml/qdomcharacterdata.h b/xml/qdomcharacterdata.h new file mode 100755 index 00000000..8d73dcaf --- /dev/null +++ b/xml/qdomcharacterdata.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDomCharacterData_NewQDomCharacterData(); +QtObjectPtr QDomCharacterData_NewQDomCharacterData2(QtObjectPtr x); +void QDomCharacterData_AppendData(QtObjectPtr ptr, char* arg); +char* QDomCharacterData_Data(QtObjectPtr ptr); +int QDomCharacterData_Length(QtObjectPtr ptr); +int QDomCharacterData_NodeType(QtObjectPtr ptr); +void QDomCharacterData_SetData(QtObjectPtr ptr, char* v); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qdomcomment.cpp b/xml/qdomcomment.cpp new file mode 100755 index 00000000..5121284d --- /dev/null +++ b/xml/qdomcomment.cpp @@ -0,0 +1,24 @@ +#include "qdomcomment.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDomComment: public QDomComment { +public: +}; + +QtObjectPtr QDomComment_NewQDomComment(){ + return new QDomComment(); +} + +QtObjectPtr QDomComment_NewQDomComment2(QtObjectPtr x){ + return new QDomComment(*static_cast(x)); +} + +int QDomComment_NodeType(QtObjectPtr ptr){ + return static_cast(ptr)->nodeType(); +} + diff --git a/xml/qdomcomment.go b/xml/qdomcomment.go new file mode 100755 index 00000000..2f51eb87 --- /dev/null +++ b/xml/qdomcomment.go @@ -0,0 +1,48 @@ +package xml + +//#include "qdomcomment.h" +import "C" +import ( + "unsafe" +) + +type QDomComment struct { + QDomCharacterData +} + +type QDomCommentITF interface { + QDomCharacterDataITF + QDomCommentPTR() *QDomComment +} + +func PointerFromQDomComment(ptr QDomCommentITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDomCommentPTR().Pointer() + } + return nil +} + +func QDomCommentFromPointer(ptr unsafe.Pointer) *QDomComment { + var n = new(QDomComment) + n.SetPointer(ptr) + return n +} + +func (ptr *QDomComment) QDomCommentPTR() *QDomComment { + return ptr +} + +func NewQDomComment() *QDomComment { + return QDomCommentFromPointer(unsafe.Pointer(C.QDomComment_NewQDomComment())) +} + +func NewQDomComment2(x QDomCommentITF) *QDomComment { + return QDomCommentFromPointer(unsafe.Pointer(C.QDomComment_NewQDomComment2(C.QtObjectPtr(PointerFromQDomComment(x))))) +} + +func (ptr *QDomComment) NodeType() QDomNode__NodeType { + if ptr.Pointer() != nil { + return QDomNode__NodeType(C.QDomComment_NodeType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/xml/qdomcomment.h b/xml/qdomcomment.h new file mode 100755 index 00000000..e0631a2f --- /dev/null +++ b/xml/qdomcomment.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDomComment_NewQDomComment(); +QtObjectPtr QDomComment_NewQDomComment2(QtObjectPtr x); +int QDomComment_NodeType(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qdomdocument.cpp b/xml/qdomdocument.cpp new file mode 100755 index 00000000..f0cd372d --- /dev/null +++ b/xml/qdomdocument.cpp @@ -0,0 +1,77 @@ +#include "qdomdocument.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDomDocument: public QDomDocument { +public: +}; + +QtObjectPtr QDomDocument_NewQDomDocument(){ + return new QDomDocument(); +} + +QtObjectPtr QDomDocument_NewQDomDocument4(QtObjectPtr x){ + return new QDomDocument(*static_cast(x)); +} + +QtObjectPtr QDomDocument_NewQDomDocument3(QtObjectPtr doctype){ + return new QDomDocument(*static_cast(doctype)); +} + +QtObjectPtr QDomDocument_NewQDomDocument2(char* name){ + return new QDomDocument(QString(name)); +} + +int QDomDocument_NodeType(QtObjectPtr ptr){ + return static_cast(ptr)->nodeType(); +} + +int QDomDocument_SetContent7(QtObjectPtr ptr, QtObjectPtr dev, char* errorMsg, int errorLine, int errorColumn){ + return static_cast(ptr)->setContent(static_cast(dev), new QString(errorMsg), &errorLine, &errorColumn); +} + +int QDomDocument_SetContent3(QtObjectPtr ptr, QtObjectPtr dev, int namespaceProcessing, char* errorMsg, int errorLine, int errorColumn){ + return static_cast(ptr)->setContent(static_cast(dev), namespaceProcessing != 0, new QString(errorMsg), &errorLine, &errorColumn); +} + +int QDomDocument_SetContent8(QtObjectPtr ptr, QtObjectPtr source, QtObjectPtr reader, char* errorMsg, int errorLine, int errorColumn){ + return static_cast(ptr)->setContent(static_cast(source), static_cast(reader), new QString(errorMsg), &errorLine, &errorColumn); +} + +int QDomDocument_SetContent4(QtObjectPtr ptr, QtObjectPtr source, int namespaceProcessing, char* errorMsg, int errorLine, int errorColumn){ + return static_cast(ptr)->setContent(static_cast(source), namespaceProcessing != 0, new QString(errorMsg), &errorLine, &errorColumn); +} + +int QDomDocument_SetContent6(QtObjectPtr ptr, QtObjectPtr buffer, char* errorMsg, int errorLine, int errorColumn){ + return static_cast(ptr)->setContent(*static_cast(buffer), new QString(errorMsg), &errorLine, &errorColumn); +} + +int QDomDocument_SetContent(QtObjectPtr ptr, QtObjectPtr data, int namespaceProcessing, char* errorMsg, int errorLine, int errorColumn){ + return static_cast(ptr)->setContent(*static_cast(data), namespaceProcessing != 0, new QString(errorMsg), &errorLine, &errorColumn); +} + +int QDomDocument_SetContent5(QtObjectPtr ptr, char* text, char* errorMsg, int errorLine, int errorColumn){ + return static_cast(ptr)->setContent(QString(text), new QString(errorMsg), &errorLine, &errorColumn); +} + +int QDomDocument_SetContent2(QtObjectPtr ptr, char* text, int namespaceProcessing, char* errorMsg, int errorLine, int errorColumn){ + return static_cast(ptr)->setContent(QString(text), namespaceProcessing != 0, new QString(errorMsg), &errorLine, &errorColumn); +} + +char* QDomDocument_ToString(QtObjectPtr ptr, int indent){ + return static_cast(ptr)->toString(indent).toUtf8().data(); +} + +void QDomDocument_DestroyQDomDocument(QtObjectPtr ptr){ + static_cast(ptr)->~QDomDocument(); +} + diff --git a/xml/qdomdocument.go b/xml/qdomdocument.go new file mode 100755 index 00000000..e108925d --- /dev/null +++ b/xml/qdomdocument.go @@ -0,0 +1,127 @@ +package xml + +//#include "qdomdocument.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QDomDocument struct { + QDomNode +} + +type QDomDocumentITF interface { + QDomNodeITF + QDomDocumentPTR() *QDomDocument +} + +func PointerFromQDomDocument(ptr QDomDocumentITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDomDocumentPTR().Pointer() + } + return nil +} + +func QDomDocumentFromPointer(ptr unsafe.Pointer) *QDomDocument { + var n = new(QDomDocument) + n.SetPointer(ptr) + return n +} + +func (ptr *QDomDocument) QDomDocumentPTR() *QDomDocument { + return ptr +} + +func NewQDomDocument() *QDomDocument { + return QDomDocumentFromPointer(unsafe.Pointer(C.QDomDocument_NewQDomDocument())) +} + +func NewQDomDocument4(x QDomDocumentITF) *QDomDocument { + return QDomDocumentFromPointer(unsafe.Pointer(C.QDomDocument_NewQDomDocument4(C.QtObjectPtr(PointerFromQDomDocument(x))))) +} + +func NewQDomDocument3(doctype QDomDocumentTypeITF) *QDomDocument { + return QDomDocumentFromPointer(unsafe.Pointer(C.QDomDocument_NewQDomDocument3(C.QtObjectPtr(PointerFromQDomDocumentType(doctype))))) +} + +func NewQDomDocument2(name string) *QDomDocument { + return QDomDocumentFromPointer(unsafe.Pointer(C.QDomDocument_NewQDomDocument2(C.CString(name)))) +} + +func (ptr *QDomDocument) NodeType() QDomNode__NodeType { + if ptr.Pointer() != nil { + return QDomNode__NodeType(C.QDomDocument_NodeType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDomDocument) SetContent7(dev core.QIODeviceITF, errorMsg string, errorLine int, errorColumn int) bool { + if ptr.Pointer() != nil { + return C.QDomDocument_SetContent7(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQIODevice(dev)), C.CString(errorMsg), C.int(errorLine), C.int(errorColumn)) != 0 + } + return false +} + +func (ptr *QDomDocument) SetContent3(dev core.QIODeviceITF, namespaceProcessing bool, errorMsg string, errorLine int, errorColumn int) bool { + if ptr.Pointer() != nil { + return C.QDomDocument_SetContent3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQIODevice(dev)), C.int(qt.GoBoolToInt(namespaceProcessing)), C.CString(errorMsg), C.int(errorLine), C.int(errorColumn)) != 0 + } + return false +} + +func (ptr *QDomDocument) SetContent8(source QXmlInputSourceITF, reader QXmlReaderITF, errorMsg string, errorLine int, errorColumn int) bool { + if ptr.Pointer() != nil { + return C.QDomDocument_SetContent8(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlInputSource(source)), C.QtObjectPtr(PointerFromQXmlReader(reader)), C.CString(errorMsg), C.int(errorLine), C.int(errorColumn)) != 0 + } + return false +} + +func (ptr *QDomDocument) SetContent4(source QXmlInputSourceITF, namespaceProcessing bool, errorMsg string, errorLine int, errorColumn int) bool { + if ptr.Pointer() != nil { + return C.QDomDocument_SetContent4(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlInputSource(source)), C.int(qt.GoBoolToInt(namespaceProcessing)), C.CString(errorMsg), C.int(errorLine), C.int(errorColumn)) != 0 + } + return false +} + +func (ptr *QDomDocument) SetContent6(buffer core.QByteArrayITF, errorMsg string, errorLine int, errorColumn int) bool { + if ptr.Pointer() != nil { + return C.QDomDocument_SetContent6(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(buffer)), C.CString(errorMsg), C.int(errorLine), C.int(errorColumn)) != 0 + } + return false +} + +func (ptr *QDomDocument) SetContent(data core.QByteArrayITF, namespaceProcessing bool, errorMsg string, errorLine int, errorColumn int) bool { + if ptr.Pointer() != nil { + return C.QDomDocument_SetContent(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(data)), C.int(qt.GoBoolToInt(namespaceProcessing)), C.CString(errorMsg), C.int(errorLine), C.int(errorColumn)) != 0 + } + return false +} + +func (ptr *QDomDocument) SetContent5(text string, errorMsg string, errorLine int, errorColumn int) bool { + if ptr.Pointer() != nil { + return C.QDomDocument_SetContent5(C.QtObjectPtr(ptr.Pointer()), C.CString(text), C.CString(errorMsg), C.int(errorLine), C.int(errorColumn)) != 0 + } + return false +} + +func (ptr *QDomDocument) SetContent2(text string, namespaceProcessing bool, errorMsg string, errorLine int, errorColumn int) bool { + if ptr.Pointer() != nil { + return C.QDomDocument_SetContent2(C.QtObjectPtr(ptr.Pointer()), C.CString(text), C.int(qt.GoBoolToInt(namespaceProcessing)), C.CString(errorMsg), C.int(errorLine), C.int(errorColumn)) != 0 + } + return false +} + +func (ptr *QDomDocument) ToString(indent int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QDomDocument_ToString(C.QtObjectPtr(ptr.Pointer()), C.int(indent))) + } + return "" +} + +func (ptr *QDomDocument) DestroyQDomDocument() { + if ptr.Pointer() != nil { + C.QDomDocument_DestroyQDomDocument(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xml/qdomdocument.h b/xml/qdomdocument.h new file mode 100755 index 00000000..b4c20ffd --- /dev/null +++ b/xml/qdomdocument.h @@ -0,0 +1,24 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDomDocument_NewQDomDocument(); +QtObjectPtr QDomDocument_NewQDomDocument4(QtObjectPtr x); +QtObjectPtr QDomDocument_NewQDomDocument3(QtObjectPtr doctype); +QtObjectPtr QDomDocument_NewQDomDocument2(char* name); +int QDomDocument_NodeType(QtObjectPtr ptr); +int QDomDocument_SetContent7(QtObjectPtr ptr, QtObjectPtr dev, char* errorMsg, int errorLine, int errorColumn); +int QDomDocument_SetContent3(QtObjectPtr ptr, QtObjectPtr dev, int namespaceProcessing, char* errorMsg, int errorLine, int errorColumn); +int QDomDocument_SetContent8(QtObjectPtr ptr, QtObjectPtr source, QtObjectPtr reader, char* errorMsg, int errorLine, int errorColumn); +int QDomDocument_SetContent4(QtObjectPtr ptr, QtObjectPtr source, int namespaceProcessing, char* errorMsg, int errorLine, int errorColumn); +int QDomDocument_SetContent6(QtObjectPtr ptr, QtObjectPtr buffer, char* errorMsg, int errorLine, int errorColumn); +int QDomDocument_SetContent(QtObjectPtr ptr, QtObjectPtr data, int namespaceProcessing, char* errorMsg, int errorLine, int errorColumn); +int QDomDocument_SetContent5(QtObjectPtr ptr, char* text, char* errorMsg, int errorLine, int errorColumn); +int QDomDocument_SetContent2(QtObjectPtr ptr, char* text, int namespaceProcessing, char* errorMsg, int errorLine, int errorColumn); +char* QDomDocument_ToString(QtObjectPtr ptr, int indent); +void QDomDocument_DestroyQDomDocument(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qdomdocumentfragment.cpp b/xml/qdomdocumentfragment.cpp new file mode 100755 index 00000000..fa12c0bd --- /dev/null +++ b/xml/qdomdocumentfragment.cpp @@ -0,0 +1,25 @@ +#include "qdomdocumentfragment.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDomDocumentFragment: public QDomDocumentFragment { +public: +}; + +QtObjectPtr QDomDocumentFragment_NewQDomDocumentFragment(){ + return new QDomDocumentFragment(); +} + +QtObjectPtr QDomDocumentFragment_NewQDomDocumentFragment2(QtObjectPtr x){ + return new QDomDocumentFragment(*static_cast(x)); +} + +int QDomDocumentFragment_NodeType(QtObjectPtr ptr){ + return static_cast(ptr)->nodeType(); +} + diff --git a/xml/qdomdocumentfragment.go b/xml/qdomdocumentfragment.go new file mode 100755 index 00000000..23e62dce --- /dev/null +++ b/xml/qdomdocumentfragment.go @@ -0,0 +1,48 @@ +package xml + +//#include "qdomdocumentfragment.h" +import "C" +import ( + "unsafe" +) + +type QDomDocumentFragment struct { + QDomNode +} + +type QDomDocumentFragmentITF interface { + QDomNodeITF + QDomDocumentFragmentPTR() *QDomDocumentFragment +} + +func PointerFromQDomDocumentFragment(ptr QDomDocumentFragmentITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDomDocumentFragmentPTR().Pointer() + } + return nil +} + +func QDomDocumentFragmentFromPointer(ptr unsafe.Pointer) *QDomDocumentFragment { + var n = new(QDomDocumentFragment) + n.SetPointer(ptr) + return n +} + +func (ptr *QDomDocumentFragment) QDomDocumentFragmentPTR() *QDomDocumentFragment { + return ptr +} + +func NewQDomDocumentFragment() *QDomDocumentFragment { + return QDomDocumentFragmentFromPointer(unsafe.Pointer(C.QDomDocumentFragment_NewQDomDocumentFragment())) +} + +func NewQDomDocumentFragment2(x QDomDocumentFragmentITF) *QDomDocumentFragment { + return QDomDocumentFragmentFromPointer(unsafe.Pointer(C.QDomDocumentFragment_NewQDomDocumentFragment2(C.QtObjectPtr(PointerFromQDomDocumentFragment(x))))) +} + +func (ptr *QDomDocumentFragment) NodeType() QDomNode__NodeType { + if ptr.Pointer() != nil { + return QDomNode__NodeType(C.QDomDocumentFragment_NodeType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/xml/qdomdocumentfragment.h b/xml/qdomdocumentfragment.h new file mode 100755 index 00000000..f21522cc --- /dev/null +++ b/xml/qdomdocumentfragment.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDomDocumentFragment_NewQDomDocumentFragment(); +QtObjectPtr QDomDocumentFragment_NewQDomDocumentFragment2(QtObjectPtr x); +int QDomDocumentFragment_NodeType(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qdomdocumenttype.cpp b/xml/qdomdocumenttype.cpp new file mode 100755 index 00000000..46b6fcc1 --- /dev/null +++ b/xml/qdomdocumenttype.cpp @@ -0,0 +1,41 @@ +#include "qdomdocumenttype.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDomDocumentType: public QDomDocumentType { +public: +}; + +QtObjectPtr QDomDocumentType_NewQDomDocumentType(){ + return new QDomDocumentType(); +} + +QtObjectPtr QDomDocumentType_NewQDomDocumentType2(QtObjectPtr n){ + return new QDomDocumentType(*static_cast(n)); +} + +char* QDomDocumentType_InternalSubset(QtObjectPtr ptr){ + return static_cast(ptr)->internalSubset().toUtf8().data(); +} + +char* QDomDocumentType_Name(QtObjectPtr ptr){ + return static_cast(ptr)->name().toUtf8().data(); +} + +int QDomDocumentType_NodeType(QtObjectPtr ptr){ + return static_cast(ptr)->nodeType(); +} + +char* QDomDocumentType_PublicId(QtObjectPtr ptr){ + return static_cast(ptr)->publicId().toUtf8().data(); +} + +char* QDomDocumentType_SystemId(QtObjectPtr ptr){ + return static_cast(ptr)->systemId().toUtf8().data(); +} + diff --git a/xml/qdomdocumenttype.go b/xml/qdomdocumenttype.go new file mode 100755 index 00000000..c6317365 --- /dev/null +++ b/xml/qdomdocumenttype.go @@ -0,0 +1,76 @@ +package xml + +//#include "qdomdocumenttype.h" +import "C" +import ( + "unsafe" +) + +type QDomDocumentType struct { + QDomNode +} + +type QDomDocumentTypeITF interface { + QDomNodeITF + QDomDocumentTypePTR() *QDomDocumentType +} + +func PointerFromQDomDocumentType(ptr QDomDocumentTypeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDomDocumentTypePTR().Pointer() + } + return nil +} + +func QDomDocumentTypeFromPointer(ptr unsafe.Pointer) *QDomDocumentType { + var n = new(QDomDocumentType) + n.SetPointer(ptr) + return n +} + +func (ptr *QDomDocumentType) QDomDocumentTypePTR() *QDomDocumentType { + return ptr +} + +func NewQDomDocumentType() *QDomDocumentType { + return QDomDocumentTypeFromPointer(unsafe.Pointer(C.QDomDocumentType_NewQDomDocumentType())) +} + +func NewQDomDocumentType2(n QDomDocumentTypeITF) *QDomDocumentType { + return QDomDocumentTypeFromPointer(unsafe.Pointer(C.QDomDocumentType_NewQDomDocumentType2(C.QtObjectPtr(PointerFromQDomDocumentType(n))))) +} + +func (ptr *QDomDocumentType) InternalSubset() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDomDocumentType_InternalSubset(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDomDocumentType) Name() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDomDocumentType_Name(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDomDocumentType) NodeType() QDomNode__NodeType { + if ptr.Pointer() != nil { + return QDomNode__NodeType(C.QDomDocumentType_NodeType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDomDocumentType) PublicId() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDomDocumentType_PublicId(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDomDocumentType) SystemId() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDomDocumentType_SystemId(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/xml/qdomdocumenttype.h b/xml/qdomdocumenttype.h new file mode 100755 index 00000000..c26a78b3 --- /dev/null +++ b/xml/qdomdocumenttype.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDomDocumentType_NewQDomDocumentType(); +QtObjectPtr QDomDocumentType_NewQDomDocumentType2(QtObjectPtr n); +char* QDomDocumentType_InternalSubset(QtObjectPtr ptr); +char* QDomDocumentType_Name(QtObjectPtr ptr); +int QDomDocumentType_NodeType(QtObjectPtr ptr); +char* QDomDocumentType_PublicId(QtObjectPtr ptr); +char* QDomDocumentType_SystemId(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qdomelement.cpp b/xml/qdomelement.cpp new file mode 100755 index 00000000..cbb190ce --- /dev/null +++ b/xml/qdomelement.cpp @@ -0,0 +1,76 @@ +#include "qdomelement.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDomElement: public QDomElement { +public: +}; + +QtObjectPtr QDomElement_NewQDomElement(){ + return new QDomElement(); +} + +QtObjectPtr QDomElement_NewQDomElement2(QtObjectPtr x){ + return new QDomElement(*static_cast(x)); +} + +char* QDomElement_Attribute(QtObjectPtr ptr, char* name, char* defValue){ + return static_cast(ptr)->attribute(QString(name), QString(defValue)).toUtf8().data(); +} + +char* QDomElement_AttributeNS(QtObjectPtr ptr, char* nsURI, char* localName, char* defValue){ + return static_cast(ptr)->attributeNS(QString(nsURI), QString(localName), QString(defValue)).toUtf8().data(); +} + +int QDomElement_HasAttribute(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->hasAttribute(QString(name)); +} + +int QDomElement_HasAttributeNS(QtObjectPtr ptr, char* nsURI, char* localName){ + return static_cast(ptr)->hasAttributeNS(QString(nsURI), QString(localName)); +} + +int QDomElement_NodeType(QtObjectPtr ptr){ + return static_cast(ptr)->nodeType(); +} + +void QDomElement_RemoveAttribute(QtObjectPtr ptr, char* name){ + static_cast(ptr)->removeAttribute(QString(name)); +} + +void QDomElement_RemoveAttributeNS(QtObjectPtr ptr, char* nsURI, char* localName){ + static_cast(ptr)->removeAttributeNS(QString(nsURI), QString(localName)); +} + +void QDomElement_SetAttribute(QtObjectPtr ptr, char* name, char* value){ + static_cast(ptr)->setAttribute(QString(name), QString(value)); +} + +void QDomElement_SetAttribute2(QtObjectPtr ptr, char* name, int value){ + static_cast(ptr)->setAttribute(QString(name), value); +} + +void QDomElement_SetAttributeNS(QtObjectPtr ptr, char* nsURI, char* qName, char* value){ + static_cast(ptr)->setAttributeNS(QString(nsURI), QString(qName), QString(value)); +} + +void QDomElement_SetAttributeNS2(QtObjectPtr ptr, char* nsURI, char* qName, int value){ + static_cast(ptr)->setAttributeNS(QString(nsURI), QString(qName), value); +} + +void QDomElement_SetTagName(QtObjectPtr ptr, char* name){ + static_cast(ptr)->setTagName(QString(name)); +} + +char* QDomElement_TagName(QtObjectPtr ptr){ + return static_cast(ptr)->tagName().toUtf8().data(); +} + +char* QDomElement_Text(QtObjectPtr ptr){ + return static_cast(ptr)->text().toUtf8().data(); +} + diff --git a/xml/qdomelement.go b/xml/qdomelement.go new file mode 100755 index 00000000..359db2c4 --- /dev/null +++ b/xml/qdomelement.go @@ -0,0 +1,132 @@ +package xml + +//#include "qdomelement.h" +import "C" +import ( + "unsafe" +) + +type QDomElement struct { + QDomNode +} + +type QDomElementITF interface { + QDomNodeITF + QDomElementPTR() *QDomElement +} + +func PointerFromQDomElement(ptr QDomElementITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDomElementPTR().Pointer() + } + return nil +} + +func QDomElementFromPointer(ptr unsafe.Pointer) *QDomElement { + var n = new(QDomElement) + n.SetPointer(ptr) + return n +} + +func (ptr *QDomElement) QDomElementPTR() *QDomElement { + return ptr +} + +func NewQDomElement() *QDomElement { + return QDomElementFromPointer(unsafe.Pointer(C.QDomElement_NewQDomElement())) +} + +func NewQDomElement2(x QDomElementITF) *QDomElement { + return QDomElementFromPointer(unsafe.Pointer(C.QDomElement_NewQDomElement2(C.QtObjectPtr(PointerFromQDomElement(x))))) +} + +func (ptr *QDomElement) Attribute(name string, defValue string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QDomElement_Attribute(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.CString(defValue))) + } + return "" +} + +func (ptr *QDomElement) AttributeNS(nsURI string, localName string, defValue string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QDomElement_AttributeNS(C.QtObjectPtr(ptr.Pointer()), C.CString(nsURI), C.CString(localName), C.CString(defValue))) + } + return "" +} + +func (ptr *QDomElement) HasAttribute(name string) bool { + if ptr.Pointer() != nil { + return C.QDomElement_HasAttribute(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) != 0 + } + return false +} + +func (ptr *QDomElement) HasAttributeNS(nsURI string, localName string) bool { + if ptr.Pointer() != nil { + return C.QDomElement_HasAttributeNS(C.QtObjectPtr(ptr.Pointer()), C.CString(nsURI), C.CString(localName)) != 0 + } + return false +} + +func (ptr *QDomElement) NodeType() QDomNode__NodeType { + if ptr.Pointer() != nil { + return QDomNode__NodeType(C.QDomElement_NodeType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDomElement) RemoveAttribute(name string) { + if ptr.Pointer() != nil { + C.QDomElement_RemoveAttribute(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func (ptr *QDomElement) RemoveAttributeNS(nsURI string, localName string) { + if ptr.Pointer() != nil { + C.QDomElement_RemoveAttributeNS(C.QtObjectPtr(ptr.Pointer()), C.CString(nsURI), C.CString(localName)) + } +} + +func (ptr *QDomElement) SetAttribute(name string, value string) { + if ptr.Pointer() != nil { + C.QDomElement_SetAttribute(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.CString(value)) + } +} + +func (ptr *QDomElement) SetAttribute2(name string, value int) { + if ptr.Pointer() != nil { + C.QDomElement_SetAttribute2(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.int(value)) + } +} + +func (ptr *QDomElement) SetAttributeNS(nsURI string, qName string, value string) { + if ptr.Pointer() != nil { + C.QDomElement_SetAttributeNS(C.QtObjectPtr(ptr.Pointer()), C.CString(nsURI), C.CString(qName), C.CString(value)) + } +} + +func (ptr *QDomElement) SetAttributeNS2(nsURI string, qName string, value int) { + if ptr.Pointer() != nil { + C.QDomElement_SetAttributeNS2(C.QtObjectPtr(ptr.Pointer()), C.CString(nsURI), C.CString(qName), C.int(value)) + } +} + +func (ptr *QDomElement) SetTagName(name string) { + if ptr.Pointer() != nil { + C.QDomElement_SetTagName(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) + } +} + +func (ptr *QDomElement) TagName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDomElement_TagName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDomElement) Text() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDomElement_Text(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/xml/qdomelement.h b/xml/qdomelement.h new file mode 100755 index 00000000..dade15f1 --- /dev/null +++ b/xml/qdomelement.h @@ -0,0 +1,25 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDomElement_NewQDomElement(); +QtObjectPtr QDomElement_NewQDomElement2(QtObjectPtr x); +char* QDomElement_Attribute(QtObjectPtr ptr, char* name, char* defValue); +char* QDomElement_AttributeNS(QtObjectPtr ptr, char* nsURI, char* localName, char* defValue); +int QDomElement_HasAttribute(QtObjectPtr ptr, char* name); +int QDomElement_HasAttributeNS(QtObjectPtr ptr, char* nsURI, char* localName); +int QDomElement_NodeType(QtObjectPtr ptr); +void QDomElement_RemoveAttribute(QtObjectPtr ptr, char* name); +void QDomElement_RemoveAttributeNS(QtObjectPtr ptr, char* nsURI, char* localName); +void QDomElement_SetAttribute(QtObjectPtr ptr, char* name, char* value); +void QDomElement_SetAttribute2(QtObjectPtr ptr, char* name, int value); +void QDomElement_SetAttributeNS(QtObjectPtr ptr, char* nsURI, char* qName, char* value); +void QDomElement_SetAttributeNS2(QtObjectPtr ptr, char* nsURI, char* qName, int value); +void QDomElement_SetTagName(QtObjectPtr ptr, char* name); +char* QDomElement_TagName(QtObjectPtr ptr); +char* QDomElement_Text(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qdomentity.cpp b/xml/qdomentity.cpp new file mode 100755 index 00000000..10cd21a1 --- /dev/null +++ b/xml/qdomentity.cpp @@ -0,0 +1,36 @@ +#include "qdomentity.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDomEntity: public QDomEntity { +public: +}; + +QtObjectPtr QDomEntity_NewQDomEntity(){ + return new QDomEntity(); +} + +QtObjectPtr QDomEntity_NewQDomEntity2(QtObjectPtr x){ + return new QDomEntity(*static_cast(x)); +} + +int QDomEntity_NodeType(QtObjectPtr ptr){ + return static_cast(ptr)->nodeType(); +} + +char* QDomEntity_NotationName(QtObjectPtr ptr){ + return static_cast(ptr)->notationName().toUtf8().data(); +} + +char* QDomEntity_PublicId(QtObjectPtr ptr){ + return static_cast(ptr)->publicId().toUtf8().data(); +} + +char* QDomEntity_SystemId(QtObjectPtr ptr){ + return static_cast(ptr)->systemId().toUtf8().data(); +} + diff --git a/xml/qdomentity.go b/xml/qdomentity.go new file mode 100755 index 00000000..da7098cd --- /dev/null +++ b/xml/qdomentity.go @@ -0,0 +1,69 @@ +package xml + +//#include "qdomentity.h" +import "C" +import ( + "unsafe" +) + +type QDomEntity struct { + QDomNode +} + +type QDomEntityITF interface { + QDomNodeITF + QDomEntityPTR() *QDomEntity +} + +func PointerFromQDomEntity(ptr QDomEntityITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDomEntityPTR().Pointer() + } + return nil +} + +func QDomEntityFromPointer(ptr unsafe.Pointer) *QDomEntity { + var n = new(QDomEntity) + n.SetPointer(ptr) + return n +} + +func (ptr *QDomEntity) QDomEntityPTR() *QDomEntity { + return ptr +} + +func NewQDomEntity() *QDomEntity { + return QDomEntityFromPointer(unsafe.Pointer(C.QDomEntity_NewQDomEntity())) +} + +func NewQDomEntity2(x QDomEntityITF) *QDomEntity { + return QDomEntityFromPointer(unsafe.Pointer(C.QDomEntity_NewQDomEntity2(C.QtObjectPtr(PointerFromQDomEntity(x))))) +} + +func (ptr *QDomEntity) NodeType() QDomNode__NodeType { + if ptr.Pointer() != nil { + return QDomNode__NodeType(C.QDomEntity_NodeType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDomEntity) NotationName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDomEntity_NotationName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDomEntity) PublicId() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDomEntity_PublicId(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDomEntity) SystemId() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDomEntity_SystemId(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/xml/qdomentity.h b/xml/qdomentity.h new file mode 100755 index 00000000..be201ddb --- /dev/null +++ b/xml/qdomentity.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDomEntity_NewQDomEntity(); +QtObjectPtr QDomEntity_NewQDomEntity2(QtObjectPtr x); +int QDomEntity_NodeType(QtObjectPtr ptr); +char* QDomEntity_NotationName(QtObjectPtr ptr); +char* QDomEntity_PublicId(QtObjectPtr ptr); +char* QDomEntity_SystemId(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qdomentityreference.cpp b/xml/qdomentityreference.cpp new file mode 100755 index 00000000..195b0797 --- /dev/null +++ b/xml/qdomentityreference.cpp @@ -0,0 +1,25 @@ +#include "qdomentityreference.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDomEntityReference: public QDomEntityReference { +public: +}; + +QtObjectPtr QDomEntityReference_NewQDomEntityReference(){ + return new QDomEntityReference(); +} + +QtObjectPtr QDomEntityReference_NewQDomEntityReference2(QtObjectPtr x){ + return new QDomEntityReference(*static_cast(x)); +} + +int QDomEntityReference_NodeType(QtObjectPtr ptr){ + return static_cast(ptr)->nodeType(); +} + diff --git a/xml/qdomentityreference.go b/xml/qdomentityreference.go new file mode 100755 index 00000000..94ca38b8 --- /dev/null +++ b/xml/qdomentityreference.go @@ -0,0 +1,48 @@ +package xml + +//#include "qdomentityreference.h" +import "C" +import ( + "unsafe" +) + +type QDomEntityReference struct { + QDomNode +} + +type QDomEntityReferenceITF interface { + QDomNodeITF + QDomEntityReferencePTR() *QDomEntityReference +} + +func PointerFromQDomEntityReference(ptr QDomEntityReferenceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDomEntityReferencePTR().Pointer() + } + return nil +} + +func QDomEntityReferenceFromPointer(ptr unsafe.Pointer) *QDomEntityReference { + var n = new(QDomEntityReference) + n.SetPointer(ptr) + return n +} + +func (ptr *QDomEntityReference) QDomEntityReferencePTR() *QDomEntityReference { + return ptr +} + +func NewQDomEntityReference() *QDomEntityReference { + return QDomEntityReferenceFromPointer(unsafe.Pointer(C.QDomEntityReference_NewQDomEntityReference())) +} + +func NewQDomEntityReference2(x QDomEntityReferenceITF) *QDomEntityReference { + return QDomEntityReferenceFromPointer(unsafe.Pointer(C.QDomEntityReference_NewQDomEntityReference2(C.QtObjectPtr(PointerFromQDomEntityReference(x))))) +} + +func (ptr *QDomEntityReference) NodeType() QDomNode__NodeType { + if ptr.Pointer() != nil { + return QDomNode__NodeType(C.QDomEntityReference_NodeType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/xml/qdomentityreference.h b/xml/qdomentityreference.h new file mode 100755 index 00000000..556f4059 --- /dev/null +++ b/xml/qdomentityreference.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDomEntityReference_NewQDomEntityReference(); +QtObjectPtr QDomEntityReference_NewQDomEntityReference2(QtObjectPtr x); +int QDomEntityReference_NodeType(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qdomimplementation.cpp b/xml/qdomimplementation.cpp new file mode 100755 index 00000000..8176b167 --- /dev/null +++ b/xml/qdomimplementation.cpp @@ -0,0 +1,40 @@ +#include "qdomimplementation.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDomImplementation: public QDomImplementation { +public: +}; + +QtObjectPtr QDomImplementation_NewQDomImplementation(){ + return new QDomImplementation(); +} + +QtObjectPtr QDomImplementation_NewQDomImplementation2(QtObjectPtr x){ + return new QDomImplementation(*static_cast(x)); +} + +int QDomImplementation_HasFeature(QtObjectPtr ptr, char* feature, char* version){ + return static_cast(ptr)->hasFeature(QString(feature), QString(version)); +} + +int QDomImplementation_QDomImplementation_InvalidDataPolicy(){ + return QDomImplementation::invalidDataPolicy(); +} + +int QDomImplementation_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +void QDomImplementation_QDomImplementation_SetInvalidDataPolicy(int policy){ + QDomImplementation::setInvalidDataPolicy(static_cast(policy)); +} + +void QDomImplementation_DestroyQDomImplementation(QtObjectPtr ptr){ + static_cast(ptr)->~QDomImplementation(); +} + diff --git a/xml/qdomimplementation.go b/xml/qdomimplementation.go new file mode 100755 index 00000000..c07941f3 --- /dev/null +++ b/xml/qdomimplementation.go @@ -0,0 +1,85 @@ +package xml + +//#include "qdomimplementation.h" +import "C" +import ( + "unsafe" +) + +type QDomImplementation struct { + ptr unsafe.Pointer +} + +type QDomImplementationITF interface { + QDomImplementationPTR() *QDomImplementation +} + +func (p *QDomImplementation) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDomImplementation) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDomImplementation(ptr QDomImplementationITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDomImplementationPTR().Pointer() + } + return nil +} + +func QDomImplementationFromPointer(ptr unsafe.Pointer) *QDomImplementation { + var n = new(QDomImplementation) + n.SetPointer(ptr) + return n +} + +func (ptr *QDomImplementation) QDomImplementationPTR() *QDomImplementation { + return ptr +} + +//QDomImplementation::InvalidDataPolicy +type QDomImplementation__InvalidDataPolicy int + +var ( + QDomImplementation__AcceptInvalidChars = QDomImplementation__InvalidDataPolicy(0) + QDomImplementation__DropInvalidChars = QDomImplementation__InvalidDataPolicy(1) + QDomImplementation__ReturnNullNode = QDomImplementation__InvalidDataPolicy(2) +) + +func NewQDomImplementation() *QDomImplementation { + return QDomImplementationFromPointer(unsafe.Pointer(C.QDomImplementation_NewQDomImplementation())) +} + +func NewQDomImplementation2(x QDomImplementationITF) *QDomImplementation { + return QDomImplementationFromPointer(unsafe.Pointer(C.QDomImplementation_NewQDomImplementation2(C.QtObjectPtr(PointerFromQDomImplementation(x))))) +} + +func (ptr *QDomImplementation) HasFeature(feature string, version string) bool { + if ptr.Pointer() != nil { + return C.QDomImplementation_HasFeature(C.QtObjectPtr(ptr.Pointer()), C.CString(feature), C.CString(version)) != 0 + } + return false +} + +func QDomImplementation_InvalidDataPolicy() QDomImplementation__InvalidDataPolicy { + return QDomImplementation__InvalidDataPolicy(C.QDomImplementation_QDomImplementation_InvalidDataPolicy()) +} + +func (ptr *QDomImplementation) IsNull() bool { + if ptr.Pointer() != nil { + return C.QDomImplementation_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func QDomImplementation_SetInvalidDataPolicy(policy QDomImplementation__InvalidDataPolicy) { + C.QDomImplementation_QDomImplementation_SetInvalidDataPolicy(C.int(policy)) +} + +func (ptr *QDomImplementation) DestroyQDomImplementation() { + if ptr.Pointer() != nil { + C.QDomImplementation_DestroyQDomImplementation(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xml/qdomimplementation.h b/xml/qdomimplementation.h new file mode 100755 index 00000000..a313b14c --- /dev/null +++ b/xml/qdomimplementation.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDomImplementation_NewQDomImplementation(); +QtObjectPtr QDomImplementation_NewQDomImplementation2(QtObjectPtr x); +int QDomImplementation_HasFeature(QtObjectPtr ptr, char* feature, char* version); +int QDomImplementation_QDomImplementation_InvalidDataPolicy(); +int QDomImplementation_IsNull(QtObjectPtr ptr); +void QDomImplementation_QDomImplementation_SetInvalidDataPolicy(int policy); +void QDomImplementation_DestroyQDomImplementation(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qdomnamednodemap.cpp b/xml/qdomnamednodemap.cpp new file mode 100755 index 00000000..ee26c15a --- /dev/null +++ b/xml/qdomnamednodemap.cpp @@ -0,0 +1,44 @@ +#include "qdomnamednodemap.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDomNamedNodeMap: public QDomNamedNodeMap { +public: +}; + +QtObjectPtr QDomNamedNodeMap_NewQDomNamedNodeMap(){ + return new QDomNamedNodeMap(); +} + +QtObjectPtr QDomNamedNodeMap_NewQDomNamedNodeMap2(QtObjectPtr n){ + return new QDomNamedNodeMap(*static_cast(n)); +} + +int QDomNamedNodeMap_Contains(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->contains(QString(name)); +} + +int QDomNamedNodeMap_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +int QDomNamedNodeMap_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +int QDomNamedNodeMap_Length(QtObjectPtr ptr){ + return static_cast(ptr)->length(); +} + +int QDomNamedNodeMap_Size(QtObjectPtr ptr){ + return static_cast(ptr)->size(); +} + +void QDomNamedNodeMap_DestroyQDomNamedNodeMap(QtObjectPtr ptr){ + static_cast(ptr)->~QDomNamedNodeMap(); +} + diff --git a/xml/qdomnamednodemap.go b/xml/qdomnamednodemap.go new file mode 100755 index 00000000..2302dc8f --- /dev/null +++ b/xml/qdomnamednodemap.go @@ -0,0 +1,89 @@ +package xml + +//#include "qdomnamednodemap.h" +import "C" +import ( + "unsafe" +) + +type QDomNamedNodeMap struct { + ptr unsafe.Pointer +} + +type QDomNamedNodeMapITF interface { + QDomNamedNodeMapPTR() *QDomNamedNodeMap +} + +func (p *QDomNamedNodeMap) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDomNamedNodeMap) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDomNamedNodeMap(ptr QDomNamedNodeMapITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDomNamedNodeMapPTR().Pointer() + } + return nil +} + +func QDomNamedNodeMapFromPointer(ptr unsafe.Pointer) *QDomNamedNodeMap { + var n = new(QDomNamedNodeMap) + n.SetPointer(ptr) + return n +} + +func (ptr *QDomNamedNodeMap) QDomNamedNodeMapPTR() *QDomNamedNodeMap { + return ptr +} + +func NewQDomNamedNodeMap() *QDomNamedNodeMap { + return QDomNamedNodeMapFromPointer(unsafe.Pointer(C.QDomNamedNodeMap_NewQDomNamedNodeMap())) +} + +func NewQDomNamedNodeMap2(n QDomNamedNodeMapITF) *QDomNamedNodeMap { + return QDomNamedNodeMapFromPointer(unsafe.Pointer(C.QDomNamedNodeMap_NewQDomNamedNodeMap2(C.QtObjectPtr(PointerFromQDomNamedNodeMap(n))))) +} + +func (ptr *QDomNamedNodeMap) Contains(name string) bool { + if ptr.Pointer() != nil { + return C.QDomNamedNodeMap_Contains(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) != 0 + } + return false +} + +func (ptr *QDomNamedNodeMap) Count() int { + if ptr.Pointer() != nil { + return int(C.QDomNamedNodeMap_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDomNamedNodeMap) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QDomNamedNodeMap_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDomNamedNodeMap) Length() int { + if ptr.Pointer() != nil { + return int(C.QDomNamedNodeMap_Length(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDomNamedNodeMap) Size() int { + if ptr.Pointer() != nil { + return int(C.QDomNamedNodeMap_Size(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDomNamedNodeMap) DestroyQDomNamedNodeMap() { + if ptr.Pointer() != nil { + C.QDomNamedNodeMap_DestroyQDomNamedNodeMap(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xml/qdomnamednodemap.h b/xml/qdomnamednodemap.h new file mode 100755 index 00000000..cca148d7 --- /dev/null +++ b/xml/qdomnamednodemap.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDomNamedNodeMap_NewQDomNamedNodeMap(); +QtObjectPtr QDomNamedNodeMap_NewQDomNamedNodeMap2(QtObjectPtr n); +int QDomNamedNodeMap_Contains(QtObjectPtr ptr, char* name); +int QDomNamedNodeMap_Count(QtObjectPtr ptr); +int QDomNamedNodeMap_IsEmpty(QtObjectPtr ptr); +int QDomNamedNodeMap_Length(QtObjectPtr ptr); +int QDomNamedNodeMap_Size(QtObjectPtr ptr); +void QDomNamedNodeMap_DestroyQDomNamedNodeMap(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qdomnode.cpp b/xml/qdomnode.cpp new file mode 100755 index 00000000..7b1075a3 --- /dev/null +++ b/xml/qdomnode.cpp @@ -0,0 +1,145 @@ +#include "qdomnode.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDomNode: public QDomNode { +public: +}; + +QtObjectPtr QDomNode_NewQDomNode(){ + return new QDomNode(); +} + +QtObjectPtr QDomNode_NewQDomNode2(QtObjectPtr n){ + return new QDomNode(*static_cast(n)); +} + +void QDomNode_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +int QDomNode_ColumnNumber(QtObjectPtr ptr){ + return static_cast(ptr)->columnNumber(); +} + +int QDomNode_HasAttributes(QtObjectPtr ptr){ + return static_cast(ptr)->hasAttributes(); +} + +int QDomNode_HasChildNodes(QtObjectPtr ptr){ + return static_cast(ptr)->hasChildNodes(); +} + +int QDomNode_IsAttr(QtObjectPtr ptr){ + return static_cast(ptr)->isAttr(); +} + +int QDomNode_IsCDATASection(QtObjectPtr ptr){ + return static_cast(ptr)->isCDATASection(); +} + +int QDomNode_IsCharacterData(QtObjectPtr ptr){ + return static_cast(ptr)->isCharacterData(); +} + +int QDomNode_IsComment(QtObjectPtr ptr){ + return static_cast(ptr)->isComment(); +} + +int QDomNode_IsDocument(QtObjectPtr ptr){ + return static_cast(ptr)->isDocument(); +} + +int QDomNode_IsDocumentFragment(QtObjectPtr ptr){ + return static_cast(ptr)->isDocumentFragment(); +} + +int QDomNode_IsDocumentType(QtObjectPtr ptr){ + return static_cast(ptr)->isDocumentType(); +} + +int QDomNode_IsElement(QtObjectPtr ptr){ + return static_cast(ptr)->isElement(); +} + +int QDomNode_IsEntity(QtObjectPtr ptr){ + return static_cast(ptr)->isEntity(); +} + +int QDomNode_IsEntityReference(QtObjectPtr ptr){ + return static_cast(ptr)->isEntityReference(); +} + +int QDomNode_IsNotation(QtObjectPtr ptr){ + return static_cast(ptr)->isNotation(); +} + +int QDomNode_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +int QDomNode_IsProcessingInstruction(QtObjectPtr ptr){ + return static_cast(ptr)->isProcessingInstruction(); +} + +int QDomNode_IsSupported(QtObjectPtr ptr, char* feature, char* version){ + return static_cast(ptr)->isSupported(QString(feature), QString(version)); +} + +int QDomNode_IsText(QtObjectPtr ptr){ + return static_cast(ptr)->isText(); +} + +int QDomNode_LineNumber(QtObjectPtr ptr){ + return static_cast(ptr)->lineNumber(); +} + +char* QDomNode_LocalName(QtObjectPtr ptr){ + return static_cast(ptr)->localName().toUtf8().data(); +} + +char* QDomNode_NamespaceURI(QtObjectPtr ptr){ + return static_cast(ptr)->namespaceURI().toUtf8().data(); +} + +char* QDomNode_NodeName(QtObjectPtr ptr){ + return static_cast(ptr)->nodeName().toUtf8().data(); +} + +int QDomNode_NodeType(QtObjectPtr ptr){ + return static_cast(ptr)->nodeType(); +} + +char* QDomNode_NodeValue(QtObjectPtr ptr){ + return static_cast(ptr)->nodeValue().toUtf8().data(); +} + +void QDomNode_Normalize(QtObjectPtr ptr){ + static_cast(ptr)->normalize(); +} + +char* QDomNode_Prefix(QtObjectPtr ptr){ + return static_cast(ptr)->prefix().toUtf8().data(); +} + +void QDomNode_Save(QtObjectPtr ptr, QtObjectPtr stream, int indent, int encodingPolicy){ + static_cast(ptr)->save(*static_cast(stream), indent, static_cast(encodingPolicy)); +} + +void QDomNode_SetNodeValue(QtObjectPtr ptr, char* v){ + static_cast(ptr)->setNodeValue(QString(v)); +} + +void QDomNode_SetPrefix(QtObjectPtr ptr, char* pre){ + static_cast(ptr)->setPrefix(QString(pre)); +} + +void QDomNode_DestroyQDomNode(QtObjectPtr ptr){ + static_cast(ptr)->~QDomNode(); +} + diff --git a/xml/qdomnode.go b/xml/qdomnode.go new file mode 100755 index 00000000..c5528301 --- /dev/null +++ b/xml/qdomnode.go @@ -0,0 +1,288 @@ +package xml + +//#include "qdomnode.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QDomNode struct { + ptr unsafe.Pointer +} + +type QDomNodeITF interface { + QDomNodePTR() *QDomNode +} + +func (p *QDomNode) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDomNode) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDomNode(ptr QDomNodeITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDomNodePTR().Pointer() + } + return nil +} + +func QDomNodeFromPointer(ptr unsafe.Pointer) *QDomNode { + var n = new(QDomNode) + n.SetPointer(ptr) + return n +} + +func (ptr *QDomNode) QDomNodePTR() *QDomNode { + return ptr +} + +//QDomNode::EncodingPolicy +type QDomNode__EncodingPolicy int + +var ( + QDomNode__EncodingFromDocument = QDomNode__EncodingPolicy(1) + QDomNode__EncodingFromTextStream = QDomNode__EncodingPolicy(2) +) + +//QDomNode::NodeType +type QDomNode__NodeType int + +var ( + QDomNode__ElementNode = QDomNode__NodeType(1) + QDomNode__AttributeNode = QDomNode__NodeType(2) + QDomNode__TextNode = QDomNode__NodeType(3) + QDomNode__CDATASectionNode = QDomNode__NodeType(4) + QDomNode__EntityReferenceNode = QDomNode__NodeType(5) + QDomNode__EntityNode = QDomNode__NodeType(6) + QDomNode__ProcessingInstructionNode = QDomNode__NodeType(7) + QDomNode__CommentNode = QDomNode__NodeType(8) + QDomNode__DocumentNode = QDomNode__NodeType(9) + QDomNode__DocumentTypeNode = QDomNode__NodeType(10) + QDomNode__DocumentFragmentNode = QDomNode__NodeType(11) + QDomNode__NotationNode = QDomNode__NodeType(12) + QDomNode__BaseNode = QDomNode__NodeType(21) + QDomNode__CharacterDataNode = QDomNode__NodeType(22) +) + +func NewQDomNode() *QDomNode { + return QDomNodeFromPointer(unsafe.Pointer(C.QDomNode_NewQDomNode())) +} + +func NewQDomNode2(n QDomNodeITF) *QDomNode { + return QDomNodeFromPointer(unsafe.Pointer(C.QDomNode_NewQDomNode2(C.QtObjectPtr(PointerFromQDomNode(n))))) +} + +func (ptr *QDomNode) Clear() { + if ptr.Pointer() != nil { + C.QDomNode_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDomNode) ColumnNumber() int { + if ptr.Pointer() != nil { + return int(C.QDomNode_ColumnNumber(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDomNode) HasAttributes() bool { + if ptr.Pointer() != nil { + return C.QDomNode_HasAttributes(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDomNode) HasChildNodes() bool { + if ptr.Pointer() != nil { + return C.QDomNode_HasChildNodes(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDomNode) IsAttr() bool { + if ptr.Pointer() != nil { + return C.QDomNode_IsAttr(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDomNode) IsCDATASection() bool { + if ptr.Pointer() != nil { + return C.QDomNode_IsCDATASection(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDomNode) IsCharacterData() bool { + if ptr.Pointer() != nil { + return C.QDomNode_IsCharacterData(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDomNode) IsComment() bool { + if ptr.Pointer() != nil { + return C.QDomNode_IsComment(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDomNode) IsDocument() bool { + if ptr.Pointer() != nil { + return C.QDomNode_IsDocument(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDomNode) IsDocumentFragment() bool { + if ptr.Pointer() != nil { + return C.QDomNode_IsDocumentFragment(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDomNode) IsDocumentType() bool { + if ptr.Pointer() != nil { + return C.QDomNode_IsDocumentType(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDomNode) IsElement() bool { + if ptr.Pointer() != nil { + return C.QDomNode_IsElement(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDomNode) IsEntity() bool { + if ptr.Pointer() != nil { + return C.QDomNode_IsEntity(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDomNode) IsEntityReference() bool { + if ptr.Pointer() != nil { + return C.QDomNode_IsEntityReference(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDomNode) IsNotation() bool { + if ptr.Pointer() != nil { + return C.QDomNode_IsNotation(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDomNode) IsNull() bool { + if ptr.Pointer() != nil { + return C.QDomNode_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDomNode) IsProcessingInstruction() bool { + if ptr.Pointer() != nil { + return C.QDomNode_IsProcessingInstruction(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDomNode) IsSupported(feature string, version string) bool { + if ptr.Pointer() != nil { + return C.QDomNode_IsSupported(C.QtObjectPtr(ptr.Pointer()), C.CString(feature), C.CString(version)) != 0 + } + return false +} + +func (ptr *QDomNode) IsText() bool { + if ptr.Pointer() != nil { + return C.QDomNode_IsText(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDomNode) LineNumber() int { + if ptr.Pointer() != nil { + return int(C.QDomNode_LineNumber(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDomNode) LocalName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDomNode_LocalName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDomNode) NamespaceURI() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDomNode_NamespaceURI(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDomNode) NodeName() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDomNode_NodeName(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDomNode) NodeType() QDomNode__NodeType { + if ptr.Pointer() != nil { + return QDomNode__NodeType(C.QDomNode_NodeType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDomNode) NodeValue() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDomNode_NodeValue(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDomNode) Normalize() { + if ptr.Pointer() != nil { + C.QDomNode_Normalize(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QDomNode) Prefix() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDomNode_Prefix(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDomNode) Save(stream core.QTextStreamITF, indent int, encodingPolicy QDomNode__EncodingPolicy) { + if ptr.Pointer() != nil { + C.QDomNode_Save(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQTextStream(stream)), C.int(indent), C.int(encodingPolicy)) + } +} + +func (ptr *QDomNode) SetNodeValue(v string) { + if ptr.Pointer() != nil { + C.QDomNode_SetNodeValue(C.QtObjectPtr(ptr.Pointer()), C.CString(v)) + } +} + +func (ptr *QDomNode) SetPrefix(pre string) { + if ptr.Pointer() != nil { + C.QDomNode_SetPrefix(C.QtObjectPtr(ptr.Pointer()), C.CString(pre)) + } +} + +func (ptr *QDomNode) DestroyQDomNode() { + if ptr.Pointer() != nil { + C.QDomNode_DestroyQDomNode(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xml/qdomnode.h b/xml/qdomnode.h new file mode 100755 index 00000000..5c5238bd --- /dev/null +++ b/xml/qdomnode.h @@ -0,0 +1,42 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDomNode_NewQDomNode(); +QtObjectPtr QDomNode_NewQDomNode2(QtObjectPtr n); +void QDomNode_Clear(QtObjectPtr ptr); +int QDomNode_ColumnNumber(QtObjectPtr ptr); +int QDomNode_HasAttributes(QtObjectPtr ptr); +int QDomNode_HasChildNodes(QtObjectPtr ptr); +int QDomNode_IsAttr(QtObjectPtr ptr); +int QDomNode_IsCDATASection(QtObjectPtr ptr); +int QDomNode_IsCharacterData(QtObjectPtr ptr); +int QDomNode_IsComment(QtObjectPtr ptr); +int QDomNode_IsDocument(QtObjectPtr ptr); +int QDomNode_IsDocumentFragment(QtObjectPtr ptr); +int QDomNode_IsDocumentType(QtObjectPtr ptr); +int QDomNode_IsElement(QtObjectPtr ptr); +int QDomNode_IsEntity(QtObjectPtr ptr); +int QDomNode_IsEntityReference(QtObjectPtr ptr); +int QDomNode_IsNotation(QtObjectPtr ptr); +int QDomNode_IsNull(QtObjectPtr ptr); +int QDomNode_IsProcessingInstruction(QtObjectPtr ptr); +int QDomNode_IsSupported(QtObjectPtr ptr, char* feature, char* version); +int QDomNode_IsText(QtObjectPtr ptr); +int QDomNode_LineNumber(QtObjectPtr ptr); +char* QDomNode_LocalName(QtObjectPtr ptr); +char* QDomNode_NamespaceURI(QtObjectPtr ptr); +char* QDomNode_NodeName(QtObjectPtr ptr); +int QDomNode_NodeType(QtObjectPtr ptr); +char* QDomNode_NodeValue(QtObjectPtr ptr); +void QDomNode_Normalize(QtObjectPtr ptr); +char* QDomNode_Prefix(QtObjectPtr ptr); +void QDomNode_Save(QtObjectPtr ptr, QtObjectPtr stream, int indent, int encodingPolicy); +void QDomNode_SetNodeValue(QtObjectPtr ptr, char* v); +void QDomNode_SetPrefix(QtObjectPtr ptr, char* pre); +void QDomNode_DestroyQDomNode(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qdomnodelist.cpp b/xml/qdomnodelist.cpp new file mode 100755 index 00000000..bf6a8c4e --- /dev/null +++ b/xml/qdomnodelist.cpp @@ -0,0 +1,43 @@ +#include "qdomnodelist.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDomNodeList: public QDomNodeList { +public: +}; + +QtObjectPtr QDomNodeList_NewQDomNodeList(){ + return new QDomNodeList(); +} + +QtObjectPtr QDomNodeList_NewQDomNodeList2(QtObjectPtr n){ + return new QDomNodeList(*static_cast(n)); +} + +int QDomNodeList_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +int QDomNodeList_IsEmpty(QtObjectPtr ptr){ + return static_cast(ptr)->isEmpty(); +} + +int QDomNodeList_Length(QtObjectPtr ptr){ + return static_cast(ptr)->length(); +} + +int QDomNodeList_Size(QtObjectPtr ptr){ + return static_cast(ptr)->size(); +} + +void QDomNodeList_DestroyQDomNodeList(QtObjectPtr ptr){ + static_cast(ptr)->~QDomNodeList(); +} + diff --git a/xml/qdomnodelist.go b/xml/qdomnodelist.go new file mode 100755 index 00000000..ac0b9cb9 --- /dev/null +++ b/xml/qdomnodelist.go @@ -0,0 +1,82 @@ +package xml + +//#include "qdomnodelist.h" +import "C" +import ( + "unsafe" +) + +type QDomNodeList struct { + ptr unsafe.Pointer +} + +type QDomNodeListITF interface { + QDomNodeListPTR() *QDomNodeList +} + +func (p *QDomNodeList) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QDomNodeList) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQDomNodeList(ptr QDomNodeListITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDomNodeListPTR().Pointer() + } + return nil +} + +func QDomNodeListFromPointer(ptr unsafe.Pointer) *QDomNodeList { + var n = new(QDomNodeList) + n.SetPointer(ptr) + return n +} + +func (ptr *QDomNodeList) QDomNodeListPTR() *QDomNodeList { + return ptr +} + +func NewQDomNodeList() *QDomNodeList { + return QDomNodeListFromPointer(unsafe.Pointer(C.QDomNodeList_NewQDomNodeList())) +} + +func NewQDomNodeList2(n QDomNodeListITF) *QDomNodeList { + return QDomNodeListFromPointer(unsafe.Pointer(C.QDomNodeList_NewQDomNodeList2(C.QtObjectPtr(PointerFromQDomNodeList(n))))) +} + +func (ptr *QDomNodeList) Count() int { + if ptr.Pointer() != nil { + return int(C.QDomNodeList_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDomNodeList) IsEmpty() bool { + if ptr.Pointer() != nil { + return C.QDomNodeList_IsEmpty(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QDomNodeList) Length() int { + if ptr.Pointer() != nil { + return int(C.QDomNodeList_Length(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDomNodeList) Size() int { + if ptr.Pointer() != nil { + return int(C.QDomNodeList_Size(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDomNodeList) DestroyQDomNodeList() { + if ptr.Pointer() != nil { + C.QDomNodeList_DestroyQDomNodeList(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xml/qdomnodelist.h b/xml/qdomnodelist.h new file mode 100755 index 00000000..61501022 --- /dev/null +++ b/xml/qdomnodelist.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDomNodeList_NewQDomNodeList(); +QtObjectPtr QDomNodeList_NewQDomNodeList2(QtObjectPtr n); +int QDomNodeList_Count(QtObjectPtr ptr); +int QDomNodeList_IsEmpty(QtObjectPtr ptr); +int QDomNodeList_Length(QtObjectPtr ptr); +int QDomNodeList_Size(QtObjectPtr ptr); +void QDomNodeList_DestroyQDomNodeList(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qdomnotation.cpp b/xml/qdomnotation.cpp new file mode 100755 index 00000000..d6ad5ae1 --- /dev/null +++ b/xml/qdomnotation.cpp @@ -0,0 +1,32 @@ +#include "qdomnotation.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDomNotation: public QDomNotation { +public: +}; + +QtObjectPtr QDomNotation_NewQDomNotation(){ + return new QDomNotation(); +} + +QtObjectPtr QDomNotation_NewQDomNotation2(QtObjectPtr x){ + return new QDomNotation(*static_cast(x)); +} + +int QDomNotation_NodeType(QtObjectPtr ptr){ + return static_cast(ptr)->nodeType(); +} + +char* QDomNotation_PublicId(QtObjectPtr ptr){ + return static_cast(ptr)->publicId().toUtf8().data(); +} + +char* QDomNotation_SystemId(QtObjectPtr ptr){ + return static_cast(ptr)->systemId().toUtf8().data(); +} + diff --git a/xml/qdomnotation.go b/xml/qdomnotation.go new file mode 100755 index 00000000..53cb8a97 --- /dev/null +++ b/xml/qdomnotation.go @@ -0,0 +1,62 @@ +package xml + +//#include "qdomnotation.h" +import "C" +import ( + "unsafe" +) + +type QDomNotation struct { + QDomNode +} + +type QDomNotationITF interface { + QDomNodeITF + QDomNotationPTR() *QDomNotation +} + +func PointerFromQDomNotation(ptr QDomNotationITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDomNotationPTR().Pointer() + } + return nil +} + +func QDomNotationFromPointer(ptr unsafe.Pointer) *QDomNotation { + var n = new(QDomNotation) + n.SetPointer(ptr) + return n +} + +func (ptr *QDomNotation) QDomNotationPTR() *QDomNotation { + return ptr +} + +func NewQDomNotation() *QDomNotation { + return QDomNotationFromPointer(unsafe.Pointer(C.QDomNotation_NewQDomNotation())) +} + +func NewQDomNotation2(x QDomNotationITF) *QDomNotation { + return QDomNotationFromPointer(unsafe.Pointer(C.QDomNotation_NewQDomNotation2(C.QtObjectPtr(PointerFromQDomNotation(x))))) +} + +func (ptr *QDomNotation) NodeType() QDomNode__NodeType { + if ptr.Pointer() != nil { + return QDomNode__NodeType(C.QDomNotation_NodeType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDomNotation) PublicId() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDomNotation_PublicId(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDomNotation) SystemId() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDomNotation_SystemId(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/xml/qdomnotation.h b/xml/qdomnotation.h new file mode 100755 index 00000000..5a1279c4 --- /dev/null +++ b/xml/qdomnotation.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDomNotation_NewQDomNotation(); +QtObjectPtr QDomNotation_NewQDomNotation2(QtObjectPtr x); +int QDomNotation_NodeType(QtObjectPtr ptr); +char* QDomNotation_PublicId(QtObjectPtr ptr); +char* QDomNotation_SystemId(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qdomprocessinginstruction.cpp b/xml/qdomprocessinginstruction.cpp new file mode 100755 index 00000000..3d9473bf --- /dev/null +++ b/xml/qdomprocessinginstruction.cpp @@ -0,0 +1,36 @@ +#include "qdomprocessinginstruction.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDomProcessingInstruction: public QDomProcessingInstruction { +public: +}; + +QtObjectPtr QDomProcessingInstruction_NewQDomProcessingInstruction(){ + return new QDomProcessingInstruction(); +} + +QtObjectPtr QDomProcessingInstruction_NewQDomProcessingInstruction2(QtObjectPtr x){ + return new QDomProcessingInstruction(*static_cast(x)); +} + +char* QDomProcessingInstruction_Data(QtObjectPtr ptr){ + return static_cast(ptr)->data().toUtf8().data(); +} + +int QDomProcessingInstruction_NodeType(QtObjectPtr ptr){ + return static_cast(ptr)->nodeType(); +} + +void QDomProcessingInstruction_SetData(QtObjectPtr ptr, char* d){ + static_cast(ptr)->setData(QString(d)); +} + +char* QDomProcessingInstruction_Target(QtObjectPtr ptr){ + return static_cast(ptr)->target().toUtf8().data(); +} + diff --git a/xml/qdomprocessinginstruction.go b/xml/qdomprocessinginstruction.go new file mode 100755 index 00000000..8ffdebae --- /dev/null +++ b/xml/qdomprocessinginstruction.go @@ -0,0 +1,68 @@ +package xml + +//#include "qdomprocessinginstruction.h" +import "C" +import ( + "unsafe" +) + +type QDomProcessingInstruction struct { + QDomNode +} + +type QDomProcessingInstructionITF interface { + QDomNodeITF + QDomProcessingInstructionPTR() *QDomProcessingInstruction +} + +func PointerFromQDomProcessingInstruction(ptr QDomProcessingInstructionITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDomProcessingInstructionPTR().Pointer() + } + return nil +} + +func QDomProcessingInstructionFromPointer(ptr unsafe.Pointer) *QDomProcessingInstruction { + var n = new(QDomProcessingInstruction) + n.SetPointer(ptr) + return n +} + +func (ptr *QDomProcessingInstruction) QDomProcessingInstructionPTR() *QDomProcessingInstruction { + return ptr +} + +func NewQDomProcessingInstruction() *QDomProcessingInstruction { + return QDomProcessingInstructionFromPointer(unsafe.Pointer(C.QDomProcessingInstruction_NewQDomProcessingInstruction())) +} + +func NewQDomProcessingInstruction2(x QDomProcessingInstructionITF) *QDomProcessingInstruction { + return QDomProcessingInstructionFromPointer(unsafe.Pointer(C.QDomProcessingInstruction_NewQDomProcessingInstruction2(C.QtObjectPtr(PointerFromQDomProcessingInstruction(x))))) +} + +func (ptr *QDomProcessingInstruction) Data() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDomProcessingInstruction_Data(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QDomProcessingInstruction) NodeType() QDomNode__NodeType { + if ptr.Pointer() != nil { + return QDomNode__NodeType(C.QDomProcessingInstruction_NodeType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QDomProcessingInstruction) SetData(d string) { + if ptr.Pointer() != nil { + C.QDomProcessingInstruction_SetData(C.QtObjectPtr(ptr.Pointer()), C.CString(d)) + } +} + +func (ptr *QDomProcessingInstruction) Target() string { + if ptr.Pointer() != nil { + return C.GoString(C.QDomProcessingInstruction_Target(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} diff --git a/xml/qdomprocessinginstruction.h b/xml/qdomprocessinginstruction.h new file mode 100755 index 00000000..404f2490 --- /dev/null +++ b/xml/qdomprocessinginstruction.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDomProcessingInstruction_NewQDomProcessingInstruction(); +QtObjectPtr QDomProcessingInstruction_NewQDomProcessingInstruction2(QtObjectPtr x); +char* QDomProcessingInstruction_Data(QtObjectPtr ptr); +int QDomProcessingInstruction_NodeType(QtObjectPtr ptr); +void QDomProcessingInstruction_SetData(QtObjectPtr ptr, char* d); +char* QDomProcessingInstruction_Target(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qdomtext.cpp b/xml/qdomtext.cpp new file mode 100755 index 00000000..69d0680e --- /dev/null +++ b/xml/qdomtext.cpp @@ -0,0 +1,24 @@ +#include "qdomtext.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQDomText: public QDomText { +public: +}; + +QtObjectPtr QDomText_NewQDomText(){ + return new QDomText(); +} + +QtObjectPtr QDomText_NewQDomText2(QtObjectPtr x){ + return new QDomText(*static_cast(x)); +} + +int QDomText_NodeType(QtObjectPtr ptr){ + return static_cast(ptr)->nodeType(); +} + diff --git a/xml/qdomtext.go b/xml/qdomtext.go new file mode 100755 index 00000000..3f14e9d7 --- /dev/null +++ b/xml/qdomtext.go @@ -0,0 +1,48 @@ +package xml + +//#include "qdomtext.h" +import "C" +import ( + "unsafe" +) + +type QDomText struct { + QDomCharacterData +} + +type QDomTextITF interface { + QDomCharacterDataITF + QDomTextPTR() *QDomText +} + +func PointerFromQDomText(ptr QDomTextITF) unsafe.Pointer { + if ptr != nil { + return ptr.QDomTextPTR().Pointer() + } + return nil +} + +func QDomTextFromPointer(ptr unsafe.Pointer) *QDomText { + var n = new(QDomText) + n.SetPointer(ptr) + return n +} + +func (ptr *QDomText) QDomTextPTR() *QDomText { + return ptr +} + +func NewQDomText() *QDomText { + return QDomTextFromPointer(unsafe.Pointer(C.QDomText_NewQDomText())) +} + +func NewQDomText2(x QDomTextITF) *QDomText { + return QDomTextFromPointer(unsafe.Pointer(C.QDomText_NewQDomText2(C.QtObjectPtr(PointerFromQDomText(x))))) +} + +func (ptr *QDomText) NodeType() QDomNode__NodeType { + if ptr.Pointer() != nil { + return QDomNode__NodeType(C.QDomText_NodeType(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} diff --git a/xml/qdomtext.h b/xml/qdomtext.h new file mode 100755 index 00000000..2c2955e2 --- /dev/null +++ b/xml/qdomtext.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QDomText_NewQDomText(); +QtObjectPtr QDomText_NewQDomText2(QtObjectPtr x); +int QDomText_NodeType(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qxmlattributes.cpp b/xml/qxmlattributes.cpp new file mode 100755 index 00000000..809ca37b --- /dev/null +++ b/xml/qxmlattributes.cpp @@ -0,0 +1,89 @@ +#include "qxmlattributes.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlAttributes: public QXmlAttributes { +public: +}; + +QtObjectPtr QXmlAttributes_NewQXmlAttributes(){ + return new QXmlAttributes(); +} + +void QXmlAttributes_DestroyQXmlAttributes(QtObjectPtr ptr){ + static_cast(ptr)->~QXmlAttributes(); +} + +void QXmlAttributes_Append(QtObjectPtr ptr, char* qName, char* uri, char* localPart, char* value){ + static_cast(ptr)->append(QString(qName), QString(uri), QString(localPart), QString(value)); +} + +void QXmlAttributes_Clear(QtObjectPtr ptr){ + static_cast(ptr)->clear(); +} + +int QXmlAttributes_Count(QtObjectPtr ptr){ + return static_cast(ptr)->count(); +} + +int QXmlAttributes_Index2(QtObjectPtr ptr, QtObjectPtr qName){ + return static_cast(ptr)->index(*static_cast(qName)); +} + +int QXmlAttributes_Index(QtObjectPtr ptr, char* qName){ + return static_cast(ptr)->index(QString(qName)); +} + +int QXmlAttributes_Index3(QtObjectPtr ptr, char* uri, char* localPart){ + return static_cast(ptr)->index(QString(uri), QString(localPart)); +} + +int QXmlAttributes_Length(QtObjectPtr ptr){ + return static_cast(ptr)->length(); +} + +char* QXmlAttributes_LocalName(QtObjectPtr ptr, int index){ + return static_cast(ptr)->localName(index).toUtf8().data(); +} + +char* QXmlAttributes_QName(QtObjectPtr ptr, int index){ + return static_cast(ptr)->qName(index).toUtf8().data(); +} + +char* QXmlAttributes_Type2(QtObjectPtr ptr, char* qName){ + return static_cast(ptr)->type(QString(qName)).toUtf8().data(); +} + +char* QXmlAttributes_Type3(QtObjectPtr ptr, char* uri, char* localName){ + return static_cast(ptr)->type(QString(uri), QString(localName)).toUtf8().data(); +} + +char* QXmlAttributes_Type(QtObjectPtr ptr, int index){ + return static_cast(ptr)->type(index).toUtf8().data(); +} + +char* QXmlAttributes_Uri(QtObjectPtr ptr, int index){ + return static_cast(ptr)->uri(index).toUtf8().data(); +} + +char* QXmlAttributes_Value3(QtObjectPtr ptr, QtObjectPtr qName){ + return static_cast(ptr)->value(*static_cast(qName)).toUtf8().data(); +} + +char* QXmlAttributes_Value2(QtObjectPtr ptr, char* qName){ + return static_cast(ptr)->value(QString(qName)).toUtf8().data(); +} + +char* QXmlAttributes_Value4(QtObjectPtr ptr, char* uri, char* localName){ + return static_cast(ptr)->value(QString(uri), QString(localName)).toUtf8().data(); +} + +char* QXmlAttributes_Value(QtObjectPtr ptr, int index){ + return static_cast(ptr)->value(index).toUtf8().data(); +} + diff --git a/xml/qxmlattributes.go b/xml/qxmlattributes.go new file mode 100755 index 00000000..b2dc7b4e --- /dev/null +++ b/xml/qxmlattributes.go @@ -0,0 +1,168 @@ +package xml + +//#include "qxmlattributes.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QXmlAttributes struct { + ptr unsafe.Pointer +} + +type QXmlAttributesITF interface { + QXmlAttributesPTR() *QXmlAttributes +} + +func (p *QXmlAttributes) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QXmlAttributes) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQXmlAttributes(ptr QXmlAttributesITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlAttributesPTR().Pointer() + } + return nil +} + +func QXmlAttributesFromPointer(ptr unsafe.Pointer) *QXmlAttributes { + var n = new(QXmlAttributes) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlAttributes) QXmlAttributesPTR() *QXmlAttributes { + return ptr +} + +func NewQXmlAttributes() *QXmlAttributes { + return QXmlAttributesFromPointer(unsafe.Pointer(C.QXmlAttributes_NewQXmlAttributes())) +} + +func (ptr *QXmlAttributes) DestroyQXmlAttributes() { + if ptr.Pointer() != nil { + C.QXmlAttributes_DestroyQXmlAttributes(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QXmlAttributes) Append(qName string, uri string, localPart string, value string) { + if ptr.Pointer() != nil { + C.QXmlAttributes_Append(C.QtObjectPtr(ptr.Pointer()), C.CString(qName), C.CString(uri), C.CString(localPart), C.CString(value)) + } +} + +func (ptr *QXmlAttributes) Clear() { + if ptr.Pointer() != nil { + C.QXmlAttributes_Clear(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QXmlAttributes) Count() int { + if ptr.Pointer() != nil { + return int(C.QXmlAttributes_Count(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QXmlAttributes) Index2(qName core.QLatin1StringITF) int { + if ptr.Pointer() != nil { + return int(C.QXmlAttributes_Index2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQLatin1String(qName)))) + } + return 0 +} + +func (ptr *QXmlAttributes) Index(qName string) int { + if ptr.Pointer() != nil { + return int(C.QXmlAttributes_Index(C.QtObjectPtr(ptr.Pointer()), C.CString(qName))) + } + return 0 +} + +func (ptr *QXmlAttributes) Index3(uri string, localPart string) int { + if ptr.Pointer() != nil { + return int(C.QXmlAttributes_Index3(C.QtObjectPtr(ptr.Pointer()), C.CString(uri), C.CString(localPart))) + } + return 0 +} + +func (ptr *QXmlAttributes) Length() int { + if ptr.Pointer() != nil { + return int(C.QXmlAttributes_Length(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QXmlAttributes) LocalName(index int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlAttributes_LocalName(C.QtObjectPtr(ptr.Pointer()), C.int(index))) + } + return "" +} + +func (ptr *QXmlAttributes) QName(index int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlAttributes_QName(C.QtObjectPtr(ptr.Pointer()), C.int(index))) + } + return "" +} + +func (ptr *QXmlAttributes) Type2(qName string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlAttributes_Type2(C.QtObjectPtr(ptr.Pointer()), C.CString(qName))) + } + return "" +} + +func (ptr *QXmlAttributes) Type3(uri string, localName string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlAttributes_Type3(C.QtObjectPtr(ptr.Pointer()), C.CString(uri), C.CString(localName))) + } + return "" +} + +func (ptr *QXmlAttributes) Type(index int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlAttributes_Type(C.QtObjectPtr(ptr.Pointer()), C.int(index))) + } + return "" +} + +func (ptr *QXmlAttributes) Uri(index int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlAttributes_Uri(C.QtObjectPtr(ptr.Pointer()), C.int(index))) + } + return "" +} + +func (ptr *QXmlAttributes) Value3(qName core.QLatin1StringITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlAttributes_Value3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQLatin1String(qName)))) + } + return "" +} + +func (ptr *QXmlAttributes) Value2(qName string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlAttributes_Value2(C.QtObjectPtr(ptr.Pointer()), C.CString(qName))) + } + return "" +} + +func (ptr *QXmlAttributes) Value4(uri string, localName string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlAttributes_Value4(C.QtObjectPtr(ptr.Pointer()), C.CString(uri), C.CString(localName))) + } + return "" +} + +func (ptr *QXmlAttributes) Value(index int) string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlAttributes_Value(C.QtObjectPtr(ptr.Pointer()), C.int(index))) + } + return "" +} diff --git a/xml/qxmlattributes.h b/xml/qxmlattributes.h new file mode 100755 index 00000000..d6030719 --- /dev/null +++ b/xml/qxmlattributes.h @@ -0,0 +1,28 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QXmlAttributes_NewQXmlAttributes(); +void QXmlAttributes_DestroyQXmlAttributes(QtObjectPtr ptr); +void QXmlAttributes_Append(QtObjectPtr ptr, char* qName, char* uri, char* localPart, char* value); +void QXmlAttributes_Clear(QtObjectPtr ptr); +int QXmlAttributes_Count(QtObjectPtr ptr); +int QXmlAttributes_Index2(QtObjectPtr ptr, QtObjectPtr qName); +int QXmlAttributes_Index(QtObjectPtr ptr, char* qName); +int QXmlAttributes_Index3(QtObjectPtr ptr, char* uri, char* localPart); +int QXmlAttributes_Length(QtObjectPtr ptr); +char* QXmlAttributes_LocalName(QtObjectPtr ptr, int index); +char* QXmlAttributes_QName(QtObjectPtr ptr, int index); +char* QXmlAttributes_Type2(QtObjectPtr ptr, char* qName); +char* QXmlAttributes_Type3(QtObjectPtr ptr, char* uri, char* localName); +char* QXmlAttributes_Type(QtObjectPtr ptr, int index); +char* QXmlAttributes_Uri(QtObjectPtr ptr, int index); +char* QXmlAttributes_Value3(QtObjectPtr ptr, QtObjectPtr qName); +char* QXmlAttributes_Value2(QtObjectPtr ptr, char* qName); +char* QXmlAttributes_Value4(QtObjectPtr ptr, char* uri, char* localName); +char* QXmlAttributes_Value(QtObjectPtr ptr, int index); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qxmlcontenthandler.cpp b/xml/qxmlcontenthandler.cpp new file mode 100755 index 00000000..1262c3e9 --- /dev/null +++ b/xml/qxmlcontenthandler.cpp @@ -0,0 +1,66 @@ +#include "qxmlcontenthandler.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlContentHandler: public QXmlContentHandler { +public: +}; + +int QXmlContentHandler_Characters(QtObjectPtr ptr, char* ch){ + return static_cast(ptr)->characters(QString(ch)); +} + +int QXmlContentHandler_EndDocument(QtObjectPtr ptr){ + return static_cast(ptr)->endDocument(); +} + +int QXmlContentHandler_EndElement(QtObjectPtr ptr, char* namespaceURI, char* localName, char* qName){ + return static_cast(ptr)->endElement(QString(namespaceURI), QString(localName), QString(qName)); +} + +int QXmlContentHandler_EndPrefixMapping(QtObjectPtr ptr, char* prefix){ + return static_cast(ptr)->endPrefixMapping(QString(prefix)); +} + +char* QXmlContentHandler_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +int QXmlContentHandler_IgnorableWhitespace(QtObjectPtr ptr, char* ch){ + return static_cast(ptr)->ignorableWhitespace(QString(ch)); +} + +int QXmlContentHandler_ProcessingInstruction(QtObjectPtr ptr, char* target, char* data){ + return static_cast(ptr)->processingInstruction(QString(target), QString(data)); +} + +void QXmlContentHandler_SetDocumentLocator(QtObjectPtr ptr, QtObjectPtr locator){ + static_cast(ptr)->setDocumentLocator(static_cast(locator)); +} + +int QXmlContentHandler_SkippedEntity(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->skippedEntity(QString(name)); +} + +int QXmlContentHandler_StartDocument(QtObjectPtr ptr){ + return static_cast(ptr)->startDocument(); +} + +int QXmlContentHandler_StartElement(QtObjectPtr ptr, char* namespaceURI, char* localName, char* qName, QtObjectPtr atts){ + return static_cast(ptr)->startElement(QString(namespaceURI), QString(localName), QString(qName), *static_cast(atts)); +} + +int QXmlContentHandler_StartPrefixMapping(QtObjectPtr ptr, char* prefix, char* uri){ + return static_cast(ptr)->startPrefixMapping(QString(prefix), QString(uri)); +} + +void QXmlContentHandler_DestroyQXmlContentHandler(QtObjectPtr ptr){ + static_cast(ptr)->~QXmlContentHandler(); +} + diff --git a/xml/qxmlcontenthandler.go b/xml/qxmlcontenthandler.go new file mode 100755 index 00000000..c8d8fbb1 --- /dev/null +++ b/xml/qxmlcontenthandler.go @@ -0,0 +1,129 @@ +package xml + +//#include "qxmlcontenthandler.h" +import "C" +import ( + "unsafe" +) + +type QXmlContentHandler struct { + ptr unsafe.Pointer +} + +type QXmlContentHandlerITF interface { + QXmlContentHandlerPTR() *QXmlContentHandler +} + +func (p *QXmlContentHandler) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QXmlContentHandler) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQXmlContentHandler(ptr QXmlContentHandlerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlContentHandlerPTR().Pointer() + } + return nil +} + +func QXmlContentHandlerFromPointer(ptr unsafe.Pointer) *QXmlContentHandler { + var n = new(QXmlContentHandler) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlContentHandler) QXmlContentHandlerPTR() *QXmlContentHandler { + return ptr +} + +func (ptr *QXmlContentHandler) Characters(ch string) bool { + if ptr.Pointer() != nil { + return C.QXmlContentHandler_Characters(C.QtObjectPtr(ptr.Pointer()), C.CString(ch)) != 0 + } + return false +} + +func (ptr *QXmlContentHandler) EndDocument() bool { + if ptr.Pointer() != nil { + return C.QXmlContentHandler_EndDocument(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlContentHandler) EndElement(namespaceURI string, localName string, qName string) bool { + if ptr.Pointer() != nil { + return C.QXmlContentHandler_EndElement(C.QtObjectPtr(ptr.Pointer()), C.CString(namespaceURI), C.CString(localName), C.CString(qName)) != 0 + } + return false +} + +func (ptr *QXmlContentHandler) EndPrefixMapping(prefix string) bool { + if ptr.Pointer() != nil { + return C.QXmlContentHandler_EndPrefixMapping(C.QtObjectPtr(ptr.Pointer()), C.CString(prefix)) != 0 + } + return false +} + +func (ptr *QXmlContentHandler) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlContentHandler_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QXmlContentHandler) IgnorableWhitespace(ch string) bool { + if ptr.Pointer() != nil { + return C.QXmlContentHandler_IgnorableWhitespace(C.QtObjectPtr(ptr.Pointer()), C.CString(ch)) != 0 + } + return false +} + +func (ptr *QXmlContentHandler) ProcessingInstruction(target string, data string) bool { + if ptr.Pointer() != nil { + return C.QXmlContentHandler_ProcessingInstruction(C.QtObjectPtr(ptr.Pointer()), C.CString(target), C.CString(data)) != 0 + } + return false +} + +func (ptr *QXmlContentHandler) SetDocumentLocator(locator QXmlLocatorITF) { + if ptr.Pointer() != nil { + C.QXmlContentHandler_SetDocumentLocator(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlLocator(locator))) + } +} + +func (ptr *QXmlContentHandler) SkippedEntity(name string) bool { + if ptr.Pointer() != nil { + return C.QXmlContentHandler_SkippedEntity(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) != 0 + } + return false +} + +func (ptr *QXmlContentHandler) StartDocument() bool { + if ptr.Pointer() != nil { + return C.QXmlContentHandler_StartDocument(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlContentHandler) StartElement(namespaceURI string, localName string, qName string, atts QXmlAttributesITF) bool { + if ptr.Pointer() != nil { + return C.QXmlContentHandler_StartElement(C.QtObjectPtr(ptr.Pointer()), C.CString(namespaceURI), C.CString(localName), C.CString(qName), C.QtObjectPtr(PointerFromQXmlAttributes(atts))) != 0 + } + return false +} + +func (ptr *QXmlContentHandler) StartPrefixMapping(prefix string, uri string) bool { + if ptr.Pointer() != nil { + return C.QXmlContentHandler_StartPrefixMapping(C.QtObjectPtr(ptr.Pointer()), C.CString(prefix), C.CString(uri)) != 0 + } + return false +} + +func (ptr *QXmlContentHandler) DestroyQXmlContentHandler() { + if ptr.Pointer() != nil { + C.QXmlContentHandler_DestroyQXmlContentHandler(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xml/qxmlcontenthandler.h b/xml/qxmlcontenthandler.h new file mode 100755 index 00000000..0d7999a3 --- /dev/null +++ b/xml/qxmlcontenthandler.h @@ -0,0 +1,22 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QXmlContentHandler_Characters(QtObjectPtr ptr, char* ch); +int QXmlContentHandler_EndDocument(QtObjectPtr ptr); +int QXmlContentHandler_EndElement(QtObjectPtr ptr, char* namespaceURI, char* localName, char* qName); +int QXmlContentHandler_EndPrefixMapping(QtObjectPtr ptr, char* prefix); +char* QXmlContentHandler_ErrorString(QtObjectPtr ptr); +int QXmlContentHandler_IgnorableWhitespace(QtObjectPtr ptr, char* ch); +int QXmlContentHandler_ProcessingInstruction(QtObjectPtr ptr, char* target, char* data); +void QXmlContentHandler_SetDocumentLocator(QtObjectPtr ptr, QtObjectPtr locator); +int QXmlContentHandler_SkippedEntity(QtObjectPtr ptr, char* name); +int QXmlContentHandler_StartDocument(QtObjectPtr ptr); +int QXmlContentHandler_StartElement(QtObjectPtr ptr, char* namespaceURI, char* localName, char* qName, QtObjectPtr atts); +int QXmlContentHandler_StartPrefixMapping(QtObjectPtr ptr, char* prefix, char* uri); +void QXmlContentHandler_DestroyQXmlContentHandler(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qxmldeclhandler.cpp b/xml/qxmldeclhandler.cpp new file mode 100755 index 00000000..ca3bc19b --- /dev/null +++ b/xml/qxmldeclhandler.cpp @@ -0,0 +1,32 @@ +#include "qxmldeclhandler.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlDeclHandler: public QXmlDeclHandler { +public: +}; + +int QXmlDeclHandler_AttributeDecl(QtObjectPtr ptr, char* eName, char* aName, char* ty, char* valueDefault, char* value){ + return static_cast(ptr)->attributeDecl(QString(eName), QString(aName), QString(ty), QString(valueDefault), QString(value)); +} + +char* QXmlDeclHandler_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +int QXmlDeclHandler_ExternalEntityDecl(QtObjectPtr ptr, char* name, char* publicId, char* systemId){ + return static_cast(ptr)->externalEntityDecl(QString(name), QString(publicId), QString(systemId)); +} + +int QXmlDeclHandler_InternalEntityDecl(QtObjectPtr ptr, char* name, char* value){ + return static_cast(ptr)->internalEntityDecl(QString(name), QString(value)); +} + +void QXmlDeclHandler_DestroyQXmlDeclHandler(QtObjectPtr ptr){ + static_cast(ptr)->~QXmlDeclHandler(); +} + diff --git a/xml/qxmldeclhandler.go b/xml/qxmldeclhandler.go new file mode 100755 index 00000000..7dd07b99 --- /dev/null +++ b/xml/qxmldeclhandler.go @@ -0,0 +1,74 @@ +package xml + +//#include "qxmldeclhandler.h" +import "C" +import ( + "unsafe" +) + +type QXmlDeclHandler struct { + ptr unsafe.Pointer +} + +type QXmlDeclHandlerITF interface { + QXmlDeclHandlerPTR() *QXmlDeclHandler +} + +func (p *QXmlDeclHandler) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QXmlDeclHandler) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQXmlDeclHandler(ptr QXmlDeclHandlerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlDeclHandlerPTR().Pointer() + } + return nil +} + +func QXmlDeclHandlerFromPointer(ptr unsafe.Pointer) *QXmlDeclHandler { + var n = new(QXmlDeclHandler) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlDeclHandler) QXmlDeclHandlerPTR() *QXmlDeclHandler { + return ptr +} + +func (ptr *QXmlDeclHandler) AttributeDecl(eName string, aName string, ty string, valueDefault string, value string) bool { + if ptr.Pointer() != nil { + return C.QXmlDeclHandler_AttributeDecl(C.QtObjectPtr(ptr.Pointer()), C.CString(eName), C.CString(aName), C.CString(ty), C.CString(valueDefault), C.CString(value)) != 0 + } + return false +} + +func (ptr *QXmlDeclHandler) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlDeclHandler_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QXmlDeclHandler) ExternalEntityDecl(name string, publicId string, systemId string) bool { + if ptr.Pointer() != nil { + return C.QXmlDeclHandler_ExternalEntityDecl(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.CString(publicId), C.CString(systemId)) != 0 + } + return false +} + +func (ptr *QXmlDeclHandler) InternalEntityDecl(name string, value string) bool { + if ptr.Pointer() != nil { + return C.QXmlDeclHandler_InternalEntityDecl(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.CString(value)) != 0 + } + return false +} + +func (ptr *QXmlDeclHandler) DestroyQXmlDeclHandler() { + if ptr.Pointer() != nil { + C.QXmlDeclHandler_DestroyQXmlDeclHandler(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xml/qxmldeclhandler.h b/xml/qxmldeclhandler.h new file mode 100755 index 00000000..e3216cc8 --- /dev/null +++ b/xml/qxmldeclhandler.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QXmlDeclHandler_AttributeDecl(QtObjectPtr ptr, char* eName, char* aName, char* ty, char* valueDefault, char* value); +char* QXmlDeclHandler_ErrorString(QtObjectPtr ptr); +int QXmlDeclHandler_ExternalEntityDecl(QtObjectPtr ptr, char* name, char* publicId, char* systemId); +int QXmlDeclHandler_InternalEntityDecl(QtObjectPtr ptr, char* name, char* value); +void QXmlDeclHandler_DestroyQXmlDeclHandler(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qxmldefaulthandler.cpp b/xml/qxmldefaulthandler.cpp new file mode 100755 index 00000000..78c94a31 --- /dev/null +++ b/xml/qxmldefaulthandler.cpp @@ -0,0 +1,131 @@ +#include "qxmldefaulthandler.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlDefaultHandler: public QXmlDefaultHandler { +public: +}; + +QtObjectPtr QXmlDefaultHandler_NewQXmlDefaultHandler(){ + return new QXmlDefaultHandler(); +} + +void QXmlDefaultHandler_DestroyQXmlDefaultHandler(QtObjectPtr ptr){ + static_cast(ptr)->~QXmlDefaultHandler(); +} + +int QXmlDefaultHandler_AttributeDecl(QtObjectPtr ptr, char* eName, char* aName, char* ty, char* valueDefault, char* value){ + return static_cast(ptr)->attributeDecl(QString(eName), QString(aName), QString(ty), QString(valueDefault), QString(value)); +} + +int QXmlDefaultHandler_Characters(QtObjectPtr ptr, char* ch){ + return static_cast(ptr)->characters(QString(ch)); +} + +int QXmlDefaultHandler_Comment(QtObjectPtr ptr, char* ch){ + return static_cast(ptr)->comment(QString(ch)); +} + +int QXmlDefaultHandler_EndCDATA(QtObjectPtr ptr){ + return static_cast(ptr)->endCDATA(); +} + +int QXmlDefaultHandler_EndDTD(QtObjectPtr ptr){ + return static_cast(ptr)->endDTD(); +} + +int QXmlDefaultHandler_EndDocument(QtObjectPtr ptr){ + return static_cast(ptr)->endDocument(); +} + +int QXmlDefaultHandler_EndElement(QtObjectPtr ptr, char* namespaceURI, char* localName, char* qName){ + return static_cast(ptr)->endElement(QString(namespaceURI), QString(localName), QString(qName)); +} + +int QXmlDefaultHandler_EndEntity(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->endEntity(QString(name)); +} + +int QXmlDefaultHandler_EndPrefixMapping(QtObjectPtr ptr, char* prefix){ + return static_cast(ptr)->endPrefixMapping(QString(prefix)); +} + +int QXmlDefaultHandler_Error(QtObjectPtr ptr, QtObjectPtr exception){ + return static_cast(ptr)->error(*static_cast(exception)); +} + +char* QXmlDefaultHandler_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +int QXmlDefaultHandler_ExternalEntityDecl(QtObjectPtr ptr, char* name, char* publicId, char* systemId){ + return static_cast(ptr)->externalEntityDecl(QString(name), QString(publicId), QString(systemId)); +} + +int QXmlDefaultHandler_FatalError(QtObjectPtr ptr, QtObjectPtr exception){ + return static_cast(ptr)->fatalError(*static_cast(exception)); +} + +int QXmlDefaultHandler_IgnorableWhitespace(QtObjectPtr ptr, char* ch){ + return static_cast(ptr)->ignorableWhitespace(QString(ch)); +} + +int QXmlDefaultHandler_InternalEntityDecl(QtObjectPtr ptr, char* name, char* value){ + return static_cast(ptr)->internalEntityDecl(QString(name), QString(value)); +} + +int QXmlDefaultHandler_NotationDecl(QtObjectPtr ptr, char* name, char* publicId, char* systemId){ + return static_cast(ptr)->notationDecl(QString(name), QString(publicId), QString(systemId)); +} + +int QXmlDefaultHandler_ProcessingInstruction(QtObjectPtr ptr, char* target, char* data){ + return static_cast(ptr)->processingInstruction(QString(target), QString(data)); +} + +void QXmlDefaultHandler_SetDocumentLocator(QtObjectPtr ptr, QtObjectPtr locator){ + static_cast(ptr)->setDocumentLocator(static_cast(locator)); +} + +int QXmlDefaultHandler_SkippedEntity(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->skippedEntity(QString(name)); +} + +int QXmlDefaultHandler_StartCDATA(QtObjectPtr ptr){ + return static_cast(ptr)->startCDATA(); +} + +int QXmlDefaultHandler_StartDTD(QtObjectPtr ptr, char* name, char* publicId, char* systemId){ + return static_cast(ptr)->startDTD(QString(name), QString(publicId), QString(systemId)); +} + +int QXmlDefaultHandler_StartDocument(QtObjectPtr ptr){ + return static_cast(ptr)->startDocument(); +} + +int QXmlDefaultHandler_StartElement(QtObjectPtr ptr, char* namespaceURI, char* localName, char* qName, QtObjectPtr atts){ + return static_cast(ptr)->startElement(QString(namespaceURI), QString(localName), QString(qName), *static_cast(atts)); +} + +int QXmlDefaultHandler_StartEntity(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->startEntity(QString(name)); +} + +int QXmlDefaultHandler_StartPrefixMapping(QtObjectPtr ptr, char* prefix, char* uri){ + return static_cast(ptr)->startPrefixMapping(QString(prefix), QString(uri)); +} + +int QXmlDefaultHandler_UnparsedEntityDecl(QtObjectPtr ptr, char* name, char* publicId, char* systemId, char* notationName){ + return static_cast(ptr)->unparsedEntityDecl(QString(name), QString(publicId), QString(systemId), QString(notationName)); +} + +int QXmlDefaultHandler_Warning(QtObjectPtr ptr, QtObjectPtr exception){ + return static_cast(ptr)->warning(*static_cast(exception)); +} + diff --git a/xml/qxmldefaulthandler.go b/xml/qxmldefaulthandler.go new file mode 100755 index 00000000..25dddfe3 --- /dev/null +++ b/xml/qxmldefaulthandler.go @@ -0,0 +1,254 @@ +package xml + +//#include "qxmldefaulthandler.h" +import "C" +import ( + "unsafe" +) + +type QXmlDefaultHandler struct { + QXmlDTDHandler + QXmlErrorHandler + QXmlLexicalHandler + QXmlEntityResolver + QXmlContentHandler + QXmlDeclHandler +} + +type QXmlDefaultHandlerITF interface { + QXmlDTDHandlerITF + QXmlErrorHandlerITF + QXmlLexicalHandlerITF + QXmlEntityResolverITF + QXmlContentHandlerITF + QXmlDeclHandlerITF + QXmlDefaultHandlerPTR() *QXmlDefaultHandler +} + +func (p *QXmlDefaultHandler) Pointer() unsafe.Pointer { + return p.QXmlDTDHandlerPTR().Pointer() +} + +func (p *QXmlDefaultHandler) SetPointer(ptr unsafe.Pointer) { + p.QXmlDTDHandlerPTR().SetPointer(ptr) + p.QXmlErrorHandlerPTR().SetPointer(ptr) + p.QXmlLexicalHandlerPTR().SetPointer(ptr) + p.QXmlEntityResolverPTR().SetPointer(ptr) + p.QXmlContentHandlerPTR().SetPointer(ptr) + p.QXmlDeclHandlerPTR().SetPointer(ptr) +} + +func PointerFromQXmlDefaultHandler(ptr QXmlDefaultHandlerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlDefaultHandlerPTR().Pointer() + } + return nil +} + +func QXmlDefaultHandlerFromPointer(ptr unsafe.Pointer) *QXmlDefaultHandler { + var n = new(QXmlDefaultHandler) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlDefaultHandler) QXmlDefaultHandlerPTR() *QXmlDefaultHandler { + return ptr +} + +func NewQXmlDefaultHandler() *QXmlDefaultHandler { + return QXmlDefaultHandlerFromPointer(unsafe.Pointer(C.QXmlDefaultHandler_NewQXmlDefaultHandler())) +} + +func (ptr *QXmlDefaultHandler) DestroyQXmlDefaultHandler() { + if ptr.Pointer() != nil { + C.QXmlDefaultHandler_DestroyQXmlDefaultHandler(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QXmlDefaultHandler) AttributeDecl(eName string, aName string, ty string, valueDefault string, value string) bool { + if ptr.Pointer() != nil { + return C.QXmlDefaultHandler_AttributeDecl(C.QtObjectPtr(ptr.Pointer()), C.CString(eName), C.CString(aName), C.CString(ty), C.CString(valueDefault), C.CString(value)) != 0 + } + return false +} + +func (ptr *QXmlDefaultHandler) Characters(ch string) bool { + if ptr.Pointer() != nil { + return C.QXmlDefaultHandler_Characters(C.QtObjectPtr(ptr.Pointer()), C.CString(ch)) != 0 + } + return false +} + +func (ptr *QXmlDefaultHandler) Comment(ch string) bool { + if ptr.Pointer() != nil { + return C.QXmlDefaultHandler_Comment(C.QtObjectPtr(ptr.Pointer()), C.CString(ch)) != 0 + } + return false +} + +func (ptr *QXmlDefaultHandler) EndCDATA() bool { + if ptr.Pointer() != nil { + return C.QXmlDefaultHandler_EndCDATA(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlDefaultHandler) EndDTD() bool { + if ptr.Pointer() != nil { + return C.QXmlDefaultHandler_EndDTD(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlDefaultHandler) EndDocument() bool { + if ptr.Pointer() != nil { + return C.QXmlDefaultHandler_EndDocument(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlDefaultHandler) EndElement(namespaceURI string, localName string, qName string) bool { + if ptr.Pointer() != nil { + return C.QXmlDefaultHandler_EndElement(C.QtObjectPtr(ptr.Pointer()), C.CString(namespaceURI), C.CString(localName), C.CString(qName)) != 0 + } + return false +} + +func (ptr *QXmlDefaultHandler) EndEntity(name string) bool { + if ptr.Pointer() != nil { + return C.QXmlDefaultHandler_EndEntity(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) != 0 + } + return false +} + +func (ptr *QXmlDefaultHandler) EndPrefixMapping(prefix string) bool { + if ptr.Pointer() != nil { + return C.QXmlDefaultHandler_EndPrefixMapping(C.QtObjectPtr(ptr.Pointer()), C.CString(prefix)) != 0 + } + return false +} + +func (ptr *QXmlDefaultHandler) Error(exception QXmlParseExceptionITF) bool { + if ptr.Pointer() != nil { + return C.QXmlDefaultHandler_Error(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlParseException(exception))) != 0 + } + return false +} + +func (ptr *QXmlDefaultHandler) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlDefaultHandler_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QXmlDefaultHandler) ExternalEntityDecl(name string, publicId string, systemId string) bool { + if ptr.Pointer() != nil { + return C.QXmlDefaultHandler_ExternalEntityDecl(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.CString(publicId), C.CString(systemId)) != 0 + } + return false +} + +func (ptr *QXmlDefaultHandler) FatalError(exception QXmlParseExceptionITF) bool { + if ptr.Pointer() != nil { + return C.QXmlDefaultHandler_FatalError(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlParseException(exception))) != 0 + } + return false +} + +func (ptr *QXmlDefaultHandler) IgnorableWhitespace(ch string) bool { + if ptr.Pointer() != nil { + return C.QXmlDefaultHandler_IgnorableWhitespace(C.QtObjectPtr(ptr.Pointer()), C.CString(ch)) != 0 + } + return false +} + +func (ptr *QXmlDefaultHandler) InternalEntityDecl(name string, value string) bool { + if ptr.Pointer() != nil { + return C.QXmlDefaultHandler_InternalEntityDecl(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.CString(value)) != 0 + } + return false +} + +func (ptr *QXmlDefaultHandler) NotationDecl(name string, publicId string, systemId string) bool { + if ptr.Pointer() != nil { + return C.QXmlDefaultHandler_NotationDecl(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.CString(publicId), C.CString(systemId)) != 0 + } + return false +} + +func (ptr *QXmlDefaultHandler) ProcessingInstruction(target string, data string) bool { + if ptr.Pointer() != nil { + return C.QXmlDefaultHandler_ProcessingInstruction(C.QtObjectPtr(ptr.Pointer()), C.CString(target), C.CString(data)) != 0 + } + return false +} + +func (ptr *QXmlDefaultHandler) SetDocumentLocator(locator QXmlLocatorITF) { + if ptr.Pointer() != nil { + C.QXmlDefaultHandler_SetDocumentLocator(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlLocator(locator))) + } +} + +func (ptr *QXmlDefaultHandler) SkippedEntity(name string) bool { + if ptr.Pointer() != nil { + return C.QXmlDefaultHandler_SkippedEntity(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) != 0 + } + return false +} + +func (ptr *QXmlDefaultHandler) StartCDATA() bool { + if ptr.Pointer() != nil { + return C.QXmlDefaultHandler_StartCDATA(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlDefaultHandler) StartDTD(name string, publicId string, systemId string) bool { + if ptr.Pointer() != nil { + return C.QXmlDefaultHandler_StartDTD(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.CString(publicId), C.CString(systemId)) != 0 + } + return false +} + +func (ptr *QXmlDefaultHandler) StartDocument() bool { + if ptr.Pointer() != nil { + return C.QXmlDefaultHandler_StartDocument(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlDefaultHandler) StartElement(namespaceURI string, localName string, qName string, atts QXmlAttributesITF) bool { + if ptr.Pointer() != nil { + return C.QXmlDefaultHandler_StartElement(C.QtObjectPtr(ptr.Pointer()), C.CString(namespaceURI), C.CString(localName), C.CString(qName), C.QtObjectPtr(PointerFromQXmlAttributes(atts))) != 0 + } + return false +} + +func (ptr *QXmlDefaultHandler) StartEntity(name string) bool { + if ptr.Pointer() != nil { + return C.QXmlDefaultHandler_StartEntity(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) != 0 + } + return false +} + +func (ptr *QXmlDefaultHandler) StartPrefixMapping(prefix string, uri string) bool { + if ptr.Pointer() != nil { + return C.QXmlDefaultHandler_StartPrefixMapping(C.QtObjectPtr(ptr.Pointer()), C.CString(prefix), C.CString(uri)) != 0 + } + return false +} + +func (ptr *QXmlDefaultHandler) UnparsedEntityDecl(name string, publicId string, systemId string, notationName string) bool { + if ptr.Pointer() != nil { + return C.QXmlDefaultHandler_UnparsedEntityDecl(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.CString(publicId), C.CString(systemId), C.CString(notationName)) != 0 + } + return false +} + +func (ptr *QXmlDefaultHandler) Warning(exception QXmlParseExceptionITF) bool { + if ptr.Pointer() != nil { + return C.QXmlDefaultHandler_Warning(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlParseException(exception))) != 0 + } + return false +} diff --git a/xml/qxmldefaulthandler.h b/xml/qxmldefaulthandler.h new file mode 100755 index 00000000..148b901d --- /dev/null +++ b/xml/qxmldefaulthandler.h @@ -0,0 +1,38 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QXmlDefaultHandler_NewQXmlDefaultHandler(); +void QXmlDefaultHandler_DestroyQXmlDefaultHandler(QtObjectPtr ptr); +int QXmlDefaultHandler_AttributeDecl(QtObjectPtr ptr, char* eName, char* aName, char* ty, char* valueDefault, char* value); +int QXmlDefaultHandler_Characters(QtObjectPtr ptr, char* ch); +int QXmlDefaultHandler_Comment(QtObjectPtr ptr, char* ch); +int QXmlDefaultHandler_EndCDATA(QtObjectPtr ptr); +int QXmlDefaultHandler_EndDTD(QtObjectPtr ptr); +int QXmlDefaultHandler_EndDocument(QtObjectPtr ptr); +int QXmlDefaultHandler_EndElement(QtObjectPtr ptr, char* namespaceURI, char* localName, char* qName); +int QXmlDefaultHandler_EndEntity(QtObjectPtr ptr, char* name); +int QXmlDefaultHandler_EndPrefixMapping(QtObjectPtr ptr, char* prefix); +int QXmlDefaultHandler_Error(QtObjectPtr ptr, QtObjectPtr exception); +char* QXmlDefaultHandler_ErrorString(QtObjectPtr ptr); +int QXmlDefaultHandler_ExternalEntityDecl(QtObjectPtr ptr, char* name, char* publicId, char* systemId); +int QXmlDefaultHandler_FatalError(QtObjectPtr ptr, QtObjectPtr exception); +int QXmlDefaultHandler_IgnorableWhitespace(QtObjectPtr ptr, char* ch); +int QXmlDefaultHandler_InternalEntityDecl(QtObjectPtr ptr, char* name, char* value); +int QXmlDefaultHandler_NotationDecl(QtObjectPtr ptr, char* name, char* publicId, char* systemId); +int QXmlDefaultHandler_ProcessingInstruction(QtObjectPtr ptr, char* target, char* data); +void QXmlDefaultHandler_SetDocumentLocator(QtObjectPtr ptr, QtObjectPtr locator); +int QXmlDefaultHandler_SkippedEntity(QtObjectPtr ptr, char* name); +int QXmlDefaultHandler_StartCDATA(QtObjectPtr ptr); +int QXmlDefaultHandler_StartDTD(QtObjectPtr ptr, char* name, char* publicId, char* systemId); +int QXmlDefaultHandler_StartDocument(QtObjectPtr ptr); +int QXmlDefaultHandler_StartElement(QtObjectPtr ptr, char* namespaceURI, char* localName, char* qName, QtObjectPtr atts); +int QXmlDefaultHandler_StartEntity(QtObjectPtr ptr, char* name); +int QXmlDefaultHandler_StartPrefixMapping(QtObjectPtr ptr, char* prefix, char* uri); +int QXmlDefaultHandler_UnparsedEntityDecl(QtObjectPtr ptr, char* name, char* publicId, char* systemId, char* notationName); +int QXmlDefaultHandler_Warning(QtObjectPtr ptr, QtObjectPtr exception); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qxmldtdhandler.cpp b/xml/qxmldtdhandler.cpp new file mode 100755 index 00000000..7c4db195 --- /dev/null +++ b/xml/qxmldtdhandler.cpp @@ -0,0 +1,28 @@ +#include "qxmldtdhandler.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlDTDHandler: public QXmlDTDHandler { +public: +}; + +char* QXmlDTDHandler_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +int QXmlDTDHandler_NotationDecl(QtObjectPtr ptr, char* name, char* publicId, char* systemId){ + return static_cast(ptr)->notationDecl(QString(name), QString(publicId), QString(systemId)); +} + +int QXmlDTDHandler_UnparsedEntityDecl(QtObjectPtr ptr, char* name, char* publicId, char* systemId, char* notationName){ + return static_cast(ptr)->unparsedEntityDecl(QString(name), QString(publicId), QString(systemId), QString(notationName)); +} + +void QXmlDTDHandler_DestroyQXmlDTDHandler(QtObjectPtr ptr){ + static_cast(ptr)->~QXmlDTDHandler(); +} + diff --git a/xml/qxmldtdhandler.go b/xml/qxmldtdhandler.go new file mode 100755 index 00000000..72b26abb --- /dev/null +++ b/xml/qxmldtdhandler.go @@ -0,0 +1,67 @@ +package xml + +//#include "qxmldtdhandler.h" +import "C" +import ( + "unsafe" +) + +type QXmlDTDHandler struct { + ptr unsafe.Pointer +} + +type QXmlDTDHandlerITF interface { + QXmlDTDHandlerPTR() *QXmlDTDHandler +} + +func (p *QXmlDTDHandler) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QXmlDTDHandler) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQXmlDTDHandler(ptr QXmlDTDHandlerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlDTDHandlerPTR().Pointer() + } + return nil +} + +func QXmlDTDHandlerFromPointer(ptr unsafe.Pointer) *QXmlDTDHandler { + var n = new(QXmlDTDHandler) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlDTDHandler) QXmlDTDHandlerPTR() *QXmlDTDHandler { + return ptr +} + +func (ptr *QXmlDTDHandler) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlDTDHandler_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QXmlDTDHandler) NotationDecl(name string, publicId string, systemId string) bool { + if ptr.Pointer() != nil { + return C.QXmlDTDHandler_NotationDecl(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.CString(publicId), C.CString(systemId)) != 0 + } + return false +} + +func (ptr *QXmlDTDHandler) UnparsedEntityDecl(name string, publicId string, systemId string, notationName string) bool { + if ptr.Pointer() != nil { + return C.QXmlDTDHandler_UnparsedEntityDecl(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.CString(publicId), C.CString(systemId), C.CString(notationName)) != 0 + } + return false +} + +func (ptr *QXmlDTDHandler) DestroyQXmlDTDHandler() { + if ptr.Pointer() != nil { + C.QXmlDTDHandler_DestroyQXmlDTDHandler(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xml/qxmldtdhandler.h b/xml/qxmldtdhandler.h new file mode 100755 index 00000000..fee36a12 --- /dev/null +++ b/xml/qxmldtdhandler.h @@ -0,0 +1,13 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QXmlDTDHandler_ErrorString(QtObjectPtr ptr); +int QXmlDTDHandler_NotationDecl(QtObjectPtr ptr, char* name, char* publicId, char* systemId); +int QXmlDTDHandler_UnparsedEntityDecl(QtObjectPtr ptr, char* name, char* publicId, char* systemId, char* notationName); +void QXmlDTDHandler_DestroyQXmlDTDHandler(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qxmlentityresolver.cpp b/xml/qxmlentityresolver.cpp new file mode 100755 index 00000000..40270a98 --- /dev/null +++ b/xml/qxmlentityresolver.cpp @@ -0,0 +1,20 @@ +#include "qxmlentityresolver.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlEntityResolver: public QXmlEntityResolver { +public: +}; + +char* QXmlEntityResolver_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +void QXmlEntityResolver_DestroyQXmlEntityResolver(QtObjectPtr ptr){ + static_cast(ptr)->~QXmlEntityResolver(); +} + diff --git a/xml/qxmlentityresolver.go b/xml/qxmlentityresolver.go new file mode 100755 index 00000000..8534633c --- /dev/null +++ b/xml/qxmlentityresolver.go @@ -0,0 +1,53 @@ +package xml + +//#include "qxmlentityresolver.h" +import "C" +import ( + "unsafe" +) + +type QXmlEntityResolver struct { + ptr unsafe.Pointer +} + +type QXmlEntityResolverITF interface { + QXmlEntityResolverPTR() *QXmlEntityResolver +} + +func (p *QXmlEntityResolver) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QXmlEntityResolver) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQXmlEntityResolver(ptr QXmlEntityResolverITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlEntityResolverPTR().Pointer() + } + return nil +} + +func QXmlEntityResolverFromPointer(ptr unsafe.Pointer) *QXmlEntityResolver { + var n = new(QXmlEntityResolver) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlEntityResolver) QXmlEntityResolverPTR() *QXmlEntityResolver { + return ptr +} + +func (ptr *QXmlEntityResolver) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlEntityResolver_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QXmlEntityResolver) DestroyQXmlEntityResolver() { + if ptr.Pointer() != nil { + C.QXmlEntityResolver_DestroyQXmlEntityResolver(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xml/qxmlentityresolver.h b/xml/qxmlentityresolver.h new file mode 100755 index 00000000..91766764 --- /dev/null +++ b/xml/qxmlentityresolver.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QXmlEntityResolver_ErrorString(QtObjectPtr ptr); +void QXmlEntityResolver_DestroyQXmlEntityResolver(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qxmlerrorhandler.cpp b/xml/qxmlerrorhandler.cpp new file mode 100755 index 00000000..c8b300f8 --- /dev/null +++ b/xml/qxmlerrorhandler.cpp @@ -0,0 +1,33 @@ +#include "qxmlerrorhandler.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlErrorHandler: public QXmlErrorHandler { +public: +}; + +int QXmlErrorHandler_Error(QtObjectPtr ptr, QtObjectPtr exception){ + return static_cast(ptr)->error(*static_cast(exception)); +} + +char* QXmlErrorHandler_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +int QXmlErrorHandler_FatalError(QtObjectPtr ptr, QtObjectPtr exception){ + return static_cast(ptr)->fatalError(*static_cast(exception)); +} + +int QXmlErrorHandler_Warning(QtObjectPtr ptr, QtObjectPtr exception){ + return static_cast(ptr)->warning(*static_cast(exception)); +} + +void QXmlErrorHandler_DestroyQXmlErrorHandler(QtObjectPtr ptr){ + static_cast(ptr)->~QXmlErrorHandler(); +} + diff --git a/xml/qxmlerrorhandler.go b/xml/qxmlerrorhandler.go new file mode 100755 index 00000000..4f22dd2d --- /dev/null +++ b/xml/qxmlerrorhandler.go @@ -0,0 +1,74 @@ +package xml + +//#include "qxmlerrorhandler.h" +import "C" +import ( + "unsafe" +) + +type QXmlErrorHandler struct { + ptr unsafe.Pointer +} + +type QXmlErrorHandlerITF interface { + QXmlErrorHandlerPTR() *QXmlErrorHandler +} + +func (p *QXmlErrorHandler) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QXmlErrorHandler) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQXmlErrorHandler(ptr QXmlErrorHandlerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlErrorHandlerPTR().Pointer() + } + return nil +} + +func QXmlErrorHandlerFromPointer(ptr unsafe.Pointer) *QXmlErrorHandler { + var n = new(QXmlErrorHandler) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlErrorHandler) QXmlErrorHandlerPTR() *QXmlErrorHandler { + return ptr +} + +func (ptr *QXmlErrorHandler) Error(exception QXmlParseExceptionITF) bool { + if ptr.Pointer() != nil { + return C.QXmlErrorHandler_Error(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlParseException(exception))) != 0 + } + return false +} + +func (ptr *QXmlErrorHandler) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlErrorHandler_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QXmlErrorHandler) FatalError(exception QXmlParseExceptionITF) bool { + if ptr.Pointer() != nil { + return C.QXmlErrorHandler_FatalError(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlParseException(exception))) != 0 + } + return false +} + +func (ptr *QXmlErrorHandler) Warning(exception QXmlParseExceptionITF) bool { + if ptr.Pointer() != nil { + return C.QXmlErrorHandler_Warning(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlParseException(exception))) != 0 + } + return false +} + +func (ptr *QXmlErrorHandler) DestroyQXmlErrorHandler() { + if ptr.Pointer() != nil { + C.QXmlErrorHandler_DestroyQXmlErrorHandler(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xml/qxmlerrorhandler.h b/xml/qxmlerrorhandler.h new file mode 100755 index 00000000..38517687 --- /dev/null +++ b/xml/qxmlerrorhandler.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QXmlErrorHandler_Error(QtObjectPtr ptr, QtObjectPtr exception); +char* QXmlErrorHandler_ErrorString(QtObjectPtr ptr); +int QXmlErrorHandler_FatalError(QtObjectPtr ptr, QtObjectPtr exception); +int QXmlErrorHandler_Warning(QtObjectPtr ptr, QtObjectPtr exception); +void QXmlErrorHandler_DestroyQXmlErrorHandler(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qxmlinputsource.cpp b/xml/qxmlinputsource.cpp new file mode 100755 index 00000000..48cea3de --- /dev/null +++ b/xml/qxmlinputsource.cpp @@ -0,0 +1,46 @@ +#include "qxmlinputsource.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlInputSource: public QXmlInputSource { +public: +}; + +QtObjectPtr QXmlInputSource_NewQXmlInputSource(){ + return new QXmlInputSource(); +} + +QtObjectPtr QXmlInputSource_NewQXmlInputSource2(QtObjectPtr dev){ + return new QXmlInputSource(static_cast(dev)); +} + +char* QXmlInputSource_Data(QtObjectPtr ptr){ + return static_cast(ptr)->data().toUtf8().data(); +} + +void QXmlInputSource_FetchData(QtObjectPtr ptr){ + static_cast(ptr)->fetchData(); +} + +void QXmlInputSource_Reset(QtObjectPtr ptr){ + static_cast(ptr)->reset(); +} + +void QXmlInputSource_SetData2(QtObjectPtr ptr, QtObjectPtr dat){ + static_cast(ptr)->setData(*static_cast(dat)); +} + +void QXmlInputSource_SetData(QtObjectPtr ptr, char* dat){ + static_cast(ptr)->setData(QString(dat)); +} + +void QXmlInputSource_DestroyQXmlInputSource(QtObjectPtr ptr){ + static_cast(ptr)->~QXmlInputSource(); +} + diff --git a/xml/qxmlinputsource.go b/xml/qxmlinputsource.go new file mode 100755 index 00000000..1909a911 --- /dev/null +++ b/xml/qxmlinputsource.go @@ -0,0 +1,86 @@ +package xml + +//#include "qxmlinputsource.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QXmlInputSource struct { + ptr unsafe.Pointer +} + +type QXmlInputSourceITF interface { + QXmlInputSourcePTR() *QXmlInputSource +} + +func (p *QXmlInputSource) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QXmlInputSource) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQXmlInputSource(ptr QXmlInputSourceITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlInputSourcePTR().Pointer() + } + return nil +} + +func QXmlInputSourceFromPointer(ptr unsafe.Pointer) *QXmlInputSource { + var n = new(QXmlInputSource) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlInputSource) QXmlInputSourcePTR() *QXmlInputSource { + return ptr +} + +func NewQXmlInputSource() *QXmlInputSource { + return QXmlInputSourceFromPointer(unsafe.Pointer(C.QXmlInputSource_NewQXmlInputSource())) +} + +func NewQXmlInputSource2(dev core.QIODeviceITF) *QXmlInputSource { + return QXmlInputSourceFromPointer(unsafe.Pointer(C.QXmlInputSource_NewQXmlInputSource2(C.QtObjectPtr(core.PointerFromQIODevice(dev))))) +} + +func (ptr *QXmlInputSource) Data() string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlInputSource_Data(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QXmlInputSource) FetchData() { + if ptr.Pointer() != nil { + C.QXmlInputSource_FetchData(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QXmlInputSource) Reset() { + if ptr.Pointer() != nil { + C.QXmlInputSource_Reset(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QXmlInputSource) SetData2(dat core.QByteArrayITF) { + if ptr.Pointer() != nil { + C.QXmlInputSource_SetData2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(dat))) + } +} + +func (ptr *QXmlInputSource) SetData(dat string) { + if ptr.Pointer() != nil { + C.QXmlInputSource_SetData(C.QtObjectPtr(ptr.Pointer()), C.CString(dat)) + } +} + +func (ptr *QXmlInputSource) DestroyQXmlInputSource() { + if ptr.Pointer() != nil { + C.QXmlInputSource_DestroyQXmlInputSource(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xml/qxmlinputsource.h b/xml/qxmlinputsource.h new file mode 100755 index 00000000..edbd3309 --- /dev/null +++ b/xml/qxmlinputsource.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QXmlInputSource_NewQXmlInputSource(); +QtObjectPtr QXmlInputSource_NewQXmlInputSource2(QtObjectPtr dev); +char* QXmlInputSource_Data(QtObjectPtr ptr); +void QXmlInputSource_FetchData(QtObjectPtr ptr); +void QXmlInputSource_Reset(QtObjectPtr ptr); +void QXmlInputSource_SetData2(QtObjectPtr ptr, QtObjectPtr dat); +void QXmlInputSource_SetData(QtObjectPtr ptr, char* dat); +void QXmlInputSource_DestroyQXmlInputSource(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qxmllexicalhandler.cpp b/xml/qxmllexicalhandler.cpp new file mode 100755 index 00000000..d185d14e --- /dev/null +++ b/xml/qxmllexicalhandler.cpp @@ -0,0 +1,48 @@ +#include "qxmllexicalhandler.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlLexicalHandler: public QXmlLexicalHandler { +public: +}; + +int QXmlLexicalHandler_Comment(QtObjectPtr ptr, char* ch){ + return static_cast(ptr)->comment(QString(ch)); +} + +int QXmlLexicalHandler_EndCDATA(QtObjectPtr ptr){ + return static_cast(ptr)->endCDATA(); +} + +int QXmlLexicalHandler_EndDTD(QtObjectPtr ptr){ + return static_cast(ptr)->endDTD(); +} + +int QXmlLexicalHandler_EndEntity(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->endEntity(QString(name)); +} + +char* QXmlLexicalHandler_ErrorString(QtObjectPtr ptr){ + return static_cast(ptr)->errorString().toUtf8().data(); +} + +int QXmlLexicalHandler_StartCDATA(QtObjectPtr ptr){ + return static_cast(ptr)->startCDATA(); +} + +int QXmlLexicalHandler_StartDTD(QtObjectPtr ptr, char* name, char* publicId, char* systemId){ + return static_cast(ptr)->startDTD(QString(name), QString(publicId), QString(systemId)); +} + +int QXmlLexicalHandler_StartEntity(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->startEntity(QString(name)); +} + +void QXmlLexicalHandler_DestroyQXmlLexicalHandler(QtObjectPtr ptr){ + static_cast(ptr)->~QXmlLexicalHandler(); +} + diff --git a/xml/qxmllexicalhandler.go b/xml/qxmllexicalhandler.go new file mode 100755 index 00000000..b20ed537 --- /dev/null +++ b/xml/qxmllexicalhandler.go @@ -0,0 +1,102 @@ +package xml + +//#include "qxmllexicalhandler.h" +import "C" +import ( + "unsafe" +) + +type QXmlLexicalHandler struct { + ptr unsafe.Pointer +} + +type QXmlLexicalHandlerITF interface { + QXmlLexicalHandlerPTR() *QXmlLexicalHandler +} + +func (p *QXmlLexicalHandler) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QXmlLexicalHandler) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQXmlLexicalHandler(ptr QXmlLexicalHandlerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlLexicalHandlerPTR().Pointer() + } + return nil +} + +func QXmlLexicalHandlerFromPointer(ptr unsafe.Pointer) *QXmlLexicalHandler { + var n = new(QXmlLexicalHandler) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlLexicalHandler) QXmlLexicalHandlerPTR() *QXmlLexicalHandler { + return ptr +} + +func (ptr *QXmlLexicalHandler) Comment(ch string) bool { + if ptr.Pointer() != nil { + return C.QXmlLexicalHandler_Comment(C.QtObjectPtr(ptr.Pointer()), C.CString(ch)) != 0 + } + return false +} + +func (ptr *QXmlLexicalHandler) EndCDATA() bool { + if ptr.Pointer() != nil { + return C.QXmlLexicalHandler_EndCDATA(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlLexicalHandler) EndDTD() bool { + if ptr.Pointer() != nil { + return C.QXmlLexicalHandler_EndDTD(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlLexicalHandler) EndEntity(name string) bool { + if ptr.Pointer() != nil { + return C.QXmlLexicalHandler_EndEntity(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) != 0 + } + return false +} + +func (ptr *QXmlLexicalHandler) ErrorString() string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlLexicalHandler_ErrorString(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QXmlLexicalHandler) StartCDATA() bool { + if ptr.Pointer() != nil { + return C.QXmlLexicalHandler_StartCDATA(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlLexicalHandler) StartDTD(name string, publicId string, systemId string) bool { + if ptr.Pointer() != nil { + return C.QXmlLexicalHandler_StartDTD(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.CString(publicId), C.CString(systemId)) != 0 + } + return false +} + +func (ptr *QXmlLexicalHandler) StartEntity(name string) bool { + if ptr.Pointer() != nil { + return C.QXmlLexicalHandler_StartEntity(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) != 0 + } + return false +} + +func (ptr *QXmlLexicalHandler) DestroyQXmlLexicalHandler() { + if ptr.Pointer() != nil { + C.QXmlLexicalHandler_DestroyQXmlLexicalHandler(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xml/qxmllexicalhandler.h b/xml/qxmllexicalhandler.h new file mode 100755 index 00000000..01a3ce81 --- /dev/null +++ b/xml/qxmllexicalhandler.h @@ -0,0 +1,18 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QXmlLexicalHandler_Comment(QtObjectPtr ptr, char* ch); +int QXmlLexicalHandler_EndCDATA(QtObjectPtr ptr); +int QXmlLexicalHandler_EndDTD(QtObjectPtr ptr); +int QXmlLexicalHandler_EndEntity(QtObjectPtr ptr, char* name); +char* QXmlLexicalHandler_ErrorString(QtObjectPtr ptr); +int QXmlLexicalHandler_StartCDATA(QtObjectPtr ptr); +int QXmlLexicalHandler_StartDTD(QtObjectPtr ptr, char* name, char* publicId, char* systemId); +int QXmlLexicalHandler_StartEntity(QtObjectPtr ptr, char* name); +void QXmlLexicalHandler_DestroyQXmlLexicalHandler(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qxmllocator.cpp b/xml/qxmllocator.cpp new file mode 100755 index 00000000..d034713b --- /dev/null +++ b/xml/qxmllocator.cpp @@ -0,0 +1,24 @@ +#include "qxmllocator.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlLocator: public QXmlLocator { +public: +}; + +int QXmlLocator_ColumnNumber(QtObjectPtr ptr){ + return static_cast(ptr)->columnNumber(); +} + +int QXmlLocator_LineNumber(QtObjectPtr ptr){ + return static_cast(ptr)->lineNumber(); +} + +void QXmlLocator_DestroyQXmlLocator(QtObjectPtr ptr){ + static_cast(ptr)->~QXmlLocator(); +} + diff --git a/xml/qxmllocator.go b/xml/qxmllocator.go new file mode 100755 index 00000000..27342a0e --- /dev/null +++ b/xml/qxmllocator.go @@ -0,0 +1,60 @@ +package xml + +//#include "qxmllocator.h" +import "C" +import ( + "unsafe" +) + +type QXmlLocator struct { + ptr unsafe.Pointer +} + +type QXmlLocatorITF interface { + QXmlLocatorPTR() *QXmlLocator +} + +func (p *QXmlLocator) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QXmlLocator) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQXmlLocator(ptr QXmlLocatorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlLocatorPTR().Pointer() + } + return nil +} + +func QXmlLocatorFromPointer(ptr unsafe.Pointer) *QXmlLocator { + var n = new(QXmlLocator) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlLocator) QXmlLocatorPTR() *QXmlLocator { + return ptr +} + +func (ptr *QXmlLocator) ColumnNumber() int { + if ptr.Pointer() != nil { + return int(C.QXmlLocator_ColumnNumber(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QXmlLocator) LineNumber() int { + if ptr.Pointer() != nil { + return int(C.QXmlLocator_LineNumber(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QXmlLocator) DestroyQXmlLocator() { + if ptr.Pointer() != nil { + C.QXmlLocator_DestroyQXmlLocator(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xml/qxmllocator.h b/xml/qxmllocator.h new file mode 100755 index 00000000..444b6654 --- /dev/null +++ b/xml/qxmllocator.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +int QXmlLocator_ColumnNumber(QtObjectPtr ptr); +int QXmlLocator_LineNumber(QtObjectPtr ptr); +void QXmlLocator_DestroyQXmlLocator(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qxmlnamespacesupport.cpp b/xml/qxmlnamespacesupport.cpp new file mode 100755 index 00000000..bcbc561b --- /dev/null +++ b/xml/qxmlnamespacesupport.cpp @@ -0,0 +1,52 @@ +#include "qxmlnamespacesupport.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlNamespaceSupport: public QXmlNamespaceSupport { +public: +}; + +QtObjectPtr QXmlNamespaceSupport_NewQXmlNamespaceSupport(){ + return new QXmlNamespaceSupport(); +} + +void QXmlNamespaceSupport_PopContext(QtObjectPtr ptr){ + static_cast(ptr)->popContext(); +} + +char* QXmlNamespaceSupport_Prefix(QtObjectPtr ptr, char* uri){ + return static_cast(ptr)->prefix(QString(uri)).toUtf8().data(); +} + +char* QXmlNamespaceSupport_Prefixes(QtObjectPtr ptr){ + return static_cast(ptr)->prefixes().join("|").toUtf8().data(); +} + +char* QXmlNamespaceSupport_Prefixes2(QtObjectPtr ptr, char* uri){ + return static_cast(ptr)->prefixes(QString(uri)).join("|").toUtf8().data(); +} + +void QXmlNamespaceSupport_PushContext(QtObjectPtr ptr){ + static_cast(ptr)->pushContext(); +} + +void QXmlNamespaceSupport_Reset(QtObjectPtr ptr){ + static_cast(ptr)->reset(); +} + +void QXmlNamespaceSupport_SetPrefix(QtObjectPtr ptr, char* pre, char* uri){ + static_cast(ptr)->setPrefix(QString(pre), QString(uri)); +} + +char* QXmlNamespaceSupport_Uri(QtObjectPtr ptr, char* prefix){ + return static_cast(ptr)->uri(QString(prefix)).toUtf8().data(); +} + +void QXmlNamespaceSupport_DestroyQXmlNamespaceSupport(QtObjectPtr ptr){ + static_cast(ptr)->~QXmlNamespaceSupport(); +} + diff --git a/xml/qxmlnamespacesupport.go b/xml/qxmlnamespacesupport.go new file mode 100755 index 00000000..64207614 --- /dev/null +++ b/xml/qxmlnamespacesupport.go @@ -0,0 +1,103 @@ +package xml + +//#include "qxmlnamespacesupport.h" +import "C" +import ( + "strings" + "unsafe" +) + +type QXmlNamespaceSupport struct { + ptr unsafe.Pointer +} + +type QXmlNamespaceSupportITF interface { + QXmlNamespaceSupportPTR() *QXmlNamespaceSupport +} + +func (p *QXmlNamespaceSupport) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QXmlNamespaceSupport) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQXmlNamespaceSupport(ptr QXmlNamespaceSupportITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlNamespaceSupportPTR().Pointer() + } + return nil +} + +func QXmlNamespaceSupportFromPointer(ptr unsafe.Pointer) *QXmlNamespaceSupport { + var n = new(QXmlNamespaceSupport) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlNamespaceSupport) QXmlNamespaceSupportPTR() *QXmlNamespaceSupport { + return ptr +} + +func NewQXmlNamespaceSupport() *QXmlNamespaceSupport { + return QXmlNamespaceSupportFromPointer(unsafe.Pointer(C.QXmlNamespaceSupport_NewQXmlNamespaceSupport())) +} + +func (ptr *QXmlNamespaceSupport) PopContext() { + if ptr.Pointer() != nil { + C.QXmlNamespaceSupport_PopContext(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QXmlNamespaceSupport) Prefix(uri string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlNamespaceSupport_Prefix(C.QtObjectPtr(ptr.Pointer()), C.CString(uri))) + } + return "" +} + +func (ptr *QXmlNamespaceSupport) Prefixes() []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QXmlNamespaceSupport_Prefixes(C.QtObjectPtr(ptr.Pointer()))), "|") + } + return make([]string, 0) +} + +func (ptr *QXmlNamespaceSupport) Prefixes2(uri string) []string { + if ptr.Pointer() != nil { + return strings.Split(C.GoString(C.QXmlNamespaceSupport_Prefixes2(C.QtObjectPtr(ptr.Pointer()), C.CString(uri))), "|") + } + return make([]string, 0) +} + +func (ptr *QXmlNamespaceSupport) PushContext() { + if ptr.Pointer() != nil { + C.QXmlNamespaceSupport_PushContext(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QXmlNamespaceSupport) Reset() { + if ptr.Pointer() != nil { + C.QXmlNamespaceSupport_Reset(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QXmlNamespaceSupport) SetPrefix(pre string, uri string) { + if ptr.Pointer() != nil { + C.QXmlNamespaceSupport_SetPrefix(C.QtObjectPtr(ptr.Pointer()), C.CString(pre), C.CString(uri)) + } +} + +func (ptr *QXmlNamespaceSupport) Uri(prefix string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlNamespaceSupport_Uri(C.QtObjectPtr(ptr.Pointer()), C.CString(prefix))) + } + return "" +} + +func (ptr *QXmlNamespaceSupport) DestroyQXmlNamespaceSupport() { + if ptr.Pointer() != nil { + C.QXmlNamespaceSupport_DestroyQXmlNamespaceSupport(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xml/qxmlnamespacesupport.h b/xml/qxmlnamespacesupport.h new file mode 100755 index 00000000..d58a5c98 --- /dev/null +++ b/xml/qxmlnamespacesupport.h @@ -0,0 +1,19 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QXmlNamespaceSupport_NewQXmlNamespaceSupport(); +void QXmlNamespaceSupport_PopContext(QtObjectPtr ptr); +char* QXmlNamespaceSupport_Prefix(QtObjectPtr ptr, char* uri); +char* QXmlNamespaceSupport_Prefixes(QtObjectPtr ptr); +char* QXmlNamespaceSupport_Prefixes2(QtObjectPtr ptr, char* uri); +void QXmlNamespaceSupport_PushContext(QtObjectPtr ptr); +void QXmlNamespaceSupport_Reset(QtObjectPtr ptr); +void QXmlNamespaceSupport_SetPrefix(QtObjectPtr ptr, char* pre, char* uri); +char* QXmlNamespaceSupport_Uri(QtObjectPtr ptr, char* prefix); +void QXmlNamespaceSupport_DestroyQXmlNamespaceSupport(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qxmlparseexception.cpp b/xml/qxmlparseexception.cpp new file mode 100755 index 00000000..4037f2c1 --- /dev/null +++ b/xml/qxmlparseexception.cpp @@ -0,0 +1,44 @@ +#include "qxmlparseexception.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlParseException: public QXmlParseException { +public: +}; + +QtObjectPtr QXmlParseException_NewQXmlParseException(char* name, int c, int l, char* p, char* s){ + return new QXmlParseException(QString(name), c, l, QString(p), QString(s)); +} + +QtObjectPtr QXmlParseException_NewQXmlParseException2(QtObjectPtr other){ + return new QXmlParseException(*static_cast(other)); +} + +int QXmlParseException_ColumnNumber(QtObjectPtr ptr){ + return static_cast(ptr)->columnNumber(); +} + +int QXmlParseException_LineNumber(QtObjectPtr ptr){ + return static_cast(ptr)->lineNumber(); +} + +char* QXmlParseException_Message(QtObjectPtr ptr){ + return static_cast(ptr)->message().toUtf8().data(); +} + +char* QXmlParseException_PublicId(QtObjectPtr ptr){ + return static_cast(ptr)->publicId().toUtf8().data(); +} + +char* QXmlParseException_SystemId(QtObjectPtr ptr){ + return static_cast(ptr)->systemId().toUtf8().data(); +} + +void QXmlParseException_DestroyQXmlParseException(QtObjectPtr ptr){ + static_cast(ptr)->~QXmlParseException(); +} + diff --git a/xml/qxmlparseexception.go b/xml/qxmlparseexception.go new file mode 100755 index 00000000..333bfa3f --- /dev/null +++ b/xml/qxmlparseexception.go @@ -0,0 +1,89 @@ +package xml + +//#include "qxmlparseexception.h" +import "C" +import ( + "unsafe" +) + +type QXmlParseException struct { + ptr unsafe.Pointer +} + +type QXmlParseExceptionITF interface { + QXmlParseExceptionPTR() *QXmlParseException +} + +func (p *QXmlParseException) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QXmlParseException) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQXmlParseException(ptr QXmlParseExceptionITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlParseExceptionPTR().Pointer() + } + return nil +} + +func QXmlParseExceptionFromPointer(ptr unsafe.Pointer) *QXmlParseException { + var n = new(QXmlParseException) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlParseException) QXmlParseExceptionPTR() *QXmlParseException { + return ptr +} + +func NewQXmlParseException(name string, c int, l int, p string, s string) *QXmlParseException { + return QXmlParseExceptionFromPointer(unsafe.Pointer(C.QXmlParseException_NewQXmlParseException(C.CString(name), C.int(c), C.int(l), C.CString(p), C.CString(s)))) +} + +func NewQXmlParseException2(other QXmlParseExceptionITF) *QXmlParseException { + return QXmlParseExceptionFromPointer(unsafe.Pointer(C.QXmlParseException_NewQXmlParseException2(C.QtObjectPtr(PointerFromQXmlParseException(other))))) +} + +func (ptr *QXmlParseException) ColumnNumber() int { + if ptr.Pointer() != nil { + return int(C.QXmlParseException_ColumnNumber(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QXmlParseException) LineNumber() int { + if ptr.Pointer() != nil { + return int(C.QXmlParseException_LineNumber(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QXmlParseException) Message() string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlParseException_Message(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QXmlParseException) PublicId() string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlParseException_PublicId(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QXmlParseException) SystemId() string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlParseException_SystemId(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QXmlParseException) DestroyQXmlParseException() { + if ptr.Pointer() != nil { + C.QXmlParseException_DestroyQXmlParseException(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xml/qxmlparseexception.h b/xml/qxmlparseexception.h new file mode 100755 index 00000000..1ed4d6e5 --- /dev/null +++ b/xml/qxmlparseexception.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QXmlParseException_NewQXmlParseException(char* name, int c, int l, char* p, char* s); +QtObjectPtr QXmlParseException_NewQXmlParseException2(QtObjectPtr other); +int QXmlParseException_ColumnNumber(QtObjectPtr ptr); +int QXmlParseException_LineNumber(QtObjectPtr ptr); +char* QXmlParseException_Message(QtObjectPtr ptr); +char* QXmlParseException_PublicId(QtObjectPtr ptr); +char* QXmlParseException_SystemId(QtObjectPtr ptr); +void QXmlParseException_DestroyQXmlParseException(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qxmlreader.cpp b/xml/qxmlreader.cpp new file mode 100755 index 00000000..3dcb5203 --- /dev/null +++ b/xml/qxmlreader.cpp @@ -0,0 +1,95 @@ +#include "qxmlreader.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlReader: public QXmlReader { +public: +}; + +QtObjectPtr QXmlReader_DTDHandler(QtObjectPtr ptr){ + return static_cast(ptr)->DTDHandler(); +} + +QtObjectPtr QXmlReader_ContentHandler(QtObjectPtr ptr){ + return static_cast(ptr)->contentHandler(); +} + +QtObjectPtr QXmlReader_DeclHandler(QtObjectPtr ptr){ + return static_cast(ptr)->declHandler(); +} + +QtObjectPtr QXmlReader_EntityResolver(QtObjectPtr ptr){ + return static_cast(ptr)->entityResolver(); +} + +QtObjectPtr QXmlReader_ErrorHandler(QtObjectPtr ptr){ + return static_cast(ptr)->errorHandler(); +} + +int QXmlReader_Feature(QtObjectPtr ptr, char* name, int ok){ + return static_cast(ptr)->feature(QString(name), NULL); +} + +int QXmlReader_HasFeature(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->hasFeature(QString(name)); +} + +int QXmlReader_HasProperty(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->hasProperty(QString(name)); +} + +QtObjectPtr QXmlReader_LexicalHandler(QtObjectPtr ptr){ + return static_cast(ptr)->lexicalHandler(); +} + +int QXmlReader_Parse(QtObjectPtr ptr, QtObjectPtr input){ + return static_cast(ptr)->parse(static_cast(input)); +} + +void QXmlReader_Property(QtObjectPtr ptr, char* name, int ok){ + static_cast(ptr)->property(QString(name), NULL); +} + +void QXmlReader_SetContentHandler(QtObjectPtr ptr, QtObjectPtr handler){ + static_cast(ptr)->setContentHandler(static_cast(handler)); +} + +void QXmlReader_SetDTDHandler(QtObjectPtr ptr, QtObjectPtr handler){ + static_cast(ptr)->setDTDHandler(static_cast(handler)); +} + +void QXmlReader_SetDeclHandler(QtObjectPtr ptr, QtObjectPtr handler){ + static_cast(ptr)->setDeclHandler(static_cast(handler)); +} + +void QXmlReader_SetEntityResolver(QtObjectPtr ptr, QtObjectPtr handler){ + static_cast(ptr)->setEntityResolver(static_cast(handler)); +} + +void QXmlReader_SetErrorHandler(QtObjectPtr ptr, QtObjectPtr handler){ + static_cast(ptr)->setErrorHandler(static_cast(handler)); +} + +void QXmlReader_SetFeature(QtObjectPtr ptr, char* name, int value){ + static_cast(ptr)->setFeature(QString(name), value != 0); +} + +void QXmlReader_SetLexicalHandler(QtObjectPtr ptr, QtObjectPtr handler){ + static_cast(ptr)->setLexicalHandler(static_cast(handler)); +} + +void QXmlReader_DestroyQXmlReader(QtObjectPtr ptr){ + static_cast(ptr)->~QXmlReader(); +} + diff --git a/xml/qxmlreader.go b/xml/qxmlreader.go new file mode 100755 index 00000000..50bf5de4 --- /dev/null +++ b/xml/qxmlreader.go @@ -0,0 +1,165 @@ +package xml + +//#include "qxmlreader.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QXmlReader struct { + ptr unsafe.Pointer +} + +type QXmlReaderITF interface { + QXmlReaderPTR() *QXmlReader +} + +func (p *QXmlReader) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QXmlReader) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQXmlReader(ptr QXmlReaderITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlReaderPTR().Pointer() + } + return nil +} + +func QXmlReaderFromPointer(ptr unsafe.Pointer) *QXmlReader { + var n = new(QXmlReader) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlReader) QXmlReaderPTR() *QXmlReader { + return ptr +} + +func (ptr *QXmlReader) DTDHandler() *QXmlDTDHandler { + if ptr.Pointer() != nil { + return QXmlDTDHandlerFromPointer(unsafe.Pointer(C.QXmlReader_DTDHandler(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QXmlReader) ContentHandler() *QXmlContentHandler { + if ptr.Pointer() != nil { + return QXmlContentHandlerFromPointer(unsafe.Pointer(C.QXmlReader_ContentHandler(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QXmlReader) DeclHandler() *QXmlDeclHandler { + if ptr.Pointer() != nil { + return QXmlDeclHandlerFromPointer(unsafe.Pointer(C.QXmlReader_DeclHandler(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QXmlReader) EntityResolver() *QXmlEntityResolver { + if ptr.Pointer() != nil { + return QXmlEntityResolverFromPointer(unsafe.Pointer(C.QXmlReader_EntityResolver(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QXmlReader) ErrorHandler() *QXmlErrorHandler { + if ptr.Pointer() != nil { + return QXmlErrorHandlerFromPointer(unsafe.Pointer(C.QXmlReader_ErrorHandler(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QXmlReader) Feature(name string, ok bool) bool { + if ptr.Pointer() != nil { + return C.QXmlReader_Feature(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.int(qt.GoBoolToInt(ok))) != 0 + } + return false +} + +func (ptr *QXmlReader) HasFeature(name string) bool { + if ptr.Pointer() != nil { + return C.QXmlReader_HasFeature(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) != 0 + } + return false +} + +func (ptr *QXmlReader) HasProperty(name string) bool { + if ptr.Pointer() != nil { + return C.QXmlReader_HasProperty(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) != 0 + } + return false +} + +func (ptr *QXmlReader) LexicalHandler() *QXmlLexicalHandler { + if ptr.Pointer() != nil { + return QXmlLexicalHandlerFromPointer(unsafe.Pointer(C.QXmlReader_LexicalHandler(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QXmlReader) Parse(input QXmlInputSourceITF) bool { + if ptr.Pointer() != nil { + return C.QXmlReader_Parse(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlInputSource(input))) != 0 + } + return false +} + +func (ptr *QXmlReader) Property(name string, ok bool) { + if ptr.Pointer() != nil { + C.QXmlReader_Property(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.int(qt.GoBoolToInt(ok))) + } +} + +func (ptr *QXmlReader) SetContentHandler(handler QXmlContentHandlerITF) { + if ptr.Pointer() != nil { + C.QXmlReader_SetContentHandler(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlContentHandler(handler))) + } +} + +func (ptr *QXmlReader) SetDTDHandler(handler QXmlDTDHandlerITF) { + if ptr.Pointer() != nil { + C.QXmlReader_SetDTDHandler(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlDTDHandler(handler))) + } +} + +func (ptr *QXmlReader) SetDeclHandler(handler QXmlDeclHandlerITF) { + if ptr.Pointer() != nil { + C.QXmlReader_SetDeclHandler(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlDeclHandler(handler))) + } +} + +func (ptr *QXmlReader) SetEntityResolver(handler QXmlEntityResolverITF) { + if ptr.Pointer() != nil { + C.QXmlReader_SetEntityResolver(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlEntityResolver(handler))) + } +} + +func (ptr *QXmlReader) SetErrorHandler(handler QXmlErrorHandlerITF) { + if ptr.Pointer() != nil { + C.QXmlReader_SetErrorHandler(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlErrorHandler(handler))) + } +} + +func (ptr *QXmlReader) SetFeature(name string, value bool) { + if ptr.Pointer() != nil { + C.QXmlReader_SetFeature(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.int(qt.GoBoolToInt(value))) + } +} + +func (ptr *QXmlReader) SetLexicalHandler(handler QXmlLexicalHandlerITF) { + if ptr.Pointer() != nil { + C.QXmlReader_SetLexicalHandler(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlLexicalHandler(handler))) + } +} + +func (ptr *QXmlReader) DestroyQXmlReader() { + if ptr.Pointer() != nil { + C.QXmlReader_DestroyQXmlReader(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xml/qxmlreader.h b/xml/qxmlreader.h new file mode 100755 index 00000000..84580a21 --- /dev/null +++ b/xml/qxmlreader.h @@ -0,0 +1,28 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QXmlReader_DTDHandler(QtObjectPtr ptr); +QtObjectPtr QXmlReader_ContentHandler(QtObjectPtr ptr); +QtObjectPtr QXmlReader_DeclHandler(QtObjectPtr ptr); +QtObjectPtr QXmlReader_EntityResolver(QtObjectPtr ptr); +QtObjectPtr QXmlReader_ErrorHandler(QtObjectPtr ptr); +int QXmlReader_Feature(QtObjectPtr ptr, char* name, int ok); +int QXmlReader_HasFeature(QtObjectPtr ptr, char* name); +int QXmlReader_HasProperty(QtObjectPtr ptr, char* name); +QtObjectPtr QXmlReader_LexicalHandler(QtObjectPtr ptr); +int QXmlReader_Parse(QtObjectPtr ptr, QtObjectPtr input); +void QXmlReader_Property(QtObjectPtr ptr, char* name, int ok); +void QXmlReader_SetContentHandler(QtObjectPtr ptr, QtObjectPtr handler); +void QXmlReader_SetDTDHandler(QtObjectPtr ptr, QtObjectPtr handler); +void QXmlReader_SetDeclHandler(QtObjectPtr ptr, QtObjectPtr handler); +void QXmlReader_SetEntityResolver(QtObjectPtr ptr, QtObjectPtr handler); +void QXmlReader_SetErrorHandler(QtObjectPtr ptr, QtObjectPtr handler); +void QXmlReader_SetFeature(QtObjectPtr ptr, char* name, int value); +void QXmlReader_SetLexicalHandler(QtObjectPtr ptr, QtObjectPtr handler); +void QXmlReader_DestroyQXmlReader(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xml/qxmlsimplereader.cpp b/xml/qxmlsimplereader.cpp new file mode 100755 index 00000000..3c087fbd --- /dev/null +++ b/xml/qxmlsimplereader.cpp @@ -0,0 +1,111 @@ +#include "qxmlsimplereader.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlSimpleReader: public QXmlSimpleReader { +public: +}; + +QtObjectPtr QXmlSimpleReader_DTDHandler(QtObjectPtr ptr){ + return static_cast(ptr)->DTDHandler(); +} + +QtObjectPtr QXmlSimpleReader_NewQXmlSimpleReader(){ + return new QXmlSimpleReader(); +} + +QtObjectPtr QXmlSimpleReader_ContentHandler(QtObjectPtr ptr){ + return static_cast(ptr)->contentHandler(); +} + +QtObjectPtr QXmlSimpleReader_DeclHandler(QtObjectPtr ptr){ + return static_cast(ptr)->declHandler(); +} + +QtObjectPtr QXmlSimpleReader_EntityResolver(QtObjectPtr ptr){ + return static_cast(ptr)->entityResolver(); +} + +QtObjectPtr QXmlSimpleReader_ErrorHandler(QtObjectPtr ptr){ + return static_cast(ptr)->errorHandler(); +} + +int QXmlSimpleReader_Feature(QtObjectPtr ptr, char* name, int ok){ + return static_cast(ptr)->feature(QString(name), NULL); +} + +int QXmlSimpleReader_HasFeature(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->hasFeature(QString(name)); +} + +int QXmlSimpleReader_HasProperty(QtObjectPtr ptr, char* name){ + return static_cast(ptr)->hasProperty(QString(name)); +} + +QtObjectPtr QXmlSimpleReader_LexicalHandler(QtObjectPtr ptr){ + return static_cast(ptr)->lexicalHandler(); +} + +int QXmlSimpleReader_Parse(QtObjectPtr ptr, QtObjectPtr input){ + return static_cast(ptr)->parse(*static_cast(input)); +} + +int QXmlSimpleReader_Parse2(QtObjectPtr ptr, QtObjectPtr input){ + return static_cast(ptr)->parse(static_cast(input)); +} + +int QXmlSimpleReader_Parse3(QtObjectPtr ptr, QtObjectPtr input, int incremental){ + return static_cast(ptr)->parse(static_cast(input), incremental != 0); +} + +int QXmlSimpleReader_ParseContinue(QtObjectPtr ptr){ + return static_cast(ptr)->parseContinue(); +} + +void QXmlSimpleReader_Property(QtObjectPtr ptr, char* name, int ok){ + static_cast(ptr)->property(QString(name), NULL); +} + +void QXmlSimpleReader_SetContentHandler(QtObjectPtr ptr, QtObjectPtr handler){ + static_cast(ptr)->setContentHandler(static_cast(handler)); +} + +void QXmlSimpleReader_SetDTDHandler(QtObjectPtr ptr, QtObjectPtr handler){ + static_cast(ptr)->setDTDHandler(static_cast(handler)); +} + +void QXmlSimpleReader_SetDeclHandler(QtObjectPtr ptr, QtObjectPtr handler){ + static_cast(ptr)->setDeclHandler(static_cast(handler)); +} + +void QXmlSimpleReader_SetEntityResolver(QtObjectPtr ptr, QtObjectPtr handler){ + static_cast(ptr)->setEntityResolver(static_cast(handler)); +} + +void QXmlSimpleReader_SetErrorHandler(QtObjectPtr ptr, QtObjectPtr handler){ + static_cast(ptr)->setErrorHandler(static_cast(handler)); +} + +void QXmlSimpleReader_SetFeature(QtObjectPtr ptr, char* name, int enable){ + static_cast(ptr)->setFeature(QString(name), enable != 0); +} + +void QXmlSimpleReader_SetLexicalHandler(QtObjectPtr ptr, QtObjectPtr handler){ + static_cast(ptr)->setLexicalHandler(static_cast(handler)); +} + +void QXmlSimpleReader_DestroyQXmlSimpleReader(QtObjectPtr ptr){ + static_cast(ptr)->~QXmlSimpleReader(); +} + diff --git a/xml/qxmlsimplereader.go b/xml/qxmlsimplereader.go new file mode 100755 index 00000000..cc353a65 --- /dev/null +++ b/xml/qxmlsimplereader.go @@ -0,0 +1,183 @@ +package xml + +//#include "qxmlsimplereader.h" +import "C" +import ( + "github.com/therecipe/qt" + "unsafe" +) + +type QXmlSimpleReader struct { + QXmlReader +} + +type QXmlSimpleReaderITF interface { + QXmlReaderITF + QXmlSimpleReaderPTR() *QXmlSimpleReader +} + +func PointerFromQXmlSimpleReader(ptr QXmlSimpleReaderITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlSimpleReaderPTR().Pointer() + } + return nil +} + +func QXmlSimpleReaderFromPointer(ptr unsafe.Pointer) *QXmlSimpleReader { + var n = new(QXmlSimpleReader) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlSimpleReader) QXmlSimpleReaderPTR() *QXmlSimpleReader { + return ptr +} + +func (ptr *QXmlSimpleReader) DTDHandler() *QXmlDTDHandler { + if ptr.Pointer() != nil { + return QXmlDTDHandlerFromPointer(unsafe.Pointer(C.QXmlSimpleReader_DTDHandler(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func NewQXmlSimpleReader() *QXmlSimpleReader { + return QXmlSimpleReaderFromPointer(unsafe.Pointer(C.QXmlSimpleReader_NewQXmlSimpleReader())) +} + +func (ptr *QXmlSimpleReader) ContentHandler() *QXmlContentHandler { + if ptr.Pointer() != nil { + return QXmlContentHandlerFromPointer(unsafe.Pointer(C.QXmlSimpleReader_ContentHandler(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QXmlSimpleReader) DeclHandler() *QXmlDeclHandler { + if ptr.Pointer() != nil { + return QXmlDeclHandlerFromPointer(unsafe.Pointer(C.QXmlSimpleReader_DeclHandler(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QXmlSimpleReader) EntityResolver() *QXmlEntityResolver { + if ptr.Pointer() != nil { + return QXmlEntityResolverFromPointer(unsafe.Pointer(C.QXmlSimpleReader_EntityResolver(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QXmlSimpleReader) ErrorHandler() *QXmlErrorHandler { + if ptr.Pointer() != nil { + return QXmlErrorHandlerFromPointer(unsafe.Pointer(C.QXmlSimpleReader_ErrorHandler(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QXmlSimpleReader) Feature(name string, ok bool) bool { + if ptr.Pointer() != nil { + return C.QXmlSimpleReader_Feature(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.int(qt.GoBoolToInt(ok))) != 0 + } + return false +} + +func (ptr *QXmlSimpleReader) HasFeature(name string) bool { + if ptr.Pointer() != nil { + return C.QXmlSimpleReader_HasFeature(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) != 0 + } + return false +} + +func (ptr *QXmlSimpleReader) HasProperty(name string) bool { + if ptr.Pointer() != nil { + return C.QXmlSimpleReader_HasProperty(C.QtObjectPtr(ptr.Pointer()), C.CString(name)) != 0 + } + return false +} + +func (ptr *QXmlSimpleReader) LexicalHandler() *QXmlLexicalHandler { + if ptr.Pointer() != nil { + return QXmlLexicalHandlerFromPointer(unsafe.Pointer(C.QXmlSimpleReader_LexicalHandler(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QXmlSimpleReader) Parse(input QXmlInputSourceITF) bool { + if ptr.Pointer() != nil { + return C.QXmlSimpleReader_Parse(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlInputSource(input))) != 0 + } + return false +} + +func (ptr *QXmlSimpleReader) Parse2(input QXmlInputSourceITF) bool { + if ptr.Pointer() != nil { + return C.QXmlSimpleReader_Parse2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlInputSource(input))) != 0 + } + return false +} + +func (ptr *QXmlSimpleReader) Parse3(input QXmlInputSourceITF, incremental bool) bool { + if ptr.Pointer() != nil { + return C.QXmlSimpleReader_Parse3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlInputSource(input)), C.int(qt.GoBoolToInt(incremental))) != 0 + } + return false +} + +func (ptr *QXmlSimpleReader) ParseContinue() bool { + if ptr.Pointer() != nil { + return C.QXmlSimpleReader_ParseContinue(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlSimpleReader) Property(name string, ok bool) { + if ptr.Pointer() != nil { + C.QXmlSimpleReader_Property(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.int(qt.GoBoolToInt(ok))) + } +} + +func (ptr *QXmlSimpleReader) SetContentHandler(handler QXmlContentHandlerITF) { + if ptr.Pointer() != nil { + C.QXmlSimpleReader_SetContentHandler(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlContentHandler(handler))) + } +} + +func (ptr *QXmlSimpleReader) SetDTDHandler(handler QXmlDTDHandlerITF) { + if ptr.Pointer() != nil { + C.QXmlSimpleReader_SetDTDHandler(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlDTDHandler(handler))) + } +} + +func (ptr *QXmlSimpleReader) SetDeclHandler(handler QXmlDeclHandlerITF) { + if ptr.Pointer() != nil { + C.QXmlSimpleReader_SetDeclHandler(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlDeclHandler(handler))) + } +} + +func (ptr *QXmlSimpleReader) SetEntityResolver(handler QXmlEntityResolverITF) { + if ptr.Pointer() != nil { + C.QXmlSimpleReader_SetEntityResolver(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlEntityResolver(handler))) + } +} + +func (ptr *QXmlSimpleReader) SetErrorHandler(handler QXmlErrorHandlerITF) { + if ptr.Pointer() != nil { + C.QXmlSimpleReader_SetErrorHandler(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlErrorHandler(handler))) + } +} + +func (ptr *QXmlSimpleReader) SetFeature(name string, enable bool) { + if ptr.Pointer() != nil { + C.QXmlSimpleReader_SetFeature(C.QtObjectPtr(ptr.Pointer()), C.CString(name), C.int(qt.GoBoolToInt(enable))) + } +} + +func (ptr *QXmlSimpleReader) SetLexicalHandler(handler QXmlLexicalHandlerITF) { + if ptr.Pointer() != nil { + C.QXmlSimpleReader_SetLexicalHandler(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlLexicalHandler(handler))) + } +} + +func (ptr *QXmlSimpleReader) DestroyQXmlSimpleReader() { + if ptr.Pointer() != nil { + C.QXmlSimpleReader_DestroyQXmlSimpleReader(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xml/qxmlsimplereader.h b/xml/qxmlsimplereader.h new file mode 100755 index 00000000..782e5156 --- /dev/null +++ b/xml/qxmlsimplereader.h @@ -0,0 +1,32 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QXmlSimpleReader_DTDHandler(QtObjectPtr ptr); +QtObjectPtr QXmlSimpleReader_NewQXmlSimpleReader(); +QtObjectPtr QXmlSimpleReader_ContentHandler(QtObjectPtr ptr); +QtObjectPtr QXmlSimpleReader_DeclHandler(QtObjectPtr ptr); +QtObjectPtr QXmlSimpleReader_EntityResolver(QtObjectPtr ptr); +QtObjectPtr QXmlSimpleReader_ErrorHandler(QtObjectPtr ptr); +int QXmlSimpleReader_Feature(QtObjectPtr ptr, char* name, int ok); +int QXmlSimpleReader_HasFeature(QtObjectPtr ptr, char* name); +int QXmlSimpleReader_HasProperty(QtObjectPtr ptr, char* name); +QtObjectPtr QXmlSimpleReader_LexicalHandler(QtObjectPtr ptr); +int QXmlSimpleReader_Parse(QtObjectPtr ptr, QtObjectPtr input); +int QXmlSimpleReader_Parse2(QtObjectPtr ptr, QtObjectPtr input); +int QXmlSimpleReader_Parse3(QtObjectPtr ptr, QtObjectPtr input, int incremental); +int QXmlSimpleReader_ParseContinue(QtObjectPtr ptr); +void QXmlSimpleReader_Property(QtObjectPtr ptr, char* name, int ok); +void QXmlSimpleReader_SetContentHandler(QtObjectPtr ptr, QtObjectPtr handler); +void QXmlSimpleReader_SetDTDHandler(QtObjectPtr ptr, QtObjectPtr handler); +void QXmlSimpleReader_SetDeclHandler(QtObjectPtr ptr, QtObjectPtr handler); +void QXmlSimpleReader_SetEntityResolver(QtObjectPtr ptr, QtObjectPtr handler); +void QXmlSimpleReader_SetErrorHandler(QtObjectPtr ptr, QtObjectPtr handler); +void QXmlSimpleReader_SetFeature(QtObjectPtr ptr, char* name, int enable); +void QXmlSimpleReader_SetLexicalHandler(QtObjectPtr ptr, QtObjectPtr handler); +void QXmlSimpleReader_DestroyQXmlSimpleReader(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xmlpatterns/cgo_darwin_amd64.go b/xmlpatterns/cgo_darwin_amd64.go new file mode 100755 index 00000000..4e9b6a06 --- /dev/null +++ b/xmlpatterns/cgo_darwin_amd64.go @@ -0,0 +1,13 @@ +package xmlpatterns + +/* +#cgo CPPFLAGS: -pipe -O2 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 -Wall -W +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_XMLPATTERNS_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/mkspecs/macx-clang -F/usr/local/Qt5.5.1/5.5/clang_64/lib +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtCore.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtNetwork.framework/Headers -I/usr/local/Qt5.5.1/5.5/clang_64/lib/QtXmlPatterns.framework/Headers +#cgo CPPFLAGS: -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.framework/Headers + +#cgo LDFLAGS: -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.7 +#cgo LDFLAGS: -F/usr/local/Qt5.5.1/5.5/clang_64/lib -framework QtCore -framework QtNetwork -framework QtXmlPatterns -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL +*/ +import "C" diff --git a/xmlpatterns/cgo_linux_386.go b/xmlpatterns/cgo_linux_386.go new file mode 100755 index 00000000..d78edcf0 --- /dev/null +++ b/xmlpatterns/cgo_linux_386.go @@ -0,0 +1,12 @@ +package xmlpatterns + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_XMLPATTERNS_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include -I/usr/local/Qt5.5.1/5.5/gcc/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc/include/QtNetwork -I/usr/local/Qt5.5.1/5.5/gcc/include/QtXmlPatterns + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc/lib -L/usr/lib -lQt5Core -lQt5Network -lQt5XmlPatterns -lpthread +*/ +import "C" diff --git a/xmlpatterns/cgo_linux_amd64.go b/xmlpatterns/cgo_linux_amd64.go new file mode 100755 index 00000000..8e8421f9 --- /dev/null +++ b/xmlpatterns/cgo_linux_amd64.go @@ -0,0 +1,12 @@ +package xmlpatterns + +/* +#cgo CPPFLAGS: -pipe -O2 -Wall -W -D_REENTRANT +#cgo CPPFLAGS: -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_XMLPATTERNS_LIB +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include -I/usr/local/Qt5.5.1/5.5/gcc_64/mkspecs/linux-g++ +#cgo CPPFLAGS: -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtCore -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtNetwork -I/usr/local/Qt5.5.1/5.5/gcc_64/include/QtXmlPatterns + +#cgo LDFLAGS: -Wl,-O1 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64 -Wl,-rpath,/usr/local/Qt5.5.1/5.5/gcc_64/lib +#cgo LDFLAGS: -L/usr/local/Qt5.5.1/5.5/gcc_64/lib -L/usr/lib64 -lQt5Core -lQt5Network -lQt5XmlPatterns -lpthread +*/ +import "C" diff --git a/xmlpatterns/cgo_windows_386.go b/xmlpatterns/cgo_windows_386.go new file mode 100755 index 00000000..f245c66e --- /dev/null +++ b/xmlpatterns/cgo_windows_386.go @@ -0,0 +1,12 @@ +package xmlpatterns + +/* +#cgo CPPFLAGS: -pipe -fno-keep-inline-dllexport -O2 -Wall -Wextra -fexceptions -mthreads +#cgo CPPFLAGS: -DUNICODE -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_XMLPATTERNS_LIB +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include -IC:/Qt/Qt5.5.1/5.5/mingw492_32/mkspecs/win32-g++ +#cgo CPPFLAGS: -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtCore -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtNetwork -IC:/Qt/Qt5.5.1/5.5/mingw492_32/include/QtXmlPatterns + +#cgo LDFLAGS: -Wl,-s -Wl,-subsystem,windows -mthreads +#cgo LDFLAGS: -LC:/Qt/Qt5.5.1/5.5/mingw492_32/bin -lQt5Core -lQt5Network -lQt5XmlPatterns +*/ +import "C" diff --git a/xmlpatterns/qabstractmessagehandler.cpp b/xmlpatterns/qabstractmessagehandler.cpp new file mode 100755 index 00000000..6263de55 --- /dev/null +++ b/xmlpatterns/qabstractmessagehandler.cpp @@ -0,0 +1,16 @@ +#include "qabstractmessagehandler.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAbstractMessageHandler: public QAbstractMessageHandler { +public: +}; + +void QAbstractMessageHandler_DestroyQAbstractMessageHandler(QtObjectPtr ptr){ + static_cast(ptr)->~QAbstractMessageHandler(); +} + diff --git a/xmlpatterns/qabstractmessagehandler.go b/xmlpatterns/qabstractmessagehandler.go new file mode 100755 index 00000000..2c859b25 --- /dev/null +++ b/xmlpatterns/qabstractmessagehandler.go @@ -0,0 +1,45 @@ +package xmlpatterns + +//#include "qabstractmessagehandler.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAbstractMessageHandler struct { + core.QObject +} + +type QAbstractMessageHandlerITF interface { + core.QObjectITF + QAbstractMessageHandlerPTR() *QAbstractMessageHandler +} + +func PointerFromQAbstractMessageHandler(ptr QAbstractMessageHandlerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractMessageHandlerPTR().Pointer() + } + return nil +} + +func QAbstractMessageHandlerFromPointer(ptr unsafe.Pointer) *QAbstractMessageHandler { + var n = new(QAbstractMessageHandler) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAbstractMessageHandler_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAbstractMessageHandler) QAbstractMessageHandlerPTR() *QAbstractMessageHandler { + return ptr +} + +func (ptr *QAbstractMessageHandler) DestroyQAbstractMessageHandler() { + if ptr.Pointer() != nil { + C.QAbstractMessageHandler_DestroyQAbstractMessageHandler(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/xmlpatterns/qabstractmessagehandler.h b/xmlpatterns/qabstractmessagehandler.h new file mode 100755 index 00000000..68823945 --- /dev/null +++ b/xmlpatterns/qabstractmessagehandler.h @@ -0,0 +1,10 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QAbstractMessageHandler_DestroyQAbstractMessageHandler(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xmlpatterns/qabstracturiresolver.cpp b/xmlpatterns/qabstracturiresolver.cpp new file mode 100755 index 00000000..7a48d29e --- /dev/null +++ b/xmlpatterns/qabstracturiresolver.cpp @@ -0,0 +1,20 @@ +#include "qabstracturiresolver.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAbstractUriResolver: public QAbstractUriResolver { +public: +}; + +char* QAbstractUriResolver_Resolve(QtObjectPtr ptr, char* relative, char* baseURI){ + return static_cast(ptr)->resolve(QUrl(QString(relative)), QUrl(QString(baseURI))).toString().toUtf8().data(); +} + +void QAbstractUriResolver_DestroyQAbstractUriResolver(QtObjectPtr ptr){ + static_cast(ptr)->~QAbstractUriResolver(); +} + diff --git a/xmlpatterns/qabstracturiresolver.go b/xmlpatterns/qabstracturiresolver.go new file mode 100755 index 00000000..658ac851 --- /dev/null +++ b/xmlpatterns/qabstracturiresolver.go @@ -0,0 +1,52 @@ +package xmlpatterns + +//#include "qabstracturiresolver.h" +import "C" +import ( + "github.com/therecipe/qt" + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAbstractUriResolver struct { + core.QObject +} + +type QAbstractUriResolverITF interface { + core.QObjectITF + QAbstractUriResolverPTR() *QAbstractUriResolver +} + +func PointerFromQAbstractUriResolver(ptr QAbstractUriResolverITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractUriResolverPTR().Pointer() + } + return nil +} + +func QAbstractUriResolverFromPointer(ptr unsafe.Pointer) *QAbstractUriResolver { + var n = new(QAbstractUriResolver) + n.SetPointer(ptr) + if n.ObjectName() == "" { + n.SetObjectName("QAbstractUriResolver_" + qt.RandomIdentifier()) + } + return n +} + +func (ptr *QAbstractUriResolver) QAbstractUriResolverPTR() *QAbstractUriResolver { + return ptr +} + +func (ptr *QAbstractUriResolver) Resolve(relative string, baseURI string) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAbstractUriResolver_Resolve(C.QtObjectPtr(ptr.Pointer()), C.CString(relative), C.CString(baseURI))) + } + return "" +} + +func (ptr *QAbstractUriResolver) DestroyQAbstractUriResolver() { + if ptr.Pointer() != nil { + C.QAbstractUriResolver_DestroyQAbstractUriResolver(C.QtObjectPtr(ptr.Pointer())) + ptr.SetPointer(nil) + } +} diff --git a/xmlpatterns/qabstracturiresolver.h b/xmlpatterns/qabstracturiresolver.h new file mode 100755 index 00000000..53c5e5cd --- /dev/null +++ b/xmlpatterns/qabstracturiresolver.h @@ -0,0 +1,11 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QAbstractUriResolver_Resolve(QtObjectPtr ptr, char* relative, char* baseURI); +void QAbstractUriResolver_DestroyQAbstractUriResolver(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xmlpatterns/qabstractxmlnodemodel.cpp b/xmlpatterns/qabstractxmlnodemodel.cpp new file mode 100755 index 00000000..a6e250a8 --- /dev/null +++ b/xmlpatterns/qabstractxmlnodemodel.cpp @@ -0,0 +1,41 @@ +#include "qabstractxmlnodemodel.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAbstractXmlNodeModel: public QAbstractXmlNodeModel { +public: +}; + +char* QAbstractXmlNodeModel_BaseUri(QtObjectPtr ptr, QtObjectPtr n){ + return static_cast(ptr)->baseUri(*static_cast(n)).toString().toUtf8().data(); +} + +int QAbstractXmlNodeModel_CompareOrder(QtObjectPtr ptr, QtObjectPtr ni1, QtObjectPtr ni2){ + return static_cast(ptr)->compareOrder(*static_cast(ni1), *static_cast(ni2)); +} + +char* QAbstractXmlNodeModel_DocumentUri(QtObjectPtr ptr, QtObjectPtr n){ + return static_cast(ptr)->documentUri(*static_cast(n)).toString().toUtf8().data(); +} + +int QAbstractXmlNodeModel_Kind(QtObjectPtr ptr, QtObjectPtr ni){ + return static_cast(ptr)->kind(*static_cast(ni)); +} + +char* QAbstractXmlNodeModel_StringValue(QtObjectPtr ptr, QtObjectPtr n){ + return static_cast(ptr)->stringValue(*static_cast(n)).toUtf8().data(); +} + +char* QAbstractXmlNodeModel_TypedValue(QtObjectPtr ptr, QtObjectPtr node){ + return static_cast(ptr)->typedValue(*static_cast(node)).toString().toUtf8().data(); +} + +void QAbstractXmlNodeModel_DestroyQAbstractXmlNodeModel(QtObjectPtr ptr){ + static_cast(ptr)->~QAbstractXmlNodeModel(); +} + diff --git a/xmlpatterns/qabstractxmlnodemodel.go b/xmlpatterns/qabstractxmlnodemodel.go new file mode 100755 index 00000000..e64849cb --- /dev/null +++ b/xmlpatterns/qabstractxmlnodemodel.go @@ -0,0 +1,92 @@ +package xmlpatterns + +//#include "qabstractxmlnodemodel.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAbstractXmlNodeModel struct { + core.QSharedData +} + +type QAbstractXmlNodeModelITF interface { + core.QSharedDataITF + QAbstractXmlNodeModelPTR() *QAbstractXmlNodeModel +} + +func PointerFromQAbstractXmlNodeModel(ptr QAbstractXmlNodeModelITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractXmlNodeModelPTR().Pointer() + } + return nil +} + +func QAbstractXmlNodeModelFromPointer(ptr unsafe.Pointer) *QAbstractXmlNodeModel { + var n = new(QAbstractXmlNodeModel) + n.SetPointer(ptr) + return n +} + +func (ptr *QAbstractXmlNodeModel) QAbstractXmlNodeModelPTR() *QAbstractXmlNodeModel { + return ptr +} + +//QAbstractXmlNodeModel::SimpleAxis +type QAbstractXmlNodeModel__SimpleAxis int + +var ( + QAbstractXmlNodeModel__Parent = QAbstractXmlNodeModel__SimpleAxis(0) + QAbstractXmlNodeModel__FirstChild = QAbstractXmlNodeModel__SimpleAxis(1) + QAbstractXmlNodeModel__PreviousSibling = QAbstractXmlNodeModel__SimpleAxis(2) + QAbstractXmlNodeModel__NextSibling = QAbstractXmlNodeModel__SimpleAxis(3) +) + +func (ptr *QAbstractXmlNodeModel) BaseUri(n QXmlNodeModelIndexITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAbstractXmlNodeModel_BaseUri(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlNodeModelIndex(n)))) + } + return "" +} + +func (ptr *QAbstractXmlNodeModel) CompareOrder(ni1 QXmlNodeModelIndexITF, ni2 QXmlNodeModelIndexITF) QXmlNodeModelIndex__DocumentOrder { + if ptr.Pointer() != nil { + return QXmlNodeModelIndex__DocumentOrder(C.QAbstractXmlNodeModel_CompareOrder(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlNodeModelIndex(ni1)), C.QtObjectPtr(PointerFromQXmlNodeModelIndex(ni2)))) + } + return 0 +} + +func (ptr *QAbstractXmlNodeModel) DocumentUri(n QXmlNodeModelIndexITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAbstractXmlNodeModel_DocumentUri(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlNodeModelIndex(n)))) + } + return "" +} + +func (ptr *QAbstractXmlNodeModel) Kind(ni QXmlNodeModelIndexITF) QXmlNodeModelIndex__NodeKind { + if ptr.Pointer() != nil { + return QXmlNodeModelIndex__NodeKind(C.QAbstractXmlNodeModel_Kind(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlNodeModelIndex(ni)))) + } + return 0 +} + +func (ptr *QAbstractXmlNodeModel) StringValue(n QXmlNodeModelIndexITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAbstractXmlNodeModel_StringValue(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlNodeModelIndex(n)))) + } + return "" +} + +func (ptr *QAbstractXmlNodeModel) TypedValue(node QXmlNodeModelIndexITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QAbstractXmlNodeModel_TypedValue(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlNodeModelIndex(node)))) + } + return "" +} + +func (ptr *QAbstractXmlNodeModel) DestroyQAbstractXmlNodeModel() { + if ptr.Pointer() != nil { + C.QAbstractXmlNodeModel_DestroyQAbstractXmlNodeModel(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xmlpatterns/qabstractxmlnodemodel.h b/xmlpatterns/qabstractxmlnodemodel.h new file mode 100755 index 00000000..bb976b08 --- /dev/null +++ b/xmlpatterns/qabstractxmlnodemodel.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QAbstractXmlNodeModel_BaseUri(QtObjectPtr ptr, QtObjectPtr n); +int QAbstractXmlNodeModel_CompareOrder(QtObjectPtr ptr, QtObjectPtr ni1, QtObjectPtr ni2); +char* QAbstractXmlNodeModel_DocumentUri(QtObjectPtr ptr, QtObjectPtr n); +int QAbstractXmlNodeModel_Kind(QtObjectPtr ptr, QtObjectPtr ni); +char* QAbstractXmlNodeModel_StringValue(QtObjectPtr ptr, QtObjectPtr n); +char* QAbstractXmlNodeModel_TypedValue(QtObjectPtr ptr, QtObjectPtr node); +void QAbstractXmlNodeModel_DestroyQAbstractXmlNodeModel(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xmlpatterns/qabstractxmlreceiver.cpp b/xmlpatterns/qabstractxmlreceiver.cpp new file mode 100755 index 00000000..d02699be --- /dev/null +++ b/xmlpatterns/qabstractxmlreceiver.cpp @@ -0,0 +1,62 @@ +#include "qabstractxmlreceiver.h" +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQAbstractXmlReceiver: public QAbstractXmlReceiver { +public: +}; + +void QAbstractXmlReceiver_Attribute(QtObjectPtr ptr, QtObjectPtr name, QtObjectPtr value){ + static_cast(ptr)->attribute(*static_cast(name), *static_cast(value)); +} + +void QAbstractXmlReceiver_Characters(QtObjectPtr ptr, QtObjectPtr value){ + static_cast(ptr)->characters(*static_cast(value)); +} + +void QAbstractXmlReceiver_Comment(QtObjectPtr ptr, char* value){ + static_cast(ptr)->comment(QString(value)); +} + +void QAbstractXmlReceiver_EndDocument(QtObjectPtr ptr){ + static_cast(ptr)->endDocument(); +} + +void QAbstractXmlReceiver_EndElement(QtObjectPtr ptr){ + static_cast(ptr)->endElement(); +} + +void QAbstractXmlReceiver_EndOfSequence(QtObjectPtr ptr){ + static_cast(ptr)->endOfSequence(); +} + +void QAbstractXmlReceiver_NamespaceBinding(QtObjectPtr ptr, QtObjectPtr name){ + static_cast(ptr)->namespaceBinding(*static_cast(name)); +} + +void QAbstractXmlReceiver_ProcessingInstruction(QtObjectPtr ptr, QtObjectPtr target, char* value){ + static_cast(ptr)->processingInstruction(*static_cast(target), QString(value)); +} + +void QAbstractXmlReceiver_StartDocument(QtObjectPtr ptr){ + static_cast(ptr)->startDocument(); +} + +void QAbstractXmlReceiver_StartElement(QtObjectPtr ptr, QtObjectPtr name){ + static_cast(ptr)->startElement(*static_cast(name)); +} + +void QAbstractXmlReceiver_StartOfSequence(QtObjectPtr ptr){ + static_cast(ptr)->startOfSequence(); +} + +void QAbstractXmlReceiver_DestroyQAbstractXmlReceiver(QtObjectPtr ptr){ + static_cast(ptr)->~QAbstractXmlReceiver(); +} + diff --git a/xmlpatterns/qabstractxmlreceiver.go b/xmlpatterns/qabstractxmlreceiver.go new file mode 100755 index 00000000..d9992a5e --- /dev/null +++ b/xmlpatterns/qabstractxmlreceiver.go @@ -0,0 +1,113 @@ +package xmlpatterns + +//#include "qabstractxmlreceiver.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QAbstractXmlReceiver struct { + ptr unsafe.Pointer +} + +type QAbstractXmlReceiverITF interface { + QAbstractXmlReceiverPTR() *QAbstractXmlReceiver +} + +func (p *QAbstractXmlReceiver) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QAbstractXmlReceiver) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQAbstractXmlReceiver(ptr QAbstractXmlReceiverITF) unsafe.Pointer { + if ptr != nil { + return ptr.QAbstractXmlReceiverPTR().Pointer() + } + return nil +} + +func QAbstractXmlReceiverFromPointer(ptr unsafe.Pointer) *QAbstractXmlReceiver { + var n = new(QAbstractXmlReceiver) + n.SetPointer(ptr) + return n +} + +func (ptr *QAbstractXmlReceiver) QAbstractXmlReceiverPTR() *QAbstractXmlReceiver { + return ptr +} + +func (ptr *QAbstractXmlReceiver) Attribute(name QXmlNameITF, value core.QStringRefITF) { + if ptr.Pointer() != nil { + C.QAbstractXmlReceiver_Attribute(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlName(name)), C.QtObjectPtr(core.PointerFromQStringRef(value))) + } +} + +func (ptr *QAbstractXmlReceiver) Characters(value core.QStringRefITF) { + if ptr.Pointer() != nil { + C.QAbstractXmlReceiver_Characters(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQStringRef(value))) + } +} + +func (ptr *QAbstractXmlReceiver) Comment(value string) { + if ptr.Pointer() != nil { + C.QAbstractXmlReceiver_Comment(C.QtObjectPtr(ptr.Pointer()), C.CString(value)) + } +} + +func (ptr *QAbstractXmlReceiver) EndDocument() { + if ptr.Pointer() != nil { + C.QAbstractXmlReceiver_EndDocument(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractXmlReceiver) EndElement() { + if ptr.Pointer() != nil { + C.QAbstractXmlReceiver_EndElement(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractXmlReceiver) EndOfSequence() { + if ptr.Pointer() != nil { + C.QAbstractXmlReceiver_EndOfSequence(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractXmlReceiver) NamespaceBinding(name QXmlNameITF) { + if ptr.Pointer() != nil { + C.QAbstractXmlReceiver_NamespaceBinding(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlName(name))) + } +} + +func (ptr *QAbstractXmlReceiver) ProcessingInstruction(target QXmlNameITF, value string) { + if ptr.Pointer() != nil { + C.QAbstractXmlReceiver_ProcessingInstruction(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlName(target)), C.CString(value)) + } +} + +func (ptr *QAbstractXmlReceiver) StartDocument() { + if ptr.Pointer() != nil { + C.QAbstractXmlReceiver_StartDocument(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractXmlReceiver) StartElement(name QXmlNameITF) { + if ptr.Pointer() != nil { + C.QAbstractXmlReceiver_StartElement(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlName(name))) + } +} + +func (ptr *QAbstractXmlReceiver) StartOfSequence() { + if ptr.Pointer() != nil { + C.QAbstractXmlReceiver_StartOfSequence(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QAbstractXmlReceiver) DestroyQAbstractXmlReceiver() { + if ptr.Pointer() != nil { + C.QAbstractXmlReceiver_DestroyQAbstractXmlReceiver(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xmlpatterns/qabstractxmlreceiver.h b/xmlpatterns/qabstractxmlreceiver.h new file mode 100755 index 00000000..d0b16c62 --- /dev/null +++ b/xmlpatterns/qabstractxmlreceiver.h @@ -0,0 +1,21 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +void QAbstractXmlReceiver_Attribute(QtObjectPtr ptr, QtObjectPtr name, QtObjectPtr value); +void QAbstractXmlReceiver_Characters(QtObjectPtr ptr, QtObjectPtr value); +void QAbstractXmlReceiver_Comment(QtObjectPtr ptr, char* value); +void QAbstractXmlReceiver_EndDocument(QtObjectPtr ptr); +void QAbstractXmlReceiver_EndElement(QtObjectPtr ptr); +void QAbstractXmlReceiver_EndOfSequence(QtObjectPtr ptr); +void QAbstractXmlReceiver_NamespaceBinding(QtObjectPtr ptr, QtObjectPtr name); +void QAbstractXmlReceiver_ProcessingInstruction(QtObjectPtr ptr, QtObjectPtr target, char* value); +void QAbstractXmlReceiver_StartDocument(QtObjectPtr ptr); +void QAbstractXmlReceiver_StartElement(QtObjectPtr ptr, QtObjectPtr name); +void QAbstractXmlReceiver_StartOfSequence(QtObjectPtr ptr); +void QAbstractXmlReceiver_DestroyQAbstractXmlReceiver(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xmlpatterns/qsimplexmlnodemodel.cpp b/xmlpatterns/qsimplexmlnodemodel.cpp new file mode 100755 index 00000000..11c0be80 --- /dev/null +++ b/xmlpatterns/qsimplexmlnodemodel.cpp @@ -0,0 +1,25 @@ +#include "qsimplexmlnodemodel.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSimpleXmlNodeModel: public QSimpleXmlNodeModel { +public: +}; + +char* QSimpleXmlNodeModel_BaseUri(QtObjectPtr ptr, QtObjectPtr node){ + return static_cast(ptr)->baseUri(*static_cast(node)).toString().toUtf8().data(); +} + +char* QSimpleXmlNodeModel_StringValue(QtObjectPtr ptr, QtObjectPtr node){ + return static_cast(ptr)->stringValue(*static_cast(node)).toUtf8().data(); +} + +void QSimpleXmlNodeModel_DestroyQSimpleXmlNodeModel(QtObjectPtr ptr){ + static_cast(ptr)->~QSimpleXmlNodeModel(); +} + diff --git a/xmlpatterns/qsimplexmlnodemodel.go b/xmlpatterns/qsimplexmlnodemodel.go new file mode 100755 index 00000000..773211fe --- /dev/null +++ b/xmlpatterns/qsimplexmlnodemodel.go @@ -0,0 +1,53 @@ +package xmlpatterns + +//#include "qsimplexmlnodemodel.h" +import "C" +import ( + "unsafe" +) + +type QSimpleXmlNodeModel struct { + QAbstractXmlNodeModel +} + +type QSimpleXmlNodeModelITF interface { + QAbstractXmlNodeModelITF + QSimpleXmlNodeModelPTR() *QSimpleXmlNodeModel +} + +func PointerFromQSimpleXmlNodeModel(ptr QSimpleXmlNodeModelITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSimpleXmlNodeModelPTR().Pointer() + } + return nil +} + +func QSimpleXmlNodeModelFromPointer(ptr unsafe.Pointer) *QSimpleXmlNodeModel { + var n = new(QSimpleXmlNodeModel) + n.SetPointer(ptr) + return n +} + +func (ptr *QSimpleXmlNodeModel) QSimpleXmlNodeModelPTR() *QSimpleXmlNodeModel { + return ptr +} + +func (ptr *QSimpleXmlNodeModel) BaseUri(node QXmlNodeModelIndexITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QSimpleXmlNodeModel_BaseUri(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlNodeModelIndex(node)))) + } + return "" +} + +func (ptr *QSimpleXmlNodeModel) StringValue(node QXmlNodeModelIndexITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QSimpleXmlNodeModel_StringValue(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlNodeModelIndex(node)))) + } + return "" +} + +func (ptr *QSimpleXmlNodeModel) DestroyQSimpleXmlNodeModel() { + if ptr.Pointer() != nil { + C.QSimpleXmlNodeModel_DestroyQSimpleXmlNodeModel(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xmlpatterns/qsimplexmlnodemodel.h b/xmlpatterns/qsimplexmlnodemodel.h new file mode 100755 index 00000000..33d5289d --- /dev/null +++ b/xmlpatterns/qsimplexmlnodemodel.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +char* QSimpleXmlNodeModel_BaseUri(QtObjectPtr ptr, QtObjectPtr node); +char* QSimpleXmlNodeModel_StringValue(QtObjectPtr ptr, QtObjectPtr node); +void QSimpleXmlNodeModel_DestroyQSimpleXmlNodeModel(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xmlpatterns/qsourcelocation.cpp b/xmlpatterns/qsourcelocation.cpp new file mode 100755 index 00000000..ec68cb4b --- /dev/null +++ b/xmlpatterns/qsourcelocation.cpp @@ -0,0 +1,40 @@ +#include "qsourcelocation.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQSourceLocation: public QSourceLocation { +public: +}; + +QtObjectPtr QSourceLocation_NewQSourceLocation(){ + return new QSourceLocation(); +} + +QtObjectPtr QSourceLocation_NewQSourceLocation2(QtObjectPtr other){ + return new QSourceLocation(*static_cast(other)); +} + +QtObjectPtr QSourceLocation_NewQSourceLocation3(char* u, int l, int c){ + return new QSourceLocation(QUrl(QString(u)), l, c); +} + +int QSourceLocation_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +void QSourceLocation_SetUri(QtObjectPtr ptr, char* newUri){ + static_cast(ptr)->setUri(QUrl(QString(newUri))); +} + +char* QSourceLocation_Uri(QtObjectPtr ptr){ + return static_cast(ptr)->uri().toString().toUtf8().data(); +} + +void QSourceLocation_DestroyQSourceLocation(QtObjectPtr ptr){ + static_cast(ptr)->~QSourceLocation(); +} + diff --git a/xmlpatterns/qsourcelocation.go b/xmlpatterns/qsourcelocation.go new file mode 100755 index 00000000..7d7247fa --- /dev/null +++ b/xmlpatterns/qsourcelocation.go @@ -0,0 +1,78 @@ +package xmlpatterns + +//#include "qsourcelocation.h" +import "C" +import ( + "unsafe" +) + +type QSourceLocation struct { + ptr unsafe.Pointer +} + +type QSourceLocationITF interface { + QSourceLocationPTR() *QSourceLocation +} + +func (p *QSourceLocation) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QSourceLocation) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQSourceLocation(ptr QSourceLocationITF) unsafe.Pointer { + if ptr != nil { + return ptr.QSourceLocationPTR().Pointer() + } + return nil +} + +func QSourceLocationFromPointer(ptr unsafe.Pointer) *QSourceLocation { + var n = new(QSourceLocation) + n.SetPointer(ptr) + return n +} + +func (ptr *QSourceLocation) QSourceLocationPTR() *QSourceLocation { + return ptr +} + +func NewQSourceLocation() *QSourceLocation { + return QSourceLocationFromPointer(unsafe.Pointer(C.QSourceLocation_NewQSourceLocation())) +} + +func NewQSourceLocation2(other QSourceLocationITF) *QSourceLocation { + return QSourceLocationFromPointer(unsafe.Pointer(C.QSourceLocation_NewQSourceLocation2(C.QtObjectPtr(PointerFromQSourceLocation(other))))) +} + +func NewQSourceLocation3(u string, l int, c int) *QSourceLocation { + return QSourceLocationFromPointer(unsafe.Pointer(C.QSourceLocation_NewQSourceLocation3(C.CString(u), C.int(l), C.int(c)))) +} + +func (ptr *QSourceLocation) IsNull() bool { + if ptr.Pointer() != nil { + return C.QSourceLocation_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QSourceLocation) SetUri(newUri string) { + if ptr.Pointer() != nil { + C.QSourceLocation_SetUri(C.QtObjectPtr(ptr.Pointer()), C.CString(newUri)) + } +} + +func (ptr *QSourceLocation) Uri() string { + if ptr.Pointer() != nil { + return C.GoString(C.QSourceLocation_Uri(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QSourceLocation) DestroyQSourceLocation() { + if ptr.Pointer() != nil { + C.QSourceLocation_DestroyQSourceLocation(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xmlpatterns/qsourcelocation.h b/xmlpatterns/qsourcelocation.h new file mode 100755 index 00000000..c7d2b8d6 --- /dev/null +++ b/xmlpatterns/qsourcelocation.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QSourceLocation_NewQSourceLocation(); +QtObjectPtr QSourceLocation_NewQSourceLocation2(QtObjectPtr other); +QtObjectPtr QSourceLocation_NewQSourceLocation3(char* u, int l, int c); +int QSourceLocation_IsNull(QtObjectPtr ptr); +void QSourceLocation_SetUri(QtObjectPtr ptr, char* newUri); +char* QSourceLocation_Uri(QtObjectPtr ptr); +void QSourceLocation_DestroyQSourceLocation(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xmlpatterns/qxmlformatter.cpp b/xmlpatterns/qxmlformatter.cpp new file mode 100755 index 00000000..e3a94abe --- /dev/null +++ b/xmlpatterns/qxmlformatter.cpp @@ -0,0 +1,68 @@ +#include "qxmlformatter.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlFormatter: public QXmlFormatter { +public: +}; + +QtObjectPtr QXmlFormatter_NewQXmlFormatter(QtObjectPtr query, QtObjectPtr outputDevice){ + return new QXmlFormatter(*static_cast(query), static_cast(outputDevice)); +} + +void QXmlFormatter_Attribute(QtObjectPtr ptr, QtObjectPtr name, QtObjectPtr value){ + static_cast(ptr)->attribute(*static_cast(name), *static_cast(value)); +} + +void QXmlFormatter_Characters(QtObjectPtr ptr, QtObjectPtr value){ + static_cast(ptr)->characters(*static_cast(value)); +} + +void QXmlFormatter_Comment(QtObjectPtr ptr, char* value){ + static_cast(ptr)->comment(QString(value)); +} + +void QXmlFormatter_EndDocument(QtObjectPtr ptr){ + static_cast(ptr)->endDocument(); +} + +void QXmlFormatter_EndElement(QtObjectPtr ptr){ + static_cast(ptr)->endElement(); +} + +void QXmlFormatter_EndOfSequence(QtObjectPtr ptr){ + static_cast(ptr)->endOfSequence(); +} + +int QXmlFormatter_IndentationDepth(QtObjectPtr ptr){ + return static_cast(ptr)->indentationDepth(); +} + +void QXmlFormatter_ProcessingInstruction(QtObjectPtr ptr, QtObjectPtr name, char* value){ + static_cast(ptr)->processingInstruction(*static_cast(name), QString(value)); +} + +void QXmlFormatter_SetIndentationDepth(QtObjectPtr ptr, int depth){ + static_cast(ptr)->setIndentationDepth(depth); +} + +void QXmlFormatter_StartDocument(QtObjectPtr ptr){ + static_cast(ptr)->startDocument(); +} + +void QXmlFormatter_StartElement(QtObjectPtr ptr, QtObjectPtr name){ + static_cast(ptr)->startElement(*static_cast(name)); +} + +void QXmlFormatter_StartOfSequence(QtObjectPtr ptr){ + static_cast(ptr)->startOfSequence(); +} + diff --git a/xmlpatterns/qxmlformatter.go b/xmlpatterns/qxmlformatter.go new file mode 100755 index 00000000..3a506623 --- /dev/null +++ b/xmlpatterns/qxmlformatter.go @@ -0,0 +1,111 @@ +package xmlpatterns + +//#include "qxmlformatter.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QXmlFormatter struct { + QXmlSerializer +} + +type QXmlFormatterITF interface { + QXmlSerializerITF + QXmlFormatterPTR() *QXmlFormatter +} + +func PointerFromQXmlFormatter(ptr QXmlFormatterITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlFormatterPTR().Pointer() + } + return nil +} + +func QXmlFormatterFromPointer(ptr unsafe.Pointer) *QXmlFormatter { + var n = new(QXmlFormatter) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlFormatter) QXmlFormatterPTR() *QXmlFormatter { + return ptr +} + +func NewQXmlFormatter(query QXmlQueryITF, outputDevice core.QIODeviceITF) *QXmlFormatter { + return QXmlFormatterFromPointer(unsafe.Pointer(C.QXmlFormatter_NewQXmlFormatter(C.QtObjectPtr(PointerFromQXmlQuery(query)), C.QtObjectPtr(core.PointerFromQIODevice(outputDevice))))) +} + +func (ptr *QXmlFormatter) Attribute(name QXmlNameITF, value core.QStringRefITF) { + if ptr.Pointer() != nil { + C.QXmlFormatter_Attribute(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlName(name)), C.QtObjectPtr(core.PointerFromQStringRef(value))) + } +} + +func (ptr *QXmlFormatter) Characters(value core.QStringRefITF) { + if ptr.Pointer() != nil { + C.QXmlFormatter_Characters(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQStringRef(value))) + } +} + +func (ptr *QXmlFormatter) Comment(value string) { + if ptr.Pointer() != nil { + C.QXmlFormatter_Comment(C.QtObjectPtr(ptr.Pointer()), C.CString(value)) + } +} + +func (ptr *QXmlFormatter) EndDocument() { + if ptr.Pointer() != nil { + C.QXmlFormatter_EndDocument(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QXmlFormatter) EndElement() { + if ptr.Pointer() != nil { + C.QXmlFormatter_EndElement(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QXmlFormatter) EndOfSequence() { + if ptr.Pointer() != nil { + C.QXmlFormatter_EndOfSequence(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QXmlFormatter) IndentationDepth() int { + if ptr.Pointer() != nil { + return int(C.QXmlFormatter_IndentationDepth(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QXmlFormatter) ProcessingInstruction(name QXmlNameITF, value string) { + if ptr.Pointer() != nil { + C.QXmlFormatter_ProcessingInstruction(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlName(name)), C.CString(value)) + } +} + +func (ptr *QXmlFormatter) SetIndentationDepth(depth int) { + if ptr.Pointer() != nil { + C.QXmlFormatter_SetIndentationDepth(C.QtObjectPtr(ptr.Pointer()), C.int(depth)) + } +} + +func (ptr *QXmlFormatter) StartDocument() { + if ptr.Pointer() != nil { + C.QXmlFormatter_StartDocument(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QXmlFormatter) StartElement(name QXmlNameITF) { + if ptr.Pointer() != nil { + C.QXmlFormatter_StartElement(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlName(name))) + } +} + +func (ptr *QXmlFormatter) StartOfSequence() { + if ptr.Pointer() != nil { + C.QXmlFormatter_StartOfSequence(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xmlpatterns/qxmlformatter.h b/xmlpatterns/qxmlformatter.h new file mode 100755 index 00000000..b72ccf4a --- /dev/null +++ b/xmlpatterns/qxmlformatter.h @@ -0,0 +1,22 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QXmlFormatter_NewQXmlFormatter(QtObjectPtr query, QtObjectPtr outputDevice); +void QXmlFormatter_Attribute(QtObjectPtr ptr, QtObjectPtr name, QtObjectPtr value); +void QXmlFormatter_Characters(QtObjectPtr ptr, QtObjectPtr value); +void QXmlFormatter_Comment(QtObjectPtr ptr, char* value); +void QXmlFormatter_EndDocument(QtObjectPtr ptr); +void QXmlFormatter_EndElement(QtObjectPtr ptr); +void QXmlFormatter_EndOfSequence(QtObjectPtr ptr); +int QXmlFormatter_IndentationDepth(QtObjectPtr ptr); +void QXmlFormatter_ProcessingInstruction(QtObjectPtr ptr, QtObjectPtr name, char* value); +void QXmlFormatter_SetIndentationDepth(QtObjectPtr ptr, int depth); +void QXmlFormatter_StartDocument(QtObjectPtr ptr); +void QXmlFormatter_StartElement(QtObjectPtr ptr, QtObjectPtr name); +void QXmlFormatter_StartOfSequence(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xmlpatterns/qxmlitem.cpp b/xmlpatterns/qxmlitem.cpp new file mode 100755 index 00000000..2c532ef7 --- /dev/null +++ b/xmlpatterns/qxmlitem.cpp @@ -0,0 +1,41 @@ +#include "qxmlitem.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlItem: public QXmlItem { +public: +}; + +QtObjectPtr QXmlItem_NewQXmlItem(){ + return new QXmlItem(); +} + +QtObjectPtr QXmlItem_NewQXmlItem4(char* atomicValue){ + return new QXmlItem(QVariant(atomicValue)); +} + +QtObjectPtr QXmlItem_NewQXmlItem2(QtObjectPtr other){ + return new QXmlItem(*static_cast(other)); +} + +QtObjectPtr QXmlItem_NewQXmlItem3(QtObjectPtr node){ + return new QXmlItem(*static_cast(node)); +} + +int QXmlItem_IsNode(QtObjectPtr ptr){ + return static_cast(ptr)->isNode(); +} + +int QXmlItem_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +void QXmlItem_DestroyQXmlItem(QtObjectPtr ptr){ + static_cast(ptr)->~QXmlItem(); +} + diff --git a/xmlpatterns/qxmlitem.go b/xmlpatterns/qxmlitem.go new file mode 100755 index 00000000..6441a5b3 --- /dev/null +++ b/xmlpatterns/qxmlitem.go @@ -0,0 +1,76 @@ +package xmlpatterns + +//#include "qxmlitem.h" +import "C" +import ( + "unsafe" +) + +type QXmlItem struct { + ptr unsafe.Pointer +} + +type QXmlItemITF interface { + QXmlItemPTR() *QXmlItem +} + +func (p *QXmlItem) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QXmlItem) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQXmlItem(ptr QXmlItemITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlItemPTR().Pointer() + } + return nil +} + +func QXmlItemFromPointer(ptr unsafe.Pointer) *QXmlItem { + var n = new(QXmlItem) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlItem) QXmlItemPTR() *QXmlItem { + return ptr +} + +func NewQXmlItem() *QXmlItem { + return QXmlItemFromPointer(unsafe.Pointer(C.QXmlItem_NewQXmlItem())) +} + +func NewQXmlItem4(atomicValue string) *QXmlItem { + return QXmlItemFromPointer(unsafe.Pointer(C.QXmlItem_NewQXmlItem4(C.CString(atomicValue)))) +} + +func NewQXmlItem2(other QXmlItemITF) *QXmlItem { + return QXmlItemFromPointer(unsafe.Pointer(C.QXmlItem_NewQXmlItem2(C.QtObjectPtr(PointerFromQXmlItem(other))))) +} + +func NewQXmlItem3(node QXmlNodeModelIndexITF) *QXmlItem { + return QXmlItemFromPointer(unsafe.Pointer(C.QXmlItem_NewQXmlItem3(C.QtObjectPtr(PointerFromQXmlNodeModelIndex(node))))) +} + +func (ptr *QXmlItem) IsNode() bool { + if ptr.Pointer() != nil { + return C.QXmlItem_IsNode(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlItem) IsNull() bool { + if ptr.Pointer() != nil { + return C.QXmlItem_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlItem) DestroyQXmlItem() { + if ptr.Pointer() != nil { + C.QXmlItem_DestroyQXmlItem(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xmlpatterns/qxmlitem.h b/xmlpatterns/qxmlitem.h new file mode 100755 index 00000000..ed091bf5 --- /dev/null +++ b/xmlpatterns/qxmlitem.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QXmlItem_NewQXmlItem(); +QtObjectPtr QXmlItem_NewQXmlItem4(char* atomicValue); +QtObjectPtr QXmlItem_NewQXmlItem2(QtObjectPtr other); +QtObjectPtr QXmlItem_NewQXmlItem3(QtObjectPtr node); +int QXmlItem_IsNode(QtObjectPtr ptr); +int QXmlItem_IsNull(QtObjectPtr ptr); +void QXmlItem_DestroyQXmlItem(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xmlpatterns/qxmlname.cpp b/xmlpatterns/qxmlname.cpp new file mode 100755 index 00000000..dfe8e68c --- /dev/null +++ b/xmlpatterns/qxmlname.cpp @@ -0,0 +1,45 @@ +#include "qxmlname.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlName: public QXmlName { +public: +}; + +QtObjectPtr QXmlName_NewQXmlName(){ + return new QXmlName(); +} + +QtObjectPtr QXmlName_NewQXmlName2(QtObjectPtr namePool, char* localName, char* namespaceURI, char* prefix){ + return new QXmlName(*static_cast(namePool), QString(localName), QString(namespaceURI), QString(prefix)); +} + +int QXmlName_QXmlName_IsNCName(char* candidate){ + return QXmlName::isNCName(QString(candidate)); +} + +int QXmlName_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +char* QXmlName_LocalName(QtObjectPtr ptr, QtObjectPtr namePool){ + return static_cast(ptr)->localName(*static_cast(namePool)).toUtf8().data(); +} + +char* QXmlName_NamespaceUri(QtObjectPtr ptr, QtObjectPtr namePool){ + return static_cast(ptr)->namespaceUri(*static_cast(namePool)).toUtf8().data(); +} + +char* QXmlName_Prefix(QtObjectPtr ptr, QtObjectPtr namePool){ + return static_cast(ptr)->prefix(*static_cast(namePool)).toUtf8().data(); +} + +char* QXmlName_ToClarkName(QtObjectPtr ptr, QtObjectPtr namePool){ + return static_cast(ptr)->toClarkName(*static_cast(namePool)).toUtf8().data(); +} + diff --git a/xmlpatterns/qxmlname.go b/xmlpatterns/qxmlname.go new file mode 100755 index 00000000..94d655c6 --- /dev/null +++ b/xmlpatterns/qxmlname.go @@ -0,0 +1,87 @@ +package xmlpatterns + +//#include "qxmlname.h" +import "C" +import ( + "unsafe" +) + +type QXmlName struct { + ptr unsafe.Pointer +} + +type QXmlNameITF interface { + QXmlNamePTR() *QXmlName +} + +func (p *QXmlName) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QXmlName) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQXmlName(ptr QXmlNameITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlNamePTR().Pointer() + } + return nil +} + +func QXmlNameFromPointer(ptr unsafe.Pointer) *QXmlName { + var n = new(QXmlName) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlName) QXmlNamePTR() *QXmlName { + return ptr +} + +func NewQXmlName() *QXmlName { + return QXmlNameFromPointer(unsafe.Pointer(C.QXmlName_NewQXmlName())) +} + +func NewQXmlName2(namePool QXmlNamePoolITF, localName string, namespaceURI string, prefix string) *QXmlName { + return QXmlNameFromPointer(unsafe.Pointer(C.QXmlName_NewQXmlName2(C.QtObjectPtr(PointerFromQXmlNamePool(namePool)), C.CString(localName), C.CString(namespaceURI), C.CString(prefix)))) +} + +func QXmlName_IsNCName(candidate string) bool { + return C.QXmlName_QXmlName_IsNCName(C.CString(candidate)) != 0 +} + +func (ptr *QXmlName) IsNull() bool { + if ptr.Pointer() != nil { + return C.QXmlName_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlName) LocalName(namePool QXmlNamePoolITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlName_LocalName(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlNamePool(namePool)))) + } + return "" +} + +func (ptr *QXmlName) NamespaceUri(namePool QXmlNamePoolITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlName_NamespaceUri(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlNamePool(namePool)))) + } + return "" +} + +func (ptr *QXmlName) Prefix(namePool QXmlNamePoolITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlName_Prefix(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlNamePool(namePool)))) + } + return "" +} + +func (ptr *QXmlName) ToClarkName(namePool QXmlNamePoolITF) string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlName_ToClarkName(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlNamePool(namePool)))) + } + return "" +} diff --git a/xmlpatterns/qxmlname.h b/xmlpatterns/qxmlname.h new file mode 100755 index 00000000..9090b85f --- /dev/null +++ b/xmlpatterns/qxmlname.h @@ -0,0 +1,17 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QXmlName_NewQXmlName(); +QtObjectPtr QXmlName_NewQXmlName2(QtObjectPtr namePool, char* localName, char* namespaceURI, char* prefix); +int QXmlName_QXmlName_IsNCName(char* candidate); +int QXmlName_IsNull(QtObjectPtr ptr); +char* QXmlName_LocalName(QtObjectPtr ptr, QtObjectPtr namePool); +char* QXmlName_NamespaceUri(QtObjectPtr ptr, QtObjectPtr namePool); +char* QXmlName_Prefix(QtObjectPtr ptr, QtObjectPtr namePool); +char* QXmlName_ToClarkName(QtObjectPtr ptr, QtObjectPtr namePool); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xmlpatterns/qxmlnamepool.cpp b/xmlpatterns/qxmlnamepool.cpp new file mode 100755 index 00000000..5c5aa6a1 --- /dev/null +++ b/xmlpatterns/qxmlnamepool.cpp @@ -0,0 +1,25 @@ +#include "qxmlnamepool.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlNamePool: public QXmlNamePool { +public: +}; + +QtObjectPtr QXmlNamePool_NewQXmlNamePool(){ + return new QXmlNamePool(); +} + +QtObjectPtr QXmlNamePool_NewQXmlNamePool2(QtObjectPtr other){ + return new QXmlNamePool(*static_cast(other)); +} + +void QXmlNamePool_DestroyQXmlNamePool(QtObjectPtr ptr){ + static_cast(ptr)->~QXmlNamePool(); +} + diff --git a/xmlpatterns/qxmlnamepool.go b/xmlpatterns/qxmlnamepool.go new file mode 100755 index 00000000..7813c26d --- /dev/null +++ b/xmlpatterns/qxmlnamepool.go @@ -0,0 +1,54 @@ +package xmlpatterns + +//#include "qxmlnamepool.h" +import "C" +import ( + "unsafe" +) + +type QXmlNamePool struct { + ptr unsafe.Pointer +} + +type QXmlNamePoolITF interface { + QXmlNamePoolPTR() *QXmlNamePool +} + +func (p *QXmlNamePool) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QXmlNamePool) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQXmlNamePool(ptr QXmlNamePoolITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlNamePoolPTR().Pointer() + } + return nil +} + +func QXmlNamePoolFromPointer(ptr unsafe.Pointer) *QXmlNamePool { + var n = new(QXmlNamePool) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlNamePool) QXmlNamePoolPTR() *QXmlNamePool { + return ptr +} + +func NewQXmlNamePool() *QXmlNamePool { + return QXmlNamePoolFromPointer(unsafe.Pointer(C.QXmlNamePool_NewQXmlNamePool())) +} + +func NewQXmlNamePool2(other QXmlNamePoolITF) *QXmlNamePool { + return QXmlNamePoolFromPointer(unsafe.Pointer(C.QXmlNamePool_NewQXmlNamePool2(C.QtObjectPtr(PointerFromQXmlNamePool(other))))) +} + +func (ptr *QXmlNamePool) DestroyQXmlNamePool() { + if ptr.Pointer() != nil { + C.QXmlNamePool_DestroyQXmlNamePool(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xmlpatterns/qxmlnamepool.h b/xmlpatterns/qxmlnamepool.h new file mode 100755 index 00000000..5f1681b0 --- /dev/null +++ b/xmlpatterns/qxmlnamepool.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QXmlNamePool_NewQXmlNamePool(); +QtObjectPtr QXmlNamePool_NewQXmlNamePool2(QtObjectPtr other); +void QXmlNamePool_DestroyQXmlNamePool(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xmlpatterns/qxmlnodemodelindex.cpp b/xmlpatterns/qxmlnodemodelindex.cpp new file mode 100755 index 00000000..20a6d3c4 --- /dev/null +++ b/xmlpatterns/qxmlnodemodelindex.cpp @@ -0,0 +1,33 @@ +#include "qxmlnodemodelindex.h" +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlNodeModelIndex: public QXmlNodeModelIndex { +public: +}; + +QtObjectPtr QXmlNodeModelIndex_NewQXmlNodeModelIndex(){ + return new QXmlNodeModelIndex(); +} + +QtObjectPtr QXmlNodeModelIndex_NewQXmlNodeModelIndex2(QtObjectPtr other){ + return new QXmlNodeModelIndex(*static_cast(other)); +} + +void QXmlNodeModelIndex_InternalPointer(QtObjectPtr ptr){ + static_cast(ptr)->internalPointer(); +} + +int QXmlNodeModelIndex_IsNull(QtObjectPtr ptr){ + return static_cast(ptr)->isNull(); +} + +QtObjectPtr QXmlNodeModelIndex_Model(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->model()); +} + diff --git a/xmlpatterns/qxmlnodemodelindex.go b/xmlpatterns/qxmlnodemodelindex.go new file mode 100755 index 00000000..eba47b79 --- /dev/null +++ b/xmlpatterns/qxmlnodemodelindex.go @@ -0,0 +1,90 @@ +package xmlpatterns + +//#include "qxmlnodemodelindex.h" +import "C" +import ( + "unsafe" +) + +type QXmlNodeModelIndex struct { + ptr unsafe.Pointer +} + +type QXmlNodeModelIndexITF interface { + QXmlNodeModelIndexPTR() *QXmlNodeModelIndex +} + +func (p *QXmlNodeModelIndex) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QXmlNodeModelIndex) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQXmlNodeModelIndex(ptr QXmlNodeModelIndexITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlNodeModelIndexPTR().Pointer() + } + return nil +} + +func QXmlNodeModelIndexFromPointer(ptr unsafe.Pointer) *QXmlNodeModelIndex { + var n = new(QXmlNodeModelIndex) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlNodeModelIndex) QXmlNodeModelIndexPTR() *QXmlNodeModelIndex { + return ptr +} + +//QXmlNodeModelIndex::DocumentOrder +type QXmlNodeModelIndex__DocumentOrder int + +var ( + QXmlNodeModelIndex__Precedes = QXmlNodeModelIndex__DocumentOrder(-1) + QXmlNodeModelIndex__Is = QXmlNodeModelIndex__DocumentOrder(0) + QXmlNodeModelIndex__Follows = QXmlNodeModelIndex__DocumentOrder(1) +) + +//QXmlNodeModelIndex::NodeKind +type QXmlNodeModelIndex__NodeKind int + +var ( + QXmlNodeModelIndex__Attribute = QXmlNodeModelIndex__NodeKind(1) + QXmlNodeModelIndex__Comment = QXmlNodeModelIndex__NodeKind(2) + QXmlNodeModelIndex__Document = QXmlNodeModelIndex__NodeKind(4) + QXmlNodeModelIndex__Element = QXmlNodeModelIndex__NodeKind(8) + QXmlNodeModelIndex__Namespace = QXmlNodeModelIndex__NodeKind(16) + QXmlNodeModelIndex__ProcessingInstruction = QXmlNodeModelIndex__NodeKind(32) + QXmlNodeModelIndex__Text = QXmlNodeModelIndex__NodeKind(64) +) + +func NewQXmlNodeModelIndex() *QXmlNodeModelIndex { + return QXmlNodeModelIndexFromPointer(unsafe.Pointer(C.QXmlNodeModelIndex_NewQXmlNodeModelIndex())) +} + +func NewQXmlNodeModelIndex2(other QXmlNodeModelIndexITF) *QXmlNodeModelIndex { + return QXmlNodeModelIndexFromPointer(unsafe.Pointer(C.QXmlNodeModelIndex_NewQXmlNodeModelIndex2(C.QtObjectPtr(PointerFromQXmlNodeModelIndex(other))))) +} + +func (ptr *QXmlNodeModelIndex) InternalPointer() { + if ptr.Pointer() != nil { + C.QXmlNodeModelIndex_InternalPointer(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QXmlNodeModelIndex) IsNull() bool { + if ptr.Pointer() != nil { + return C.QXmlNodeModelIndex_IsNull(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlNodeModelIndex) Model() *QAbstractXmlNodeModel { + if ptr.Pointer() != nil { + return QAbstractXmlNodeModelFromPointer(unsafe.Pointer(C.QXmlNodeModelIndex_Model(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} diff --git a/xmlpatterns/qxmlnodemodelindex.h b/xmlpatterns/qxmlnodemodelindex.h new file mode 100755 index 00000000..734f4bb8 --- /dev/null +++ b/xmlpatterns/qxmlnodemodelindex.h @@ -0,0 +1,14 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QXmlNodeModelIndex_NewQXmlNodeModelIndex(); +QtObjectPtr QXmlNodeModelIndex_NewQXmlNodeModelIndex2(QtObjectPtr other); +void QXmlNodeModelIndex_InternalPointer(QtObjectPtr ptr); +int QXmlNodeModelIndex_IsNull(QtObjectPtr ptr); +QtObjectPtr QXmlNodeModelIndex_Model(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xmlpatterns/qxmlquery.cpp b/xmlpatterns/qxmlquery.cpp new file mode 100755 index 00000000..6a679aea --- /dev/null +++ b/xmlpatterns/qxmlquery.cpp @@ -0,0 +1,131 @@ +#include "qxmlquery.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlQuery: public QXmlQuery { +public: +}; + +QtObjectPtr QXmlQuery_NewQXmlQuery(){ + return new QXmlQuery(); +} + +QtObjectPtr QXmlQuery_NewQXmlQuery4(int queryLanguage, QtObjectPtr np){ + return new QXmlQuery(static_cast(queryLanguage), *static_cast(np)); +} + +QtObjectPtr QXmlQuery_NewQXmlQuery3(QtObjectPtr np){ + return new QXmlQuery(*static_cast(np)); +} + +QtObjectPtr QXmlQuery_NewQXmlQuery2(QtObjectPtr other){ + return new QXmlQuery(*static_cast(other)); +} + +void QXmlQuery_BindVariable5(QtObjectPtr ptr, char* localName, QtObjectPtr device){ + static_cast(ptr)->bindVariable(QString(localName), static_cast(device)); +} + +void QXmlQuery_BindVariable4(QtObjectPtr ptr, char* localName, QtObjectPtr value){ + static_cast(ptr)->bindVariable(QString(localName), *static_cast(value)); +} + +void QXmlQuery_BindVariable6(QtObjectPtr ptr, char* localName, QtObjectPtr query){ + static_cast(ptr)->bindVariable(QString(localName), *static_cast(query)); +} + +void QXmlQuery_BindVariable2(QtObjectPtr ptr, QtObjectPtr name, QtObjectPtr device){ + static_cast(ptr)->bindVariable(*static_cast(name), static_cast(device)); +} + +void QXmlQuery_BindVariable(QtObjectPtr ptr, QtObjectPtr name, QtObjectPtr value){ + static_cast(ptr)->bindVariable(*static_cast(name), *static_cast(value)); +} + +void QXmlQuery_BindVariable3(QtObjectPtr ptr, QtObjectPtr name, QtObjectPtr query){ + static_cast(ptr)->bindVariable(*static_cast(name), *static_cast(query)); +} + +int QXmlQuery_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +QtObjectPtr QXmlQuery_MessageHandler(QtObjectPtr ptr){ + return static_cast(ptr)->messageHandler(); +} + +QtObjectPtr QXmlQuery_NetworkAccessManager(QtObjectPtr ptr){ + return static_cast(ptr)->networkAccessManager(); +} + +int QXmlQuery_QueryLanguage(QtObjectPtr ptr){ + return static_cast(ptr)->queryLanguage(); +} + +int QXmlQuery_SetFocus3(QtObjectPtr ptr, QtObjectPtr document){ + return static_cast(ptr)->setFocus(static_cast(document)); +} + +int QXmlQuery_SetFocus4(QtObjectPtr ptr, char* focus){ + return static_cast(ptr)->setFocus(QString(focus)); +} + +int QXmlQuery_SetFocus2(QtObjectPtr ptr, char* documentURI){ + return static_cast(ptr)->setFocus(QUrl(QString(documentURI))); +} + +void QXmlQuery_SetFocus(QtObjectPtr ptr, QtObjectPtr item){ + static_cast(ptr)->setFocus(*static_cast(item)); +} + +void QXmlQuery_SetInitialTemplateName2(QtObjectPtr ptr, char* localName){ + static_cast(ptr)->setInitialTemplateName(QString(localName)); +} + +void QXmlQuery_SetInitialTemplateName(QtObjectPtr ptr, QtObjectPtr name){ + static_cast(ptr)->setInitialTemplateName(*static_cast(name)); +} + +void QXmlQuery_SetMessageHandler(QtObjectPtr ptr, QtObjectPtr aMessageHandler){ + static_cast(ptr)->setMessageHandler(static_cast(aMessageHandler)); +} + +void QXmlQuery_SetNetworkAccessManager(QtObjectPtr ptr, QtObjectPtr newManager){ + static_cast(ptr)->setNetworkAccessManager(static_cast(newManager)); +} + +void QXmlQuery_SetQuery(QtObjectPtr ptr, QtObjectPtr sourceCode, char* documentURI){ + static_cast(ptr)->setQuery(static_cast(sourceCode), QUrl(QString(documentURI))); +} + +void QXmlQuery_SetQuery3(QtObjectPtr ptr, char* sourceCode, char* documentURI){ + static_cast(ptr)->setQuery(QString(sourceCode), QUrl(QString(documentURI))); +} + +void QXmlQuery_SetQuery2(QtObjectPtr ptr, char* queryURI, char* baseURI){ + static_cast(ptr)->setQuery(QUrl(QString(queryURI)), QUrl(QString(baseURI))); +} + +void QXmlQuery_SetUriResolver(QtObjectPtr ptr, QtObjectPtr resolver){ + static_cast(ptr)->setUriResolver(static_cast(resolver)); +} + +QtObjectPtr QXmlQuery_UriResolver(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->uriResolver()); +} + +void QXmlQuery_DestroyQXmlQuery(QtObjectPtr ptr){ + static_cast(ptr)->~QXmlQuery(); +} + diff --git a/xmlpatterns/qxmlquery.go b/xmlpatterns/qxmlquery.go new file mode 100755 index 00000000..acb745ca --- /dev/null +++ b/xmlpatterns/qxmlquery.go @@ -0,0 +1,221 @@ +package xmlpatterns + +//#include "qxmlquery.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/network" + "unsafe" +) + +type QXmlQuery struct { + ptr unsafe.Pointer +} + +type QXmlQueryITF interface { + QXmlQueryPTR() *QXmlQuery +} + +func (p *QXmlQuery) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QXmlQuery) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQXmlQuery(ptr QXmlQueryITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlQueryPTR().Pointer() + } + return nil +} + +func QXmlQueryFromPointer(ptr unsafe.Pointer) *QXmlQuery { + var n = new(QXmlQuery) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlQuery) QXmlQueryPTR() *QXmlQuery { + return ptr +} + +//QXmlQuery::QueryLanguage +type QXmlQuery__QueryLanguage int + +var ( + QXmlQuery__XQuery10 = QXmlQuery__QueryLanguage(1) + QXmlQuery__XSLT20 = QXmlQuery__QueryLanguage(2) + QXmlQuery__XmlSchema11IdentityConstraintSelector = QXmlQuery__QueryLanguage(1024) + QXmlQuery__XmlSchema11IdentityConstraintField = QXmlQuery__QueryLanguage(2048) + QXmlQuery__XPath20 = QXmlQuery__QueryLanguage(4096) +) + +func NewQXmlQuery() *QXmlQuery { + return QXmlQueryFromPointer(unsafe.Pointer(C.QXmlQuery_NewQXmlQuery())) +} + +func NewQXmlQuery4(queryLanguage QXmlQuery__QueryLanguage, np QXmlNamePoolITF) *QXmlQuery { + return QXmlQueryFromPointer(unsafe.Pointer(C.QXmlQuery_NewQXmlQuery4(C.int(queryLanguage), C.QtObjectPtr(PointerFromQXmlNamePool(np))))) +} + +func NewQXmlQuery3(np QXmlNamePoolITF) *QXmlQuery { + return QXmlQueryFromPointer(unsafe.Pointer(C.QXmlQuery_NewQXmlQuery3(C.QtObjectPtr(PointerFromQXmlNamePool(np))))) +} + +func NewQXmlQuery2(other QXmlQueryITF) *QXmlQuery { + return QXmlQueryFromPointer(unsafe.Pointer(C.QXmlQuery_NewQXmlQuery2(C.QtObjectPtr(PointerFromQXmlQuery(other))))) +} + +func (ptr *QXmlQuery) BindVariable5(localName string, device core.QIODeviceITF) { + if ptr.Pointer() != nil { + C.QXmlQuery_BindVariable5(C.QtObjectPtr(ptr.Pointer()), C.CString(localName), C.QtObjectPtr(core.PointerFromQIODevice(device))) + } +} + +func (ptr *QXmlQuery) BindVariable4(localName string, value QXmlItemITF) { + if ptr.Pointer() != nil { + C.QXmlQuery_BindVariable4(C.QtObjectPtr(ptr.Pointer()), C.CString(localName), C.QtObjectPtr(PointerFromQXmlItem(value))) + } +} + +func (ptr *QXmlQuery) BindVariable6(localName string, query QXmlQueryITF) { + if ptr.Pointer() != nil { + C.QXmlQuery_BindVariable6(C.QtObjectPtr(ptr.Pointer()), C.CString(localName), C.QtObjectPtr(PointerFromQXmlQuery(query))) + } +} + +func (ptr *QXmlQuery) BindVariable2(name QXmlNameITF, device core.QIODeviceITF) { + if ptr.Pointer() != nil { + C.QXmlQuery_BindVariable2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlName(name)), C.QtObjectPtr(core.PointerFromQIODevice(device))) + } +} + +func (ptr *QXmlQuery) BindVariable(name QXmlNameITF, value QXmlItemITF) { + if ptr.Pointer() != nil { + C.QXmlQuery_BindVariable(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlName(name)), C.QtObjectPtr(PointerFromQXmlItem(value))) + } +} + +func (ptr *QXmlQuery) BindVariable3(name QXmlNameITF, query QXmlQueryITF) { + if ptr.Pointer() != nil { + C.QXmlQuery_BindVariable3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlName(name)), C.QtObjectPtr(PointerFromQXmlQuery(query))) + } +} + +func (ptr *QXmlQuery) IsValid() bool { + if ptr.Pointer() != nil { + return C.QXmlQuery_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlQuery) MessageHandler() *QAbstractMessageHandler { + if ptr.Pointer() != nil { + return QAbstractMessageHandlerFromPointer(unsafe.Pointer(C.QXmlQuery_MessageHandler(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QXmlQuery) NetworkAccessManager() *network.QNetworkAccessManager { + if ptr.Pointer() != nil { + return network.QNetworkAccessManagerFromPointer(unsafe.Pointer(C.QXmlQuery_NetworkAccessManager(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QXmlQuery) QueryLanguage() QXmlQuery__QueryLanguage { + if ptr.Pointer() != nil { + return QXmlQuery__QueryLanguage(C.QXmlQuery_QueryLanguage(C.QtObjectPtr(ptr.Pointer()))) + } + return 0 +} + +func (ptr *QXmlQuery) SetFocus3(document core.QIODeviceITF) bool { + if ptr.Pointer() != nil { + return C.QXmlQuery_SetFocus3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQIODevice(document))) != 0 + } + return false +} + +func (ptr *QXmlQuery) SetFocus4(focus string) bool { + if ptr.Pointer() != nil { + return C.QXmlQuery_SetFocus4(C.QtObjectPtr(ptr.Pointer()), C.CString(focus)) != 0 + } + return false +} + +func (ptr *QXmlQuery) SetFocus2(documentURI string) bool { + if ptr.Pointer() != nil { + return C.QXmlQuery_SetFocus2(C.QtObjectPtr(ptr.Pointer()), C.CString(documentURI)) != 0 + } + return false +} + +func (ptr *QXmlQuery) SetFocus(item QXmlItemITF) { + if ptr.Pointer() != nil { + C.QXmlQuery_SetFocus(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlItem(item))) + } +} + +func (ptr *QXmlQuery) SetInitialTemplateName2(localName string) { + if ptr.Pointer() != nil { + C.QXmlQuery_SetInitialTemplateName2(C.QtObjectPtr(ptr.Pointer()), C.CString(localName)) + } +} + +func (ptr *QXmlQuery) SetInitialTemplateName(name QXmlNameITF) { + if ptr.Pointer() != nil { + C.QXmlQuery_SetInitialTemplateName(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlName(name))) + } +} + +func (ptr *QXmlQuery) SetMessageHandler(aMessageHandler QAbstractMessageHandlerITF) { + if ptr.Pointer() != nil { + C.QXmlQuery_SetMessageHandler(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractMessageHandler(aMessageHandler))) + } +} + +func (ptr *QXmlQuery) SetNetworkAccessManager(newManager network.QNetworkAccessManagerITF) { + if ptr.Pointer() != nil { + C.QXmlQuery_SetNetworkAccessManager(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(network.PointerFromQNetworkAccessManager(newManager))) + } +} + +func (ptr *QXmlQuery) SetQuery(sourceCode core.QIODeviceITF, documentURI string) { + if ptr.Pointer() != nil { + C.QXmlQuery_SetQuery(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQIODevice(sourceCode)), C.CString(documentURI)) + } +} + +func (ptr *QXmlQuery) SetQuery3(sourceCode string, documentURI string) { + if ptr.Pointer() != nil { + C.QXmlQuery_SetQuery3(C.QtObjectPtr(ptr.Pointer()), C.CString(sourceCode), C.CString(documentURI)) + } +} + +func (ptr *QXmlQuery) SetQuery2(queryURI string, baseURI string) { + if ptr.Pointer() != nil { + C.QXmlQuery_SetQuery2(C.QtObjectPtr(ptr.Pointer()), C.CString(queryURI), C.CString(baseURI)) + } +} + +func (ptr *QXmlQuery) SetUriResolver(resolver QAbstractUriResolverITF) { + if ptr.Pointer() != nil { + C.QXmlQuery_SetUriResolver(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractUriResolver(resolver))) + } +} + +func (ptr *QXmlQuery) UriResolver() *QAbstractUriResolver { + if ptr.Pointer() != nil { + return QAbstractUriResolverFromPointer(unsafe.Pointer(C.QXmlQuery_UriResolver(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QXmlQuery) DestroyQXmlQuery() { + if ptr.Pointer() != nil { + C.QXmlQuery_DestroyQXmlQuery(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xmlpatterns/qxmlquery.h b/xmlpatterns/qxmlquery.h new file mode 100755 index 00000000..e0e5d574 --- /dev/null +++ b/xmlpatterns/qxmlquery.h @@ -0,0 +1,37 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QXmlQuery_NewQXmlQuery(); +QtObjectPtr QXmlQuery_NewQXmlQuery4(int queryLanguage, QtObjectPtr np); +QtObjectPtr QXmlQuery_NewQXmlQuery3(QtObjectPtr np); +QtObjectPtr QXmlQuery_NewQXmlQuery2(QtObjectPtr other); +void QXmlQuery_BindVariable5(QtObjectPtr ptr, char* localName, QtObjectPtr device); +void QXmlQuery_BindVariable4(QtObjectPtr ptr, char* localName, QtObjectPtr value); +void QXmlQuery_BindVariable6(QtObjectPtr ptr, char* localName, QtObjectPtr query); +void QXmlQuery_BindVariable2(QtObjectPtr ptr, QtObjectPtr name, QtObjectPtr device); +void QXmlQuery_BindVariable(QtObjectPtr ptr, QtObjectPtr name, QtObjectPtr value); +void QXmlQuery_BindVariable3(QtObjectPtr ptr, QtObjectPtr name, QtObjectPtr query); +int QXmlQuery_IsValid(QtObjectPtr ptr); +QtObjectPtr QXmlQuery_MessageHandler(QtObjectPtr ptr); +QtObjectPtr QXmlQuery_NetworkAccessManager(QtObjectPtr ptr); +int QXmlQuery_QueryLanguage(QtObjectPtr ptr); +int QXmlQuery_SetFocus3(QtObjectPtr ptr, QtObjectPtr document); +int QXmlQuery_SetFocus4(QtObjectPtr ptr, char* focus); +int QXmlQuery_SetFocus2(QtObjectPtr ptr, char* documentURI); +void QXmlQuery_SetFocus(QtObjectPtr ptr, QtObjectPtr item); +void QXmlQuery_SetInitialTemplateName2(QtObjectPtr ptr, char* localName); +void QXmlQuery_SetInitialTemplateName(QtObjectPtr ptr, QtObjectPtr name); +void QXmlQuery_SetMessageHandler(QtObjectPtr ptr, QtObjectPtr aMessageHandler); +void QXmlQuery_SetNetworkAccessManager(QtObjectPtr ptr, QtObjectPtr newManager); +void QXmlQuery_SetQuery(QtObjectPtr ptr, QtObjectPtr sourceCode, char* documentURI); +void QXmlQuery_SetQuery3(QtObjectPtr ptr, char* sourceCode, char* documentURI); +void QXmlQuery_SetQuery2(QtObjectPtr ptr, char* queryURI, char* baseURI); +void QXmlQuery_SetUriResolver(QtObjectPtr ptr, QtObjectPtr resolver); +QtObjectPtr QXmlQuery_UriResolver(QtObjectPtr ptr); +void QXmlQuery_DestroyQXmlQuery(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xmlpatterns/qxmlresultitems.cpp b/xmlpatterns/qxmlresultitems.cpp new file mode 100755 index 00000000..c16c316f --- /dev/null +++ b/xmlpatterns/qxmlresultitems.cpp @@ -0,0 +1,24 @@ +#include "qxmlresultitems.h" +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlResultItems: public QXmlResultItems { +public: +}; + +QtObjectPtr QXmlResultItems_NewQXmlResultItems(){ + return new QXmlResultItems(); +} + +int QXmlResultItems_HasError(QtObjectPtr ptr){ + return static_cast(ptr)->hasError(); +} + +void QXmlResultItems_DestroyQXmlResultItems(QtObjectPtr ptr){ + static_cast(ptr)->~QXmlResultItems(); +} + diff --git a/xmlpatterns/qxmlresultitems.go b/xmlpatterns/qxmlresultitems.go new file mode 100755 index 00000000..3bbc6715 --- /dev/null +++ b/xmlpatterns/qxmlresultitems.go @@ -0,0 +1,57 @@ +package xmlpatterns + +//#include "qxmlresultitems.h" +import "C" +import ( + "unsafe" +) + +type QXmlResultItems struct { + ptr unsafe.Pointer +} + +type QXmlResultItemsITF interface { + QXmlResultItemsPTR() *QXmlResultItems +} + +func (p *QXmlResultItems) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QXmlResultItems) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQXmlResultItems(ptr QXmlResultItemsITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlResultItemsPTR().Pointer() + } + return nil +} + +func QXmlResultItemsFromPointer(ptr unsafe.Pointer) *QXmlResultItems { + var n = new(QXmlResultItems) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlResultItems) QXmlResultItemsPTR() *QXmlResultItems { + return ptr +} + +func NewQXmlResultItems() *QXmlResultItems { + return QXmlResultItemsFromPointer(unsafe.Pointer(C.QXmlResultItems_NewQXmlResultItems())) +} + +func (ptr *QXmlResultItems) HasError() bool { + if ptr.Pointer() != nil { + return C.QXmlResultItems_HasError(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlResultItems) DestroyQXmlResultItems() { + if ptr.Pointer() != nil { + C.QXmlResultItems_DestroyQXmlResultItems(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xmlpatterns/qxmlresultitems.h b/xmlpatterns/qxmlresultitems.h new file mode 100755 index 00000000..d90d71e8 --- /dev/null +++ b/xmlpatterns/qxmlresultitems.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QXmlResultItems_NewQXmlResultItems(); +int QXmlResultItems_HasError(QtObjectPtr ptr); +void QXmlResultItems_DestroyQXmlResultItems(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xmlpatterns/qxmlschema.cpp b/xmlpatterns/qxmlschema.cpp new file mode 100755 index 00000000..486a918f --- /dev/null +++ b/xmlpatterns/qxmlschema.cpp @@ -0,0 +1,73 @@ +#include "qxmlschema.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlSchema: public QXmlSchema { +public: +}; + +QtObjectPtr QXmlSchema_NewQXmlSchema(){ + return new QXmlSchema(); +} + +QtObjectPtr QXmlSchema_NewQXmlSchema2(QtObjectPtr other){ + return new QXmlSchema(*static_cast(other)); +} + +char* QXmlSchema_DocumentUri(QtObjectPtr ptr){ + return static_cast(ptr)->documentUri().toString().toUtf8().data(); +} + +int QXmlSchema_IsValid(QtObjectPtr ptr){ + return static_cast(ptr)->isValid(); +} + +int QXmlSchema_Load2(QtObjectPtr ptr, QtObjectPtr source, char* documentUri){ + return static_cast(ptr)->load(static_cast(source), QUrl(QString(documentUri))); +} + +int QXmlSchema_Load3(QtObjectPtr ptr, QtObjectPtr data, char* documentUri){ + return static_cast(ptr)->load(*static_cast(data), QUrl(QString(documentUri))); +} + +int QXmlSchema_Load(QtObjectPtr ptr, char* source){ + return static_cast(ptr)->load(QUrl(QString(source))); +} + +QtObjectPtr QXmlSchema_MessageHandler(QtObjectPtr ptr){ + return static_cast(ptr)->messageHandler(); +} + +QtObjectPtr QXmlSchema_NetworkAccessManager(QtObjectPtr ptr){ + return static_cast(ptr)->networkAccessManager(); +} + +void QXmlSchema_SetMessageHandler(QtObjectPtr ptr, QtObjectPtr handler){ + static_cast(ptr)->setMessageHandler(static_cast(handler)); +} + +void QXmlSchema_SetNetworkAccessManager(QtObjectPtr ptr, QtObjectPtr manager){ + static_cast(ptr)->setNetworkAccessManager(static_cast(manager)); +} + +void QXmlSchema_SetUriResolver(QtObjectPtr ptr, QtObjectPtr resolver){ + static_cast(ptr)->setUriResolver(static_cast(resolver)); +} + +QtObjectPtr QXmlSchema_UriResolver(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->uriResolver()); +} + +void QXmlSchema_DestroyQXmlSchema(QtObjectPtr ptr){ + static_cast(ptr)->~QXmlSchema(); +} + diff --git a/xmlpatterns/qxmlschema.go b/xmlpatterns/qxmlschema.go new file mode 100755 index 00000000..b4e4e138 --- /dev/null +++ b/xmlpatterns/qxmlschema.go @@ -0,0 +1,130 @@ +package xmlpatterns + +//#include "qxmlschema.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/network" + "unsafe" +) + +type QXmlSchema struct { + ptr unsafe.Pointer +} + +type QXmlSchemaITF interface { + QXmlSchemaPTR() *QXmlSchema +} + +func (p *QXmlSchema) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QXmlSchema) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQXmlSchema(ptr QXmlSchemaITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlSchemaPTR().Pointer() + } + return nil +} + +func QXmlSchemaFromPointer(ptr unsafe.Pointer) *QXmlSchema { + var n = new(QXmlSchema) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlSchema) QXmlSchemaPTR() *QXmlSchema { + return ptr +} + +func NewQXmlSchema() *QXmlSchema { + return QXmlSchemaFromPointer(unsafe.Pointer(C.QXmlSchema_NewQXmlSchema())) +} + +func NewQXmlSchema2(other QXmlSchemaITF) *QXmlSchema { + return QXmlSchemaFromPointer(unsafe.Pointer(C.QXmlSchema_NewQXmlSchema2(C.QtObjectPtr(PointerFromQXmlSchema(other))))) +} + +func (ptr *QXmlSchema) DocumentUri() string { + if ptr.Pointer() != nil { + return C.GoString(C.QXmlSchema_DocumentUri(C.QtObjectPtr(ptr.Pointer()))) + } + return "" +} + +func (ptr *QXmlSchema) IsValid() bool { + if ptr.Pointer() != nil { + return C.QXmlSchema_IsValid(C.QtObjectPtr(ptr.Pointer())) != 0 + } + return false +} + +func (ptr *QXmlSchema) Load2(source core.QIODeviceITF, documentUri string) bool { + if ptr.Pointer() != nil { + return C.QXmlSchema_Load2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQIODevice(source)), C.CString(documentUri)) != 0 + } + return false +} + +func (ptr *QXmlSchema) Load3(data core.QByteArrayITF, documentUri string) bool { + if ptr.Pointer() != nil { + return C.QXmlSchema_Load3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(data)), C.CString(documentUri)) != 0 + } + return false +} + +func (ptr *QXmlSchema) Load(source string) bool { + if ptr.Pointer() != nil { + return C.QXmlSchema_Load(C.QtObjectPtr(ptr.Pointer()), C.CString(source)) != 0 + } + return false +} + +func (ptr *QXmlSchema) MessageHandler() *QAbstractMessageHandler { + if ptr.Pointer() != nil { + return QAbstractMessageHandlerFromPointer(unsafe.Pointer(C.QXmlSchema_MessageHandler(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QXmlSchema) NetworkAccessManager() *network.QNetworkAccessManager { + if ptr.Pointer() != nil { + return network.QNetworkAccessManagerFromPointer(unsafe.Pointer(C.QXmlSchema_NetworkAccessManager(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QXmlSchema) SetMessageHandler(handler QAbstractMessageHandlerITF) { + if ptr.Pointer() != nil { + C.QXmlSchema_SetMessageHandler(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractMessageHandler(handler))) + } +} + +func (ptr *QXmlSchema) SetNetworkAccessManager(manager network.QNetworkAccessManagerITF) { + if ptr.Pointer() != nil { + C.QXmlSchema_SetNetworkAccessManager(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(network.PointerFromQNetworkAccessManager(manager))) + } +} + +func (ptr *QXmlSchema) SetUriResolver(resolver QAbstractUriResolverITF) { + if ptr.Pointer() != nil { + C.QXmlSchema_SetUriResolver(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractUriResolver(resolver))) + } +} + +func (ptr *QXmlSchema) UriResolver() *QAbstractUriResolver { + if ptr.Pointer() != nil { + return QAbstractUriResolverFromPointer(unsafe.Pointer(C.QXmlSchema_UriResolver(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QXmlSchema) DestroyQXmlSchema() { + if ptr.Pointer() != nil { + C.QXmlSchema_DestroyQXmlSchema(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xmlpatterns/qxmlschema.h b/xmlpatterns/qxmlschema.h new file mode 100755 index 00000000..c7cf1528 --- /dev/null +++ b/xmlpatterns/qxmlschema.h @@ -0,0 +1,23 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QXmlSchema_NewQXmlSchema(); +QtObjectPtr QXmlSchema_NewQXmlSchema2(QtObjectPtr other); +char* QXmlSchema_DocumentUri(QtObjectPtr ptr); +int QXmlSchema_IsValid(QtObjectPtr ptr); +int QXmlSchema_Load2(QtObjectPtr ptr, QtObjectPtr source, char* documentUri); +int QXmlSchema_Load3(QtObjectPtr ptr, QtObjectPtr data, char* documentUri); +int QXmlSchema_Load(QtObjectPtr ptr, char* source); +QtObjectPtr QXmlSchema_MessageHandler(QtObjectPtr ptr); +QtObjectPtr QXmlSchema_NetworkAccessManager(QtObjectPtr ptr); +void QXmlSchema_SetMessageHandler(QtObjectPtr ptr, QtObjectPtr handler); +void QXmlSchema_SetNetworkAccessManager(QtObjectPtr ptr, QtObjectPtr manager); +void QXmlSchema_SetUriResolver(QtObjectPtr ptr, QtObjectPtr resolver); +QtObjectPtr QXmlSchema_UriResolver(QtObjectPtr ptr); +void QXmlSchema_DestroyQXmlSchema(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xmlpatterns/qxmlschemavalidator.cpp b/xmlpatterns/qxmlschemavalidator.cpp new file mode 100755 index 00000000..ec762dfd --- /dev/null +++ b/xmlpatterns/qxmlschemavalidator.cpp @@ -0,0 +1,70 @@ +#include "qxmlschemavalidator.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlSchemaValidator: public QXmlSchemaValidator { +public: +}; + +QtObjectPtr QXmlSchemaValidator_NewQXmlSchemaValidator(){ + return new QXmlSchemaValidator(); +} + +QtObjectPtr QXmlSchemaValidator_NewQXmlSchemaValidator2(QtObjectPtr schema){ + return new QXmlSchemaValidator(*static_cast(schema)); +} + +QtObjectPtr QXmlSchemaValidator_MessageHandler(QtObjectPtr ptr){ + return static_cast(ptr)->messageHandler(); +} + +QtObjectPtr QXmlSchemaValidator_NetworkAccessManager(QtObjectPtr ptr){ + return static_cast(ptr)->networkAccessManager(); +} + +void QXmlSchemaValidator_SetMessageHandler(QtObjectPtr ptr, QtObjectPtr handler){ + static_cast(ptr)->setMessageHandler(static_cast(handler)); +} + +void QXmlSchemaValidator_SetNetworkAccessManager(QtObjectPtr ptr, QtObjectPtr manager){ + static_cast(ptr)->setNetworkAccessManager(static_cast(manager)); +} + +void QXmlSchemaValidator_SetSchema(QtObjectPtr ptr, QtObjectPtr schema){ + static_cast(ptr)->setSchema(*static_cast(schema)); +} + +void QXmlSchemaValidator_SetUriResolver(QtObjectPtr ptr, QtObjectPtr resolver){ + static_cast(ptr)->setUriResolver(static_cast(resolver)); +} + +QtObjectPtr QXmlSchemaValidator_UriResolver(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->uriResolver()); +} + +int QXmlSchemaValidator_Validate2(QtObjectPtr ptr, QtObjectPtr source, char* documentUri){ + return static_cast(ptr)->validate(static_cast(source), QUrl(QString(documentUri))); +} + +int QXmlSchemaValidator_Validate3(QtObjectPtr ptr, QtObjectPtr data, char* documentUri){ + return static_cast(ptr)->validate(*static_cast(data), QUrl(QString(documentUri))); +} + +int QXmlSchemaValidator_Validate(QtObjectPtr ptr, char* source){ + return static_cast(ptr)->validate(QUrl(QString(source))); +} + +void QXmlSchemaValidator_DestroyQXmlSchemaValidator(QtObjectPtr ptr){ + static_cast(ptr)->~QXmlSchemaValidator(); +} + diff --git a/xmlpatterns/qxmlschemavalidator.go b/xmlpatterns/qxmlschemavalidator.go new file mode 100755 index 00000000..e4b68785 --- /dev/null +++ b/xmlpatterns/qxmlschemavalidator.go @@ -0,0 +1,122 @@ +package xmlpatterns + +//#include "qxmlschemavalidator.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "github.com/therecipe/qt/network" + "unsafe" +) + +type QXmlSchemaValidator struct { + ptr unsafe.Pointer +} + +type QXmlSchemaValidatorITF interface { + QXmlSchemaValidatorPTR() *QXmlSchemaValidator +} + +func (p *QXmlSchemaValidator) Pointer() unsafe.Pointer { + return p.ptr +} + +func (p *QXmlSchemaValidator) SetPointer(ptr unsafe.Pointer) { + p.ptr = ptr +} + +func PointerFromQXmlSchemaValidator(ptr QXmlSchemaValidatorITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlSchemaValidatorPTR().Pointer() + } + return nil +} + +func QXmlSchemaValidatorFromPointer(ptr unsafe.Pointer) *QXmlSchemaValidator { + var n = new(QXmlSchemaValidator) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlSchemaValidator) QXmlSchemaValidatorPTR() *QXmlSchemaValidator { + return ptr +} + +func NewQXmlSchemaValidator() *QXmlSchemaValidator { + return QXmlSchemaValidatorFromPointer(unsafe.Pointer(C.QXmlSchemaValidator_NewQXmlSchemaValidator())) +} + +func NewQXmlSchemaValidator2(schema QXmlSchemaITF) *QXmlSchemaValidator { + return QXmlSchemaValidatorFromPointer(unsafe.Pointer(C.QXmlSchemaValidator_NewQXmlSchemaValidator2(C.QtObjectPtr(PointerFromQXmlSchema(schema))))) +} + +func (ptr *QXmlSchemaValidator) MessageHandler() *QAbstractMessageHandler { + if ptr.Pointer() != nil { + return QAbstractMessageHandlerFromPointer(unsafe.Pointer(C.QXmlSchemaValidator_MessageHandler(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QXmlSchemaValidator) NetworkAccessManager() *network.QNetworkAccessManager { + if ptr.Pointer() != nil { + return network.QNetworkAccessManagerFromPointer(unsafe.Pointer(C.QXmlSchemaValidator_NetworkAccessManager(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QXmlSchemaValidator) SetMessageHandler(handler QAbstractMessageHandlerITF) { + if ptr.Pointer() != nil { + C.QXmlSchemaValidator_SetMessageHandler(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractMessageHandler(handler))) + } +} + +func (ptr *QXmlSchemaValidator) SetNetworkAccessManager(manager network.QNetworkAccessManagerITF) { + if ptr.Pointer() != nil { + C.QXmlSchemaValidator_SetNetworkAccessManager(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(network.PointerFromQNetworkAccessManager(manager))) + } +} + +func (ptr *QXmlSchemaValidator) SetSchema(schema QXmlSchemaITF) { + if ptr.Pointer() != nil { + C.QXmlSchemaValidator_SetSchema(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlSchema(schema))) + } +} + +func (ptr *QXmlSchemaValidator) SetUriResolver(resolver QAbstractUriResolverITF) { + if ptr.Pointer() != nil { + C.QXmlSchemaValidator_SetUriResolver(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQAbstractUriResolver(resolver))) + } +} + +func (ptr *QXmlSchemaValidator) UriResolver() *QAbstractUriResolver { + if ptr.Pointer() != nil { + return QAbstractUriResolverFromPointer(unsafe.Pointer(C.QXmlSchemaValidator_UriResolver(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QXmlSchemaValidator) Validate2(source core.QIODeviceITF, documentUri string) bool { + if ptr.Pointer() != nil { + return C.QXmlSchemaValidator_Validate2(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQIODevice(source)), C.CString(documentUri)) != 0 + } + return false +} + +func (ptr *QXmlSchemaValidator) Validate3(data core.QByteArrayITF, documentUri string) bool { + if ptr.Pointer() != nil { + return C.QXmlSchemaValidator_Validate3(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQByteArray(data)), C.CString(documentUri)) != 0 + } + return false +} + +func (ptr *QXmlSchemaValidator) Validate(source string) bool { + if ptr.Pointer() != nil { + return C.QXmlSchemaValidator_Validate(C.QtObjectPtr(ptr.Pointer()), C.CString(source)) != 0 + } + return false +} + +func (ptr *QXmlSchemaValidator) DestroyQXmlSchemaValidator() { + if ptr.Pointer() != nil { + C.QXmlSchemaValidator_DestroyQXmlSchemaValidator(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xmlpatterns/qxmlschemavalidator.h b/xmlpatterns/qxmlschemavalidator.h new file mode 100755 index 00000000..1b3c70b2 --- /dev/null +++ b/xmlpatterns/qxmlschemavalidator.h @@ -0,0 +1,22 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QXmlSchemaValidator_NewQXmlSchemaValidator(); +QtObjectPtr QXmlSchemaValidator_NewQXmlSchemaValidator2(QtObjectPtr schema); +QtObjectPtr QXmlSchemaValidator_MessageHandler(QtObjectPtr ptr); +QtObjectPtr QXmlSchemaValidator_NetworkAccessManager(QtObjectPtr ptr); +void QXmlSchemaValidator_SetMessageHandler(QtObjectPtr ptr, QtObjectPtr handler); +void QXmlSchemaValidator_SetNetworkAccessManager(QtObjectPtr ptr, QtObjectPtr manager); +void QXmlSchemaValidator_SetSchema(QtObjectPtr ptr, QtObjectPtr schema); +void QXmlSchemaValidator_SetUriResolver(QtObjectPtr ptr, QtObjectPtr resolver); +QtObjectPtr QXmlSchemaValidator_UriResolver(QtObjectPtr ptr); +int QXmlSchemaValidator_Validate2(QtObjectPtr ptr, QtObjectPtr source, char* documentUri); +int QXmlSchemaValidator_Validate3(QtObjectPtr ptr, QtObjectPtr data, char* documentUri); +int QXmlSchemaValidator_Validate(QtObjectPtr ptr, char* source); +void QXmlSchemaValidator_DestroyQXmlSchemaValidator(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file diff --git a/xmlpatterns/qxmlserializer.cpp b/xmlpatterns/qxmlserializer.cpp new file mode 100755 index 00000000..320e2d1a --- /dev/null +++ b/xmlpatterns/qxmlserializer.cpp @@ -0,0 +1,77 @@ +#include "qxmlserializer.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "_cgo_export.h" + +class MyQXmlSerializer: public QXmlSerializer { +public: +}; + +QtObjectPtr QXmlSerializer_NewQXmlSerializer(QtObjectPtr query, QtObjectPtr outputDevice){ + return new QXmlSerializer(*static_cast(query), static_cast(outputDevice)); +} + +void QXmlSerializer_Attribute(QtObjectPtr ptr, QtObjectPtr name, QtObjectPtr value){ + static_cast(ptr)->attribute(*static_cast(name), *static_cast(value)); +} + +void QXmlSerializer_Characters(QtObjectPtr ptr, QtObjectPtr value){ + static_cast(ptr)->characters(*static_cast(value)); +} + +void QXmlSerializer_Comment(QtObjectPtr ptr, char* value){ + static_cast(ptr)->comment(QString(value)); +} + +void QXmlSerializer_EndDocument(QtObjectPtr ptr){ + static_cast(ptr)->endDocument(); +} + +void QXmlSerializer_EndElement(QtObjectPtr ptr){ + static_cast(ptr)->endElement(); +} + +QtObjectPtr QXmlSerializer_Codec(QtObjectPtr ptr){ + return const_cast(static_cast(ptr)->codec()); +} + +void QXmlSerializer_EndOfSequence(QtObjectPtr ptr){ + static_cast(ptr)->endOfSequence(); +} + +void QXmlSerializer_NamespaceBinding(QtObjectPtr ptr, QtObjectPtr nb){ + static_cast(ptr)->namespaceBinding(*static_cast(nb)); +} + +QtObjectPtr QXmlSerializer_OutputDevice(QtObjectPtr ptr){ + return static_cast(ptr)->outputDevice(); +} + +void QXmlSerializer_ProcessingInstruction(QtObjectPtr ptr, QtObjectPtr name, char* value){ + static_cast(ptr)->processingInstruction(*static_cast(name), QString(value)); +} + +void QXmlSerializer_SetCodec(QtObjectPtr ptr, QtObjectPtr outputCodec){ + static_cast(ptr)->setCodec(static_cast(outputCodec)); +} + +void QXmlSerializer_StartDocument(QtObjectPtr ptr){ + static_cast(ptr)->startDocument(); +} + +void QXmlSerializer_StartElement(QtObjectPtr ptr, QtObjectPtr name){ + static_cast(ptr)->startElement(*static_cast(name)); +} + +void QXmlSerializer_StartOfSequence(QtObjectPtr ptr){ + static_cast(ptr)->startOfSequence(); +} + diff --git a/xmlpatterns/qxmlserializer.go b/xmlpatterns/qxmlserializer.go new file mode 100755 index 00000000..cac3175a --- /dev/null +++ b/xmlpatterns/qxmlserializer.go @@ -0,0 +1,124 @@ +package xmlpatterns + +//#include "qxmlserializer.h" +import "C" +import ( + "github.com/therecipe/qt/core" + "unsafe" +) + +type QXmlSerializer struct { + QAbstractXmlReceiver +} + +type QXmlSerializerITF interface { + QAbstractXmlReceiverITF + QXmlSerializerPTR() *QXmlSerializer +} + +func PointerFromQXmlSerializer(ptr QXmlSerializerITF) unsafe.Pointer { + if ptr != nil { + return ptr.QXmlSerializerPTR().Pointer() + } + return nil +} + +func QXmlSerializerFromPointer(ptr unsafe.Pointer) *QXmlSerializer { + var n = new(QXmlSerializer) + n.SetPointer(ptr) + return n +} + +func (ptr *QXmlSerializer) QXmlSerializerPTR() *QXmlSerializer { + return ptr +} + +func NewQXmlSerializer(query QXmlQueryITF, outputDevice core.QIODeviceITF) *QXmlSerializer { + return QXmlSerializerFromPointer(unsafe.Pointer(C.QXmlSerializer_NewQXmlSerializer(C.QtObjectPtr(PointerFromQXmlQuery(query)), C.QtObjectPtr(core.PointerFromQIODevice(outputDevice))))) +} + +func (ptr *QXmlSerializer) Attribute(name QXmlNameITF, value core.QStringRefITF) { + if ptr.Pointer() != nil { + C.QXmlSerializer_Attribute(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlName(name)), C.QtObjectPtr(core.PointerFromQStringRef(value))) + } +} + +func (ptr *QXmlSerializer) Characters(value core.QStringRefITF) { + if ptr.Pointer() != nil { + C.QXmlSerializer_Characters(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQStringRef(value))) + } +} + +func (ptr *QXmlSerializer) Comment(value string) { + if ptr.Pointer() != nil { + C.QXmlSerializer_Comment(C.QtObjectPtr(ptr.Pointer()), C.CString(value)) + } +} + +func (ptr *QXmlSerializer) EndDocument() { + if ptr.Pointer() != nil { + C.QXmlSerializer_EndDocument(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QXmlSerializer) EndElement() { + if ptr.Pointer() != nil { + C.QXmlSerializer_EndElement(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QXmlSerializer) Codec() *core.QTextCodec { + if ptr.Pointer() != nil { + return core.QTextCodecFromPointer(unsafe.Pointer(C.QXmlSerializer_Codec(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QXmlSerializer) EndOfSequence() { + if ptr.Pointer() != nil { + C.QXmlSerializer_EndOfSequence(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QXmlSerializer) NamespaceBinding(nb QXmlNameITF) { + if ptr.Pointer() != nil { + C.QXmlSerializer_NamespaceBinding(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlName(nb))) + } +} + +func (ptr *QXmlSerializer) OutputDevice() *core.QIODevice { + if ptr.Pointer() != nil { + return core.QIODeviceFromPointer(unsafe.Pointer(C.QXmlSerializer_OutputDevice(C.QtObjectPtr(ptr.Pointer())))) + } + return nil +} + +func (ptr *QXmlSerializer) ProcessingInstruction(name QXmlNameITF, value string) { + if ptr.Pointer() != nil { + C.QXmlSerializer_ProcessingInstruction(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlName(name)), C.CString(value)) + } +} + +func (ptr *QXmlSerializer) SetCodec(outputCodec core.QTextCodecITF) { + if ptr.Pointer() != nil { + C.QXmlSerializer_SetCodec(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(core.PointerFromQTextCodec(outputCodec))) + } +} + +func (ptr *QXmlSerializer) StartDocument() { + if ptr.Pointer() != nil { + C.QXmlSerializer_StartDocument(C.QtObjectPtr(ptr.Pointer())) + } +} + +func (ptr *QXmlSerializer) StartElement(name QXmlNameITF) { + if ptr.Pointer() != nil { + C.QXmlSerializer_StartElement(C.QtObjectPtr(ptr.Pointer()), C.QtObjectPtr(PointerFromQXmlName(name))) + } +} + +func (ptr *QXmlSerializer) StartOfSequence() { + if ptr.Pointer() != nil { + C.QXmlSerializer_StartOfSequence(C.QtObjectPtr(ptr.Pointer())) + } +} diff --git a/xmlpatterns/qxmlserializer.h b/xmlpatterns/qxmlserializer.h new file mode 100755 index 00000000..ddc04e11 --- /dev/null +++ b/xmlpatterns/qxmlserializer.h @@ -0,0 +1,24 @@ +#ifdef __cplusplus +extern "C" { +#endif +#include "../cgoutil.h" + +QtObjectPtr QXmlSerializer_NewQXmlSerializer(QtObjectPtr query, QtObjectPtr outputDevice); +void QXmlSerializer_Attribute(QtObjectPtr ptr, QtObjectPtr name, QtObjectPtr value); +void QXmlSerializer_Characters(QtObjectPtr ptr, QtObjectPtr value); +void QXmlSerializer_Comment(QtObjectPtr ptr, char* value); +void QXmlSerializer_EndDocument(QtObjectPtr ptr); +void QXmlSerializer_EndElement(QtObjectPtr ptr); +QtObjectPtr QXmlSerializer_Codec(QtObjectPtr ptr); +void QXmlSerializer_EndOfSequence(QtObjectPtr ptr); +void QXmlSerializer_NamespaceBinding(QtObjectPtr ptr, QtObjectPtr nb); +QtObjectPtr QXmlSerializer_OutputDevice(QtObjectPtr ptr); +void QXmlSerializer_ProcessingInstruction(QtObjectPtr ptr, QtObjectPtr name, char* value); +void QXmlSerializer_SetCodec(QtObjectPtr ptr, QtObjectPtr outputCodec); +void QXmlSerializer_StartDocument(QtObjectPtr ptr); +void QXmlSerializer_StartElement(QtObjectPtr ptr, QtObjectPtr name); +void QXmlSerializer_StartOfSequence(QtObjectPtr ptr); + +#ifdef __cplusplus +} +#endif \ No newline at end of file